[
  {
    "path": ".changeset/README.md",
    "content": "# Changesets\n\nHello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works\nwith multi-package repos, or single-package repos to help you version and publish your code. You can\nfind the full documentation for it [in our repository](https://github.com/changesets/changesets)\n\nWe have a quick list of common questions to get you started engaging with this project in\n[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)\n"
  },
  {
    "path": ".changeset/config.json",
    "content": "{\n  \"$schema\": \"https://unpkg.com/@changesets/config@3.0.2/schema.json\",\n  \"changelog\": \"@changesets/cli/changelog\",\n  \"commit\": false,\n  \"fixed\": [],\n  \"linked\": [],\n  \"access\": \"public\",\n  \"baseBranch\": \"main\",\n  \"updateInternalDependencies\": \"patch\",\n  \"ignore\": [\n    \"benchmark\",\n    \"pglite-react-example\",\n    \"pglite-unixsocket-example\"\n  ],\n  \"privatePackages\": { \"tag\": true, \"version\": true },\n  \"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH\": {\n    \"onlyUpdatePeerDependentsWhenOutOfRange\": true\n  }\n}\n"
  },
  {
    "path": ".gitattributes",
    "content": "postgres/** linguist-vendored\npackages/benchmark/** linguist-vendored\ndocs/** linguist-documentation\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us fix an issue\ntitle: \"[BUG]: \"\nlabels: bug\nassignees: ''\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce** - include code sample(s)\n\nAdd steps to reproduce the behavior. Please **include code** that reproduces the issue. This greatly improves debugging time!\n\n**Logs**\nIf applicable, include logs (ideally as text, not screenshots) that you gathered.\n\n**Details**\n - PGlite version\n - using any extensions? which ones?\n - OS version\n - node, bun, deno or browser version\n\n**Additional context**\nAdd any other context about the problem here.\n\n**Other**\nIf you want to help fix this, you might want to try debugging the issue yourself! Follow the instructions [here](https://pglite.dev/debugging) to build a debug version of PGlite which you can then use in an interactive debugging session.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/extension-request.md",
    "content": "---\nname: Extension request\nabout: PostgreSQL extension porting to PGlite\ntitle: \"[Extension request]: <extension name here>\"\nlabels: extension request\nassignees: ''\n\n---\n\n**Extension request**\n\nBefore opening a new **Extension request** here, we highly encourage you to try to port it yourself following our [extension development docs](https://pglite.dev/extensions/development). \n\nWe welcome contributions and would love to see your extension added to our [extension catalog](https://pglite.dev/extensions/).\n\n**URL**\n\nAdd here the URL to the repo containing the extension's code.\n\n**Dependencies**\n\nDoes this extension have any dependencies (eg pgrx, openssl etc.)?\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest a new feature for this project\ntitle: 'Feature request: <insert here>'\nlabels: enhancement\nassignees: ''\n\n---\n\n**New feature request**\nLet us know what new feature you'd like to see in PGlite.\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/workflows/build_and_test.yml",
    "content": "name: Build and test PGlite packages\n\nconcurrency:\n  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n  cancel-in-progress: true\n\npermissions:\n  pull-requests: write\n  issues: write\n  contents: read\n\non:\n  workflow_dispatch:\n    inputs:\n      message:\n        description: 'Build PGLite packages'\n  push:\n    branches: ['main']\n  pull_request:\n\njobs:\n  stylecheck:\n    name: Stylecheck\n    runs-on: blacksmith-4vcpu-ubuntu-2204\n    steps:\n      - uses: actions/checkout@v4\n      - uses: pnpm/action-setup@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 20\n          cache: pnpm\n      - name: Install dependencies\n        run: pnpm install --frozen-lockfile\n      - name: Stylecheck packages\n        run: pnpm -r stylecheck\n\n  build-all:\n    name: Install, build all and test as described in README\n    runs-on: blacksmith-32vcpu-ubuntu-2204\n    env:\n      BUILD_CONFIG_FILE: postgres-pglite/.buildconfig\n      TZ: UTC\n\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          submodules: recursive\n      - uses: pnpm/action-setup@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 20\n          cache: pnpm\n      - name: Install\n        working-directory: ${{ github.workspace }}\n        run: pnpm install\n\n      - name: Build all\n        working-directory: ${{ github.workspace }}\n        env:\n          PGSRC: ${{ github.workspace }}/postgres-pglite\n        run: |\n          pnpm build:all\n\n      - name: Upload PGlite Interim to Github artifacts\n        id: upload-pglite-interim-build-files\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-interim-build-files-node-v20.x\n          path: ./packages/pglite/release/**\n          retention-days: 60\n\n      - name: Upload pglite-tools build artifacts to Github artifacts\n        id: upload-pglite-tools-release-files\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-tools-release-files-node-v20.x\n          path: ./packages/pglite-tools/release/**\n          retention-days: 60\n\n      - name: Upload pglite-postgis build artifacts to Github artifacts\n        id: upload-pglite-postgis-release-files\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-postgis-release-files-node-v20.x\n          path: ./packages/pglite-postgis/release/**\n          retention-days: 60\n\n      - name: Typecheck pglite\n        working-directory: ${{ github.workspace }}/packages/pglite\n        run: pnpm typecheck\n      \n      - name: Test pglite\n        working-directory: ${{ github.workspace }}/packages/pglite\n        run: pnpm test\n\n  build-and-test-pglite:\n    name: Build and Test packages/pglite\n    runs-on: blacksmith-32vcpu-ubuntu-2204\n    strategy:\n      matrix:\n        node: [20.x, 21.x, 22.x, 23.x, 24.x]\n      fail-fast: false # allow the build to continue even if some tests fail\n    defaults:\n      run:\n        working-directory: ./packages/pglite\n    needs: [build-all]\n    steps:\n\n      - uses: actions/checkout@v4\n      - uses: pnpm/action-setup@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: ${{ matrix.node }}\n          cache: pnpm\n\n      - uses: denoland/setup-deno@v1\n        with:\n          deno-version: vx.x.x\n\n      - name: Download PGlite WASM build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-interim-build-files-node-v20.x\n          path: ./packages/pglite/release\n\n      - name: Download pglite-tools WASM build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-tools-release-files-node-v20.x\n          path: ./packages/pglite-tools/release\n\n      - name: Download pglite-postgis build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-postgis-release-files-node-v20.x\n          path: ./packages/pglite-postgis/release\n\n      - name: Install dependencies\n        run: |\n          pnpm install --frozen-lockfile\n          pnpm exec playwright install --with-deps\n\n      - name: Build dependencies\n        run: pnpm --filter \"pglite^...\" build\n\n      - name: Typecheck\n        run: pnpm typecheck\n\n      - name: Build\n        run: pnpm build\n\n      - name: Test web integrations\n        # retry on failure as web tests can be flaky\n        run: pnpm test:web || pnpm test:web || pnpm test:web\n\n      - name: Test Deno\n        run: pnpm test:deno\n\n      - name: Pack for distribution\n        run: pnpm pack\n\n      - name: Upload PGlite distribution artifact\n        id: upload-pglite-dist\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-dist-node-v${{ matrix.node }}\n          path: ./packages/pglite/dist/*\n\n      - name: Upload PGlite package artifact\n        id: upload-pglite-package\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-package-node-v${{ matrix.node }}\n          path: ./packages/pglite/electric-sql-pglite-*.tgz\n          retention-days: 60\n\n      - name: Find Comment\n        uses: peter-evans/find-comment@v3\n        id: fc\n        if: github.event_name == 'pull_request'\n        with:\n          issue-number: ${{ github.event.pull_request.number }}\n          comment-author: 'github-actions[bot]'\n          body-includes: '- PGlite with node'\n\n      - name: Create or update build outputs comment\n        uses: peter-evans/create-or-update-comment@v4\n        if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository\n        continue-on-error: true\n        with:\n          comment-id: ${{ steps.fc.outputs.comment-id }}\n          issue-number: ${{ github.event.pull_request.number }}\n          body: |\n            - PGlite with node v${{ matrix.node }}: ${{ steps.upload-pglite-package.outputs.artifact-url }}\n          edit-mode: append\n\n  build-and-test-pglite-dependents:\n    name: Build and Test packages dependent on PGlite\n    runs-on: blacksmith-32vcpu-ubuntu-2204\n    strategy:\n      matrix:\n        node: [20.x, 21.x, 22.x, 23.x, 24.x]    \n      fail-fast: false # allow the build to continue even if some tests fail\n    needs: [build-and-test-pglite]\n    steps:\n      - uses: actions/checkout@v4\n      - uses: pnpm/action-setup@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: ${{ matrix.node }}\n          cache: pnpm\n\n      - name: Download PGlite build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-dist-node-v${{ matrix.node }}\n          path: ./packages/pglite/dist/\n\n      - name: Download pglite-tools WASM build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-tools-release-files-node-v20.x\n          path: ./packages/pglite-tools/release/\n\n      - name: Download pglite-postgis build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-postgis-release-files-node-v20.x\n          path: ./packages/pglite-postgis/release/\n      \n      - name: Install dependencies\n        run: pnpm install --frozen-lockfile\n\n      - name: Build pg-protocol\n        run: pnpm --filter \"@electric-sql/pg-protocol\" build\n\n      - name: Build packages\n        run: pnpm --filter=\"...^pglite\" build\n\n      - name: Typecheck packages\n        run: pnpm --filter=\"...^pglite\" typecheck\n\n      - name: Test packages\n        run: pnpm --filter=\"...^pglite\" test\n\n      - name: Upload pglite-tools distribution artifact\n        id: upload-pglite-tools-dist\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-tools-dist-node-v${{ matrix.node }}\n          path: ./packages/pglite-tools/dist/*\n\n      - name: Upload pglite-postgis distribution artifact\n        id: upload-pglite-postgis-dist\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-postgis-dist-node-v${{ matrix.node }}\n          path: ./packages/pglite-postgis/dist/*                  \n\n  publish-website-with-demos:\n    name: Publish website with demos\n    runs-on: blacksmith-4vcpu-ubuntu-2204\n    needs: [build-and-test-pglite, build-and-test-pglite-dependents]\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          submodules: true\n      - uses: pnpm/action-setup@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 20\n          cache: pnpm\n\n      - name: Download PGlite WASM build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-interim-build-files-node-v20.x\n          path: ./packages/pglite/release\n\n      - name: Download pglite-tools WASM build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-tools-release-files-node-v20.x\n          path: ./packages/pglite-tools/release\n\n      - name: Download pglite-postgis build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-postgis-release-files-node-v20.x\n          path: ./packages/pglite-postgis/release/  \n\n      - name: Download PGlite build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-dist-node-v20.x\n          path: ./packages/pglite/dist/\n\n      - name: Download pglite-postgis dist artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-postgis-dist-node-v20.x\n          path: ./packages/pglite-postgis/dist/\n\n      - name: Install dependencies\n        run: pnpm install --frozen-lockfile\n\n      - name: Build REPL and benchmark packages needed for examples\n        run: pnpm --filter \"@electric-sql/pglite-react\" --filter \"@electric-sql/pglite-repl\" --filter \"benchmark\"  build\n\n      - name: Download PGlite web build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-interim-build-files-node-v20.x\n          path: /tmp/web\n\n      - name: Download pglite-tools dist artifacts to tmp\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-tools-dist-node-v20.x\n          path: /tmp/pglite-tools\n\n      - name: Build demo site\n        env:\n          PGSRC: ${{ github.workspace }}/postgres-pglite\n          POSTGRES_PGLITE_OUT: ${{ github.workspace }}/packages/pglite/release\n          PGLITE: ${{ github.workspace }}/packages/pglite\n        working-directory: ${{ github.workspace }}\n        run: |\n            mkdir -p /tmp/web/examples/ /tmp/web/dist /tmp/web/benchmark\n            cp -r ${PGLITE}/dist/* /tmp/web/dist/\n            cp -r ${PGLITE}/examples/* /tmp/web/examples/\n            cp -r ${{ github.workspace }}/packages/benchmark/dist/* /tmp/web/benchmark/\n            rm -rf /tmp/web/examples/pglite-tools\n            cp -r /tmp/pglite-tools /tmp/web/examples/\n\n      - name: Build docs\n        working-directory: ./docs\n        run: |\n          pnpm run docs:build\n          cp -r ./.vitepress/dist/* /tmp/web/\n\n      - name: Upload Demos to Github artifacts\n        id: upload-demos\n        uses: actions/upload-artifact@v4\n        with:\n          name: pglite-demos\n          path: /tmp/web/**\n          retention-days: 60\n\n      - name: Find Comment\n        uses: peter-evans/find-comment@v3\n        id: fc\n        if: github.event_name == 'pull_request'\n        with:\n          issue-number: ${{ github.event.pull_request.number }}\n          comment-author: 'github-actions[bot]'\n          body-includes: \"- Demos:\"\n\n      - name: Create or update build outputs comment\n        uses: peter-evans/create-or-update-comment@v4\n        if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository\n        continue-on-error: true\n        with:\n          comment-id: ${{ steps.fc.outputs.comment-id }}\n          issue-number: ${{ github.event.pull_request.number }}\n          body: |\n            - Demos: ${{ steps.upload-demos.outputs.artifact-url }}\n          edit-mode: append\n\n      - name: Deploy website to Netlify\n        uses: nwtgck/actions-netlify@v3.0\n        with:\n          publish-dir: '/tmp/web'\n          production-branch: master\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          deploy-message: 'Deploy PR${{ github.event.pull_request.id }}: ${{ github.event.pull_request.title }}'\n        env:\n          NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n          NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}\n        timeout-minutes: 1\n\n  changesets-release:\n    if: github.event_name == 'push'\n    permissions:\n      id-token: write # Required for npm trusted publishing (OIDC)\n      contents: write # to create release (changesets/action)\n      issues: write # to post issue comments (changesets/action)\n      pull-requests: write # to create pull request (changesets/action)\n    name: Make a PR or publish\n    runs-on: ubuntu-22.04\n    needs: [build-all]\n    steps:\n      - uses: actions/checkout@v4\n      - uses: pnpm/action-setup@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 24  # Required for npm trusted publishing (npm 11.5.1+)\n          cache: pnpm\n\n      - name: Download PGlite WASM build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-interim-build-files-node-v20.x\n          path: ./packages/pglite/release\n\n      - name: Download pglite-tools build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-tools-release-files-node-v20.x\n          path: ./packages/pglite-tools/release/\n\n      - name: Download pglite-postgis build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          name: pglite-postgis-release-files-node-v20.x\n          path: ./packages/pglite-postgis/release/\n\n      - run: pnpm install --frozen-lockfile\n      - run: pnpm --filter \"./packages/**\" build\n      - name: Create Release Pull Request or Publish\n        id: changesets\n        uses: changesets/action@v1\n        with:\n          version: pnpm ci:version\n          publish: pnpm ci:publish\n          title: 'chore: publish new package versions'\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n.vscode\n\nnode_modules\n/packages/pglite/dist\n/packages/pglite/pgdata-test\n/packages/pglite/package-lock.json\n/packages/**/dist\n/build\n/postgresql-*.tar.bz2\n/postgresql-*\n/postgresql\n\n/patches/imports/*\n/patches/exports/pgcore.wasm-objdump\n\ndocs/.vitepress/dist\ndocs/.vitepress/cache\n"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"postgres-pglite\"]\n\tpath = postgres-pglite\n\turl = ../postgres-pglite.git\n"
  },
  {
    "path": ".prettierrc.cjs",
    "content": "/**\n * @see https://prettier.io/docs/en/configuration.html\n * @type {import(\"prettier\").Options}\n */\nmodule.exports = {\n  tabWidth: 2,\n  semi: false,\n  singleQuote: true,\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n"
  },
  {
    "path": "POSTGRES-LICENSE",
    "content": "PostgreSQL Database Management System\n(formerly known as Postgres, then as Postgres95)\n\nPortions Copyright (c) 1996-2021, PostgreSQL Global Development Group\n\nPortions Copyright (c) 1994, The Regents of the University of California\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose, without fee, and without a written agreement\nis hereby granted, provided that the above copyright notice and this\nparagraph and the following two paragraphs appear in all copies.\n\nIN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\nDIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING\nLOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS\nDOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\nTHE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS\nON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO\nPROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n  <a href=\"https://pglite.dev\" target=\"_blank\">\n    <picture>\n      <source media=\"(prefers-color-scheme: dark)\"\n          srcset=\"https://raw.githubusercontent.com/electric-sql/pglite/main/docs/public/img/brand/logo.svg\"\n      />\n      <source media=\"(prefers-color-scheme: light)\"\n          srcset=\"https://raw.githubusercontent.com/electric-sql/pglite/main/docs/public/img/brand/logo-light.svg\"\n      />\n      <img alt=\"ElectricSQL logo\"\n          src=\"https://raw.githubusercontent.com/electric-sql/pglite/main/docs/public/img/brand/logo-light.svg\"\n      />\n    </picture>\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://pglite.dev\">PGlite</a> - the WASM build of Postgres from <a href=\"https://electric-sql.com\" target=\"_blank\">ElectricSQL</a>.<br>\n  Build reactive, realtime, local-first apps directly on Postgres.\n<p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/electric-sql/pglite/stargazers/\"><img src=\"https://img.shields.io/github/stars/electric-sql/pglite?style=social&label=Star\" /></a>\n  <!-- <a href=\"https://github.com/electric-sql/pglite/actions\"><img src=\"https://github.com/electric-sql/pglite/workflows/CI/badge.svg\" alt=\"CI\"></a> -->\n  <a href=\"https://github.com/electric-sql/pglite/blob/main/LICENSE\"><img src=\"https://img.shields.io/badge/license-Apache_2.0-green\" alt=\"License - Apache 2.0\"></a>\n  <a href=\"#roadmap\"><img src=\"https://img.shields.io/badge/status-alpha-orange\" alt=\"Status - Alpha\"></a>\n  <a href=\"https://discord.electric-sql.com\"><img src=\"https://img.shields.io/discord/933657521581858818?color=5969EA&label=discord\" alt=\"Chat - Discord\"></a>\n  <a href=\"https://x.com/ElectricSQL\"><img src=\"https://img.shields.io/twitter/follow/nestframework.svg?style=social&label=Follow%20@ElectricSQL\"></a>\n  <a href=\"https://fosstodon.org/@electric\"><img src=\"https://img.shields.io/mastodon/follow/109599644322136925.svg?domain=https%3A%2F%2Ffosstodon.org\"></a>\n</p>\n\n# PGlite - Postgres in WASM\n\n![PGlite](https://raw.githubusercontent.com/electric-sql/pglite/main/screenshot.png)\n\nPGlite is a WASM Postgres build packaged into a TypeScript client library that enables you to run Postgres in the browser, Node.js, Bun and Deno, with no need to install any other dependencies. It is only 3mb gzipped and has support for many Postgres extensions, including [pgvector](https://github.com/pgvector/pgvector).\n\n```javascript\nimport { PGlite } from \"@electric-sql/pglite\";\n\nconst db = new PGlite();\nawait db.query(\"select 'Hello world' as message;\");\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nIt can be used as an ephemeral in-memory database, or with persistence either to the file system (Node/Bun/Deno) or indexedDB (Browser).\n\nUnlike previous \"Postgres in the browser\" projects, PGlite does not use a Linux virtual machine - it is simply Postgres in WASM.\n\nFor full documentation and user guides see [pglite.dev](https://pglite.dev).\n\n## Browser\n\nIt can be installed and imported using your usual package manager:\n\n```js\nimport { PGlite } from \"@electric-sql/pglite\";\n```\nor using a CDN such as JSDeliver:\n\n```js\nimport { PGlite } from \"https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js\";\n```\n\nThen for an in-memory Postgres:\n\n```js\nconst db = new PGlite()\nawait db.query(\"select 'Hello world' as message;\")\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nor to persist the database to indexedDB:\n\n```js\nconst db = new PGlite(\"idb://my-pgdata\");\n```\n\n## Node/Bun/Deno\n\nInstall into your project:\n\n**NodeJS**\n\n```bash\nnpm install @electric-sql/pglite\n```\n\n**Bun**\n\n```bash\nbun install @electric-sql/pglite\n```\n\n**Deno**\n\n```bash\ndeno add npm:@electric-sql/pglite\n```\n\nTo use the in-memory Postgres:\n\n```javascript\nimport { PGlite } from \"@electric-sql/pglite\";\n\nconst db = new PGlite();\nawait db.query(\"select 'Hello world' as message;\");\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nor to persist to the filesystem:\n\n```javascript\nconst db = new PGlite(\"./path/to/pgdata\");\n```\n\n## How it works\n\nPostgreSQL typically operates using a process forking model; whenever a client initiates a connection, a new process is forked to manage that connection. However, programs compiled with Emscripten - a C to WebAssembly (WASM) compiler - cannot fork new processes, and operates strictly in a single-process mode. As a result, PostgreSQL cannot be directly compiled to WASM for conventional operation.\n\nFortunately, PostgreSQL includes a \"single user mode\" primarily intended for command-line usage during bootstrapping and recovery procedures. Building upon this capability, PGlite introduces an input/output pathway that facilitates interaction with PostgreSQL when it is compiled to WASM within a JavaScript environment.\n\n## Limitations\n\n- PGlite is single user/connection.\n\n## How to build PGlite and contribute\n\nThe build process of PGlite is split into two parts:\n\n1. Building the Postgres WASM module.\n2. Building the PGlite client library and other TypeScript packages.\n\nDocker is required to build the WASM module, along with Node (v20 or above) and [pnpm](https://pnpm.io/) for package management and building the TypeScript packages.\n\nTo start checkout the repository and install dependencies:\n\n```bash\ngit clone --recurse-submodules https://github.com/electric-sql/pglite\ncd pglite\npnpm install\n```\n\nTo build everything, we have the convenient `pnpm build:all` command in the root of the repository. This command will:\n\n1. Use Docker to build the Postgres WASM module. The artifacts produced by this step are then copied to `/packages/pglite/release`.\n2. Build the PGlite client library and other TypeScript packages.\n\nTo _only_ build the Postgres WASM module (i.e. point 1 above), run\n\n```bash\npnpm wasm:build\n```\n\nIf you don't want to build the WASM module and assorted WASM binaries from scratch, they are generated automatically on Github after each successful PR merge. You can download the latest binaries by going to the last successfully merged PR and clicking the link after the comment _Interim build files:_. Extract the files and place them under `packages/pglite/release` in your local repo copy.\n\nTo build all TypeScript packages (i.e. point 2 of the above), run:\n\n```bash\npnpm ts:build\n```\n\nThis will build all packages in the correct order based on their dependency relationships. You can now develop any individual package using the `build` and `test` scripts, as well as the `stylecheck` and `typecheck` scripts to ensure style and type validity.\n\nOr alternatively to build a single package, move into the package directory and run:\n\n```bash\ncd packages/pglite\npnpm build\n```\n\nWhen ready to open a PR, run the following command at the root of the repository:\n```bash\npnpm changeset\n```\nAnd follow the instructions to create an appropriate changeset. Please ensure any contributions that touch code are accompanied by a changeset.\n\n## Acknowledgments\n\nPGlite builds on the work of [Stas Kelvich](https://github.com/kelvich) of [Neon](https://neon.tech) in this [Postgres fork](https://github.com/electric-sql/postgres-wasm).\n\n## Sponsors\n\nBig shoutout to everybody supporting us!\n\n### Blacksmith\n\n<a href=\"https://blacksmith.sh\">\n  <img src=\"./docs/img/blacksmith-logo-white-on-black.svg\" width=\"350px\"/>\n</a>\n\n## License\n\nPGlite is dual-licensed under the terms of the [Apache License 2.0](https://github.com/electric-sql/pglite/blob/main/LICENSE) and the [PostgreSQL License](https://github.com/electric-sql/pglite/blob/main/POSTGRES-LICENSE), you can choose which you prefer.\n\nChanges to the [Postgres source](https://github.com/electric-sql/postgres-wasm) are licensed under the PostgreSQL License.\n"
  },
  {
    "path": "docs/.prettierignore",
    "content": ".vitepress/dist\n.vitepress/cache"
  },
  {
    "path": "docs/.vitepress/config.mts",
    "content": "import { defineConfig } from 'vitepress'\n\n// https://vitepress.dev/reference/site-config\nexport default defineConfig({\n  lang: 'en',\n  title: 'PGlite',\n  description: 'Lightweight WASM Postgres',\n  appearance: 'force-dark',\n  base: '/',\n  cleanUrls: true,\n  ignoreDeadLinks: [\n    (url) => {\n      // Ignore links to our example pages\n      return url.toLowerCase().startsWith('./examples')\n    },\n    (url) => {\n      // Ignore links to the benchmark runners\n      return url.toLowerCase().startsWith('./benchmark/')\n    },\n  ],\n  head: [\n    [\n      'link',\n      {\n        rel: 'icon',\n        type: 'image/png',\n        sizes: '16x16',\n        href: '/img/favicons/favicon-16x16.png',\n      },\n    ],\n    [\n      'link',\n      {\n        rel: 'icon',\n        type: 'image/png',\n        sizes: '32x32',\n        href: '/img/favicons/favicon-32x32.png',\n      },\n    ],\n    [\n      'link',\n      {\n        rel: 'apple-touch-icon',\n        sizes: '180x180',\n        href: '/img/favicons/apple-touch-icon.png',\n      },\n    ],\n    [\n      'link',\n      {\n        rel: 'icon',\n        type: 'image/svg+xml',\n        href: '/img/brand/icon-light.svg',\n      },\n    ],\n    [\n      'meta',\n      {\n        property: 'og:image',\n        content: '/img/brand/og-image.png',\n      },\n    ],\n    [\n      'script',\n      {\n        defer: 'defer',\n        'data-domain': 'pglite.dev',\n        src: 'https://plausible.io/js/script.js',\n      },\n    ],\n  ],\n  themeConfig: {\n    // https://vitepress.dev/reference/default-theme-config\n    logo: {\n      dark: '/img/brand/logo.svg',\n      light: '/img/brand/logo-light.svg',\n    },\n    nav: [\n      { text: 'Home', link: '/' },\n      { text: 'About', link: '/docs/about' },\n      { text: 'Docs', link: '/docs/' },\n      { text: 'REPL', link: '/repl/' },\n      { text: 'ElectricSQL', link: 'https://www.electric-sql.com' },\n      {\n        text: 'Star on GitHub',\n        link: 'https://github.com/electric-sql/pglite',\n      },\n    ],\n    sidebar: [\n      {\n        text: 'About',\n        items: [\n          { text: 'What is PGlite', link: '/docs/about' },\n          { text: 'Videos', link: '/docs/videos' },\n        ],\n      },\n      {\n        text: 'Docs',\n        items: [\n          { text: 'Getting Started', link: '/docs/' },\n          { text: 'PGlite API', link: '/docs/api' },\n          { text: 'Live Queries', link: '/docs/live-queries' },\n          { text: 'Filesystems', link: '/docs/filesystems' },\n          {\n            text: 'Framework Hooks',\n            link: '/react',\n            base: '/docs/framework-hooks',\n            collapsed: false,\n            items: [\n              { text: 'React', link: '/react' },\n              { text: 'Vue', link: '/vue' },\n            ],\n          },\n          { text: 'Bundler Support', link: '/docs/bundler-support' },\n          { text: 'Multi-tab Worker', link: '/docs/multi-tab-worker' },\n          { text: 'REPL Component', link: '/docs/repl' },\n          { text: 'ORMs & Query Builders', link: '/docs/orm-support' },\n          { text: 'Sync using ElectricSQL', link: '/docs/sync' },\n          { text: 'PGlite Socket', link: '/docs/pglite-socket' },\n          {\n            text: 'PGlite tools',\n            link: '/pglite-tools',\n            base: '/docs',\n            collapsed: false,\n            items: [\n              { text: 'Package', link: '/pglite-tools' },\n              { text: 'pgdump', link: '/pglite-tools#pgDump' },\n            ],\n          },\n          { text: 'Upgrade between minor versions', link: '/docs/upgrade' },\n        ],\n      },\n      {\n        text: 'Extensions',\n        items: [\n          { text: 'Extensions Catalog', link: '/extensions/' },\n          { text: 'Extension Development', link: '/extensions/development' },\n        ],\n      },\n      {\n        text: 'Reference',\n        items: [\n          { text: 'Examples', link: '/examples.md' },\n          { text: 'Benchmarks', link: '/benchmarks.md' },\n          { text: 'Debugging', link: '/debugging.md' },\n        ],\n      },\n    ],\n    siteTitle: false,\n    socialLinks: [\n      { icon: 'discord', link: 'https://discord.electric-sql.com' },\n      { icon: 'github', link: 'https://github.com/electric-sql/pglite' },\n    ],\n    footer: {\n      message:\n        'Dual-licensed under <a href=\"https://github.com/electric-sql/pglite/blob/main/LICENSE\">Apache 2.0</a> and the <a href=\"https://github.com/electric-sql/pglite/blob/main/POSTGRES-LICENSE\">PostgreSQL License</a>',\n      copyright: '© <a href=\"https://electric-sql.com/\">ElectricSQL</a>',\n    },\n    search: {\n      provider: 'local',\n    },\n  },\n  vue: {\n    template: {\n      compilerOptions: {\n        isCustomElement: (tag) => tag.startsWith('pglite-'),\n      },\n    },\n  },\n})\n"
  },
  {
    "path": "docs/.vitepress/theme/custom.css",
    "content": "@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap');\n\n:root,\n.dark {\n  --vp-c-indigo-1: #d0bcff;\n  --vp-c-indigo-2: #998fe7;\n  --vp-c-indigo-3: #7e78db;\n\n  --vp-nav-logo-height: 30px;\n\n  --electric-color: #00d2a0;\n  --ddn-color: #d0bcff;\n  --pglite-color: #f6f95c;\n\n  --vp-c-brand-1: var(--pglite-color);\n  --vp-c-brand-2: #f1f35e;\n  --vp-c-brand-3: #d8da53;\n}\n\n.dark {\n  --vp-c-text-1: rgba(255, 255, 245, 0.92);\n  --vp-c-text-2: rgba(235, 235, 245, 0.75);\n  --vp-c-text-3: rgba(235, 235, 245, 0.55);\n}\n\n@media (max-width: 575px) {\n  .hide-xs {\n    display: none;\n  }\n}\n\n.img-row {\n  display: grid;\n  grid-template-columns: repeat(1, 1fr);\n  flex-direction: row;\n  margin: 20px 0;\n  gap: 10px;\n}\n.img-row-2 {\n  grid-template-columns: repeat(2, 1fr);\n}\n@media (max-width: 767px) {\n  .img-row-2 {\n    grid-template-columns: repeat(1, 1fr);\n  }\n}\n.img-border {\n  border: 1px #ccc solid;\n  border-radius: 10px;\n  padding: 10px;\n  background: rgb(20, 21, 23);\n}\nfigure {\n  margin: 40px 0;\n}\nfigcaption {\n  text-align: right;\n  font-size: 90%;\n  max-width: 460px;\n  margin-left: auto;\n}\n\niframe {\n  color-scheme: auto;\n}\n.twitter-tweet {\n  margin: 35px auto -95px !important;\n}\n.twitter-tweet iframe {\n  transform: scale(0.8);\n  transform-origin: top left;\n}\n\n.VPHomeHero .VPImage.image-src {\n  max-width: min(calc(250px + 25vw), 560px);\n  margin-left: -40px;\n  margin-top: 10px;\n}\n@media (max-width: 959px) {\n  .VPHomeHero .image .image-container {\n    height: calc(190px + 15vw) !important;\n    margin-top: -20px;\n  }\n  .VPHomeHero .VPImage.image-src {\n    margin-left: 0px;\n  }\n}\n\n.VPFeatures {\n  padding-top: 15px !important;\n  padding-bottom: 45px;\n}\n.VPFeature .VPImage {\n  width: 50px;\n}\n.VPFeature h2.title {\n  font-size: 20px;\n}\n.VPFeature.link[href='/product/electric']:hover {\n  border-color: var(--electric-color);\n}\n.VPFeature.link[href='/product/pglite']:hover {\n  border-color: var(--pglite-color);\n}\n\n.VPFeature .details {\n  font-weight: 600 !important;\n}\n.VPFeature .details,\n.VPButton.medium,\n.link-btn,\n.message,\n.copywrite {\n  font-size: 14.5px !important;\n}\n\n.product-icon {\n  width: 84px;\n  margin-bottom: 20px;\n}\n\n.about-zap {\n  max-width: min(calc(150px + 25vw), 420px);\n  margin: -20px 0 30px;\n}\n@media (max-width: 767px) {\n  .about-zap-container {\n    display: none;\n  }\n}\n\n.vp-doc blockquote {\n  margin: 25px 10px 30px;\n}\n\n.VPButton.brand {\n  color: var(--vp-c-gray-3) !important;\n}\n\n@media (min-width: 768px) {\n  .VPNav a.VPLink[href=\"https://github.com/electric-sql/pglite\"]::after\n  {\n    display: none !important;\n  }\n  .VPNav a.VPLink[href=\"https://github.com/electric-sql/pglite\"] span\n  {\n    border-radius: 20px;\n    padding: 0 15px;\n    line-height: 30px;\n    font-size: 14.5px;\n    color: var(--vp-c-gray-3) !important;\n    border-color: var(--vp-button-brand-border);\n    background-color: var(--vp-button-brand-bg);\n    transition:\n      color 0.25s,\n      border-color 0.25s,\n      background-color 0.25s;\n  }\n  .VPNav a.VPLink[href=\"https://github.com/electric-sql/pglite\"] span:hover\n  {\n    border-color: var(--vp-button-brand-hover-border);\n    color: var(--vp-button-brand-hover-text);\n    background-color: var(--vp-button-brand-hover-bg);\n  }\n}\n"
  },
  {
    "path": "docs/.vitepress/theme/index.js",
    "content": "// .vitepress/theme/index.js\nimport { h } from 'vue'\nimport DefaultTheme from 'vitepress/theme-without-fonts'\nimport './custom.css'\nimport HeroImage from '../../components/HeroImage.vue'\n\nexport default {\n  extends: DefaultTheme,\n  Layout() {\n    return h(DefaultTheme.Layout, null, {\n      'home-hero-image': () => h(HeroImage),\n    })\n  },\n}\n"
  },
  {
    "path": "docs/benchmarks.md",
    "content": "<style scoped>\n  table :is(td, th) {\n    white-space: nowrap;\n  }\n  thead th {\n    vertical-align: top;\n  }\n  thead th:first-child {\n    vertical-align: middle;\n  }\n  tbody td {\n    text-align: right;\n  }\n  tbody td:first-child {\n    text-align: left;\n  }\n</style>\n\n# Benchmarks\n\nThere are two sets of micro-benchmarks: one testing [round trip time](#round-trip-time-benchmarks) for both PGlite and wa-sqlite, and [another one](#sqlite-benchmark-suite) based on the [SQLite speed test](https://sqlite.org/src/file?name=tool/speedtest.tcl&ci=trunk) which was ported for the [wa-sqlite benchmarks](https://rhashimoto.github.io/wa-sqlite/demo/benchmarks.html).\n\nWe also have a set of [native baseline](#native-baseline) results comparing native SQLite (via the Node better-sqlite3 package) to full Postgres.\n\nComparing Postgres to SQLite is challenging, as they are quite different databases, particularly when you take into account the complexities of WASM. Therefore, these benchmarks provide a view of performance only as a starting point to investigate the difference between the two, and the improvements we can make going forward.\n\nAnother consideration when analyzing the speed, is the performance of the various different VFS implementations providing persistence to both PGlite and wa-sqlite.\n\nThe key findings are:\n\n1. wa-sqlite is faster than PGlite when run purely in memory. This is to be expected as it's a simpler database with fewer features; it's designed to go fast. Having said that, PGlite is not slow; it's well within the range you would expect when [comparing native SQLite to Postgres](#native-baseline).\n\n2. For single row CRUD inserts and updates, PGlite is faster then wa-sqlite. This is likely due to PGlite using the Postgres WAL, whereas wa-sqlite is only using the SQLite rollback journal mode and not a WAL.\n\n3. An fsync or flush to the underlying storage can be quite slow, particularly in the browser with IndexedDB for PGlite, or OPFS for wa-sqlite. Both offer some level of \"relaxed durability\" that can be used to accelerate these queries, and this mode is likely suitable for many embedded use cases.\n\nWe plan to continue to use these micro-benchmarks to feed back into the development of PGlite, and update them, and the findings, as we move forward.\n\nThese results below were run on an M2 Macbook Air.\n\n## Round-trip-time benchmarks\n\nThese tests run a series of inserts/updates/deletes to find the average time to execute the type of CRUD operations that are regularly used in an app.\n\nValues are average ms - lower is better.\n\n![](./public/img/benchmark/rtt.svg)\n\n| Test                     | PGlite Memory | PGlite IDB | PGlite IDB<br>_relaxed durability_ | PGlite OPFS AHP | PGlite OPFS AHP<br>_relaxed durability_ | SQLite Memory | SQLite IDB | SQLite IDB<br>_relaxed durability_ | SQLite IDB BatchAtomic | SQLite IDB BatchAtomic<br>_relaxed durability_ | SQLite OPFS | SQLite OPFS AHP |\n| ------------------------ | ------------- | ---------- | ---------------------------------- | --------------- | --------------------------------------- | ------------- | ---------- | ---------------------------------- | ---------------------- | ---------------------------------------------- | ----------- | --------------- |\n| Test 1: insert small row | 0.058         | 21.041     | 0.085                              | 3.946           | 0.079                                   | 0.083         | 2.948      | 2.813                              | 1.627                  | 1.321                                          | 15.535      | 19.816          |\n| Test 2: select small row | 0.088         | 14.49      | 0.108                              | 0.126           | 0.082                                   | 0.042         | 0.673      | 0.744                              | 0.423                  | 0.458                                          | 0.819       | 0.03            |\n| Test 3: update small row | 0.073         | 14.518     | 0.074                              | 0.076           | 0.071                                   | 0.036         | 0.524      | 0.538                              | 0.467                  | 0.546                                          | 1.185       | 0.016           |\n| Test 4: delete small row | 0.145         | 23.746     | 0.142                              | 3.949           | 0.15                                    | 0.1           | 2.196      | 2.111                              | 1.118                  | 0.999                                          | 15.954      | 20.04           |\n| Test 5: insert 1kb row   | 0.075         | 23.679     | 0.08                               | 3.963           | 0.115                                   | 0.04          | 2.701      | 3.247                              | 1.394                  | 1.16                                           | 16.072      | 19.934          |\n| Test 6: select 1kb row   | 0.14          | 14.752     | 0.17                               | 0.192           | 0.131                                   | 0.034         | 0.505      | 0.475                              | 0.334                  | 0.35                                           | 0.801       | 0.071           |\n| Test 7: update 1kb row   | 0.1           | 23.659     | 0.105                              | 3.959           | 0.121                                   | 0.022         | 0.549      | 0.539                              | 0.384                  | 0.383                                          | 1.171       | 0.017           |\n| Test 8: delete 1kb row   | 0.125         | 23.752     | 0.124                              | 4.03            | 0.166                                   | 0.037         | 2.979      | 2.933                              | 1.314                  | 1.068                                          | 15.787      | 19.827          |\n| Test 9: insert 10kb row  | 0.345         | 23.604     | 0.348                              | 4.251           | 0.363                                   | 0.122         | 3.02       | 3.371                              | 1.683                  | 1.501                                          | 15.74       | 20.041          |\n| Test 10: select 10kb row | 0.2           | 14.656     | 0.192                              | 0.246           | 0.207                                   | 0.049         | 0.551      | 0.613                              | 0.482                  | 0.489                                          | 1.521       | 0.091           |\n| Test 11: update 10kb row | 0.326         | 14.731     | 0.306                              | 0.328           | 0.325                                   | 0.072         | 0.506      | 0.504                              | 0.419                  | 0.418                                          | 1.182       | 0.083           |\n| Test 12: delete 10kb row | 0.105         | 23.524     | 0.124                              | 3.981           | 0.134                                   | 0.039         | 3.24       | 3.214                              | 1.481                  | 1.238                                          | 15.794      | 19.884          |\n\n## SQLite benchmark suite\n\nThe SQLite benchmark suite, converted to web for wa-sqlite - it performs a number of large queries to test the performance of the sql engine.\n\nValues are seconds to complete the test - lower is better.\n\n![](./public/img/benchmark/sqlite-suite.svg)\n\n| Test                                                 | PGlite<br>Memory | PGlite<br>IDB FS | PGlite<br>IDB FS<br>_relaxed durability_ | PGlite<br>OPFS Access Handle Pool | PGlite<br>OPFS Access Handle Pool<br>_relaxed durability_ | wa-sqlite<br>Memory (sync) | wa-sqlite<br>Memory (async) | wa-sqlite<br>DB Minimal | wa-sqlite<br>IDB Minimal<br>_relaxed durability_ | wa-sqlite<br>IDB Batch Atomic | wa-sqlite<br>IDB Batch Atomic<br>_relaxed durability_ | wa-sqlite<br>OPFS | wa-sqlite<br>OPFS Access Handle Pool |\n| ---------------------------------------------------- | ---------------- | ---------------- | ---------------------------------------- | --------------------------------- | --------------------------------------------------------- | -------------------------- | --------------------------- | ----------------------- | ------------------------------------------------ | ----------------------------- | ----------------------------------------------------- | ----------------- | ------------------------------------ |\n| Test 1: 1000 INSERTs                                 | 0.016            | 0.035            | 0.015                                    | 0.025                             | \\\\                                                        | 0.035                      | 0.051                       | 2.384                   | 2.588                                            | 1.094                         | 0.939                                                 | 18.847            | 24.67                                |\n| Test 2: 25000 INSERTs in a transaction               | 0.292            | 0.299            | 0.278                                    | 0.296                             | 0.304                                                     | 0.077                      | 0.12                        | 0.14                    | 0.105                                            | 0.15                          | 0.107                                                 | 0.141             | 0.137                                |\n| Test 3: 25000 INSERTs into an indexed table          | 0.355            | 0.388            | 0.351                                    | 0.402                             | 0.374                                                     | 0.1                        | 0.138                       | 0.23                    | 0.185                                            | 0.228                         | 0.198                                                 | 0.174             | 0.143                                |\n| Test 4: 100 SELECTs without an index                 | 0.218            | 0.229            | 0.217                                    | 0.215                             | 0.215                                                     | 0.104                      | 0.17                        | 0.185                   | 0.281                                            | 0.185                         | 0.275                                                 | 0.285             | 0.103                                |\n| Test 5: 100 SELECTs on a string comparison           | 0.485            | 0.504            | 0.482                                    | 0.482                             | 0.484                                                     | 0.451                      | 0.546                       | 0.549                   | 0.553                                            | 0.546                         | 0.548                                                 | 0.545             | 0.452                                |\n| Test 6: Creating an index                            | 0.018            | 0.043            | 0.018                                    | 0.035                             | 0.022                                                     | 0.012                      | 0.016                       | 0.031                   | 0.024                                            | 0.033                         | 0.024                                                 | 0.191             | 0.061                                |\n| Test 7: 5000 SELECTs with an index                   | 0.162            | 0.163            | 0.149                                    | 0.178                             | 0.183                                                     | 0.042                      | 0.064                       | 0.06                    | 0.067                                            | 0.071                         | 0.068                                                 | 0.061             | 0.044                                |\n| Test 8: 1000 UPDATEs without an index                | 0.106            | 0.129            | 0.104                                    | 0.113                             | 0.108                                                     | 0.032                      | 0.055                       | 0.062                   | 0.057                                            | 0.059                         | 0.056                                                 | 0.077             | 0.053                                |\n| Test 9: 25000 UPDATEs with an index                  | 0.547            | 0.579            | 0.537                                    | 0.727                             | 0.685                                                     | 0.131                      | 0.211                       | 0.391                   | 0.364                                            | 0.258                         | 0.219                                                 | 0.274             | 0.163                                |\n| Test 10: 25000 text UPDATEs with an index            | 0.729            | 0.781            | 0.72                                     | 0.936                             | 0.894                                                     | 0.101                      | 0.168                       | 0.348                   | 0.362                                            | 0.244                         | 0.267                                                 | 0.23              | 0.132                                |\n| Test 11: INSERTs from a SELECT                       | 0.123            | 0.182            | 0.123                                    | 0.186                             | 0.14                                                      | 0.047                      | 0.057                       | 0.311                   | 0.33                                             | 0.347                         | 0.358                                                 | 0.171             | 0.102                                |\n| Test 12: DELETE without an index                     | 0.014            | 0.038            | 0.014                                    | 0.027                             | 0.015                                                     | 0.02                       | 0.023                       | 0.915                   | 0.936                                            | 1.148                         | 1.146                                                 | 0.222             | 0.094                                |\n| Test 13: DELETE with an index                        | 0.02             | 0.043            | 0.02                                     | 0.039                             | 0.024                                                     | 0.038                      | 0.044                       | 0.298                   | 0.365                                            | 0.161                         | 0.217                                                 | 0.31              | 0.065                                |\n| Test 14: A big INSERT after a big DELETE             | 0.096            | 0.158            | 0.097                                    | 0.148                             | 0.112                                                     | 0.036                      | 0.045                       | 0.221                   | 0.169                                            | 0.207                         | 0.21                                                  | 0.175             | 0.084                                |\n| Test 15: A big DELETE followed by many small INSERTs | 0.141            | 0.174            | 0.14                                     | 0.161                             | 0.14                                                      | 0.031                      | 0.043                       | 0.138                   | 0.138                                            | 0.083                         | 0.137                                                 | 0.189             | 0.058                                |\n| Test 16: DROP TABLE                                  | 0.004            | 0.025            | 0.002                                    | 0.012                             | 0.004                                                     | 0.003                      | 0.002                       | 0.096                   | 0.163                                            | 0.098                         | 0.144                                                 | 0.61              | 0.077                                |\n\n## Native baseline\n\nAll tests run with Node, [Better-SQLite3](https://www.npmjs.com/package/better-sqlite3) and [node-postgres](https://www.npmjs.com/package/pg) (via [embedded-postgres](https://github.com/leinelissen/embedded-postgres))\n\n![](./public/img/benchmark/baseline.svg)\n\n| Test                                                 | SQLite In-Memory | SQLite On-Disk | Postgres |\n| ---------------------------------------------------- | ---------------- | -------------- | -------- |\n| Test 1: 1000 INSERTs                                 | 0.002            | 0.288          | 0.007    |\n| Test 2: 25000 INSERTs in a transaction               | 0.022            | 0.019          | 0.114    |\n| Test 3: 25000 INSERTs into an indexed table          | 0.035            | 0.04           | 0.383    |\n| Test 4: 100 SELECTs without an index                 | 0.076            | 0.078          | 0.094    |\n| Test 5: 100 SELECTs on a string comparison           | 0.268            | 0.429          | 0.259    |\n| Test 6: Creating an index                            | 0.007            | 0.011          | 0.01     |\n| Test 7: 5000 SELECTs with an index                   | 0.01             | 0.01           | 0.078    |\n| Test 8: 1000 UPDATEs without an index                | 0.018            | 0.021          | 0.047    |\n| Test 9: 25000 UPDATEs with an index                  | 0.047            | 0.056          | 0.307    |\n| Test 10: 25000 text UPDATEs with an index            | 0.032            | 0.041          | 0.416    |\n| Test 11: INSERTs from a SELECT                       | 0.022            | 0.027          | 0.072    |\n| Test 12: DELETE without an index                     | 0.01             | 0.023          | 0.007    |\n| Test 13: DELETE with an index                        | 0.017            | 0.021          | 0.019    |\n| Test 14: A big INSERT after a big DELETE             | 0.017            | 0.021          | 0.048    |\n| Test 15: A big DELETE followed by many small INSERTs | 0.008            | 0.01           | 0.067    |\n| Test 16: DROP TABLE                                  | 0.001            | 0.003          | 0.004    |\n\n## Run the benchmarks yourself\n\nWe have a hosted version of the benchmark runners that you can run yourself:\n\n- <a href=\"./benchmark/\" target=\"_blank\">Benchmark using the SQLite benchmark suite</a>\n- <a href=\"./benchmark/rtt.html\" target=\"_blank\">Benchmark round-trim-time for CRUD queries</a>\n\nAdditionally, to run the native baseline, checkout the [PGlite monorepo](https://github.com/electric-sql/pglite), then:\n\n```sh\ncd ./packages/benchmark\npnpm install\nnpx tsx baseline.ts\n```\n"
  },
  {
    "path": "docs/components/HeroImage.vue",
    "content": "<script setup>\nimport { ref, onMounted, onUnmounted } from 'vue'\n\nconst positions = new Array(5).fill(0).map((_, i) => {\n  return {\n    a: -(i * 30 - 20),\n    o: 1 - i * 0.15,\n    s: 1 - i * 0.05,\n  }\n})\n\nconst heroImage = ref(null)\n\nconst handleMouseMove = (event) => {\n  const { clientX, clientY } = event\n  const width = window.innerWidth\n  const height = window.innerHeight\n  const rotateX = (clientY / height) * 5 - 10\n  const rotateY = (clientX / width) * 5 - 35\n\n  if (heroImage.value) {\n    heroImage.value.style.transform = `translateZ(-100px) scale(1.2) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`\n  }\n}\n\nonMounted(() => {\n  window.addEventListener('mousemove', handleMouseMove)\n})\n\nonUnmounted(() => {\n  window.removeEventListener('mousemove', handleMouseMove)\n})\n</script>\n\n<template>\n  <div class=\"custom-hero-image-wrapper\">\n    <div ref=\"heroImage\" class=\"custom-hero-image\">\n      <img src=\"/img/brand/icon-light.svg\" class=\"main\" />\n      <div class=\"chain\">\n        <div\n          class=\"baby\"\n          v-for=\"(pos, i) in positions\"\n          :key=\"i\"\n          :style=\"{\n            transform: `rotateY(${pos.a}deg) scale(${pos.s})`,\n            filter: `brightness(${pos.o})`,\n          }\"\n        >\n          <img src=\"/img/brand/icon-light.svg\" />\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n\n<style scoped>\n.custom-hero-image-wrapper {\n  position: relative;\n  perspective: 1000px;\n}\n.custom-hero-image {\n  position: relative;\n  transform-style: preserve-3d;\n  transform: translateZ(-100px) scale(1.2) rotateX(-10deg) rotateY(-35deg);\n  transition: transform 0.1s ease-out;\n}\n.elephant-chain {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  transform: translateZ(50px);\n}\n.main {\n  transform: translateZ(-50px) scale(1.1);\n}\n.chain {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  transform-style: preserve-3d;\n}\n.baby {\n  position: absolute;\n  bottom: 0;\n  left: 20%;\n  width: 45%;\n  height: 45%;\n  transform-origin: 0 0 -300px;\n}\n.baby img {\n  transform: translate(-50%, 0);\n  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.5));\n}\n\n@media (max-width: 959px) {\n  .custom-hero-image-wrapper {\n    transform: scale(0.55);\n  }\n}\n@media (max-width: 575px) {\n  .custom-hero-image-wrapper {\n    transform: scale(0.45);\n  }\n}\n</style>\n"
  },
  {
    "path": "docs/components/Repl.vue",
    "content": "<script setup>\nimport { ref, watch, onBeforeUnmount } from 'vue'\nimport '@electric-sql/pglite-repl/webcomponent'\nimport { defaultDarkThemeInit } from '@electric-sql/pglite-repl/webcomponent'\nimport { PGlite } from '@electric-sql/pglite'\nimport { vector } from '@electric-sql/pglite/vector'\n\nconst pg = new PGlite({\n  extensions: {\n    vector,\n  },\n})\nconst repl = ref(null)\n\nlet stopAnimation = false\nlet isAnimating = false\nlet observer = null\n\nlet pausePromise\nlet resume\n\nfunction createPausePromise() {\n  pausePromise = new Promise((resolve) => {\n    resume = resolve\n  })\n}\n\nconst rootStyle = window.getComputedStyle(document.body)\nconst codeStyles = Object.fromEntries(\n  [\n    '--vp-code-line-height',\n    '--vp-code-font-size',\n    '--vp-code-font-family',\n    '--vp-code-block-bg',\n    '--vp-code-line-highlight-color',\n    '--vp-c-brand-1',\n  ].map((prop) => [prop, rootStyle.getPropertyValue(prop)]),\n)\nconst theme = defaultDarkThemeInit({\n  settings: {\n    fontFamily: codeStyles['--vp-code-font-family'],\n    background: codeStyles['--vp-code-block-bg'],\n    lineHighlight: codeStyles['--vp-code-line-highlight-color'],\n    caret: codeStyles['--vp-c-brand-1'],\n  },\n})\n\nwatch(\n  () => repl.value,\n  async () => {\n    if (repl.value && repl.value.shadowRoot) {\n      let inputEl\n      while (!inputEl) {\n        inputEl = repl.value.shadowRoot.querySelector('.cm-content')\n        await new Promise((resolve) => setTimeout(resolve, 50))\n      }\n\n      const replRootEl = repl.value.shadowRoot.querySelector('.PGliteRepl-root')\n      replRootEl.setAttribute('style', `--PGliteRepl-font-size: 14.5px;`)\n\n      const styleEl = document.createElement('style')\n      styleEl.innerHTML = `\n        .cm-cursor {\n          border-left-width: 0.5em !important;\n        }\n        .cm-scroller {\n          line-height: 1.4 !important;\n        }\n      `\n      repl.value.shadowRoot.insertBefore(\n        styleEl,\n        repl.value.shadowRoot.firstChild,\n      )\n\n      inputEl.addEventListener('focus', () => {\n        if (!stopAnimation) {\n          stopAnimation = true\n          inputEl.innerText = ''\n        }\n      })\n\n      // Setup Intersection Observer to pause/resume animation based on full visibility\n      observer = new IntersectionObserver(\n        (entries) => {\n          entries.forEach((entry) => {\n            if (entry.intersectionRatio === 1) {\n              if (!isAnimating) {\n                isAnimating = true\n                if (resume) resume()\n              }\n            } else {\n              isAnimating = false\n              createPausePromise()\n            }\n          })\n        },\n        { threshold: 1.0 },\n      )\n\n      observer.observe(repl.value)\n      createPausePromise() // Initialize pausePromise\n      animateInput(inputEl)\n    }\n  },\n)\n\nonBeforeUnmount(() => {\n  if (observer) {\n    observer.disconnect()\n  }\n})\n\nconst queries = ['SELECT * FROM now();']\n\nasync function animateInput(inputEl) {\n  await sleep(1000)\n  for (const query of queries) {\n    let value = ''\n    for (const c of query) {\n      value += c\n      if (stopAnimation) {\n        return\n      }\n      if (!isAnimating) {\n        await pausePromise\n      }\n      inputEl.innerText = value\n      await sleep(50)\n    }\n    dispatchEnterEvent(inputEl)\n    await sleep(400)\n  }\n  inputEl.focus()\n}\n\nasync function sleep(time) {\n  return new Promise((resolve) => setTimeout(resolve, time))\n}\n\nfunction dispatchEnterEvent(el) {\n  const event = new KeyboardEvent('keydown', {\n    code: 'Enter',\n    key: 'Enter',\n    charCode: 13,\n    keyCode: 13,\n    view: window,\n    bubbles: true,\n  })\n  el.dispatchEvent(event)\n}\n</script>\n\n<template>\n  <pglite-repl\n    ref=\"repl\"\n    class=\"repl\"\n    :pg=\"pg\"\n    :darkTheme=\"theme\"\n    theme=\"dark\"\n  />\n</template>\n\n<style scoped>\n.repl {\n  display: flex;\n  align-items: stretch;\n  border-radius: 12px;\n  overflow: hidden;\n  font-size: 1rem;\n}\n</style>\n"
  },
  {
    "path": "docs/components/starCount.ts",
    "content": "const FALLBACK_INITIAL_COUNT = 5_000\n\nexport async function localStorageCache(\n  key: string,\n  ttl: number,\n  valueCb: () => unknown,\n) {\n  const now = new Date().getTime()\n  const cachedItem = localStorage.getItem(key)\n\n  if (cachedItem) {\n    const cachedData = JSON.parse(cachedItem)\n    if (now < cachedData.expiry) {\n      return cachedData.value\n    }\n  }\n\n  const value = await valueCb()\n  const expiry = now + ttl * 1000\n  const dataToCache = {\n    value: value,\n    expiry: expiry,\n  }\n  localStorage.setItem(key, JSON.stringify(dataToCache))\n  return value\n}\n\nexport async function starCount(currentCount) {\n  const ttl = 3600 // 1 hour\n  return localStorageCache('starCount', ttl, async () => {\n    return await fetchStarCount(currentCount)\n  })\n}\n\nexport async function fetchStarCount(currentCount) {\n  const resp = await fetch('https://api.github.com/repos/electric-sql/pglite')\n\n  if (resp.ok) {\n    const data = await resp.json()\n\n    return data.stargazers_count\n  }\n\n  return currentCount || FALLBACK_INITIAL_COUNT\n}\n"
  },
  {
    "path": "docs/count.data.ts",
    "content": "import { fetchStarCount } from './components/starCount.ts'\n\nexport default {\n  async load() {\n    return await fetchStarCount()\n  },\n}\n"
  },
  {
    "path": "docs/debugging.md",
    "content": "# Debugging PGlite\n\nBuilding a `debug` version of PGlite allows you to debug both the TypeScript and WASM parts of the project.\n\nYou can run an interactive debug session either in Chrome or in Visual Studio Code.\n\n## Using Visual Studio Code\n\n### Prerequisites\n\n- Visual Studio Code with [WebAssembly DWARF Debugging](https://marketplace.visualstudio.com/items?itemName=ms-vscode.wasm-dwarf-debugging) extension installed\n\n## Using Chrome\n\n### Prerequisites\n\n- Chrome browser\n- [C/C++ DevTools Support (DWARF) Chrome extension](https://goo.gle/wasm-debugging-extension).\n\n# Running the DEBUG build\n\n`$ pnpm build:all:debug`\n\nThis step will create a `pglite.wasm` build that contains the debug information as well as a non-minified version of the pglite javascript frontend. You can now use this build to run interactive debug sessions.\n\nFor example, you can start the `JavaScript Debug Terminal` inside VSCode and run some of the pglite tests.\n\nFrom the folder `packages/pglite`:\n\n`$ vitest tests/basic.test.ts`\n"
  },
  {
    "path": "docs/docs/about.md",
    "content": "# What is PGlite\n\nPGlite is a [WASM](https://webassembly.org/) Postgres build packaged into a TypeScript/JavaScript client library, that enables you to run Postgres in the browser, [Node.js](https://nodejs.org/) and [Bun](https://bun.sh/), with no need to install any other dependencies. It's under 3mb Gzipped, and has support for many [Postgres extensions](../extensions/), including [pgvector](../extensions/#pgvector).\n\nGetting started with PGlite is simple: just install and import the NPM package, then create your embedded database:\n\n```js\nimport { PGlite } from '@electric-sql/pglite'\n\nconst db = new PGlite()\nawait db.query(\"select 'Hello world' as message;\")\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nIt can be used as an ephemeral in-memory database, or with persistence either to the file system (Node/Bun), or IndexedDB (browser).\n\nUnlike previous \"Postgres in the browser\" projects, PGlite does not use a Linux virtual machine - it is simply Postgres in WASM.\n\nIt's being developed by [ElectricSQL](https://electric-sql.com/) for our use case of embedding into applications, either locally or at the edge, allowing users to sync a subset of their server-side Postgres database.\n\nHowever, there are many more use cases for PGlite beyond its use as an embedded application database:\n\n- **Unit and CI testing**<br>\n  PGlite is very fast to start and tear down. It's perfect for unit tests - you can have a unique fresh Postgres for each test.\n\n- **Local development**<br>\n  You can use PGlite as an alternative to a full local Postgres for development; simplifying your development environments.\n\n- **Remote development, or local web containers**<br>\n  As PGlite is so lightweight it can be easily embedded into remote containerised development environments, or in-browser [web containers](https://webcontainers.io).\n\n- **On-device or edge AI and RAG**<br>\n  PGlite has full support for [pgvector](../extensions/#pgvector), enabling a local or edge retrieval augmented generation (RAG) workflow.\n\nWe are very keen to establish PGlite both as an open source, and open contribution, project, working to build a community around it, so as to develop its capabilities for all use cases.\n\nRead more in our [getting started guide](./index.md).\n"
  },
  {
    "path": "docs/docs/api.md",
    "content": "---\noutline: [2, 3]\n---\n\n# PGlite API\n\n## Main Constructor\n\nThe main constructor is imported as:\n\n```ts\nimport { PGlite } from '@electric-sql/pglite'\n```\n\nThe preferred way to create a PGlite instance is with the `PGlite.create()` static method that returns a promise, resolving to the new PGlite instance.\n\n`await PGlite.create(dataDir: string, options: PGliteOptions)`<br />\n`await PGlite.create(options: PGliteOptions)`\n\nThere are a couple of advantages to using the static method:\n\n- This awaits the [`.waitReady`](#waitready) promise, ensuring that the database has been fully initialised.\n- When using TypeScript and extensions, the returned PGlite instance will have the extensions namespace on its type. This is not possible with the standard constructor due to TypesScript limitations.\n\nA new PGlite instance can also be created using the `new PGlite()` constructor.\n\n`new PGlite(dataDir: string, options: PGliteOptions)`<br/>\n`new PGlite(options: PGliteOptions)`\n\n#### `dataDir`\n\nPath to the directory for storing the Postgres database. You can provide a URI scheme for various storage backends:\n\n- `file://` or unprefixed<br />\n  File system storage, available in Node and Bun.\n- `idb://`<br />\n  [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) storage, available in the browser.\n- `memory://`<br />\n  In-memory ephemeral storage, available in all platforms.\n\n#### `options`\n\n- `dataDir?: string`<br />\n  The directory in which to store the Postgres database when not provided as the first argument.\n- `debug?: 1-5`<br />\n  the Postgres debug level. Logs are sent to the console.\n- `relaxedDurability?: boolean`<br />\n  Under relaxed durability mode, PGlite will not wait for flushes to storage to complete after each query before returning results. This is particularly useful when using the IndexedDB file system.\n- `fs?: Filesystem`<br />\n  The alternative to providing a dataDir with a filesystem prefix is to initialise a `Filesystem` yourself and provide it here. See [Filesystems](./filesystems.md)\n- `loadDataDir?: Blob | File`<br />\n  A tarball of a PGlite `datadir` to load when the database starts. This should be a tarball produced from the related [`.dumpDataDir()`](#dumpdatadir) method.\n- `extensions?: Extensions`<br />\n  An object containing the extensions you wish to load.\n- `username?: string`<br />\n  The username of the user to connect to the database as. Permissions will be applied in the context of this user.\n- `database?: string`<br />\n  The database from the Postgres cluster within the `dataDir` to connect to.\n- `initialMemory?: number`<br />\n  The initial amount of memory in bytes to allocate for the PGlite instance. PGlite will grow the memory automatically, but if you have a particularly large database you can set this higher to prevent the pause during memory growth.\n- `wasmModule?: WebAssembly.Module`<br />\n  A precompiled WASM module to use instead of downloading the default version, or when using a bundler that either can, or requires, loading the WASM module with a ESM import.\n- `fsBundle?: Blob | File`<br />\n  A filesystem bundle to use instead of downloading the default version. This is useful if in a restricted environment such as an edge worker.\n- `parsers: ParserOptions` <br />\n  An object of type `{ [pgType: number]: (value: string) => any; }` mapping Postgres data type IDs to parser functions. For convenience, the `pglite` package exports a constant for most common Postgres types.\n\n  ```ts\n  import { PGlite, types } from '@electric-sql/pglite'\n\n  const pg = await PGlite.create({\n    parsers: {\n      [types.TEXT]: (value) => value.toUpperCase(),\n    },\n  })\n  ```\n\n- `serializers: SerializerOptions` <br />\n  An object of type `{ [pgType: number]: (value: any) => string; }` mapping Postgres data type IDs to serializer functions.\n\n  ```ts\n  import { PGlite, types } from '@electric-sql/pglite'\n\n  const pg = await PGlite.create({\n    serializers: {\n      [types.NUMERIC]: (value) => value.toString(),\n    },\n  })\n  ```\n\n#### `options.extensions`\n\nPGlite and Postgres extensions are loaded into a PGLite instance on start, and can include both a WASM build of a Postgres extension and/or a PGlite client plugin.\n\nThe `options.extensions` parameter is an object of `namespace: extension` parings. The namespace is used to expose the PGlite client plugin included in the extension. An example of this is the [live queries](./live-queries.md) extension.\n\n```ts\nimport { PGlite } from '@electric-sql/pglite'\nimport { live } from '@electric-sql/pglite/live'\nimport { vector } from '@electric-sql/pglite/vector'\n\nconst pg = await PGlite.create({\n  extensions: {\n    live, // Live query extension, is a PGlite client plugin\n    vector, // Postgres pgvector extension\n  },\n})\n\n// The `live` namespace is added by the use of the\n// `live` key in the `extensions` object.\npg.live.query('...')\n```\n\nFor information on how to develop a PGlite extension see [Extension Development](../extensions/development.md).\n\n## Methods\n\n### query\n\n`.query<T>(query: string, params?: any[], options?: QueryOptions): Promise<Results<T>>`\n\nExecute a single statement, optionally with parameters.\n\nUses the _extended query_ Postgres wire protocol.\n\nReturns single [result object](#results-t-objects).\n\n##### Example\n\n```ts\nawait pg.query('INSERT INTO test (name) VALUES ($1);', ['test'])\n// { affectedRows: 1 },\n```\n\n##### Query Options\n\nThe `query` and `exec` methods take an optional `options` objects with the following parameters:\n\n- `rowMode: \"object\" | \"array\"` <br />\n  The returned row object type, either an object of `fieldName: value` mappings or an array of positional values. Defaults to `\"object\"`.\n- `parsers: ParserOptions` <br />\n  An object mapping Postgres data type IDs to parser functions. This option overrides any parsers set at the instance level.\n  ```ts\n  import { types } from '@electric-sql/pglite'\n  await pg.query(`SELECT * FROM test WHERE name = $1;`, ['test'], {\n    parsers: {\n      [types.TEXT]: (value) => value.toUpperCase(),\n    },\n  })\n  ```\n- `serializers: SerializerOptions` <br />\n  An object mapping Postgres data type IDs to serializer functions. This option overrides any serializers set at the instance level.\n  ```ts\n  import { types } from '@electric-sql/pglite'\n  await pg.query(`INSERT INTO test (numeric) VALUES ($1);`, [100n], {\n    serializers: {\n      [types.NUMERIC]: (value: number | bigint) => value.toString(),\n    },\n  })\n  ```\n- `blob: Blob | File` <br />\n  Attach a `Blob` or `File` object to the query that can used with a `COPY FROM` command by using the virtual `/dev/blob` device, see [importing and exporting](#dev-blob).\n\n### sql\n\n`   .sql<T>``: Promise<Results<T>>`\n\n`.sql<T>(strings: TemplateStringsArray, ...params: any[]): Promise<Results<T>>`\n\nYou can also use the [`    sql`` `](#tagged-template-queries) tagged template literal to create queries:\n\n```ts\nawait pg.sql`SELECT * FROM test WHERE name = ${'test'}`\n// equivalent of pg.query('SELECT * FROM test WHERE name = $1', ['test'])\n```\n\nSee the [templating](#tagged-template-queries) section for more details on how to use the tagged template literal along with various helpers for more complex cases.\n\n### exec\n\n`.exec(query: string, options?: QueryOptions): Promise<Array<Results>>`\n\nExecute one or more statements. _(note that parameters are not supported)_\n\nThis is useful for applying database migrations, or running multi-statement SQL that doesn't use parameters.\n\nUses the _simple query_ Postgres wire protocol.\n\nReturns array of [result objects](#results-t-objects); one for each statement.\n\n##### Example\n\n```ts\nawait pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n  INSERT INTO test (name) VALUES ('test');\n  SELECT * FROM test;\n`)\n// [\n//   { affectedRows: 0 },\n//   { affectedRows: 1 },\n//   {\n//     rows: [\n//       { id: 1, name: 'test' }\n//     ]\n//     affectedRows: 0,\n//     fields: [\n//       { name: 'id', dataTypeID: '23' },\n//       { name: 'name', dataTypeID: '25' },\n//     ]\n//   }\n// ]\n```\n\n### transaction\n\n`.transaction<T>(callback: (tx: Transaction) => Promise<T>)`\n\nTo start an interactive transaction, pass a callback to the transaction method. It is passed a `Transaction` object which can be used to perform operations within the transaction.\n\nThe transaction will be committed when the promise returned from your callback resolves, and automatically rolled back if the promise is rejected.\n\n##### `Transaction` objects\n\n- `tx.query<T>(query: string, params?: any[], options?: QueryOptions): Promise<Results<T>>`<br />\n  The same as the main [`.query` method](#querytquery-string-params-any-promiseresultst).\n- `   tx.sql<T>``: Promise<Results<T>>`<br />\n  The same as the main [`.sql` template string method](#tagged-template-queries).\n- `tx.exec(query: string, options?: QueryOptions): Promise<Array<Results>>`<br />\n  The same as the main [`.exec` method](#execquery-string-promisearrayresults).\n- `tx.rollback()`<br />\n  Rollback and close the current transaction.\n\n##### Example\n\n```ts\nawait pg.transaction(async (tx) => {\n  await tx.query(\n    'INSERT INTO test (name) VALUES ('$1');',\n    [ 'test' ]\n  );\n  return await ts.query('SELECT * FROM test;');\n});\n```\n\n### close\n\n`.close(): Promise<void>`\n\nClose the database, ensuring it is shut down cleanly.\n\n### listen\n\n`.listen(channel: string, callback: (payload: string) => void): Promise<(() => Promise<void>>`\n\nSubscribe to a [pg_notify](https://www.postgresql.org/docs/current/sql-notify.html) channel. The callback will receive the payload from the notification.\n\nReturns an unsubscribe function to unsubscribe from the channel.\n\n##### Example\n\n```ts\nconst unsub = await pg.listen('test', (payload) => {\n  console.log('Received:', payload)\n})\nawait pg.query(\"NOTIFY test, 'Hello, world!'\")\n```\n\nChannel names are case sensitive if double-quoted (`pg.listen('\"TeST\"')`). Otherwise channel name will be lower cased (`pg.listen('TeStiNG')` == `pg.listen('testing')`).\n\n### unlisten\n\n`.unlisten(channel: string, callback?: (payload: string) => void): Promise<void>`\n\nUnsubscribe from the channel. If a callback is provided it removes only that callback from the subscription. When no callback is provided, it unsubscribes all callbacks for the channel.\n\n### onNotification\n\n`onNotification(callback: (channel: string, payload: string) => void): () => void`\n\nAdd an event handler for all notifications received from Postgres.\n\n**Note:** This does not subscribe to the notification; you will need to manually subscribe with `LISTEN channel_name`.\n\n### offNotification\n\n`offNotification(callback: (channel: string, payload: string) => void): void`\n\nRemove an event handler for all notifications received from Postgres.\n\n### dumpDataDir\n\n`dumpDataDir(compression?: 'auto' | 'gzip' | 'none'): Promise<File | Blob>`\n\nDump the Postgres `datadir` to a Gzipped tarball.\n\nThe compression option defaults to `auto` which uses compression where possible. You can explicit opt in or out of compression with `gzip` and `none`. When you specify that compression is required with `gzip`, if the environment doesn't support a suitable compression API it will throw an error.\n\nThis can then be used in combination with the [`loadDataDir`](#options) option when starting PGlite to load a dumped database from storage.\n\n::: tip NOTE\n\nThe datadir dump may not be compatible with other Postgres versions; it is only designed for importing back into PGlite.\n\n:::\n\n### execProtocol\n\n`execProtocol(message: Uint8Array, options?: ExecProtocolOptions): Promise<Array<[BackendMessage, Uint8Array]>>`\n\nExecute a Postgres wire protocol message, returning an array of tuples, one for each wire protocol result message, consisting of:\n\n1. The passed message object - see [pg-protocol](https://github.com/brianc/node-postgres/tree/master/packages/pg-protocol)\n2. The raw `Uint8Array` for that message.\n\nThis API is safe to use alongside the other PGlite query APIs as it handles error, transactions and notifications.\n\n### execProtocolRaw\n\n`execProtocolRaw(message: Uint8Array, options?: ExecProtocolOptions): Promise<Uint8Array>`\n\nExecute a Postgres wire protocol message, returning the unparsed result `Uint8Array`, this includes all wire protocol result messages emitted as a result of your message and will require external passing. This is the lowest level API exposed by PGlite and can be used to interact with a PGlite database using existing Postgres clients. It is likely that you will want to use something such as [pg-gateway](https://github.com/supabase-community/pg-gateway) that uses this internally to expose the database on a TCP socket.\n\n::: warning WARNING\n\n`execProtocolRaw` bypasses PGlite's protocol wrappers that manage error/notice messages,\ntransactions, and notification listeners. Only use if you need to bypass these wrappers and don't intend to use the above features. [`execProtocol`](#execprotocol) is a safer alternative.\n\n:::\n\n`execProtocolRawStream(message: Uint8Array, options: ExecProtocolOptionsStream): void`\nSame as `execProtocolRaw` but returns raw messages in the `options.onRawData` callback as they arrive from the backend. This is particularly useful when expecting large sets of data.\nSee a usage example in the `pglite-socket` project, where the server uses this method to pass the results to the client socket as they arrive.\n\n### describeQuery\n\n`.describeQuery(query: string, options?: QueryOptions): Promise<DescribeQueryResult>`\n\nGet type information about a query's parameters and result fields without executing it. This is useful for understanding the expected parameter types and the structure of the results that would be returned. It can be used to build a type inference system for queries using PGlite.\n\nReturns an object with:\n\n- `queryParams: Array<{ dataTypeID: number, serializer: Function }>` <br/>\n  Information about each parameter's Postgres type ID and the serializer function used to convert JavaScript values to Postgres format.\n\n- `resultFields: Array<{ name: string, dataTypeID: number, parser: Function }>` <br/>\n  Information about each result field including its name, Postgres type ID, and the parser function used to convert Postgres values to JavaScript format.\n\n### refreshArrayTypes\n\n`.refreshArrayTypes(): Promise<void>`\n\nRefresh the array types in the database. This is useful when you have added columns that contain array types (ie. array of enums) and need to update the internal array type cache. This is done automatically when the database is started, but can be called manually if needed.\n\n##### Example\n\n```ts\nawait pg.describeQuery('SELECT * FROM test WHERE name = $1', ['test'])\n\n// returns:\n{\n  queryParams: [{ dataTypeID: 25, serializer: Function }],\n  resultFields: [{ name: \"id\", dataTypeID: 23, parser: Function }],\n}\n```\n\n### clone\n\n`.clone(): Promise<PGlite>`\n\nClones the current instance. This is useful when a series of operations, like unit or integration test, need to be run on the same database without having to recreate the database each time, or for each test.\n\n## Properties\n\n### ready\n\n`.ready` _`boolean (read only)`_\n\nWhether the database is ready to accept queries.\n\n### closed\n\n`.closed` _`boolean (read only)`_\n\nWhether the database is closed and no longer accepting queries.\n\n### waitReady\n\n`.waitReady` _`Promise<void>`_\n\nPromise that resolves when the database is ready to use.\n\n::: tip NOTE\n\nQuery methods will wait for the `waitReady` promise to resolve if called before the database has fully initialised, and so it is not necessary to wait for it explicitly.\n\n:::\n\n## `Results<T>` Objects\n\nResult objects have the following properties:\n\n- `rows: Row<T>[]`<br />\n  The rows returned by the query.\n\n- `affectedRows?: number` <br />\n  Count of the rows affected by the query. Note, this is _not_ the count of rows returned, it is the number or rows in the database changed by the query.\n\n- `fields: { name: string; dataTypeID: number }[]`<br />\n  Field name and Postgres data type ID for each field returned.\n\n- `blob?: Blob` <br />\n  A `Blob` containing the data written to the virtual `/dev/blob/` device by a `COPY TO` command. See [/dev/blob](#dev-blob).\n\n## `Row<T>` Objects\n\nRows objects are a key / value mapping for each row returned by the query.\n\nThe `.query<T>()` method can take a TypeScript type describing the expected shape of the returned rows.\n\n::: tip NOTE\n\nThese types are not validated at run time, the result is only cast to the provided type.\n\n:::\n\n## Tagged Template Queries\n\nPGlite has support for using [tagged template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#tagged_templates) to construct SQL queries via the `    .sql`` ` method on both the main PGlite instance and [Transaction](#transaction-objects) objects. Substituted template values are automatically converted to query parameters, and you receive the same results as calling the [`query`](#query) API directly.\n\n```ts\nconst name = getName()\nawait pg.sql`SELECT * FROM test WHERE name = ${name}`\n```\n\nThere are helpers in the `template` export to create more complex and parametrizeable templated queries:\n\n- `    identifier`` ` <br />\n  Tag identifiers like column and table names to escape them with quotes and prevent them from becoming parameters.\n- `    raw`` ` <br />\n  Tag any string that you want to avoid being interpreted as a parameter. Will allow you to still do regular string templating.\n- `    sql`` ` <br />\n  Tag nested templated literals to preserve behaviour and parametrization. Will allow you to create reusable templating utilities\n- `    query`` ` <br />\n  Use at the top level tag in order to generate the parametrized query without passing it to the `query` API. Returns a `{ query: string, params: any[] }` object with the parametrized query and any parameters used in the query.\n\nIf you require additional configurations or complex binary parameters it's best to use the [`query` method](#query).\n\n##### Example\n\n```ts\nimport { identifier, raw, sql, query } from '@electric-sql/pglite/template'\n\nawait pg.sql`SELECT * FROM ${identifier`test`} WHERE name = ${'test'}`\n// equivalent of pg.query('SELECT * FROM \"test\" WHERE name = $1', ['test'])\n\nconst filterStmt = (filterVar?: string) =>\n  filterVar ? sql`WHERE name = ${filterVar}` : raw`WHERE 1=1`\n\nawait pg.sql`SELECT * FROM test ${filterStmt('test')}`\n// equivalent of pg.query('SELECT * FROM \"test\" WHERE name = $1', ['test'])\nawait pg.sql`SELECT * FROM test ${filterStmt(null)}`\n// equivalent of pg.query('SELECT * FROM \"test\" WHERE 1=1, [])\n\nquery`SELECT * FROM ${identifier`test`} WHERE name = ${'test'}`\n// { query: 'SELECT * FROM \"test\" WHERE name = $1', params: ['test'] }\n```\n\n## /dev/blob\n\nPGlite has support for importing and exporting via the SQL `COPY TO/FROM` command by using a virtual `/dev/blob` device.\n\nTo import a file, pass the `File` or `Blob` in the query options as `blob`, and copy from the `/dev/blob` device.\n\n```ts\nawait pg.query(\"COPY my_table FROM '/dev/blob';\", [], {\n  blob: MyBlob,\n})\n```\n\nTo export a table or query to a file, you just need to write to the `/dev/blob` device; the file will be returned as `blob` on the query results:\n\n```ts\nconst ret = await pg.query(\"COPY my_table TO '/dev/blob';\")\n// ret.blob is a `Blob` object with the data from the copy.\n```\n"
  },
  {
    "path": "docs/docs/bundler-support.md",
    "content": "# Bundler Support\n\nSome bundlers require additional configuration to work with PGlite.\n\n:::tip\n\nIf you come across any issues with PGlite and a specific bundler, please [open an issue](https://github.com/electric-sql/pglite/issues/new), we'd also love any contributions to this bundler documentation if you're able to help out.\n\n:::\n\n## Vite\n\nWhen using [Vite](https://vitejs.dev/), make sure to exclude `pglite` from dependency optimization using the `optimizeDeps` option inside `vite.config.js`:\n\n```js\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  optimizeDeps: {\n    exclude: ['@electric-sql/pglite'],\n  },\n})\n```\n\n### Additional configuration for the Multi-tab Worker\n\nWhen using the Multi-tab Worker, you might encounter errors during a production build related to workers being bundle in `iife` format, to resolve this modify the `worker.format` option in `vite.config.js` to `'es'` (the default is `'iife'`)\n\n```ts\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  optimizeDeps: {\n    exclude: ['@electric-sql/pglite'],\n  },\n  worker: {\n    format: 'es',\n  },\n})\n```\n\nWhen importing the worker in your script, you can use the recommended [?worker](https://vitejs.dev/guide/features#static-assets) import method from Vite:\n\n```ts\nimport PGWorker from './worker.js?worker'\n\nexport const pglite = new PGliteWorker(\n  new PGWorker({\n    type: 'module',\n      name: 'pglite-worker',\n    }),\n    {\n      // ...your options here\n    }\n  },\n)\n```\n\n## esbuild\n\n[esbuild](https://esbuild.github.io/) does not support `new URL('./file', import.meta.url)` pattern that PGlite uses to locate its WebAssembly and data files. This means the automatic file resolution won't work out of the box.\n\n### Workaround: manually provide `wasmModule` and `fsBundle`\n\n1. Copy `pglite.wasm` and `pglite.data` from `node_modules/@electric-sql/pglite/dist/` to your public/build directory so your web server can serve them.\n\n2. Pass them manually when creating a PGlite instance:\n\n```ts\nimport { PGlite } from '@electric-sql/pglite'\n\nconst [wasmModule, fsBundle] = await Promise.all([\n  WebAssembly.compileStreaming(fetch('/pglite.wasm')),\n  fetch('/pglite.data').then((response) => response.blob()),\n])\n\nconst db = await PGlite.create({\n  wasmModule,\n  fsBundle,\n})\n```\n\nAlternatively, you can use an esbuild plugin like [`@chialab/esbuild-plugin-meta-url`](https://chialab.github.io/rna/guide/esbuild-plugin-meta-url) to handle `new URL()` imports automatically.\n\n## Next.js\n\nWhen using [Next.js](https://nextjs.org/), make sure to add `@electric-sql/pglite` to the `transpilePackages` array in `next.config.js`:\n\n```js\nconst nextConfig = {\n  swcMinify: false,\n  transpilePackages: [\n    '@electric-sql/pglite-react', // Optional\n    '@electric-sql/pglite',\n  ],\n}\n\nexport default nextConfig\n```\n"
  },
  {
    "path": "docs/docs/filesystems.md",
    "content": "# Filesystems\n\nPGlite has a virtual file system layer that allows it to run in environments that don't traditionally have filesystem access.\n\nPGlite VFSs are under active development, and we plan to extend the range of options in future, as well as make it easy for users to create their own filesystems.\n\nWe would recommend using the IndexedDB VFS in the browser at the current time as the OPFS VFS is not supported by Safari.\n\n## In-memory FS\n\nThe in-memory FS is the default when starting PGlite, and it is available on all platforms. All files are kept in memory and there is no persistence, other than calling [`pg.dumpDataDir()`](./api.md#dumpdatadir) and then using the [`loadDataDir`](./api.md#options) option at start.\n\nTo use the in-memory FS you can use one of these methods:\n\n- Don't provide a `dataDir` option\n  ```ts\n  const pg = new PGlite()\n  ```\n- Set the `dataDir` to `memory://`\n  ```ts\n  const pg = new PGlite('memory://')\n  ```\n- Import and pass the FS explicitly\n  ```ts\n  import { MemoryFS } from '@electric-sql/pglite'\n  const pg = new PGlite({\n    fs: new MemoryFS(),\n  })\n  ```\n\n### Platform Support\n\n| Node | Bun | Deno | Chrome | Safari | Firefox |\n| ---- | --- | ---- | ------ | ------ | ------- |\n| ✓    | ✓   | ✓    | ✓      | ✓      | ✓       |\n\n## Node FS\n\nThe Node FS uses the Node.js file system API to implement a VFS for PGLite. It is available in both Node and Bun.\n\nTo use the Node FS you can use one of these methods:\n\n- Set the `dataDir` to a directory on your filesystem\n  ```ts\n  const pg = new PGlite('./path/to/datadir/')\n  ```\n- Import and pass the FS explicitly\n  ```ts\n  import { NodeFS } from '@electric-sql/pglite'\n  const pg = new PGlite({\n    fs: new NodeFS('./path/to/datadir/'),\n  })\n  ```\n\n#### Platform Support\n\n| Node | Bun | Deno | Chrome | Safari | Firefox |\n| ---- | --- | ---- | ------ | ------ | ------- |\n| ✓    | ✓   | ✓    |        |        |         |\n\n## IndexedDB FS\n\nThe [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) FS persists the database to IndexedDB in the browser. It's a layer over the in-memory filesystem, loading all files for the database into memory on start, and flushing them to IndexedDB after each query if they have changed.\n\nTo use the IndexedDB FS you can use one of these methods:\n\n- Set the `dataDir` with a `idb://` prefix, the database will be stored in an IndexedDB named with the path provided\n  ```ts\n  const pg = new PGlite('idb://my-database')\n  ```\n- Import and pass the FS explicitly\n  ```ts\n  import { IdbFs } from '@electric-sql/pglite'\n  const pg = new PGlite({\n    fs: new IdbFs('my-database'),\n  })\n  ```\n\nThe IndexedDB filesystem works at the file level, storing whole files (Postgres has a single file per table or index) as blobs in IndexedDB. Flushing whole files can take a few milliseconds after each query. To aid in building responsive apps we provide a `relaxedDurability` mode that can be [configured when starting](./api.md#options) PGlite. Under this mode, the results of a query are returned immediately, and the flush to IndexedDB is scheduled to occur asynchronously afterwards. Typically, this is immediately after the query returns with no delay.\n\n### Platform Support\n\n| Node | Bun | Deno | Chrome | Safari | Firefox |\n| ---- | --- | ---- | ------ | ------ | ------- |\n|      |     |      | ✓      | ✓      | ✓       |\n\n## OPFS AHP FS\n\nThe OPFS AHP filesystem is built on top of the [Origin Private Filesystem](https://developer.mozilla.org/en-US/docs/Web/API/File_System_API/Origin_private_file_system) in the browser and uses an \"access handle pool\". It is only available when PGlite is run in a Web Worker, this could be any worker you configure. We provide a [Multi Tab Worker](./multi-tab-worker.md) to aid in using PGlite from multiple tabs in the browser.\n\nTo use the OPFS AHP FS you can use one of these methods:\n\n- Set the `dataDir` to a directory within the origins OPFS\n  ```ts\n  const pg = new PGlite('opfs-ahp://path/to/datadir/')\n  ```\n- Import and pass the FS explicitly\n  ```ts\n  import { OpfsAhpFS } from '@electric-sql/pglite/opfs-ahp'\n  const pg = new PGlite({\n    fs: new OpfsAhpFS('./path/to/datadir/'),\n  })\n  ```\n\n### Platform Support\n\n| Node | Bun | Deno | Chrome | Safari | Firefox |\n| ---- | --- | ---- | ------ | ------ | ------- |\n|      |     |      | ✓      |        | ✓       |\n\nUnfortunately, Safari appears to have a limit of 252 open sync access handles, this prevents this VFS from working due to a standard Postgres install consisting of over 300 files.\n\n### What is an \"access handle pool\"?\n\nThe Origin Private Filesystem API provides both asynchronous and synchronous methods, but the synchronous methods are limited to read, write and flush. You are unable to traverse the filesystem or open files synchronously. PGlite is a fully synchronous WASM build of Postgres and unable to call async APIs while handling a query. While it is possible to build an async WASM Postgres using [Asyncify](https://emscripten.org/docs/porting/asyncify.html), it adds significant overhead in both file size and performance.\n\nTo overcome these limitations, and to provide a fully synchronous file system to PGlite on top of OPFS, we use something called an \"access handle pool\". When you first start PGlite we open a pool of OPFS access handles with randomised file names; these are then allocated to files as needed. After each query, a pool maintenance job is scheduled that maintains its size. When you inspect the OPFS directory where the database is stored, you will not see the normal Postgres directory layout, but rather a pool of files and a state file containing the directory tree mapping along with file metadata.\n\nThe PGlite OPFS AHP FS is inspired by the [wa-sqlite](https://github.com/rhashimoto/wa-sqlite) access handle pool file system by [Roy Hashimoto](https://github.com/rhashimoto).\n"
  },
  {
    "path": "docs/docs/framework-hooks/react.md",
    "content": "---\noutline: [2, 3]\n---\n\n# React\n\nTo aid integration of PGlite into a [React](https://react.dev/) project we have a `PGliteProvider` with a corresponding `usePGlite` and hooks for the [live query](../live-queries.md) plugin.\n\n### PGliteProvider\n\nThe `PGliteProvider` enables you to initiate a PGlite database and pass it to all child components for use with the [`usePGlite`](#usepglite), [`useLiveQuery`](#uselivequery), and [`useLiveIncrementalQuery`](#useliveincrementalquery) hooks.\n\nTo use it, pass a PGlite instance as the `db` property.\n\n```ts\nimport { PGlite } from \"@electric-sql/pglite\"\nimport { live } from \"@electric-sql/pglite/live\"\nimport { PGliteProvider } from \"@electric-sql/pglite-react\"\n\nconst db = await PGlite.create({\n  extensions: { live }\n})\n\nconst App = () => {\n  // ...\n\n  return (\n    <PGliteProvider db={db}>\n      // ...\n    </PGliteProvider>\n  )\n}\n```\n\n### usePGlite\n\nYou can retrieve the provided PGlite instance using `usePGlite` and then query it from within your components.\n\n```ts\nimport { usePGlite } from \"@electric-sql/pglite-react\"\n\nconst MyComponent = () => {\n  const db = usePGlite()\n\n  const insertItem = () => {\n    db.query(\"INSERT INTO my_table (name, number) VALUES ('Arthur', 42);\")\n  }\n\n  return (\n    <>\n      <button onClick={insertItem}\n    </>\n  )\n}\n```\n\n### makePGliteProvider\n\nThe `makePGliteProvider` function returns a `PGliteProvider` component and a `usePGlite` hook with the specified type, which enables you to provide a PGlite instance with all added extensions and retain then namespaces and types added to it.\n\n```ts\nimport { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite'\nimport { LiveNamespace } from '@electric-sql/pglite/live'\nimport { VectorNamespace } from '@electric-sql/pglite/vector'\nimport { makePGliteProvider } from '@electric-sql/pglite-react'\n\nconst { PGliteProvider, usePGlite } = makePGliteProvider<\n  PGlite &\n    PGliteInterfaceExtensions<{\n      live: typeof live\n      vector: typeof vector\n    }>\n>()\n\nexport { PGliteProvider, usePGlite }\n```\n\n### useLiveQuery\n\nThe `useLiveQuery` hook enables you to reactively re-render your component whenever the results of a live query change. It wraps the [`.live.query()`](../live-queries.md#livequery) API.\n\nIt has the interface:\n\n```ts\nfunction useLiveQuery<T = { [key: string]: unknown }>(\n  query: string,\n  params: unknown[] | undefined | null,\n): Results<T>\n```\n\nAnd its arguments are:\n\n1. the SQL query\n2. optional parameters for the query\n\n```ts\nimport { useLiveQuery } from '@electric-sql/pglite-react'\n\nconst MyComponent = () => {\n  const maxNumber = 100\n  const items = useLiveQuery(`\n    SELECT *\n    FROM my_table\n    WHERE number <= $1\n    ORDER BY number;\n  `, [maxNumber])\n\n  return (\n    <>\n      {\n        items.map((item) =>\n          <MyItem item={item} />\n        )\n      }\n    </>\n  )\n}\n```\n\n### useLiveQuery.sql\n\nSimilarly to how you can use [`    sql`` `](../api.md#sql) to to construct SQL queries through string templating, you can do that with `    useLiveQuery.sql`` ` for the hook equivalent. See the [templating](../api.md#tagged-template-queries) section of the API for more details.\n\n```ts\nimport { useLiveQuery } from '@electric-sql/pglite-react'\n\nconst MyComponent = () => {\n  const maxNumber = 100\n  const items = useLiveQuery.sql`\n    SELECT *\n    FROM my_table\n    WHERE number <= ${maxNumber}\n    ORDER BY number;\n  `\n// ...\n```\n\n### useLiveIncrementalQuery\n\nThe `useLiveIncrementalQuery` hook enables you to reactively re-render your component whenever the results of a live query change. It wraps the [`.live.incrementalQuery()`](../live-queries.md#liveincrementalquery) API, which provides a way to efficiently diff the query results in Postgres.\n\nIt has the interface:\n\n```ts\nfunction useLiveIncrementalQuery<T = { [key: string]: unknown }>(\n  query: string,\n  params: unknown[] | undefined | null,\n  key: string,\n): Results<T>\n```\n\nAnd its arguments are:\n\n1. the SQL query\n2. optional parameters for the query\n3. the name of the column to key the diff algorithm on\n\n```ts\nimport { useLiveIncrementalQuery } from '@electric-sql/pglite-react'\n\nconst MyComponent = () => {\n  const maxNumber = 100\n  const items = useLiveIncrementalQuery(`\n    SELECT *\n    FROM my_table\n    WHERE number <= $1\n    ORDER BY number;\n  `, [maxNumber], 'id')\n\n  return (\n    <>\n      {\n        items.map((item) =>\n          <MyItem item={item} />\n        )\n      }\n    </>\n  )\n}\n```\n"
  },
  {
    "path": "docs/docs/framework-hooks/vue.md",
    "content": "---\noutline: [2, 3]\n---\n\n# Vue\n\nTo aid integration of PGlite into a [Vue](https://vuejs.org/) project we have a `providePGlite` with a corresponding `injectPGlite` and hooks for the [live query](../live-queries.md) plugin.\n\n### providePGlite\n\nThe `providePGlite` API, which follows the [Vue provide / inject pattern](https://vuejs.org/guide/components/provide-inject), enables you to initiate a PGlite database and pass it to all child components for use with the corresponding [`injectPGlite`](#injectpglite) method, as well as with the [`useLiveQuery`](#uselivequery) and [`useLiveIncrementalQuery`](#useliveincrementalquery) hooks.\n\nTo use it, pass a PGlite instance as the `db` property.\n\n```vue\n<script lang=\"ts\" setup>\nimport { PGlite } from '@electric-sql/pglite'\nimport { providePGlite } from '@electric-sql/pglite-vue'\n\nconst db = new PGlite()\nprovidePGlite(db)\n</script>\n// ...\n```\n\n### injectPGlite\n\nYou can retrieve the provided PGlite instance using `injectPGlite` and then query it from within your components.\n\n```vue\n<script lang=\"ts\" setup>\nimport { onMounted, shallowRef } from 'vue'\nimport { injectPGlite } from '@electric-sql/pglite-vue'\n\nconst db = injectPGlite()\n\nconst insertItem = () => {\n  db.query(\"INSERT INTO my_table (name, number) VALUES ('Arthur', 42);\")\n}\n</script>\n\n<template>\n  // ...\n  <button @click=\"insertItem\">Insert item</button>\n  // ...\n</template>\n```\n\n### makePGliteDependencyInjector\n\nThe `makePGliteDependencyInjector` function returns typed versions of `providePGlite` and `injectPGlite`, which enables you to provide a PGlite instance with all added extensions and retain then namespaces and types added to it.\n\n```ts\nimport { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite'\nimport { live } from '@electric-sql/pglite/live'\nimport { vector } from '@electric-sql/pglite/vector'\nimport { makePGliteDependencyInjector } from '@electric-sql/pglite-vue'\n\nconst { providePGlite, injectPGlite } = makePGliteDependencyInjector<\n  PGlite &\n    PGliteInterfaceExtensions<{\n      live: typeof live\n      vector: typeof vector\n    }>\n>()\n\nexport { providePGlite, injectPGlite }\n```\n\n### useLiveQuery\n\nThe `useLiveQuery` hook enables you to reactively receive updates to the results of a live query change. It wraps the [`.live.query()`](../live-queries.md#livequery) API.\n\nIt has the interface:\n\n```ts\nfunction useLiveQuery<T = { [key: string]: unknown }>(\n  query: string | WatchSource<string>,\n  params?: QueryParams | WatchSource<QueryParams> | WatchSource<unknown>[],\n): LiveQueryResults<T>\n```\n\nAnd its arguments, which can also be [watch sources](https://vuejs.org/guide/essentials/watchers.html#watch-source-types) that will trigger a re-run, are:\n\n1. the SQL query\n2. optional parameters for the query\n\n```vue\n<script lang=\"ts\">\nimport { useLiveQuery } from '@electric-sql/pglite-vue'\n\nconst maxNumber = 100\nconst items = useLiveQuery(\n  `\n    SELECT *\n    FROM my_table\n    WHERE number <= $1\n    ORDER BY number;\n  `,\n  [maxNumber],\n)\n</script>\n\n<template>\n  <MyItem v-for=\"item in items\" :item=\"item\" :key=\"item.id\" />\n</template>\n```\n\n### useLiveQuery.sql\n\nSimilarly to how you can use [`    sql`` `](../api.md#sql) to to construct SQL queries through string templating, you can do that with `    useLiveQuery.sql`` ` for the hook equivalent. See the [templating](../api.md#tagged-template-queries) section of the API for more details.\n\n```vue\n<script lang=\"ts\">\nimport { useLiveQuery } from '@electric-sql/pglite-vue'\n\nconst maxNumber = 100\nconst items = useLiveQuery.sql`\n  SELECT *\n  FROM my_table\n  WHERE number <= ${maxNumber}\n  ORDER BY number;\n`\n</script>\n// ...\n```\n\n### useLiveIncrementalQuery\n\nThe `useLiveIncrementalQuery` hook enables you to reactively receive updates whenever the results of a live query change. It wraps the [`.live.incrementalQuery()`](../live-queries.md#liveincrementalquery) API, which provides a way to efficiently diff the query results in Postgres.\n\nIt has the interface:\n\n```ts\nexport function useLiveIncrementalQuery<T = { [key: string]: unknown }>(\n  query: string | WatchSource<string>,\n  params: QueryParams | WatchSource<QueryParams> | WatchSource<unknown>[],\n  key: string | WatchSource<string>,\n): LiveQueryResults<T>\n```\n\nAnd its arguments, which can also be [watch sources](https://vuejs.org/guide/essentials/watchers.html#watch-source-types) that will trigger a re-run, are:\n\n1. the SQL query\n2. optional parameters for the query\n3. the name of the column to key the diff algorithm on\n\n```vue\n<script lang=\"ts\">\nimport { useLiveIncrementalQuery } from '@electric-sql/pglite-vue'\n\nconst maxNumber = 100\nconst items = useLiveIncrementalQuery(\n  `\n    SELECT *\n    FROM my_table\n    WHERE number <= $1\n    ORDER BY number;\n  `,\n  [maxNumber],\n  'id',\n)\n</script>\n\n<template>\n  <MyItem v-for=\"item in items\" :item=\"item\" :key=\"item.id\" />\n</template>\n```\n"
  },
  {
    "path": "docs/docs/index.md",
    "content": "# Getting started with PGlite\n\nPGlite can be used in both Node/Bun/Deno or the browser, and with any JavaScript framework.\n\n## Install and start in Node/Bun/Deno\n\nInstall into your project:\n\n::: code-group\n\n```bash [npm]\nnpm install @electric-sql/pglite\n```\n\n```bash [pnpm]\npnpm install @electric-sql/pglite\n```\n\n```bash [yarn]\nyarn add @electric-sql/pglite\n```\n\n```bash [bun]\nbun install @electric-sql/pglite\n```\n\n```bash [deno]\ndeno add npm:@electric-sql/pglite\n```\n\n:::\n\nTo use the in-memory Postgres:\n\n```js\nimport { PGlite } from '@electric-sql/pglite'\n\nconst db = new PGlite()\n```\n\nor to persist to the native filesystem:\n\n```js\nconst db = new PGlite('./path/to/pgdata')\n```\n\n## Install and start in the browser\n\nIt can be installed and imported using your usual package manager:\n\n```js\nimport { PGlite } from '@electric-sql/pglite'\n```\n\nor using a CDN such as JSDeliver:\n\n```js\nimport { PGlite } from 'https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js'\n```\n\nThen for an in-memory Postgres:\n\n```js\nconst db = new PGlite()\n```\n\nor to persist the database to IndexedDB:\n\n```js\nconst db = new PGlite('idb://my-pgdata')\n```\n\n## Making a query\n\nThere are two methods for querying the database, `.query` and `.exec`. The former supports parameters, while the latter supports multiple statements.\n\nFirst, let's create a table and insert some test data using the `.exec` method:\n\n```js\nawait db.exec(`\n  CREATE TABLE IF NOT EXISTS todo (\n    id SERIAL PRIMARY KEY,\n    task TEXT,\n    done BOOLEAN DEFAULT false\n  );\n  INSERT INTO todo (task, done) VALUES ('Install PGlite from NPM', true);\n  INSERT INTO todo (task, done) VALUES ('Load PGlite', true);\n  INSERT INTO todo (task, done) VALUES ('Create a table', true);\n  INSERT INTO todo (task, done) VALUES ('Insert some data', true);\n  INSERT INTO todo (task) VALUES ('Update a task');\n`)\n```\n\nThe `.exec` method is perfect for migrations and batch inserts with raw SQL.\n\nNow, let's retrieve an item using `.query` method:\n\n```js\nconst ret = await db.query(`\n  SELECT * from todo WHERE id = 1;\n`)\nconsole.log(ret.rows)\n```\n\nOutput:\n\n```js\n;[\n  {\n    id: 1,\n    task: 'Install PGlite from NPM',\n    done: false,\n  },\n]\n```\n\n## Using parameterised queries\n\nWhen working with user supplied values, it's always best to use parameterized queries; these are supported on the `.query` method.\n\nWe can use this to update a task:\n\n```js\nconst ret = await db.query(\n  'UPDATE todo SET task = $2, done = $3 WHERE id = $1',\n  [5, 'Update a task using parameterized queries', true],\n)\n```\n\n## What next?\n\n- To learn more about [querying](./api.md#query) and [transactions](./api.md#transaction) along with the other methods and options available, you can read the main [PGlite API documentation](./api.md).\n\n- There is also a [live-query extension](./live-queries.md) that enables reactive queries to update a UI when the underlying database changes.\n\n- PGlite has a number of built-in [virtual file systems](./filesystems.md) to provide persistence for your database.\n\n- There are [framework hooks](./framework-hooks/react.md) to make working with PGlite within React and Vue much easier with less boilerplate.\n\n- For help configuring PGlite with your bundler, see the [bundler support](./bundler-support.md) page.\n\n- As PGlite only has a single exclusive connection to the database, we provide a [multi-tab worker](./multi-tab-worker.md) to enable sharing a PGlite instance between multiple browser tabs.\n\n- There is a [REPL component](./repl.md) that can be easily embedded into a web-app to aid in debugging and development, or as part of a database application itself.\n\n- We maintain a [list of ORMs and query builders](./orm-support.md) that support PGlite.\n\n- PGlite supports both Postgres extensions and PGlite Plugins via its [extensions API](./api.md#options-extensions), and there is a list of [supported extensions](../extensions/).\n\n- We have a [page of examples](../examples.md) that you can open to test out PGlite in the browser.\n"
  },
  {
    "path": "docs/docs/live-queries.md",
    "content": "# Live Queries\n\nThe \"live\" extension enables you to subscribe to a query and receive updated results when the underlying tables change.\n\nTo use the extension, it needs to be added to the PGlite instance when creating it:\n\n```ts\nimport { PGlite } from '@electric-sql/pglite'\nimport { live } from '@electric-sql/pglite/live'\n\nconst pg = await PGlite.create({\n  extensions: {\n    live,\n  },\n})\n```\n\nThere are three methods on the `live` namespace:\n\n- `live.query()` for basic live queries. With less machinery in PGlite, it's quicker for small results sets and narrow rows.\n- `live.incrementalQuery()` for incremental queries. It materialises the full result set on each update from only the changes emitted by the `live.changes` API. Perfect for feeding into React, and with good performance for large result sets and wide rows.\n- `live.changes()` a lower level API that emits the changes (insert/update/delete) that can then be mapped to mutations in a UI or other datastore.\n\n## live.query\n\n`live.query<T>()`\n\nThis is very similar to a standard query, but takes an additional callback that receives the results whenever they change:\n\n```js\nconst ret = pg.live.query('SELECT * FROM test ORDER BY rand;', [], (res) => {\n  // res is the same as a standard query result object\n})\n```\n\nYou can also pass an options object with `offset` and `limit` to implement efficient windowed queries:\n\n```js\nconst ret = pg.live.query({\n  query: 'SELECT * FROM test ORDER BY rand;',\n  offset: 0,\n  limit: 10,\n  callback: (res) => {\n    // res includes:\n    // - rows: the rows for the current window\n    // - offset: the current offset\n    // - limit: the current limit\n    // - totalCount: total number of rows in the full result set\n  },\n})\n```\n\nThe windowed query is optimized to:\n\n- Only transfer the rows within the requested window\n- Efficiently update when rows enter/leave the window\n- Track the total count separately to avoid slow COUNT(\\*) queries blocking updates\n\nYou can update the window position by calling refresh with new offset/limit values:\n\n```js\n// Move to page 2\nawait ret.refresh(10, 10)\n```\n\nThe returned value from the call is a Promise of an object with this interface:\n\n```ts\ninterface LiveQueryReturn<T> {\n  initialResults: Results<T> & {\n    offset?: number // Current offset (if windowed)\n    limit?: number // Current limit (if windowed)\n    totalCount?: number // Total row count (if windowed)\n  }\n  unsubscribe: () => Promise<void>\n  refresh: (options?: { offset?: number; limit?: number }) => Promise<void>\n}\n```\n\n- `initialResults` is the initial results set (also sent to the callback)\n- `unsubscribe` allows you to unsubscribe from the live query\n- `refresh` allows you to force a refresh of the query with the updated results sent to the callback. For windowed queries you can optionally provide new offset/limit values.\n\nInternally it watches the tables that the query depends on, and reruns the query whenever they are changed.\n\n## live.incrementalQuery\n\n`live.incrementalQuery<T>()`\n\nSimilar to above, but maintains a temporary table of the previous state inside of Postgres. When the tables it depends on change, the query is re-run and diffed with the last state. Only the changes from the last version of the query are copied from WASM into JS.\n\nIt requires an additional `key` argument - the name of a column (often a primary key) on which to key the diff.\n\n```ts\nconst ret = pg.live.incrementalQuery(\n  'SELECT * FROM test ORDER BY rand;',\n  [],\n  'id',\n  (res) => {\n    // res is the same as a standard query result object\n  },\n)\n```\n\nThe returned value is of the same type as the `query` method above.\n\n## live.changes\n\n`live.changes()`\n\nA lower-level API which is the backend for the `incrementalQuery`, it emits the changes that have occurred. It requires a `key` on which to compare row differences:\n\n```ts\nconst ret = pg.live.changes(\n  'SELECT * FROM test ORDER BY rand;',\n  [],\n  'id',\n  (res) => {\n    // res is a change result object\n  },\n)\n```\n\nThe call returns a Promise of an object defined by this interface:\n\n```ts\ninterface LiveChangesReturn<T = { [key: string]: any }> {\n  fields: { name: string; dataTypeID: number }[]\n  initialChanges: Array<Change<T>>\n  unsubscribe: () => Promise<void>\n  refresh: () => Promise<void>\n}\n```\n\nThe results passed to the callback are an array of `Change` objects:\n\n```ts\ntype ChangeInsert<T> = {\n  __changed_columns__: string[]\n  __op__: 'INSERT'\n  __after__: number\n} & T\n\ntype ChangeDelete<T> = {\n  __changed_columns__: string[]\n  __op__: 'DELETE'\n  __after__: undefined\n} & T\n\ntype ChangeUpdate<T> = {\n  __changed_columns__: string[]\n  __op__: 'UPDATE'\n  __after__: number\n} & T\n\ntype Change<T> = ChangeInsert<T> | ChangeDelete<T> | ChangeUpdate<T>\n```\n\nEach `Change` includes the new values along with:\n\n- `__changed_columns__` the column names that were changed.\n- `__op__` the operation that is required to update the state (`INSERT`, `UPDATE`, `DELETE`).\n- `__after__` the `key` of the row after which _this_ row should be positioned; it will be included in `__changed_columns__` if it has been changed. This allows for very efficient moves within an ordered set of results.\n\nThis API can be used to implement very efficient in-place DOM updates.\n"
  },
  {
    "path": "docs/docs/multi-tab-worker.md",
    "content": "# Multi-tab Worker\n\nIt's likely that you will want to run PGlite in a Web Worker so that it doesn't block the main thread. Additionally, as PGlite is single connection only, you may want to proxy multiple browser tabs to a single PGlite instance.\n\nTo aid in this, we provide a `PGliteWorker` with the same API as the standard PGlite, and a `worker` wrapper that exposes a PGlite instance to other tabs.\n\n## Using PGliteWorker\n\nFirst, you need to create a js file for your worker instance. You use the `worker` wrapper with an `init` option that returns a PGlite instance to start that database and expose it to all tabs:\n\n```js\n// my-pglite-worker.js\nimport { PGlite } from '@electric-sql/pglite'\nimport { worker } from '@electric-sql/pglite/worker'\n\nworker({\n  async init() {\n    // Create and return a PGlite instance\n    return new PGlite()\n  },\n})\n```\n\nThen connect the `PGliteWorker` to your new worker process in your main script:\n\n```js\nimport { PGliteWorker } from '@electric-sql/pglite/worker'\n\nconst pg = new PGliteWorker(\n  new Worker(new URL('./my-pglite-worker.js', import.meta.url), {\n    type: 'module',\n  }),\n)\n\n// `pg` has the same interface as a standard PGlite interface\n```\n\nInternally, this starts a worker for each tab, but then runs an a election to nominate one as the leader. Only the leader then starts PGlite by calling the `init` function, and handles all queries. When the leader tab is closed, a new election is run, and a new PGlite instance is started.\n\nIn addition to having all the standard methods of the [`PGlite` interface](./api.md), `PGliteWorker` also has the following methods and properties:\n\n- `onLeaderChange(callback: () => void)`<br>\n  This allows you to subscribe to a notification when the leader worker is changed. It returns an unsubscribe function.\n- `offLeaderChange(callback: () => void)`<br>\n  This allows you to unsubscribe from the leader change notification.\n- `isLeader: bool`\n  A boolean property indicating if this instance is the leader.\n\n## Passing options to a worker\n\n`PGliteWorker` takes an optional second parameter `options`; this can include any standard [PGlite options](./api.md#options) along with these additional options:\n\n- `id: string`<br>\n  This is an optional `id` to group your PGlite workers. The leader election is run between all `PGliteWorker`s with the same `id`.<br>\n  If not provided, the url to the worker is concatenated with the `dataDir` option to create an id.\n- `meta: any`<br>\n  Any additional metadata you would like to pass to the worker process `init` function.\n\nThe `worker()` wrapper takes a single options argument, with a single `init` property. `init` is a function that takes any options passed to `PGliteWorker`, excluding extensions, and returns a `PGlite` instance. You can use the options passed to decide how to configure your instance:\n\n```js\n// my-pglite-worker.js\nimport { PGlite } from '@electric-sql/pglite'\nimport { worker } from '@electric-sql/pglite/worker'\n\nworker({\n  async init(options) {\n    const meta = options.meta\n    // Do something with additional metadata.\n    // or even run your own code in the leader along side the PGlite\n    return new PGlite({\n      dataDir: options.dataDir,\n    })\n  },\n})\n\n// my-app.js\nimport { PGliteWorker } from '@electric-sql/pglite/worker'\n\nconst pg = new PGliteWorker(\n  new Worker(new URL('./my-pglite-worker.js', import.meta.url), {\n    type: 'module',\n  }),\n  {\n    dataDir: 'idb://my-db',\n    meta: {\n      // additional metadata passed to `init`\n    },\n  },\n)\n```\n\n## Extension support\n\n`PGliteWorker` has support for both Postgres extensions and PGlite plugins using the normal [extension api](./api.md#optionsextensions).\n\nAny extension can be used by the PGlite instance inside the worker, however the extensions namespace is not exposed on a connecting `PGliteWorker` on the main thread.\n\n```js\n// my-pglite-worker.js\nimport { PGlite } from '@electric-sql/pglite'\nimport { worker } from '@electric-sql/pglite/worker'\nimport { vector } from '@electric-sql/pglite/vector'\n\nworker({\n  async init() {\n    return new PGlite({\n      extensions: {\n        vector,\n      },\n    })\n  },\n})\n```\n\nExtensions that only use the PGlite plugin interface, such as live queries, can be used on the main thread with `PGliteWorker` to expose their functionality; this is done by providing a standard options object as a second argument to the `PGliteWorker` constructor:\n\n```js\nimport { PGliteWorker } from '@electric-sql/pglite/worker'\nimport { live } from '@electric-sql/pglite/live'\n\nconst pg = new PGliteWorker(\n  new Worker(new URL('./my-pglite-worker.js', import.meta.url), {\n    type: 'module',\n  }),\n  {\n    extensions: {\n      live,\n    },\n  },\n)\n```\n\n`PGliteWorker` also has a `create` static method that resolves to a new instance when it is fully initiated. This also adds the correct types for any extensions to the `PGliteWorker` instance:\n\n```ts\nimport { PGliteWorker } from '@electric-sql/pglite/worker'\nimport { live } from '@electric-sql/pglite/live'\n\nconst pg = await PGliteWorker.create(\n  new Worker(new URL('./my-pglite-worker.js', import.meta.url), {\n    type: 'module',\n  }),\n  {\n    extensions: {\n      live,\n    },\n  },\n)\n\n// TypeScript is aware of the `pg.live` namespace:\npg.live.query(/* ... */)\n```\n"
  },
  {
    "path": "docs/docs/orm-support.md",
    "content": "# ORM and Query Builder Support\n\nThe following ORMs and Query Builders are known to work properly with\nPGlite:\n\n## Prisma\n\n[Prisma](https://prisma.io) is a modern, type-safe ORM for TypeScript and Node.js. Prisma includes built-in support for local development using PGlite via `prisma dev`.\n\n### Local development with `prisma dev`\n\nPrisma offers a local dev database powered by PGlite. Just run:\n\n```bash\nnpx prisma init\nnpx prisma dev\n```\n\nThis starts a local Prisma Postgres instance backed by PGlite. Copy the connection string shown in the CLI and use it as your `DATABASE_URL`:\n\n```\nDATABASE_URL=\"prisma+postgres://localhost:PORT/?api_key=__API_KEY__\"\n```\n\nYou can then define models in your `schema.prisma` and use Prisma Client and migrations as usual:\n\n```prisma\nmodel User {\n  id    Int    @id @default(autoincrement())\n  email String @unique\n  name  String?\n}\n```\n\n```bash\nnpx prisma db push\n```\n\n```ts\nimport { PrismaClient } from '@prisma/client'\n\nconst prisma = new PrismaClient()\n\nawait prisma.user.create({\n  data: { email: 'alice@example.com' },\n})\n\nconst users = await prisma.user.findMany()\nconsole.log(users)\n```\n\nSee the [Prisma local dev docs](https://www.prisma.io/docs/postgres/database/local-development) for more details.\n\n## Drizzle\n\n[Drizzle](https://orm.drizzle.team) is a TypeScript ORM with support for many\ndatabases, including PGlite. Features include:\n\n- A declarative relational query API\n- An SQL-like query builder API\n- Migrations\n\nTo use PGlite with Drizzle, wrap you PGlite instance with a `drizzle()` call:\n\n```sh\nnpm i drizzle-orm @electric-sql/pglite\nnpm i -D drizzle-kit\n```\n\n```ts\nimport { PGlite } from '@electric-sql/pglite';\nimport { drizzle } from 'drizzle-orm/pglite';\n\nconst client = new PGlite();\nconst db = drizzle(client);\n\nawait db.select().from(...);\n```\n\nSee the [Drizzle documentation](https://orm.drizzle.team/docs/connect-pglite)\nfor more details.\n\n## Knex.js\n\n[Knex](https://knexjs.org/) is a stable, reliable Query Builder for various\ndatabase engines. Key features include:\n\n- Query builder\n- Schema builder\n- Raw queries\n- Database migration tool\n\nTo use Knex.js with PGlite, add knex and the third party [knex-pglite](https://github.com/czeidler/knex-pglite)\nlibrary to your project:\n\n```bash\nnpm i @electric-sql/pglite knex knex-pglite\n```\n\nThen you can setup a regular Knex instance:\n\n```javascript\nimport { knex } from 'knex'\nimport ClientPgLite from 'knex-pglite'\n\nexport const db = knex({\n  client: ClientPgLite,\n  dialect: 'postgres',\n  connection: { connectionString: 'idb://my-database' },\n})\n```\n\nNow you can check [Knex documentation](https://knexjs.org/guide/query-builder.html)\nand [knex-pglite](https://github.com/czeidler/knex-pglite) documentation for\nmore details.\n\n## Orange ORM\n\n[Orange ORM](https://orange-orm.io) is a modern, TypeScript-first ORM that runs in Node.js, Bun, Deno and the browser. It follows the Active-Record pattern and ships with an expressive, LINQ-style query API. Key features include:\n\n- Rich querying and deep filtering\n- Active-Record-style change tracking\n- Fully-typed models with **zero code-generation**\n- Seamless integration with **PGlite** across runtimes\n\nTo use Orange ORM with PGlite, add [orange-orm](https://github.com/alfateam/orange-orm)\nlibrary to your project:\n\n```bash\nnpm i @electric-sql/pglite orange-orm\n```\n\n```javascript\nimport orange from 'orange-orm'\nconst db = map.pglite('idb://my-db')\n\nawait db.query(`\n  create table if not exists task (\n    id uuid primary key default gen_random_uuid(),\n    title text,\n    done boolean\n  )\n`)\n\nconst map = orange.map((x) => ({\n  task: x.table('task').map(({ column }) => ({\n    id: column('id').uuid().primary(),\n    title: column('title').string(),\n    done: column('done').boolean(),\n  })),\n}))\n\nawait db.task.insert({ title: 'Write docs', done: false })\n\nconst tasks = await db.task.getAll({\n  where: (x) => x.done.eq(false),\n})\nconsole.log(JSON.stringify(tasks))\n```\n\n## TypeORM\n\n[TypeORM](https://typeorm.io/) is an ORM that can run in NodeJS, the Browser, and many other platforms. Key features include:\n\n- Clean object-relational model\n- Eager and lazy associations (relations)\n- Automatic migration generation\n- Elegant-syntax, flexible and powerful QueryBuilder.\n\nTo use TypeORM with PGlite, add the third party [typeorm-pglite](https://www.npmjs.com/package/typeorm-pglite)\nlibrary to your project:\n\n```bash\nnpm i @electric-sql/pglite typeorm-pglite\n```\n\ntypeorm-pglite works with TypeORM's existing postgres dialect. Just provide the PGliteDriver to the driver data source option:\n\n```javascript\nimport { PGliteDriver, getPGliteInstance } from 'typeorm-pglite'\nimport { DataSource } from 'typeorm'\n\nconst PGliteDataSource = new DataSource({\n  type: 'postgres',\n  driver: new PGliteDriver().driver,\n})\n\n// You can access the internal PGlite instance using getPGliteInstance function\nconst pgliteDb = await getPGliteInstance()\n```\n\nCheck [TypeORM documentation](https://typeorm.io/data-source)\nand [typeorm-pglite](https://github.com/muraliprajapati/typeorm-pglite) documentation for\nmore details.\n"
  },
  {
    "path": "docs/docs/pglite-socket.md",
    "content": "# PGlite Socket\n\nA socket implementation for PGlite enabling remote connections. This package is a simple wrapper around the `net` module to allow PGlite to be used as a PostgreSQL server.\n\nThere are two main components to this package:\n\n- [`PGLiteSocketServer`](#pglitesocketserver) - A TCP server that allows PostgreSQL clients to connect to a PGlite database instance.\n- [`PGLiteSocketHandler`](#pglitesockethandler) - A low-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite, and can be used to create a custom server.\n\nThe package also includes a [CLI](#cli-usage) for quickly starting a PGlite socket server.\n\n:::info\nAlthough PGlite is a single-connection database, it is possible to open and use multiple simultaneous connections with pglite-server. This is achieved through a multiplexer implemented in the server (see the parameter `-m, --max-connections`). This is different from a normal Postgres installation, so not all use cases are guaranteed to work.\n:::\n\n## Installation\n\n```bash\nnpm install @electric-sql/pglite-socket\n# or\nyarn add @electric-sql/pglite-socket\n# or\npnpm add @electric-sql/pglite-socket\n```\n\n## Usage\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketServer } from '@electric-sql/pglite-socket'\n\n// Create a PGlite instance\nconst db = await PGlite.create()\n\n// Create and start a socket server\nconst server = new PGLiteSocketServer({\n  db,\n  port: 5432,\n  host: '127.0.0.1',\n})\n\nawait server.start()\nconsole.log('Server started on 127.0.0.1:5432')\n\n// Handle graceful shutdown\nprocess.on('SIGINT', async () => {\n  await server.stop()\n  await db.close()\n  console.log('Server stopped and database closed')\n  process.exit(0)\n})\n```\n\n## API\n\n### PGLiteSocketServer\n\nCreates a TCP server that allows PostgreSQL clients to connect to a PGlite database instance.\n\n#### Options\n\n- `db: PGlite` - The PGlite database instance\n- `port?: number` - The port to listen on (default: 5432)\n- `host?: string` - The host to bind to (default: 127.0.0.1)\n- `path?: string` - Unix socket path to bind to (takes precedence over host:port)\n- `inspect?: boolean` - Print the incoming and outgoing data to the console (default: false)\n\n#### Methods\n\n- `start(): Promise<void>` - Start the socket server\n- `stop(): Promise<void>` - Stop the socket server\n\n#### Events\n\n- `listening` - Emitted when the server starts listening\n- `connection` - Emitted when a client connects\n- `error` - Emitted when an error occurs\n- `close` - Emitted when the server is closed\n\n### PGLiteSocketHandler\n\nLow-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite.\n\n#### Options\n\n- `db: PGlite` - The PGlite database instance\n- `closeOnDetach?: boolean` - Whether to close the socket when detached (default: false)\n- `inspect?: boolean` - Print the incoming and outgoing data to the console in hex and ascii (default: false)\n\n#### Methods\n\n- `attach(socket: Socket): Promise<PGLiteSocketHandler>` - Attach a socket to this handler\n- `detach(close?: boolean): PGLiteSocketHandler` - Detach the current socket from this handler\n- `isAttached: boolean` - Check if a socket is currently attached\n\n#### Events\n\n- `data` - Emitted when data is processed through the handler\n- `error` - Emitted when an error occurs\n- `close` - Emitted when the socket is closed\n\n#### Example\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketHandler } from '@electric-sql/pglite-socket'\nimport { createServer, Socket } from 'net'\n\n// Create a PGlite instance\nconst db = await PGlite.create()\n\n// Create a handler\nconst handler = new PGLiteSocketHandler({\n  db,\n  closeOnDetach: true,\n  inspect: false,\n})\n\n// Create a server that uses the handler\nconst server = createServer(async (socket: Socket) => {\n  try {\n    await handler.attach(socket)\n    console.log('Client connected')\n  } catch (err) {\n    console.error('Error attaching socket', err)\n    socket.end()\n  }\n})\n\nserver.listen(5432, '127.0.0.1')\n```\n\n## CLI Usage\n\nThis package provides a command-line interface for quickly starting a PGlite socket server.\n\n```bash\n# Install globally\nnpm install -g @electric-sql/pglite-socket\n\n# Start a server with default settings (in-memory database, port 5432)\npglite-server\n\n# Start a server with custom options\npglite-server --db=/path/to/database --port=5433 --host=0.0.0.0 --debug=1\n\n# Using short options\npglite-server -d /path/to/database -p 5433 -h 0.0.0.0 -v 1\n\n# Show help\npglite-server --help\n```\n\n### CLI Options\n\n- `-d, --db=PATH` - Database path (default: memory://)\n- `-p, --port=PORT` - Port to listen on (default: 5432)\n- `-h, --host=HOST` - Host to bind to (default: 127.0.0.1)\n- `-u, --path=UNIX` - Unix socket to bind to (takes precedence over host:port)\n- `-v, --debug=LEVEL` - Debug level 0-5 (default: 0)\n- `-r, --run=COMMAND` - Command to run after server starts\n- `--include-database-url` - Include DATABASE_URL in subprocess environment\n- `--shutdown-timeout=MS` - Timeout for graceful subprocess shutdown in ms (default: 5000)\n\n### Development Server Integration\n\nThe `--run` option is particularly useful for development workflows where you want to use PGlite as a drop-in replacement for PostgreSQL. This allows you to wrap your development server and automatically provide it with a DATABASE_URL pointing to your PGlite instance.\n\n```bash\n# Start your Next.js dev server with PGlite\npglite-server --run \"npm run dev\" --include-database-url\n\n# Start a Node.js app with PGlite\npglite-server --db=./dev-db --run \"node server.js\" --include-database-url\n\n# Start multiple services (using a process manager like concurrently)\npglite-server --run \"npx concurrently 'npm run dev' 'npm run worker'\" --include-database-url\n```\n\nWhen using `--run` with `--include-database-url`, the subprocess will receive a `DATABASE_URL` environment variable with the correct connection string for your PGlite server. This enables seamless integration with applications that expect a PostgreSQL connection string.\n\n:::tip Benefits for Development\n\n- **Zero PostgreSQL installation** - No need to install and manage PostgreSQL locally\n- **Faster startup** - PGlite starts instantly compared to PostgreSQL\n- **Isolated databases** - Each project can have its own database file\n- **Simplified setup** - One command starts both database and application\n- **Automatic cleanup** - Server shuts down gracefully when your app exits\n  :::\n\n### Using in npm scripts\n\nYou can add the CLI to your package.json scripts for convenient execution:\n\n```json\n{\n  \"scripts\": {\n    \"db:start\": \"pglite-server --db=./data/mydb --port=5433\",\n    \"db:dev\": \"pglite-server --db=memory:// --debug=1\",\n    \"dev\": \"pglite-server --db=./dev-db --run 'npm run start:dev' --include-database-url\",\n    \"dev:clean\": \"pglite-server --run 'npm run start:dev' --include-database-url\"\n  }\n}\n```\n\nThen run with:\n\n```bash\nnpm run dev          # Start with persistent database\nnpm run dev:clean    # Start with in-memory database\n```\n\n### Unix Socket Support\n\nFor better performance in local development, you can use Unix sockets instead of TCP:\n\n```bash\n# Start server on a Unix socket\npglite-server --path=/tmp/pglite.sock --run \"npm run dev\" --include-database-url\n\n# The DATABASE_URL will be: postgresql://postgres:postgres@/postgres?host=/tmp\n```\n\n### Connecting to the server\n\nOnce the server is running, you can connect to it using any PostgreSQL client:\n\n#### Using psql\n\n```bash\n# TCP connection\nPGSSLMODE=disable psql -h localhost -p 5432 -d template1\n\n# Unix socket connection (if using --path)\nPGSSLMODE=disable psql -h /tmp -d template1\n```\n\n#### Using Node.js clients\n\n```javascript\n// Using node-postgres\nimport pg from 'pg'\nconst client = new pg.Client({\n  host: 'localhost',\n  port: 5432,\n  database: 'template1',\n})\nawait client.connect()\n\n// Using postgres.js\nimport postgres from 'postgres'\nconst sql = postgres({\n  host: 'localhost',\n  port: 5432,\n  database: 'template1',\n})\n\n// Using environment variable (when using --include-database-url)\nconst sql = postgres(process.env.DATABASE_URL)\n```\n\n## LLM Usage\n\nPGlite with the socket server can be used as a drop-in replacement for PostgreSQL in development environments, and when combined with AI coding agents or app builders can significantly simplify development. It removes the need to install and manage PostgreSQL locally, or to connect to a remote database.\n\n### Example Prompt\n\nThis prompt will one-shot a working wish list app with PGlite in [Bolt.new](http://bolt.new):\n\n````\nPlease make a simple wish list app, it should have a single screen for adding items. There should be a single input for adding the text for the item. Keep it simple and minimal.\nShow error messages inline in the UI, where the list is, when the backend fails to connect to the database.\nUse TypeScript, React, and Vite for the front end app.\nThe server side should use TypeScript, tsx and Express with a Postgres database using the postgres.js lib and it's `sql` template literal syntax.\nPlease use concurrently to run both vite and the backend at the same time.\nI want to use PGlite and its socket server for development - match these versions:\n```\n    \"@electric-sql/pglite\": \"^0.3.2\",\n    \"@electric-sql/pglite-socket\": \"^0.0.7\",\n```\nDo something like this to run it:\n```\n    \"dev\": \"USE_PGLITE=true npx pglite-server -u /tmp/.s.PGSQL.5432 -r \\\"npm run dev:both\\\"\",\n    \"dev:both\": \"concurrently \\\"npm run dev:frontend\\\" \\\"npm run dev:backend\\\"\",\n    \"dev:frontend\": \"vite\",\n    \"dev:backend\": \"tsx watch server/index.ts\",\n```\nand the postgres.js config should look something like this:\n```\nexport const sql = process.env.USE_PGLITE\n  ? postgres({\n    host: '/tmp/',\n    username: 'postgres',\n    password: 'postgres',\n    database: 'postgres',\n    max: 1,\n    connect_timeout: 0,\n  })\n  : postgres(connectionString, {\n    ssl: process.env.NODE_ENV === 'production',\n  });\n```\n````\n\n## Limitations and Tips\n\n:::warning Important Limitations\n\n- Multiple concurrent connections are supported through a **multiplexer** over the single conn, therefore not all cases might be covered.\n- SSL connections are **NOT** supported. For `psql`, set env var `PGSSLMODE=disable`.\n  :::\n\n### General Tips\n\n- For development purposes, using an in-memory database (`--db=memory://`) is fastest but data won't persist after the server is stopped.\n- For persistent storage, specify a file path for the database (e.g., `--db=./data/mydb`).\n- When using debug mode (`--debug=1` or higher), additional protocol information will be displayed in the console.\n- To allow connections from other machines, set the host to `0.0.0.0` with `--host=0.0.0.0`.\n- When using `--run`, the server will automatically shut down if the subprocess exits with a non-zero code.\n- Use `--shutdown-timeout` to adjust how long to wait for graceful subprocess termination (default: 5 seconds).\n"
  },
  {
    "path": "docs/docs/pglite-tools.md",
    "content": "# pglite-tools\n\nA selection of tools for working with [PGlite](https://github.com/electric-sql/pglite) databases, including pg_dump.\n\nInstall with:\n\n```bash\nnpm install @electric-sql/pglite-tools\n```\n\n## `pgDump`\n\npg_dump is a tool for dumping a PGlite database to a SQL file, this is a WASM build of pg_dump that can be used in a browser or other JavaScript environments. You can read more about pg_dump [in the Postgres docs](https://www.postgresql.org/docs/current/app-pgdump.html).\n\nNote: pg_dump will execute `DEALLOCATE ALL;` after each dump. Since this is running on the same (single) connection, any prepared statements that you have made before running pg_dump will be affected.\n\n### Options\n\n- `pg`: A PGlite instance.\n- `args`: An array of arguments to pass to pg_dump - see [pg_dump docs](https://www.postgresql.org/docs/current/app-pgdump.html) for more details.\n- `fileName`: The name of the file to write the dump to, defaults to `dump.sql`.\n\nThere are a number of arguments that are automatically added to the end of the command, these are:\n\n- `--inserts` - use inserts format for the output, this ensures that the dump can be restored by simply passing the output to `pg.exec()`.\n- `-j 1` - concurrency level, set to 1 as multithreading isn't supported.\n- `-f /tmp/out.sql` - the output file is always written to `/tmp/out.sql` in the virtual file system.\n- `-U postgres` - use the postgres user is hard coded.\n\n### Returns\n\n- A `File` object containing the dump.\n\n### Caveats\n\n- After restoring a dump, you might want to set the same search path as the initial db.\n\n### Example\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { pgDump } from '@electric-sql/pglite-tools/pg_dump'\n\nconst pg = await PGlite.create()\n\n// Create a table and insert some data\nawait pg.exec(`\n  CREATE TABLE test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\nawait pg.exec(`\n  INSERT INTO test (name) VALUES ('test');\n`)\n\n// store the current search path so it can be used in the restored db\nconst initialSearchPath = (\n  await pg1.query<{ search_path: string }>('SHOW SEARCH_PATH;')\n).rows[0].search_path\n\n// Dump the database to a file\nconst dump = await pgDump({ pg })\n// Get the dump text - used for restore\nconst dumpContent = await dump.text()\n\n// Create a new database\nconst restoredPG = await PGlite.create()\n// ... and restore it using the dump\nawait restoredPG.exec(dumpContent)\n\n// optional - after importing, set search path back to the initial one\nawait restoredPG.exec(`SET search_path TO ${initialSearchPath};`)\n```\n"
  },
  {
    "path": "docs/docs/repl.md",
    "content": "---\noutline: [2, 3]\n---\n\n<script setup>\nimport { defineClientComponent } from 'vitepress'\n\nconst Repl = defineClientComponent(() => {\n  return import('../components/Repl.vue')\n})\n</script>\n\n<style scoped>\n  .repl {\n    height: 350px;\n  }\n</style>\n\n# PGlite REPL Component\n\nA REPL, or terminal, for use in the browser with PGlite, allowing you to have an interactive session with your WASM Postgres in the page.\n\nThis is the REPL with a full PGlite Postgres embedded in the page:\n\n<ClientOnly>\n  <Repl class=\"repl\" />\n</ClientOnly>\n\n## Features:\n\n- Available as both a [React.js](#react-component) component and a [Web Component](#web-component)\n- [CodeMirror](https://codemirror.net) for input editing\n- Auto complete, including table and column names from the database\n- Input history (up and down keys)\n- `\\d` PSQL commands (via [psql-describe](https://www.npmjs.com/package/psql-describe))\n\n## React Component\n\n```bash\nnpm install @electric-sql/pglite-repl\n```\n\nthen to include in a page:\n\n```tsx\nimport { PGlite } from '@electric-sql/pglite'\nimport { Repl } from '@electric-sql/pglite-repl'\n\nfunction MyComponent() {\n  const pg = new PGlite()\n\n  return (\n    <>\n      <Repl pg={pg} />\n    </>\n  )\n}\n```\n\nThe props for the `<Repl>` component are described by this interface:\n\n```ts\n// The theme to use, auto is auto-switching based on the system\ntype ReplTheme = 'light' | 'dark' | 'auto'\n\ninterface ReplProps {\n  pg: PGlite // PGlite db instance\n  border?: boolean // Outer border on the component, defaults to false\n  lightTheme?: Extension\n  darkTheme?: Extension\n  theme?: ReplTheme // Defaults to \"auto\"\n}\n```\n\nThe `lightTheme` and `darkTheme` should be instances of a [React CodeMirror](https://uiwjs.github.io/react-codemirror/) theme.\n\n## Web Component\n\nAlthough the PGlite REPL is built with React, it's also available as a web component for easy inclusion in any page or any other framework.\n\n```html\n<script\n  src=\"https://cdn.jsdelivr.net/npm/@electric-sql/pglite-repl/dist-webcomponent/Repl.js\"\n  type=\"module\"\n></script>\n\n<!-- Include the Repl web component in your page -->\n<pglite-repl id=\"repl\"></pglite-repl>\n\n<script type=\"module\">\n  import { PGlite } from 'https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js'\n\n  // Create a PGlite instance\n  const pg = new PGlite()\n\n  // Retrieve the Repl element\n  const repl = document.getElementById('repl')\n\n  // REPL to your PGlite instance\n  repl.pg = pg\n</script>\n```\n\n### With Vue.js\n\nThe REPL Web Component can be used with Vue.js:\n\n```vue\n<script setup>\nimport { PGlite } from '@electric-sql/pglite'\nimport '@electric-sql/pglite-repl/webcomponent'\n\nconst pg = new PGlite()\n</script>\n<template>\n  <pglite-repl :pg=\"pg\" />\n</template>\n```\n\nYou will also need to configure Vue to ignore the `pglite-` prefix:\n\n```ts\napp.config.compilerOptions.isCustomElement = (tag) => {\n  return tag.startsWith('pglite-')\n}\n```\n\nSee the [Vue docs for more details](https://vuejs.org/api/application.html#app-config-compileroptions-iscustomelement).\n"
  },
  {
    "path": "docs/docs/sync.md",
    "content": "# Sync using ElectricSQL\n\nAt [ElectricSQL](https://electric-sql.com/) we are building a sync engine to enable realtime partial replication from Postgres to any other datastore, be it a JavaScript framework state store in a webapp, a database at the edge, or an embedded database in the mobile application.\n\nTo accompany Electric, we are developing a sync extension for PGlite that will enable you to synchronise a remote Postgres with PGlite.\n\nThe first _alpha_ version of the sync plugin can sync a \"shape\" from Electric into a table in your PGlite. We don't yet support local writes being synced out, or conflict resolution, but we are actively exploring the best way to enable this in a layered and extendable way.\n\n## Using the Sync plugin _(alpha)_\n\nTo use the sync plugin, first install the `@electric-sql/pglite-sync` package:\n\n```sh\nnpm install @electric-sql/pglite-sync\n```\n\nThen add it to you PGlite instance and create any local tables needed:\n\n```ts\nimport { electricSync } from '@electric-sql/pglite-sync'\n\nconst pg = await PGlite.create({\n  extensions: {\n    electric: electricSync(),\n  },\n})\n\nawait pg.exec(`\n  CREATE TABLE IF NOT EXISTS todo (\n    id SERIAL PRIMARY KEY,\n    task TEXT,\n    done BOOLEAN\n  );\n`)\n```\n\nYou can sync data from Electric using either the single table or multi-table API.\n\n### Single Table Sync\n\nUse the `syncShapeToTable` method to sync a single table from Electric:\n\n```ts\nconst shape = await pg.electric.syncShapeToTable({\n  shape: {\n    url: 'http://localhost:3000/v1/shape',\n    params: {\n      table: 'todo',\n    },\n  },\n  table: 'todo',\n  primaryKey: ['id'],\n  shapeKey: 'todo', // or null if the shape state does not need to be persisted\n  onError: (error) => {\n    console.error('Shape sync error', error)\n  },\n})\n\n// Stop syncing when done\nshape.unsubscribe()\n```\n\n### Multi-Table Sync\n\nThe multi-table API ensures transactional consistency across tables by syncing updates that happened in a single transaction in Postgres within a single transaction in PGLite.\n\nUse the `syncShapesToTables` method to sync multiple tables simultaneously:\n\n```ts\nconst sync = await pg.electric.syncShapesToTables({\n  shapes: {\n    todos: {\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n    },\n    users: {\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'users' },\n      },\n      table: 'users',\n      primaryKey: ['id'],\n    },\n  },\n  key: 'my-sync', // or null if the sync state does not need to be persisted\n  onInitialSync: () => {\n    console.log('Initial sync complete')\n  },\n  onError: (error) => {\n    console.error('Sync error', error)\n  },\n})\n\n// Stop syncing when done\nsync.unsubscribe()\n```\n\nThere is a full example you can run locally in the [GitHub repository](https://github.com/electric-sql/pglite/tree/main/packages/pglite-sync/example).\n\n## electricSync API\n\nThe `electricSync` plugin can be given some configuration options to allow customization of the sync process.\n\n- `metadataSchema?: string`<br>\n  The name of the Postgres schema that the shape metadata tables will be part of, defaults to `\"electric\"`.\n\n- `debug?: boolean`<br>\n  Enable debug logging, defaults to `false`.\n\n## syncShapeToTable API\n\nThe `syncShapeToTable` is a relatively thin wrapper around the Electric [ShapeStream API](https://next.electric-sql.com/api/clients/typescript#shapestream) designed to do the minimal required to sync a shape _into_ a table.\n\nIt takes the following options as an object:\n\n- `shape: ShapeStreamOptions`<br>\n  The shape stream specification to sync, described by the Electric [ShapeStream API](https://electric-sql.com/docs/api/clients/typescript#shapestream) options, see the [ShapeStream API](https://electric-sql.com/docs/api/clients/typescript#options) for more details.\n\n- `table: string`<br>\n  The name of the table to sync into.\n\n- `schema: string`<br>\n  The name of the Postgres schema that the table to sync into is part of, defaults to `\"public\"`.\n\n- `mapColumns: MapColumns`<br>\n  An object indicating the mapping of the shape column values to your local table. This can be either a simple object of `localColumnName: shapeColumnName` mapping, or a function that takes a replication message and returns a mapping of `localColumnName: newValue`.\n\n- `primaryKey: string[]`<br>\n  An array of column names that form the primary key of the table you are syncing into. Used for updates and deletes.\n\n- `shapeKey: string | null`<br>\n  Identifier for the shape subscription - If not null, stream state will be persisted along with the data in order to allow resuming the stream between sessions.\n\n- `initialInsertMethod: 'insert' | 'csv' | 'json'`<br>\n  The method to use for the initial sync, defaults to `'insert'`. The `csv` and `json` options provide a performance boost during the initial sync.\n\n  - `insert`: Insert the data row by row.\n  - `csv`: Insert the data using the `COPY FROM` command with a CSV file.\n  - `json`: Insert the data using a query that is passed the data as a JSON array.\n\n- `useCopy: boolean`_(DEPRECATED: use `initialInsertMethod` instead)_<br>\n  Whether to use the `COPY FROM` command to insert the initial data, defaults to `false`. This process may be faster than inserting row by row as it combines the inserts into a CSV to be passed to Postgres.\n\n- `onInitialSync: () => void`<br>\n  A callback that is called when the initial sync is complete.\n\n- `onError?: (error: FetchError | Error) => void`<br>\n  Optional callback invoked when the underlying shape stream encounters an error.\n\n- `onMustRefetch?: (tx: Transaction) => Promise<void>`<br>\n  A callback for when the shape must be refetched after Electric sends the `must-refetch` control message. When provided, the subscription will bypass the single-shape-per-table lock and you can use the provided transaction to perform the required cleanup of synced rows before the shape data is re-inserted from scratch. This is ideal when there is clear separation of shapes, such as date ranges.\n\nThe returned `shape` object from the `syncShapeToTable` call has the following methods:\n\n- `isUpToDate: boolean`<br>\n  Indicates that the stream had caught up to the main Postgres.\n\n- `shapeId: string`<br>\n  The server side `shapeId`\n\n- `subscribe(cb: () => void, error: (err: FetchError | Error) => void)`<br>\n  A callback to indicate that the shape caught up to the main Postgres.\n\n- `unsubscribe()`<br>\n  Unsubscribe from the shape. Note that this does not clear the state that has been synced into the table.\n\n- `stream: ShapeStream`<br>\n  The underlying `ShapeStream` instance, see the [ShapeStream API](https://electric-sql.com/docs/api/clients/typescript#shapestream) for more details.\n\n## syncShapesToTables API\n\nThe `syncShapesToTables` API allows syncing multiple shapes into multiple tables simultaneously while maintaining transactional consistency. It takes the following options:\n\n- `shapes: Record<string, ShapeOptions>`<br>\n  An object mapping shape names to their configuration options. Each shape configuration includes:\n\n  - `shape: ShapeStreamOptions` - The shape stream specification\n  - `table: string` - The target table name\n  - `schema?: string` - Optional schema name (defaults to \"public\")\n  - `mapColumns?: MapColumns` - Optional column mapping\n  - `primaryKey: string[]` - Array of primary key columns\n\n- `key: string | null`<br>\n  Identifier for the multi-shape subscription. If provided, sync state will be persisted to allow resuming between sessions.\n\n- `initialInsertMethod: 'insert' | 'csv' | 'json'`<br>\n  The method to use for the initial sync, defaults to `'insert'`. The `csv` and `json` options provide a performance boost during the initial sync.\n\n  - `insert`: Insert the data row by row.\n  - `csv`: Insert the data using the `COPY FROM` command with a CSV file.\n  - `json`: Insert the data using a query that is passed the data as a JSON array.\n\n- `useCopy: boolean`_(DEPRECATED: use `initialInsertMethod` instead)_<br>\n  Whether to use the `COPY FROM` command to insert the initial data, defaults to `false`. This process may be faster than inserting row by row as it combines the inserts into a CSV to be passed to Postgres.\n\n- `onInitialSync?: () => void`<br>\n  Optional callback that fires when initial sync is complete for all shapes.\n\n- `onError?: (error: FetchError | Error) => void`<br>\n  Optional callback invoked when the underlying multi-shape stream encounters an error.\n\n- `onMustRefetch?: (tx: Transaction) => Promise<void>`<br>\n  A callback for when the shape must be refetched after Electric sends the `must-refetch` control message. When provided, the subscription will bypass the single-shape-per-table lock and you can use the provided transaction to perform the required cleanup of synced rows before the shape data is re-inserted from scratch. This is ideal when there is clear separation of shapes, such as date ranges.\n\nThe returned sync object provides:\n\n- `isUpToDate: boolean`<br>\n  Whether all shapes have caught up to the main Postgres.\n\n- `streams: Record<string, ShapeStream>`<br>\n  Access to individual shape streams by their names.\n\n- `unsubscribe()`<br>\n  Stop syncing all shapes.\n\n## Limitations\n\n- It is currently not possible to sync multiple shapes into the same table, as shape subscriptions require being able to drop all data and start over. We are working on a fix for this case, but the current version will throw if a shape is synced into the same table more than once.\n\n- In order to maintain transactional consistency, data is aggregated in-memory until we can guarantee its consistency, which might create a lot of memory usage for very large shapes. We are working on resolving this issue, and it is only a problem for initial syncing.\n"
  },
  {
    "path": "docs/docs/upgrade.md",
    "content": "# Upgrading between minor versions\n\nUnlike patch version, minor version upgrades might introduce breaking changes. Here is how you can upgrade.\n\n## Upgrade path\n\nThe upgrade path is to use [pg_dump](https://www.npmjs.com/package/@electric-sql/pglite-tools) to create a database dump from the previous version of PGlite and then import into a new instance.\n\n## Using pg_dump to upgrade\n\n::: code-group\n\n```bash [npm]\n### in a project that is using a previous minor PGLite version, also install the newer version\n### for example, if your project was using v0.3.x, also install version 0.4.x in the same project\nnpm install pglite-04@npm:@electric-sql/pglite@0.4.0\n```\n\n```bash [pnpm]\n### in a project that is using a previous minor PGLite version, also install the newer version\n### for example, if your project was using v0.3.x, also install version 0.4.x in the same project\npnpm install pglite-04@npm:@electric-sql/pglite@0.4.0\n```\n\n```bash [yarn]\n### in a project that is using a previous minor PGLite version, also install the newer version\n### for example, if your project was using v0.3.x, also install version 0.4.x in the same project\nyarn add pglite-04@npm:@electric-sql/pglite@0.4.0\n```\n\n```bash [bun]\n### in a project that is using a previous minor PGLite version, also install the newer version\n### for example, if your project was using v0.3.x, also install version 0.4.x in the same project\nbun install pglite-04@npm:@electric-sql/pglite@0.4.0\n```\n\n:::\n\n```ts\n// in your upgrade code, you can then use your current PGlite\n// version to dump the database:\nimport { PGlite } from '@electric-sql/pglite' // current version\nimport { PGlite as PGlite04 } from 'pglite-04' // next version\n\n[...]\n\n// pg03 is your PGlite instance with version 0.3.x\nconst currentVersion = await pg03.query<{ version: string }>(\n  'SELECT version();'\n)\nconsole.log(currentVersion.rows[0].version)\n\nconst dumpDir = await pg03.dumpDataDir('none')\nconst pgCurr = await PGlite.create({ loadDataDir: dumpDir })\nconst dumpResult = await pgDump({ pg03: pgCurr })\n\n// pg03 is PGlite instance with version 0.3.x\nconst pg03 = await PGlite04.create()\n\npg03.exec(await dumpResult.text())\n// adapt the SEARCH_PATH to your needs\nawait pg03.exec('SET SEARCH_PATH = public;')\n\nconst nextVersion = await pg03.query<{ version: string }>(\n  'SELECT version();'\n)\nconsole.log(nextVersion.rows[0].version)\n```\n\nThat's it! Now you can remove the PGlite v0.3.x package from your project.\n\n## Further reading\n\nYou can see a full upgrade example in Electric SQL's Linearlite example (from 0.2.x to 0.3.x) on [this branch](https://github.com/electric-sql/electric/tree/tudor/upgradePathPGlite). The relevant code is in `examples/linearlite` folder, see [MigrateModal.tsx] (https://github.com/electric-sql/electric/blob/tudor/upgradePathPGlite/examples/linearlite/src/components/MigrateModal.tsx).\n"
  },
  {
    "path": "docs/docs/videos.md",
    "content": "# Videos\n\nCompiling Postgres to WASM with PGlite (Sam Willis at [pgconf.dev](https://pgconf.dev)).\n\n<iframe width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/hlWWG5WZHOA\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n\nCompiling Postgres to WASM with PGlite (Sam Willis at [San Francisco Bay Area PostgreSQL Users Group](https://www.youtube.com/@sanfranciscobayareapostgre4592))\n\n<iframe width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/cPMi1GbICmE\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n\nVibe coding with a database in the sandbox - [Bolt](https://bolt.new) + PGlite - Demo video\n\n<iframe width=\"640\" height=\"480\" src=\"https://www.youtube.com/embed/1XI2WPbSleo\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n"
  },
  {
    "path": "docs/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  { ignores: ['.vitepress/dist/**/*', '.vitepress/cache/**/*'] },\n  {\n    files: ['**/*.js'],\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n      },\n    },\n  },\n]\n"
  },
  {
    "path": "docs/examples.md",
    "content": "# Examples\n\nWe have a number of examples showing how to use PGlite along with its capabilities:\n\n- <a href=\"./examples/basic.html\" target=\"_blank\">Basic</a><br>\n  A basic example showing how to initiate a PGlite database and perform queries using `.exec()`\n\n- <a href=\"./examples/query-params.html\" target=\"_blank\">Query Params</a><br>\n  Aa example showing how to perform parametrised queries using `.query()` method.\n\n- <a href=\"./examples/copy.html\" target=\"_blank\">Copy</a><br>\n  An example showing to use the `COPY` command with the PGlite `/dev/blob` device.\n\n- <a href=\"./examples/dump-data-dir.html\" target=\"_blank\">Dump Data Dir</a><br>\n  Example of the `db.dumpDataDir()` method to save a tarball of a database.\n\n- <a href=\"./examples/live.html\" target=\"_blank\">Live Query</a><br>\n  Reactivity example using the live query extensions `.live.query()` method.\n\n- <a href=\"./examples/live-changes.html\" target=\"_blank\">Live Changes</a><br>\n  Reactivity example using the live query extensions `.live.changes()` method.\n\n- <a href=\"./examples/live-incremental.html\" target=\"_blank\">Live Incremental Query</a><br>\n  Reactivity example using the live query extensions `.live.incrementalQuery()` method.\n\n- <a href=\"./examples/notify.html\" target=\"_blank\">Notify and Listen</a><br>\n  Example showing the use of the `NOTIFY` and `LISTEN` Postgres commands via the PGlite `.listen()` API.\n\n- <a href=\"./examples/opfs.html\" target=\"_blank\">OPFS VFS</a><br>\n  An example demonstrating the [OPFS Access Handle Pool VFS](./docs/filesystems.md#opfs-ahp-fs).\n\n- <a href=\"./examples/plpgsql.html\" target=\"_blank\">PL/PGSQL</a><br>\n  Demonstration of PGlite's support for Postgres's built-in SQL procedural language extension \"PL/PGSQL\".\n\n- <a href=\"./examples/vector.html\" target=\"_blank\">Extension: `pgvector`</a><br>\n  An example showing how to use [pgvector](https://github.com/pgvector/pgvector) with PGlite.\n\n- <a href=\"./examples/worker.html\" target=\"_blank\">Multi Tab Worker</a><br>\n  Demonstration of the multi tab worker, enabling multiple browser tabs to share a PGlite database.\n\n- <a href=\"./examples/fts.html\" target=\"_blank\">FTS</a><br>\n  An example showing how to use Full Text Search (FTS) with PGlite.\n\n- <a href=\"./examples/pg_dump.html\" target=\"_blank\">pg_dump</a><br>\n  An example showing how to use the `pg_dump` tool with PGlite.\n"
  },
  {
    "path": "docs/extensions/age.md",
    "content": "# Apache AGE Extension\n\n[Apache AGE](https://age.apache.org/) (A Graph Extension) brings graph database capabilities to PostgreSQL, allowing you to use the Cypher query language alongside standard SQL.\n\n## Installation\n\nThe AGE extension is included with PGlite. To use it:\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { age } from '@electric-sql/pglite/age'\n\nconst pg = new PGlite({\n  extensions: {\n    age,\n  },\n})\n```\n\n## Important Notes\n\n### Schema Qualification\n\nAll AGE functions are in the `ag_catalog` schema. The extension does not implicitly update the search path for safety. You must either manually set the `search_path` to include `ag_catalog` for your connection, or use fully-qualified names:\n\n```typescript\n// Explicit qualification:\nawait pg.exec(\"SELECT ag_catalog.create_graph('g');\")\n\n// Setting the search path for the session:\nawait pg.exec('SET search_path = ag_catalog, \"$user\", public;')\nawait pg.exec(\"SELECT create_graph('g');\")\n```\n\n### Column Definitions\n\nCypher queries require column definitions in the `as` clause to map the dynamic graph types back to standard PostgreSQL relations:\n\n```typescript\n// Single column\nSELECT * FROM ag_catalog.cypher('g', $$ RETURN 1 $$) as (v ag_catalog.agtype);\n\n// Multiple columns\nSELECT * FROM ag_catalog.cypher('g', $$\n  MATCH (n) RETURN n.name, n.age\n$$) as (name ag_catalog.agtype, age ag_catalog.agtype);\n```\n\n## Limitations\n\n- **File operations**: `load_labels_from_file()` is not available (no filesystem access in WASM)\n- **Memory**: Large graphs may hit WebAssembly memory limits\n- **Performance**: Graph operations are CPU-intensive; consider pagination for large result sets\n\n## Resources\n\n- [Apache AGE Documentation](https://age.apache.org/age-manual/master/index.html)\n- [Cypher Query Language](https://neo4j.com/docs/cypher-manual/current/)\n- [AGE GitHub Repository](https://github.com/apache/age)\n"
  },
  {
    "path": "docs/extensions/development.md",
    "content": "# Extension Development\n\nPGlite has support for both Postgres extensions, and has its own plugin API that allows a developer to augment a PGlite instance with an additional API.\n\n## Extension API\n\n::: warning\nThe extension API is not yet stable and may change in a future release.\n:::\n\nPGlite extensions are an object with the following interface:\n\n```ts\nexport interface Extension {\n  name: string\n  setup: ExtensionSetup\n}\n\nexport type ExtensionSetup = (\n  pg: PGliteInterface,\n  emscriptenOpts: any,\n  clientOnly?: boolean,\n) => Promise<ExtensionSetupResult>\n\nexport interface ExtensionSetupResult {\n  emscriptenOpts?: any\n  namespaceObj?: any\n  bundlePath?: URL\n  init?: () => Promise<void>\n  close?: () => Promise<void>\n}\n```\n\n`name` is the human readable name of the extension.\n\n`setup` is a function that receives the following parameters, and returns a promise that resolves to an object conforming to `ExtensionSetupResult`:\n\n- `pg`<br>\n  The [PGlite](../docs/api.md) instance that the extension is being added to\n- `emscriptenOpts`<br>\n  The options currently configured to pass to the [Emscrption Module factory](https://emscripten.org/docs/api_reference/module.html), including the [Emscript FS](https://emscripten.org/docs/api_reference/Filesystem-API.html).\n- `clientOnly`<br>\n  A boolean indicating if this instance of the extension is \"client only\", meaning that it is on the main thread and doesn't have direct access to the underlying WASM as it is running in a worker. When true, `emscriptenOpts` and `bundlePath` should not re returned as they will have no effect.\n\nThe returned object has these properties - all are optional:\n\n- `emscriptenOpts`<br>\n  Any augmented or altered configuration to pass to the [Emscrption Module factory](https://emscripten.org/docs/api_reference/module.html).\n- `namespaceObj`<br>\n  An object to add as a namespace to the PGlite instance; this can provide access to additional methods or properties that your extension would like to expose.\n- `bundlePath`<br>\n  The path to the Postgres extension tarball - see [Building Postgres Extensions](#building-postgres-extensions)\n- `init`<br>\n  An initialisation function that will be run after the PGlite instance and Postgres runtime has started, but before the instance is marked as ready for external usage. You can use this to perform any initialisation your extension needs to perform on the database at startup.\n- `close`<br>\n  A function that will be called when the user calls `close()` on their PGlite instance; this is called before the database has been shut down.\n\nAn example of a PGlite extension that augments the PGlite instance is the [live query extension](../docs/live-queries.md).\n\n## Building Postgres Extensions\n\nIn PGlite, every Postgres extension consists of two parts: a **backend** part, and a **frontend** part. The backend part is its core code. The frontend part is the `typescript/javascript` code that interacts with PGlite.\n\n### Happy path\n\nSome extensions are (much) easier to build and integrate with PGlite than others. This section describes the process of porting a Postgres extension that has no external dependencies besides the already build ones for PGlite (see builder/Dockerfile).\n\nClone **PGlite's** entire repo, including submodules and install the necessary dependencies:\n\n```\n$ git clone --recurse-submodules git@github.com:electric-sql/pglite.git\n$ cd pglite\n$ pnpm i\n```\n\nand create a new branch to track your work:\n\n```\n$ git checkout -b myghname/myawesomeextension\n```\n\n#### Backend\n\nPGlite's backend code is in the repo [postgres-pglite](https://github.com/electric-sql/postgres-pglite) and is downloaded as a submodule dependency of the main repo. You will add your extension's code as a new submodule dependency:\n\n```\n$ cd postgres-pglite/pglite/other_extensions\n$ git submodule add <myawesomeextension_url>\n```\n\nThis **should** create a new folder `postgres-pglite/pglite/other_extensions/myawesomeextension` where the extension code has been downloaded. Check it:\n\n```\n$ ls -lah myawesomeextension\n<the extension files should be listed here>\n```\n\nNow append the **folder name** to `SUBDIRS` inside `postgres-pglite/pglite/other_extensions/Makefile`:\n\n```\nSUBDIRS = \\\n\t\tpg_ivm \\\n\t\tvector \\\n    myawesomeextension\n```\n\nThese steps allow our build environment to pick up the extension's code, then build and package it for PGlite. The backend build process will output a `myawesomeextension.tar.gz` containing the WASM code and/or any data dependencies of the extension.\n\n#### Frontend\n\nPGlite's frontend code is in the main [PGLite repo](https://github.com/electric-sql/pglite)\n\nCreate a new folder `packages/pglite/src/myawesomeextension` and a new file inside it `index.ts`. This is how PGlite will know how to load your new extension:\n\n```\nimport type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/myawesomeextension.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const myawesomeextension = {\n  name: 'myawesomeextension',\n  setup,\n} satisfies Extension\n\n```\n\nNow add the extension to `packages/pglite/package.json` exports:\n\n```\n \"exports\": {\n  ...\n    \"./myawesomeextension\": {\n      \"import\": {\n        \"types\": \"./dist/myawesomeextension/index.d.ts\",\n        \"default\": \"./dist/myawesomeextension/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/myawesomeextension/index.d.cts\",\n        \"default\": \"./dist/myawesomeextension/index.cjs\"\n      }\n    },\n}\n```\n\nOpen `packages/pglite/tsup.config.ts` and add your extension inside `entryPoints`:\n\n```\nconst entryPoints = [\n  ...\n  'src/myawesomeextension/index.ts'\n]\n```\n\nYou also need to add the extension to `packages/pglite/scripts/bundle-wasm.ts`, inside `main()`:\n\n```\nasync function main() {\n ...\n await findAndReplaceInDir('./dist/myawesomeextension', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n}\n\n```\n\nTo make it available in our online [REPL](https://pglite.dev/repl/), add the extension to `docs/repl/allExtensions.ts`:\n\n```\nexport { myawesomeextension } from '@electric-sql/pglite/myawesomeextension\n\n```\n\nFinally, add the extension description to `docs/extensions/extensions.data.ts`, inside `baseExtensions`:\n\n```\nconst baseExtensions: Extension[] = [\n...\n{\n    name: 'My awesome Postgres extension',\n    description: `\n    My awesome Postgres extension is something that the world has never seen before.\n    `,\n    shortDescription:\n      'My awesome PostgreSQL extension',\n    docs: 'https://github.com/myawesomeextension/extension',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/myawesomeextension',\n    importName: 'my_awesome_extension',\n    size: 123456,\n},\n]\n```\n\n#### Tests\n\nTo make sure that your extension works, you need to add some tests for it. We use [vitest](https://vitest.dev/). They will be run as part of our CI/CD pipeline.\nAdd a file `packages/pglite/tests/myawesomeextension.test.ts` and write there your tests. Have a look inside that folder `packages/pglite/tests` at other tests to get an idea how they work.\n\n#### Build and run tests\n\nFrom PGlite's base folder:\n\n```\n$ pnpm build:all\n```\n\nThis will build **everything**, including your new extension. If there are no errors, you are ready to run the tests!\n\n```\n$ cd packages/pglite\n$ pnpm test\n```\n\nFix any errors that occur, re-run the tests! Iterate until everything works as expected.\n\n#### Contributing an extension to the project\n\nWe welcome contributions! Open a PR so anyone using PGlite can also use your extension!\n\n#### Further tips and tricks\n\nIf you get stuck, have a look at how other Postgres extensions are build for PGlite. Take a look at `pg_ivm`, `pgvector` or `pgtap`. You can also reach out on [Discord](https://discord.com/channels/933657521581858818/1212676471588520006) for help!\n\n### Unhappy path\n\nThis section is still under development.\n\nAs mentioned before, some extensions require more effort to integrate with PGlite. Usually the difficulties arrise from the fact that the extension itself has dependencies that need to be compiled for WASM, which in turn might have other dependencies that need to be compiled for WASM and so on. The entire chain of dependencies needs to be built for WASM.\n\nAnother source of pain for building an extension is the need to export symbols from the dependencies or from PGlite itself. Sometimes these are obvious only at runtime.\n\nWe are still working on documentation and examples showing how to build more complex Postgres extensions for use with PGlite. Please check back soon, or reach out on [Discord](https://discord.com/channels/933657521581858818/1212676471588520006) if you would like to try building a particular extension for PGlite.\n"
  },
  {
    "path": "docs/extensions/extensions.data.ts",
    "content": "const baseExtensions: Extension[] = [\n  {\n    name: 'pgvector',\n    description: `\n      Open-source vector similarity search for Postgres.\n\n      Store your vectors with the rest of your data. Supports:\n      - exact and approximate nearest neighbor search\n      - single-precision, half-precision, binary, and sparse vectors\n      - L2 distance, inner product, cosine distance, L1 distance, Hamming distance, and Jaccard distance\n    `,\n    shortDescription: 'Open-source vector similarity search for Postgres.',\n    featured: true,\n    repo: 'https://github.com/pgvector/pgvector',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/vector',\n    importName: 'vector',\n    core: true,\n    size: 43953,\n  },\n  {\n    name: 'live',\n    description: `\n      A reactive, or \"live\", query extension for PGlite that enables you to subscribe to a query \n      and receive updated results when the underlying tables change.\n    `,\n    shortDescription: \"A reactive, or 'live', query extension for PGlite.\",\n    featured: true,\n    repo: 'https://github.com/electric-sql/pglite/tree/main/packages/pglite/src/live',\n    docs: '/docs/live-queries',\n    tags: ['pglite plugin'],\n    importPath: '@electric-sql/pglite/live',\n    importName: 'live',\n    core: true,\n    size: 21766,\n  },\n  {\n    name: 'amcheck',\n    description: `\n      The amcheck module provides functions that allow you to verify the logical \n      consistency of the structure of relations.\n    `,\n    shortDescription: 'Verify the logical consistency of relations.',\n    docs: 'https://www.postgresql.org/docs/current/amcheck.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/amcheck',\n    importName: 'amcheck',\n    core: true,\n    size: 18815,\n  },\n  {\n    name: 'auto_explain',\n    description: `\n      The auto_explain module provides a means for logging execution plans of slow \n      statements automatically, without having to run EXPLAIN by hand.\n    `,\n    shortDescription: 'Log execution plans of slow statements automatically.',\n    docs: 'https://www.postgresql.org/docs/current/auto-explain.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/auto_explain',\n    importName: 'auto_explain',\n    core: true,\n    size: 3125,\n  },\n  {\n    name: 'bloom',\n    description: `\n      bloom provides an index access method based on Bloom filters.\n      A Bloom filter is a space-efficient data structure that is used to test whether \n      an element is a member of a set. In the case of an index access method, it \n      allows fast exclusion of non-matching tuples via signatures whose size is \n      determined at index creation.\n    `,\n    shortDescription: 'Index access method based on Bloom filters.',\n    repo: 'https://www.postgresql.org/docs/current/bloom.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/bloom',\n    importName: 'bloom',\n    core: true,\n    size: 6197,\n  },\n  {\n    name: 'btree_gin',\n    description: `\n      btree_gin provides GIN operator classes that implement B-tree equivalent \n      behavior for many built in data types.\n    `,\n    shortDescription: 'GIN operator classes that implement B-tree behavior.',\n    docs: 'https://www.postgresql.org/docs/current/btree-gin.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/btree_gin',\n    importName: 'btree_gin',\n    core: true,\n    size: 6347,\n  },\n  {\n    name: 'btree_gist',\n    description: `\n      btree_gist provides GiST operator classes that implement B-tree equivalent \n      behavior for many built in data types.\n    `,\n    shortDescription: 'GiST operator classes that implement B-tree behavior.',\n    docs: 'https://www.postgresql.org/docs/current/btree-gist.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/btree_gist',\n    importName: 'btree_gist',\n    core: true,\n    size: 24181,\n  },\n  {\n    name: 'citext',\n    description: `\n      citext provides a case-insensitive character string type, citext. Essentially, \n      it internally calls lower when comparing values. Otherwise, it behaves almost \n      the same as text.\n    `,\n    shortDescription: 'Case-insensitive character string type.',\n    docs: 'https://www.postgresql.org/docs/current/citext.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/citext',\n    importName: 'citext',\n    core: true,\n    size: 4983,\n  },\n  {\n    name: 'cube',\n    description: `\n      cube provides a data type cube for representing multidimensional cubes.\n    `,\n    shortDescription: 'Multidimensional cubes data type.',\n    docs: 'https://www.postgresql.org/docs/current/cube.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/cube',\n    importName: 'cube',\n    core: true,\n    size: 15104,\n  },\n  {\n    name: 'earthdistance',\n    description: `\n      The earthdistance module provides tools for calculating great circle distances \n      on the surface of the Earth.\n    `,\n    shortDescription: 'Calculate great circle distances on the Earth.',\n    docs: 'https://www.postgresql.org/docs/current/earthdistance.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/earthdistance',\n    importName: 'earthdistance',\n    core: true,\n    size: 2220,\n  },\n  {\n    name: 'fuzzystrmatch',\n    description: `\n      fuzzystrmatch provides functions to determine similarities and distance \n      between strings.\n    `,\n    shortDescription: 'Determine similarities and distance between strings.',\n    docs: 'https://www.postgresql.org/docs/current/fuzzystrmatch.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/fuzzystrmatch',\n    importName: 'fuzzystrmatch',\n    core: true,\n    size: 12026,\n  },\n  {\n    name: 'hstore',\n    description: ` \n      This module implements the hstore data type for storing sets of key/value pairs \n      within a single PostgreSQL value. This can be useful in various scenarios, \n      such as rows with many attributes that are rarely examined, or semi-structured \n      data. Keys and values are simply text strings.\n    `,\n    shortDescription: 'Key/value pairs data type.',\n    docs: 'https://www.postgresql.org/docs/current/hstore.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/hstore',\n    importName: 'hstore',\n    core: true,\n    size: 21380,\n  },\n  {\n    name: 'intarray',\n    description: `\n      The intarray module provides a number of useful functions and operators for \n      manipulating null-free arrays of integers. There is also support for indexed \n      searches using some of the operators.\n    `,\n    shortDescription: 'Operators for manipulating null-free arrays of integers',\n    docs: 'https://www.postgresql.org/docs/9.1/intarray.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/intarray',\n    importName: 'intarray',\n    core: true,\n    size: 14712,\n  },\n  {\n    name: 'dict_xsyn',\n    description: `\n      dict_xsyn (Extended Synonym Dictionary) is an example of an add-on dictionary \n      template for full-text search. This dictionary type replaces words with groups \n      of their synonyms, and so makes it possible to search for a word using any of \n      its synonyms.\n    `,\n    shortDescription: 'Example synonym full-text search dictionary',\n    docs: 'https://www.postgresql.org/docs/18/dict-xsyn.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/dict_xsyn',\n    importName: 'dict_xsyn',\n    core: true,\n    size: 1948,\n  },\n  {\n    name: 'pageinspect',\n    description: `\n      The pageinspect module provides functions that allow you to inspect the contents \n      of database pages at a low level, which is useful for debugging purposes. All of \n      these functions may be used only by superusers.\n    `,\n    shortDescription: 'Low-level inspection of database pages ',\n    docs: 'https://www.postgresql.org/docs/18/pageinspect.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pageinspect',\n    importName: 'pageinspect',\n    core: true,\n    size: 15923,\n  },\n  {\n    name: 'dict_int',\n    description: `\n      dict_int is an example of an add-on dictionary template for full-text search. \n      The motivation for this example dictionary is to control the indexing of integers \n      (signed and unsigned), allowing such numbers to be indexed while preventing \n      excessive growth in the number of unique words, which greatly affects the \n      performance of searching.\n    `,\n    shortDescription: 'Example full-text search dictionary for integers',\n    docs: 'https://www.postgresql.org/docs/18/dict-int.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/dict_int',\n    importName: 'dict_int',\n    core: true,\n    size: 1361,\n  },\n  {\n    name: 'unaccent',\n    description: `\n      unaccent is a text search dictionary that removes accents (diacritic signs) \n      from lexemes. It's a filtering dictionary, which means its output is always \n      passed to the next dictionary (if any), unlike the normal behavior of \n      dictionaries. This allows accent-insensitive processing for full text search.\n    `,\n    shortDescription: 'A text search dictionary which removes diacritics',\n    docs: 'https://www.postgresql.org/docs/current/unaccent.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/unaccent',\n    importName: 'unaccent',\n    core: true,\n    size: 9323,\n  },\n  {\n    name: 'pg_surgery',\n    description: `\n      The pg_surgery module provides various functions to perform surgery on a damaged \n      relation. These functions are unsafe by design and using them may corrupt \n      (or further corrupt) your database. For example, these functions can easily be \n      used to make a table inconsistent with its own indexes, to cause UNIQUE or \n      FOREIGN KEY constraint violations, or even to make tuples visible which, when read, \n      will cause a database server crash. They should be used with great caution and \n      only as a last resort.\n    `,\n    shortDescription: 'Perform low-level surgery on relation data',\n    docs: 'https://www.postgresql.org/docs/current/pgsurgery.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pg_surgery',\n    importName: 'pg_surgery',\n    core: true,\n    size: 2635,\n  },\n  {\n    name: 'pgtap',\n    description: `\n    pgTAP is a suite of database functions that make it easy to write TAP-emitting unit \n    tests in psql scripts or xUnit-style test functions. The TAP output is suitable for \n    harvesting, analysis, and reporting by a TAP harness, such as those used in Perl \n    applications.\n    `,\n    shortDescription: 'pgTAP',\n    docs: 'https://pgtap.org',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/pgtap',\n    importName: 'pgtap',\n    size: 239428,\n  },\n  {\n    name: 'pg_uuidv7',\n    description: `\n    A tiny Postgres extension to create valid version 7 UUIDs in Postgres.`,\n    shortDescription: 'Use the new v7 UUIDs in Postgres',\n    docs: 'https://github.com/fboulnois/pg_uuidv7/',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/pg_uuidv7',\n    importName: 'pg_uuidv7',\n    size: 1522,\n  },\n  {\n    name: 'pg_walinspect',\n    description: `\n      The pg_walinspect module provides SQL functions that allow you to inspect the \n      contents of write-ahead log of a running PostgreSQL database cluster at a low level, \n      which is useful for debugging, analytical, reporting or educational purposes. \n      It is similar to pg_waldump, but accessible through SQL rather than a separate utility.\n    `,\n    shortDescription: 'Low-level WAL inspection',\n    docs: 'https://www.postgresql.org/docs/current/pgwalinspect.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pg_walinspect',\n    importName: 'pg_walinspect',\n    core: true,\n    size: 4689,\n  },\n  {\n    name: 'pg_visibility',\n    description: `\n      The pg_visibility module provides a means for examining the visibility map (VM) \n      and page-level visibility information of a table. It also provides functions to \n      check the integrity of a visibility map and to force it to be rebuilt.\n    `,\n    shortDescription: 'Visibility map information and utilities',\n    docs: 'https://www.postgresql.org/docs/current/pgvisibility.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pg_visibility',\n    importName: 'pg_visibility',\n    core: true,\n    size: 4159,\n  },\n  {\n    name: 'pg_freespacemap',\n    description: `\n      The pg_freespacemap module provides a means for examining the free space map (FSM). \n      It provides a function called pg_freespace, or two overloaded functions, to be precise. \n      The functions show the value recorded in the free space map for a given page, or \n      for all pages in the relation.\n    `,\n    shortDescription: 'Examine the free space map',\n    docs: 'https://www.postgresql.org/docs/current/pgfreespacemap.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pg_freespacemap',\n    importName: 'pg_freespacemap',\n    core: true,\n    size: 1485,\n  },\n  {\n    name: 'pg_buffercache',\n    description: `\n      The pg_buffercache module provides a means for examining what's happening in the \n      shared buffer cache in real time. It also offers a low-level way to evict data \n      from it, for testing purposes.\n    `,\n    shortDescription: 'Inspect PostgreSQL buffer cache state',\n    docs: 'https://www.postgresql.org/docs/current/pgbuffercache.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pg_buffercache',\n    importName: 'pg_buffercache',\n    core: true,\n    size: 3133,\n  },\n  {\n    name: 'file_fdw',\n    description: `\n      The file_fdw module provides the foreign-data wrapper file_fdw, which can be \n      used to access data files in the server's file system, or to execute programs \n      on the server and read their output. The data file or program output must be \n      in a format that can be read by COPY FROM. Access to data files is currently \n      read-only.\n    `,\n    shortDescription: \"Acess data files in the server's file system\",\n    docs: 'https://www.postgresql.org/docs/18/file-fdw.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/file_fdw',\n    importName: 'file_fdw',\n    core: true,\n    size: 4467,\n  },\n  {\n    name: 'isn',\n    description: `\n      The isn module provides data types for the following international product \n      numbering standards: EAN13, UPC, ISBN (books), ISMN (music), and ISSN (serials).\n    `,\n    shortDescription: 'International product numbering standards data types.',\n    docs: 'https://www.postgresql.org/docs/current/isn.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/isn',\n    importName: 'isn',\n    core: true,\n    size: 31417,\n  },\n  {\n    name: 'lo',\n    description: `\n      The lo module provides support for managing Large Objects (also called LOs \n      or BLOBs). This includes a data type lo and a trigger lo_manage.\n    `,\n    shortDescription: 'Support for managing Large Objects.',\n    docs: 'https://www.postgresql.org/docs/current/lo.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/lo',\n    importName: 'lo',\n    core: true,\n    size: 1822,\n  },\n  {\n    name: 'ltree',\n    description: `\n      This module implements a data type ltree for representing labels of data stored \n      in a hierarchical tree-like structure. Extensive facilities for searching through \n      label trees are provided.\n    `,\n    shortDescription: 'Hierarchical tree-like structure data type.',\n    docs: 'https://www.postgresql.org/docs/current/ltree.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/ltree',\n    importName: 'ltree',\n    core: true,\n    size: 19553,\n  },\n  {\n    name: 'pg_trgm',\n    description: `\n      The pg_trgm module provides functions and operators for determining the similarity \n      of alphanumeric text based on trigram matching, as well as index operator classes \n      that support fast searching for similar strings.\n    `,\n    shortDescription: 'Text similarity functions and operators.',\n    docs: 'https://www.postgresql.org/docs/current/pgtrgm.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pg_trgm',\n    importName: 'pg_trgm',\n    core: true,\n    size: 16208,\n  },\n  {\n    name: 'seg',\n    description: `\n      This module implements a data type seg for representing line segments, or \n      floating point intervals. seg can represent uncertainty in the interval endpoints,\n      making it especially useful for representing laboratory measurements.\n    `,\n    shortDescription: 'Line segments data types.',\n    docs: 'https://www.postgresql.org/docs/current/seg.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/seg',\n    importName: 'seg',\n    core: true,\n    size: 10426,\n  },\n  {\n    name: 'tablefunc',\n    description: `\n      The tablefunc module includes various functions that return tables (that is, \n      multiple rows). These functions are useful both in their own right and as \n      examples of how to write C functions that return multiple rows.\n    `,\n    shortDescription: 'Functions that return tables.',\n    docs: 'https://www.postgresql.org/docs/current/tablefunc.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/tablefunc',\n    importName: 'tablefunc',\n    core: true,\n    size: 5824,\n  },\n  {\n    name: 'tcn',\n    description: `\n      The tcn module provides a trigger function that notifies listeners of changes to \n      any table on which it is attached. It must be used as an AFTER trigger \n      FOR EACH ROW.\n    `,\n    shortDescription: 'Trigger function that notifies listeners of changes.',\n    docs: 'https://www.postgresql.org/docs/current/tcn.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/tcn',\n    importName: 'tcn',\n    core: true,\n    size: 1914,\n  },\n  {\n    name: 'tsm_system_rows',\n    description: `\n      The tsm_system_rows module provides the table sampling method SYSTEM_ROWS, which \n      can be used in the TABLESAMPLE clause of a SELECT command.\n    `,\n    shortDescription: 'Table sampling method SYSTEM_ROWS.',\n    docs: 'https://www.postgresql.org/docs/current/tsm-system-rows.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/tsm_system_rows',\n    importName: 'tsm_system_rows',\n    core: true,\n    size: 2048,\n  },\n  {\n    name: 'tsm_system_time',\n    description: `\n      The tsm_system_time module provides the table sampling method SYSTEM_TIME, which \n      can be used in the TABLESAMPLE clause of a SELECT command.\n    `,\n    shortDescription: 'Table sampling method SYSTEM_TIME.',\n    docs: 'https://www.postgresql.org/docs/current/tsm-system-time.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/tsm_system_time',\n    importName: 'tsm_system_time',\n    size: 2099,\n  },\n  {\n    name: 'uuid-ossp',\n    description: `\n      The uuid-ossp module provides functions to generate universally unique \n      identifiers (UUIDs) using one of several standard algorithms. There are also \n      functions to produce certain special UUID constants. This module is only \n      necessary for special requirements beyond what is available in core PostgreSQL.\n    `,\n    shortDescription: 'Aditional functions for generating UUIDs.',\n    docs: 'https://www.postgresql.org/docs/current/uuid-ossp.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/uuid_ossp',\n    importName: 'uuid_ossp',\n    size: 17936,\n  },\n  {\n    name: 'pg_ivm',\n    description: `\n    The pg_ivm module provides Incremental View Maintenance (IVM) feature for PostgreSQL.\n    Incremental View Maintenance (IVM) is a way to make materialized views up-to-date in \n    which only incremental changes are computed and applied on views rather than \n    recomputing the contents from scratch as REFRESH MATERIALIZED VIEW does. \n    IVM can update materialized views more efficiently than recomputation \n    when only small parts of the view are changed.\n    `,\n    shortDescription:\n      'Incremental View Maintenance (IVM) feature for PostgreSQL.',\n    docs: 'https://github.com/sraoss/pg_ivm',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/pg_ivm',\n    importName: 'pg_ivm',\n    size: 24865,\n  },\n  {\n    name: 'pgcrypto',\n    description: `\n    The pgcrypto module provides cryptographic functions for PostgreSQL.\n    `,\n    shortDescription:\n      'The pgcrypto module provides cryptographic functions for PostgreSQL.',\n    docs: 'https://www.postgresql.org/docs/current/pgcrypto.html',\n    tags: ['postgres extension', 'postgres/contrib'],\n    importPath: '@electric-sql/pglite/contrib/pgcrypto',\n    importName: 'pgcrypto',\n    core: true,\n    size: 1148162,\n  },\n  {\n    name: 'pg_hashids',\n    description: `\n      Hashids is a small open-source library that generates short, unique, non-sequential\n      ids from numbers. It converts numbers like 347 into strings like “yr8”. You can also\n      decode those ids back. This is useful in bundling several parameters into one or simply\n      using them as short UIDs.\n      `,\n    shortDescription:\n      'Short unique id generator for PostgreSQL, using hashids.',\n    docs: 'https://github.com/iCyberon/pg_hashids',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/pg_hashids',\n    importName: 'pg_hashids',\n    size: 4212,\n  },\n  {\n    name: 'Apache AGE',\n    description: `\n      An extension for PostgreSQL that enables users to leverage a graph database on top of \n      the existing relational databases. AGE is an acronym for A Graph Extension and is \n      inspired by Bitnine's AgensGraph, a multi-model database fork of PostgreSQL. The basic \n      principle of the project is to create a single storage that handles both the relational \n      and graph data model so that the users can use the standard ANSI SQL along with openCypher, \n      one of the most popular graph query languages today. There is a strong need for cohesive, \n      easy-to-implement multi-model databases. As an extension of PostgreSQL, AGE supports all \n      the functionalities and features of PostgreSQL while also offering a graph model to boot.\n      `,\n    shortDescription:\n      'Leverage a graph database on top of the existing relational databases.',\n    docs: 'https://github.com/apache/age',\n    tags: ['postgres extension'],\n    importPath: '@electric-sql/pglite/age',\n    importName: 'age',\n    size: 141551,\n  },\n  {\n    name: 'PostGIS',\n    description: `\n      *** EXPERIMENTAL *** *** EXTERNAL ***\n      PostGIS extends the capabilities of the PostgreSQL relational database by adding \n      support for storing, indexing, and querying geospatial data.\n\n      This is an **external** extension, distributed as a separate package at https://www.npmjs.com/package/@electric-sql/pglite-postgis\n\n      You need to install it to use it: '$ npm i @electric-sql/pglite-postgis'\n\n      *Follow this issue for the status: https://github.com/electric-sql/pglite/issues/916\n\n      *No GDAL support atm.\n    `,\n    shortDescription: 'Storing, indexing, and querying geospatial data.',\n    docs: 'postgis.net',\n    tags: ['postgres extension', 'experimental'],\n    importPath: '@electric-sql/pglite-postgis',\n    importName: 'postgis',\n    size: 8551161,\n  },\n  {\n    name: 'pg_textsearch',\n    description: `\n      *** EXPERIMENTAL ***\n      PostgreSQL extension for BM25 relevance-ranked full-text search.\n      Provides a bm25 index access method for efficient full-text search with\n      BM25 ranking, supporting multiple languages and custom parameters.\n      `,\n    shortDescription: 'BM25 relevance-ranked full-text search for PostgreSQL.',\n    docs: 'https://github.com/timescale/pg_textsearch',\n    tags: ['postgres extension', 'experimental'],\n    importPath: '@electric-sql/pglite/pg_textsearch',\n    importName: 'pg_textsearch',\n    size: 55062,\n  },\n]\n\nconst tags = [\n  'postgres extension',\n  'pglite plugin',\n  'postgres/contrib',\n  'experimental',\n] as const\n\nexport type Tag = (typeof tags)[number]\n\nexport interface Extension {\n  name: string\n  description: string\n  shortDescription?: string\n  descriptionHtml?: string\n  repo?: string\n  homepage?: string\n  docs?: string\n  featured?: boolean\n  tags?: Tag[]\n  importPath?: string\n  importName?: string\n  core?: boolean\n  npmPackage?: string\n  size?: number\n}\n\nexport default {\n  async load() {\n    const { createMarkdownRenderer } = await import('vitepress')\n    const config = (await import('../.vitepress/config.mjs')).default\n    const dedent = (await import('dedent')).default\n\n    const md = await createMarkdownRenderer(config.srcDir!, config.markdown)\n\n    const extensions = baseExtensions.map((extension) => {\n      let descriptionHtml = extension.descriptionHtml\n      if (!descriptionHtml) {\n        let description = dedent(extension.description).trim()\n        if (extension.core) {\n          description +=\n            '\\n\\n' +\n            dedent`\n          \\`${extension.name}\\` is included in the main PGlite package.\n          `\n        } else if (extension.npmPackage) {\n          description += dedent`\n          <!-- this comment is a hack to force a new paragraph -->\n\n          ${'```'}sh\n          npm install ${extension.npmPackage}\n          ${'```'}\n          `\n        }\n        if (extension.importName && extension.importPath) {\n          description +=\n            '\\n\\n' +\n            dedent`\n          ${'```'}js\n          import { ${extension.importName} } from '${extension.importPath}';\n          const pg = new PGlite({\n            extensions: { ${extension.importName} }\n          });\n          \n          await pg.exec('CREATE EXTENSION IF NOT EXISTS ${extension.importName};')\n          ${'```'}\n          `\n        }\n        descriptionHtml = md.render(description)\n      }\n      return {\n        ...extension,\n        descriptionHtml,\n      }\n    })\n\n    return {\n      extensions,\n      tags,\n    }\n  },\n}\n"
  },
  {
    "path": "docs/extensions/index.md",
    "content": "<script setup>\nimport { computed, ref } from \"vue\";\nimport { data } from \"./extensions.data.ts\";\n\nconst filteredExtensions = computed(() => {\n  return data.extensions\n    .filter((ext) => !selectedTag.value || ext.tags.includes(selectedTag.value))\n    .sort((a, b) => {\n      if (a.featured && !b.featured) return -1;\n      if (!a.featured && b.featured) return 1;\n      return a.name.localeCompare(b.name);\n    });\n});\n\nfunction mainLink(ext) {\n  return ext.homepage || ext.repo || ext.docs;\n}\n\nfunction slugify(string) {\n  return string\n    .replace('/', '')\n    .replace(' ', '-')\n    .replace('_', '-')\n    .toLowerCase()\n}\n\nconst tags = computed(() => {\n  return data.tags.map((tag) => {\n    return {\n      name: tag,\n      count: data.extensions.filter((ext) => ext.tags.includes(tag)).length,\n    }\n  })\n})\n\nfunction formatSize(bytes) {\n  const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB'];\n  let i = 0;\n\n  while (bytes >= 1024 && i < units.length - 1) {\n    bytes /= 1024;\n    i++;\n  }\n\n  return `${bytes.toFixed(1)} ${units[i]}`;\n}\n\nconst selectedTag = ref(null)\n</script>\n\n<style scoped>\n.btn-tag {\n    border-color: var(--vp-button-alt-border);\n    color: var(--vp-button-alt-text);\n    background-color: var(--vp-button-alt-bg);\n    border-radius: 20px;\n    padding: 0 20px;\n    line-height: 38px;\n    font-size: 14.5px;\n    display: inline-block;\n    border: 1px solid transparent;\n    text-align: center;\n    font-weight: 600;\n    white-space: nowrap;\n    transition: color 0.25s, border-color 0.25s, background-color 0.25s;\n    margin-right: 0.5rem;\n}\n\n.btn-tag:hover {\n  border-color: var(--vp-button-alt-hover-border);\n  color: var(--vp-button-alt-hover-text);\n  background-color: var(--vp-button-alt-hover-bg);\n}\n\n.btn-tag.selected {\n  border-color: var(--vp-button-brand-border);\n  color: var(--vp-c-gray-3);\n  background-color: var(--vp-button-brand-bg);\n}\n\n.btn-tag.selected:hover {\n  border-color: var(--vp-button-brand-hover-border);\n  background-color: var(--vp-button-brand-hover-bg);\n}\n\n.btn-tag .count {\n  margin-left: 0.25rem;\n  margin-left: 0.25rem;\n  opacity: 0.5\n}\n\n.tags, .links {\n  margin-top: 1rem;\n}\n\n.tag {\n    border-color: var(--vp-button-alt-border);\n    color: var(--vp-button-alt-text);\n    background-color: var(--vp-button-alt-bg);\n    border-radius: 20px;\n    padding: 5px 10px;\n    line-height: 18px;\n    font-size: 14.5px;\n    display: inline-block;\n    border: 1px solid transparent;\n    text-align: center;\n    font-weight: 600;\n    white-space: nowrap;\n    transition: color 0.25s, border-color 0.25s, background-color 0.25s;\n    margin-right: 0.5rem;\n}\n\n.links a {\n  margin-right: 0.5rem;\n}\n\n.bundle-size {\n  float:right;\n  opacity: 0.5;\n}\n</style>\n\n# PGlite Extensions\n\nPGlite supports both Postgres extensions, and has a plugin API to enable extensions to extend the public API of the PGlite interface.\n\nBelow is a list of available extensions.\n\n<div class=\"tags\">\n  <button\n    v-for=\"tag in tags\"\n    :key=\"tag.name\"\n    @click=\"\n      selectedTag == tag.name ?\n        selectedTag = null :\n        selectedTag = tag.name\n    \"\n    class=\"btn-tag\"\n    :class=\"{ selected: tag.name === selectedTag }\"\n  >\n    {{ tag.name }} <span class=\"count\">{{ tag.count }}</span>\n  </button>\n</div>\n\n<div class=\"extension\" v-for=\"ext in filteredExtensions\">\n\n<h2\n  :id=\"slugify(ext.name)\"\n  tabindex=\"-1\"\n>\n  <a :href=\"mainLink(ext)\">{{ ext.name }}</a>\n  <a \n    class=\"header-anchor\"\n    :href=\"`#${slugify(ext.name)}`\"\n    :aria-label=\"`Permalink to ${ext.name}`\"\n  >​</a>\n</h2>\n\n<div class=\"description\" v-html=\"ext.descriptionHtml\"></div>\n\n<div class=\"links\">\n  <a \n    v-if=\"ext.repo?.startsWith('https://github.com/')\" \n    :href=\"ext.repo\"\n    target=\"_blank\"\n  >Github</a>\n  <a v-else-if=\"ext.repo\" :href=\"ext.repo\" target=\"_blank\">Repo</a>\n  <a v-if=\"ext.docs\" :href=\"ext.docs\" target=\"_blank\">Documentation</a>\n  <a v-if=\"ext.homepage\" :href=\"ext.homepage\" target=\"_blank\">Homepage</a>\n  <span class=\"bundle-size\" v-if=\"ext.size\">\n    Bundle Size: {{ formatSize(ext.size) }}\n  </span>\n</div>\n<div class=\"tags\">\n  <span v-for=\"tag in ext.tags\" :key=\"tag\" class=\"tag\">{{ tag }}</span>\n</div>\n\n</div>\n"
  },
  {
    "path": "docs/index.md",
    "content": "---\n# https://vitepress.dev/reference/default-theme-home-page\nlayout: home\n\nhero:\n  name: 'PGlite'\n  text: 'Embeddable Postgres'\n  tagline: 'Run a full Postgres database locally in WASM with reactivity and live sync.'\n  actions:\n    - theme: brand\n      text: Get Started\n      link: /docs/\n    - theme: alt\n      text: Star on GitHub\n      link: https://github.com/electric-sql/pglite\n\nfeatures:\n  - title: Lightweight\n    details: A complete WASM build of Postgres that's under 3MB Gzipped.\n  - title: Extendable\n    details: Dynamic extension loading mechanism, including support for pgvector.\n  - title: Reactive\n    details: Built in support for data loading, synchronisation and live query primitives.\n---\n\n<script setup>\nimport { onMounted } from 'vue'\nimport { defineClientComponent } from 'vitepress'\nimport { VPHomeHero } from 'vitepress/theme'\nimport { data as initialStarCount } from './count.data.ts'\nimport { starCount } from './components/starCount.ts'\n\nconst Repl = defineClientComponent(() => {\n  return import('./components/Repl.vue')\n})\n\nonMounted(async () => {\n  if (typeof window !== 'undefined' && document.querySelector) {\n    const linkEl = document.querySelector('.action a[href=\"https://github.com/electric-sql/pglite\"]')\n    let countEl = linkEl.querySelector('.count')\n    \n    if (!countEl) {\n      countEl = document.createElement('span')\n      countEl.classList.add('count')\n      countEl.innerText = `( ${initialStarCount.toLocaleString()} )`;\n\n      const icon = document.createElement('span')\n      icon.classList.add('vpi-social-github')\n      linkEl.prepend(icon)\n    }\n    \n    linkEl.append(countEl)\n\n    const count = await starCount(initialStarCount)\n\n    let currentCount = Math.max(count - 15, initialStarCount)\n    const animateCount = () => {\n      currentCount += 1;\n      if (currentCount >= count) {\n        currentCount = count;\n        clearInterval(intervalId);\n      }\n      countEl.innerText = `( ${currentCount.toLocaleString()} )`;\n    };\n    const intervalId = setInterval(animateCount, 64);\n  }\n});\n\n</script>\n\n<style>\n  .actions a[href=\"https://github.com/electric-sql/pglite\"] {\n    display: flex;\n    align-items: center;\n  }\n  .actions a[href=\"https://github.com/electric-sql/pglite\"] .vpi-social-github {\n    display: block;\n    width: 1.42rem;\n    height: 1.42rem;\n    margin: 0 0.5rem 0 0;\n    position: relative;\n  }\n  .actions a[href=\"https://github.com/electric-sql/pglite\"] .count {\n    margin-left: 0.25rem;\n    min-width: 55px;\n  }\n</style>\n\n<style scoped>\n\n  .try-it-now,\n  .postgres-new {\n    margin-top: 3rem;\n    display: flex;\n    flex-direction: column;\n  }\n\n  .try-it-now .repl {\n    display: block;\n    width: 100%;\n    margin-bottom: 1rem;\n    height: 350px;\n  }\n\n  .info {\n    text-align: center;\n  }\n\n  .postgres-new video {\n    display: block;\n    width: 100%;\n    border-radius: 12px;\n    margin-bottom: 1rem;\n    aspect-ratio: 1616 / 1080;\n  }\n\n  .link-btn {\n    border-color: var(--vp-button-alt-border);\n    color: var(--vp-button-alt-text);\n    background-color: var(--vp-button-alt-bg);\n    border-radius: 20px;\n    padding: 0 20px;\n    line-height: 38px;\n    font-size: 14.5px;\n    display: inline-block;\n    border: 1px solid transparent;\n    text-align: center;\n    font-weight: 600;\n    white-space: nowrap;\n    transition: color 0.25s, border-color 0.25s, background-color 0.25s;\n    text-decoration: none;\n  }\n\n  @media (min-width: 1000px) {\n    .row {\n      display: flex;\n    }\n\n    .try-it-now,\n    .postgres-new {\n      width: 50%;\n    }\n\n    .try-it-now {\n      padding-left: 1rem;\n    }\n\n    .postgres-new {\n      padding-right: 1rem;\n    }\n\n    .try-it-now .repl {\n      height: auto;\n      aspect-ratio: 1616 / 1080;\n    }\n  }\n</style>\n\n<span class=\"vpi-social-github\"></span>\n\n<div class=\"row\">\n  <div class=\"postgres-new\">\n    <div class=\"info\">\n      <h3>Experience PGlite with <a href=\"https://database.build\">database.build</a></h3>\n      <p>\n        Create and publish a Postgres database using AI\n        <br class=\"hide-xs\" />\n        built on PGlite by <a href=\"https://supabase.com\">Supabase</a>:\n      </p>\n    </div>\n    <video controls poster=\"https://static.pglite.dev/videos/postgres-new-showcase-loop.png\">\n      <source src=\"https://static.pglite.dev/videos/postgres-new-showcase-loop-1080p.mp4\" type=\"video/mp4\" />\n    </video>\n    <a class=\"link-btn\" href=\"https://database.build\">\n      What would you like to create?</a>\n  </div>\n  <div class=\"try-it-now\">\n    <div class=\"info\">\n      <h3>Try PGlite Now</h3>\n      <p>\n        This is a full PGlite Postgres running in your browser.\n        <br class=\"hide-xs\" />\n        It even includes <a href=\"/extensions/#pgvector\">pgvector</a>!\n      </p>\n    </div>\n    <ClientOnly>\n      <Repl class=\"repl\" />\n    </ClientOnly>\n    <a class=\"link-btn\" href=\"/repl\">\n      Try more extensions in the playground</a>\n  </div>\n</div>\n"
  },
  {
    "path": "docs/package.json",
    "content": "{\n  \"name\": \"docs\",\n  \"type\": \"module\",\n  \"private\": true,\n  \"scripts\": {\n    \"docs:dev\": \"vitepress dev\",\n    \"docs:build\": \"vitepress build\",\n    \"docs:preview\": \"vitepress preview\",\n    \"dev\": \"vitepress dev\",\n    \"build\": \"vitepress build\",\n    \"preview\": \"vitepress preview\",\n    \"lint\": \"eslint . --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write .\",\n    \"typecheck\": \"tsc --noEmit\",\n    \"stylecheck\": \"pnpm lint && prettier --check .\"\n  },\n  \"devDependencies\": {\n    \"vitepress\": \"^1.3.1\"\n  },\n  \"dependencies\": {\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@electric-sql/pglite-repl\": \"workspace:*\",\n    \"@electric-sql/pglite-postgis\": \"workspace:*\",\n    \"@uiw/codemirror-theme-github\": \"^4.23.0\",\n    \"dedent\": \"^1.5.3\"\n  }\n}\n"
  },
  {
    "path": "docs/repl/ReplPlayground.vue",
    "content": "<script setup>\nimport { ref, watch, onMounted, computed, toRaw, shallowRef } from 'vue'\nimport { defaultDarkThemeInit } from '@electric-sql/pglite-repl/webcomponent'\nimport { PGlite } from '@electric-sql/pglite'\nimport { data as extensionsData } from '../extensions/extensions.data.ts'\nimport * as allExtension from './allExtensions.ts'\n\nconst defaultExtensions = ['pgvector']\n\nconst enabledExtensions = ref(\n  localStorage.getItem('enabledExtensions')\n    ? JSON.parse(localStorage.getItem('enabledExtensions'))\n    : defaultExtensions,\n)\nconst loadedExtensions = ref([])\n\nconst pg = shallowRef()\nconst repl = ref(null)\nconst showOptions = ref(false)\n\nwatch(enabledExtensions, (value) => {\n  localStorage.setItem('enabledExtensions', JSON.stringify(value))\n})\n\nconst showReloadMsg = computed(() => {\n  return (\n    pg.value &&\n    (enabledExtensions.value.some(\n      (ext) => !loadedExtensions.value.includes(ext),\n    ) ||\n      loadedExtensions.value.some(\n        (ext) => !enabledExtensions.value.includes(ext),\n      ))\n  )\n})\n\nasync function doLoadPg() {\n  pg.value = await loadPg()\n}\n\nasync function loadPg() {\n  const extensions = Object.fromEntries(\n    enabledExtensions.value.map((extension) => {\n      const { importName } = extensionsData.extensions.find(\n        (ext) => ext.name === extension,\n      )\n      return [extension, allExtension[importName]]\n    }),\n  )\n\n  loadedExtensions.value = [...enabledExtensions.value]\n  const dbName = 'pglite-playground'\n  try {\n    console.log(`Creating PGlite instance with idb://${dbName}`)\n    return await PGlite.create({\n      dataDir: `idb://${dbName}`,\n      extensions,\n    })\n  } catch {\n    console.error(`Failed to create PGlite instance on idb at ${dbName}`)\n  }\n  // Delete the IndexedDB for '/pglite-playground' before creating PGlite instance again\n  if (window.indexedDB) {\n    try {\n      console.log('Deleting IndexedDB for', dbName)\n      await new Promise((resolve, reject) => {\n        const req = window.indexedDB.deleteDatabase(`/pglite/${dbName}`)\n        req.onsuccess = resolve\n        req.onerror = reject\n        req.onblocked = resolve // In case user blocks the deletion\n      })\n    } catch (err) {\n      console.error(`Failed to delete ${dbName} IndexedDB:`, err)\n    }\n    try {\n      return await PGlite.create({\n        dataDir: `idb://${dbName}`,\n        extensions,\n      })\n    } catch (err) {\n      console.error(\n        `Failed to create PGlite with idb://${dbName} instance again after trying to delete it`,\n        err,\n      )\n    }\n  } else {\n    console.error('IndexedDB is not supported')\n  }\n  console.log('Creating an in-memory db')\n  return await PGlite.create({\n    extensions,\n  })\n}\n\nonMounted(async () => {\n  pg.value = await loadPg()\n})\n\nconst rootStyle = window.getComputedStyle(document.body)\nconst codeStyles = Object.fromEntries(\n  [\n    '--vp-code-line-height',\n    '--vp-code-font-size',\n    '--vp-code-font-family',\n    '--vp-code-block-bg',\n    '--vp-code-line-highlight-color',\n    '--vp-c-brand-1',\n  ].map((prop) => [prop, rootStyle.getPropertyValue(prop)]),\n)\nconst theme = defaultDarkThemeInit({\n  settings: {\n    fontFamily: codeStyles['--vp-code-font-family'],\n    background: codeStyles['--vp-code-block-bg'],\n    lineHighlight: codeStyles['--vp-code-line-highlight-color'],\n    caret: codeStyles['--vp-c-brand-1'],\n  },\n})\n\nconst extensions = computed(() => {\n  return extensionsData.extensions.filter((extension) =>\n    extension.tags.includes('postgres extension'),\n  )\n})\n\nwatch(\n  () => repl.value,\n  async () => {\n    if (repl.value && repl.value.shadowRoot) {\n      let inputEl\n      while (!inputEl) {\n        inputEl = repl.value.shadowRoot.querySelector('.cm-content')\n        await new Promise((resolve) => setTimeout(resolve, 50))\n      }\n\n      const replRootEl = repl.value.shadowRoot.querySelector('.PGliteRepl-root')\n      replRootEl.setAttribute('style', `--PGliteRepl-font-size: 14.5px;`)\n\n      const styleEl = document.createElement('style')\n      styleEl.innerHTML = `\n        .cm-cursor {\n          border-left-width: 0.5em !important;\n        }\n        .cm-scroller {\n          line-height: 1.4 !important;\n        }\n      `\n      repl.value.shadowRoot.insertBefore(\n        styleEl,\n        repl.value.shadowRoot.firstChild,\n      )\n\n      inputEl.focus()\n    }\n  },\n)\n\nasync function clearDb() {\n  if (pg.value) {\n    await pg.value.close()\n  }\n  while (true) {\n    const closed = await new Promise((resolve, reject) => {\n      const req = indexedDB.deleteDatabase('/pglite/pglite-playground')\n\n      req.onsuccess = () => {\n        resolve(true)\n      }\n      req.onerror = () => {\n        reject(\n          req.error\n            ? req.error\n            : 'An unknown error occurred when deleting IndexedDB database',\n        )\n      }\n      req.onblocked = () => {\n        resolve(false)\n      }\n    })\n    if (closed) break\n    await new Promise((resolve) => setTimeout(resolve, 10))\n  }\n  pg.value = await loadPg()\n}\n</script>\n\n<template>\n  <div class=\"repl-playground\" :class=\"{ 'show-options': showOptions }\">\n    <div class=\"sidebar\">\n      <div class=\"top\">\n        <h1>PGlite Playground REPL</h1>\n        <p>\n          A REPL that you can use to try out PGlite with a database persisted in\n          your browsers IndexedDB.\n        </p>\n        <p>\n          <b>Tip:</b> The psql <code>\\d[..]</code> commands are available, and\n          there is autocomplete based on your schema.\n        </p>\n        <h2>Enabled Extensions</h2>\n        <div\n          v-for=\"extension in extensions\"\n          :key=\"extension.name\"\n          class=\"extension\"\n        >\n          <input\n            type=\"checkbox\"\n            :id=\"extension.name\"\n            :value=\"extension.name\"\n            v-model=\"enabledExtensions\"\n            :title=\"extension.shortDescription\"\n          />\n          <label :for=\"extension.name\" :title=\"extension.shortDescription\">{{\n            extension.name\n          }}</label>\n          <span v-if=\"extension.shortDescription\">\n            {{ extension.shortDescription }}\n          </span>\n        </div>\n      </div>\n      <div class=\"bottom\">\n        <button class=\"btn-clear\" @click=\"clearDb()\">\n          Clear Playground Database\n        </button>\n      </div>\n    </div>\n    <div class=\"main\" @click=\"showOptions = false\">\n      <div class=\"info-msg\" v-if=\"showReloadMsg\">\n        Please <button @click=\"doLoadPg()\">Restart</button> PGlite to enable the\n        selected extensions.\n      </div>\n      <pglite-repl\n        v-if=\"pg\"\n        ref=\"repl\"\n        class=\"repl\"\n        :pg=\"toRaw(pg)\"\n        :darkTheme=\"theme\"\n        theme=\"dark\"\n      />\n      <div v-else class=\"loading\">Loading...</div>\n    </div>\n  </div>\n\n  <teleport to=\".VPNavBar .content-body\" v-if=\"pg\">\n    <button\n      href=\"#repl-option\"\n      class=\"repl-option-link\"\n      :class=\"{ active: showOptions }\"\n      @click=\"showOptions = !showOptions\"\n    >\n      REPL Options\n    </button>\n  </teleport>\n</template>\n\n<style>\n:is(html, body):has(.page-repl-playground) {\n  height: 100vh;\n  overflow: hidden;\n}\n\n@media (max-width: 768px) {\n  body:has(.page-repl-playground) {\n    touch-action: none;\n  }\n}\n\n.page-repl-playground .VPNav {\n  position: fixed !important;\n}\n\n.page-repl-playground .VPContent {\n  padding-top: var(--vp-nav-height) !important;\n}\n\n.page-repl-playground.Layout {\n  display: flex;\n  flex-direction: column;\n  height: 100vh;\n}\n.page-repl-playground .VPContent,\n.page-repl-playground .VPPage,\n.page-repl-playground .VPPage > div,\n.page-repl-playground .VPPage > div > div {\n  display: flex;\n  flex-direction: column;\n  height: 100%;\n}\n.page-repl-playground .VPPage,\n.page-repl-playground .VPPage > div,\n.page-repl-playground .VPPage > div > div {\n  flex-grow: 1;\n}\n</style>\n\n<style scoped>\n.repl-playground {\n  display: flex;\n  flex-direction: row;\n  height: 100%;\n  max-height: 100%;\n  flex-grow: 1;\n}\n\n.sidebar {\n  width: 300px;\n  display: flex;\n  flex-direction: column;\n  max-height: 100%;\n  font-size: 14.5px;\n}\n\n.sidebar .top {\n  padding: 1rem;\n  border-bottom: 1px solid #000;\n  height: 100%;\n  overflow-y: auto;\n}\n\n.sidebar .bottom {\n  padding: 14.5px 1rem;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n}\n\n.main {\n  display: flex;\n  flex-direction: column;\n  flex: 1;\n  background-color: rgb(22, 22, 24);\n}\n\n.info-msg {\n  background-color: var(--vp-c-brand-1);\n  color: var(--vp-c-bg);\n  padding: 0.25rem 0.5rem;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  font-size: 14.5px;\n}\n\n.info-msg button {\n  background-color: var(--vp-c-bg);\n  color: var(--vp-c-brand-1);\n  border: none;\n  padding: 0.25rem 0.5rem;\n  margin: 0 0.25rem;\n  cursor: pointer;\n  border-radius: 0.25rem;\n  font-size: 14.5px;\n  transition:\n    color 0.25s,\n    border-color 0.25s,\n    background-color 0.25s;\n}\n\n.info-msg button:hover {\n  background-color: var(--vp-button-alt-bg);\n}\n\n.repl {\n  flex: 1;\n  max-height: 100%;\n}\n\n.btn-clear {\n  border-color: var(--vp-button-alt-border);\n  color: var(--vp-button-alt-text);\n  background-color: var(--vp-button-alt-bg);\n  padding: 0.25rem 1rem;\n  border-radius: 0.25rem;\n  transition:\n    color 0.25s,\n    border-color 0.25s,\n    background-color 0.25s;\n  font-size: 14.5px;\n}\n\n.btn-clear:hover {\n  border-color: var(--vp-button-alt-hover-border);\n  background-color: var(--vp-button-alt-hover-bg);\n}\n\nh1,\nh2 {\n  font-weight: bold;\n  font-size: 14.5px;\n}\n\nh1 {\n  margin-bottom: 0.5rem;\n  color: var(--vp-c-brand-1);\n}\n\nh2 {\n  margin-top: 1rem;\n}\n\np {\n  font-size: 14.5px;\n  margin: 0.5rem 0;\n}\n\np code {\n  background-color: #000;\n  color: var(--vp-c-brand-1);\n  padding: 0.2rem 0.4rem;\n  border-radius: 0.25rem;\n}\n\n.extension {\n  display: flex;\n  align-items: center;\n  margin: 0.25rem 0;\n}\n\n.extension input {\n  margin-right: 0.5rem;\n  accent-color: var(--vp-c-brand-1);\n}\n\n.extension label {\n  white-space: nowrap;\n}\n\n.extension span {\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  margin-left: 0.5rem;\n  opacity: 0.3;\n}\n\n.loading {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  flex: 1;\n  font-size: 14.5px;\n  opacity: 0.5;\n}\n\n.repl-option-link {\n  display: none;\n}\n.repl-option-link:hover,\n.repl-option-link.active {\n  color: var(--vp-c-brand-1);\n}\n\n@media (max-width: 768px) {\n  .repl-option-link {\n    order: -1;\n    display: flex;\n    align-items: center;\n    padding: 0 12px;\n    line-height: var(--vp-nav-height);\n    font-size: 14.5px;\n    font-weight: 500;\n    color: var(--vp-c-text-1);\n    transition: color 0.25s;\n  }\n  .sidebar {\n    width: 300px;\n  }\n  .main {\n    width: 100vw;\n  }\n  .repl-playground {\n    width: calc(100vw + 300px);\n    position: relative;\n    left: -300px;\n    transition: transform 0.15s ease;\n  }\n  .repl-playground.show-options {\n    transform: translateX(300px);\n  }\n}\n</style>\n"
  },
  {
    "path": "docs/repl/allExtensions.ts",
    "content": "export { amcheck } from '@electric-sql/pglite/contrib/amcheck'\nexport { auto_explain } from '@electric-sql/pglite/contrib/auto_explain'\nexport { bloom } from '@electric-sql/pglite/contrib/bloom'\nexport { btree_gin } from '@electric-sql/pglite/contrib/btree_gin'\nexport { btree_gist } from '@electric-sql/pglite/contrib/btree_gist'\nexport { citext } from '@electric-sql/pglite/contrib/citext'\nexport { cube } from '@electric-sql/pglite/contrib/cube'\nexport { dict_int } from '@electric-sql/pglite/contrib/dict_int'\nexport { dict_xsyn } from '@electric-sql/pglite/contrib/dict_xsyn'\nexport { earthdistance } from '@electric-sql/pglite/contrib/earthdistance'\nexport { file_fdw } from '@electric-sql/pglite/contrib/file_fdw'\nexport { fuzzystrmatch } from '@electric-sql/pglite/contrib/fuzzystrmatch'\nexport { hstore } from '@electric-sql/pglite/contrib/hstore'\nexport { intarray } from '@electric-sql/pglite/contrib/intarray'\nexport { isn } from '@electric-sql/pglite/contrib/isn'\nexport { lo } from '@electric-sql/pglite/contrib/lo'\nexport { ltree } from '@electric-sql/pglite/contrib/ltree'\nexport { pageinspect } from '@electric-sql/pglite/contrib/pageinspect'\nexport { pg_buffercache } from '@electric-sql/pglite/contrib/pg_buffercache'\nexport { pg_freespacemap } from '@electric-sql/pglite/contrib/pg_freespacemap'\nexport { pg_hashids } from '@electric-sql/pglite/pg_hashids'\nexport { pg_surgery } from '@electric-sql/pglite/contrib/pg_surgery'\nexport { pg_trgm } from '@electric-sql/pglite/contrib/pg_trgm'\nexport { pg_uuidv7 } from '@electric-sql/pglite/pg_uuidv7'\nexport { pg_visibility } from '@electric-sql/pglite/contrib/pg_visibility'\nexport { pg_walinspect } from '@electric-sql/pglite/contrib/pg_walinspect'\nexport { pgcrypto } from '@electric-sql/pglite/contrib/pgcrypto'\nexport { pgtap } from '@electric-sql/pglite/pgtap'\nexport { seg } from '@electric-sql/pglite/contrib/seg'\nexport { tablefunc } from '@electric-sql/pglite/contrib/tablefunc'\nexport { tcn } from '@electric-sql/pglite/contrib/tcn'\nexport { tsm_system_rows } from '@electric-sql/pglite/contrib/tsm_system_rows'\nexport { tsm_system_time } from '@electric-sql/pglite/contrib/tsm_system_time'\nexport { unaccent } from '@electric-sql/pglite/contrib/unaccent'\nexport { uuid_ossp } from '@electric-sql/pglite/contrib/uuid_ossp'\nexport { vector } from '@electric-sql/pglite/vector'\nexport { age } from '@electric-sql/pglite/age'\nexport { postgis } from '@electric-sql/pglite-postgis'\nexport { pg_textsearch } from '@electric-sql/pglite/pg_textsearch'\n"
  },
  {
    "path": "docs/repl/index.md",
    "content": "---\nlayout: page\nsidebar: false\nfooter: false\npageClass: page-repl-playground\n---\n\n<script setup>\nimport { defineClientComponent } from 'vitepress'\n\nconst ReplPlayground = defineClientComponent(() => {\n  return import('./ReplPlayground.vue')\n})\n</script>\n\n<ClientOnly>\n  <ReplPlayground />\n</ClientOnly>\n"
  },
  {
    "path": "eslint.config.js",
    "content": "// @ts-expect-error no types\nimport js from '@eslint/js'\n// @ts-expect-error no types\nimport { FlatCompat } from '@eslint/eslintrc'\nimport globals from 'globals'\n\nimport eslintTsParser from '@typescript-eslint/parser'\nimport tsPlugin from '@typescript-eslint/eslint-plugin'\n\nconst compat = new FlatCompat()\n\nexport default [\n  js.configs.recommended,\n  ...compat.extends('plugin:@typescript-eslint/recommended'),\n  {\n    languageOptions: {\n      parser: eslintTsParser,\n      globals: {\n        ...globals.browser,\n      },\n    },\n    files: ['**/*.{ts,tsx}'],\n    plugins: {\n      '@typescript-eslint': tsPlugin,\n    },\n    rules: {\n      ...tsPlugin.configs.recommended?.rules,\n      '@typescript-eslint/no-unused-vars': [\n        'warn', // or \"error\"\n        {\n          argsIgnorePattern: '^_',\n          varsIgnorePattern: '^_',\n          caughtErrorsIgnorePattern: '^_',\n        },\n      ],\n      '@typescript-eslint/no-inferrable-types': 'off', // always allow explicit typings\n      '@typescript-eslint/no-empty-function': 'off',\n      '@typescript-eslint/no-explicit-any': ['warn', { ignoreRestArgs: true }],\n      '@typescript-eslint/ban-ts-comment': [\n        'error',\n        { 'ts-ignore': 'allow-with-description' },\n      ],\n      'no-constant-condition': ['error', { checkLoops: false }],\n      eqeqeq: ['error'],\n    },\n  },\n  {\n    files: ['**/*.cjs'],\n    languageOptions: {\n      globals: {\n        ...globals.node,\n      },\n    },\n    rules: {\n      '@typescript-eslint/no-var-requires': 'off',\n    },\n  },\n]\n"
  },
  {
    "path": "examples/react/.gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\nnode_modules\ndist\ndist-ssr\n*.local\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n"
  },
  {
    "path": "examples/react/README.md",
    "content": "# Example: PGlite + Vite + React + TypeScript\n\nThis is an example of a simple project using [PGlite](https://pglite.dev) and it's [React integration](https://pglite.dev/docs/framework-hooks/react). It uses [Vite](https://vite.dev), [React](https://react.dev/) and [TypeScript](https://www.typescriptlang.org/).\n\nThis example demonstrates the usage of some of PGlite's React API: [PGliteProvider](https://pglite.dev/docs/framework-hooks/react#pgliteprovider), [usePGlite](https://pglite.dev/docs/framework-hooks/react#usepglite), [useLiveQuery](https://pglite.dev/docs/framework-hooks/react#uselivequery).\n\nOn page load, a database is created with a single table. On pressing the button, a new row is inserted into the database. The `useLiveQuery` will watch for any changes and display the most recently inserted 5 rows.\n\n# Getting started with this example\n\n## Prerequisites\nYou need [node](https://nodejs.org/en/download) (at least version 18), [pnpm](https://pnpm.io/installation) and [git](https://git-scm.com/downloads) installed.\n\nCheck node version\n```\n$ node --version\n```\nSample output: `v20.9.0`\n\nCheck pnpm version\n```\n$ pnpm --version\n```\nSample output: `9.15.3`\n\nCheck git version\n```\n$ git --version\n```\nSample output: `git version 2.34.1`\n\n## Install and run the example locally\n\nThis example depends on `PGlite` packages released on npmjs.com, so you don't need to build the entire `PGlite` project in order to run the example.\n\n1. Get the code from GitHub. The example is in `PGlite`'s main repository\n```\n$ git clone https://github.com/electric-sql/pglite\n```\n2. Navigate to this example's directory\n```\n$ cd ./pglite/examples/react\n```\n3. Install dependencies\n\n```\n$ pnpm i --ignore-workspace\n```\n\nThis example is part of the `pglite` pnpm workspace, but for our needs, we do not need to install all dependencies in the workspace. Thus passing the `--ignore-workspace` flag.\n\n4. Start a development server locally\n```\n$ pnpm dev\n```\nSample output:\n```\n  VITE v6.1.0  ready in 126 ms\n\n  ➜  Local:   http://localhost:5173/\n  ➜  Network: use --host to expose\n  ➜  press h + enter to show help\n```\n\n5. Open your browser and point to the above indicated address (http://localhost:5173/ but your address might be different)\n\n# Getting started with PGlite + Vite + React + Typescript\n\nIf you'd like to start from scratch, here is how you can reproduce this example, so you understand better how it was made:\n\n1. Install [node](https://nodejs.org/en/download), [pnpm](https://pnpm.io/installation) and [git](https://git-scm.com/downloads)\n2. Run `pnpm create vite`. Follow the steps, input the name of your project (eg pglite-vite-react-project), select `React` for framework, `TypeScript` as variant. \n\nSample output:\n\n```\n$ pnpm create vite\n.../19522a4053e-20b11                    |   +1 +\n.../19522a4053e-20b11                    | Progress: resolved 1, reused 1, downloaded 0, added 1, done\n✔ Project name: … pglite-vite-react-project\n✔ Select a framework: › React\n✔ Select a variant: › TypeScript\n\nScaffolding project in /tmp/pglite-vite-react-project...\n\nDone. Now run:\n\n  cd pglite-vite-react-project\n  pnpm install\n  pnpm run dev\n```\n\n3. Run the steps above:\n\n```\n  $ cd pglite-vite-react-project\n  $ pnpm install\n  $ pnpm run dev\n\n```\n\n4. The last command will start an http server on your local machine. Point your browser to the indicated address:\n\n```\n$ pnpm run dev\n  VITE v6.1.0  ready in 126 ms\n\n  ➜  Local:   http://localhost:5173/\n  ➜  Network: use --host to expose\n  ➜  press h + enter to show help\n```\n\n4. Install [@electric-sql/pglite](https://www.npmjs.com/package/@electric-sql/pglite) and [@electric-sql/pglite-react](https://www.npmjs.com/package/@electric-sql/pglite-react) npm packages:\n\n```\n$ pnpm install @electric-sql/pglite @electric-sql/pglite-react\n\nPackages: +2\n++\nDownloading @electric-sql/pglite@0.2.17: 9.99 MB/9.99 MB, done\nProgress: resolved 224, reused 180, downloaded 2, added 2, done\n\ndependencies:\n+ @electric-sql/pglite 0.2.17\n+ @electric-sql/pglite-react 0.2.17\n\n```\n\n5. You are ready start using PGlite's React API.\nMake sure to exclude pglite from dependency optimization using the [optimizeDeps option inside vite.config.js](https://pglite.dev/docs/bundler-support#vite).\n\n6. Have a look at this project's `App.tsx`, `MyPGliteComponent.tsx` and `MyPGliteItemsComponent.tsx` to see how you can create a database and use PGlite React's integration and start modifying your project. Switch to the browser to see your changes.\n\n\n"
  },
  {
    "path": "examples/react/eslint.config.js",
    "content": "import js from '@eslint/js'\nimport globals from 'globals'\nimport reactHooks from 'eslint-plugin-react-hooks'\nimport reactRefresh from 'eslint-plugin-react-refresh'\nimport tseslint from 'typescript-eslint'\n\nexport default tseslint.config(\n  { ignores: ['dist'] },\n  {\n    extends: [js.configs.recommended, ...tseslint.configs.recommended],\n    files: ['**/*.{ts,tsx}'],\n    languageOptions: {\n      ecmaVersion: 2020,\n      globals: globals.browser,\n    },\n    plugins: {\n      'react-hooks': reactHooks,\n      'react-refresh': reactRefresh,\n    },\n    rules: {\n      ...reactHooks.configs.recommended.rules,\n      'react-refresh/only-export-components': [\n        'warn',\n        { allowConstantExport: true },\n      ],\n    },\n  },\n)\n"
  },
  {
    "path": "examples/react/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <link rel=\"icon\" type=\"image/svg+xml\" href=\"/pglite.svg\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <title>PGlite with Vite + React + TS</title>\n  </head>\n  <body>\n    <div id=\"root\"></div>\n    <script type=\"module\" src=\"/src/main.tsx\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "examples/react/package.json",
    "content": "{\n  \"name\": \"pglite-react-example\",\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"private\": true,\n  \"version\": \"0.0.1\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"dev\": \"vite\",\n    \"build\": \"tsc -b && vite build\",\n    \"lint\": \"eslint .\",\n    \"preview\": \"vite preview\"\n  },\n  \"dependencies\": {\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@electric-sql/pglite-react\": \"workspace:*\",\n    \"react\": \"^19.0.0\",\n    \"react-dom\": \"^19.0.0\"\n  },\n  \"devDependencies\": {\n    \"@eslint/js\": \"^9.19.0\",\n    \"@types/react\": \"^19.0.2\",\n    \"@types/react-dom\": \"^19.0.2\",\n    \"@vitejs/plugin-react\": \"^4.3.2\",\n    \"eslint\": \"^8.57.1\",\n    \"eslint-plugin-react-hooks\": \"^4.6.2\",\n    \"eslint-plugin-react-refresh\": \"^0.4.12\",\n    \"globals\": \"^15.11.0\",\n    \"typescript\": \"^5.6.3\",\n    \"typescript-eslint\": \"^8.22.0\",\n    \"vite\": \"^5.4.8\"\n  }\n}\n"
  },
  {
    "path": "examples/react/src/App.css",
    "content": "#root {\n  max-width: 1280px;\n  margin: 0 auto;\n  padding: 2rem;\n  text-align: center;\n}\n\n.logo {\n  height: 6em;\n  padding: 1.5em;\n  will-change: filter;\n  transition: filter 300ms;\n}\n.logo:hover {\n  filter: drop-shadow(0 0 2em #646cffaa);\n}\n.logo.react:hover {\n  filter: drop-shadow(0 0 2em #61dafbaa);\n}\n\n@keyframes logo-spin {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n@media (prefers-reduced-motion: no-preference) {\n  a:nth-of-type(3) .logo {\n    animation: logo-spin infinite 20s linear;\n  }\n}\n\n.card {\n  padding: 2em;\n  margin: 0 auto;\n  max-width: 800px;\n}\n\n.read-the-docs {\n  color: #888;\n}\n"
  },
  {
    "path": "examples/react/src/App.tsx",
    "content": "import { useEffect, useState } from 'react'\nimport reactLogo from './assets/react.svg'\nimport viteLogo from '/vite.svg'\nimport pgliteLogoLight from '/pglite-logo-light.svg'\nimport typescriptLogo from '/typescript.svg'\nimport './App.css'\nimport { PGliteProvider } from '@electric-sql/pglite-react'\nimport MyPGliteComponent from './MyPGliteComponent'\nimport { live, PGliteWithLive } from '@electric-sql/pglite/live'\nimport { PGlite } from '@electric-sql/pglite'\n\nlet dbGlobal: PGliteWithLive | undefined\n\nfunction App() {\n  const [db, setDb] = useState<PGliteWithLive | undefined>()\n\n  useEffect(() => {\n    async function setupDb() {\n      // Initialising a PGlite instance in a useEffect hook is a good pattern.\n      // However, it doesn't play well with React's strict mode, so we'll use a global\n      // variable to store the instance once it's initialised. That way strict mode\n      // doesn't re-initialise it.\n      dbGlobal ??= await PGlite.create({\n        extensions: { live },\n      })\n      dbGlobal.query(`CREATE TABLE IF NOT EXISTS my_table (\n        id SERIAL PRIMARY KEY NOT NULL,\n        name TEXT,\n        number INT,\n        \"insertDateTime\" TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP\n      );`)\n      setDb(dbGlobal)\n    }\n    setupDb()\n  }, [])\n\n  return (\n    <>\n      <div>\n        <a href=\"https://pglite.dev\" target=\"_blank\">\n          <img src={pgliteLogoLight} className=\"logo\" alt=\"PGlite logo\" />\n        </a>\n        <a href=\"https://vite.dev\" target=\"_blank\">\n          <img src={viteLogo} className=\"logo\" alt=\"Vite logo\" />\n        </a>\n        <a href=\"https://react.dev/\" target=\"_blank\">\n          <img src={reactLogo} className=\"logo\" alt=\"React logo\" />\n        </a>\n        <a href=\"https://www.typescriptlang.org/\" target=\"_blank\">\n          <img src={typescriptLogo} className=\"logo\" alt=\"Typescript logo\" />\n        </a>\n      </div>\n      <h1>PGlite example with Vite + React + TS</h1>\n      <p className=\"read-the-docs\">Click on the logos to learn more</p>\n      <p>\n        This example demonstrates the usage of some of PGlite's React API:{' '}\n        <a href=\"https://pglite.dev/docs/framework-hooks/react#pgliteprovider\">\n          PGliteProvider\n        </a>\n        ,{' '}\n        <a href=\"https://pglite.dev/docs/framework-hooks/react#usepglite\">\n          usePGlite\n        </a>\n        ,{' '}\n        <a href=\"https://pglite.dev/docs/framework-hooks/react#uselivequery\">\n          useLiveQuery\n        </a>\n        .\n      </p>\n      <p>\n        On page load, a database is created with a single table. On pressing the\n        button, a new row is inserted into the database. The{' '}\n        <a href=\"https://pglite.dev/docs/framework-hooks/react#uselivequery\">\n          useLiveQuery\n        </a>{' '}\n        will watch for any changes and display the most recently inserted 5\n        rows.\n      </p>\n      <div className=\"card\">\n        {/* see details https://pglite.dev/docs/framework-hooks/react#pgliteprovider */}\n        {db ? (\n          <PGliteProvider db={db}>\n            <MyPGliteComponent />\n          </PGliteProvider>\n        ) : (\n          <div>Loading PGlite...</div>\n        )}\n      </div>\n    </>\n  )\n}\n\nexport default App\n"
  },
  {
    "path": "examples/react/src/MyPGliteComponent.tsx",
    "content": "import { usePGlite } from '@electric-sql/pglite-react'\nimport MyPGliteItemsComponent from './MyPGliteItemsComponent'\n\nconst names = [\n  'Arthur',\n  'Valter',\n  'Sam',\n  'Paul',\n  'Stefanos',\n  'Rob',\n  'Gary',\n  'Kyle',\n  'Kevin',\n  'Tudor',\n]\n\nfunction MyPGliteComponent() {\n  // see details https://pglite.dev/docs/framework-hooks/react#usepglite\n  const db = usePGlite()\n\n  const insertRow = async () => {\n    const name = names[Math.floor(Math.random() * names.length)]\n    const value = Math.floor(Math.random() * 1000)\n\n    console.log(`Inserting name = ${name} with value=${value} into pglite`)\n\n    // see details https://pglite.dev/docs/api#query\n    const result = await db.query(\n      'INSERT INTO my_table (name, number) VALUES ($1, $2);',\n      [name, value],\n    )\n\n    console.log(`Inserted into pglite ${result.affectedRows} rows.`)\n  }\n\n  return (\n    <>\n      <div className=\"card\">\n        <button onClick={insertRow}>Insert row</button>\n        <MyPGliteItemsComponent key=\"pgliteItems\"></MyPGliteItemsComponent>\n      </div>\n    </>\n  )\n}\n\nexport default MyPGliteComponent\n"
  },
  {
    "path": "examples/react/src/MyPGliteItemsComponent.tsx",
    "content": "import { useLiveQuery } from '@electric-sql/pglite-react'\n\nfunction MyPGliteItemsComponent() {\n  const maxNumber = 1000\n\n  // see details https://pglite.dev/docs/framework-hooks/react#uselivequery\n  const items = useLiveQuery(\n    `\n    SELECT id, name, number, \"insertDateTime\"\n    FROM my_table\n    WHERE number <= $1\n    ORDER BY \"insertDateTime\" DESC\n    FETCH FIRST 5 ROWS ONLY\n  `,\n    [maxNumber],\n  )\n\n  console.log(items)\n\n  if (!items || items.rows.length === 0) return <></>\n\n  return (\n    <>\n      <div className=\"card\">\n        <table style={{ width: '100%' }}>\n          <thead>\n            <tr>\n              <th>id</th>\n              <th>Name</th>\n              <th>Value</th>\n              <th>Inserted</th>\n            </tr>\n          </thead>\n          <tbody>\n            {items?.rows.map((i) => (\n              <tr key={(i.insertDateTime as Date).getTime()}>\n                <td>{i.id as any}</td>\n                <td>{i.name as any}</td>\n                <td>{i.number as any}</td>\n                <td>{(i.insertDateTime as Date).toString()}</td>\n              </tr>\n            ))}\n          </tbody>\n        </table>\n      </div>\n    </>\n  )\n}\n\nexport default MyPGliteItemsComponent\n"
  },
  {
    "path": "examples/react/src/index.css",
    "content": ":root {\n  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;\n  line-height: 1.5;\n  font-weight: 400;\n\n  color-scheme: light dark;\n  color: rgba(255, 255, 255, 0.87);\n  background-color: #242424;\n\n  font-synthesis: none;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\na {\n  font-weight: 500;\n  color: #646cff;\n  text-decoration: inherit;\n}\na:hover {\n  color: #535bf2;\n}\n\nbody {\n  margin: 0;\n  display: flex;\n  place-items: center;\n  min-width: 320px;\n  min-height: 100vh;\n}\n\nh1 {\n  font-size: 3.2em;\n  line-height: 1.1;\n}\n\nbutton {\n  border-radius: 8px;\n  border: 1px solid transparent;\n  padding: 0.6em 1.2em;\n  font-size: 1em;\n  font-weight: 500;\n  font-family: inherit;\n  background-color: #1a1a1a;\n  cursor: pointer;\n  transition: border-color 0.25s;\n}\nbutton:hover {\n  border-color: #646cff;\n}\nbutton:focus,\nbutton:focus-visible {\n  outline: 4px auto -webkit-focus-ring-color;\n}\n\n@media (prefers-color-scheme: light) {\n  :root {\n    color: #213547;\n    background-color: #ffffff;\n  }\n  a:hover {\n    color: #747bff;\n  }\n  button {\n    background-color: #f9f9f9;\n  }\n}\n"
  },
  {
    "path": "examples/react/src/main.tsx",
    "content": "import { StrictMode } from 'react'\nimport { createRoot } from 'react-dom/client'\nimport './index.css'\nimport App from './App.tsx'\n\ncreateRoot(document.getElementById('root')!).render(\n  <StrictMode>\n    <App />\n  </StrictMode>,\n)\n"
  },
  {
    "path": "examples/react/src/vite-env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n"
  },
  {
    "path": "examples/react/tsconfig.app.json",
    "content": "{\n  \"compilerOptions\": {\n    \"tsBuildInfoFile\": \"./node_modules/.tmp/tsconfig.app.tsbuildinfo\",\n    \"target\": \"ES2020\",\n    \"useDefineForClassFields\": true,\n    \"lib\": [\"ES2020\", \"DOM\", \"DOM.Iterable\"],\n    \"module\": \"ESNext\",\n    \"skipLibCheck\": true,\n\n    /* Bundler mode */\n    \"moduleResolution\": \"bundler\",\n    \"allowImportingTsExtensions\": true,\n    \"isolatedModules\": true,\n    \"moduleDetection\": \"force\",\n    \"noEmit\": true,\n    \"jsx\": \"react-jsx\",\n\n    /* Linting */\n    \"strict\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noUncheckedSideEffectImports\": true\n  },\n  \"include\": [\"src\"]\n}\n"
  },
  {
    "path": "examples/react/tsconfig.json",
    "content": "{\n  \"files\": [],\n  \"references\": [\n    { \"path\": \"./tsconfig.app.json\" },\n    { \"path\": \"./tsconfig.node.json\" }\n  ]\n}\n"
  },
  {
    "path": "examples/react/tsconfig.node.json",
    "content": "{\n  \"compilerOptions\": {\n    \"tsBuildInfoFile\": \"./node_modules/.tmp/tsconfig.node.tsbuildinfo\",\n    \"target\": \"ES2022\",\n    \"lib\": [\"ES2023\"],\n    \"module\": \"ESNext\",\n    \"skipLibCheck\": true,\n\n    /* Bundler mode */\n    \"moduleResolution\": \"bundler\",\n    \"allowImportingTsExtensions\": true,\n    \"isolatedModules\": true,\n    \"moduleDetection\": \"force\",\n    \"noEmit\": true,\n\n    /* Linting */\n    \"strict\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"noUncheckedSideEffectImports\": true\n  },\n  \"include\": [\"vite.config.ts\"]\n}\n"
  },
  {
    "path": "examples/react/vite.config.ts",
    "content": "import { defineConfig } from 'vite'\nimport react from '@vitejs/plugin-react'\n\n// https://vite.dev/config/\nexport default defineConfig({\n  plugins: [react()],\n  optimizeDeps: {\n    exclude: ['@electric-sql/pglite'],\n  },\n})\n"
  },
  {
    "path": "examples/unixSocket/.gitignore",
    "content": "node_modules\ndist\n\n"
  },
  {
    "path": "examples/unixSocket/package.json",
    "content": "{\n  \"name\": \"pglite-unixsocket-example\",\n  \"version\": \"1.0.0\",\n  \"description\": \"\",\n  \"main\": \"index.js\",\n  \"private\": true,\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n    \"build\": \"tsup\"\n  },\n  \"keywords\": [],\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"dependencies\": {\n    \"@types/node\": \"^20.16.11\",\n    \"pg\": \"^8.14.0\",\n    \"tsx\": \"^4.19.2\",\n    \"typescript\": \"^5.6.3\"\n  },\n  \"devDependencies\": {\n    \"@types/pg\": \"^8.15.2\"\n  }\n}\n"
  },
  {
    "path": "examples/unixSocket/src/index.ts",
    "content": "import { PGlite } from '../../../packages/pglite/dist';\nimport { PGLiteSocketServer } from '../../../packages/pglite-socket'\nimport { Client } from 'pg';\nimport { unlink } from 'fs/promises';\nimport { existsSync } from 'fs';\n\nconst SOCKET_PATH = '/tmp/.s.PGSQL.5432';\n\nasync function cleanup() {\n  if (existsSync(SOCKET_PATH)) {\n    try {\n      await unlink(SOCKET_PATH);\n      console.log(`Removed old socket at ${SOCKET_PATH}`);\n    } catch (err) {}\n  }\n}\n\nasync function run() {\n  // Create a PGlite instance\n  const db = await PGlite.create();\n\n  // Create and start a socket server\n  cleanup();\n\n  const server = new PGLiteSocketServer({\n    db,\n    path: SOCKET_PATH,\n  });\n  await server.start();\n  console.log(`Server started on socket ${SOCKET_PATH}`);\n\n  // Handle graceful shutdown\n  process.on('SIGINT', async () => {\n    await server.stop();\n    await db.close();\n    console.log('Server stopped and database closed');\n    process.exit(0);\n  });\n\n  // Create a new PostgreSQL client\n  const client = new Client({\n    host: '/tmp',\n    user: 'postgres',\n    database: 'postgres',\n    password: 'postgres',\n  });\n  await client.connect();\n\n  // Query!\n  const result = await client.query('SELECT version()');\n  console.log(result);\n\n  await client.query(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`);\n\n  const multiStatementResult = await client.query(`\n  INSERT INTO test (name) VALUES ('test');\n  UPDATE test SET name = 'bulan';\n  SELECT * FROM test;\n  `);\n  console.log(JSON.stringify(multiStatementResult));\n}\n\nrun();\n"
  },
  {
    "path": "examples/unixSocket/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: ['src/index.ts'],\n    format: ['cjs', 'esm'],\n    outDir: 'dist',\n    dts: true,\n    minify: minify,\n    sourcemap: true,\n    clean: true,\n  },\n])\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"pnpm\": {},\n  \"engines\": {\n    \"node\": \">=20\",\n    \"pnpm\": \">=9\"\n  },\n  \"packageManager\": \"pnpm@9.7.0\",\n  \"private\": true,\n  \"type\": \"module\",\n  \"scripts\": {\n    \"ci:version\": \"pnpm exec changeset version\",\n    \"ci:publish\": \"pnpm changeset publish\",\n    \"ts:build\": \"pnpm -r --filter \\\"./packages/**\\\" build\",\n    \"ts:build:debug\": \"DEBUG=true pnpm ts:build\",\n    \"wasm:copy-postgis\": \"mkdir -p ./packages/pglite-postgis/release && cp ./postgres-pglite/dist/extensions/postgis/postgis.tar.gz ./packages/pglite-postgis/release\",\n    \"wasm:copy-initdb\": \"mkdir -p ./packages/pglite/release && cp ./postgres-pglite/dist/bin/initdb.* ./packages/pglite/release\",\n    \"wasm:copy-pgdump\": \"mkdir -p ./packages/pglite-tools/release && cp ./postgres-pglite/dist/bin/pg_dump.* ./packages/pglite-tools/release\",\n    \"wasm:copy-pglite\": \"mkdir -p ./packages/pglite/release/ && cp ./postgres-pglite/dist/bin/pglite.* ./packages/pglite/release/ && cp ./postgres-pglite/dist/extensions/*.tar.gz ./packages/pglite/release/\",\n    \"wasm:build\": \"cd postgres-pglite && ./build-with-docker.sh && cd .. && pnpm wasm:copy-pglite && pnpm wasm:copy-pgdump && pnpm wasm:copy-initdb && pnpm wasm:copy-postgis\",\n    \"wasm:build:debug\": \"DEBUG=true pnpm wasm:build\",\n    \"build:all\": \"pnpm wasm:build && pnpm ts:build\",\n    \"build:all:debug\": \"DEBUG=true pnpm build:all\"\n  },\n  \"devDependencies\": {\n    \"@changesets/cli\": \"^2.27.9\",\n    \"@eslint/eslintrc\": \"^3.1.0\",\n    \"@typescript-eslint/eslint-plugin\": \"^7.18.0\",\n    \"@typescript-eslint/parser\": \"^7.18.0\",\n    \"eslint\": \"^8.57.1\",\n    \"globals\": \"^15.11.0\",\n    \"prettier\": \"3.3.3\",\n    \"tsup\": \"^8.3.0\",\n    \"tsx\": \"^4.19.1\",\n    \"typescript\": \"^5.6.3\"\n  }\n}\n"
  },
  {
    "path": "packages/benchmark/.gitignore",
    "content": "node_modules\ndist"
  },
  {
    "path": "packages/benchmark/README.md",
    "content": "# Benchmarks\n\nThere are two sets of benchmarks, one testing [round trip time](#round-trip-time-benchmarks) for both PGlite and wa-sqlite, and [another](#pglite-results-from-wa-sqlite-benchmark-suite) based on the [wa-sqlite benchmarks](https://rhashimoto.github.io/wa-sqlite/demo/benchmarks.html).\n\nTo run, from this dir:\n\n```sh\npnpm install\npnpm build\ncd ./dist\npython3 -m http.server\n```\n\nThen open `http://localhost:8000/index.html` for the benchmarks based on the wa-sqlite set, and `http://localhost:8000/rtt.html` for the round trip time benchmarks.\n\nThere is also a script `baseline.ts` that generates a set of native baseline results for the wa-sqlite benchmark suite. This can be run with `npx tsx baseline.ts`.\n\nThere is a [writeup of the benchmarks in the docs](../../docs/benchmarks.md).\n"
  },
  {
    "path": "packages/benchmark/baseline.ts",
    "content": "import SQLite from 'better-sqlite3'\nimport EmbeddedPostgres from 'embedded-postgres'\nimport fs from 'fs'\nimport { AsciiTable3, AlignmentEnum } from 'ascii-table3'\n\nconst benchmarkIds = [\n  '1',\n  '2',\n  '2.1',\n  '3',\n  '3.1',\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]\n\nconst benchmarks: [string, string][] = []\nbenchmarkIds.forEach((id) => {\n  benchmarks.push([id, fs.readFileSync(`benchmark${id}.sql`, 'utf8')])\n})\n\ninterface Result {\n  sqliteInMemory: number\n  sqliteOnDisk: number\n  postgres: number\n}\n\nconst results: Result[] = []\n\nfor (let i = 0; i < benchmarks.length; i++) {\n  const result: Result = {\n    sqliteInMemory: 0,\n    sqliteOnDisk: 0,\n    postgres: 0,\n  }\n  results.push(result)\n}\n\nfunction runSQLite(fileName: string) {\n  const inMemory = fileName === ':memory:'\n  const resultsName = inMemory ? 'sqliteInMemory' : 'sqliteOnDisk'\n  if (!inMemory && fs.existsSync(fileName)) {\n    fs.unlinkSync(fileName)\n  }\n  const db = new SQLite(fileName)\n\n  console.log('SQLite', fileName)\n  benchmarks.forEach(([id, b], i) => {\n    const startTime = Date.now()\n    db.exec(b)\n    const elapsed = (Date.now() - startTime) / 1000\n    console.log(`Test ${id}: ${elapsed}ms`)\n    results[i][resultsName] = elapsed\n  })\n\n  if (inMemory && fs.existsSync(fileName)) {\n    fs.unlinkSync(fileName)\n  }\n}\n\nasync function runPostgres() {\n  console.log('Postgres')\n\n  const pg = new EmbeddedPostgres({\n    databaseDir: './pgdata',\n    user: 'postgres',\n    password: 'password',\n    port: 5439,\n    persistent: false,\n  })\n  console.log(pg)\n  await pg.initialise()\n  await pg.start()\n  const client = pg.getPgClient()\n  await client.connect()\n\n  for (const [i, [id, b]] of benchmarks.entries()) {\n    const startTime = Date.now()\n    await client.query(b)\n    const elapsed = (Date.now() - startTime) / 1000\n    console.log(`Test ${id}: ${elapsed}ms`)\n    results[i].postgres = elapsed\n  }\n\n  await client.end()\n\n  await pg.stop()\n}\n\nfunction resultsTable() {\n  const table = new AsciiTable3('Benchmark Results')\n  const headings = ['Test', 'SQLite In-Memory', 'SQLite On-Disk', 'Postgres']\n  table.setHeading(...headings)\n  benchmarks.forEach(([id, _], i) => {\n    table.addRow(\n      id,\n      results[i].sqliteInMemory,\n      results[i].sqliteOnDisk,\n      results[i].postgres,\n    )\n  })\n  table.setAligns(headings.map((_) => AlignmentEnum.CENTER))\n  console.log(table.toString())\n}\n\nasync function main() {\n  runSQLite(':memory:')\n  runSQLite('test-sqlite.db')\n  await runPostgres()\n  resultsTable()\n}\n\nmain()\n"
  },
  {
    "path": "packages/benchmark/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  { ignores: ['dist/**/*'] },\n  {\n    files: ['**/*.js'],\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n      },\n    },\n  },\n]\n"
  },
  {
    "path": "packages/benchmark/package.json",
    "content": "{\n  \"name\": \"benchmark\",\n  \"version\": \"0.2.17\",\n  \"description\": \"\",\n  \"main\": \"index.js\",\n  \"type\": \"module\",\n  \"private\": true,\n  \"scripts\": {\n    \"build\": \"rm -rf ./dist && mkdir dist && cp -r src/* dist/ && mkdir dist/wa-sqlite && cp -r ./node_modules/wa-sqlite/* dist/wa-sqlite && mkdir dist/pglite && cp -r ../pglite/dist/* dist/pglite\",\n    \"lint\": \"eslint . --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write .\",\n    \"typecheck\": \"tsc --noEmit\",\n    \"stylecheck\": \"pnpm lint && prettier --check .\"\n  },\n  \"keywords\": [],\n  \"author\": \"Electric DB Limited\",\n  \"license\": \"Apache-2.0\",\n  \"devDependencies\": {\n    \"@types/better-sqlite3\": \"^7.6.11\",\n    \"ascii-table3\": \"^0.9.0\",\n    \"better-sqlite3\": \"^11.1.2\",\n    \"embedded-postgres\": \"15.5.1-beta.9\"\n  },\n  \"dependencies\": {\n    \"wa-sqlite\": \"github:rhashimoto/wa-sqlite#v0.9.14\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:*\"\n  }\n}\n"
  },
  {
    "path": "packages/benchmark/src/benchmark1.sql",
    "content": "CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100));\nINSERT INTO t1 VALUES(1, 19147, 'nineteen thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(2, 26008, 'twenty-six thousand eight');\nINSERT INTO t1 VALUES(3, 46582, 'forty-six thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(4, 75112, 'seventy-five thousand one hundred twelve');\nINSERT INTO t1 VALUES(5, 29909, 'twenty-nine thousand nine hundred nine');\nINSERT INTO t1 VALUES(6, 95173, 'ninety-five thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(7, 96498, 'ninety-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(8, 33553, 'thirty-three thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(9, 11186, 'eleven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(10, 87632, 'eighty-seven thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(11, 15880, 'fifteen thousand eight hundred eighty');\nINSERT INTO t1 VALUES(12, 85555, 'eighty-five thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(13, 66962, 'sixty-six thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(14, 50452, 'fifty thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(15, 92717, 'ninety-two thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(16, 34743, 'thirty-four thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(17, 75522, 'seventy-five thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(18, 28475, 'twenty-eight thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(19, 42370, 'forty-two thousand three hundred seventy');\nINSERT INTO t1 VALUES(20, 75259, 'seventy-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(21, 90441, 'ninety thousand four hundred forty-one');\nINSERT INTO t1 VALUES(22, 6887, 'six thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(23, 31672, 'thirty-one thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(24, 67080, 'sixty-seven thousand eighty');\nINSERT INTO t1 VALUES(25, 2575, 'two thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(26, 34784, 'thirty-four thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(27, 32771, 'thirty-two thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(28, 87218, 'eighty-seven thousand two hundred eighteen');\nINSERT INTO t1 VALUES(29, 52078, 'fifty-two thousand seventy-eight');\nINSERT INTO t1 VALUES(30, 26042, 'twenty-six thousand forty-two');\nINSERT INTO t1 VALUES(31, 13, 'thirteen');\nINSERT INTO t1 VALUES(32, 32938, 'thirty-two thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(33, 36469, 'thirty-six thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(34, 28290, 'twenty-eight thousand two hundred ninety');\nINSERT INTO t1 VALUES(35, 93808, 'ninety-three thousand eight hundred eight');\nINSERT INTO t1 VALUES(36, 93132, 'ninety-three thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(37, 56252, 'fifty-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(38, 37551, 'thirty-seven thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(39, 9901, 'nine thousand nine hundred one');\nINSERT INTO t1 VALUES(40, 70023, 'seventy thousand twenty-three');\nINSERT INTO t1 VALUES(41, 78360, 'seventy-eight thousand three hundred sixty');\nINSERT INTO t1 VALUES(42, 76658, 'seventy-six thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(43, 46473, 'forty-six thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(44, 66561, 'sixty-six thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(45, 62839, 'sixty-two thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(46, 11988, 'eleven thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(47, 18601, 'eighteen thousand six hundred one');\nINSERT INTO t1 VALUES(48, 3045, 'three thousand forty-five');\nINSERT INTO t1 VALUES(49, 94656, 'ninety-four thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(50, 51287, 'fifty-one thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(51, 85700, 'eighty-five thousand seven hundred');\nINSERT INTO t1 VALUES(52, 8465, 'eight thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(53, 86627, 'eighty-six thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(54, 61737, 'sixty-one thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(55, 50686, 'fifty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(56, 99182, 'ninety-nine thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(57, 47667, 'forty-seven thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(58, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t1 VALUES(59, 78015, 'seventy-eight thousand fifteen');\nINSERT INTO t1 VALUES(60, 41396, 'forty-one thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(61, 74844, 'seventy-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(62, 42282, 'forty-two thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(63, 58654, 'fifty-eight thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(64, 31467, 'thirty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(65, 78022, 'seventy-eight thousand twenty-two');\nINSERT INTO t1 VALUES(66, 78945, 'seventy-eight thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(67, 60603, 'sixty thousand six hundred three');\nINSERT INTO t1 VALUES(68, 6570, 'six thousand five hundred seventy');\nINSERT INTO t1 VALUES(69, 6111, 'six thousand one hundred eleven');\nINSERT INTO t1 VALUES(70, 45086, 'forty-five thousand eighty-six');\nINSERT INTO t1 VALUES(71, 89033, 'eighty-nine thousand thirty-three');\nINSERT INTO t1 VALUES(72, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t1 VALUES(73, 95091, 'ninety-five thousand ninety-one');\nINSERT INTO t1 VALUES(74, 94429, 'ninety-four thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(75, 36609, 'thirty-six thousand six hundred nine');\nINSERT INTO t1 VALUES(76, 30748, 'thirty thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(77, 15734, 'fifteen thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(78, 73965, 'seventy-three thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(79, 77263, 'seventy-seven thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(80, 74133, 'seventy-four thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(81, 4297, 'four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(82, 8664, 'eight thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(83, 78801, 'seventy-eight thousand eight hundred one');\nINSERT INTO t1 VALUES(84, 40814, 'forty thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(85, 74176, 'seventy-four thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(86, 29083, 'twenty-nine thousand eighty-three');\nINSERT INTO t1 VALUES(87, 30060, 'thirty thousand sixty');\nINSERT INTO t1 VALUES(88, 37917, 'thirty-seven thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(89, 32421, 'thirty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(90, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t1 VALUES(91, 4852, 'four thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(92, 26679, 'twenty-six thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(93, 19074, 'nineteen thousand seventy-four');\nINSERT INTO t1 VALUES(94, 14278, 'fourteen thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(95, 58212, 'fifty-eight thousand two hundred twelve');\nINSERT INTO t1 VALUES(96, 57525, 'fifty-seven thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(97, 22334, 'twenty-two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(98, 536, 'five hundred thirty-six');\nINSERT INTO t1 VALUES(99, 4807, 'four thousand eight hundred seven');\nINSERT INTO t1 VALUES(100, 70316, 'seventy thousand three hundred sixteen');\nINSERT INTO t1 VALUES(101, 99873, 'ninety-nine thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(102, 47917, 'forty-seven thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(103, 14048, 'fourteen thousand forty-eight');\nINSERT INTO t1 VALUES(104, 79492, 'seventy-nine thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(105, 77781, 'seventy-seven thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(106, 22024, 'twenty-two thousand twenty-four');\nINSERT INTO t1 VALUES(107, 48173, 'forty-eight thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(108, 20117, 'twenty thousand one hundred seventeen');\nINSERT INTO t1 VALUES(109, 19000, 'nineteen thousand');\nINSERT INTO t1 VALUES(110, 38210, 'thirty-eight thousand two hundred ten');\nINSERT INTO t1 VALUES(111, 74415, 'seventy-four thousand four hundred fifteen');\nINSERT INTO t1 VALUES(112, 92727, 'ninety-two thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(113, 47610, 'forty-seven thousand six hundred ten');\nINSERT INTO t1 VALUES(114, 33304, 'thirty-three thousand three hundred four');\nINSERT INTO t1 VALUES(115, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(116, 45425, 'forty-five thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(117, 50591, 'fifty thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(118, 75266, 'seventy-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(119, 66445, 'sixty-six thousand four hundred forty-five');\nINSERT INTO t1 VALUES(120, 61104, 'sixty-one thousand one hundred four');\nINSERT INTO t1 VALUES(121, 50019, 'fifty thousand nineteen');\nINSERT INTO t1 VALUES(122, 51784, 'fifty-one thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(123, 25726, 'twenty-five thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(124, 93590, 'ninety-three thousand five hundred ninety');\nINSERT INTO t1 VALUES(125, 54736, 'fifty-four thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(126, 76531, 'seventy-six thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(127, 15808, 'fifteen thousand eight hundred eight');\nINSERT INTO t1 VALUES(128, 85511, 'eighty-five thousand five hundred eleven');\nINSERT INTO t1 VALUES(129, 14677, 'fourteen thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(130, 34447, 'thirty-four thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(131, 77381, 'seventy-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(132, 1894, 'one thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(133, 17809, 'seventeen thousand eight hundred nine');\nINSERT INTO t1 VALUES(134, 85345, 'eighty-five thousand three hundred forty-five');\nINSERT INTO t1 VALUES(135, 44239, 'forty-four thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(136, 86042, 'eighty-six thousand forty-two');\nINSERT INTO t1 VALUES(137, 3118, 'three thousand one hundred eighteen');\nINSERT INTO t1 VALUES(138, 96075, 'ninety-six thousand seventy-five');\nINSERT INTO t1 VALUES(139, 29595, 'twenty-nine thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(140, 80538, 'eighty thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(141, 42560, 'forty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(142, 39540, 'thirty-nine thousand five hundred forty');\nINSERT INTO t1 VALUES(143, 67182, 'sixty-seven thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(144, 95398, 'ninety-five thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(145, 23257, 'twenty-three thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(146, 30008, 'thirty thousand eight');\nINSERT INTO t1 VALUES(147, 34224, 'thirty-four thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(148, 89043, 'eighty-nine thousand forty-three');\nINSERT INTO t1 VALUES(149, 29133, 'twenty-nine thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(150, 3487, 'three thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(151, 70789, 'seventy thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(152, 74058, 'seventy-four thousand fifty-eight');\nINSERT INTO t1 VALUES(153, 70685, 'seventy thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(154, 73614, 'seventy-three thousand six hundred fourteen');\nINSERT INTO t1 VALUES(155, 75238, 'seventy-five thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(156, 55897, 'fifty-five thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(157, 65660, 'sixty-five thousand six hundred sixty');\nINSERT INTO t1 VALUES(158, 27054, 'twenty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(159, 17055, 'seventeen thousand fifty-five');\nINSERT INTO t1 VALUES(160, 84839, 'eighty-four thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(161, 14288, 'fourteen thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(162, 62959, 'sixty-two thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(163, 30731, 'thirty thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(164, 27592, 'twenty-seven thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(165, 66036, 'sixty-six thousand thirty-six');\nINSERT INTO t1 VALUES(166, 75408, 'seventy-five thousand four hundred eight');\nINSERT INTO t1 VALUES(167, 79619, 'seventy-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(168, 98635, 'ninety-eight thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(169, 62495, 'sixty-two thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(170, 18248, 'eighteen thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(171, 78919, 'seventy-eight thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(172, 33725, 'thirty-three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(173, 74583, 'seventy-four thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(174, 64756, 'sixty-four thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(175, 33725, 'thirty-three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(176, 3595, 'three thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(177, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t1 VALUES(178, 75031, 'seventy-five thousand thirty-one');\nINSERT INTO t1 VALUES(179, 9003, 'nine thousand three');\nINSERT INTO t1 VALUES(180, 18248, 'eighteen thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(181, 83579, 'eighty-three thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(182, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(183, 70544, 'seventy thousand five hundred forty-four');\nINSERT INTO t1 VALUES(184, 52108, 'fifty-two thousand one hundred eight');\nINSERT INTO t1 VALUES(185, 3136, 'three thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(186, 25759, 'twenty-five thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(187, 85160, 'eighty-five thousand one hundred sixty');\nINSERT INTO t1 VALUES(188, 25823, 'twenty-five thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(189, 56519, 'fifty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(190, 31350, 'thirty-one thousand three hundred fifty');\nINSERT INTO t1 VALUES(191, 43623, 'forty-three thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(192, 96084, 'ninety-six thousand eighty-four');\nINSERT INTO t1 VALUES(193, 93824, 'ninety-three thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(194, 49987, 'forty-nine thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(195, 66071, 'sixty-six thousand seventy-one');\nINSERT INTO t1 VALUES(196, 49509, 'forty-nine thousand five hundred nine');\nINSERT INTO t1 VALUES(197, 45551, 'forty-five thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(198, 20309, 'twenty thousand three hundred nine');\nINSERT INTO t1 VALUES(199, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(200, 78809, 'seventy-eight thousand eight hundred nine');\nINSERT INTO t1 VALUES(201, 93680, 'ninety-three thousand six hundred eighty');\nINSERT INTO t1 VALUES(202, 8073, 'eight thousand seventy-three');\nINSERT INTO t1 VALUES(203, 5304, 'five thousand three hundred four');\nINSERT INTO t1 VALUES(204, 79456, 'seventy-nine thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(205, 75452, 'seventy-five thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(206, 14111, 'fourteen thousand one hundred eleven');\nINSERT INTO t1 VALUES(207, 22754, 'twenty-two thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(208, 45501, 'forty-five thousand five hundred one');\nINSERT INTO t1 VALUES(209, 5406, 'five thousand four hundred six');\nINSERT INTO t1 VALUES(210, 98550, 'ninety-eight thousand five hundred fifty');\nINSERT INTO t1 VALUES(211, 26850, 'twenty-six thousand eight hundred fifty');\nINSERT INTO t1 VALUES(212, 14885, 'fourteen thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(213, 11498, 'eleven thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(214, 1761, 'one thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(215, 43387, 'forty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(216, 71881, 'seventy-one thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(217, 85573, 'eighty-five thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(218, 5594, 'five thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(219, 67124, 'sixty-seven thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(220, 78654, 'seventy-eight thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(221, 74294, 'seventy-four thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(222, 69335, 'sixty-nine thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(223, 90733, 'ninety thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(224, 69794, 'sixty-nine thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(225, 1223, 'one thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(226, 36643, 'thirty-six thousand six hundred forty-three');\nINSERT INTO t1 VALUES(227, 35185, 'thirty-five thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(228, 4715, 'four thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(229, 96718, 'ninety-six thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(230, 37054, 'thirty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(231, 46589, 'forty-six thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(232, 20775, 'twenty thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(233, 11050, 'eleven thousand fifty');\nINSERT INTO t1 VALUES(234, 41387, 'forty-one thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(235, 15187, 'fifteen thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(236, 4416, 'four thousand four hundred sixteen');\nINSERT INTO t1 VALUES(237, 66769, 'sixty-six thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(238, 91803, 'ninety-one thousand eight hundred three');\nINSERT INTO t1 VALUES(239, 21308, 'twenty-one thousand three hundred eight');\nINSERT INTO t1 VALUES(240, 41803, 'forty-one thousand eight hundred three');\nINSERT INTO t1 VALUES(241, 85279, 'eighty-five thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(242, 45849, 'forty-five thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(243, 86486, 'eighty-six thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(244, 58082, 'fifty-eight thousand eighty-two');\nINSERT INTO t1 VALUES(245, 83184, 'eighty-three thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(246, 40745, 'forty thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(247, 74393, 'seventy-four thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(248, 51061, 'fifty-one thousand sixty-one');\nINSERT INTO t1 VALUES(249, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t1 VALUES(250, 93047, 'ninety-three thousand forty-seven');\nINSERT INTO t1 VALUES(251, 59027, 'fifty-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(252, 51204, 'fifty-one thousand two hundred four');\nINSERT INTO t1 VALUES(253, 6662, 'six thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(254, 86955, 'eighty-six thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(255, 46821, 'forty-six thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(256, 48135, 'forty-eight thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(257, 35098, 'thirty-five thousand ninety-eight');\nINSERT INTO t1 VALUES(258, 83517, 'eighty-three thousand five hundred seventeen');\nINSERT INTO t1 VALUES(259, 74030, 'seventy-four thousand thirty');\nINSERT INTO t1 VALUES(260, 74477, 'seventy-four thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(261, 11630, 'eleven thousand six hundred thirty');\nINSERT INTO t1 VALUES(262, 35794, 'thirty-five thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(263, 21497, 'twenty-one thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(264, 19570, 'nineteen thousand five hundred seventy');\nINSERT INTO t1 VALUES(265, 5455, 'five thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(266, 72500, 'seventy-two thousand five hundred');\nINSERT INTO t1 VALUES(267, 93036, 'ninety-three thousand thirty-six');\nINSERT INTO t1 VALUES(268, 65524, 'sixty-five thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(269, 61390, 'sixty-one thousand three hundred ninety');\nINSERT INTO t1 VALUES(270, 19573, 'nineteen thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(271, 63868, 'sixty-three thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(272, 52301, 'fifty-two thousand three hundred one');\nINSERT INTO t1 VALUES(273, 84950, 'eighty-four thousand nine hundred fifty');\nINSERT INTO t1 VALUES(274, 99106, 'ninety-nine thousand one hundred six');\nINSERT INTO t1 VALUES(275, 66492, 'sixty-six thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(276, 12327, 'twelve thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(277, 77453, 'seventy-seven thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(278, 41180, 'forty-one thousand one hundred eighty');\nINSERT INTO t1 VALUES(279, 76455, 'seventy-six thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(280, 71541, 'seventy-one thousand five hundred forty-one');\nINSERT INTO t1 VALUES(281, 6968, 'six thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(282, 93941, 'ninety-three thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(283, 85076, 'eighty-five thousand seventy-six');\nINSERT INTO t1 VALUES(284, 65894, 'sixty-five thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(285, 98059, 'ninety-eight thousand fifty-nine');\nINSERT INTO t1 VALUES(286, 92367, 'ninety-two thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(287, 64838, 'sixty-four thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(288, 87708, 'eighty-seven thousand seven hundred eight');\nINSERT INTO t1 VALUES(289, 21778, 'twenty-one thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(290, 34994, 'thirty-four thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(291, 58838, 'fifty-eight thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(292, 77301, 'seventy-seven thousand three hundred one');\nINSERT INTO t1 VALUES(293, 58704, 'fifty-eight thousand seven hundred four');\nINSERT INTO t1 VALUES(294, 67690, 'sixty-seven thousand six hundred ninety');\nINSERT INTO t1 VALUES(295, 36058, 'thirty-six thousand fifty-eight');\nINSERT INTO t1 VALUES(296, 68672, 'sixty-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(297, 94874, 'ninety-four thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(298, 84131, 'eighty-four thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(299, 54916, 'fifty-four thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(300, 57153, 'fifty-seven thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(301, 64123, 'sixty-four thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(302, 54653, 'fifty-four thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(303, 33431, 'thirty-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(304, 62626, 'sixty-two thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(305, 4844, 'four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(306, 79303, 'seventy-nine thousand three hundred three');\nINSERT INTO t1 VALUES(307, 7086, 'seven thousand eighty-six');\nINSERT INTO t1 VALUES(308, 57117, 'fifty-seven thousand one hundred seventeen');\nINSERT INTO t1 VALUES(309, 31781, 'thirty-one thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(310, 29491, 'twenty-nine thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(311, 94880, 'ninety-four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(312, 58269, 'fifty-eight thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(313, 15574, 'fifteen thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(314, 49226, 'forty-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(315, 12233, 'twelve thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(316, 49770, 'forty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(317, 61010, 'sixty-one thousand ten');\nINSERT INTO t1 VALUES(318, 10081, 'ten thousand eighty-one');\nINSERT INTO t1 VALUES(319, 97107, 'ninety-seven thousand one hundred seven');\nINSERT INTO t1 VALUES(320, 10745, 'ten thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(321, 27225, 'twenty-seven thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(322, 64158, 'sixty-four thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(323, 76659, 'seventy-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(324, 72364, 'seventy-two thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(325, 72712, 'seventy-two thousand seven hundred twelve');\nINSERT INTO t1 VALUES(326, 33014, 'thirty-three thousand fourteen');\nINSERT INTO t1 VALUES(327, 90216, 'ninety thousand two hundred sixteen');\nINSERT INTO t1 VALUES(328, 81305, 'eighty-one thousand three hundred five');\nINSERT INTO t1 VALUES(329, 25638, 'twenty-five thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(330, 25191, 'twenty-five thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(331, 54511, 'fifty-four thousand five hundred eleven');\nINSERT INTO t1 VALUES(332, 48126, 'forty-eight thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(333, 82179, 'eighty-two thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(334, 30050, 'thirty thousand fifty');\nINSERT INTO t1 VALUES(335, 51531, 'fifty-one thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(336, 58294, 'fifty-eight thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(337, 8820, 'eight thousand eight hundred twenty');\nINSERT INTO t1 VALUES(338, 14563, 'fourteen thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(339, 43247, 'forty-three thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(340, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t1 VALUES(341, 95630, 'ninety-five thousand six hundred thirty');\nINSERT INTO t1 VALUES(342, 30926, 'thirty thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(343, 32664, 'thirty-two thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(344, 64590, 'sixty-four thousand five hundred ninety');\nINSERT INTO t1 VALUES(345, 71119, 'seventy-one thousand one hundred nineteen');\nINSERT INTO t1 VALUES(346, 62216, 'sixty-two thousand two hundred sixteen');\nINSERT INTO t1 VALUES(347, 80999, 'eighty thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(348, 88326, 'eighty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(349, 43585, 'forty-three thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(350, 62542, 'sixty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(351, 30380, 'thirty thousand three hundred eighty');\nINSERT INTO t1 VALUES(352, 27824, 'twenty-seven thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(353, 86530, 'eighty-six thousand five hundred thirty');\nINSERT INTO t1 VALUES(354, 21045, 'twenty-one thousand forty-five');\nINSERT INTO t1 VALUES(355, 24707, 'twenty-four thousand seven hundred seven');\nINSERT INTO t1 VALUES(356, 45949, 'forty-five thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(357, 84512, 'eighty-four thousand five hundred twelve');\nINSERT INTO t1 VALUES(358, 39579, 'thirty-nine thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(359, 72448, 'seventy-two thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(360, 19510, 'nineteen thousand five hundred ten');\nINSERT INTO t1 VALUES(361, 26117, 'twenty-six thousand one hundred seventeen');\nINSERT INTO t1 VALUES(362, 42334, 'forty-two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(363, 50760, 'fifty thousand seven hundred sixty');\nINSERT INTO t1 VALUES(364, 95698, 'ninety-five thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(365, 10473, 'ten thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(366, 53827, 'fifty-three thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(367, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(368, 35692, 'thirty-five thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(369, 38100, 'thirty-eight thousand one hundred');\nINSERT INTO t1 VALUES(370, 55564, 'fifty-five thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(371, 75269, 'seventy-five thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(372, 62985, 'sixty-two thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(373, 47780, 'forty-seven thousand seven hundred eighty');\nINSERT INTO t1 VALUES(374, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(375, 62003, 'sixty-two thousand three');\nINSERT INTO t1 VALUES(376, 11458, 'eleven thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(377, 79919, 'seventy-nine thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(378, 17221, 'seventeen thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(379, 58368, 'fifty-eight thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(380, 26722, 'twenty-six thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(381, 93591, 'ninety-three thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(382, 1793, 'one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(383, 51839, 'fifty-one thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(384, 31833, 'thirty-one thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(385, 29003, 'twenty-nine thousand three');\nINSERT INTO t1 VALUES(386, 14779, 'fourteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(387, 67741, 'sixty-seven thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(388, 39051, 'thirty-nine thousand fifty-one');\nINSERT INTO t1 VALUES(389, 77292, 'seventy-seven thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(390, 5168, 'five thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(391, 32168, 'thirty-two thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(392, 88724, 'eighty-eight thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(393, 298, 'two hundred ninety-eight');\nINSERT INTO t1 VALUES(394, 78128, 'seventy-eight thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(395, 85877, 'eighty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(396, 32384, 'thirty-two thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(397, 25524, 'twenty-five thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(398, 47018, 'forty-seven thousand eighteen');\nINSERT INTO t1 VALUES(399, 22974, 'twenty-two thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(400, 20767, 'twenty thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(401, 89516, 'eighty-nine thousand five hundred sixteen');\nINSERT INTO t1 VALUES(402, 99437, 'ninety-nine thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(403, 5201, 'five thousand two hundred one');\nINSERT INTO t1 VALUES(404, 59848, 'fifty-nine thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(405, 66234, 'sixty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(406, 37713, 'thirty-seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(407, 27038, 'twenty-seven thousand thirty-eight');\nINSERT INTO t1 VALUES(408, 54681, 'fifty-four thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(409, 72462, 'seventy-two thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(410, 6852, 'six thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(411, 60641, 'sixty thousand six hundred forty-one');\nINSERT INTO t1 VALUES(412, 29158, 'twenty-nine thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(413, 18673, 'eighteen thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(414, 54871, 'fifty-four thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(415, 6149, 'six thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(416, 66181, 'sixty-six thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(417, 56189, 'fifty-six thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(418, 20015, 'twenty thousand fifteen');\nINSERT INTO t1 VALUES(419, 46327, 'forty-six thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(420, 92802, 'ninety-two thousand eight hundred two');\nINSERT INTO t1 VALUES(421, 29952, 'twenty-nine thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(422, 5709, 'five thousand seven hundred nine');\nINSERT INTO t1 VALUES(423, 78299, 'seventy-eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(424, 44201, 'forty-four thousand two hundred one');\nINSERT INTO t1 VALUES(425, 11898, 'eleven thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(426, 539, 'five hundred thirty-nine');\nINSERT INTO t1 VALUES(427, 24406, 'twenty-four thousand four hundred six');\nINSERT INTO t1 VALUES(428, 98362, 'ninety-eight thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(429, 60805, 'sixty thousand eight hundred five');\nINSERT INTO t1 VALUES(430, 19074, 'nineteen thousand seventy-four');\nINSERT INTO t1 VALUES(431, 41901, 'forty-one thousand nine hundred one');\nINSERT INTO t1 VALUES(432, 45737, 'forty-five thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(433, 53634, 'fifty-three thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(434, 39974, 'thirty-nine thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(435, 10132, 'ten thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(436, 21908, 'twenty-one thousand nine hundred eight');\nINSERT INTO t1 VALUES(437, 21144, 'twenty-one thousand one hundred forty-four');\nINSERT INTO t1 VALUES(438, 44661, 'forty-four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(439, 1538, 'one thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(440, 54521, 'fifty-four thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(441, 94236, 'ninety-four thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(442, 55719, 'fifty-five thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(443, 69736, 'sixty-nine thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(444, 53487, 'fifty-three thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(445, 8984, 'eight thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(446, 3898, 'three thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(447, 13364, 'thirteen thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(448, 35674, 'thirty-five thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(449, 96851, 'ninety-six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(450, 31439, 'thirty-one thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(451, 50192, 'fifty thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(452, 42155, 'forty-two thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(453, 80153, 'eighty thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(454, 10788, 'ten thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(455, 69811, 'sixty-nine thousand eight hundred eleven');\nINSERT INTO t1 VALUES(456, 238, 'two hundred thirty-eight');\nINSERT INTO t1 VALUES(457, 28236, 'twenty-eight thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(458, 69835, 'sixty-nine thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(459, 18661, 'eighteen thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(460, 50942, 'fifty thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(461, 41616, 'forty-one thousand six hundred sixteen');\nINSERT INTO t1 VALUES(462, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t1 VALUES(463, 76319, 'seventy-six thousand three hundred nineteen');\nINSERT INTO t1 VALUES(464, 48862, 'forty-eight thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(465, 67521, 'sixty-seven thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(466, 5614, 'five thousand six hundred fourteen');\nINSERT INTO t1 VALUES(467, 63796, 'sixty-three thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(468, 93004, 'ninety-three thousand four');\nINSERT INTO t1 VALUES(469, 80923, 'eighty thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(470, 22392, 'twenty-two thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(471, 67687, 'sixty-seven thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(472, 26857, 'twenty-six thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(473, 34028, 'thirty-four thousand twenty-eight');\nINSERT INTO t1 VALUES(474, 11549, 'eleven thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(475, 38142, 'thirty-eight thousand one hundred forty-two');\nINSERT INTO t1 VALUES(476, 31711, 'thirty-one thousand seven hundred eleven');\nINSERT INTO t1 VALUES(477, 33471, 'thirty-three thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(478, 87117, 'eighty-seven thousand one hundred seventeen');\nINSERT INTO t1 VALUES(479, 32173, 'thirty-two thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(480, 95354, 'ninety-five thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(481, 90955, 'ninety thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(482, 39317, 'thirty-nine thousand three hundred seventeen');\nINSERT INTO t1 VALUES(483, 80460, 'eighty thousand four hundred sixty');\nINSERT INTO t1 VALUES(484, 95340, 'ninety-five thousand three hundred forty');\nINSERT INTO t1 VALUES(485, 82632, 'eighty-two thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(486, 48608, 'forty-eight thousand six hundred eight');\nINSERT INTO t1 VALUES(487, 98488, 'ninety-eight thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(488, 5150, 'five thousand one hundred fifty');\nINSERT INTO t1 VALUES(489, 27485, 'twenty-seven thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(490, 7164, 'seven thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(491, 47631, 'forty-seven thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(492, 65426, 'sixty-five thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(493, 75771, 'seventy-five thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(494, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(495, 33671, 'thirty-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(496, 82362, 'eighty-two thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(497, 20050, 'twenty thousand fifty');\nINSERT INTO t1 VALUES(498, 56872, 'fifty-six thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(499, 50444, 'fifty thousand four hundred forty-four');\nINSERT INTO t1 VALUES(500, 58990, 'fifty-eight thousand nine hundred ninety');\nINSERT INTO t1 VALUES(501, 33015, 'thirty-three thousand fifteen');\nINSERT INTO t1 VALUES(502, 22947, 'twenty-two thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(503, 51076, 'fifty-one thousand seventy-six');\nINSERT INTO t1 VALUES(504, 54076, 'fifty-four thousand seventy-six');\nINSERT INTO t1 VALUES(505, 9164, 'nine thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(506, 49803, 'forty-nine thousand eight hundred three');\nINSERT INTO t1 VALUES(507, 30930, 'thirty thousand nine hundred thirty');\nINSERT INTO t1 VALUES(508, 72773, 'seventy-two thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(509, 86955, 'eighty-six thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(510, 63099, 'sixty-three thousand ninety-nine');\nINSERT INTO t1 VALUES(511, 36835, 'thirty-six thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(512, 99608, 'ninety-nine thousand six hundred eight');\nINSERT INTO t1 VALUES(513, 20087, 'twenty thousand eighty-seven');\nINSERT INTO t1 VALUES(514, 59902, 'fifty-nine thousand nine hundred two');\nINSERT INTO t1 VALUES(515, 70901, 'seventy thousand nine hundred one');\nINSERT INTO t1 VALUES(516, 71899, 'seventy-one thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(517, 22897, 'twenty-two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(518, 6672, 'six thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(519, 9660, 'nine thousand six hundred sixty');\nINSERT INTO t1 VALUES(520, 78736, 'seventy-eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(521, 85202, 'eighty-five thousand two hundred two');\nINSERT INTO t1 VALUES(522, 11277, 'eleven thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(523, 83494, 'eighty-three thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(524, 19099, 'nineteen thousand ninety-nine');\nINSERT INTO t1 VALUES(525, 87334, 'eighty-seven thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(526, 54397, 'fifty-four thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(527, 61503, 'sixty-one thousand five hundred three');\nINSERT INTO t1 VALUES(528, 56635, 'fifty-six thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(529, 50206, 'fifty thousand two hundred six');\nINSERT INTO t1 VALUES(530, 30947, 'thirty thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(531, 56690, 'fifty-six thousand six hundred ninety');\nINSERT INTO t1 VALUES(532, 21428, 'twenty-one thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(533, 49866, 'forty-nine thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(534, 96174, 'ninety-six thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(535, 67447, 'sixty-seven thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(536, 68896, 'sixty-eight thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(537, 78687, 'seventy-eight thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(538, 53144, 'fifty-three thousand one hundred forty-four');\nINSERT INTO t1 VALUES(539, 70681, 'seventy thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(540, 69947, 'sixty-nine thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(541, 43066, 'forty-three thousand sixty-six');\nINSERT INTO t1 VALUES(542, 61640, 'sixty-one thousand six hundred forty');\nINSERT INTO t1 VALUES(543, 65972, 'sixty-five thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(544, 79904, 'seventy-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(545, 53530, 'fifty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(546, 67898, 'sixty-seven thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(547, 74946, 'seventy-four thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(548, 31320, 'thirty-one thousand three hundred twenty');\nINSERT INTO t1 VALUES(549, 19443, 'nineteen thousand four hundred forty-three');\nINSERT INTO t1 VALUES(550, 74559, 'seventy-four thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(551, 29338, 'twenty-nine thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(552, 31827, 'thirty-one thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(553, 85634, 'eighty-five thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(554, 71742, 'seventy-one thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(555, 10773, 'ten thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(556, 56958, 'fifty-six thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(557, 11158, 'eleven thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(558, 24219, 'twenty-four thousand two hundred nineteen');\nINSERT INTO t1 VALUES(559, 64293, 'sixty-four thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(560, 29597, 'twenty-nine thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(561, 44206, 'forty-four thousand two hundred six');\nINSERT INTO t1 VALUES(562, 41355, 'forty-one thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(563, 9326, 'nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(564, 55285, 'fifty-five thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(565, 13074, 'thirteen thousand seventy-four');\nINSERT INTO t1 VALUES(566, 14914, 'fourteen thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(567, 39352, 'thirty-nine thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(568, 85270, 'eighty-five thousand two hundred seventy');\nINSERT INTO t1 VALUES(569, 49568, 'forty-nine thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(570, 12341, 'twelve thousand three hundred forty-one');\nINSERT INTO t1 VALUES(571, 79612, 'seventy-nine thousand six hundred twelve');\nINSERT INTO t1 VALUES(572, 60587, 'sixty thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(573, 21080, 'twenty-one thousand eighty');\nINSERT INTO t1 VALUES(574, 1918, 'one thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(575, 11453, 'eleven thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(576, 14499, 'fourteen thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(577, 34377, 'thirty-four thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(578, 24256, 'twenty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(579, 19779, 'nineteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(580, 95966, 'ninety-five thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(581, 73931, 'seventy-three thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(582, 20049, 'twenty thousand forty-nine');\nINSERT INTO t1 VALUES(583, 98672, 'ninety-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(584, 15686, 'fifteen thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(585, 14102, 'fourteen thousand one hundred two');\nINSERT INTO t1 VALUES(586, 19086, 'nineteen thousand eighty-six');\nINSERT INTO t1 VALUES(587, 84666, 'eighty-four thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(588, 43294, 'forty-three thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(589, 18934, 'eighteen thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(590, 32540, 'thirty-two thousand five hundred forty');\nINSERT INTO t1 VALUES(591, 77719, 'seventy-seven thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(592, 71077, 'seventy-one thousand seventy-seven');\nINSERT INTO t1 VALUES(593, 41207, 'forty-one thousand two hundred seven');\nINSERT INTO t1 VALUES(594, 70728, 'seventy thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(595, 23442, 'twenty-three thousand four hundred forty-two');\nINSERT INTO t1 VALUES(596, 24449, 'twenty-four thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(597, 37949, 'thirty-seven thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(598, 23420, 'twenty-three thousand four hundred twenty');\nINSERT INTO t1 VALUES(599, 374, 'three hundred seventy-four');\nINSERT INTO t1 VALUES(600, 34061, 'thirty-four thousand sixty-one');\nINSERT INTO t1 VALUES(601, 17320, 'seventeen thousand three hundred twenty');\nINSERT INTO t1 VALUES(602, 15866, 'fifteen thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(603, 36879, 'thirty-six thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(604, 63304, 'sixty-three thousand three hundred four');\nINSERT INTO t1 VALUES(605, 30961, 'thirty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(606, 41945, 'forty-one thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(607, 42550, 'forty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(608, 21902, 'twenty-one thousand nine hundred two');\nINSERT INTO t1 VALUES(609, 53848, 'fifty-three thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(610, 74728, 'seventy-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(611, 65032, 'sixty-five thousand thirty-two');\nINSERT INTO t1 VALUES(612, 85955, 'eighty-five thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(613, 94410, 'ninety-four thousand four hundred ten');\nINSERT INTO t1 VALUES(614, 98397, 'ninety-eight thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(615, 47190, 'forty-seven thousand one hundred ninety');\nINSERT INTO t1 VALUES(616, 17588, 'seventeen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(617, 31575, 'thirty-one thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(618, 78749, 'seventy-eight thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(619, 40495, 'forty thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(620, 38920, 'thirty-eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(621, 72952, 'seventy-two thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(622, 49107, 'forty-nine thousand one hundred seven');\nINSERT INTO t1 VALUES(623, 88304, 'eighty-eight thousand three hundred four');\nINSERT INTO t1 VALUES(624, 61467, 'sixty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(625, 53876, 'fifty-three thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(626, 52585, 'fifty-two thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(627, 52521, 'fifty-two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(628, 91069, 'ninety-one thousand sixty-nine');\nINSERT INTO t1 VALUES(629, 75990, 'seventy-five thousand nine hundred ninety');\nINSERT INTO t1 VALUES(630, 37578, 'thirty-seven thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(631, 55375, 'fifty-five thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(632, 18123, 'eighteen thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(633, 49793, 'forty-nine thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(634, 48660, 'forty-eight thousand six hundred sixty');\nINSERT INTO t1 VALUES(635, 95750, 'ninety-five thousand seven hundred fifty');\nINSERT INTO t1 VALUES(636, 88482, 'eighty-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(637, 52293, 'fifty-two thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(638, 48752, 'forty-eight thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(639, 40166, 'forty thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(640, 77581, 'seventy-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(641, 10821, 'ten thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(642, 29263, 'twenty-nine thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(643, 83388, 'eighty-three thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(644, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t1 VALUES(645, 62922, 'sixty-two thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(646, 61310, 'sixty-one thousand three hundred ten');\nINSERT INTO t1 VALUES(647, 4415, 'four thousand four hundred fifteen');\nINSERT INTO t1 VALUES(648, 45268, 'forty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(649, 65389, 'sixty-five thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(650, 45523, 'forty-five thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(651, 15806, 'fifteen thousand eight hundred six');\nINSERT INTO t1 VALUES(652, 98377, 'ninety-eight thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(653, 55698, 'fifty-five thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(654, 1478, 'one thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(655, 30335, 'thirty thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(656, 79411, 'seventy-nine thousand four hundred eleven');\nINSERT INTO t1 VALUES(657, 25522, 'twenty-five thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(658, 62224, 'sixty-two thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(659, 85132, 'eighty-five thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(660, 40466, 'forty thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(661, 50611, 'fifty thousand six hundred eleven');\nINSERT INTO t1 VALUES(662, 20690, 'twenty thousand six hundred ninety');\nINSERT INTO t1 VALUES(663, 20473, 'twenty thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(664, 11232, 'eleven thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(665, 74572, 'seventy-four thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(666, 96457, 'ninety-six thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(667, 19592, 'nineteen thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(668, 73698, 'seventy-three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(669, 46020, 'forty-six thousand twenty');\nINSERT INTO t1 VALUES(670, 21920, 'twenty-one thousand nine hundred twenty');\nINSERT INTO t1 VALUES(671, 82017, 'eighty-two thousand seventeen');\nINSERT INTO t1 VALUES(672, 11049, 'eleven thousand forty-nine');\nINSERT INTO t1 VALUES(673, 11331, 'eleven thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(674, 69853, 'sixty-nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(675, 72860, 'seventy-two thousand eight hundred sixty');\nINSERT INTO t1 VALUES(676, 92902, 'ninety-two thousand nine hundred two');\nINSERT INTO t1 VALUES(677, 76012, 'seventy-six thousand twelve');\nINSERT INTO t1 VALUES(678, 24146, 'twenty-four thousand one hundred forty-six');\nINSERT INTO t1 VALUES(679, 65043, 'sixty-five thousand forty-three');\nINSERT INTO t1 VALUES(680, 33189, 'thirty-three thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(681, 26540, 'twenty-six thousand five hundred forty');\nINSERT INTO t1 VALUES(682, 11391, 'eleven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(683, 7557, 'seven thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(684, 96548, 'ninety-six thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(685, 28249, 'twenty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(686, 4, 'four');\nINSERT INTO t1 VALUES(687, 93866, 'ninety-three thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(688, 85913, 'eighty-five thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(689, 27019, 'twenty-seven thousand nineteen');\nINSERT INTO t1 VALUES(690, 73409, 'seventy-three thousand four hundred nine');\nINSERT INTO t1 VALUES(691, 94731, 'ninety-four thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(692, 97305, 'ninety-seven thousand three hundred five');\nINSERT INTO t1 VALUES(693, 91379, 'ninety-one thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(694, 36839, 'thirty-six thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(695, 43929, 'forty-three thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(696, 35693, 'thirty-five thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(697, 95751, 'ninety-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(698, 87282, 'eighty-seven thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(699, 27253, 'twenty-seven thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(700, 42140, 'forty-two thousand one hundred forty');\nINSERT INTO t1 VALUES(701, 49889, 'forty-nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(702, 66987, 'sixty-six thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(703, 91389, 'ninety-one thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(704, 72974, 'seventy-two thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(705, 902, 'nine hundred two');\nINSERT INTO t1 VALUES(706, 91221, 'ninety-one thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(707, 56384, 'fifty-six thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(708, 18704, 'eighteen thousand seven hundred four');\nINSERT INTO t1 VALUES(709, 78404, 'seventy-eight thousand four hundred four');\nINSERT INTO t1 VALUES(710, 10294, 'ten thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(711, 63621, 'sixty-three thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(712, 16992, 'sixteen thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(713, 97472, 'ninety-seven thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(714, 28965, 'twenty-eight thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(715, 8316, 'eight thousand three hundred sixteen');\nINSERT INTO t1 VALUES(716, 97964, 'ninety-seven thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(717, 12696, 'twelve thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(718, 4515, 'four thousand five hundred fifteen');\nINSERT INTO t1 VALUES(719, 62470, 'sixty-two thousand four hundred seventy');\nINSERT INTO t1 VALUES(720, 36663, 'thirty-six thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(721, 90498, 'ninety thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(722, 6487, 'six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(723, 52641, 'fifty-two thousand six hundred forty-one');\nINSERT INTO t1 VALUES(724, 39672, 'thirty-nine thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(725, 24632, 'twenty-four thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(726, 23330, 'twenty-three thousand three hundred thirty');\nINSERT INTO t1 VALUES(727, 76465, 'seventy-six thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(728, 20847, 'twenty thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(729, 50465, 'fifty thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(730, 39837, 'thirty-nine thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(731, 83352, 'eighty-three thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(732, 50598, 'fifty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(733, 50053, 'fifty thousand fifty-three');\nINSERT INTO t1 VALUES(734, 94348, 'ninety-four thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(735, 96286, 'ninety-six thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(736, 4012, 'four thousand twelve');\nINSERT INTO t1 VALUES(737, 75209, 'seventy-five thousand two hundred nine');\nINSERT INTO t1 VALUES(738, 74851, 'seventy-four thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(739, 1740, 'one thousand seven hundred forty');\nINSERT INTO t1 VALUES(740, 67502, 'sixty-seven thousand five hundred two');\nINSERT INTO t1 VALUES(741, 75490, 'seventy-five thousand four hundred ninety');\nINSERT INTO t1 VALUES(742, 85302, 'eighty-five thousand three hundred two');\nINSERT INTO t1 VALUES(743, 57899, 'fifty-seven thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(744, 12706, 'twelve thousand seven hundred six');\nINSERT INTO t1 VALUES(745, 19713, 'nineteen thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(746, 61208, 'sixty-one thousand two hundred eight');\nINSERT INTO t1 VALUES(747, 88189, 'eighty-eight thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(748, 61646, 'sixty-one thousand six hundred forty-six');\nINSERT INTO t1 VALUES(749, 42774, 'forty-two thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(750, 31477, 'thirty-one thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(751, 97340, 'ninety-seven thousand three hundred forty');\nINSERT INTO t1 VALUES(752, 14108, 'fourteen thousand one hundred eight');\nINSERT INTO t1 VALUES(753, 74097, 'seventy-four thousand ninety-seven');\nINSERT INTO t1 VALUES(754, 83823, 'eighty-three thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(755, 36077, 'thirty-six thousand seventy-seven');\nINSERT INTO t1 VALUES(756, 86419, 'eighty-six thousand four hundred nineteen');\nINSERT INTO t1 VALUES(757, 72428, 'seventy-two thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(758, 27947, 'twenty-seven thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(759, 36039, 'thirty-six thousand thirty-nine');\nINSERT INTO t1 VALUES(760, 37107, 'thirty-seven thousand one hundred seven');\nINSERT INTO t1 VALUES(761, 56070, 'fifty-six thousand seventy');\nINSERT INTO t1 VALUES(762, 91807, 'ninety-one thousand eight hundred seven');\nINSERT INTO t1 VALUES(763, 16255, 'sixteen thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(764, 58625, 'fifty-eight thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(765, 70216, 'seventy thousand two hundred sixteen');\nINSERT INTO t1 VALUES(766, 66700, 'sixty-six thousand seven hundred');\nINSERT INTO t1 VALUES(767, 83359, 'eighty-three thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(768, 53833, 'fifty-three thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(769, 56167, 'fifty-six thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(770, 18770, 'eighteen thousand seven hundred seventy');\nINSERT INTO t1 VALUES(771, 21077, 'twenty-one thousand seventy-seven');\nINSERT INTO t1 VALUES(772, 91380, 'ninety-one thousand three hundred eighty');\nINSERT INTO t1 VALUES(773, 64063, 'sixty-four thousand sixty-three');\nINSERT INTO t1 VALUES(774, 19494, 'nineteen thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(775, 98753, 'ninety-eight thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(776, 20066, 'twenty thousand sixty-six');\nINSERT INTO t1 VALUES(777, 37911, 'thirty-seven thousand nine hundred eleven');\nINSERT INTO t1 VALUES(778, 20388, 'twenty thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(779, 56293, 'fifty-six thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(780, 14002, 'fourteen thousand two');\nINSERT INTO t1 VALUES(781, 54877, 'fifty-four thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(782, 15206, 'fifteen thousand two hundred six');\nINSERT INTO t1 VALUES(783, 49004, 'forty-nine thousand four');\nINSERT INTO t1 VALUES(784, 11380, 'eleven thousand three hundred eighty');\nINSERT INTO t1 VALUES(785, 36092, 'thirty-six thousand ninety-two');\nINSERT INTO t1 VALUES(786, 11214, 'eleven thousand two hundred fourteen');\nINSERT INTO t1 VALUES(787, 42797, 'forty-two thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(788, 67437, 'sixty-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(789, 69758, 'sixty-nine thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(790, 39380, 'thirty-nine thousand three hundred eighty');\nINSERT INTO t1 VALUES(791, 98258, 'ninety-eight thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(792, 91089, 'ninety-one thousand eighty-nine');\nINSERT INTO t1 VALUES(793, 26792, 'twenty-six thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(794, 50150, 'fifty thousand one hundred fifty');\nINSERT INTO t1 VALUES(795, 33970, 'thirty-three thousand nine hundred seventy');\nINSERT INTO t1 VALUES(796, 8966, 'eight thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(797, 72381, 'seventy-two thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(798, 54370, 'fifty-four thousand three hundred seventy');\nINSERT INTO t1 VALUES(799, 25873, 'twenty-five thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(800, 34960, 'thirty-four thousand nine hundred sixty');\nINSERT INTO t1 VALUES(801, 30057, 'thirty thousand fifty-seven');\nINSERT INTO t1 VALUES(802, 8378, 'eight thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(803, 63387, 'sixty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(804, 83890, 'eighty-three thousand eight hundred ninety');\nINSERT INTO t1 VALUES(805, 48723, 'forty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(806, 21491, 'twenty-one thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(807, 20470, 'twenty thousand four hundred seventy');\nINSERT INTO t1 VALUES(808, 65561, 'sixty-five thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(809, 38706, 'thirty-eight thousand seven hundred six');\nINSERT INTO t1 VALUES(810, 18333, 'eighteen thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(811, 35631, 'thirty-five thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(812, 84578, 'eighty-four thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(813, 88735, 'eighty-eight thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(814, 92359, 'ninety-two thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(815, 63086, 'sixty-three thousand eighty-six');\nINSERT INTO t1 VALUES(816, 47841, 'forty-seven thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(817, 86086, 'eighty-six thousand eighty-six');\nINSERT INTO t1 VALUES(818, 62646, 'sixty-two thousand six hundred forty-six');\nINSERT INTO t1 VALUES(819, 55244, 'fifty-five thousand two hundred forty-four');\nINSERT INTO t1 VALUES(820, 76085, 'seventy-six thousand eighty-five');\nINSERT INTO t1 VALUES(821, 75668, 'seventy-five thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(822, 62414, 'sixty-two thousand four hundred fourteen');\nINSERT INTO t1 VALUES(823, 38682, 'thirty-eight thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(824, 13046, 'thirteen thousand forty-six');\nINSERT INTO t1 VALUES(825, 58590, 'fifty-eight thousand five hundred ninety');\nINSERT INTO t1 VALUES(826, 51105, 'fifty-one thousand one hundred five');\nINSERT INTO t1 VALUES(827, 94588, 'ninety-four thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(828, 85111, 'eighty-five thousand one hundred eleven');\nINSERT INTO t1 VALUES(829, 55835, 'fifty-five thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(830, 58345, 'fifty-eight thousand three hundred forty-five');\nINSERT INTO t1 VALUES(831, 84864, 'eighty-four thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(832, 80927, 'eighty thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(833, 17844, 'seventeen thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(834, 74478, 'seventy-four thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(835, 11835, 'eleven thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(836, 35914, 'thirty-five thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(837, 99275, 'ninety-nine thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(838, 52793, 'fifty-two thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(839, 58035, 'fifty-eight thousand thirty-five');\nINSERT INTO t1 VALUES(840, 2207, 'two thousand two hundred seven');\nINSERT INTO t1 VALUES(841, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(842, 34155, 'thirty-four thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(843, 29322, 'twenty-nine thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(844, 46687, 'forty-six thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(845, 33492, 'thirty-three thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(846, 84814, 'eighty-four thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(847, 44434, 'forty-four thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(848, 13852, 'thirteen thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(849, 72546, 'seventy-two thousand five hundred forty-six');\nINSERT INTO t1 VALUES(850, 40984, 'forty thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(851, 93784, 'ninety-three thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(852, 34250, 'thirty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(853, 72147, 'seventy-two thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(854, 74225, 'seventy-four thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(855, 31017, 'thirty-one thousand seventeen');\nINSERT INTO t1 VALUES(856, 26569, 'twenty-six thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(857, 5857, 'five thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(858, 32947, 'thirty-two thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(859, 83134, 'eighty-three thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(860, 42816, 'forty-two thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(861, 71423, 'seventy-one thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(862, 52047, 'fifty-two thousand forty-seven');\nINSERT INTO t1 VALUES(863, 64998, 'sixty-four thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(864, 69171, 'sixty-nine thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(865, 84031, 'eighty-four thousand thirty-one');\nINSERT INTO t1 VALUES(866, 75532, 'seventy-five thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(867, 94964, 'ninety-four thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(868, 5660, 'five thousand six hundred sixty');\nINSERT INTO t1 VALUES(869, 55840, 'fifty-five thousand eight hundred forty');\nINSERT INTO t1 VALUES(870, 89953, 'eighty-nine thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(871, 13202, 'thirteen thousand two hundred two');\nINSERT INTO t1 VALUES(872, 2630, 'two thousand six hundred thirty');\nINSERT INTO t1 VALUES(873, 63261, 'sixty-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(874, 2886, 'two thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(875, 64187, 'sixty-four thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(876, 63376, 'sixty-three thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(877, 63783, 'sixty-three thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(878, 25102, 'twenty-five thousand one hundred two');\nINSERT INTO t1 VALUES(879, 63740, 'sixty-three thousand seven hundred forty');\nINSERT INTO t1 VALUES(880, 51842, 'fifty-one thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(881, 99799, 'ninety-nine thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(882, 56301, 'fifty-six thousand three hundred one');\nINSERT INTO t1 VALUES(883, 89118, 'eighty-nine thousand one hundred eighteen');\nINSERT INTO t1 VALUES(884, 2127, 'two thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(885, 95244, 'ninety-five thousand two hundred forty-four');\nINSERT INTO t1 VALUES(886, 90631, 'ninety thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(887, 36802, 'thirty-six thousand eight hundred two');\nINSERT INTO t1 VALUES(888, 27481, 'twenty-seven thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(889, 58760, 'fifty-eight thousand seven hundred sixty');\nINSERT INTO t1 VALUES(890, 72033, 'seventy-two thousand thirty-three');\nINSERT INTO t1 VALUES(891, 28999, 'twenty-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(892, 41077, 'forty-one thousand seventy-seven');\nINSERT INTO t1 VALUES(893, 14607, 'fourteen thousand six hundred seven');\nINSERT INTO t1 VALUES(894, 82153, 'eighty-two thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(895, 18611, 'eighteen thousand six hundred eleven');\nINSERT INTO t1 VALUES(896, 6609, 'six thousand six hundred nine');\nINSERT INTO t1 VALUES(897, 77853, 'seventy-seven thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(898, 26063, 'twenty-six thousand sixty-three');\nINSERT INTO t1 VALUES(899, 86043, 'eighty-six thousand forty-three');\nINSERT INTO t1 VALUES(900, 74825, 'seventy-four thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(901, 42686, 'forty-two thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(902, 24753, 'twenty-four thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(903, 77131, 'seventy-seven thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(904, 96987, 'ninety-six thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(905, 44504, 'forty-four thousand five hundred four');\nINSERT INTO t1 VALUES(906, 45053, 'forty-five thousand fifty-three');\nINSERT INTO t1 VALUES(907, 87269, 'eighty-seven thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(908, 24991, 'twenty-four thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(909, 62528, 'sixty-two thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(910, 74023, 'seventy-four thousand twenty-three');\nINSERT INTO t1 VALUES(911, 47325, 'forty-seven thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(912, 7764, 'seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(913, 25982, 'twenty-five thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(914, 4560, 'four thousand five hundred sixty');\nINSERT INTO t1 VALUES(915, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(916, 22421, 'twenty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(917, 81391, 'eighty-one thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(918, 37103, 'thirty-seven thousand one hundred three');\nINSERT INTO t1 VALUES(919, 6594, 'six thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(920, 6273, 'six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(921, 35096, 'thirty-five thousand ninety-six');\nINSERT INTO t1 VALUES(922, 70951, 'seventy thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(923, 52908, 'fifty-two thousand nine hundred eight');\nINSERT INTO t1 VALUES(924, 75934, 'seventy-five thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(925, 79146, 'seventy-nine thousand one hundred forty-six');\nINSERT INTO t1 VALUES(926, 68445, 'sixty-eight thousand four hundred forty-five');\nINSERT INTO t1 VALUES(927, 30177, 'thirty thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(928, 81045, 'eighty-one thousand forty-five');\nINSERT INTO t1 VALUES(929, 81681, 'eighty-one thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(930, 55140, 'fifty-five thousand one hundred forty');\nINSERT INTO t1 VALUES(931, 32735, 'thirty-two thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(932, 36710, 'thirty-six thousand seven hundred ten');\nINSERT INTO t1 VALUES(933, 87743, 'eighty-seven thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(934, 69665, 'sixty-nine thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(935, 57940, 'fifty-seven thousand nine hundred forty');\nINSERT INTO t1 VALUES(936, 20254, 'twenty thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(937, 67563, 'sixty-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(938, 55515, 'fifty-five thousand five hundred fifteen');\nINSERT INTO t1 VALUES(939, 31646, 'thirty-one thousand six hundred forty-six');\nINSERT INTO t1 VALUES(940, 28729, 'twenty-eight thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(941, 95022, 'ninety-five thousand twenty-two');\nINSERT INTO t1 VALUES(942, 65016, 'sixty-five thousand sixteen');\nINSERT INTO t1 VALUES(943, 53322, 'fifty-three thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(944, 80022, 'eighty thousand twenty-two');\nINSERT INTO t1 VALUES(945, 84214, 'eighty-four thousand two hundred fourteen');\nINSERT INTO t1 VALUES(946, 41101, 'forty-one thousand one hundred one');\nINSERT INTO t1 VALUES(947, 45773, 'forty-five thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(948, 77511, 'seventy-seven thousand five hundred eleven');\nINSERT INTO t1 VALUES(949, 87665, 'eighty-seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(950, 7337, 'seven thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(951, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(952, 37648, 'thirty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(953, 78093, 'seventy-eight thousand ninety-three');\nINSERT INTO t1 VALUES(954, 17055, 'seventeen thousand fifty-five');\nINSERT INTO t1 VALUES(955, 75829, 'seventy-five thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(956, 36840, 'thirty-six thousand eight hundred forty');\nINSERT INTO t1 VALUES(957, 56519, 'fifty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(958, 41940, 'forty-one thousand nine hundred forty');\nINSERT INTO t1 VALUES(959, 61832, 'sixty-one thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(960, 51010, 'fifty-one thousand ten');\nINSERT INTO t1 VALUES(961, 93497, 'ninety-three thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(962, 76007, 'seventy-six thousand seven');\nINSERT INTO t1 VALUES(963, 48149, 'forty-eight thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(964, 14722, 'fourteen thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(965, 8909, 'eight thousand nine hundred nine');\nINSERT INTO t1 VALUES(966, 2643, 'two thousand six hundred forty-three');\nINSERT INTO t1 VALUES(967, 94315, 'ninety-four thousand three hundred fifteen');\nINSERT INTO t1 VALUES(968, 69977, 'sixty-nine thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(969, 11808, 'eleven thousand eight hundred eight');\nINSERT INTO t1 VALUES(970, 68357, 'sixty-eight thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(971, 85250, 'eighty-five thousand two hundred fifty');\nINSERT INTO t1 VALUES(972, 58340, 'fifty-eight thousand three hundred forty');\nINSERT INTO t1 VALUES(973, 68845, 'sixty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(974, 94591, 'ninety-four thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(975, 46474, 'forty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(976, 92292, 'ninety-two thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(977, 28243, 'twenty-eight thousand two hundred forty-three');\nINSERT INTO t1 VALUES(978, 56049, 'fifty-six thousand forty-nine');\nINSERT INTO t1 VALUES(979, 43203, 'forty-three thousand two hundred three');\nINSERT INTO t1 VALUES(980, 2892, 'two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(981, 3349, 'three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(982, 31139, 'thirty-one thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(983, 19311, 'nineteen thousand three hundred eleven');\nINSERT INTO t1 VALUES(984, 47939, 'forty-seven thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(985, 76128, 'seventy-six thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(986, 43219, 'forty-three thousand two hundred nineteen');\nINSERT INTO t1 VALUES(987, 32916, 'thirty-two thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(988, 6167, 'six thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(989, 53700, 'fifty-three thousand seven hundred');\nINSERT INTO t1 VALUES(990, 12394, 'twelve thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(991, 38055, 'thirty-eight thousand fifty-five');\nINSERT INTO t1 VALUES(992, 20264, 'twenty thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(993, 62637, 'sixty-two thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(994, 42503, 'forty-two thousand five hundred three');\nINSERT INTO t1 VALUES(995, 11145, 'eleven thousand one hundred forty-five');\nINSERT INTO t1 VALUES(996, 11489, 'eleven thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(997, 22604, 'twenty-two thousand six hundred four');\nINSERT INTO t1 VALUES(998, 14827, 'fourteen thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(999, 52539, 'fifty-two thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1000, 64413, 'sixty-four thousand four hundred thirteen');\n"
  },
  {
    "path": "packages/benchmark/src/benchmark10.sql",
    "content": "BEGIN;\nUPDATE t2 SET c='ninety-two thousand six hundred ten' WHERE a=1;\nUPDATE t2 SET c='sixty-four thousand ninety-one' WHERE a=2;\nUPDATE t2 SET c='seventy-one thousand four hundred fifty-four' WHERE a=3;\nUPDATE t2 SET c='two thousand two hundred nineteen' WHERE a=4;\nUPDATE t2 SET c='twelve thousand two hundred fifty-two' WHERE a=5;\nUPDATE t2 SET c='six thousand four hundred eighteen' WHERE a=6;\nUPDATE t2 SET c='sixty-one thousand four hundred sixty-seven' WHERE a=7;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=8;\nUPDATE t2 SET c='forty-three thousand five hundred eighty' WHERE a=9;\nUPDATE t2 SET c='forty thousand nine hundred seven' WHERE a=10;\nUPDATE t2 SET c='twenty-one thousand seven hundred fifty-one' WHERE a=11;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty-four' WHERE a=12;\nUPDATE t2 SET c='three thousand one hundred twenty-two' WHERE a=13;\nUPDATE t2 SET c='twenty thousand six hundred fifty-six' WHERE a=14;\nUPDATE t2 SET c='eighty-seven thousand one hundred thirty-one' WHERE a=15;\nUPDATE t2 SET c='thirty-nine thousand four hundred ninety-seven' WHERE a=16;\nUPDATE t2 SET c='fifty-eight thousand twenty-five' WHERE a=17;\nUPDATE t2 SET c='thirty-eight thousand nine hundred ninety' WHERE a=18;\nUPDATE t2 SET c='eighty-one thousand nine hundred forty-two' WHERE a=19;\nUPDATE t2 SET c='twenty thousand seven hundred forty-nine' WHERE a=20;\nUPDATE t2 SET c='twenty-four thousand four hundred fourteen' WHERE a=21;\nUPDATE t2 SET c='four thousand four hundred four' WHERE a=22;\nUPDATE t2 SET c='ninety-eight thousand six hundred forty-one' WHERE a=23;\nUPDATE t2 SET c='fifteen thousand two hundred forty-three' WHERE a=24;\nUPDATE t2 SET c='fifty-nine thousand two hundred ten' WHERE a=25;\nUPDATE t2 SET c='ninety-seven thousand one hundred fifty' WHERE a=26;\nUPDATE t2 SET c='thirty-three thousand five hundred forty-nine' WHERE a=27;\nUPDATE t2 SET c='forty-one thousand five hundred forty-four' WHERE a=28;\nUPDATE t2 SET c='twenty-five thousand forty-seven' WHERE a=29;\nUPDATE t2 SET c='thirteen thousand six hundred nineteen' WHERE a=30;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-one' WHERE a=31;\nUPDATE t2 SET c='forty-nine thousand two hundred sixty-nine' WHERE a=32;\nUPDATE t2 SET c='one thousand three hundred ten' WHERE a=33;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-six' WHERE a=34;\nUPDATE t2 SET c='eighty thousand eight hundred fifty-six' WHERE a=35;\nUPDATE t2 SET c='forty-nine thousand eight hundred fifty-three' WHERE a=36;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-three' WHERE a=37;\nUPDATE t2 SET c='eighty thousand three hundred fifteen' WHERE a=38;\nUPDATE t2 SET c='sixty-six thousand seven hundred eighty' WHERE a=39;\nUPDATE t2 SET c='forty-seven thousand five hundred six' WHERE a=40;\nUPDATE t2 SET c='eighty-nine thousand seven hundred sixty' WHERE a=41;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty' WHERE a=42;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty-nine' WHERE a=43;\nUPDATE t2 SET c='forty-three thousand three hundred thirty-one' WHERE a=44;\nUPDATE t2 SET c='sixteen thousand nine hundred fifty-four' WHERE a=45;\nUPDATE t2 SET c='twenty-five thousand nine hundred ten' WHERE a=46;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-eight' WHERE a=47;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-one' WHERE a=48;\nUPDATE t2 SET c='sixty-six thousand three hundred twenty' WHERE a=49;\nUPDATE t2 SET c='thirty thousand six hundred seventy-eight' WHERE a=50;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty-one' WHERE a=51;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-nine' WHERE a=52;\nUPDATE t2 SET c='sixty-seven thousand three hundred twenty-six' WHERE a=53;\nUPDATE t2 SET c='thirty-five thousand three hundred forty-four' WHERE a=54;\nUPDATE t2 SET c='eighty-five thousand sixty-three' WHERE a=55;\nUPDATE t2 SET c='thirty-five thousand one hundred forty' WHERE a=56;\nUPDATE t2 SET c='forty-eight thousand two hundred seventy-three' WHERE a=57;\nUPDATE t2 SET c='seventy-two thousand three hundred eighteen' WHERE a=58;\nUPDATE t2 SET c='eighty-three thousand eight hundred ninety-eight' WHERE a=59;\nUPDATE t2 SET c='fourteen thousand nine hundred twenty-seven' WHERE a=60;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty' WHERE a=61;\nUPDATE t2 SET c='twenty thousand eight hundred thirty-seven' WHERE a=62;\nUPDATE t2 SET c='three thousand one hundred ninety-two' WHERE a=63;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-four' WHERE a=64;\nUPDATE t2 SET c='sixty thousand eight hundred eighteen' WHERE a=65;\nUPDATE t2 SET c='ninety-one thousand five hundred fifty-six' WHERE a=66;\nUPDATE t2 SET c='eleven thousand four hundred twenty' WHERE a=67;\nUPDATE t2 SET c='nine thousand two hundred sixty-five' WHERE a=68;\nUPDATE t2 SET c='sixty thousand four hundred eighty-nine' WHERE a=69;\nUPDATE t2 SET c='ninety-three thousand nine hundred eighty-six' WHERE a=70;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-four' WHERE a=71;\nUPDATE t2 SET c='forty-two thousand' WHERE a=72;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-six' WHERE a=73;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty-seven' WHERE a=74;\nUPDATE t2 SET c='thirty-three thousand sixty' WHERE a=75;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=76;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-five' WHERE a=77;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-nine' WHERE a=78;\nUPDATE t2 SET c='four thousand nine hundred sixty-five' WHERE a=79;\nUPDATE t2 SET c='twenty-one thousand one hundred two' WHERE a=80;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-six' WHERE a=81;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-four' WHERE a=82;\nUPDATE t2 SET c='eighty-one thousand six hundred thirty-four' WHERE a=83;\nUPDATE t2 SET c='eighty-seven thousand forty-eight' WHERE a=84;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-five' WHERE a=85;\nUPDATE t2 SET c='seven thousand five hundred sixty-three' WHERE a=86;\nUPDATE t2 SET c='thirty-six thousand two hundred fifty-three' WHERE a=87;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-two' WHERE a=88;\nUPDATE t2 SET c='thirty-one thousand eight hundred thirty-five' WHERE a=89;\nUPDATE t2 SET c='thirty-five thousand six hundred thirty-six' WHERE a=90;\nUPDATE t2 SET c='fifty-three thousand five hundred seventy-five' WHERE a=91;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-nine' WHERE a=92;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-five' WHERE a=93;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-nine' WHERE a=94;\nUPDATE t2 SET c='ninety-eight thousand five hundred eighty' WHERE a=95;\nUPDATE t2 SET c='ninety-six thousand three hundred two' WHERE a=96;\nUPDATE t2 SET c='three thousand two hundred seventy-one' WHERE a=97;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty-five' WHERE a=98;\nUPDATE t2 SET c='nine thousand three hundred sixty-six' WHERE a=99;\nUPDATE t2 SET c='forty thousand eight hundred thirty' WHERE a=100;\nUPDATE t2 SET c='two hundred forty-one' WHERE a=101;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty-three' WHERE a=102;\nUPDATE t2 SET c='ninety-four thousand six hundred ten' WHERE a=103;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-nine' WHERE a=104;\nUPDATE t2 SET c='forty-six thousand four hundred two' WHERE a=105;\nUPDATE t2 SET c='eighty-five thousand two hundred eighty-six' WHERE a=106;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty-nine' WHERE a=107;\nUPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=108;\nUPDATE t2 SET c='eighteen thousand three hundred eighty-three' WHERE a=109;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-eight' WHERE a=110;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-five' WHERE a=111;\nUPDATE t2 SET c='six thousand three hundred sixty' WHERE a=112;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty' WHERE a=113;\nUPDATE t2 SET c='ten thousand four hundred sixty-four' WHERE a=114;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=115;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty-two' WHERE a=116;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-four' WHERE a=117;\nUPDATE t2 SET c='thirty-four thousand seven hundred thirty-eight' WHERE a=118;\nUPDATE t2 SET c='sixty-six thousand nine hundred seventy-nine' WHERE a=119;\nUPDATE t2 SET c='seventy-eight thousand one hundred four' WHERE a=120;\nUPDATE t2 SET c='forty thousand nine hundred thirty-three' WHERE a=121;\nUPDATE t2 SET c='eighty-five thousand three hundred sixty-nine' WHERE a=122;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty-six' WHERE a=123;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-one' WHERE a=124;\nUPDATE t2 SET c='twenty-one thousand four hundred forty-eight' WHERE a=125;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-one' WHERE a=126;\nUPDATE t2 SET c='four thousand three hundred eighty-six' WHERE a=127;\nUPDATE t2 SET c='sixteen thousand two hundred twenty-nine' WHERE a=128;\nUPDATE t2 SET c='fifty-five thousand nine hundred ninety-six' WHERE a=129;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=130;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=131;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-two' WHERE a=132;\nUPDATE t2 SET c='sixty-six thousand eight hundred ninety-three' WHERE a=133;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-nine' WHERE a=134;\nUPDATE t2 SET c='nine thousand eight hundred seventy-five' WHERE a=135;\nUPDATE t2 SET c='fifty-two thousand fifty-three' WHERE a=136;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-nine' WHERE a=137;\nUPDATE t2 SET c='forty-four thousand twenty-three' WHERE a=138;\nUPDATE t2 SET c='seventy-four thousand eight hundred seventy-three' WHERE a=139;\nUPDATE t2 SET c='twelve thousand eighty-one' WHERE a=140;\nUPDATE t2 SET c='ninety-three thousand twenty-seven' WHERE a=141;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-two' WHERE a=142;\nUPDATE t2 SET c='fourteen thousand seven hundred sixty-nine' WHERE a=143;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-one' WHERE a=144;\nUPDATE t2 SET c='ninety-two thousand three hundred forty' WHERE a=145;\nUPDATE t2 SET c='eighty-one thousand three hundred seventy-nine' WHERE a=146;\nUPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=147;\nUPDATE t2 SET c='twenty thousand four hundred ninety-nine' WHERE a=148;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twelve' WHERE a=149;\nUPDATE t2 SET c='twenty thousand eight hundred fifty-one' WHERE a=150;\nUPDATE t2 SET c='sixty-one thousand eight' WHERE a=151;\nUPDATE t2 SET c='twenty-five thousand three hundred seventy-eight' WHERE a=152;\nUPDATE t2 SET c='forty thousand seven hundred sixty-seven' WHERE a=153;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-seven' WHERE a=154;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-six' WHERE a=155;\nUPDATE t2 SET c='seventy-four thousand four hundred twenty-four' WHERE a=156;\nUPDATE t2 SET c='eight thousand five hundred thirty-two' WHERE a=157;\nUPDATE t2 SET c='ninety-three thousand five hundred nine' WHERE a=158;\nUPDATE t2 SET c='ninety-five thousand four hundred twelve' WHERE a=159;\nUPDATE t2 SET c='forty-five thousand five hundred sixty-two' WHERE a=160;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-eight' WHERE a=161;\nUPDATE t2 SET c='sixty-four thousand sixty-two' WHERE a=162;\nUPDATE t2 SET c='eighty-eight thousand four hundred ninety-four' WHERE a=163;\nUPDATE t2 SET c='five thousand one hundred forty-seven' WHERE a=164;\nUPDATE t2 SET c='seventy-five thousand five hundred forty-one' WHERE a=165;\nUPDATE t2 SET c='sixteen thousand two hundred thirty-eight' WHERE a=166;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-six' WHERE a=167;\nUPDATE t2 SET c='two thousand four hundred ninety-five' WHERE a=168;\nUPDATE t2 SET c='eighteen thousand four hundred two' WHERE a=169;\nUPDATE t2 SET c='twenty-three thousand three hundred twenty-nine' WHERE a=170;\nUPDATE t2 SET c='eleven thousand four hundred eighty-four' WHERE a=171;\nUPDATE t2 SET c='sixty-one thousand one hundred fifty' WHERE a=172;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-seven' WHERE a=173;\nUPDATE t2 SET c='seventy thousand six hundred seventy-two' WHERE a=174;\nUPDATE t2 SET c='seven thousand one hundred seventy-seven' WHERE a=175;\nUPDATE t2 SET c='twenty-nine thousand seven hundred three' WHERE a=176;\nUPDATE t2 SET c='thirty-seven thousand six hundred one' WHERE a=177;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-seven' WHERE a=178;\nUPDATE t2 SET c='sixty-five thousand one hundred seventy-two' WHERE a=179;\nUPDATE t2 SET c='ninety-nine thousand four hundred eighty-seven' WHERE a=180;\nUPDATE t2 SET c='eighty-seven thousand nine hundred eighty-nine' WHERE a=181;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-one' WHERE a=182;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-four' WHERE a=183;\nUPDATE t2 SET c='sixty-two thousand seven hundred seventy' WHERE a=184;\nUPDATE t2 SET c='three thousand nine hundred forty-seven' WHERE a=185;\nUPDATE t2 SET c='ninety-six thousand one hundred thirty-one' WHERE a=186;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-seven' WHERE a=187;\nUPDATE t2 SET c='nine thousand seven hundred one' WHERE a=188;\nUPDATE t2 SET c='six thousand four hundred ninety-five' WHERE a=189;\nUPDATE t2 SET c='fifty-two thousand two hundred thirteen' WHERE a=190;\nUPDATE t2 SET c='seventy-three thousand nine hundred ninety-three' WHERE a=191;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-three' WHERE a=192;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty-seven' WHERE a=193;\nUPDATE t2 SET c='twenty-five thousand eight hundred seventy-two' WHERE a=194;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-four' WHERE a=195;\nUPDATE t2 SET c='eleven thousand seven hundred sixty' WHERE a=196;\nUPDATE t2 SET c='fifty-two thousand three hundred twelve' WHERE a=197;\nUPDATE t2 SET c='seven thousand seven hundred fifteen' WHERE a=198;\nUPDATE t2 SET c='ten thousand three hundred fifteen' WHERE a=199;\nUPDATE t2 SET c='twenty-six thousand four hundred forty-seven' WHERE a=200;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-five' WHERE a=201;\nUPDATE t2 SET c='forty-one thousand eight hundred nine' WHERE a=202;\nUPDATE t2 SET c='twenty-three thousand one hundred thirty-five' WHERE a=203;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-six' WHERE a=204;\nUPDATE t2 SET c='eighty-five thousand one hundred seventeen' WHERE a=205;\nUPDATE t2 SET c='six thousand six hundred seventy-six' WHERE a=206;\nUPDATE t2 SET c='twenty-one thousand four hundred sixty-three' WHERE a=207;\nUPDATE t2 SET c='forty-eight thousand one hundred twenty-two' WHERE a=208;\nUPDATE t2 SET c='eighty-five thousand five hundred twenty-nine' WHERE a=209;\nUPDATE t2 SET c='seventy-two thousand six hundred thirty-six' WHERE a=210;\nUPDATE t2 SET c='forty-six thousand sixty-six' WHERE a=211;\nUPDATE t2 SET c='forty-five thousand one hundred ninety-eight' WHERE a=212;\nUPDATE t2 SET c='four thousand seven hundred fifty-three' WHERE a=213;\nUPDATE t2 SET c='sixty thousand one hundred one' WHERE a=214;\nUPDATE t2 SET c='six thousand nine hundred fifty-two' WHERE a=215;\nUPDATE t2 SET c='thirty-four thousand seven hundred twenty-six' WHERE a=216;\nUPDATE t2 SET c='twenty-eight thousand nine hundred four' WHERE a=217;\nUPDATE t2 SET c='six thousand one hundred sixty-seven' WHERE a=218;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-six' WHERE a=219;\nUPDATE t2 SET c='fifty thousand eighty-four' WHERE a=220;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-six' WHERE a=221;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixteen' WHERE a=222;\nUPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=223;\nUPDATE t2 SET c='ninety-nine thousand three hundred fifty-three' WHERE a=224;\nUPDATE t2 SET c='seventy thousand ninety-three' WHERE a=225;\nUPDATE t2 SET c='twenty-four thousand eight hundred sixty-two' WHERE a=226;\nUPDATE t2 SET c='fifty thousand five hundred eighty-four' WHERE a=227;\nUPDATE t2 SET c='thirty-five thousand five hundred sixty-six' WHERE a=228;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-five' WHERE a=229;\nUPDATE t2 SET c='seventy-three thousand three hundred two' WHERE a=230;\nUPDATE t2 SET c='thirteen thousand four' WHERE a=231;\nUPDATE t2 SET c='thirty thousand nine hundred eight' WHERE a=232;\nUPDATE t2 SET c='ten thousand six hundred fifty-two' WHERE a=233;\nUPDATE t2 SET c='thirty-seven thousand forty-three' WHERE a=234;\nUPDATE t2 SET c='seventy thousand five hundred eighty-two' WHERE a=235;\nUPDATE t2 SET c='five thousand three hundred seventy-four' WHERE a=236;\nUPDATE t2 SET c='thirty-eight thousand eight hundred forty-five' WHERE a=237;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-eight' WHERE a=238;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-four' WHERE a=239;\nUPDATE t2 SET c='forty-nine thousand one hundred twenty-six' WHERE a=240;\nUPDATE t2 SET c='eighty-one thousand one hundred three' WHERE a=241;\nUPDATE t2 SET c='eighteen thousand three hundred nine' WHERE a=242;\nUPDATE t2 SET c='four thousand one hundred' WHERE a=243;\nUPDATE t2 SET c='twenty-eight thousand eight hundred twenty-six' WHERE a=244;\nUPDATE t2 SET c='twenty-eight thousand seventy-seven' WHERE a=245;\nUPDATE t2 SET c='thirty-three thousand ninety-five' WHERE a=246;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-five' WHERE a=247;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-four' WHERE a=248;\nUPDATE t2 SET c='nine thousand one hundred sixty-two' WHERE a=249;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifty-six' WHERE a=250;\nUPDATE t2 SET c='thirty-four thousand nine' WHERE a=251;\nUPDATE t2 SET c='sixty-one thousand four hundred fifty-four' WHERE a=252;\nUPDATE t2 SET c='thirty-six thousand seven hundred sixty-five' WHERE a=253;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-three' WHERE a=254;\nUPDATE t2 SET c='forty-nine thousand sixty-nine' WHERE a=255;\nUPDATE t2 SET c='forty-two thousand one hundred forty-six' WHERE a=256;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty-six' WHERE a=257;\nUPDATE t2 SET c='five thousand three hundred twenty-one' WHERE a=258;\nUPDATE t2 SET c='fifteen thousand seventy-four' WHERE a=259;\nUPDATE t2 SET c='twenty-eight thousand five hundred ten' WHERE a=260;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-five' WHERE a=261;\nUPDATE t2 SET c='eighty-one thousand two hundred sixteen' WHERE a=262;\nUPDATE t2 SET c='sixty-three thousand four hundred thirty-four' WHERE a=263;\nUPDATE t2 SET c='twenty-four thousand nine hundred twenty-eight' WHERE a=264;\nUPDATE t2 SET c='eleven thousand one hundred seventy-eight' WHERE a=265;\nUPDATE t2 SET c='seventy-nine thousand one hundred eighteen' WHERE a=266;\nUPDATE t2 SET c='ninety-two thousand one hundred ninety-six' WHERE a=267;\nUPDATE t2 SET c='seven thousand four hundred ninety-two' WHERE a=268;\nUPDATE t2 SET c='eighty-one thousand three hundred three' WHERE a=269;\nUPDATE t2 SET c='eighty-six thousand nine hundred thirteen' WHERE a=270;\nUPDATE t2 SET c='sixty-nine thousand sixty-one' WHERE a=271;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty' WHERE a=272;\nUPDATE t2 SET c='six thousand two hundred thirty-six' WHERE a=273;\nUPDATE t2 SET c='fifty-six thousand six hundred forty-four' WHERE a=274;\nUPDATE t2 SET c='thirty thousand six hundred eight' WHERE a=275;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-eight' WHERE a=276;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-two' WHERE a=277;\nUPDATE t2 SET c='ninety thousand two hundred seventy-four' WHERE a=278;\nUPDATE t2 SET c='seventy-seven thousand one hundred ninety-four' WHERE a=279;\nUPDATE t2 SET c='nine thousand one hundred thirty-two' WHERE a=280;\nUPDATE t2 SET c='thirty-two thousand nine hundred four' WHERE a=281;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-nine' WHERE a=282;\nUPDATE t2 SET c='fifty-seven thousand sixty-eight' WHERE a=283;\nUPDATE t2 SET c='forty-seven thousand two hundred nine' WHERE a=284;\nUPDATE t2 SET c='sixty-four thousand eight hundred fifty-eight' WHERE a=285;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty-two' WHERE a=286;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-four' WHERE a=287;\nUPDATE t2 SET c='twelve thousand seven hundred forty-seven' WHERE a=288;\nUPDATE t2 SET c='eighty-nine thousand nine hundred forty-nine' WHERE a=289;\nUPDATE t2 SET c='forty-nine thousand five hundred sixty-six' WHERE a=290;\nUPDATE t2 SET c='seventy-nine thousand four hundred sixty-five' WHERE a=291;\nUPDATE t2 SET c='thirty-three thousand six hundred ninety-seven' WHERE a=292;\nUPDATE t2 SET c='fifty-nine thousand one hundred forty-two' WHERE a=293;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-three' WHERE a=294;\nUPDATE t2 SET c='sixty thousand six hundred four' WHERE a=295;\nUPDATE t2 SET c='sixty-five thousand six hundred ninety-nine' WHERE a=296;\nUPDATE t2 SET c='fifty-five thousand four hundred forty-two' WHERE a=297;\nUPDATE t2 SET c='ten thousand nine hundred twenty-four' WHERE a=298;\nUPDATE t2 SET c='eighty-eight thousand forty-two' WHERE a=299;\nUPDATE t2 SET c='ten thousand nine hundred thirty-seven' WHERE a=300;\nUPDATE t2 SET c='twelve thousand nine hundred seventy-nine' WHERE a=301;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty' WHERE a=302;\nUPDATE t2 SET c='twenty-eight thousand five hundred fifty-eight' WHERE a=303;\nUPDATE t2 SET c='ninety-four thousand fourteen' WHERE a=304;\nUPDATE t2 SET c='eight thousand four hundred forty' WHERE a=305;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-five' WHERE a=306;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-nine' WHERE a=307;\nUPDATE t2 SET c='sixty-eight thousand four hundred twenty-eight' WHERE a=308;\nUPDATE t2 SET c='seventy thousand seven hundred eighty-eight' WHERE a=309;\nUPDATE t2 SET c='eleven thousand three hundred fifty' WHERE a=310;\nUPDATE t2 SET c='forty-eight thousand one hundred five' WHERE a=311;\nUPDATE t2 SET c='forty-eight thousand three hundred sixty-eight' WHERE a=312;\nUPDATE t2 SET c='forty-seven thousand eight hundred twenty' WHERE a=313;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-three' WHERE a=314;\nUPDATE t2 SET c='seventy-four thousand three hundred thirty-two' WHERE a=315;\nUPDATE t2 SET c='thirty-two thousand two hundred seventeen' WHERE a=316;\nUPDATE t2 SET c='thirty-five thousand nine hundred fifty-six' WHERE a=317;\nUPDATE t2 SET c='fifty-two thousand four hundred twenty' WHERE a=318;\nUPDATE t2 SET c='eighty-eight thousand one hundred sixty-nine' WHERE a=319;\nUPDATE t2 SET c='eighty-five thousand seven hundred ten' WHERE a=320;\nUPDATE t2 SET c='six thousand fifty-one' WHERE a=321;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-five' WHERE a=322;\nUPDATE t2 SET c='seventy-nine thousand five hundred fifty-six' WHERE a=323;\nUPDATE t2 SET c='four thousand one hundred forty-nine' WHERE a=324;\nUPDATE t2 SET c='eighty-six thousand seven hundred ninety-five' WHERE a=325;\nUPDATE t2 SET c='thirty thousand two hundred forty-four' WHERE a=326;\nUPDATE t2 SET c='eighty-one thousand seven hundred ninety-six' WHERE a=327;\nUPDATE t2 SET c='fifty-seven thousand six hundred fifteen' WHERE a=328;\nUPDATE t2 SET c='ninety-four thousand sixty-one' WHERE a=329;\nUPDATE t2 SET c='sixty-two thousand six hundred forty-nine' WHERE a=330;\nUPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=331;\nUPDATE t2 SET c='eight thousand thirty-nine' WHERE a=332;\nUPDATE t2 SET c='seventeen thousand six hundred forty' WHERE a=333;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighty-six' WHERE a=334;\nUPDATE t2 SET c='forty-four thousand five hundred ninety-four' WHERE a=335;\nUPDATE t2 SET c='sixty-one thousand eight hundred ninety-seven' WHERE a=336;\nUPDATE t2 SET c='forty-five thousand seventy-six' WHERE a=337;\nUPDATE t2 SET c='ten thousand five hundred sixty-six' WHERE a=338;\nUPDATE t2 SET c='thirty-two thousand three hundred forty-seven' WHERE a=339;\nUPDATE t2 SET c='seventy-six thousand one hundred seventy' WHERE a=340;\nUPDATE t2 SET c='seventy-four thousand six hundred fifty-seven' WHERE a=341;\nUPDATE t2 SET c='one thousand four hundred thirty-six' WHERE a=342;\nUPDATE t2 SET c='twelve thousand four hundred twenty-five' WHERE a=343;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-nine' WHERE a=344;\nUPDATE t2 SET c='seventy-one thousand three hundred sixty-three' WHERE a=345;\nUPDATE t2 SET c='thirty-four thousand six hundred seventy-two' WHERE a=346;\nUPDATE t2 SET c='two thousand three hundred eighty-eight' WHERE a=347;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty-nine' WHERE a=348;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-four' WHERE a=349;\nUPDATE t2 SET c='forty-six thousand nine hundred ninety-one' WHERE a=350;\nUPDATE t2 SET c='fifty-seven thousand seven hundred sixty-six' WHERE a=351;\nUPDATE t2 SET c='twenty-seven thousand six hundred twenty-two' WHERE a=352;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-one' WHERE a=353;\nUPDATE t2 SET c='forty-two thousand five hundred sixty-one' WHERE a=354;\nUPDATE t2 SET c='twenty-seven thousand five hundred twenty-five' WHERE a=355;\nUPDATE t2 SET c='fifty thousand thirty-three' WHERE a=356;\nUPDATE t2 SET c='fifteen thousand six hundred ninety-one' WHERE a=357;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirteen' WHERE a=358;\nUPDATE t2 SET c='seventeen thousand nine hundred seventy-five' WHERE a=359;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy' WHERE a=360;\nUPDATE t2 SET c='eighty thousand five hundred two' WHERE a=361;\nUPDATE t2 SET c='thirty-seven thousand one hundred nineteen' WHERE a=362;\nUPDATE t2 SET c='one thousand five hundred sixty-seven' WHERE a=363;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-four' WHERE a=364;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty-nine' WHERE a=365;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifty-four' WHERE a=366;\nUPDATE t2 SET c='twenty-six thousand seven hundred thirty-three' WHERE a=367;\nUPDATE t2 SET c='ninety-five thousand two hundred sixty' WHERE a=368;\nUPDATE t2 SET c='ninety-two thousand one hundred ninety-five' WHERE a=369;\nUPDATE t2 SET c='five thousand eighty-eight' WHERE a=370;\nUPDATE t2 SET c='ninety thousand seventy' WHERE a=371;\nUPDATE t2 SET c='seventy-nine thousand eighty-four' WHERE a=372;\nUPDATE t2 SET c='forty-one thousand two hundred ten' WHERE a=373;\nUPDATE t2 SET c='ninety-one thousand eight hundred fifteen' WHERE a=374;\nUPDATE t2 SET c='seventy-seven thousand three hundred thirty-four' WHERE a=375;\nUPDATE t2 SET c='ninety-one thousand ninety-nine' WHERE a=376;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-six' WHERE a=377;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-nine' WHERE a=378;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifteen' WHERE a=379;\nUPDATE t2 SET c='seventeen thousand thirty-six' WHERE a=380;\nUPDATE t2 SET c='forty-six thousand six hundred ninety-five' WHERE a=381;\nUPDATE t2 SET c='thirty-eight thousand five hundred forty-eight' WHERE a=382;\nUPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=383;\nUPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=384;\nUPDATE t2 SET c='sixty-nine thousand five hundred nineteen' WHERE a=385;\nUPDATE t2 SET c='two thousand one hundred ninety-five' WHERE a=386;\nUPDATE t2 SET c='ninety-eight thousand four hundred forty-four' WHERE a=387;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty-six' WHERE a=388;\nUPDATE t2 SET c='fifty-one thousand four hundred six' WHERE a=389;\nUPDATE t2 SET c='thirty-eight thousand eight hundred eighty' WHERE a=390;\nUPDATE t2 SET c='ninety-five thousand nine hundred sixty-one' WHERE a=391;\nUPDATE t2 SET c='seven thousand six hundred sixty-eight' WHERE a=392;\nUPDATE t2 SET c='forty-seven thousand fifty-four' WHERE a=393;\nUPDATE t2 SET c='seventy-seven thousand eighty-three' WHERE a=394;\nUPDATE t2 SET c='eighty-three thousand one hundred thirty-five' WHERE a=395;\nUPDATE t2 SET c='sixty thousand six hundred fourteen' WHERE a=396;\nUPDATE t2 SET c='eleven thousand one hundred seventy' WHERE a=397;\nUPDATE t2 SET c='eighty thousand one hundred fifty' WHERE a=398;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-eight' WHERE a=399;\nUPDATE t2 SET c='twenty-eight thousand five hundred ninety-seven' WHERE a=400;\nUPDATE t2 SET c='fifty-five thousand two hundred ninety-eight' WHERE a=401;\nUPDATE t2 SET c='eighteen thousand three hundred' WHERE a=402;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-five' WHERE a=403;\nUPDATE t2 SET c='forty-nine thousand three hundred nineteen' WHERE a=404;\nUPDATE t2 SET c='eighteen thousand one hundred four' WHERE a=405;\nUPDATE t2 SET c='fifty-seven thousand nine hundred seventy-seven' WHERE a=406;\nUPDATE t2 SET c='fifty thousand seven hundred eleven' WHERE a=407;\nUPDATE t2 SET c='six thousand sixty-five' WHERE a=408;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-two' WHERE a=409;\nUPDATE t2 SET c='sixty-eight thousand one hundred forty-four' WHERE a=410;\nUPDATE t2 SET c='eighty-two thousand nine hundred forty-two' WHERE a=411;\nUPDATE t2 SET c='five thousand eight hundred seventy-three' WHERE a=412;\nUPDATE t2 SET c='fifty-three thousand two hundred sixty-four' WHERE a=413;\nUPDATE t2 SET c='twelve thousand five hundred eighty-seven' WHERE a=414;\nUPDATE t2 SET c='eighty-one thousand two hundred fifty-eight' WHERE a=415;\nUPDATE t2 SET c='three thousand five hundred ninety-two' WHERE a=416;\nUPDATE t2 SET c='thirty-one thousand three hundred ninety-three' WHERE a=417;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-two' WHERE a=418;\nUPDATE t2 SET c='sixty thousand two hundred eighteen' WHERE a=419;\nUPDATE t2 SET c='seventy-seven thousand seven hundred eighty-eight' WHERE a=420;\nUPDATE t2 SET c='sixty-one thousand one hundred eight' WHERE a=421;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-two' WHERE a=422;\nUPDATE t2 SET c='ninety-five thousand eight hundred three' WHERE a=423;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-seven' WHERE a=424;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-five' WHERE a=425;\nUPDATE t2 SET c='forty-three thousand forty-eight' WHERE a=426;\nUPDATE t2 SET c='eighty-four thousand seven hundred fifty-four' WHERE a=427;\nUPDATE t2 SET c='ninety-one thousand nine hundred four' WHERE a=428;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-nine' WHERE a=429;\nUPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=430;\nUPDATE t2 SET c='sixty thousand one hundred seventy-seven' WHERE a=431;\nUPDATE t2 SET c='seventy-two thousand eight hundred three' WHERE a=432;\nUPDATE t2 SET c='seventy thousand four hundred seventeen' WHERE a=433;\nUPDATE t2 SET c='eighty-five thousand two hundred seven' WHERE a=434;\nUPDATE t2 SET c='sixty thousand six hundred thirty-three' WHERE a=435;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty-five' WHERE a=436;\nUPDATE t2 SET c='twelve thousand four hundred fifty-five' WHERE a=437;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-two' WHERE a=438;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-four' WHERE a=439;\nUPDATE t2 SET c='sixteen thousand ninety-four' WHERE a=440;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-eight' WHERE a=441;\nUPDATE t2 SET c='sixty-nine thousand twenty-five' WHERE a=442;\nUPDATE t2 SET c='fifty-two thousand three hundred eighteen' WHERE a=443;\nUPDATE t2 SET c='fifty-six thousand six hundred eighty-two' WHERE a=444;\nUPDATE t2 SET c='nine thousand six hundred thirty-two' WHERE a=445;\nUPDATE t2 SET c='seventy thousand eight hundred eighty-nine' WHERE a=446;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty' WHERE a=447;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty' WHERE a=448;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty' WHERE a=449;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-five' WHERE a=450;\nUPDATE t2 SET c='eighty-two thousand three hundred ninety-two' WHERE a=451;\nUPDATE t2 SET c='sixty-eight thousand seventy-seven' WHERE a=452;\nUPDATE t2 SET c='sixty-six thousand two hundred twenty' WHERE a=453;\nUPDATE t2 SET c='eleven thousand two hundred eight' WHERE a=454;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifty-two' WHERE a=455;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-three' WHERE a=456;\nUPDATE t2 SET c='thirty-seven thousand seven' WHERE a=457;\nUPDATE t2 SET c='one thousand five hundred sixty-two' WHERE a=458;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-one' WHERE a=459;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=460;\nUPDATE t2 SET c='seven thousand six hundred eighty-six' WHERE a=461;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-seven' WHERE a=462;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-four' WHERE a=463;\nUPDATE t2 SET c='thirty' WHERE a=464;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-three' WHERE a=465;\nUPDATE t2 SET c='eighty-five thousand one hundred fifty-two' WHERE a=466;\nUPDATE t2 SET c='ten thousand three hundred fifty-two' WHERE a=467;\nUPDATE t2 SET c='eighty-five thousand eight hundred forty-three' WHERE a=468;\nUPDATE t2 SET c='thirty-three thousand three hundred seven' WHERE a=469;\nUPDATE t2 SET c='one thousand three hundred thirty-nine' WHERE a=470;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-nine' WHERE a=471;\nUPDATE t2 SET c='nineteen thousand six hundred fifty-one' WHERE a=472;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-five' WHERE a=473;\nUPDATE t2 SET c='sixty-one thousand two hundred fourteen' WHERE a=474;\nUPDATE t2 SET c='twenty-three thousand two hundred twenty-two' WHERE a=475;\nUPDATE t2 SET c='seventeen thousand four hundred eighty-two' WHERE a=476;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-four' WHERE a=477;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-six' WHERE a=478;\nUPDATE t2 SET c='sixty-nine thousand nine hundred two' WHERE a=479;\nUPDATE t2 SET c='twelve thousand three hundred eighty-four' WHERE a=480;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-one' WHERE a=481;\nUPDATE t2 SET c='sixty-five thousand four hundred eleven' WHERE a=482;\nUPDATE t2 SET c='sixty-four thousand two hundred five' WHERE a=483;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fourteen' WHERE a=484;\nUPDATE t2 SET c='seventy-six thousand seven hundred nineteen' WHERE a=485;\nUPDATE t2 SET c='seventy-six thousand five hundred thirteen' WHERE a=486;\nUPDATE t2 SET c='fifty-nine thousand eight hundred five' WHERE a=487;\nUPDATE t2 SET c='seventy thousand nine hundred thirty-eight' WHERE a=488;\nUPDATE t2 SET c='two thousand seven hundred ninety-one' WHERE a=489;\nUPDATE t2 SET c='three thousand four hundred fifty-two' WHERE a=490;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty-eight' WHERE a=491;\nUPDATE t2 SET c='seven thousand seven hundred eighty-five' WHERE a=492;\nUPDATE t2 SET c='thirty-three thousand five hundred thirty-four' WHERE a=493;\nUPDATE t2 SET c='twenty thousand three hundred twenty-five' WHERE a=494;\nUPDATE t2 SET c='seventy thousand two hundred fifteen' WHERE a=495;\nUPDATE t2 SET c='ninety-five thousand three hundred fifteen' WHERE a=496;\nUPDATE t2 SET c='twenty-six thousand four hundred thirteen' WHERE a=497;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=498;\nUPDATE t2 SET c='ninety-two thousand eight hundred fifteen' WHERE a=499;\nUPDATE t2 SET c='sixty-six thousand seven hundred eighty-one' WHERE a=500;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-three' WHERE a=501;\nUPDATE t2 SET c='eighty-nine thousand sixty-eight' WHERE a=502;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=503;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-four' WHERE a=504;\nUPDATE t2 SET c='five thousand eight hundred seventy' WHERE a=505;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-four' WHERE a=506;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-five' WHERE a=507;\nUPDATE t2 SET c='ninety-seven thousand one hundred seventeen' WHERE a=508;\nUPDATE t2 SET c='sixty-six thousand three hundred forty-two' WHERE a=509;\nUPDATE t2 SET c='forty-six thousand four hundred twenty' WHERE a=510;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-six' WHERE a=511;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-eight' WHERE a=512;\nUPDATE t2 SET c='five thousand six hundred forty-one' WHERE a=513;\nUPDATE t2 SET c='forty-seven thousand two hundred twenty-four' WHERE a=514;\nUPDATE t2 SET c='twenty-one thousand eight hundred seventy-four' WHERE a=515;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-eight' WHERE a=516;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighteen' WHERE a=517;\nUPDATE t2 SET c='twenty-one thousand six hundred fifty-one' WHERE a=518;\nUPDATE t2 SET c='eighty-five thousand five hundred seventy-three' WHERE a=519;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixty-two' WHERE a=520;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy-eight' WHERE a=521;\nUPDATE t2 SET c='eighty-five thousand eight hundred ninety-two' WHERE a=522;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-seven' WHERE a=523;\nUPDATE t2 SET c='forty-one thousand seven hundred six' WHERE a=524;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-two' WHERE a=525;\nUPDATE t2 SET c='six thousand one hundred thirty-one' WHERE a=526;\nUPDATE t2 SET c='thirty-two thousand ninety-three' WHERE a=527;\nUPDATE t2 SET c='seventy-two thousand sixty-nine' WHERE a=528;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy-three' WHERE a=529;\nUPDATE t2 SET c='ten thousand three hundred fifty-five' WHERE a=530;\nUPDATE t2 SET c='eighty-four thousand five hundred eighty' WHERE a=531;\nUPDATE t2 SET c='sixty-four thousand forty' WHERE a=532;\nUPDATE t2 SET c='thirty-four thousand four hundred nineteen' WHERE a=533;\nUPDATE t2 SET c='eighty-three thousand two hundred ninety-two' WHERE a=534;\nUPDATE t2 SET c='fifty-six thousand six hundred thirty-nine' WHERE a=535;\nUPDATE t2 SET c='sixty-nine thousand eight hundred sixty-one' WHERE a=536;\nUPDATE t2 SET c='six thousand five hundred eighty-nine' WHERE a=537;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-seven' WHERE a=538;\nUPDATE t2 SET c='sixty-two thousand eight hundred thirty-four' WHERE a=539;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=540;\nUPDATE t2 SET c='fifty thousand two hundred eighty-four' WHERE a=541;\nUPDATE t2 SET c='seventy-three thousand five hundred five' WHERE a=542;\nUPDATE t2 SET c='forty-five thousand seven hundred forty' WHERE a=543;\nUPDATE t2 SET c='forty thousand two hundred ninety-one' WHERE a=544;\nUPDATE t2 SET c='fifty-five thousand three hundred fifteen' WHERE a=545;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-six' WHERE a=546;\nUPDATE t2 SET c='eighteen thousand two hundred six' WHERE a=547;\nUPDATE t2 SET c='nine thousand six hundred twenty-one' WHERE a=548;\nUPDATE t2 SET c='thirteen thousand five hundred seventy-four' WHERE a=549;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=550;\nUPDATE t2 SET c='twenty-three thousand six hundred fifty-two' WHERE a=551;\nUPDATE t2 SET c='five thousand one hundred seventy-eight' WHERE a=552;\nUPDATE t2 SET c='forty thousand one hundred thirty-five' WHERE a=553;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-nine' WHERE a=554;\nUPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=555;\nUPDATE t2 SET c='eighty-five thousand one hundred sixteen' WHERE a=556;\nUPDATE t2 SET c='one thousand five hundred thirty-four' WHERE a=557;\nUPDATE t2 SET c='sixty-five thousand three hundred seventeen' WHERE a=558;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-one' WHERE a=559;\nUPDATE t2 SET c='thirty-three thousand nine hundred eighty-four' WHERE a=560;\nUPDATE t2 SET c='thirty-six thousand three hundred four' WHERE a=561;\nUPDATE t2 SET c='sixty-four thousand three hundred forty-five' WHERE a=562;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-eight' WHERE a=563;\nUPDATE t2 SET c='forty-nine thousand seven hundred ninety-seven' WHERE a=564;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty-five' WHERE a=565;\nUPDATE t2 SET c='sixty-four thousand five hundred two' WHERE a=566;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eighty-nine' WHERE a=567;\nUPDATE t2 SET c='eighty-five thousand four hundred forty-six' WHERE a=568;\nUPDATE t2 SET c='eighty-nine thousand eight hundred forty-three' WHERE a=569;\nUPDATE t2 SET c='eighty thousand one hundred eighty-seven' WHERE a=570;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-eight' WHERE a=571;\nUPDATE t2 SET c='fifty-eight thousand eight hundred seventy-one' WHERE a=572;\nUPDATE t2 SET c='seventy-eight thousand one hundred seventy' WHERE a=573;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty' WHERE a=574;\nUPDATE t2 SET c='eight thousand four hundred seventy-four' WHERE a=575;\nUPDATE t2 SET c='eighty-two thousand seven hundred seventy-nine' WHERE a=576;\nUPDATE t2 SET c='nine thousand one hundred ninety-seven' WHERE a=577;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-five' WHERE a=578;\nUPDATE t2 SET c='thirty-five thousand nine hundred eighty-three' WHERE a=579;\nUPDATE t2 SET c='fifteen thousand seven hundred seventy-two' WHERE a=580;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-six' WHERE a=581;\nUPDATE t2 SET c='eighty-four thousand two hundred eighty-one' WHERE a=582;\nUPDATE t2 SET c='thirty thousand one hundred five' WHERE a=583;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirteen' WHERE a=584;\nUPDATE t2 SET c='sixty-seven thousand three hundred twenty-one' WHERE a=585;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-nine' WHERE a=586;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=587;\nUPDATE t2 SET c='four thousand one hundred forty' WHERE a=588;\nUPDATE t2 SET c='ninety thousand two hundred fifty' WHERE a=589;\nUPDATE t2 SET c='thirty-eight thousand four hundred ninety-three' WHERE a=590;\nUPDATE t2 SET c='seventy-six thousand three hundred seventy-seven' WHERE a=591;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-nine' WHERE a=592;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-nine' WHERE a=593;\nUPDATE t2 SET c='fifty-one thousand two hundred one' WHERE a=594;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety-two' WHERE a=595;\nUPDATE t2 SET c='thirty-nine thousand four hundred forty' WHERE a=596;\nUPDATE t2 SET c='fifty-five thousand six hundred seventy-nine' WHERE a=597;\nUPDATE t2 SET c='seventy-three thousand one hundred ninety-seven' WHERE a=598;\nUPDATE t2 SET c='sixty-seven thousand two hundred nineteen' WHERE a=599;\nUPDATE t2 SET c='eighty-four thousand four hundred ninety-three' WHERE a=600;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-three' WHERE a=601;\nUPDATE t2 SET c='nine thousand seven hundred five' WHERE a=602;\nUPDATE t2 SET c='fifty-eight thousand three hundred forty-one' WHERE a=603;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixteen' WHERE a=604;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-one' WHERE a=605;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-five' WHERE a=606;\nUPDATE t2 SET c='seventy-four thousand ninety' WHERE a=607;\nUPDATE t2 SET c='eleven thousand nine hundred thirty-four' WHERE a=608;\nUPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=609;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-three' WHERE a=610;\nUPDATE t2 SET c='thirteen thousand three hundred five' WHERE a=611;\nUPDATE t2 SET c='eleven thousand eight hundred three' WHERE a=612;\nUPDATE t2 SET c='seventy-seven thousand three hundred sixty-two' WHERE a=613;\nUPDATE t2 SET c='thirty-four thousand seven hundred five' WHERE a=614;\nUPDATE t2 SET c='forty-seven thousand two hundred seventy-eight' WHERE a=615;\nUPDATE t2 SET c='five thousand seven hundred fifty-one' WHERE a=616;\nUPDATE t2 SET c='ninety-three thousand six hundred ninety-nine' WHERE a=617;\nUPDATE t2 SET c='eleven thousand six hundred seven' WHERE a=618;\nUPDATE t2 SET c='four hundred ninety' WHERE a=619;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-one' WHERE a=620;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-eight' WHERE a=621;\nUPDATE t2 SET c='seventy-five thousand five hundred twenty-seven' WHERE a=622;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-nine' WHERE a=623;\nUPDATE t2 SET c='seventy-six thousand eighty-five' WHERE a=624;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-four' WHERE a=625;\nUPDATE t2 SET c='eighty-eight thousand two hundred twenty-six' WHERE a=626;\nUPDATE t2 SET c='one thousand nine hundred thirty-five' WHERE a=627;\nUPDATE t2 SET c='sixteen thousand one hundred ninety-six' WHERE a=628;\nUPDATE t2 SET c='thirty-four thousand one hundred eighty' WHERE a=629;\nUPDATE t2 SET c='seven thousand one hundred forty' WHERE a=630;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety-seven' WHERE a=631;\nUPDATE t2 SET c='eighty-one thousand one hundred eight' WHERE a=632;\nUPDATE t2 SET c='four thousand three hundred five' WHERE a=633;\nUPDATE t2 SET c='forty-one thousand three hundred seventy-nine' WHERE a=634;\nUPDATE t2 SET c='eighty-one thousand five hundred thirty-two' WHERE a=635;\nUPDATE t2 SET c='fifty thousand three hundred twelve' WHERE a=636;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty' WHERE a=637;\nUPDATE t2 SET c='eleven thousand nine hundred eleven' WHERE a=638;\nUPDATE t2 SET c='three thousand sixty-eight' WHERE a=639;\nUPDATE t2 SET c='eight thousand nine hundred seventy-six' WHERE a=640;\nUPDATE t2 SET c='forty-five thousand four hundred forty-eight' WHERE a=641;\nUPDATE t2 SET c='fifty-six thousand one hundred eight' WHERE a=642;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifteen' WHERE a=643;\nUPDATE t2 SET c='forty thousand three hundred ninety-two' WHERE a=644;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=645;\nUPDATE t2 SET c='fifty-two thousand three hundred thirty' WHERE a=646;\nUPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=647;\nUPDATE t2 SET c='nine thousand four hundred forty-one' WHERE a=648;\nUPDATE t2 SET c='forty-one thousand five hundred three' WHERE a=649;\nUPDATE t2 SET c='nineteen thousand six hundred ninety-four' WHERE a=650;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-seven' WHERE a=651;\nUPDATE t2 SET c='sixty-six thousand eight hundred five' WHERE a=652;\nUPDATE t2 SET c='thirty-five thousand two hundred eighty-five' WHERE a=653;\nUPDATE t2 SET c='seven thousand six hundred sixty-three' WHERE a=654;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-two' WHERE a=655;\nUPDATE t2 SET c='forty-five thousand four hundred six' WHERE a=656;\nUPDATE t2 SET c='eighty-four thousand six hundred' WHERE a=657;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=658;\nUPDATE t2 SET c='ninety-three thousand nine hundred thirty-nine' WHERE a=659;\nUPDATE t2 SET c='eighty-seven thousand nine hundred' WHERE a=660;\nUPDATE t2 SET c='seventy-three thousand twenty-nine' WHERE a=661;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-five' WHERE a=662;\nUPDATE t2 SET c='fifty-six thousand three hundred ninety-eight' WHERE a=663;\nUPDATE t2 SET c='sixty-two thousand seventy-one' WHERE a=664;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty-five' WHERE a=665;\nUPDATE t2 SET c='forty-seven thousand five hundred twenty' WHERE a=666;\nUPDATE t2 SET c='seventy-two thousand three hundred eighty-six' WHERE a=667;\nUPDATE t2 SET c='fifty-one thousand two hundred fifty-seven' WHERE a=668;\nUPDATE t2 SET c='twelve thousand three hundred twenty-two' WHERE a=669;\nUPDATE t2 SET c='forty-three thousand three hundred eighty-three' WHERE a=670;\nUPDATE t2 SET c='forty-one thousand nine hundred ninety-one' WHERE a=671;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixty-six' WHERE a=672;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-six' WHERE a=673;\nUPDATE t2 SET c='twenty thousand two hundred sixty-eight' WHERE a=674;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=675;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=676;\nUPDATE t2 SET c='seventy-seven thousand seven hundred eighty-five' WHERE a=677;\nUPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=678;\nUPDATE t2 SET c='one thousand one hundred forty-six' WHERE a=679;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-six' WHERE a=680;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty' WHERE a=681;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy-five' WHERE a=682;\nUPDATE t2 SET c='forty-one thousand nine hundred sixty' WHERE a=683;\nUPDATE t2 SET c='sixty thousand seven hundred fifty' WHERE a=684;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-eight' WHERE a=685;\nUPDATE t2 SET c='sixteen thousand one hundred fifty-eight' WHERE a=686;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-three' WHERE a=687;\nUPDATE t2 SET c='sixty-four thousand four hundred six' WHERE a=688;\nUPDATE t2 SET c='forty-seven thousand four hundred thirty' WHERE a=689;\nUPDATE t2 SET c='thirty-eight thousand four hundred twenty' WHERE a=690;\nUPDATE t2 SET c='seven thousand three hundred eighty-three' WHERE a=691;\nUPDATE t2 SET c='sixty-nine thousand four hundred eighty-five' WHERE a=692;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-eight' WHERE a=693;\nUPDATE t2 SET c='seventy-seven thousand five' WHERE a=694;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-seven' WHERE a=695;\nUPDATE t2 SET c='eighteen thousand seventy-nine' WHERE a=696;\nUPDATE t2 SET c='six thousand five hundred thirty' WHERE a=697;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty' WHERE a=698;\nUPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=699;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-six' WHERE a=700;\nUPDATE t2 SET c='sixty-nine thousand three hundred thirty-two' WHERE a=701;\nUPDATE t2 SET c='sixty-six thousand forty-three' WHERE a=702;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty' WHERE a=703;\nUPDATE t2 SET c='seventy-five thousand four hundred twelve' WHERE a=704;\nUPDATE t2 SET c='seventy-six thousand one hundred' WHERE a=705;\nUPDATE t2 SET c='forty-three thousand eight hundred nine' WHERE a=706;\nUPDATE t2 SET c='eighty thousand nine hundred forty-seven' WHERE a=707;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-five' WHERE a=708;\nUPDATE t2 SET c='sixty-eight thousand fifty' WHERE a=709;\nUPDATE t2 SET c='three thousand four hundred eight' WHERE a=710;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty' WHERE a=711;\nUPDATE t2 SET c='three thousand eight hundred four' WHERE a=712;\nUPDATE t2 SET c='one thousand one hundred twenty' WHERE a=713;\nUPDATE t2 SET c='thirty-two thousand seven hundred nine' WHERE a=714;\nUPDATE t2 SET c='four thousand nine hundred sixty-nine' WHERE a=715;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-six' WHERE a=716;\nUPDATE t2 SET c='fifty-one thousand five hundred twenty-four' WHERE a=717;\nUPDATE t2 SET c='four thousand nine hundred sixty-seven' WHERE a=718;\nUPDATE t2 SET c='twenty thousand three hundred twelve' WHERE a=719;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety' WHERE a=720;\nUPDATE t2 SET c='eighty-four thousand four hundred eighty-three' WHERE a=721;\nUPDATE t2 SET c='eighty-nine thousand seventy' WHERE a=722;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-seven' WHERE a=723;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-five' WHERE a=724;\nUPDATE t2 SET c='twenty thousand seven hundred forty-five' WHERE a=725;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-four' WHERE a=726;\nUPDATE t2 SET c='thirty-eight thousand four hundred seventy-nine' WHERE a=727;\nUPDATE t2 SET c='eighty-four thousand five hundred seventy-three' WHERE a=728;\nUPDATE t2 SET c='eighty-six thousand four hundred forty-nine' WHERE a=729;\nUPDATE t2 SET c='sixty-four thousand three hundred two' WHERE a=730;\nUPDATE t2 SET c='seventy thousand three hundred fourteen' WHERE a=731;\nUPDATE t2 SET c='seventy-four thousand four hundred nine' WHERE a=732;\nUPDATE t2 SET c='nine thousand six hundred four' WHERE a=733;\nUPDATE t2 SET c='eighty-two thousand five hundred sixty' WHERE a=734;\nUPDATE t2 SET c='twenty-nine thousand eight hundred fifty-two' WHERE a=735;\nUPDATE t2 SET c='fifty-six thousand four hundred fourteen' WHERE a=736;\nUPDATE t2 SET c='forty-four thousand one hundred thirty-three' WHERE a=737;\nUPDATE t2 SET c='forty-two thousand nine hundred fourteen' WHERE a=738;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty-eight' WHERE a=739;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-four' WHERE a=740;\nUPDATE t2 SET c='forty thousand four hundred seventy-eight' WHERE a=741;\nUPDATE t2 SET c='three hundred seventy-one' WHERE a=742;\nUPDATE t2 SET c='thirty-nine thousand seven hundred forty-five' WHERE a=743;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-three' WHERE a=744;\nUPDATE t2 SET c='forty-four thousand eight hundred eighteen' WHERE a=745;\nUPDATE t2 SET c='eighty-five thousand twenty-eight' WHERE a=746;\nUPDATE t2 SET c='twelve thousand nine hundred twenty-four' WHERE a=747;\nUPDATE t2 SET c='eighty-five thousand one hundred ninety-two' WHERE a=748;\nUPDATE t2 SET c='ninety thousand fifty-three' WHERE a=749;\nUPDATE t2 SET c='twenty-seven thousand seven hundred seventy-nine' WHERE a=750;\nUPDATE t2 SET c='seventy-seven thousand four hundred eleven' WHERE a=751;\nUPDATE t2 SET c='sixty-one thousand five hundred twenty-seven' WHERE a=752;\nUPDATE t2 SET c='sixteen thousand one hundred nine' WHERE a=753;\nUPDATE t2 SET c='twenty-six thousand one hundred fifty-eight' WHERE a=754;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-one' WHERE a=755;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-one' WHERE a=756;\nUPDATE t2 SET c='thirty thousand three hundred ninety' WHERE a=757;\nUPDATE t2 SET c='seventy-five thousand two hundred seventy-three' WHERE a=758;\nUPDATE t2 SET c='eight thousand forty-nine' WHERE a=759;\nUPDATE t2 SET c='seventy-one thousand seven hundred ten' WHERE a=760;\nUPDATE t2 SET c='sixty-nine thousand four hundred seventy-one' WHERE a=761;\nUPDATE t2 SET c='three thousand three hundred twenty' WHERE a=762;\nUPDATE t2 SET c='ninety-nine thousand six' WHERE a=763;\nUPDATE t2 SET c='ninety-seven thousand four hundred' WHERE a=764;\nUPDATE t2 SET c='twenty thousand one hundred sixty-three' WHERE a=765;\nUPDATE t2 SET c='six thousand seven hundred eighty-two' WHERE a=766;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-five' WHERE a=767;\nUPDATE t2 SET c='nine thousand three hundred one' WHERE a=768;\nUPDATE t2 SET c='thirty-six thousand nine hundred ninety-nine' WHERE a=769;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-two' WHERE a=770;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-one' WHERE a=771;\nUPDATE t2 SET c='fifty-nine thousand six hundred sixty-six' WHERE a=772;\nUPDATE t2 SET c='eighty-one thousand two hundred forty-three' WHERE a=773;\nUPDATE t2 SET c='thirty-six thousand eight hundred twelve' WHERE a=774;\nUPDATE t2 SET c='thirteen thousand five hundred ninety-eight' WHERE a=775;\nUPDATE t2 SET c='one thousand ninety-nine' WHERE a=776;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-four' WHERE a=777;\nUPDATE t2 SET c='forty-three thousand six hundred ten' WHERE a=778;\nUPDATE t2 SET c='fifty-six thousand eight hundred six' WHERE a=779;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-five' WHERE a=780;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-seven' WHERE a=781;\nUPDATE t2 SET c='ninety-five thousand seven hundred seventy-two' WHERE a=782;\nUPDATE t2 SET c='sixty-two thousand forty-seven' WHERE a=783;\nUPDATE t2 SET c='eighty-seven thousand ninety-four' WHERE a=784;\nUPDATE t2 SET c='seventy-eight thousand seven hundred fifty-three' WHERE a=785;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-nine' WHERE a=786;\nUPDATE t2 SET c='fourteen thousand eight hundred sixty-six' WHERE a=787;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirteen' WHERE a=788;\nUPDATE t2 SET c='fifty-one thousand six hundred thirteen' WHERE a=789;\nUPDATE t2 SET c='fifty-two thousand six hundred thirty-four' WHERE a=790;\nUPDATE t2 SET c='sixty-four thousand ninety-five' WHERE a=791;\nUPDATE t2 SET c='thirty-eight thousand nine hundred forty' WHERE a=792;\nUPDATE t2 SET c='ten thousand sixty-four' WHERE a=793;\nUPDATE t2 SET c='twenty-eight thousand seven hundred sixteen' WHERE a=794;\nUPDATE t2 SET c='forty-nine thousand seven hundred sixty-three' WHERE a=795;\nUPDATE t2 SET c='eighty thousand seventy-four' WHERE a=796;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-five' WHERE a=797;\nUPDATE t2 SET c='seventy-three thousand two hundred sixty-eight' WHERE a=798;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-seven' WHERE a=799;\nUPDATE t2 SET c='four thousand one hundred forty-four' WHERE a=800;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-four' WHERE a=801;\nUPDATE t2 SET c='seventy-four thousand nine hundred ninety-one' WHERE a=802;\nUPDATE t2 SET c='forty-five thousand three hundred thirty-eight' WHERE a=803;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty' WHERE a=804;\nUPDATE t2 SET c='sixty-eight thousand four hundred ninety' WHERE a=805;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty-nine' WHERE a=806;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-one' WHERE a=807;\nUPDATE t2 SET c='twelve thousand one hundred sixty-six' WHERE a=808;\nUPDATE t2 SET c='forty-nine thousand two hundred eleven' WHERE a=809;\nUPDATE t2 SET c='twenty-two thousand six hundred twelve' WHERE a=810;\nUPDATE t2 SET c='fifty-three thousand five hundred sixty-nine' WHERE a=811;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-four' WHERE a=812;\nUPDATE t2 SET c='nine thousand ninety-seven' WHERE a=813;\nUPDATE t2 SET c='eighteen thousand seven hundred thirteen' WHERE a=814;\nUPDATE t2 SET c='fifteen thousand three hundred sixty-five' WHERE a=815;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-eight' WHERE a=816;\nUPDATE t2 SET c='eighty-eight thousand three hundred five' WHERE a=817;\nUPDATE t2 SET c='twenty-five thousand three hundred thirty' WHERE a=818;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy' WHERE a=819;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy' WHERE a=820;\nUPDATE t2 SET c='forty-one thousand one hundred twenty-six' WHERE a=821;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-five' WHERE a=822;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty-six' WHERE a=823;\nUPDATE t2 SET c='twenty-seven thousand three hundred four' WHERE a=824;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-six' WHERE a=825;\nUPDATE t2 SET c='seven thousand three hundred eighty' WHERE a=826;\nUPDATE t2 SET c='eighty-four thousand nine hundred twenty-eight' WHERE a=827;\nUPDATE t2 SET c='seventy-five thousand twenty' WHERE a=828;\nUPDATE t2 SET c='nineteen thousand two hundred twenty-eight' WHERE a=829;\nUPDATE t2 SET c='ninety-eight thousand seven hundred thirteen' WHERE a=830;\nUPDATE t2 SET c='ninety-six thousand four hundred eighty-four' WHERE a=831;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-four' WHERE a=832;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy-three' WHERE a=833;\nUPDATE t2 SET c='ninety-five thousand three hundred forty-eight' WHERE a=834;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-four' WHERE a=835;\nUPDATE t2 SET c='forty-one thousand twenty-nine' WHERE a=836;\nUPDATE t2 SET c='eighty-two thousand five hundred thirteen' WHERE a=837;\nUPDATE t2 SET c='forty-six thousand one hundred seventy-seven' WHERE a=838;\nUPDATE t2 SET c='ten thousand five hundred thirty-eight' WHERE a=839;\nUPDATE t2 SET c='fifty-seven thousand four hundred eighty-four' WHERE a=840;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety-one' WHERE a=841;\nUPDATE t2 SET c='twenty-four thousand seven hundred six' WHERE a=842;\nUPDATE t2 SET c='nine thousand nine hundred seventy-nine' WHERE a=843;\nUPDATE t2 SET c='fifty thousand seven hundred ninety-five' WHERE a=844;\nUPDATE t2 SET c='seven thousand six hundred twenty-two' WHERE a=845;\nUPDATE t2 SET c='sixty-six thousand one hundred eighty' WHERE a=846;\nUPDATE t2 SET c='five hundred forty-eight' WHERE a=847;\nUPDATE t2 SET c='forty-two thousand five hundred forty-six' WHERE a=848;\nUPDATE t2 SET c='ninety-seven thousand five hundred ninety-one' WHERE a=849;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-four' WHERE a=850;\nUPDATE t2 SET c='ninety-seven thousand six hundred seven' WHERE a=851;\nUPDATE t2 SET c='twenty-nine thousand two hundred five' WHERE a=852;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty-three' WHERE a=853;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-two' WHERE a=854;\nUPDATE t2 SET c='ninety-seven thousand three hundred ninety-three' WHERE a=855;\nUPDATE t2 SET c='forty-eight thousand eight hundred sixty-one' WHERE a=856;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-eight' WHERE a=857;\nUPDATE t2 SET c='sixty-seven thousand sixty-six' WHERE a=858;\nUPDATE t2 SET c='nine thousand five hundred forty-seven' WHERE a=859;\nUPDATE t2 SET c='thirty-eight thousand four hundred ninety-eight' WHERE a=860;\nUPDATE t2 SET c='sixty-six thousand twenty-one' WHERE a=861;\nUPDATE t2 SET c='twenty-seven thousand seven hundred sixty-four' WHERE a=862;\nUPDATE t2 SET c='forty thousand nine hundred fifty-five' WHERE a=863;\nUPDATE t2 SET c='thirty-eight thousand forty-four' WHERE a=864;\nUPDATE t2 SET c='twenty-nine thousand three hundred thirty-one' WHERE a=865;\nUPDATE t2 SET c='fifty-six thousand four hundred sixty-seven' WHERE a=866;\nUPDATE t2 SET c='fifty-one thousand eighty-three' WHERE a=867;\nUPDATE t2 SET c='seventy-nine thousand seven hundred sixty-five' WHERE a=868;\nUPDATE t2 SET c='thirty-six thousand fifteen' WHERE a=869;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-seven' WHERE a=870;\nUPDATE t2 SET c='forty-six thousand one hundred forty-nine' WHERE a=871;\nUPDATE t2 SET c='twenty-three thousand seventy-two' WHERE a=872;\nUPDATE t2 SET c='thirty-one thousand one hundred ninety-two' WHERE a=873;\nUPDATE t2 SET c='sixty thousand twelve' WHERE a=874;\nUPDATE t2 SET c='eighteen thousand six hundred twenty-five' WHERE a=875;\nUPDATE t2 SET c='seven thousand fifty-six' WHERE a=876;\nUPDATE t2 SET c='ninety-four thousand six hundred forty' WHERE a=877;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifteen' WHERE a=878;\nUPDATE t2 SET c='eighty-four thousand three hundred sixty-nine' WHERE a=879;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-four' WHERE a=880;\nUPDATE t2 SET c='seventy-one thousand two hundred three' WHERE a=881;\nUPDATE t2 SET c='forty-one thousand four hundred fifty-nine' WHERE a=882;\nUPDATE t2 SET c='seventy-five thousand six hundred seventy' WHERE a=883;\nUPDATE t2 SET c='seventy-eight thousand forty-four' WHERE a=884;\nUPDATE t2 SET c='eighty-one thousand four hundred thirty-nine' WHERE a=885;\nUPDATE t2 SET c='twelve thousand nine hundred forty-five' WHERE a=886;\nUPDATE t2 SET c='forty-five thousand six hundred twenty-six' WHERE a=887;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy' WHERE a=888;\nUPDATE t2 SET c='forty-four thousand two hundred three' WHERE a=889;\nUPDATE t2 SET c='seventy-nine thousand six hundred fifty-six' WHERE a=890;\nUPDATE t2 SET c='sixty-one thousand one hundred eighty-two' WHERE a=891;\nUPDATE t2 SET c='thirty-nine thousand seven hundred three' WHERE a=892;\nUPDATE t2 SET c='thirteen thousand four hundred fifty-one' WHERE a=893;\nUPDATE t2 SET c='fifty-six thousand nine hundred ninety-four' WHERE a=894;\nUPDATE t2 SET c='twenty-three thousand four hundred forty-seven' WHERE a=895;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=896;\nUPDATE t2 SET c='thirteen thousand seventy' WHERE a=897;\nUPDATE t2 SET c='fifteen thousand six hundred sixteen' WHERE a=898;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-three' WHERE a=899;\nUPDATE t2 SET c='forty-nine thousand two hundred fourteen' WHERE a=900;\nUPDATE t2 SET c='sixteen thousand eight hundred fifty-four' WHERE a=901;\nUPDATE t2 SET c='thirty-eight thousand one hundred eighty' WHERE a=902;\nUPDATE t2 SET c='seventy-four thousand eight hundred sixty-four' WHERE a=903;\nUPDATE t2 SET c='eighty-two thousand six hundred thirty-seven' WHERE a=904;\nUPDATE t2 SET c='seventy-two thousand three hundred twenty-three' WHERE a=905;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety-two' WHERE a=906;\nUPDATE t2 SET c='fifty-five thousand two hundred eighty-four' WHERE a=907;\nUPDATE t2 SET c='forty-two thousand two hundred fifty-six' WHERE a=908;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-eight' WHERE a=909;\nUPDATE t2 SET c='thirty-six thousand two hundred eighty-six' WHERE a=910;\nUPDATE t2 SET c='fifty-seven thousand eighteen' WHERE a=911;\nUPDATE t2 SET c='three thousand thirty-six' WHERE a=912;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seventy-six' WHERE a=913;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=914;\nUPDATE t2 SET c='seventeen thousand twenty' WHERE a=915;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eleven' WHERE a=916;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifteen' WHERE a=917;\nUPDATE t2 SET c='sixty-three thousand one hundred three' WHERE a=918;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-nine' WHERE a=919;\nUPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=920;\nUPDATE t2 SET c='twenty-nine thousand six hundred eighty-two' WHERE a=921;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-eight' WHERE a=922;\nUPDATE t2 SET c='nine thousand six hundred sixteen' WHERE a=923;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-seven' WHERE a=924;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy-nine' WHERE a=925;\nUPDATE t2 SET c='twenty-nine thousand one hundred twenty-three' WHERE a=926;\nUPDATE t2 SET c='fifty-five thousand three hundred twenty-two' WHERE a=927;\nUPDATE t2 SET c='eighty-six thousand three hundred six' WHERE a=928;\nUPDATE t2 SET c='nine thousand seven hundred thirty-one' WHERE a=929;\nUPDATE t2 SET c='ninety-nine thousand four hundred fourteen' WHERE a=930;\nUPDATE t2 SET c='forty thousand six hundred twenty-one' WHERE a=931;\nUPDATE t2 SET c='ninety-four thousand six hundred nine' WHERE a=932;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty-eight' WHERE a=933;\nUPDATE t2 SET c='four thousand three hundred fifty-six' WHERE a=934;\nUPDATE t2 SET c='fifty-five thousand twenty-eight' WHERE a=935;\nUPDATE t2 SET c='seven hundred fifty-four' WHERE a=936;\nUPDATE t2 SET c='eighty-one thousand two hundred three' WHERE a=937;\nUPDATE t2 SET c='seventeen thousand seven hundred eighty-three' WHERE a=938;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-nine' WHERE a=939;\nUPDATE t2 SET c='eighty-three thousand six hundred twelve' WHERE a=940;\nUPDATE t2 SET c='twenty-five thousand one hundred thirty-eight' WHERE a=941;\nUPDATE t2 SET c='fifteen thousand eight hundred nine' WHERE a=942;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty' WHERE a=943;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirteen' WHERE a=944;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifteen' WHERE a=945;\nUPDATE t2 SET c='thirty-eight thousand two hundred twenty-six' WHERE a=946;\nUPDATE t2 SET c='forty thousand eight hundred seventy-five' WHERE a=947;\nUPDATE t2 SET c='forty thousand one hundred thirty-six' WHERE a=948;\nUPDATE t2 SET c='sixty-nine thousand seven hundred seven' WHERE a=949;\nUPDATE t2 SET c='fifty-three thousand four' WHERE a=950;\nUPDATE t2 SET c='thirty-six thousand six hundred sixty-seven' WHERE a=951;\nUPDATE t2 SET c='sixty-seven thousand one hundred four' WHERE a=952;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-nine' WHERE a=953;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty' WHERE a=954;\nUPDATE t2 SET c='sixty-six thousand eleven' WHERE a=955;\nUPDATE t2 SET c='forty-four thousand twenty-three' WHERE a=956;\nUPDATE t2 SET c='two thousand two hundred twenty-nine' WHERE a=957;\nUPDATE t2 SET c='sixty-five thousand one hundred seventy-four' WHERE a=958;\nUPDATE t2 SET c='eleven thousand four hundred ninety-four' WHERE a=959;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-five' WHERE a=960;\nUPDATE t2 SET c='twelve thousand two hundred thirteen' WHERE a=961;\nUPDATE t2 SET c='fifty-two thousand one hundred sixty-five' WHERE a=962;\nUPDATE t2 SET c='ten thousand three hundred twenty-one' WHERE a=963;\nUPDATE t2 SET c='seventy-four thousand five hundred seventeen' WHERE a=964;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-nine' WHERE a=965;\nUPDATE t2 SET c='fifty-seven thousand eighty-six' WHERE a=966;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-eight' WHERE a=967;\nUPDATE t2 SET c='ninety-one thousand two hundred thirty-three' WHERE a=968;\nUPDATE t2 SET c='sixty-seven thousand two hundred forty-two' WHERE a=969;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-five' WHERE a=970;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-six' WHERE a=971;\nUPDATE t2 SET c='fifty-one thousand six hundred seventeen' WHERE a=972;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty-eight' WHERE a=973;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-five' WHERE a=974;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-one' WHERE a=975;\nUPDATE t2 SET c='twenty-nine thousand eight hundred eighty-four' WHERE a=976;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-three' WHERE a=977;\nUPDATE t2 SET c='thirty-six thousand seven hundred' WHERE a=978;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-eight' WHERE a=979;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-two' WHERE a=980;\nUPDATE t2 SET c='fifty-four thousand seven hundred ninety-three' WHERE a=981;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-six' WHERE a=982;\nUPDATE t2 SET c='eighty-seven thousand seven hundred fifty-three' WHERE a=983;\nUPDATE t2 SET c='three thousand eight hundred sixty-six' WHERE a=984;\nUPDATE t2 SET c='ninety-six thousand eighty-three' WHERE a=985;\nUPDATE t2 SET c='sixty-six thousand sixty-two' WHERE a=986;\nUPDATE t2 SET c='eleven thousand eight hundred twenty' WHERE a=987;\nUPDATE t2 SET c='sixty-one thousand five hundred ninety' WHERE a=988;\nUPDATE t2 SET c='seventy-six thousand six hundred twenty-four' WHERE a=989;\nUPDATE t2 SET c='eighty-five thousand three hundred forty-seven' WHERE a=990;\nUPDATE t2 SET c='eighty-five thousand seven hundred sixty-seven' WHERE a=991;\nUPDATE t2 SET c='four thousand four hundred ninety-nine' WHERE a=992;\nUPDATE t2 SET c='seventy-one thousand one hundred eighteen' WHERE a=993;\nUPDATE t2 SET c='ninety-five thousand five hundred thirty-one' WHERE a=994;\nUPDATE t2 SET c='ninety-six thousand five hundred eighty' WHERE a=995;\nUPDATE t2 SET c='seventy-four thousand two hundred forty-three' WHERE a=996;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty-four' WHERE a=997;\nUPDATE t2 SET c='twelve thousand four hundred eighty-nine' WHERE a=998;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-four' WHERE a=999;\nUPDATE t2 SET c='eighty thousand nine hundred ninety-eight' WHERE a=1000;\nUPDATE t2 SET c='twenty-five thousand five hundred seventy-one' WHERE a=1001;\nUPDATE t2 SET c='five thousand one hundred eighty-eight' WHERE a=1002;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-nine' WHERE a=1003;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty' WHERE a=1004;\nUPDATE t2 SET c='sixty thousand four hundred seventy-eight' WHERE a=1005;\nUPDATE t2 SET c='seventy thousand four hundred eighty-six' WHERE a=1006;\nUPDATE t2 SET c='sixty-two thousand nine hundred sixteen' WHERE a=1007;\nUPDATE t2 SET c='fifty-six thousand fifty-five' WHERE a=1008;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-six' WHERE a=1009;\nUPDATE t2 SET c='two thousand nine hundred forty-seven' WHERE a=1010;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=1011;\nUPDATE t2 SET c='eighty thousand four hundred eighty-three' WHERE a=1012;\nUPDATE t2 SET c='fourteen thousand six hundred forty-nine' WHERE a=1013;\nUPDATE t2 SET c='thirty-nine thousand seven hundred five' WHERE a=1014;\nUPDATE t2 SET c='ninety-eight thousand one hundred twenty' WHERE a=1015;\nUPDATE t2 SET c='forty thousand three hundred twenty-four' WHERE a=1016;\nUPDATE t2 SET c='nine thousand eight hundred ninety-one' WHERE a=1017;\nUPDATE t2 SET c='ten thousand two hundred seventy-two' WHERE a=1018;\nUPDATE t2 SET c='twenty-five thousand four hundred seventy-one' WHERE a=1019;\nUPDATE t2 SET c='nine thousand nine hundred eighty-three' WHERE a=1020;\nUPDATE t2 SET c='seventy-nine thousand three hundred twenty-six' WHERE a=1021;\nUPDATE t2 SET c='nine thousand three hundred eighty-three' WHERE a=1022;\nUPDATE t2 SET c='thirty-eight thousand five hundred four' WHERE a=1023;\nUPDATE t2 SET c='nine thousand seven hundred sixty-one' WHERE a=1024;\nUPDATE t2 SET c='ninety thousand seven hundred ninety-five' WHERE a=1025;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-seven' WHERE a=1026;\nUPDATE t2 SET c='seven thousand five hundred sixty-eight' WHERE a=1027;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty' WHERE a=1028;\nUPDATE t2 SET c='one thousand nine hundred twenty' WHERE a=1029;\nUPDATE t2 SET c='eighty-seven thousand one hundred eighty-two' WHERE a=1030;\nUPDATE t2 SET c='eleven thousand four hundred ninety-one' WHERE a=1031;\nUPDATE t2 SET c='thirty-seven thousand three hundred twenty' WHERE a=1032;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-nine' WHERE a=1033;\nUPDATE t2 SET c='eleven thousand five hundred eighty-seven' WHERE a=1034;\nUPDATE t2 SET c='thirty thousand four hundred ninety-one' WHERE a=1035;\nUPDATE t2 SET c='eighty thousand thirty' WHERE a=1036;\nUPDATE t2 SET c='sixty-nine thousand eight hundred eighty-three' WHERE a=1037;\nUPDATE t2 SET c='fifty-seven thousand eighteen' WHERE a=1038;\nUPDATE t2 SET c='six thousand eight hundred forty-eight' WHERE a=1039;\nUPDATE t2 SET c='forty-two thousand five hundred seventy-eight' WHERE a=1040;\nUPDATE t2 SET c='eighty-four thousand ninety-four' WHERE a=1041;\nUPDATE t2 SET c='twenty-seven thousand six hundred fifty' WHERE a=1042;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-eight' WHERE a=1043;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty' WHERE a=1044;\nUPDATE t2 SET c='eighteen thousand twenty' WHERE a=1045;\nUPDATE t2 SET c='thirty-one thousand three hundred seventy' WHERE a=1046;\nUPDATE t2 SET c='twenty-five thousand nine hundred forty-nine' WHERE a=1047;\nUPDATE t2 SET c='fifteen thousand six hundred eleven' WHERE a=1048;\nUPDATE t2 SET c='twelve thousand seventeen' WHERE a=1049;\nUPDATE t2 SET c='ten thousand five hundred ninety' WHERE a=1050;\nUPDATE t2 SET c='twenty-six thousand six hundred fifteen' WHERE a=1051;\nUPDATE t2 SET c='seventy-seven thousand sixty-six' WHERE a=1052;\nUPDATE t2 SET c='twenty-four thousand six hundred five' WHERE a=1053;\nUPDATE t2 SET c='fifty-one thousand four hundred twenty-three' WHERE a=1054;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-two' WHERE a=1055;\nUPDATE t2 SET c='forty-three thousand five hundred twenty-four' WHERE a=1056;\nUPDATE t2 SET c='thirty-eight thousand two hundred sixty' WHERE a=1057;\nUPDATE t2 SET c='eighty-six thousand five hundred seventy-seven' WHERE a=1058;\nUPDATE t2 SET c='seven thousand nine hundred thirty-five' WHERE a=1059;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty' WHERE a=1060;\nUPDATE t2 SET c='sixty-seven thousand nine hundred seventy-seven' WHERE a=1061;\nUPDATE t2 SET c='thirty thousand five hundred eighty-two' WHERE a=1062;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-four' WHERE a=1063;\nUPDATE t2 SET c='two thousand five hundred twenty-nine' WHERE a=1064;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seventy-three' WHERE a=1065;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty' WHERE a=1066;\nUPDATE t2 SET c='seventy thousand two hundred ninety-five' WHERE a=1067;\nUPDATE t2 SET c='twenty-one thousand four hundred sixty-three' WHERE a=1068;\nUPDATE t2 SET c='eighty-three thousand seventy-four' WHERE a=1069;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty-six' WHERE a=1070;\nUPDATE t2 SET c='ninety-six thousand fifteen' WHERE a=1071;\nUPDATE t2 SET c='thirty-nine thousand four hundred nineteen' WHERE a=1072;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-four' WHERE a=1073;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-three' WHERE a=1074;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty' WHERE a=1075;\nUPDATE t2 SET c='twenty-four thousand thirty-four' WHERE a=1076;\nUPDATE t2 SET c='twenty-two thousand seven hundred fifty-seven' WHERE a=1077;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy' WHERE a=1078;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-three' WHERE a=1079;\nUPDATE t2 SET c='sixty-three thousand six hundred fourteen' WHERE a=1080;\nUPDATE t2 SET c='fifty-three thousand four hundred forty-two' WHERE a=1081;\nUPDATE t2 SET c='thirty-one thousand thirty-seven' WHERE a=1082;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy' WHERE a=1083;\nUPDATE t2 SET c='fifty-seven thousand eight hundred fourteen' WHERE a=1084;\nUPDATE t2 SET c='sixty-nine thousand one hundred forty' WHERE a=1085;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-six' WHERE a=1086;\nUPDATE t2 SET c='fourteen thousand ninety-four' WHERE a=1087;\nUPDATE t2 SET c='seventy-two thousand four hundred fifty' WHERE a=1088;\nUPDATE t2 SET c='twenty-one thousand three hundred thirty-seven' WHERE a=1089;\nUPDATE t2 SET c='sixty-three thousand seven hundred eighty-five' WHERE a=1090;\nUPDATE t2 SET c='fifteen thousand seventy-nine' WHERE a=1091;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixty' WHERE a=1092;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventy-seven' WHERE a=1093;\nUPDATE t2 SET c='thirteen thousand nine hundred six' WHERE a=1094;\nUPDATE t2 SET c='seventy-two thousand three hundred eighty-six' WHERE a=1095;\nUPDATE t2 SET c='ninety-three thousand eight hundred eighty-eight' WHERE a=1096;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-eight' WHERE a=1097;\nUPDATE t2 SET c='twenty thousand nine hundred eighty-nine' WHERE a=1098;\nUPDATE t2 SET c='fourteen thousand three hundred forty-three' WHERE a=1099;\nUPDATE t2 SET c='one thousand three hundred forty-seven' WHERE a=1100;\nUPDATE t2 SET c='fifty-eight thousand one hundred forty-one' WHERE a=1101;\nUPDATE t2 SET c='three thousand one hundred seventeen' WHERE a=1102;\nUPDATE t2 SET c='nineteen thousand two hundred forty-nine' WHERE a=1103;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-five' WHERE a=1104;\nUPDATE t2 SET c='thirty-seven thousand one hundred sixty-one' WHERE a=1105;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy' WHERE a=1106;\nUPDATE t2 SET c='sixty-two thousand eighty-five' WHERE a=1107;\nUPDATE t2 SET c='sixty-eight thousand one hundred nineteen' WHERE a=1108;\nUPDATE t2 SET c='twenty-seven thousand six hundred twenty-one' WHERE a=1109;\nUPDATE t2 SET c='five thousand six hundred forty-seven' WHERE a=1110;\nUPDATE t2 SET c='eighty thousand five hundred sixty-eight' WHERE a=1111;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirty-six' WHERE a=1112;\nUPDATE t2 SET c='eighty thousand four hundred fourteen' WHERE a=1113;\nUPDATE t2 SET c='forty-seven thousand five hundred sixty-one' WHERE a=1114;\nUPDATE t2 SET c='thirteen thousand nine hundred fifty' WHERE a=1115;\nUPDATE t2 SET c='sixty-three thousand six hundred ninety-six' WHERE a=1116;\nUPDATE t2 SET c='seventy thousand nine hundred seventy-three' WHERE a=1117;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-seven' WHERE a=1118;\nUPDATE t2 SET c='ninety thousand five hundred eighty' WHERE a=1119;\nUPDATE t2 SET c='forty-five thousand seven hundred thirteen' WHERE a=1120;\nUPDATE t2 SET c='forty-one thousand six hundred ninety-five' WHERE a=1121;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty-eight' WHERE a=1122;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-seven' WHERE a=1123;\nUPDATE t2 SET c='five thousand two hundred ninety-two' WHERE a=1124;\nUPDATE t2 SET c='fifty-seven thousand four hundred twenty-five' WHERE a=1125;\nUPDATE t2 SET c='sixty-six thousand two hundred sixteen' WHERE a=1126;\nUPDATE t2 SET c='twelve thousand four' WHERE a=1127;\nUPDATE t2 SET c='thirty-nine thousand eight hundred twenty' WHERE a=1128;\nUPDATE t2 SET c='sixty-five thousand two hundred two' WHERE a=1129;\nUPDATE t2 SET c='eighty-six thousand five hundred forty' WHERE a=1130;\nUPDATE t2 SET c='five thousand six hundred twenty' WHERE a=1131;\nUPDATE t2 SET c='ninety-eight thousand five hundred forty-three' WHERE a=1132;\nUPDATE t2 SET c='twelve thousand eighty-four' WHERE a=1133;\nUPDATE t2 SET c='forty-two thousand five hundred twenty-three' WHERE a=1134;\nUPDATE t2 SET c='sixty-one thousand forty-nine' WHERE a=1135;\nUPDATE t2 SET c='fifty-four thousand two hundred thirty-three' WHERE a=1136;\nUPDATE t2 SET c='seventy-three thousand one hundred eighty-five' WHERE a=1137;\nUPDATE t2 SET c='fifty-four thousand nine hundred sixty' WHERE a=1138;\nUPDATE t2 SET c='seventeen thousand thirty-three' WHERE a=1139;\nUPDATE t2 SET c='fifty-two thousand four hundred twenty-six' WHERE a=1140;\nUPDATE t2 SET c='sixty-one thousand one hundred sixty-seven' WHERE a=1141;\nUPDATE t2 SET c='ninety thousand six hundred thirty' WHERE a=1142;\nUPDATE t2 SET c='fifteen thousand seventy-three' WHERE a=1143;\nUPDATE t2 SET c='ninety-five thousand seven hundred thirteen' WHERE a=1144;\nUPDATE t2 SET c='seventy-two thousand three hundred forty-seven' WHERE a=1145;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-seven' WHERE a=1146;\nUPDATE t2 SET c='seventy-one thousand one hundred eleven' WHERE a=1147;\nUPDATE t2 SET c='fifty-nine thousand nine hundred sixty-three' WHERE a=1148;\nUPDATE t2 SET c='eleven thousand six hundred thirty-nine' WHERE a=1149;\nUPDATE t2 SET c='fifty-seven thousand five hundred eleven' WHERE a=1150;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty-five' WHERE a=1151;\nUPDATE t2 SET c='twelve thousand six hundred eighty-nine' WHERE a=1152;\nUPDATE t2 SET c='sixty-six thousand nine hundred seventy-one' WHERE a=1153;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-four' WHERE a=1154;\nUPDATE t2 SET c='forty-two thousand eight hundred thirty-six' WHERE a=1155;\nUPDATE t2 SET c='eighty-seven thousand two hundred forty-three' WHERE a=1156;\nUPDATE t2 SET c='nine thousand twenty-nine' WHERE a=1157;\nUPDATE t2 SET c='twenty-nine thousand seven hundred four' WHERE a=1158;\nUPDATE t2 SET c='ninety-four thousand nine hundred ninety-six' WHERE a=1159;\nUPDATE t2 SET c='eighty thousand seven hundred six' WHERE a=1160;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-nine' WHERE a=1161;\nUPDATE t2 SET c='three thousand ninety-two' WHERE a=1162;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy' WHERE a=1163;\nUPDATE t2 SET c='thirty-eight thousand two hundred ten' WHERE a=1164;\nUPDATE t2 SET c='ninety-two thousand nine hundred two' WHERE a=1165;\nUPDATE t2 SET c='fifteen thousand eight hundred thirty-nine' WHERE a=1166;\nUPDATE t2 SET c='thirty-three thousand one hundred seventy-seven' WHERE a=1167;\nUPDATE t2 SET c='ninety-one thousand three hundred twenty-five' WHERE a=1168;\nUPDATE t2 SET c='ninety-four thousand two hundred twenty-one' WHERE a=1169;\nUPDATE t2 SET c='sixty-one thousand four hundred forty-one' WHERE a=1170;\nUPDATE t2 SET c='forty-one thousand ten' WHERE a=1171;\nUPDATE t2 SET c='fifty thousand one hundred sixty-three' WHERE a=1172;\nUPDATE t2 SET c='eighty-three thousand three hundred sixteen' WHERE a=1173;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty-nine' WHERE a=1174;\nUPDATE t2 SET c='forty-one thousand five hundred forty-five' WHERE a=1175;\nUPDATE t2 SET c='two thousand sixty-two' WHERE a=1176;\nUPDATE t2 SET c='forty-one thousand three hundred eighty-six' WHERE a=1177;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-eight' WHERE a=1178;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-six' WHERE a=1179;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-six' WHERE a=1180;\nUPDATE t2 SET c='eighty-four thousand one hundred eight' WHERE a=1181;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty' WHERE a=1182;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-seven' WHERE a=1183;\nUPDATE t2 SET c='seventy-four thousand nine hundred fifty-nine' WHERE a=1184;\nUPDATE t2 SET c='seventy thousand five hundred thirty-one' WHERE a=1185;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirteen' WHERE a=1186;\nUPDATE t2 SET c='thirty-five thousand nine hundred eighty-seven' WHERE a=1187;\nUPDATE t2 SET c='fifty-four thousand four hundred twenty' WHERE a=1188;\nUPDATE t2 SET c='twenty-nine thousand one hundred ninety-five' WHERE a=1189;\nUPDATE t2 SET c='eight thousand eight hundred twenty-five' WHERE a=1190;\nUPDATE t2 SET c='fifty-three thousand six hundred eighty-nine' WHERE a=1191;\nUPDATE t2 SET c='one thousand seven hundred seventy-two' WHERE a=1192;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-seven' WHERE a=1193;\nUPDATE t2 SET c='three thousand six hundred forty-two' WHERE a=1194;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-five' WHERE a=1195;\nUPDATE t2 SET c='eighty-six thousand thirty-nine' WHERE a=1196;\nUPDATE t2 SET c='ninety-nine thousand eighty-seven' WHERE a=1197;\nUPDATE t2 SET c='thirty-four thousand five hundred twenty-five' WHERE a=1198;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety' WHERE a=1199;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-eight' WHERE a=1200;\nUPDATE t2 SET c='eighty-five thousand four hundred thirty-eight' WHERE a=1201;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=1202;\nUPDATE t2 SET c='eighty-nine thousand nine hundred seventy-five' WHERE a=1203;\nUPDATE t2 SET c='forty-eight thousand nine hundred forty-one' WHERE a=1204;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirty-nine' WHERE a=1205;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-seven' WHERE a=1206;\nUPDATE t2 SET c='forty-nine thousand six hundred ninety-two' WHERE a=1207;\nUPDATE t2 SET c='eighty-seven thousand one hundred one' WHERE a=1208;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-one' WHERE a=1209;\nUPDATE t2 SET c='fourteen thousand fifty-seven' WHERE a=1210;\nUPDATE t2 SET c='sixty-seven thousand six hundred thirty-one' WHERE a=1211;\nUPDATE t2 SET c='seventy-seven thousand eight hundred twenty-nine' WHERE a=1212;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-three' WHERE a=1213;\nUPDATE t2 SET c='seventy-four thousand four hundred twenty-five' WHERE a=1214;\nUPDATE t2 SET c='forty-two thousand nine hundred sixty-nine' WHERE a=1215;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-six' WHERE a=1216;\nUPDATE t2 SET c='sixty-three thousand one hundred twenty-eight' WHERE a=1217;\nUPDATE t2 SET c='three thousand eight hundred eleven' WHERE a=1218;\nUPDATE t2 SET c='eighty-one thousand nine hundred twenty-eight' WHERE a=1219;\nUPDATE t2 SET c='twenty-five thousand two hundred eighty' WHERE a=1220;\nUPDATE t2 SET c='eighty-two thousand sixty' WHERE a=1221;\nUPDATE t2 SET c='fifteen thousand two hundred eighteen' WHERE a=1222;\nUPDATE t2 SET c='three thousand five hundred four' WHERE a=1223;\nUPDATE t2 SET c='sixty thousand four hundred eighteen' WHERE a=1224;\nUPDATE t2 SET c='eighty-eight thousand nine hundred thirty-seven' WHERE a=1225;\nUPDATE t2 SET c='thirty-seven thousand nine hundred nine' WHERE a=1226;\nUPDATE t2 SET c='seventy thousand six hundred seventy-five' WHERE a=1227;\nUPDATE t2 SET c='fifty-three thousand six hundred ninety-two' WHERE a=1228;\nUPDATE t2 SET c='eight thousand one hundred thirty-nine' WHERE a=1229;\nUPDATE t2 SET c='two hundred forty-two' WHERE a=1230;\nUPDATE t2 SET c='forty thousand five hundred forty-seven' WHERE a=1231;\nUPDATE t2 SET c='fifty-two thousand nine hundred nineteen' WHERE a=1232;\nUPDATE t2 SET c='thirty-eight thousand seven hundred sixty-two' WHERE a=1233;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-two' WHERE a=1234;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy' WHERE a=1235;\nUPDATE t2 SET c='two thousand six hundred ten' WHERE a=1236;\nUPDATE t2 SET c='twenty-eight thousand seven hundred nineteen' WHERE a=1237;\nUPDATE t2 SET c='thirty-nine thousand seven hundred ninety-five' WHERE a=1238;\nUPDATE t2 SET c='thirty-two thousand two hundred nineteen' WHERE a=1239;\nUPDATE t2 SET c='forty-five thousand four hundred seventy-three' WHERE a=1240;\nUPDATE t2 SET c='seventy-one thousand eight hundred twenty-five' WHERE a=1241;\nUPDATE t2 SET c='eleven thousand six hundred ninety-three' WHERE a=1242;\nUPDATE t2 SET c='five thousand eight hundred eighty-eight' WHERE a=1243;\nUPDATE t2 SET c='one thousand one hundred fourteen' WHERE a=1244;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty-seven' WHERE a=1245;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighteen' WHERE a=1246;\nUPDATE t2 SET c='twenty-six thousand one hundred sixteen' WHERE a=1247;\nUPDATE t2 SET c='forty-four thousand nine hundred eight' WHERE a=1248;\nUPDATE t2 SET c='forty-nine thousand three hundred eighteen' WHERE a=1249;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty' WHERE a=1250;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-two' WHERE a=1251;\nUPDATE t2 SET c='one thousand six hundred six' WHERE a=1252;\nUPDATE t2 SET c='twenty-six thousand six hundred eighty-six' WHERE a=1253;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-three' WHERE a=1254;\nUPDATE t2 SET c='fifty thousand six hundred fifty-three' WHERE a=1255;\nUPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=1256;\nUPDATE t2 SET c='seventy-three thousand four hundred ninety-eight' WHERE a=1257;\nUPDATE t2 SET c='eighty-four thousand six hundred eighty-two' WHERE a=1258;\nUPDATE t2 SET c='eight thousand eighty-one' WHERE a=1259;\nUPDATE t2 SET c='thirty-eight thousand six hundred ten' WHERE a=1260;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixty' WHERE a=1261;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirteen' WHERE a=1262;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty-three' WHERE a=1263;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixteen' WHERE a=1264;\nUPDATE t2 SET c='forty thousand nine hundred sixty-eight' WHERE a=1265;\nUPDATE t2 SET c='ninety-three thousand three hundred fifty-one' WHERE a=1266;\nUPDATE t2 SET c='fifty thousand four hundred twenty-six' WHERE a=1267;\nUPDATE t2 SET c='seventy-two thousand eight hundred eighteen' WHERE a=1268;\nUPDATE t2 SET c='forty thousand eight hundred thirty-four' WHERE a=1269;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=1270;\nUPDATE t2 SET c='twenty-two thousand five hundred twenty-one' WHERE a=1271;\nUPDATE t2 SET c='fifty thousand seven hundred thirty-four' WHERE a=1272;\nUPDATE t2 SET c='sixty-eight thousand three hundred forty-seven' WHERE a=1273;\nUPDATE t2 SET c='fifty-one thousand two hundred eighteen' WHERE a=1274;\nUPDATE t2 SET c='forty-three thousand fifty-six' WHERE a=1275;\nUPDATE t2 SET c='fifty-four thousand three hundred three' WHERE a=1276;\nUPDATE t2 SET c='seventy-three thousand four hundred six' WHERE a=1277;\nUPDATE t2 SET c='seven thousand five hundred forty-four' WHERE a=1278;\nUPDATE t2 SET c='sixty-two thousand three hundred sixty-six' WHERE a=1279;\nUPDATE t2 SET c='thirty-six thousand two hundred eight' WHERE a=1280;\nUPDATE t2 SET c='eighty-three thousand four hundred sixty-six' WHERE a=1281;\nUPDATE t2 SET c='twelve thousand eight hundred sixty-three' WHERE a=1282;\nUPDATE t2 SET c='fourteen thousand thirty-one' WHERE a=1283;\nUPDATE t2 SET c='fifty-four thousand nine hundred twelve' WHERE a=1284;\nUPDATE t2 SET c='fifty-four thousand seven hundred twenty-seven' WHERE a=1285;\nUPDATE t2 SET c='fifty-six thousand four hundred nineteen' WHERE a=1286;\nUPDATE t2 SET c='two thousand four hundred eighty-nine' WHERE a=1287;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eight' WHERE a=1288;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-four' WHERE a=1289;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-six' WHERE a=1290;\nUPDATE t2 SET c='sixty thousand nine hundred ninety-six' WHERE a=1291;\nUPDATE t2 SET c='thirty-four thousand four hundred sixty-one' WHERE a=1292;\nUPDATE t2 SET c='eighty-three thousand eight hundred fifty-eight' WHERE a=1293;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fourteen' WHERE a=1294;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-two' WHERE a=1295;\nUPDATE t2 SET c='sixty-five thousand five hundred forty-two' WHERE a=1296;\nUPDATE t2 SET c='five thousand three hundred twenty-seven' WHERE a=1297;\nUPDATE t2 SET c='eighty-seven thousand three hundred eighty-eight' WHERE a=1298;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-nine' WHERE a=1299;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-nine' WHERE a=1300;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighty-nine' WHERE a=1301;\nUPDATE t2 SET c='eighty thousand three hundred forty-four' WHERE a=1302;\nUPDATE t2 SET c='forty-three thousand five hundred nine' WHERE a=1303;\nUPDATE t2 SET c='seventeen thousand three hundred seventy-four' WHERE a=1304;\nUPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=1305;\nUPDATE t2 SET c='eighty-one thousand six' WHERE a=1306;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty-seven' WHERE a=1307;\nUPDATE t2 SET c='ninety-two thousand nine hundred nineteen' WHERE a=1308;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty' WHERE a=1309;\nUPDATE t2 SET c='forty-six thousand nine hundred ninety-three' WHERE a=1310;\nUPDATE t2 SET c='ninety-nine thousand eight hundred five' WHERE a=1311;\nUPDATE t2 SET c='forty-one thousand six hundred fifty-seven' WHERE a=1312;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-four' WHERE a=1313;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventeen' WHERE a=1314;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-two' WHERE a=1315;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-three' WHERE a=1316;\nUPDATE t2 SET c='seventy-seven thousand one hundred fifty-two' WHERE a=1317;\nUPDATE t2 SET c='seventy-eight thousand seven hundred nine' WHERE a=1318;\nUPDATE t2 SET c='fifty-five thousand forty-six' WHERE a=1319;\nUPDATE t2 SET c='ninety-four thousand three hundred sixty-four' WHERE a=1320;\nUPDATE t2 SET c='fifty-eight thousand fifty' WHERE a=1321;\nUPDATE t2 SET c='four thousand six hundred forty-five' WHERE a=1322;\nUPDATE t2 SET c='eight thousand eighty-three' WHERE a=1323;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-three' WHERE a=1324;\nUPDATE t2 SET c='sixty-six thousand fifty-six' WHERE a=1325;\nUPDATE t2 SET c='twenty-two thousand seven hundred ninety-eight' WHERE a=1326;\nUPDATE t2 SET c='thirty-five thousand four hundred seventy-five' WHERE a=1327;\nUPDATE t2 SET c='seventy-three thousand two hundred ninety-four' WHERE a=1328;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-six' WHERE a=1329;\nUPDATE t2 SET c='forty thousand one hundred sixty-eight' WHERE a=1330;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-five' WHERE a=1331;\nUPDATE t2 SET c='thirty-four thousand eight hundred eight' WHERE a=1332;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-one' WHERE a=1333;\nUPDATE t2 SET c='sixty-seven thousand three hundred eighty-eight' WHERE a=1334;\nUPDATE t2 SET c='ninety-one thousand two hundred eighty-six' WHERE a=1335;\nUPDATE t2 SET c='fifty thousand two hundred forty-three' WHERE a=1336;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-seven' WHERE a=1337;\nUPDATE t2 SET c='thirty-three thousand nine hundred sixty' WHERE a=1338;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=1339;\nUPDATE t2 SET c='sixty-three thousand five hundred twenty-one' WHERE a=1340;\nUPDATE t2 SET c='ninety-five thousand eight hundred nine' WHERE a=1341;\nUPDATE t2 SET c='forty-five thousand six hundred fifty-four' WHERE a=1342;\nUPDATE t2 SET c='twenty-seven thousand one hundred six' WHERE a=1343;\nUPDATE t2 SET c='eight thousand seven hundred five' WHERE a=1344;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-six' WHERE a=1345;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-two' WHERE a=1346;\nUPDATE t2 SET c='fifteen thousand one hundred sixteen' WHERE a=1347;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixty-five' WHERE a=1348;\nUPDATE t2 SET c='forty-five thousand five hundred fourteen' WHERE a=1349;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-seven' WHERE a=1350;\nUPDATE t2 SET c='twenty-seven thousand four hundred forty' WHERE a=1351;\nUPDATE t2 SET c='eighty-four thousand five hundred seven' WHERE a=1352;\nUPDATE t2 SET c='sixty-two thousand six hundred eleven' WHERE a=1353;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-three' WHERE a=1354;\nUPDATE t2 SET c='forty-three thousand one hundred eighteen' WHERE a=1355;\nUPDATE t2 SET c='forty-nine thousand three hundred fifty' WHERE a=1356;\nUPDATE t2 SET c='ten thousand seventy-three' WHERE a=1357;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-three' WHERE a=1358;\nUPDATE t2 SET c='three thousand six hundred sixty-six' WHERE a=1359;\nUPDATE t2 SET c='fifty thousand four hundred seventy-four' WHERE a=1360;\nUPDATE t2 SET c='ninety-one thousand eight hundred twelve' WHERE a=1361;\nUPDATE t2 SET c='eight thousand seven hundred twenty-six' WHERE a=1362;\nUPDATE t2 SET c='two thousand seven hundred seventy' WHERE a=1363;\nUPDATE t2 SET c='ninety-eight thousand fifty-three' WHERE a=1364;\nUPDATE t2 SET c='seventy-seven thousand eight hundred twenty-four' WHERE a=1365;\nUPDATE t2 SET c='seventy-two thousand five hundred forty-nine' WHERE a=1366;\nUPDATE t2 SET c='four hundred eighty-nine' WHERE a=1367;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-eight' WHERE a=1368;\nUPDATE t2 SET c='sixty thousand five hundred eighty-eight' WHERE a=1369;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ninety-nine' WHERE a=1370;\nUPDATE t2 SET c='thirty-two thousand ninety-six' WHERE a=1371;\nUPDATE t2 SET c='sixty-four thousand six hundred thirty' WHERE a=1372;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety-one' WHERE a=1373;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-three' WHERE a=1374;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-one' WHERE a=1375;\nUPDATE t2 SET c='twenty-nine thousand two hundred fifty-two' WHERE a=1376;\nUPDATE t2 SET c='five thousand one hundred eighty-nine' WHERE a=1377;\nUPDATE t2 SET c='five thousand eight hundred sixty-three' WHERE a=1378;\nUPDATE t2 SET c='two thousand seventy-seven' WHERE a=1379;\nUPDATE t2 SET c='forty-six thousand seven hundred seven' WHERE a=1380;\nUPDATE t2 SET c='eight thousand one hundred sixty-two' WHERE a=1381;\nUPDATE t2 SET c='forty-five thousand eight hundred fifty' WHERE a=1382;\nUPDATE t2 SET c='eighty-two thousand eight hundred forty-three' WHERE a=1383;\nUPDATE t2 SET c='ninety-three thousand three hundred twenty-four' WHERE a=1384;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-two' WHERE a=1385;\nUPDATE t2 SET c='twelve thousand six hundred thirty-three' WHERE a=1386;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-three' WHERE a=1387;\nUPDATE t2 SET c='ninety-two thousand four hundred eleven' WHERE a=1388;\nUPDATE t2 SET c='seventy-three thousand seven hundred eighty-one' WHERE a=1389;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-eight' WHERE a=1390;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-seven' WHERE a=1391;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-one' WHERE a=1392;\nUPDATE t2 SET c='seventy thousand two hundred seventy-two' WHERE a=1393;\nUPDATE t2 SET c='forty thousand nine hundred fifty-four' WHERE a=1394;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty-seven' WHERE a=1395;\nUPDATE t2 SET c='eighty-four thousand nine hundred twelve' WHERE a=1396;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-nine' WHERE a=1397;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-five' WHERE a=1398;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-six' WHERE a=1399;\nUPDATE t2 SET c='seventy-seven thousand five hundred ninety-six' WHERE a=1400;\nUPDATE t2 SET c='two thousand ninety-nine' WHERE a=1401;\nUPDATE t2 SET c='eighty-two thousand six hundred fifteen' WHERE a=1402;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-five' WHERE a=1403;\nUPDATE t2 SET c='forty-one thousand sixty-seven' WHERE a=1404;\nUPDATE t2 SET c='thirty thousand six hundred seventy-two' WHERE a=1405;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=1406;\nUPDATE t2 SET c='eighty-five thousand three hundred forty-six' WHERE a=1407;\nUPDATE t2 SET c='twenty-nine thousand two hundred thirty-one' WHERE a=1408;\nUPDATE t2 SET c='sixty-six thousand four hundred thirteen' WHERE a=1409;\nUPDATE t2 SET c='forty thousand four hundred ninety-five' WHERE a=1410;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty' WHERE a=1411;\nUPDATE t2 SET c='ninety-one thousand six hundred one' WHERE a=1412;\nUPDATE t2 SET c='eighteen thousand eight hundred seventy-three' WHERE a=1413;\nUPDATE t2 SET c='ninety-three thousand six hundred thirteen' WHERE a=1414;\nUPDATE t2 SET c='seventeen thousand four hundred eighty-one' WHERE a=1415;\nUPDATE t2 SET c='eighty-nine thousand four hundred seventy-two' WHERE a=1416;\nUPDATE t2 SET c='thirty-four thousand two hundred fifty-three' WHERE a=1417;\nUPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=1418;\nUPDATE t2 SET c='four thousand eight hundred ten' WHERE a=1419;\nUPDATE t2 SET c='forty-four thousand eight hundred sixty-eight' WHERE a=1420;\nUPDATE t2 SET c='three hundred thirteen' WHERE a=1421;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifteen' WHERE a=1422;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy' WHERE a=1423;\nUPDATE t2 SET c='four thousand eight hundred forty-three' WHERE a=1424;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-three' WHERE a=1425;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-eight' WHERE a=1426;\nUPDATE t2 SET c='nine thousand ninety-eight' WHERE a=1427;\nUPDATE t2 SET c='eighty-seven thousand two hundred twenty-six' WHERE a=1428;\nUPDATE t2 SET c='eighty-one thousand nine hundred sixty-one' WHERE a=1429;\nUPDATE t2 SET c='thirty-six thousand six hundred twenty-three' WHERE a=1430;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-five' WHERE a=1431;\nUPDATE t2 SET c='sixty-nine thousand one hundred fourteen' WHERE a=1432;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety-seven' WHERE a=1433;\nUPDATE t2 SET c='fifty-five thousand three hundred thirteen' WHERE a=1434;\nUPDATE t2 SET c='eighteen thousand one hundred three' WHERE a=1435;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-two' WHERE a=1436;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-four' WHERE a=1437;\nUPDATE t2 SET c='ninety-two thousand two hundred thirty-six' WHERE a=1438;\nUPDATE t2 SET c='thirty thousand ninety-three' WHERE a=1439;\nUPDATE t2 SET c='thirteen thousand one hundred thirty' WHERE a=1440;\nUPDATE t2 SET c='forty-seven thousand nine hundred forty-three' WHERE a=1441;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty' WHERE a=1442;\nUPDATE t2 SET c='thirty-eight thousand seventeen' WHERE a=1443;\nUPDATE t2 SET c='eighteen thousand one hundred seventeen' WHERE a=1444;\nUPDATE t2 SET c='forty-three thousand four hundred ninety' WHERE a=1445;\nUPDATE t2 SET c='thirty-four thousand seven hundred ten' WHERE a=1446;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-seven' WHERE a=1447;\nUPDATE t2 SET c='eighty thousand seven hundred ninety-eight' WHERE a=1448;\nUPDATE t2 SET c='ninety thousand forty-eight' WHERE a=1449;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-three' WHERE a=1450;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy' WHERE a=1451;\nUPDATE t2 SET c='seventy-five thousand one hundred twenty-three' WHERE a=1452;\nUPDATE t2 SET c='sixty-nine thousand sixty-one' WHERE a=1453;\nUPDATE t2 SET c='fifty-eight thousand two hundred eighty-three' WHERE a=1454;\nUPDATE t2 SET c='thirty-one thousand four hundred six' WHERE a=1455;\nUPDATE t2 SET c='fifty-two thousand nine hundred seventy' WHERE a=1456;\nUPDATE t2 SET c='sixty-nine thousand five hundred fifty-two' WHERE a=1457;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-nine' WHERE a=1458;\nUPDATE t2 SET c='seventy-two thousand six hundred fifty-four' WHERE a=1459;\nUPDATE t2 SET c='forty-eight thousand three hundred sixty' WHERE a=1460;\nUPDATE t2 SET c='eighty-eight thousand four hundred eighty-three' WHERE a=1461;\nUPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=1462;\nUPDATE t2 SET c='eighty-seven thousand four hundred thirteen' WHERE a=1463;\nUPDATE t2 SET c='five thousand four hundred seventy-four' WHERE a=1464;\nUPDATE t2 SET c='twenty-one thousand seven hundred fifty' WHERE a=1465;\nUPDATE t2 SET c='twenty-two thousand four hundred fifty-one' WHERE a=1466;\nUPDATE t2 SET c='twenty-eight thousand two hundred one' WHERE a=1467;\nUPDATE t2 SET c='sixty-two thousand four hundred twenty-five' WHERE a=1468;\nUPDATE t2 SET c='thirty-seven thousand six hundred thirty-one' WHERE a=1469;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-three' WHERE a=1470;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-one' WHERE a=1471;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-five' WHERE a=1472;\nUPDATE t2 SET c='ninety-five thousand seven hundred seventy-four' WHERE a=1473;\nUPDATE t2 SET c='fifteen thousand eight hundred forty-one' WHERE a=1474;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirteen' WHERE a=1475;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-nine' WHERE a=1476;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-six' WHERE a=1477;\nUPDATE t2 SET c='ninety-nine thousand seven hundred sixty-seven' WHERE a=1478;\nUPDATE t2 SET c='three thousand seven hundred eighty-seven' WHERE a=1479;\nUPDATE t2 SET c='fifty-nine thousand two hundred sixteen' WHERE a=1480;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-three' WHERE a=1481;\nUPDATE t2 SET c='eighty-six thousand three hundred thirty-eight' WHERE a=1482;\nUPDATE t2 SET c='ninety thousand three hundred twenty-four' WHERE a=1483;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-four' WHERE a=1484;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-one' WHERE a=1485;\nUPDATE t2 SET c='seventy-two thousand three hundred fifteen' WHERE a=1486;\nUPDATE t2 SET c='fifty-five thousand seven' WHERE a=1487;\nUPDATE t2 SET c='twenty-seven thousand two hundred seventy-seven' WHERE a=1488;\nUPDATE t2 SET c='seventy-six thousand fourteen' WHERE a=1489;\nUPDATE t2 SET c='sixty-two thousand one hundred four' WHERE a=1490;\nUPDATE t2 SET c='twenty-four thousand sixty-four' WHERE a=1491;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=1492;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixteen' WHERE a=1493;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-two' WHERE a=1494;\nUPDATE t2 SET c='fifty-six thousand ninety-two' WHERE a=1495;\nUPDATE t2 SET c='forty thousand three hundred ten' WHERE a=1496;\nUPDATE t2 SET c='eleven thousand one hundred eighty-seven' WHERE a=1497;\nUPDATE t2 SET c='three hundred sixty-two' WHERE a=1498;\nUPDATE t2 SET c='ninety-five thousand ninety-seven' WHERE a=1499;\nUPDATE t2 SET c='eight thousand six hundred fifty-two' WHERE a=1500;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-six' WHERE a=1501;\nUPDATE t2 SET c='twenty-one thousand eight hundred thirty-seven' WHERE a=1502;\nUPDATE t2 SET c='seventy-four thousand four hundred ninety-four' WHERE a=1503;\nUPDATE t2 SET c='nineteen thousand six hundred thirty-six' WHERE a=1504;\nUPDATE t2 SET c='twenty-three thousand' WHERE a=1505;\nUPDATE t2 SET c='fourteen thousand eight hundred four' WHERE a=1506;\nUPDATE t2 SET c='forty thousand sixty-nine' WHERE a=1507;\nUPDATE t2 SET c='ninety-four thousand nine hundred sixteen' WHERE a=1508;\nUPDATE t2 SET c='eight thousand nine hundred twenty-eight' WHERE a=1509;\nUPDATE t2 SET c='eight thousand three hundred one' WHERE a=1510;\nUPDATE t2 SET c='eighty thousand eight hundred eighty-one' WHERE a=1511;\nUPDATE t2 SET c='forty-one thousand one hundred fifty-six' WHERE a=1512;\nUPDATE t2 SET c='fifteen thousand four hundred twenty' WHERE a=1513;\nUPDATE t2 SET c='ninety-two thousand four hundred eighty-one' WHERE a=1514;\nUPDATE t2 SET c='eight thousand sixty-one' WHERE a=1515;\nUPDATE t2 SET c='eighty-three thousand eight hundred thirty-four' WHERE a=1516;\nUPDATE t2 SET c='sixty-one thousand' WHERE a=1517;\nUPDATE t2 SET c='ninety-one thousand nine hundred eighty-two' WHERE a=1518;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-four' WHERE a=1519;\nUPDATE t2 SET c='fifty-six thousand thirty-four' WHERE a=1520;\nUPDATE t2 SET c='sixty-six thousand five hundred twenty-one' WHERE a=1521;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-five' WHERE a=1522;\nUPDATE t2 SET c='twenty-two thousand seven hundred eighty' WHERE a=1523;\nUPDATE t2 SET c='nine thousand eight hundred ninety-seven' WHERE a=1524;\nUPDATE t2 SET c='sixty-five thousand one hundred twenty-five' WHERE a=1525;\nUPDATE t2 SET c='thirty-nine thousand five hundred eighty-eight' WHERE a=1526;\nUPDATE t2 SET c='thirty thousand five hundred fifty-two' WHERE a=1527;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-one' WHERE a=1528;\nUPDATE t2 SET c='ninety-four thousand one hundred seventy-six' WHERE a=1529;\nUPDATE t2 SET c='seventy-seven thousand four hundred six' WHERE a=1530;\nUPDATE t2 SET c='eighty thousand nine hundred twenty-two' WHERE a=1531;\nUPDATE t2 SET c='ninety-two thousand five hundred fifty-three' WHERE a=1532;\nUPDATE t2 SET c='nine thousand four hundred fifty' WHERE a=1533;\nUPDATE t2 SET c='seventy-one thousand six hundred ninety-one' WHERE a=1534;\nUPDATE t2 SET c='thirty-five thousand seven hundred five' WHERE a=1535;\nUPDATE t2 SET c='twenty-five thousand six hundred sixty-six' WHERE a=1536;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-nine' WHERE a=1537;\nUPDATE t2 SET c='nine thousand nine hundred fifty-five' WHERE a=1538;\nUPDATE t2 SET c='fifty-five thousand eight hundred eighteen' WHERE a=1539;\nUPDATE t2 SET c='fifty-six thousand four hundred eighty-three' WHERE a=1540;\nUPDATE t2 SET c='forty-three thousand five hundred ninety-two' WHERE a=1541;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-eight' WHERE a=1542;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-eight' WHERE a=1543;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-six' WHERE a=1544;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirty-eight' WHERE a=1545;\nUPDATE t2 SET c='forty-nine thousand six hundred eight' WHERE a=1546;\nUPDATE t2 SET c='twenty thousand two hundred ninety-two' WHERE a=1547;\nUPDATE t2 SET c='thirty-eight thousand six hundred five' WHERE a=1548;\nUPDATE t2 SET c='nineteen thousand four hundred three' WHERE a=1549;\nUPDATE t2 SET c='forty-one thousand eight hundred ten' WHERE a=1550;\nUPDATE t2 SET c='eighty-nine thousand five hundred twenty-six' WHERE a=1551;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy-one' WHERE a=1552;\nUPDATE t2 SET c='sixty thousand two' WHERE a=1553;\nUPDATE t2 SET c='eighty-five thousand seven hundred seventy-five' WHERE a=1554;\nUPDATE t2 SET c='ninety thousand six hundred seventy-five' WHERE a=1555;\nUPDATE t2 SET c='seventeen thousand five hundred fifty-three' WHERE a=1556;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-seven' WHERE a=1557;\nUPDATE t2 SET c='thirty-eight thousand seven hundred seventy-one' WHERE a=1558;\nUPDATE t2 SET c='seventy-six thousand two hundred fifty-nine' WHERE a=1559;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty' WHERE a=1560;\nUPDATE t2 SET c='seventy-one thousand four hundred seventy-nine' WHERE a=1561;\nUPDATE t2 SET c='seventy thousand five hundred seventy-eight' WHERE a=1562;\nUPDATE t2 SET c='sixty-nine thousand six hundred four' WHERE a=1563;\nUPDATE t2 SET c='fifteen thousand six hundred forty-eight' WHERE a=1564;\nUPDATE t2 SET c='seventy-five thousand three hundred forty-seven' WHERE a=1565;\nUPDATE t2 SET c='forty-nine thousand two hundred thirty-two' WHERE a=1566;\nUPDATE t2 SET c='thirty thousand eight hundred sixty-eight' WHERE a=1567;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-six' WHERE a=1568;\nUPDATE t2 SET c='seventy-six thousand two hundred twelve' WHERE a=1569;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy' WHERE a=1570;\nUPDATE t2 SET c='eleven thousand eight hundred fifty-nine' WHERE a=1571;\nUPDATE t2 SET c='forty-four thousand four hundred eighty-seven' WHERE a=1572;\nUPDATE t2 SET c='thirty-seven thousand seven hundred twenty' WHERE a=1573;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-three' WHERE a=1574;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty' WHERE a=1575;\nUPDATE t2 SET c='sixteen thousand thirteen' WHERE a=1576;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-four' WHERE a=1577;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-two' WHERE a=1578;\nUPDATE t2 SET c='twelve thousand six hundred twenty' WHERE a=1579;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fourteen' WHERE a=1580;\nUPDATE t2 SET c='eighty-two thousand one hundred eleven' WHERE a=1581;\nUPDATE t2 SET c='forty-one thousand seventy-six' WHERE a=1582;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-nine' WHERE a=1583;\nUPDATE t2 SET c='ninety-two thousand five hundred twenty-five' WHERE a=1584;\nUPDATE t2 SET c='nine thousand seven hundred ninety' WHERE a=1585;\nUPDATE t2 SET c='fifty-one thousand ninety-four' WHERE a=1586;\nUPDATE t2 SET c='eighty-six thousand one hundred fifty-four' WHERE a=1587;\nUPDATE t2 SET c='sixty-three thousand one hundred five' WHERE a=1588;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-three' WHERE a=1589;\nUPDATE t2 SET c='thirty thousand seven hundred seventy-six' WHERE a=1590;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-nine' WHERE a=1591;\nUPDATE t2 SET c='forty-nine thousand three hundred ninety-four' WHERE a=1592;\nUPDATE t2 SET c='three thousand five hundred thirty-three' WHERE a=1593;\nUPDATE t2 SET c='eleven thousand' WHERE a=1594;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-eight' WHERE a=1595;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-nine' WHERE a=1596;\nUPDATE t2 SET c='forty thousand five hundred eighty-four' WHERE a=1597;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirteen' WHERE a=1598;\nUPDATE t2 SET c='thirty-four thousand three hundred ten' WHERE a=1599;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-three' WHERE a=1600;\nUPDATE t2 SET c='fifty-seven thousand seven hundred twenty-nine' WHERE a=1601;\nUPDATE t2 SET c='twenty thousand five' WHERE a=1602;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-five' WHERE a=1603;\nUPDATE t2 SET c='thirty-seven thousand seventy' WHERE a=1604;\nUPDATE t2 SET c='eighteen thousand five hundred twenty' WHERE a=1605;\nUPDATE t2 SET c='fifty-eight thousand seven hundred forty-three' WHERE a=1606;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-nine' WHERE a=1607;\nUPDATE t2 SET c='eighty thousand eight hundred seventy-nine' WHERE a=1608;\nUPDATE t2 SET c='forty-one thousand four hundred ninety-seven' WHERE a=1609;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-nine' WHERE a=1610;\nUPDATE t2 SET c='ninety-three thousand three hundred eight' WHERE a=1611;\nUPDATE t2 SET c='eighty-nine thousand six hundred ninety-nine' WHERE a=1612;\nUPDATE t2 SET c='fifty thousand three hundred ninety-four' WHERE a=1613;\nUPDATE t2 SET c='fifty-seven thousand six hundred twelve' WHERE a=1614;\nUPDATE t2 SET c='three thousand five hundred sixty-nine' WHERE a=1615;\nUPDATE t2 SET c='twenty thousand six hundred sixty-eight' WHERE a=1616;\nUPDATE t2 SET c='ninety-three thousand eleven' WHERE a=1617;\nUPDATE t2 SET c='twenty-six thousand six hundred six' WHERE a=1618;\nUPDATE t2 SET c='fifty-three thousand nine hundred eight' WHERE a=1619;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty-three' WHERE a=1620;\nUPDATE t2 SET c='forty thousand four hundred seventy-three' WHERE a=1621;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-two' WHERE a=1622;\nUPDATE t2 SET c='twenty-three thousand three hundred four' WHERE a=1623;\nUPDATE t2 SET c='thirty-eight thousand two hundred forty-four' WHERE a=1624;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty-eight' WHERE a=1625;\nUPDATE t2 SET c='seventy-one thousand seven hundred three' WHERE a=1626;\nUPDATE t2 SET c='seventy-three thousand twenty-six' WHERE a=1627;\nUPDATE t2 SET c='twenty-one thousand three hundred fifty-eight' WHERE a=1628;\nUPDATE t2 SET c='forty-seven thousand one hundred eight' WHERE a=1629;\nUPDATE t2 SET c='ninety-three thousand two hundred thirty-four' WHERE a=1630;\nUPDATE t2 SET c='eighty-two thousand seven hundred twenty' WHERE a=1631;\nUPDATE t2 SET c='twelve thousand seventy-four' WHERE a=1632;\nUPDATE t2 SET c='seventy-one thousand four hundred ninety-nine' WHERE a=1633;\nUPDATE t2 SET c='fifteen thousand two hundred sixty-two' WHERE a=1634;\nUPDATE t2 SET c='thirty-three thousand eighteen' WHERE a=1635;\nUPDATE t2 SET c='fifty-one thousand fifty-nine' WHERE a=1636;\nUPDATE t2 SET c='eighty-nine thousand four hundred four' WHERE a=1637;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-nine' WHERE a=1638;\nUPDATE t2 SET c='forty-five thousand six hundred nine' WHERE a=1639;\nUPDATE t2 SET c='ninety-three thousand fifty-six' WHERE a=1640;\nUPDATE t2 SET c='eighty-nine thousand one hundred seventy-eight' WHERE a=1641;\nUPDATE t2 SET c='eighty-nine thousand nine hundred sixty-two' WHERE a=1642;\nUPDATE t2 SET c='ninety-six thousand seventy-four' WHERE a=1643;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-four' WHERE a=1644;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty-nine' WHERE a=1645;\nUPDATE t2 SET c='ninety-six thousand five hundred five' WHERE a=1646;\nUPDATE t2 SET c='ninety-six thousand thirty-four' WHERE a=1647;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirty-eight' WHERE a=1648;\nUPDATE t2 SET c='seventeen thousand one' WHERE a=1649;\nUPDATE t2 SET c='fifteen thousand six hundred eight' WHERE a=1650;\nUPDATE t2 SET c='forty-nine thousand four hundred one' WHERE a=1651;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-six' WHERE a=1652;\nUPDATE t2 SET c='twenty-four thousand seven hundred eleven' WHERE a=1653;\nUPDATE t2 SET c='eighty-seven thousand two hundred eighty-four' WHERE a=1654;\nUPDATE t2 SET c='ten thousand four hundred eighty-five' WHERE a=1655;\nUPDATE t2 SET c='eleven thousand two hundred fifty-three' WHERE a=1656;\nUPDATE t2 SET c='one thousand nine hundred twenty-three' WHERE a=1657;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-five' WHERE a=1658;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty-five' WHERE a=1659;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifty' WHERE a=1660;\nUPDATE t2 SET c='twenty-six thousand four hundred nineteen' WHERE a=1661;\nUPDATE t2 SET c='five thousand two hundred sixty-two' WHERE a=1662;\nUPDATE t2 SET c='eleven thousand six hundred sixty-seven' WHERE a=1663;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-three' WHERE a=1664;\nUPDATE t2 SET c='sixty-two thousand nine hundred eighteen' WHERE a=1665;\nUPDATE t2 SET c='eighty-three thousand forty-two' WHERE a=1666;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-two' WHERE a=1667;\nUPDATE t2 SET c='fifty-six thousand six hundred twelve' WHERE a=1668;\nUPDATE t2 SET c='forty-four thousand seven hundred ninety-nine' WHERE a=1669;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-seven' WHERE a=1670;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-three' WHERE a=1671;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-two' WHERE a=1672;\nUPDATE t2 SET c='eighty-three thousand four hundred seventy-two' WHERE a=1673;\nUPDATE t2 SET c='forty-nine thousand forty-seven' WHERE a=1674;\nUPDATE t2 SET c='ninety-three thousand two hundred fifty' WHERE a=1675;\nUPDATE t2 SET c='four thousand six hundred sixteen' WHERE a=1676;\nUPDATE t2 SET c='eighty-three thousand six hundred eighty-one' WHERE a=1677;\nUPDATE t2 SET c='fifteen thousand two hundred fifty-three' WHERE a=1678;\nUPDATE t2 SET c='sixteen thousand seven hundred seventy-four' WHERE a=1679;\nUPDATE t2 SET c='seventy-nine thousand two hundred fifty' WHERE a=1680;\nUPDATE t2 SET c='sixty thousand three hundred thirty' WHERE a=1681;\nUPDATE t2 SET c='ninety-one thousand three hundred eight' WHERE a=1682;\nUPDATE t2 SET c='twenty-four thousand seven hundred ninety-nine' WHERE a=1683;\nUPDATE t2 SET c='forty-eight thousand seven hundred forty' WHERE a=1684;\nUPDATE t2 SET c='twenty thousand six hundred eighteen' WHERE a=1685;\nUPDATE t2 SET c='twenty-two thousand two hundred ninety' WHERE a=1686;\nUPDATE t2 SET c='seventy-three thousand six hundred eight' WHERE a=1687;\nUPDATE t2 SET c='seventeen thousand nine hundred twenty-seven' WHERE a=1688;\nUPDATE t2 SET c='sixty-seven thousand four hundred sixty-three' WHERE a=1689;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety-one' WHERE a=1690;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy-seven' WHERE a=1691;\nUPDATE t2 SET c='eighty-one thousand ninety-seven' WHERE a=1692;\nUPDATE t2 SET c='fifty-one thousand six hundred fifty-four' WHERE a=1693;\nUPDATE t2 SET c='eighty-two thousand one hundred ninety-seven' WHERE a=1694;\nUPDATE t2 SET c='sixteen thousand ninety-one' WHERE a=1695;\nUPDATE t2 SET c='sixty-two thousand five hundred thirty-five' WHERE a=1696;\nUPDATE t2 SET c='eighty-four thousand one hundred thirty-nine' WHERE a=1697;\nUPDATE t2 SET c='twenty-one thousand two hundred forty-five' WHERE a=1698;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-one' WHERE a=1699;\nUPDATE t2 SET c='twenty-five thousand three hundred twenty-eight' WHERE a=1700;\nUPDATE t2 SET c='one thousand six hundred seventeen' WHERE a=1701;\nUPDATE t2 SET c='twenty-five thousand eight hundred nine' WHERE a=1702;\nUPDATE t2 SET c='ninety-four thousand six hundred twenty-five' WHERE a=1703;\nUPDATE t2 SET c='eighty-eight thousand one hundred thirty-seven' WHERE a=1704;\nUPDATE t2 SET c='sixty-two thousand six hundred forty' WHERE a=1705;\nUPDATE t2 SET c='eighteen thousand seven hundred fifteen' WHERE a=1706;\nUPDATE t2 SET c='forty-three thousand five hundred thirteen' WHERE a=1707;\nUPDATE t2 SET c='eighty-one thousand two hundred four' WHERE a=1708;\nUPDATE t2 SET c='ten thousand three hundred thirty-nine' WHERE a=1709;\nUPDATE t2 SET c='thirteen thousand six hundred ninety-six' WHERE a=1710;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fifty-six' WHERE a=1711;\nUPDATE t2 SET c='forty-seven thousand seven hundred seventy' WHERE a=1712;\nUPDATE t2 SET c='fifty-one thousand four hundred ten' WHERE a=1713;\nUPDATE t2 SET c='eighty-six thousand four hundred thirty-one' WHERE a=1714;\nUPDATE t2 SET c='eighteen thousand four hundred sixteen' WHERE a=1715;\nUPDATE t2 SET c='fifty-three thousand nine hundred fifty-eight' WHERE a=1716;\nUPDATE t2 SET c='sixty-two thousand sixty-six' WHERE a=1717;\nUPDATE t2 SET c='sixty-one thousand six hundred nine' WHERE a=1718;\nUPDATE t2 SET c='seventy-five thousand nine hundred forty-two' WHERE a=1719;\nUPDATE t2 SET c='fifty-two thousand six hundred seventy-seven' WHERE a=1720;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-eight' WHERE a=1721;\nUPDATE t2 SET c='twenty-eight thousand fifteen' WHERE a=1722;\nUPDATE t2 SET c='twenty-eight thousand six hundred fifty-seven' WHERE a=1723;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty-nine' WHERE a=1724;\nUPDATE t2 SET c='fifty-four thousand eight hundred thirty-seven' WHERE a=1725;\nUPDATE t2 SET c='seventy-three thousand one hundred eight' WHERE a=1726;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighty-five' WHERE a=1727;\nUPDATE t2 SET c='nine thousand twenty-eight' WHERE a=1728;\nUPDATE t2 SET c='fifty-two thousand five hundred ninety-nine' WHERE a=1729;\nUPDATE t2 SET c='seventy-three thousand one hundred fifteen' WHERE a=1730;\nUPDATE t2 SET c='nineteen thousand two hundred eleven' WHERE a=1731;\nUPDATE t2 SET c='eighty-three thousand nine' WHERE a=1732;\nUPDATE t2 SET c='eight thousand two hundred thirty-seven' WHERE a=1733;\nUPDATE t2 SET c='ninety-three thousand seven hundred twenty-five' WHERE a=1734;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-one' WHERE a=1735;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty' WHERE a=1736;\nUPDATE t2 SET c='sixty-eight thousand one hundred seven' WHERE a=1737;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirty-three' WHERE a=1738;\nUPDATE t2 SET c='forty-eight thousand nine hundred seventy-seven' WHERE a=1739;\nUPDATE t2 SET c='five thousand seven hundred eighty-five' WHERE a=1740;\nUPDATE t2 SET c='fifty-five thousand seven hundred six' WHERE a=1741;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty' WHERE a=1742;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-two' WHERE a=1743;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty' WHERE a=1744;\nUPDATE t2 SET c='eighty-one thousand eight hundred forty-eight' WHERE a=1745;\nUPDATE t2 SET c='twenty-three thousand eighty-three' WHERE a=1746;\nUPDATE t2 SET c='eighty-seven thousand six hundred seventy-eight' WHERE a=1747;\nUPDATE t2 SET c='sixty-one thousand five hundred twelve' WHERE a=1748;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty' WHERE a=1749;\nUPDATE t2 SET c='three thousand eight hundred fifteen' WHERE a=1750;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-eight' WHERE a=1751;\nUPDATE t2 SET c='fifty-three thousand eighty-eight' WHERE a=1752;\nUPDATE t2 SET c='fifty-six thousand nine hundred thirty' WHERE a=1753;\nUPDATE t2 SET c='eighty-nine thousand nine hundred twenty-seven' WHERE a=1754;\nUPDATE t2 SET c='six thousand two hundred twenty' WHERE a=1755;\nUPDATE t2 SET c='three thousand one hundred sixty-six' WHERE a=1756;\nUPDATE t2 SET c='thirty-one thousand two hundred thirty-four' WHERE a=1757;\nUPDATE t2 SET c='seventy-one' WHERE a=1758;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=1759;\nUPDATE t2 SET c='twenty-three thousand one hundred fifty' WHERE a=1760;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-nine' WHERE a=1761;\nUPDATE t2 SET c='twenty-six thousand six hundred thirteen' WHERE a=1762;\nUPDATE t2 SET c='seventy-six thousand six hundred three' WHERE a=1763;\nUPDATE t2 SET c='ten thousand four hundred eighty-three' WHERE a=1764;\nUPDATE t2 SET c='fifty-one thousand two hundred thirty-seven' WHERE a=1765;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=1766;\nUPDATE t2 SET c='ninety-three thousand five hundred eleven' WHERE a=1767;\nUPDATE t2 SET c='twelve thousand three hundred forty-one' WHERE a=1768;\nUPDATE t2 SET c='thirty-eight thousand four' WHERE a=1769;\nUPDATE t2 SET c='seventy-seven thousand two hundred nine' WHERE a=1770;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-six' WHERE a=1771;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-seven' WHERE a=1772;\nUPDATE t2 SET c='fifty thousand forty-two' WHERE a=1773;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-five' WHERE a=1774;\nUPDATE t2 SET c='eighteen thousand seven hundred sixty-four' WHERE a=1775;\nUPDATE t2 SET c='fifty-three thousand eighty-one' WHERE a=1776;\nUPDATE t2 SET c='ninety-six thousand four hundred forty' WHERE a=1777;\nUPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=1778;\nUPDATE t2 SET c='nineteen thousand one hundred seventeen' WHERE a=1779;\nUPDATE t2 SET c='sixteen thousand seven hundred fifty-four' WHERE a=1780;\nUPDATE t2 SET c='sixty-eight thousand four hundred ten' WHERE a=1781;\nUPDATE t2 SET c='six thousand forty-three' WHERE a=1782;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixty-six' WHERE a=1783;\nUPDATE t2 SET c='fifty thousand thirty-eight' WHERE a=1784;\nUPDATE t2 SET c='twenty-three thousand six hundred thirty-five' WHERE a=1785;\nUPDATE t2 SET c='three thousand four hundred one' WHERE a=1786;\nUPDATE t2 SET c='thirty-eight thousand eight hundred seventy-six' WHERE a=1787;\nUPDATE t2 SET c='thirteen thousand four hundred forty-nine' WHERE a=1788;\nUPDATE t2 SET c='thirty-seven thousand five hundred ninety-four' WHERE a=1789;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-four' WHERE a=1790;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy' WHERE a=1791;\nUPDATE t2 SET c='seventy-three thousand five hundred one' WHERE a=1792;\nUPDATE t2 SET c='forty-four thousand nine hundred twenty-four' WHERE a=1793;\nUPDATE t2 SET c='thirty-five thousand three hundred twelve' WHERE a=1794;\nUPDATE t2 SET c='twenty-three thousand nine hundred two' WHERE a=1795;\nUPDATE t2 SET c='five thousand four hundred ninety-four' WHERE a=1796;\nUPDATE t2 SET c='thirty-six thousand four hundred twenty-nine' WHERE a=1797;\nUPDATE t2 SET c='seven thousand eight hundred three' WHERE a=1798;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-eight' WHERE a=1799;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-eight' WHERE a=1800;\nUPDATE t2 SET c='ninety-three thousand thirty-nine' WHERE a=1801;\nUPDATE t2 SET c='eighty-nine thousand seven hundred sixty-nine' WHERE a=1802;\nUPDATE t2 SET c='two thousand seventy-four' WHERE a=1803;\nUPDATE t2 SET c='eighty-seven thousand six hundred seventy' WHERE a=1804;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-seven' WHERE a=1805;\nUPDATE t2 SET c='seven thousand five hundred forty' WHERE a=1806;\nUPDATE t2 SET c='thirty-seven thousand nine hundred one' WHERE a=1807;\nUPDATE t2 SET c='ninety-six thousand eight hundred sixty-eight' WHERE a=1808;\nUPDATE t2 SET c='sixty-five thousand seven hundred seventy-three' WHERE a=1809;\nUPDATE t2 SET c='forty-two thousand two hundred forty-seven' WHERE a=1810;\nUPDATE t2 SET c='thirty-nine thousand eight hundred twenty-seven' WHERE a=1811;\nUPDATE t2 SET c='forty-six thousand three hundred three' WHERE a=1812;\nUPDATE t2 SET c='twelve thousand three hundred ninety-two' WHERE a=1813;\nUPDATE t2 SET c='eighty-six thousand two hundred fifteen' WHERE a=1814;\nUPDATE t2 SET c='nine thousand six hundred sixty-four' WHERE a=1815;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirteen' WHERE a=1816;\nUPDATE t2 SET c='eighty-five thousand three hundred twelve' WHERE a=1817;\nUPDATE t2 SET c='thirty-two thousand seven hundred thirty-two' WHERE a=1818;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-seven' WHERE a=1819;\nUPDATE t2 SET c='forty-six thousand six hundred thirteen' WHERE a=1820;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty-eight' WHERE a=1821;\nUPDATE t2 SET c='twelve thousand four hundred four' WHERE a=1822;\nUPDATE t2 SET c='twenty thousand three hundred ninety-five' WHERE a=1823;\nUPDATE t2 SET c='thirty thousand one hundred one' WHERE a=1824;\nUPDATE t2 SET c='eighty thousand nine hundred thirty-three' WHERE a=1825;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=1826;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-nine' WHERE a=1827;\nUPDATE t2 SET c='thirty-six thousand six hundred sixteen' WHERE a=1828;\nUPDATE t2 SET c='twenty thousand nine hundred thirty-eight' WHERE a=1829;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-eight' WHERE a=1830;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-five' WHERE a=1831;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixty-nine' WHERE a=1832;\nUPDATE t2 SET c='thirty-three thousand eight hundred forty-six' WHERE a=1833;\nUPDATE t2 SET c='eighty-three thousand five hundred twelve' WHERE a=1834;\nUPDATE t2 SET c='seventeen thousand four hundred four' WHERE a=1835;\nUPDATE t2 SET c='eight thousand seven hundred eleven' WHERE a=1836;\nUPDATE t2 SET c='seventy-nine thousand thirty-two' WHERE a=1837;\nUPDATE t2 SET c='thirteen thousand eight hundred four' WHERE a=1838;\nUPDATE t2 SET c='sixty-eight thousand one hundred one' WHERE a=1839;\nUPDATE t2 SET c='eight thousand six hundred seventy-five' WHERE a=1840;\nUPDATE t2 SET c='forty-five thousand six hundred six' WHERE a=1841;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=1842;\nUPDATE t2 SET c='fourteen thousand four hundred forty-eight' WHERE a=1843;\nUPDATE t2 SET c='seventy-seven thousand nine' WHERE a=1844;\nUPDATE t2 SET c='seventy-eight thousand sixty' WHERE a=1845;\nUPDATE t2 SET c='seventy thousand five hundred thirteen' WHERE a=1846;\nUPDATE t2 SET c='fifty-seven thousand eight hundred sixty-seven' WHERE a=1847;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty' WHERE a=1848;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-six' WHERE a=1849;\nUPDATE t2 SET c='forty-one thousand sixty-seven' WHERE a=1850;\nUPDATE t2 SET c='twelve thousand nine hundred fifty-nine' WHERE a=1851;\nUPDATE t2 SET c='nine thousand eight hundred twenty-nine' WHERE a=1852;\nUPDATE t2 SET c='sixty thousand five hundred sixty-five' WHERE a=1853;\nUPDATE t2 SET c='ninety-seven thousand five hundred ninety-six' WHERE a=1854;\nUPDATE t2 SET c='ninety-one thousand four hundred thirty-three' WHERE a=1855;\nUPDATE t2 SET c='sixty-two thousand one hundred eight' WHERE a=1856;\nUPDATE t2 SET c='fifty-two thousand two hundred seventy-one' WHERE a=1857;\nUPDATE t2 SET c='seventy-four thousand nine hundred eighty-one' WHERE a=1858;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-eight' WHERE a=1859;\nUPDATE t2 SET c='sixty-two thousand five hundred eighteen' WHERE a=1860;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-nine' WHERE a=1861;\nUPDATE t2 SET c='eleven thousand two hundred six' WHERE a=1862;\nUPDATE t2 SET c='twenty-four thousand ninety-three' WHERE a=1863;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-one' WHERE a=1864;\nUPDATE t2 SET c='ninety-three thousand four hundred twenty-two' WHERE a=1865;\nUPDATE t2 SET c='forty-four thousand five hundred sixty-nine' WHERE a=1866;\nUPDATE t2 SET c='seventy-seven thousand nine hundred sixty-five' WHERE a=1867;\nUPDATE t2 SET c='ninety thousand one hundred seventeen' WHERE a=1868;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=1869;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirty-three' WHERE a=1870;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-three' WHERE a=1871;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-nine' WHERE a=1872;\nUPDATE t2 SET c='twenty-three thousand two hundred fifty' WHERE a=1873;\nUPDATE t2 SET c='four thousand three hundred ninety-six' WHERE a=1874;\nUPDATE t2 SET c='sixty-six thousand six hundred seventeen' WHERE a=1875;\nUPDATE t2 SET c='thirty-nine thousand fifty-seven' WHERE a=1876;\nUPDATE t2 SET c='sixty-five thousand five hundred forty-two' WHERE a=1877;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy-six' WHERE a=1878;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventy-five' WHERE a=1879;\nUPDATE t2 SET c='sixty-eight thousand fifty-five' WHERE a=1880;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-six' WHERE a=1881;\nUPDATE t2 SET c='twenty thousand four hundred fifty-two' WHERE a=1882;\nUPDATE t2 SET c='fifty thousand four hundred thirteen' WHERE a=1883;\nUPDATE t2 SET c='forty-three thousand four hundred thirty' WHERE a=1884;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=1885;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifty-two' WHERE a=1886;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-three' WHERE a=1887;\nUPDATE t2 SET c='four thousand three hundred eighty-four' WHERE a=1888;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirteen' WHERE a=1889;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-two' WHERE a=1890;\nUPDATE t2 SET c='thirty-nine thousand two hundred twenty-nine' WHERE a=1891;\nUPDATE t2 SET c='sixteen thousand nine hundred forty-two' WHERE a=1892;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-three' WHERE a=1893;\nUPDATE t2 SET c='two thousand eight hundred ten' WHERE a=1894;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-four' WHERE a=1895;\nUPDATE t2 SET c='sixty-six thousand five hundred seventy-four' WHERE a=1896;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-two' WHERE a=1897;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty-six' WHERE a=1898;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-nine' WHERE a=1899;\nUPDATE t2 SET c='eighty-five thousand thirty-three' WHERE a=1900;\nUPDATE t2 SET c='seven thousand four hundred thirty-eight' WHERE a=1901;\nUPDATE t2 SET c='twenty-nine thousand ninety-six' WHERE a=1902;\nUPDATE t2 SET c='twenty-three thousand four hundred two' WHERE a=1903;\nUPDATE t2 SET c='two thousand six hundred sixty-six' WHERE a=1904;\nUPDATE t2 SET c='six thousand five hundred forty-five' WHERE a=1905;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-four' WHERE a=1906;\nUPDATE t2 SET c='eighty-five thousand three hundred nine' WHERE a=1907;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-nine' WHERE a=1908;\nUPDATE t2 SET c='one thousand three hundred forty-seven' WHERE a=1909;\nUPDATE t2 SET c='fifty-three thousand three hundred sixty-nine' WHERE a=1910;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighty-seven' WHERE a=1911;\nUPDATE t2 SET c='ninety-six thousand one hundred three' WHERE a=1912;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-six' WHERE a=1913;\nUPDATE t2 SET c='thirty-five thousand six hundred forty-nine' WHERE a=1914;\nUPDATE t2 SET c='nineteen thousand one hundred eighty-nine' WHERE a=1915;\nUPDATE t2 SET c='forty-eight thousand ninety-five' WHERE a=1916;\nUPDATE t2 SET c='ninety-four thousand eight hundred eleven' WHERE a=1917;\nUPDATE t2 SET c='forty-nine thousand forty-eight' WHERE a=1918;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-eight' WHERE a=1919;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy-eight' WHERE a=1920;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-nine' WHERE a=1921;\nUPDATE t2 SET c='ten thousand one hundred thirty-six' WHERE a=1922;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-four' WHERE a=1923;\nUPDATE t2 SET c='forty-one thousand nine hundred sixty-eight' WHERE a=1924;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-eight' WHERE a=1925;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=1926;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-one' WHERE a=1927;\nUPDATE t2 SET c='seventy-six thousand nine hundred fourteen' WHERE a=1928;\nUPDATE t2 SET c='five thousand four hundred sixty-seven' WHERE a=1929;\nUPDATE t2 SET c='four thousand one hundred fifty-nine' WHERE a=1930;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty-nine' WHERE a=1931;\nUPDATE t2 SET c='forty-three thousand eight hundred ninety-nine' WHERE a=1932;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-two' WHERE a=1933;\nUPDATE t2 SET c='forty-eight thousand five hundred eighty-five' WHERE a=1934;\nUPDATE t2 SET c='eighty thousand two hundred ninety-six' WHERE a=1935;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixteen' WHERE a=1936;\nUPDATE t2 SET c='ninety-six thousand one hundred thirty-seven' WHERE a=1937;\nUPDATE t2 SET c='fifty-three thousand three hundred thirteen' WHERE a=1938;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty-seven' WHERE a=1939;\nUPDATE t2 SET c='sixty-five thousand seven hundred sixty-five' WHERE a=1940;\nUPDATE t2 SET c='nineteen thousand seven hundred fifteen' WHERE a=1941;\nUPDATE t2 SET c='five hundred one' WHERE a=1942;\nUPDATE t2 SET c='sixty-two thousand three hundred fifteen' WHERE a=1943;\nUPDATE t2 SET c='twenty-two thousand four hundred twelve' WHERE a=1944;\nUPDATE t2 SET c='eighty-one thousand four hundred fifty-one' WHERE a=1945;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-four' WHERE a=1946;\nUPDATE t2 SET c='seventy thousand five hundred seventy-four' WHERE a=1947;\nUPDATE t2 SET c='sixty-seven thousand two hundred two' WHERE a=1948;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixty-six' WHERE a=1949;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty' WHERE a=1950;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-two' WHERE a=1951;\nUPDATE t2 SET c='two thousand eight hundred forty-two' WHERE a=1952;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy-three' WHERE a=1953;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-six' WHERE a=1954;\nUPDATE t2 SET c='seventy-four thousand five hundred six' WHERE a=1955;\nUPDATE t2 SET c='twenty-seven thousand nine hundred thirty-seven' WHERE a=1956;\nUPDATE t2 SET c='fifty-seven thousand forty' WHERE a=1957;\nUPDATE t2 SET c='twenty-nine thousand eight' WHERE a=1958;\nUPDATE t2 SET c='two thousand two hundred fifty-six' WHERE a=1959;\nUPDATE t2 SET c='twenty-nine thousand four hundred fifty-seven' WHERE a=1960;\nUPDATE t2 SET c='forty-nine thousand eight hundred thirty-three' WHERE a=1961;\nUPDATE t2 SET c='forty-four thousand six hundred thirty-five' WHERE a=1962;\nUPDATE t2 SET c='eight thousand four hundred seventy-one' WHERE a=1963;\nUPDATE t2 SET c='eighty-five thousand two hundred' WHERE a=1964;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety-four' WHERE a=1965;\nUPDATE t2 SET c='three thousand nine hundred ninety-six' WHERE a=1966;\nUPDATE t2 SET c='eighty-one thousand ninety' WHERE a=1967;\nUPDATE t2 SET c='ten thousand four hundred thirty-four' WHERE a=1968;\nUPDATE t2 SET c='eighty-one thousand two hundred fifty-two' WHERE a=1969;\nUPDATE t2 SET c='sixty thousand two hundred thirty-one' WHERE a=1970;\nUPDATE t2 SET c='nine thousand three hundred thirty-seven' WHERE a=1971;\nUPDATE t2 SET c='sixty-one thousand three hundred' WHERE a=1972;\nUPDATE t2 SET c='seventy-eight thousand ninety-six' WHERE a=1973;\nUPDATE t2 SET c='eighty-three thousand eight hundred sixty-one' WHERE a=1974;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-three' WHERE a=1975;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirteen' WHERE a=1976;\nUPDATE t2 SET c='eight thousand five hundred four' WHERE a=1977;\nUPDATE t2 SET c='ninety-four thousand four' WHERE a=1978;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty' WHERE a=1979;\nUPDATE t2 SET c='seventy-two thousand five hundred thirty-five' WHERE a=1980;\nUPDATE t2 SET c='fifty thousand thirteen' WHERE a=1981;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-one' WHERE a=1982;\nUPDATE t2 SET c='eighty-five thousand fifty-two' WHERE a=1983;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-two' WHERE a=1984;\nUPDATE t2 SET c='fourteen thousand nine hundred seventy-two' WHERE a=1985;\nUPDATE t2 SET c='eighty-six thousand eight hundred seventy-two' WHERE a=1986;\nUPDATE t2 SET c='thirty thousand six hundred twenty-one' WHERE a=1987;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-seven' WHERE a=1988;\nUPDATE t2 SET c='ninety-six thousand ninety-nine' WHERE a=1989;\nUPDATE t2 SET c='four thousand three hundred eight' WHERE a=1990;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy' WHERE a=1991;\nUPDATE t2 SET c='ten thousand nine hundred ninety-eight' WHERE a=1992;\nUPDATE t2 SET c='fifteen thousand three hundred fifteen' WHERE a=1993;\nUPDATE t2 SET c='fifty-eight thousand seven hundred nineteen' WHERE a=1994;\nUPDATE t2 SET c='thirty-four thousand two hundred twenty-five' WHERE a=1995;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty-seven' WHERE a=1996;\nUPDATE t2 SET c='seventy-seven thousand two hundred eighty-five' WHERE a=1997;\nUPDATE t2 SET c='twenty-eight thousand two hundred eighty-six' WHERE a=1998;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-six' WHERE a=1999;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-one' WHERE a=2000;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-seven' WHERE a=2001;\nUPDATE t2 SET c='forty-two thousand one' WHERE a=2002;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-six' WHERE a=2003;\nUPDATE t2 SET c='seventy-seven thousand five hundred twenty-six' WHERE a=2004;\nUPDATE t2 SET c='thirty-nine thousand four hundred sixty-eight' WHERE a=2005;\nUPDATE t2 SET c='forty-eight thousand forty-nine' WHERE a=2006;\nUPDATE t2 SET c='eighty-seven thousand four hundred forty-three' WHERE a=2007;\nUPDATE t2 SET c='seventy-one thousand eight hundred' WHERE a=2008;\nUPDATE t2 SET c='fifty thousand five hundred fifty-three' WHERE a=2009;\nUPDATE t2 SET c='forty-three thousand' WHERE a=2010;\nUPDATE t2 SET c='seven thousand six hundred twenty-eight' WHERE a=2011;\nUPDATE t2 SET c='nine thousand eight hundred fifty-seven' WHERE a=2012;\nUPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=2013;\nUPDATE t2 SET c='seventy-eight thousand six hundred ten' WHERE a=2014;\nUPDATE t2 SET c='eighty thousand one hundred forty-three' WHERE a=2015;\nUPDATE t2 SET c='seventy-six thousand nine hundred fifty-six' WHERE a=2016;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-two' WHERE a=2017;\nUPDATE t2 SET c='sixty-four thousand eight hundred forty-seven' WHERE a=2018;\nUPDATE t2 SET c='ninety-five thousand four hundred forty-nine' WHERE a=2019;\nUPDATE t2 SET c='three thousand three hundred fifty-four' WHERE a=2020;\nUPDATE t2 SET c='sixteen thousand seven hundred sixty-eight' WHERE a=2021;\nUPDATE t2 SET c='sixty-eight thousand eight hundred ninety-two' WHERE a=2022;\nUPDATE t2 SET c='seventy thousand two hundred twenty-three' WHERE a=2023;\nUPDATE t2 SET c='twenty-one thousand three hundred seventy-three' WHERE a=2024;\nUPDATE t2 SET c='one thousand four hundred twenty-two' WHERE a=2025;\nUPDATE t2 SET c='fifty-eight thousand three hundred ten' WHERE a=2026;\nUPDATE t2 SET c='forty-six thousand five hundred sixty-eight' WHERE a=2027;\nUPDATE t2 SET c='thirty thousand eight hundred fifty-three' WHERE a=2028;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-one' WHERE a=2029;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-nine' WHERE a=2030;\nUPDATE t2 SET c='five thousand four hundred seventy-nine' WHERE a=2031;\nUPDATE t2 SET c='seventy-five thousand one hundred twenty' WHERE a=2032;\nUPDATE t2 SET c='ten thousand five hundred sixty' WHERE a=2033;\nUPDATE t2 SET c='five hundred fifty-one' WHERE a=2034;\nUPDATE t2 SET c='fifteen thousand eight hundred four' WHERE a=2035;\nUPDATE t2 SET c='thirty thousand four hundred fourteen' WHERE a=2036;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty' WHERE a=2037;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety' WHERE a=2038;\nUPDATE t2 SET c='seventy thousand one hundred seventy-five' WHERE a=2039;\nUPDATE t2 SET c='twenty-two thousand four hundred twenty-five' WHERE a=2040;\nUPDATE t2 SET c='eighty-four thousand four hundred four' WHERE a=2041;\nUPDATE t2 SET c='forty-nine thousand four hundred nineteen' WHERE a=2042;\nUPDATE t2 SET c='thirty-two thousand six hundred seventy-nine' WHERE a=2043;\nUPDATE t2 SET c='fourteen thousand seven hundred ten' WHERE a=2044;\nUPDATE t2 SET c='sixty thousand nine hundred eighty-eight' WHERE a=2045;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-five' WHERE a=2046;\nUPDATE t2 SET c='twelve thousand two hundred seventy-one' WHERE a=2047;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-nine' WHERE a=2048;\nUPDATE t2 SET c='forty thousand one hundred fifty-two' WHERE a=2049;\nUPDATE t2 SET c='seventy thousand two hundred thirty-eight' WHERE a=2050;\nUPDATE t2 SET c='sixty-two thousand nine hundred thirty-five' WHERE a=2051;\nUPDATE t2 SET c='four thousand one hundred ninety-one' WHERE a=2052;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-eight' WHERE a=2053;\nUPDATE t2 SET c='eighteen thousand seven hundred two' WHERE a=2054;\nUPDATE t2 SET c='eighty-eight thousand eighteen' WHERE a=2055;\nUPDATE t2 SET c='twenty-seven thousand eighty-one' WHERE a=2056;\nUPDATE t2 SET c='sixty-nine thousand nine hundred five' WHERE a=2057;\nUPDATE t2 SET c='sixteen thousand six hundred forty-seven' WHERE a=2058;\nUPDATE t2 SET c='eighty thousand five hundred fifty-one' WHERE a=2059;\nUPDATE t2 SET c='thirty-seven thousand two hundred twenty' WHERE a=2060;\nUPDATE t2 SET c='twenty-two thousand six hundred four' WHERE a=2061;\nUPDATE t2 SET c='twelve thousand fourteen' WHERE a=2062;\nUPDATE t2 SET c='ninety-two thousand seven hundred fifty-eight' WHERE a=2063;\nUPDATE t2 SET c='fifty-one thousand four hundred six' WHERE a=2064;\nUPDATE t2 SET c='thirty-three thousand sixty-seven' WHERE a=2065;\nUPDATE t2 SET c='eighty-three thousand six hundred thirty' WHERE a=2066;\nUPDATE t2 SET c='fifteen thousand eight hundred forty-one' WHERE a=2067;\nUPDATE t2 SET c='sixty-six thousand eight hundred sixty-seven' WHERE a=2068;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=2069;\nUPDATE t2 SET c='seventy-four thousand ninety-four' WHERE a=2070;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-two' WHERE a=2071;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-six' WHERE a=2072;\nUPDATE t2 SET c='ninety-eight thousand six hundred fifty-nine' WHERE a=2073;\nUPDATE t2 SET c='fifty-seven thousand six hundred thirty-one' WHERE a=2074;\nUPDATE t2 SET c='ninety-one thousand nine hundred forty-three' WHERE a=2075;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-seven' WHERE a=2076;\nUPDATE t2 SET c='twenty-one thousand seven hundred ten' WHERE a=2077;\nUPDATE t2 SET c='thirteen thousand five hundred two' WHERE a=2078;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-one' WHERE a=2079;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-five' WHERE a=2080;\nUPDATE t2 SET c='twenty thousand one hundred sixty-four' WHERE a=2081;\nUPDATE t2 SET c='eighteen thousand four hundred fifty' WHERE a=2082;\nUPDATE t2 SET c='twenty-four thousand seven hundred eighty-two' WHERE a=2083;\nUPDATE t2 SET c='forty-seven thousand nine hundred forty-nine' WHERE a=2084;\nUPDATE t2 SET c='forty-five thousand three hundred eighty-four' WHERE a=2085;\nUPDATE t2 SET c='seventy thousand four hundred fifty-two' WHERE a=2086;\nUPDATE t2 SET c='ninety-eight thousand five hundred forty-seven' WHERE a=2087;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-four' WHERE a=2088;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-one' WHERE a=2089;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-four' WHERE a=2090;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-eight' WHERE a=2091;\nUPDATE t2 SET c='eighty thousand nine hundred eighty-seven' WHERE a=2092;\nUPDATE t2 SET c='eighty-two thousand eight hundred thirty' WHERE a=2093;\nUPDATE t2 SET c='eighty-five thousand eight hundred forty-two' WHERE a=2094;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=2095;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-seven' WHERE a=2096;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-eight' WHERE a=2097;\nUPDATE t2 SET c='eighty-six thousand nine hundred twenty' WHERE a=2098;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-one' WHERE a=2099;\nUPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=2100;\nUPDATE t2 SET c='forty-four thousand four hundred one' WHERE a=2101;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-nine' WHERE a=2102;\nUPDATE t2 SET c='four thousand nine hundred ninety' WHERE a=2103;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-seven' WHERE a=2104;\nUPDATE t2 SET c='one thousand eight hundred fifty-five' WHERE a=2105;\nUPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=2106;\nUPDATE t2 SET c='seventy-seven thousand five hundred twenty-five' WHERE a=2107;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-one' WHERE a=2108;\nUPDATE t2 SET c='one thousand one hundred eighty-one' WHERE a=2109;\nUPDATE t2 SET c='forty-two thousand seven hundred eleven' WHERE a=2110;\nUPDATE t2 SET c='eighty-five thousand one hundred fifty' WHERE a=2111;\nUPDATE t2 SET c='twenty-four thousand eight hundred twenty-one' WHERE a=2112;\nUPDATE t2 SET c='eighty-three thousand four hundred sixty-two' WHERE a=2113;\nUPDATE t2 SET c='thirty-five thousand eight hundred three' WHERE a=2114;\nUPDATE t2 SET c='seventeen thousand three hundred sixty-four' WHERE a=2115;\nUPDATE t2 SET c='thirty thousand two hundred twenty-three' WHERE a=2116;\nUPDATE t2 SET c='thirty-three thousand six hundred ninety-three' WHERE a=2117;\nUPDATE t2 SET c='fifty thousand five hundred eighty-seven' WHERE a=2118;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-seven' WHERE a=2119;\nUPDATE t2 SET c='fifty-eight thousand nine hundred eighty-five' WHERE a=2120;\nUPDATE t2 SET c='fifty-four thousand five hundred twenty-seven' WHERE a=2121;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-three' WHERE a=2122;\nUPDATE t2 SET c='forty-eight thousand one hundred forty-one' WHERE a=2123;\nUPDATE t2 SET c='twenty thousand fifty-three' WHERE a=2124;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-eight' WHERE a=2125;\nUPDATE t2 SET c='eighteen thousand two hundred forty-six' WHERE a=2126;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety' WHERE a=2127;\nUPDATE t2 SET c='forty-one thousand six hundred thirteen' WHERE a=2128;\nUPDATE t2 SET c='sixty-two thousand three hundred twenty-nine' WHERE a=2129;\nUPDATE t2 SET c='eighteen thousand eight hundred seventy-five' WHERE a=2130;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy-one' WHERE a=2131;\nUPDATE t2 SET c='six thousand one hundred fifty-three' WHERE a=2132;\nUPDATE t2 SET c='fifty-eight thousand four hundred fifty-one' WHERE a=2133;\nUPDATE t2 SET c='sixty-two thousand ninety-three' WHERE a=2134;\nUPDATE t2 SET c='eighty-five thousand four hundred six' WHERE a=2135;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty' WHERE a=2136;\nUPDATE t2 SET c='forty-four thousand eight hundred forty-five' WHERE a=2137;\nUPDATE t2 SET c='forty-nine thousand one hundred nine' WHERE a=2138;\nUPDATE t2 SET c='ninety-two thousand five hundred eighty-three' WHERE a=2139;\nUPDATE t2 SET c='eighty-one thousand one hundred fifteen' WHERE a=2140;\nUPDATE t2 SET c='sixty-one thousand nine hundred twenty-five' WHERE a=2141;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-six' WHERE a=2142;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty-six' WHERE a=2143;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-three' WHERE a=2144;\nUPDATE t2 SET c='six thousand six hundred thirty-nine' WHERE a=2145;\nUPDATE t2 SET c='ten thousand five hundred eighty-one' WHERE a=2146;\nUPDATE t2 SET c='sixty-two thousand eight hundred thirty-eight' WHERE a=2147;\nUPDATE t2 SET c='thirteen thousand eighty-two' WHERE a=2148;\nUPDATE t2 SET c='forty-eight thousand two hundred seventy' WHERE a=2149;\nUPDATE t2 SET c='fifty thousand eight hundred thirty-nine' WHERE a=2150;\nUPDATE t2 SET c='thirty-four thousand five hundred fifty-seven' WHERE a=2151;\nUPDATE t2 SET c='ninety thousand seven hundred fifty' WHERE a=2152;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-eight' WHERE a=2153;\nUPDATE t2 SET c='fifty-three thousand seven hundred thirty-seven' WHERE a=2154;\nUPDATE t2 SET c='fifty-one thousand three hundred ninety-four' WHERE a=2155;\nUPDATE t2 SET c='forty-nine thousand fifty-seven' WHERE a=2156;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-nine' WHERE a=2157;\nUPDATE t2 SET c='seventeen thousand six hundred thirty-two' WHERE a=2158;\nUPDATE t2 SET c='sixty-four thousand four hundred twenty-one' WHERE a=2159;\nUPDATE t2 SET c='eighty-seven thousand one hundred fifty-eight' WHERE a=2160;\nUPDATE t2 SET c='twenty-four thousand four hundred ninety' WHERE a=2161;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighteen' WHERE a=2162;\nUPDATE t2 SET c='seventy-nine thousand eight hundred sixty-nine' WHERE a=2163;\nUPDATE t2 SET c='eighty-one thousand eight hundred thirty-four' WHERE a=2164;\nUPDATE t2 SET c='ninety-eight thousand one hundred ninety-six' WHERE a=2165;\nUPDATE t2 SET c='sixty-five thousand two hundred thirty-seven' WHERE a=2166;\nUPDATE t2 SET c='fifty-eight thousand five hundred ninety' WHERE a=2167;\nUPDATE t2 SET c='eighty thousand four hundred ten' WHERE a=2168;\nUPDATE t2 SET c='seventy-three thousand eight hundred nine' WHERE a=2169;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-six' WHERE a=2170;\nUPDATE t2 SET c='eighteen thousand five hundred two' WHERE a=2171;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=2172;\nUPDATE t2 SET c='forty thousand seven hundred sixty-three' WHERE a=2173;\nUPDATE t2 SET c='eighty-one thousand one hundred ninety-five' WHERE a=2174;\nUPDATE t2 SET c='twenty-five thousand two hundred twenty-seven' WHERE a=2175;\nUPDATE t2 SET c='thirty-six thousand one hundred sixty-seven' WHERE a=2176;\nUPDATE t2 SET c='ninety-one thousand five hundred fifteen' WHERE a=2177;\nUPDATE t2 SET c='seventy-eight thousand five hundred forty-three' WHERE a=2178;\nUPDATE t2 SET c='thirty-eight thousand nine hundred sixty-one' WHERE a=2179;\nUPDATE t2 SET c='seventy-four thousand two hundred seventy-seven' WHERE a=2180;\nUPDATE t2 SET c='eighty-five thousand six hundred eighty-six' WHERE a=2181;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirty-six' WHERE a=2182;\nUPDATE t2 SET c='seventeen thousand two hundred sixty-one' WHERE a=2183;\nUPDATE t2 SET c='forty-two thousand five hundred seventy-eight' WHERE a=2184;\nUPDATE t2 SET c='seventy-one thousand one hundred one' WHERE a=2185;\nUPDATE t2 SET c='ninety thousand three hundred sixty-four' WHERE a=2186;\nUPDATE t2 SET c='seventy-eight thousand three hundred eleven' WHERE a=2187;\nUPDATE t2 SET c='one thousand one hundred twenty-six' WHERE a=2188;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty-eight' WHERE a=2189;\nUPDATE t2 SET c='forty-four thousand two hundred ninety-two' WHERE a=2190;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-nine' WHERE a=2191;\nUPDATE t2 SET c='sixty-two thousand four hundred nine' WHERE a=2192;\nUPDATE t2 SET c='forty-four thousand forty-four' WHERE a=2193;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-nine' WHERE a=2194;\nUPDATE t2 SET c='seventy-one thousand four hundred twelve' WHERE a=2195;\nUPDATE t2 SET c='forty-one thousand five hundred sixty-nine' WHERE a=2196;\nUPDATE t2 SET c='sixty-four thousand five hundred sixty-four' WHERE a=2197;\nUPDATE t2 SET c='ninety-three thousand one hundred ten' WHERE a=2198;\nUPDATE t2 SET c='twenty-four thousand three hundred seven' WHERE a=2199;\nUPDATE t2 SET c='ninety-one thousand nine hundred forty-two' WHERE a=2200;\nUPDATE t2 SET c='ten thousand nine hundred thirty-five' WHERE a=2201;\nUPDATE t2 SET c='sixty-four thousand one' WHERE a=2202;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-eight' WHERE a=2203;\nUPDATE t2 SET c='fifty-one thousand four hundred three' WHERE a=2204;\nUPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=2205;\nUPDATE t2 SET c='ninety-seven thousand eight hundred' WHERE a=2206;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=2207;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-eight' WHERE a=2208;\nUPDATE t2 SET c='twenty-five thousand four hundred forty-one' WHERE a=2209;\nUPDATE t2 SET c='thirty thousand eight hundred forty-three' WHERE a=2210;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty' WHERE a=2211;\nUPDATE t2 SET c='eleven thousand eight hundred forty-nine' WHERE a=2212;\nUPDATE t2 SET c='forty-two thousand four hundred forty-eight' WHERE a=2213;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-one' WHERE a=2214;\nUPDATE t2 SET c='eighty-nine thousand two hundred twenty-one' WHERE a=2215;\nUPDATE t2 SET c='six hundred fifty-three' WHERE a=2216;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-eight' WHERE a=2217;\nUPDATE t2 SET c='forty-five thousand six hundred fifty-two' WHERE a=2218;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=2219;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty' WHERE a=2220;\nUPDATE t2 SET c='eighty-three thousand two hundred twelve' WHERE a=2221;\nUPDATE t2 SET c='thirty thousand forty' WHERE a=2222;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety-seven' WHERE a=2223;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-six' WHERE a=2224;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty' WHERE a=2225;\nUPDATE t2 SET c='seven thousand eight hundred fifteen' WHERE a=2226;\nUPDATE t2 SET c='thirty-three thousand three hundred eighty-nine' WHERE a=2227;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-three' WHERE a=2228;\nUPDATE t2 SET c='eight thousand eight hundred four' WHERE a=2229;\nUPDATE t2 SET c='nineteen thousand one hundred seventy-two' WHERE a=2230;\nUPDATE t2 SET c='fifty-nine thousand two hundred three' WHERE a=2231;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-three' WHERE a=2232;\nUPDATE t2 SET c='three thousand nine hundred ninety-six' WHERE a=2233;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eighty-five' WHERE a=2234;\nUPDATE t2 SET c='one thousand five hundred fifty-five' WHERE a=2235;\nUPDATE t2 SET c='seventy thousand two hundred twelve' WHERE a=2236;\nUPDATE t2 SET c='fifty-four thousand seven hundred thirty-one' WHERE a=2237;\nUPDATE t2 SET c='twenty-two thousand two hundred forty-five' WHERE a=2238;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-six' WHERE a=2239;\nUPDATE t2 SET c='eighty thousand fifty-two' WHERE a=2240;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-three' WHERE a=2241;\nUPDATE t2 SET c='forty-four thousand five hundred forty-four' WHERE a=2242;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-two' WHERE a=2243;\nUPDATE t2 SET c='thirty thousand three hundred fifty-eight' WHERE a=2244;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-nine' WHERE a=2245;\nUPDATE t2 SET c='eighty-three thousand four hundred eighty-one' WHERE a=2246;\nUPDATE t2 SET c='thirty-five thousand seven hundred twenty-four' WHERE a=2247;\nUPDATE t2 SET c='sixty-seven thousand five hundred eighty-nine' WHERE a=2248;\nUPDATE t2 SET c='sixty-two thousand five hundred sixty-three' WHERE a=2249;\nUPDATE t2 SET c='four thousand three hundred fifty-nine' WHERE a=2250;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-five' WHERE a=2251;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-eight' WHERE a=2252;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety' WHERE a=2253;\nUPDATE t2 SET c='sixty-one thousand three hundred seven' WHERE a=2254;\nUPDATE t2 SET c='ninety-three thousand seven hundred eleven' WHERE a=2255;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-seven' WHERE a=2256;\nUPDATE t2 SET c='fifty-six thousand two hundred seventy-three' WHERE a=2257;\nUPDATE t2 SET c='forty-six thousand four hundred fifty-nine' WHERE a=2258;\nUPDATE t2 SET c='eighty-six thousand four hundred thirty-four' WHERE a=2259;\nUPDATE t2 SET c='nineteen thousand sixty-two' WHERE a=2260;\nUPDATE t2 SET c='seventy-five thousand eight hundred fifty-nine' WHERE a=2261;\nUPDATE t2 SET c='forty-eight thousand six hundred ninety-two' WHERE a=2262;\nUPDATE t2 SET c='sixty-six thousand six hundred eight' WHERE a=2263;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixteen' WHERE a=2264;\nUPDATE t2 SET c='fifty thousand two hundred thirty-six' WHERE a=2265;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-three' WHERE a=2266;\nUPDATE t2 SET c='fifty-eight thousand one hundred sixty-two' WHERE a=2267;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-five' WHERE a=2268;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-five' WHERE a=2269;\nUPDATE t2 SET c='fifty-two thousand eighteen' WHERE a=2270;\nUPDATE t2 SET c='three hundred eighty-one' WHERE a=2271;\nUPDATE t2 SET c='ninety-three thousand seven hundred thirty-four' WHERE a=2272;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-five' WHERE a=2273;\nUPDATE t2 SET c='seventy-five thousand two hundred sixteen' WHERE a=2274;\nUPDATE t2 SET c='ninety-four thousand twelve' WHERE a=2275;\nUPDATE t2 SET c='thirty-four thousand seven hundred five' WHERE a=2276;\nUPDATE t2 SET c='seventy-two thousand one hundred sixty-six' WHERE a=2277;\nUPDATE t2 SET c='thirteen thousand eight hundred eighty-nine' WHERE a=2278;\nUPDATE t2 SET c='seventy-seven thousand eight hundred seventy-three' WHERE a=2279;\nUPDATE t2 SET c='thirty thousand six hundred ninety-seven' WHERE a=2280;\nUPDATE t2 SET c='thirty-seven thousand sixty-two' WHERE a=2281;\nUPDATE t2 SET c='sixty-four thousand one hundred forty-eight' WHERE a=2282;\nUPDATE t2 SET c='twenty-seven thousand one hundred thirty-six' WHERE a=2283;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=2284;\nUPDATE t2 SET c='fifty-two thousand three hundred three' WHERE a=2285;\nUPDATE t2 SET c='forty-three thousand five hundred fourteen' WHERE a=2286;\nUPDATE t2 SET c='eighty-two thousand nine hundred ten' WHERE a=2287;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-three' WHERE a=2288;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fourteen' WHERE a=2289;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-six' WHERE a=2290;\nUPDATE t2 SET c='thirty-three thousand one hundred ninety-one' WHERE a=2291;\nUPDATE t2 SET c='thirty-six thousand three hundred seventy-eight' WHERE a=2292;\nUPDATE t2 SET c='sixty-two thousand one hundred sixteen' WHERE a=2293;\nUPDATE t2 SET c='ninety-two thousand five hundred eleven' WHERE a=2294;\nUPDATE t2 SET c='ninety-four thousand forty-seven' WHERE a=2295;\nUPDATE t2 SET c='seventy-six thousand four hundred three' WHERE a=2296;\nUPDATE t2 SET c='sixty-nine thousand one hundred forty-one' WHERE a=2297;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-seven' WHERE a=2298;\nUPDATE t2 SET c='seventy-five thousand five hundred three' WHERE a=2299;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty' WHERE a=2300;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirteen' WHERE a=2301;\nUPDATE t2 SET c='seven thousand seven hundred twenty-four' WHERE a=2302;\nUPDATE t2 SET c='five thousand two hundred eighty-eight' WHERE a=2303;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-five' WHERE a=2304;\nUPDATE t2 SET c='seventy-six thousand three hundred twenty-five' WHERE a=2305;\nUPDATE t2 SET c='nine thousand fourteen' WHERE a=2306;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-eight' WHERE a=2307;\nUPDATE t2 SET c='twenty-nine thousand five hundred six' WHERE a=2308;\nUPDATE t2 SET c='sixty-four thousand four hundred five' WHERE a=2309;\nUPDATE t2 SET c='seventy-seven thousand sixteen' WHERE a=2310;\nUPDATE t2 SET c='eighty-eight thousand five hundred thirty-nine' WHERE a=2311;\nUPDATE t2 SET c='forty-seven thousand one hundred thirteen' WHERE a=2312;\nUPDATE t2 SET c='forty-six thousand four hundred forty-three' WHERE a=2313;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty-eight' WHERE a=2314;\nUPDATE t2 SET c='ninety-six thousand four hundred ten' WHERE a=2315;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-five' WHERE a=2316;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-four' WHERE a=2317;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-nine' WHERE a=2318;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-nine' WHERE a=2319;\nUPDATE t2 SET c='fifty-three thousand thirteen' WHERE a=2320;\nUPDATE t2 SET c='ninety-eight thousand one hundred twelve' WHERE a=2321;\nUPDATE t2 SET c='nineteen' WHERE a=2322;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-four' WHERE a=2323;\nUPDATE t2 SET c='seventy-one thousand one hundred four' WHERE a=2324;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-three' WHERE a=2325;\nUPDATE t2 SET c='seventy-four thousand fifty-three' WHERE a=2326;\nUPDATE t2 SET c='twenty-nine thousand two hundred forty-four' WHERE a=2327;\nUPDATE t2 SET c='sixty-five thousand fourteen' WHERE a=2328;\nUPDATE t2 SET c='two thousand seven hundred eighty' WHERE a=2329;\nUPDATE t2 SET c='twenty-two thousand twenty' WHERE a=2330;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty' WHERE a=2331;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty-nine' WHERE a=2332;\nUPDATE t2 SET c='seventeen thousand eight hundred seventy-nine' WHERE a=2333;\nUPDATE t2 SET c='ninety-five thousand twenty-two' WHERE a=2334;\nUPDATE t2 SET c='three thousand six hundred sixty-two' WHERE a=2335;\nUPDATE t2 SET c='fifteen thousand one hundred forty-four' WHERE a=2336;\nUPDATE t2 SET c='twenty-five thousand nine hundred nine' WHERE a=2337;\nUPDATE t2 SET c='six thousand eight hundred ninety-seven' WHERE a=2338;\nUPDATE t2 SET c='twenty-two thousand five hundred sixty' WHERE a=2339;\nUPDATE t2 SET c='seventeen thousand five hundred fourteen' WHERE a=2340;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty' WHERE a=2341;\nUPDATE t2 SET c='eighteen thousand three hundred seventy-three' WHERE a=2342;\nUPDATE t2 SET c='forty-three thousand one hundred twenty' WHERE a=2343;\nUPDATE t2 SET c='fifty thousand six hundred forty-one' WHERE a=2344;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-five' WHERE a=2345;\nUPDATE t2 SET c='five thousand seven hundred fourteen' WHERE a=2346;\nUPDATE t2 SET c='fifty-six thousand seventy' WHERE a=2347;\nUPDATE t2 SET c='seventy-eight thousand two hundred ninety-two' WHERE a=2348;\nUPDATE t2 SET c='thirty-two thousand seven hundred eighty-five' WHERE a=2349;\nUPDATE t2 SET c='twenty-one thousand three hundred sixty-four' WHERE a=2350;\nUPDATE t2 SET c='twenty-four thousand nine hundred fifty-five' WHERE a=2351;\nUPDATE t2 SET c='eighty thousand nine hundred sixteen' WHERE a=2352;\nUPDATE t2 SET c='nine thousand five hundred ninety-five' WHERE a=2353;\nUPDATE t2 SET c='sixty-eight thousand three hundred thirty-six' WHERE a=2354;\nUPDATE t2 SET c='eighty-six thousand nine hundred fifty-one' WHERE a=2355;\nUPDATE t2 SET c='forty-eight thousand two hundred twenty' WHERE a=2356;\nUPDATE t2 SET c='seventy-nine thousand five hundred thirty-eight' WHERE a=2357;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-six' WHERE a=2358;\nUPDATE t2 SET c='four thousand three hundred sixty-nine' WHERE a=2359;\nUPDATE t2 SET c='eighty-six thousand thirty-four' WHERE a=2360;\nUPDATE t2 SET c='fifty-six thousand nine hundred ten' WHERE a=2361;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-seven' WHERE a=2362;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-nine' WHERE a=2363;\nUPDATE t2 SET c='ninety thousand eight hundred forty-five' WHERE a=2364;\nUPDATE t2 SET c='ninety-nine thousand six' WHERE a=2365;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-nine' WHERE a=2366;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-four' WHERE a=2367;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixty-eight' WHERE a=2368;\nUPDATE t2 SET c='six thousand eight hundred eight' WHERE a=2369;\nUPDATE t2 SET c='seventy-eight thousand three hundred thirty-one' WHERE a=2370;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventeen' WHERE a=2371;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty' WHERE a=2372;\nUPDATE t2 SET c='sixty-four thousand three hundred twenty' WHERE a=2373;\nUPDATE t2 SET c='thirty thousand three hundred four' WHERE a=2374;\nUPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=2375;\nUPDATE t2 SET c='fifty-three thousand five hundred forty-five' WHERE a=2376;\nUPDATE t2 SET c='thirty-five thousand one hundred fifteen' WHERE a=2377;\nUPDATE t2 SET c='sixty-four thousand eight hundred one' WHERE a=2378;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-eight' WHERE a=2379;\nUPDATE t2 SET c='ninety-two thousand forty-two' WHERE a=2380;\nUPDATE t2 SET c='sixteen thousand seven hundred sixty-eight' WHERE a=2381;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-three' WHERE a=2382;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixty-one' WHERE a=2383;\nUPDATE t2 SET c='sixty-one thousand seven hundred twenty-three' WHERE a=2384;\nUPDATE t2 SET c='sixty-five thousand six hundred six' WHERE a=2385;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixteen' WHERE a=2386;\nUPDATE t2 SET c='eighty-three thousand nine hundred seventy-six' WHERE a=2387;\nUPDATE t2 SET c='seventeen thousand two hundred fifty' WHERE a=2388;\nUPDATE t2 SET c='thirty-five thousand one' WHERE a=2389;\nUPDATE t2 SET c='twenty-seven thousand seven hundred seventy-five' WHERE a=2390;\nUPDATE t2 SET c='seven hundred ninety-one' WHERE a=2391;\nUPDATE t2 SET c='four thousand four hundred forty-eight' WHERE a=2392;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-one' WHERE a=2393;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-three' WHERE a=2394;\nUPDATE t2 SET c='sixty-four thousand one hundred eighty-six' WHERE a=2395;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-eight' WHERE a=2396;\nUPDATE t2 SET c='fifty-three thousand nine hundred thirty-three' WHERE a=2397;\nUPDATE t2 SET c='thirty-one thousand four hundred eighty' WHERE a=2398;\nUPDATE t2 SET c='seventy-six thousand nine hundred forty-eight' WHERE a=2399;\nUPDATE t2 SET c='one thousand five hundred fifty-eight' WHERE a=2400;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-two' WHERE a=2401;\nUPDATE t2 SET c='twenty-two thousand two hundred seventy-nine' WHERE a=2402;\nUPDATE t2 SET c='ten thousand five hundred thirteen' WHERE a=2403;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty' WHERE a=2404;\nUPDATE t2 SET c='four thousand nine hundred thirty-five' WHERE a=2405;\nUPDATE t2 SET c='seventy thousand nine hundred forty-two' WHERE a=2406;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-six' WHERE a=2407;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-one' WHERE a=2408;\nUPDATE t2 SET c='sixty-nine thousand one hundred fifty-seven' WHERE a=2409;\nUPDATE t2 SET c='six thousand two hundred thirty-six' WHERE a=2410;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-eight' WHERE a=2411;\nUPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=2412;\nUPDATE t2 SET c='twelve thousand nine hundred forty-three' WHERE a=2413;\nUPDATE t2 SET c='eighty-four thousand one hundred forty-five' WHERE a=2414;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-seven' WHERE a=2415;\nUPDATE t2 SET c='fifty-five thousand one hundred' WHERE a=2416;\nUPDATE t2 SET c='twenty-five thousand one hundred thirty-eight' WHERE a=2417;\nUPDATE t2 SET c='ninety-four thousand six hundred twenty-one' WHERE a=2418;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty' WHERE a=2419;\nUPDATE t2 SET c='sixty-five thousand fifty-eight' WHERE a=2420;\nUPDATE t2 SET c='sixty-three thousand eight hundred forty-two' WHERE a=2421;\nUPDATE t2 SET c='twelve thousand seven hundred four' WHERE a=2422;\nUPDATE t2 SET c='forty-two thousand forty-five' WHERE a=2423;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-four' WHERE a=2424;\nUPDATE t2 SET c='ninety-seven thousand three hundred ninety-two' WHERE a=2425;\nUPDATE t2 SET c='twenty-three thousand seventy-one' WHERE a=2426;\nUPDATE t2 SET c='two thousand eight hundred sixty-eight' WHERE a=2427;\nUPDATE t2 SET c='five thousand four hundred sixty-three' WHERE a=2428;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-five' WHERE a=2429;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-nine' WHERE a=2430;\nUPDATE t2 SET c='seventy-nine thousand sixty-three' WHERE a=2431;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-one' WHERE a=2432;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-five' WHERE a=2433;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-seven' WHERE a=2434;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-one' WHERE a=2435;\nUPDATE t2 SET c='eighty-three thousand three hundred thirty-three' WHERE a=2436;\nUPDATE t2 SET c='thirty-three thousand nine hundred sixty-two' WHERE a=2437;\nUPDATE t2 SET c='ninety-eight thousand five hundred one' WHERE a=2438;\nUPDATE t2 SET c='forty-seven thousand ninety-seven' WHERE a=2439;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-four' WHERE a=2440;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty' WHERE a=2441;\nUPDATE t2 SET c='eighty thousand four hundred one' WHERE a=2442;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ninety-two' WHERE a=2443;\nUPDATE t2 SET c='three thousand three hundred eight' WHERE a=2444;\nUPDATE t2 SET c='thirty-seven thousand eight hundred thirty-nine' WHERE a=2445;\nUPDATE t2 SET c='twenty-two thousand three hundred twenty-nine' WHERE a=2446;\nUPDATE t2 SET c='forty thousand eight hundred forty-seven' WHERE a=2447;\nUPDATE t2 SET c='twenty-four thousand two hundred eleven' WHERE a=2448;\nUPDATE t2 SET c='thirty-one thousand one hundred forty-four' WHERE a=2449;\nUPDATE t2 SET c='fifty-five thousand four hundred eighty-three' WHERE a=2450;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty' WHERE a=2451;\nUPDATE t2 SET c='thirty-nine thousand seven hundred seventy' WHERE a=2452;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety-one' WHERE a=2453;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-seven' WHERE a=2454;\nUPDATE t2 SET c='six thousand eight hundred thirty-five' WHERE a=2455;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-one' WHERE a=2456;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-two' WHERE a=2457;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-three' WHERE a=2458;\nUPDATE t2 SET c='eighty-five thousand eight hundred sixty-eight' WHERE a=2459;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-five' WHERE a=2460;\nUPDATE t2 SET c='ninety-one thousand two hundred twenty' WHERE a=2461;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety-seven' WHERE a=2462;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifty-five' WHERE a=2463;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirty-four' WHERE a=2464;\nUPDATE t2 SET c='seventy thousand six hundred nineteen' WHERE a=2465;\nUPDATE t2 SET c='eighty-nine thousand one hundred eighty-nine' WHERE a=2466;\nUPDATE t2 SET c='thirty-eight thousand seven hundred fifty-two' WHERE a=2467;\nUPDATE t2 SET c='eighty thousand forty-eight' WHERE a=2468;\nUPDATE t2 SET c='seventeen thousand four hundred eighty-one' WHERE a=2469;\nUPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=2470;\nUPDATE t2 SET c='forty-one thousand six hundred five' WHERE a=2471;\nUPDATE t2 SET c='fifty-six thousand nine hundred twenty-three' WHERE a=2472;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighty-six' WHERE a=2473;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-eight' WHERE a=2474;\nUPDATE t2 SET c='five thousand five hundred sixty-four' WHERE a=2475;\nUPDATE t2 SET c='forty thousand seven hundred seventy-one' WHERE a=2476;\nUPDATE t2 SET c='sixty-eight thousand nine hundred ninety-eight' WHERE a=2477;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seventeen' WHERE a=2478;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-seven' WHERE a=2479;\nUPDATE t2 SET c='eighty-eight thousand sixty-four' WHERE a=2480;\nUPDATE t2 SET c='twenty-one thousand three hundred forty-three' WHERE a=2481;\nUPDATE t2 SET c='sixty-two thousand four hundred twenty-five' WHERE a=2482;\nUPDATE t2 SET c='seventy-two thousand nine hundred' WHERE a=2483;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-two' WHERE a=2484;\nUPDATE t2 SET c='seventy-three thousand three hundred five' WHERE a=2485;\nUPDATE t2 SET c='thirty-five thousand four hundred forty-four' WHERE a=2486;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-three' WHERE a=2487;\nUPDATE t2 SET c='ninety-seven thousand four hundred thirty-five' WHERE a=2488;\nUPDATE t2 SET c='forty-five thousand eight hundred ninety-nine' WHERE a=2489;\nUPDATE t2 SET c='fifty-six thousand nine hundred eight' WHERE a=2490;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-nine' WHERE a=2491;\nUPDATE t2 SET c='nine thousand five hundred twelve' WHERE a=2492;\nUPDATE t2 SET c='sixty-eight thousand twenty-four' WHERE a=2493;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-three' WHERE a=2494;\nUPDATE t2 SET c='six thousand ninety-four' WHERE a=2495;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-two' WHERE a=2496;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-two' WHERE a=2497;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eighteen' WHERE a=2498;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-six' WHERE a=2499;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-four' WHERE a=2500;\nUPDATE t2 SET c='thirty-one thousand six' WHERE a=2501;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-seven' WHERE a=2502;\nUPDATE t2 SET c='twenty-six thousand six hundred seventeen' WHERE a=2503;\nUPDATE t2 SET c='forty thousand two hundred seventy-nine' WHERE a=2504;\nUPDATE t2 SET c='twenty-two thousand one hundred eighty-four' WHERE a=2505;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-three' WHERE a=2506;\nUPDATE t2 SET c='twelve thousand seven hundred one' WHERE a=2507;\nUPDATE t2 SET c='eighty-eight thousand two hundred seventy-five' WHERE a=2508;\nUPDATE t2 SET c='four thousand four hundred fifty' WHERE a=2509;\nUPDATE t2 SET c='eighty-six thousand six hundred eighty-three' WHERE a=2510;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty-two' WHERE a=2511;\nUPDATE t2 SET c='sixty-four thousand eight hundred ninety-nine' WHERE a=2512;\nUPDATE t2 SET c='fifty-seven thousand nine hundred two' WHERE a=2513;\nUPDATE t2 SET c='sixty-one thousand eight hundred seven' WHERE a=2514;\nUPDATE t2 SET c='eighty thousand one hundred twelve' WHERE a=2515;\nUPDATE t2 SET c='nine thousand one hundred twenty' WHERE a=2516;\nUPDATE t2 SET c='seventy-six thousand five hundred sixteen' WHERE a=2517;\nUPDATE t2 SET c='forty-two thousand seven hundred fifty-two' WHERE a=2518;\nUPDATE t2 SET c='thirty-six thousand eight hundred forty-one' WHERE a=2519;\nUPDATE t2 SET c='five thousand eight hundred thirty-four' WHERE a=2520;\nUPDATE t2 SET c='nine thousand seventy-seven' WHERE a=2521;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-eight' WHERE a=2522;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-seven' WHERE a=2523;\nUPDATE t2 SET c='twenty-three thousand one hundred twenty-five' WHERE a=2524;\nUPDATE t2 SET c='seventy-four thousand fifty-nine' WHERE a=2525;\nUPDATE t2 SET c='three thousand one hundred twenty-five' WHERE a=2526;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty-six' WHERE a=2527;\nUPDATE t2 SET c='seven thousand five hundred sixty-seven' WHERE a=2528;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-one' WHERE a=2529;\nUPDATE t2 SET c='seventy-nine thousand five hundred sixty-four' WHERE a=2530;\nUPDATE t2 SET c='fifty-eight thousand four hundred fourteen' WHERE a=2531;\nUPDATE t2 SET c='four thousand two hundred four' WHERE a=2532;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety-four' WHERE a=2533;\nUPDATE t2 SET c='sixty-two thousand nine hundred ten' WHERE a=2534;\nUPDATE t2 SET c='forty-five thousand one hundred forty-two' WHERE a=2535;\nUPDATE t2 SET c='eight thousand eighty-one' WHERE a=2536;\nUPDATE t2 SET c='nine thousand five hundred seventy-nine' WHERE a=2537;\nUPDATE t2 SET c='sixty thousand four hundred twenty-three' WHERE a=2538;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixty-seven' WHERE a=2539;\nUPDATE t2 SET c='ten thousand seven hundred fifteen' WHERE a=2540;\nUPDATE t2 SET c='sixty-one thousand nine hundred five' WHERE a=2541;\nUPDATE t2 SET c='thirteen thousand five hundred ninety-three' WHERE a=2542;\nUPDATE t2 SET c='fifteen thousand five hundred seven' WHERE a=2543;\nUPDATE t2 SET c='thirty-three thousand five hundred sixty' WHERE a=2544;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixteen' WHERE a=2545;\nUPDATE t2 SET c='ninety-five thousand three hundred twenty-eight' WHERE a=2546;\nUPDATE t2 SET c='ninety-one thousand three hundred nine' WHERE a=2547;\nUPDATE t2 SET c='nine hundred forty' WHERE a=2548;\nUPDATE t2 SET c='eighty-four thousand six hundred one' WHERE a=2549;\nUPDATE t2 SET c='sixty-two thousand seven hundred forty-one' WHERE a=2550;\nUPDATE t2 SET c='eighty-three thousand five hundred ninety-nine' WHERE a=2551;\nUPDATE t2 SET c='sixty thousand six hundred forty-seven' WHERE a=2552;\nUPDATE t2 SET c='sixty-seven thousand three hundred sixty-three' WHERE a=2553;\nUPDATE t2 SET c='eighty thousand ninety-four' WHERE a=2554;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-nine' WHERE a=2555;\nUPDATE t2 SET c='thirty thousand six hundred forty-two' WHERE a=2556;\nUPDATE t2 SET c='twenty thousand three hundred eighty-two' WHERE a=2557;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-three' WHERE a=2558;\nUPDATE t2 SET c='one thousand two hundred sixty-nine' WHERE a=2559;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-nine' WHERE a=2560;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-nine' WHERE a=2561;\nUPDATE t2 SET c='sixty-one thousand nine hundred forty-three' WHERE a=2562;\nUPDATE t2 SET c='eighteen thousand five hundred six' WHERE a=2563;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-one' WHERE a=2564;\nUPDATE t2 SET c='ten thousand six hundred sixty-three' WHERE a=2565;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-one' WHERE a=2566;\nUPDATE t2 SET c='fourteen thousand seven hundred thirty-nine' WHERE a=2567;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty-two' WHERE a=2568;\nUPDATE t2 SET c='twenty-one thousand eight hundred three' WHERE a=2569;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-two' WHERE a=2570;\nUPDATE t2 SET c='fifty-eight thousand eight hundred forty-seven' WHERE a=2571;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=2572;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventy-one' WHERE a=2573;\nUPDATE t2 SET c='forty-nine thousand three hundred twenty-two' WHERE a=2574;\nUPDATE t2 SET c='ten thousand six hundred eighty-two' WHERE a=2575;\nUPDATE t2 SET c='eighty-six thousand six hundred thirty-three' WHERE a=2576;\nUPDATE t2 SET c='seventeen thousand seven hundred ninety-nine' WHERE a=2577;\nUPDATE t2 SET c='two thousand four hundred sixty-eight' WHERE a=2578;\nUPDATE t2 SET c='eight thousand one hundred fifty-one' WHERE a=2579;\nUPDATE t2 SET c='sixty-two thousand three hundred thirty-two' WHERE a=2580;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-nine' WHERE a=2581;\nUPDATE t2 SET c='seventy-eight thousand three hundred seventy-six' WHERE a=2582;\nUPDATE t2 SET c='thirteen thousand seven hundred thirty-four' WHERE a=2583;\nUPDATE t2 SET c='fifty-eight thousand five hundred thirty-two' WHERE a=2584;\nUPDATE t2 SET c='fifteen thousand nine hundred seven' WHERE a=2585;\nUPDATE t2 SET c='twelve thousand eight hundred five' WHERE a=2586;\nUPDATE t2 SET c='forty-two thousand nine hundred five' WHERE a=2587;\nUPDATE t2 SET c='one thousand eight hundred seventy-nine' WHERE a=2588;\nUPDATE t2 SET c='thirty thousand six hundred seventy-seven' WHERE a=2589;\nUPDATE t2 SET c='twenty-four thousand one hundred eighty-nine' WHERE a=2590;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy' WHERE a=2591;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-eight' WHERE a=2592;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty' WHERE a=2593;\nUPDATE t2 SET c='sixty-eight thousand one hundred nineteen' WHERE a=2594;\nUPDATE t2 SET c='fifty-five thousand six hundred twenty-nine' WHERE a=2595;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-nine' WHERE a=2596;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-seven' WHERE a=2597;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-three' WHERE a=2598;\nUPDATE t2 SET c='ninety-nine thousand four hundred five' WHERE a=2599;\nUPDATE t2 SET c='sixty-seven thousand six hundred nineteen' WHERE a=2600;\nUPDATE t2 SET c='forty-six thousand four hundred fifty' WHERE a=2601;\nUPDATE t2 SET c='ninety-two thousand twenty-one' WHERE a=2602;\nUPDATE t2 SET c='one thousand nine hundred ninety-seven' WHERE a=2603;\nUPDATE t2 SET c='forty-five thousand two hundred twenty-four' WHERE a=2604;\nUPDATE t2 SET c='seventy-six thousand three hundred seventeen' WHERE a=2605;\nUPDATE t2 SET c='forty-eight thousand eight hundred sixty-seven' WHERE a=2606;\nUPDATE t2 SET c='sixty thousand five hundred' WHERE a=2607;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-two' WHERE a=2608;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-four' WHERE a=2609;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-three' WHERE a=2610;\nUPDATE t2 SET c='fifty thousand three hundred twenty-one' WHERE a=2611;\nUPDATE t2 SET c='ninety-nine thousand eighty-four' WHERE a=2612;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty-six' WHERE a=2613;\nUPDATE t2 SET c='thirty-one thousand eight hundred three' WHERE a=2614;\nUPDATE t2 SET c='six thousand one hundred fifty-one' WHERE a=2615;\nUPDATE t2 SET c='fourteen thousand six hundred seventy-four' WHERE a=2616;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty' WHERE a=2617;\nUPDATE t2 SET c='four thousand eight hundred forty-six' WHERE a=2618;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=2619;\nUPDATE t2 SET c='thirty-two thousand nine hundred twenty-five' WHERE a=2620;\nUPDATE t2 SET c='sixty-four thousand six hundred seventy-one' WHERE a=2621;\nUPDATE t2 SET c='eighty-five thousand seven hundred eighty-eight' WHERE a=2622;\nUPDATE t2 SET c='three thousand nine hundred seventeen' WHERE a=2623;\nUPDATE t2 SET c='forty-seven thousand three hundred sixty' WHERE a=2624;\nUPDATE t2 SET c='thirty-three thousand fifty-seven' WHERE a=2625;\nUPDATE t2 SET c='sixty-five thousand eighty-four' WHERE a=2626;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-six' WHERE a=2627;\nUPDATE t2 SET c='fifty-nine thousand four hundred ninety' WHERE a=2628;\nUPDATE t2 SET c='thirty-five thousand eight' WHERE a=2629;\nUPDATE t2 SET c='seventy-one thousand two hundred seventy-two' WHERE a=2630;\nUPDATE t2 SET c='sixty-six thousand six hundred eighty-four' WHERE a=2631;\nUPDATE t2 SET c='twenty thousand twenty-one' WHERE a=2632;\nUPDATE t2 SET c='forty-five thousand five hundred fifty-eight' WHERE a=2633;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty-two' WHERE a=2634;\nUPDATE t2 SET c='sixty-one thousand sixty-nine' WHERE a=2635;\nUPDATE t2 SET c='eighty thousand four hundred fifty-three' WHERE a=2636;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-one' WHERE a=2637;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-two' WHERE a=2638;\nUPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=2639;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-five' WHERE a=2640;\nUPDATE t2 SET c='seventeen thousand seven hundred ninety-three' WHERE a=2641;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-seven' WHERE a=2642;\nUPDATE t2 SET c='seventy-nine thousand twenty-six' WHERE a=2643;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty' WHERE a=2644;\nUPDATE t2 SET c='twenty thousand two hundred sixty-eight' WHERE a=2645;\nUPDATE t2 SET c='one hundred ninety-seven' WHERE a=2646;\nUPDATE t2 SET c='eleven thousand four hundred twenty-three' WHERE a=2647;\nUPDATE t2 SET c='fifty-one thousand four hundred five' WHERE a=2648;\nUPDATE t2 SET c='ninety-two thousand five hundred seven' WHERE a=2649;\nUPDATE t2 SET c='thirty thousand five hundred ninety-nine' WHERE a=2650;\nUPDATE t2 SET c='eighteen thousand thirty-one' WHERE a=2651;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-nine' WHERE a=2652;\nUPDATE t2 SET c='sixty thousand six hundred forty-seven' WHERE a=2653;\nUPDATE t2 SET c='sixty-one thousand one hundred forty' WHERE a=2654;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=2655;\nUPDATE t2 SET c='eleven thousand seven hundred seventy' WHERE a=2656;\nUPDATE t2 SET c='forty-seven thousand five hundred ninety-seven' WHERE a=2657;\nUPDATE t2 SET c='ninety-six thousand five hundred eight' WHERE a=2658;\nUPDATE t2 SET c='fifteen thousand four hundred twenty-one' WHERE a=2659;\nUPDATE t2 SET c='fifty-three thousand eight hundred sixty-seven' WHERE a=2660;\nUPDATE t2 SET c='fourteen thousand seven hundred eight' WHERE a=2661;\nUPDATE t2 SET c='seventy thousand five hundred ninety-nine' WHERE a=2662;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-five' WHERE a=2663;\nUPDATE t2 SET c='twenty-nine thousand one hundred two' WHERE a=2664;\nUPDATE t2 SET c='seventy-seven thousand one hundred ninety-five' WHERE a=2665;\nUPDATE t2 SET c='forty-seven thousand four hundred fifty-three' WHERE a=2666;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixteen' WHERE a=2667;\nUPDATE t2 SET c='thirty-three thousand three hundred ten' WHERE a=2668;\nUPDATE t2 SET c='forty-seven thousand two hundred two' WHERE a=2669;\nUPDATE t2 SET c='eighty-eight thousand three hundred thirty-five' WHERE a=2670;\nUPDATE t2 SET c='eighteen thousand fifty-eight' WHERE a=2671;\nUPDATE t2 SET c='eighty-three thousand four hundred fifty-four' WHERE a=2672;\nUPDATE t2 SET c='eighty-five thousand one hundred eight' WHERE a=2673;\nUPDATE t2 SET c='nineteen thousand three hundred three' WHERE a=2674;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-one' WHERE a=2675;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-four' WHERE a=2676;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-eight' WHERE a=2677;\nUPDATE t2 SET c='sixty-seven thousand one hundred sixty-four' WHERE a=2678;\nUPDATE t2 SET c='thirty-three thousand two hundred ninety-nine' WHERE a=2679;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-six' WHERE a=2680;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-nine' WHERE a=2681;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-four' WHERE a=2682;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-six' WHERE a=2683;\nUPDATE t2 SET c='forty thousand three hundred ninety' WHERE a=2684;\nUPDATE t2 SET c='forty-six thousand five hundred ninety-one' WHERE a=2685;\nUPDATE t2 SET c='twenty-five thousand two hundred ten' WHERE a=2686;\nUPDATE t2 SET c='fifty-four thousand thirty-one' WHERE a=2687;\nUPDATE t2 SET c='eighty-seven thousand four hundred two' WHERE a=2688;\nUPDATE t2 SET c='seventeen thousand three hundred sixty' WHERE a=2689;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-eight' WHERE a=2690;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty' WHERE a=2691;\nUPDATE t2 SET c='sixteen thousand six hundred sixteen' WHERE a=2692;\nUPDATE t2 SET c='eighty-four thousand nine hundred fifty-three' WHERE a=2693;\nUPDATE t2 SET c='seventy-two thousand two hundred fourteen' WHERE a=2694;\nUPDATE t2 SET c='thirteen thousand three hundred twenty-two' WHERE a=2695;\nUPDATE t2 SET c='forty-seven thousand one hundred thirty-six' WHERE a=2696;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-four' WHERE a=2697;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-four' WHERE a=2698;\nUPDATE t2 SET c='eleven thousand one hundred seventy' WHERE a=2699;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-two' WHERE a=2700;\nUPDATE t2 SET c='forty-five thousand three hundred thirteen' WHERE a=2701;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-four' WHERE a=2702;\nUPDATE t2 SET c='seventy-five thousand five hundred three' WHERE a=2703;\nUPDATE t2 SET c='thirty-eight thousand nine hundred fifty-seven' WHERE a=2704;\nUPDATE t2 SET c='ninety-nine thousand two hundred forty-nine' WHERE a=2705;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-three' WHERE a=2706;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-two' WHERE a=2707;\nUPDATE t2 SET c='fifty-two thousand two hundred sixty-one' WHERE a=2708;\nUPDATE t2 SET c='thirty-one thousand six hundred eight' WHERE a=2709;\nUPDATE t2 SET c='eighteen thousand nine hundred twenty-eight' WHERE a=2710;\nUPDATE t2 SET c='forty-three thousand sixty-eight' WHERE a=2711;\nUPDATE t2 SET c='forty thousand two hundred thirty-one' WHERE a=2712;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty-four' WHERE a=2713;\nUPDATE t2 SET c='sixty-eight thousand one hundred eighty-eight' WHERE a=2714;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-six' WHERE a=2715;\nUPDATE t2 SET c='seventy-four thousand one hundred ninety' WHERE a=2716;\nUPDATE t2 SET c='sixty-six thousand one hundred twenty-one' WHERE a=2717;\nUPDATE t2 SET c='sixty-one thousand seven hundred eighty-five' WHERE a=2718;\nUPDATE t2 SET c='forty-six thousand one hundred sixteen' WHERE a=2719;\nUPDATE t2 SET c='five thousand six hundred seventy-two' WHERE a=2720;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty-three' WHERE a=2721;\nUPDATE t2 SET c='seventy-one thousand nine hundred ninety-eight' WHERE a=2722;\nUPDATE t2 SET c='ninety-one thousand eight hundred nine' WHERE a=2723;\nUPDATE t2 SET c='seventy-nine thousand one hundred eighty-nine' WHERE a=2724;\nUPDATE t2 SET c='forty thousand four hundred ninety-nine' WHERE a=2725;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-six' WHERE a=2726;\nUPDATE t2 SET c='thirty-seven thousand eight hundred forty-nine' WHERE a=2727;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty' WHERE a=2728;\nUPDATE t2 SET c='seventy-six thousand six' WHERE a=2729;\nUPDATE t2 SET c='twenty thousand one hundred eight' WHERE a=2730;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-one' WHERE a=2731;\nUPDATE t2 SET c='fourteen thousand nine hundred sixty-three' WHERE a=2732;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty-two' WHERE a=2733;\nUPDATE t2 SET c='ninety-six thousand eight hundred forty' WHERE a=2734;\nUPDATE t2 SET c='ninety-two thousand nine hundred seventy-eight' WHERE a=2735;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-four' WHERE a=2736;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-one' WHERE a=2737;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty' WHERE a=2738;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-nine' WHERE a=2739;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-four' WHERE a=2740;\nUPDATE t2 SET c='ninety-six thousand four hundred eight' WHERE a=2741;\nUPDATE t2 SET c='sixty-five thousand three hundred sixty-five' WHERE a=2742;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixteen' WHERE a=2743;\nUPDATE t2 SET c='thirty-three thousand six hundred forty-four' WHERE a=2744;\nUPDATE t2 SET c='fifty-five thousand eight hundred sixty-six' WHERE a=2745;\nUPDATE t2 SET c='eighty-one thousand nine' WHERE a=2746;\nUPDATE t2 SET c='forty-nine thousand four hundred sixteen' WHERE a=2747;\nUPDATE t2 SET c='forty thousand one hundred forty-five' WHERE a=2748;\nUPDATE t2 SET c='twenty thousand three hundred ninety' WHERE a=2749;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-three' WHERE a=2750;\nUPDATE t2 SET c='ninety-five thousand three hundred forty' WHERE a=2751;\nUPDATE t2 SET c='twenty-six thousand four hundred five' WHERE a=2752;\nUPDATE t2 SET c='sixty-two thousand eight hundred thirty-seven' WHERE a=2753;\nUPDATE t2 SET c='twenty-two thousand five hundred sixty-five' WHERE a=2754;\nUPDATE t2 SET c='seventy-three thousand fourteen' WHERE a=2755;\nUPDATE t2 SET c='thirty-four thousand six hundred seventy-nine' WHERE a=2756;\nUPDATE t2 SET c='sixty-five thousand three hundred ninety-two' WHERE a=2757;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-three' WHERE a=2758;\nUPDATE t2 SET c='twelve thousand eight hundred ninety-seven' WHERE a=2759;\nUPDATE t2 SET c='eight thousand eight hundred ninety-nine' WHERE a=2760;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty-one' WHERE a=2761;\nUPDATE t2 SET c='fifty-three thousand nine hundred forty-six' WHERE a=2762;\nUPDATE t2 SET c='ninety-four thousand fifty-one' WHERE a=2763;\nUPDATE t2 SET c='sixty-six thousand eight hundred fifty-three' WHERE a=2764;\nUPDATE t2 SET c='eight thousand seven hundred ninety-two' WHERE a=2765;\nUPDATE t2 SET c='thirty-eight thousand eight hundred six' WHERE a=2766;\nUPDATE t2 SET c='nineteen thousand five hundred seventy-three' WHERE a=2767;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-five' WHERE a=2768;\nUPDATE t2 SET c='eight thousand five hundred eighty-one' WHERE a=2769;\nUPDATE t2 SET c='four thousand eight hundred eight' WHERE a=2770;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-nine' WHERE a=2771;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-two' WHERE a=2772;\nUPDATE t2 SET c='thirty-eight thousand seven hundred forty-six' WHERE a=2773;\nUPDATE t2 SET c='sixty-eight thousand seven hundred one' WHERE a=2774;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-seven' WHERE a=2775;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-eight' WHERE a=2776;\nUPDATE t2 SET c='four thousand five hundred twenty-four' WHERE a=2777;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-seven' WHERE a=2778;\nUPDATE t2 SET c='thirty-six thousand five hundred sixty-nine' WHERE a=2779;\nUPDATE t2 SET c='ninety-nine thousand four hundred forty-one' WHERE a=2780;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-four' WHERE a=2781;\nUPDATE t2 SET c='five thousand five hundred six' WHERE a=2782;\nUPDATE t2 SET c='forty-one thousand four hundred eighty-six' WHERE a=2783;\nUPDATE t2 SET c='eleven thousand two hundred' WHERE a=2784;\nUPDATE t2 SET c='fifty-one thousand seven hundred four' WHERE a=2785;\nUPDATE t2 SET c='seventeen thousand five hundred three' WHERE a=2786;\nUPDATE t2 SET c='forty-seven thousand three hundred seven' WHERE a=2787;\nUPDATE t2 SET c='seventy-three thousand eight hundred fifty-eight' WHERE a=2788;\nUPDATE t2 SET c='fifty thousand three hundred eighty-six' WHERE a=2789;\nUPDATE t2 SET c='twenty thousand two hundred forty-two' WHERE a=2790;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-four' WHERE a=2791;\nUPDATE t2 SET c='ninety-eight thousand one hundred seven' WHERE a=2792;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty' WHERE a=2793;\nUPDATE t2 SET c='twenty-two thousand nine hundred forty-eight' WHERE a=2794;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-one' WHERE a=2795;\nUPDATE t2 SET c='eight hundred twenty-five' WHERE a=2796;\nUPDATE t2 SET c='seventy-five thousand three hundred seventy-seven' WHERE a=2797;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-two' WHERE a=2798;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-three' WHERE a=2799;\nUPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=2800;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-eight' WHERE a=2801;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-six' WHERE a=2802;\nUPDATE t2 SET c='sixty-six thousand five hundred forty-eight' WHERE a=2803;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty-six' WHERE a=2804;\nUPDATE t2 SET c='ninety-six thousand seven hundred forty-eight' WHERE a=2805;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-eight' WHERE a=2806;\nUPDATE t2 SET c='eighty thousand one hundred twenty-seven' WHERE a=2807;\nUPDATE t2 SET c='ninety-nine thousand five hundred eighty-seven' WHERE a=2808;\nUPDATE t2 SET c='eighty-five thousand nine' WHERE a=2809;\nUPDATE t2 SET c='eighty-eight thousand five hundred ninety-one' WHERE a=2810;\nUPDATE t2 SET c='thirty-five thousand two hundred two' WHERE a=2811;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-three' WHERE a=2812;\nUPDATE t2 SET c='fifty-one thousand three hundred forty-eight' WHERE a=2813;\nUPDATE t2 SET c='forty-six thousand nine hundred seventy-two' WHERE a=2814;\nUPDATE t2 SET c='sixty-two thousand twenty-seven' WHERE a=2815;\nUPDATE t2 SET c='four thousand four hundred twenty-six' WHERE a=2816;\nUPDATE t2 SET c='sixty-five thousand four hundred seventy-seven' WHERE a=2817;\nUPDATE t2 SET c='forty thousand four hundred sixty-six' WHERE a=2818;\nUPDATE t2 SET c='three thousand sixty-three' WHERE a=2819;\nUPDATE t2 SET c='forty-four thousand two hundred four' WHERE a=2820;\nUPDATE t2 SET c='one thousand two hundred thirty-nine' WHERE a=2821;\nUPDATE t2 SET c='three thousand eight hundred ten' WHERE a=2822;\nUPDATE t2 SET c='twelve thousand six hundred forty-six' WHERE a=2823;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-six' WHERE a=2824;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-four' WHERE a=2825;\nUPDATE t2 SET c='ninety thousand two hundred fifty-five' WHERE a=2826;\nUPDATE t2 SET c='twenty-two thousand nineteen' WHERE a=2827;\nUPDATE t2 SET c='forty-two thousand three hundred seventy-four' WHERE a=2828;\nUPDATE t2 SET c='five thousand three hundred eighty-two' WHERE a=2829;\nUPDATE t2 SET c='thirteen thousand three hundred' WHERE a=2830;\nUPDATE t2 SET c='fifty-five thousand six hundred eight' WHERE a=2831;\nUPDATE t2 SET c='sixty thousand four' WHERE a=2832;\nUPDATE t2 SET c='eighty-five thousand eight hundred thirty-seven' WHERE a=2833;\nUPDATE t2 SET c='one thousand five hundred thirty-seven' WHERE a=2834;\nUPDATE t2 SET c='eight thousand seven hundred sixty-four' WHERE a=2835;\nUPDATE t2 SET c='seventy thousand one hundred twenty-six' WHERE a=2836;\nUPDATE t2 SET c='forty thousand two hundred forty-eight' WHERE a=2837;\nUPDATE t2 SET c='ninety-nine thousand eight hundred one' WHERE a=2838;\nUPDATE t2 SET c='sixty-four thousand seventy-six' WHERE a=2839;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-two' WHERE a=2840;\nUPDATE t2 SET c='three thousand six hundred eighty-three' WHERE a=2841;\nUPDATE t2 SET c='fifty-eight thousand one hundred sixty-six' WHERE a=2842;\nUPDATE t2 SET c='fifty-two thousand sixty-eight' WHERE a=2843;\nUPDATE t2 SET c='ninety-six thousand nine hundred eighty-three' WHERE a=2844;\nUPDATE t2 SET c='eighty-four thousand two hundred thirteen' WHERE a=2845;\nUPDATE t2 SET c='sixty-five thousand four hundred ninety-nine' WHERE a=2846;\nUPDATE t2 SET c='one thousand two hundred thirty-two' WHERE a=2847;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy' WHERE a=2848;\nUPDATE t2 SET c='eight thousand four hundred nineteen' WHERE a=2849;\nUPDATE t2 SET c='ninety-three thousand forty-eight' WHERE a=2850;\nUPDATE t2 SET c='thirty thousand one hundred forty-two' WHERE a=2851;\nUPDATE t2 SET c='forty-five thousand nine hundred thirty-three' WHERE a=2852;\nUPDATE t2 SET c='thirty-seven thousand six hundred seventy-seven' WHERE a=2853;\nUPDATE t2 SET c='four thousand four hundred nineteen' WHERE a=2854;\nUPDATE t2 SET c='eight thousand nine hundred forty-five' WHERE a=2855;\nUPDATE t2 SET c='seventy-five thousand forty-two' WHERE a=2856;\nUPDATE t2 SET c='one thousand seven hundred thirty-five' WHERE a=2857;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=2858;\nUPDATE t2 SET c='forty-nine thousand one hundred sixty' WHERE a=2859;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-eight' WHERE a=2860;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-six' WHERE a=2861;\nUPDATE t2 SET c='forty-five thousand eight hundred five' WHERE a=2862;\nUPDATE t2 SET c='seventy-seven thousand seventy-one' WHERE a=2863;\nUPDATE t2 SET c='six thousand six hundred seventy-one' WHERE a=2864;\nUPDATE t2 SET c='thirty thousand nine hundred fifty' WHERE a=2865;\nUPDATE t2 SET c='ninety-five thousand six hundred ninety-five' WHERE a=2866;\nUPDATE t2 SET c='sixty thousand fifty-four' WHERE a=2867;\nUPDATE t2 SET c='seven thousand sixty-four' WHERE a=2868;\nUPDATE t2 SET c='nineteen thousand three hundred eighty-nine' WHERE a=2869;\nUPDATE t2 SET c='forty-five thousand four hundred twenty' WHERE a=2870;\nUPDATE t2 SET c='thirty-three thousand ninety-five' WHERE a=2871;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-one' WHERE a=2872;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fifty-seven' WHERE a=2873;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty-two' WHERE a=2874;\nUPDATE t2 SET c='ninety-six thousand one hundred sixty' WHERE a=2875;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifty-one' WHERE a=2876;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-seven' WHERE a=2877;\nUPDATE t2 SET c='ninety-five thousand five hundred seventeen' WHERE a=2878;\nUPDATE t2 SET c='forty-two thousand nine hundred eighty-five' WHERE a=2879;\nUPDATE t2 SET c='thirty-three thousand eight hundred fifty-three' WHERE a=2880;\nUPDATE t2 SET c='ninety-two thousand seven hundred sixty-nine' WHERE a=2881;\nUPDATE t2 SET c='sixty-nine thousand four hundred eighteen' WHERE a=2882;\nUPDATE t2 SET c='seventy-eight thousand twenty-eight' WHERE a=2883;\nUPDATE t2 SET c='seventy-six thousand four hundred seven' WHERE a=2884;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-eight' WHERE a=2885;\nUPDATE t2 SET c='ninety-one thousand ten' WHERE a=2886;\nUPDATE t2 SET c='eighty thousand eight hundred thirty-six' WHERE a=2887;\nUPDATE t2 SET c='ninety-four thousand eight hundred ninety-five' WHERE a=2888;\nUPDATE t2 SET c='twenty-eight thousand five hundred three' WHERE a=2889;\nUPDATE t2 SET c='seventy thousand two hundred fifty-six' WHERE a=2890;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-five' WHERE a=2891;\nUPDATE t2 SET c='sixty-six thousand two hundred twenty' WHERE a=2892;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-six' WHERE a=2893;\nUPDATE t2 SET c='three thousand six hundred ninety-nine' WHERE a=2894;\nUPDATE t2 SET c='fifteen thousand seven hundred thirty' WHERE a=2895;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-one' WHERE a=2896;\nUPDATE t2 SET c='thirty-two thousand twenty-three' WHERE a=2897;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty' WHERE a=2898;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty-six' WHERE a=2899;\nUPDATE t2 SET c='thirty-one thousand three hundred nineteen' WHERE a=2900;\nUPDATE t2 SET c='seventy-eight thousand five hundred five' WHERE a=2901;\nUPDATE t2 SET c='fifty thousand five hundred eighty-one' WHERE a=2902;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-nine' WHERE a=2903;\nUPDATE t2 SET c='twenty-three thousand eight hundred thirty-two' WHERE a=2904;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety-two' WHERE a=2905;\nUPDATE t2 SET c='twenty-three thousand one hundred eighty-two' WHERE a=2906;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-seven' WHERE a=2907;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-nine' WHERE a=2908;\nUPDATE t2 SET c='thirty thousand eight hundred seventy-six' WHERE a=2909;\nUPDATE t2 SET c='ninety-eight thousand two hundred sixty-six' WHERE a=2910;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty-four' WHERE a=2911;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty' WHERE a=2912;\nUPDATE t2 SET c='eighteen thousand six hundred thirty-six' WHERE a=2913;\nUPDATE t2 SET c='seventy-six thousand eight hundred five' WHERE a=2914;\nUPDATE t2 SET c='forty thousand two hundred six' WHERE a=2915;\nUPDATE t2 SET c='twenty-one thousand three hundred twenty-five' WHERE a=2916;\nUPDATE t2 SET c='forty thousand nine hundred sixty-six' WHERE a=2917;\nUPDATE t2 SET c='sixty-one thousand one hundred twenty-three' WHERE a=2918;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eight' WHERE a=2919;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty-nine' WHERE a=2920;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty-one' WHERE a=2921;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-one' WHERE a=2922;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-four' WHERE a=2923;\nUPDATE t2 SET c='thirty-eight thousand nine hundred one' WHERE a=2924;\nUPDATE t2 SET c='fifty-seven thousand four hundred eighty' WHERE a=2925;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-four' WHERE a=2926;\nUPDATE t2 SET c='sixty-six thousand five hundred three' WHERE a=2927;\nUPDATE t2 SET c='thirty-six thousand one hundred twenty' WHERE a=2928;\nUPDATE t2 SET c='seven thousand eighty-nine' WHERE a=2929;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=2930;\nUPDATE t2 SET c='twenty-four thousand seven hundred nine' WHERE a=2931;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-nine' WHERE a=2932;\nUPDATE t2 SET c='sixty-two thousand one hundred twenty-four' WHERE a=2933;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-seven' WHERE a=2934;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-seven' WHERE a=2935;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-four' WHERE a=2936;\nUPDATE t2 SET c='three hundred eighty-two' WHERE a=2937;\nUPDATE t2 SET c='twenty-eight thousand two hundred forty-seven' WHERE a=2938;\nUPDATE t2 SET c='nine thousand six hundred fifty-two' WHERE a=2939;\nUPDATE t2 SET c='forty thousand seventy-four' WHERE a=2940;\nUPDATE t2 SET c='fifty-seven thousand three hundred eighty-nine' WHERE a=2941;\nUPDATE t2 SET c='twenty-one thousand nine hundred seven' WHERE a=2942;\nUPDATE t2 SET c='sixty-eight thousand twenty-five' WHERE a=2943;\nUPDATE t2 SET c='sixty-one thousand six hundred ten' WHERE a=2944;\nUPDATE t2 SET c='four thousand one hundred seventy-nine' WHERE a=2945;\nUPDATE t2 SET c='twelve thousand seven hundred seventy' WHERE a=2946;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=2947;\nUPDATE t2 SET c='one thousand two hundred ninety-six' WHERE a=2948;\nUPDATE t2 SET c='fifty thousand nine hundred two' WHERE a=2949;\nUPDATE t2 SET c='fifty-four thousand two hundred twenty' WHERE a=2950;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=2951;\nUPDATE t2 SET c='sixty-two thousand eighty' WHERE a=2952;\nUPDATE t2 SET c='seventy-eight thousand five hundred ninety-five' WHERE a=2953;\nUPDATE t2 SET c='nineteen thousand seven hundred seventy-one' WHERE a=2954;\nUPDATE t2 SET c='fourteen thousand five hundred three' WHERE a=2955;\nUPDATE t2 SET c='forty-five thousand one hundred fifty-five' WHERE a=2956;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=2957;\nUPDATE t2 SET c='eighteen thousand seven hundred forty-two' WHERE a=2958;\nUPDATE t2 SET c='twenty-two thousand three hundred thirteen' WHERE a=2959;\nUPDATE t2 SET c='eight thousand seven hundred eighty-nine' WHERE a=2960;\nUPDATE t2 SET c='twenty-eight thousand three hundred thirty-one' WHERE a=2961;\nUPDATE t2 SET c='thirty-seven thousand five hundred sixteen' WHERE a=2962;\nUPDATE t2 SET c='eighty-one thousand eight hundred five' WHERE a=2963;\nUPDATE t2 SET c='twenty thousand forty-six' WHERE a=2964;\nUPDATE t2 SET c='thirty-eight thousand three hundred ninety-one' WHERE a=2965;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-five' WHERE a=2966;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty' WHERE a=2967;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-seven' WHERE a=2968;\nUPDATE t2 SET c='ninety-seven thousand nine hundred one' WHERE a=2969;\nUPDATE t2 SET c='thirty-four thousand eight hundred seventy-seven' WHERE a=2970;\nUPDATE t2 SET c='thirty-six thousand one hundred seventy-eight' WHERE a=2971;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-six' WHERE a=2972;\nUPDATE t2 SET c='thirty thousand two hundred eighty-three' WHERE a=2973;\nUPDATE t2 SET c='thirteen thousand eight hundred eighteen' WHERE a=2974;\nUPDATE t2 SET c='seventy-six thousand four hundred sixty-three' WHERE a=2975;\nUPDATE t2 SET c='seventy-six thousand five hundred thirteen' WHERE a=2976;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty-seven' WHERE a=2977;\nUPDATE t2 SET c='ninety-seven thousand seven hundred fifty-one' WHERE a=2978;\nUPDATE t2 SET c='seven thousand five hundred seventeen' WHERE a=2979;\nUPDATE t2 SET c='three thousand eight hundred thirty-four' WHERE a=2980;\nUPDATE t2 SET c='forty-six thousand nine hundred forty-one' WHERE a=2981;\nUPDATE t2 SET c='sixty-three thousand eighty' WHERE a=2982;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-six' WHERE a=2983;\nUPDATE t2 SET c='eighty thousand one hundred one' WHERE a=2984;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety' WHERE a=2985;\nUPDATE t2 SET c='two hundred seventy-five' WHERE a=2986;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-four' WHERE a=2987;\nUPDATE t2 SET c='forty-nine thousand three hundred twenty-seven' WHERE a=2988;\nUPDATE t2 SET c='seventy thousand nine hundred sixty-eight' WHERE a=2989;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=2990;\nUPDATE t2 SET c='sixty-seven thousand nine hundred ninety' WHERE a=2991;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=2992;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-seven' WHERE a=2993;\nUPDATE t2 SET c='twenty-three thousand eleven' WHERE a=2994;\nUPDATE t2 SET c='eighty-four thousand five hundred eighty-three' WHERE a=2995;\nUPDATE t2 SET c='thirty-one thousand six hundred sixty-four' WHERE a=2996;\nUPDATE t2 SET c='four thousand two hundred' WHERE a=2997;\nUPDATE t2 SET c='seventy-six thousand three hundred forty-six' WHERE a=2998;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-eight' WHERE a=2999;\nUPDATE t2 SET c='seventy thousand two hundred sixty-two' WHERE a=3000;\nUPDATE t2 SET c='nineteen thousand eight hundred forty-eight' WHERE a=3001;\nUPDATE t2 SET c='ninety thousand five hundred forty-two' WHERE a=3002;\nUPDATE t2 SET c='fifteen thousand one hundred sixty-one' WHERE a=3003;\nUPDATE t2 SET c='fifty-seven thousand eight hundred sixty-four' WHERE a=3004;\nUPDATE t2 SET c='eighty-three thousand seven hundred ninety-four' WHERE a=3005;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty-three' WHERE a=3006;\nUPDATE t2 SET c='forty-four thousand eight hundred thirty-three' WHERE a=3007;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-two' WHERE a=3008;\nUPDATE t2 SET c='eight thousand five hundred fifty-eight' WHERE a=3009;\nUPDATE t2 SET c='eleven thousand three hundred eighty-two' WHERE a=3010;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-seven' WHERE a=3011;\nUPDATE t2 SET c='sixteen thousand eighty-six' WHERE a=3012;\nUPDATE t2 SET c='eighty-two thousand six hundred' WHERE a=3013;\nUPDATE t2 SET c='fifteen thousand four hundred fifty-three' WHERE a=3014;\nUPDATE t2 SET c='seventy-three thousand seven hundred twenty-three' WHERE a=3015;\nUPDATE t2 SET c='fifty-three thousand four hundred eighty-four' WHERE a=3016;\nUPDATE t2 SET c='eighty-two thousand one hundred nineteen' WHERE a=3017;\nUPDATE t2 SET c='twenty-five thousand four hundred twenty-one' WHERE a=3018;\nUPDATE t2 SET c='twenty-eight thousand four hundred ninety-three' WHERE a=3019;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-five' WHERE a=3020;\nUPDATE t2 SET c='sixty-three thousand two hundred fifty-one' WHERE a=3021;\nUPDATE t2 SET c='sixty-four thousand five hundred seventy-five' WHERE a=3022;\nUPDATE t2 SET c='five thousand five hundred nineteen' WHERE a=3023;\nUPDATE t2 SET c='three thousand three hundred fifty-one' WHERE a=3024;\nUPDATE t2 SET c='thirty-eight thousand sixty-two' WHERE a=3025;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirty-three' WHERE a=3026;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirteen' WHERE a=3027;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-seven' WHERE a=3028;\nUPDATE t2 SET c='twenty-three thousand two hundred ninety-nine' WHERE a=3029;\nUPDATE t2 SET c='thirty-eight thousand six hundred ninety-four' WHERE a=3030;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-three' WHERE a=3031;\nUPDATE t2 SET c='twenty thousand four hundred thirty-one' WHERE a=3032;\nUPDATE t2 SET c='thirty thousand eight hundred sixty' WHERE a=3033;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-seven' WHERE a=3034;\nUPDATE t2 SET c='three hundred fifty-eight' WHERE a=3035;\nUPDATE t2 SET c='thirty-six thousand six hundred twenty-eight' WHERE a=3036;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighteen' WHERE a=3037;\nUPDATE t2 SET c='eighty-three thousand one hundred nineteen' WHERE a=3038;\nUPDATE t2 SET c='forty-six thousand four hundred eight' WHERE a=3039;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy-four' WHERE a=3040;\nUPDATE t2 SET c='ten thousand one hundred ninety-four' WHERE a=3041;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=3042;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty-four' WHERE a=3043;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-nine' WHERE a=3044;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-one' WHERE a=3045;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty-one' WHERE a=3046;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-four' WHERE a=3047;\nUPDATE t2 SET c='fifty-three thousand nine hundred fifty-one' WHERE a=3048;\nUPDATE t2 SET c='forty-nine thousand four hundred sixty' WHERE a=3049;\nUPDATE t2 SET c='six thousand four hundred' WHERE a=3050;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-seven' WHERE a=3051;\nUPDATE t2 SET c='ninety-two thousand seven hundred fifty-one' WHERE a=3052;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-nine' WHERE a=3053;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-three' WHERE a=3054;\nUPDATE t2 SET c='eighty-six thousand seven hundred fourteen' WHERE a=3055;\nUPDATE t2 SET c='two thousand five hundred twenty' WHERE a=3056;\nUPDATE t2 SET c='nineteen thousand seven hundred sixty-eight' WHERE a=3057;\nUPDATE t2 SET c='sixty-three thousand nine hundred thirty-three' WHERE a=3058;\nUPDATE t2 SET c='eight thousand seven hundred eighty' WHERE a=3059;\nUPDATE t2 SET c='five thousand thirty-five' WHERE a=3060;\nUPDATE t2 SET c='twenty-eight thousand two hundred eighty-six' WHERE a=3061;\nUPDATE t2 SET c='forty-three thousand two hundred twenty-four' WHERE a=3062;\nUPDATE t2 SET c='seventy-seven thousand thirty-four' WHERE a=3063;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy' WHERE a=3064;\nUPDATE t2 SET c='ninety-two thousand three hundred sixty-six' WHERE a=3065;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty' WHERE a=3066;\nUPDATE t2 SET c='ninety-eight thousand thirty-three' WHERE a=3067;\nUPDATE t2 SET c='ninety-two thousand four hundred thirty' WHERE a=3068;\nUPDATE t2 SET c='seventy-six thousand one hundred four' WHERE a=3069;\nUPDATE t2 SET c='twenty-seven thousand six hundred forty-one' WHERE a=3070;\nUPDATE t2 SET c='eleven thousand nine hundred ninety-one' WHERE a=3071;\nUPDATE t2 SET c='eight thousand two hundred thirty-eight' WHERE a=3072;\nUPDATE t2 SET c='thirty-three thousand two hundred fifty-four' WHERE a=3073;\nUPDATE t2 SET c='twenty-six thousand five hundred twelve' WHERE a=3074;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-five' WHERE a=3075;\nUPDATE t2 SET c='forty thousand six hundred ninety' WHERE a=3076;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-three' WHERE a=3077;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-two' WHERE a=3078;\nUPDATE t2 SET c='twenty-three thousand three hundred ninety-four' WHERE a=3079;\nUPDATE t2 SET c='sixty-eight thousand five hundred ninety-nine' WHERE a=3080;\nUPDATE t2 SET c='seventy-seven thousand one hundred eighty-eight' WHERE a=3081;\nUPDATE t2 SET c='four hundred twenty-three' WHERE a=3082;\nUPDATE t2 SET c='forty thousand eleven' WHERE a=3083;\nUPDATE t2 SET c='sixty-two thousand nine hundred twenty-eight' WHERE a=3084;\nUPDATE t2 SET c='seventy-nine thousand three hundred eighty' WHERE a=3085;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-one' WHERE a=3086;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-one' WHERE a=3087;\nUPDATE t2 SET c='fifty-one thousand five hundred three' WHERE a=3088;\nUPDATE t2 SET c='fifteen thousand seven hundred seventy-nine' WHERE a=3089;\nUPDATE t2 SET c='eighty-eight thousand fifty-two' WHERE a=3090;\nUPDATE t2 SET c='forty-two thousand six hundred eighty-eight' WHERE a=3091;\nUPDATE t2 SET c='nineteen thousand eight hundred eight' WHERE a=3092;\nUPDATE t2 SET c='eighty-one thousand five hundred sixty-three' WHERE a=3093;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-seven' WHERE a=3094;\nUPDATE t2 SET c='five thousand three hundred sixty-eight' WHERE a=3095;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-six' WHERE a=3096;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty' WHERE a=3097;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty-nine' WHERE a=3098;\nUPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=3099;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-five' WHERE a=3100;\nUPDATE t2 SET c='sixty-four thousand forty-seven' WHERE a=3101;\nUPDATE t2 SET c='ten thousand nine hundred eighty-three' WHERE a=3102;\nUPDATE t2 SET c='five hundred forty-four' WHERE a=3103;\nUPDATE t2 SET c='sixty thousand nine hundred forty-five' WHERE a=3104;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-nine' WHERE a=3105;\nUPDATE t2 SET c='forty-seven thousand four hundred sixty-four' WHERE a=3106;\nUPDATE t2 SET c='sixty-four thousand six hundred fifty-six' WHERE a=3107;\nUPDATE t2 SET c='eighty-seven thousand two hundred sixty-eight' WHERE a=3108;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-four' WHERE a=3109;\nUPDATE t2 SET c='forty-six thousand five hundred forty-three' WHERE a=3110;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-five' WHERE a=3111;\nUPDATE t2 SET c='fifty-two thousand one hundred eighty-two' WHERE a=3112;\nUPDATE t2 SET c='seventy-one thousand five hundred ninety-nine' WHERE a=3113;\nUPDATE t2 SET c='thirty-five thousand one hundred fifty-eight' WHERE a=3114;\nUPDATE t2 SET c='fifty-two thousand one hundred fourteen' WHERE a=3115;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty' WHERE a=3116;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-five' WHERE a=3117;\nUPDATE t2 SET c='thirty-two thousand fifty' WHERE a=3118;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-seven' WHERE a=3119;\nUPDATE t2 SET c='eighty thousand three hundred seven' WHERE a=3120;\nUPDATE t2 SET c='fifteen thousand eighty-nine' WHERE a=3121;\nUPDATE t2 SET c='seventeen thousand six hundred fifty-seven' WHERE a=3122;\nUPDATE t2 SET c='eight thousand three hundred sixty-seven' WHERE a=3123;\nUPDATE t2 SET c='eleven thousand ninety' WHERE a=3124;\nUPDATE t2 SET c='five thousand ninety-three' WHERE a=3125;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-seven' WHERE a=3126;\nUPDATE t2 SET c='ninety-eight thousand six hundred forty-nine' WHERE a=3127;\nUPDATE t2 SET c='fifty thousand two hundred sixty-six' WHERE a=3128;\nUPDATE t2 SET c='sixteen thousand four hundred two' WHERE a=3129;\nUPDATE t2 SET c='eleven thousand seventy-five' WHERE a=3130;\nUPDATE t2 SET c='forty-three thousand three hundred eighty' WHERE a=3131;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-four' WHERE a=3132;\nUPDATE t2 SET c='thirty thousand nine hundred sixty' WHERE a=3133;\nUPDATE t2 SET c='twenty-three thousand seven hundred two' WHERE a=3134;\nUPDATE t2 SET c='three thousand two hundred nine' WHERE a=3135;\nUPDATE t2 SET c='ten thousand two hundred eleven' WHERE a=3136;\nUPDATE t2 SET c='eighty thousand two hundred forty-three' WHERE a=3137;\nUPDATE t2 SET c='sixty-six thousand four hundred twenty' WHERE a=3138;\nUPDATE t2 SET c='seventy-six thousand eighty-seven' WHERE a=3139;\nUPDATE t2 SET c='ninety-nine thousand nine hundred sixty-five' WHERE a=3140;\nUPDATE t2 SET c='two thousand eight hundred fifteen' WHERE a=3141;\nUPDATE t2 SET c='eight thousand forty-five' WHERE a=3142;\nUPDATE t2 SET c='four thousand eight hundred sixteen' WHERE a=3143;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-five' WHERE a=3144;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=3145;\nUPDATE t2 SET c='sixty-four thousand forty-three' WHERE a=3146;\nUPDATE t2 SET c='fifty-six thousand six hundred seventy-two' WHERE a=3147;\nUPDATE t2 SET c='fifty thousand three hundred forty-three' WHERE a=3148;\nUPDATE t2 SET c='twenty-nine thousand eighty-three' WHERE a=3149;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-seven' WHERE a=3150;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy' WHERE a=3151;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-nine' WHERE a=3152;\nUPDATE t2 SET c='eighty-nine thousand seven hundred seventy-seven' WHERE a=3153;\nUPDATE t2 SET c='seventeen thousand eight hundred forty-nine' WHERE a=3154;\nUPDATE t2 SET c='nineteen thousand nine hundred ten' WHERE a=3155;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-four' WHERE a=3156;\nUPDATE t2 SET c='twelve thousand one hundred seventy-one' WHERE a=3157;\nUPDATE t2 SET c='fifty-four thousand two hundred eighteen' WHERE a=3158;\nUPDATE t2 SET c='thirty-two thousand three hundred twenty-seven' WHERE a=3159;\nUPDATE t2 SET c='fifteen thousand seven hundred twenty-nine' WHERE a=3160;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-two' WHERE a=3161;\nUPDATE t2 SET c='nineteen thousand ninety-two' WHERE a=3162;\nUPDATE t2 SET c='seventy thousand seven hundred forty-two' WHERE a=3163;\nUPDATE t2 SET c='forty-one thousand four hundred forty-eight' WHERE a=3164;\nUPDATE t2 SET c='forty-three thousand eight hundred one' WHERE a=3165;\nUPDATE t2 SET c='ninety-six thousand one hundred one' WHERE a=3166;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-three' WHERE a=3167;\nUPDATE t2 SET c='nine thousand eight hundred sixty-six' WHERE a=3168;\nUPDATE t2 SET c='sixty-five thousand nine hundred ninety-one' WHERE a=3169;\nUPDATE t2 SET c='sixteen thousand nine hundred fourteen' WHERE a=3170;\nUPDATE t2 SET c='eighty-two thousand five hundred fifty-six' WHERE a=3171;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty' WHERE a=3172;\nUPDATE t2 SET c='eight thousand seven hundred fifty-one' WHERE a=3173;\nUPDATE t2 SET c='sixty-one thousand three hundred ninety-two' WHERE a=3174;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-eight' WHERE a=3175;\nUPDATE t2 SET c='one thousand three hundred forty-nine' WHERE a=3176;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-nine' WHERE a=3177;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-five' WHERE a=3178;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-three' WHERE a=3179;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty' WHERE a=3180;\nUPDATE t2 SET c='thirteen thousand six hundred twenty-two' WHERE a=3181;\nUPDATE t2 SET c='eight thousand six' WHERE a=3182;\nUPDATE t2 SET c='one thousand eight hundred sixty-one' WHERE a=3183;\nUPDATE t2 SET c='fifty-three thousand four hundred nineteen' WHERE a=3184;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-eight' WHERE a=3185;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-eight' WHERE a=3186;\nUPDATE t2 SET c='twenty-nine thousand two hundred sixty-seven' WHERE a=3187;\nUPDATE t2 SET c='ninety-three thousand four hundred forty-five' WHERE a=3188;\nUPDATE t2 SET c='fifty-two thousand twenty-four' WHERE a=3189;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-six' WHERE a=3190;\nUPDATE t2 SET c='forty-two thousand six hundred sixty' WHERE a=3191;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty-eight' WHERE a=3192;\nUPDATE t2 SET c='twenty-eight thousand seven hundred seventy-eight' WHERE a=3193;\nUPDATE t2 SET c='eighty-eight thousand two hundred eight' WHERE a=3194;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-four' WHERE a=3195;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-six' WHERE a=3196;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-five' WHERE a=3197;\nUPDATE t2 SET c='seventy thousand four hundred six' WHERE a=3198;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-six' WHERE a=3199;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-four' WHERE a=3200;\nUPDATE t2 SET c='eighty-eight thousand one hundred seventy' WHERE a=3201;\nUPDATE t2 SET c='twelve thousand four hundred sixty-five' WHERE a=3202;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=3203;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-five' WHERE a=3204;\nUPDATE t2 SET c='twenty-two thousand one hundred eight' WHERE a=3205;\nUPDATE t2 SET c='three thousand nine hundred seventy-three' WHERE a=3206;\nUPDATE t2 SET c='seventy-one thousand eight hundred twelve' WHERE a=3207;\nUPDATE t2 SET c='forty-seven thousand two hundred eighty-six' WHERE a=3208;\nUPDATE t2 SET c='eighty-four thousand seventy-eight' WHERE a=3209;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-three' WHERE a=3210;\nUPDATE t2 SET c='twelve thousand five hundred ninety-nine' WHERE a=3211;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-six' WHERE a=3212;\nUPDATE t2 SET c='twenty-one thousand one hundred seventy-nine' WHERE a=3213;\nUPDATE t2 SET c='thirty-nine thousand one hundred fifty-two' WHERE a=3214;\nUPDATE t2 SET c='ninety-eight thousand four hundred forty-nine' WHERE a=3215;\nUPDATE t2 SET c='fifty-one thousand four hundred fifty-seven' WHERE a=3216;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-five' WHERE a=3217;\nUPDATE t2 SET c='fifteen thousand six hundred twelve' WHERE a=3218;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-six' WHERE a=3219;\nUPDATE t2 SET c='twenty-nine thousand seven hundred fifty-four' WHERE a=3220;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-six' WHERE a=3221;\nUPDATE t2 SET c='forty-seven thousand seven hundred eleven' WHERE a=3222;\nUPDATE t2 SET c='forty-two thousand one hundred thirty-eight' WHERE a=3223;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=3224;\nUPDATE t2 SET c='thirty-one thousand four hundred ninety-six' WHERE a=3225;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-five' WHERE a=3226;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-three' WHERE a=3227;\nUPDATE t2 SET c='six hundred fourteen' WHERE a=3228;\nUPDATE t2 SET c='eighty-seven thousand three hundred sixty-five' WHERE a=3229;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-nine' WHERE a=3230;\nUPDATE t2 SET c='forty-five thousand thirteen' WHERE a=3231;\nUPDATE t2 SET c='sixty-eight thousand thirty-seven' WHERE a=3232;\nUPDATE t2 SET c='fifty-one thousand one hundred ten' WHERE a=3233;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty-four' WHERE a=3234;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-four' WHERE a=3235;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-eight' WHERE a=3236;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-seven' WHERE a=3237;\nUPDATE t2 SET c='ninety-two thousand one hundred twenty-six' WHERE a=3238;\nUPDATE t2 SET c='sixteen thousand two hundred forty-nine' WHERE a=3239;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-seven' WHERE a=3240;\nUPDATE t2 SET c='twenty thousand five hundred twenty-nine' WHERE a=3241;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-nine' WHERE a=3242;\nUPDATE t2 SET c='fifty-five thousand thirteen' WHERE a=3243;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-eight' WHERE a=3244;\nUPDATE t2 SET c='fifteen thousand nine hundred two' WHERE a=3245;\nUPDATE t2 SET c='sixty-five thousand eight hundred sixty-eight' WHERE a=3246;\nUPDATE t2 SET c='thirty-one thousand seven hundred sixty-five' WHERE a=3247;\nUPDATE t2 SET c='thirteen thousand three hundred thirty-seven' WHERE a=3248;\nUPDATE t2 SET c='thirty-one thousand one hundred seventy-nine' WHERE a=3249;\nUPDATE t2 SET c='twenty-one thousand three hundred ninety-four' WHERE a=3250;\nUPDATE t2 SET c='four thousand seven hundred five' WHERE a=3251;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-four' WHERE a=3252;\nUPDATE t2 SET c='eighty-four thousand six hundred forty-one' WHERE a=3253;\nUPDATE t2 SET c='fifteen thousand six hundred eleven' WHERE a=3254;\nUPDATE t2 SET c='forty-one thousand six hundred seven' WHERE a=3255;\nUPDATE t2 SET c='fifteen thousand eight hundred nine' WHERE a=3256;\nUPDATE t2 SET c='three thousand fifty-one' WHERE a=3257;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-seven' WHERE a=3258;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-nine' WHERE a=3259;\nUPDATE t2 SET c='twenty-four thousand five hundred sixty-two' WHERE a=3260;\nUPDATE t2 SET c='seventy-two thousand three hundred nineteen' WHERE a=3261;\nUPDATE t2 SET c='ninety-seven thousand one hundred thirty-seven' WHERE a=3262;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty-six' WHERE a=3263;\nUPDATE t2 SET c='sixty-nine thousand four hundred six' WHERE a=3264;\nUPDATE t2 SET c='seventy-seven thousand six hundred forty-seven' WHERE a=3265;\nUPDATE t2 SET c='fifty thousand one hundred' WHERE a=3266;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-four' WHERE a=3267;\nUPDATE t2 SET c='forty-five thousand thirty-six' WHERE a=3268;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-eight' WHERE a=3269;\nUPDATE t2 SET c='seventy-nine thousand six hundred eight' WHERE a=3270;\nUPDATE t2 SET c='seventy-nine thousand three hundred thirty-five' WHERE a=3271;\nUPDATE t2 SET c='eighty-three thousand ten' WHERE a=3272;\nUPDATE t2 SET c='thirty-seven thousand five hundred seventy-two' WHERE a=3273;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixty-four' WHERE a=3274;\nUPDATE t2 SET c='thirty-six thousand seven hundred two' WHERE a=3275;\nUPDATE t2 SET c='seventy-one thousand six hundred forty-five' WHERE a=3276;\nUPDATE t2 SET c='forty-eight thousand nine hundred sixty-one' WHERE a=3277;\nUPDATE t2 SET c='twenty-one thousand three hundred thirty-four' WHERE a=3278;\nUPDATE t2 SET c='ten thousand eight hundred twenty-four' WHERE a=3279;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-eight' WHERE a=3280;\nUPDATE t2 SET c='fifty-two thousand five hundred fifty-three' WHERE a=3281;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-three' WHERE a=3282;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-two' WHERE a=3283;\nUPDATE t2 SET c='seventy-two thousand five hundred eighty-seven' WHERE a=3284;\nUPDATE t2 SET c='ninety-five thousand nine hundred ninety' WHERE a=3285;\nUPDATE t2 SET c='eighty-two thousand one hundred forty-three' WHERE a=3286;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-one' WHERE a=3287;\nUPDATE t2 SET c='twenty-nine thousand seven hundred twenty-four' WHERE a=3288;\nUPDATE t2 SET c='eighty-nine thousand seventy-nine' WHERE a=3289;\nUPDATE t2 SET c='fifty-four thousand four hundred thirteen' WHERE a=3290;\nUPDATE t2 SET c='seventy-eight thousand five hundred forty-eight' WHERE a=3291;\nUPDATE t2 SET c='forty-eight thousand five hundred sixty-four' WHERE a=3292;\nUPDATE t2 SET c='fifty-one thousand eight hundred thirty-one' WHERE a=3293;\nUPDATE t2 SET c='ninety-six thousand eight hundred' WHERE a=3294;\nUPDATE t2 SET c='thirty thousand three hundred ninety-nine' WHERE a=3295;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-six' WHERE a=3296;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-five' WHERE a=3297;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-one' WHERE a=3298;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-four' WHERE a=3299;\nUPDATE t2 SET c='seventy-six thousand five hundred twenty-two' WHERE a=3300;\nUPDATE t2 SET c='thirty-five thousand six hundred ninety' WHERE a=3301;\nUPDATE t2 SET c='thirty-eight thousand four' WHERE a=3302;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-eight' WHERE a=3303;\nUPDATE t2 SET c='forty thousand nine hundred thirty-two' WHERE a=3304;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-four' WHERE a=3305;\nUPDATE t2 SET c='six thousand one hundred forty-five' WHERE a=3306;\nUPDATE t2 SET c='eighty-one thousand two hundred sixty' WHERE a=3307;\nUPDATE t2 SET c='ninety thousand seven hundred fifty-six' WHERE a=3308;\nUPDATE t2 SET c='one thousand three hundred forty-four' WHERE a=3309;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy-four' WHERE a=3310;\nUPDATE t2 SET c='thirty thousand twenty-three' WHERE a=3311;\nUPDATE t2 SET c='twenty-five thousand one hundred six' WHERE a=3312;\nUPDATE t2 SET c='ten thousand nine hundred fifty-four' WHERE a=3313;\nUPDATE t2 SET c='thirty thousand six hundred ninety-one' WHERE a=3314;\nUPDATE t2 SET c='three thousand two hundred fifty-eight' WHERE a=3315;\nUPDATE t2 SET c='seventy-eight thousand nine hundred seventy-two' WHERE a=3316;\nUPDATE t2 SET c='ten thousand seven hundred twelve' WHERE a=3317;\nUPDATE t2 SET c='forty-one thousand four hundred twenty-one' WHERE a=3318;\nUPDATE t2 SET c='forty-six thousand six hundred seventy-six' WHERE a=3319;\nUPDATE t2 SET c='forty-two thousand nine hundred eleven' WHERE a=3320;\nUPDATE t2 SET c='seventy-seven thousand three hundred forty-four' WHERE a=3321;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-seven' WHERE a=3322;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-four' WHERE a=3323;\nUPDATE t2 SET c='forty-five thousand one hundred thirty-nine' WHERE a=3324;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty' WHERE a=3325;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy-eight' WHERE a=3326;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-four' WHERE a=3327;\nUPDATE t2 SET c='thirty-four thousand five hundred four' WHERE a=3328;\nUPDATE t2 SET c='one thousand four hundred ninety-seven' WHERE a=3329;\nUPDATE t2 SET c='sixty-one thousand forty' WHERE a=3330;\nUPDATE t2 SET c='ten thousand two hundred sixty-five' WHERE a=3331;\nUPDATE t2 SET c='eighty-one thousand eight hundred twenty-four' WHERE a=3332;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-six' WHERE a=3333;\nUPDATE t2 SET c='ninety-eight thousand nine hundred eighty-nine' WHERE a=3334;\nUPDATE t2 SET c='seventy-five thousand six hundred twenty-seven' WHERE a=3335;\nUPDATE t2 SET c='ninety-five thousand five hundred eighty-seven' WHERE a=3336;\nUPDATE t2 SET c='ninety-six thousand three hundred' WHERE a=3337;\nUPDATE t2 SET c='thirty-five thousand one hundred fifty-one' WHERE a=3338;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-eight' WHERE a=3339;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-two' WHERE a=3340;\nUPDATE t2 SET c='forty thousand two hundred forty-eight' WHERE a=3341;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy-five' WHERE a=3342;\nUPDATE t2 SET c='seventy-three thousand four hundred sixty-one' WHERE a=3343;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-six' WHERE a=3344;\nUPDATE t2 SET c='twenty-nine thousand two hundred sixty-four' WHERE a=3345;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-four' WHERE a=3346;\nUPDATE t2 SET c='twenty-three thousand ninety-one' WHERE a=3347;\nUPDATE t2 SET c='thirty-three thousand two hundred nine' WHERE a=3348;\nUPDATE t2 SET c='seventy thousand eight hundred fifty-eight' WHERE a=3349;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixteen' WHERE a=3350;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-three' WHERE a=3351;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirty' WHERE a=3352;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-seven' WHERE a=3353;\nUPDATE t2 SET c='twenty-five thousand eight hundred ten' WHERE a=3354;\nUPDATE t2 SET c='forty-four thousand nine hundred two' WHERE a=3355;\nUPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=3356;\nUPDATE t2 SET c='eighty thousand three hundred four' WHERE a=3357;\nUPDATE t2 SET c='eighty-four thousand one hundred seventy-two' WHERE a=3358;\nUPDATE t2 SET c='eighty-seven thousand eight hundred fifty-two' WHERE a=3359;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy-six' WHERE a=3360;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-seven' WHERE a=3361;\nUPDATE t2 SET c='sixty-four thousand five hundred forty-one' WHERE a=3362;\nUPDATE t2 SET c='twenty-seven thousand three hundred seventy-four' WHERE a=3363;\nUPDATE t2 SET c='forty thousand nine hundred eighty-four' WHERE a=3364;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-six' WHERE a=3365;\nUPDATE t2 SET c='eighty-eight thousand five hundred fifty-four' WHERE a=3366;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty' WHERE a=3367;\nUPDATE t2 SET c='twelve thousand six hundred sixty-eight' WHERE a=3368;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty' WHERE a=3369;\nUPDATE t2 SET c='sixty-nine thousand seven hundred eighty-nine' WHERE a=3370;\nUPDATE t2 SET c='ninety-seven thousand four hundred ninety' WHERE a=3371;\nUPDATE t2 SET c='three thousand six hundred eighty-three' WHERE a=3372;\nUPDATE t2 SET c='forty-two thousand thirty-eight' WHERE a=3373;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-four' WHERE a=3374;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy-five' WHERE a=3375;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-six' WHERE a=3376;\nUPDATE t2 SET c='twenty-five thousand three hundred forty-one' WHERE a=3377;\nUPDATE t2 SET c='ninety-eight thousand five hundred twenty-two' WHERE a=3378;\nUPDATE t2 SET c='six thousand five hundred ten' WHERE a=3379;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-two' WHERE a=3380;\nUPDATE t2 SET c='fifty-five thousand three hundred fifty-four' WHERE a=3381;\nUPDATE t2 SET c='fifty thousand thirteen' WHERE a=3382;\nUPDATE t2 SET c='eighty-three thousand two hundred six' WHERE a=3383;\nUPDATE t2 SET c='forty-two thousand thirty-nine' WHERE a=3384;\nUPDATE t2 SET c='sixty-two thousand five hundred fifty-three' WHERE a=3385;\nUPDATE t2 SET c='forty-two thousand eight hundred sixty-four' WHERE a=3386;\nUPDATE t2 SET c='forty-two thousand nine hundred seventy-nine' WHERE a=3387;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-nine' WHERE a=3388;\nUPDATE t2 SET c='thirty-six thousand five hundred forty-two' WHERE a=3389;\nUPDATE t2 SET c='twenty-seven thousand six hundred twenty-seven' WHERE a=3390;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty-six' WHERE a=3391;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-eight' WHERE a=3392;\nUPDATE t2 SET c='sixty thousand eight hundred thirty' WHERE a=3393;\nUPDATE t2 SET c='forty thousand three hundred four' WHERE a=3394;\nUPDATE t2 SET c='seventy-three thousand two hundred forty-eight' WHERE a=3395;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty' WHERE a=3396;\nUPDATE t2 SET c='eighty thousand nine hundred eleven' WHERE a=3397;\nUPDATE t2 SET c='twenty-six thousand' WHERE a=3398;\nUPDATE t2 SET c='sixteen thousand seven hundred ninety-three' WHERE a=3399;\nUPDATE t2 SET c='fifty-two thousand one hundred sixty-seven' WHERE a=3400;\nUPDATE t2 SET c='twenty-seven thousand one hundred ninety-seven' WHERE a=3401;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-eight' WHERE a=3402;\nUPDATE t2 SET c='fifty-three thousand three hundred seventy-five' WHERE a=3403;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-five' WHERE a=3404;\nUPDATE t2 SET c='eighty-two thousand eight hundred seventy-nine' WHERE a=3405;\nUPDATE t2 SET c='ninety-two thousand three hundred twenty-five' WHERE a=3406;\nUPDATE t2 SET c='sixty-three thousand nine hundred forty-six' WHERE a=3407;\nUPDATE t2 SET c='twenty-seven thousand three hundred five' WHERE a=3408;\nUPDATE t2 SET c='fifty-four thousand three hundred eight' WHERE a=3409;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-four' WHERE a=3410;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-four' WHERE a=3411;\nUPDATE t2 SET c='nine thousand three hundred forty-eight' WHERE a=3412;\nUPDATE t2 SET c='seventy-four thousand seven hundred sixty-eight' WHERE a=3413;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty-eight' WHERE a=3414;\nUPDATE t2 SET c='sixty-eight thousand three hundred ninety-eight' WHERE a=3415;\nUPDATE t2 SET c='seventy-four thousand four hundred sixty-seven' WHERE a=3416;\nUPDATE t2 SET c='seventy thousand four hundred thirty-one' WHERE a=3417;\nUPDATE t2 SET c='seventy-five thousand six hundred sixty-eight' WHERE a=3418;\nUPDATE t2 SET c='eighty-one thousand two hundred sixty-six' WHERE a=3419;\nUPDATE t2 SET c='fifty thousand one hundred seventeen' WHERE a=3420;\nUPDATE t2 SET c='eighty thousand four hundred thirty-five' WHERE a=3421;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-five' WHERE a=3422;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-five' WHERE a=3423;\nUPDATE t2 SET c='twenty-seven thousand three hundred thirty-four' WHERE a=3424;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-nine' WHERE a=3425;\nUPDATE t2 SET c='fifty-five thousand six hundred sixteen' WHERE a=3426;\nUPDATE t2 SET c='eighteen thousand eight hundred fifty' WHERE a=3427;\nUPDATE t2 SET c='fifty-five thousand four hundred thirty-seven' WHERE a=3428;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty-three' WHERE a=3429;\nUPDATE t2 SET c='five thousand five hundred eight' WHERE a=3430;\nUPDATE t2 SET c='three thousand seven hundred fourteen' WHERE a=3431;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy-four' WHERE a=3432;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-two' WHERE a=3433;\nUPDATE t2 SET c='eighty-seven thousand six hundred fifty-one' WHERE a=3434;\nUPDATE t2 SET c='six thousand one hundred fifty-three' WHERE a=3435;\nUPDATE t2 SET c='forty-nine thousand five hundred fifteen' WHERE a=3436;\nUPDATE t2 SET c='twenty-two thousand three hundred sixty-six' WHERE a=3437;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-six' WHERE a=3438;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=3439;\nUPDATE t2 SET c='six thousand four hundred twenty-six' WHERE a=3440;\nUPDATE t2 SET c='twenty-five thousand three hundred eight' WHERE a=3441;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-six' WHERE a=3442;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-nine' WHERE a=3443;\nUPDATE t2 SET c='seventy-six thousand ninety-four' WHERE a=3444;\nUPDATE t2 SET c='ninety-nine thousand five hundred ninety-nine' WHERE a=3445;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-eight' WHERE a=3446;\nUPDATE t2 SET c='fifty-one thousand nine hundred seventy-four' WHERE a=3447;\nUPDATE t2 SET c='sixty-four thousand one hundred twenty-two' WHERE a=3448;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-eight' WHERE a=3449;\nUPDATE t2 SET c='fifty-nine thousand two hundred one' WHERE a=3450;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-one' WHERE a=3451;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-nine' WHERE a=3452;\nUPDATE t2 SET c='two hundred thirty-two' WHERE a=3453;\nUPDATE t2 SET c='fifty thousand fifty-eight' WHERE a=3454;\nUPDATE t2 SET c='three thousand four hundred sixty-six' WHERE a=3455;\nUPDATE t2 SET c='sixty-four thousand six hundred thirty-six' WHERE a=3456;\nUPDATE t2 SET c='eleven thousand eight hundred sixty-five' WHERE a=3457;\nUPDATE t2 SET c='thirty thousand four hundred eighty-one' WHERE a=3458;\nUPDATE t2 SET c='seventy-four thousand five hundred thirty-two' WHERE a=3459;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-six' WHERE a=3460;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-three' WHERE a=3461;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-four' WHERE a=3462;\nUPDATE t2 SET c='eleven thousand three hundred eighteen' WHERE a=3463;\nUPDATE t2 SET c='seventy-four thousand two hundred seventy-six' WHERE a=3464;\nUPDATE t2 SET c='eighteen thousand four hundred seventy-six' WHERE a=3465;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty' WHERE a=3466;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-six' WHERE a=3467;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-three' WHERE a=3468;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-four' WHERE a=3469;\nUPDATE t2 SET c='sixty-six thousand nine hundred ninety-one' WHERE a=3470;\nUPDATE t2 SET c='sixty-two thousand six hundred eight' WHERE a=3471;\nUPDATE t2 SET c='ninety-nine thousand five hundred eighty-one' WHERE a=3472;\nUPDATE t2 SET c='fourteen thousand four hundred six' WHERE a=3473;\nUPDATE t2 SET c='six thousand three hundred twenty-seven' WHERE a=3474;\nUPDATE t2 SET c='sixty-three thousand three hundred eleven' WHERE a=3475;\nUPDATE t2 SET c='fifteen thousand seven hundred sixty-three' WHERE a=3476;\nUPDATE t2 SET c='eighty-four thousand two hundred twelve' WHERE a=3477;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-four' WHERE a=3478;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-three' WHERE a=3479;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty-eight' WHERE a=3480;\nUPDATE t2 SET c='forty-one thousand seven hundred seventy-two' WHERE a=3481;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-two' WHERE a=3482;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-three' WHERE a=3483;\nUPDATE t2 SET c='fifty-two thousand three hundred sixty-six' WHERE a=3484;\nUPDATE t2 SET c='seventy-four thousand nine' WHERE a=3485;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-seven' WHERE a=3486;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-two' WHERE a=3487;\nUPDATE t2 SET c='forty-eight thousand four hundred three' WHERE a=3488;\nUPDATE t2 SET c='thirty thousand seventy-seven' WHERE a=3489;\nUPDATE t2 SET c='seven thousand one hundred thirty-seven' WHERE a=3490;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-four' WHERE a=3491;\nUPDATE t2 SET c='forty-two thousand twenty-six' WHERE a=3492;\nUPDATE t2 SET c='fifty-five thousand seven hundred forty-two' WHERE a=3493;\nUPDATE t2 SET c='sixty-nine thousand one hundred forty-four' WHERE a=3494;\nUPDATE t2 SET c='forty-eight thousand eight hundred six' WHERE a=3495;\nUPDATE t2 SET c='forty-six thousand seven hundred sixteen' WHERE a=3496;\nUPDATE t2 SET c='fifty-three thousand seven hundred forty' WHERE a=3497;\nUPDATE t2 SET c='ninety thousand three hundred eleven' WHERE a=3498;\nUPDATE t2 SET c='twenty-five thousand four hundred forty-seven' WHERE a=3499;\nUPDATE t2 SET c='nineteen thousand sixty-six' WHERE a=3500;\nUPDATE t2 SET c='eighty-four thousand twenty-eight' WHERE a=3501;\nUPDATE t2 SET c='one thousand six hundred thirty-eight' WHERE a=3502;\nUPDATE t2 SET c='five thousand one hundred fifteen' WHERE a=3503;\nUPDATE t2 SET c='twenty-eight thousand nine hundred four' WHERE a=3504;\nUPDATE t2 SET c='thirty-four thousand five hundred forty-two' WHERE a=3505;\nUPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=3506;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-two' WHERE a=3507;\nUPDATE t2 SET c='ninety-one thousand two hundred twenty-eight' WHERE a=3508;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-three' WHERE a=3509;\nUPDATE t2 SET c='sixty-three thousand three hundred sixty-five' WHERE a=3510;\nUPDATE t2 SET c='thirty-one thousand eight hundred fifty-four' WHERE a=3511;\nUPDATE t2 SET c='forty-five thousand two hundred eighty-four' WHERE a=3512;\nUPDATE t2 SET c='twenty-nine thousand nine hundred seventeen' WHERE a=3513;\nUPDATE t2 SET c='eight thousand nine hundred fifty-seven' WHERE a=3514;\nUPDATE t2 SET c='forty thousand twenty-seven' WHERE a=3515;\nUPDATE t2 SET c='one thousand nine hundred fifty-two' WHERE a=3516;\nUPDATE t2 SET c='fourteen thousand one hundred ninety-nine' WHERE a=3517;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-four' WHERE a=3518;\nUPDATE t2 SET c='fifty-nine thousand eight hundred one' WHERE a=3519;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty' WHERE a=3520;\nUPDATE t2 SET c='sixty-two thousand eight hundred' WHERE a=3521;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-two' WHERE a=3522;\nUPDATE t2 SET c='seven thousand eight hundred twenty' WHERE a=3523;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-seven' WHERE a=3524;\nUPDATE t2 SET c='ninety-two thousand eight hundred forty-five' WHERE a=3525;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-two' WHERE a=3526;\nUPDATE t2 SET c='sixty-five thousand seven hundred two' WHERE a=3527;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-five' WHERE a=3528;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-seven' WHERE a=3529;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eighty-eight' WHERE a=3530;\nUPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=3531;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventy-six' WHERE a=3532;\nUPDATE t2 SET c='forty thousand ten' WHERE a=3533;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirty-nine' WHERE a=3534;\nUPDATE t2 SET c='six thousand eight hundred eighty-two' WHERE a=3535;\nUPDATE t2 SET c='eighty-three thousand four hundred twelve' WHERE a=3536;\nUPDATE t2 SET c='seven thousand two hundred ninety-three' WHERE a=3537;\nUPDATE t2 SET c='three thousand three hundred sixteen' WHERE a=3538;\nUPDATE t2 SET c='forty thousand two hundred thirty-eight' WHERE a=3539;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-four' WHERE a=3540;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-four' WHERE a=3541;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-five' WHERE a=3542;\nUPDATE t2 SET c='ninety-eight thousand nine hundred seventy-three' WHERE a=3543;\nUPDATE t2 SET c='twenty-nine thousand three hundred twenty-eight' WHERE a=3544;\nUPDATE t2 SET c='twenty-eight thousand four hundred forty-nine' WHERE a=3545;\nUPDATE t2 SET c='twenty-five thousand sixty-nine' WHERE a=3546;\nUPDATE t2 SET c='twenty-eight thousand fifty-eight' WHERE a=3547;\nUPDATE t2 SET c='forty-two thousand six hundred twenty-five' WHERE a=3548;\nUPDATE t2 SET c='one hundred thirty-three' WHERE a=3549;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-eight' WHERE a=3550;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-seven' WHERE a=3551;\nUPDATE t2 SET c='fifty thousand one hundred eighty-five' WHERE a=3552;\nUPDATE t2 SET c='fifty-nine thousand five hundred nineteen' WHERE a=3553;\nUPDATE t2 SET c='twenty-two thousand three hundred forty-one' WHERE a=3554;\nUPDATE t2 SET c='twenty-four thousand three hundred nineteen' WHERE a=3555;\nUPDATE t2 SET c='four thousand nine hundred ninety-three' WHERE a=3556;\nUPDATE t2 SET c='eighty-eight thousand six hundred ninety-two' WHERE a=3557;\nUPDATE t2 SET c='twelve thousand three hundred eighty-two' WHERE a=3558;\nUPDATE t2 SET c='fifty-nine thousand four hundred seventy' WHERE a=3559;\nUPDATE t2 SET c='twenty-three thousand four hundred six' WHERE a=3560;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-three' WHERE a=3561;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty-four' WHERE a=3562;\nUPDATE t2 SET c='thirty-seven thousand one hundred forty-nine' WHERE a=3563;\nUPDATE t2 SET c='nineteen thousand ninety-four' WHERE a=3564;\nUPDATE t2 SET c='seventy-eight thousand four hundred ninety-eight' WHERE a=3565;\nUPDATE t2 SET c='four thousand seven hundred thirty-eight' WHERE a=3566;\nUPDATE t2 SET c='eighty-two thousand eighteen' WHERE a=3567;\nUPDATE t2 SET c='eighty thousand five hundred seven' WHERE a=3568;\nUPDATE t2 SET c='twenty-one thousand nine hundred ninety-seven' WHERE a=3569;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-eight' WHERE a=3570;\nUPDATE t2 SET c='fifteen thousand five hundred thirty-three' WHERE a=3571;\nUPDATE t2 SET c='five thousand three hundred fifty-seven' WHERE a=3572;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-eight' WHERE a=3573;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-two' WHERE a=3574;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twenty' WHERE a=3575;\nUPDATE t2 SET c='seventeen thousand nine hundred thirty' WHERE a=3576;\nUPDATE t2 SET c='ninety-two thousand five hundred ten' WHERE a=3577;\nUPDATE t2 SET c='sixteen thousand one' WHERE a=3578;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-four' WHERE a=3579;\nUPDATE t2 SET c='fifty thousand twenty-one' WHERE a=3580;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-five' WHERE a=3581;\nUPDATE t2 SET c='seventy-eight thousand eight hundred sixty-seven' WHERE a=3582;\nUPDATE t2 SET c='five thousand seven hundred fifty-five' WHERE a=3583;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-four' WHERE a=3584;\nUPDATE t2 SET c='one thousand nine hundred four' WHERE a=3585;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-one' WHERE a=3586;\nUPDATE t2 SET c='seventy-six thousand seven hundred twenty-six' WHERE a=3587;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-six' WHERE a=3588;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=3589;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=3590;\nUPDATE t2 SET c='sixty-six thousand nine hundred sixty-six' WHERE a=3591;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-one' WHERE a=3592;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy-four' WHERE a=3593;\nUPDATE t2 SET c='seventy-three thousand nine hundred eighty-four' WHERE a=3594;\nUPDATE t2 SET c='seventy-eight thousand six hundred sixty-eight' WHERE a=3595;\nUPDATE t2 SET c='eighty-one thousand eight hundred eighty-three' WHERE a=3596;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety' WHERE a=3597;\nUPDATE t2 SET c='seven thousand six hundred eighty-two' WHERE a=3598;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty' WHERE a=3599;\nUPDATE t2 SET c='twenty-six thousand two hundred ninety-eight' WHERE a=3600;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty-seven' WHERE a=3601;\nUPDATE t2 SET c='two thousand five hundred fifty-seven' WHERE a=3602;\nUPDATE t2 SET c='sixteen thousand nine hundred thirty-one' WHERE a=3603;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-five' WHERE a=3604;\nUPDATE t2 SET c='sixty-seven thousand six hundred four' WHERE a=3605;\nUPDATE t2 SET c='thirteen thousand six hundred five' WHERE a=3606;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-four' WHERE a=3607;\nUPDATE t2 SET c='thirty-one thousand one hundred forty-six' WHERE a=3608;\nUPDATE t2 SET c='five thousand eight hundred eighty' WHERE a=3609;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-four' WHERE a=3610;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-one' WHERE a=3611;\nUPDATE t2 SET c='fifty thousand eight hundred ninety-seven' WHERE a=3612;\nUPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=3613;\nUPDATE t2 SET c='sixteen thousand sixty-four' WHERE a=3614;\nUPDATE t2 SET c='seventy-one thousand five hundred fifty' WHERE a=3615;\nUPDATE t2 SET c='eighteen thousand thirty-nine' WHERE a=3616;\nUPDATE t2 SET c='twenty-six thousand four hundred fifty-six' WHERE a=3617;\nUPDATE t2 SET c='sixty-four thousand nine hundred twenty-nine' WHERE a=3618;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-five' WHERE a=3619;\nUPDATE t2 SET c='eighty-seven thousand five hundred six' WHERE a=3620;\nUPDATE t2 SET c='forty-five thousand fifty-seven' WHERE a=3621;\nUPDATE t2 SET c='seventy-seven thousand nine hundred five' WHERE a=3622;\nUPDATE t2 SET c='eighty-three thousand one hundred seventy-one' WHERE a=3623;\nUPDATE t2 SET c='four thousand seven hundred thirty' WHERE a=3624;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-six' WHERE a=3625;\nUPDATE t2 SET c='sixty-six thousand forty-two' WHERE a=3626;\nUPDATE t2 SET c='twenty-eight thousand nine hundred sixty-two' WHERE a=3627;\nUPDATE t2 SET c='ninety-six thousand two hundred fifty-six' WHERE a=3628;\nUPDATE t2 SET c='fifty-four thousand four hundred three' WHERE a=3629;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-three' WHERE a=3630;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-two' WHERE a=3631;\nUPDATE t2 SET c='twenty-seven thousand thirty-one' WHERE a=3632;\nUPDATE t2 SET c='sixty-one thousand five hundred seventy-eight' WHERE a=3633;\nUPDATE t2 SET c='fifty thousand six hundred ninety-three' WHERE a=3634;\nUPDATE t2 SET c='eighteen thousand two hundred twenty-one' WHERE a=3635;\nUPDATE t2 SET c='sixty-three thousand five hundred ninety-one' WHERE a=3636;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=3637;\nUPDATE t2 SET c='fifty-one thousand six hundred two' WHERE a=3638;\nUPDATE t2 SET c='eighty-one thousand seventy-five' WHERE a=3639;\nUPDATE t2 SET c='ninety-four thousand two hundred eight' WHERE a=3640;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-eight' WHERE a=3641;\nUPDATE t2 SET c='fifty-one thousand seven hundred seven' WHERE a=3642;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety' WHERE a=3643;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety-six' WHERE a=3644;\nUPDATE t2 SET c='eighty thousand five hundred fifty-nine' WHERE a=3645;\nUPDATE t2 SET c='fifty thousand five hundred seventy-three' WHERE a=3646;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-five' WHERE a=3647;\nUPDATE t2 SET c='nine thousand six hundred ten' WHERE a=3648;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-nine' WHERE a=3649;\nUPDATE t2 SET c='ninety-three thousand six hundred forty' WHERE a=3650;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixteen' WHERE a=3651;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-eight' WHERE a=3652;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighty-three' WHERE a=3653;\nUPDATE t2 SET c='twenty-five thousand nine hundred nineteen' WHERE a=3654;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty' WHERE a=3655;\nUPDATE t2 SET c='five thousand eight hundred thirty-three' WHERE a=3656;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety' WHERE a=3657;\nUPDATE t2 SET c='forty-three thousand one hundred sixteen' WHERE a=3658;\nUPDATE t2 SET c='thirty-one thousand four hundred three' WHERE a=3659;\nUPDATE t2 SET c='eighty-six thousand four hundred twenty-two' WHERE a=3660;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-three' WHERE a=3661;\nUPDATE t2 SET c='nineteen thousand three hundred twenty-six' WHERE a=3662;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-two' WHERE a=3663;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-nine' WHERE a=3664;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-one' WHERE a=3665;\nUPDATE t2 SET c='three thousand eight hundred thirty-four' WHERE a=3666;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-six' WHERE a=3667;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-eight' WHERE a=3668;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-seven' WHERE a=3669;\nUPDATE t2 SET c='eighty-two thousand one hundred sixty-eight' WHERE a=3670;\nUPDATE t2 SET c='seven thousand four hundred thirty-one' WHERE a=3671;\nUPDATE t2 SET c='seventy-six thousand four hundred seventy-five' WHERE a=3672;\nUPDATE t2 SET c='fifty-nine thousand five hundred eighty' WHERE a=3673;\nUPDATE t2 SET c='ninety thousand seven hundred eighty-seven' WHERE a=3674;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy' WHERE a=3675;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-one' WHERE a=3676;\nUPDATE t2 SET c='twenty-six thousand seven hundred eight' WHERE a=3677;\nUPDATE t2 SET c='forty-one thousand nine hundred sixty-three' WHERE a=3678;\nUPDATE t2 SET c='six thousand nine hundred forty-four' WHERE a=3679;\nUPDATE t2 SET c='forty-five thousand nine hundred thirty-two' WHERE a=3680;\nUPDATE t2 SET c='one thousand six hundred sixty-one' WHERE a=3681;\nUPDATE t2 SET c='seventeen thousand four hundred twenty-four' WHERE a=3682;\nUPDATE t2 SET c='ninety-three thousand two hundred thirty-nine' WHERE a=3683;\nUPDATE t2 SET c='twenty-four thousand one hundred ninety-one' WHERE a=3684;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-one' WHERE a=3685;\nUPDATE t2 SET c='fifteen thousand one hundred forty-two' WHERE a=3686;\nUPDATE t2 SET c='seven thousand three hundred thirty' WHERE a=3687;\nUPDATE t2 SET c='ninety-two thousand seven hundred ninety-seven' WHERE a=3688;\nUPDATE t2 SET c='sixty thousand two hundred thirty-nine' WHERE a=3689;\nUPDATE t2 SET c='twenty-two thousand two hundred ninety-eight' WHERE a=3690;\nUPDATE t2 SET c='seventy-five thousand eight hundred thirty-three' WHERE a=3691;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-two' WHERE a=3692;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty' WHERE a=3693;\nUPDATE t2 SET c='fifty-three thousand seven hundred seventy-six' WHERE a=3694;\nUPDATE t2 SET c='twenty-three thousand one hundred six' WHERE a=3695;\nUPDATE t2 SET c='thirty-six thousand four hundred forty-eight' WHERE a=3696;\nUPDATE t2 SET c='seven thousand two hundred thirty' WHERE a=3697;\nUPDATE t2 SET c='fourteen thousand eight hundred eighty-eight' WHERE a=3698;\nUPDATE t2 SET c='forty-six thousand seven hundred thirty-nine' WHERE a=3699;\nUPDATE t2 SET c='ninety-one thousand two hundred forty-one' WHERE a=3700;\nUPDATE t2 SET c='sixty-eight thousand six hundred fourteen' WHERE a=3701;\nUPDATE t2 SET c='sixty-four thousand nine' WHERE a=3702;\nUPDATE t2 SET c='forty thousand five hundred eighty-one' WHERE a=3703;\nUPDATE t2 SET c='two thousand four hundred twelve' WHERE a=3704;\nUPDATE t2 SET c='sixty-nine thousand twenty-six' WHERE a=3705;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-one' WHERE a=3706;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-nine' WHERE a=3707;\nUPDATE t2 SET c='twenty-three thousand six hundred fourteen' WHERE a=3708;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=3709;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-one' WHERE a=3710;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy-three' WHERE a=3711;\nUPDATE t2 SET c='forty-six thousand two hundred twenty' WHERE a=3712;\nUPDATE t2 SET c='twenty-seven thousand two hundred forty-six' WHERE a=3713;\nUPDATE t2 SET c='eighteen thousand two hundred fifty-three' WHERE a=3714;\nUPDATE t2 SET c='thirty-one thousand three hundred forty-seven' WHERE a=3715;\nUPDATE t2 SET c='eleven thousand six hundred forty-eight' WHERE a=3716;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty' WHERE a=3717;\nUPDATE t2 SET c='two thousand one hundred twenty-one' WHERE a=3718;\nUPDATE t2 SET c='forty-three thousand six hundred eighty-four' WHERE a=3719;\nUPDATE t2 SET c='four thousand six hundred thirty-nine' WHERE a=3720;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-seven' WHERE a=3721;\nUPDATE t2 SET c='thirty thousand nine hundred ninety-five' WHERE a=3722;\nUPDATE t2 SET c='eight thousand four hundred twelve' WHERE a=3723;\nUPDATE t2 SET c='thirty-one thousand seven hundred nineteen' WHERE a=3724;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eighty-two' WHERE a=3725;\nUPDATE t2 SET c='ninety-nine thousand eight hundred seven' WHERE a=3726;\nUPDATE t2 SET c='thirty-nine thousand nine hundred seventy-three' WHERE a=3727;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-eight' WHERE a=3728;\nUPDATE t2 SET c='fifty-two thousand five hundred fifteen' WHERE a=3729;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-nine' WHERE a=3730;\nUPDATE t2 SET c='sixty-seven thousand eight hundred sixty-nine' WHERE a=3731;\nUPDATE t2 SET c='seventy-one thousand four hundred twenty-five' WHERE a=3732;\nUPDATE t2 SET c='fifty-two thousand nine hundred sixty-six' WHERE a=3733;\nUPDATE t2 SET c='forty-four thousand eight hundred twenty-five' WHERE a=3734;\nUPDATE t2 SET c='ninety-three thousand two hundred eighty-seven' WHERE a=3735;\nUPDATE t2 SET c='ninety thousand three hundred seventy' WHERE a=3736;\nUPDATE t2 SET c='seven thousand twenty-four' WHERE a=3737;\nUPDATE t2 SET c='seventy thousand two hundred eighty-eight' WHERE a=3738;\nUPDATE t2 SET c='eighty-nine thousand four hundred three' WHERE a=3739;\nUPDATE t2 SET c='eighty-two thousand nine hundred ninety-nine' WHERE a=3740;\nUPDATE t2 SET c='ninety-six thousand five hundred ninety-six' WHERE a=3741;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-five' WHERE a=3742;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-seven' WHERE a=3743;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-six' WHERE a=3744;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-four' WHERE a=3745;\nUPDATE t2 SET c='thirty-two thousand six hundred twenty-five' WHERE a=3746;\nUPDATE t2 SET c='ninety-two thousand five hundred thirty-two' WHERE a=3747;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-four' WHERE a=3748;\nUPDATE t2 SET c='thirty-two thousand eight hundred fifty-eight' WHERE a=3749;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-five' WHERE a=3750;\nUPDATE t2 SET c='thirty-three thousand twenty-two' WHERE a=3751;\nUPDATE t2 SET c='seventy-three thousand seventy' WHERE a=3752;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty-one' WHERE a=3753;\nUPDATE t2 SET c='forty-five thousand twenty' WHERE a=3754;\nUPDATE t2 SET c='ninety-one thousand forty-three' WHERE a=3755;\nUPDATE t2 SET c='twenty-two thousand six hundred sixty-seven' WHERE a=3756;\nUPDATE t2 SET c='one thousand eight hundred sixty-one' WHERE a=3757;\nUPDATE t2 SET c='eighty-one thousand two hundred sixty-one' WHERE a=3758;\nUPDATE t2 SET c='twelve thousand one hundred fifteen' WHERE a=3759;\nUPDATE t2 SET c='eight thousand two hundred seventy-five' WHERE a=3760;\nUPDATE t2 SET c='thirty-four thousand four hundred five' WHERE a=3761;\nUPDATE t2 SET c='thirty-seven thousand two hundred two' WHERE a=3762;\nUPDATE t2 SET c='ninety-one thousand nine hundred eight' WHERE a=3763;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-nine' WHERE a=3764;\nUPDATE t2 SET c='ninety-one thousand seven hundred fifty' WHERE a=3765;\nUPDATE t2 SET c='forty-two thousand five hundred fifty-two' WHERE a=3766;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty' WHERE a=3767;\nUPDATE t2 SET c='forty-three thousand four hundred sixty-seven' WHERE a=3768;\nUPDATE t2 SET c='eleven thousand thirty-nine' WHERE a=3769;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=3770;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-two' WHERE a=3771;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-one' WHERE a=3772;\nUPDATE t2 SET c='six thousand three hundred sixty-four' WHERE a=3773;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-eight' WHERE a=3774;\nUPDATE t2 SET c='seventeen thousand seven hundred twenty-nine' WHERE a=3775;\nUPDATE t2 SET c='forty-one thousand seven hundred fifty-four' WHERE a=3776;\nUPDATE t2 SET c='eighty-four thousand four hundred forty-one' WHERE a=3777;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-seven' WHERE a=3778;\nUPDATE t2 SET c='eighty-four thousand one hundred sixteen' WHERE a=3779;\nUPDATE t2 SET c='seventy-two thousand one hundred twenty-five' WHERE a=3780;\nUPDATE t2 SET c='eighteen thousand two hundred twenty-nine' WHERE a=3781;\nUPDATE t2 SET c='twenty-one thousand twenty-seven' WHERE a=3782;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-eight' WHERE a=3783;\nUPDATE t2 SET c='eighty-three thousand eight hundred thirty-one' WHERE a=3784;\nUPDATE t2 SET c='two thousand two hundred thirty-five' WHERE a=3785;\nUPDATE t2 SET c='six thousand two hundred sixty-nine' WHERE a=3786;\nUPDATE t2 SET c='forty-two thousand fourteen' WHERE a=3787;\nUPDATE t2 SET c='eighty thousand one hundred twenty-eight' WHERE a=3788;\nUPDATE t2 SET c='sixty thousand ninety-one' WHERE a=3789;\nUPDATE t2 SET c='twenty-eight thousand eight hundred twenty-eight' WHERE a=3790;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty' WHERE a=3791;\nUPDATE t2 SET c='three thousand six hundred thirty-four' WHERE a=3792;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-three' WHERE a=3793;\nUPDATE t2 SET c='forty-nine thousand one hundred thirty-five' WHERE a=3794;\nUPDATE t2 SET c='eighty thousand fifty-six' WHERE a=3795;\nUPDATE t2 SET c='eighty-nine thousand five hundred one' WHERE a=3796;\nUPDATE t2 SET c='three thousand forty-three' WHERE a=3797;\nUPDATE t2 SET c='twenty-two thousand nine hundred eleven' WHERE a=3798;\nUPDATE t2 SET c='eighty-six thousand thirty-three' WHERE a=3799;\nUPDATE t2 SET c='eighty-four thousand twenty' WHERE a=3800;\nUPDATE t2 SET c='eighty thousand one hundred seventy-five' WHERE a=3801;\nUPDATE t2 SET c='forty thousand five hundred thirty-nine' WHERE a=3802;\nUPDATE t2 SET c='forty-two thousand nine hundred fifty-six' WHERE a=3803;\nUPDATE t2 SET c='thirty thousand five hundred three' WHERE a=3804;\nUPDATE t2 SET c='thirty-nine thousand seventy-three' WHERE a=3805;\nUPDATE t2 SET c='five thousand seven hundred seventy-four' WHERE a=3806;\nUPDATE t2 SET c='forty-three thousand five hundred twenty-six' WHERE a=3807;\nUPDATE t2 SET c='sixteen thousand ninety-seven' WHERE a=3808;\nUPDATE t2 SET c='six thousand three hundred twenty-three' WHERE a=3809;\nUPDATE t2 SET c='sixty-nine thousand five hundred seventy-seven' WHERE a=3810;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-three' WHERE a=3811;\nUPDATE t2 SET c='forty thousand eighty-six' WHERE a=3812;\nUPDATE t2 SET c='thirty-three thousand six hundred forty-nine' WHERE a=3813;\nUPDATE t2 SET c='eighty-four thousand five hundred' WHERE a=3814;\nUPDATE t2 SET c='thirty-five thousand three hundred fifty' WHERE a=3815;\nUPDATE t2 SET c='eight thousand eighty' WHERE a=3816;\nUPDATE t2 SET c='eight hundred sixty-nine' WHERE a=3817;\nUPDATE t2 SET c='fifty-seven thousand seven hundred thirteen' WHERE a=3818;\nUPDATE t2 SET c='forty-nine thousand six hundred fifty-one' WHERE a=3819;\nUPDATE t2 SET c='twenty-seven thousand three' WHERE a=3820;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy' WHERE a=3821;\nUPDATE t2 SET c='eight thousand eight hundred eighty-five' WHERE a=3822;\nUPDATE t2 SET c='fourteen thousand one hundred forty-two' WHERE a=3823;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-one' WHERE a=3824;\nUPDATE t2 SET c='fifty-five thousand five hundred sixteen' WHERE a=3825;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighteen' WHERE a=3826;\nUPDATE t2 SET c='fifty-seven thousand eighty-one' WHERE a=3827;\nUPDATE t2 SET c='forty-five thousand four hundred nineteen' WHERE a=3828;\nUPDATE t2 SET c='seventy-two thousand five hundred one' WHERE a=3829;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-six' WHERE a=3830;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-eight' WHERE a=3831;\nUPDATE t2 SET c='eighty-four thousand nine hundred ninety-nine' WHERE a=3832;\nUPDATE t2 SET c='eighty-three thousand one hundred thirty-one' WHERE a=3833;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-eight' WHERE a=3834;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-one' WHERE a=3835;\nUPDATE t2 SET c='twenty thousand thirty-one' WHERE a=3836;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-five' WHERE a=3837;\nUPDATE t2 SET c='twenty-four thousand two hundred fourteen' WHERE a=3838;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty' WHERE a=3839;\nUPDATE t2 SET c='thirty-three thousand six hundred sixty-five' WHERE a=3840;\nUPDATE t2 SET c='sixty-seven thousand eight hundred ninety-three' WHERE a=3841;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-seven' WHERE a=3842;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-nine' WHERE a=3843;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-two' WHERE a=3844;\nUPDATE t2 SET c='forty-four thousand five hundred forty-five' WHERE a=3845;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-one' WHERE a=3846;\nUPDATE t2 SET c='ninety-four thousand five hundred fifty-eight' WHERE a=3847;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-five' WHERE a=3848;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-one' WHERE a=3849;\nUPDATE t2 SET c='eighty-six thousand thirty-two' WHERE a=3850;\nUPDATE t2 SET c='seventy-six thousand three hundred sixty-four' WHERE a=3851;\nUPDATE t2 SET c='ninety thousand five hundred forty-eight' WHERE a=3852;\nUPDATE t2 SET c='nineteen thousand nine hundred fifty-nine' WHERE a=3853;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-five' WHERE a=3854;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-three' WHERE a=3855;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-two' WHERE a=3856;\nUPDATE t2 SET c='nineteen thousand ninety' WHERE a=3857;\nUPDATE t2 SET c='four hundred nineteen' WHERE a=3858;\nUPDATE t2 SET c='seventy-eight thousand nine hundred forty-five' WHERE a=3859;\nUPDATE t2 SET c='ninety-one thousand five hundred seven' WHERE a=3860;\nUPDATE t2 SET c='twenty-one thousand nine hundred' WHERE a=3861;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-six' WHERE a=3862;\nUPDATE t2 SET c='twenty-three thousand two hundred twenty-three' WHERE a=3863;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-seven' WHERE a=3864;\nUPDATE t2 SET c='sixty-six thousand five hundred thirteen' WHERE a=3865;\nUPDATE t2 SET c='eighty-four thousand four hundred seventeen' WHERE a=3866;\nUPDATE t2 SET c='twelve thousand four hundred sixty-six' WHERE a=3867;\nUPDATE t2 SET c='ninety-three thousand seventy-one' WHERE a=3868;\nUPDATE t2 SET c='seventy-five thousand seven hundred sixty' WHERE a=3869;\nUPDATE t2 SET c='thirty-nine thousand six hundred fourteen' WHERE a=3870;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-two' WHERE a=3871;\nUPDATE t2 SET c='thirty thousand two hundred thirty-nine' WHERE a=3872;\nUPDATE t2 SET c='seventy-three thousand three hundred twenty-seven' WHERE a=3873;\nUPDATE t2 SET c='fourteen thousand three hundred seventeen' WHERE a=3874;\nUPDATE t2 SET c='thirty-six thousand ninety-two' WHERE a=3875;\nUPDATE t2 SET c='six thousand five hundred ten' WHERE a=3876;\nUPDATE t2 SET c='eighty-two thousand three hundred fifty-seven' WHERE a=3877;\nUPDATE t2 SET c='fifty-two thousand eight hundred thirty-nine' WHERE a=3878;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighteen' WHERE a=3879;\nUPDATE t2 SET c='seventy thousand seven hundred ninety-seven' WHERE a=3880;\nUPDATE t2 SET c='ninety-five thousand three hundred eighty-seven' WHERE a=3881;\nUPDATE t2 SET c='thirty-eight thousand eight hundred twenty' WHERE a=3882;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty' WHERE a=3883;\nUPDATE t2 SET c='ninety thousand four hundred thirteen' WHERE a=3884;\nUPDATE t2 SET c='forty-eight thousand nine hundred forty-two' WHERE a=3885;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy' WHERE a=3886;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-eight' WHERE a=3887;\nUPDATE t2 SET c='fifty-five thousand three hundred forty-five' WHERE a=3888;\nUPDATE t2 SET c='sixty-eight thousand eight hundred four' WHERE a=3889;\nUPDATE t2 SET c='seventy-eight thousand four hundred forty-nine' WHERE a=3890;\nUPDATE t2 SET c='fifty-one thousand nine hundred sixty' WHERE a=3891;\nUPDATE t2 SET c='seventy-five thousand nine hundred thirty' WHERE a=3892;\nUPDATE t2 SET c='ninety-three thousand two hundred eighty-four' WHERE a=3893;\nUPDATE t2 SET c='sixteen thousand four hundred thirty-nine' WHERE a=3894;\nUPDATE t2 SET c='seven thousand two hundred eighty-two' WHERE a=3895;\nUPDATE t2 SET c='forty-five thousand seventy-nine' WHERE a=3896;\nUPDATE t2 SET c='twenty-four thousand two hundred twelve' WHERE a=3897;\nUPDATE t2 SET c='thirty-seven thousand seventy-six' WHERE a=3898;\nUPDATE t2 SET c='ninety-six thousand three hundred thirty-six' WHERE a=3899;\nUPDATE t2 SET c='fifteen thousand one hundred thirty-six' WHERE a=3900;\nUPDATE t2 SET c='twenty-eight thousand fifty-six' WHERE a=3901;\nUPDATE t2 SET c='seven thousand four hundred eighty-five' WHERE a=3902;\nUPDATE t2 SET c='thirty-seven thousand eight hundred forty-four' WHERE a=3903;\nUPDATE t2 SET c='ninety-two thousand two hundred sixty-five' WHERE a=3904;\nUPDATE t2 SET c='thirteen thousand seven hundred seventeen' WHERE a=3905;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-eight' WHERE a=3906;\nUPDATE t2 SET c='fifty thousand six hundred ninety-nine' WHERE a=3907;\nUPDATE t2 SET c='sixty-four thousand twenty' WHERE a=3908;\nUPDATE t2 SET c='sixty-seven thousand six hundred fifty-six' WHERE a=3909;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-six' WHERE a=3910;\nUPDATE t2 SET c='twenty-nine thousand six hundred forty-one' WHERE a=3911;\nUPDATE t2 SET c='fifty-six thousand nine hundred sixty-four' WHERE a=3912;\nUPDATE t2 SET c='twenty-eight thousand nine hundred thirty-six' WHERE a=3913;\nUPDATE t2 SET c='eighty-five thousand five hundred forty-seven' WHERE a=3914;\nUPDATE t2 SET c='seventy-two thousand forty-seven' WHERE a=3915;\nUPDATE t2 SET c='thirty-two thousand eight hundred twenty' WHERE a=3916;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-nine' WHERE a=3917;\nUPDATE t2 SET c='fifty thousand six hundred twenty-three' WHERE a=3918;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=3919;\nUPDATE t2 SET c='thirty-four thousand one hundred eleven' WHERE a=3920;\nUPDATE t2 SET c='ninety-one thousand six hundred thirty-five' WHERE a=3921;\nUPDATE t2 SET c='twelve thousand five hundred thirty-nine' WHERE a=3922;\nUPDATE t2 SET c='nine thousand five hundred eight' WHERE a=3923;\nUPDATE t2 SET c='forty-four thousand two hundred ten' WHERE a=3924;\nUPDATE t2 SET c='thirty-two thousand four hundred nineteen' WHERE a=3925;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-seven' WHERE a=3926;\nUPDATE t2 SET c='fifty-one thousand five hundred fourteen' WHERE a=3927;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-two' WHERE a=3928;\nUPDATE t2 SET c='fifteen thousand eight hundred ninety-nine' WHERE a=3929;\nUPDATE t2 SET c='seventy-five thousand two hundred ninety-eight' WHERE a=3930;\nUPDATE t2 SET c='eighteen thousand seven hundred ninety-five' WHERE a=3931;\nUPDATE t2 SET c='nineteen thousand three hundred forty-two' WHERE a=3932;\nUPDATE t2 SET c='nine thousand eight hundred seventy-nine' WHERE a=3933;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty' WHERE a=3934;\nUPDATE t2 SET c='twenty thousand six hundred fifty-three' WHERE a=3935;\nUPDATE t2 SET c='sixty-eight thousand eight hundred nineteen' WHERE a=3936;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-six' WHERE a=3937;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-nine' WHERE a=3938;\nUPDATE t2 SET c='fifteen thousand one hundred fifty-three' WHERE a=3939;\nUPDATE t2 SET c='sixty-one thousand five hundred five' WHERE a=3940;\nUPDATE t2 SET c='eighty-five thousand seven hundred thirty-seven' WHERE a=3941;\nUPDATE t2 SET c='thirty-one thousand four hundred eighty-nine' WHERE a=3942;\nUPDATE t2 SET c='ninety-nine thousand forty-nine' WHERE a=3943;\nUPDATE t2 SET c='fifty-one thousand three hundred ninety-two' WHERE a=3944;\nUPDATE t2 SET c='eighteen thousand sixty-seven' WHERE a=3945;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-six' WHERE a=3946;\nUPDATE t2 SET c='sixteen thousand four hundred' WHERE a=3947;\nUPDATE t2 SET c='ten thousand eight hundred twelve' WHERE a=3948;\nUPDATE t2 SET c='fifty-six thousand four hundred forty-five' WHERE a=3949;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-nine' WHERE a=3950;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-nine' WHERE a=3951;\nUPDATE t2 SET c='twenty-one thousand sixteen' WHERE a=3952;\nUPDATE t2 SET c='ninety-one thousand three hundred eleven' WHERE a=3953;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty-seven' WHERE a=3954;\nUPDATE t2 SET c='fifty thousand six hundred twenty-four' WHERE a=3955;\nUPDATE t2 SET c='seventeen thousand nine hundred ninety-eight' WHERE a=3956;\nUPDATE t2 SET c='two hundred ten' WHERE a=3957;\nUPDATE t2 SET c='six thousand three hundred seventy' WHERE a=3958;\nUPDATE t2 SET c='ninety thousand five hundred twenty-seven' WHERE a=3959;\nUPDATE t2 SET c='seventy-one thousand six hundred twenty-three' WHERE a=3960;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-six' WHERE a=3961;\nUPDATE t2 SET c='eighty-one thousand six hundred seventy' WHERE a=3962;\nUPDATE t2 SET c='sixty-six thousand six hundred eighty-three' WHERE a=3963;\nUPDATE t2 SET c='sixty-two thousand seven hundred eighty-four' WHERE a=3964;\nUPDATE t2 SET c='eight thousand seven hundred thirty-six' WHERE a=3965;\nUPDATE t2 SET c='eighteen thousand five hundred forty-seven' WHERE a=3966;\nUPDATE t2 SET c='ninety-two thousand eight hundred eighty-nine' WHERE a=3967;\nUPDATE t2 SET c='eighty-nine thousand nine hundred six' WHERE a=3968;\nUPDATE t2 SET c='thirty-seven thousand forty-six' WHERE a=3969;\nUPDATE t2 SET c='seventeen thousand six hundred fifty-one' WHERE a=3970;\nUPDATE t2 SET c='ninety-five thousand seven hundred thirty-five' WHERE a=3971;\nUPDATE t2 SET c='fifty-eight thousand two hundred seven' WHERE a=3972;\nUPDATE t2 SET c='seventy-five thousand one hundred seventy-three' WHERE a=3973;\nUPDATE t2 SET c='seventy-two thousand six hundred seventy-one' WHERE a=3974;\nUPDATE t2 SET c='seventy-nine thousand one hundred eighty-three' WHERE a=3975;\nUPDATE t2 SET c='eighty-eight thousand five hundred forty-seven' WHERE a=3976;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-nine' WHERE a=3977;\nUPDATE t2 SET c='seventy-nine thousand sixty-five' WHERE a=3978;\nUPDATE t2 SET c='fourteen thousand four hundred three' WHERE a=3979;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-two' WHERE a=3980;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-two' WHERE a=3981;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighty-two' WHERE a=3982;\nUPDATE t2 SET c='forty-seven thousand seven hundred sixty-nine' WHERE a=3983;\nUPDATE t2 SET c='seventy-four thousand three hundred seventy' WHERE a=3984;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy-eight' WHERE a=3985;\nUPDATE t2 SET c='forty-three thousand seven hundred twenty' WHERE a=3986;\nUPDATE t2 SET c='thirty-four thousand three hundred thirty-six' WHERE a=3987;\nUPDATE t2 SET c='fifty-five thousand three hundred sixty-two' WHERE a=3988;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty-five' WHERE a=3989;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy' WHERE a=3990;\nUPDATE t2 SET c='eleven thousand sixty-four' WHERE a=3991;\nUPDATE t2 SET c='fifty thousand three hundred ninety-three' WHERE a=3992;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-two' WHERE a=3993;\nUPDATE t2 SET c='thirteen thousand three hundred sixty-nine' WHERE a=3994;\nUPDATE t2 SET c='ninety-seven thousand forty-five' WHERE a=3995;\nUPDATE t2 SET c='fifty-two thousand three hundred eight' WHERE a=3996;\nUPDATE t2 SET c='twenty-seven thousand eight hundred six' WHERE a=3997;\nUPDATE t2 SET c='seventy-five thousand one hundred fifteen' WHERE a=3998;\nUPDATE t2 SET c='eighty-three thousand four hundred forty-two' WHERE a=3999;\nUPDATE t2 SET c='twenty-eight thousand six hundred twenty-seven' WHERE a=4000;\nUPDATE t2 SET c='thirty-six thousand five hundred twenty-three' WHERE a=4001;\nUPDATE t2 SET c='twenty-five thousand seventy-six' WHERE a=4002;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-three' WHERE a=4003;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-six' WHERE a=4004;\nUPDATE t2 SET c='eighty-nine thousand eight hundred eighty-nine' WHERE a=4005;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighty-eight' WHERE a=4006;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-one' WHERE a=4007;\nUPDATE t2 SET c='seventeen thousand two hundred eleven' WHERE a=4008;\nUPDATE t2 SET c='fifty-three thousand eight hundred thirty-three' WHERE a=4009;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-six' WHERE a=4010;\nUPDATE t2 SET c='ten thousand seven hundred forty-six' WHERE a=4011;\nUPDATE t2 SET c='nine thousand seven hundred fifty-three' WHERE a=4012;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-one' WHERE a=4013;\nUPDATE t2 SET c='twenty thousand four hundred twenty-two' WHERE a=4014;\nUPDATE t2 SET c='forty-two thousand five hundred eighty-one' WHERE a=4015;\nUPDATE t2 SET c='ninety-nine thousand six hundred forty-three' WHERE a=4016;\nUPDATE t2 SET c='twenty thousand two hundred forty-nine' WHERE a=4017;\nUPDATE t2 SET c='seventy-five thousand three hundred forty-four' WHERE a=4018;\nUPDATE t2 SET c='fifteen thousand five hundred thirty-three' WHERE a=4019;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety-seven' WHERE a=4020;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty-nine' WHERE a=4021;\nUPDATE t2 SET c='ninety-four thousand three hundred nineteen' WHERE a=4022;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-seven' WHERE a=4023;\nUPDATE t2 SET c='sixty-nine thousand two hundred six' WHERE a=4024;\nUPDATE t2 SET c='fifty-seven thousand two hundred nineteen' WHERE a=4025;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-four' WHERE a=4026;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-eight' WHERE a=4027;\nUPDATE t2 SET c='seventy-five thousand ninety-five' WHERE a=4028;\nUPDATE t2 SET c='thirteen thousand four hundred fifty' WHERE a=4029;\nUPDATE t2 SET c='fifty-four thousand three hundred three' WHERE a=4030;\nUPDATE t2 SET c='eighty-one thousand seventy-nine' WHERE a=4031;\nUPDATE t2 SET c='eighty thousand one hundred six' WHERE a=4032;\nUPDATE t2 SET c='seven thousand four hundred fifty' WHERE a=4033;\nUPDATE t2 SET c='forty-three thousand one hundred fourteen' WHERE a=4034;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-eight' WHERE a=4035;\nUPDATE t2 SET c='fifty-nine thousand three hundred fifty' WHERE a=4036;\nUPDATE t2 SET c='twenty thousand one hundred one' WHERE a=4037;\nUPDATE t2 SET c='eighty-eight thousand one hundred forty-nine' WHERE a=4038;\nUPDATE t2 SET c='fifty-four thousand eight hundred forty-seven' WHERE a=4039;\nUPDATE t2 SET c='thirty-eight thousand nine hundred thirty-five' WHERE a=4040;\nUPDATE t2 SET c='twenty-eight' WHERE a=4041;\nUPDATE t2 SET c='eighteen thousand seven hundred seven' WHERE a=4042;\nUPDATE t2 SET c='thirty-one thousand two hundred forty-two' WHERE a=4043;\nUPDATE t2 SET c='five thousand three hundred ten' WHERE a=4044;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-four' WHERE a=4045;\nUPDATE t2 SET c='forty-one thousand two hundred nine' WHERE a=4046;\nUPDATE t2 SET c='three thousand four hundred sixty-six' WHERE a=4047;\nUPDATE t2 SET c='seventy-eight thousand seven hundred nine' WHERE a=4048;\nUPDATE t2 SET c='twenty-three thousand seven hundred six' WHERE a=4049;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=4050;\nUPDATE t2 SET c='twelve thousand six hundred three' WHERE a=4051;\nUPDATE t2 SET c='forty-three thousand one' WHERE a=4052;\nUPDATE t2 SET c='forty thousand two hundred ninety' WHERE a=4053;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighteen' WHERE a=4054;\nUPDATE t2 SET c='twenty-nine thousand one hundred seventy-eight' WHERE a=4055;\nUPDATE t2 SET c='forty thousand nine hundred thirty-five' WHERE a=4056;\nUPDATE t2 SET c='forty-two thousand four hundred thirty-one' WHERE a=4057;\nUPDATE t2 SET c='forty-four thousand two hundred fifty' WHERE a=4058;\nUPDATE t2 SET c='seventy-three thousand three hundred sixty-two' WHERE a=4059;\nUPDATE t2 SET c='fourteen thousand two hundred thirty-one' WHERE a=4060;\nUPDATE t2 SET c='eighty-two thousand three hundred seventy-three' WHERE a=4061;\nUPDATE t2 SET c='sixty thousand nine hundred thirty-one' WHERE a=4062;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-seven' WHERE a=4063;\nUPDATE t2 SET c='forty-nine thousand three hundred ninety-four' WHERE a=4064;\nUPDATE t2 SET c='fifty thousand nine hundred three' WHERE a=4065;\nUPDATE t2 SET c='ninety thousand seven hundred thirty' WHERE a=4066;\nUPDATE t2 SET c='forty-one thousand one hundred sixty-nine' WHERE a=4067;\nUPDATE t2 SET c='twenty-four thousand ninety-six' WHERE a=4068;\nUPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=4069;\nUPDATE t2 SET c='eighty thousand six hundred fifty' WHERE a=4070;\nUPDATE t2 SET c='ninety-eight thousand eight hundred twenty-one' WHERE a=4071;\nUPDATE t2 SET c='ninety-seven thousand two hundred seventy-three' WHERE a=4072;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-three' WHERE a=4073;\nUPDATE t2 SET c='ninety thousand three hundred fifty-eight' WHERE a=4074;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-one' WHERE a=4075;\nUPDATE t2 SET c='sixty thousand three hundred fifty-three' WHERE a=4076;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-six' WHERE a=4077;\nUPDATE t2 SET c='ninety-eight thousand one hundred' WHERE a=4078;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-three' WHERE a=4079;\nUPDATE t2 SET c='fifty-seven thousand eighty-four' WHERE a=4080;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=4081;\nUPDATE t2 SET c='seventy-seven thousand forty' WHERE a=4082;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy' WHERE a=4083;\nUPDATE t2 SET c='eighty-eight thousand five hundred forty-six' WHERE a=4084;\nUPDATE t2 SET c='forty-two thousand five hundred seventy-three' WHERE a=4085;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-seven' WHERE a=4086;\nUPDATE t2 SET c='one thousand one hundred thirty-one' WHERE a=4087;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-five' WHERE a=4088;\nUPDATE t2 SET c='eighty-three thousand two hundred fifty-three' WHERE a=4089;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-one' WHERE a=4090;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-four' WHERE a=4091;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-three' WHERE a=4092;\nUPDATE t2 SET c='sixty-nine thousand five hundred seventy-five' WHERE a=4093;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-seven' WHERE a=4094;\nUPDATE t2 SET c='eighty thousand nine hundred six' WHERE a=4095;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-seven' WHERE a=4096;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-six' WHERE a=4097;\nUPDATE t2 SET c='fourteen thousand six hundred eighty-six' WHERE a=4098;\nUPDATE t2 SET c='twenty-three thousand three hundred' WHERE a=4099;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-seven' WHERE a=4100;\nUPDATE t2 SET c='forty-six thousand eight hundred sixty-two' WHERE a=4101;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-eight' WHERE a=4102;\nUPDATE t2 SET c='one thousand three hundred three' WHERE a=4103;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-one' WHERE a=4104;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=4105;\nUPDATE t2 SET c='three thousand eight hundred seventy-three' WHERE a=4106;\nUPDATE t2 SET c='four thousand one hundred twenty-nine' WHERE a=4107;\nUPDATE t2 SET c='eight thousand six hundred sixty-one' WHERE a=4108;\nUPDATE t2 SET c='ninety-two thousand seven hundred one' WHERE a=4109;\nUPDATE t2 SET c='sixty-seven thousand six hundred seven' WHERE a=4110;\nUPDATE t2 SET c='three thousand five hundred twenty-eight' WHERE a=4111;\nUPDATE t2 SET c='fifty-eight thousand four hundred twenty-six' WHERE a=4112;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-six' WHERE a=4113;\nUPDATE t2 SET c='twenty-four thousand six hundred seventy-two' WHERE a=4114;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=4115;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-eight' WHERE a=4116;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-eight' WHERE a=4117;\nUPDATE t2 SET c='sixty-four thousand three hundred seventy-nine' WHERE a=4118;\nUPDATE t2 SET c='eight thousand three hundred fifty' WHERE a=4119;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-eight' WHERE a=4120;\nUPDATE t2 SET c='fourteen thousand five hundred twenty-six' WHERE a=4121;\nUPDATE t2 SET c='eighty-nine thousand two hundred nineteen' WHERE a=4122;\nUPDATE t2 SET c='seventy-three thousand four hundred seven' WHERE a=4123;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-six' WHERE a=4124;\nUPDATE t2 SET c='ninety-four thousand three hundred eighty-four' WHERE a=4125;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-three' WHERE a=4126;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-two' WHERE a=4127;\nUPDATE t2 SET c='twenty-three thousand two hundred thirty-one' WHERE a=4128;\nUPDATE t2 SET c='three hundred ninety-five' WHERE a=4129;\nUPDATE t2 SET c='forty-three thousand one hundred thirty-two' WHERE a=4130;\nUPDATE t2 SET c='three thousand two hundred ninety-eight' WHERE a=4131;\nUPDATE t2 SET c='sixty-seven thousand seventy-seven' WHERE a=4132;\nUPDATE t2 SET c='twenty-three thousand nine hundred fifty-four' WHERE a=4133;\nUPDATE t2 SET c='sixty-nine thousand three hundred seventy-five' WHERE a=4134;\nUPDATE t2 SET c='eighty-four thousand three hundred sixty-five' WHERE a=4135;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=4136;\nUPDATE t2 SET c='seventy thousand seven hundred nine' WHERE a=4137;\nUPDATE t2 SET c='fifty-five thousand seven hundred eleven' WHERE a=4138;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-two' WHERE a=4139;\nUPDATE t2 SET c='six thousand two hundred thirty-three' WHERE a=4140;\nUPDATE t2 SET c='fifty-six thousand seven hundred seventy-five' WHERE a=4141;\nUPDATE t2 SET c='twenty-four thousand thirty-one' WHERE a=4142;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-eight' WHERE a=4143;\nUPDATE t2 SET c='seventy-six thousand one hundred eighty-seven' WHERE a=4144;\nUPDATE t2 SET c='sixty-two thousand six hundred fifty-six' WHERE a=4145;\nUPDATE t2 SET c='ninety-three thousand three hundred eighty-two' WHERE a=4146;\nUPDATE t2 SET c='fifty-one thousand one hundred eighty-nine' WHERE a=4147;\nUPDATE t2 SET c='forty-six thousand two hundred three' WHERE a=4148;\nUPDATE t2 SET c='forty-four thousand four hundred forty-two' WHERE a=4149;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-seven' WHERE a=4150;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety-two' WHERE a=4151;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-nine' WHERE a=4152;\nUPDATE t2 SET c='three thousand one hundred seventy-eight' WHERE a=4153;\nUPDATE t2 SET c='four thousand ninety-nine' WHERE a=4154;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-nine' WHERE a=4155;\nUPDATE t2 SET c='sixty-three thousand five hundred fifteen' WHERE a=4156;\nUPDATE t2 SET c='forty-two thousand five hundred sixty' WHERE a=4157;\nUPDATE t2 SET c='seventy-two thousand two hundred five' WHERE a=4158;\nUPDATE t2 SET c='sixty-nine thousand two hundred forty-seven' WHERE a=4159;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-four' WHERE a=4160;\nUPDATE t2 SET c='seventy-seven thousand four hundred fifty-nine' WHERE a=4161;\nUPDATE t2 SET c='seven hundred sixty-five' WHERE a=4162;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighteen' WHERE a=4163;\nUPDATE t2 SET c='forty-seven thousand one hundred fifty-two' WHERE a=4164;\nUPDATE t2 SET c='twenty-four thousand three hundred eight' WHERE a=4165;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-nine' WHERE a=4166;\nUPDATE t2 SET c='seventy-one thousand six hundred five' WHERE a=4167;\nUPDATE t2 SET c='forty-four thousand sixty-one' WHERE a=4168;\nUPDATE t2 SET c='twenty-four thousand six hundred thirty-eight' WHERE a=4169;\nUPDATE t2 SET c='twenty-six thousand one hundred fifty-six' WHERE a=4170;\nUPDATE t2 SET c='ninety-nine thousand eight hundred twenty-two' WHERE a=4171;\nUPDATE t2 SET c='one thousand six hundred fifty-eight' WHERE a=4172;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-one' WHERE a=4173;\nUPDATE t2 SET c='sixty-two thousand six hundred forty-three' WHERE a=4174;\nUPDATE t2 SET c='fifty-one thousand four hundred seventy-one' WHERE a=4175;\nUPDATE t2 SET c='forty-three thousand three hundred twenty-four' WHERE a=4176;\nUPDATE t2 SET c='ninety-six thousand two hundred five' WHERE a=4177;\nUPDATE t2 SET c='seventy-one thousand three hundred eighty-three' WHERE a=4178;\nUPDATE t2 SET c='sixty-six thousand three hundred twenty-four' WHERE a=4179;\nUPDATE t2 SET c='eighty-two thousand three hundred thirty-eight' WHERE a=4180;\nUPDATE t2 SET c='fifty-three thousand thirty-seven' WHERE a=4181;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty-nine' WHERE a=4182;\nUPDATE t2 SET c='ninety-seven thousand six hundred seventy-four' WHERE a=4183;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-one' WHERE a=4184;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-one' WHERE a=4185;\nUPDATE t2 SET c='ninety-six thousand five hundred seventy' WHERE a=4186;\nUPDATE t2 SET c='six thousand seven' WHERE a=4187;\nUPDATE t2 SET c='twenty-one thousand one hundred eleven' WHERE a=4188;\nUPDATE t2 SET c='thirty-nine thousand eight hundred fifty-five' WHERE a=4189;\nUPDATE t2 SET c='fifty-four thousand eight hundred seventy-one' WHERE a=4190;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-nine' WHERE a=4191;\nUPDATE t2 SET c='ninety thousand three hundred twenty-nine' WHERE a=4192;\nUPDATE t2 SET c='seventy thousand four hundred eighty' WHERE a=4193;\nUPDATE t2 SET c='fifty-two thousand six hundred six' WHERE a=4194;\nUPDATE t2 SET c='six thousand two hundred seventy-six' WHERE a=4195;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty' WHERE a=4196;\nUPDATE t2 SET c='thirty-seven thousand seven hundred' WHERE a=4197;\nUPDATE t2 SET c='ten thousand nine hundred ninety-three' WHERE a=4198;\nUPDATE t2 SET c='one thousand three hundred two' WHERE a=4199;\nUPDATE t2 SET c='twenty thousand six hundred twenty' WHERE a=4200;\nUPDATE t2 SET c='nine hundred twenty-six' WHERE a=4201;\nUPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=4202;\nUPDATE t2 SET c='thirty-one thousand nineteen' WHERE a=4203;\nUPDATE t2 SET c='forty-four thousand sixty-five' WHERE a=4204;\nUPDATE t2 SET c='seventy-seven thousand five hundred thirteen' WHERE a=4205;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty' WHERE a=4206;\nUPDATE t2 SET c='six thousand eight hundred eighty-eight' WHERE a=4207;\nUPDATE t2 SET c='eighty-one thousand one hundred fifty-eight' WHERE a=4208;\nUPDATE t2 SET c='sixteen thousand five hundred thirty-three' WHERE a=4209;\nUPDATE t2 SET c='seven thousand five hundred twenty-eight' WHERE a=4210;\nUPDATE t2 SET c='seventy-three thousand three hundred five' WHERE a=4211;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-seven' WHERE a=4212;\nUPDATE t2 SET c='twenty-two thousand two hundred sixty-one' WHERE a=4213;\nUPDATE t2 SET c='sixty-one thousand two hundred thirty' WHERE a=4214;\nUPDATE t2 SET c='eighteen thousand four hundred seventy-one' WHERE a=4215;\nUPDATE t2 SET c='fifty-three thousand nine hundred sixty-six' WHERE a=4216;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-four' WHERE a=4217;\nUPDATE t2 SET c='seventy-seven thousand five hundred thirty-two' WHERE a=4218;\nUPDATE t2 SET c='thirty-eight thousand nine hundred twenty-nine' WHERE a=4219;\nUPDATE t2 SET c='eighty thousand eight hundred forty-six' WHERE a=4220;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-seven' WHERE a=4221;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-six' WHERE a=4222;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-three' WHERE a=4223;\nUPDATE t2 SET c='ten thousand six hundred five' WHERE a=4224;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-seven' WHERE a=4225;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-one' WHERE a=4226;\nUPDATE t2 SET c='forty-five thousand eight hundred twenty-eight' WHERE a=4227;\nUPDATE t2 SET c='eighty-eight thousand eight hundred ninety-seven' WHERE a=4228;\nUPDATE t2 SET c='thirty-nine thousand seven hundred nineteen' WHERE a=4229;\nUPDATE t2 SET c='forty-two thousand eighty-seven' WHERE a=4230;\nUPDATE t2 SET c='thirty-three thousand four hundred seventy-two' WHERE a=4231;\nUPDATE t2 SET c='twenty thousand three hundred seventy-two' WHERE a=4232;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-four' WHERE a=4233;\nUPDATE t2 SET c='two thousand eight hundred eleven' WHERE a=4234;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-three' WHERE a=4235;\nUPDATE t2 SET c='twenty-three thousand seven hundred nine' WHERE a=4236;\nUPDATE t2 SET c='twelve thousand one hundred sixty-two' WHERE a=4237;\nUPDATE t2 SET c='fifty-two thousand six hundred sixty-nine' WHERE a=4238;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-seven' WHERE a=4239;\nUPDATE t2 SET c='ninety-nine thousand four hundred five' WHERE a=4240;\nUPDATE t2 SET c='thirty-eight thousand five hundred fifty-one' WHERE a=4241;\nUPDATE t2 SET c='two hundred eight' WHERE a=4242;\nUPDATE t2 SET c='ninety-eight thousand eight hundred ninety-six' WHERE a=4243;\nUPDATE t2 SET c='thirty-eight thousand eight hundred eleven' WHERE a=4244;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-six' WHERE a=4245;\nUPDATE t2 SET c='sixty-one thousand one hundred seventeen' WHERE a=4246;\nUPDATE t2 SET c='eighty-one thousand three hundred ninety-nine' WHERE a=4247;\nUPDATE t2 SET c='fifteen thousand four hundred five' WHERE a=4248;\nUPDATE t2 SET c='twenty-two thousand seven hundred six' WHERE a=4249;\nUPDATE t2 SET c='fifty-two thousand five hundred thirty-two' WHERE a=4250;\nUPDATE t2 SET c='forty-six thousand two hundred thirty-three' WHERE a=4251;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-one' WHERE a=4252;\nUPDATE t2 SET c='seventy-five thousand nine' WHERE a=4253;\nUPDATE t2 SET c='sixty-nine thousand seven hundred forty' WHERE a=4254;\nUPDATE t2 SET c='seventy-three thousand nine hundred twenty-one' WHERE a=4255;\nUPDATE t2 SET c='thirty-eight thousand nine hundred sixty-seven' WHERE a=4256;\nUPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=4257;\nUPDATE t2 SET c='nineteen thousand three hundred ninety-three' WHERE a=4258;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-nine' WHERE a=4259;\nUPDATE t2 SET c='six hundred forty-five' WHERE a=4260;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-six' WHERE a=4261;\nUPDATE t2 SET c='sixty-two thousand nine hundred seventy-three' WHERE a=4262;\nUPDATE t2 SET c='sixteen thousand sixty-one' WHERE a=4263;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety-seven' WHERE a=4264;\nUPDATE t2 SET c='three thousand seventy' WHERE a=4265;\nUPDATE t2 SET c='eight thousand three hundred fifty-five' WHERE a=4266;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-seven' WHERE a=4267;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-eight' WHERE a=4268;\nUPDATE t2 SET c='seven thousand one hundred forty-three' WHERE a=4269;\nUPDATE t2 SET c='eighty-four thousand two' WHERE a=4270;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-six' WHERE a=4271;\nUPDATE t2 SET c='eighty-two thousand four hundred seventy-six' WHERE a=4272;\nUPDATE t2 SET c='twenty-three thousand one hundred eighteen' WHERE a=4273;\nUPDATE t2 SET c='fifty-six thousand eight hundred thirty-seven' WHERE a=4274;\nUPDATE t2 SET c='thirty thousand six hundred eighty-nine' WHERE a=4275;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-two' WHERE a=4276;\nUPDATE t2 SET c='eighty-three thousand nine hundred nineteen' WHERE a=4277;\nUPDATE t2 SET c='sixty thousand two hundred thirty-one' WHERE a=4278;\nUPDATE t2 SET c='fifty-nine thousand five hundred twenty-two' WHERE a=4279;\nUPDATE t2 SET c='forty thousand thirty-eight' WHERE a=4280;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty' WHERE a=4281;\nUPDATE t2 SET c='thirty-seven thousand five hundred twenty-seven' WHERE a=4282;\nUPDATE t2 SET c='ninety-nine thousand five hundred fifty-eight' WHERE a=4283;\nUPDATE t2 SET c='three thousand seven hundred ninety-three' WHERE a=4284;\nUPDATE t2 SET c='two thousand four hundred eighty-three' WHERE a=4285;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-five' WHERE a=4286;\nUPDATE t2 SET c='sixteen thousand seven hundred eighteen' WHERE a=4287;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-two' WHERE a=4288;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-three' WHERE a=4289;\nUPDATE t2 SET c='eleven thousand eight hundred forty-four' WHERE a=4290;\nUPDATE t2 SET c='sixty thousand two hundred sixty-eight' WHERE a=4291;\nUPDATE t2 SET c='ninety-three thousand two hundred seventy-two' WHERE a=4292;\nUPDATE t2 SET c='forty-eight thousand five hundred seventy-six' WHERE a=4293;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-one' WHERE a=4294;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy-one' WHERE a=4295;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-three' WHERE a=4296;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-six' WHERE a=4297;\nUPDATE t2 SET c='forty-seven thousand nine hundred four' WHERE a=4298;\nUPDATE t2 SET c='fourteen thousand one hundred thirty' WHERE a=4299;\nUPDATE t2 SET c='seventy-three thousand six hundred twenty-two' WHERE a=4300;\nUPDATE t2 SET c='ninety-nine thousand eight hundred sixty-eight' WHERE a=4301;\nUPDATE t2 SET c='eight thousand four hundred twenty-three' WHERE a=4302;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-seven' WHERE a=4303;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ninety-four' WHERE a=4304;\nUPDATE t2 SET c='twelve thousand three hundred five' WHERE a=4305;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-four' WHERE a=4306;\nUPDATE t2 SET c='seventy thousand seventy-eight' WHERE a=4307;\nUPDATE t2 SET c='twenty-five thousand two hundred forty' WHERE a=4308;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-four' WHERE a=4309;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-three' WHERE a=4310;\nUPDATE t2 SET c='eighty-three thousand one hundred sixteen' WHERE a=4311;\nUPDATE t2 SET c='ninety-four thousand six hundred twenty-eight' WHERE a=4312;\nUPDATE t2 SET c='thirty-one thousand seven hundred twenty' WHERE a=4313;\nUPDATE t2 SET c='sixty-eight thousand two hundred seven' WHERE a=4314;\nUPDATE t2 SET c='fifty-eight thousand three hundred six' WHERE a=4315;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty-two' WHERE a=4316;\nUPDATE t2 SET c='eighty-three thousand one hundred seventy-four' WHERE a=4317;\nUPDATE t2 SET c='fifty-four thousand twenty' WHERE a=4318;\nUPDATE t2 SET c='ninety-seven thousand five hundred eleven' WHERE a=4319;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-two' WHERE a=4320;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-three' WHERE a=4321;\nUPDATE t2 SET c='nine thousand three hundred eighty-seven' WHERE a=4322;\nUPDATE t2 SET c='sixty thousand six hundred sixty-two' WHERE a=4323;\nUPDATE t2 SET c='twenty-three thousand three hundred thirty' WHERE a=4324;\nUPDATE t2 SET c='ninety-three thousand four hundred thirty-one' WHERE a=4325;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-one' WHERE a=4326;\nUPDATE t2 SET c='thirty-nine thousand one hundred twenty-seven' WHERE a=4327;\nUPDATE t2 SET c='ten thousand thirty-six' WHERE a=4328;\nUPDATE t2 SET c='eighty-five thousand seven hundred eighty-two' WHERE a=4329;\nUPDATE t2 SET c='fifteen thousand nine hundred seventy' WHERE a=4330;\nUPDATE t2 SET c='two thousand twenty-one' WHERE a=4331;\nUPDATE t2 SET c='sixty-five thousand four hundred seventy-two' WHERE a=4332;\nUPDATE t2 SET c='twelve thousand five hundred fourteen' WHERE a=4333;\nUPDATE t2 SET c='seventy-two thousand ninety-three' WHERE a=4334;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty' WHERE a=4335;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty' WHERE a=4336;\nUPDATE t2 SET c='forty thousand two hundred eighteen' WHERE a=4337;\nUPDATE t2 SET c='sixteen thousand seven hundred eighty-eight' WHERE a=4338;\nUPDATE t2 SET c='twenty-two thousand two hundred fifty' WHERE a=4339;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-two' WHERE a=4340;\nUPDATE t2 SET c='ninety-five thousand twenty' WHERE a=4341;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-seven' WHERE a=4342;\nUPDATE t2 SET c='sixty-nine thousand eighty-five' WHERE a=4343;\nUPDATE t2 SET c='five thousand eight hundred twenty-three' WHERE a=4344;\nUPDATE t2 SET c='ninety-six thousand three hundred twenty-one' WHERE a=4345;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-one' WHERE a=4346;\nUPDATE t2 SET c='sixty-seven thousand five hundred seventy-three' WHERE a=4347;\nUPDATE t2 SET c='eight thousand sixty-one' WHERE a=4348;\nUPDATE t2 SET c='four thousand seventy-nine' WHERE a=4349;\nUPDATE t2 SET c='ninety-two thousand two hundred seventy-nine' WHERE a=4350;\nUPDATE t2 SET c='one thousand three hundred fifteen' WHERE a=4351;\nUPDATE t2 SET c='four hundred twenty-five' WHERE a=4352;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-one' WHERE a=4353;\nUPDATE t2 SET c='forty-three thousand four hundred fifty' WHERE a=4354;\nUPDATE t2 SET c='thirty-nine thousand one hundred forty-nine' WHERE a=4355;\nUPDATE t2 SET c='ninety-four thousand eight hundred six' WHERE a=4356;\nUPDATE t2 SET c='eighty-seven thousand two hundred sixty-seven' WHERE a=4357;\nUPDATE t2 SET c='seventy-eight thousand twenty-five' WHERE a=4358;\nUPDATE t2 SET c='ninety-three thousand one hundred twenty-six' WHERE a=4359;\nUPDATE t2 SET c='ninety-six thousand three hundred thirteen' WHERE a=4360;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-one' WHERE a=4361;\nUPDATE t2 SET c='thirty-two thousand four hundred five' WHERE a=4362;\nUPDATE t2 SET c='seventy-two thousand fifty-nine' WHERE a=4363;\nUPDATE t2 SET c='twenty-nine thousand one hundred eleven' WHERE a=4364;\nUPDATE t2 SET c='forty-four thousand three hundred forty-four' WHERE a=4365;\nUPDATE t2 SET c='eighty-seven thousand seven hundred thirty-seven' WHERE a=4366;\nUPDATE t2 SET c='ninety-five thousand seven hundred fifty-four' WHERE a=4367;\nUPDATE t2 SET c='seventy-nine thousand four hundred ninety-one' WHERE a=4368;\nUPDATE t2 SET c='thirteen thousand six hundred thirty-two' WHERE a=4369;\nUPDATE t2 SET c='two thousand nine hundred seventy-five' WHERE a=4370;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty' WHERE a=4371;\nUPDATE t2 SET c='four thousand seven hundred eighty-two' WHERE a=4372;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy' WHERE a=4373;\nUPDATE t2 SET c='seventy-five thousand two hundred eighty-seven' WHERE a=4374;\nUPDATE t2 SET c='eighty-three thousand eight hundred eighty-five' WHERE a=4375;\nUPDATE t2 SET c='fifteen thousand seven hundred ninety-three' WHERE a=4376;\nUPDATE t2 SET c='fifteen thousand five hundred fifteen' WHERE a=4377;\nUPDATE t2 SET c='thirty-one thousand two hundred twelve' WHERE a=4378;\nUPDATE t2 SET c='twenty-six thousand seven hundred twenty-one' WHERE a=4379;\nUPDATE t2 SET c='thirty thousand nine hundred thirteen' WHERE a=4380;\nUPDATE t2 SET c='thirty-four thousand three hundred nineteen' WHERE a=4381;\nUPDATE t2 SET c='ninety-two thousand nine hundred sixteen' WHERE a=4382;\nUPDATE t2 SET c='fifty thousand eight hundred twenty-eight' WHERE a=4383;\nUPDATE t2 SET c='seventy-six thousand sixty-six' WHERE a=4384;\nUPDATE t2 SET c='seventeen thousand two hundred seventy-two' WHERE a=4385;\nUPDATE t2 SET c='one thousand eight hundred fifty-nine' WHERE a=4386;\nUPDATE t2 SET c='seventy-five thousand four hundred ten' WHERE a=4387;\nUPDATE t2 SET c='twenty-five thousand forty-one' WHERE a=4388;\nUPDATE t2 SET c='forty-five thousand seven hundred twenty-one' WHERE a=4389;\nUPDATE t2 SET c='eight thousand five hundred sixty-three' WHERE a=4390;\nUPDATE t2 SET c='fifty-four thousand two hundred seventy-three' WHERE a=4391;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety' WHERE a=4392;\nUPDATE t2 SET c='fourteen thousand four hundred sixty-two' WHERE a=4393;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-one' WHERE a=4394;\nUPDATE t2 SET c='seventy-nine thousand seven hundred eighty-four' WHERE a=4395;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy' WHERE a=4396;\nUPDATE t2 SET c='ninety-three thousand six hundred fifteen' WHERE a=4397;\nUPDATE t2 SET c='fifty thousand one hundred sixty' WHERE a=4398;\nUPDATE t2 SET c='five thousand two hundred fifty-one' WHERE a=4399;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=4400;\nUPDATE t2 SET c='seventy-five thousand ninety' WHERE a=4401;\nUPDATE t2 SET c='thirty-six thousand three hundred thirty-one' WHERE a=4402;\nUPDATE t2 SET c='eighty-one thousand one hundred twenty-four' WHERE a=4403;\nUPDATE t2 SET c='twenty-eight thousand twenty-four' WHERE a=4404;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=4405;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirty-four' WHERE a=4406;\nUPDATE t2 SET c='one thousand one hundred nine' WHERE a=4407;\nUPDATE t2 SET c='five thousand two hundred thirty-nine' WHERE a=4408;\nUPDATE t2 SET c='eighty-seven thousand one hundred forty-eight' WHERE a=4409;\nUPDATE t2 SET c='thirteen thousand one hundred ninety-nine' WHERE a=4410;\nUPDATE t2 SET c='twenty-two thousand five hundred forty-seven' WHERE a=4411;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-eight' WHERE a=4412;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty-eight' WHERE a=4413;\nUPDATE t2 SET c='thirty-nine thousand eight hundred sixty-one' WHERE a=4414;\nUPDATE t2 SET c='twenty-five thousand four hundred seventeen' WHERE a=4415;\nUPDATE t2 SET c='forty-seven thousand four hundred fifty-four' WHERE a=4416;\nUPDATE t2 SET c='six thousand three hundred eighty-nine' WHERE a=4417;\nUPDATE t2 SET c='fifteen thousand four hundred ninety-three' WHERE a=4418;\nUPDATE t2 SET c='fifty-six thousand nine hundred seventy-five' WHERE a=4419;\nUPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=4420;\nUPDATE t2 SET c='thirty-six thousand two hundred ninety-one' WHERE a=4421;\nUPDATE t2 SET c='eighty-eight thousand two hundred three' WHERE a=4422;\nUPDATE t2 SET c='ten thousand two hundred forty-five' WHERE a=4423;\nUPDATE t2 SET c='eighty-five thousand nine hundred forty-one' WHERE a=4424;\nUPDATE t2 SET c='fifty-seven thousand thirty-one' WHERE a=4425;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-one' WHERE a=4426;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-two' WHERE a=4427;\nUPDATE t2 SET c='forty thousand three hundred thirty-nine' WHERE a=4428;\nUPDATE t2 SET c='one thousand six hundred sixty-two' WHERE a=4429;\nUPDATE t2 SET c='eighty-five thousand three hundred ninety-nine' WHERE a=4430;\nUPDATE t2 SET c='sixteen thousand nine hundred thirty-nine' WHERE a=4431;\nUPDATE t2 SET c='thirty-two thousand four hundred seventy-one' WHERE a=4432;\nUPDATE t2 SET c='ninety-nine thousand three hundred thirty-six' WHERE a=4433;\nUPDATE t2 SET c='twenty-three thousand two hundred two' WHERE a=4434;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-two' WHERE a=4435;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-three' WHERE a=4436;\nUPDATE t2 SET c='fifty-one thousand three hundred sixty-seven' WHERE a=4437;\nUPDATE t2 SET c='five thousand six hundred eighty-four' WHERE a=4438;\nUPDATE t2 SET c='thirty-one thousand three hundred ninety-three' WHERE a=4439;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=4440;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eleven' WHERE a=4441;\nUPDATE t2 SET c='ninety-four thousand five hundred forty' WHERE a=4442;\nUPDATE t2 SET c='twenty-one thousand seven hundred eight' WHERE a=4443;\nUPDATE t2 SET c='nineteen thousand four hundred fifty-three' WHERE a=4444;\nUPDATE t2 SET c='eighty thousand one hundred forty' WHERE a=4445;\nUPDATE t2 SET c='forty-two thousand fifteen' WHERE a=4446;\nUPDATE t2 SET c='forty thousand two hundred forty-seven' WHERE a=4447;\nUPDATE t2 SET c='three thousand four hundred sixty-three' WHERE a=4448;\nUPDATE t2 SET c='forty-three thousand five hundred' WHERE a=4449;\nUPDATE t2 SET c='thirty-five thousand nine hundred thirty-four' WHERE a=4450;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=4451;\nUPDATE t2 SET c='eleven thousand eight hundred fifty-seven' WHERE a=4452;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-two' WHERE a=4453;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-nine' WHERE a=4454;\nUPDATE t2 SET c='sixty-eight thousand sixty-eight' WHERE a=4455;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-three' WHERE a=4456;\nUPDATE t2 SET c='forty-seven thousand eight hundred forty-two' WHERE a=4457;\nUPDATE t2 SET c='sixteen thousand three hundred eighty-six' WHERE a=4458;\nUPDATE t2 SET c='thirty-nine thousand five hundred forty-seven' WHERE a=4459;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=4460;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-two' WHERE a=4461;\nUPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=4462;\nUPDATE t2 SET c='ninety-two thousand seven hundred twelve' WHERE a=4463;\nUPDATE t2 SET c='fifty-five thousand three hundred twenty-three' WHERE a=4464;\nUPDATE t2 SET c='fifty-three thousand six hundred ten' WHERE a=4465;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-four' WHERE a=4466;\nUPDATE t2 SET c='ninety-three thousand five hundred twenty-one' WHERE a=4467;\nUPDATE t2 SET c='thirty thousand six hundred forty-eight' WHERE a=4468;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=4469;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-four' WHERE a=4470;\nUPDATE t2 SET c='forty-four thousand three hundred eleven' WHERE a=4471;\nUPDATE t2 SET c='five thousand two hundred seventeen' WHERE a=4472;\nUPDATE t2 SET c='eleven thousand two hundred thirty-two' WHERE a=4473;\nUPDATE t2 SET c='eighty-nine thousand two hundred seventy-nine' WHERE a=4474;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=4475;\nUPDATE t2 SET c='three thousand six hundred ninety-four' WHERE a=4476;\nUPDATE t2 SET c='five thousand six hundred forty-one' WHERE a=4477;\nUPDATE t2 SET c='thirty-five thousand fifty-seven' WHERE a=4478;\nUPDATE t2 SET c='seventy-five thousand four hundred seventy-eight' WHERE a=4479;\nUPDATE t2 SET c='nineteen thousand two hundred eighty' WHERE a=4480;\nUPDATE t2 SET c='six thousand six hundred fifty-nine' WHERE a=4481;\nUPDATE t2 SET c='sixty-four thousand four hundred one' WHERE a=4482;\nUPDATE t2 SET c='two thousand four hundred sixty-four' WHERE a=4483;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-eight' WHERE a=4484;\nUPDATE t2 SET c='nineteen thousand four hundred seventy-nine' WHERE a=4485;\nUPDATE t2 SET c='four thousand seven hundred three' WHERE a=4486;\nUPDATE t2 SET c='seventy-five thousand seven hundred eight' WHERE a=4487;\nUPDATE t2 SET c='ninety-five thousand one hundred seven' WHERE a=4488;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-three' WHERE a=4489;\nUPDATE t2 SET c='seven thousand seven hundred thirty' WHERE a=4490;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-three' WHERE a=4491;\nUPDATE t2 SET c='eight hundred fifty-seven' WHERE a=4492;\nUPDATE t2 SET c='thirty-one thousand four hundred seventeen' WHERE a=4493;\nUPDATE t2 SET c='ten thousand five hundred eighty-two' WHERE a=4494;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-seven' WHERE a=4495;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-four' WHERE a=4496;\nUPDATE t2 SET c='forty-two thousand forty-one' WHERE a=4497;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-nine' WHERE a=4498;\nUPDATE t2 SET c='eighty-five thousand one hundred fifty-nine' WHERE a=4499;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-three' WHERE a=4500;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-four' WHERE a=4501;\nUPDATE t2 SET c='thirty thousand six hundred ninety-seven' WHERE a=4502;\nUPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=4503;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-nine' WHERE a=4504;\nUPDATE t2 SET c='eleven thousand six hundred sixty-six' WHERE a=4505;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-eight' WHERE a=4506;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-three' WHERE a=4507;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-six' WHERE a=4508;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-one' WHERE a=4509;\nUPDATE t2 SET c='twenty-eight thousand seven hundred seventy-two' WHERE a=4510;\nUPDATE t2 SET c='thirty-seven thousand fifty-five' WHERE a=4511;\nUPDATE t2 SET c='fifty-three thousand one hundred twenty-nine' WHERE a=4512;\nUPDATE t2 SET c='twenty-two thousand eight hundred fourteen' WHERE a=4513;\nUPDATE t2 SET c='eighty thousand two hundred fifty-five' WHERE a=4514;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-two' WHERE a=4515;\nUPDATE t2 SET c='fifty thousand one hundred thirty-nine' WHERE a=4516;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-eight' WHERE a=4517;\nUPDATE t2 SET c='seventy thousand two hundred eighty-four' WHERE a=4518;\nUPDATE t2 SET c='four thousand one hundred eighty-one' WHERE a=4519;\nUPDATE t2 SET c='thirty-three thousand four hundred nine' WHERE a=4520;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-one' WHERE a=4521;\nUPDATE t2 SET c='seventy-four thousand six hundred fifty-one' WHERE a=4522;\nUPDATE t2 SET c='sixty-seven thousand four hundred eleven' WHERE a=4523;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-eight' WHERE a=4524;\nUPDATE t2 SET c='seventy-one thousand six hundred fifty-seven' WHERE a=4525;\nUPDATE t2 SET c='seventy-six thousand two hundred two' WHERE a=4526;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=4527;\nUPDATE t2 SET c='twelve thousand four hundred thirty-five' WHERE a=4528;\nUPDATE t2 SET c='fifty-four thousand one hundred eighty' WHERE a=4529;\nUPDATE t2 SET c='forty thousand eight hundred seventy-five' WHERE a=4530;\nUPDATE t2 SET c='ninety-nine thousand nine hundred sixty-four' WHERE a=4531;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-three' WHERE a=4532;\nUPDATE t2 SET c='fifty-five thousand four hundred eight' WHERE a=4533;\nUPDATE t2 SET c='thirty-nine thousand seventy-one' WHERE a=4534;\nUPDATE t2 SET c='fifty-nine thousand six hundred eighty-nine' WHERE a=4535;\nUPDATE t2 SET c='eighty-four thousand eight hundred twenty-three' WHERE a=4536;\nUPDATE t2 SET c='seventy-two thousand four hundred four' WHERE a=4537;\nUPDATE t2 SET c='two hundred seventy-one' WHERE a=4538;\nUPDATE t2 SET c='sixty thousand eight hundred fourteen' WHERE a=4539;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-two' WHERE a=4540;\nUPDATE t2 SET c='forty-five thousand one hundred two' WHERE a=4541;\nUPDATE t2 SET c='nine thousand seven hundred four' WHERE a=4542;\nUPDATE t2 SET c='eighty-two thousand thirty-nine' WHERE a=4543;\nUPDATE t2 SET c='forty thousand four hundred ninety-nine' WHERE a=4544;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-five' WHERE a=4545;\nUPDATE t2 SET c='forty-one thousand nine hundred two' WHERE a=4546;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-five' WHERE a=4547;\nUPDATE t2 SET c='six hundred seventy-two' WHERE a=4548;\nUPDATE t2 SET c='eleven thousand four hundred fifty-four' WHERE a=4549;\nUPDATE t2 SET c='thirteen thousand fifty-eight' WHERE a=4550;\nUPDATE t2 SET c='eighty-one thousand four hundred fifty-nine' WHERE a=4551;\nUPDATE t2 SET c='forty-six thousand seven hundred four' WHERE a=4552;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-one' WHERE a=4553;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-seven' WHERE a=4554;\nUPDATE t2 SET c='thirty thousand five hundred one' WHERE a=4555;\nUPDATE t2 SET c='fifty-four thousand forty-one' WHERE a=4556;\nUPDATE t2 SET c='sixty-eight thousand five hundred sixty-nine' WHERE a=4557;\nUPDATE t2 SET c='nine thousand seventy-seven' WHERE a=4558;\nUPDATE t2 SET c='one thousand two hundred sixty-nine' WHERE a=4559;\nUPDATE t2 SET c='sixty-three thousand nine hundred forty-six' WHERE a=4560;\nUPDATE t2 SET c='sixteen thousand one hundred ninety-four' WHERE a=4561;\nUPDATE t2 SET c='thirty-one thousand two hundred seventy-one' WHERE a=4562;\nUPDATE t2 SET c='sixty thousand six hundred seventy-two' WHERE a=4563;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-six' WHERE a=4564;\nUPDATE t2 SET c='thirty-four thousand five hundred four' WHERE a=4565;\nUPDATE t2 SET c='ninety-four thousand two hundred five' WHERE a=4566;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-four' WHERE a=4567;\nUPDATE t2 SET c='two thousand eighty-three' WHERE a=4568;\nUPDATE t2 SET c='sixty-eight thousand one hundred eleven' WHERE a=4569;\nUPDATE t2 SET c='sixty-five thousand three hundred eleven' WHERE a=4570;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-seven' WHERE a=4571;\nUPDATE t2 SET c='five thousand nine hundred ninety-nine' WHERE a=4572;\nUPDATE t2 SET c='thirty-five thousand eight hundred nineteen' WHERE a=4573;\nUPDATE t2 SET c='forty-seven thousand eight hundred ninety' WHERE a=4574;\nUPDATE t2 SET c='thirty-seven thousand three hundred seventy' WHERE a=4575;\nUPDATE t2 SET c='seven thousand one hundred fifty-four' WHERE a=4576;\nUPDATE t2 SET c='ninety-one thousand nine hundred three' WHERE a=4577;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-five' WHERE a=4578;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-seven' WHERE a=4579;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-nine' WHERE a=4580;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty-six' WHERE a=4581;\nUPDATE t2 SET c='seventeen thousand nine hundred seven' WHERE a=4582;\nUPDATE t2 SET c='seven thousand six hundred nine' WHERE a=4583;\nUPDATE t2 SET c='eighty-two thousand one hundred eight' WHERE a=4584;\nUPDATE t2 SET c='sixteen thousand six hundred eighty-eight' WHERE a=4585;\nUPDATE t2 SET c='fifty-seven thousand forty-nine' WHERE a=4586;\nUPDATE t2 SET c='seventy-eight thousand one hundred fifty' WHERE a=4587;\nUPDATE t2 SET c='thirty thousand three hundred fifteen' WHERE a=4588;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-six' WHERE a=4589;\nUPDATE t2 SET c='fourteen thousand four hundred nine' WHERE a=4590;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-six' WHERE a=4591;\nUPDATE t2 SET c='seventy-two thousand nineteen' WHERE a=4592;\nUPDATE t2 SET c='twenty-five thousand five hundred sixty-seven' WHERE a=4593;\nUPDATE t2 SET c='forty-four thousand sixty-nine' WHERE a=4594;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-eight' WHERE a=4595;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-eight' WHERE a=4596;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty-one' WHERE a=4597;\nUPDATE t2 SET c='fifty-nine thousand eight hundred nineteen' WHERE a=4598;\nUPDATE t2 SET c='twenty-five thousand five hundred nineteen' WHERE a=4599;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-nine' WHERE a=4600;\nUPDATE t2 SET c='six thousand eight hundred fifty-two' WHERE a=4601;\nUPDATE t2 SET c='forty-four thousand fifty-one' WHERE a=4602;\nUPDATE t2 SET c='twenty-two thousand nine hundred twenty-four' WHERE a=4603;\nUPDATE t2 SET c='fifty-two thousand ninety-six' WHERE a=4604;\nUPDATE t2 SET c='eighty thousand eight hundred ten' WHERE a=4605;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-three' WHERE a=4606;\nUPDATE t2 SET c='sixty-nine thousand seven hundred sixty-nine' WHERE a=4607;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-six' WHERE a=4608;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-six' WHERE a=4609;\nUPDATE t2 SET c='four thousand three hundred twenty-three' WHERE a=4610;\nUPDATE t2 SET c='seventy-seven thousand one hundred ninety' WHERE a=4611;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty-eight' WHERE a=4612;\nUPDATE t2 SET c='eleven thousand two hundred ninety-eight' WHERE a=4613;\nUPDATE t2 SET c='thirty-eight thousand two hundred sixty-eight' WHERE a=4614;\nUPDATE t2 SET c='sixty-three' WHERE a=4615;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-nine' WHERE a=4616;\nUPDATE t2 SET c='eighty-eight thousand four hundred twenty-five' WHERE a=4617;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-five' WHERE a=4618;\nUPDATE t2 SET c='five thousand eight hundred fifty-nine' WHERE a=4619;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifty-four' WHERE a=4620;\nUPDATE t2 SET c='eighty-seven thousand seven hundred four' WHERE a=4621;\nUPDATE t2 SET c='thirty thousand seven hundred seventy-three' WHERE a=4622;\nUPDATE t2 SET c='ninety thousand eight hundred thirty-eight' WHERE a=4623;\nUPDATE t2 SET c='twenty-nine thousand six hundred fifty-eight' WHERE a=4624;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-four' WHERE a=4625;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy' WHERE a=4626;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-seven' WHERE a=4627;\nUPDATE t2 SET c='eighty-six thousand seven hundred twenty-three' WHERE a=4628;\nUPDATE t2 SET c='fifty-one thousand eighty-five' WHERE a=4629;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-two' WHERE a=4630;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifty-eight' WHERE a=4631;\nUPDATE t2 SET c='two thousand seven hundred ninety-four' WHERE a=4632;\nUPDATE t2 SET c='sixty-four thousand five hundred fifty-eight' WHERE a=4633;\nUPDATE t2 SET c='forty-eight thousand nine hundred seventy-six' WHERE a=4634;\nUPDATE t2 SET c='nine thousand two hundred thirty-three' WHERE a=4635;\nUPDATE t2 SET c='five thousand two hundred forty-three' WHERE a=4636;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=4637;\nUPDATE t2 SET c='forty thousand five hundred thirty-two' WHERE a=4638;\nUPDATE t2 SET c='forty-four thousand eight hundred ninety-three' WHERE a=4639;\nUPDATE t2 SET c='five thousand seven hundred seventeen' WHERE a=4640;\nUPDATE t2 SET c='ninety-three thousand six hundred fifty-three' WHERE a=4641;\nUPDATE t2 SET c='six thousand one hundred sixty' WHERE a=4642;\nUPDATE t2 SET c='six thousand two hundred eighty-seven' WHERE a=4643;\nUPDATE t2 SET c='ninety-five thousand two hundred seventy-one' WHERE a=4644;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty-one' WHERE a=4645;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixty' WHERE a=4646;\nUPDATE t2 SET c='ninety thousand four hundred thirty-four' WHERE a=4647;\nUPDATE t2 SET c='three thousand five hundred forty-one' WHERE a=4648;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-five' WHERE a=4649;\nUPDATE t2 SET c='seventy-five thousand two hundred sixty-four' WHERE a=4650;\nUPDATE t2 SET c='fifty-two thousand five hundred thirty-one' WHERE a=4651;\nUPDATE t2 SET c='twenty-one thousand three hundred eighty-six' WHERE a=4652;\nUPDATE t2 SET c='one thousand eight hundred ninety-six' WHERE a=4653;\nUPDATE t2 SET c='fifty-nine thousand six hundred thirty-three' WHERE a=4654;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty-three' WHERE a=4655;\nUPDATE t2 SET c='four hundred ninety-one' WHERE a=4656;\nUPDATE t2 SET c='forty-two thousand two hundred ninety-two' WHERE a=4657;\nUPDATE t2 SET c='sixty-four thousand two hundred fifty-five' WHERE a=4658;\nUPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=4659;\nUPDATE t2 SET c='twenty-one thousand seven hundred sixteen' WHERE a=4660;\nUPDATE t2 SET c='ninety-seven thousand five hundred seventy-four' WHERE a=4661;\nUPDATE t2 SET c='six thousand eight hundred sixty-eight' WHERE a=4662;\nUPDATE t2 SET c='ten thousand six hundred eighty-eight' WHERE a=4663;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-six' WHERE a=4664;\nUPDATE t2 SET c='fifty-one thousand fifty-four' WHERE a=4665;\nUPDATE t2 SET c='seventy thousand six hundred twenty-six' WHERE a=4666;\nUPDATE t2 SET c='seventeen thousand nine hundred eighty-seven' WHERE a=4667;\nUPDATE t2 SET c='four thousand two hundred sixty-eight' WHERE a=4668;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-nine' WHERE a=4669;\nUPDATE t2 SET c='forty thousand nine hundred ninety-seven' WHERE a=4670;\nUPDATE t2 SET c='thirteen thousand two hundred sixty-eight' WHERE a=4671;\nUPDATE t2 SET c='thirty thousand seventy-one' WHERE a=4672;\nUPDATE t2 SET c='seventy-eight thousand one hundred forty-two' WHERE a=4673;\nUPDATE t2 SET c='ninety-six thousand eight hundred seventy-three' WHERE a=4674;\nUPDATE t2 SET c='ninety-five thousand four hundred fifty-five' WHERE a=4675;\nUPDATE t2 SET c='forty-four thousand seven hundred three' WHERE a=4676;\nUPDATE t2 SET c='eighty-nine thousand eight hundred twenty-three' WHERE a=4677;\nUPDATE t2 SET c='forty-five thousand six hundred ten' WHERE a=4678;\nUPDATE t2 SET c='sixty-six thousand fifty-one' WHERE a=4679;\nUPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=4680;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-eight' WHERE a=4681;\nUPDATE t2 SET c='twelve thousand two hundred fifty-five' WHERE a=4682;\nUPDATE t2 SET c='thirteen thousand sixteen' WHERE a=4683;\nUPDATE t2 SET c='eight thousand two hundred sixty-six' WHERE a=4684;\nUPDATE t2 SET c='eight thousand sixty-six' WHERE a=4685;\nUPDATE t2 SET c='thirty-three thousand four hundred fifty-eight' WHERE a=4686;\nUPDATE t2 SET c='twenty-two thousand four hundred twelve' WHERE a=4687;\nUPDATE t2 SET c='eighty-seven thousand sixty-six' WHERE a=4688;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty-one' WHERE a=4689;\nUPDATE t2 SET c='eleven thousand seven hundred sixty-five' WHERE a=4690;\nUPDATE t2 SET c='eighty-five thousand one hundred ninety-five' WHERE a=4691;\nUPDATE t2 SET c='fifty-four thousand one hundred eighty-five' WHERE a=4692;\nUPDATE t2 SET c='fifty-three thousand five hundred eighty-five' WHERE a=4693;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty' WHERE a=4694;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-two' WHERE a=4695;\nUPDATE t2 SET c='fifty-six thousand six hundred twenty' WHERE a=4696;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-two' WHERE a=4697;\nUPDATE t2 SET c='eight thousand one hundred ninety-three' WHERE a=4698;\nUPDATE t2 SET c='forty-three thousand four hundred sixty' WHERE a=4699;\nUPDATE t2 SET c='forty-seven thousand six hundred seventy-six' WHERE a=4700;\nUPDATE t2 SET c='seventy-four thousand five hundred eleven' WHERE a=4701;\nUPDATE t2 SET c='seventy-three thousand eight hundred nine' WHERE a=4702;\nUPDATE t2 SET c='eight thousand eight hundred twenty-seven' WHERE a=4703;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirteen' WHERE a=4704;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-five' WHERE a=4705;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=4706;\nUPDATE t2 SET c='eighty-three thousand three hundred eighteen' WHERE a=4707;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-seven' WHERE a=4708;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty' WHERE a=4709;\nUPDATE t2 SET c='eight thousand three hundred thirty-one' WHERE a=4710;\nUPDATE t2 SET c='fifty-six thousand eight hundred five' WHERE a=4711;\nUPDATE t2 SET c='forty-four thousand eight hundred thirty-six' WHERE a=4712;\nUPDATE t2 SET c='seventy-two thousand twenty-five' WHERE a=4713;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=4714;\nUPDATE t2 SET c='fifty-eight thousand one hundred ninety' WHERE a=4715;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-five' WHERE a=4716;\nUPDATE t2 SET c='thirty-one thousand eight hundred fifty-two' WHERE a=4717;\nUPDATE t2 SET c='eight thousand three hundred one' WHERE a=4718;\nUPDATE t2 SET c='seventeen thousand one hundred seventy-five' WHERE a=4719;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-nine' WHERE a=4720;\nUPDATE t2 SET c='forty-seven thousand two hundred sixteen' WHERE a=4721;\nUPDATE t2 SET c='seventy thousand seven hundred eighty-three' WHERE a=4722;\nUPDATE t2 SET c='ten thousand five hundred seventy-one' WHERE a=4723;\nUPDATE t2 SET c='forty-one thousand four hundred fifty-five' WHERE a=4724;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=4725;\nUPDATE t2 SET c='one thousand one hundred seventy-seven' WHERE a=4726;\nUPDATE t2 SET c='forty-eight thousand two hundred seventy-seven' WHERE a=4727;\nUPDATE t2 SET c='ninety-five thousand one hundred thirty-one' WHERE a=4728;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty' WHERE a=4729;\nUPDATE t2 SET c='nineteen thousand eight hundred fourteen' WHERE a=4730;\nUPDATE t2 SET c='nine hundred nine' WHERE a=4731;\nUPDATE t2 SET c='ninety-two thousand two hundred forty-four' WHERE a=4732;\nUPDATE t2 SET c='seventy-six thousand four hundred eighteen' WHERE a=4733;\nUPDATE t2 SET c='nine thousand eight hundred eighty-five' WHERE a=4734;\nUPDATE t2 SET c='three thousand one hundred five' WHERE a=4735;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-six' WHERE a=4736;\nUPDATE t2 SET c='fifty-six thousand five hundred eighty-five' WHERE a=4737;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-five' WHERE a=4738;\nUPDATE t2 SET c='ninety-nine thousand nine hundred fourteen' WHERE a=4739;\nUPDATE t2 SET c='twenty-two thousand eight hundred seven' WHERE a=4740;\nUPDATE t2 SET c='thirty thousand seven hundred forty' WHERE a=4741;\nUPDATE t2 SET c='ten thousand five hundred three' WHERE a=4742;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-six' WHERE a=4743;\nUPDATE t2 SET c='fifty-nine thousand seven hundred twenty-eight' WHERE a=4744;\nUPDATE t2 SET c='nineteen thousand three hundred thirty-six' WHERE a=4745;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty' WHERE a=4746;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-nine' WHERE a=4747;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-three' WHERE a=4748;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventy-eight' WHERE a=4749;\nUPDATE t2 SET c='fifty-one thousand eight hundred thirty-six' WHERE a=4750;\nUPDATE t2 SET c='thirty-nine thousand six hundred forty-four' WHERE a=4751;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-four' WHERE a=4752;\nUPDATE t2 SET c='eighty-one thousand one hundred twenty-three' WHERE a=4753;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-seven' WHERE a=4754;\nUPDATE t2 SET c='ninety thousand four hundred sixty-two' WHERE a=4755;\nUPDATE t2 SET c='ninety-two thousand nine hundred eighty-three' WHERE a=4756;\nUPDATE t2 SET c='seventy-two thousand one hundred forty-three' WHERE a=4757;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty-three' WHERE a=4758;\nUPDATE t2 SET c='sixty-one thousand three hundred fifty-six' WHERE a=4759;\nUPDATE t2 SET c='twenty-six thousand seventy-eight' WHERE a=4760;\nUPDATE t2 SET c='eighty thousand eighty-seven' WHERE a=4761;\nUPDATE t2 SET c='twenty-seven thousand two hundred two' WHERE a=4762;\nUPDATE t2 SET c='seventy-one thousand seven hundred fifty-one' WHERE a=4763;\nUPDATE t2 SET c='five thousand one hundred thirty-five' WHERE a=4764;\nUPDATE t2 SET c='fifty-eight thousand three hundred one' WHERE a=4765;\nUPDATE t2 SET c='thirty-two thousand ninety' WHERE a=4766;\nUPDATE t2 SET c='nine hundred ninety-five' WHERE a=4767;\nUPDATE t2 SET c='thirty-two thousand two hundred forty-two' WHERE a=4768;\nUPDATE t2 SET c='eighty-nine thousand one hundred forty-one' WHERE a=4769;\nUPDATE t2 SET c='eighty-one thousand four hundred sixteen' WHERE a=4770;\nUPDATE t2 SET c='forty-five thousand one hundred fifty-six' WHERE a=4771;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-five' WHERE a=4772;\nUPDATE t2 SET c='fifty-six thousand seven hundred eighty-five' WHERE a=4773;\nUPDATE t2 SET c='thirty-one thousand five hundred forty' WHERE a=4774;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-six' WHERE a=4775;\nUPDATE t2 SET c='thirty-seven thousand five hundred twenty-three' WHERE a=4776;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirty-three' WHERE a=4777;\nUPDATE t2 SET c='sixty-one thousand two hundred eighty-five' WHERE a=4778;\nUPDATE t2 SET c='eighty-nine thousand two hundred ten' WHERE a=4779;\nUPDATE t2 SET c='twenty-six thousand six hundred forty-four' WHERE a=4780;\nUPDATE t2 SET c='forty-nine thousand nine hundred ninety-three' WHERE a=4781;\nUPDATE t2 SET c='thirty-two thousand seven hundred fourteen' WHERE a=4782;\nUPDATE t2 SET c='eight hundred forty-six' WHERE a=4783;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-three' WHERE a=4784;\nUPDATE t2 SET c='forty thousand four hundred eighty-three' WHERE a=4785;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eighty-nine' WHERE a=4786;\nUPDATE t2 SET c='forty-nine thousand seven hundred forty-seven' WHERE a=4787;\nUPDATE t2 SET c='sixty-four thousand nine hundred twenty-two' WHERE a=4788;\nUPDATE t2 SET c='sixty-six thousand eight hundred fifty-four' WHERE a=4789;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-nine' WHERE a=4790;\nUPDATE t2 SET c='forty-four thousand fifty-three' WHERE a=4791;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-two' WHERE a=4792;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixteen' WHERE a=4793;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety-nine' WHERE a=4794;\nUPDATE t2 SET c='sixty-one thousand two hundred fifty-three' WHERE a=4795;\nUPDATE t2 SET c='eighty-nine thousand seventy-four' WHERE a=4796;\nUPDATE t2 SET c='twenty-six thousand nine hundred thirty-seven' WHERE a=4797;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-one' WHERE a=4798;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ninety-eight' WHERE a=4799;\nUPDATE t2 SET c='one thousand two hundred ninety-one' WHERE a=4800;\nUPDATE t2 SET c='ninety-seven thousand six hundred sixty-eight' WHERE a=4801;\nUPDATE t2 SET c='seventeen thousand one hundred seven' WHERE a=4802;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-four' WHERE a=4803;\nUPDATE t2 SET c='twelve thousand four hundred thirty-five' WHERE a=4804;\nUPDATE t2 SET c='one thousand nine hundred sixteen' WHERE a=4805;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=4806;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-three' WHERE a=4807;\nUPDATE t2 SET c='eighty-one thousand one hundred ninety-seven' WHERE a=4808;\nUPDATE t2 SET c='fifty-five thousand nine hundred five' WHERE a=4809;\nUPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=4810;\nUPDATE t2 SET c='sixty-one thousand seven hundred eight' WHERE a=4811;\nUPDATE t2 SET c='nineteen thousand forty' WHERE a=4812;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety-two' WHERE a=4813;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty' WHERE a=4814;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-two' WHERE a=4815;\nUPDATE t2 SET c='twenty-one thousand nine hundred twenty-seven' WHERE a=4816;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-five' WHERE a=4817;\nUPDATE t2 SET c='eight hundred twenty-three' WHERE a=4818;\nUPDATE t2 SET c='twenty-four thousand seventeen' WHERE a=4819;\nUPDATE t2 SET c='sixteen thousand nine hundred nine' WHERE a=4820;\nUPDATE t2 SET c='twenty-five thousand four hundred thirty-two' WHERE a=4821;\nUPDATE t2 SET c='ninety-four thousand three hundred ten' WHERE a=4822;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventeen' WHERE a=4823;\nUPDATE t2 SET c='sixty-five thousand four hundred forty-two' WHERE a=4824;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-six' WHERE a=4825;\nUPDATE t2 SET c='forty-nine thousand five hundred one' WHERE a=4826;\nUPDATE t2 SET c='eight thousand eight hundred eighty-seven' WHERE a=4827;\nUPDATE t2 SET c='twenty-three thousand one hundred sixteen' WHERE a=4828;\nUPDATE t2 SET c='thirty-seven thousand eight hundred twelve' WHERE a=4829;\nUPDATE t2 SET c='ninety-six thousand four hundred forty-four' WHERE a=4830;\nUPDATE t2 SET c='fifty-four thousand nine hundred eleven' WHERE a=4831;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-six' WHERE a=4832;\nUPDATE t2 SET c='seventy-five thousand four hundred forty-eight' WHERE a=4833;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-seven' WHERE a=4834;\nUPDATE t2 SET c='fifty-three thousand one hundred four' WHERE a=4835;\nUPDATE t2 SET c='two hundred eighty-one' WHERE a=4836;\nUPDATE t2 SET c='seventy-one thousand seven hundred fifty' WHERE a=4837;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty-nine' WHERE a=4838;\nUPDATE t2 SET c='seventy-nine thousand three hundred seventy-six' WHERE a=4839;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-one' WHERE a=4840;\nUPDATE t2 SET c='forty thousand nine hundred four' WHERE a=4841;\nUPDATE t2 SET c='thirty-seven thousand four hundred ninety' WHERE a=4842;\nUPDATE t2 SET c='seventy-three thousand nine hundred forty-five' WHERE a=4843;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-seven' WHERE a=4844;\nUPDATE t2 SET c='eighty-three thousand one hundred six' WHERE a=4845;\nUPDATE t2 SET c='fifty-six thousand three hundred seventy-seven' WHERE a=4846;\nUPDATE t2 SET c='sixty-five thousand six hundred one' WHERE a=4847;\nUPDATE t2 SET c='thirty-five thousand three hundred sixty' WHERE a=4848;\nUPDATE t2 SET c='thirty-seven thousand four hundred eighty-three' WHERE a=4849;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-one' WHERE a=4850;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventy' WHERE a=4851;\nUPDATE t2 SET c='fifteen thousand one hundred seventy-four' WHERE a=4852;\nUPDATE t2 SET c='thirty-two thousand four hundred thirty-nine' WHERE a=4853;\nUPDATE t2 SET c='twenty-seven thousand thirty-nine' WHERE a=4854;\nUPDATE t2 SET c='eight thousand four hundred seventy-nine' WHERE a=4855;\nUPDATE t2 SET c='twenty-five thousand six hundred twenty' WHERE a=4856;\nUPDATE t2 SET c='eleven thousand seven hundred twenty-four' WHERE a=4857;\nUPDATE t2 SET c='nine thousand one hundred eighty-nine' WHERE a=4858;\nUPDATE t2 SET c='four thousand three hundred eighty-eight' WHERE a=4859;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-seven' WHERE a=4860;\nUPDATE t2 SET c='four thousand eight hundred sixty-two' WHERE a=4861;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-one' WHERE a=4862;\nUPDATE t2 SET c='seventy-nine thousand two hundred nineteen' WHERE a=4863;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-nine' WHERE a=4864;\nUPDATE t2 SET c='seventeen thousand one hundred forty-two' WHERE a=4865;\nUPDATE t2 SET c='thirty thousand five hundred twenty-eight' WHERE a=4866;\nUPDATE t2 SET c='seventy-six thousand four hundred fifteen' WHERE a=4867;\nUPDATE t2 SET c='forty-four thousand three hundred fifteen' WHERE a=4868;\nUPDATE t2 SET c='eighty thousand two hundred ninety-two' WHERE a=4869;\nUPDATE t2 SET c='twenty-eight thousand three hundred sixty-two' WHERE a=4870;\nUPDATE t2 SET c='twenty-eight thousand twenty' WHERE a=4871;\nUPDATE t2 SET c='forty-five thousand thirty-seven' WHERE a=4872;\nUPDATE t2 SET c='ten thousand seven hundred seventy-five' WHERE a=4873;\nUPDATE t2 SET c='sixty-one thousand five hundred twenty-three' WHERE a=4874;\nUPDATE t2 SET c='fifteen thousand ninety-one' WHERE a=4875;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-two' WHERE a=4876;\nUPDATE t2 SET c='eighty-five thousand five hundred seventy-three' WHERE a=4877;\nUPDATE t2 SET c='seventy-two thousand one hundred ninety-two' WHERE a=4878;\nUPDATE t2 SET c='thirty-one thousand one hundred forty-nine' WHERE a=4879;\nUPDATE t2 SET c='seventy-one thousand eighty-two' WHERE a=4880;\nUPDATE t2 SET c='forty-two thousand five hundred sixty-two' WHERE a=4881;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-five' WHERE a=4882;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=4883;\nUPDATE t2 SET c='fifty-two thousand two hundred sixty' WHERE a=4884;\nUPDATE t2 SET c='forty-two thousand eight hundred sixty-five' WHERE a=4885;\nUPDATE t2 SET c='five thousand four hundred twenty-six' WHERE a=4886;\nUPDATE t2 SET c='forty-five thousand ninety-seven' WHERE a=4887;\nUPDATE t2 SET c='seventy-six thousand seven hundred forty-three' WHERE a=4888;\nUPDATE t2 SET c='eighty-three thousand seven hundred fifty-two' WHERE a=4889;\nUPDATE t2 SET c='nineteen thousand seven hundred thirty-three' WHERE a=4890;\nUPDATE t2 SET c='fifty-one thousand five hundred five' WHERE a=4891;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-seven' WHERE a=4892;\nUPDATE t2 SET c='thirty-two thousand nine hundred thirty-four' WHERE a=4893;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-five' WHERE a=4894;\nUPDATE t2 SET c='fourteen thousand six hundred five' WHERE a=4895;\nUPDATE t2 SET c='eighty-two thousand six hundred seventy-five' WHERE a=4896;\nUPDATE t2 SET c='twelve thousand sixty' WHERE a=4897;\nUPDATE t2 SET c='thirteen thousand two hundred seventy-seven' WHERE a=4898;\nUPDATE t2 SET c='forty-four thousand seven hundred thirteen' WHERE a=4899;\nUPDATE t2 SET c='eighty-one thousand eight hundred forty-two' WHERE a=4900;\nUPDATE t2 SET c='fifteen thousand eight hundred seventy-nine' WHERE a=4901;\nUPDATE t2 SET c='forty-seven thousand six hundred nine' WHERE a=4902;\nUPDATE t2 SET c='one thousand three hundred forty-eight' WHERE a=4903;\nUPDATE t2 SET c='ninety-two thousand three hundred eighty-seven' WHERE a=4904;\nUPDATE t2 SET c='forty-nine thousand three hundred ninety' WHERE a=4905;\nUPDATE t2 SET c='thirty-nine thousand nine hundred three' WHERE a=4906;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty-four' WHERE a=4907;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty' WHERE a=4908;\nUPDATE t2 SET c='fifty-six thousand nine hundred sixty-nine' WHERE a=4909;\nUPDATE t2 SET c='eighty-four thousand sixty-seven' WHERE a=4910;\nUPDATE t2 SET c='seventy-nine thousand thirty-three' WHERE a=4911;\nUPDATE t2 SET c='twenty-six thousand six hundred sixty-five' WHERE a=4912;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-nine' WHERE a=4913;\nUPDATE t2 SET c='nineteen thousand three hundred forty-two' WHERE a=4914;\nUPDATE t2 SET c='eleven thousand one hundred twenty-two' WHERE a=4915;\nUPDATE t2 SET c='thirty-eight thousand seven hundred thirty-two' WHERE a=4916;\nUPDATE t2 SET c='five thousand two hundred ninety-three' WHERE a=4917;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-one' WHERE a=4918;\nUPDATE t2 SET c='fifty-six thousand four hundred forty-three' WHERE a=4919;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-eight' WHERE a=4920;\nUPDATE t2 SET c='sixty-two thousand six hundred ninety-two' WHERE a=4921;\nUPDATE t2 SET c='one thousand seven hundred four' WHERE a=4922;\nUPDATE t2 SET c='fourteen thousand nine hundred forty-four' WHERE a=4923;\nUPDATE t2 SET c='fifty-six thousand one hundred twenty-five' WHERE a=4924;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-seven' WHERE a=4925;\nUPDATE t2 SET c='twenty-eight thousand eight hundred eighty-seven' WHERE a=4926;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=4927;\nUPDATE t2 SET c='ninety-one thousand three hundred forty-three' WHERE a=4928;\nUPDATE t2 SET c='sixty-seven thousand one hundred twenty-seven' WHERE a=4929;\nUPDATE t2 SET c='fifty-six thousand five hundred five' WHERE a=4930;\nUPDATE t2 SET c='forty-nine thousand one hundred twenty-five' WHERE a=4931;\nUPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=4932;\nUPDATE t2 SET c='seventy-nine thousand four hundred twenty-one' WHERE a=4933;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-two' WHERE a=4934;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-eight' WHERE a=4935;\nUPDATE t2 SET c='fifty-one thousand' WHERE a=4936;\nUPDATE t2 SET c='sixty-one thousand two hundred nineteen' WHERE a=4937;\nUPDATE t2 SET c='seventy-one thousand forty-seven' WHERE a=4938;\nUPDATE t2 SET c='sixty-three thousand sixty' WHERE a=4939;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-seven' WHERE a=4940;\nUPDATE t2 SET c='ninety-five thousand one hundred seventeen' WHERE a=4941;\nUPDATE t2 SET c='eight thousand seven hundred nineteen' WHERE a=4942;\nUPDATE t2 SET c='thirty thousand five hundred fifty-one' WHERE a=4943;\nUPDATE t2 SET c='ninety-two thousand four hundred seventy-seven' WHERE a=4944;\nUPDATE t2 SET c='thirty-one thousand four hundred forty-five' WHERE a=4945;\nUPDATE t2 SET c='eighty-six thousand four hundred thirty-six' WHERE a=4946;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty-one' WHERE a=4947;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety' WHERE a=4948;\nUPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=4949;\nUPDATE t2 SET c='seventy-five thousand three hundred three' WHERE a=4950;\nUPDATE t2 SET c='twenty-four thousand eight hundred eighty-six' WHERE a=4951;\nUPDATE t2 SET c='two thousand one hundred seventy-three' WHERE a=4952;\nUPDATE t2 SET c='ninety-nine thousand three hundred thirty-eight' WHERE a=4953;\nUPDATE t2 SET c='four thousand one hundred sixty-nine' WHERE a=4954;\nUPDATE t2 SET c='seventy-three thousand six hundred ninety-nine' WHERE a=4955;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty' WHERE a=4956;\nUPDATE t2 SET c='fifty-one thousand one hundred seventy-five' WHERE a=4957;\nUPDATE t2 SET c='seventy-six thousand eleven' WHERE a=4958;\nUPDATE t2 SET c='forty thousand eight hundred ninety-seven' WHERE a=4959;\nUPDATE t2 SET c='ten thousand five hundred twenty-eight' WHERE a=4960;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty-three' WHERE a=4961;\nUPDATE t2 SET c='fifty-two thousand three hundred eight' WHERE a=4962;\nUPDATE t2 SET c='fifty-two thousand five hundred twenty-three' WHERE a=4963;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty-one' WHERE a=4964;\nUPDATE t2 SET c='fifteen thousand three hundred sixteen' WHERE a=4965;\nUPDATE t2 SET c='thirty-eight thousand eight hundred twenty-four' WHERE a=4966;\nUPDATE t2 SET c='twenty-three thousand six hundred thirty-seven' WHERE a=4967;\nUPDATE t2 SET c='forty-two thousand six hundred ninety-one' WHERE a=4968;\nUPDATE t2 SET c='fifty-five thousand four hundred ninety-seven' WHERE a=4969;\nUPDATE t2 SET c='forty-two thousand six hundred five' WHERE a=4970;\nUPDATE t2 SET c='sixty-four thousand six hundred seventeen' WHERE a=4971;\nUPDATE t2 SET c='seventy-three thousand nine hundred seventy-nine' WHERE a=4972;\nUPDATE t2 SET c='seventy-three thousand nine hundred ninety' WHERE a=4973;\nUPDATE t2 SET c='eighty-five thousand nine hundred sixty-four' WHERE a=4974;\nUPDATE t2 SET c='ninety-seven thousand four hundred ninety-seven' WHERE a=4975;\nUPDATE t2 SET c='thirty-nine thousand two hundred fifty' WHERE a=4976;\nUPDATE t2 SET c='three thousand six hundred fifty-eight' WHERE a=4977;\nUPDATE t2 SET c='forty-five thousand nine hundred seventy-five' WHERE a=4978;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-six' WHERE a=4979;\nUPDATE t2 SET c='twenty thousand nine hundred seventy-five' WHERE a=4980;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-three' WHERE a=4981;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-three' WHERE a=4982;\nUPDATE t2 SET c='ninety-eight thousand ninety' WHERE a=4983;\nUPDATE t2 SET c='fifty-eight thousand twenty-seven' WHERE a=4984;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty' WHERE a=4985;\nUPDATE t2 SET c='sixty-one thousand eight hundred twenty-eight' WHERE a=4986;\nUPDATE t2 SET c='eleven thousand four hundred sixty-six' WHERE a=4987;\nUPDATE t2 SET c='four thousand one hundred fifteen' WHERE a=4988;\nUPDATE t2 SET c='eighty thousand seven hundred sixteen' WHERE a=4989;\nUPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=4990;\nUPDATE t2 SET c='two thousand four hundred eighty-two' WHERE a=4991;\nUPDATE t2 SET c='twenty-eight thousand two hundred thirty-seven' WHERE a=4992;\nUPDATE t2 SET c='six thousand seven hundred eighty-eight' WHERE a=4993;\nUPDATE t2 SET c='fifty-nine thousand three hundred fifty' WHERE a=4994;\nUPDATE t2 SET c='ninety-seven thousand six hundred eighty-six' WHERE a=4995;\nUPDATE t2 SET c='eighty-seven thousand seven hundred thirty-nine' WHERE a=4996;\nUPDATE t2 SET c='forty-four thousand six hundred seventy-three' WHERE a=4997;\nUPDATE t2 SET c='twenty-six thousand fifty-eight' WHERE a=4998;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy' WHERE a=4999;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-three' WHERE a=5000;\nUPDATE t2 SET c='forty-eight thousand two hundred twenty-nine' WHERE a=5001;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-nine' WHERE a=5002;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-seven' WHERE a=5003;\nUPDATE t2 SET c='sixty-seven thousand two hundred four' WHERE a=5004;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-three' WHERE a=5005;\nUPDATE t2 SET c='eighty-eight' WHERE a=5006;\nUPDATE t2 SET c='forty-six thousand five hundred eighty-two' WHERE a=5007;\nUPDATE t2 SET c='seventy-two thousand six hundred fifty-seven' WHERE a=5008;\nUPDATE t2 SET c='sixty-four thousand two hundred seventeen' WHERE a=5009;\nUPDATE t2 SET c='twenty-six thousand seven hundred forty-five' WHERE a=5010;\nUPDATE t2 SET c='eighty-one thousand four hundred eighty-nine' WHERE a=5011;\nUPDATE t2 SET c='fifty-nine thousand seventy-eight' WHERE a=5012;\nUPDATE t2 SET c='twenty thousand six hundred eighty-eight' WHERE a=5013;\nUPDATE t2 SET c='eighty-seven thousand five hundred eighty-nine' WHERE a=5014;\nUPDATE t2 SET c='forty-eight thousand five hundred seventy-seven' WHERE a=5015;\nUPDATE t2 SET c='seventeen thousand seven hundred nine' WHERE a=5016;\nUPDATE t2 SET c='nine thousand seven hundred thirteen' WHERE a=5017;\nUPDATE t2 SET c='ninety-nine thousand four hundred' WHERE a=5018;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty-eight' WHERE a=5019;\nUPDATE t2 SET c='thirty-five thousand two hundred twenty-three' WHERE a=5020;\nUPDATE t2 SET c='ninety-one thousand two hundred sixty-nine' WHERE a=5021;\nUPDATE t2 SET c='thirty-three thousand four hundred thirty' WHERE a=5022;\nUPDATE t2 SET c='ninety-five thousand four hundred fifty-one' WHERE a=5023;\nUPDATE t2 SET c='ninety-seven thousand six hundred thirty-two' WHERE a=5024;\nUPDATE t2 SET c='eighty-nine thousand seven hundred eighty-two' WHERE a=5025;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-six' WHERE a=5026;\nUPDATE t2 SET c='one thousand four hundred fifty-eight' WHERE a=5027;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-two' WHERE a=5028;\nUPDATE t2 SET c='seventy-seven thousand thirty' WHERE a=5029;\nUPDATE t2 SET c='twenty thousand nine hundred seven' WHERE a=5030;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-six' WHERE a=5031;\nUPDATE t2 SET c='thirty-eight thousand six hundred three' WHERE a=5032;\nUPDATE t2 SET c='ninety-eight thousand two hundred twenty-eight' WHERE a=5033;\nUPDATE t2 SET c='fifty-three thousand one hundred seventeen' WHERE a=5034;\nUPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=5035;\nUPDATE t2 SET c='four hundred sixty' WHERE a=5036;\nUPDATE t2 SET c='fifty-one thousand three hundred thirty-two' WHERE a=5037;\nUPDATE t2 SET c='ninety-nine thousand two hundred nineteen' WHERE a=5038;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-eight' WHERE a=5039;\nUPDATE t2 SET c='sixty-seven thousand six hundred sixty-seven' WHERE a=5040;\nUPDATE t2 SET c='fourteen thousand four hundred twenty-four' WHERE a=5041;\nUPDATE t2 SET c='sixty thousand eight hundred eighty-seven' WHERE a=5042;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-eight' WHERE a=5043;\nUPDATE t2 SET c='twenty-six thousand seven' WHERE a=5044;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=5045;\nUPDATE t2 SET c='ninety-four thousand ninety-three' WHERE a=5046;\nUPDATE t2 SET c='nine thousand three hundred' WHERE a=5047;\nUPDATE t2 SET c='twenty-four thousand sixteen' WHERE a=5048;\nUPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=5049;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifteen' WHERE a=5050;\nUPDATE t2 SET c='twenty-two thousand seven hundred four' WHERE a=5051;\nUPDATE t2 SET c='thirty-three thousand two hundred fifteen' WHERE a=5052;\nUPDATE t2 SET c='thirteen thousand four hundred eighty-two' WHERE a=5053;\nUPDATE t2 SET c='five thousand fifty-nine' WHERE a=5054;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-four' WHERE a=5055;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty' WHERE a=5056;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-one' WHERE a=5057;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighty-eight' WHERE a=5058;\nUPDATE t2 SET c='sixty-five thousand one hundred thirteen' WHERE a=5059;\nUPDATE t2 SET c='forty-seven thousand six hundred eighty-four' WHERE a=5060;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-eight' WHERE a=5061;\nUPDATE t2 SET c='thirty-two thousand nine hundred ninety-eight' WHERE a=5062;\nUPDATE t2 SET c='forty-nine thousand five hundred four' WHERE a=5063;\nUPDATE t2 SET c='eighty thousand five hundred fifty-three' WHERE a=5064;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-five' WHERE a=5065;\nUPDATE t2 SET c='seventy-three thousand five hundred thirty-eight' WHERE a=5066;\nUPDATE t2 SET c='forty-two thousand three hundred fifty-five' WHERE a=5067;\nUPDATE t2 SET c='forty-four thousand five hundred sixty-seven' WHERE a=5068;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety-three' WHERE a=5069;\nUPDATE t2 SET c='eight thousand five hundred seventy-eight' WHERE a=5070;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-two' WHERE a=5071;\nUPDATE t2 SET c='sixteen thousand seven hundred three' WHERE a=5072;\nUPDATE t2 SET c='four hundred seventy-six' WHERE a=5073;\nUPDATE t2 SET c='seventeen thousand five hundred four' WHERE a=5074;\nUPDATE t2 SET c='nineteen thousand one hundred seventy' WHERE a=5075;\nUPDATE t2 SET c='ninety-two thousand six hundred eighteen' WHERE a=5076;\nUPDATE t2 SET c='twenty-three thousand five hundred sixty-nine' WHERE a=5077;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-seven' WHERE a=5078;\nUPDATE t2 SET c='thirty-two thousand six hundred eighty-one' WHERE a=5079;\nUPDATE t2 SET c='seventy-three thousand eight hundred five' WHERE a=5080;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-seven' WHERE a=5081;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-five' WHERE a=5082;\nUPDATE t2 SET c='ninety-nine thousand two hundred twenty-four' WHERE a=5083;\nUPDATE t2 SET c='three thousand four hundred twenty-four' WHERE a=5084;\nUPDATE t2 SET c='eleven thousand three hundred fifty-eight' WHERE a=5085;\nUPDATE t2 SET c='sixty-nine thousand nine hundred nine' WHERE a=5086;\nUPDATE t2 SET c='three thousand four hundred ninety-two' WHERE a=5087;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-two' WHERE a=5088;\nUPDATE t2 SET c='ninety-five thousand eight hundred fifty-five' WHERE a=5089;\nUPDATE t2 SET c='fifty thousand two hundred six' WHERE a=5090;\nUPDATE t2 SET c='forty thousand seven hundred twenty-two' WHERE a=5091;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirty' WHERE a=5092;\nUPDATE t2 SET c='seventy-nine thousand twenty-six' WHERE a=5093;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-six' WHERE a=5094;\nUPDATE t2 SET c='eighteen thousand eight hundred sixteen' WHERE a=5095;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-seven' WHERE a=5096;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-one' WHERE a=5097;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-seven' WHERE a=5098;\nUPDATE t2 SET c='seventy thousand three hundred fifty-nine' WHERE a=5099;\nUPDATE t2 SET c='ten thousand nine hundred ninety-three' WHERE a=5100;\nUPDATE t2 SET c='thirty-three thousand three hundred thirty-three' WHERE a=5101;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-eight' WHERE a=5102;\nUPDATE t2 SET c='forty-three thousand sixty-seven' WHERE a=5103;\nUPDATE t2 SET c='ninety-eight thousand seven hundred seventeen' WHERE a=5104;\nUPDATE t2 SET c='ninety-eight thousand three hundred eighty-two' WHERE a=5105;\nUPDATE t2 SET c='twenty-one thousand one hundred eighty-five' WHERE a=5106;\nUPDATE t2 SET c='ninety-four thousand thirty-two' WHERE a=5107;\nUPDATE t2 SET c='nineteen thousand seven hundred fifty-seven' WHERE a=5108;\nUPDATE t2 SET c='seventeen thousand six hundred forty-six' WHERE a=5109;\nUPDATE t2 SET c='twenty-two thousand four hundred sixty-eight' WHERE a=5110;\nUPDATE t2 SET c='seventy-nine thousand three hundred fifty-eight' WHERE a=5111;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-six' WHERE a=5112;\nUPDATE t2 SET c='two thousand thirty-nine' WHERE a=5113;\nUPDATE t2 SET c='ninety-nine thousand one hundred ninety-two' WHERE a=5114;\nUPDATE t2 SET c='five thousand four hundred fifty-six' WHERE a=5115;\nUPDATE t2 SET c='thirty-six thousand seven hundred eighty' WHERE a=5116;\nUPDATE t2 SET c='thirty-five thousand five hundred' WHERE a=5117;\nUPDATE t2 SET c='fourteen thousand twenty' WHERE a=5118;\nUPDATE t2 SET c='one hundred thirty-five' WHERE a=5119;\nUPDATE t2 SET c='three thousand fifty-nine' WHERE a=5120;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-six' WHERE a=5121;\nUPDATE t2 SET c='nineteen thousand eight hundred nineteen' WHERE a=5122;\nUPDATE t2 SET c='eighty-one thousand seven hundred forty-six' WHERE a=5123;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-three' WHERE a=5124;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=5125;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-three' WHERE a=5126;\nUPDATE t2 SET c='twenty-three thousand thirty-five' WHERE a=5127;\nUPDATE t2 SET c='seventy thousand nine hundred forty' WHERE a=5128;\nUPDATE t2 SET c='one thousand one hundred ninety' WHERE a=5129;\nUPDATE t2 SET c='three thousand six hundred twelve' WHERE a=5130;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty' WHERE a=5131;\nUPDATE t2 SET c='seventy-eight thousand nine hundred forty-four' WHERE a=5132;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-one' WHERE a=5133;\nUPDATE t2 SET c='nineteen thousand nine hundred six' WHERE a=5134;\nUPDATE t2 SET c='forty-two thousand forty-seven' WHERE a=5135;\nUPDATE t2 SET c='fourteen thousand five hundred forty-eight' WHERE a=5136;\nUPDATE t2 SET c='forty-seven thousand two hundred sixty-nine' WHERE a=5137;\nUPDATE t2 SET c='thirty-four thousand three hundred eleven' WHERE a=5138;\nUPDATE t2 SET c='eight thousand one hundred nine' WHERE a=5139;\nUPDATE t2 SET c='thirty-two thousand sixty' WHERE a=5140;\nUPDATE t2 SET c='thirty-nine thousand four hundred three' WHERE a=5141;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-nine' WHERE a=5142;\nUPDATE t2 SET c='twenty thousand seven hundred ninety-three' WHERE a=5143;\nUPDATE t2 SET c='eighty-seven thousand thirty-four' WHERE a=5144;\nUPDATE t2 SET c='fifty-two thousand two hundred forty-five' WHERE a=5145;\nUPDATE t2 SET c='thirty-nine thousand nine hundred seventeen' WHERE a=5146;\nUPDATE t2 SET c='nine thousand five hundred twenty-eight' WHERE a=5147;\nUPDATE t2 SET c='fifty-four thousand nine hundred fifty-three' WHERE a=5148;\nUPDATE t2 SET c='seventy-five thousand sixty-two' WHERE a=5149;\nUPDATE t2 SET c='seventy-two thousand seven hundred seventy-five' WHERE a=5150;\nUPDATE t2 SET c='eighty-three thousand two hundred eighty-three' WHERE a=5151;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-six' WHERE a=5152;\nUPDATE t2 SET c='ten thousand six hundred six' WHERE a=5153;\nUPDATE t2 SET c='eleven thousand three hundred' WHERE a=5154;\nUPDATE t2 SET c='thirty-two thousand eight hundred eleven' WHERE a=5155;\nUPDATE t2 SET c='twenty-eight thousand two hundred twenty-three' WHERE a=5156;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-eight' WHERE a=5157;\nUPDATE t2 SET c='ninety-two thousand six hundred nineteen' WHERE a=5158;\nUPDATE t2 SET c='sixteen thousand nine hundred eighty' WHERE a=5159;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-seven' WHERE a=5160;\nUPDATE t2 SET c='seventy-nine thousand nine hundred seventy' WHERE a=5161;\nUPDATE t2 SET c='seventy-eight thousand one hundred seventy-eight' WHERE a=5162;\nUPDATE t2 SET c='twenty-six thousand three hundred ninety-nine' WHERE a=5163;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-four' WHERE a=5164;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixty-eight' WHERE a=5165;\nUPDATE t2 SET c='seventy-nine thousand one hundred seventy' WHERE a=5166;\nUPDATE t2 SET c='seventy-nine thousand one hundred seven' WHERE a=5167;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-five' WHERE a=5168;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-nine' WHERE a=5169;\nUPDATE t2 SET c='ninety thousand eighty-eight' WHERE a=5170;\nUPDATE t2 SET c='fifty-three thousand seven hundred six' WHERE a=5171;\nUPDATE t2 SET c='five thousand seventy-three' WHERE a=5172;\nUPDATE t2 SET c='fifty-nine thousand five hundred ninety-five' WHERE a=5173;\nUPDATE t2 SET c='two thousand one hundred seventy-five' WHERE a=5174;\nUPDATE t2 SET c='thirty-five thousand five hundred ten' WHERE a=5175;\nUPDATE t2 SET c='three hundred eighty-six' WHERE a=5176;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety-six' WHERE a=5177;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-four' WHERE a=5178;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-seven' WHERE a=5179;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-three' WHERE a=5180;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-seven' WHERE a=5181;\nUPDATE t2 SET c='ninety-eight thousand ninety-four' WHERE a=5182;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=5183;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=5184;\nUPDATE t2 SET c='seventy-nine thousand six hundred two' WHERE a=5185;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy' WHERE a=5186;\nUPDATE t2 SET c='thirteen thousand six hundred sixty' WHERE a=5187;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-six' WHERE a=5188;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-five' WHERE a=5189;\nUPDATE t2 SET c='twenty-six thousand five hundred eleven' WHERE a=5190;\nUPDATE t2 SET c='forty-two thousand two hundred fifty-six' WHERE a=5191;\nUPDATE t2 SET c='sixteen thousand five hundred two' WHERE a=5192;\nUPDATE t2 SET c='ninety-five thousand two hundred fifteen' WHERE a=5193;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-four' WHERE a=5194;\nUPDATE t2 SET c='thirty-six thousand eight hundred eighty-one' WHERE a=5195;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-two' WHERE a=5196;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=5197;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-one' WHERE a=5198;\nUPDATE t2 SET c='one thousand eight hundred ninety-three' WHERE a=5199;\nUPDATE t2 SET c='thirty-nine thousand seven hundred seventy-seven' WHERE a=5200;\nUPDATE t2 SET c='thirty-three thousand one hundred twelve' WHERE a=5201;\nUPDATE t2 SET c='seventy-three thousand six hundred thirty-seven' WHERE a=5202;\nUPDATE t2 SET c='eighty-three thousand six hundred sixty-eight' WHERE a=5203;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-two' WHERE a=5204;\nUPDATE t2 SET c='nine thousand four hundred twenty-two' WHERE a=5205;\nUPDATE t2 SET c='eleven thousand eight hundred nine' WHERE a=5206;\nUPDATE t2 SET c='eighteen thousand six hundred seventeen' WHERE a=5207;\nUPDATE t2 SET c='thirty-five thousand seventy-one' WHERE a=5208;\nUPDATE t2 SET c='twenty-two thousand six hundred thirty-five' WHERE a=5209;\nUPDATE t2 SET c='eighty thousand four hundred ten' WHERE a=5210;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirty' WHERE a=5211;\nUPDATE t2 SET c='eighty-three thousand three hundred ninety-seven' WHERE a=5212;\nUPDATE t2 SET c='twenty-five thousand four hundred twenty-six' WHERE a=5213;\nUPDATE t2 SET c='twenty-five thousand six hundred fifty-two' WHERE a=5214;\nUPDATE t2 SET c='sixty-seven thousand five hundred sixty-eight' WHERE a=5215;\nUPDATE t2 SET c='twenty-five thousand eighty-seven' WHERE a=5216;\nUPDATE t2 SET c='ninety-five thousand five hundred forty-eight' WHERE a=5217;\nUPDATE t2 SET c='forty-two thousand eight hundred ninety-one' WHERE a=5218;\nUPDATE t2 SET c='twenty-three thousand three hundred forty' WHERE a=5219;\nUPDATE t2 SET c='six thousand three hundred eighteen' WHERE a=5220;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty' WHERE a=5221;\nUPDATE t2 SET c='three hundred seventy-seven' WHERE a=5222;\nUPDATE t2 SET c='seventy-nine thousand three hundred seventy-six' WHERE a=5223;\nUPDATE t2 SET c='eighty-one thousand two hundred forty' WHERE a=5224;\nUPDATE t2 SET c='ninety-seven thousand forty' WHERE a=5225;\nUPDATE t2 SET c='eight thousand five hundred twenty-four' WHERE a=5226;\nUPDATE t2 SET c='forty-five thousand five hundred nineteen' WHERE a=5227;\nUPDATE t2 SET c='ninety-three thousand eight hundred forty-nine' WHERE a=5228;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-three' WHERE a=5229;\nUPDATE t2 SET c='twenty thousand six hundred sixty' WHERE a=5230;\nUPDATE t2 SET c='twenty-six thousand nine hundred twenty-eight' WHERE a=5231;\nUPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=5232;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-four' WHERE a=5233;\nUPDATE t2 SET c='thirty-six thousand nine hundred fifty-four' WHERE a=5234;\nUPDATE t2 SET c='twenty-nine thousand sixty-four' WHERE a=5235;\nUPDATE t2 SET c='ninety-five thousand one hundred thirty' WHERE a=5236;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-eight' WHERE a=5237;\nUPDATE t2 SET c='thirteen thousand one hundred fifty-three' WHERE a=5238;\nUPDATE t2 SET c='six thousand seven hundred ninety-two' WHERE a=5239;\nUPDATE t2 SET c='thirty-eight thousand six hundred ninety-five' WHERE a=5240;\nUPDATE t2 SET c='twenty-seven thousand one hundred thirty-one' WHERE a=5241;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty' WHERE a=5242;\nUPDATE t2 SET c='sixteen thousand two hundred fifty-one' WHERE a=5243;\nUPDATE t2 SET c='sixty-five thousand four hundred nineteen' WHERE a=5244;\nUPDATE t2 SET c='twenty-four thousand one hundred three' WHERE a=5245;\nUPDATE t2 SET c='fifteen thousand nine hundred fourteen' WHERE a=5246;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty-eight' WHERE a=5247;\nUPDATE t2 SET c='eighty thousand two hundred seventy-seven' WHERE a=5248;\nUPDATE t2 SET c='sixty-four thousand two hundred three' WHERE a=5249;\nUPDATE t2 SET c='sixteen thousand four hundred thirteen' WHERE a=5250;\nUPDATE t2 SET c='twenty-eight thousand six hundred thirty' WHERE a=5251;\nUPDATE t2 SET c='eighty-two thousand nine hundred six' WHERE a=5252;\nUPDATE t2 SET c='forty-eight thousand six hundred eighty-nine' WHERE a=5253;\nUPDATE t2 SET c='twenty-one thousand eight hundred thirty-one' WHERE a=5254;\nUPDATE t2 SET c='seven thousand nine hundred fifty-nine' WHERE a=5255;\nUPDATE t2 SET c='eight thousand eight hundred sixty' WHERE a=5256;\nUPDATE t2 SET c='sixty-eight thousand one hundred ninety-nine' WHERE a=5257;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-six' WHERE a=5258;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-one' WHERE a=5259;\nUPDATE t2 SET c='sixteen thousand one hundred eighty-three' WHERE a=5260;\nUPDATE t2 SET c='twenty thousand two hundred forty-seven' WHERE a=5261;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-seven' WHERE a=5262;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-five' WHERE a=5263;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-three' WHERE a=5264;\nUPDATE t2 SET c='six thousand six hundred sixty-eight' WHERE a=5265;\nUPDATE t2 SET c='twenty-four thousand seven hundred fifty-three' WHERE a=5266;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty-five' WHERE a=5267;\nUPDATE t2 SET c='eight thousand seven hundred ninety-nine' WHERE a=5268;\nUPDATE t2 SET c='twenty-two thousand eighty-four' WHERE a=5269;\nUPDATE t2 SET c='fifty-eight thousand three hundred three' WHERE a=5270;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-six' WHERE a=5271;\nUPDATE t2 SET c='eighty-four thousand one hundred forty-five' WHERE a=5272;\nUPDATE t2 SET c='sixty-three thousand two hundred three' WHERE a=5273;\nUPDATE t2 SET c='forty-eight thousand one hundred fifty-one' WHERE a=5274;\nUPDATE t2 SET c='eighty-five thousand seven hundred seventy-five' WHERE a=5275;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-seven' WHERE a=5276;\nUPDATE t2 SET c='ninety-two thousand four hundred fifty-eight' WHERE a=5277;\nUPDATE t2 SET c='seventy-eight thousand six' WHERE a=5278;\nUPDATE t2 SET c='seventy thousand ninety' WHERE a=5279;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-six' WHERE a=5280;\nUPDATE t2 SET c='fifty-two thousand nine hundred three' WHERE a=5281;\nUPDATE t2 SET c='six thousand fifty' WHERE a=5282;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirteen' WHERE a=5283;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-four' WHERE a=5284;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-five' WHERE a=5285;\nUPDATE t2 SET c='ninety thousand four hundred eight' WHERE a=5286;\nUPDATE t2 SET c='four thousand six hundred eighty-eight' WHERE a=5287;\nUPDATE t2 SET c='ninety-eight thousand ten' WHERE a=5288;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty-five' WHERE a=5289;\nUPDATE t2 SET c='nine thousand one hundred fifty' WHERE a=5290;\nUPDATE t2 SET c='forty-four thousand two hundred forty-one' WHERE a=5291;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-six' WHERE a=5292;\nUPDATE t2 SET c='forty-four thousand nine hundred forty-nine' WHERE a=5293;\nUPDATE t2 SET c='ninety-three thousand eight hundred thirteen' WHERE a=5294;\nUPDATE t2 SET c='three hundred eighty-six' WHERE a=5295;\nUPDATE t2 SET c='eleven thousand six hundred sixty-two' WHERE a=5296;\nUPDATE t2 SET c='five thousand two hundred eighty-one' WHERE a=5297;\nUPDATE t2 SET c='forty-two thousand three hundred twenty' WHERE a=5298;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-five' WHERE a=5299;\nUPDATE t2 SET c='sixty-four thousand three hundred eighty-nine' WHERE a=5300;\nUPDATE t2 SET c='twenty-eight thousand four hundred forty-six' WHERE a=5301;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-five' WHERE a=5302;\nUPDATE t2 SET c='seventy-three thousand forty-one' WHERE a=5303;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty-nine' WHERE a=5304;\nUPDATE t2 SET c='forty-two thousand six hundred eleven' WHERE a=5305;\nUPDATE t2 SET c='seventy-one thousand ninety-one' WHERE a=5306;\nUPDATE t2 SET c='thirty-four thousand two hundred ninety-six' WHERE a=5307;\nUPDATE t2 SET c='seventy-six thousand four hundred sixty-seven' WHERE a=5308;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-three' WHERE a=5309;\nUPDATE t2 SET c='thirty-five thousand three hundred eighty-one' WHERE a=5310;\nUPDATE t2 SET c='seventy thousand three hundred sixty-eight' WHERE a=5311;\nUPDATE t2 SET c='seventy-eight thousand two hundred one' WHERE a=5312;\nUPDATE t2 SET c='eighty thousand eight hundred fifty' WHERE a=5313;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty' WHERE a=5314;\nUPDATE t2 SET c='forty-five thousand seven hundred eight' WHERE a=5315;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty-nine' WHERE a=5316;\nUPDATE t2 SET c='ninety-three thousand ninety-three' WHERE a=5317;\nUPDATE t2 SET c='seventy thousand one hundred eighteen' WHERE a=5318;\nUPDATE t2 SET c='forty-five thousand four hundred four' WHERE a=5319;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-seven' WHERE a=5320;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=5321;\nUPDATE t2 SET c='sixty-four thousand eight' WHERE a=5322;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-six' WHERE a=5323;\nUPDATE t2 SET c='eighty-six thousand eight hundred seven' WHERE a=5324;\nUPDATE t2 SET c='six thousand four hundred eighty-three' WHERE a=5325;\nUPDATE t2 SET c='sixty-nine thousand three hundred sixteen' WHERE a=5326;\nUPDATE t2 SET c='fifty-one thousand eight hundred twenty-one' WHERE a=5327;\nUPDATE t2 SET c='sixteen thousand six hundred six' WHERE a=5328;\nUPDATE t2 SET c='sixty-seven thousand nine hundred ninety-four' WHERE a=5329;\nUPDATE t2 SET c='seventy-eight thousand four hundred eighty-one' WHERE a=5330;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventeen' WHERE a=5331;\nUPDATE t2 SET c='nineteen thousand nine hundred two' WHERE a=5332;\nUPDATE t2 SET c='thirty-nine thousand two hundred nine' WHERE a=5333;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=5334;\nUPDATE t2 SET c='eighteen thousand nine hundred fifty-five' WHERE a=5335;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-nine' WHERE a=5336;\nUPDATE t2 SET c='sixty-nine thousand six hundred twenty-eight' WHERE a=5337;\nUPDATE t2 SET c='thirty-six thousand eight hundred fifty' WHERE a=5338;\nUPDATE t2 SET c='fifteen thousand six hundred thirty-five' WHERE a=5339;\nUPDATE t2 SET c='four thousand nine hundred forty-seven' WHERE a=5340;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-eight' WHERE a=5341;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty' WHERE a=5342;\nUPDATE t2 SET c='nine thousand seven hundred eighty-five' WHERE a=5343;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-six' WHERE a=5344;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighty-three' WHERE a=5345;\nUPDATE t2 SET c='sixty thousand nine hundred two' WHERE a=5346;\nUPDATE t2 SET c='sixty thousand four hundred forty-seven' WHERE a=5347;\nUPDATE t2 SET c='seventy-three thousand four hundred two' WHERE a=5348;\nUPDATE t2 SET c='twenty-five thousand forty-four' WHERE a=5349;\nUPDATE t2 SET c='thirty thousand forty-seven' WHERE a=5350;\nUPDATE t2 SET c='fourteen thousand four hundred fifty-four' WHERE a=5351;\nUPDATE t2 SET c='thirty-seven thousand five hundred ninety-one' WHERE a=5352;\nUPDATE t2 SET c='thirty-seven thousand eight hundred ninety-four' WHERE a=5353;\nUPDATE t2 SET c='forty-three thousand nine hundred eleven' WHERE a=5354;\nUPDATE t2 SET c='fifty-one thousand five hundred thirty-one' WHERE a=5355;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=5356;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighty-two' WHERE a=5357;\nUPDATE t2 SET c='thirty-one thousand six hundred eighty-six' WHERE a=5358;\nUPDATE t2 SET c='sixty thousand six' WHERE a=5359;\nUPDATE t2 SET c='sixty thousand nine hundred sixty-six' WHERE a=5360;\nUPDATE t2 SET c='eighty thousand six hundred twenty-two' WHERE a=5361;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-eight' WHERE a=5362;\nUPDATE t2 SET c='sixty-five thousand three hundred eighteen' WHERE a=5363;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-five' WHERE a=5364;\nUPDATE t2 SET c='five thousand three hundred' WHERE a=5365;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-three' WHERE a=5366;\nUPDATE t2 SET c='three thousand eight hundred seventy' WHERE a=5367;\nUPDATE t2 SET c='eighty thousand four hundred nine' WHERE a=5368;\nUPDATE t2 SET c='ninety-four thousand four hundred thirty-nine' WHERE a=5369;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-five' WHERE a=5370;\nUPDATE t2 SET c='seventy-six thousand ninety-three' WHERE a=5371;\nUPDATE t2 SET c='sixty-two thousand two hundred forty-three' WHERE a=5372;\nUPDATE t2 SET c='twenty-two thousand one hundred eighty-five' WHERE a=5373;\nUPDATE t2 SET c='thirty thousand six hundred seventy-four' WHERE a=5374;\nUPDATE t2 SET c='three thousand nine hundred ninety-one' WHERE a=5375;\nUPDATE t2 SET c='fifty-six thousand six hundred six' WHERE a=5376;\nUPDATE t2 SET c='thirty thousand three hundred forty-two' WHERE a=5377;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty-two' WHERE a=5378;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-one' WHERE a=5379;\nUPDATE t2 SET c='eight thousand nine hundred seventy-five' WHERE a=5380;\nUPDATE t2 SET c='seventy-three thousand four hundred ten' WHERE a=5381;\nUPDATE t2 SET c='six thousand three hundred six' WHERE a=5382;\nUPDATE t2 SET c='sixty thousand six hundred twenty-seven' WHERE a=5383;\nUPDATE t2 SET c='thirty-four thousand sixty-two' WHERE a=5384;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty-four' WHERE a=5385;\nUPDATE t2 SET c='thirty-three thousand nineteen' WHERE a=5386;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-eight' WHERE a=5387;\nUPDATE t2 SET c='forty-four thousand nine hundred fourteen' WHERE a=5388;\nUPDATE t2 SET c='twenty-three thousand four hundred seventeen' WHERE a=5389;\nUPDATE t2 SET c='ninety-three thousand eight hundred seventy-five' WHERE a=5390;\nUPDATE t2 SET c='thirteen thousand ninety-one' WHERE a=5391;\nUPDATE t2 SET c='seventy-four thousand two hundred ninety-one' WHERE a=5392;\nUPDATE t2 SET c='forty-one thousand eleven' WHERE a=5393;\nUPDATE t2 SET c='eighty thousand five hundred twenty-three' WHERE a=5394;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty' WHERE a=5395;\nUPDATE t2 SET c='sixty-one thousand four hundred thirty-five' WHERE a=5396;\nUPDATE t2 SET c='forty-six thousand six hundred ninety-three' WHERE a=5397;\nUPDATE t2 SET c='sixty-two thousand four hundred seventy-two' WHERE a=5398;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifteen' WHERE a=5399;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-one' WHERE a=5400;\nUPDATE t2 SET c='thirteen thousand nine hundred two' WHERE a=5401;\nUPDATE t2 SET c='ninety-two thousand ninety-four' WHERE a=5402;\nUPDATE t2 SET c='sixty-four thousand five hundred ninety-four' WHERE a=5403;\nUPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=5404;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-two' WHERE a=5405;\nUPDATE t2 SET c='thirteen thousand two hundred sixty' WHERE a=5406;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-four' WHERE a=5407;\nUPDATE t2 SET c='seventy-three thousand six hundred' WHERE a=5408;\nUPDATE t2 SET c='four hundred eighty-nine' WHERE a=5409;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty-seven' WHERE a=5410;\nUPDATE t2 SET c='sixty-seven thousand two hundred twenty-seven' WHERE a=5411;\nUPDATE t2 SET c='seventeen thousand three hundred four' WHERE a=5412;\nUPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=5413;\nUPDATE t2 SET c='fifty thousand three hundred ninety-four' WHERE a=5414;\nUPDATE t2 SET c='one thousand three hundred twenty-six' WHERE a=5415;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty' WHERE a=5416;\nUPDATE t2 SET c='eighty-seven thousand two hundred twenty-five' WHERE a=5417;\nUPDATE t2 SET c='eighty-nine thousand three hundred twelve' WHERE a=5418;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-six' WHERE a=5419;\nUPDATE t2 SET c='forty-nine thousand nine hundred eighty-three' WHERE a=5420;\nUPDATE t2 SET c='sixty-nine thousand five hundred fifteen' WHERE a=5421;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-one' WHERE a=5422;\nUPDATE t2 SET c='twenty-two thousand four hundred seventy-six' WHERE a=5423;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifty-five' WHERE a=5424;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifteen' WHERE a=5425;\nUPDATE t2 SET c='fifty-two thousand eight hundred fifty-nine' WHERE a=5426;\nUPDATE t2 SET c='two thousand two hundred ninety-eight' WHERE a=5427;\nUPDATE t2 SET c='forty-four thousand three hundred fifty-six' WHERE a=5428;\nUPDATE t2 SET c='sixty-six thousand three hundred forty' WHERE a=5429;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-eight' WHERE a=5430;\nUPDATE t2 SET c='ninety-eight thousand three hundred twenty-seven' WHERE a=5431;\nUPDATE t2 SET c='ninety-two thousand twenty-two' WHERE a=5432;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy' WHERE a=5433;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-one' WHERE a=5434;\nUPDATE t2 SET c='forty-eight thousand eight hundred twenty-seven' WHERE a=5435;\nUPDATE t2 SET c='forty-seven thousand nine hundred one' WHERE a=5436;\nUPDATE t2 SET c='sixty-four thousand five hundred seventeen' WHERE a=5437;\nUPDATE t2 SET c='fifteen thousand nine hundred sixteen' WHERE a=5438;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-five' WHERE a=5439;\nUPDATE t2 SET c='twenty-eight thousand thirty-seven' WHERE a=5440;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-three' WHERE a=5441;\nUPDATE t2 SET c='seventy-four thousand eight hundred sixty-four' WHERE a=5442;\nUPDATE t2 SET c='eighty-nine thousand eight hundred twenty-one' WHERE a=5443;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-two' WHERE a=5444;\nUPDATE t2 SET c='twenty-seven thousand two hundred seventeen' WHERE a=5445;\nUPDATE t2 SET c='one thousand three hundred five' WHERE a=5446;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-six' WHERE a=5447;\nUPDATE t2 SET c='sixty thousand five hundred thirty-three' WHERE a=5448;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixty-two' WHERE a=5449;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifty-eight' WHERE a=5450;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty' WHERE a=5451;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventeen' WHERE a=5452;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty-eight' WHERE a=5453;\nUPDATE t2 SET c='two thousand three hundred sixty-six' WHERE a=5454;\nUPDATE t2 SET c='five thousand three hundred forty-eight' WHERE a=5455;\nUPDATE t2 SET c='twenty thousand six hundred fifty-two' WHERE a=5456;\nUPDATE t2 SET c='ninety-five thousand four hundred forty-one' WHERE a=5457;\nUPDATE t2 SET c='forty-five thousand thirty-five' WHERE a=5458;\nUPDATE t2 SET c='forty thousand one hundred eighty-eight' WHERE a=5459;\nUPDATE t2 SET c='fifty-eight thousand two hundred five' WHERE a=5460;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-two' WHERE a=5461;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty-five' WHERE a=5462;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=5463;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty' WHERE a=5464;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-four' WHERE a=5465;\nUPDATE t2 SET c='fifty-four thousand one hundred four' WHERE a=5466;\nUPDATE t2 SET c='seventeen thousand seven hundred forty-six' WHERE a=5467;\nUPDATE t2 SET c='thirty-eight thousand nine hundred sixty-four' WHERE a=5468;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-eight' WHERE a=5469;\nUPDATE t2 SET c='seventy-four thousand eight hundred nine' WHERE a=5470;\nUPDATE t2 SET c='twenty-eight thousand seven hundred thirty-seven' WHERE a=5471;\nUPDATE t2 SET c='eighty-one thousand two hundred seventy-two' WHERE a=5472;\nUPDATE t2 SET c='seventy-six thousand nine hundred nine' WHERE a=5473;\nUPDATE t2 SET c='twenty-three thousand sixty-six' WHERE a=5474;\nUPDATE t2 SET c='nineteen thousand two hundred twelve' WHERE a=5475;\nUPDATE t2 SET c='twenty-five thousand five hundred fifty' WHERE a=5476;\nUPDATE t2 SET c='twenty-six thousand eight hundred sixty-one' WHERE a=5477;\nUPDATE t2 SET c='fourteen thousand nine hundred seventeen' WHERE a=5478;\nUPDATE t2 SET c='seventy-six thousand three hundred thirty-five' WHERE a=5479;\nUPDATE t2 SET c='seventy thousand four hundred fifty-six' WHERE a=5480;\nUPDATE t2 SET c='sixty-eight thousand ninety-six' WHERE a=5481;\nUPDATE t2 SET c='sixty-three thousand two hundred ninety-three' WHERE a=5482;\nUPDATE t2 SET c='seventy-four thousand forty-six' WHERE a=5483;\nUPDATE t2 SET c='ninety-five thousand six hundred seventy-five' WHERE a=5484;\nUPDATE t2 SET c='forty-four thousand eight hundred nine' WHERE a=5485;\nUPDATE t2 SET c='thirty-six thousand six hundred sixty-six' WHERE a=5486;\nUPDATE t2 SET c='eighty-one thousand four hundred three' WHERE a=5487;\nUPDATE t2 SET c='one thousand seven hundred seventy-six' WHERE a=5488;\nUPDATE t2 SET c='nineteen thousand forty-eight' WHERE a=5489;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-seven' WHERE a=5490;\nUPDATE t2 SET c='eleven thousand eight hundred seven' WHERE a=5491;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-six' WHERE a=5492;\nUPDATE t2 SET c='twenty-four thousand six hundred seventy-six' WHERE a=5493;\nUPDATE t2 SET c='eighty-two thousand three hundred fifty-six' WHERE a=5494;\nUPDATE t2 SET c='four hundred nineteen' WHERE a=5495;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-four' WHERE a=5496;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty' WHERE a=5497;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=5498;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-six' WHERE a=5499;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-three' WHERE a=5500;\nUPDATE t2 SET c='thirty-two thousand three hundred twelve' WHERE a=5501;\nUPDATE t2 SET c='twenty-one thousand forty-nine' WHERE a=5502;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-nine' WHERE a=5503;\nUPDATE t2 SET c='ninety-seven thousand five hundred nine' WHERE a=5504;\nUPDATE t2 SET c='fifty-seven thousand four hundred forty-eight' WHERE a=5505;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-five' WHERE a=5506;\nUPDATE t2 SET c='forty-four thousand eight hundred eighty-six' WHERE a=5507;\nUPDATE t2 SET c='eighty-four thousand fifty-two' WHERE a=5508;\nUPDATE t2 SET c='ten thousand five hundred thirty-eight' WHERE a=5509;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-six' WHERE a=5510;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-five' WHERE a=5511;\nUPDATE t2 SET c='fifty thousand eight hundred eighty-two' WHERE a=5512;\nUPDATE t2 SET c='sixty-five thousand six hundred twenty-eight' WHERE a=5513;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty-two' WHERE a=5514;\nUPDATE t2 SET c='eighty-six thousand seven hundred eighty' WHERE a=5515;\nUPDATE t2 SET c='sixty-seven thousand three hundred forty' WHERE a=5516;\nUPDATE t2 SET c='thirteen thousand eight hundred thirty-three' WHERE a=5517;\nUPDATE t2 SET c='eighty-four thousand one hundred seventy-five' WHERE a=5518;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=5519;\nUPDATE t2 SET c='twelve thousand six hundred five' WHERE a=5520;\nUPDATE t2 SET c='forty-six thousand three hundred sixty-three' WHERE a=5521;\nUPDATE t2 SET c='seventeen thousand one hundred sixty-nine' WHERE a=5522;\nUPDATE t2 SET c='ninety-three thousand five hundred forty' WHERE a=5523;\nUPDATE t2 SET c='twenty-three thousand seven hundred' WHERE a=5524;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-seven' WHERE a=5525;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-five' WHERE a=5526;\nUPDATE t2 SET c='ninety-four thousand nine hundred ninety-three' WHERE a=5527;\nUPDATE t2 SET c='sixty-six thousand six hundred ninety-one' WHERE a=5528;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-four' WHERE a=5529;\nUPDATE t2 SET c='fifty thousand three hundred sixty-four' WHERE a=5530;\nUPDATE t2 SET c='thirteen thousand nine hundred seventy-two' WHERE a=5531;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-two' WHERE a=5532;\nUPDATE t2 SET c='sixty thousand three hundred sixty-eight' WHERE a=5533;\nUPDATE t2 SET c='sixty-six thousand eight hundred sixty-eight' WHERE a=5534;\nUPDATE t2 SET c='ninety-four thousand nine hundred fifty-eight' WHERE a=5535;\nUPDATE t2 SET c='thirty-seven thousand three hundred sixty-one' WHERE a=5536;\nUPDATE t2 SET c='forty-one thousand four hundred forty-four' WHERE a=5537;\nUPDATE t2 SET c='eighteen thousand four hundred' WHERE a=5538;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-eight' WHERE a=5539;\nUPDATE t2 SET c='twenty-six thousand twenty-six' WHERE a=5540;\nUPDATE t2 SET c='eighty-one thousand seven hundred nineteen' WHERE a=5541;\nUPDATE t2 SET c='twenty-one thousand eight hundred eighty-five' WHERE a=5542;\nUPDATE t2 SET c='fifty-one thousand one hundred ninety-eight' WHERE a=5543;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty-three' WHERE a=5544;\nUPDATE t2 SET c='thirty-six thousand eighty-seven' WHERE a=5545;\nUPDATE t2 SET c='thirty-two thousand four hundred twenty-eight' WHERE a=5546;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-six' WHERE a=5547;\nUPDATE t2 SET c='eighteen thousand five hundred twelve' WHERE a=5548;\nUPDATE t2 SET c='forty thousand eight hundred twenty' WHERE a=5549;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy' WHERE a=5550;\nUPDATE t2 SET c='eighty-two thousand one hundred seventy-eight' WHERE a=5551;\nUPDATE t2 SET c='ninety-four thousand twenty-seven' WHERE a=5552;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-five' WHERE a=5553;\nUPDATE t2 SET c='sixty-six thousand five hundred sixty-one' WHERE a=5554;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=5555;\nUPDATE t2 SET c='fifty-one thousand four hundred seventy-one' WHERE a=5556;\nUPDATE t2 SET c='fifty-seven thousand three hundred forty-six' WHERE a=5557;\nUPDATE t2 SET c='eighty-four thousand five hundred forty-five' WHERE a=5558;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-six' WHERE a=5559;\nUPDATE t2 SET c='eighteen thousand six hundred forty-seven' WHERE a=5560;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-nine' WHERE a=5561;\nUPDATE t2 SET c='fifty thousand two hundred ninety-two' WHERE a=5562;\nUPDATE t2 SET c='ninety-six thousand two hundred forty' WHERE a=5563;\nUPDATE t2 SET c='sixty-two thousand forty-six' WHERE a=5564;\nUPDATE t2 SET c='two thousand six hundred forty-one' WHERE a=5565;\nUPDATE t2 SET c='two thousand one hundred three' WHERE a=5566;\nUPDATE t2 SET c='eight thousand one hundred two' WHERE a=5567;\nUPDATE t2 SET c='two thousand six hundred fifty-eight' WHERE a=5568;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy-eight' WHERE a=5569;\nUPDATE t2 SET c='fifty-nine thousand five hundred' WHERE a=5570;\nUPDATE t2 SET c='ninety-four thousand eight hundred thirteen' WHERE a=5571;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-seven' WHERE a=5572;\nUPDATE t2 SET c='six thousand nine hundred sixty-nine' WHERE a=5573;\nUPDATE t2 SET c='seventy-five thousand six hundred eighty-eight' WHERE a=5574;\nUPDATE t2 SET c='thirty-nine thousand ninety' WHERE a=5575;\nUPDATE t2 SET c='eleven thousand four hundred forty-one' WHERE a=5576;\nUPDATE t2 SET c='seventy thousand two hundred forty-nine' WHERE a=5577;\nUPDATE t2 SET c='sixty-eight thousand two hundred two' WHERE a=5578;\nUPDATE t2 SET c='sixty-five thousand nine hundred twelve' WHERE a=5579;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-one' WHERE a=5580;\nUPDATE t2 SET c='seven thousand fifty-one' WHERE a=5581;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-four' WHERE a=5582;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighty-three' WHERE a=5583;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-four' WHERE a=5584;\nUPDATE t2 SET c='seventy thousand seven hundred forty-one' WHERE a=5585;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty-six' WHERE a=5586;\nUPDATE t2 SET c='eighty-one thousand eight hundred ninety-three' WHERE a=5587;\nUPDATE t2 SET c='sixty-four thousand one hundred thirty-three' WHERE a=5588;\nUPDATE t2 SET c='forty-five thousand six hundred seventy' WHERE a=5589;\nUPDATE t2 SET c='sixteen thousand five hundred one' WHERE a=5590;\nUPDATE t2 SET c='forty-two thousand four hundred seventy-three' WHERE a=5591;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixty' WHERE a=5592;\nUPDATE t2 SET c='seventy-two thousand seven hundred sixty' WHERE a=5593;\nUPDATE t2 SET c='sixty-five thousand two hundred nineteen' WHERE a=5594;\nUPDATE t2 SET c='ninety-seven thousand nine hundred four' WHERE a=5595;\nUPDATE t2 SET c='ninety-seven thousand one hundred thirty-two' WHERE a=5596;\nUPDATE t2 SET c='twenty-eight thousand one hundred eight' WHERE a=5597;\nUPDATE t2 SET c='seventeen thousand one hundred fifty-two' WHERE a=5598;\nUPDATE t2 SET c='thirty-one thousand three hundred fifty-three' WHERE a=5599;\nUPDATE t2 SET c='nine thousand nine hundred three' WHERE a=5600;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-nine' WHERE a=5601;\nUPDATE t2 SET c='twenty-four thousand seven hundred forty-four' WHERE a=5602;\nUPDATE t2 SET c='twenty-seven thousand seven hundred seventy-three' WHERE a=5603;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty-seven' WHERE a=5604;\nUPDATE t2 SET c='one thousand seven hundred thirty-four' WHERE a=5605;\nUPDATE t2 SET c='nineteen thousand two' WHERE a=5606;\nUPDATE t2 SET c='sixteen thousand four hundred twenty-two' WHERE a=5607;\nUPDATE t2 SET c='twenty-three thousand eight hundred two' WHERE a=5608;\nUPDATE t2 SET c='eighty-one thousand nine hundred forty-four' WHERE a=5609;\nUPDATE t2 SET c='forty-six thousand two hundred sixty-seven' WHERE a=5610;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twenty-seven' WHERE a=5611;\nUPDATE t2 SET c='seventeen thousand four hundred ninety-eight' WHERE a=5612;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty' WHERE a=5613;\nUPDATE t2 SET c='ninety-four thousand six hundred ninety-five' WHERE a=5614;\nUPDATE t2 SET c='seventy thousand four hundred eight' WHERE a=5615;\nUPDATE t2 SET c='ninety-six thousand six' WHERE a=5616;\nUPDATE t2 SET c='fifteen thousand three hundred twenty-eight' WHERE a=5617;\nUPDATE t2 SET c='twenty-three thousand three hundred forty-seven' WHERE a=5618;\nUPDATE t2 SET c='ninety thousand ninety-six' WHERE a=5619;\nUPDATE t2 SET c='ninety-seven thousand four hundred forty' WHERE a=5620;\nUPDATE t2 SET c='ninety-nine thousand five hundred eleven' WHERE a=5621;\nUPDATE t2 SET c='five thousand one hundred fifteen' WHERE a=5622;\nUPDATE t2 SET c='forty-five thousand five hundred seventy' WHERE a=5623;\nUPDATE t2 SET c='forty thousand nine hundred eighty-seven' WHERE a=5624;\nUPDATE t2 SET c='forty-six thousand five hundred seventy-seven' WHERE a=5625;\nUPDATE t2 SET c='fifteen thousand nine hundred thirty-nine' WHERE a=5626;\nUPDATE t2 SET c='two thousand nine hundred fifteen' WHERE a=5627;\nUPDATE t2 SET c='eighty-nine thousand seven hundred thirty-nine' WHERE a=5628;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-four' WHERE a=5629;\nUPDATE t2 SET c='sixty thousand one hundred ninety-eight' WHERE a=5630;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-three' WHERE a=5631;\nUPDATE t2 SET c='eighty-four thousand eighty-one' WHERE a=5632;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-eight' WHERE a=5633;\nUPDATE t2 SET c='thirty thousand five hundred sixty' WHERE a=5634;\nUPDATE t2 SET c='fifty-nine thousand one hundred seventy-one' WHERE a=5635;\nUPDATE t2 SET c='eighty-eight thousand five' WHERE a=5636;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-seven' WHERE a=5637;\nUPDATE t2 SET c='thirty-nine thousand four hundred ninety-two' WHERE a=5638;\nUPDATE t2 SET c='six thousand eight hundred twelve' WHERE a=5639;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty-one' WHERE a=5640;\nUPDATE t2 SET c='fifty-three thousand six hundred forty-nine' WHERE a=5641;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-three' WHERE a=5642;\nUPDATE t2 SET c='ninety-seven thousand nine hundred forty-six' WHERE a=5643;\nUPDATE t2 SET c='ninety-three thousand nine hundred seven' WHERE a=5644;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-nine' WHERE a=5645;\nUPDATE t2 SET c='eighty-two thousand two hundred fifty-seven' WHERE a=5646;\nUPDATE t2 SET c='thirty thousand eight hundred eighty-three' WHERE a=5647;\nUPDATE t2 SET c='twelve thousand seven hundred eighteen' WHERE a=5648;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-eight' WHERE a=5649;\nUPDATE t2 SET c='sixteen thousand five hundred twenty' WHERE a=5650;\nUPDATE t2 SET c='fifteen thousand eight hundred sixty-seven' WHERE a=5651;\nUPDATE t2 SET c='eleven thousand three hundred ninety-one' WHERE a=5652;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=5653;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-seven' WHERE a=5654;\nUPDATE t2 SET c='twenty-five thousand one hundred seventy-eight' WHERE a=5655;\nUPDATE t2 SET c='nineteen thousand five hundred fifty-four' WHERE a=5656;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-five' WHERE a=5657;\nUPDATE t2 SET c='twenty-two thousand five hundred twenty-three' WHERE a=5658;\nUPDATE t2 SET c='six thousand four hundred seventy-one' WHERE a=5659;\nUPDATE t2 SET c='nine thousand seven hundred forty-five' WHERE a=5660;\nUPDATE t2 SET c='sixty-seven thousand ninety-nine' WHERE a=5661;\nUPDATE t2 SET c='sixty-two thousand one hundred two' WHERE a=5662;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-five' WHERE a=5663;\nUPDATE t2 SET c='thirty-seven thousand fifty-four' WHERE a=5664;\nUPDATE t2 SET c='ninety-eight thousand six hundred seven' WHERE a=5665;\nUPDATE t2 SET c='sixteen thousand five hundred forty-nine' WHERE a=5666;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-one' WHERE a=5667;\nUPDATE t2 SET c='forty-one thousand nine hundred one' WHERE a=5668;\nUPDATE t2 SET c='fifty-two thousand three hundred forty' WHERE a=5669;\nUPDATE t2 SET c='seventy-three thousand seven hundred ninety-four' WHERE a=5670;\nUPDATE t2 SET c='fifty thousand one hundred nineteen' WHERE a=5671;\nUPDATE t2 SET c='two thousand fifty' WHERE a=5672;\nUPDATE t2 SET c='seventy thousand four hundred fifty' WHERE a=5673;\nUPDATE t2 SET c='ninety-three thousand seventy-five' WHERE a=5674;\nUPDATE t2 SET c='three thousand five hundred seventy-seven' WHERE a=5675;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety-nine' WHERE a=5676;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-five' WHERE a=5677;\nUPDATE t2 SET c='thirty-eight thousand nine hundred twenty-eight' WHERE a=5678;\nUPDATE t2 SET c='forty-five thousand ninety-six' WHERE a=5679;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-nine' WHERE a=5680;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-two' WHERE a=5681;\nUPDATE t2 SET c='ninety-five thousand six hundred sixty-eight' WHERE a=5682;\nUPDATE t2 SET c='eighty-one thousand five hundred eighty' WHERE a=5683;\nUPDATE t2 SET c='six thousand eight hundred ten' WHERE a=5684;\nUPDATE t2 SET c='thirty-two thousand four hundred thirty-six' WHERE a=5685;\nUPDATE t2 SET c='eighty thousand four hundred seventy-two' WHERE a=5686;\nUPDATE t2 SET c='sixty-six thousand nine hundred eighty-three' WHERE a=5687;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-two' WHERE a=5688;\nUPDATE t2 SET c='eighty-five thousand one hundred six' WHERE a=5689;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-nine' WHERE a=5690;\nUPDATE t2 SET c='eleven thousand eighty-nine' WHERE a=5691;\nUPDATE t2 SET c='four thousand one hundred sixty-five' WHERE a=5692;\nUPDATE t2 SET c='ninety-three thousand fifteen' WHERE a=5693;\nUPDATE t2 SET c='six thousand three hundred seven' WHERE a=5694;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-two' WHERE a=5695;\nUPDATE t2 SET c='seventy thousand eight hundred forty-two' WHERE a=5696;\nUPDATE t2 SET c='thirty-eight thousand three hundred forty-six' WHERE a=5697;\nUPDATE t2 SET c='twenty-four thousand nine hundred twelve' WHERE a=5698;\nUPDATE t2 SET c='seventy-eight thousand four hundred twenty-three' WHERE a=5699;\nUPDATE t2 SET c='forty-four thousand ninety-one' WHERE a=5700;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-three' WHERE a=5701;\nUPDATE t2 SET c='thirty-two thousand nine hundred thirty-four' WHERE a=5702;\nUPDATE t2 SET c='one hundred eighty-five' WHERE a=5703;\nUPDATE t2 SET c='seventy-eight thousand three hundred sixty-six' WHERE a=5704;\nUPDATE t2 SET c='ninety-eight thousand six hundred five' WHERE a=5705;\nUPDATE t2 SET c='thirty-three thousand forty-nine' WHERE a=5706;\nUPDATE t2 SET c='twenty-six thousand seventy-one' WHERE a=5707;\nUPDATE t2 SET c='thirty thousand five hundred eighty-two' WHERE a=5708;\nUPDATE t2 SET c='eighty-one thousand one hundred eighty-two' WHERE a=5709;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-three' WHERE a=5710;\nUPDATE t2 SET c='forty-five thousand one hundred eighty-five' WHERE a=5711;\nUPDATE t2 SET c='twenty-nine thousand six hundred eleven' WHERE a=5712;\nUPDATE t2 SET c='fourteen thousand three hundred thirty-three' WHERE a=5713;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-three' WHERE a=5714;\nUPDATE t2 SET c='thirty-five thousand nine hundred twenty-seven' WHERE a=5715;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=5716;\nUPDATE t2 SET c='fifty thousand four hundred one' WHERE a=5717;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-one' WHERE a=5718;\nUPDATE t2 SET c='twenty-three thousand seven hundred sixty-one' WHERE a=5719;\nUPDATE t2 SET c='eighty-one thousand eight hundred thirty-six' WHERE a=5720;\nUPDATE t2 SET c='forty-one thousand seven hundred twenty-five' WHERE a=5721;\nUPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=5722;\nUPDATE t2 SET c='ninety-three thousand one hundred forty-two' WHERE a=5723;\nUPDATE t2 SET c='forty-three thousand sixty-five' WHERE a=5724;\nUPDATE t2 SET c='seventy-two thousand one hundred fifteen' WHERE a=5725;\nUPDATE t2 SET c='seventy-five thousand five hundred sixty-six' WHERE a=5726;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty-nine' WHERE a=5727;\nUPDATE t2 SET c='forty-three thousand thirty-two' WHERE a=5728;\nUPDATE t2 SET c='seventy-three thousand four hundred two' WHERE a=5729;\nUPDATE t2 SET c='seventy-seven thousand seventy-four' WHERE a=5730;\nUPDATE t2 SET c='nineteen thousand nine hundred ninety-four' WHERE a=5731;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-five' WHERE a=5732;\nUPDATE t2 SET c='seventeen thousand five hundred thirty-nine' WHERE a=5733;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-eight' WHERE a=5734;\nUPDATE t2 SET c='eighty thousand two hundred ninety-nine' WHERE a=5735;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-seven' WHERE a=5736;\nUPDATE t2 SET c='three thousand three hundred twenty-five' WHERE a=5737;\nUPDATE t2 SET c='sixty-two thousand forty-eight' WHERE a=5738;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy-one' WHERE a=5739;\nUPDATE t2 SET c='eight thousand two hundred eight' WHERE a=5740;\nUPDATE t2 SET c='fifty-four thousand three hundred' WHERE a=5741;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirty-seven' WHERE a=5742;\nUPDATE t2 SET c='eighteen thousand three hundred eighty-seven' WHERE a=5743;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-five' WHERE a=5744;\nUPDATE t2 SET c='forty-nine thousand nine hundred seventy-one' WHERE a=5745;\nUPDATE t2 SET c='five thousand nine hundred eighty-eight' WHERE a=5746;\nUPDATE t2 SET c='ninety-nine thousand eight hundred fifty-three' WHERE a=5747;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventy-nine' WHERE a=5748;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-five' WHERE a=5749;\nUPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=5750;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-six' WHERE a=5751;\nUPDATE t2 SET c='seventy thousand four hundred thirty-two' WHERE a=5752;\nUPDATE t2 SET c='fifty-one thousand eight hundred seventy-two' WHERE a=5753;\nUPDATE t2 SET c='ninety-three thousand five hundred eighteen' WHERE a=5754;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-two' WHERE a=5755;\nUPDATE t2 SET c='thirty-four thousand two hundred forty-two' WHERE a=5756;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-four' WHERE a=5757;\nUPDATE t2 SET c='ninety thousand two hundred four' WHERE a=5758;\nUPDATE t2 SET c='eighty thousand nine hundred fifty-three' WHERE a=5759;\nUPDATE t2 SET c='fifty-four thousand nine hundred nineteen' WHERE a=5760;\nUPDATE t2 SET c='ninety-two thousand four hundred sixty-nine' WHERE a=5761;\nUPDATE t2 SET c='ten thousand two hundred sixteen' WHERE a=5762;\nUPDATE t2 SET c='forty-four thousand one hundred thirty-five' WHERE a=5763;\nUPDATE t2 SET c='eighty-eight thousand nine hundred forty-seven' WHERE a=5764;\nUPDATE t2 SET c='fourteen thousand two hundred fifty-one' WHERE a=5765;\nUPDATE t2 SET c='eighty-eight thousand twenty-six' WHERE a=5766;\nUPDATE t2 SET c='thirty-two thousand four hundred fifty-nine' WHERE a=5767;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-three' WHERE a=5768;\nUPDATE t2 SET c='sixty-nine thousand three hundred eighty' WHERE a=5769;\nUPDATE t2 SET c='twenty-three thousand three hundred eighty-eight' WHERE a=5770;\nUPDATE t2 SET c='twenty-four thousand three hundred twenty-five' WHERE a=5771;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty' WHERE a=5772;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=5773;\nUPDATE t2 SET c='fifty-three thousand eight hundred ninety-two' WHERE a=5774;\nUPDATE t2 SET c='forty-three thousand one hundred eighty' WHERE a=5775;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty-eight' WHERE a=5776;\nUPDATE t2 SET c='ninety-one thousand seven hundred sixteen' WHERE a=5777;\nUPDATE t2 SET c='eighteen thousand two hundred one' WHERE a=5778;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixteen' WHERE a=5779;\nUPDATE t2 SET c='three thousand five hundred twenty-five' WHERE a=5780;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy-two' WHERE a=5781;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-two' WHERE a=5782;\nUPDATE t2 SET c='sixty-one thousand five hundred forty-three' WHERE a=5783;\nUPDATE t2 SET c='twenty-one thousand one hundred three' WHERE a=5784;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty-six' WHERE a=5785;\nUPDATE t2 SET c='forty-one thousand seven hundred seven' WHERE a=5786;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-six' WHERE a=5787;\nUPDATE t2 SET c='nine thousand three hundred' WHERE a=5788;\nUPDATE t2 SET c='seventy-seven thousand eighty-three' WHERE a=5789;\nUPDATE t2 SET c='sixty-seven thousand four hundred fifty-four' WHERE a=5790;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eighty-seven' WHERE a=5791;\nUPDATE t2 SET c='eighteen thousand seven hundred thirty-three' WHERE a=5792;\nUPDATE t2 SET c='eight thousand four hundred forty-nine' WHERE a=5793;\nUPDATE t2 SET c='thirty-eight thousand one hundred forty-nine' WHERE a=5794;\nUPDATE t2 SET c='fifteen thousand three hundred eighty-eight' WHERE a=5795;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-five' WHERE a=5796;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-two' WHERE a=5797;\nUPDATE t2 SET c='thirty-seven thousand fifty' WHERE a=5798;\nUPDATE t2 SET c='fourteen thousand eight hundred eleven' WHERE a=5799;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty-six' WHERE a=5800;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-two' WHERE a=5801;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty-nine' WHERE a=5802;\nUPDATE t2 SET c='eighty-one thousand five hundred eighteen' WHERE a=5803;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-eight' WHERE a=5804;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-six' WHERE a=5805;\nUPDATE t2 SET c='thirty-two thousand twenty-three' WHERE a=5806;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=5807;\nUPDATE t2 SET c='forty-eight thousand four hundred sixty-five' WHERE a=5808;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fifty' WHERE a=5809;\nUPDATE t2 SET c='thirty-four thousand eight hundred twenty-five' WHERE a=5810;\nUPDATE t2 SET c='sixty-six thousand sixty' WHERE a=5811;\nUPDATE t2 SET c='sixty-five thousand eight hundred seventy-two' WHERE a=5812;\nUPDATE t2 SET c='eighty-four thousand four hundred seventy-eight' WHERE a=5813;\nUPDATE t2 SET c='twenty-nine thousand seven hundred forty-eight' WHERE a=5814;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eighty-eight' WHERE a=5815;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty-three' WHERE a=5816;\nUPDATE t2 SET c='seventy thousand one hundred eighty-three' WHERE a=5817;\nUPDATE t2 SET c='twenty thousand two hundred thirty-three' WHERE a=5818;\nUPDATE t2 SET c='forty-nine thousand four hundred ninety-four' WHERE a=5819;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-four' WHERE a=5820;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-four' WHERE a=5821;\nUPDATE t2 SET c='thirty-three thousand four hundred seventy-two' WHERE a=5822;\nUPDATE t2 SET c='sixty-five thousand three hundred seventy-six' WHERE a=5823;\nUPDATE t2 SET c='eleven thousand one hundred eighty-one' WHERE a=5824;\nUPDATE t2 SET c='twenty-four thousand eight hundred ninety-one' WHERE a=5825;\nUPDATE t2 SET c='seventy-six thousand eighteen' WHERE a=5826;\nUPDATE t2 SET c='thirty-two thousand seven hundred twenty-three' WHERE a=5827;\nUPDATE t2 SET c='four thousand four hundred seventeen' WHERE a=5828;\nUPDATE t2 SET c='forty-eight thousand three hundred three' WHERE a=5829;\nUPDATE t2 SET c='sixty-two thousand two hundred forty-one' WHERE a=5830;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-one' WHERE a=5831;\nUPDATE t2 SET c='nineteen thousand four hundred eighty-five' WHERE a=5832;\nUPDATE t2 SET c='fifty-five thousand three hundred sixty-six' WHERE a=5833;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-seven' WHERE a=5834;\nUPDATE t2 SET c='ninety-six thousand seventy-five' WHERE a=5835;\nUPDATE t2 SET c='fifty thousand one hundred' WHERE a=5836;\nUPDATE t2 SET c='ninety-one thousand six hundred sixty-two' WHERE a=5837;\nUPDATE t2 SET c='seventy-one thousand four hundred nine' WHERE a=5838;\nUPDATE t2 SET c='fifty-one thousand seven hundred twelve' WHERE a=5839;\nUPDATE t2 SET c='forty-two thousand four hundred eighteen' WHERE a=5840;\nUPDATE t2 SET c='eleven thousand four hundred seventy-three' WHERE a=5841;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-seven' WHERE a=5842;\nUPDATE t2 SET c='twenty-six thousand four hundred fifty-one' WHERE a=5843;\nUPDATE t2 SET c='eighty thousand six hundred twenty-four' WHERE a=5844;\nUPDATE t2 SET c='ninety-eight thousand six hundred thirteen' WHERE a=5845;\nUPDATE t2 SET c='eighty-five thousand seventy' WHERE a=5846;\nUPDATE t2 SET c='fifty-eight thousand five hundred sixty-six' WHERE a=5847;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixteen' WHERE a=5848;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-nine' WHERE a=5849;\nUPDATE t2 SET c='fifty-one thousand seven hundred eight' WHERE a=5850;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-nine' WHERE a=5851;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=5852;\nUPDATE t2 SET c='sixteen thousand one hundred twelve' WHERE a=5853;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty' WHERE a=5854;\nUPDATE t2 SET c='thirty-one thousand two hundred eight' WHERE a=5855;\nUPDATE t2 SET c='ninety-seven thousand seven hundred six' WHERE a=5856;\nUPDATE t2 SET c='ninety-four thousand eight hundred four' WHERE a=5857;\nUPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=5858;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-four' WHERE a=5859;\nUPDATE t2 SET c='fifty-eight thousand three hundred sixty-nine' WHERE a=5860;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-two' WHERE a=5861;\nUPDATE t2 SET c='eight thousand three hundred six' WHERE a=5862;\nUPDATE t2 SET c='sixty-six thousand forty-four' WHERE a=5863;\nUPDATE t2 SET c='seventy-five thousand nine hundred ninety-eight' WHERE a=5864;\nUPDATE t2 SET c='eighty thousand eight hundred fifty-two' WHERE a=5865;\nUPDATE t2 SET c='fifty-nine thousand six hundred thirty-seven' WHERE a=5866;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-nine' WHERE a=5867;\nUPDATE t2 SET c='three thousand two hundred six' WHERE a=5868;\nUPDATE t2 SET c='seventy-five thousand two hundred ninety-eight' WHERE a=5869;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-seven' WHERE a=5870;\nUPDATE t2 SET c='seventy thousand two hundred seventy-one' WHERE a=5871;\nUPDATE t2 SET c='eighty-three thousand sixty-four' WHERE a=5872;\nUPDATE t2 SET c='forty-eight thousand six hundred ten' WHERE a=5873;\nUPDATE t2 SET c='seventy-seven thousand four hundred thirty-five' WHERE a=5874;\nUPDATE t2 SET c='fifty thousand nine hundred sixty-five' WHERE a=5875;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty-eight' WHERE a=5876;\nUPDATE t2 SET c='thirty-one thousand ninety-two' WHERE a=5877;\nUPDATE t2 SET c='four thousand two hundred ninety-seven' WHERE a=5878;\nUPDATE t2 SET c='forty-four thousand two hundred thirty' WHERE a=5879;\nUPDATE t2 SET c='thirty-one thousand four hundred sixty-five' WHERE a=5880;\nUPDATE t2 SET c='thirty-nine thousand forty-seven' WHERE a=5881;\nUPDATE t2 SET c='twenty thousand five hundred ninety-eight' WHERE a=5882;\nUPDATE t2 SET c='ninety-four thousand eight hundred forty-two' WHERE a=5883;\nUPDATE t2 SET c='eighty thousand one hundred seventy' WHERE a=5884;\nUPDATE t2 SET c='twenty-four thousand thirteen' WHERE a=5885;\nUPDATE t2 SET c='sixty-four thousand four hundred fifty' WHERE a=5886;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-eight' WHERE a=5887;\nUPDATE t2 SET c='forty-four thousand two hundred thirty-seven' WHERE a=5888;\nUPDATE t2 SET c='sixty-nine thousand ninety-one' WHERE a=5889;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-three' WHERE a=5890;\nUPDATE t2 SET c='fifty thousand five hundred seventeen' WHERE a=5891;\nUPDATE t2 SET c='twelve thousand six hundred sixty-five' WHERE a=5892;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-three' WHERE a=5893;\nUPDATE t2 SET c='eighty-five thousand seven hundred sixty-two' WHERE a=5894;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-six' WHERE a=5895;\nUPDATE t2 SET c='five thousand eight hundred twenty-seven' WHERE a=5896;\nUPDATE t2 SET c='twenty thousand one hundred thirty-eight' WHERE a=5897;\nUPDATE t2 SET c='thirty-one thousand one hundred eighteen' WHERE a=5898;\nUPDATE t2 SET c='thirteen thousand one hundred' WHERE a=5899;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-six' WHERE a=5900;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-eight' WHERE a=5901;\nUPDATE t2 SET c='thirty-seven thousand two hundred ten' WHERE a=5902;\nUPDATE t2 SET c='ninety-three thousand five hundred eighty-six' WHERE a=5903;\nUPDATE t2 SET c='eighty-two thousand one hundred fifteen' WHERE a=5904;\nUPDATE t2 SET c='ten thousand seven hundred thirty-eight' WHERE a=5905;\nUPDATE t2 SET c='sixty thousand nine hundred eighty-five' WHERE a=5906;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifty' WHERE a=5907;\nUPDATE t2 SET c='six hundred seventy-six' WHERE a=5908;\nUPDATE t2 SET c='eleven thousand eight hundred eighty-six' WHERE a=5909;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-seven' WHERE a=5910;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-two' WHERE a=5911;\nUPDATE t2 SET c='eighty-two thousand five hundred seventy-six' WHERE a=5912;\nUPDATE t2 SET c='thirteen thousand nine hundred seventy-three' WHERE a=5913;\nUPDATE t2 SET c='seventy thousand five hundred eighty-two' WHERE a=5914;\nUPDATE t2 SET c='eighty-five thousand two hundred fifty-three' WHERE a=5915;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-four' WHERE a=5916;\nUPDATE t2 SET c='forty-two thousand five hundred ninety-five' WHERE a=5917;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=5918;\nUPDATE t2 SET c='fifty-five thousand four hundred three' WHERE a=5919;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-eight' WHERE a=5920;\nUPDATE t2 SET c='ninety-three thousand four hundred thirty-nine' WHERE a=5921;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-five' WHERE a=5922;\nUPDATE t2 SET c='eighty-seven thousand nine hundred thirty-one' WHERE a=5923;\nUPDATE t2 SET c='thirty-three thousand six hundred thirty-two' WHERE a=5924;\nUPDATE t2 SET c='two thousand one hundred fifty-one' WHERE a=5925;\nUPDATE t2 SET c='eighty-five thousand seventy-two' WHERE a=5926;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-two' WHERE a=5927;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=5928;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-six' WHERE a=5929;\nUPDATE t2 SET c='thirty-eight thousand two hundred eighty-seven' WHERE a=5930;\nUPDATE t2 SET c='eleven thousand four hundred forty-eight' WHERE a=5931;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-one' WHERE a=5932;\nUPDATE t2 SET c='fifty-three thousand three hundred fifty-five' WHERE a=5933;\nUPDATE t2 SET c='forty-eight thousand six hundred eleven' WHERE a=5934;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirty-four' WHERE a=5935;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-six' WHERE a=5936;\nUPDATE t2 SET c='four thousand eight hundred eighty' WHERE a=5937;\nUPDATE t2 SET c='five thousand one hundred ninety-seven' WHERE a=5938;\nUPDATE t2 SET c='sixty-eight thousand six hundred seventy' WHERE a=5939;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-three' WHERE a=5940;\nUPDATE t2 SET c='twenty thousand one hundred sixty' WHERE a=5941;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty' WHERE a=5942;\nUPDATE t2 SET c='thirty-one thousand three hundred three' WHERE a=5943;\nUPDATE t2 SET c='ninety-five thousand one hundred eighteen' WHERE a=5944;\nUPDATE t2 SET c='ten thousand seven hundred eleven' WHERE a=5945;\nUPDATE t2 SET c='five thousand nine hundred fifty' WHERE a=5946;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-four' WHERE a=5947;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty-five' WHERE a=5948;\nUPDATE t2 SET c='sixty-one thousand five hundred two' WHERE a=5949;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-one' WHERE a=5950;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-six' WHERE a=5951;\nUPDATE t2 SET c='seventy-six thousand one hundred thirty-three' WHERE a=5952;\nUPDATE t2 SET c='eighty-seven thousand one hundred fifty' WHERE a=5953;\nUPDATE t2 SET c='thirty-three thousand nine hundred five' WHERE a=5954;\nUPDATE t2 SET c='sixty-four thousand thirty' WHERE a=5955;\nUPDATE t2 SET c='two thousand seven hundred thirty-two' WHERE a=5956;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-two' WHERE a=5957;\nUPDATE t2 SET c='sixty-six thousand nine hundred twenty-nine' WHERE a=5958;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty-three' WHERE a=5959;\nUPDATE t2 SET c='seventy-six thousand two hundred thirty-eight' WHERE a=5960;\nUPDATE t2 SET c='thirty-five thousand four hundred forty-two' WHERE a=5961;\nUPDATE t2 SET c='forty-six thousand three hundred fifty-three' WHERE a=5962;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-nine' WHERE a=5963;\nUPDATE t2 SET c='eighty-one thousand seven hundred thirty-three' WHERE a=5964;\nUPDATE t2 SET c='ninety-three thousand one hundred ninety-six' WHERE a=5965;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-nine' WHERE a=5966;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty-eight' WHERE a=5967;\nUPDATE t2 SET c='seventy-five thousand five hundred thirty' WHERE a=5968;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-seven' WHERE a=5969;\nUPDATE t2 SET c='two thousand five hundred forty-one' WHERE a=5970;\nUPDATE t2 SET c='thirty-one thousand four hundred' WHERE a=5971;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-two' WHERE a=5972;\nUPDATE t2 SET c='four thousand three hundred seventy-seven' WHERE a=5973;\nUPDATE t2 SET c='sixty thousand four hundred ten' WHERE a=5974;\nUPDATE t2 SET c='three thousand eight hundred thirty-seven' WHERE a=5975;\nUPDATE t2 SET c='ninety-nine thousand nine hundred twenty-four' WHERE a=5976;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty' WHERE a=5977;\nUPDATE t2 SET c='forty-nine thousand six hundred ninety-five' WHERE a=5978;\nUPDATE t2 SET c='two thousand two hundred thirty-four' WHERE a=5979;\nUPDATE t2 SET c='eight thousand eight hundred eighty-three' WHERE a=5980;\nUPDATE t2 SET c='seventy thousand thirteen' WHERE a=5981;\nUPDATE t2 SET c='forty-seven thousand eight hundred fourteen' WHERE a=5982;\nUPDATE t2 SET c='five thousand nine hundred forty-one' WHERE a=5983;\nUPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=5984;\nUPDATE t2 SET c='five thousand four hundred nineteen' WHERE a=5985;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty-seven' WHERE a=5986;\nUPDATE t2 SET c='forty-seven thousand two hundred six' WHERE a=5987;\nUPDATE t2 SET c='thirty-three thousand three hundred sixty-five' WHERE a=5988;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-four' WHERE a=5989;\nUPDATE t2 SET c='twenty-one thousand sixty-five' WHERE a=5990;\nUPDATE t2 SET c='forty-six thousand seven hundred sixty-four' WHERE a=5991;\nUPDATE t2 SET c='seventy thousand one hundred ninety-nine' WHERE a=5992;\nUPDATE t2 SET c='sixty-one thousand one hundred fifty-two' WHERE a=5993;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-four' WHERE a=5994;\nUPDATE t2 SET c='thirty-nine thousand five hundred fifteen' WHERE a=5995;\nUPDATE t2 SET c='eighty-four thousand six hundred ninety-five' WHERE a=5996;\nUPDATE t2 SET c='ninety-six thousand four hundred seventy-three' WHERE a=5997;\nUPDATE t2 SET c='ninety-six thousand nine hundred five' WHERE a=5998;\nUPDATE t2 SET c='forty-three thousand five hundred forty-four' WHERE a=5999;\nUPDATE t2 SET c='four thousand eight hundred ninety-five' WHERE a=6000;\nUPDATE t2 SET c='seventy thousand eight hundred seventy' WHERE a=6001;\nUPDATE t2 SET c='forty-two thousand seven hundred twenty-six' WHERE a=6002;\nUPDATE t2 SET c='sixty-four thousand three hundred eighty-four' WHERE a=6003;\nUPDATE t2 SET c='thirty thousand three hundred thirty-six' WHERE a=6004;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-four' WHERE a=6005;\nUPDATE t2 SET c='six thousand seventy-seven' WHERE a=6006;\nUPDATE t2 SET c='thirty-two thousand nine hundred' WHERE a=6007;\nUPDATE t2 SET c='one thousand six hundred seventy-three' WHERE a=6008;\nUPDATE t2 SET c='forty-six thousand two hundred seven' WHERE a=6009;\nUPDATE t2 SET c='forty-six thousand nine hundred seventy-seven' WHERE a=6010;\nUPDATE t2 SET c='forty-three thousand one hundred ninety' WHERE a=6011;\nUPDATE t2 SET c='nineteen thousand five hundred twenty-seven' WHERE a=6012;\nUPDATE t2 SET c='ninety-eight thousand five hundred seventy-five' WHERE a=6013;\nUPDATE t2 SET c='seventy-one thousand nine hundred nineteen' WHERE a=6014;\nUPDATE t2 SET c='forty-four thousand eight hundred five' WHERE a=6015;\nUPDATE t2 SET c='one hundred two' WHERE a=6016;\nUPDATE t2 SET c='forty-one thousand three hundred thirty' WHERE a=6017;\nUPDATE t2 SET c='sixteen thousand forty-five' WHERE a=6018;\nUPDATE t2 SET c='seventy-one thousand seven hundred forty-three' WHERE a=6019;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty-six' WHERE a=6020;\nUPDATE t2 SET c='fifty thousand four hundred seventy-three' WHERE a=6021;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-four' WHERE a=6022;\nUPDATE t2 SET c='ninety-seven thousand two hundred fourteen' WHERE a=6023;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-two' WHERE a=6024;\nUPDATE t2 SET c='sixty-four thousand one hundred thirteen' WHERE a=6025;\nUPDATE t2 SET c='eleven thousand two hundred one' WHERE a=6026;\nUPDATE t2 SET c='seventy-three thousand seven hundred ninety-one' WHERE a=6027;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=6028;\nUPDATE t2 SET c='five hundred nine' WHERE a=6029;\nUPDATE t2 SET c='sixty-one thousand seven hundred thirty-one' WHERE a=6030;\nUPDATE t2 SET c='six thousand four hundred twenty-seven' WHERE a=6031;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-eight' WHERE a=6032;\nUPDATE t2 SET c='ninety-seven thousand four hundred forty-four' WHERE a=6033;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-eight' WHERE a=6034;\nUPDATE t2 SET c='twenty-six thousand three' WHERE a=6035;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty' WHERE a=6036;\nUPDATE t2 SET c='seventy thousand ninety-two' WHERE a=6037;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fifty-six' WHERE a=6038;\nUPDATE t2 SET c='forty-nine thousand eight hundred thirty-six' WHERE a=6039;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-four' WHERE a=6040;\nUPDATE t2 SET c='forty-one thousand two' WHERE a=6041;\nUPDATE t2 SET c='eighty-one thousand six hundred forty-one' WHERE a=6042;\nUPDATE t2 SET c='thirty-two thousand four hundred one' WHERE a=6043;\nUPDATE t2 SET c='sixty-four thousand one hundred ninety-six' WHERE a=6044;\nUPDATE t2 SET c='fifteen thousand six hundred seventy-two' WHERE a=6045;\nUPDATE t2 SET c='forty-one thousand fifteen' WHERE a=6046;\nUPDATE t2 SET c='ninety-eight thousand nine hundred eighty-seven' WHERE a=6047;\nUPDATE t2 SET c='forty thousand two hundred sixty-two' WHERE a=6048;\nUPDATE t2 SET c='twenty-one thousand nine hundred one' WHERE a=6049;\nUPDATE t2 SET c='forty-nine thousand four hundred two' WHERE a=6050;\nUPDATE t2 SET c='five thousand seven hundred sixty-eight' WHERE a=6051;\nUPDATE t2 SET c='eighty-nine thousand four hundred thirty' WHERE a=6052;\nUPDATE t2 SET c='fourteen thousand nine hundred sixty-nine' WHERE a=6053;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-four' WHERE a=6054;\nUPDATE t2 SET c='ninety-five thousand four hundred eighty-nine' WHERE a=6055;\nUPDATE t2 SET c='thirty-six thousand four hundred' WHERE a=6056;\nUPDATE t2 SET c='twenty-seven thousand six hundred five' WHERE a=6057;\nUPDATE t2 SET c='seventeen thousand' WHERE a=6058;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-three' WHERE a=6059;\nUPDATE t2 SET c='eight thousand one hundred fifty-seven' WHERE a=6060;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy' WHERE a=6061;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-seven' WHERE a=6062;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-six' WHERE a=6063;\nUPDATE t2 SET c='sixty-four thousand twenty-two' WHERE a=6064;\nUPDATE t2 SET c='eleven thousand two hundred forty-two' WHERE a=6065;\nUPDATE t2 SET c='eighty-five thousand four hundred ninety-nine' WHERE a=6066;\nUPDATE t2 SET c='twenty thousand two hundred sixty-nine' WHERE a=6067;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-five' WHERE a=6068;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty-two' WHERE a=6069;\nUPDATE t2 SET c='twenty-seven thousand ninety-four' WHERE a=6070;\nUPDATE t2 SET c='five thousand twenty-six' WHERE a=6071;\nUPDATE t2 SET c='twenty-five thousand four hundred forty-two' WHERE a=6072;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-two' WHERE a=6073;\nUPDATE t2 SET c='twenty-nine thousand eighty-nine' WHERE a=6074;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-six' WHERE a=6075;\nUPDATE t2 SET c='twenty-six thousand seven hundred sixty-four' WHERE a=6076;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-three' WHERE a=6077;\nUPDATE t2 SET c='fifteen thousand five hundred forty' WHERE a=6078;\nUPDATE t2 SET c='twenty-two thousand one hundred forty-six' WHERE a=6079;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-two' WHERE a=6080;\nUPDATE t2 SET c='five thousand four' WHERE a=6081;\nUPDATE t2 SET c='forty-seven thousand three hundred ninety-six' WHERE a=6082;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-five' WHERE a=6083;\nUPDATE t2 SET c='thirteen thousand four hundred fifty-two' WHERE a=6084;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-two' WHERE a=6085;\nUPDATE t2 SET c='seventy-seven thousand five hundred ninety-nine' WHERE a=6086;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixty-nine' WHERE a=6087;\nUPDATE t2 SET c='eighty-five thousand seven hundred thirty-four' WHERE a=6088;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-nine' WHERE a=6089;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty-four' WHERE a=6090;\nUPDATE t2 SET c='seventy-one thousand six hundred twenty-three' WHERE a=6091;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty' WHERE a=6092;\nUPDATE t2 SET c='one thousand one hundred eighty-three' WHERE a=6093;\nUPDATE t2 SET c='sixty-one thousand nine hundred thirty-two' WHERE a=6094;\nUPDATE t2 SET c='eighty-one thousand nine hundred twenty' WHERE a=6095;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-four' WHERE a=6096;\nUPDATE t2 SET c='sixty-eight thousand twelve' WHERE a=6097;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-three' WHERE a=6098;\nUPDATE t2 SET c='three thousand two hundred ninety-seven' WHERE a=6099;\nUPDATE t2 SET c='ninety-three thousand five hundred seventy-eight' WHERE a=6100;\nUPDATE t2 SET c='forty-nine thousand four hundred forty-nine' WHERE a=6101;\nUPDATE t2 SET c='eighty-five thousand seven hundred eighteen' WHERE a=6102;\nUPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=6103;\nUPDATE t2 SET c='fifty thousand four hundred thirty-five' WHERE a=6104;\nUPDATE t2 SET c='fifty-five thousand fifty-three' WHERE a=6105;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-three' WHERE a=6106;\nUPDATE t2 SET c='seventy-six thousand one hundred eighty-six' WHERE a=6107;\nUPDATE t2 SET c='forty-one thousand seven hundred eleven' WHERE a=6108;\nUPDATE t2 SET c='seventy-four thousand eight hundred ninety-nine' WHERE a=6109;\nUPDATE t2 SET c='three thousand seven hundred seventy-eight' WHERE a=6110;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-one' WHERE a=6111;\nUPDATE t2 SET c='six thousand eight hundred ninety-one' WHERE a=6112;\nUPDATE t2 SET c='thirty-four thousand seven hundred seventy-eight' WHERE a=6113;\nUPDATE t2 SET c='ninety-five thousand eight hundred fifteen' WHERE a=6114;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-three' WHERE a=6115;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-two' WHERE a=6116;\nUPDATE t2 SET c='sixty-eight thousand three hundred forty-nine' WHERE a=6117;\nUPDATE t2 SET c='sixty-five thousand eight hundred thirty-eight' WHERE a=6118;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventeen' WHERE a=6119;\nUPDATE t2 SET c='twenty-eight thousand two hundred twenty' WHERE a=6120;\nUPDATE t2 SET c='seventy-six thousand two hundred four' WHERE a=6121;\nUPDATE t2 SET c='fifteen thousand one hundred ninety-seven' WHERE a=6122;\nUPDATE t2 SET c='seventy-three thousand seven hundred two' WHERE a=6123;\nUPDATE t2 SET c='fifty thousand two hundred twenty-two' WHERE a=6124;\nUPDATE t2 SET c='twenty-six thousand seventy-six' WHERE a=6125;\nUPDATE t2 SET c='thirty-one thousand eight hundred five' WHERE a=6126;\nUPDATE t2 SET c='eighty-two thousand eight hundred forty-seven' WHERE a=6127;\nUPDATE t2 SET c='seventy-one thousand nine hundred thirteen' WHERE a=6128;\nUPDATE t2 SET c='fifty-four thousand four hundred twenty-seven' WHERE a=6129;\nUPDATE t2 SET c='forty-one thousand eight hundred eighty-seven' WHERE a=6130;\nUPDATE t2 SET c='forty-eight thousand one hundred forty' WHERE a=6131;\nUPDATE t2 SET c='seventy-six thousand three hundred twenty-seven' WHERE a=6132;\nUPDATE t2 SET c='seventy thousand twenty-one' WHERE a=6133;\nUPDATE t2 SET c='ninety-two thousand seven hundred ninety-five' WHERE a=6134;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-three' WHERE a=6135;\nUPDATE t2 SET c='fifty-two thousand nine hundred nine' WHERE a=6136;\nUPDATE t2 SET c='sixty thousand one hundred fifty-five' WHERE a=6137;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-seven' WHERE a=6138;\nUPDATE t2 SET c='seventy-eight thousand two hundred nine' WHERE a=6139;\nUPDATE t2 SET c='eighty-five thousand eight hundred sixty-eight' WHERE a=6140;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-nine' WHERE a=6141;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-nine' WHERE a=6142;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-one' WHERE a=6143;\nUPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=6144;\nUPDATE t2 SET c='ninety-seven thousand four hundred thirty-five' WHERE a=6145;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-eight' WHERE a=6146;\nUPDATE t2 SET c='forty-six thousand six hundred forty-four' WHERE a=6147;\nUPDATE t2 SET c='seventy-nine thousand five hundred thirty-six' WHERE a=6148;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty-four' WHERE a=6149;\nUPDATE t2 SET c='fifty thousand nine hundred' WHERE a=6150;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-two' WHERE a=6151;\nUPDATE t2 SET c='seven thousand nine hundred forty-four' WHERE a=6152;\nUPDATE t2 SET c='sixty-nine thousand forty-four' WHERE a=6153;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-six' WHERE a=6154;\nUPDATE t2 SET c='fifty-one thousand forty-three' WHERE a=6155;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-two' WHERE a=6156;\nUPDATE t2 SET c='thirty thousand three hundred six' WHERE a=6157;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-five' WHERE a=6158;\nUPDATE t2 SET c='eighty-eight thousand eight hundred eighty-three' WHERE a=6159;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-six' WHERE a=6160;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-five' WHERE a=6161;\nUPDATE t2 SET c='seventy-two thousand nine hundred' WHERE a=6162;\nUPDATE t2 SET c='ninety-five thousand two hundred eighty-two' WHERE a=6163;\nUPDATE t2 SET c='fifty-two thousand seven hundred seven' WHERE a=6164;\nUPDATE t2 SET c='three thousand seven hundred ninety-one' WHERE a=6165;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-seven' WHERE a=6166;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy' WHERE a=6167;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-seven' WHERE a=6168;\nUPDATE t2 SET c='thirty-seven thousand twenty-one' WHERE a=6169;\nUPDATE t2 SET c='twenty-two thousand one hundred forty-three' WHERE a=6170;\nUPDATE t2 SET c='thirty-four thousand eight hundred seven' WHERE a=6171;\nUPDATE t2 SET c='ninety-one thousand two hundred thirty-nine' WHERE a=6172;\nUPDATE t2 SET c='twenty thousand three hundred seventy' WHERE a=6173;\nUPDATE t2 SET c='ninety-one thousand six hundred ninety-six' WHERE a=6174;\nUPDATE t2 SET c='seventy-eight thousand six hundred thirty-three' WHERE a=6175;\nUPDATE t2 SET c='eighty-nine thousand twenty-seven' WHERE a=6176;\nUPDATE t2 SET c='twenty-six thousand eight hundred forty-four' WHERE a=6177;\nUPDATE t2 SET c='ninety-six thousand nine hundred eighty-eight' WHERE a=6178;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-three' WHERE a=6179;\nUPDATE t2 SET c='fifty-five thousand six hundred ninety' WHERE a=6180;\nUPDATE t2 SET c='eleven thousand one hundred ninety-two' WHERE a=6181;\nUPDATE t2 SET c='seventy-one thousand six hundred six' WHERE a=6182;\nUPDATE t2 SET c='sixteen thousand four hundred fifteen' WHERE a=6183;\nUPDATE t2 SET c='eighty-two thousand six hundred fifty-three' WHERE a=6184;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-four' WHERE a=6185;\nUPDATE t2 SET c='fifty-five thousand three hundred twenty-eight' WHERE a=6186;\nUPDATE t2 SET c='thirty-three thousand four hundred forty-three' WHERE a=6187;\nUPDATE t2 SET c='twenty-nine thousand three hundred fifty-eight' WHERE a=6188;\nUPDATE t2 SET c='sixty-nine thousand three hundred eighteen' WHERE a=6189;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-three' WHERE a=6190;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-seven' WHERE a=6191;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-seven' WHERE a=6192;\nUPDATE t2 SET c='fourteen thousand three hundred ninety' WHERE a=6193;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-six' WHERE a=6194;\nUPDATE t2 SET c='forty-six thousand five hundred ten' WHERE a=6195;\nUPDATE t2 SET c='eighteen thousand nine hundred seventy-nine' WHERE a=6196;\nUPDATE t2 SET c='seventy-five thousand seven hundred eighty-two' WHERE a=6197;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-six' WHERE a=6198;\nUPDATE t2 SET c='sixty-eight thousand seven hundred sixty-four' WHERE a=6199;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eighteen' WHERE a=6200;\nUPDATE t2 SET c='twenty-six thousand two hundred five' WHERE a=6201;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-eight' WHERE a=6202;\nUPDATE t2 SET c='eighty-eight thousand eighty-nine' WHERE a=6203;\nUPDATE t2 SET c='seventy-four thousand six hundred ninety' WHERE a=6204;\nUPDATE t2 SET c='forty thousand eighty-five' WHERE a=6205;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty-one' WHERE a=6206;\nUPDATE t2 SET c='ninety-eight thousand two hundred thirteen' WHERE a=6207;\nUPDATE t2 SET c='twenty-two thousand five' WHERE a=6208;\nUPDATE t2 SET c='seventy thousand three hundred ninety-seven' WHERE a=6209;\nUPDATE t2 SET c='nine thousand eight hundred eleven' WHERE a=6210;\nUPDATE t2 SET c='twenty-five thousand seventy-five' WHERE a=6211;\nUPDATE t2 SET c='fifty-four thousand nine hundred twenty' WHERE a=6212;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-four' WHERE a=6213;\nUPDATE t2 SET c='eleven thousand four hundred fifty-two' WHERE a=6214;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-nine' WHERE a=6215;\nUPDATE t2 SET c='ninety thousand seven hundred twenty-three' WHERE a=6216;\nUPDATE t2 SET c='sixty-four thousand four hundred eighty-one' WHERE a=6217;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-three' WHERE a=6218;\nUPDATE t2 SET c='forty-eight thousand sixty-six' WHERE a=6219;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty-eight' WHERE a=6220;\nUPDATE t2 SET c='forty thousand seven hundred three' WHERE a=6221;\nUPDATE t2 SET c='three thousand seven hundred nine' WHERE a=6222;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-five' WHERE a=6223;\nUPDATE t2 SET c='twenty-nine thousand six hundred six' WHERE a=6224;\nUPDATE t2 SET c='twenty-nine thousand thirteen' WHERE a=6225;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-three' WHERE a=6226;\nUPDATE t2 SET c='thirteen thousand four hundred eighty-three' WHERE a=6227;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-two' WHERE a=6228;\nUPDATE t2 SET c='ninety-four thousand thirty-one' WHERE a=6229;\nUPDATE t2 SET c='twenty-four thousand nine hundred eleven' WHERE a=6230;\nUPDATE t2 SET c='fifty-two thousand six hundred sixty-four' WHERE a=6231;\nUPDATE t2 SET c='forty-two thousand eight hundred twenty-one' WHERE a=6232;\nUPDATE t2 SET c='seventy-seven thousand three hundred forty' WHERE a=6233;\nUPDATE t2 SET c='seventy-four thousand one hundred twelve' WHERE a=6234;\nUPDATE t2 SET c='one thousand five hundred seventy' WHERE a=6235;\nUPDATE t2 SET c='seventy-five thousand three hundred seventy-one' WHERE a=6236;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-four' WHERE a=6237;\nUPDATE t2 SET c='seventy-six thousand nine hundred' WHERE a=6238;\nUPDATE t2 SET c='ninety-nine thousand four hundred ninety-nine' WHERE a=6239;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-seven' WHERE a=6240;\nUPDATE t2 SET c='eighty-eight thousand four hundred nine' WHERE a=6241;\nUPDATE t2 SET c='thirteen thousand three hundred thirty-four' WHERE a=6242;\nUPDATE t2 SET c='twenty-eight thousand four hundred six' WHERE a=6243;\nUPDATE t2 SET c='ninety-seven thousand eight hundred five' WHERE a=6244;\nUPDATE t2 SET c='twelve thousand six hundred fifty-five' WHERE a=6245;\nUPDATE t2 SET c='fourteen thousand eight hundred ninety-five' WHERE a=6246;\nUPDATE t2 SET c='eighteen thousand four hundred sixty-six' WHERE a=6247;\nUPDATE t2 SET c='eighty-nine thousand one hundred four' WHERE a=6248;\nUPDATE t2 SET c='sixty-two thousand seven hundred ninety-six' WHERE a=6249;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-eight' WHERE a=6250;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=6251;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=6252;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighteen' WHERE a=6253;\nUPDATE t2 SET c='eighty-nine thousand nine hundred seventy-two' WHERE a=6254;\nUPDATE t2 SET c='sixty-three thousand two hundred sixty-one' WHERE a=6255;\nUPDATE t2 SET c='thirty-one thousand three hundred fourteen' WHERE a=6256;\nUPDATE t2 SET c='ninety-four thousand seven hundred' WHERE a=6257;\nUPDATE t2 SET c='forty-five thousand eight hundred one' WHERE a=6258;\nUPDATE t2 SET c='sixty-one thousand twelve' WHERE a=6259;\nUPDATE t2 SET c='fifty-seven thousand seven hundred sixty-two' WHERE a=6260;\nUPDATE t2 SET c='four thousand six hundred fifty-nine' WHERE a=6261;\nUPDATE t2 SET c='fifty-six thousand seventy-six' WHERE a=6262;\nUPDATE t2 SET c='fifty-six thousand five hundred forty' WHERE a=6263;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-eight' WHERE a=6264;\nUPDATE t2 SET c='thirty thousand six hundred seventy' WHERE a=6265;\nUPDATE t2 SET c='sixteen thousand six hundred forty-three' WHERE a=6266;\nUPDATE t2 SET c='nine thousand sixty-seven' WHERE a=6267;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-four' WHERE a=6268;\nUPDATE t2 SET c='fifty-one thousand nine hundred two' WHERE a=6269;\nUPDATE t2 SET c='twenty-nine thousand two hundred thirty-four' WHERE a=6270;\nUPDATE t2 SET c='eighteen thousand two hundred sixty' WHERE a=6271;\nUPDATE t2 SET c='thirty-eight thousand one hundred twenty-one' WHERE a=6272;\nUPDATE t2 SET c='seventy-three thousand four hundred twelve' WHERE a=6273;\nUPDATE t2 SET c='three thousand two hundred eighty-seven' WHERE a=6274;\nUPDATE t2 SET c='seven thousand six hundred forty' WHERE a=6275;\nUPDATE t2 SET c='forty-two thousand three hundred thirty-six' WHERE a=6276;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-seven' WHERE a=6277;\nUPDATE t2 SET c='eighty-three thousand three hundred seventy-four' WHERE a=6278;\nUPDATE t2 SET c='ninety-five thousand five hundred nine' WHERE a=6279;\nUPDATE t2 SET c='eighty-one thousand eight hundred sixty-nine' WHERE a=6280;\nUPDATE t2 SET c='thirty-four thousand six hundred fifteen' WHERE a=6281;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-seven' WHERE a=6282;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-six' WHERE a=6283;\nUPDATE t2 SET c='fifty-six thousand six hundred seventy-four' WHERE a=6284;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirty-eight' WHERE a=6285;\nUPDATE t2 SET c='twenty-four thousand three hundred forty-nine' WHERE a=6286;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-one' WHERE a=6287;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=6288;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty-four' WHERE a=6289;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-three' WHERE a=6290;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-seven' WHERE a=6291;\nUPDATE t2 SET c='one thousand four hundred twenty-nine' WHERE a=6292;\nUPDATE t2 SET c='nineteen thousand six hundred eleven' WHERE a=6293;\nUPDATE t2 SET c='thirty-four thousand four hundred ten' WHERE a=6294;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=6295;\nUPDATE t2 SET c='ninety-three thousand three hundred ninety' WHERE a=6296;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-six' WHERE a=6297;\nUPDATE t2 SET c='fifty-nine thousand six hundred fifteen' WHERE a=6298;\nUPDATE t2 SET c='eighty-six thousand seven hundred fifty-six' WHERE a=6299;\nUPDATE t2 SET c='one thousand one hundred ninety-nine' WHERE a=6300;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventeen' WHERE a=6301;\nUPDATE t2 SET c='four thousand four hundred seventy' WHERE a=6302;\nUPDATE t2 SET c='forty-six thousand nine hundred forty-seven' WHERE a=6303;\nUPDATE t2 SET c='sixty-three thousand seven hundred thirty-five' WHERE a=6304;\nUPDATE t2 SET c='thirty-six thousand four hundred two' WHERE a=6305;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-five' WHERE a=6306;\nUPDATE t2 SET c='forty-five thousand one hundred seventy-five' WHERE a=6307;\nUPDATE t2 SET c='fifty-one thousand five hundred fifteen' WHERE a=6308;\nUPDATE t2 SET c='seventy-eight thousand three hundred eighty-five' WHERE a=6309;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty-one' WHERE a=6310;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-five' WHERE a=6311;\nUPDATE t2 SET c='twenty-six thousand nine hundred fifty-eight' WHERE a=6312;\nUPDATE t2 SET c='fifty thousand thirty-two' WHERE a=6313;\nUPDATE t2 SET c='twenty-nine thousand nine hundred fifty-eight' WHERE a=6314;\nUPDATE t2 SET c='four thousand seven hundred forty-seven' WHERE a=6315;\nUPDATE t2 SET c='seventeen thousand sixty-four' WHERE a=6316;\nUPDATE t2 SET c='sixty-one thousand two hundred eighteen' WHERE a=6317;\nUPDATE t2 SET c='three hundred thirty-seven' WHERE a=6318;\nUPDATE t2 SET c='seven thousand two hundred ninety-seven' WHERE a=6319;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-six' WHERE a=6320;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-six' WHERE a=6321;\nUPDATE t2 SET c='thirty-nine thousand seven hundred two' WHERE a=6322;\nUPDATE t2 SET c='forty-five thousand five hundred twenty-two' WHERE a=6323;\nUPDATE t2 SET c='forty thousand five hundred seventy-two' WHERE a=6324;\nUPDATE t2 SET c='four thousand two hundred forty-five' WHERE a=6325;\nUPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=6326;\nUPDATE t2 SET c='fifty-seven thousand six hundred sixty-nine' WHERE a=6327;\nUPDATE t2 SET c='thirteen thousand five hundred eight' WHERE a=6328;\nUPDATE t2 SET c='fifty-six thousand nine hundred two' WHERE a=6329;\nUPDATE t2 SET c='twenty-one thousand three hundred seventy-five' WHERE a=6330;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-seven' WHERE a=6331;\nUPDATE t2 SET c='fifty-four thousand five hundred fifty-five' WHERE a=6332;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-four' WHERE a=6333;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-six' WHERE a=6334;\nUPDATE t2 SET c='fifty thousand four hundred eight' WHERE a=6335;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-six' WHERE a=6336;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty-eight' WHERE a=6337;\nUPDATE t2 SET c='thirty-nine thousand sixty-nine' WHERE a=6338;\nUPDATE t2 SET c='eighteen thousand nine hundred ninety-eight' WHERE a=6339;\nUPDATE t2 SET c='twenty thousand six hundred thirty' WHERE a=6340;\nUPDATE t2 SET c='ninety-nine thousand forty-seven' WHERE a=6341;\nUPDATE t2 SET c='nine thousand four hundred sixty' WHERE a=6342;\nUPDATE t2 SET c='thirty-one thousand four hundred eighteen' WHERE a=6343;\nUPDATE t2 SET c='forty-six thousand four hundred sixty-six' WHERE a=6344;\nUPDATE t2 SET c='eighty-two thousand eight hundred seven' WHERE a=6345;\nUPDATE t2 SET c='eleven thousand three hundred three' WHERE a=6346;\nUPDATE t2 SET c='ninety-eight thousand nine hundred sixty-five' WHERE a=6347;\nUPDATE t2 SET c='sixty-eight thousand seven hundred' WHERE a=6348;\nUPDATE t2 SET c='seventy-nine thousand nine hundred eighty-seven' WHERE a=6349;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-eight' WHERE a=6350;\nUPDATE t2 SET c='eighty-two thousand one hundred seventy-two' WHERE a=6351;\nUPDATE t2 SET c='fifty thousand seven' WHERE a=6352;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-eight' WHERE a=6353;\nUPDATE t2 SET c='thirty-seven thousand six hundred ninety-three' WHERE a=6354;\nUPDATE t2 SET c='fifty-seven thousand six hundred forty-nine' WHERE a=6355;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventy-four' WHERE a=6356;\nUPDATE t2 SET c='three thousand one' WHERE a=6357;\nUPDATE t2 SET c='forty-six thousand two hundred eighteen' WHERE a=6358;\nUPDATE t2 SET c='sixty-one thousand five hundred thirty-one' WHERE a=6359;\nUPDATE t2 SET c='twenty-eight thousand four hundred eighty-five' WHERE a=6360;\nUPDATE t2 SET c='seven thousand five hundred thirty-one' WHERE a=6361;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-five' WHERE a=6362;\nUPDATE t2 SET c='twenty-five thousand eight hundred twenty-five' WHERE a=6363;\nUPDATE t2 SET c='forty thousand seven hundred sixty' WHERE a=6364;\nUPDATE t2 SET c='eleven thousand eight hundred forty-six' WHERE a=6365;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-four' WHERE a=6366;\nUPDATE t2 SET c='forty-four thousand one hundred forty-seven' WHERE a=6367;\nUPDATE t2 SET c='ninety-one thousand five hundred seventy-two' WHERE a=6368;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety-three' WHERE a=6369;\nUPDATE t2 SET c='forty-four thousand eight hundred thirty-eight' WHERE a=6370;\nUPDATE t2 SET c='six thousand nine hundred seven' WHERE a=6371;\nUPDATE t2 SET c='sixty-three thousand one hundred ninety-two' WHERE a=6372;\nUPDATE t2 SET c='sixty-two thousand four hundred five' WHERE a=6373;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-seven' WHERE a=6374;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifty-five' WHERE a=6375;\nUPDATE t2 SET c='twenty-eight thousand four hundred sixty-five' WHERE a=6376;\nUPDATE t2 SET c='seventy-six thousand two hundred twenty-one' WHERE a=6377;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=6378;\nUPDATE t2 SET c='fifteen thousand four hundred forty-nine' WHERE a=6379;\nUPDATE t2 SET c='sixty-five thousand eight hundred sixty' WHERE a=6380;\nUPDATE t2 SET c='forty-five thousand four hundred eighty' WHERE a=6381;\nUPDATE t2 SET c='forty-five thousand three hundred seventy-four' WHERE a=6382;\nUPDATE t2 SET c='seven hundred ninety' WHERE a=6383;\nUPDATE t2 SET c='forty-nine thousand thirty-five' WHERE a=6384;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-one' WHERE a=6385;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-eight' WHERE a=6386;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-six' WHERE a=6387;\nUPDATE t2 SET c='twelve thousand seven hundred twelve' WHERE a=6388;\nUPDATE t2 SET c='seventy-one thousand eight hundred seventy-eight' WHERE a=6389;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-nine' WHERE a=6390;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-three' WHERE a=6391;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-one' WHERE a=6392;\nUPDATE t2 SET c='ninety-three thousand five hundred seventy-eight' WHERE a=6393;\nUPDATE t2 SET c='seventy-seven thousand one hundred eighty-four' WHERE a=6394;\nUPDATE t2 SET c='eighteen thousand three hundred five' WHERE a=6395;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-six' WHERE a=6396;\nUPDATE t2 SET c='sixty-six thousand seventeen' WHERE a=6397;\nUPDATE t2 SET c='sixty-five thousand twenty-three' WHERE a=6398;\nUPDATE t2 SET c='eighty thousand two hundred ninety-two' WHERE a=6399;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-six' WHERE a=6400;\nUPDATE t2 SET c='forty-eight thousand seventy-six' WHERE a=6401;\nUPDATE t2 SET c='fifty-eight thousand seven hundred thirty-eight' WHERE a=6402;\nUPDATE t2 SET c='fifty-seven thousand nine hundred forty-eight' WHERE a=6403;\nUPDATE t2 SET c='fourteen thousand eight hundred nine' WHERE a=6404;\nUPDATE t2 SET c='three thousand three hundred forty-seven' WHERE a=6405;\nUPDATE t2 SET c='ninety-five thousand five hundred five' WHERE a=6406;\nUPDATE t2 SET c='seventy-eight thousand six hundred three' WHERE a=6407;\nUPDATE t2 SET c='seventy-four thousand seven hundred eighty-three' WHERE a=6408;\nUPDATE t2 SET c='thirty-five thousand two hundred seventeen' WHERE a=6409;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=6410;\nUPDATE t2 SET c='eighty-four thousand two hundred one' WHERE a=6411;\nUPDATE t2 SET c='seventeen thousand five hundred thirteen' WHERE a=6412;\nUPDATE t2 SET c='twenty-three thousand two hundred forty-eight' WHERE a=6413;\nUPDATE t2 SET c='two thousand nine hundred seventeen' WHERE a=6414;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-nine' WHERE a=6415;\nUPDATE t2 SET c='sixty-six thousand two hundred fifty-eight' WHERE a=6416;\nUPDATE t2 SET c='twenty-nine thousand one hundred four' WHERE a=6417;\nUPDATE t2 SET c='ninety thousand four hundred eighty-five' WHERE a=6418;\nUPDATE t2 SET c='twenty-seven thousand three hundred three' WHERE a=6419;\nUPDATE t2 SET c='twenty-nine thousand four hundred forty-eight' WHERE a=6420;\nUPDATE t2 SET c='sixty-eight thousand six hundred forty-six' WHERE a=6421;\nUPDATE t2 SET c='one thousand four hundred fifty-one' WHERE a=6422;\nUPDATE t2 SET c='five thousand sixty-one' WHERE a=6423;\nUPDATE t2 SET c='fourteen thousand eight hundred nineteen' WHERE a=6424;\nUPDATE t2 SET c='ninety-six thousand forty-four' WHERE a=6425;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-six' WHERE a=6426;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-four' WHERE a=6427;\nUPDATE t2 SET c='thirty-three thousand two hundred eleven' WHERE a=6428;\nUPDATE t2 SET c='seventeen thousand seventy-six' WHERE a=6429;\nUPDATE t2 SET c='fifty-two thousand eight hundred thirty-four' WHERE a=6430;\nUPDATE t2 SET c='twenty thousand four hundred seventy-six' WHERE a=6431;\nUPDATE t2 SET c='ninety-six thousand two hundred eighteen' WHERE a=6432;\nUPDATE t2 SET c='eleven thousand four hundred eighty-eight' WHERE a=6433;\nUPDATE t2 SET c='eighty-one thousand seven hundred seventy' WHERE a=6434;\nUPDATE t2 SET c='eighty-eight thousand six hundred ninety-six' WHERE a=6435;\nUPDATE t2 SET c='seventy thousand five hundred thirteen' WHERE a=6436;\nUPDATE t2 SET c='seventy-six thousand six hundred sixty-four' WHERE a=6437;\nUPDATE t2 SET c='fifty-two thousand six hundred fifty-five' WHERE a=6438;\nUPDATE t2 SET c='fifty-five thousand eight hundred sixteen' WHERE a=6439;\nUPDATE t2 SET c='seventy-seven thousand five hundred two' WHERE a=6440;\nUPDATE t2 SET c='eighty-four thousand six hundred eighty-two' WHERE a=6441;\nUPDATE t2 SET c='fifteen thousand nine hundred eight' WHERE a=6442;\nUPDATE t2 SET c='eighty-nine thousand five hundred thirty-eight' WHERE a=6443;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-six' WHERE a=6444;\nUPDATE t2 SET c='nineteen thousand three hundred forty-one' WHERE a=6445;\nUPDATE t2 SET c='ninety-four thousand five hundred four' WHERE a=6446;\nUPDATE t2 SET c='sixty-six thousand three hundred twenty-seven' WHERE a=6447;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-one' WHERE a=6448;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-two' WHERE a=6449;\nUPDATE t2 SET c='five thousand eight hundred' WHERE a=6450;\nUPDATE t2 SET c='fifty-three thousand seven hundred thirty-three' WHERE a=6451;\nUPDATE t2 SET c='sixty-two thousand nine hundred fifty-three' WHERE a=6452;\nUPDATE t2 SET c='twenty-five thousand seven hundred eighty-nine' WHERE a=6453;\nUPDATE t2 SET c='ninety thousand five hundred fifty-two' WHERE a=6454;\nUPDATE t2 SET c='fifty-two thousand four hundred sixteen' WHERE a=6455;\nUPDATE t2 SET c='seventy-six thousand eighty-two' WHERE a=6456;\nUPDATE t2 SET c='seventy-one thousand four hundred forty-three' WHERE a=6457;\nUPDATE t2 SET c='eighty-six thousand two hundred forty-two' WHERE a=6458;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-eight' WHERE a=6459;\nUPDATE t2 SET c='twenty-two thousand one hundred thirty-three' WHERE a=6460;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventeen' WHERE a=6461;\nUPDATE t2 SET c='seventy-eight thousand forty-one' WHERE a=6462;\nUPDATE t2 SET c='eighty-eight thousand nine hundred thirty-seven' WHERE a=6463;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-two' WHERE a=6464;\nUPDATE t2 SET c='one thousand one hundred forty-seven' WHERE a=6465;\nUPDATE t2 SET c='fifteen thousand six hundred seventy-nine' WHERE a=6466;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=6467;\nUPDATE t2 SET c='two thousand seventy-nine' WHERE a=6468;\nUPDATE t2 SET c='thirty-four thousand two hundred forty-two' WHERE a=6469;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-nine' WHERE a=6470;\nUPDATE t2 SET c='ninety-one thousand three hundred two' WHERE a=6471;\nUPDATE t2 SET c='sixty-three thousand two hundred fifty-three' WHERE a=6472;\nUPDATE t2 SET c='ninety-eight thousand five hundred seventy-two' WHERE a=6473;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-four' WHERE a=6474;\nUPDATE t2 SET c='forty-seven thousand three hundred twenty-seven' WHERE a=6475;\nUPDATE t2 SET c='forty-seven thousand eight hundred twenty-six' WHERE a=6476;\nUPDATE t2 SET c='seventy-five thousand three hundred eighty-two' WHERE a=6477;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventy-three' WHERE a=6478;\nUPDATE t2 SET c='sixteen thousand seven hundred forty-two' WHERE a=6479;\nUPDATE t2 SET c='two thousand four hundred fifty-five' WHERE a=6480;\nUPDATE t2 SET c='forty-four thousand three hundred eighty-one' WHERE a=6481;\nUPDATE t2 SET c='twenty-five thousand four hundred thirty-one' WHERE a=6482;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-four' WHERE a=6483;\nUPDATE t2 SET c='fifty-one thousand six hundred three' WHERE a=6484;\nUPDATE t2 SET c='ten thousand six hundred seventy-three' WHERE a=6485;\nUPDATE t2 SET c='ninety-two thousand one hundred forty-four' WHERE a=6486;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-six' WHERE a=6487;\nUPDATE t2 SET c='eighty-five thousand nine hundred sixty' WHERE a=6488;\nUPDATE t2 SET c='thirty-five thousand four hundred eleven' WHERE a=6489;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty' WHERE a=6490;\nUPDATE t2 SET c='forty-six thousand three hundred forty-seven' WHERE a=6491;\nUPDATE t2 SET c='seven thousand nine hundred one' WHERE a=6492;\nUPDATE t2 SET c='twenty-nine thousand two hundred twenty-three' WHERE a=6493;\nUPDATE t2 SET c='forty thousand six hundred sixty-three' WHERE a=6494;\nUPDATE t2 SET c='ninety-two thousand six hundred thirty-seven' WHERE a=6495;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-five' WHERE a=6496;\nUPDATE t2 SET c='ten thousand one hundred five' WHERE a=6497;\nUPDATE t2 SET c='fourteen thousand seven hundred fifty-seven' WHERE a=6498;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-five' WHERE a=6499;\nUPDATE t2 SET c='five hundred thirty-four' WHERE a=6500;\nUPDATE t2 SET c='fifteen thousand nine hundred eighty-one' WHERE a=6501;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-three' WHERE a=6502;\nUPDATE t2 SET c='seventy thousand eight hundred twenty' WHERE a=6503;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty' WHERE a=6504;\nUPDATE t2 SET c='one thousand four hundred sixty-nine' WHERE a=6505;\nUPDATE t2 SET c='one hundred twenty-eight' WHERE a=6506;\nUPDATE t2 SET c='thirty-three thousand five hundred twenty-one' WHERE a=6507;\nUPDATE t2 SET c='forty-six thousand seven hundred six' WHERE a=6508;\nUPDATE t2 SET c='twelve thousand three hundred five' WHERE a=6509;\nUPDATE t2 SET c='eighty-five thousand six hundred two' WHERE a=6510;\nUPDATE t2 SET c='forty-six thousand seven hundred ninety-five' WHERE a=6511;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-three' WHERE a=6512;\nUPDATE t2 SET c='twenty-seven thousand three hundred twenty-one' WHERE a=6513;\nUPDATE t2 SET c='forty-five thousand four hundred eleven' WHERE a=6514;\nUPDATE t2 SET c='twenty-six thousand two hundred one' WHERE a=6515;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-three' WHERE a=6516;\nUPDATE t2 SET c='eighty-three thousand eight hundred eighty-nine' WHERE a=6517;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-seven' WHERE a=6518;\nUPDATE t2 SET c='eighty thousand seven hundred two' WHERE a=6519;\nUPDATE t2 SET c='ninety thousand nine hundred eighty-six' WHERE a=6520;\nUPDATE t2 SET c='eighty-three thousand eight hundred thirty-seven' WHERE a=6521;\nUPDATE t2 SET c='ninety-two thousand one hundred twenty-three' WHERE a=6522;\nUPDATE t2 SET c='ninety-three thousand two hundred sixty-five' WHERE a=6523;\nUPDATE t2 SET c='seventy thousand six hundred forty-four' WHERE a=6524;\nUPDATE t2 SET c='eighteen thousand three hundred sixteen' WHERE a=6525;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventeen' WHERE a=6526;\nUPDATE t2 SET c='four thousand nine hundred eighty' WHERE a=6527;\nUPDATE t2 SET c='six thousand six hundred sixty-five' WHERE a=6528;\nUPDATE t2 SET c='five thousand two hundred seven' WHERE a=6529;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-two' WHERE a=6530;\nUPDATE t2 SET c='ninety-seven thousand three hundred forty-four' WHERE a=6531;\nUPDATE t2 SET c='two thousand two hundred fifty-four' WHERE a=6532;\nUPDATE t2 SET c='twenty-one thousand five hundred nine' WHERE a=6533;\nUPDATE t2 SET c='sixty-one thousand four hundred forty' WHERE a=6534;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eighty-eight' WHERE a=6535;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=6536;\nUPDATE t2 SET c='nineteen thousand three hundred nineteen' WHERE a=6537;\nUPDATE t2 SET c='six thousand seven hundred ninety-seven' WHERE a=6538;\nUPDATE t2 SET c='twenty-nine thousand three hundred sixty-one' WHERE a=6539;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-six' WHERE a=6540;\nUPDATE t2 SET c='ninety-three thousand three hundred fifty-seven' WHERE a=6541;\nUPDATE t2 SET c='fifty-six thousand nine hundred sixty-seven' WHERE a=6542;\nUPDATE t2 SET c='seventy-eight thousand four hundred twenty-one' WHERE a=6543;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-five' WHERE a=6544;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy' WHERE a=6545;\nUPDATE t2 SET c='sixty-three thousand eighty-three' WHERE a=6546;\nUPDATE t2 SET c='eight thousand three hundred fifty-seven' WHERE a=6547;\nUPDATE t2 SET c='forty-three thousand three hundred one' WHERE a=6548;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty-five' WHERE a=6549;\nUPDATE t2 SET c='forty-two thousand seven hundred thirty-six' WHERE a=6550;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-nine' WHERE a=6551;\nUPDATE t2 SET c='three thousand seven hundred eighty-five' WHERE a=6552;\nUPDATE t2 SET c='forty-five thousand four hundred five' WHERE a=6553;\nUPDATE t2 SET c='thirty-five thousand forty-nine' WHERE a=6554;\nUPDATE t2 SET c='ten thousand eight hundred thirty-eight' WHERE a=6555;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-nine' WHERE a=6556;\nUPDATE t2 SET c='sixty-four thousand two hundred twenty-nine' WHERE a=6557;\nUPDATE t2 SET c='ninety-one thousand four hundred twenty' WHERE a=6558;\nUPDATE t2 SET c='forty-five thousand one hundred twenty-two' WHERE a=6559;\nUPDATE t2 SET c='eighty thousand seven hundred twenty-six' WHERE a=6560;\nUPDATE t2 SET c='seventy-one thousand eight hundred thirty-seven' WHERE a=6561;\nUPDATE t2 SET c='seventy-four thousand four hundred eighty-seven' WHERE a=6562;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-five' WHERE a=6563;\nUPDATE t2 SET c='eighty-seven thousand two hundred eight' WHERE a=6564;\nUPDATE t2 SET c='seven thousand one hundred thirty-one' WHERE a=6565;\nUPDATE t2 SET c='thirty-one thousand three hundred thirty-one' WHERE a=6566;\nUPDATE t2 SET c='seventy-nine thousand five hundred seventy-four' WHERE a=6567;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty' WHERE a=6568;\nUPDATE t2 SET c='sixteen thousand six hundred forty-eight' WHERE a=6569;\nUPDATE t2 SET c='seventy-nine thousand nine hundred one' WHERE a=6570;\nUPDATE t2 SET c='seventy-two thousand six hundred thirty-six' WHERE a=6571;\nUPDATE t2 SET c='ninety-two thousand sixty-nine' WHERE a=6572;\nUPDATE t2 SET c='three thousand five hundred six' WHERE a=6573;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-three' WHERE a=6574;\nUPDATE t2 SET c='three thousand eight hundred seventy-six' WHERE a=6575;\nUPDATE t2 SET c='twenty-nine thousand three hundred eleven' WHERE a=6576;\nUPDATE t2 SET c='nine thousand eight hundred thirty-two' WHERE a=6577;\nUPDATE t2 SET c='ninety-six thousand four hundred thirty-nine' WHERE a=6578;\nUPDATE t2 SET c='seventy-four thousand nine hundred ten' WHERE a=6579;\nUPDATE t2 SET c='sixty-four thousand eight hundred twelve' WHERE a=6580;\nUPDATE t2 SET c='seventy-three thousand seven hundred fifty-five' WHERE a=6581;\nUPDATE t2 SET c='thirteen thousand three hundred sixty-six' WHERE a=6582;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-six' WHERE a=6583;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-five' WHERE a=6584;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty-one' WHERE a=6585;\nUPDATE t2 SET c='sixty-three thousand five hundred ninety-three' WHERE a=6586;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-one' WHERE a=6587;\nUPDATE t2 SET c='ninety-seven thousand eight hundred seventy-three' WHERE a=6588;\nUPDATE t2 SET c='eighty thousand one hundred thirty' WHERE a=6589;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-six' WHERE a=6590;\nUPDATE t2 SET c='twenty-six thousand seven hundred six' WHERE a=6591;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixty-four' WHERE a=6592;\nUPDATE t2 SET c='eighty-four thousand seven hundred five' WHERE a=6593;\nUPDATE t2 SET c='ninety-eight thousand seven hundred forty-nine' WHERE a=6594;\nUPDATE t2 SET c='twelve thousand one hundred ninety-nine' WHERE a=6595;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-one' WHERE a=6596;\nUPDATE t2 SET c='seventy-three thousand four hundred sixty-two' WHERE a=6597;\nUPDATE t2 SET c='sixty-two thousand five hundred fifty-five' WHERE a=6598;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-three' WHERE a=6599;\nUPDATE t2 SET c='forty-three thousand seventy-eight' WHERE a=6600;\nUPDATE t2 SET c='one thousand eight hundred nineteen' WHERE a=6601;\nUPDATE t2 SET c='eleven thousand one hundred fifty-nine' WHERE a=6602;\nUPDATE t2 SET c='sixty thousand eight hundred seven' WHERE a=6603;\nUPDATE t2 SET c='forty-six thousand four hundred forty-three' WHERE a=6604;\nUPDATE t2 SET c='sixty-three thousand five hundred ninety-two' WHERE a=6605;\nUPDATE t2 SET c='eighty-one thousand nine hundred forty-eight' WHERE a=6606;\nUPDATE t2 SET c='ninety-one thousand nine hundred two' WHERE a=6607;\nUPDATE t2 SET c='fifty thousand thirty-six' WHERE a=6608;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-six' WHERE a=6609;\nUPDATE t2 SET c='seventy-nine thousand six hundred fifty-three' WHERE a=6610;\nUPDATE t2 SET c='twenty-seven thousand ninety-one' WHERE a=6611;\nUPDATE t2 SET c='ninety-one thousand six hundred fifty-five' WHERE a=6612;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-four' WHERE a=6613;\nUPDATE t2 SET c='fifty thousand two hundred thirty-one' WHERE a=6614;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-six' WHERE a=6615;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-two' WHERE a=6616;\nUPDATE t2 SET c='thirty-seven thousand six hundred twenty-two' WHERE a=6617;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=6618;\nUPDATE t2 SET c='twelve thousand five hundred forty-one' WHERE a=6619;\nUPDATE t2 SET c='seventy-five thousand ten' WHERE a=6620;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighty-five' WHERE a=6621;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-four' WHERE a=6622;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-six' WHERE a=6623;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-four' WHERE a=6624;\nUPDATE t2 SET c='eighty-seven thousand three hundred seventy-six' WHERE a=6625;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy' WHERE a=6626;\nUPDATE t2 SET c='twenty-seven thousand ninety-five' WHERE a=6627;\nUPDATE t2 SET c='eighty-eight thousand seventy-four' WHERE a=6628;\nUPDATE t2 SET c='eighty thousand four hundred fifteen' WHERE a=6629;\nUPDATE t2 SET c='five thousand nine hundred fifty-two' WHERE a=6630;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-three' WHERE a=6631;\nUPDATE t2 SET c='sixty-four thousand three hundred ninety-three' WHERE a=6632;\nUPDATE t2 SET c='seventy-one thousand five hundred sixty-four' WHERE a=6633;\nUPDATE t2 SET c='eighty-one thousand four hundred eighty-five' WHERE a=6634;\nUPDATE t2 SET c='thirty-six thousand five hundred fifty-seven' WHERE a=6635;\nUPDATE t2 SET c='eleven thousand four hundred ninety-eight' WHERE a=6636;\nUPDATE t2 SET c='ninety-two thousand seven hundred forty-three' WHERE a=6637;\nUPDATE t2 SET c='ninety-eight thousand nine hundred eighty-nine' WHERE a=6638;\nUPDATE t2 SET c='sixty thousand four hundred seventy-eight' WHERE a=6639;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty' WHERE a=6640;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=6641;\nUPDATE t2 SET c='fifty thousand seven hundred thirty-four' WHERE a=6642;\nUPDATE t2 SET c='one thousand sixty-six' WHERE a=6643;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-five' WHERE a=6644;\nUPDATE t2 SET c='ninety thousand eight hundred sixty-nine' WHERE a=6645;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-four' WHERE a=6646;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=6647;\nUPDATE t2 SET c='sixty-nine thousand seven hundred sixty-six' WHERE a=6648;\nUPDATE t2 SET c='eighty-three thousand four hundred forty' WHERE a=6649;\nUPDATE t2 SET c='sixty-six thousand one hundred twenty-four' WHERE a=6650;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-four' WHERE a=6651;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-five' WHERE a=6652;\nUPDATE t2 SET c='fifteen thousand sixty-nine' WHERE a=6653;\nUPDATE t2 SET c='thirteen thousand four hundred twenty-eight' WHERE a=6654;\nUPDATE t2 SET c='ninety-three thousand one hundred ninety' WHERE a=6655;\nUPDATE t2 SET c='eighty-one thousand one hundred sixty-four' WHERE a=6656;\nUPDATE t2 SET c='fifty-three thousand nine hundred eighty-two' WHERE a=6657;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-nine' WHERE a=6658;\nUPDATE t2 SET c='twenty-one thousand seventy-two' WHERE a=6659;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-eight' WHERE a=6660;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty' WHERE a=6661;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=6662;\nUPDATE t2 SET c='sixty-seven thousand eight hundred seventeen' WHERE a=6663;\nUPDATE t2 SET c='ninety-five thousand seventy-two' WHERE a=6664;\nUPDATE t2 SET c='seventy-two thousand five hundred thirty-nine' WHERE a=6665;\nUPDATE t2 SET c='eighty-eight thousand sixty-eight' WHERE a=6666;\nUPDATE t2 SET c='sixty-seven thousand one hundred fifty-four' WHERE a=6667;\nUPDATE t2 SET c='twenty-nine thousand six hundred forty-five' WHERE a=6668;\nUPDATE t2 SET c='fifteen thousand two hundred four' WHERE a=6669;\nUPDATE t2 SET c='seventy thousand four hundred seventy-two' WHERE a=6670;\nUPDATE t2 SET c='forty thousand seven hundred eighty-seven' WHERE a=6671;\nUPDATE t2 SET c='twenty-eight thousand four hundred' WHERE a=6672;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety-seven' WHERE a=6673;\nUPDATE t2 SET c='sixty-nine thousand four hundred eight' WHERE a=6674;\nUPDATE t2 SET c='thirteen thousand five hundred four' WHERE a=6675;\nUPDATE t2 SET c='four thousand nine hundred twenty-four' WHERE a=6676;\nUPDATE t2 SET c='ninety-one thousand three hundred thirteen' WHERE a=6677;\nUPDATE t2 SET c='twenty thousand two hundred sixty-two' WHERE a=6678;\nUPDATE t2 SET c='eighteen thousand five hundred sixty-six' WHERE a=6679;\nUPDATE t2 SET c='twenty-six thousand seven hundred fifty-eight' WHERE a=6680;\nUPDATE t2 SET c='eighty thousand one hundred fifty-five' WHERE a=6681;\nUPDATE t2 SET c='seventy-eight thousand three hundred ten' WHERE a=6682;\nUPDATE t2 SET c='fourteen thousand one hundred five' WHERE a=6683;\nUPDATE t2 SET c='sixty-six thousand five hundred ten' WHERE a=6684;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-seven' WHERE a=6685;\nUPDATE t2 SET c='thirty-two thousand two hundred thirty' WHERE a=6686;\nUPDATE t2 SET c='two thousand nine hundred thirty-five' WHERE a=6687;\nUPDATE t2 SET c='seventy-three thousand three hundred twenty-nine' WHERE a=6688;\nUPDATE t2 SET c='fifty-five thousand eight hundred' WHERE a=6689;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-four' WHERE a=6690;\nUPDATE t2 SET c='forty-two thousand six hundred eleven' WHERE a=6691;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty-seven' WHERE a=6692;\nUPDATE t2 SET c='forty-nine thousand ninety-three' WHERE a=6693;\nUPDATE t2 SET c='fifty-six thousand four hundred fifty-three' WHERE a=6694;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-six' WHERE a=6695;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-eight' WHERE a=6696;\nUPDATE t2 SET c='eighty thousand six hundred fifteen' WHERE a=6697;\nUPDATE t2 SET c='sixteen thousand four hundred seventy-eight' WHERE a=6698;\nUPDATE t2 SET c='seventy-seven thousand six hundred thirty-three' WHERE a=6699;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-four' WHERE a=6700;\nUPDATE t2 SET c='eighteen thousand two hundred ninety-six' WHERE a=6701;\nUPDATE t2 SET c='seven thousand eight hundred twenty-six' WHERE a=6702;\nUPDATE t2 SET c='thirty thousand two hundred seventy-seven' WHERE a=6703;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-six' WHERE a=6704;\nUPDATE t2 SET c='eighty thousand two hundred thirty-nine' WHERE a=6705;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-two' WHERE a=6706;\nUPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=6707;\nUPDATE t2 SET c='fifty-eight thousand three hundred thirty-nine' WHERE a=6708;\nUPDATE t2 SET c='fifty-two thousand forty-six' WHERE a=6709;\nUPDATE t2 SET c='four thousand two hundred eighty-nine' WHERE a=6710;\nUPDATE t2 SET c='forty-nine thousand six hundred eighteen' WHERE a=6711;\nUPDATE t2 SET c='seventy-six thousand six hundred thirty-seven' WHERE a=6712;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty' WHERE a=6713;\nUPDATE t2 SET c='twenty-one thousand seven hundred eighty-two' WHERE a=6714;\nUPDATE t2 SET c='six thousand eight hundred eighteen' WHERE a=6715;\nUPDATE t2 SET c='ninety-nine thousand five hundred thirty-four' WHERE a=6716;\nUPDATE t2 SET c='eighty-five thousand five hundred twenty-nine' WHERE a=6717;\nUPDATE t2 SET c='four hundred ninety-five' WHERE a=6718;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-one' WHERE a=6719;\nUPDATE t2 SET c='ninety-nine thousand eight hundred forty-nine' WHERE a=6720;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety' WHERE a=6721;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty' WHERE a=6722;\nUPDATE t2 SET c='seventy-four thousand four hundred sixty-five' WHERE a=6723;\nUPDATE t2 SET c='fifteen thousand twenty-three' WHERE a=6724;\nUPDATE t2 SET c='fifty thousand eight hundred forty-one' WHERE a=6725;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-five' WHERE a=6726;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-eight' WHERE a=6727;\nUPDATE t2 SET c='eighty-five thousand six hundred ninety-one' WHERE a=6728;\nUPDATE t2 SET c='nine thousand six hundred ninety' WHERE a=6729;\nUPDATE t2 SET c='four thousand nine hundred seventy-two' WHERE a=6730;\nUPDATE t2 SET c='forty-two thousand nine hundred sixty-five' WHERE a=6731;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-nine' WHERE a=6732;\nUPDATE t2 SET c='eighty thousand five hundred thirty-one' WHERE a=6733;\nUPDATE t2 SET c='eighty-six thousand four hundred seventeen' WHERE a=6734;\nUPDATE t2 SET c='sixty-two thousand nine hundred fifty-five' WHERE a=6735;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty-two' WHERE a=6736;\nUPDATE t2 SET c='ninety-one thousand five hundred ninety-two' WHERE a=6737;\nUPDATE t2 SET c='ninety-four thousand thirty-one' WHERE a=6738;\nUPDATE t2 SET c='eighty-seven thousand one hundred twenty-eight' WHERE a=6739;\nUPDATE t2 SET c='fifty-seven thousand four hundred ninety-five' WHERE a=6740;\nUPDATE t2 SET c='eighty-six thousand two hundred twenty' WHERE a=6741;\nUPDATE t2 SET c='forty-five thousand nine hundred fourteen' WHERE a=6742;\nUPDATE t2 SET c='sixty-five thousand nine hundred twenty-eight' WHERE a=6743;\nUPDATE t2 SET c='sixty-one thousand one hundred forty-six' WHERE a=6744;\nUPDATE t2 SET c='twenty-two thousand three hundred eight' WHERE a=6745;\nUPDATE t2 SET c='sixty thousand seven hundred eighty-four' WHERE a=6746;\nUPDATE t2 SET c='seventy-four thousand seventy' WHERE a=6747;\nUPDATE t2 SET c='twenty-nine thousand eight hundred fifty-two' WHERE a=6748;\nUPDATE t2 SET c='fifty-four thousand two hundred ten' WHERE a=6749;\nUPDATE t2 SET c='seventy thousand four hundred four' WHERE a=6750;\nUPDATE t2 SET c='seventy-eight thousand seven hundred eleven' WHERE a=6751;\nUPDATE t2 SET c='four thousand two hundred twenty-four' WHERE a=6752;\nUPDATE t2 SET c='one hundred twenty-nine' WHERE a=6753;\nUPDATE t2 SET c='eighty thousand three hundred eighty-three' WHERE a=6754;\nUPDATE t2 SET c='forty-one thousand ninety-four' WHERE a=6755;\nUPDATE t2 SET c='four hundred fifty' WHERE a=6756;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-nine' WHERE a=6757;\nUPDATE t2 SET c='seventy-four thousand four hundred one' WHERE a=6758;\nUPDATE t2 SET c='ninety-seven thousand eighty' WHERE a=6759;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-three' WHERE a=6760;\nUPDATE t2 SET c='seven thousand two hundred eighty-eight' WHERE a=6761;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-six' WHERE a=6762;\nUPDATE t2 SET c='sixty-one thousand three hundred' WHERE a=6763;\nUPDATE t2 SET c='ten thousand one hundred seventy-nine' WHERE a=6764;\nUPDATE t2 SET c='thirteen thousand two hundred four' WHERE a=6765;\nUPDATE t2 SET c='twenty-six thousand two hundred sixty-four' WHERE a=6766;\nUPDATE t2 SET c='fifty-six thousand ten' WHERE a=6767;\nUPDATE t2 SET c='seventy-three thousand seven hundred eighty-three' WHERE a=6768;\nUPDATE t2 SET c='twenty-four thousand nine hundred fifty-five' WHERE a=6769;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-two' WHERE a=6770;\nUPDATE t2 SET c='seventeen thousand one hundred one' WHERE a=6771;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-one' WHERE a=6772;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-five' WHERE a=6773;\nUPDATE t2 SET c='ninety-one thousand two hundred ninety-eight' WHERE a=6774;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-one' WHERE a=6775;\nUPDATE t2 SET c='sixteen thousand six hundred fifteen' WHERE a=6776;\nUPDATE t2 SET c='ninety-six thousand two hundred fifty' WHERE a=6777;\nUPDATE t2 SET c='eighty-four thousand six hundred seventy-two' WHERE a=6778;\nUPDATE t2 SET c='twenty-seven thousand seven hundred thirty-five' WHERE a=6779;\nUPDATE t2 SET c='three thousand four hundred thirty-seven' WHERE a=6780;\nUPDATE t2 SET c='seventy-one thousand three hundred eighteen' WHERE a=6781;\nUPDATE t2 SET c='sixteen thousand eight hundred sixty-two' WHERE a=6782;\nUPDATE t2 SET c='twenty-three thousand one hundred fifty-eight' WHERE a=6783;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-four' WHERE a=6784;\nUPDATE t2 SET c='ninety-three thousand two hundred fifty-five' WHERE a=6785;\nUPDATE t2 SET c='twenty-four thousand four hundred sixty-four' WHERE a=6786;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-four' WHERE a=6787;\nUPDATE t2 SET c='eighteen thousand three hundred seventy-eight' WHERE a=6788;\nUPDATE t2 SET c='eight thousand four hundred one' WHERE a=6789;\nUPDATE t2 SET c='thirty-six thousand eighty-six' WHERE a=6790;\nUPDATE t2 SET c='one thousand six hundred thirty-three' WHERE a=6791;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-nine' WHERE a=6792;\nUPDATE t2 SET c='six hundred sixteen' WHERE a=6793;\nUPDATE t2 SET c='twenty-two thousand five hundred three' WHERE a=6794;\nUPDATE t2 SET c='thirty-one thousand four hundred thirty-three' WHERE a=6795;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixteen' WHERE a=6796;\nUPDATE t2 SET c='seventeen thousand one hundred eighty-two' WHERE a=6797;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-three' WHERE a=6798;\nUPDATE t2 SET c='forty-four thousand nine hundred eighty-seven' WHERE a=6799;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-one' WHERE a=6800;\nUPDATE t2 SET c='four thousand five hundred eighty-eight' WHERE a=6801;\nUPDATE t2 SET c='thirty-seven thousand eight hundred eighty-nine' WHERE a=6802;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-four' WHERE a=6803;\nUPDATE t2 SET c='thirty-six thousand one hundred eighty-nine' WHERE a=6804;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-three' WHERE a=6805;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-two' WHERE a=6806;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-nine' WHERE a=6807;\nUPDATE t2 SET c='one thousand three hundred eighty-five' WHERE a=6808;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=6809;\nUPDATE t2 SET c='four thousand seven hundred sixty-nine' WHERE a=6810;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-four' WHERE a=6811;\nUPDATE t2 SET c='three thousand nine hundred seventeen' WHERE a=6812;\nUPDATE t2 SET c='ninety-nine thousand two hundred twenty-one' WHERE a=6813;\nUPDATE t2 SET c='eighty thousand seven hundred fourteen' WHERE a=6814;\nUPDATE t2 SET c='forty thousand four hundred two' WHERE a=6815;\nUPDATE t2 SET c='two thousand six hundred forty-two' WHERE a=6816;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-five' WHERE a=6817;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-four' WHERE a=6818;\nUPDATE t2 SET c='seven thousand eight hundred forty-five' WHERE a=6819;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-five' WHERE a=6820;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-one' WHERE a=6821;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-one' WHERE a=6822;\nUPDATE t2 SET c='thirty-three thousand three hundred seventy-five' WHERE a=6823;\nUPDATE t2 SET c='twenty-five thousand three hundred thirteen' WHERE a=6824;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-nine' WHERE a=6825;\nUPDATE t2 SET c='twenty-two thousand one hundred ninety-three' WHERE a=6826;\nUPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=6827;\nUPDATE t2 SET c='twenty-five thousand six hundred thirty-six' WHERE a=6828;\nUPDATE t2 SET c='sixteen thousand seven hundred eighty-five' WHERE a=6829;\nUPDATE t2 SET c='fifty-eight thousand seven hundred five' WHERE a=6830;\nUPDATE t2 SET c='forty-one thousand two hundred sixty' WHERE a=6831;\nUPDATE t2 SET c='forty-six thousand two hundred twenty-nine' WHERE a=6832;\nUPDATE t2 SET c='ninety-one thousand eight hundred seventy' WHERE a=6833;\nUPDATE t2 SET c='twenty-three thousand seven hundred twenty-eight' WHERE a=6834;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty-six' WHERE a=6835;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-three' WHERE a=6836;\nUPDATE t2 SET c='fourteen thousand four hundred forty-four' WHERE a=6837;\nUPDATE t2 SET c='eighty-nine thousand forty-four' WHERE a=6838;\nUPDATE t2 SET c='fifteen thousand five hundred fifty-two' WHERE a=6839;\nUPDATE t2 SET c='twenty-three thousand five hundred four' WHERE a=6840;\nUPDATE t2 SET c='fifty-eight thousand eight hundred seventy-one' WHERE a=6841;\nUPDATE t2 SET c='four thousand five hundred eighty-one' WHERE a=6842;\nUPDATE t2 SET c='twenty-one thousand six hundred fifty-five' WHERE a=6843;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-three' WHERE a=6844;\nUPDATE t2 SET c='thirty-two thousand one hundred one' WHERE a=6845;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-nine' WHERE a=6846;\nUPDATE t2 SET c='seventy-four thousand sixty-eight' WHERE a=6847;\nUPDATE t2 SET c='thirty-eight thousand three hundred sixty-eight' WHERE a=6848;\nUPDATE t2 SET c='five thousand one hundred twenty-five' WHERE a=6849;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty' WHERE a=6850;\nUPDATE t2 SET c='eighty-one thousand three hundred fourteen' WHERE a=6851;\nUPDATE t2 SET c='eighty-one thousand five hundred forty-four' WHERE a=6852;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=6853;\nUPDATE t2 SET c='seventy thousand one hundred forty-seven' WHERE a=6854;\nUPDATE t2 SET c='seventy-nine thousand eighty-two' WHERE a=6855;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventeen' WHERE a=6856;\nUPDATE t2 SET c='seventy-six thousand four hundred two' WHERE a=6857;\nUPDATE t2 SET c='seventy-four thousand seven hundred sixty-seven' WHERE a=6858;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-five' WHERE a=6859;\nUPDATE t2 SET c='thirty thousand nine hundred sixty-four' WHERE a=6860;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-one' WHERE a=6861;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-five' WHERE a=6862;\nUPDATE t2 SET c='sixty-six thousand five hundred ninety-seven' WHERE a=6863;\nUPDATE t2 SET c='sixty-one thousand two hundred twelve' WHERE a=6864;\nUPDATE t2 SET c='eighteen thousand one hundred thirty' WHERE a=6865;\nUPDATE t2 SET c='forty-four thousand three hundred thirty-nine' WHERE a=6866;\nUPDATE t2 SET c='seventy-seven thousand four hundred fifty-five' WHERE a=6867;\nUPDATE t2 SET c='four thousand two hundred thirty-five' WHERE a=6868;\nUPDATE t2 SET c='seven thousand two hundred sixty-nine' WHERE a=6869;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-one' WHERE a=6870;\nUPDATE t2 SET c='forty-one thousand six hundred seventy' WHERE a=6871;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-seven' WHERE a=6872;\nUPDATE t2 SET c='twenty-four thousand nine hundred seventy-nine' WHERE a=6873;\nUPDATE t2 SET c='eighty-two thousand five hundred six' WHERE a=6874;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-one' WHERE a=6875;\nUPDATE t2 SET c='two thousand three hundred twenty-four' WHERE a=6876;\nUPDATE t2 SET c='forty-eight thousand nine hundred forty-eight' WHERE a=6877;\nUPDATE t2 SET c='thirty-two thousand six hundred ten' WHERE a=6878;\nUPDATE t2 SET c='ninety-one thousand one hundred eighteen' WHERE a=6879;\nUPDATE t2 SET c='seventy-nine thousand two hundred forty-three' WHERE a=6880;\nUPDATE t2 SET c='eighty thousand six hundred forty-two' WHERE a=6881;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-five' WHERE a=6882;\nUPDATE t2 SET c='eighty-two thousand one hundred eighty-three' WHERE a=6883;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-five' WHERE a=6884;\nUPDATE t2 SET c='sixty-one thousand six hundred six' WHERE a=6885;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty-six' WHERE a=6886;\nUPDATE t2 SET c='eighty-seven thousand seven hundred eighty-five' WHERE a=6887;\nUPDATE t2 SET c='fifty-seven thousand five hundred thirty-seven' WHERE a=6888;\nUPDATE t2 SET c='eighty-eight thousand one hundred fourteen' WHERE a=6889;\nUPDATE t2 SET c='eighty-three thousand six hundred forty-two' WHERE a=6890;\nUPDATE t2 SET c='twenty-three thousand ninety-five' WHERE a=6891;\nUPDATE t2 SET c='nine thousand four hundred six' WHERE a=6892;\nUPDATE t2 SET c='eighteen thousand seven hundred forty-seven' WHERE a=6893;\nUPDATE t2 SET c='twenty-three thousand four hundred fifty-five' WHERE a=6894;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-one' WHERE a=6895;\nUPDATE t2 SET c='twelve thousand seven hundred' WHERE a=6896;\nUPDATE t2 SET c='eighty-six thousand one hundred forty-seven' WHERE a=6897;\nUPDATE t2 SET c='sixty-seven thousand seven hundred seventy-one' WHERE a=6898;\nUPDATE t2 SET c='sixty-five thousand five hundred sixty-seven' WHERE a=6899;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy' WHERE a=6900;\nUPDATE t2 SET c='forty-one thousand ninety-two' WHERE a=6901;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-one' WHERE a=6902;\nUPDATE t2 SET c='forty-one thousand seven hundred eighty-one' WHERE a=6903;\nUPDATE t2 SET c='seventy-nine thousand seven hundred eighty-three' WHERE a=6904;\nUPDATE t2 SET c='seventy-nine thousand four hundred fifty-two' WHERE a=6905;\nUPDATE t2 SET c='forty-eight thousand nine hundred fifty-two' WHERE a=6906;\nUPDATE t2 SET c='eighty-nine thousand sixty-three' WHERE a=6907;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty-five' WHERE a=6908;\nUPDATE t2 SET c='fifty-three thousand seventy' WHERE a=6909;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-one' WHERE a=6910;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-one' WHERE a=6911;\nUPDATE t2 SET c='seventy-eight thousand eight hundred thirty-three' WHERE a=6912;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-five' WHERE a=6913;\nUPDATE t2 SET c='thirty-nine thousand two hundred nineteen' WHERE a=6914;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-eight' WHERE a=6915;\nUPDATE t2 SET c='sixty-nine thousand four hundred forty-four' WHERE a=6916;\nUPDATE t2 SET c='thirty-three thousand three hundred sixty-four' WHERE a=6917;\nUPDATE t2 SET c='forty thousand ninety-six' WHERE a=6918;\nUPDATE t2 SET c='thirty-six thousand nine hundred sixty' WHERE a=6919;\nUPDATE t2 SET c='forty-eight thousand three hundred sixty-two' WHERE a=6920;\nUPDATE t2 SET c='sixty thousand seven hundred ten' WHERE a=6921;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty-two' WHERE a=6922;\nUPDATE t2 SET c='thirty thousand six hundred fifteen' WHERE a=6923;\nUPDATE t2 SET c='fifty-five thousand seven hundred seven' WHERE a=6924;\nUPDATE t2 SET c='sixteen thousand three hundred eighty-seven' WHERE a=6925;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-three' WHERE a=6926;\nUPDATE t2 SET c='eighty-eight thousand five hundred seventy-nine' WHERE a=6927;\nUPDATE t2 SET c='forty-five thousand six hundred twenty-six' WHERE a=6928;\nUPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=6929;\nUPDATE t2 SET c='thirty-one thousand one hundred thirty' WHERE a=6930;\nUPDATE t2 SET c='thirty-eight thousand eighty-three' WHERE a=6931;\nUPDATE t2 SET c='seventy-six thousand five hundred seventy-eight' WHERE a=6932;\nUPDATE t2 SET c='twenty thousand eight hundred fifty-two' WHERE a=6933;\nUPDATE t2 SET c='fifty-six thousand two hundred ninety-six' WHERE a=6934;\nUPDATE t2 SET c='one thousand two hundred thirty-four' WHERE a=6935;\nUPDATE t2 SET c='twenty-three thousand one hundred ninety' WHERE a=6936;\nUPDATE t2 SET c='twenty-six thousand eight hundred eleven' WHERE a=6937;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty-two' WHERE a=6938;\nUPDATE t2 SET c='ninety-one thousand seven hundred forty-five' WHERE a=6939;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-eight' WHERE a=6940;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-three' WHERE a=6941;\nUPDATE t2 SET c='nine thousand three hundred two' WHERE a=6942;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-one' WHERE a=6943;\nUPDATE t2 SET c='eleven thousand eight hundred forty-six' WHERE a=6944;\nUPDATE t2 SET c='forty-two thousand one hundred seventy-eight' WHERE a=6945;\nUPDATE t2 SET c='sixty-nine thousand twenty-five' WHERE a=6946;\nUPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=6947;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-five' WHERE a=6948;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-five' WHERE a=6949;\nUPDATE t2 SET c='thirteen thousand eight hundred ninety-two' WHERE a=6950;\nUPDATE t2 SET c='one thousand three hundred eighteen' WHERE a=6951;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-nine' WHERE a=6952;\nUPDATE t2 SET c='fifty-three thousand six hundred forty-one' WHERE a=6953;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-seven' WHERE a=6954;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=6955;\nUPDATE t2 SET c='sixty-six thousand six hundred thirty-five' WHERE a=6956;\nUPDATE t2 SET c='forty-six thousand five hundred fifty-two' WHERE a=6957;\nUPDATE t2 SET c='twenty thousand one hundred ninety-two' WHERE a=6958;\nUPDATE t2 SET c='eighteen thousand six hundred forty' WHERE a=6959;\nUPDATE t2 SET c='sixty-one thousand one hundred ten' WHERE a=6960;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-three' WHERE a=6961;\nUPDATE t2 SET c='seventy-two thousand three hundred forty-four' WHERE a=6962;\nUPDATE t2 SET c='sixty-five thousand four hundred twenty-six' WHERE a=6963;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-two' WHERE a=6964;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventy-two' WHERE a=6965;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-four' WHERE a=6966;\nUPDATE t2 SET c='seven thousand nine hundred sixty-five' WHERE a=6967;\nUPDATE t2 SET c='ninety-two thousand seventy-three' WHERE a=6968;\nUPDATE t2 SET c='thirty-one thousand five hundred ninety-one' WHERE a=6969;\nUPDATE t2 SET c='sixty-three thousand one hundred ninety-six' WHERE a=6970;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-three' WHERE a=6971;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-four' WHERE a=6972;\nUPDATE t2 SET c='fifty-three thousand forty-two' WHERE a=6973;\nUPDATE t2 SET c='six thousand seven hundred forty-three' WHERE a=6974;\nUPDATE t2 SET c='seventy-three thousand nine hundred eighty-three' WHERE a=6975;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy-three' WHERE a=6976;\nUPDATE t2 SET c='fifty thousand two hundred seventy-eight' WHERE a=6977;\nUPDATE t2 SET c='ninety-nine thousand two hundred thirty-nine' WHERE a=6978;\nUPDATE t2 SET c='fifty-nine thousand nine hundred twenty-seven' WHERE a=6979;\nUPDATE t2 SET c='sixty-six thousand five hundred thirty-eight' WHERE a=6980;\nUPDATE t2 SET c='two thousand eleven' WHERE a=6981;\nUPDATE t2 SET c='fifty-two thousand eight hundred forty-nine' WHERE a=6982;\nUPDATE t2 SET c='sixty-one thousand two hundred eighteen' WHERE a=6983;\nUPDATE t2 SET c='fifty-two thousand one hundred three' WHERE a=6984;\nUPDATE t2 SET c='seventy-two thousand eight hundred forty-one' WHERE a=6985;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-two' WHERE a=6986;\nUPDATE t2 SET c='five thousand nine hundred forty-four' WHERE a=6987;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=6988;\nUPDATE t2 SET c='thirty-four thousand seventy-four' WHERE a=6989;\nUPDATE t2 SET c='forty-eight thousand twenty-nine' WHERE a=6990;\nUPDATE t2 SET c='thirty-four thousand seventy-three' WHERE a=6991;\nUPDATE t2 SET c='forty-five thousand two hundred twenty-nine' WHERE a=6992;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-seven' WHERE a=6993;\nUPDATE t2 SET c='fifty-two thousand one hundred fifty-five' WHERE a=6994;\nUPDATE t2 SET c='fifty-three thousand eight hundred nine' WHERE a=6995;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-nine' WHERE a=6996;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-one' WHERE a=6997;\nUPDATE t2 SET c='sixty-five thousand seventeen' WHERE a=6998;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty' WHERE a=6999;\nUPDATE t2 SET c='seventeen thousand eighty-four' WHERE a=7000;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixty-seven' WHERE a=7001;\nUPDATE t2 SET c='three thousand eighty-five' WHERE a=7002;\nUPDATE t2 SET c='seventeen thousand four hundred ninety' WHERE a=7003;\nUPDATE t2 SET c='twenty-three thousand one hundred eleven' WHERE a=7004;\nUPDATE t2 SET c='thirty-four thousand five hundred sixty-two' WHERE a=7005;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety-nine' WHERE a=7006;\nUPDATE t2 SET c='seventy-three thousand three hundred seventy-three' WHERE a=7007;\nUPDATE t2 SET c='thirty-eight thousand three hundred sixty-nine' WHERE a=7008;\nUPDATE t2 SET c='one hundred forty-two' WHERE a=7009;\nUPDATE t2 SET c='eighty-eight thousand seventy-one' WHERE a=7010;\nUPDATE t2 SET c='ninety-four thousand thirty-two' WHERE a=7011;\nUPDATE t2 SET c='seven thousand one hundred thirty-four' WHERE a=7012;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=7013;\nUPDATE t2 SET c='eighty thousand three hundred seventy-six' WHERE a=7014;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fourteen' WHERE a=7015;\nUPDATE t2 SET c='seventy-five thousand six hundred twenty-one' WHERE a=7016;\nUPDATE t2 SET c='fifteen thousand four hundred forty-three' WHERE a=7017;\nUPDATE t2 SET c='twenty thousand five hundred one' WHERE a=7018;\nUPDATE t2 SET c='eleven thousand eight hundred forty-three' WHERE a=7019;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-eight' WHERE a=7020;\nUPDATE t2 SET c='fifteen thousand three hundred seven' WHERE a=7021;\nUPDATE t2 SET c='sixty-five thousand nine hundred thirty' WHERE a=7022;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty-one' WHERE a=7023;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty' WHERE a=7024;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-four' WHERE a=7025;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=7026;\nUPDATE t2 SET c='seventy-four thousand two hundred seventy-two' WHERE a=7027;\nUPDATE t2 SET c='thirty-three thousand nine hundred twenty' WHERE a=7028;\nUPDATE t2 SET c='seventy-five thousand one hundred twenty-one' WHERE a=7029;\nUPDATE t2 SET c='ninety-two thousand six hundred twelve' WHERE a=7030;\nUPDATE t2 SET c='thirty-four thousand ninety-nine' WHERE a=7031;\nUPDATE t2 SET c='eighty-eight thousand one hundred ninety-one' WHERE a=7032;\nUPDATE t2 SET c='seventy-two thousand two hundred twenty-four' WHERE a=7033;\nUPDATE t2 SET c='fifty-two thousand eight hundred sixty-eight' WHERE a=7034;\nUPDATE t2 SET c='eighty-six thousand eight hundred' WHERE a=7035;\nUPDATE t2 SET c='twenty-nine thousand seven hundred forty-four' WHERE a=7036;\nUPDATE t2 SET c='twenty thousand three hundred seventy-eight' WHERE a=7037;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-two' WHERE a=7038;\nUPDATE t2 SET c='fifty-three thousand nine hundred twenty-six' WHERE a=7039;\nUPDATE t2 SET c='forty-two thousand three hundred one' WHERE a=7040;\nUPDATE t2 SET c='seventeen thousand thirty-two' WHERE a=7041;\nUPDATE t2 SET c='ninety thousand five hundred six' WHERE a=7042;\nUPDATE t2 SET c='seventeen thousand nine hundred seventy' WHERE a=7043;\nUPDATE t2 SET c='forty-five thousand four hundred fifty-three' WHERE a=7044;\nUPDATE t2 SET c='thirty-four thousand four hundred seventeen' WHERE a=7045;\nUPDATE t2 SET c='sixty-six thousand twenty-seven' WHERE a=7046;\nUPDATE t2 SET c='twenty-three thousand five hundred fifty-three' WHERE a=7047;\nUPDATE t2 SET c='eighty-one thousand two hundred twenty-two' WHERE a=7048;\nUPDATE t2 SET c='seventy-six thousand five hundred twenty-seven' WHERE a=7049;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-three' WHERE a=7050;\nUPDATE t2 SET c='thirty-two thousand ninety-six' WHERE a=7051;\nUPDATE t2 SET c='fourteen thousand six hundred seventy-eight' WHERE a=7052;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-eight' WHERE a=7053;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-five' WHERE a=7054;\nUPDATE t2 SET c='eleven thousand one hundred twenty-eight' WHERE a=7055;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty-eight' WHERE a=7056;\nUPDATE t2 SET c='forty-six thousand two hundred thirty-seven' WHERE a=7057;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-nine' WHERE a=7058;\nUPDATE t2 SET c='fifty-five thousand four hundred seventy-nine' WHERE a=7059;\nUPDATE t2 SET c='ninety-two thousand eight hundred forty-four' WHERE a=7060;\nUPDATE t2 SET c='ninety-seven thousand nine hundred twenty-seven' WHERE a=7061;\nUPDATE t2 SET c='sixty-two thousand two hundred nine' WHERE a=7062;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=7063;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-two' WHERE a=7064;\nUPDATE t2 SET c='forty-three thousand three hundred ninety-six' WHERE a=7065;\nUPDATE t2 SET c='nine thousand three hundred seventy-two' WHERE a=7066;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighteen' WHERE a=7067;\nUPDATE t2 SET c='ninety-nine thousand three hundred thirty-three' WHERE a=7068;\nUPDATE t2 SET c='sixty-eight thousand six hundred forty-seven' WHERE a=7069;\nUPDATE t2 SET c='fifty-eight thousand six hundred twelve' WHERE a=7070;\nUPDATE t2 SET c='sixty-nine thousand six hundred forty-five' WHERE a=7071;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=7072;\nUPDATE t2 SET c='sixty-nine thousand seven hundred eighty-nine' WHERE a=7073;\nUPDATE t2 SET c='seventy-five thousand eleven' WHERE a=7074;\nUPDATE t2 SET c='fifty-nine thousand eight hundred ninety-four' WHERE a=7075;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-two' WHERE a=7076;\nUPDATE t2 SET c='thirty-six thousand five hundred six' WHERE a=7077;\nUPDATE t2 SET c='three thousand nine hundred forty-two' WHERE a=7078;\nUPDATE t2 SET c='thirty-six thousand two hundred ninety-eight' WHERE a=7079;\nUPDATE t2 SET c='fifty-nine thousand ninety-five' WHERE a=7080;\nUPDATE t2 SET c='forty-seven thousand four hundred sixty-eight' WHERE a=7081;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=7082;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-eight' WHERE a=7083;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-three' WHERE a=7084;\nUPDATE t2 SET c='sixty-two thousand three hundred fourteen' WHERE a=7085;\nUPDATE t2 SET c='seventy-eight thousand nine hundred sixty-five' WHERE a=7086;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-six' WHERE a=7087;\nUPDATE t2 SET c='six hundred forty-two' WHERE a=7088;\nUPDATE t2 SET c='seventeen thousand six hundred twelve' WHERE a=7089;\nUPDATE t2 SET c='eighty-seven thousand seven hundred fifty-five' WHERE a=7090;\nUPDATE t2 SET c='twenty-seven thousand two hundred fifteen' WHERE a=7091;\nUPDATE t2 SET c='fifty-three thousand four hundred twenty-one' WHERE a=7092;\nUPDATE t2 SET c='eighty-seven thousand eighteen' WHERE a=7093;\nUPDATE t2 SET c='fifty-three thousand six hundred twenty-five' WHERE a=7094;\nUPDATE t2 SET c='eighteen thousand nine hundred fifty-seven' WHERE a=7095;\nUPDATE t2 SET c='forty-one thousand two hundred fifty-seven' WHERE a=7096;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventeen' WHERE a=7097;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-nine' WHERE a=7098;\nUPDATE t2 SET c='three thousand eight hundred two' WHERE a=7099;\nUPDATE t2 SET c='seventy-eight thousand six hundred sixty-nine' WHERE a=7100;\nUPDATE t2 SET c='sixty-eight thousand four hundred forty' WHERE a=7101;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-seven' WHERE a=7102;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty' WHERE a=7103;\nUPDATE t2 SET c='two thousand one hundred thirty-two' WHERE a=7104;\nUPDATE t2 SET c='thirty-two thousand six hundred nineteen' WHERE a=7105;\nUPDATE t2 SET c='ninety-four thousand fifty-six' WHERE a=7106;\nUPDATE t2 SET c='seven hundred twenty-nine' WHERE a=7107;\nUPDATE t2 SET c='nineteen thousand eight hundred fifty-three' WHERE a=7108;\nUPDATE t2 SET c='two thousand seven' WHERE a=7109;\nUPDATE t2 SET c='twenty thousand one hundred ninety-one' WHERE a=7110;\nUPDATE t2 SET c='fifty-one thousand five hundred nine' WHERE a=7111;\nUPDATE t2 SET c='eighty-nine thousand five hundred seventy-one' WHERE a=7112;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-five' WHERE a=7113;\nUPDATE t2 SET c='ninety-one thousand seven hundred one' WHERE a=7114;\nUPDATE t2 SET c='twelve thousand one hundred forty' WHERE a=7115;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-nine' WHERE a=7116;\nUPDATE t2 SET c='forty-nine thousand three hundred forty-four' WHERE a=7117;\nUPDATE t2 SET c='sixty-six thousand one' WHERE a=7118;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=7119;\nUPDATE t2 SET c='eighty-seven thousand one hundred three' WHERE a=7120;\nUPDATE t2 SET c='nine thousand five hundred fifty' WHERE a=7121;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-three' WHERE a=7122;\nUPDATE t2 SET c='five thousand one hundred ninety-five' WHERE a=7123;\nUPDATE t2 SET c='eight thousand nine hundred five' WHERE a=7124;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-seven' WHERE a=7125;\nUPDATE t2 SET c='sixty-five thousand seven hundred seven' WHERE a=7126;\nUPDATE t2 SET c='three thousand one hundred seventy-four' WHERE a=7127;\nUPDATE t2 SET c='fifty-eight thousand six hundred thirty-five' WHERE a=7128;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=7129;\nUPDATE t2 SET c='eighty-one thousand nine hundred sixty' WHERE a=7130;\nUPDATE t2 SET c='fifty-nine thousand sixty' WHERE a=7131;\nUPDATE t2 SET c='seventy-two thousand nine hundred four' WHERE a=7132;\nUPDATE t2 SET c='seventy-seven thousand forty-three' WHERE a=7133;\nUPDATE t2 SET c='seventeen thousand eight hundred sixteen' WHERE a=7134;\nUPDATE t2 SET c='thirty-one thousand two hundred sixteen' WHERE a=7135;\nUPDATE t2 SET c='sixteen thousand five hundred fifty' WHERE a=7136;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-three' WHERE a=7137;\nUPDATE t2 SET c='ninety-six thousand eight hundred seventy-seven' WHERE a=7138;\nUPDATE t2 SET c='thirteen thousand seven hundred eighty-five' WHERE a=7139;\nUPDATE t2 SET c='forty-two thousand seven hundred twenty-nine' WHERE a=7140;\nUPDATE t2 SET c='ninety-two thousand seven hundred eighty' WHERE a=7141;\nUPDATE t2 SET c='sixty thousand eight hundred fifty-nine' WHERE a=7142;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-seven' WHERE a=7143;\nUPDATE t2 SET c='six thousand one hundred ninety-four' WHERE a=7144;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fifty-one' WHERE a=7145;\nUPDATE t2 SET c='thirty-eight thousand six hundred thirty-nine' WHERE a=7146;\nUPDATE t2 SET c='fifty-five thousand six hundred twenty-three' WHERE a=7147;\nUPDATE t2 SET c='seven thousand one hundred sixty-four' WHERE a=7148;\nUPDATE t2 SET c='thirty-five thousand seven hundred nineteen' WHERE a=7149;\nUPDATE t2 SET c='seventy-two thousand three hundred fifty-eight' WHERE a=7150;\nUPDATE t2 SET c='sixty thousand four hundred forty-seven' WHERE a=7151;\nUPDATE t2 SET c='twenty-three thousand twenty-six' WHERE a=7152;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty' WHERE a=7153;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty' WHERE a=7154;\nUPDATE t2 SET c='eighty thousand two hundred eighteen' WHERE a=7155;\nUPDATE t2 SET c='fifty-six thousand four hundred eighty-one' WHERE a=7156;\nUPDATE t2 SET c='fifty-one thousand seven hundred sixty-two' WHERE a=7157;\nUPDATE t2 SET c='two thousand one hundred nine' WHERE a=7158;\nUPDATE t2 SET c='sixty-seven thousand five hundred three' WHERE a=7159;\nUPDATE t2 SET c='five thousand one hundred forty-two' WHERE a=7160;\nUPDATE t2 SET c='four thousand seven hundred seventy-five' WHERE a=7161;\nUPDATE t2 SET c='eighteen thousand five hundred sixty-three' WHERE a=7162;\nUPDATE t2 SET c='thirty-seven thousand eighty' WHERE a=7163;\nUPDATE t2 SET c='one hundred thirty-eight' WHERE a=7164;\nUPDATE t2 SET c='twenty-one thousand six hundred seven' WHERE a=7165;\nUPDATE t2 SET c='eight thousand six hundred seventy-three' WHERE a=7166;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-five' WHERE a=7167;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-five' WHERE a=7168;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-six' WHERE a=7169;\nUPDATE t2 SET c='ninety-one thousand seven hundred sixty-four' WHERE a=7170;\nUPDATE t2 SET c='six thousand seven hundred eighty-seven' WHERE a=7171;\nUPDATE t2 SET c='thirty-four thousand six hundred ninety-two' WHERE a=7172;\nUPDATE t2 SET c='seventy-eight thousand seven hundred seventy-five' WHERE a=7173;\nUPDATE t2 SET c='eighty-three thousand five hundred fifty-three' WHERE a=7174;\nUPDATE t2 SET c='sixty-eight thousand five hundred seventy-three' WHERE a=7175;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-one' WHERE a=7176;\nUPDATE t2 SET c='thirty-three thousand three hundred forty-eight' WHERE a=7177;\nUPDATE t2 SET c='nineteen thousand nine hundred five' WHERE a=7178;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-seven' WHERE a=7179;\nUPDATE t2 SET c='fifty-one thousand eight hundred two' WHERE a=7180;\nUPDATE t2 SET c='thirty-nine thousand five hundred eighty-four' WHERE a=7181;\nUPDATE t2 SET c='sixty-six thousand four hundred seventy-four' WHERE a=7182;\nUPDATE t2 SET c='three thousand one hundred seventy-two' WHERE a=7183;\nUPDATE t2 SET c='fifty-two thousand twenty-one' WHERE a=7184;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-eight' WHERE a=7185;\nUPDATE t2 SET c='fifty thousand eight hundred fifty-four' WHERE a=7186;\nUPDATE t2 SET c='thirty-five thousand one hundred twenty-four' WHERE a=7187;\nUPDATE t2 SET c='ninety-eight thousand forty-two' WHERE a=7188;\nUPDATE t2 SET c='one thousand nine hundred fifty-three' WHERE a=7189;\nUPDATE t2 SET c='sixty-one thousand two hundred twelve' WHERE a=7190;\nUPDATE t2 SET c='twenty-four thousand four hundred sixty' WHERE a=7191;\nUPDATE t2 SET c='eighty-four thousand one hundred ninety-five' WHERE a=7192;\nUPDATE t2 SET c='ninety-four thousand eight hundred nine' WHERE a=7193;\nUPDATE t2 SET c='seventy-seven thousand three hundred fifty' WHERE a=7194;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety' WHERE a=7195;\nUPDATE t2 SET c='eighty-three thousand six hundred forty-six' WHERE a=7196;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-one' WHERE a=7197;\nUPDATE t2 SET c='sixty-one thousand one hundred twenty-four' WHERE a=7198;\nUPDATE t2 SET c='sixty-four thousand four hundred two' WHERE a=7199;\nUPDATE t2 SET c='sixty-four thousand eight hundred thirteen' WHERE a=7200;\nUPDATE t2 SET c='nine thousand seven hundred' WHERE a=7201;\nUPDATE t2 SET c='ninety-one thousand eight hundred eighty-eight' WHERE a=7202;\nUPDATE t2 SET c='six thousand thirty-three' WHERE a=7203;\nUPDATE t2 SET c='eighty-eight thousand four hundred eight' WHERE a=7204;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-eight' WHERE a=7205;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-six' WHERE a=7206;\nUPDATE t2 SET c='twelve thousand six hundred forty' WHERE a=7207;\nUPDATE t2 SET c='fifty-three thousand five hundred thirty-four' WHERE a=7208;\nUPDATE t2 SET c='ninety thousand five hundred twenty-seven' WHERE a=7209;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-three' WHERE a=7210;\nUPDATE t2 SET c='thirteen thousand five hundred fifty-four' WHERE a=7211;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-seven' WHERE a=7212;\nUPDATE t2 SET c='three thousand six hundred sixty' WHERE a=7213;\nUPDATE t2 SET c='seventy-seven thousand five hundred sixteen' WHERE a=7214;\nUPDATE t2 SET c='twenty thousand eight hundred seventy-seven' WHERE a=7215;\nUPDATE t2 SET c='forty-one thousand five hundred forty-nine' WHERE a=7216;\nUPDATE t2 SET c='four thousand four hundred sixty-three' WHERE a=7217;\nUPDATE t2 SET c='forty-three thousand five hundred thirty-eight' WHERE a=7218;\nUPDATE t2 SET c='forty-six thousand fifty-nine' WHERE a=7219;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=7220;\nUPDATE t2 SET c='sixteen thousand eight hundred four' WHERE a=7221;\nUPDATE t2 SET c='seventy-seven thousand one hundred seventy-eight' WHERE a=7222;\nUPDATE t2 SET c='seventy-four thousand forty' WHERE a=7223;\nUPDATE t2 SET c='fifty-seven thousand twenty-one' WHERE a=7224;\nUPDATE t2 SET c='one thousand nine hundred fifty-five' WHERE a=7225;\nUPDATE t2 SET c='nineteen thousand six hundred fifty-nine' WHERE a=7226;\nUPDATE t2 SET c='nine thousand two hundred forty-one' WHERE a=7227;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-six' WHERE a=7228;\nUPDATE t2 SET c='twenty-four thousand four hundred seventy-three' WHERE a=7229;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-two' WHERE a=7230;\nUPDATE t2 SET c='thirty-one thousand nine hundred two' WHERE a=7231;\nUPDATE t2 SET c='ten thousand nine hundred forty' WHERE a=7232;\nUPDATE t2 SET c='twenty thousand nine hundred seventy-seven' WHERE a=7233;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-four' WHERE a=7234;\nUPDATE t2 SET c='eight thousand three hundred twenty-two' WHERE a=7235;\nUPDATE t2 SET c='twenty-two thousand seven hundred eighteen' WHERE a=7236;\nUPDATE t2 SET c='fifty-eight thousand thirty-eight' WHERE a=7237;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-seven' WHERE a=7238;\nUPDATE t2 SET c='sixty-seven thousand six hundred sixty-nine' WHERE a=7239;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-four' WHERE a=7240;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety-nine' WHERE a=7241;\nUPDATE t2 SET c='forty-two thousand one hundred thirty-three' WHERE a=7242;\nUPDATE t2 SET c='sixty-four thousand four hundred ninety-three' WHERE a=7243;\nUPDATE t2 SET c='fifty-nine thousand fifty-two' WHERE a=7244;\nUPDATE t2 SET c='forty-one thousand forty-four' WHERE a=7245;\nUPDATE t2 SET c='twenty-eight thousand forty-one' WHERE a=7246;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty' WHERE a=7247;\nUPDATE t2 SET c='thirty-two thousand sixty-five' WHERE a=7248;\nUPDATE t2 SET c='forty-four thousand forty-four' WHERE a=7249;\nUPDATE t2 SET c='twelve thousand eight hundred fifty-six' WHERE a=7250;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-five' WHERE a=7251;\nUPDATE t2 SET c='eighty-five thousand two hundred three' WHERE a=7252;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-nine' WHERE a=7253;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-three' WHERE a=7254;\nUPDATE t2 SET c='forty thousand ten' WHERE a=7255;\nUPDATE t2 SET c='ninety-two thousand seven hundred eighty-two' WHERE a=7256;\nUPDATE t2 SET c='twenty-nine thousand eight hundred eighty-three' WHERE a=7257;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-seven' WHERE a=7258;\nUPDATE t2 SET c='ninety-four thousand forty-five' WHERE a=7259;\nUPDATE t2 SET c='thirty-two thousand one hundred seven' WHERE a=7260;\nUPDATE t2 SET c='sixty-five thousand six hundred twenty-two' WHERE a=7261;\nUPDATE t2 SET c='eighty thousand four hundred sixty-three' WHERE a=7262;\nUPDATE t2 SET c='one thousand eight hundred sixty-three' WHERE a=7263;\nUPDATE t2 SET c='fourteen thousand five hundred twenty-seven' WHERE a=7264;\nUPDATE t2 SET c='fifty-seven thousand seven hundred seventy-seven' WHERE a=7265;\nUPDATE t2 SET c='seventy-one thousand four hundred sixty-four' WHERE a=7266;\nUPDATE t2 SET c='eighty-five thousand seventy-three' WHERE a=7267;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-seven' WHERE a=7268;\nUPDATE t2 SET c='twelve thousand eight hundred forty-nine' WHERE a=7269;\nUPDATE t2 SET c='ninety-eight thousand nine hundred sixty-four' WHERE a=7270;\nUPDATE t2 SET c='four thousand one hundred thirty' WHERE a=7271;\nUPDATE t2 SET c='thirty-four thousand three hundred thirty-five' WHERE a=7272;\nUPDATE t2 SET c='fifty-two thousand two hundred ninety' WHERE a=7273;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-two' WHERE a=7274;\nUPDATE t2 SET c='ninety-three thousand four hundred ten' WHERE a=7275;\nUPDATE t2 SET c='fifty-nine thousand one' WHERE a=7276;\nUPDATE t2 SET c='thirty thousand four hundred thirty-five' WHERE a=7277;\nUPDATE t2 SET c='twenty-eight thousand two hundred ten' WHERE a=7278;\nUPDATE t2 SET c='sixty-nine thousand three hundred forty-six' WHERE a=7279;\nUPDATE t2 SET c='eleven thousand seven hundred forty-one' WHERE a=7280;\nUPDATE t2 SET c='twelve thousand two hundred eighteen' WHERE a=7281;\nUPDATE t2 SET c='seventy-three thousand four hundred thirty-three' WHERE a=7282;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-nine' WHERE a=7283;\nUPDATE t2 SET c='one thousand seven hundred fourteen' WHERE a=7284;\nUPDATE t2 SET c='forty thousand five hundred fifty-nine' WHERE a=7285;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty-four' WHERE a=7286;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty-eight' WHERE a=7287;\nUPDATE t2 SET c='forty-four thousand one hundred eighty-eight' WHERE a=7288;\nUPDATE t2 SET c='three hundred fifty-one' WHERE a=7289;\nUPDATE t2 SET c='thirty-one thousand four hundred sixty-eight' WHERE a=7290;\nUPDATE t2 SET c='forty-one thousand two hundred forty-three' WHERE a=7291;\nUPDATE t2 SET c='seventy-one thousand nine hundred twenty-seven' WHERE a=7292;\nUPDATE t2 SET c='sixty-six thousand sixty-two' WHERE a=7293;\nUPDATE t2 SET c='ninety-six thousand nine hundred' WHERE a=7294;\nUPDATE t2 SET c='sixty-nine thousand nine hundred forty-three' WHERE a=7295;\nUPDATE t2 SET c='sixty-eight thousand one hundred forty-seven' WHERE a=7296;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-eight' WHERE a=7297;\nUPDATE t2 SET c='nine thousand fifty-six' WHERE a=7298;\nUPDATE t2 SET c='six hundred thirty-three' WHERE a=7299;\nUPDATE t2 SET c='six thousand two hundred sixty-five' WHERE a=7300;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-one' WHERE a=7301;\nUPDATE t2 SET c='sixty-two thousand five hundred forty' WHERE a=7302;\nUPDATE t2 SET c='twenty-eight thousand four hundred thirty-two' WHERE a=7303;\nUPDATE t2 SET c='seventy-seven thousand four hundred sixty-five' WHERE a=7304;\nUPDATE t2 SET c='fifty-one thousand six hundred forty-six' WHERE a=7305;\nUPDATE t2 SET c='eighty-four thousand eight hundred seven' WHERE a=7306;\nUPDATE t2 SET c='sixty-one thousand three hundred fifty-one' WHERE a=7307;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-seven' WHERE a=7308;\nUPDATE t2 SET c='eighty-three thousand five hundred ten' WHERE a=7309;\nUPDATE t2 SET c='seventeen thousand three hundred seventy-one' WHERE a=7310;\nUPDATE t2 SET c='fifty-eight thousand eighteen' WHERE a=7311;\nUPDATE t2 SET c='twenty-five thousand nine hundred thirty-eight' WHERE a=7312;\nUPDATE t2 SET c='thirty-six thousand eight hundred thirty' WHERE a=7313;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty-four' WHERE a=7314;\nUPDATE t2 SET c='ninety-one thousand six hundred five' WHERE a=7315;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-eight' WHERE a=7316;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-eight' WHERE a=7317;\nUPDATE t2 SET c='fourteen thousand eight hundred sixty-two' WHERE a=7318;\nUPDATE t2 SET c='ninety-nine thousand eight hundred ninety-eight' WHERE a=7319;\nUPDATE t2 SET c='nine thousand nine hundred seventy-two' WHERE a=7320;\nUPDATE t2 SET c='seven hundred seventeen' WHERE a=7321;\nUPDATE t2 SET c='seventy thousand six hundred five' WHERE a=7322;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=7323;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy-nine' WHERE a=7324;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-six' WHERE a=7325;\nUPDATE t2 SET c='forty-eight thousand seventy-one' WHERE a=7326;\nUPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=7327;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-four' WHERE a=7328;\nUPDATE t2 SET c='sixty-one thousand three hundred seventy-six' WHERE a=7329;\nUPDATE t2 SET c='seventeen thousand two hundred eighty-three' WHERE a=7330;\nUPDATE t2 SET c='five thousand nine hundred ninety-two' WHERE a=7331;\nUPDATE t2 SET c='fifty-one thousand six hundred fifteen' WHERE a=7332;\nUPDATE t2 SET c='ninety-seven thousand five hundred eighty-six' WHERE a=7333;\nUPDATE t2 SET c='twenty-eight thousand five hundred sixty-five' WHERE a=7334;\nUPDATE t2 SET c='forty-eight thousand five hundred thirty' WHERE a=7335;\nUPDATE t2 SET c='forty thousand three hundred fifty-eight' WHERE a=7336;\nUPDATE t2 SET c='two thousand three hundred one' WHERE a=7337;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-seven' WHERE a=7338;\nUPDATE t2 SET c='sixty-six thousand nine hundred ninety-eight' WHERE a=7339;\nUPDATE t2 SET c='twenty-nine thousand eight hundred eighty-three' WHERE a=7340;\nUPDATE t2 SET c='nineteen thousand nine hundred fourteen' WHERE a=7341;\nUPDATE t2 SET c='twenty-six thousand seven hundred eighteen' WHERE a=7342;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-five' WHERE a=7343;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-seven' WHERE a=7344;\nUPDATE t2 SET c='eighty-nine thousand three hundred four' WHERE a=7345;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-five' WHERE a=7346;\nUPDATE t2 SET c='fifty-eight thousand eighty-seven' WHERE a=7347;\nUPDATE t2 SET c='eighty thousand two hundred sixteen' WHERE a=7348;\nUPDATE t2 SET c='four thousand one hundred forty-three' WHERE a=7349;\nUPDATE t2 SET c='seventy-four thousand three hundred forty-two' WHERE a=7350;\nUPDATE t2 SET c='seventeen thousand one hundred forty-three' WHERE a=7351;\nUPDATE t2 SET c='ninety-seven thousand three hundred' WHERE a=7352;\nUPDATE t2 SET c='fifty-five thousand eight hundred twenty-two' WHERE a=7353;\nUPDATE t2 SET c='nine thousand four hundred ninety-four' WHERE a=7354;\nUPDATE t2 SET c='eighteen thousand five hundred ten' WHERE a=7355;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-nine' WHERE a=7356;\nUPDATE t2 SET c='fifty thousand four hundred thirty-two' WHERE a=7357;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-eight' WHERE a=7358;\nUPDATE t2 SET c='sixty-six thousand seven hundred thirty-four' WHERE a=7359;\nUPDATE t2 SET c='eighty-four thousand five' WHERE a=7360;\nUPDATE t2 SET c='fourteen thousand two hundred nine' WHERE a=7361;\nUPDATE t2 SET c='two thousand eighty-four' WHERE a=7362;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty' WHERE a=7363;\nUPDATE t2 SET c='thirty-six thousand three hundred seven' WHERE a=7364;\nUPDATE t2 SET c='five thousand seven hundred nineteen' WHERE a=7365;\nUPDATE t2 SET c='sixty-eight thousand seven hundred two' WHERE a=7366;\nUPDATE t2 SET c='sixteen thousand three hundred eighteen' WHERE a=7367;\nUPDATE t2 SET c='forty thousand two hundred thirty-three' WHERE a=7368;\nUPDATE t2 SET c='sixty-two thousand one' WHERE a=7369;\nUPDATE t2 SET c='thirty-five thousand one hundred' WHERE a=7370;\nUPDATE t2 SET c='sixty-nine thousand seven hundred ten' WHERE a=7371;\nUPDATE t2 SET c='twenty-one thousand nine hundred sixty-one' WHERE a=7372;\nUPDATE t2 SET c='thirty-three thousand one hundred nineteen' WHERE a=7373;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=7374;\nUPDATE t2 SET c='seventy thousand six hundred ninety-three' WHERE a=7375;\nUPDATE t2 SET c='eighty-three thousand one' WHERE a=7376;\nUPDATE t2 SET c='ninety thousand three hundred thirty-eight' WHERE a=7377;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty' WHERE a=7378;\nUPDATE t2 SET c='seventy-four thousand five hundred seventeen' WHERE a=7379;\nUPDATE t2 SET c='thirty-eight thousand three hundred fourteen' WHERE a=7380;\nUPDATE t2 SET c='seventy-four thousand eight hundred nineteen' WHERE a=7381;\nUPDATE t2 SET c='three thousand nine hundred ninety-one' WHERE a=7382;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty-three' WHERE a=7383;\nUPDATE t2 SET c='eighty-nine thousand four hundred four' WHERE a=7384;\nUPDATE t2 SET c='seventy-eight thousand seven hundred fifty' WHERE a=7385;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fifty-five' WHERE a=7386;\nUPDATE t2 SET c='thirteen thousand six hundred eighty-three' WHERE a=7387;\nUPDATE t2 SET c='forty thousand one hundred ninety-six' WHERE a=7388;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-six' WHERE a=7389;\nUPDATE t2 SET c='seventy-six thousand six hundred four' WHERE a=7390;\nUPDATE t2 SET c='ninety-two thousand six hundred fifty-one' WHERE a=7391;\nUPDATE t2 SET c='eighty-nine thousand eight hundred forty-six' WHERE a=7392;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-nine' WHERE a=7393;\nUPDATE t2 SET c='eighty-one thousand eight hundred fifty-seven' WHERE a=7394;\nUPDATE t2 SET c='sixty-five thousand seven hundred thirty-six' WHERE a=7395;\nUPDATE t2 SET c='ten thousand four hundred sixty-six' WHERE a=7396;\nUPDATE t2 SET c='eighty-six thousand' WHERE a=7397;\nUPDATE t2 SET c='twenty-two thousand five hundred forty-one' WHERE a=7398;\nUPDATE t2 SET c='twenty-five thousand six hundred one' WHERE a=7399;\nUPDATE t2 SET c='eight hundred fifty-nine' WHERE a=7400;\nUPDATE t2 SET c='sixty-six thousand ninety-one' WHERE a=7401;\nUPDATE t2 SET c='ninety-one thousand six hundred nineteen' WHERE a=7402;\nUPDATE t2 SET c='eighty-five thousand nine hundred twenty-seven' WHERE a=7403;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty-nine' WHERE a=7404;\nUPDATE t2 SET c='sixty-eight thousand one hundred eight' WHERE a=7405;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-one' WHERE a=7406;\nUPDATE t2 SET c='one thousand two hundred fifty' WHERE a=7407;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-nine' WHERE a=7408;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-six' WHERE a=7409;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-four' WHERE a=7410;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety-five' WHERE a=7411;\nUPDATE t2 SET c='ninety-one thousand five hundred nine' WHERE a=7412;\nUPDATE t2 SET c='ninety-four thousand eight hundred seven' WHERE a=7413;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-one' WHERE a=7414;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-four' WHERE a=7415;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=7416;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty-seven' WHERE a=7417;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-seven' WHERE a=7418;\nUPDATE t2 SET c='ninety-four thousand six hundred nineteen' WHERE a=7419;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-six' WHERE a=7420;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-two' WHERE a=7421;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-seven' WHERE a=7422;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-eight' WHERE a=7423;\nUPDATE t2 SET c='thirteen thousand four hundred twelve' WHERE a=7424;\nUPDATE t2 SET c='forty-four thousand forty' WHERE a=7425;\nUPDATE t2 SET c='eight thousand seven hundred seventy-five' WHERE a=7426;\nUPDATE t2 SET c='ninety-six thousand four hundred seventy-eight' WHERE a=7427;\nUPDATE t2 SET c='sixty-six thousand five hundred twenty-nine' WHERE a=7428;\nUPDATE t2 SET c='seventy-nine thousand four hundred ninety-nine' WHERE a=7429;\nUPDATE t2 SET c='thirty-four thousand fifty-five' WHERE a=7430;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-five' WHERE a=7431;\nUPDATE t2 SET c='two thousand six hundred seventy-three' WHERE a=7432;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty-seven' WHERE a=7433;\nUPDATE t2 SET c='seventy-seven thousand four hundred eighty-seven' WHERE a=7434;\nUPDATE t2 SET c='sixty-two thousand fourteen' WHERE a=7435;\nUPDATE t2 SET c='thirty-nine thousand one hundred' WHERE a=7436;\nUPDATE t2 SET c='ninety-one thousand one hundred twenty' WHERE a=7437;\nUPDATE t2 SET c='eighty-four thousand three hundred seventy-seven' WHERE a=7438;\nUPDATE t2 SET c='forty-seven thousand ninety-one' WHERE a=7439;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirteen' WHERE a=7440;\nUPDATE t2 SET c='thirty-seven thousand two hundred five' WHERE a=7441;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty' WHERE a=7442;\nUPDATE t2 SET c='fifteen thousand eighty' WHERE a=7443;\nUPDATE t2 SET c='seventy thousand four hundred seventy' WHERE a=7444;\nUPDATE t2 SET c='twenty-six thousand four hundred five' WHERE a=7445;\nUPDATE t2 SET c='seventy-six thousand ninety-two' WHERE a=7446;\nUPDATE t2 SET c='forty-nine thousand six hundred twenty-three' WHERE a=7447;\nUPDATE t2 SET c='fifteen thousand four hundred twenty' WHERE a=7448;\nUPDATE t2 SET c='eighty-nine thousand three hundred ten' WHERE a=7449;\nUPDATE t2 SET c='fifty-nine thousand five hundred seventy-two' WHERE a=7450;\nUPDATE t2 SET c='fifty-three thousand six hundred eighty-seven' WHERE a=7451;\nUPDATE t2 SET c='four thousand two hundred eleven' WHERE a=7452;\nUPDATE t2 SET c='eighty-four thousand fifty' WHERE a=7453;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-six' WHERE a=7454;\nUPDATE t2 SET c='ninety-three thousand one hundred eighty-seven' WHERE a=7455;\nUPDATE t2 SET c='twelve thousand four hundred eighty' WHERE a=7456;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-seven' WHERE a=7457;\nUPDATE t2 SET c='six thousand six hundred sixty' WHERE a=7458;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-seven' WHERE a=7459;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-one' WHERE a=7460;\nUPDATE t2 SET c='sixty-nine thousand six hundred five' WHERE a=7461;\nUPDATE t2 SET c='twenty thousand four hundred thirty-seven' WHERE a=7462;\nUPDATE t2 SET c='twenty-seven thousand eight hundred eighty-seven' WHERE a=7463;\nUPDATE t2 SET c='fifty-five thousand five hundred eighty-three' WHERE a=7464;\nUPDATE t2 SET c='forty-six thousand four hundred seventy' WHERE a=7465;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty' WHERE a=7466;\nUPDATE t2 SET c='forty-four thousand one hundred eighty-eight' WHERE a=7467;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-four' WHERE a=7468;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighty-seven' WHERE a=7469;\nUPDATE t2 SET c='forty-two thousand eight hundred fourteen' WHERE a=7470;\nUPDATE t2 SET c='two thousand four hundred ninety-eight' WHERE a=7471;\nUPDATE t2 SET c='forty-two thousand six hundred forty-two' WHERE a=7472;\nUPDATE t2 SET c='thirty thousand five hundred twenty-seven' WHERE a=7473;\nUPDATE t2 SET c='thirty-nine thousand three hundred eighty' WHERE a=7474;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-four' WHERE a=7475;\nUPDATE t2 SET c='sixty-six thousand six hundred eighty-one' WHERE a=7476;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-five' WHERE a=7477;\nUPDATE t2 SET c='thirty-nine thousand one hundred sixty-seven' WHERE a=7478;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-four' WHERE a=7479;\nUPDATE t2 SET c='eighty-two thousand four hundred fifty-four' WHERE a=7480;\nUPDATE t2 SET c='sixty-two thousand seventeen' WHERE a=7481;\nUPDATE t2 SET c='nine thousand six hundred thirty-five' WHERE a=7482;\nUPDATE t2 SET c='sixty-seven thousand sixteen' WHERE a=7483;\nUPDATE t2 SET c='sixty-eight thousand fifty-one' WHERE a=7484;\nUPDATE t2 SET c='eighty-nine thousand one hundred thirty-one' WHERE a=7485;\nUPDATE t2 SET c='seventy-eight thousand seven hundred sixty-seven' WHERE a=7486;\nUPDATE t2 SET c='four thousand two hundred eighty-three' WHERE a=7487;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-one' WHERE a=7488;\nUPDATE t2 SET c='seventy-three thousand eight hundred sixty-eight' WHERE a=7489;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-five' WHERE a=7490;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-three' WHERE a=7491;\nUPDATE t2 SET c='sixteen thousand nine hundred seventy' WHERE a=7492;\nUPDATE t2 SET c='forty-four thousand two hundred eighty-one' WHERE a=7493;\nUPDATE t2 SET c='forty-eight thousand eight hundred five' WHERE a=7494;\nUPDATE t2 SET c='fifteen thousand four hundred fifteen' WHERE a=7495;\nUPDATE t2 SET c='twenty-five thousand three hundred seventy-five' WHERE a=7496;\nUPDATE t2 SET c='thirty-one thousand three hundred fifty-six' WHERE a=7497;\nUPDATE t2 SET c='nineteen thousand six hundred nine' WHERE a=7498;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-one' WHERE a=7499;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-seven' WHERE a=7500;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifty-eight' WHERE a=7501;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-eight' WHERE a=7502;\nUPDATE t2 SET c='twenty-five thousand one hundred sixty-four' WHERE a=7503;\nUPDATE t2 SET c='forty thousand two hundred seventy-eight' WHERE a=7504;\nUPDATE t2 SET c='five thousand four hundred six' WHERE a=7505;\nUPDATE t2 SET c='seventy-six thousand eight hundred forty-seven' WHERE a=7506;\nUPDATE t2 SET c='eight thousand twenty-three' WHERE a=7507;\nUPDATE t2 SET c='forty thousand fifty-eight' WHERE a=7508;\nUPDATE t2 SET c='twenty-two thousand seven hundred seventy-eight' WHERE a=7509;\nUPDATE t2 SET c='eighty-seven thousand one hundred twelve' WHERE a=7510;\nUPDATE t2 SET c='fifty-five thousand six hundred sixty-one' WHERE a=7511;\nUPDATE t2 SET c='forty-four thousand nine hundred one' WHERE a=7512;\nUPDATE t2 SET c='fifty thousand eight hundred fifty-six' WHERE a=7513;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-seven' WHERE a=7514;\nUPDATE t2 SET c='fifty-four thousand six hundred forty-seven' WHERE a=7515;\nUPDATE t2 SET c='ninety-three thousand four hundred eighty-seven' WHERE a=7516;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-two' WHERE a=7517;\nUPDATE t2 SET c='fifty-six thousand two hundred four' WHERE a=7518;\nUPDATE t2 SET c='ninety-six thousand three hundred sixty-nine' WHERE a=7519;\nUPDATE t2 SET c='seventy-nine thousand eight hundred four' WHERE a=7520;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty-nine' WHERE a=7521;\nUPDATE t2 SET c='fourteen thousand eighteen' WHERE a=7522;\nUPDATE t2 SET c='eighty-three thousand seven hundred eleven' WHERE a=7523;\nUPDATE t2 SET c='forty thousand four hundred thirty-five' WHERE a=7524;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-five' WHERE a=7525;\nUPDATE t2 SET c='forty thousand five hundred forty-eight' WHERE a=7526;\nUPDATE t2 SET c='forty-nine thousand one hundred' WHERE a=7527;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eight' WHERE a=7528;\nUPDATE t2 SET c='one thousand seven hundred seventy-one' WHERE a=7529;\nUPDATE t2 SET c='two thousand fifty-three' WHERE a=7530;\nUPDATE t2 SET c='fifty-three thousand three hundred ten' WHERE a=7531;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty' WHERE a=7532;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty' WHERE a=7533;\nUPDATE t2 SET c='eighty-five thousand one hundred seventy-six' WHERE a=7534;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-one' WHERE a=7535;\nUPDATE t2 SET c='seventy-three thousand four hundred three' WHERE a=7536;\nUPDATE t2 SET c='thirteen thousand five hundred eighty-nine' WHERE a=7537;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-one' WHERE a=7538;\nUPDATE t2 SET c='nine thousand seven hundred ten' WHERE a=7539;\nUPDATE t2 SET c='seven thousand one hundred five' WHERE a=7540;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-three' WHERE a=7541;\nUPDATE t2 SET c='seventy-three thousand seven hundred' WHERE a=7542;\nUPDATE t2 SET c='ten thousand seven hundred two' WHERE a=7543;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty-seven' WHERE a=7544;\nUPDATE t2 SET c='twenty-two thousand three hundred eighty-seven' WHERE a=7545;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-seven' WHERE a=7546;\nUPDATE t2 SET c='seventy-nine thousand two hundred seventy' WHERE a=7547;\nUPDATE t2 SET c='twenty-six thousand four hundred eighty-eight' WHERE a=7548;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-four' WHERE a=7549;\nUPDATE t2 SET c='sixty-eight thousand seven hundred forty-six' WHERE a=7550;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-nine' WHERE a=7551;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-six' WHERE a=7552;\nUPDATE t2 SET c='ninety-four thousand nine hundred thirty-two' WHERE a=7553;\nUPDATE t2 SET c='eleven thousand nine hundred twenty-nine' WHERE a=7554;\nUPDATE t2 SET c='ninety-nine thousand eight hundred ninety' WHERE a=7555;\nUPDATE t2 SET c='twenty-seven thousand six hundred eighty-four' WHERE a=7556;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-seven' WHERE a=7557;\nUPDATE t2 SET c='twenty-four thousand five hundred forty-six' WHERE a=7558;\nUPDATE t2 SET c='forty-six thousand one hundred twenty' WHERE a=7559;\nUPDATE t2 SET c='sixty-eight thousand four' WHERE a=7560;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-three' WHERE a=7561;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-nine' WHERE a=7562;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-four' WHERE a=7563;\nUPDATE t2 SET c='sixty-four thousand one hundred thirty-seven' WHERE a=7564;\nUPDATE t2 SET c='fifteen thousand four hundred sixty-eight' WHERE a=7565;\nUPDATE t2 SET c='twenty-six thousand four hundred twenty-one' WHERE a=7566;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety' WHERE a=7567;\nUPDATE t2 SET c='thirteen thousand two hundred twelve' WHERE a=7568;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-nine' WHERE a=7569;\nUPDATE t2 SET c='thirty-eight thousand six hundred fifty-five' WHERE a=7570;\nUPDATE t2 SET c='forty-two thousand twenty-seven' WHERE a=7571;\nUPDATE t2 SET c='seventy-seven thousand four hundred forty-five' WHERE a=7572;\nUPDATE t2 SET c='sixty-seven thousand two hundred twenty-six' WHERE a=7573;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-eight' WHERE a=7574;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-nine' WHERE a=7575;\nUPDATE t2 SET c='sixty-six thousand two hundred seventy-eight' WHERE a=7576;\nUPDATE t2 SET c='ninety-six thousand one hundred sixty-five' WHERE a=7577;\nUPDATE t2 SET c='ninety-three thousand eight hundred forty-three' WHERE a=7578;\nUPDATE t2 SET c='thirty-four thousand two hundred fifty-four' WHERE a=7579;\nUPDATE t2 SET c='fifty-eight thousand six hundred one' WHERE a=7580;\nUPDATE t2 SET c='thirty thousand eight hundred fifty-four' WHERE a=7581;\nUPDATE t2 SET c='thirty-three thousand two hundred seven' WHERE a=7582;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-one' WHERE a=7583;\nUPDATE t2 SET c='twenty-four thousand five hundred twenty-three' WHERE a=7584;\nUPDATE t2 SET c='eighty-eight thousand four hundred eighty-two' WHERE a=7585;\nUPDATE t2 SET c='forty-six thousand one hundred fifty' WHERE a=7586;\nUPDATE t2 SET c='eight thousand eighteen' WHERE a=7587;\nUPDATE t2 SET c='nineteen thousand five hundred five' WHERE a=7588;\nUPDATE t2 SET c='twenty-seven thousand two' WHERE a=7589;\nUPDATE t2 SET c='fifty thousand one hundred seventy-eight' WHERE a=7590;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-nine' WHERE a=7591;\nUPDATE t2 SET c='seventy-nine thousand one hundred fifty' WHERE a=7592;\nUPDATE t2 SET c='thirty-nine thousand five hundred thirty' WHERE a=7593;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-one' WHERE a=7594;\nUPDATE t2 SET c='thirty-three thousand six hundred thirty' WHERE a=7595;\nUPDATE t2 SET c='five thousand seventy-one' WHERE a=7596;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirty' WHERE a=7597;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=7598;\nUPDATE t2 SET c='seven thousand six hundred forty-seven' WHERE a=7599;\nUPDATE t2 SET c='sixty-two thousand four hundred ten' WHERE a=7600;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty-seven' WHERE a=7601;\nUPDATE t2 SET c='sixty-two thousand five hundred eighty-nine' WHERE a=7602;\nUPDATE t2 SET c='ninety-one thousand three hundred twenty-eight' WHERE a=7603;\nUPDATE t2 SET c='ninety-seven thousand one hundred twenty-eight' WHERE a=7604;\nUPDATE t2 SET c='sixty-two thousand seven hundred three' WHERE a=7605;\nUPDATE t2 SET c='twenty-one thousand three hundred sixty-seven' WHERE a=7606;\nUPDATE t2 SET c='eighty-eight thousand six hundred seven' WHERE a=7607;\nUPDATE t2 SET c='twenty-three thousand eight hundred three' WHERE a=7608;\nUPDATE t2 SET c='two thousand six hundred fourteen' WHERE a=7609;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-seven' WHERE a=7610;\nUPDATE t2 SET c='forty-three thousand two hundred fifty-nine' WHERE a=7611;\nUPDATE t2 SET c='ninety-nine thousand five hundred fifty' WHERE a=7612;\nUPDATE t2 SET c='ninety-six thousand fifty-four' WHERE a=7613;\nUPDATE t2 SET c='forty-eight thousand two hundred fifty-seven' WHERE a=7614;\nUPDATE t2 SET c='twelve thousand four hundred twenty-eight' WHERE a=7615;\nUPDATE t2 SET c='eight thousand seven hundred forty-three' WHERE a=7616;\nUPDATE t2 SET c='seventy-six thousand four hundred thirty-six' WHERE a=7617;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirteen' WHERE a=7618;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=7619;\nUPDATE t2 SET c='seventeen thousand nine hundred seventeen' WHERE a=7620;\nUPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=7621;\nUPDATE t2 SET c='eighty-three thousand seven hundred forty-five' WHERE a=7622;\nUPDATE t2 SET c='ninety-three thousand four hundred twenty-three' WHERE a=7623;\nUPDATE t2 SET c='sixty-seven thousand one hundred one' WHERE a=7624;\nUPDATE t2 SET c='forty-nine thousand one hundred nineteen' WHERE a=7625;\nUPDATE t2 SET c='four thousand four hundred eight' WHERE a=7626;\nUPDATE t2 SET c='thirty-six thousand six hundred twenty-eight' WHERE a=7627;\nUPDATE t2 SET c='six thousand eight hundred seventy-seven' WHERE a=7628;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-nine' WHERE a=7629;\nUPDATE t2 SET c='five thousand four hundred ninety-three' WHERE a=7630;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty-two' WHERE a=7631;\nUPDATE t2 SET c='fifty-seven thousand nine hundred one' WHERE a=7632;\nUPDATE t2 SET c='sixty-two thousand one hundred forty-five' WHERE a=7633;\nUPDATE t2 SET c='three thousand one hundred ninety-four' WHERE a=7634;\nUPDATE t2 SET c='fifty-four thousand one hundred twelve' WHERE a=7635;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-six' WHERE a=7636;\nUPDATE t2 SET c='three thousand four hundred five' WHERE a=7637;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-one' WHERE a=7638;\nUPDATE t2 SET c='fifty thousand two hundred sixty-five' WHERE a=7639;\nUPDATE t2 SET c='ninety-five thousand two hundred twenty-five' WHERE a=7640;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-seven' WHERE a=7641;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-seven' WHERE a=7642;\nUPDATE t2 SET c='three thousand seven hundred eighty-two' WHERE a=7643;\nUPDATE t2 SET c='ten thousand four hundred thirty-two' WHERE a=7644;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-three' WHERE a=7645;\nUPDATE t2 SET c='eighty-one thousand two hundred thirteen' WHERE a=7646;\nUPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=7647;\nUPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=7648;\nUPDATE t2 SET c='forty-two thousand twenty-six' WHERE a=7649;\nUPDATE t2 SET c='eighteen thousand eight hundred twenty-eight' WHERE a=7650;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty-five' WHERE a=7651;\nUPDATE t2 SET c='forty-two thousand one hundred ten' WHERE a=7652;\nUPDATE t2 SET c='thirty-nine thousand two' WHERE a=7653;\nUPDATE t2 SET c='eight thousand one hundred sixty-three' WHERE a=7654;\nUPDATE t2 SET c='fifty-six thousand twenty-six' WHERE a=7655;\nUPDATE t2 SET c='sixty-eight thousand two hundred eighty' WHERE a=7656;\nUPDATE t2 SET c='fifty-three thousand seven hundred nineteen' WHERE a=7657;\nUPDATE t2 SET c='twenty-four thousand six hundred fifty-three' WHERE a=7658;\nUPDATE t2 SET c='ninety thousand seven hundred eighteen' WHERE a=7659;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-three' WHERE a=7660;\nUPDATE t2 SET c='twenty-eight thousand eight hundred ninety' WHERE a=7661;\nUPDATE t2 SET c='thirty-two thousand forty-two' WHERE a=7662;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty-six' WHERE a=7663;\nUPDATE t2 SET c='twenty-six thousand six hundred thirteen' WHERE a=7664;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty' WHERE a=7665;\nUPDATE t2 SET c='thirty-one thousand one hundred seventy-seven' WHERE a=7666;\nUPDATE t2 SET c='twenty-eight thousand one hundred five' WHERE a=7667;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty-seven' WHERE a=7668;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=7669;\nUPDATE t2 SET c='forty-nine thousand two hundred thirty-seven' WHERE a=7670;\nUPDATE t2 SET c='seventy-one thousand two hundred seventy-nine' WHERE a=7671;\nUPDATE t2 SET c='sixty-seven thousand three hundred fifty-seven' WHERE a=7672;\nUPDATE t2 SET c='forty-four thousand five hundred sixty-four' WHERE a=7673;\nUPDATE t2 SET c='five thousand nine hundred three' WHERE a=7674;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-two' WHERE a=7675;\nUPDATE t2 SET c='fifty-six thousand two hundred thirty-six' WHERE a=7676;\nUPDATE t2 SET c='twenty-two thousand four hundred sixty-nine' WHERE a=7677;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-four' WHERE a=7678;\nUPDATE t2 SET c='thirty-one thousand eight hundred thirty-eight' WHERE a=7679;\nUPDATE t2 SET c='thirty-four thousand thirty-five' WHERE a=7680;\nUPDATE t2 SET c='forty-five thousand one hundred one' WHERE a=7681;\nUPDATE t2 SET c='twenty-six thousand four hundred thirty-one' WHERE a=7682;\nUPDATE t2 SET c='twenty-seven thousand seven hundred fifty-four' WHERE a=7683;\nUPDATE t2 SET c='thirty-six thousand eight hundred thirty-two' WHERE a=7684;\nUPDATE t2 SET c='fourteen thousand two hundred four' WHERE a=7685;\nUPDATE t2 SET c='fifty-three thousand nine hundred thirty-one' WHERE a=7686;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=7687;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-three' WHERE a=7688;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-seven' WHERE a=7689;\nUPDATE t2 SET c='seventy-eight thousand eight hundred twenty-three' WHERE a=7690;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy' WHERE a=7691;\nUPDATE t2 SET c='ten thousand two hundred sixty-seven' WHERE a=7692;\nUPDATE t2 SET c='forty-seven thousand nine hundred eighty-five' WHERE a=7693;\nUPDATE t2 SET c='seventy-five thousand fifty-six' WHERE a=7694;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-three' WHERE a=7695;\nUPDATE t2 SET c='fifty-four thousand ninety-two' WHERE a=7696;\nUPDATE t2 SET c='forty-nine thousand four hundred twenty-eight' WHERE a=7697;\nUPDATE t2 SET c='ninety-two thousand thirty-seven' WHERE a=7698;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy-one' WHERE a=7699;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety' WHERE a=7700;\nUPDATE t2 SET c='sixty-six thousand eight hundred sixty-five' WHERE a=7701;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=7702;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-one' WHERE a=7703;\nUPDATE t2 SET c='seventy-two thousand seven hundred' WHERE a=7704;\nUPDATE t2 SET c='eleven thousand one hundred eleven' WHERE a=7705;\nUPDATE t2 SET c='fifty-eight thousand eight hundred thirty-five' WHERE a=7706;\nUPDATE t2 SET c='seventy-seven thousand one hundred fifty-nine' WHERE a=7707;\nUPDATE t2 SET c='fifty-two thousand six hundred ninety-two' WHERE a=7708;\nUPDATE t2 SET c='ninety-five thousand nine hundred thirty' WHERE a=7709;\nUPDATE t2 SET c='thirty-seven thousand nine hundred sixty-one' WHERE a=7710;\nUPDATE t2 SET c='sixty thousand nine hundred fifteen' WHERE a=7711;\nUPDATE t2 SET c='ninety-five thousand five hundred forty-five' WHERE a=7712;\nUPDATE t2 SET c='sixty-five thousand six hundred one' WHERE a=7713;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-eight' WHERE a=7714;\nUPDATE t2 SET c='four thousand four hundred forty-six' WHERE a=7715;\nUPDATE t2 SET c='seventy-seven thousand five hundred' WHERE a=7716;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-seven' WHERE a=7717;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighteen' WHERE a=7718;\nUPDATE t2 SET c='three thousand nine hundred forty-four' WHERE a=7719;\nUPDATE t2 SET c='ninety-five thousand nine hundred fifty-two' WHERE a=7720;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-nine' WHERE a=7721;\nUPDATE t2 SET c='twenty-eight thousand six hundred two' WHERE a=7722;\nUPDATE t2 SET c='twenty-six thousand one hundred fifty-six' WHERE a=7723;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty-six' WHERE a=7724;\nUPDATE t2 SET c='ninety thousand eight hundred eighty' WHERE a=7725;\nUPDATE t2 SET c='seventy-seven thousand one hundred two' WHERE a=7726;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eight' WHERE a=7727;\nUPDATE t2 SET c='thirty-five thousand two hundred eight' WHERE a=7728;\nUPDATE t2 SET c='sixty-three thousand three hundred four' WHERE a=7729;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-two' WHERE a=7730;\nUPDATE t2 SET c='forty-two thousand five hundred eighty-nine' WHERE a=7731;\nUPDATE t2 SET c='three thousand four hundred ten' WHERE a=7732;\nUPDATE t2 SET c='seventy-four thousand five hundred forty' WHERE a=7733;\nUPDATE t2 SET c='fifty-two thousand five hundred twenty-five' WHERE a=7734;\nUPDATE t2 SET c='seventy thousand five hundred eighty-three' WHERE a=7735;\nUPDATE t2 SET c='eighty-four thousand nine hundred ninety-six' WHERE a=7736;\nUPDATE t2 SET c='seventy-four thousand four hundred thirty-three' WHERE a=7737;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-seven' WHERE a=7738;\nUPDATE t2 SET c='seventy-two thousand four hundred three' WHERE a=7739;\nUPDATE t2 SET c='ninety-two thousand nine hundred seventy-four' WHERE a=7740;\nUPDATE t2 SET c='sixty-eight thousand eight hundred eight' WHERE a=7741;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty-eight' WHERE a=7742;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety' WHERE a=7743;\nUPDATE t2 SET c='sixty-four thousand seven hundred four' WHERE a=7744;\nUPDATE t2 SET c='eleven thousand seven hundred thirteen' WHERE a=7745;\nUPDATE t2 SET c='eight thousand seven hundred thirty-nine' WHERE a=7746;\nUPDATE t2 SET c='sixty-two thousand eighty-three' WHERE a=7747;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-eight' WHERE a=7748;\nUPDATE t2 SET c='fifty-three thousand two hundred sixty-eight' WHERE a=7749;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-seven' WHERE a=7750;\nUPDATE t2 SET c='eighty-eight thousand one hundred thirty-one' WHERE a=7751;\nUPDATE t2 SET c='eighty-seven thousand six hundred forty' WHERE a=7752;\nUPDATE t2 SET c='forty-three thousand four hundred eighty-nine' WHERE a=7753;\nUPDATE t2 SET c='sixteen thousand seven hundred one' WHERE a=7754;\nUPDATE t2 SET c='ninety-three thousand three hundred ninety-two' WHERE a=7755;\nUPDATE t2 SET c='forty thousand six hundred eighty-five' WHERE a=7756;\nUPDATE t2 SET c='twenty-six thousand six hundred ninety-two' WHERE a=7757;\nUPDATE t2 SET c='five thousand three hundred ninety-four' WHERE a=7758;\nUPDATE t2 SET c='twenty-nine thousand two hundred forty-three' WHERE a=7759;\nUPDATE t2 SET c='sixty thousand five hundred fifty-two' WHERE a=7760;\nUPDATE t2 SET c='thirteen thousand four hundred three' WHERE a=7761;\nUPDATE t2 SET c='seventy thousand eight hundred sixty' WHERE a=7762;\nUPDATE t2 SET c='fifty-one thousand four' WHERE a=7763;\nUPDATE t2 SET c='seventy-five thousand four hundred ninety-five' WHERE a=7764;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty-six' WHERE a=7765;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-six' WHERE a=7766;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-eight' WHERE a=7767;\nUPDATE t2 SET c='fifteen thousand six hundred eight' WHERE a=7768;\nUPDATE t2 SET c='eighteen thousand seven hundred thirty-nine' WHERE a=7769;\nUPDATE t2 SET c='thirty-three thousand five hundred seventy-three' WHERE a=7770;\nUPDATE t2 SET c='twenty-seven thousand five hundred thirty-nine' WHERE a=7771;\nUPDATE t2 SET c='thirty-one thousand five hundred four' WHERE a=7772;\nUPDATE t2 SET c='fifty-one thousand four hundred seven' WHERE a=7773;\nUPDATE t2 SET c='seven thousand five hundred fifty-eight' WHERE a=7774;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-seven' WHERE a=7775;\nUPDATE t2 SET c='ninety-two thousand eight hundred four' WHERE a=7776;\nUPDATE t2 SET c='twenty-nine thousand two hundred seventy' WHERE a=7777;\nUPDATE t2 SET c='thirty-two thousand five hundred sixty-seven' WHERE a=7778;\nUPDATE t2 SET c='ninety-eight thousand eight hundred ninety-eight' WHERE a=7779;\nUPDATE t2 SET c='seventy-two thousand twenty-eight' WHERE a=7780;\nUPDATE t2 SET c='four thousand one hundred ninety-two' WHERE a=7781;\nUPDATE t2 SET c='eighty-four thousand thirty-two' WHERE a=7782;\nUPDATE t2 SET c='five thousand four hundred twenty-nine' WHERE a=7783;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-eight' WHERE a=7784;\nUPDATE t2 SET c='five thousand one hundred fifty-eight' WHERE a=7785;\nUPDATE t2 SET c='seventy-two thousand nine hundred seventy-two' WHERE a=7786;\nUPDATE t2 SET c='nine thousand two hundred ninety-one' WHERE a=7787;\nUPDATE t2 SET c='thirty-four thousand six hundred thirty-five' WHERE a=7788;\nUPDATE t2 SET c='five thousand forty-two' WHERE a=7789;\nUPDATE t2 SET c='fifty-five thousand four hundred thirty-three' WHERE a=7790;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty-four' WHERE a=7791;\nUPDATE t2 SET c='ninety-three thousand seven hundred fifty' WHERE a=7792;\nUPDATE t2 SET c='twelve thousand five hundred six' WHERE a=7793;\nUPDATE t2 SET c='twelve thousand one hundred five' WHERE a=7794;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty-six' WHERE a=7795;\nUPDATE t2 SET c='ninety-four thousand seven hundred seventy-six' WHERE a=7796;\nUPDATE t2 SET c='forty-five thousand six hundred eighty-two' WHERE a=7797;\nUPDATE t2 SET c='eighty-eight thousand four hundred thirty-six' WHERE a=7798;\nUPDATE t2 SET c='ninety-nine thousand six hundred twenty-seven' WHERE a=7799;\nUPDATE t2 SET c='twenty-three thousand five hundred twenty-nine' WHERE a=7800;\nUPDATE t2 SET c='forty-seven thousand seven hundred fifty-two' WHERE a=7801;\nUPDATE t2 SET c='eighty-eight thousand nine hundred' WHERE a=7802;\nUPDATE t2 SET c='thirty-four thousand seven hundred thirty-eight' WHERE a=7803;\nUPDATE t2 SET c='eighty thousand nine hundred twenty-two' WHERE a=7804;\nUPDATE t2 SET c='seventy-nine thousand six hundred thirty' WHERE a=7805;\nUPDATE t2 SET c='thirty-two thousand eight hundred fourteen' WHERE a=7806;\nUPDATE t2 SET c='forty-nine thousand nine hundred fifty-eight' WHERE a=7807;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-seven' WHERE a=7808;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty' WHERE a=7809;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-eight' WHERE a=7810;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-five' WHERE a=7811;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy' WHERE a=7812;\nUPDATE t2 SET c='one hundred sixty' WHERE a=7813;\nUPDATE t2 SET c='fifty-six thousand sixty-nine' WHERE a=7814;\nUPDATE t2 SET c='eight thousand two hundred ninety-six' WHERE a=7815;\nUPDATE t2 SET c='fourteen thousand three hundred sixty-seven' WHERE a=7816;\nUPDATE t2 SET c='seventy-two thousand five hundred sixteen' WHERE a=7817;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixteen' WHERE a=7818;\nUPDATE t2 SET c='fifty thousand five hundred seventy-one' WHERE a=7819;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty-three' WHERE a=7820;\nUPDATE t2 SET c='twenty-eight thousand nine hundred fifteen' WHERE a=7821;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirty-three' WHERE a=7822;\nUPDATE t2 SET c='ninety-two thousand one hundred six' WHERE a=7823;\nUPDATE t2 SET c='twenty-nine thousand eight hundred ninety-six' WHERE a=7824;\nUPDATE t2 SET c='seventy-four thousand one hundred sixty' WHERE a=7825;\nUPDATE t2 SET c='ninety-six thousand two hundred eight' WHERE a=7826;\nUPDATE t2 SET c='forty-three thousand six hundred fifty' WHERE a=7827;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighty-nine' WHERE a=7828;\nUPDATE t2 SET c='sixty-two thousand twenty' WHERE a=7829;\nUPDATE t2 SET c='sixty-three thousand one hundred sixty-seven' WHERE a=7830;\nUPDATE t2 SET c='twenty-two thousand five hundred ninety' WHERE a=7831;\nUPDATE t2 SET c='thirty-eight thousand nine hundred fifty-eight' WHERE a=7832;\nUPDATE t2 SET c='ninety-eight thousand six hundred eleven' WHERE a=7833;\nUPDATE t2 SET c='ninety-eight thousand four hundred eight' WHERE a=7834;\nUPDATE t2 SET c='nineteen thousand two hundred ninety-seven' WHERE a=7835;\nUPDATE t2 SET c='ten thousand eight hundred forty-eight' WHERE a=7836;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-three' WHERE a=7837;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-five' WHERE a=7838;\nUPDATE t2 SET c='ninety-eight thousand one hundred fifty-two' WHERE a=7839;\nUPDATE t2 SET c='thirty-five thousand two hundred thirty-seven' WHERE a=7840;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-eight' WHERE a=7841;\nUPDATE t2 SET c='forty-four thousand three hundred ninety-five' WHERE a=7842;\nUPDATE t2 SET c='seventeen thousand four hundred ninety-one' WHERE a=7843;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-eight' WHERE a=7844;\nUPDATE t2 SET c='twenty thousand one hundred' WHERE a=7845;\nUPDATE t2 SET c='forty-nine thousand five hundred sixty-two' WHERE a=7846;\nUPDATE t2 SET c='seventy-three thousand eight hundred nineteen' WHERE a=7847;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-three' WHERE a=7848;\nUPDATE t2 SET c='forty-two thousand six hundred nineteen' WHERE a=7849;\nUPDATE t2 SET c='eighty thousand nine hundred forty-six' WHERE a=7850;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-three' WHERE a=7851;\nUPDATE t2 SET c='forty-eight thousand three hundred forty-five' WHERE a=7852;\nUPDATE t2 SET c='twenty-five thousand one hundred forty-one' WHERE a=7853;\nUPDATE t2 SET c='one hundred fifty-six' WHERE a=7854;\nUPDATE t2 SET c='ninety-four thousand one hundred sixty-nine' WHERE a=7855;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-six' WHERE a=7856;\nUPDATE t2 SET c='six thousand seven hundred thirty-seven' WHERE a=7857;\nUPDATE t2 SET c='eighty-five thousand two hundred eighty-nine' WHERE a=7858;\nUPDATE t2 SET c='eighteen thousand three hundred thirty-six' WHERE a=7859;\nUPDATE t2 SET c='sixty-four thousand seven hundred eighty-five' WHERE a=7860;\nUPDATE t2 SET c='forty-seven thousand five hundred eighty-one' WHERE a=7861;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy-two' WHERE a=7862;\nUPDATE t2 SET c='fifty-seven thousand five hundred ten' WHERE a=7863;\nUPDATE t2 SET c='eighty-seven thousand thirty-nine' WHERE a=7864;\nUPDATE t2 SET c='thirty-three thousand two hundred seven' WHERE a=7865;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-two' WHERE a=7866;\nUPDATE t2 SET c='eighty-two thousand seven hundred twenty-three' WHERE a=7867;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-one' WHERE a=7868;\nUPDATE t2 SET c='sixty-nine thousand two hundred twenty-one' WHERE a=7869;\nUPDATE t2 SET c='six thousand one hundred three' WHERE a=7870;\nUPDATE t2 SET c='sixty-two thousand eight hundred seventeen' WHERE a=7871;\nUPDATE t2 SET c='seventy-seven thousand two hundred thirty-one' WHERE a=7872;\nUPDATE t2 SET c='fifty thousand one hundred seventy-seven' WHERE a=7873;\nUPDATE t2 SET c='eighty-eight thousand twenty-seven' WHERE a=7874;\nUPDATE t2 SET c='sixteen thousand five hundred forty-five' WHERE a=7875;\nUPDATE t2 SET c='one thousand four hundred ninety-seven' WHERE a=7876;\nUPDATE t2 SET c='seventy-six thousand eight hundred ninety-five' WHERE a=7877;\nUPDATE t2 SET c='ninety-nine thousand four hundred forty-eight' WHERE a=7878;\nUPDATE t2 SET c='thirty-eight thousand eight hundred' WHERE a=7879;\nUPDATE t2 SET c='thirty-five thousand two hundred three' WHERE a=7880;\nUPDATE t2 SET c='ninety-two thousand two hundred forty-one' WHERE a=7881;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-six' WHERE a=7882;\nUPDATE t2 SET c='thirty-five thousand one hundred twenty-four' WHERE a=7883;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-nine' WHERE a=7884;\nUPDATE t2 SET c='fifteen thousand four hundred sixty-one' WHERE a=7885;\nUPDATE t2 SET c='twenty-one thousand four hundred forty-nine' WHERE a=7886;\nUPDATE t2 SET c='seventy thousand eighty' WHERE a=7887;\nUPDATE t2 SET c='seventy-three thousand seven hundred nineteen' WHERE a=7888;\nUPDATE t2 SET c='thirty-six thousand sixty-five' WHERE a=7889;\nUPDATE t2 SET c='sixty-one thousand five hundred thirty-three' WHERE a=7890;\nUPDATE t2 SET c='thirty-nine thousand three hundred nine' WHERE a=7891;\nUPDATE t2 SET c='seventy-five thousand five hundred sixty-five' WHERE a=7892;\nUPDATE t2 SET c='seventy-nine thousand seven hundred twenty-eight' WHERE a=7893;\nUPDATE t2 SET c='seventy-eight thousand nine hundred sixty-five' WHERE a=7894;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-four' WHERE a=7895;\nUPDATE t2 SET c='fifty-three thousand seven hundred thirty-six' WHERE a=7896;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-four' WHERE a=7897;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-one' WHERE a=7898;\nUPDATE t2 SET c='sixty-seven thousand eight hundred sixty-nine' WHERE a=7899;\nUPDATE t2 SET c='fifty-four thousand three hundred sixty-one' WHERE a=7900;\nUPDATE t2 SET c='forty-eight thousand three hundred forty-two' WHERE a=7901;\nUPDATE t2 SET c='ninety-five thousand four hundred seventy-eight' WHERE a=7902;\nUPDATE t2 SET c='fifty thousand nine hundred ninety-six' WHERE a=7903;\nUPDATE t2 SET c='thirty-seven thousand eight hundred sixty-eight' WHERE a=7904;\nUPDATE t2 SET c='forty-six thousand two hundred forty-three' WHERE a=7905;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-four' WHERE a=7906;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventeen' WHERE a=7907;\nUPDATE t2 SET c='twenty-two thousand nine hundred thirty-eight' WHERE a=7908;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty-five' WHERE a=7909;\nUPDATE t2 SET c='nine thousand eight hundred seventy-four' WHERE a=7910;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-four' WHERE a=7911;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-four' WHERE a=7912;\nUPDATE t2 SET c='forty-four thousand seven hundred ninety-six' WHERE a=7913;\nUPDATE t2 SET c='sixty-four thousand six hundred fifty-one' WHERE a=7914;\nUPDATE t2 SET c='eight thousand eight hundred forty-eight' WHERE a=7915;\nUPDATE t2 SET c='forty-three thousand one hundred eleven' WHERE a=7916;\nUPDATE t2 SET c='twenty-eight thousand one hundred forty' WHERE a=7917;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventy-three' WHERE a=7918;\nUPDATE t2 SET c='eighty-two thousand two hundred eight' WHERE a=7919;\nUPDATE t2 SET c='three hundred fifty-one' WHERE a=7920;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-nine' WHERE a=7921;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-seven' WHERE a=7922;\nUPDATE t2 SET c='ninety-eight thousand nine hundred twelve' WHERE a=7923;\nUPDATE t2 SET c='seventy-three thousand four hundred eighty-six' WHERE a=7924;\nUPDATE t2 SET c='fifty-nine thousand fifteen' WHERE a=7925;\nUPDATE t2 SET c='thirty-three thousand four hundred eighty-two' WHERE a=7926;\nUPDATE t2 SET c='fifteen thousand two hundred forty-four' WHERE a=7927;\nUPDATE t2 SET c='nine thousand eight hundred thirty-three' WHERE a=7928;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventy-two' WHERE a=7929;\nUPDATE t2 SET c='fifty-four thousand three hundred thirty-three' WHERE a=7930;\nUPDATE t2 SET c='eighteen thousand three hundred forty-eight' WHERE a=7931;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-two' WHERE a=7932;\nUPDATE t2 SET c='forty-seven thousand eight hundred twenty-five' WHERE a=7933;\nUPDATE t2 SET c='two thousand four hundred forty-eight' WHERE a=7934;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-seven' WHERE a=7935;\nUPDATE t2 SET c='sixty-four thousand seventy-one' WHERE a=7936;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventeen' WHERE a=7937;\nUPDATE t2 SET c='thirteen thousand three hundred seventy-nine' WHERE a=7938;\nUPDATE t2 SET c='sixty thousand two hundred forty' WHERE a=7939;\nUPDATE t2 SET c='ninety-four thousand five hundred seventy-two' WHERE a=7940;\nUPDATE t2 SET c='fourteen thousand six hundred four' WHERE a=7941;\nUPDATE t2 SET c='eighty-five thousand seventy-six' WHERE a=7942;\nUPDATE t2 SET c='fourteen thousand three hundred five' WHERE a=7943;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-six' WHERE a=7944;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-one' WHERE a=7945;\nUPDATE t2 SET c='eighty-two thousand eighty' WHERE a=7946;\nUPDATE t2 SET c='one thousand eight hundred thirty-nine' WHERE a=7947;\nUPDATE t2 SET c='seventy-two thousand five hundred nine' WHERE a=7948;\nUPDATE t2 SET c='eight thousand nine hundred thirty-eight' WHERE a=7949;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirteen' WHERE a=7950;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty-five' WHERE a=7951;\nUPDATE t2 SET c='thirty-five thousand one hundred twenty-nine' WHERE a=7952;\nUPDATE t2 SET c='six thousand two hundred nine' WHERE a=7953;\nUPDATE t2 SET c='forty-nine thousand seven hundred forty-nine' WHERE a=7954;\nUPDATE t2 SET c='sixty-three thousand four hundred thirty' WHERE a=7955;\nUPDATE t2 SET c='nineteen thousand ninety-five' WHERE a=7956;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-seven' WHERE a=7957;\nUPDATE t2 SET c='forty-five thousand seven hundred six' WHERE a=7958;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-one' WHERE a=7959;\nUPDATE t2 SET c='twenty-one thousand four hundred ninety' WHERE a=7960;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-four' WHERE a=7961;\nUPDATE t2 SET c='twenty-six thousand one hundred eight' WHERE a=7962;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-four' WHERE a=7963;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy-eight' WHERE a=7964;\nUPDATE t2 SET c='thirty-four thousand one hundred one' WHERE a=7965;\nUPDATE t2 SET c='ninety-one thousand one hundred seventy-two' WHERE a=7966;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-six' WHERE a=7967;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-six' WHERE a=7968;\nUPDATE t2 SET c='ninety-seven thousand two hundred fifty-three' WHERE a=7969;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-three' WHERE a=7970;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=7971;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-three' WHERE a=7972;\nUPDATE t2 SET c='seventy-nine thousand six hundred three' WHERE a=7973;\nUPDATE t2 SET c='sixty-eight thousand three hundred seventeen' WHERE a=7974;\nUPDATE t2 SET c='seventy-two thousand six hundred twenty-one' WHERE a=7975;\nUPDATE t2 SET c='ninety-six thousand eight hundred twenty-three' WHERE a=7976;\nUPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=7977;\nUPDATE t2 SET c='two thousand eight hundred fifty-one' WHERE a=7978;\nUPDATE t2 SET c='sixty-nine thousand five hundred five' WHERE a=7979;\nUPDATE t2 SET c='seventy-two thousand two hundred fourteen' WHERE a=7980;\nUPDATE t2 SET c='fifty-one thousand four hundred eight' WHERE a=7981;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty' WHERE a=7982;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-eight' WHERE a=7983;\nUPDATE t2 SET c='forty-two thousand nine hundred fifty' WHERE a=7984;\nUPDATE t2 SET c='eleven thousand six hundred ninety-seven' WHERE a=7985;\nUPDATE t2 SET c='twenty-nine thousand four hundred eighty' WHERE a=7986;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=7987;\nUPDATE t2 SET c='seventy-four thousand three hundred thirteen' WHERE a=7988;\nUPDATE t2 SET c='forty-six thousand five hundred thirteen' WHERE a=7989;\nUPDATE t2 SET c='seventy-six thousand nine hundred fifty-two' WHERE a=7990;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-six' WHERE a=7991;\nUPDATE t2 SET c='ninety-three thousand six hundred four' WHERE a=7992;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-one' WHERE a=7993;\nUPDATE t2 SET c='thirty-one thousand nine hundred five' WHERE a=7994;\nUPDATE t2 SET c='ninety-five thousand eight hundred twenty-five' WHERE a=7995;\nUPDATE t2 SET c='twenty-six thousand fifty-five' WHERE a=7996;\nUPDATE t2 SET c='sixty-six thousand five hundred sixty-six' WHERE a=7997;\nUPDATE t2 SET c='thirty-nine thousand six hundred eighty-six' WHERE a=7998;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty-five' WHERE a=7999;\nUPDATE t2 SET c='thirty-nine thousand six hundred eighty-five' WHERE a=8000;\nUPDATE t2 SET c='nineteen thousand four hundred ninety-one' WHERE a=8001;\nUPDATE t2 SET c='fourteen thousand one hundred two' WHERE a=8002;\nUPDATE t2 SET c='ninety-four thousand nine hundred ninety-one' WHERE a=8003;\nUPDATE t2 SET c='ninety-two thousand one hundred ninety-five' WHERE a=8004;\nUPDATE t2 SET c='sixty-five thousand ninety-three' WHERE a=8005;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-eight' WHERE a=8006;\nUPDATE t2 SET c='seven thousand two hundred sixty-five' WHERE a=8007;\nUPDATE t2 SET c='thirty-six thousand thirty-nine' WHERE a=8008;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty-three' WHERE a=8009;\nUPDATE t2 SET c='sixty-two thousand two hundred twenty-six' WHERE a=8010;\nUPDATE t2 SET c='thirty-four thousand four hundred ninety-nine' WHERE a=8011;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty-six' WHERE a=8012;\nUPDATE t2 SET c='fifty-two thousand five hundred four' WHERE a=8013;\nUPDATE t2 SET c='forty-one thousand five hundred twenty-three' WHERE a=8014;\nUPDATE t2 SET c='eighty-six thousand three hundred seventy-two' WHERE a=8015;\nUPDATE t2 SET c='twenty-eight thousand four hundred sixty' WHERE a=8016;\nUPDATE t2 SET c='forty-three thousand six hundred ninety-four' WHERE a=8017;\nUPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=8018;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-seven' WHERE a=8019;\nUPDATE t2 SET c='forty-four thousand fifty-nine' WHERE a=8020;\nUPDATE t2 SET c='twenty-seven thousand six hundred' WHERE a=8021;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=8022;\nUPDATE t2 SET c='sixty-six thousand eight hundred five' WHERE a=8023;\nUPDATE t2 SET c='one thousand six hundred forty' WHERE a=8024;\nUPDATE t2 SET c='nine thousand five hundred ninety-eight' WHERE a=8025;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-five' WHERE a=8026;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty' WHERE a=8027;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-nine' WHERE a=8028;\nUPDATE t2 SET c='forty-three thousand nine hundred fifty-five' WHERE a=8029;\nUPDATE t2 SET c='sixty thousand five hundred eighty' WHERE a=8030;\nUPDATE t2 SET c='thirty-five thousand four hundred nine' WHERE a=8031;\nUPDATE t2 SET c='sixty-seven thousand five hundred thirty-four' WHERE a=8032;\nUPDATE t2 SET c='eighteen thousand two hundred forty' WHERE a=8033;\nUPDATE t2 SET c='seventy-eight thousand four hundred seventy' WHERE a=8034;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty-four' WHERE a=8035;\nUPDATE t2 SET c='ninety-three thousand seven hundred thirty-one' WHERE a=8036;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-one' WHERE a=8037;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety-six' WHERE a=8038;\nUPDATE t2 SET c='seven thousand nine hundred seventy-five' WHERE a=8039;\nUPDATE t2 SET c='sixty-three thousand eight hundred thirty-nine' WHERE a=8040;\nUPDATE t2 SET c='eighty thousand eight' WHERE a=8041;\nUPDATE t2 SET c='five thousand four' WHERE a=8042;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-three' WHERE a=8043;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty' WHERE a=8044;\nUPDATE t2 SET c='fifty-eight thousand three hundred fifty-eight' WHERE a=8045;\nUPDATE t2 SET c='sixty-five thousand seven hundred ten' WHERE a=8046;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-five' WHERE a=8047;\nUPDATE t2 SET c='thirty-eight thousand seventy-six' WHERE a=8048;\nUPDATE t2 SET c='eleven thousand one hundred twenty-three' WHERE a=8049;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-one' WHERE a=8050;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy' WHERE a=8051;\nUPDATE t2 SET c='forty-one thousand four hundred sixteen' WHERE a=8052;\nUPDATE t2 SET c='twelve thousand eight hundred ninety-eight' WHERE a=8053;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy-one' WHERE a=8054;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-six' WHERE a=8055;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-four' WHERE a=8056;\nUPDATE t2 SET c='seven thousand seven hundred seventy-eight' WHERE a=8057;\nUPDATE t2 SET c='twenty-eight thousand seven hundred ninety-nine' WHERE a=8058;\nUPDATE t2 SET c='forty-nine thousand two hundred eleven' WHERE a=8059;\nUPDATE t2 SET c='ninety-three thousand three hundred forty-five' WHERE a=8060;\nUPDATE t2 SET c='eight thousand five hundred fifty-five' WHERE a=8061;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-five' WHERE a=8062;\nUPDATE t2 SET c='thirty-five thousand four hundred seventy-six' WHERE a=8063;\nUPDATE t2 SET c='fifty-eight thousand five hundred forty-seven' WHERE a=8064;\nUPDATE t2 SET c='forty-one thousand eighty-six' WHERE a=8065;\nUPDATE t2 SET c='eighty-six thousand eight hundred seventy' WHERE a=8066;\nUPDATE t2 SET c='eighty-seven thousand six hundred ninety-one' WHERE a=8067;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=8068;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-five' WHERE a=8069;\nUPDATE t2 SET c='seventy-two thousand six hundred eighteen' WHERE a=8070;\nUPDATE t2 SET c='ninety-eight thousand six hundred thirty-eight' WHERE a=8071;\nUPDATE t2 SET c='thirty-one thousand seven hundred eighty-one' WHERE a=8072;\nUPDATE t2 SET c='ten thousand one hundred six' WHERE a=8073;\nUPDATE t2 SET c='sixty-five thousand three hundred thirty-four' WHERE a=8074;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=8075;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-seven' WHERE a=8076;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-four' WHERE a=8077;\nUPDATE t2 SET c='three thousand one hundred sixty-six' WHERE a=8078;\nUPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=8079;\nUPDATE t2 SET c='seventy thousand six hundred seventy-three' WHERE a=8080;\nUPDATE t2 SET c='fifty-eight thousand nine hundred sixty-one' WHERE a=8081;\nUPDATE t2 SET c='six thousand three hundred twenty-one' WHERE a=8082;\nUPDATE t2 SET c='sixty-seven thousand three hundred twenty-eight' WHERE a=8083;\nUPDATE t2 SET c='ninety-seven thousand seven hundred nineteen' WHERE a=8084;\nUPDATE t2 SET c='twenty-one thousand eighty-one' WHERE a=8085;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-seven' WHERE a=8086;\nUPDATE t2 SET c='forty thousand one hundred thirty-one' WHERE a=8087;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-one' WHERE a=8088;\nUPDATE t2 SET c='eighteen thousand nine hundred fourteen' WHERE a=8089;\nUPDATE t2 SET c='seventy thousand six hundred sixty-four' WHERE a=8090;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-four' WHERE a=8091;\nUPDATE t2 SET c='two thousand two hundred eighty-seven' WHERE a=8092;\nUPDATE t2 SET c='eighty-seven thousand seventy-five' WHERE a=8093;\nUPDATE t2 SET c='four thousand seven hundred thirty-eight' WHERE a=8094;\nUPDATE t2 SET c='seven thousand two hundred seventy-four' WHERE a=8095;\nUPDATE t2 SET c='forty-one thousand three hundred ninety-seven' WHERE a=8096;\nUPDATE t2 SET c='twenty thousand nine hundred twenty' WHERE a=8097;\nUPDATE t2 SET c='ten thousand one hundred ninety-four' WHERE a=8098;\nUPDATE t2 SET c='thirty-three thousand four hundred thirty-three' WHERE a=8099;\nUPDATE t2 SET c='twenty thousand five hundred thirty-two' WHERE a=8100;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-nine' WHERE a=8101;\nUPDATE t2 SET c='twenty-eight thousand six hundred eighty-five' WHERE a=8102;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=8103;\nUPDATE t2 SET c='fifty-nine thousand eighty-five' WHERE a=8104;\nUPDATE t2 SET c='eighty-seven thousand six hundred eight' WHERE a=8105;\nUPDATE t2 SET c='seven thousand four hundred eighty-four' WHERE a=8106;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-nine' WHERE a=8107;\nUPDATE t2 SET c='seventy-seven thousand eight hundred two' WHERE a=8108;\nUPDATE t2 SET c='eight thousand four hundred thirty-seven' WHERE a=8109;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-seven' WHERE a=8110;\nUPDATE t2 SET c='one thousand seven hundred eleven' WHERE a=8111;\nUPDATE t2 SET c='sixty-seven thousand five hundred eleven' WHERE a=8112;\nUPDATE t2 SET c='four thousand two hundred' WHERE a=8113;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-four' WHERE a=8114;\nUPDATE t2 SET c='thirty-seven thousand seven hundred fifty-three' WHERE a=8115;\nUPDATE t2 SET c='eighteen thousand four hundred forty-seven' WHERE a=8116;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-four' WHERE a=8117;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-five' WHERE a=8118;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-six' WHERE a=8119;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-two' WHERE a=8120;\nUPDATE t2 SET c='thirty-six thousand eight hundred twenty-six' WHERE a=8121;\nUPDATE t2 SET c='fifty-four thousand five hundred thirty-six' WHERE a=8122;\nUPDATE t2 SET c='eighty-five thousand two hundred fifty-three' WHERE a=8123;\nUPDATE t2 SET c='ten thousand eight hundred seven' WHERE a=8124;\nUPDATE t2 SET c='twenty-eight thousand two hundred seventy-three' WHERE a=8125;\nUPDATE t2 SET c='twelve thousand eight hundred twenty-eight' WHERE a=8126;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-five' WHERE a=8127;\nUPDATE t2 SET c='fifty-nine thousand three hundred forty-seven' WHERE a=8128;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-one' WHERE a=8129;\nUPDATE t2 SET c='nine thousand two hundred eight' WHERE a=8130;\nUPDATE t2 SET c='seventy-three thousand eight hundred fifty-six' WHERE a=8131;\nUPDATE t2 SET c='fifty-eight thousand forty-three' WHERE a=8132;\nUPDATE t2 SET c='fourteen thousand seven hundred seven' WHERE a=8133;\nUPDATE t2 SET c='eighty-two thousand two hundred twenty-five' WHERE a=8134;\nUPDATE t2 SET c='seventy-eight thousand six hundred seventy-four' WHERE a=8135;\nUPDATE t2 SET c='twenty-six thousand three hundred fourteen' WHERE a=8136;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty-five' WHERE a=8137;\nUPDATE t2 SET c='forty-five thousand seventy-six' WHERE a=8138;\nUPDATE t2 SET c='fifty-three thousand one hundred twelve' WHERE a=8139;\nUPDATE t2 SET c='ninety-nine thousand six hundred eight' WHERE a=8140;\nUPDATE t2 SET c='thirty-one thousand three hundred thirty-three' WHERE a=8141;\nUPDATE t2 SET c='ninety-three thousand two hundred sixty-four' WHERE a=8142;\nUPDATE t2 SET c='eighty thousand six hundred six' WHERE a=8143;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-six' WHERE a=8144;\nUPDATE t2 SET c='fifty-five thousand two hundred sixty-nine' WHERE a=8145;\nUPDATE t2 SET c='three thousand two hundred ninety' WHERE a=8146;\nUPDATE t2 SET c='five thousand five hundred' WHERE a=8147;\nUPDATE t2 SET c='seventy thousand five hundred forty-eight' WHERE a=8148;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-five' WHERE a=8149;\nUPDATE t2 SET c='seventy thousand four hundred twenty' WHERE a=8150;\nUPDATE t2 SET c='nine thousand eight hundred fifty-two' WHERE a=8151;\nUPDATE t2 SET c='seventy-four thousand one hundred sixty' WHERE a=8152;\nUPDATE t2 SET c='forty-four thousand six hundred four' WHERE a=8153;\nUPDATE t2 SET c='one thousand two hundred fifty-nine' WHERE a=8154;\nUPDATE t2 SET c='forty-three thousand sixteen' WHERE a=8155;\nUPDATE t2 SET c='fifty-two thousand nine hundred ninety-one' WHERE a=8156;\nUPDATE t2 SET c='thirteen thousand three hundred twenty-three' WHERE a=8157;\nUPDATE t2 SET c='one thousand one hundred fifty-one' WHERE a=8158;\nUPDATE t2 SET c='sixty thousand three hundred seventy-six' WHERE a=8159;\nUPDATE t2 SET c='seventy-five thousand seven hundred seventy-five' WHERE a=8160;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-three' WHERE a=8161;\nUPDATE t2 SET c='seventy thousand three hundred eighty-one' WHERE a=8162;\nUPDATE t2 SET c='forty thousand two hundred seven' WHERE a=8163;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-two' WHERE a=8164;\nUPDATE t2 SET c='thirty-three thousand five hundred forty-nine' WHERE a=8165;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=8166;\nUPDATE t2 SET c='eighty thousand nine hundred forty-three' WHERE a=8167;\nUPDATE t2 SET c='ninety-two thousand four hundred ninety-seven' WHERE a=8168;\nUPDATE t2 SET c='forty-five thousand nine hundred thirty-four' WHERE a=8169;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty-three' WHERE a=8170;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixteen' WHERE a=8171;\nUPDATE t2 SET c='sixty-four thousand five hundred twenty-seven' WHERE a=8172;\nUPDATE t2 SET c='forty-four thousand thirteen' WHERE a=8173;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty' WHERE a=8174;\nUPDATE t2 SET c='fifty-two thousand one hundred eighty' WHERE a=8175;\nUPDATE t2 SET c='eight thousand nine hundred five' WHERE a=8176;\nUPDATE t2 SET c='seventeen thousand seven hundred eighty-two' WHERE a=8177;\nUPDATE t2 SET c='seventy-two thousand two hundred ninety-eight' WHERE a=8178;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=8179;\nUPDATE t2 SET c='seventy-one thousand seventy-three' WHERE a=8180;\nUPDATE t2 SET c='twenty-two thousand one hundred ninety-six' WHERE a=8181;\nUPDATE t2 SET c='twelve thousand one hundred eighteen' WHERE a=8182;\nUPDATE t2 SET c='seventy-nine thousand forty-four' WHERE a=8183;\nUPDATE t2 SET c='ninety-three thousand forty-four' WHERE a=8184;\nUPDATE t2 SET c='seventy-two thousand fifty-three' WHERE a=8185;\nUPDATE t2 SET c='fifty-seven thousand nine hundred seventy-two' WHERE a=8186;\nUPDATE t2 SET c='sixty-five thousand five hundred thirty-four' WHERE a=8187;\nUPDATE t2 SET c='fifty-six thousand eight hundred twenty-seven' WHERE a=8188;\nUPDATE t2 SET c='twenty-eight thousand four hundred eleven' WHERE a=8189;\nUPDATE t2 SET c='seventy-eight thousand nine hundred twenty-two' WHERE a=8190;\nUPDATE t2 SET c='ninety-seven thousand two hundred one' WHERE a=8191;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety-nine' WHERE a=8192;\nUPDATE t2 SET c='twenty-seven thousand one hundred one' WHERE a=8193;\nUPDATE t2 SET c='fifty-five thousand one hundred one' WHERE a=8194;\nUPDATE t2 SET c='thirty-four thousand forty-four' WHERE a=8195;\nUPDATE t2 SET c='thirty-one thousand eight hundred fifty-four' WHERE a=8196;\nUPDATE t2 SET c='thirty-seven thousand seven hundred seventy-one' WHERE a=8197;\nUPDATE t2 SET c='three thousand eight hundred sixty-four' WHERE a=8198;\nUPDATE t2 SET c='eight thousand two hundred seventy-four' WHERE a=8199;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-nine' WHERE a=8200;\nUPDATE t2 SET c='eighteen thousand two hundred eighteen' WHERE a=8201;\nUPDATE t2 SET c='eight thousand nine hundred twenty-two' WHERE a=8202;\nUPDATE t2 SET c='twenty-eight thousand five' WHERE a=8203;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-one' WHERE a=8204;\nUPDATE t2 SET c='ten thousand six hundred eighty-four' WHERE a=8205;\nUPDATE t2 SET c='sixty-six thousand seven hundred eighty-seven' WHERE a=8206;\nUPDATE t2 SET c='eighty-six thousand five hundred forty' WHERE a=8207;\nUPDATE t2 SET c='ninety-three thousand nine hundred thirty' WHERE a=8208;\nUPDATE t2 SET c='fifty-three thousand nine hundred eighty-nine' WHERE a=8209;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=8210;\nUPDATE t2 SET c='fifty thousand six hundred fifty-five' WHERE a=8211;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-eight' WHERE a=8212;\nUPDATE t2 SET c='twenty-seven thousand six hundred eighty-six' WHERE a=8213;\nUPDATE t2 SET c='eighty-six thousand one hundred sixty-nine' WHERE a=8214;\nUPDATE t2 SET c='eleven thousand five hundred nine' WHERE a=8215;\nUPDATE t2 SET c='twenty-seven thousand eight hundred thirty' WHERE a=8216;\nUPDATE t2 SET c='fifty thousand four hundred thirty-one' WHERE a=8217;\nUPDATE t2 SET c='seventy-eight thousand eight hundred sixteen' WHERE a=8218;\nUPDATE t2 SET c='two thousand four hundred twenty' WHERE a=8219;\nUPDATE t2 SET c='twenty-four thousand five hundred one' WHERE a=8220;\nUPDATE t2 SET c='fifty-five thousand two hundred forty' WHERE a=8221;\nUPDATE t2 SET c='eighty-five thousand nine hundred fifty-five' WHERE a=8222;\nUPDATE t2 SET c='ninety-nine thousand nine hundred eighteen' WHERE a=8223;\nUPDATE t2 SET c='eight thousand five hundred forty-eight' WHERE a=8224;\nUPDATE t2 SET c='seventeen thousand eight hundred forty' WHERE a=8225;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-nine' WHERE a=8226;\nUPDATE t2 SET c='sixty-one thousand six hundred seventy-one' WHERE a=8227;\nUPDATE t2 SET c='ninety-six thousand one hundred seventy-one' WHERE a=8228;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-three' WHERE a=8229;\nUPDATE t2 SET c='thirteen thousand seven hundred thirteen' WHERE a=8230;\nUPDATE t2 SET c='ninety-nine thousand fifty-one' WHERE a=8231;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty' WHERE a=8232;\nUPDATE t2 SET c='six thousand nine hundred eighty' WHERE a=8233;\nUPDATE t2 SET c='fifty thousand twenty-four' WHERE a=8234;\nUPDATE t2 SET c='eighty-four thousand three hundred thirty-four' WHERE a=8235;\nUPDATE t2 SET c='sixty-two thousand six hundred seventeen' WHERE a=8236;\nUPDATE t2 SET c='eighty-one thousand two hundred eighty-eight' WHERE a=8237;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-eight' WHERE a=8238;\nUPDATE t2 SET c='nineteen thousand seventy-eight' WHERE a=8239;\nUPDATE t2 SET c='seven thousand one hundred ninety-two' WHERE a=8240;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=8241;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy-four' WHERE a=8242;\nUPDATE t2 SET c='ninety-five thousand eight hundred eight' WHERE a=8243;\nUPDATE t2 SET c='one thousand nine hundred fifty-seven' WHERE a=8244;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-five' WHERE a=8245;\nUPDATE t2 SET c='thirty thousand six hundred seventy' WHERE a=8246;\nUPDATE t2 SET c='eighty-seven thousand four hundred eighty-four' WHERE a=8247;\nUPDATE t2 SET c='sixty thousand sixty-four' WHERE a=8248;\nUPDATE t2 SET c='forty-four thousand thirty-six' WHERE a=8249;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=8250;\nUPDATE t2 SET c='ninety-four thousand two hundred fifty-seven' WHERE a=8251;\nUPDATE t2 SET c='twenty-three thousand seven hundred two' WHERE a=8252;\nUPDATE t2 SET c='sixty thousand four hundred eighty' WHERE a=8253;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-two' WHERE a=8254;\nUPDATE t2 SET c='fifteen thousand nine hundred ninety-seven' WHERE a=8255;\nUPDATE t2 SET c='eighty-two thousand eight hundred thirty-seven' WHERE a=8256;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=8257;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixty-six' WHERE a=8258;\nUPDATE t2 SET c='eleven thousand seven hundred forty-six' WHERE a=8259;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-six' WHERE a=8260;\nUPDATE t2 SET c='fifteen thousand three hundred seventy-five' WHERE a=8261;\nUPDATE t2 SET c='five thousand sixty-one' WHERE a=8262;\nUPDATE t2 SET c='seventy thousand eight hundred seventy' WHERE a=8263;\nUPDATE t2 SET c='three thousand nine hundred fifty-eight' WHERE a=8264;\nUPDATE t2 SET c='forty-six thousand one hundred forty-eight' WHERE a=8265;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-eight' WHERE a=8266;\nUPDATE t2 SET c='forty-six thousand two hundred fifty-eight' WHERE a=8267;\nUPDATE t2 SET c='eleven thousand three hundred seventy-seven' WHERE a=8268;\nUPDATE t2 SET c='eighty-nine thousand three hundred fourteen' WHERE a=8269;\nUPDATE t2 SET c='twenty-two thousand eight hundred fifty-one' WHERE a=8270;\nUPDATE t2 SET c='fifty thousand one hundred thirty-two' WHERE a=8271;\nUPDATE t2 SET c='five thousand six hundred thirty-three' WHERE a=8272;\nUPDATE t2 SET c='seventy-six thousand one hundred seventy-five' WHERE a=8273;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixty-five' WHERE a=8274;\nUPDATE t2 SET c='fifty-five thousand four hundred ninety-one' WHERE a=8275;\nUPDATE t2 SET c='seventy-six thousand six hundred seventy-two' WHERE a=8276;\nUPDATE t2 SET c='eighty-five thousand four hundred eighty-one' WHERE a=8277;\nUPDATE t2 SET c='four hundred one' WHERE a=8278;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-four' WHERE a=8279;\nUPDATE t2 SET c='sixteen thousand seventy-two' WHERE a=8280;\nUPDATE t2 SET c='thirteen thousand eight hundred ten' WHERE a=8281;\nUPDATE t2 SET c='ninety-two thousand six hundred eighty-two' WHERE a=8282;\nUPDATE t2 SET c='three thousand one hundred five' WHERE a=8283;\nUPDATE t2 SET c='forty thousand five hundred nineteen' WHERE a=8284;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-nine' WHERE a=8285;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-six' WHERE a=8286;\nUPDATE t2 SET c='four thousand four hundred fifty-three' WHERE a=8287;\nUPDATE t2 SET c='thirty thousand nine hundred eighty-seven' WHERE a=8288;\nUPDATE t2 SET c='sixty-three thousand four hundred fifty-six' WHERE a=8289;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-five' WHERE a=8290;\nUPDATE t2 SET c='thirty thousand four hundred thirty-three' WHERE a=8291;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy' WHERE a=8292;\nUPDATE t2 SET c='eleven thousand two hundred thirty-five' WHERE a=8293;\nUPDATE t2 SET c='eighty-one thousand seven hundred ninety-eight' WHERE a=8294;\nUPDATE t2 SET c='seventy-four thousand four hundred fourteen' WHERE a=8295;\nUPDATE t2 SET c='nine thousand five hundred sixty-three' WHERE a=8296;\nUPDATE t2 SET c='ninety thousand seven hundred eighty-five' WHERE a=8297;\nUPDATE t2 SET c='ninety-five thousand five hundred fifty' WHERE a=8298;\nUPDATE t2 SET c='five thousand eight hundred forty-six' WHERE a=8299;\nUPDATE t2 SET c='forty-seven thousand six hundred twenty-two' WHERE a=8300;\nUPDATE t2 SET c='ninety-eight thousand eight hundred twenty-seven' WHERE a=8301;\nUPDATE t2 SET c='seventy thousand seven hundred forty-three' WHERE a=8302;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=8303;\nUPDATE t2 SET c='fourteen thousand five hundred twenty-nine' WHERE a=8304;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=8305;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-seven' WHERE a=8306;\nUPDATE t2 SET c='ten thousand nine hundred forty-three' WHERE a=8307;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=8308;\nUPDATE t2 SET c='sixty thousand nine hundred twenty-nine' WHERE a=8309;\nUPDATE t2 SET c='eighty-one thousand eight hundred twenty-seven' WHERE a=8310;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-two' WHERE a=8311;\nUPDATE t2 SET c='fifty-nine thousand seven hundred sixty-one' WHERE a=8312;\nUPDATE t2 SET c='thirty thousand two hundred thirty-two' WHERE a=8313;\nUPDATE t2 SET c='thirty-two thousand one hundred seventy-nine' WHERE a=8314;\nUPDATE t2 SET c='five thousand fourteen' WHERE a=8315;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-seven' WHERE a=8316;\nUPDATE t2 SET c='sixteen thousand three hundred ninety-six' WHERE a=8317;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-seven' WHERE a=8318;\nUPDATE t2 SET c='twenty-seven thousand six hundred ninety-six' WHERE a=8319;\nUPDATE t2 SET c='fifty thousand eight hundred seven' WHERE a=8320;\nUPDATE t2 SET c='seventy-nine thousand four hundred sixty-eight' WHERE a=8321;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-three' WHERE a=8322;\nUPDATE t2 SET c='ninety-three thousand three hundred five' WHERE a=8323;\nUPDATE t2 SET c='nine thousand seventeen' WHERE a=8324;\nUPDATE t2 SET c='twenty-eight thousand two hundred fifty-six' WHERE a=8325;\nUPDATE t2 SET c='eighty-three thousand five hundred eighty' WHERE a=8326;\nUPDATE t2 SET c='forty-two thousand four hundred eighty-four' WHERE a=8327;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirty-eight' WHERE a=8328;\nUPDATE t2 SET c='twenty-two thousand seventeen' WHERE a=8329;\nUPDATE t2 SET c='ninety-four thousand one hundred ten' WHERE a=8330;\nUPDATE t2 SET c='eighty-three thousand two hundred two' WHERE a=8331;\nUPDATE t2 SET c='thirty thousand one hundred forty-eight' WHERE a=8332;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-seven' WHERE a=8333;\nUPDATE t2 SET c='sixty-eight thousand six hundred fifty-nine' WHERE a=8334;\nUPDATE t2 SET c='eighteen thousand four hundred eighteen' WHERE a=8335;\nUPDATE t2 SET c='fifty-nine thousand four hundred thirty' WHERE a=8336;\nUPDATE t2 SET c='sixty-four thousand four hundred nine' WHERE a=8337;\nUPDATE t2 SET c='forty-six thousand eight hundred ninety-four' WHERE a=8338;\nUPDATE t2 SET c='twenty-five thousand seven hundred seven' WHERE a=8339;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty' WHERE a=8340;\nUPDATE t2 SET c='thirty-three thousand four hundred eleven' WHERE a=8341;\nUPDATE t2 SET c='forty-two thousand forty' WHERE a=8342;\nUPDATE t2 SET c='seventy-four thousand four hundred ten' WHERE a=8343;\nUPDATE t2 SET c='ninety-one thousand eight hundred ninety-five' WHERE a=8344;\nUPDATE t2 SET c='twenty-nine thousand seven hundred forty-six' WHERE a=8345;\nUPDATE t2 SET c='fifty-four thousand seventy-four' WHERE a=8346;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-seven' WHERE a=8347;\nUPDATE t2 SET c='fifty-four thousand nine hundred ninety-nine' WHERE a=8348;\nUPDATE t2 SET c='sixty thousand seven hundred six' WHERE a=8349;\nUPDATE t2 SET c='thirty thousand five hundred two' WHERE a=8350;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-five' WHERE a=8351;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-six' WHERE a=8352;\nUPDATE t2 SET c='sixty-nine thousand seventy-four' WHERE a=8353;\nUPDATE t2 SET c='eighty thousand nine hundred forty-two' WHERE a=8354;\nUPDATE t2 SET c='sixteen thousand two hundred seventy-eight' WHERE a=8355;\nUPDATE t2 SET c='three thousand ninety-eight' WHERE a=8356;\nUPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=8357;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-three' WHERE a=8358;\nUPDATE t2 SET c='seventeen thousand ninety-five' WHERE a=8359;\nUPDATE t2 SET c='forty-nine thousand six hundred two' WHERE a=8360;\nUPDATE t2 SET c='sixty-seven thousand five hundred three' WHERE a=8361;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-two' WHERE a=8362;\nUPDATE t2 SET c='forty-eight thousand three hundred seventy-three' WHERE a=8363;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-nine' WHERE a=8364;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty-five' WHERE a=8365;\nUPDATE t2 SET c='sixty-two thousand nine hundred twelve' WHERE a=8366;\nUPDATE t2 SET c='forty-two thousand two hundred forty-three' WHERE a=8367;\nUPDATE t2 SET c='seventy-eight thousand nine hundred eighty-four' WHERE a=8368;\nUPDATE t2 SET c='fifteen thousand four hundred six' WHERE a=8369;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-five' WHERE a=8370;\nUPDATE t2 SET c='sixty-nine thousand seven hundred sixty-five' WHERE a=8371;\nUPDATE t2 SET c='fifty-three thousand six hundred forty-five' WHERE a=8372;\nUPDATE t2 SET c='ten thousand seven hundred forty-three' WHERE a=8373;\nUPDATE t2 SET c='fourteen thousand three hundred eighty' WHERE a=8374;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-nine' WHERE a=8375;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-two' WHERE a=8376;\nUPDATE t2 SET c='sixty-six thousand ninety-two' WHERE a=8377;\nUPDATE t2 SET c='sixty-nine thousand one hundred seventy-four' WHERE a=8378;\nUPDATE t2 SET c='thirty-three thousand one hundred four' WHERE a=8379;\nUPDATE t2 SET c='forty-two thousand four hundred seventy-nine' WHERE a=8380;\nUPDATE t2 SET c='nine hundred forty-nine' WHERE a=8381;\nUPDATE t2 SET c='twelve thousand four hundred fifty-four' WHERE a=8382;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty-four' WHERE a=8383;\nUPDATE t2 SET c='sixty-three thousand five hundred eleven' WHERE a=8384;\nUPDATE t2 SET c='seventy thousand three hundred thirty-eight' WHERE a=8385;\nUPDATE t2 SET c='ninety-five thousand thirty-one' WHERE a=8386;\nUPDATE t2 SET c='eleven thousand six hundred ninety-four' WHERE a=8387;\nUPDATE t2 SET c='thirty-three thousand one hundred thirty-three' WHERE a=8388;\nUPDATE t2 SET c='six thousand three hundred one' WHERE a=8389;\nUPDATE t2 SET c='thirty-seven thousand eight hundred five' WHERE a=8390;\nUPDATE t2 SET c='fifty-five thousand one hundred forty-four' WHERE a=8391;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-five' WHERE a=8392;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-two' WHERE a=8393;\nUPDATE t2 SET c='ninety-two thousand one hundred forty-three' WHERE a=8394;\nUPDATE t2 SET c='ten thousand eight hundred seventy-two' WHERE a=8395;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixteen' WHERE a=8396;\nUPDATE t2 SET c='thirty-two thousand six hundred one' WHERE a=8397;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-six' WHERE a=8398;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy-three' WHERE a=8399;\nUPDATE t2 SET c='seventy-seven thousand seven hundred seventy' WHERE a=8400;\nUPDATE t2 SET c='forty-nine thousand eight hundred ninety-six' WHERE a=8401;\nUPDATE t2 SET c='eight hundred twenty-nine' WHERE a=8402;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-three' WHERE a=8403;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty-five' WHERE a=8404;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-seven' WHERE a=8405;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-nine' WHERE a=8406;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty-two' WHERE a=8407;\nUPDATE t2 SET c='twenty-five thousand five hundred four' WHERE a=8408;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-six' WHERE a=8409;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-six' WHERE a=8410;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-two' WHERE a=8411;\nUPDATE t2 SET c='seventy-five thousand nine hundred seventy-six' WHERE a=8412;\nUPDATE t2 SET c='ten thousand one hundred ninety-three' WHERE a=8413;\nUPDATE t2 SET c='six thousand seventy-three' WHERE a=8414;\nUPDATE t2 SET c='sixty-three thousand two hundred fourteen' WHERE a=8415;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-nine' WHERE a=8416;\nUPDATE t2 SET c='five thousand four hundred seventy-five' WHERE a=8417;\nUPDATE t2 SET c='seventy thousand ninety-five' WHERE a=8418;\nUPDATE t2 SET c='forty-two thousand three hundred ninety-eight' WHERE a=8419;\nUPDATE t2 SET c='eighteen thousand twenty-nine' WHERE a=8420;\nUPDATE t2 SET c='forty thousand four hundred fifty-two' WHERE a=8421;\nUPDATE t2 SET c='forty-eight thousand two hundred eight' WHERE a=8422;\nUPDATE t2 SET c='thirty-four thousand five hundred ninety-four' WHERE a=8423;\nUPDATE t2 SET c='forty-nine thousand eight hundred eighty-two' WHERE a=8424;\nUPDATE t2 SET c='fifty-six thousand seven hundred nineteen' WHERE a=8425;\nUPDATE t2 SET c='two thousand three hundred ninety-one' WHERE a=8426;\nUPDATE t2 SET c='ninety-nine thousand seven hundred eighty-five' WHERE a=8427;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-seven' WHERE a=8428;\nUPDATE t2 SET c='sixty-one thousand four hundred forty-nine' WHERE a=8429;\nUPDATE t2 SET c='sixty-three thousand four hundred twenty-four' WHERE a=8430;\nUPDATE t2 SET c='eleven thousand thirteen' WHERE a=8431;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-two' WHERE a=8432;\nUPDATE t2 SET c='eighty thousand five hundred forty' WHERE a=8433;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-eight' WHERE a=8434;\nUPDATE t2 SET c='sixty-three thousand three hundred twenty' WHERE a=8435;\nUPDATE t2 SET c='three thousand two hundred forty-five' WHERE a=8436;\nUPDATE t2 SET c='fifty-six thousand eight hundred forty-five' WHERE a=8437;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-eight' WHERE a=8438;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty-nine' WHERE a=8439;\nUPDATE t2 SET c='seventy-two thousand two' WHERE a=8440;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-seven' WHERE a=8441;\nUPDATE t2 SET c='ninety-six thousand five hundred twelve' WHERE a=8442;\nUPDATE t2 SET c='seventy-two thousand seven hundred forty-one' WHERE a=8443;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-three' WHERE a=8444;\nUPDATE t2 SET c='forty-three thousand six hundred twelve' WHERE a=8445;\nUPDATE t2 SET c='ten thousand seven hundred thirty-five' WHERE a=8446;\nUPDATE t2 SET c='twenty thousand four hundred fifty-three' WHERE a=8447;\nUPDATE t2 SET c='forty-one thousand two hundred eighty' WHERE a=8448;\nUPDATE t2 SET c='four hundred ten' WHERE a=8449;\nUPDATE t2 SET c='fifty-one thousand three hundred ninety-four' WHERE a=8450;\nUPDATE t2 SET c='seventy-nine thousand four hundred eighty-nine' WHERE a=8451;\nUPDATE t2 SET c='twelve thousand nine hundred thirty-four' WHERE a=8452;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-seven' WHERE a=8453;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-three' WHERE a=8454;\nUPDATE t2 SET c='six thousand four hundred six' WHERE a=8455;\nUPDATE t2 SET c='eighty-seven thousand six hundred forty-eight' WHERE a=8456;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-six' WHERE a=8457;\nUPDATE t2 SET c='seventy-five thousand one hundred thirty-two' WHERE a=8458;\nUPDATE t2 SET c='seventy-eight thousand nine' WHERE a=8459;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-one' WHERE a=8460;\nUPDATE t2 SET c='ninety-seven thousand one hundred' WHERE a=8461;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety-five' WHERE a=8462;\nUPDATE t2 SET c='five hundred sixty' WHERE a=8463;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-three' WHERE a=8464;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty' WHERE a=8465;\nUPDATE t2 SET c='fifty thousand three hundred sixty-four' WHERE a=8466;\nUPDATE t2 SET c='thirty-five thousand six hundred four' WHERE a=8467;\nUPDATE t2 SET c='fifty-two thousand two hundred fifty-four' WHERE a=8468;\nUPDATE t2 SET c='ninety-eight thousand four hundred sixteen' WHERE a=8469;\nUPDATE t2 SET c='forty-nine thousand five hundred seventy-eight' WHERE a=8470;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-one' WHERE a=8471;\nUPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=8472;\nUPDATE t2 SET c='eighty-three thousand three hundred ninety-three' WHERE a=8473;\nUPDATE t2 SET c='forty-six thousand three hundred ten' WHERE a=8474;\nUPDATE t2 SET c='seventy-five thousand nine hundred thirty-five' WHERE a=8475;\nUPDATE t2 SET c='eighty-three thousand six hundred sixty-two' WHERE a=8476;\nUPDATE t2 SET c='seventy-six thousand one hundred sixty-five' WHERE a=8477;\nUPDATE t2 SET c='sixty-one thousand six hundred eighty-one' WHERE a=8478;\nUPDATE t2 SET c='four thousand seven hundred twenty-seven' WHERE a=8479;\nUPDATE t2 SET c='eighteen thousand five hundred forty-nine' WHERE a=8480;\nUPDATE t2 SET c='seventy-three thousand four hundred fifty' WHERE a=8481;\nUPDATE t2 SET c='sixty-five thousand thirty-nine' WHERE a=8482;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-six' WHERE a=8483;\nUPDATE t2 SET c='three thousand five hundred five' WHERE a=8484;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-one' WHERE a=8485;\nUPDATE t2 SET c='forty-eight thousand seven hundred eighty-four' WHERE a=8486;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty-four' WHERE a=8487;\nUPDATE t2 SET c='eighty-five thousand twenty-four' WHERE a=8488;\nUPDATE t2 SET c='fifty-two thousand two hundred twenty-five' WHERE a=8489;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-six' WHERE a=8490;\nUPDATE t2 SET c='forty-eight thousand eight hundred thirty-five' WHERE a=8491;\nUPDATE t2 SET c='twenty thousand nine hundred eleven' WHERE a=8492;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=8493;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-one' WHERE a=8494;\nUPDATE t2 SET c='ten thousand three hundred sixty-four' WHERE a=8495;\nUPDATE t2 SET c='seventy-seven thousand two hundred eight' WHERE a=8496;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-two' WHERE a=8497;\nUPDATE t2 SET c='seventy-eight thousand five hundred forty-five' WHERE a=8498;\nUPDATE t2 SET c='eighty-three thousand nine hundred eighty-eight' WHERE a=8499;\nUPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=8500;\nUPDATE t2 SET c='forty-eight thousand two hundred forty-two' WHERE a=8501;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-seven' WHERE a=8502;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-nine' WHERE a=8503;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-seven' WHERE a=8504;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-seven' WHERE a=8505;\nUPDATE t2 SET c='fifteen thousand two hundred forty-six' WHERE a=8506;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-three' WHERE a=8507;\nUPDATE t2 SET c='forty-five thousand twenty-eight' WHERE a=8508;\nUPDATE t2 SET c='five thousand one hundred seventy-five' WHERE a=8509;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighteen' WHERE a=8510;\nUPDATE t2 SET c='ninety-four thousand six hundred thirty-five' WHERE a=8511;\nUPDATE t2 SET c='ninety thousand fifty-two' WHERE a=8512;\nUPDATE t2 SET c='five thousand eight hundred twenty' WHERE a=8513;\nUPDATE t2 SET c='fifteen thousand two hundred thirty' WHERE a=8514;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-seven' WHERE a=8515;\nUPDATE t2 SET c='thirty-six thousand five hundred seventy' WHERE a=8516;\nUPDATE t2 SET c='ninety-seven thousand seven hundred ninety-three' WHERE a=8517;\nUPDATE t2 SET c='seventy-seven thousand three hundred forty-two' WHERE a=8518;\nUPDATE t2 SET c='ninety-two thousand four hundred sixty-four' WHERE a=8519;\nUPDATE t2 SET c='five hundred four' WHERE a=8520;\nUPDATE t2 SET c='twenty-three thousand two hundred thirty-four' WHERE a=8521;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-six' WHERE a=8522;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty' WHERE a=8523;\nUPDATE t2 SET c='eighty-nine thousand seven hundred eighty' WHERE a=8524;\nUPDATE t2 SET c='fifty-four thousand two hundred six' WHERE a=8525;\nUPDATE t2 SET c='fifty-five thousand eight hundred seventy-six' WHERE a=8526;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixty-three' WHERE a=8527;\nUPDATE t2 SET c='six thousand eight hundred sixty-four' WHERE a=8528;\nUPDATE t2 SET c='thirty-three thousand eight hundred ninety-one' WHERE a=8529;\nUPDATE t2 SET c='eighty-three thousand five hundred sixty-six' WHERE a=8530;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty' WHERE a=8531;\nUPDATE t2 SET c='seven thousand one hundred fifty-nine' WHERE a=8532;\nUPDATE t2 SET c='sixty-two thousand nine hundred sixty-three' WHERE a=8533;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty-nine' WHERE a=8534;\nUPDATE t2 SET c='three thousand one hundred fifty-nine' WHERE a=8535;\nUPDATE t2 SET c='twelve thousand twenty-four' WHERE a=8536;\nUPDATE t2 SET c='seventy-six thousand one hundred thirteen' WHERE a=8537;\nUPDATE t2 SET c='eighty-six thousand five hundred ninety-nine' WHERE a=8538;\nUPDATE t2 SET c='eight thousand four hundred ninety-four' WHERE a=8539;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty-five' WHERE a=8540;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-nine' WHERE a=8541;\nUPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=8542;\nUPDATE t2 SET c='sixty-four thousand eight hundred ninety-one' WHERE a=8543;\nUPDATE t2 SET c='ninety-six thousand two hundred forty' WHERE a=8544;\nUPDATE t2 SET c='eleven thousand one hundred ninety-three' WHERE a=8545;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=8546;\nUPDATE t2 SET c='seven thousand four hundred twenty' WHERE a=8547;\nUPDATE t2 SET c='two hundred seventy-seven' WHERE a=8548;\nUPDATE t2 SET c='ninety-seven thousand two hundred seventy-two' WHERE a=8549;\nUPDATE t2 SET c='forty-eight thousand two hundred thirty' WHERE a=8550;\nUPDATE t2 SET c='eighty-two thousand two hundred sixty-three' WHERE a=8551;\nUPDATE t2 SET c='sixty-three thousand three hundred twenty-six' WHERE a=8552;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventy-four' WHERE a=8553;\nUPDATE t2 SET c='seventy-four thousand twenty-five' WHERE a=8554;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-three' WHERE a=8555;\nUPDATE t2 SET c='three thousand three hundred four' WHERE a=8556;\nUPDATE t2 SET c='forty-three thousand one hundred seventy' WHERE a=8557;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-two' WHERE a=8558;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty-three' WHERE a=8559;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-two' WHERE a=8560;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-one' WHERE a=8561;\nUPDATE t2 SET c='thirty-one thousand four hundred thirty' WHERE a=8562;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty' WHERE a=8563;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-two' WHERE a=8564;\nUPDATE t2 SET c='eleven thousand four hundred forty-four' WHERE a=8565;\nUPDATE t2 SET c='fifty-nine thousand three hundred seven' WHERE a=8566;\nUPDATE t2 SET c='ninety-five thousand ninety' WHERE a=8567;\nUPDATE t2 SET c='seventy-seven thousand seven hundred ninety-seven' WHERE a=8568;\nUPDATE t2 SET c='seventy-two thousand eight hundred eighty-one' WHERE a=8569;\nUPDATE t2 SET c='thirty-seven thousand one hundred fourteen' WHERE a=8570;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-seven' WHERE a=8571;\nUPDATE t2 SET c='six thousand two hundred forty-eight' WHERE a=8572;\nUPDATE t2 SET c='eighty-seven thousand five hundred one' WHERE a=8573;\nUPDATE t2 SET c='forty thousand three hundred forty-five' WHERE a=8574;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-five' WHERE a=8575;\nUPDATE t2 SET c='nine thousand three hundred eighty-three' WHERE a=8576;\nUPDATE t2 SET c='eighteen thousand six hundred seventy-eight' WHERE a=8577;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-nine' WHERE a=8578;\nUPDATE t2 SET c='eleven thousand six hundred forty-five' WHERE a=8579;\nUPDATE t2 SET c='thirty thousand six hundred fifty-three' WHERE a=8580;\nUPDATE t2 SET c='sixty-two thousand six hundred thirty-six' WHERE a=8581;\nUPDATE t2 SET c='seventy-one thousand three hundred eighty-two' WHERE a=8582;\nUPDATE t2 SET c='sixty-four thousand two hundred fifty-one' WHERE a=8583;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-four' WHERE a=8584;\nUPDATE t2 SET c='forty-six thousand one hundred sixty-eight' WHERE a=8585;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eight' WHERE a=8586;\nUPDATE t2 SET c='twenty-two thousand seven hundred two' WHERE a=8587;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-nine' WHERE a=8588;\nUPDATE t2 SET c='seventy-five thousand nine hundred seventy-eight' WHERE a=8589;\nUPDATE t2 SET c='eighty-eight thousand two hundred fifty-three' WHERE a=8590;\nUPDATE t2 SET c='one thousand ninety-six' WHERE a=8591;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-seven' WHERE a=8592;\nUPDATE t2 SET c='seventy-four thousand seventy-seven' WHERE a=8593;\nUPDATE t2 SET c='forty-three thousand seven hundred ten' WHERE a=8594;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy-six' WHERE a=8595;\nUPDATE t2 SET c='thirty-four thousand nine hundred four' WHERE a=8596;\nUPDATE t2 SET c='thirteen thousand three hundred eighty-nine' WHERE a=8597;\nUPDATE t2 SET c='sixty-two thousand eighty-seven' WHERE a=8598;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-seven' WHERE a=8599;\nUPDATE t2 SET c='seventy-eight thousand four hundred seventy-eight' WHERE a=8600;\nUPDATE t2 SET c='three thousand fifty-seven' WHERE a=8601;\nUPDATE t2 SET c='twenty-two thousand fifty-seven' WHERE a=8602;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-five' WHERE a=8603;\nUPDATE t2 SET c='sixty-six thousand five hundred twenty-six' WHERE a=8604;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-six' WHERE a=8605;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty' WHERE a=8606;\nUPDATE t2 SET c='sixty-three thousand two' WHERE a=8607;\nUPDATE t2 SET c='eighty-nine thousand six hundred fourteen' WHERE a=8608;\nUPDATE t2 SET c='sixty-six thousand two hundred eleven' WHERE a=8609;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seven' WHERE a=8610;\nUPDATE t2 SET c='sixty-three thousand four hundred sixty' WHERE a=8611;\nUPDATE t2 SET c='forty-seven thousand seven hundred thirty-one' WHERE a=8612;\nUPDATE t2 SET c='seventy-four thousand six hundred twenty-two' WHERE a=8613;\nUPDATE t2 SET c='one thousand two hundred eighty' WHERE a=8614;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-two' WHERE a=8615;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-four' WHERE a=8616;\nUPDATE t2 SET c='ninety-three thousand five hundred forty-five' WHERE a=8617;\nUPDATE t2 SET c='ninety thousand one hundred three' WHERE a=8618;\nUPDATE t2 SET c='seventy-six thousand six hundred thirty-eight' WHERE a=8619;\nUPDATE t2 SET c='ninety-seven thousand four hundred ninety' WHERE a=8620;\nUPDATE t2 SET c='ten thousand eight hundred one' WHERE a=8621;\nUPDATE t2 SET c='eighty-eight thousand nine hundred seventy' WHERE a=8622;\nUPDATE t2 SET c='seventy-seven thousand three hundred fifty-one' WHERE a=8623;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-six' WHERE a=8624;\nUPDATE t2 SET c='seventeen thousand three hundred fifty' WHERE a=8625;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifteen' WHERE a=8626;\nUPDATE t2 SET c='eighty-nine thousand two hundred fourteen' WHERE a=8627;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-six' WHERE a=8628;\nUPDATE t2 SET c='fifty-six thousand four hundred forty-two' WHERE a=8629;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-nine' WHERE a=8630;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty-seven' WHERE a=8631;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-eight' WHERE a=8632;\nUPDATE t2 SET c='sixty-five thousand eight hundred twenty-seven' WHERE a=8633;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-nine' WHERE a=8634;\nUPDATE t2 SET c='thirty-three thousand four hundred eighty-three' WHERE a=8635;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-seven' WHERE a=8636;\nUPDATE t2 SET c='eighty-three thousand nine hundred sixty' WHERE a=8637;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-four' WHERE a=8638;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=8639;\nUPDATE t2 SET c='thirty-three thousand nine hundred thirty-five' WHERE a=8640;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty-five' WHERE a=8641;\nUPDATE t2 SET c='three thousand three hundred twenty-two' WHERE a=8642;\nUPDATE t2 SET c='thirty-nine thousand one hundred fifty-two' WHERE a=8643;\nUPDATE t2 SET c='one thousand eight hundred seventy-two' WHERE a=8644;\nUPDATE t2 SET c='eighty thousand nine hundred fifty-seven' WHERE a=8645;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-three' WHERE a=8646;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fourteen' WHERE a=8647;\nUPDATE t2 SET c='thirty-one thousand four hundred nine' WHERE a=8648;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-four' WHERE a=8649;\nUPDATE t2 SET c='eight thousand nine hundred ninety-three' WHERE a=8650;\nUPDATE t2 SET c='twenty-six thousand one hundred twenty-four' WHERE a=8651;\nUPDATE t2 SET c='ninety thousand five hundred fifty-three' WHERE a=8652;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-eight' WHERE a=8653;\nUPDATE t2 SET c='twenty-two thousand four hundred thirty' WHERE a=8654;\nUPDATE t2 SET c='sixty-two thousand three hundred twenty-six' WHERE a=8655;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-three' WHERE a=8656;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-eight' WHERE a=8657;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-eight' WHERE a=8658;\nUPDATE t2 SET c='seventy-five thousand seventy-seven' WHERE a=8659;\nUPDATE t2 SET c='thirty thousand nine hundred sixty-eight' WHERE a=8660;\nUPDATE t2 SET c='eighty-six thousand four hundred seventy-two' WHERE a=8661;\nUPDATE t2 SET c='eighty-nine thousand four hundred eighty-seven' WHERE a=8662;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-one' WHERE a=8663;\nUPDATE t2 SET c='nine thousand six hundred thirty-seven' WHERE a=8664;\nUPDATE t2 SET c='twenty-five thousand five hundred thirty-five' WHERE a=8665;\nUPDATE t2 SET c='forty-six thousand one hundred five' WHERE a=8666;\nUPDATE t2 SET c='fifty-four thousand five hundred twenty-seven' WHERE a=8667;\nUPDATE t2 SET c='sixty-two thousand thirty-three' WHERE a=8668;\nUPDATE t2 SET c='eighteen thousand four hundred sixteen' WHERE a=8669;\nUPDATE t2 SET c='fifty-eight thousand four hundred forty-four' WHERE a=8670;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty-nine' WHERE a=8671;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-five' WHERE a=8672;\nUPDATE t2 SET c='seventy-two thousand six hundred one' WHERE a=8673;\nUPDATE t2 SET c='four thousand six hundred fifty-five' WHERE a=8674;\nUPDATE t2 SET c='ninety-four thousand fifty-two' WHERE a=8675;\nUPDATE t2 SET c='fifteen thousand three hundred ninety-two' WHERE a=8676;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventeen' WHERE a=8677;\nUPDATE t2 SET c='thirty-nine thousand one hundred' WHERE a=8678;\nUPDATE t2 SET c='nine thousand one hundred fifty' WHERE a=8679;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-four' WHERE a=8680;\nUPDATE t2 SET c='sixty-one thousand three hundred forty-seven' WHERE a=8681;\nUPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=8682;\nUPDATE t2 SET c='twenty-five thousand eight hundred ninety-four' WHERE a=8683;\nUPDATE t2 SET c='twenty-five thousand three hundred ten' WHERE a=8684;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-four' WHERE a=8685;\nUPDATE t2 SET c='ninety-five thousand six hundred thirty-four' WHERE a=8686;\nUPDATE t2 SET c='two thousand nine hundred five' WHERE a=8687;\nUPDATE t2 SET c='twelve thousand six hundred twenty-eight' WHERE a=8688;\nUPDATE t2 SET c='eighty-three thousand nine hundred eighty-six' WHERE a=8689;\nUPDATE t2 SET c='fifty-two thousand six hundred fifty-seven' WHERE a=8690;\nUPDATE t2 SET c='seven thousand nine hundred seventy-three' WHERE a=8691;\nUPDATE t2 SET c='twenty-one thousand three hundred forty-nine' WHERE a=8692;\nUPDATE t2 SET c='fifty-five thousand eight hundred two' WHERE a=8693;\nUPDATE t2 SET c='twelve thousand six hundred five' WHERE a=8694;\nUPDATE t2 SET c='sixty-five thousand sixty-one' WHERE a=8695;\nUPDATE t2 SET c='fifty thousand thirty-two' WHERE a=8696;\nUPDATE t2 SET c='sixty-nine thousand one hundred ninety-eight' WHERE a=8697;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-six' WHERE a=8698;\nUPDATE t2 SET c='two hundred thirteen' WHERE a=8699;\nUPDATE t2 SET c='one thousand nine hundred thirty-three' WHERE a=8700;\nUPDATE t2 SET c='ten thousand three hundred seventy-eight' WHERE a=8701;\nUPDATE t2 SET c='fifty-six thousand one hundred forty-two' WHERE a=8702;\nUPDATE t2 SET c='forty-four thousand nine hundred forty-six' WHERE a=8703;\nUPDATE t2 SET c='forty-seven thousand twenty-five' WHERE a=8704;\nUPDATE t2 SET c='ten thousand eight hundred one' WHERE a=8705;\nUPDATE t2 SET c='forty-one thousand one hundred sixty-four' WHERE a=8706;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-nine' WHERE a=8707;\nUPDATE t2 SET c='thirty-one thousand six hundred forty-seven' WHERE a=8708;\nUPDATE t2 SET c='twenty-two thousand three hundred fifty-seven' WHERE a=8709;\nUPDATE t2 SET c='seventy-five thousand one' WHERE a=8710;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-eight' WHERE a=8711;\nUPDATE t2 SET c='thirty-five thousand three hundred eighty-five' WHERE a=8712;\nUPDATE t2 SET c='eighty-five thousand three hundred eighty-seven' WHERE a=8713;\nUPDATE t2 SET c='forty-eight thousand five hundred fourteen' WHERE a=8714;\nUPDATE t2 SET c='sixty-five thousand three hundred sixty-seven' WHERE a=8715;\nUPDATE t2 SET c='fifty-four thousand three hundred eighty-nine' WHERE a=8716;\nUPDATE t2 SET c='seventy-two thousand six hundred sixty-seven' WHERE a=8717;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-eight' WHERE a=8718;\nUPDATE t2 SET c='ninety-eight thousand one hundred twenty-six' WHERE a=8719;\nUPDATE t2 SET c='sixty-three thousand three hundred eighty-one' WHERE a=8720;\nUPDATE t2 SET c='ten thousand six hundred forty-four' WHERE a=8721;\nUPDATE t2 SET c='fifty-one thousand nine hundred one' WHERE a=8722;\nUPDATE t2 SET c='eighty-three thousand five hundred thirty' WHERE a=8723;\nUPDATE t2 SET c='thirty-nine thousand seven hundred eighty-three' WHERE a=8724;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-eight' WHERE a=8725;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-seven' WHERE a=8726;\nUPDATE t2 SET c='sixty-two thousand nine hundred ninety-nine' WHERE a=8727;\nUPDATE t2 SET c='eighty-two thousand sixteen' WHERE a=8728;\nUPDATE t2 SET c='ninety-three thousand three hundred fifteen' WHERE a=8729;\nUPDATE t2 SET c='sixty-seven thousand two hundred fifty-one' WHERE a=8730;\nUPDATE t2 SET c='twenty-five thousand four hundred thirty-one' WHERE a=8731;\nUPDATE t2 SET c='eighty-seven thousand eight hundred sixty-six' WHERE a=8732;\nUPDATE t2 SET c='ninety-six thousand one hundred twenty-three' WHERE a=8733;\nUPDATE t2 SET c='sixty-two thousand eight hundred eighty-eight' WHERE a=8734;\nUPDATE t2 SET c='fifty-six thousand four hundred twenty-five' WHERE a=8735;\nUPDATE t2 SET c='ninety-four thousand five hundred eighty-eight' WHERE a=8736;\nUPDATE t2 SET c='eighteen thousand five hundred thirty-six' WHERE a=8737;\nUPDATE t2 SET c='thirty-two thousand one hundred ninety-four' WHERE a=8738;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-five' WHERE a=8739;\nUPDATE t2 SET c='five thousand four hundred fifty-four' WHERE a=8740;\nUPDATE t2 SET c='ninety-two thousand five hundred seventy-seven' WHERE a=8741;\nUPDATE t2 SET c='six thousand three hundred fourteen' WHERE a=8742;\nUPDATE t2 SET c='forty-nine thousand four hundred one' WHERE a=8743;\nUPDATE t2 SET c='eighty-six thousand fifty-four' WHERE a=8744;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-six' WHERE a=8745;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fourteen' WHERE a=8746;\nUPDATE t2 SET c='eighty-two thousand six hundred nineteen' WHERE a=8747;\nUPDATE t2 SET c='forty thousand three hundred ninety' WHERE a=8748;\nUPDATE t2 SET c='thirty-nine thousand three hundred ninety-one' WHERE a=8749;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-three' WHERE a=8750;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=8751;\nUPDATE t2 SET c='forty-seven thousand seven hundred seventy-four' WHERE a=8752;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-eight' WHERE a=8753;\nUPDATE t2 SET c='sixty thousand one hundred ninety-nine' WHERE a=8754;\nUPDATE t2 SET c='fifty-six thousand five hundred seventeen' WHERE a=8755;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-two' WHERE a=8756;\nUPDATE t2 SET c='forty-five thousand two hundred fifty-four' WHERE a=8757;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-four' WHERE a=8758;\nUPDATE t2 SET c='seventy-four thousand one hundred seventy-nine' WHERE a=8759;\nUPDATE t2 SET c='eighty-five thousand thirty-six' WHERE a=8760;\nUPDATE t2 SET c='sixty-seven thousand six hundred forty' WHERE a=8761;\nUPDATE t2 SET c='two thousand eight hundred twenty-five' WHERE a=8762;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-nine' WHERE a=8763;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-five' WHERE a=8764;\nUPDATE t2 SET c='ninety-three thousand two hundred eight' WHERE a=8765;\nUPDATE t2 SET c='eighty thousand thirty-three' WHERE a=8766;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety-two' WHERE a=8767;\nUPDATE t2 SET c='ninety-nine thousand six hundred twelve' WHERE a=8768;\nUPDATE t2 SET c='ninety-two thousand seven hundred ninety-eight' WHERE a=8769;\nUPDATE t2 SET c='seventy-eight thousand six hundred twenty-one' WHERE a=8770;\nUPDATE t2 SET c='ninety-two thousand one hundred nine' WHERE a=8771;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-seven' WHERE a=8772;\nUPDATE t2 SET c='ninety-seven thousand nine hundred twenty-two' WHERE a=8773;\nUPDATE t2 SET c='two thousand seven hundred four' WHERE a=8774;\nUPDATE t2 SET c='forty-two thousand two hundred thirty' WHERE a=8775;\nUPDATE t2 SET c='ninety-seven thousand eleven' WHERE a=8776;\nUPDATE t2 SET c='eighty-one thousand eight hundred ninety-four' WHERE a=8777;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirteen' WHERE a=8778;\nUPDATE t2 SET c='eighty-three thousand nine hundred sixty-three' WHERE a=8779;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty-three' WHERE a=8780;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-six' WHERE a=8781;\nUPDATE t2 SET c='five thousand five hundred two' WHERE a=8782;\nUPDATE t2 SET c='twenty thousand seventy-five' WHERE a=8783;\nUPDATE t2 SET c='nine hundred eighty-seven' WHERE a=8784;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighty-seven' WHERE a=8785;\nUPDATE t2 SET c='nineteen thousand nine hundred ten' WHERE a=8786;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty' WHERE a=8787;\nUPDATE t2 SET c='nine thousand forty' WHERE a=8788;\nUPDATE t2 SET c='nineteen thousand seven hundred eighty-two' WHERE a=8789;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty' WHERE a=8790;\nUPDATE t2 SET c='fifty-eight thousand four hundred sixty-nine' WHERE a=8791;\nUPDATE t2 SET c='thirty-two thousand fifty' WHERE a=8792;\nUPDATE t2 SET c='sixty-three thousand eight hundred one' WHERE a=8793;\nUPDATE t2 SET c='thirty-nine thousand eighty-nine' WHERE a=8794;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-two' WHERE a=8795;\nUPDATE t2 SET c='seventy-one thousand four hundred' WHERE a=8796;\nUPDATE t2 SET c='eighty-two thousand seven hundred two' WHERE a=8797;\nUPDATE t2 SET c='twelve thousand eight hundred eighteen' WHERE a=8798;\nUPDATE t2 SET c='twenty-three thousand ninety-one' WHERE a=8799;\nUPDATE t2 SET c='two thousand one hundred twenty-nine' WHERE a=8800;\nUPDATE t2 SET c='seven thousand seven hundred seventy-two' WHERE a=8801;\nUPDATE t2 SET c='one thousand fifteen' WHERE a=8802;\nUPDATE t2 SET c='seven thousand six hundred fifty-two' WHERE a=8803;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-two' WHERE a=8804;\nUPDATE t2 SET c='sixty thousand one hundred thirty-four' WHERE a=8805;\nUPDATE t2 SET c='ninety-eight thousand nine hundred thirty-one' WHERE a=8806;\nUPDATE t2 SET c='sixty-one thousand six hundred eighteen' WHERE a=8807;\nUPDATE t2 SET c='fifty-one thousand six hundred nine' WHERE a=8808;\nUPDATE t2 SET c='nine thousand seven hundred nine' WHERE a=8809;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-eight' WHERE a=8810;\nUPDATE t2 SET c='sixty-seven thousand ninety-one' WHERE a=8811;\nUPDATE t2 SET c='sixty-three thousand five hundred seven' WHERE a=8812;\nUPDATE t2 SET c='seventy-four thousand three hundred twenty-six' WHERE a=8813;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety-seven' WHERE a=8814;\nUPDATE t2 SET c='ninety-one thousand nine hundred six' WHERE a=8815;\nUPDATE t2 SET c='twenty-three thousand seven hundred eighty-eight' WHERE a=8816;\nUPDATE t2 SET c='four thousand eight hundred forty-nine' WHERE a=8817;\nUPDATE t2 SET c='ninety-seven thousand eighteen' WHERE a=8818;\nUPDATE t2 SET c='seventy-one thousand nine hundred three' WHERE a=8819;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty-nine' WHERE a=8820;\nUPDATE t2 SET c='ten thousand four hundred fifty-four' WHERE a=8821;\nUPDATE t2 SET c='fifty-seven thousand eight hundred sixty-one' WHERE a=8822;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-four' WHERE a=8823;\nUPDATE t2 SET c='thirty-seven thousand eight hundred seventy-three' WHERE a=8824;\nUPDATE t2 SET c='seventy thousand seven hundred seventy-five' WHERE a=8825;\nUPDATE t2 SET c='ninety-one thousand six hundred eighty-four' WHERE a=8826;\nUPDATE t2 SET c='eighteen thousand seven hundred twelve' WHERE a=8827;\nUPDATE t2 SET c='seventy-eight thousand five hundred eleven' WHERE a=8828;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-four' WHERE a=8829;\nUPDATE t2 SET c='seventy-two thousand nine hundred six' WHERE a=8830;\nUPDATE t2 SET c='eighty-one thousand eight hundred eighty-six' WHERE a=8831;\nUPDATE t2 SET c='twenty-four thousand three hundred twenty-six' WHERE a=8832;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=8833;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-one' WHERE a=8834;\nUPDATE t2 SET c='fifty-six thousand one hundred nineteen' WHERE a=8835;\nUPDATE t2 SET c='ninety-one thousand three hundred twenty-six' WHERE a=8836;\nUPDATE t2 SET c='seventeen thousand four hundred thirty-six' WHERE a=8837;\nUPDATE t2 SET c='eleven thousand sixty' WHERE a=8838;\nUPDATE t2 SET c='sixty thousand three hundred eighteen' WHERE a=8839;\nUPDATE t2 SET c='ninety-six thousand nine hundred seven' WHERE a=8840;\nUPDATE t2 SET c='eighty-six thousand one hundred fifty-five' WHERE a=8841;\nUPDATE t2 SET c='twenty thousand eight hundred three' WHERE a=8842;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty-one' WHERE a=8843;\nUPDATE t2 SET c='thirty-six thousand one hundred ten' WHERE a=8844;\nUPDATE t2 SET c='forty-four thousand seven hundred five' WHERE a=8845;\nUPDATE t2 SET c='thirty thousand three hundred six' WHERE a=8846;\nUPDATE t2 SET c='ninety-three thousand twenty-nine' WHERE a=8847;\nUPDATE t2 SET c='eighty-four thousand eight hundred' WHERE a=8848;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty-eight' WHERE a=8849;\nUPDATE t2 SET c='forty-nine thousand four hundred twenty-nine' WHERE a=8850;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-six' WHERE a=8851;\nUPDATE t2 SET c='thirteen thousand two hundred sixty-four' WHERE a=8852;\nUPDATE t2 SET c='fifty-one thousand three hundred seventy-eight' WHERE a=8853;\nUPDATE t2 SET c='fifty-five thousand seven hundred twenty-eight' WHERE a=8854;\nUPDATE t2 SET c='two thousand four hundred thirty-eight' WHERE a=8855;\nUPDATE t2 SET c='six thousand one hundred thirty-three' WHERE a=8856;\nUPDATE t2 SET c='forty thousand nine hundred ninety' WHERE a=8857;\nUPDATE t2 SET c='fifty-five thousand three hundred five' WHERE a=8858;\nUPDATE t2 SET c='twenty-eight thousand two hundred thirty' WHERE a=8859;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty-one' WHERE a=8860;\nUPDATE t2 SET c='sixteen thousand three hundred forty-seven' WHERE a=8861;\nUPDATE t2 SET c='eleven thousand two hundred seventy-six' WHERE a=8862;\nUPDATE t2 SET c='twenty-one thousand one hundred fifty-two' WHERE a=8863;\nUPDATE t2 SET c='eight thousand seven hundred thirty-eight' WHERE a=8864;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy-nine' WHERE a=8865;\nUPDATE t2 SET c='sixteen thousand forty-seven' WHERE a=8866;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-five' WHERE a=8867;\nUPDATE t2 SET c='ninety-three thousand one hundred two' WHERE a=8868;\nUPDATE t2 SET c='twenty-seven thousand one hundred eighty-four' WHERE a=8869;\nUPDATE t2 SET c='seventy-nine thousand eight hundred two' WHERE a=8870;\nUPDATE t2 SET c='three thousand six hundred thirteen' WHERE a=8871;\nUPDATE t2 SET c='ninety-eight thousand nine hundred twenty-eight' WHERE a=8872;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-nine' WHERE a=8873;\nUPDATE t2 SET c='seven thousand eight hundred nineteen' WHERE a=8874;\nUPDATE t2 SET c='thirty-one thousand nine hundred eighty-two' WHERE a=8875;\nUPDATE t2 SET c='nineteen thousand three hundred fifty-seven' WHERE a=8876;\nUPDATE t2 SET c='twelve thousand eight hundred eighty-four' WHERE a=8877;\nUPDATE t2 SET c='eighty-four thousand four hundred thirty-three' WHERE a=8878;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixteen' WHERE a=8879;\nUPDATE t2 SET c='ninety-seven thousand nine hundred forty-one' WHERE a=8880;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-four' WHERE a=8881;\nUPDATE t2 SET c='fifty-nine thousand eight hundred ninety-five' WHERE a=8882;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty' WHERE a=8883;\nUPDATE t2 SET c='fifty-two thousand six hundred ninety-two' WHERE a=8884;\nUPDATE t2 SET c='fifty-one thousand eight hundred five' WHERE a=8885;\nUPDATE t2 SET c='thirty-two thousand eighty-two' WHERE a=8886;\nUPDATE t2 SET c='forty-nine thousand three hundred sixty-one' WHERE a=8887;\nUPDATE t2 SET c='twenty-eight thousand seven hundred forty-six' WHERE a=8888;\nUPDATE t2 SET c='forty-two thousand eighty-three' WHERE a=8889;\nUPDATE t2 SET c='seventeen thousand six hundred four' WHERE a=8890;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy-four' WHERE a=8891;\nUPDATE t2 SET c='eighty-eight thousand nine hundred forty-six' WHERE a=8892;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-five' WHERE a=8893;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-eight' WHERE a=8894;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=8895;\nUPDATE t2 SET c='four thousand nine hundred thirty-one' WHERE a=8896;\nUPDATE t2 SET c='ten thousand five hundred seventy-one' WHERE a=8897;\nUPDATE t2 SET c='sixty-five thousand six hundred seventeen' WHERE a=8898;\nUPDATE t2 SET c='forty-two thousand eight hundred five' WHERE a=8899;\nUPDATE t2 SET c='ninety-five thousand six hundred eleven' WHERE a=8900;\nUPDATE t2 SET c='thirty-two thousand four hundred seventy-two' WHERE a=8901;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=8902;\nUPDATE t2 SET c='ninety-eight thousand nine hundred four' WHERE a=8903;\nUPDATE t2 SET c='eighty-five thousand nine hundred one' WHERE a=8904;\nUPDATE t2 SET c='forty thousand five hundred seventy-eight' WHERE a=8905;\nUPDATE t2 SET c='thirty-one thousand seven hundred ninety-seven' WHERE a=8906;\nUPDATE t2 SET c='twenty-eight thousand one hundred eighty-five' WHERE a=8907;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-four' WHERE a=8908;\nUPDATE t2 SET c='seventeen thousand five hundred eighty-one' WHERE a=8909;\nUPDATE t2 SET c='six thousand two hundred sixty' WHERE a=8910;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-one' WHERE a=8911;\nUPDATE t2 SET c='twenty thousand six hundred thirty-three' WHERE a=8912;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty' WHERE a=8913;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirty-five' WHERE a=8914;\nUPDATE t2 SET c='thirty-six thousand seventy-seven' WHERE a=8915;\nUPDATE t2 SET c='eighty-four thousand six hundred twenty-five' WHERE a=8916;\nUPDATE t2 SET c='fifty thousand eight hundred eighty' WHERE a=8917;\nUPDATE t2 SET c='twenty thousand seventy-five' WHERE a=8918;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighty-two' WHERE a=8919;\nUPDATE t2 SET c='ninety-eight thousand one hundred ninety-four' WHERE a=8920;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-seven' WHERE a=8921;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-four' WHERE a=8922;\nUPDATE t2 SET c='fifty-five thousand two hundred sixty-nine' WHERE a=8923;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventy-two' WHERE a=8924;\nUPDATE t2 SET c='sixty-seven thousand sixty-seven' WHERE a=8925;\nUPDATE t2 SET c='fifty-nine thousand nine hundred sixty-four' WHERE a=8926;\nUPDATE t2 SET c='fifty thousand one hundred forty-five' WHERE a=8927;\nUPDATE t2 SET c='eighty-five thousand nine hundred eleven' WHERE a=8928;\nUPDATE t2 SET c='sixty-seven thousand one hundred twenty-eight' WHERE a=8929;\nUPDATE t2 SET c='eleven thousand one hundred fifty-four' WHERE a=8930;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-one' WHERE a=8931;\nUPDATE t2 SET c='forty-six thousand six hundred two' WHERE a=8932;\nUPDATE t2 SET c='eighteen thousand five hundred ninety-seven' WHERE a=8933;\nUPDATE t2 SET c='twenty-eight thousand nine hundred twenty-seven' WHERE a=8934;\nUPDATE t2 SET c='sixty-one thousand three hundred forty-one' WHERE a=8935;\nUPDATE t2 SET c='fifty-three thousand eight hundred fifty-three' WHERE a=8936;\nUPDATE t2 SET c='ninety thousand two hundred twenty-six' WHERE a=8937;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-two' WHERE a=8938;\nUPDATE t2 SET c='sixty-one thousand sixty-five' WHERE a=8939;\nUPDATE t2 SET c='one hundred sixty-six' WHERE a=8940;\nUPDATE t2 SET c='sixty-eight thousand three hundred seventy-two' WHERE a=8941;\nUPDATE t2 SET c='twenty-five thousand eight hundred four' WHERE a=8942;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-four' WHERE a=8943;\nUPDATE t2 SET c='eighty-five thousand seventy-seven' WHERE a=8944;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-two' WHERE a=8945;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventy-one' WHERE a=8946;\nUPDATE t2 SET c='thirty-five thousand five hundred twelve' WHERE a=8947;\nUPDATE t2 SET c='ninety-three thousand three hundred twenty-seven' WHERE a=8948;\nUPDATE t2 SET c='eighty-six thousand four hundred eighteen' WHERE a=8949;\nUPDATE t2 SET c='thirty-eight thousand four hundred ninety-two' WHERE a=8950;\nUPDATE t2 SET c='eighty-three thousand seven hundred sixty-seven' WHERE a=8951;\nUPDATE t2 SET c='sixteen thousand two hundred forty-four' WHERE a=8952;\nUPDATE t2 SET c='eighty-one thousand eight hundred sixty-three' WHERE a=8953;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty' WHERE a=8954;\nUPDATE t2 SET c='twenty-one thousand six hundred fifty-seven' WHERE a=8955;\nUPDATE t2 SET c='seventy-seven thousand five hundred thirty-three' WHERE a=8956;\nUPDATE t2 SET c='thirty thousand five hundred seventy-five' WHERE a=8957;\nUPDATE t2 SET c='forty-one thousand one hundred three' WHERE a=8958;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighty-three' WHERE a=8959;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-eight' WHERE a=8960;\nUPDATE t2 SET c='five thousand three hundred ninety-nine' WHERE a=8961;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-two' WHERE a=8962;\nUPDATE t2 SET c='eleven thousand two hundred thirteen' WHERE a=8963;\nUPDATE t2 SET c='thirteen thousand twenty-nine' WHERE a=8964;\nUPDATE t2 SET c='eighty-five thousand nine hundred fifty-three' WHERE a=8965;\nUPDATE t2 SET c='ninety-four thousand seven hundred seventy-eight' WHERE a=8966;\nUPDATE t2 SET c='twenty-nine thousand seven hundred twenty-six' WHERE a=8967;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-six' WHERE a=8968;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=8969;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-seven' WHERE a=8970;\nUPDATE t2 SET c='ten thousand forty-five' WHERE a=8971;\nUPDATE t2 SET c='thirty-nine thousand six hundred ninety-six' WHERE a=8972;\nUPDATE t2 SET c='fifty-eight thousand fifty-nine' WHERE a=8973;\nUPDATE t2 SET c='eighty-nine thousand two hundred two' WHERE a=8974;\nUPDATE t2 SET c='seventy-one thousand six hundred ninety-one' WHERE a=8975;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-five' WHERE a=8976;\nUPDATE t2 SET c='seventy thousand three hundred ninety-six' WHERE a=8977;\nUPDATE t2 SET c='seventy-five thousand seven hundred twelve' WHERE a=8978;\nUPDATE t2 SET c='forty-seven thousand four hundred five' WHERE a=8979;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty' WHERE a=8980;\nUPDATE t2 SET c='twenty-two thousand five hundred four' WHERE a=8981;\nUPDATE t2 SET c='two thousand seven hundred ninety-one' WHERE a=8982;\nUPDATE t2 SET c='twenty thousand seven hundred sixty-four' WHERE a=8983;\nUPDATE t2 SET c='forty-three thousand seven hundred eight' WHERE a=8984;\nUPDATE t2 SET c='twenty-two thousand five hundred forty-eight' WHERE a=8985;\nUPDATE t2 SET c='twenty thousand four hundred fourteen' WHERE a=8986;\nUPDATE t2 SET c='ninety-two thousand eight hundred thirty-seven' WHERE a=8987;\nUPDATE t2 SET c='thirteen thousand three hundred fourteen' WHERE a=8988;\nUPDATE t2 SET c='twenty-three thousand eight hundred four' WHERE a=8989;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-nine' WHERE a=8990;\nUPDATE t2 SET c='seventy-one thousand thirty-three' WHERE a=8991;\nUPDATE t2 SET c='sixty-nine thousand eight hundred twenty-six' WHERE a=8992;\nUPDATE t2 SET c='fifteen thousand one hundred seventy-nine' WHERE a=8993;\nUPDATE t2 SET c='sixteen thousand one hundred nine' WHERE a=8994;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirteen' WHERE a=8995;\nUPDATE t2 SET c='fifty-three thousand nine hundred sixty-nine' WHERE a=8996;\nUPDATE t2 SET c='nine thousand two hundred forty-two' WHERE a=8997;\nUPDATE t2 SET c='thirteen thousand seven hundred sixteen' WHERE a=8998;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-three' WHERE a=8999;\nUPDATE t2 SET c='three thousand two hundred eighty-eight' WHERE a=9000;\nUPDATE t2 SET c='seventy thousand two hundred forty-five' WHERE a=9001;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-eight' WHERE a=9002;\nUPDATE t2 SET c='twenty-nine thousand six hundred fifty-four' WHERE a=9003;\nUPDATE t2 SET c='forty-seven thousand six hundred eighty-seven' WHERE a=9004;\nUPDATE t2 SET c='thirty-nine thousand one hundred fifty-six' WHERE a=9005;\nUPDATE t2 SET c='one thousand two hundred ninety-five' WHERE a=9006;\nUPDATE t2 SET c='eighty-four thousand four hundred fifty' WHERE a=9007;\nUPDATE t2 SET c='eighty-six thousand three hundred thirty-one' WHERE a=9008;\nUPDATE t2 SET c='eighty-seven thousand sixty' WHERE a=9009;\nUPDATE t2 SET c='sixty-five thousand eight hundred sixteen' WHERE a=9010;\nUPDATE t2 SET c='twenty-six thousand one hundred forty-five' WHERE a=9011;\nUPDATE t2 SET c='fifty-four thousand fifty-three' WHERE a=9012;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixteen' WHERE a=9013;\nUPDATE t2 SET c='twenty-one thousand ninety-eight' WHERE a=9014;\nUPDATE t2 SET c='sixty-five thousand two hundred ninety-four' WHERE a=9015;\nUPDATE t2 SET c='forty-two thousand six hundred forty' WHERE a=9016;\nUPDATE t2 SET c='seventy-four thousand four hundred ninety-six' WHERE a=9017;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-one' WHERE a=9018;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-eight' WHERE a=9019;\nUPDATE t2 SET c='eighty-eight thousand five hundred eighty-five' WHERE a=9020;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-six' WHERE a=9021;\nUPDATE t2 SET c='eighty-four thousand eighty-seven' WHERE a=9022;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-five' WHERE a=9023;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety' WHERE a=9024;\nUPDATE t2 SET c='fifty-eight thousand five hundred sixty-two' WHERE a=9025;\nUPDATE t2 SET c='eighty-three thousand three hundred twenty-one' WHERE a=9026;\nUPDATE t2 SET c='ninety-two thousand seven hundred six' WHERE a=9027;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-five' WHERE a=9028;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-four' WHERE a=9029;\nUPDATE t2 SET c='fifty-four thousand sixty-six' WHERE a=9030;\nUPDATE t2 SET c='eleven thousand ninety-two' WHERE a=9031;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-eight' WHERE a=9032;\nUPDATE t2 SET c='eighty-one thousand twenty-one' WHERE a=9033;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-five' WHERE a=9034;\nUPDATE t2 SET c='seventy-four thousand three hundred eighty-three' WHERE a=9035;\nUPDATE t2 SET c='twenty-seven thousand three' WHERE a=9036;\nUPDATE t2 SET c='thirty-two thousand two hundred ten' WHERE a=9037;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=9038;\nUPDATE t2 SET c='eight thousand two hundred seventy-six' WHERE a=9039;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty' WHERE a=9040;\nUPDATE t2 SET c='two thousand seven hundred sixty-five' WHERE a=9041;\nUPDATE t2 SET c='thirty-one thousand ninety-six' WHERE a=9042;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-one' WHERE a=9043;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-three' WHERE a=9044;\nUPDATE t2 SET c='sixty-three thousand two hundred forty-one' WHERE a=9045;\nUPDATE t2 SET c='two thousand five hundred forty-six' WHERE a=9046;\nUPDATE t2 SET c='two thousand five hundred seventy' WHERE a=9047;\nUPDATE t2 SET c='fifty-three thousand five hundred forty-seven' WHERE a=9048;\nUPDATE t2 SET c='seventy-six thousand eight hundred fifteen' WHERE a=9049;\nUPDATE t2 SET c='eighty-five thousand sixty-nine' WHERE a=9050;\nUPDATE t2 SET c='seventy-one thousand seven hundred sixty-four' WHERE a=9051;\nUPDATE t2 SET c='forty-six thousand four hundred thirty-six' WHERE a=9052;\nUPDATE t2 SET c='one thousand one hundred twenty-three' WHERE a=9053;\nUPDATE t2 SET c='fifteen thousand seven hundred ninety-eight' WHERE a=9054;\nUPDATE t2 SET c='twelve thousand one hundred five' WHERE a=9055;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-one' WHERE a=9056;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=9057;\nUPDATE t2 SET c='twenty-one thousand ninety-two' WHERE a=9058;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-four' WHERE a=9059;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty' WHERE a=9060;\nUPDATE t2 SET c='sixty-three thousand four hundred twenty-eight' WHERE a=9061;\nUPDATE t2 SET c='two thousand nine hundred seventy' WHERE a=9062;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-five' WHERE a=9063;\nUPDATE t2 SET c='fifty-seven thousand two hundred four' WHERE a=9064;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-two' WHERE a=9065;\nUPDATE t2 SET c='eighty-three thousand seven hundred fourteen' WHERE a=9066;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-two' WHERE a=9067;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-six' WHERE a=9068;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-two' WHERE a=9069;\nUPDATE t2 SET c='four thousand eight hundred twenty-seven' WHERE a=9070;\nUPDATE t2 SET c='forty-two thousand one hundred thirty-six' WHERE a=9071;\nUPDATE t2 SET c='ninety-five thousand nine hundred forty-seven' WHERE a=9072;\nUPDATE t2 SET c='sixty-one thousand one hundred sixty-one' WHERE a=9073;\nUPDATE t2 SET c='sixty-three thousand six hundred ninety-seven' WHERE a=9074;\nUPDATE t2 SET c='seventy-six thousand nine hundred fifty-four' WHERE a=9075;\nUPDATE t2 SET c='fifty-three thousand two hundred ninety-four' WHERE a=9076;\nUPDATE t2 SET c='seventeen thousand eighty-three' WHERE a=9077;\nUPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=9078;\nUPDATE t2 SET c='forty-seven thousand six hundred seventy-eight' WHERE a=9079;\nUPDATE t2 SET c='eighty-three thousand four hundred nine' WHERE a=9080;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-two' WHERE a=9081;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty-seven' WHERE a=9082;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety' WHERE a=9083;\nUPDATE t2 SET c='twelve thousand seventy-two' WHERE a=9084;\nUPDATE t2 SET c='fifty-two thousand five hundred nine' WHERE a=9085;\nUPDATE t2 SET c='thirty-seven thousand twenty-three' WHERE a=9086;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-nine' WHERE a=9087;\nUPDATE t2 SET c='fifty-four thousand five hundred sixteen' WHERE a=9088;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty' WHERE a=9089;\nUPDATE t2 SET c='thirty thousand eighty-one' WHERE a=9090;\nUPDATE t2 SET c='four hundred forty-nine' WHERE a=9091;\nUPDATE t2 SET c='seventy-two thousand seven hundred thirty' WHERE a=9092;\nUPDATE t2 SET c='two thousand three hundred eighty-one' WHERE a=9093;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=9094;\nUPDATE t2 SET c='eleven thousand five hundred eighteen' WHERE a=9095;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-nine' WHERE a=9096;\nUPDATE t2 SET c='thirty thousand seven hundred forty-five' WHERE a=9097;\nUPDATE t2 SET c='sixty-seven thousand six hundred twenty-seven' WHERE a=9098;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=9099;\nUPDATE t2 SET c='twelve thousand six hundred forty-six' WHERE a=9100;\nUPDATE t2 SET c='seventy-five thousand five hundred eight' WHERE a=9101;\nUPDATE t2 SET c='eighteen thousand four hundred one' WHERE a=9102;\nUPDATE t2 SET c='ninety-nine thousand three hundred ninety-four' WHERE a=9103;\nUPDATE t2 SET c='forty-eight thousand three hundred thirty-five' WHERE a=9104;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty-six' WHERE a=9105;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty' WHERE a=9106;\nUPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=9107;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-five' WHERE a=9108;\nUPDATE t2 SET c='sixty-six thousand one hundred ninety' WHERE a=9109;\nUPDATE t2 SET c='four thousand five hundred fifty-three' WHERE a=9110;\nUPDATE t2 SET c='twenty-four thousand one hundred forty-four' WHERE a=9111;\nUPDATE t2 SET c='fifty-two thousand one hundred two' WHERE a=9112;\nUPDATE t2 SET c='fifty-eight thousand two hundred ninety-eight' WHERE a=9113;\nUPDATE t2 SET c='thirteen thousand six hundred forty' WHERE a=9114;\nUPDATE t2 SET c='ninety thousand five hundred thirty-one' WHERE a=9115;\nUPDATE t2 SET c='twenty-eight thousand six' WHERE a=9116;\nUPDATE t2 SET c='eighty thousand four hundred thirty-six' WHERE a=9117;\nUPDATE t2 SET c='seventy-six thousand six hundred eighty-six' WHERE a=9118;\nUPDATE t2 SET c='eighteen thousand nine hundred thirty-two' WHERE a=9119;\nUPDATE t2 SET c='forty-nine thousand sixty-nine' WHERE a=9120;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-eight' WHERE a=9121;\nUPDATE t2 SET c='ninety-five thousand two hundred fifty-six' WHERE a=9122;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-six' WHERE a=9123;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixty' WHERE a=9124;\nUPDATE t2 SET c='fourteen thousand nine hundred ninety-eight' WHERE a=9125;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-seven' WHERE a=9126;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirty-six' WHERE a=9127;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-seven' WHERE a=9128;\nUPDATE t2 SET c='forty-nine thousand one hundred eighteen' WHERE a=9129;\nUPDATE t2 SET c='forty-five thousand ninety-eight' WHERE a=9130;\nUPDATE t2 SET c='seventeen thousand six hundred fifty-six' WHERE a=9131;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-five' WHERE a=9132;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty-six' WHERE a=9133;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-six' WHERE a=9134;\nUPDATE t2 SET c='thirty-five thousand one hundred eighty-four' WHERE a=9135;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-eight' WHERE a=9136;\nUPDATE t2 SET c='eighty thousand seven hundred one' WHERE a=9137;\nUPDATE t2 SET c='ten thousand two hundred ninety' WHERE a=9138;\nUPDATE t2 SET c='ninety-two thousand one hundred seventy-five' WHERE a=9139;\nUPDATE t2 SET c='ninety-six thousand eight hundred eighty-six' WHERE a=9140;\nUPDATE t2 SET c='eighty-one thousand seventy-six' WHERE a=9141;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty' WHERE a=9142;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-two' WHERE a=9143;\nUPDATE t2 SET c='eighty-four thousand eight hundred forty-nine' WHERE a=9144;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=9145;\nUPDATE t2 SET c='nine thousand seven hundred twenty-two' WHERE a=9146;\nUPDATE t2 SET c='sixty-one thousand three hundred sixty-three' WHERE a=9147;\nUPDATE t2 SET c='forty-six thousand eight hundred forty-five' WHERE a=9148;\nUPDATE t2 SET c='ten thousand three hundred seventy-nine' WHERE a=9149;\nUPDATE t2 SET c='eighty-five thousand sixty' WHERE a=9150;\nUPDATE t2 SET c='eighty-three thousand three hundred sixty-five' WHERE a=9151;\nUPDATE t2 SET c='seven thousand two hundred ninety-eight' WHERE a=9152;\nUPDATE t2 SET c='twenty-four thousand seven hundred fourteen' WHERE a=9153;\nUPDATE t2 SET c='twenty-one thousand nine hundred twenty-nine' WHERE a=9154;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seven' WHERE a=9155;\nUPDATE t2 SET c='sixteen thousand six hundred forty-seven' WHERE a=9156;\nUPDATE t2 SET c='fifty-six thousand nine hundred fifty-two' WHERE a=9157;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixty-four' WHERE a=9158;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-two' WHERE a=9159;\nUPDATE t2 SET c='forty-six thousand six hundred twenty-two' WHERE a=9160;\nUPDATE t2 SET c='twenty-six thousand one hundred ninety-five' WHERE a=9161;\nUPDATE t2 SET c='seventy-three thousand fifty-six' WHERE a=9162;\nUPDATE t2 SET c='seventy-five thousand seven hundred sixty-four' WHERE a=9163;\nUPDATE t2 SET c='fifty-five thousand six hundred fifty' WHERE a=9164;\nUPDATE t2 SET c='seven thousand two hundred fifty' WHERE a=9165;\nUPDATE t2 SET c='eight thousand three hundred eighty-one' WHERE a=9166;\nUPDATE t2 SET c='forty-three thousand five hundred sixteen' WHERE a=9167;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-two' WHERE a=9168;\nUPDATE t2 SET c='eighty-eight thousand nine hundred' WHERE a=9169;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty-three' WHERE a=9170;\nUPDATE t2 SET c='sixty-one thousand three hundred nine' WHERE a=9171;\nUPDATE t2 SET c='seventy-nine thousand nine hundred sixty-eight' WHERE a=9172;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventeen' WHERE a=9173;\nUPDATE t2 SET c='sixty-five thousand two hundred eighty-five' WHERE a=9174;\nUPDATE t2 SET c='five thousand three hundred forty-four' WHERE a=9175;\nUPDATE t2 SET c='twelve thousand five hundred ninety-one' WHERE a=9176;\nUPDATE t2 SET c='fifty-nine thousand seven hundred twenty-six' WHERE a=9177;\nUPDATE t2 SET c='five thousand nine hundred eleven' WHERE a=9178;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-eight' WHERE a=9179;\nUPDATE t2 SET c='sixty-nine thousand ninety-six' WHERE a=9180;\nUPDATE t2 SET c='two thousand six hundred eighty-one' WHERE a=9181;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-eight' WHERE a=9182;\nUPDATE t2 SET c='one thousand seven hundred seventy-eight' WHERE a=9183;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ten' WHERE a=9184;\nUPDATE t2 SET c='sixty thousand seven hundred sixty-three' WHERE a=9185;\nUPDATE t2 SET c='forty-five thousand two hundred ninety-four' WHERE a=9186;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-five' WHERE a=9187;\nUPDATE t2 SET c='fifty thousand seven hundred forty-six' WHERE a=9188;\nUPDATE t2 SET c='seven thousand seven hundred eighty-five' WHERE a=9189;\nUPDATE t2 SET c='ninety-one thousand fifty-seven' WHERE a=9190;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-one' WHERE a=9191;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty-four' WHERE a=9192;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-one' WHERE a=9193;\nUPDATE t2 SET c='seventy-six thousand one hundred six' WHERE a=9194;\nUPDATE t2 SET c='seventy thousand eight hundred forty-three' WHERE a=9195;\nUPDATE t2 SET c='six thousand two hundred eighty' WHERE a=9196;\nUPDATE t2 SET c='seven thousand three hundred ten' WHERE a=9197;\nUPDATE t2 SET c='sixteen thousand six hundred twenty-one' WHERE a=9198;\nUPDATE t2 SET c='thirty thousand twenty-nine' WHERE a=9199;\nUPDATE t2 SET c='two thousand twenty-three' WHERE a=9200;\nUPDATE t2 SET c='fifty thousand six hundred forty-three' WHERE a=9201;\nUPDATE t2 SET c='sixty-four thousand one hundred forty-three' WHERE a=9202;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-one' WHERE a=9203;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-four' WHERE a=9204;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty' WHERE a=9205;\nUPDATE t2 SET c='sixty-four thousand two hundred sixty' WHERE a=9206;\nUPDATE t2 SET c='eight thousand two hundred six' WHERE a=9207;\nUPDATE t2 SET c='fifty-four thousand forty-one' WHERE a=9208;\nUPDATE t2 SET c='ninety-two thousand one hundred forty-one' WHERE a=9209;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-eight' WHERE a=9210;\nUPDATE t2 SET c='twenty-three thousand four hundred eighty-two' WHERE a=9211;\nUPDATE t2 SET c='twenty-one thousand six hundred five' WHERE a=9212;\nUPDATE t2 SET c='forty-five thousand two hundred fifty-three' WHERE a=9213;\nUPDATE t2 SET c='seventy-four thousand two hundred twenty-one' WHERE a=9214;\nUPDATE t2 SET c='seventy-two thousand six hundred thirty-nine' WHERE a=9215;\nUPDATE t2 SET c='ninety-two thousand four hundred ninety-five' WHERE a=9216;\nUPDATE t2 SET c='fifty-five thousand nine hundred nineteen' WHERE a=9217;\nUPDATE t2 SET c='sixty-four thousand five hundred sixty-six' WHERE a=9218;\nUPDATE t2 SET c='forty-six thousand five hundred twenty-one' WHERE a=9219;\nUPDATE t2 SET c='thirty thousand seven hundred forty-two' WHERE a=9220;\nUPDATE t2 SET c='eleven thousand six hundred forty-four' WHERE a=9221;\nUPDATE t2 SET c='thirty-eight thousand six hundred twenty-nine' WHERE a=9222;\nUPDATE t2 SET c='eighty-seven thousand eight hundred sixty-two' WHERE a=9223;\nUPDATE t2 SET c='forty-nine thousand four hundred thirty-five' WHERE a=9224;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-three' WHERE a=9225;\nUPDATE t2 SET c='fifty-eight thousand eight hundred ninety' WHERE a=9226;\nUPDATE t2 SET c='forty thousand four hundred thirty-four' WHERE a=9227;\nUPDATE t2 SET c='forty-two thousand four hundred one' WHERE a=9228;\nUPDATE t2 SET c='sixty-nine thousand seven hundred fourteen' WHERE a=9229;\nUPDATE t2 SET c='ninety-nine thousand five hundred fifty-five' WHERE a=9230;\nUPDATE t2 SET c='two thousand six hundred fifty-seven' WHERE a=9231;\nUPDATE t2 SET c='sixty-four thousand twenty-seven' WHERE a=9232;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-eight' WHERE a=9233;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-one' WHERE a=9234;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighty-three' WHERE a=9235;\nUPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=9236;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighty-four' WHERE a=9237;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-nine' WHERE a=9238;\nUPDATE t2 SET c='five hundred fifty-seven' WHERE a=9239;\nUPDATE t2 SET c='ninety-nine thousand two hundred eighty-two' WHERE a=9240;\nUPDATE t2 SET c='sixty thousand six hundred ten' WHERE a=9241;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirteen' WHERE a=9242;\nUPDATE t2 SET c='thirty-eight thousand three hundred fifty-six' WHERE a=9243;\nUPDATE t2 SET c='thirty-eight thousand two hundred nineteen' WHERE a=9244;\nUPDATE t2 SET c='six thousand ninety-two' WHERE a=9245;\nUPDATE t2 SET c='twenty-nine thousand one hundred four' WHERE a=9246;\nUPDATE t2 SET c='forty-four thousand seven hundred twenty-five' WHERE a=9247;\nUPDATE t2 SET c='eighty-nine thousand one hundred eleven' WHERE a=9248;\nUPDATE t2 SET c='forty-one thousand fifty-three' WHERE a=9249;\nUPDATE t2 SET c='twenty-one thousand seven hundred eighty-seven' WHERE a=9250;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-two' WHERE a=9251;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-nine' WHERE a=9252;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-nine' WHERE a=9253;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-five' WHERE a=9254;\nUPDATE t2 SET c='ninety-one thousand two hundred fifty-three' WHERE a=9255;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-two' WHERE a=9256;\nUPDATE t2 SET c='sixty-nine thousand two hundred ninety-nine' WHERE a=9257;\nUPDATE t2 SET c='twenty thousand two hundred fifty-six' WHERE a=9258;\nUPDATE t2 SET c='five thousand four hundred twenty-eight' WHERE a=9259;\nUPDATE t2 SET c='fifty-three thousand eight hundred six' WHERE a=9260;\nUPDATE t2 SET c='eighty-five thousand five hundred thirty-three' WHERE a=9261;\nUPDATE t2 SET c='forty-nine thousand two hundred twenty-nine' WHERE a=9262;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy' WHERE a=9263;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-seven' WHERE a=9264;\nUPDATE t2 SET c='eighty thousand six hundred twenty-six' WHERE a=9265;\nUPDATE t2 SET c='thirteen thousand six hundred sixty' WHERE a=9266;\nUPDATE t2 SET c='thirteen thousand eight hundred sixteen' WHERE a=9267;\nUPDATE t2 SET c='forty-five thousand seven hundred forty-one' WHERE a=9268;\nUPDATE t2 SET c='eleven thousand five hundred eighty-nine' WHERE a=9269;\nUPDATE t2 SET c='fifty-seven thousand six hundred twenty-nine' WHERE a=9270;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-seven' WHERE a=9271;\nUPDATE t2 SET c='twenty-three thousand one hundred eighty-one' WHERE a=9272;\nUPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=9273;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirteen' WHERE a=9274;\nUPDATE t2 SET c='thirty-two thousand nine hundred one' WHERE a=9275;\nUPDATE t2 SET c='forty-one thousand five hundred fourteen' WHERE a=9276;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-seven' WHERE a=9277;\nUPDATE t2 SET c='ninety-one thousand three hundred sixty' WHERE a=9278;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-two' WHERE a=9279;\nUPDATE t2 SET c='seventy-two thousand four hundred eighty-one' WHERE a=9280;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-three' WHERE a=9281;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty' WHERE a=9282;\nUPDATE t2 SET c='eighty-eight thousand six hundred thirty-five' WHERE a=9283;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-four' WHERE a=9284;\nUPDATE t2 SET c='forty thousand nine hundred seventy-seven' WHERE a=9285;\nUPDATE t2 SET c='fifty-nine thousand five' WHERE a=9286;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-one' WHERE a=9287;\nUPDATE t2 SET c='eighteen thousand six hundred thirty-five' WHERE a=9288;\nUPDATE t2 SET c='eighty-two thousand five hundred thirty-four' WHERE a=9289;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-four' WHERE a=9290;\nUPDATE t2 SET c='twenty-seven thousand two hundred twenty' WHERE a=9291;\nUPDATE t2 SET c='sixteen thousand two hundred fifty-two' WHERE a=9292;\nUPDATE t2 SET c='forty thousand five hundred forty-eight' WHERE a=9293;\nUPDATE t2 SET c='forty-two thousand seventy-three' WHERE a=9294;\nUPDATE t2 SET c='sixty-five thousand five hundred thirty-three' WHERE a=9295;\nUPDATE t2 SET c='thirty thousand four hundred seventy-two' WHERE a=9296;\nUPDATE t2 SET c='fifty-nine thousand one hundred thirty-one' WHERE a=9297;\nUPDATE t2 SET c='sixty-three thousand one hundred seventy-five' WHERE a=9298;\nUPDATE t2 SET c='ninety-one thousand five hundred eleven' WHERE a=9299;\nUPDATE t2 SET c='eighty-six thousand four hundred sixty-nine' WHERE a=9300;\nUPDATE t2 SET c='eighty-eight thousand nine hundred forty-six' WHERE a=9301;\nUPDATE t2 SET c='sixty-one thousand sixty' WHERE a=9302;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-three' WHERE a=9303;\nUPDATE t2 SET c='ninety thousand sixty-one' WHERE a=9304;\nUPDATE t2 SET c='eight thousand eight hundred sixty-eight' WHERE a=9305;\nUPDATE t2 SET c='twenty-one thousand fifty' WHERE a=9306;\nUPDATE t2 SET c='seventy-six thousand one hundred six' WHERE a=9307;\nUPDATE t2 SET c='seven thousand nine hundred eighty-three' WHERE a=9308;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seven' WHERE a=9309;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-two' WHERE a=9310;\nUPDATE t2 SET c='twenty-eight thousand three hundred twenty-eight' WHERE a=9311;\nUPDATE t2 SET c='twelve thousand two hundred forty' WHERE a=9312;\nUPDATE t2 SET c='fifty-two thousand eight hundred twenty-three' WHERE a=9313;\nUPDATE t2 SET c='eight thousand ninety-four' WHERE a=9314;\nUPDATE t2 SET c='thirty-seven thousand four hundred six' WHERE a=9315;\nUPDATE t2 SET c='sixty-two thousand six hundred eighty-three' WHERE a=9316;\nUPDATE t2 SET c='ninety thousand eight hundred ninety-one' WHERE a=9317;\nUPDATE t2 SET c='eighty-eight thousand seventeen' WHERE a=9318;\nUPDATE t2 SET c='thirty-nine thousand three hundred twenty-one' WHERE a=9319;\nUPDATE t2 SET c='eighteen thousand one' WHERE a=9320;\nUPDATE t2 SET c='fourteen thousand seven hundred seventy-nine' WHERE a=9321;\nUPDATE t2 SET c='ninety thousand two hundred eighty-four' WHERE a=9322;\nUPDATE t2 SET c='fifty-three thousand nine hundred eighty-four' WHERE a=9323;\nUPDATE t2 SET c='two hundred twenty-six' WHERE a=9324;\nUPDATE t2 SET c='ten thousand seven hundred six' WHERE a=9325;\nUPDATE t2 SET c='forty thousand seven hundred seventeen' WHERE a=9326;\nUPDATE t2 SET c='sixty-seven thousand five hundred eight' WHERE a=9327;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-three' WHERE a=9328;\nUPDATE t2 SET c='forty-six thousand ninety-five' WHERE a=9329;\nUPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=9330;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-six' WHERE a=9331;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-six' WHERE a=9332;\nUPDATE t2 SET c='thirty-five thousand two hundred six' WHERE a=9333;\nUPDATE t2 SET c='twenty thousand one' WHERE a=9334;\nUPDATE t2 SET c='sixty thousand forty' WHERE a=9335;\nUPDATE t2 SET c='twenty-seven thousand six hundred forty-eight' WHERE a=9336;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty-seven' WHERE a=9337;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy-three' WHERE a=9338;\nUPDATE t2 SET c='sixty-two thousand four hundred ninety-nine' WHERE a=9339;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-two' WHERE a=9340;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-four' WHERE a=9341;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-three' WHERE a=9342;\nUPDATE t2 SET c='seventy-three thousand nine hundred thirty-six' WHERE a=9343;\nUPDATE t2 SET c='ninety-four thousand four hundred forty-nine' WHERE a=9344;\nUPDATE t2 SET c='ninety thousand four hundred forty-four' WHERE a=9345;\nUPDATE t2 SET c='eighty-one thousand three hundred six' WHERE a=9346;\nUPDATE t2 SET c='forty-five thousand two hundred forty-six' WHERE a=9347;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty-three' WHERE a=9348;\nUPDATE t2 SET c='ninety-four thousand ninety' WHERE a=9349;\nUPDATE t2 SET c='ninety-six thousand four hundred fifty-six' WHERE a=9350;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-nine' WHERE a=9351;\nUPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=9352;\nUPDATE t2 SET c='forty-six thousand five hundred fifty-three' WHERE a=9353;\nUPDATE t2 SET c='ninety thousand five hundred eighty-five' WHERE a=9354;\nUPDATE t2 SET c='one hundred fifty-eight' WHERE a=9355;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eleven' WHERE a=9356;\nUPDATE t2 SET c='seventy-seven thousand six hundred twenty-one' WHERE a=9357;\nUPDATE t2 SET c='twenty-four thousand eighty-seven' WHERE a=9358;\nUPDATE t2 SET c='forty-two thousand three hundred thirty' WHERE a=9359;\nUPDATE t2 SET c='eighty thousand eighty-five' WHERE a=9360;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-one' WHERE a=9361;\nUPDATE t2 SET c='thirty-seven thousand four hundred' WHERE a=9362;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty' WHERE a=9363;\nUPDATE t2 SET c='nine hundred fifty-one' WHERE a=9364;\nUPDATE t2 SET c='five hundred twenty-seven' WHERE a=9365;\nUPDATE t2 SET c='ninety-two thousand nine hundred fifteen' WHERE a=9366;\nUPDATE t2 SET c='sixty-six thousand five hundred seventy-seven' WHERE a=9367;\nUPDATE t2 SET c='four thousand eight hundred sixty-five' WHERE a=9368;\nUPDATE t2 SET c='eighty-one thousand six hundred forty-six' WHERE a=9369;\nUPDATE t2 SET c='ninety-six thousand nine hundred six' WHERE a=9370;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seven' WHERE a=9371;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-seven' WHERE a=9372;\nUPDATE t2 SET c='ninety-six thousand five hundred eighteen' WHERE a=9373;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-two' WHERE a=9374;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirty' WHERE a=9375;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seventy-nine' WHERE a=9376;\nUPDATE t2 SET c='fifty-six thousand seven hundred nine' WHERE a=9377;\nUPDATE t2 SET c='forty-three thousand five hundred forty-three' WHERE a=9378;\nUPDATE t2 SET c='fourteen thousand eight hundred eighty' WHERE a=9379;\nUPDATE t2 SET c='eighty-four thousand four hundred sixty' WHERE a=9380;\nUPDATE t2 SET c='forty-four thousand six hundred eleven' WHERE a=9381;\nUPDATE t2 SET c='twenty-one thousand eight hundred forty-eight' WHERE a=9382;\nUPDATE t2 SET c='fifteen thousand two hundred twenty-seven' WHERE a=9383;\nUPDATE t2 SET c='forty-seven thousand nine hundred seventy-one' WHERE a=9384;\nUPDATE t2 SET c='sixty thousand two hundred fifty-three' WHERE a=9385;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-five' WHERE a=9386;\nUPDATE t2 SET c='seven thousand seven' WHERE a=9387;\nUPDATE t2 SET c='thirty-seven thousand four hundred seventy-one' WHERE a=9388;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-five' WHERE a=9389;\nUPDATE t2 SET c='fourteen thousand three hundred eighteen' WHERE a=9390;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-four' WHERE a=9391;\nUPDATE t2 SET c='sixty-three thousand ten' WHERE a=9392;\nUPDATE t2 SET c='sixty-five thousand four hundred eighty-one' WHERE a=9393;\nUPDATE t2 SET c='sixty-five thousand seven hundred ninety-three' WHERE a=9394;\nUPDATE t2 SET c='sixty thousand six hundred fifty-three' WHERE a=9395;\nUPDATE t2 SET c='sixty-six thousand six hundred eleven' WHERE a=9396;\nUPDATE t2 SET c='thirty-five thousand one hundred seventy-eight' WHERE a=9397;\nUPDATE t2 SET c='twelve thousand three hundred eighty-eight' WHERE a=9398;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-one' WHERE a=9399;\nUPDATE t2 SET c='forty-nine thousand four hundred seventy-seven' WHERE a=9400;\nUPDATE t2 SET c='eighty thousand one hundred six' WHERE a=9401;\nUPDATE t2 SET c='fifty-five thousand seven hundred sixty-seven' WHERE a=9402;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-seven' WHERE a=9403;\nUPDATE t2 SET c='twenty-five thousand two hundred ninety-one' WHERE a=9404;\nUPDATE t2 SET c='twenty-four thousand three hundred twenty-six' WHERE a=9405;\nUPDATE t2 SET c='eight thousand four hundred seventy-two' WHERE a=9406;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty' WHERE a=9407;\nUPDATE t2 SET c='fifty thousand three hundred seventy-seven' WHERE a=9408;\nUPDATE t2 SET c='nine thousand four hundred seventy-five' WHERE a=9409;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety-seven' WHERE a=9410;\nUPDATE t2 SET c='fifty-one thousand seven hundred ninety-seven' WHERE a=9411;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-nine' WHERE a=9412;\nUPDATE t2 SET c='thirty-eight thousand ninety-six' WHERE a=9413;\nUPDATE t2 SET c='twenty-nine thousand ninety-four' WHERE a=9414;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-nine' WHERE a=9415;\nUPDATE t2 SET c='fifty-six thousand five hundred ninety-eight' WHERE a=9416;\nUPDATE t2 SET c='ninety-five thousand four hundred thirty-three' WHERE a=9417;\nUPDATE t2 SET c='thirty-seven thousand nine hundred ninety-four' WHERE a=9418;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-nine' WHERE a=9419;\nUPDATE t2 SET c='thirty-eight thousand seven hundred fifty-one' WHERE a=9420;\nUPDATE t2 SET c='seven hundred fifty-nine' WHERE a=9421;\nUPDATE t2 SET c='ninety-six thousand two hundred thirty-seven' WHERE a=9422;\nUPDATE t2 SET c='eighty-one thousand eighty-two' WHERE a=9423;\nUPDATE t2 SET c='eighteen thousand seven hundred eighty-three' WHERE a=9424;\nUPDATE t2 SET c='twenty-four thousand three hundred thirty-one' WHERE a=9425;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty' WHERE a=9426;\nUPDATE t2 SET c='eighty-seven thousand eight hundred eighty-six' WHERE a=9427;\nUPDATE t2 SET c='eight thousand one hundred eighty-eight' WHERE a=9428;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-nine' WHERE a=9429;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-six' WHERE a=9430;\nUPDATE t2 SET c='ninety-eight thousand six hundred sixty-four' WHERE a=9431;\nUPDATE t2 SET c='sixty thousand two hundred fifty-eight' WHERE a=9432;\nUPDATE t2 SET c='fifty-three thousand eight hundred ninety-six' WHERE a=9433;\nUPDATE t2 SET c='eighty-five thousand seven hundred twelve' WHERE a=9434;\nUPDATE t2 SET c='forty-seven thousand nine hundred seventeen' WHERE a=9435;\nUPDATE t2 SET c='ninety-four thousand two hundred eighty-four' WHERE a=9436;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=9437;\nUPDATE t2 SET c='three thousand eight hundred seventy-nine' WHERE a=9438;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-eight' WHERE a=9439;\nUPDATE t2 SET c='thirty-four thousand five hundred twenty-five' WHERE a=9440;\nUPDATE t2 SET c='eighteen thousand eight hundred eleven' WHERE a=9441;\nUPDATE t2 SET c='fifteen thousand five hundred eighteen' WHERE a=9442;\nUPDATE t2 SET c='sixty-five thousand five hundred eighty-seven' WHERE a=9443;\nUPDATE t2 SET c='fifty thousand six hundred thirty-one' WHERE a=9444;\nUPDATE t2 SET c='ninety-six thousand one hundred forty' WHERE a=9445;\nUPDATE t2 SET c='seventy-three thousand one hundred forty-five' WHERE a=9446;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-eight' WHERE a=9447;\nUPDATE t2 SET c='twenty-five thousand five hundred seven' WHERE a=9448;\nUPDATE t2 SET c='sixty-five thousand five hundred twenty' WHERE a=9449;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty-three' WHERE a=9450;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixteen' WHERE a=9451;\nUPDATE t2 SET c='twenty-seven thousand eight hundred twelve' WHERE a=9452;\nUPDATE t2 SET c='ninety-two thousand five hundred fifty-nine' WHERE a=9453;\nUPDATE t2 SET c='thirty-five thousand two hundred thirty' WHERE a=9454;\nUPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=9455;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-one' WHERE a=9456;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-seven' WHERE a=9457;\nUPDATE t2 SET c='seventy-two thousand one hundred thirty-three' WHERE a=9458;\nUPDATE t2 SET c='seventy-three thousand four hundred twenty-six' WHERE a=9459;\nUPDATE t2 SET c='ninety-two thousand one hundred thirty-four' WHERE a=9460;\nUPDATE t2 SET c='ninety-one thousand seven hundred fifty-seven' WHERE a=9461;\nUPDATE t2 SET c='thirty-nine thousand eight hundred fifty' WHERE a=9462;\nUPDATE t2 SET c='thirty-three thousand seven hundred forty' WHERE a=9463;\nUPDATE t2 SET c='ninety thousand seven hundred eighty' WHERE a=9464;\nUPDATE t2 SET c='ninety-nine thousand two hundred ninety-six' WHERE a=9465;\nUPDATE t2 SET c='eight thousand seven hundred thirty-nine' WHERE a=9466;\nUPDATE t2 SET c='thirty-six thousand four hundred eleven' WHERE a=9467;\nUPDATE t2 SET c='twenty-eight thousand three hundred five' WHERE a=9468;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-one' WHERE a=9469;\nUPDATE t2 SET c='one thousand nine hundred seventy-six' WHERE a=9470;\nUPDATE t2 SET c='thirty thousand four hundred twenty-eight' WHERE a=9471;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy-five' WHERE a=9472;\nUPDATE t2 SET c='seventy-six thousand fifty-four' WHERE a=9473;\nUPDATE t2 SET c='sixty-nine thousand seven hundred seventy-one' WHERE a=9474;\nUPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=9475;\nUPDATE t2 SET c='thirty-five thousand seven hundred eighty-two' WHERE a=9476;\nUPDATE t2 SET c='two thousand six hundred forty' WHERE a=9477;\nUPDATE t2 SET c='sixty-eight thousand five hundred one' WHERE a=9478;\nUPDATE t2 SET c='eighty-six thousand nine hundred thirteen' WHERE a=9479;\nUPDATE t2 SET c='eighty-five thousand seventy-one' WHERE a=9480;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-nine' WHERE a=9481;\nUPDATE t2 SET c='fifty thousand eight hundred fifty-six' WHERE a=9482;\nUPDATE t2 SET c='five thousand five hundred seventy-nine' WHERE a=9483;\nUPDATE t2 SET c='forty-four thousand four hundred forty-nine' WHERE a=9484;\nUPDATE t2 SET c='eight thousand four hundred thirty-eight' WHERE a=9485;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=9486;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty-three' WHERE a=9487;\nUPDATE t2 SET c='thirty thousand four hundred eighty-nine' WHERE a=9488;\nUPDATE t2 SET c='eighty-three thousand five hundred ninety-eight' WHERE a=9489;\nUPDATE t2 SET c='ninety-four thousand four hundred fifty-six' WHERE a=9490;\nUPDATE t2 SET c='sixteen thousand nine hundred eighty-one' WHERE a=9491;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-four' WHERE a=9492;\nUPDATE t2 SET c='eighty-five thousand one hundred eight' WHERE a=9493;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-two' WHERE a=9494;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-six' WHERE a=9495;\nUPDATE t2 SET c='ninety-two thousand six hundred forty-one' WHERE a=9496;\nUPDATE t2 SET c='ninety-nine thousand one hundred ninety-three' WHERE a=9497;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-four' WHERE a=9498;\nUPDATE t2 SET c='sixty-one thousand one hundred eighty-five' WHERE a=9499;\nUPDATE t2 SET c='fifty-two thousand fifteen' WHERE a=9500;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-three' WHERE a=9501;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-six' WHERE a=9502;\nUPDATE t2 SET c='seven thousand nine hundred fifty-nine' WHERE a=9503;\nUPDATE t2 SET c='thirty-four thousand eighty-four' WHERE a=9504;\nUPDATE t2 SET c='forty thousand seven hundred fifty-seven' WHERE a=9505;\nUPDATE t2 SET c='fifty-one thousand six hundred twenty-seven' WHERE a=9506;\nUPDATE t2 SET c='two hundred forty-eight' WHERE a=9507;\nUPDATE t2 SET c='twenty-four thousand six hundred eighty-six' WHERE a=9508;\nUPDATE t2 SET c='seventy-five thousand four hundred sixteen' WHERE a=9509;\nUPDATE t2 SET c='eighty thousand ninety-six' WHERE a=9510;\nUPDATE t2 SET c='two hundred thirty-three' WHERE a=9511;\nUPDATE t2 SET c='forty-six thousand six hundred seventy-one' WHERE a=9512;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirteen' WHERE a=9513;\nUPDATE t2 SET c='eight thousand five hundred thirty' WHERE a=9514;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-one' WHERE a=9515;\nUPDATE t2 SET c='ninety-five thousand two hundred eight' WHERE a=9516;\nUPDATE t2 SET c='one thousand twenty-six' WHERE a=9517;\nUPDATE t2 SET c='forty-nine thousand two hundred sixty-five' WHERE a=9518;\nUPDATE t2 SET c='eighty thousand twenty-four' WHERE a=9519;\nUPDATE t2 SET c='nine thousand eighty-four' WHERE a=9520;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety-nine' WHERE a=9521;\nUPDATE t2 SET c='fifty-one thousand four hundred eight' WHERE a=9522;\nUPDATE t2 SET c='thirty-six thousand nine hundred ninety' WHERE a=9523;\nUPDATE t2 SET c='forty-nine thousand one hundred eighty-two' WHERE a=9524;\nUPDATE t2 SET c='eleven thousand nine hundred thirty-two' WHERE a=9525;\nUPDATE t2 SET c='sixty-two thousand ninety-two' WHERE a=9526;\nUPDATE t2 SET c='twenty-nine thousand sixty-three' WHERE a=9527;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-six' WHERE a=9528;\nUPDATE t2 SET c='thirty-one thousand eight hundred seventy' WHERE a=9529;\nUPDATE t2 SET c='forty-six thousand nine hundred fifteen' WHERE a=9530;\nUPDATE t2 SET c='one thousand six hundred ninety-one' WHERE a=9531;\nUPDATE t2 SET c='sixty-five thousand nine hundred twenty-five' WHERE a=9532;\nUPDATE t2 SET c='thirty thousand four hundred fifteen' WHERE a=9533;\nUPDATE t2 SET c='fifty-seven thousand two hundred ninety-two' WHERE a=9534;\nUPDATE t2 SET c='sixty-four thousand seven hundred ten' WHERE a=9535;\nUPDATE t2 SET c='twenty-five thousand ninety-nine' WHERE a=9536;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty-seven' WHERE a=9537;\nUPDATE t2 SET c='forty-one thousand three hundred one' WHERE a=9538;\nUPDATE t2 SET c='fourteen thousand three hundred twenty-six' WHERE a=9539;\nUPDATE t2 SET c='sixty-five thousand six hundred thirty-three' WHERE a=9540;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-five' WHERE a=9541;\nUPDATE t2 SET c='six thousand seven hundred seventeen' WHERE a=9542;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-two' WHERE a=9543;\nUPDATE t2 SET c='four thousand one hundred forty' WHERE a=9544;\nUPDATE t2 SET c='ninety thousand sixty-seven' WHERE a=9545;\nUPDATE t2 SET c='sixty-four thousand nine hundred seven' WHERE a=9546;\nUPDATE t2 SET c='six thousand nine hundred sixty-eight' WHERE a=9547;\nUPDATE t2 SET c='twenty-one thousand sixty-four' WHERE a=9548;\nUPDATE t2 SET c='thirteen thousand six hundred twenty-eight' WHERE a=9549;\nUPDATE t2 SET c='forty-five thousand two hundred thirty-nine' WHERE a=9550;\nUPDATE t2 SET c='ninety-three thousand nine hundred sixty-two' WHERE a=9551;\nUPDATE t2 SET c='thirty thousand three hundred twenty-one' WHERE a=9552;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-nine' WHERE a=9553;\nUPDATE t2 SET c='fifty thousand two hundred fifteen' WHERE a=9554;\nUPDATE t2 SET c='eighty-two thousand four hundred sixty-one' WHERE a=9555;\nUPDATE t2 SET c='twenty-eight thousand eight hundred seventy-three' WHERE a=9556;\nUPDATE t2 SET c='forty-five thousand seven hundred five' WHERE a=9557;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-two' WHERE a=9558;\nUPDATE t2 SET c='eighty thousand six hundred ninety-four' WHERE a=9559;\nUPDATE t2 SET c='forty thousand seventy' WHERE a=9560;\nUPDATE t2 SET c='eighty-two thousand four hundred eighty' WHERE a=9561;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-six' WHERE a=9562;\nUPDATE t2 SET c='seventy-six thousand eight hundred twenty-three' WHERE a=9563;\nUPDATE t2 SET c='twenty-three thousand three hundred nineteen' WHERE a=9564;\nUPDATE t2 SET c='fifty-six thousand two hundred fifteen' WHERE a=9565;\nUPDATE t2 SET c='eighty-two thousand eight hundred seventy-six' WHERE a=9566;\nUPDATE t2 SET c='sixty-two thousand five hundred eighty-four' WHERE a=9567;\nUPDATE t2 SET c='eighty-five thousand sixty-four' WHERE a=9568;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-four' WHERE a=9569;\nUPDATE t2 SET c='fifty-seven thousand forty-one' WHERE a=9570;\nUPDATE t2 SET c='sixty-two thousand seven hundred twenty-four' WHERE a=9571;\nUPDATE t2 SET c='sixty-six thousand nine hundred sixteen' WHERE a=9572;\nUPDATE t2 SET c='one thousand three hundred twenty-six' WHERE a=9573;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-six' WHERE a=9574;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-five' WHERE a=9575;\nUPDATE t2 SET c='thirty-four thousand eight hundred fifty-two' WHERE a=9576;\nUPDATE t2 SET c='eighty-six thousand four hundred three' WHERE a=9577;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixteen' WHERE a=9578;\nUPDATE t2 SET c='ninety-three thousand five hundred fifty-three' WHERE a=9579;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-two' WHERE a=9580;\nUPDATE t2 SET c='fifty-eight thousand eight hundred thirty-seven' WHERE a=9581;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-six' WHERE a=9582;\nUPDATE t2 SET c='sixty-seven thousand five hundred sixty-six' WHERE a=9583;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-four' WHERE a=9584;\nUPDATE t2 SET c='ninety-two thousand two hundred seventy-eight' WHERE a=9585;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-nine' WHERE a=9586;\nUPDATE t2 SET c='forty-six thousand five hundred seventy-two' WHERE a=9587;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-four' WHERE a=9588;\nUPDATE t2 SET c='eighteen thousand three hundred ninety' WHERE a=9589;\nUPDATE t2 SET c='twenty-two thousand eight hundred fifty' WHERE a=9590;\nUPDATE t2 SET c='thirty-two thousand four hundred sixty-one' WHERE a=9591;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirty-five' WHERE a=9592;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-three' WHERE a=9593;\nUPDATE t2 SET c='seventy-three thousand three hundred eighty-four' WHERE a=9594;\nUPDATE t2 SET c='thirty-four thousand six hundred sixty-four' WHERE a=9595;\nUPDATE t2 SET c='ninety-five thousand five hundred twenty-seven' WHERE a=9596;\nUPDATE t2 SET c='twenty-seven thousand three hundred one' WHERE a=9597;\nUPDATE t2 SET c='ninety-six thousand four hundred' WHERE a=9598;\nUPDATE t2 SET c='seventy-eight thousand eight hundred forty-nine' WHERE a=9599;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=9600;\nUPDATE t2 SET c='eighty-six thousand five hundred ninety-seven' WHERE a=9601;\nUPDATE t2 SET c='seventy-six thousand five hundred fifty' WHERE a=9602;\nUPDATE t2 SET c='ten thousand seven hundred thirty-five' WHERE a=9603;\nUPDATE t2 SET c='twenty-three thousand nine hundred twenty-five' WHERE a=9604;\nUPDATE t2 SET c='thirty-nine thousand one hundred forty-three' WHERE a=9605;\nUPDATE t2 SET c='eighteen thousand nine hundred forty-two' WHERE a=9606;\nUPDATE t2 SET c='eleven thousand eight hundred seventy-seven' WHERE a=9607;\nUPDATE t2 SET c='twenty-nine thousand one hundred seventy' WHERE a=9608;\nUPDATE t2 SET c='ten thousand two hundred eighty-eight' WHERE a=9609;\nUPDATE t2 SET c='six thousand four hundred nine' WHERE a=9610;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-eight' WHERE a=9611;\nUPDATE t2 SET c='thirty-six thousand eight hundred ninety-nine' WHERE a=9612;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty-two' WHERE a=9613;\nUPDATE t2 SET c='eighty-six thousand nine hundred fifty-six' WHERE a=9614;\nUPDATE t2 SET c='fifty-four thousand fourteen' WHERE a=9615;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-nine' WHERE a=9616;\nUPDATE t2 SET c='twenty-nine thousand two hundred eighty-three' WHERE a=9617;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty' WHERE a=9618;\nUPDATE t2 SET c='eight thousand four hundred nine' WHERE a=9619;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty' WHERE a=9620;\nUPDATE t2 SET c='twenty-four thousand seven hundred twenty-seven' WHERE a=9621;\nUPDATE t2 SET c='twenty-three thousand nine hundred sixty-seven' WHERE a=9622;\nUPDATE t2 SET c='forty-five thousand seven hundred fifty-two' WHERE a=9623;\nUPDATE t2 SET c='three thousand one hundred sixty-nine' WHERE a=9624;\nUPDATE t2 SET c='seventy-nine thousand five hundred twelve' WHERE a=9625;\nUPDATE t2 SET c='twenty-nine thousand one hundred' WHERE a=9626;\nUPDATE t2 SET c='sixty thousand seven hundred twenty-eight' WHERE a=9627;\nUPDATE t2 SET c='eighty-six thousand five hundred fifty-four' WHERE a=9628;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-eight' WHERE a=9629;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-three' WHERE a=9630;\nUPDATE t2 SET c='ninety-three thousand four hundred twenty-five' WHERE a=9631;\nUPDATE t2 SET c='twenty thousand five hundred sixty-six' WHERE a=9632;\nUPDATE t2 SET c='thirty-one thousand one hundred four' WHERE a=9633;\nUPDATE t2 SET c='twenty thousand one hundred eighty' WHERE a=9634;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-two' WHERE a=9635;\nUPDATE t2 SET c='seven thousand three hundred twenty-five' WHERE a=9636;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-seven' WHERE a=9637;\nUPDATE t2 SET c='eighty-nine thousand three hundred thirteen' WHERE a=9638;\nUPDATE t2 SET c='sixty-one thousand seven hundred two' WHERE a=9639;\nUPDATE t2 SET c='ninety-two thousand six hundred sixty-one' WHERE a=9640;\nUPDATE t2 SET c='fifty-six thousand sixty-four' WHERE a=9641;\nUPDATE t2 SET c='four thousand one hundred fifty-five' WHERE a=9642;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-four' WHERE a=9643;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-seven' WHERE a=9644;\nUPDATE t2 SET c='forty-two thousand four hundred fifty-three' WHERE a=9645;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-six' WHERE a=9646;\nUPDATE t2 SET c='twenty-four thousand nine hundred thirty-seven' WHERE a=9647;\nUPDATE t2 SET c='forty-four thousand two hundred twenty' WHERE a=9648;\nUPDATE t2 SET c='forty-seven thousand fifteen' WHERE a=9649;\nUPDATE t2 SET c='thirty thousand four hundred seventy' WHERE a=9650;\nUPDATE t2 SET c='two thousand one hundred fifty-three' WHERE a=9651;\nUPDATE t2 SET c='thirty-eight thousand forty-four' WHERE a=9652;\nUPDATE t2 SET c='seventy thousand five hundred twenty-four' WHERE a=9653;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifty-one' WHERE a=9654;\nUPDATE t2 SET c='seventy-four thousand fifty-three' WHERE a=9655;\nUPDATE t2 SET c='thirty-five thousand seventy-six' WHERE a=9656;\nUPDATE t2 SET c='forty-seven' WHERE a=9657;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-four' WHERE a=9658;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-eight' WHERE a=9659;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=9660;\nUPDATE t2 SET c='forty-five thousand one hundred eighty-nine' WHERE a=9661;\nUPDATE t2 SET c='four thousand seventy-three' WHERE a=9662;\nUPDATE t2 SET c='five thousand nine hundred eighty-two' WHERE a=9663;\nUPDATE t2 SET c='twenty-three thousand eight hundred fifty-nine' WHERE a=9664;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty-eight' WHERE a=9665;\nUPDATE t2 SET c='twenty thousand four hundred thirty-two' WHERE a=9666;\nUPDATE t2 SET c='twenty thousand five hundred seven' WHERE a=9667;\nUPDATE t2 SET c='fifty-one thousand three hundred fifty-five' WHERE a=9668;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-one' WHERE a=9669;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixty-three' WHERE a=9670;\nUPDATE t2 SET c='forty-eight thousand four hundred twenty-six' WHERE a=9671;\nUPDATE t2 SET c='seventy-one thousand one hundred thirty-two' WHERE a=9672;\nUPDATE t2 SET c='seventy-five thousand one hundred sixty-seven' WHERE a=9673;\nUPDATE t2 SET c='eighty-two thousand seven hundred thirteen' WHERE a=9674;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty' WHERE a=9675;\nUPDATE t2 SET c='five thousand four hundred three' WHERE a=9676;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty' WHERE a=9677;\nUPDATE t2 SET c='ninety-five thousand ninety-six' WHERE a=9678;\nUPDATE t2 SET c='four hundred sixty-nine' WHERE a=9679;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-four' WHERE a=9680;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-eight' WHERE a=9681;\nUPDATE t2 SET c='twenty-five thousand one hundred seventy-nine' WHERE a=9682;\nUPDATE t2 SET c='thirty-two thousand seventy-three' WHERE a=9683;\nUPDATE t2 SET c='sixty-four thousand one hundred sixteen' WHERE a=9684;\nUPDATE t2 SET c='thirty-six thousand nine hundred eight' WHERE a=9685;\nUPDATE t2 SET c='seventy-nine thousand eight hundred thirteen' WHERE a=9686;\nUPDATE t2 SET c='ninety-nine thousand seventy' WHERE a=9687;\nUPDATE t2 SET c='three thousand eight hundred eighty-nine' WHERE a=9688;\nUPDATE t2 SET c='twenty-two thousand six hundred eight' WHERE a=9689;\nUPDATE t2 SET c='seventy thousand forty-six' WHERE a=9690;\nUPDATE t2 SET c='eighty-five thousand six hundred fourteen' WHERE a=9691;\nUPDATE t2 SET c='twenty-nine thousand five hundred fifteen' WHERE a=9692;\nUPDATE t2 SET c='thirty-two thousand three hundred ninety-eight' WHERE a=9693;\nUPDATE t2 SET c='ten thousand one hundred ninety-nine' WHERE a=9694;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fifty-two' WHERE a=9695;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=9696;\nUPDATE t2 SET c='thirty-six thousand six hundred fourteen' WHERE a=9697;\nUPDATE t2 SET c='fifty-three thousand five hundred thirty-one' WHERE a=9698;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty' WHERE a=9699;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-eight' WHERE a=9700;\nUPDATE t2 SET c='thirty-six thousand ninety-nine' WHERE a=9701;\nUPDATE t2 SET c='forty-four thousand five hundred eighty-six' WHERE a=9702;\nUPDATE t2 SET c='fifty-eight thousand five hundred thirty-five' WHERE a=9703;\nUPDATE t2 SET c='twenty-one thousand nine hundred twenty-four' WHERE a=9704;\nUPDATE t2 SET c='eighty-six thousand six hundred ninety-seven' WHERE a=9705;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-seven' WHERE a=9706;\nUPDATE t2 SET c='fifty-eight thousand seven hundred forty-eight' WHERE a=9707;\nUPDATE t2 SET c='fourteen thousand four hundred thirty' WHERE a=9708;\nUPDATE t2 SET c='thirty-five thousand five hundred sixty-two' WHERE a=9709;\nUPDATE t2 SET c='sixty-five thousand four hundred fifty' WHERE a=9710;\nUPDATE t2 SET c='sixty-four thousand three hundred seventy-two' WHERE a=9711;\nUPDATE t2 SET c='twenty-one thousand eight hundred seventy-nine' WHERE a=9712;\nUPDATE t2 SET c='ninety-four thousand eight hundred eight' WHERE a=9713;\nUPDATE t2 SET c='fifty-five thousand seven hundred thirty-three' WHERE a=9714;\nUPDATE t2 SET c='fifty-seven thousand seven hundred thirty-one' WHERE a=9715;\nUPDATE t2 SET c='one thousand six hundred thirty-six' WHERE a=9716;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-eight' WHERE a=9717;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-one' WHERE a=9718;\nUPDATE t2 SET c='eighty-seven thousand six hundred twenty' WHERE a=9719;\nUPDATE t2 SET c='seven hundred ninety-two' WHERE a=9720;\nUPDATE t2 SET c='thirty-one thousand three hundred ten' WHERE a=9721;\nUPDATE t2 SET c='ninety-one thousand two hundred sixty-two' WHERE a=9722;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-eight' WHERE a=9723;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-one' WHERE a=9724;\nUPDATE t2 SET c='twenty-five thousand two hundred nineteen' WHERE a=9725;\nUPDATE t2 SET c='seventy-three thousand three hundred ninety-two' WHERE a=9726;\nUPDATE t2 SET c='sixty-one thousand seven hundred forty-five' WHERE a=9727;\nUPDATE t2 SET c='sixty-four thousand one hundred two' WHERE a=9728;\nUPDATE t2 SET c='fourteen thousand five hundred ninety-two' WHERE a=9729;\nUPDATE t2 SET c='twenty-four thousand three hundred thirty-two' WHERE a=9730;\nUPDATE t2 SET c='eighty-seven thousand six hundred ninety-seven' WHERE a=9731;\nUPDATE t2 SET c='eighty-six thousand seven hundred seventy-one' WHERE a=9732;\nUPDATE t2 SET c='nine thousand eight hundred four' WHERE a=9733;\nUPDATE t2 SET c='forty thousand seven hundred fifty-nine' WHERE a=9734;\nUPDATE t2 SET c='eighty-nine thousand three hundred seventy-eight' WHERE a=9735;\nUPDATE t2 SET c='forty-one thousand four hundred forty' WHERE a=9736;\nUPDATE t2 SET c='thirty-four thousand nine hundred fifty' WHERE a=9737;\nUPDATE t2 SET c='seventy-three thousand two hundred sixty-eight' WHERE a=9738;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-five' WHERE a=9739;\nUPDATE t2 SET c='ninety-six thousand two hundred six' WHERE a=9740;\nUPDATE t2 SET c='ninety-eight thousand five hundred four' WHERE a=9741;\nUPDATE t2 SET c='seven thousand five hundred fifty-nine' WHERE a=9742;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-seven' WHERE a=9743;\nUPDATE t2 SET c='fifty-two thousand nine hundred forty-three' WHERE a=9744;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-two' WHERE a=9745;\nUPDATE t2 SET c='sixty thousand six hundred seven' WHERE a=9746;\nUPDATE t2 SET c='thirty-nine thousand one hundred ninety-two' WHERE a=9747;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-nine' WHERE a=9748;\nUPDATE t2 SET c='eleven thousand eight hundred thirty-seven' WHERE a=9749;\nUPDATE t2 SET c='sixteen thousand one hundred thirty-nine' WHERE a=9750;\nUPDATE t2 SET c='forty-seven thousand three hundred eighty' WHERE a=9751;\nUPDATE t2 SET c='ninety-six thousand six hundred' WHERE a=9752;\nUPDATE t2 SET c='seventy-three thousand' WHERE a=9753;\nUPDATE t2 SET c='twenty-three thousand fourteen' WHERE a=9754;\nUPDATE t2 SET c='ten thousand eight hundred twenty-three' WHERE a=9755;\nUPDATE t2 SET c='eleven thousand five hundred ninety-nine' WHERE a=9756;\nUPDATE t2 SET c='eighty-nine thousand three hundred eighty-seven' WHERE a=9757;\nUPDATE t2 SET c='ninety thousand three hundred ninety' WHERE a=9758;\nUPDATE t2 SET c='fifty-four thousand three hundred sixty-eight' WHERE a=9759;\nUPDATE t2 SET c='nine thousand six hundred ninety-two' WHERE a=9760;\nUPDATE t2 SET c='forty thousand three hundred eighty-seven' WHERE a=9761;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-nine' WHERE a=9762;\nUPDATE t2 SET c='eight thousand five hundred sixty-two' WHERE a=9763;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-three' WHERE a=9764;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-nine' WHERE a=9765;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety-six' WHERE a=9766;\nUPDATE t2 SET c='twenty thousand two hundred sixty' WHERE a=9767;\nUPDATE t2 SET c='nineteen thousand seven hundred sixty-six' WHERE a=9768;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-nine' WHERE a=9769;\nUPDATE t2 SET c='forty-eight thousand eighty-seven' WHERE a=9770;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-one' WHERE a=9771;\nUPDATE t2 SET c='nineteen thousand one hundred twenty' WHERE a=9772;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty-seven' WHERE a=9773;\nUPDATE t2 SET c='ninety-two thousand two hundred thirty' WHERE a=9774;\nUPDATE t2 SET c='thirty-seven thousand one hundred forty' WHERE a=9775;\nUPDATE t2 SET c='sixty-four thousand four hundred seventy-two' WHERE a=9776;\nUPDATE t2 SET c='sixty thousand five hundred thirty-six' WHERE a=9777;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-eight' WHERE a=9778;\nUPDATE t2 SET c='sixty thousand four hundred four' WHERE a=9779;\nUPDATE t2 SET c='seventy thousand four hundred fifty-nine' WHERE a=9780;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety-two' WHERE a=9781;\nUPDATE t2 SET c='nineteen thousand two hundred twenty-four' WHERE a=9782;\nUPDATE t2 SET c='sixty-three thousand eight hundred sixty-four' WHERE a=9783;\nUPDATE t2 SET c='sixty-four thousand three' WHERE a=9784;\nUPDATE t2 SET c='twenty-nine thousand eight hundred thirty-eight' WHERE a=9785;\nUPDATE t2 SET c='eighty thousand three hundred three' WHERE a=9786;\nUPDATE t2 SET c='four thousand seven hundred ninety-three' WHERE a=9787;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-six' WHERE a=9788;\nUPDATE t2 SET c='ninety-two thousand thirteen' WHERE a=9789;\nUPDATE t2 SET c='twenty-two thousand seventy-two' WHERE a=9790;\nUPDATE t2 SET c='eight thousand eight hundred thirty' WHERE a=9791;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-nine' WHERE a=9792;\nUPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=9793;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-seven' WHERE a=9794;\nUPDATE t2 SET c='thirteen thousand one hundred forty-six' WHERE a=9795;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty' WHERE a=9796;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-three' WHERE a=9797;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-seven' WHERE a=9798;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-two' WHERE a=9799;\nUPDATE t2 SET c='thirty-two thousand two hundred fifty-three' WHERE a=9800;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-seven' WHERE a=9801;\nUPDATE t2 SET c='nine thousand seventy-four' WHERE a=9802;\nUPDATE t2 SET c='forty-seven thousand eight hundred five' WHERE a=9803;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-five' WHERE a=9804;\nUPDATE t2 SET c='fourteen thousand three hundred six' WHERE a=9805;\nUPDATE t2 SET c='twenty-four thousand eighty-eight' WHERE a=9806;\nUPDATE t2 SET c='ninety-two thousand eight hundred forty-four' WHERE a=9807;\nUPDATE t2 SET c='five hundred twelve' WHERE a=9808;\nUPDATE t2 SET c='eighty-two thousand eighty-three' WHERE a=9809;\nUPDATE t2 SET c='forty-five thousand two hundred twenty-two' WHERE a=9810;\nUPDATE t2 SET c='thirty-seven thousand eight hundred ninety' WHERE a=9811;\nUPDATE t2 SET c='ten thousand three hundred forty-nine' WHERE a=9812;\nUPDATE t2 SET c='twenty-four thousand five hundred seventeen' WHERE a=9813;\nUPDATE t2 SET c='fifteen thousand eight hundred sixty-two' WHERE a=9814;\nUPDATE t2 SET c='six thousand five hundred two' WHERE a=9815;\nUPDATE t2 SET c='ninety-nine thousand eight hundred sixty-seven' WHERE a=9816;\nUPDATE t2 SET c='thirty-six thousand seven hundred sixty' WHERE a=9817;\nUPDATE t2 SET c='eight thousand seventy' WHERE a=9818;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-nine' WHERE a=9819;\nUPDATE t2 SET c='forty-five thousand five hundred forty-two' WHERE a=9820;\nUPDATE t2 SET c='thirty-eight thousand four hundred nine' WHERE a=9821;\nUPDATE t2 SET c='thirty-one thousand seven hundred fourteen' WHERE a=9822;\nUPDATE t2 SET c='twelve thousand eight hundred eighty-two' WHERE a=9823;\nUPDATE t2 SET c='four thousand one hundred eighty-six' WHERE a=9824;\nUPDATE t2 SET c='eighteen thousand nine hundred ninety-seven' WHERE a=9825;\nUPDATE t2 SET c='eighty-one thousand nine hundred ninety' WHERE a=9826;\nUPDATE t2 SET c='sixteen thousand nine hundred forty-one' WHERE a=9827;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-one' WHERE a=9828;\nUPDATE t2 SET c='forty-three thousand one hundred forty-six' WHERE a=9829;\nUPDATE t2 SET c='ninety thousand six hundred forty-one' WHERE a=9830;\nUPDATE t2 SET c='fifty thousand two hundred fifty' WHERE a=9831;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventeen' WHERE a=9832;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighteen' WHERE a=9833;\nUPDATE t2 SET c='seventy-seven thousand eighty-two' WHERE a=9834;\nUPDATE t2 SET c='eighty thousand three hundred thirteen' WHERE a=9835;\nUPDATE t2 SET c='eighty thousand two hundred eighty-eight' WHERE a=9836;\nUPDATE t2 SET c='twenty-six thousand seven hundred thirteen' WHERE a=9837;\nUPDATE t2 SET c='sixty-nine thousand eight hundred eighty-eight' WHERE a=9838;\nUPDATE t2 SET c='twenty thousand two hundred ten' WHERE a=9839;\nUPDATE t2 SET c='nineteen thousand seven hundred twenty-six' WHERE a=9840;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-three' WHERE a=9841;\nUPDATE t2 SET c='four thousand six hundred eighteen' WHERE a=9842;\nUPDATE t2 SET c='fifty-eight thousand three hundred eighteen' WHERE a=9843;\nUPDATE t2 SET c='twenty-one thousand four hundred fifty-three' WHERE a=9844;\nUPDATE t2 SET c='ninety-one thousand four hundred thirty-six' WHERE a=9845;\nUPDATE t2 SET c='thirteen thousand thirty-seven' WHERE a=9846;\nUPDATE t2 SET c='seven thousand three hundred eight' WHERE a=9847;\nUPDATE t2 SET c='ninety-two thousand four hundred fifty' WHERE a=9848;\nUPDATE t2 SET c='thirty-five thousand three hundred nine' WHERE a=9849;\nUPDATE t2 SET c='three thousand three hundred seventy-nine' WHERE a=9850;\nUPDATE t2 SET c='seventy-six thousand four' WHERE a=9851;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifty-eight' WHERE a=9852;\nUPDATE t2 SET c='twenty-three thousand eight hundred nineteen' WHERE a=9853;\nUPDATE t2 SET c='thirty-two thousand three' WHERE a=9854;\nUPDATE t2 SET c='seventy-two thousand eight hundred thirty-five' WHERE a=9855;\nUPDATE t2 SET c='eighty thousand nine hundred six' WHERE a=9856;\nUPDATE t2 SET c='ninety-two thousand six hundred fifty-three' WHERE a=9857;\nUPDATE t2 SET c='thirty-one thousand one hundred sixteen' WHERE a=9858;\nUPDATE t2 SET c='fifty-one thousand two hundred eighteen' WHERE a=9859;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifteen' WHERE a=9860;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-five' WHERE a=9861;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-five' WHERE a=9862;\nUPDATE t2 SET c='sixty-two thousand three hundred' WHERE a=9863;\nUPDATE t2 SET c='seventy-three thousand eighty-one' WHERE a=9864;\nUPDATE t2 SET c='twenty thousand four hundred forty-two' WHERE a=9865;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty' WHERE a=9866;\nUPDATE t2 SET c='fourteen thousand nine hundred eighty-four' WHERE a=9867;\nUPDATE t2 SET c='eighty-four thousand two hundred seventy-two' WHERE a=9868;\nUPDATE t2 SET c='sixty-six thousand one hundred thirty-one' WHERE a=9869;\nUPDATE t2 SET c='seventy-three thousand six hundred nine' WHERE a=9870;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-five' WHERE a=9871;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty-seven' WHERE a=9872;\nUPDATE t2 SET c='fifty-seven thousand eight hundred twenty-eight' WHERE a=9873;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-five' WHERE a=9874;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-five' WHERE a=9875;\nUPDATE t2 SET c='fifty-seven thousand sixteen' WHERE a=9876;\nUPDATE t2 SET c='twenty-eight thousand eight hundred eighteen' WHERE a=9877;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-one' WHERE a=9878;\nUPDATE t2 SET c='thirty thousand two hundred nine' WHERE a=9879;\nUPDATE t2 SET c='forty-seven thousand one hundred nineteen' WHERE a=9880;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-nine' WHERE a=9881;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-six' WHERE a=9882;\nUPDATE t2 SET c='eighty-four thousand two hundred twenty-four' WHERE a=9883;\nUPDATE t2 SET c='fifty-two thousand three hundred fifty-four' WHERE a=9884;\nUPDATE t2 SET c='ninety-nine thousand four hundred ninety-five' WHERE a=9885;\nUPDATE t2 SET c='ninety-seven thousand two hundred eleven' WHERE a=9886;\nUPDATE t2 SET c='fifty-three thousand eight hundred seventy-six' WHERE a=9887;\nUPDATE t2 SET c='ten thousand four hundred fifty-three' WHERE a=9888;\nUPDATE t2 SET c='eighty-nine thousand three hundred eight' WHERE a=9889;\nUPDATE t2 SET c='nineteen thousand nine hundred sixty-three' WHERE a=9890;\nUPDATE t2 SET c='eighty-one thousand six hundred seventy-eight' WHERE a=9891;\nUPDATE t2 SET c='seventy-two thousand five hundred sixteen' WHERE a=9892;\nUPDATE t2 SET c='twenty-two thousand two hundred forty-three' WHERE a=9893;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-seven' WHERE a=9894;\nUPDATE t2 SET c='seventy-six thousand two hundred fourteen' WHERE a=9895;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty-four' WHERE a=9896;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty' WHERE a=9897;\nUPDATE t2 SET c='ninety-six thousand eight hundred four' WHERE a=9898;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-five' WHERE a=9899;\nUPDATE t2 SET c='eighty-three thousand four hundred two' WHERE a=9900;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-nine' WHERE a=9901;\nUPDATE t2 SET c='ninety-seven thousand six hundred seventy-three' WHERE a=9902;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-three' WHERE a=9903;\nUPDATE t2 SET c='six hundred fourteen' WHERE a=9904;\nUPDATE t2 SET c='ninety-four thousand four hundred forty-two' WHERE a=9905;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-five' WHERE a=9906;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-seven' WHERE a=9907;\nUPDATE t2 SET c='thirty-eight thousand nine hundred forty' WHERE a=9908;\nUPDATE t2 SET c='twelve thousand four hundred twenty-four' WHERE a=9909;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-four' WHERE a=9910;\nUPDATE t2 SET c='three thousand seven hundred ten' WHERE a=9911;\nUPDATE t2 SET c='twenty-two thousand seven hundred fourteen' WHERE a=9912;\nUPDATE t2 SET c='thirty-four thousand three hundred forty-eight' WHERE a=9913;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-four' WHERE a=9914;\nUPDATE t2 SET c='forty-six thousand two hundred seventy-one' WHERE a=9915;\nUPDATE t2 SET c='fifty-one thousand seven hundred thirty-six' WHERE a=9916;\nUPDATE t2 SET c='ninety thousand nine hundred thirty' WHERE a=9917;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-two' WHERE a=9918;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=9919;\nUPDATE t2 SET c='forty-two thousand nine hundred sixty-eight' WHERE a=9920;\nUPDATE t2 SET c='eighty-four thousand forty-five' WHERE a=9921;\nUPDATE t2 SET c='thirty-eight thousand eight hundred eighty-four' WHERE a=9922;\nUPDATE t2 SET c='one thousand seven hundred fourteen' WHERE a=9923;\nUPDATE t2 SET c='sixty-six thousand seven hundred four' WHERE a=9924;\nUPDATE t2 SET c='forty thousand five hundred forty' WHERE a=9925;\nUPDATE t2 SET c='twenty-two thousand six hundred sixty-eight' WHERE a=9926;\nUPDATE t2 SET c='thirty-six thousand three hundred forty-five' WHERE a=9927;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty' WHERE a=9928;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-seven' WHERE a=9929;\nUPDATE t2 SET c='seventy thousand nine hundred forty-seven' WHERE a=9930;\nUPDATE t2 SET c='fifty thousand five hundred fifty-six' WHERE a=9931;\nUPDATE t2 SET c='fifty-six thousand one hundred fifty-one' WHERE a=9932;\nUPDATE t2 SET c='fifty-two thousand one hundred three' WHERE a=9933;\nUPDATE t2 SET c='seventy-two thousand three hundred fifty-three' WHERE a=9934;\nUPDATE t2 SET c='eight thousand eight hundred ninety' WHERE a=9935;\nUPDATE t2 SET c='sixteen thousand seven hundred fifty-seven' WHERE a=9936;\nUPDATE t2 SET c='three thousand eight hundred twenty-nine' WHERE a=9937;\nUPDATE t2 SET c='fourteen thousand eight hundred twenty-six' WHERE a=9938;\nUPDATE t2 SET c='thirty-one thousand seventy-eight' WHERE a=9939;\nUPDATE t2 SET c='one thousand three hundred fifty' WHERE a=9940;\nUPDATE t2 SET c='eighty-one thousand seven hundred eight' WHERE a=9941;\nUPDATE t2 SET c='forty-eight thousand three hundred eighty-six' WHERE a=9942;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-nine' WHERE a=9943;\nUPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=9944;\nUPDATE t2 SET c='sixty-nine thousand five hundred seventy-two' WHERE a=9945;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-four' WHERE a=9946;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-six' WHERE a=9947;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-four' WHERE a=9948;\nUPDATE t2 SET c='eighty-five thousand seven hundred ninety-three' WHERE a=9949;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty-two' WHERE a=9950;\nUPDATE t2 SET c='ninety-three thousand two hundred fifty-six' WHERE a=9951;\nUPDATE t2 SET c='forty-two thousand two hundred fifteen' WHERE a=9952;\nUPDATE t2 SET c='thirty-two thousand one hundred twenty-four' WHERE a=9953;\nUPDATE t2 SET c='seventy-five thousand eight hundred four' WHERE a=9954;\nUPDATE t2 SET c='five thousand six hundred eighty-five' WHERE a=9955;\nUPDATE t2 SET c='eighty-six thousand two hundred seventy-three' WHERE a=9956;\nUPDATE t2 SET c='twenty-seven thousand seven hundred' WHERE a=9957;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty-nine' WHERE a=9958;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-five' WHERE a=9959;\nUPDATE t2 SET c='twenty-six thousand eight hundred seventy-four' WHERE a=9960;\nUPDATE t2 SET c='ninety-three thousand forty-seven' WHERE a=9961;\nUPDATE t2 SET c='seven hundred eighty-four' WHERE a=9962;\nUPDATE t2 SET c='eighty-seven thousand seven hundred fifteen' WHERE a=9963;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-two' WHERE a=9964;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-three' WHERE a=9965;\nUPDATE t2 SET c='eighteen thousand seven hundred eighty-three' WHERE a=9966;\nUPDATE t2 SET c='eighty-two thousand seven hundred ninety-two' WHERE a=9967;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-seven' WHERE a=9968;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-one' WHERE a=9969;\nUPDATE t2 SET c='thirty-one thousand nine hundred eight' WHERE a=9970;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy-four' WHERE a=9971;\nUPDATE t2 SET c='twenty-three thousand thirty-four' WHERE a=9972;\nUPDATE t2 SET c='ninety-five thousand one hundred twenty-one' WHERE a=9973;\nUPDATE t2 SET c='six hundred eighty-nine' WHERE a=9974;\nUPDATE t2 SET c='sixteen thousand eight hundred eight' WHERE a=9975;\nUPDATE t2 SET c='four thousand one hundred fifty-four' WHERE a=9976;\nUPDATE t2 SET c='seventeen thousand sixty-eight' WHERE a=9977;\nUPDATE t2 SET c='seventy-six thousand eight hundred sixty-two' WHERE a=9978;\nUPDATE t2 SET c='one thousand seven hundred five' WHERE a=9979;\nUPDATE t2 SET c='twenty-three thousand eighty-seven' WHERE a=9980;\nUPDATE t2 SET c='eight thousand eight hundred sixty-eight' WHERE a=9981;\nUPDATE t2 SET c='fifty-eight thousand five hundred seventy-two' WHERE a=9982;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-nine' WHERE a=9983;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-four' WHERE a=9984;\nUPDATE t2 SET c='eighty-five thousand six hundred eleven' WHERE a=9985;\nUPDATE t2 SET c='thirty-five thousand eight hundred six' WHERE a=9986;\nUPDATE t2 SET c='thirty-nine thousand seven hundred twenty-seven' WHERE a=9987;\nUPDATE t2 SET c='eighty-two thousand three hundred twenty-five' WHERE a=9988;\nUPDATE t2 SET c='thirty-nine thousand six hundred forty-nine' WHERE a=9989;\nUPDATE t2 SET c='eighty thousand two hundred sixty-four' WHERE a=9990;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-six' WHERE a=9991;\nUPDATE t2 SET c='five thousand six hundred fifty-nine' WHERE a=9992;\nUPDATE t2 SET c='thirteen thousand fifty-four' WHERE a=9993;\nUPDATE t2 SET c='fourteen thousand fifty-eight' WHERE a=9994;\nUPDATE t2 SET c='forty-nine thousand seven hundred thirty-five' WHERE a=9995;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-seven' WHERE a=9996;\nUPDATE t2 SET c='seven thousand seven hundred fifty-four' WHERE a=9997;\nUPDATE t2 SET c='fifty-three thousand three hundred eleven' WHERE a=9998;\nUPDATE t2 SET c='thirty thousand one hundred seven' WHERE a=9999;\nUPDATE t2 SET c='fifty-seven thousand twenty-eight' WHERE a=10000;\nUPDATE t2 SET c='six thousand eight hundred sixty-two' WHERE a=10001;\nUPDATE t2 SET c='sixty thousand three hundred sixty-seven' WHERE a=10002;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-four' WHERE a=10003;\nUPDATE t2 SET c='fifty-three thousand eight hundred fifty-eight' WHERE a=10004;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-three' WHERE a=10005;\nUPDATE t2 SET c='ninety-three thousand two hundred seventy-eight' WHERE a=10006;\nUPDATE t2 SET c='sixty-one thousand two hundred eighty-one' WHERE a=10007;\nUPDATE t2 SET c='four thousand four hundred forty-eight' WHERE a=10008;\nUPDATE t2 SET c='four thousand two hundred six' WHERE a=10009;\nUPDATE t2 SET c='seventy-two thousand six hundred four' WHERE a=10010;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-six' WHERE a=10011;\nUPDATE t2 SET c='six thousand three hundred ninety-two' WHERE a=10012;\nUPDATE t2 SET c='sixty thousand three hundred eighty-nine' WHERE a=10013;\nUPDATE t2 SET c='twenty-eight thousand nine hundred ninety-four' WHERE a=10014;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=10015;\nUPDATE t2 SET c='ninety-two thousand eight hundred twenty-eight' WHERE a=10016;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-seven' WHERE a=10017;\nUPDATE t2 SET c='thirty-eight thousand four hundred seventeen' WHERE a=10018;\nUPDATE t2 SET c='seventy-eight thousand seventy-two' WHERE a=10019;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-seven' WHERE a=10020;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-two' WHERE a=10021;\nUPDATE t2 SET c='twenty-seven thousand seventy' WHERE a=10022;\nUPDATE t2 SET c='eighteen thousand two hundred twenty-one' WHERE a=10023;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-three' WHERE a=10024;\nUPDATE t2 SET c='sixty-two thousand two hundred six' WHERE a=10025;\nUPDATE t2 SET c='forty-two thousand six hundred seventy-four' WHERE a=10026;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=10027;\nUPDATE t2 SET c='ninety-five thousand seven hundred eighty-four' WHERE a=10028;\nUPDATE t2 SET c='twenty-two thousand four hundred seventy' WHERE a=10029;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-one' WHERE a=10030;\nUPDATE t2 SET c='thirty-nine thousand two hundred ninety-four' WHERE a=10031;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-three' WHERE a=10032;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-two' WHERE a=10033;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty-eight' WHERE a=10034;\nUPDATE t2 SET c='fifty-one thousand four hundred forty-two' WHERE a=10035;\nUPDATE t2 SET c='six thousand four hundred eighty-two' WHERE a=10036;\nUPDATE t2 SET c='seventy-nine thousand nine hundred ninety-four' WHERE a=10037;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy-seven' WHERE a=10038;\nUPDATE t2 SET c='twelve thousand five hundred sixteen' WHERE a=10039;\nUPDATE t2 SET c='seven thousand nine hundred sixty-six' WHERE a=10040;\nUPDATE t2 SET c='eighty-eight thousand one hundred sixty' WHERE a=10041;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-three' WHERE a=10042;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-nine' WHERE a=10043;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-nine' WHERE a=10044;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-eight' WHERE a=10045;\nUPDATE t2 SET c='one thousand four hundred sixty-three' WHERE a=10046;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-one' WHERE a=10047;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-three' WHERE a=10048;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-six' WHERE a=10049;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=10050;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-five' WHERE a=10051;\nUPDATE t2 SET c='ten thousand three hundred forty-five' WHERE a=10052;\nUPDATE t2 SET c='forty-two thousand nine hundred forty-five' WHERE a=10053;\nUPDATE t2 SET c='forty-three thousand seven hundred ninety-nine' WHERE a=10054;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-five' WHERE a=10055;\nUPDATE t2 SET c='seventy thousand two hundred sixty-four' WHERE a=10056;\nUPDATE t2 SET c='sixty-eight thousand six hundred nineteen' WHERE a=10057;\nUPDATE t2 SET c='fifty-seven thousand five hundred seventy-seven' WHERE a=10058;\nUPDATE t2 SET c='nineteen thousand eight hundred sixty-eight' WHERE a=10059;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-one' WHERE a=10060;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-eight' WHERE a=10061;\nUPDATE t2 SET c='sixty-three thousand three hundred ninety-three' WHERE a=10062;\nUPDATE t2 SET c='ninety-six thousand six hundred eighty-seven' WHERE a=10063;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-three' WHERE a=10064;\nUPDATE t2 SET c='forty-four thousand seven hundred twenty' WHERE a=10065;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-one' WHERE a=10066;\nUPDATE t2 SET c='fifty-three thousand twelve' WHERE a=10067;\nUPDATE t2 SET c='ninety-three thousand fifty-seven' WHERE a=10068;\nUPDATE t2 SET c='six thousand eighty-eight' WHERE a=10069;\nUPDATE t2 SET c='fifty-six thousand six hundred eighty-seven' WHERE a=10070;\nUPDATE t2 SET c='fifty-seven thousand two hundred thirty-two' WHERE a=10071;\nUPDATE t2 SET c='thirty-six thousand two hundred eighty-one' WHERE a=10072;\nUPDATE t2 SET c='sixty-eight thousand six' WHERE a=10073;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixteen' WHERE a=10074;\nUPDATE t2 SET c='sixty-eight thousand six hundred forty-eight' WHERE a=10075;\nUPDATE t2 SET c='fifty-eight thousand nine hundred sixty-four' WHERE a=10076;\nUPDATE t2 SET c='seventy-six thousand two hundred two' WHERE a=10077;\nUPDATE t2 SET c='three thousand nine hundred one' WHERE a=10078;\nUPDATE t2 SET c='thirty thousand two hundred fifty' WHERE a=10079;\nUPDATE t2 SET c='forty-four thousand six hundred eight' WHERE a=10080;\nUPDATE t2 SET c='twenty-two thousand two hundred sixty' WHERE a=10081;\nUPDATE t2 SET c='seventy-one thousand two hundred ninety' WHERE a=10082;\nUPDATE t2 SET c='sixty-five thousand five hundred forty-eight' WHERE a=10083;\nUPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=10084;\nUPDATE t2 SET c='eighty thousand one hundred fifty-nine' WHERE a=10085;\nUPDATE t2 SET c='seven thousand one hundred seventy-three' WHERE a=10086;\nUPDATE t2 SET c='fifty-six thousand three hundred forty-five' WHERE a=10087;\nUPDATE t2 SET c='twenty-three thousand six hundred seventy-two' WHERE a=10088;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-seven' WHERE a=10089;\nUPDATE t2 SET c='thirty-three thousand one hundred eleven' WHERE a=10090;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-two' WHERE a=10091;\nUPDATE t2 SET c='fifteen thousand' WHERE a=10092;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-two' WHERE a=10093;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighteen' WHERE a=10094;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-nine' WHERE a=10095;\nUPDATE t2 SET c='two thousand four hundred twenty-nine' WHERE a=10096;\nUPDATE t2 SET c='seventy-nine thousand six hundred thirty-nine' WHERE a=10097;\nUPDATE t2 SET c='sixty-five thousand two hundred thirty-seven' WHERE a=10098;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-four' WHERE a=10099;\nUPDATE t2 SET c='ninety-two thousand six hundred seven' WHERE a=10100;\nUPDATE t2 SET c='ten thousand six hundred sixty-nine' WHERE a=10101;\nUPDATE t2 SET c='seventy-seven thousand one hundred seventy-three' WHERE a=10102;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-seven' WHERE a=10103;\nUPDATE t2 SET c='eighty-eight thousand six hundred thirty-three' WHERE a=10104;\nUPDATE t2 SET c='twenty-six thousand five hundred forty' WHERE a=10105;\nUPDATE t2 SET c='thirty-two thousand eight hundred thirty-three' WHERE a=10106;\nUPDATE t2 SET c='forty-three thousand two hundred twenty-one' WHERE a=10107;\nUPDATE t2 SET c='thirty-one thousand nine hundred sixty-nine' WHERE a=10108;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighteen' WHERE a=10109;\nUPDATE t2 SET c='seventy thousand three hundred eighty-eight' WHERE a=10110;\nUPDATE t2 SET c='seventy-five thousand sixty' WHERE a=10111;\nUPDATE t2 SET c='eight thousand three hundred thirteen' WHERE a=10112;\nUPDATE t2 SET c='sixty-three thousand four hundred ninety-six' WHERE a=10113;\nUPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=10114;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=10115;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-six' WHERE a=10116;\nUPDATE t2 SET c='five thousand three hundred twenty-two' WHERE a=10117;\nUPDATE t2 SET c='seventy-seven thousand two hundred ninety-four' WHERE a=10118;\nUPDATE t2 SET c='fifty thousand four hundred twenty' WHERE a=10119;\nUPDATE t2 SET c='twenty-two thousand two hundred seventy-eight' WHERE a=10120;\nUPDATE t2 SET c='twelve thousand five hundred seventy-nine' WHERE a=10121;\nUPDATE t2 SET c='four thousand ninety-eight' WHERE a=10122;\nUPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=10123;\nUPDATE t2 SET c='fifty-seven thousand nine hundred forty-one' WHERE a=10124;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-three' WHERE a=10125;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-two' WHERE a=10126;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-five' WHERE a=10127;\nUPDATE t2 SET c='fifty-nine thousand seventy-four' WHERE a=10128;\nUPDATE t2 SET c='seventy-seven thousand one hundred three' WHERE a=10129;\nUPDATE t2 SET c='ninety-six thousand one hundred seventy' WHERE a=10130;\nUPDATE t2 SET c='thirty-three thousand one hundred sixty-one' WHERE a=10131;\nUPDATE t2 SET c='forty-three thousand seven hundred seventeen' WHERE a=10132;\nUPDATE t2 SET c='forty-eight thousand four hundred thirty-seven' WHERE a=10133;\nUPDATE t2 SET c='fifty-nine thousand two hundred fifty-three' WHERE a=10134;\nUPDATE t2 SET c='nineteen thousand nine hundred ninety-seven' WHERE a=10135;\nUPDATE t2 SET c='fifty-five thousand eight hundred thirty-eight' WHERE a=10136;\nUPDATE t2 SET c='sixty-six thousand fifty-eight' WHERE a=10137;\nUPDATE t2 SET c='seventy-three thousand forty-eight' WHERE a=10138;\nUPDATE t2 SET c='fifty-three thousand nine hundred twenty-three' WHERE a=10139;\nUPDATE t2 SET c='seventy thousand five hundred sixty-five' WHERE a=10140;\nUPDATE t2 SET c='fifty-nine thousand eight hundred seven' WHERE a=10141;\nUPDATE t2 SET c='twenty-one thousand one hundred fourteen' WHERE a=10142;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-seven' WHERE a=10143;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-nine' WHERE a=10144;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-five' WHERE a=10145;\nUPDATE t2 SET c='fifty-one thousand nine hundred sixty-five' WHERE a=10146;\nUPDATE t2 SET c='thirty-five thousand seventy-two' WHERE a=10147;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-five' WHERE a=10148;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirty-one' WHERE a=10149;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-six' WHERE a=10150;\nUPDATE t2 SET c='nineteen thousand six hundred forty-six' WHERE a=10151;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-six' WHERE a=10152;\nUPDATE t2 SET c='ninety-two thousand two hundred ninety' WHERE a=10153;\nUPDATE t2 SET c='eighteen thousand nine hundred three' WHERE a=10154;\nUPDATE t2 SET c='twenty-six thousand one hundred seventy-four' WHERE a=10155;\nUPDATE t2 SET c='sixty-seven thousand five hundred fifty-two' WHERE a=10156;\nUPDATE t2 SET c='two thousand seven hundred' WHERE a=10157;\nUPDATE t2 SET c='ninety-four thousand five hundred twenty-six' WHERE a=10158;\nUPDATE t2 SET c='seventy-five thousand seventy' WHERE a=10159;\nUPDATE t2 SET c='two thousand four hundred seventy-four' WHERE a=10160;\nUPDATE t2 SET c='eighty-one thousand two hundred fifty-three' WHERE a=10161;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-eight' WHERE a=10162;\nUPDATE t2 SET c='twenty-two thousand seven hundred nine' WHERE a=10163;\nUPDATE t2 SET c='seventy-one thousand six hundred forty-nine' WHERE a=10164;\nUPDATE t2 SET c='one hundred eighty-one' WHERE a=10165;\nUPDATE t2 SET c='sixty-four thousand four hundred fifty-two' WHERE a=10166;\nUPDATE t2 SET c='thirty-four thousand four hundred twenty' WHERE a=10167;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-two' WHERE a=10168;\nUPDATE t2 SET c='fifty thousand three hundred two' WHERE a=10169;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-two' WHERE a=10170;\nUPDATE t2 SET c='twenty thousand five hundred eight' WHERE a=10171;\nUPDATE t2 SET c='seventeen thousand six hundred twenty' WHERE a=10172;\nUPDATE t2 SET c='thirty thousand five hundred fifty-seven' WHERE a=10173;\nUPDATE t2 SET c='twenty-two thousand one hundred fifteen' WHERE a=10174;\nUPDATE t2 SET c='seventy-eight thousand eight hundred sixty-six' WHERE a=10175;\nUPDATE t2 SET c='three hundred ten' WHERE a=10176;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventeen' WHERE a=10177;\nUPDATE t2 SET c='twenty-six thousand seven hundred sixty-nine' WHERE a=10178;\nUPDATE t2 SET c='seventy-eight thousand one hundred' WHERE a=10179;\nUPDATE t2 SET c='one thousand seven hundred eighty-nine' WHERE a=10180;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-eight' WHERE a=10181;\nUPDATE t2 SET c='twenty-nine thousand six hundred eighty-seven' WHERE a=10182;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-five' WHERE a=10183;\nUPDATE t2 SET c='four thousand eight hundred sixty-two' WHERE a=10184;\nUPDATE t2 SET c='fifty-three thousand ninety-nine' WHERE a=10185;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-four' WHERE a=10186;\nUPDATE t2 SET c='nine thousand eight hundred seventy-six' WHERE a=10187;\nUPDATE t2 SET c='sixty thousand eight hundred thirty-eight' WHERE a=10188;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy-one' WHERE a=10189;\nUPDATE t2 SET c='one thousand nine hundred three' WHERE a=10190;\nUPDATE t2 SET c='seventy-eight thousand fifty-one' WHERE a=10191;\nUPDATE t2 SET c='thirty-eight thousand two hundred seventy-one' WHERE a=10192;\nUPDATE t2 SET c='eighty-one thousand two hundred five' WHERE a=10193;\nUPDATE t2 SET c='forty-four thousand eighty-one' WHERE a=10194;\nUPDATE t2 SET c='sixteen thousand four hundred eighteen' WHERE a=10195;\nUPDATE t2 SET c='forty-three thousand two hundred eighty-five' WHERE a=10196;\nUPDATE t2 SET c='fifty-eight thousand seven hundred two' WHERE a=10197;\nUPDATE t2 SET c='thirty-one thousand two hundred sixteen' WHERE a=10198;\nUPDATE t2 SET c='three thousand four hundred eighty-one' WHERE a=10199;\nUPDATE t2 SET c='three thousand three hundred thirty-four' WHERE a=10200;\nUPDATE t2 SET c='seventy-four thousand four hundred forty-one' WHERE a=10201;\nUPDATE t2 SET c='ninety-three thousand seven hundred nine' WHERE a=10202;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty-nine' WHERE a=10203;\nUPDATE t2 SET c='twenty-two thousand nine hundred forty-eight' WHERE a=10204;\nUPDATE t2 SET c='thirty-five thousand twenty-nine' WHERE a=10205;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ten' WHERE a=10206;\nUPDATE t2 SET c='six thousand three hundred thirteen' WHERE a=10207;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty-five' WHERE a=10208;\nUPDATE t2 SET c='fifty-eight thousand five hundred fifty-nine' WHERE a=10209;\nUPDATE t2 SET c='six thousand nine hundred forty-five' WHERE a=10210;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=10211;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=10212;\nUPDATE t2 SET c='forty-seven thousand six hundred seventy' WHERE a=10213;\nUPDATE t2 SET c='seventy thousand five hundred fifty-three' WHERE a=10214;\nUPDATE t2 SET c='thirty-six thousand four hundred eighty-seven' WHERE a=10215;\nUPDATE t2 SET c='sixty thousand one hundred sixty-three' WHERE a=10216;\nUPDATE t2 SET c='ninety-one thousand one' WHERE a=10217;\nUPDATE t2 SET c='sixty-six thousand seven hundred fifty-one' WHERE a=10218;\nUPDATE t2 SET c='thirteen thousand four hundred thirty-nine' WHERE a=10219;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-eight' WHERE a=10220;\nUPDATE t2 SET c='twenty-six thousand five hundred fifty-five' WHERE a=10221;\nUPDATE t2 SET c='fifty-six thousand three hundred ninety-three' WHERE a=10222;\nUPDATE t2 SET c='thirty thousand two hundred four' WHERE a=10223;\nUPDATE t2 SET c='eighty-nine thousand one hundred eighty-four' WHERE a=10224;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixteen' WHERE a=10225;\nUPDATE t2 SET c='eighty-two thousand eight hundred fifty-six' WHERE a=10226;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixteen' WHERE a=10227;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-five' WHERE a=10228;\nUPDATE t2 SET c='ninety-five thousand three hundred ninety-seven' WHERE a=10229;\nUPDATE t2 SET c='twenty-four thousand six hundred forty-six' WHERE a=10230;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-nine' WHERE a=10231;\nUPDATE t2 SET c='fifty-one thousand two hundred thirty-nine' WHERE a=10232;\nUPDATE t2 SET c='twenty-three thousand four hundred thirty-four' WHERE a=10233;\nUPDATE t2 SET c='twenty-one thousand eighty' WHERE a=10234;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-four' WHERE a=10235;\nUPDATE t2 SET c='thirty thousand one hundred ninety-four' WHERE a=10236;\nUPDATE t2 SET c='fifty-three thousand seventy-four' WHERE a=10237;\nUPDATE t2 SET c='ninety-five thousand two hundred fourteen' WHERE a=10238;\nUPDATE t2 SET c='eighty-five thousand six hundred sixty-eight' WHERE a=10239;\nUPDATE t2 SET c='seventy-eight thousand one hundred fifty-five' WHERE a=10240;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-eight' WHERE a=10241;\nUPDATE t2 SET c='ninety-three thousand seven hundred twenty-five' WHERE a=10242;\nUPDATE t2 SET c='twenty-four thousand fifty' WHERE a=10243;\nUPDATE t2 SET c='forty-one thousand nine hundred sixteen' WHERE a=10244;\nUPDATE t2 SET c='twenty-eight thousand seven hundred thirty' WHERE a=10245;\nUPDATE t2 SET c='fifty-five thousand five hundred sixty-eight' WHERE a=10246;\nUPDATE t2 SET c='eight thousand seven hundred thirteen' WHERE a=10247;\nUPDATE t2 SET c='three thousand five hundred eighty-five' WHERE a=10248;\nUPDATE t2 SET c='thirty-seven thousand five hundred sixty-nine' WHERE a=10249;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=10250;\nUPDATE t2 SET c='fifty-four thousand six hundred sixty-eight' WHERE a=10251;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-five' WHERE a=10252;\nUPDATE t2 SET c='eighty-two thousand four hundred three' WHERE a=10253;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-one' WHERE a=10254;\nUPDATE t2 SET c='thirty-four thousand five hundred one' WHERE a=10255;\nUPDATE t2 SET c='nine thousand nine hundred sixty-six' WHERE a=10256;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-three' WHERE a=10257;\nUPDATE t2 SET c='eighteen thousand five hundred sixty-four' WHERE a=10258;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-six' WHERE a=10259;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty-one' WHERE a=10260;\nUPDATE t2 SET c='thirty-nine thousand nine hundred thirty-seven' WHERE a=10261;\nUPDATE t2 SET c='one thousand five hundred eighty-two' WHERE a=10262;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty' WHERE a=10263;\nUPDATE t2 SET c='fourteen thousand eight hundred sixty-seven' WHERE a=10264;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty' WHERE a=10265;\nUPDATE t2 SET c='fifty-eight thousand two hundred eighty-seven' WHERE a=10266;\nUPDATE t2 SET c='ninety-four thousand four hundred nine' WHERE a=10267;\nUPDATE t2 SET c='twenty-nine thousand five hundred twenty-two' WHERE a=10268;\nUPDATE t2 SET c='sixty-four thousand seven hundred fifty-three' WHERE a=10269;\nUPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=10270;\nUPDATE t2 SET c='twenty-one thousand one hundred' WHERE a=10271;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-two' WHERE a=10272;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-one' WHERE a=10273;\nUPDATE t2 SET c='fifty-four thousand two hundred fifty-seven' WHERE a=10274;\nUPDATE t2 SET c='two thousand eight' WHERE a=10275;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-two' WHERE a=10276;\nUPDATE t2 SET c='thirty-five thousand seventy-eight' WHERE a=10277;\nUPDATE t2 SET c='seventy-nine thousand eight hundred fifty-five' WHERE a=10278;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty' WHERE a=10279;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifty-four' WHERE a=10280;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-four' WHERE a=10281;\nUPDATE t2 SET c='sixty-three thousand three hundred forty' WHERE a=10282;\nUPDATE t2 SET c='sixteen thousand eight hundred seventy-five' WHERE a=10283;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-one' WHERE a=10284;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-six' WHERE a=10285;\nUPDATE t2 SET c='ninety-nine thousand nine hundred three' WHERE a=10286;\nUPDATE t2 SET c='sixty-six thousand two hundred seventy-eight' WHERE a=10287;\nUPDATE t2 SET c='forty-six thousand one hundred forty-seven' WHERE a=10288;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-three' WHERE a=10289;\nUPDATE t2 SET c='sixty-five thousand one hundred ninety-eight' WHERE a=10290;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-four' WHERE a=10291;\nUPDATE t2 SET c='twelve thousand four hundred three' WHERE a=10292;\nUPDATE t2 SET c='eighty-four thousand nine hundred fifty-six' WHERE a=10293;\nUPDATE t2 SET c='sixty-one thousand six hundred thirty-five' WHERE a=10294;\nUPDATE t2 SET c='four thousand eight hundred forty-five' WHERE a=10295;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=10296;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-eight' WHERE a=10297;\nUPDATE t2 SET c='twenty-six thousand six hundred sixty-six' WHERE a=10298;\nUPDATE t2 SET c='fifty thousand six hundred twenty-seven' WHERE a=10299;\nUPDATE t2 SET c='fifty thousand three hundred ninety-nine' WHERE a=10300;\nUPDATE t2 SET c='thirty-eight thousand four hundred twenty-nine' WHERE a=10301;\nUPDATE t2 SET c='nine thousand three hundred eighty-seven' WHERE a=10302;\nUPDATE t2 SET c='seventy-nine thousand ninety-three' WHERE a=10303;\nUPDATE t2 SET c='sixty-nine thousand eight hundred four' WHERE a=10304;\nUPDATE t2 SET c='seventy-two thousand nine hundred fifty-four' WHERE a=10305;\nUPDATE t2 SET c='sixty-one thousand four hundred fifty-four' WHERE a=10306;\nUPDATE t2 SET c='ninety-seven thousand one hundred twenty-one' WHERE a=10307;\nUPDATE t2 SET c='ninety-six thousand eight hundred fifty-two' WHERE a=10308;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-three' WHERE a=10309;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-eight' WHERE a=10310;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy-eight' WHERE a=10311;\nUPDATE t2 SET c='eighty thousand seven hundred seventeen' WHERE a=10312;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-six' WHERE a=10313;\nUPDATE t2 SET c='thirty-nine thousand three hundred forty-three' WHERE a=10314;\nUPDATE t2 SET c='eighty-two' WHERE a=10315;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy' WHERE a=10316;\nUPDATE t2 SET c='seventy-six thousand four hundred forty-four' WHERE a=10317;\nUPDATE t2 SET c='fifteen thousand six hundred' WHERE a=10318;\nUPDATE t2 SET c='eighty-five thousand six hundred forty' WHERE a=10319;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-two' WHERE a=10320;\nUPDATE t2 SET c='four thousand six hundred six' WHERE a=10321;\nUPDATE t2 SET c='seventy-two thousand four hundred forty-seven' WHERE a=10322;\nUPDATE t2 SET c='sixty-eight thousand eight hundred fifty-eight' WHERE a=10323;\nUPDATE t2 SET c='seventy-four thousand two hundred twenty-one' WHERE a=10324;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-seven' WHERE a=10325;\nUPDATE t2 SET c='fifty-two thousand one hundred four' WHERE a=10326;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-six' WHERE a=10327;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-one' WHERE a=10328;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-one' WHERE a=10329;\nUPDATE t2 SET c='sixty-four thousand six hundred fifty-three' WHERE a=10330;\nUPDATE t2 SET c='sixty-six thousand eight hundred ninety-one' WHERE a=10331;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighteen' WHERE a=10332;\nUPDATE t2 SET c='six thousand seven hundred thirty' WHERE a=10333;\nUPDATE t2 SET c='twenty-six thousand one hundred twelve' WHERE a=10334;\nUPDATE t2 SET c='fourteen thousand six hundred eleven' WHERE a=10335;\nUPDATE t2 SET c='sixty-one thousand two hundred ninety-four' WHERE a=10336;\nUPDATE t2 SET c='fifty thousand nine hundred twelve' WHERE a=10337;\nUPDATE t2 SET c='one thousand five hundred sixty-two' WHERE a=10338;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty-nine' WHERE a=10339;\nUPDATE t2 SET c='three hundred fifty-eight' WHERE a=10340;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-eight' WHERE a=10341;\nUPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=10342;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-eight' WHERE a=10343;\nUPDATE t2 SET c='seventy-eight thousand seven hundred twenty-one' WHERE a=10344;\nUPDATE t2 SET c='thirty-seven thousand one' WHERE a=10345;\nUPDATE t2 SET c='seventy-five thousand nine hundred seven' WHERE a=10346;\nUPDATE t2 SET c='sixty-nine thousand nine hundred eighty-five' WHERE a=10347;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-seven' WHERE a=10348;\nUPDATE t2 SET c='ninety-five thousand forty-eight' WHERE a=10349;\nUPDATE t2 SET c='eighty-two thousand nine hundred fourteen' WHERE a=10350;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-four' WHERE a=10351;\nUPDATE t2 SET c='five thousand three hundred twenty-seven' WHERE a=10352;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eleven' WHERE a=10353;\nUPDATE t2 SET c='seventy-one thousand four hundred one' WHERE a=10354;\nUPDATE t2 SET c='sixty-six thousand eighty-nine' WHERE a=10355;\nUPDATE t2 SET c='seventy-eight thousand nineteen' WHERE a=10356;\nUPDATE t2 SET c='twenty-one thousand sixty-seven' WHERE a=10357;\nUPDATE t2 SET c='one thousand five hundred seventy' WHERE a=10358;\nUPDATE t2 SET c='ninety-six thousand one hundred twenty-one' WHERE a=10359;\nUPDATE t2 SET c='sixty-four thousand two hundred twelve' WHERE a=10360;\nUPDATE t2 SET c='sixty thousand thirty-four' WHERE a=10361;\nUPDATE t2 SET c='nineteen thousand three hundred fifty' WHERE a=10362;\nUPDATE t2 SET c='twenty-four thousand five hundred fourteen' WHERE a=10363;\nUPDATE t2 SET c='seventy-five thousand five hundred thirty-nine' WHERE a=10364;\nUPDATE t2 SET c='eighty-eight thousand two hundred twenty-three' WHERE a=10365;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifty-nine' WHERE a=10366;\nUPDATE t2 SET c='forty-four thousand two hundred twelve' WHERE a=10367;\nUPDATE t2 SET c='twelve thousand eight' WHERE a=10368;\nUPDATE t2 SET c='ten thousand six hundred forty-nine' WHERE a=10369;\nUPDATE t2 SET c='thirty-nine thousand two hundred forty-two' WHERE a=10370;\nUPDATE t2 SET c='forty-four thousand five hundred fourteen' WHERE a=10371;\nUPDATE t2 SET c='ninety thousand two hundred thirty-three' WHERE a=10372;\nUPDATE t2 SET c='fourteen thousand four hundred thirty-six' WHERE a=10373;\nUPDATE t2 SET c='eight thousand nine hundred seventeen' WHERE a=10374;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-seven' WHERE a=10375;\nUPDATE t2 SET c='twenty-seven thousand three hundred eighty-nine' WHERE a=10376;\nUPDATE t2 SET c='eighty-nine thousand seven hundred six' WHERE a=10377;\nUPDATE t2 SET c='twenty-two thousand eight hundred twenty-nine' WHERE a=10378;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-five' WHERE a=10379;\nUPDATE t2 SET c='fifty thousand four hundred seventeen' WHERE a=10380;\nUPDATE t2 SET c='eighty-seven thousand six hundred thirty-eight' WHERE a=10381;\nUPDATE t2 SET c='eighty-five thousand twenty-five' WHERE a=10382;\nUPDATE t2 SET c='eleven thousand six hundred seventy-five' WHERE a=10383;\nUPDATE t2 SET c='three thousand nine hundred thirty-three' WHERE a=10384;\nUPDATE t2 SET c='sixty-three thousand two hundred sixty-five' WHERE a=10385;\nUPDATE t2 SET c='seventy-eight thousand one hundred fifty-five' WHERE a=10386;\nUPDATE t2 SET c='sixty-four thousand two hundred twenty-nine' WHERE a=10387;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-eight' WHERE a=10388;\nUPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=10389;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-five' WHERE a=10390;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-eight' WHERE a=10391;\nUPDATE t2 SET c='forty-five thousand six hundred fifty' WHERE a=10392;\nUPDATE t2 SET c='seven thousand five hundred thirty-nine' WHERE a=10393;\nUPDATE t2 SET c='twenty-six thousand four hundred ninety-seven' WHERE a=10394;\nUPDATE t2 SET c='fifty-four thousand seven hundred six' WHERE a=10395;\nUPDATE t2 SET c='nineteen thousand seventy-seven' WHERE a=10396;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-three' WHERE a=10397;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-five' WHERE a=10398;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-eight' WHERE a=10399;\nUPDATE t2 SET c='ninety-nine thousand two hundred forty-four' WHERE a=10400;\nUPDATE t2 SET c='seventy-two thousand four hundred eighty-nine' WHERE a=10401;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifty-two' WHERE a=10402;\nUPDATE t2 SET c='ten thousand one hundred sixty' WHERE a=10403;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-seven' WHERE a=10404;\nUPDATE t2 SET c='twenty-two thousand two hundred thirty-nine' WHERE a=10405;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-seven' WHERE a=10406;\nUPDATE t2 SET c='eighty-six thousand forty-five' WHERE a=10407;\nUPDATE t2 SET c='fifty thousand two hundred eighty-two' WHERE a=10408;\nUPDATE t2 SET c='seventy-nine thousand eighty-eight' WHERE a=10409;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-six' WHERE a=10410;\nUPDATE t2 SET c='eight thousand nine hundred fifty-seven' WHERE a=10411;\nUPDATE t2 SET c='forty-six thousand two hundred seventy-six' WHERE a=10412;\nUPDATE t2 SET c='fourteen thousand six hundred twenty-seven' WHERE a=10413;\nUPDATE t2 SET c='fourteen thousand four hundred five' WHERE a=10414;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-nine' WHERE a=10415;\nUPDATE t2 SET c='fifty-three thousand five hundred eighty-four' WHERE a=10416;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-eight' WHERE a=10417;\nUPDATE t2 SET c='ten thousand ninety' WHERE a=10418;\nUPDATE t2 SET c='thirty-one thousand eight hundred ten' WHERE a=10419;\nUPDATE t2 SET c='five thousand nine hundred sixteen' WHERE a=10420;\nUPDATE t2 SET c='twenty-four thousand forty-eight' WHERE a=10421;\nUPDATE t2 SET c='ten thousand ninety-two' WHERE a=10422;\nUPDATE t2 SET c='fifteen thousand five hundred ninety-four' WHERE a=10423;\nUPDATE t2 SET c='three thousand six hundred ninety-five' WHERE a=10424;\nUPDATE t2 SET c='seventy-four thousand nine hundred thirty-one' WHERE a=10425;\nUPDATE t2 SET c='seventy-two thousand two hundred seventy-five' WHERE a=10426;\nUPDATE t2 SET c='forty-two thousand ninety-one' WHERE a=10427;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-eight' WHERE a=10428;\nUPDATE t2 SET c='ninety-eight thousand seven hundred thirty-nine' WHERE a=10429;\nUPDATE t2 SET c='twenty thousand nine hundred sixty-seven' WHERE a=10430;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-nine' WHERE a=10431;\nUPDATE t2 SET c='eleven thousand forty-three' WHERE a=10432;\nUPDATE t2 SET c='twelve thousand seven hundred' WHERE a=10433;\nUPDATE t2 SET c='seventy thousand four' WHERE a=10434;\nUPDATE t2 SET c='fifty-three thousand seven hundred' WHERE a=10435;\nUPDATE t2 SET c='fifty-eight thousand five hundred thirty-nine' WHERE a=10436;\nUPDATE t2 SET c='twenty thousand two hundred five' WHERE a=10437;\nUPDATE t2 SET c='fifty thousand six hundred twenty-eight' WHERE a=10438;\nUPDATE t2 SET c='eighty-three thousand seven hundred sixteen' WHERE a=10439;\nUPDATE t2 SET c='fifteen thousand two hundred seventy-seven' WHERE a=10440;\nUPDATE t2 SET c='eighty thousand nine hundred eighty-seven' WHERE a=10441;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-eight' WHERE a=10442;\nUPDATE t2 SET c='forty-nine thousand one hundred seventy-three' WHERE a=10443;\nUPDATE t2 SET c='fifty-five thousand eight hundred ninety-two' WHERE a=10444;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety-five' WHERE a=10445;\nUPDATE t2 SET c='seventy-seven thousand five hundred forty-three' WHERE a=10446;\nUPDATE t2 SET c='ninety-two thousand seven hundred seventy-two' WHERE a=10447;\nUPDATE t2 SET c='eight thousand three hundred fifty-one' WHERE a=10448;\nUPDATE t2 SET c='twenty-three thousand three hundred twenty' WHERE a=10449;\nUPDATE t2 SET c='ninety-six thousand two hundred eighteen' WHERE a=10450;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-five' WHERE a=10451;\nUPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=10452;\nUPDATE t2 SET c='eighty-nine thousand three hundred fifty' WHERE a=10453;\nUPDATE t2 SET c='ninety thousand eight hundred forty-seven' WHERE a=10454;\nUPDATE t2 SET c='sixty-two thousand thirty' WHERE a=10455;\nUPDATE t2 SET c='eleven thousand three hundred fifty-five' WHERE a=10456;\nUPDATE t2 SET c='seventy thousand nine hundred eighty-one' WHERE a=10457;\nUPDATE t2 SET c='eighty-six thousand nine hundred forty-seven' WHERE a=10458;\nUPDATE t2 SET c='twenty-nine thousand nine hundred twenty-two' WHERE a=10459;\nUPDATE t2 SET c='ninety-three thousand six hundred thirty-four' WHERE a=10460;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-four' WHERE a=10461;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=10462;\nUPDATE t2 SET c='ninety-eight thousand seven hundred eighty-two' WHERE a=10463;\nUPDATE t2 SET c='fifty-five thousand fifteen' WHERE a=10464;\nUPDATE t2 SET c='eighteen thousand seven hundred ninety-nine' WHERE a=10465;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=10466;\nUPDATE t2 SET c='thirty-four thousand eight hundred fifty-two' WHERE a=10467;\nUPDATE t2 SET c='sixteen thousand one hundred twenty-six' WHERE a=10468;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-nine' WHERE a=10469;\nUPDATE t2 SET c='eighty-six thousand nine hundred twenty-seven' WHERE a=10470;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-seven' WHERE a=10471;\nUPDATE t2 SET c='eighty-nine thousand one hundred eighty-five' WHERE a=10472;\nUPDATE t2 SET c='twenty thousand six hundred forty-seven' WHERE a=10473;\nUPDATE t2 SET c='fifty-eight thousand three hundred sixty-nine' WHERE a=10474;\nUPDATE t2 SET c='thirty-three thousand eight hundred sixty-four' WHERE a=10475;\nUPDATE t2 SET c='thirty-eight thousand three hundred thirty-three' WHERE a=10476;\nUPDATE t2 SET c='twenty-eight thousand one hundred twelve' WHERE a=10477;\nUPDATE t2 SET c='thirty-five thousand nine hundred eighteen' WHERE a=10478;\nUPDATE t2 SET c='eleven thousand seven hundred seven' WHERE a=10479;\nUPDATE t2 SET c='seventy-seven thousand six hundred fifty-nine' WHERE a=10480;\nUPDATE t2 SET c='eighty-five thousand two hundred twenty-one' WHERE a=10481;\nUPDATE t2 SET c='seventy-one thousand five hundred ninety-four' WHERE a=10482;\nUPDATE t2 SET c='eighty-five thousand two hundred ninety-seven' WHERE a=10483;\nUPDATE t2 SET c='thirty-five thousand six hundred ninety' WHERE a=10484;\nUPDATE t2 SET c='fifty-one thousand nine hundred ninety-two' WHERE a=10485;\nUPDATE t2 SET c='nineteen thousand ninety-five' WHERE a=10486;\nUPDATE t2 SET c='eighty-two thousand six hundred eighty-nine' WHERE a=10487;\nUPDATE t2 SET c='forty-eight thousand eight hundred ninety-seven' WHERE a=10488;\nUPDATE t2 SET c='five thousand four hundred nineteen' WHERE a=10489;\nUPDATE t2 SET c='thirty thousand five hundred seventy-five' WHERE a=10490;\nUPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=10491;\nUPDATE t2 SET c='ninety-one thousand four hundred ninety-eight' WHERE a=10492;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-eight' WHERE a=10493;\nUPDATE t2 SET c='eighty-five thousand four hundred thirty-seven' WHERE a=10494;\nUPDATE t2 SET c='forty-two thousand three hundred forty-four' WHERE a=10495;\nUPDATE t2 SET c='one thousand two hundred fifty-eight' WHERE a=10496;\nUPDATE t2 SET c='thirty-seven thousand three hundred thirty-one' WHERE a=10497;\nUPDATE t2 SET c='twelve thousand nine hundred seventy-six' WHERE a=10498;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty-three' WHERE a=10499;\nUPDATE t2 SET c='fifty-nine thousand three hundred sixty' WHERE a=10500;\nUPDATE t2 SET c='fifty-three thousand sixty-five' WHERE a=10501;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-five' WHERE a=10502;\nUPDATE t2 SET c='sixteen thousand seven hundred forty-one' WHERE a=10503;\nUPDATE t2 SET c='three thousand nine hundred twenty-five' WHERE a=10504;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-six' WHERE a=10505;\nUPDATE t2 SET c='forty-six thousand seven hundred forty' WHERE a=10506;\nUPDATE t2 SET c='sixty-nine thousand twenty' WHERE a=10507;\nUPDATE t2 SET c='forty-two thousand eight hundred seven' WHERE a=10508;\nUPDATE t2 SET c='fifty-two thousand two hundred ninety-eight' WHERE a=10509;\nUPDATE t2 SET c='thirty-four thousand two hundred two' WHERE a=10510;\nUPDATE t2 SET c='sixty thousand nine hundred fourteen' WHERE a=10511;\nUPDATE t2 SET c='twenty-five thousand six hundred ninety-nine' WHERE a=10512;\nUPDATE t2 SET c='ninety thousand nine hundred twenty-one' WHERE a=10513;\nUPDATE t2 SET c='thirty-five thousand three hundred ninety-four' WHERE a=10514;\nUPDATE t2 SET c='ninety-eight thousand one hundred fifty-two' WHERE a=10515;\nUPDATE t2 SET c='thirty-one thousand six hundred eighty-six' WHERE a=10516;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=10517;\nUPDATE t2 SET c='forty-six thousand nine hundred forty' WHERE a=10518;\nUPDATE t2 SET c='fourteen thousand six hundred thirty' WHERE a=10519;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-eight' WHERE a=10520;\nUPDATE t2 SET c='eleven thousand six hundred forty-nine' WHERE a=10521;\nUPDATE t2 SET c='ninety-four thousand nine hundred eleven' WHERE a=10522;\nUPDATE t2 SET c='three thousand one hundred ninety-six' WHERE a=10523;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-two' WHERE a=10524;\nUPDATE t2 SET c='twenty-one thousand nine hundred ninety-four' WHERE a=10525;\nUPDATE t2 SET c='twenty-two thousand seven hundred thirty-two' WHERE a=10526;\nUPDATE t2 SET c='fifty thousand nine hundred three' WHERE a=10527;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-three' WHERE a=10528;\nUPDATE t2 SET c='twenty-nine thousand three hundred twelve' WHERE a=10529;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-four' WHERE a=10530;\nUPDATE t2 SET c='eighty-seven thousand nine hundred one' WHERE a=10531;\nUPDATE t2 SET c='five thousand four hundred fifty-three' WHERE a=10532;\nUPDATE t2 SET c='twelve thousand three hundred thirty-three' WHERE a=10533;\nUPDATE t2 SET c='thirty thousand six hundred fifty-five' WHERE a=10534;\nUPDATE t2 SET c='two thousand two hundred forty-four' WHERE a=10535;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=10536;\nUPDATE t2 SET c='twenty-two thousand sixty-three' WHERE a=10537;\nUPDATE t2 SET c='six thousand six hundred seventy-eight' WHERE a=10538;\nUPDATE t2 SET c='eight thousand twenty-three' WHERE a=10539;\nUPDATE t2 SET c='six thousand one hundred ninety' WHERE a=10540;\nUPDATE t2 SET c='fifty thousand eight hundred sixty-two' WHERE a=10541;\nUPDATE t2 SET c='forty-two thousand two hundred sixty-five' WHERE a=10542;\nUPDATE t2 SET c='fifty-seven thousand nine hundred five' WHERE a=10543;\nUPDATE t2 SET c='ninety-six thousand twenty-six' WHERE a=10544;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-three' WHERE a=10545;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-five' WHERE a=10546;\nUPDATE t2 SET c='twenty-four thousand seventy-six' WHERE a=10547;\nUPDATE t2 SET c='forty-three thousand eight hundred eighty-one' WHERE a=10548;\nUPDATE t2 SET c='eight thousand five hundred forty-seven' WHERE a=10549;\nUPDATE t2 SET c='thirty-seven thousand two hundred fifty' WHERE a=10550;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-nine' WHERE a=10551;\nUPDATE t2 SET c='forty thousand seven hundred seventy-six' WHERE a=10552;\nUPDATE t2 SET c='eighty-seven thousand three hundred eighty-one' WHERE a=10553;\nUPDATE t2 SET c='forty-nine thousand eight hundred forty-six' WHERE a=10554;\nUPDATE t2 SET c='fifty-eight thousand seven hundred nine' WHERE a=10555;\nUPDATE t2 SET c='fourteen thousand three hundred sixty-five' WHERE a=10556;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-five' WHERE a=10557;\nUPDATE t2 SET c='four thousand three hundred eighty-two' WHERE a=10558;\nUPDATE t2 SET c='forty-five thousand four hundred eighty' WHERE a=10559;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=10560;\nUPDATE t2 SET c='thirty-nine thousand seven hundred eighty' WHERE a=10561;\nUPDATE t2 SET c='forty thousand eighty-four' WHERE a=10562;\nUPDATE t2 SET c='fifty-seven thousand five hundred forty-four' WHERE a=10563;\nUPDATE t2 SET c='twenty-five thousand nine hundred fifty' WHERE a=10564;\nUPDATE t2 SET c='ninety thousand four hundred twenty-two' WHERE a=10565;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-five' WHERE a=10566;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-four' WHERE a=10567;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-five' WHERE a=10568;\nUPDATE t2 SET c='seventy thousand six hundred forty-seven' WHERE a=10569;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-six' WHERE a=10570;\nUPDATE t2 SET c='forty-three thousand nine hundred thirty-seven' WHERE a=10571;\nUPDATE t2 SET c='forty-five thousand forty-three' WHERE a=10572;\nUPDATE t2 SET c='seven thousand two hundred eighty-four' WHERE a=10573;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-three' WHERE a=10574;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty-four' WHERE a=10575;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=10576;\nUPDATE t2 SET c='twenty-one thousand three hundred seventeen' WHERE a=10577;\nUPDATE t2 SET c='ninety-seven thousand sixty-seven' WHERE a=10578;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty' WHERE a=10579;\nUPDATE t2 SET c='three thousand four hundred sixteen' WHERE a=10580;\nUPDATE t2 SET c='six thousand six hundred forty-seven' WHERE a=10581;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty' WHERE a=10582;\nUPDATE t2 SET c='twelve thousand four hundred sixty-five' WHERE a=10583;\nUPDATE t2 SET c='ninety-one thousand five hundred sixty-one' WHERE a=10584;\nUPDATE t2 SET c='two thousand two hundred forty-eight' WHERE a=10585;\nUPDATE t2 SET c='one thousand one hundred seventy-one' WHERE a=10586;\nUPDATE t2 SET c='eighty-four thousand forty-nine' WHERE a=10587;\nUPDATE t2 SET c='thirty-seven thousand three hundred eighty-four' WHERE a=10588;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy-four' WHERE a=10589;\nUPDATE t2 SET c='thirteen thousand four hundred fifty-seven' WHERE a=10590;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-eight' WHERE a=10591;\nUPDATE t2 SET c='ten thousand three hundred ninety-eight' WHERE a=10592;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=10593;\nUPDATE t2 SET c='eighty-one thousand two hundred forty-eight' WHERE a=10594;\nUPDATE t2 SET c='nineteen thousand five hundred seventy' WHERE a=10595;\nUPDATE t2 SET c='twenty thousand two hundred' WHERE a=10596;\nUPDATE t2 SET c='seventy-six thousand fifty-four' WHERE a=10597;\nUPDATE t2 SET c='thirty-one thousand one hundred two' WHERE a=10598;\nUPDATE t2 SET c='ninety-one thousand two hundred sixty-nine' WHERE a=10599;\nUPDATE t2 SET c='ninety-two thousand six hundred twenty-two' WHERE a=10600;\nUPDATE t2 SET c='thirty-six thousand three hundred eighty-eight' WHERE a=10601;\nUPDATE t2 SET c='sixty-seven thousand eight hundred thirty-nine' WHERE a=10602;\nUPDATE t2 SET c='fifty-two thousand seven hundred sixty-one' WHERE a=10603;\nUPDATE t2 SET c='ninety-three thousand four hundred fifty-five' WHERE a=10604;\nUPDATE t2 SET c='thirty thousand eight hundred sixty' WHERE a=10605;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-four' WHERE a=10606;\nUPDATE t2 SET c='ninety-nine thousand one hundred three' WHERE a=10607;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-two' WHERE a=10608;\nUPDATE t2 SET c='fifty-eight thousand one hundred forty-four' WHERE a=10609;\nUPDATE t2 SET c='eighty thousand seven hundred eighteen' WHERE a=10610;\nUPDATE t2 SET c='sixty-five thousand nine hundred fifty-nine' WHERE a=10611;\nUPDATE t2 SET c='fifty-one thousand three hundred nineteen' WHERE a=10612;\nUPDATE t2 SET c='four thousand seven hundred sixty-six' WHERE a=10613;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-nine' WHERE a=10614;\nUPDATE t2 SET c='forty-three thousand thirty-one' WHERE a=10615;\nUPDATE t2 SET c='ten thousand one hundred fifty-two' WHERE a=10616;\nUPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=10617;\nUPDATE t2 SET c='fourteen thousand eight hundred fifty-six' WHERE a=10618;\nUPDATE t2 SET c='fifty-five thousand four hundred eighty-two' WHERE a=10619;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty-five' WHERE a=10620;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-three' WHERE a=10621;\nUPDATE t2 SET c='eighty-six thousand eight hundred three' WHERE a=10622;\nUPDATE t2 SET c='sixty-four thousand four hundred eighty-nine' WHERE a=10623;\nUPDATE t2 SET c='eighty thousand seven hundred ninety-four' WHERE a=10624;\nUPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=10625;\nUPDATE t2 SET c='ninety-seven thousand six hundred twenty' WHERE a=10626;\nUPDATE t2 SET c='sixty-six thousand three hundred thirty-nine' WHERE a=10627;\nUPDATE t2 SET c='thirty-one thousand six hundred thirteen' WHERE a=10628;\nUPDATE t2 SET c='fifteen thousand one hundred eighty-six' WHERE a=10629;\nUPDATE t2 SET c='ninety-seven thousand eight hundred' WHERE a=10630;\nUPDATE t2 SET c='seventy-nine thousand eight hundred thirty-four' WHERE a=10631;\nUPDATE t2 SET c='eleven thousand six hundred sixty' WHERE a=10632;\nUPDATE t2 SET c='seventy thousand seven hundred ninety-eight' WHERE a=10633;\nUPDATE t2 SET c='fifty-six thousand fifty-three' WHERE a=10634;\nUPDATE t2 SET c='eighty thousand seven hundred sixty-one' WHERE a=10635;\nUPDATE t2 SET c='seventy thousand seven hundred ninety-six' WHERE a=10636;\nUPDATE t2 SET c='eight thousand six hundred sixty-six' WHERE a=10637;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety-four' WHERE a=10638;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety' WHERE a=10639;\nUPDATE t2 SET c='thirty-nine thousand seven hundred three' WHERE a=10640;\nUPDATE t2 SET c='ninety-nine thousand seventy-six' WHERE a=10641;\nUPDATE t2 SET c='eight thousand one hundred twenty-nine' WHERE a=10642;\nUPDATE t2 SET c='seventy-eight thousand two hundred thirty-six' WHERE a=10643;\nUPDATE t2 SET c='four thousand twenty-nine' WHERE a=10644;\nUPDATE t2 SET c='forty-nine thousand four hundred fifteen' WHERE a=10645;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-five' WHERE a=10646;\nUPDATE t2 SET c='thirty thousand four hundred thirteen' WHERE a=10647;\nUPDATE t2 SET c='six thousand four hundred seventeen' WHERE a=10648;\nUPDATE t2 SET c='ninety-four thousand one hundred nineteen' WHERE a=10649;\nUPDATE t2 SET c='thirty-one thousand nine hundred eighty' WHERE a=10650;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=10651;\nUPDATE t2 SET c='sixty thousand six hundred thirty-three' WHERE a=10652;\nUPDATE t2 SET c='three thousand six hundred fifty' WHERE a=10653;\nUPDATE t2 SET c='nineteen thousand one hundred twenty-five' WHERE a=10654;\nUPDATE t2 SET c='twenty-one thousand eight hundred fifty-three' WHERE a=10655;\nUPDATE t2 SET c='eighteen thousand one hundred eighty-seven' WHERE a=10656;\nUPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=10657;\nUPDATE t2 SET c='twenty-seven thousand nine hundred seventy-one' WHERE a=10658;\nUPDATE t2 SET c='ninety-two thousand six hundred eighty' WHERE a=10659;\nUPDATE t2 SET c='forty-seven thousand six hundred forty-five' WHERE a=10660;\nUPDATE t2 SET c='forty-nine thousand one hundred eight' WHERE a=10661;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty' WHERE a=10662;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-one' WHERE a=10663;\nUPDATE t2 SET c='ninety-two thousand eight hundred ninety-eight' WHERE a=10664;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-three' WHERE a=10665;\nUPDATE t2 SET c='sixty-seven thousand eight hundred one' WHERE a=10666;\nUPDATE t2 SET c='twelve thousand three hundred seventy' WHERE a=10667;\nUPDATE t2 SET c='thirty thousand eight hundred seven' WHERE a=10668;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty-six' WHERE a=10669;\nUPDATE t2 SET c='eighty-seven thousand twenty-two' WHERE a=10670;\nUPDATE t2 SET c='eighty-four thousand eighty-seven' WHERE a=10671;\nUPDATE t2 SET c='forty-one thousand twenty-one' WHERE a=10672;\nUPDATE t2 SET c='six thousand nine hundred fifty-five' WHERE a=10673;\nUPDATE t2 SET c='sixty-four thousand two hundred seventy-seven' WHERE a=10674;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-five' WHERE a=10675;\nUPDATE t2 SET c='forty-nine thousand twenty-seven' WHERE a=10676;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-four' WHERE a=10677;\nUPDATE t2 SET c='three thousand five hundred ninety' WHERE a=10678;\nUPDATE t2 SET c='seventy-one thousand one hundred five' WHERE a=10679;\nUPDATE t2 SET c='seven hundred eighteen' WHERE a=10680;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-four' WHERE a=10681;\nUPDATE t2 SET c='ninety-six thousand four hundred thirty-eight' WHERE a=10682;\nUPDATE t2 SET c='sixty-five thousand nine hundred fourteen' WHERE a=10683;\nUPDATE t2 SET c='twenty-three thousand five' WHERE a=10684;\nUPDATE t2 SET c='eighty-seven thousand three hundred three' WHERE a=10685;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-seven' WHERE a=10686;\nUPDATE t2 SET c='twenty-three thousand one hundred eleven' WHERE a=10687;\nUPDATE t2 SET c='seventy-four thousand thirty-nine' WHERE a=10688;\nUPDATE t2 SET c='thirty-four thousand one hundred seventy-one' WHERE a=10689;\nUPDATE t2 SET c='twenty-four thousand two hundred twelve' WHERE a=10690;\nUPDATE t2 SET c='seventy thousand two hundred four' WHERE a=10691;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirty-two' WHERE a=10692;\nUPDATE t2 SET c='thirty-four thousand five hundred ninety-three' WHERE a=10693;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety' WHERE a=10694;\nUPDATE t2 SET c='fifty-five thousand seven hundred seventy' WHERE a=10695;\nUPDATE t2 SET c='thirty-four thousand seven hundred twenty-seven' WHERE a=10696;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty-two' WHERE a=10697;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-four' WHERE a=10698;\nUPDATE t2 SET c='ninety-three thousand five hundred sixty-eight' WHERE a=10699;\nUPDATE t2 SET c='thirty-five thousand seven hundred seventy-seven' WHERE a=10700;\nUPDATE t2 SET c='sixty thousand four hundred seventy-one' WHERE a=10701;\nUPDATE t2 SET c='thirty-eight thousand sixty-eight' WHERE a=10702;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety-one' WHERE a=10703;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-seven' WHERE a=10704;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-four' WHERE a=10705;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety' WHERE a=10706;\nUPDATE t2 SET c='four thousand eight hundred forty-eight' WHERE a=10707;\nUPDATE t2 SET c='thirty-nine thousand five hundred ninety' WHERE a=10708;\nUPDATE t2 SET c='eighty-six thousand three hundred five' WHERE a=10709;\nUPDATE t2 SET c='eighteen thousand six hundred twenty' WHERE a=10710;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-six' WHERE a=10711;\nUPDATE t2 SET c='ninety-three thousand one hundred twenty-four' WHERE a=10712;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-six' WHERE a=10713;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=10714;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy-one' WHERE a=10715;\nUPDATE t2 SET c='fifty thousand three hundred twelve' WHERE a=10716;\nUPDATE t2 SET c='nine thousand three hundred eighty-five' WHERE a=10717;\nUPDATE t2 SET c='thirty-eight thousand three hundred forty-one' WHERE a=10718;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty' WHERE a=10719;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-one' WHERE a=10720;\nUPDATE t2 SET c='thirty-six thousand eight hundred eighty-seven' WHERE a=10721;\nUPDATE t2 SET c='ninety-seven thousand fifteen' WHERE a=10722;\nUPDATE t2 SET c='sixty-three thousand sixty-five' WHERE a=10723;\nUPDATE t2 SET c='seventy-six thousand seven hundred sixty' WHERE a=10724;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-four' WHERE a=10725;\nUPDATE t2 SET c='ninety-eight thousand three hundred ten' WHERE a=10726;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-nine' WHERE a=10727;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-one' WHERE a=10728;\nUPDATE t2 SET c='eighteen thousand nine hundred nineteen' WHERE a=10729;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-three' WHERE a=10730;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-six' WHERE a=10731;\nUPDATE t2 SET c='seventy-four thousand seven hundred forty-four' WHERE a=10732;\nUPDATE t2 SET c='forty-one thousand four hundred forty-two' WHERE a=10733;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-three' WHERE a=10734;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-eight' WHERE a=10735;\nUPDATE t2 SET c='eighty-seven thousand two hundred twenty-two' WHERE a=10736;\nUPDATE t2 SET c='sixty-seven thousand four hundred twenty-nine' WHERE a=10737;\nUPDATE t2 SET c='thirty-nine thousand six hundred eighty-five' WHERE a=10738;\nUPDATE t2 SET c='sixty-eight thousand three hundred eighty-one' WHERE a=10739;\nUPDATE t2 SET c='forty-eight thousand sixty-four' WHERE a=10740;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-three' WHERE a=10741;\nUPDATE t2 SET c='sixty-seven thousand five hundred eleven' WHERE a=10742;\nUPDATE t2 SET c='six thousand eight hundred sixty-three' WHERE a=10743;\nUPDATE t2 SET c='seventy-two thousand seven hundred one' WHERE a=10744;\nUPDATE t2 SET c='thirty-six thousand eighteen' WHERE a=10745;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-seven' WHERE a=10746;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-three' WHERE a=10747;\nUPDATE t2 SET c='three thousand ninety-four' WHERE a=10748;\nUPDATE t2 SET c='eleven thousand eight hundred eighty-four' WHERE a=10749;\nUPDATE t2 SET c='fifty thousand two hundred eighty-nine' WHERE a=10750;\nUPDATE t2 SET c='six thousand two hundred forty-six' WHERE a=10751;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty-four' WHERE a=10752;\nUPDATE t2 SET c='four thousand seven hundred ninety-one' WHERE a=10753;\nUPDATE t2 SET c='eighty-seven thousand eight hundred eighty-three' WHERE a=10754;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-three' WHERE a=10755;\nUPDATE t2 SET c='eighty-one thousand two hundred eighty-four' WHERE a=10756;\nUPDATE t2 SET c='sixty-two thousand two hundred twenty-three' WHERE a=10757;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-six' WHERE a=10758;\nUPDATE t2 SET c='forty-five thousand nine hundred forty-one' WHERE a=10759;\nUPDATE t2 SET c='twenty-four thousand twenty-seven' WHERE a=10760;\nUPDATE t2 SET c='eighteen thousand two hundred two' WHERE a=10761;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-seven' WHERE a=10762;\nUPDATE t2 SET c='twenty-one thousand eighty-nine' WHERE a=10763;\nUPDATE t2 SET c='four hundred sixty-nine' WHERE a=10764;\nUPDATE t2 SET c='six thousand twenty' WHERE a=10765;\nUPDATE t2 SET c='seventy thousand five hundred seventy-seven' WHERE a=10766;\nUPDATE t2 SET c='sixty-one thousand nine hundred seventy-five' WHERE a=10767;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty-nine' WHERE a=10768;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-seven' WHERE a=10769;\nUPDATE t2 SET c='seventy-seven thousand seven hundred thirty-one' WHERE a=10770;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-seven' WHERE a=10771;\nUPDATE t2 SET c='seventy-three thousand one hundred twenty-nine' WHERE a=10772;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty-seven' WHERE a=10773;\nUPDATE t2 SET c='ninety-six thousand five hundred sixty-nine' WHERE a=10774;\nUPDATE t2 SET c='fifty-three thousand five hundred thirty-five' WHERE a=10775;\nUPDATE t2 SET c='seventy-two thousand six hundred ninety' WHERE a=10776;\nUPDATE t2 SET c='forty-one thousand four hundred fifty-eight' WHERE a=10777;\nUPDATE t2 SET c='ten thousand six hundred one' WHERE a=10778;\nUPDATE t2 SET c='eighty-eight thousand eight hundred five' WHERE a=10779;\nUPDATE t2 SET c='fifty-five thousand two hundred thirty-three' WHERE a=10780;\nUPDATE t2 SET c='seventy-nine thousand three hundred twenty-four' WHERE a=10781;\nUPDATE t2 SET c='eighty-seven thousand eight hundred eighty-five' WHERE a=10782;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-six' WHERE a=10783;\nUPDATE t2 SET c='eighty-four thousand eight hundred sixty-seven' WHERE a=10784;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-three' WHERE a=10785;\nUPDATE t2 SET c='fifty-four thousand six hundred seventy-seven' WHERE a=10786;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-three' WHERE a=10787;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-nine' WHERE a=10788;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-six' WHERE a=10789;\nUPDATE t2 SET c='two thousand four hundred nine' WHERE a=10790;\nUPDATE t2 SET c='twenty-three thousand two hundred seven' WHERE a=10791;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-three' WHERE a=10792;\nUPDATE t2 SET c='fifty-four thousand six hundred nineteen' WHERE a=10793;\nUPDATE t2 SET c='fifty-five thousand six hundred one' WHERE a=10794;\nUPDATE t2 SET c='fifty-nine thousand nine hundred thirty-two' WHERE a=10795;\nUPDATE t2 SET c='eighty-eight thousand three hundred ninety-nine' WHERE a=10796;\nUPDATE t2 SET c='eighteen thousand five hundred forty-four' WHERE a=10797;\nUPDATE t2 SET c='eighty thousand nine hundred thirty-nine' WHERE a=10798;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eight' WHERE a=10799;\nUPDATE t2 SET c='ninety-three thousand three hundred twenty-three' WHERE a=10800;\nUPDATE t2 SET c='seventy-one thousand three hundred seventeen' WHERE a=10801;\nUPDATE t2 SET c='sixty-three thousand four hundred seventeen' WHERE a=10802;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-four' WHERE a=10803;\nUPDATE t2 SET c='thirty-six thousand nine hundred forty-eight' WHERE a=10804;\nUPDATE t2 SET c='forty-three thousand six hundred eighty-three' WHERE a=10805;\nUPDATE t2 SET c='twenty-nine thousand nine hundred ninety-two' WHERE a=10806;\nUPDATE t2 SET c='sixty thousand eight hundred ninety-eight' WHERE a=10807;\nUPDATE t2 SET c='ninety-nine thousand one hundred sixty-one' WHERE a=10808;\nUPDATE t2 SET c='fifty-one thousand three hundred forty' WHERE a=10809;\nUPDATE t2 SET c='ninety-four thousand two hundred thirty-six' WHERE a=10810;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-three' WHERE a=10811;\nUPDATE t2 SET c='thirty-six thousand nine hundred sixty-six' WHERE a=10812;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-two' WHERE a=10813;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-eight' WHERE a=10814;\nUPDATE t2 SET c='sixty-one thousand thirty-one' WHERE a=10815;\nUPDATE t2 SET c='seventy-seven thousand two hundred eighty-seven' WHERE a=10816;\nUPDATE t2 SET c='eighty-five thousand one hundred seventy-seven' WHERE a=10817;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=10818;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-three' WHERE a=10819;\nUPDATE t2 SET c='ninety-nine thousand eighty-three' WHERE a=10820;\nUPDATE t2 SET c='eleven thousand seven hundred forty' WHERE a=10821;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixteen' WHERE a=10822;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty-six' WHERE a=10823;\nUPDATE t2 SET c='forty-five thousand five hundred ten' WHERE a=10824;\nUPDATE t2 SET c='ninety-nine thousand seven hundred seventy-five' WHERE a=10825;\nUPDATE t2 SET c='seventy-six thousand six hundred fifty' WHERE a=10826;\nUPDATE t2 SET c='twenty-two thousand six hundred six' WHERE a=10827;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-seven' WHERE a=10828;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-four' WHERE a=10829;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-seven' WHERE a=10830;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-eight' WHERE a=10831;\nUPDATE t2 SET c='fifty-nine thousand five hundred fourteen' WHERE a=10832;\nUPDATE t2 SET c='twenty-six thousand three hundred ninety-seven' WHERE a=10833;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-five' WHERE a=10834;\nUPDATE t2 SET c='thirty-four thousand six hundred seven' WHERE a=10835;\nUPDATE t2 SET c='five thousand eight hundred thirty-four' WHERE a=10836;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-one' WHERE a=10837;\nUPDATE t2 SET c='twenty-two thousand four hundred fifty-three' WHERE a=10838;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-two' WHERE a=10839;\nUPDATE t2 SET c='sixty-eight thousand twenty-one' WHERE a=10840;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-two' WHERE a=10841;\nUPDATE t2 SET c='seven thousand three hundred twenty-three' WHERE a=10842;\nUPDATE t2 SET c='fourteen thousand four hundred eighty' WHERE a=10843;\nUPDATE t2 SET c='ninety-six thousand eight hundred seventy-three' WHERE a=10844;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy' WHERE a=10845;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-seven' WHERE a=10846;\nUPDATE t2 SET c='sixty-two thousand four hundred eighty-nine' WHERE a=10847;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-three' WHERE a=10848;\nUPDATE t2 SET c='sixty-nine thousand seven hundred five' WHERE a=10849;\nUPDATE t2 SET c='forty-four thousand two hundred thirty-seven' WHERE a=10850;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty-six' WHERE a=10851;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty-five' WHERE a=10852;\nUPDATE t2 SET c='twenty thousand two hundred sixty-two' WHERE a=10853;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-two' WHERE a=10854;\nUPDATE t2 SET c='forty-five thousand six hundred fifteen' WHERE a=10855;\nUPDATE t2 SET c='eighty thousand seven hundred twenty-five' WHERE a=10856;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-three' WHERE a=10857;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-eight' WHERE a=10858;\nUPDATE t2 SET c='sixty thousand three hundred eighty' WHERE a=10859;\nUPDATE t2 SET c='fifty-nine thousand three hundred eighty-five' WHERE a=10860;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-six' WHERE a=10861;\nUPDATE t2 SET c='twenty-one thousand thirty-two' WHERE a=10862;\nUPDATE t2 SET c='fifty-three thousand seventy-three' WHERE a=10863;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-two' WHERE a=10864;\nUPDATE t2 SET c='sixty-seven thousand four hundred six' WHERE a=10865;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty-two' WHERE a=10866;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-two' WHERE a=10867;\nUPDATE t2 SET c='sixty-nine thousand five hundred forty' WHERE a=10868;\nUPDATE t2 SET c='ninety-two thousand six hundred six' WHERE a=10869;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=10870;\nUPDATE t2 SET c='nine thousand six hundred two' WHERE a=10871;\nUPDATE t2 SET c='nine hundred fifty-two' WHERE a=10872;\nUPDATE t2 SET c='ninety thousand nine hundred eight' WHERE a=10873;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-eight' WHERE a=10874;\nUPDATE t2 SET c='forty-two thousand seven hundred eight' WHERE a=10875;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-seven' WHERE a=10876;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-eight' WHERE a=10877;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-four' WHERE a=10878;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-eight' WHERE a=10879;\nUPDATE t2 SET c='fifty thousand three hundred eighty' WHERE a=10880;\nUPDATE t2 SET c='seventy thousand five hundred forty-nine' WHERE a=10881;\nUPDATE t2 SET c='sixty-three thousand four hundred two' WHERE a=10882;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-three' WHERE a=10883;\nUPDATE t2 SET c='fifty-nine thousand seven hundred thirty' WHERE a=10884;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-two' WHERE a=10885;\nUPDATE t2 SET c='eighty-three thousand one hundred fifteen' WHERE a=10886;\nUPDATE t2 SET c='thirty-three thousand five hundred sixty-two' WHERE a=10887;\nUPDATE t2 SET c='twenty-nine thousand eight hundred thirty' WHERE a=10888;\nUPDATE t2 SET c='sixty-seven thousand seven hundred five' WHERE a=10889;\nUPDATE t2 SET c='eight hundred thirteen' WHERE a=10890;\nUPDATE t2 SET c='seventeen thousand four hundred eighty' WHERE a=10891;\nUPDATE t2 SET c='twenty thousand eight hundred six' WHERE a=10892;\nUPDATE t2 SET c='ninety-eight thousand nine hundred seventy-eight' WHERE a=10893;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-nine' WHERE a=10894;\nUPDATE t2 SET c='eleven thousand five hundred five' WHERE a=10895;\nUPDATE t2 SET c='fifty-four thousand seven hundred eighty' WHERE a=10896;\nUPDATE t2 SET c='forty-eight thousand four hundred nineteen' WHERE a=10897;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-nine' WHERE a=10898;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-four' WHERE a=10899;\nUPDATE t2 SET c='eighty thousand twenty-four' WHERE a=10900;\nUPDATE t2 SET c='seventy-six thousand two hundred sixteen' WHERE a=10901;\nUPDATE t2 SET c='seventy-three thousand thirty' WHERE a=10902;\nUPDATE t2 SET c='fifty-two thousand nine hundred forty-six' WHERE a=10903;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-one' WHERE a=10904;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-three' WHERE a=10905;\nUPDATE t2 SET c='ninety-seven thousand four hundred nineteen' WHERE a=10906;\nUPDATE t2 SET c='eighty-six thousand two hundred sixteen' WHERE a=10907;\nUPDATE t2 SET c='forty-one thousand eight hundred three' WHERE a=10908;\nUPDATE t2 SET c='forty-three thousand two hundred sixty-four' WHERE a=10909;\nUPDATE t2 SET c='seventy-four thousand three hundred seven' WHERE a=10910;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety-seven' WHERE a=10911;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty' WHERE a=10912;\nUPDATE t2 SET c='thirty thousand two hundred seventy-three' WHERE a=10913;\nUPDATE t2 SET c='seven thousand six hundred five' WHERE a=10914;\nUPDATE t2 SET c='thirty-three thousand seven hundred seven' WHERE a=10915;\nUPDATE t2 SET c='thirty-three thousand two hundred sixteen' WHERE a=10916;\nUPDATE t2 SET c='seventeen thousand four hundred eighty' WHERE a=10917;\nUPDATE t2 SET c='sixty-five thousand two hundred fifty-nine' WHERE a=10918;\nUPDATE t2 SET c='fifty-three thousand three hundred forty' WHERE a=10919;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty-nine' WHERE a=10920;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifteen' WHERE a=10921;\nUPDATE t2 SET c='three thousand nine hundred fifty-four' WHERE a=10922;\nUPDATE t2 SET c='eighteen thousand eight hundred thirty-eight' WHERE a=10923;\nUPDATE t2 SET c='seventy-three thousand three hundred thirteen' WHERE a=10924;\nUPDATE t2 SET c='twenty-five thousand three hundred fifty-one' WHERE a=10925;\nUPDATE t2 SET c='thirty-one thousand one hundred fifteen' WHERE a=10926;\nUPDATE t2 SET c='thirty-seven thousand nine hundred twelve' WHERE a=10927;\nUPDATE t2 SET c='ninety-eight thousand three hundred sixteen' WHERE a=10928;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-five' WHERE a=10929;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-five' WHERE a=10930;\nUPDATE t2 SET c='seventy-one thousand four hundred seventeen' WHERE a=10931;\nUPDATE t2 SET c='sixty-four thousand four hundred eight' WHERE a=10932;\nUPDATE t2 SET c='eighteen thousand four hundred four' WHERE a=10933;\nUPDATE t2 SET c='sixty-four thousand five hundred thirty-eight' WHERE a=10934;\nUPDATE t2 SET c='thirty-five thousand forty-three' WHERE a=10935;\nUPDATE t2 SET c='fifty-five thousand six hundred eighty' WHERE a=10936;\nUPDATE t2 SET c='seventy-seven thousand three hundred fifty-six' WHERE a=10937;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty-two' WHERE a=10938;\nUPDATE t2 SET c='ninety thousand three hundred fifty-six' WHERE a=10939;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-two' WHERE a=10940;\nUPDATE t2 SET c='seventeen thousand six hundred seventy-five' WHERE a=10941;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-one' WHERE a=10942;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty-six' WHERE a=10943;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-three' WHERE a=10944;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-eight' WHERE a=10945;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty-four' WHERE a=10946;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-four' WHERE a=10947;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-four' WHERE a=10948;\nUPDATE t2 SET c='fourteen thousand seven hundred seventy-four' WHERE a=10949;\nUPDATE t2 SET c='forty-nine thousand five hundred fifty-four' WHERE a=10950;\nUPDATE t2 SET c='seventy-one thousand forty-six' WHERE a=10951;\nUPDATE t2 SET c='nineteen thousand five hundred thirty-seven' WHERE a=10952;\nUPDATE t2 SET c='eighty-two thousand four hundred twenty-four' WHERE a=10953;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-seven' WHERE a=10954;\nUPDATE t2 SET c='four thousand nine hundred seventy-eight' WHERE a=10955;\nUPDATE t2 SET c='fifty-two thousand four hundred ten' WHERE a=10956;\nUPDATE t2 SET c='one thousand four hundred fifty-one' WHERE a=10957;\nUPDATE t2 SET c='fifty-eight thousand two hundred fifty-eight' WHERE a=10958;\nUPDATE t2 SET c='eleven thousand nine hundred forty' WHERE a=10959;\nUPDATE t2 SET c='twenty thousand three hundred fourteen' WHERE a=10960;\nUPDATE t2 SET c='sixty-eight thousand four hundred twenty-seven' WHERE a=10961;\nUPDATE t2 SET c='eight thousand six hundred fifty-nine' WHERE a=10962;\nUPDATE t2 SET c='sixty-four thousand two hundred thirty-four' WHERE a=10963;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-seven' WHERE a=10964;\nUPDATE t2 SET c='twenty thousand seven hundred twenty-two' WHERE a=10965;\nUPDATE t2 SET c='fifty-nine thousand six hundred forty-five' WHERE a=10966;\nUPDATE t2 SET c='eighty-six thousand six hundred fifty-nine' WHERE a=10967;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-one' WHERE a=10968;\nUPDATE t2 SET c='ninety thousand two hundred thirty-eight' WHERE a=10969;\nUPDATE t2 SET c='sixty-five thousand eighty-one' WHERE a=10970;\nUPDATE t2 SET c='eighty-nine thousand three hundred twenty-seven' WHERE a=10971;\nUPDATE t2 SET c='seventy-three thousand four hundred eighty-eight' WHERE a=10972;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirty-five' WHERE a=10973;\nUPDATE t2 SET c='twenty-nine thousand fifty-six' WHERE a=10974;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty-three' WHERE a=10975;\nUPDATE t2 SET c='one thousand two hundred fifteen' WHERE a=10976;\nUPDATE t2 SET c='thirty-six thousand one hundred ninety-seven' WHERE a=10977;\nUPDATE t2 SET c='sixty thousand eighty-one' WHERE a=10978;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-one' WHERE a=10979;\nUPDATE t2 SET c='twenty-eight thousand five hundred ninety-four' WHERE a=10980;\nUPDATE t2 SET c='eighty-five thousand eight hundred thirty-one' WHERE a=10981;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-six' WHERE a=10982;\nUPDATE t2 SET c='sixteen thousand eight hundred seventy-one' WHERE a=10983;\nUPDATE t2 SET c='twenty-eight thousand four hundred fifty-three' WHERE a=10984;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-eight' WHERE a=10985;\nUPDATE t2 SET c='twenty-seven thousand five hundred seventy' WHERE a=10986;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty-eight' WHERE a=10987;\nUPDATE t2 SET c='twenty-three thousand eleven' WHERE a=10988;\nUPDATE t2 SET c='four thousand seven hundred twenty-two' WHERE a=10989;\nUPDATE t2 SET c='eighty-eight thousand eighteen' WHERE a=10990;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-two' WHERE a=10991;\nUPDATE t2 SET c='eighty-one thousand eighty' WHERE a=10992;\nUPDATE t2 SET c='forty-nine thousand four hundred eighty-two' WHERE a=10993;\nUPDATE t2 SET c='thirty-three thousand four hundred sixty-eight' WHERE a=10994;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty-one' WHERE a=10995;\nUPDATE t2 SET c='eighteen thousand two hundred ten' WHERE a=10996;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-four' WHERE a=10997;\nUPDATE t2 SET c='twenty-five thousand eight hundred thirteen' WHERE a=10998;\nUPDATE t2 SET c='five thousand two hundred thirteen' WHERE a=10999;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-one' WHERE a=11000;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-four' WHERE a=11001;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-one' WHERE a=11002;\nUPDATE t2 SET c='forty-five thousand eight hundred two' WHERE a=11003;\nUPDATE t2 SET c='fifty-one thousand five hundred thirteen' WHERE a=11004;\nUPDATE t2 SET c='sixty-five thousand sixty-four' WHERE a=11005;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-six' WHERE a=11006;\nUPDATE t2 SET c='four thousand three hundred fifty-one' WHERE a=11007;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-nine' WHERE a=11008;\nUPDATE t2 SET c='sixteen thousand five hundred thirty-four' WHERE a=11009;\nUPDATE t2 SET c='seven thousand two hundred eighty-one' WHERE a=11010;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-six' WHERE a=11011;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-six' WHERE a=11012;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-four' WHERE a=11013;\nUPDATE t2 SET c='eighty-three thousand six hundred twenty-one' WHERE a=11014;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-nine' WHERE a=11015;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-one' WHERE a=11016;\nUPDATE t2 SET c='fifty-six thousand one hundred eight' WHERE a=11017;\nUPDATE t2 SET c='thirty-six thousand seven hundred seventeen' WHERE a=11018;\nUPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=11019;\nUPDATE t2 SET c='ninety-two thousand two hundred fourteen' WHERE a=11020;\nUPDATE t2 SET c='forty-one thousand eight hundred forty-seven' WHERE a=11021;\nUPDATE t2 SET c='thirty-one thousand eight hundred nineteen' WHERE a=11022;\nUPDATE t2 SET c='fourteen thousand five hundred fifteen' WHERE a=11023;\nUPDATE t2 SET c='four thousand seven hundred sixty-four' WHERE a=11024;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty' WHERE a=11025;\nUPDATE t2 SET c='eighty-one thousand three hundred seventy-two' WHERE a=11026;\nUPDATE t2 SET c='five thousand two hundred seventy-eight' WHERE a=11027;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-eight' WHERE a=11028;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty-eight' WHERE a=11029;\nUPDATE t2 SET c='sixty-four thousand eight hundred fifteen' WHERE a=11030;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-eight' WHERE a=11031;\nUPDATE t2 SET c='forty-five thousand five hundred sixty-five' WHERE a=11032;\nUPDATE t2 SET c='twenty-three thousand eight hundred twenty-four' WHERE a=11033;\nUPDATE t2 SET c='eighty-five thousand nine hundred sixty' WHERE a=11034;\nUPDATE t2 SET c='seventy-one thousand one hundred thirty-one' WHERE a=11035;\nUPDATE t2 SET c='twenty-five thousand five hundred sixty-seven' WHERE a=11036;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-five' WHERE a=11037;\nUPDATE t2 SET c='seventy thousand fifty-two' WHERE a=11038;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-one' WHERE a=11039;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-nine' WHERE a=11040;\nUPDATE t2 SET c='thirty-seven thousand seven hundred forty-nine' WHERE a=11041;\nUPDATE t2 SET c='ninety-six thousand two hundred one' WHERE a=11042;\nUPDATE t2 SET c='ninety-seven thousand eighty-eight' WHERE a=11043;\nUPDATE t2 SET c='fifty-four thousand four hundred sixty-five' WHERE a=11044;\nUPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=11045;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-three' WHERE a=11046;\nUPDATE t2 SET c='eighty-three thousand fifty-five' WHERE a=11047;\nUPDATE t2 SET c='three thousand nine hundred twenty-nine' WHERE a=11048;\nUPDATE t2 SET c='eleven thousand eight hundred ninety-three' WHERE a=11049;\nUPDATE t2 SET c='twelve thousand six hundred seventy-three' WHERE a=11050;\nUPDATE t2 SET c='fifty-six thousand one hundred two' WHERE a=11051;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-eight' WHERE a=11052;\nUPDATE t2 SET c='forty-five thousand five hundred sixty' WHERE a=11053;\nUPDATE t2 SET c='three thousand five hundred fifty-five' WHERE a=11054;\nUPDATE t2 SET c='forty-five thousand seven hundred seventy-seven' WHERE a=11055;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=11056;\nUPDATE t2 SET c='twenty-two thousand seven hundred ninety-one' WHERE a=11057;\nUPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=11058;\nUPDATE t2 SET c='two hundred sixty-two' WHERE a=11059;\nUPDATE t2 SET c='forty-five thousand sixty-five' WHERE a=11060;\nUPDATE t2 SET c='fifty-five thousand nine hundred fifty-one' WHERE a=11061;\nUPDATE t2 SET c='forty-seven thousand four hundred twenty-two' WHERE a=11062;\nUPDATE t2 SET c='ninety-two thousand seven hundred eleven' WHERE a=11063;\nUPDATE t2 SET c='ninety-one thousand six hundred forty-one' WHERE a=11064;\nUPDATE t2 SET c='seventy-six thousand thirty-nine' WHERE a=11065;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-two' WHERE a=11066;\nUPDATE t2 SET c='nineteen thousand one hundred twenty-six' WHERE a=11067;\nUPDATE t2 SET c='nine thousand one hundred seventy-nine' WHERE a=11068;\nUPDATE t2 SET c='thirty-five thousand eighty-two' WHERE a=11069;\nUPDATE t2 SET c='forty-five thousand four hundred ninety-eight' WHERE a=11070;\nUPDATE t2 SET c='seventy-one thousand eighty-two' WHERE a=11071;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty-four' WHERE a=11072;\nUPDATE t2 SET c='fifty-eight thousand six hundred forty-five' WHERE a=11073;\nUPDATE t2 SET c='sixty-two thousand fifty' WHERE a=11074;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=11075;\nUPDATE t2 SET c='ninety-seven thousand three hundred twenty-eight' WHERE a=11076;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-five' WHERE a=11077;\nUPDATE t2 SET c='twenty-four thousand one hundred sixty-seven' WHERE a=11078;\nUPDATE t2 SET c='twenty-nine thousand four hundred sixteen' WHERE a=11079;\nUPDATE t2 SET c='fifty-three thousand one hundred sixty-five' WHERE a=11080;\nUPDATE t2 SET c='twenty-one thousand seven hundred six' WHERE a=11081;\nUPDATE t2 SET c='sixty thousand six hundred fifty-six' WHERE a=11082;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-two' WHERE a=11083;\nUPDATE t2 SET c='seventy-five thousand two hundred one' WHERE a=11084;\nUPDATE t2 SET c='three thousand four hundred' WHERE a=11085;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety-one' WHERE a=11086;\nUPDATE t2 SET c='twenty-six thousand fourteen' WHERE a=11087;\nUPDATE t2 SET c='three thousand four hundred eighty-nine' WHERE a=11088;\nUPDATE t2 SET c='sixty-seven thousand eight hundred sixty-two' WHERE a=11089;\nUPDATE t2 SET c='eighty-seven thousand fifty' WHERE a=11090;\nUPDATE t2 SET c='thirteen thousand seven hundred twelve' WHERE a=11091;\nUPDATE t2 SET c='sixty-one thousand six hundred ninety-three' WHERE a=11092;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifteen' WHERE a=11093;\nUPDATE t2 SET c='eighty-seven thousand thirty-six' WHERE a=11094;\nUPDATE t2 SET c='forty-four thousand three hundred sixty-five' WHERE a=11095;\nUPDATE t2 SET c='fifty-nine' WHERE a=11096;\nUPDATE t2 SET c='ninety-six thousand four hundred thirty-seven' WHERE a=11097;\nUPDATE t2 SET c='forty-one thousand three hundred thirteen' WHERE a=11098;\nUPDATE t2 SET c='sixty-four thousand five hundred forty-nine' WHERE a=11099;\nUPDATE t2 SET c='thirty-three thousand eight hundred eight' WHERE a=11100;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-four' WHERE a=11101;\nUPDATE t2 SET c='fifty thousand forty-one' WHERE a=11102;\nUPDATE t2 SET c='seventy-four thousand two hundred eleven' WHERE a=11103;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-six' WHERE a=11104;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-five' WHERE a=11105;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-two' WHERE a=11106;\nUPDATE t2 SET c='thirty-five thousand four hundred ninety-eight' WHERE a=11107;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighteen' WHERE a=11108;\nUPDATE t2 SET c='ninety-three thousand six hundred seventy-five' WHERE a=11109;\nUPDATE t2 SET c='seventy-five thousand eight hundred twenty-eight' WHERE a=11110;\nUPDATE t2 SET c='twenty-three thousand eighty-two' WHERE a=11111;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-eight' WHERE a=11112;\nUPDATE t2 SET c='fifty-eight thousand four hundred sixty-three' WHERE a=11113;\nUPDATE t2 SET c='forty-nine thousand one hundred seven' WHERE a=11114;\nUPDATE t2 SET c='sixty-two thousand fifty-one' WHERE a=11115;\nUPDATE t2 SET c='five thousand six hundred fifty-four' WHERE a=11116;\nUPDATE t2 SET c='fifty thousand six hundred eighty-nine' WHERE a=11117;\nUPDATE t2 SET c='fifty-nine thousand three hundred ninety-seven' WHERE a=11118;\nUPDATE t2 SET c='ninety-three thousand forty-four' WHERE a=11119;\nUPDATE t2 SET c='sixty-seven thousand twenty' WHERE a=11120;\nUPDATE t2 SET c='fourteen thousand three hundred seventy-four' WHERE a=11121;\nUPDATE t2 SET c='one thousand six hundred forty-nine' WHERE a=11122;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-five' WHERE a=11123;\nUPDATE t2 SET c='twenty thousand three hundred two' WHERE a=11124;\nUPDATE t2 SET c='twenty-two thousand eight hundred forty-seven' WHERE a=11125;\nUPDATE t2 SET c='thirty-seven thousand eleven' WHERE a=11126;\nUPDATE t2 SET c='seven thousand two hundred four' WHERE a=11127;\nUPDATE t2 SET c='eighty-eight thousand three hundred one' WHERE a=11128;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-three' WHERE a=11129;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-eight' WHERE a=11130;\nUPDATE t2 SET c='forty-three thousand seven hundred twenty-four' WHERE a=11131;\nUPDATE t2 SET c='seventy-six thousand two hundred forty-five' WHERE a=11132;\nUPDATE t2 SET c='thirty thousand six hundred thirty-one' WHERE a=11133;\nUPDATE t2 SET c='twenty-one thousand five hundred sixty-nine' WHERE a=11134;\nUPDATE t2 SET c='eighty-six thousand one hundred fourteen' WHERE a=11135;\nUPDATE t2 SET c='ninety-three thousand five hundred three' WHERE a=11136;\nUPDATE t2 SET c='seventy-seven thousand six hundred ninety-three' WHERE a=11137;\nUPDATE t2 SET c='ninety-six thousand nine hundred fifty-eight' WHERE a=11138;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-six' WHERE a=11139;\nUPDATE t2 SET c='twelve thousand nine hundred ninety-eight' WHERE a=11140;\nUPDATE t2 SET c='sixteen thousand one hundred five' WHERE a=11141;\nUPDATE t2 SET c='seventy-three thousand four hundred sixty-nine' WHERE a=11142;\nUPDATE t2 SET c='twelve thousand seven hundred eighty-six' WHERE a=11143;\nUPDATE t2 SET c='fifty-eight thousand eight hundred' WHERE a=11144;\nUPDATE t2 SET c='sixty-six thousand six hundred four' WHERE a=11145;\nUPDATE t2 SET c='fifty-three thousand eight hundred eighty-two' WHERE a=11146;\nUPDATE t2 SET c='eight hundred fifty-five' WHERE a=11147;\nUPDATE t2 SET c='one thousand nine hundred fifty-nine' WHERE a=11148;\nUPDATE t2 SET c='seventy-nine thousand three hundred eighty-nine' WHERE a=11149;\nUPDATE t2 SET c='ninety-nine thousand five hundred thirty-five' WHERE a=11150;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=11151;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-one' WHERE a=11152;\nUPDATE t2 SET c='sixty-four thousand six hundred sixty-one' WHERE a=11153;\nUPDATE t2 SET c='thirty thousand eighteen' WHERE a=11154;\nUPDATE t2 SET c='ninety-five thousand three hundred nine' WHERE a=11155;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-six' WHERE a=11156;\nUPDATE t2 SET c='ninety thousand one hundred seventy-four' WHERE a=11157;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-nine' WHERE a=11158;\nUPDATE t2 SET c='fifty thousand nine hundred thirty-seven' WHERE a=11159;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-six' WHERE a=11160;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy' WHERE a=11161;\nUPDATE t2 SET c='twenty thousand one hundred forty-nine' WHERE a=11162;\nUPDATE t2 SET c='nineteen thousand four hundred ninety-two' WHERE a=11163;\nUPDATE t2 SET c='thirty-one thousand seven hundred forty-three' WHERE a=11164;\nUPDATE t2 SET c='thirty-four thousand nine hundred sixty-seven' WHERE a=11165;\nUPDATE t2 SET c='twenty-eight thousand six hundred seventy-four' WHERE a=11166;\nUPDATE t2 SET c='ninety-two thousand seven hundred twelve' WHERE a=11167;\nUPDATE t2 SET c='eleven thousand two hundred seventy-four' WHERE a=11168;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-four' WHERE a=11169;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-two' WHERE a=11170;\nUPDATE t2 SET c='fifty-five thousand two' WHERE a=11171;\nUPDATE t2 SET c='six thousand twenty-three' WHERE a=11172;\nUPDATE t2 SET c='fifty-three thousand four hundred eighty-seven' WHERE a=11173;\nUPDATE t2 SET c='thirty-seven thousand two hundred eighty-two' WHERE a=11174;\nUPDATE t2 SET c='eighty-two thousand five hundred ninety-six' WHERE a=11175;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-three' WHERE a=11176;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-three' WHERE a=11177;\nUPDATE t2 SET c='twenty-two thousand nine hundred eighteen' WHERE a=11178;\nUPDATE t2 SET c='seventeen thousand six hundred seventeen' WHERE a=11179;\nUPDATE t2 SET c='sixty-one thousand one hundred eighty-seven' WHERE a=11180;\nUPDATE t2 SET c='fifty-seven thousand two hundred fifteen' WHERE a=11181;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-eight' WHERE a=11182;\nUPDATE t2 SET c='twenty thousand six hundred ten' WHERE a=11183;\nUPDATE t2 SET c='forty-three thousand three hundred seventy' WHERE a=11184;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty' WHERE a=11185;\nUPDATE t2 SET c='seventy thousand seven hundred fifty-two' WHERE a=11186;\nUPDATE t2 SET c='eighty-one thousand six hundred ninety-eight' WHERE a=11187;\nUPDATE t2 SET c='sixty-six thousand nine hundred fourteen' WHERE a=11188;\nUPDATE t2 SET c='thirty-one thousand one hundred fifty-six' WHERE a=11189;\nUPDATE t2 SET c='six thousand seven hundred thirty-two' WHERE a=11190;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-two' WHERE a=11191;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixteen' WHERE a=11192;\nUPDATE t2 SET c='fourteen thousand two hundred forty-two' WHERE a=11193;\nUPDATE t2 SET c='ninety-four thousand five hundred twenty-one' WHERE a=11194;\nUPDATE t2 SET c='seventy-one thousand two hundred forty-three' WHERE a=11195;\nUPDATE t2 SET c='fourteen thousand eight hundred seven' WHERE a=11196;\nUPDATE t2 SET c='twenty-two thousand two hundred twelve' WHERE a=11197;\nUPDATE t2 SET c='twenty-one thousand two hundred three' WHERE a=11198;\nUPDATE t2 SET c='ninety thousand fifty-four' WHERE a=11199;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-seven' WHERE a=11200;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=11201;\nUPDATE t2 SET c='sixty-six thousand one hundred five' WHERE a=11202;\nUPDATE t2 SET c='thirty-one thousand four hundred twenty-two' WHERE a=11203;\nUPDATE t2 SET c='forty-eight thousand seven hundred eighty-seven' WHERE a=11204;\nUPDATE t2 SET c='eighty-nine thousand one hundred forty-one' WHERE a=11205;\nUPDATE t2 SET c='thirty-four thousand three hundred twenty-six' WHERE a=11206;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-nine' WHERE a=11207;\nUPDATE t2 SET c='seven thousand eight hundred twelve' WHERE a=11208;\nUPDATE t2 SET c='eighty-six thousand six hundred forty-six' WHERE a=11209;\nUPDATE t2 SET c='eighty-four thousand seven hundred' WHERE a=11210;\nUPDATE t2 SET c='thirty-nine thousand six hundred ninety-two' WHERE a=11211;\nUPDATE t2 SET c='forty-seven thousand one hundred fifty' WHERE a=11212;\nUPDATE t2 SET c='sixty-one thousand two hundred fifty-three' WHERE a=11213;\nUPDATE t2 SET c='twelve thousand eight hundred sixty-eight' WHERE a=11214;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-eight' WHERE a=11215;\nUPDATE t2 SET c='forty-seven thousand one hundred eight' WHERE a=11216;\nUPDATE t2 SET c='fifty-six thousand seven hundred forty-two' WHERE a=11217;\nUPDATE t2 SET c='sixteen thousand four hundred forty-three' WHERE a=11218;\nUPDATE t2 SET c='forty-five thousand eight hundred sixty-four' WHERE a=11219;\nUPDATE t2 SET c='sixty-four thousand ninety-two' WHERE a=11220;\nUPDATE t2 SET c='sixty-five thousand eight hundred forty-four' WHERE a=11221;\nUPDATE t2 SET c='thirty-four thousand three hundred nine' WHERE a=11222;\nUPDATE t2 SET c='twenty-five thousand four hundred seventy-nine' WHERE a=11223;\nUPDATE t2 SET c='seventy thousand eight hundred forty-seven' WHERE a=11224;\nUPDATE t2 SET c='ninety-nine thousand twenty-two' WHERE a=11225;\nUPDATE t2 SET c='ninety-two thousand nine hundred sixty-seven' WHERE a=11226;\nUPDATE t2 SET c='eight thousand five hundred eighty-eight' WHERE a=11227;\nUPDATE t2 SET c='twenty-four thousand five hundred nineteen' WHERE a=11228;\nUPDATE t2 SET c='twenty-five thousand nine hundred fifty-four' WHERE a=11229;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-nine' WHERE a=11230;\nUPDATE t2 SET c='eighty-one thousand forty-three' WHERE a=11231;\nUPDATE t2 SET c='eighty-eight thousand four hundred thirty-six' WHERE a=11232;\nUPDATE t2 SET c='seventy-six thousand four hundred thirty-six' WHERE a=11233;\nUPDATE t2 SET c='twenty-seven thousand five hundred seventy-nine' WHERE a=11234;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty' WHERE a=11235;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-two' WHERE a=11236;\nUPDATE t2 SET c='seventy-one thousand two hundred seventy-nine' WHERE a=11237;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-six' WHERE a=11238;\nUPDATE t2 SET c='ninety-six thousand six hundred ninety-nine' WHERE a=11239;\nUPDATE t2 SET c='sixty-seven thousand five hundred eighty-one' WHERE a=11240;\nUPDATE t2 SET c='seventy-nine thousand one hundred thirty-one' WHERE a=11241;\nUPDATE t2 SET c='sixteen thousand forty-nine' WHERE a=11242;\nUPDATE t2 SET c='forty-five thousand one hundred sixty-eight' WHERE a=11243;\nUPDATE t2 SET c='eighty-two thousand nine hundred forty' WHERE a=11244;\nUPDATE t2 SET c='thirteen thousand thirty-six' WHERE a=11245;\nUPDATE t2 SET c='seven thousand seven hundred twenty' WHERE a=11246;\nUPDATE t2 SET c='seventy-two thousand nine hundred twenty-five' WHERE a=11247;\nUPDATE t2 SET c='nine hundred forty-five' WHERE a=11248;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty-four' WHERE a=11249;\nUPDATE t2 SET c='ninety-six thousand eighty-five' WHERE a=11250;\nUPDATE t2 SET c='forty-six thousand eight hundred forty-one' WHERE a=11251;\nUPDATE t2 SET c='thirty-two thousand six hundred ninety-nine' WHERE a=11252;\nUPDATE t2 SET c='twenty-two thousand three hundred eighty-nine' WHERE a=11253;\nUPDATE t2 SET c='six thousand four hundred thirteen' WHERE a=11254;\nUPDATE t2 SET c='eighty thousand two hundred forty-four' WHERE a=11255;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-seven' WHERE a=11256;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-five' WHERE a=11257;\nUPDATE t2 SET c='fifty-two thousand four hundred six' WHERE a=11258;\nUPDATE t2 SET c='nine thousand two hundred forty-four' WHERE a=11259;\nUPDATE t2 SET c='seventy-six thousand eight hundred twenty-seven' WHERE a=11260;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixty-six' WHERE a=11261;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-six' WHERE a=11262;\nUPDATE t2 SET c='fifty thousand five hundred thirty-seven' WHERE a=11263;\nUPDATE t2 SET c='eighty-four thousand nine hundred seventy' WHERE a=11264;\nUPDATE t2 SET c='fifty-two thousand three hundred two' WHERE a=11265;\nUPDATE t2 SET c='ninety-four thousand three hundred' WHERE a=11266;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-six' WHERE a=11267;\nUPDATE t2 SET c='eighty-eight thousand six hundred ninety-one' WHERE a=11268;\nUPDATE t2 SET c='ninety thousand three hundred forty-seven' WHERE a=11269;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-nine' WHERE a=11270;\nUPDATE t2 SET c='fourteen thousand four hundred fifty-nine' WHERE a=11271;\nUPDATE t2 SET c='twenty thousand six hundred seventy-five' WHERE a=11272;\nUPDATE t2 SET c='ninety thousand one hundred ninety' WHERE a=11273;\nUPDATE t2 SET c='ninety-nine thousand nine hundred eighty-four' WHERE a=11274;\nUPDATE t2 SET c='fifteen thousand one hundred thirty-six' WHERE a=11275;\nUPDATE t2 SET c='sixty-six thousand one hundred two' WHERE a=11276;\nUPDATE t2 SET c='forty-seven thousand nine hundred nine' WHERE a=11277;\nUPDATE t2 SET c='twenty-one thousand one hundred seventy-one' WHERE a=11278;\nUPDATE t2 SET c='eighty-seven thousand four hundred fourteen' WHERE a=11279;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixty-one' WHERE a=11280;\nUPDATE t2 SET c='seventy-two thousand seventy-eight' WHERE a=11281;\nUPDATE t2 SET c='eighty-nine thousand five hundred six' WHERE a=11282;\nUPDATE t2 SET c='sixty-four thousand nine hundred fifty-four' WHERE a=11283;\nUPDATE t2 SET c='twenty-six thousand forty-nine' WHERE a=11284;\nUPDATE t2 SET c='ninety-two thousand nine hundred sixty-one' WHERE a=11285;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-three' WHERE a=11286;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty' WHERE a=11287;\nUPDATE t2 SET c='forty-seven thousand six hundred twenty-four' WHERE a=11288;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=11289;\nUPDATE t2 SET c='seventy-six thousand six hundred eight' WHERE a=11290;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty' WHERE a=11291;\nUPDATE t2 SET c='seven thousand four hundred thirteen' WHERE a=11292;\nUPDATE t2 SET c='eighty-seven thousand sixty-four' WHERE a=11293;\nUPDATE t2 SET c='four thousand eight hundred eighty' WHERE a=11294;\nUPDATE t2 SET c='sixty-eight thousand seven hundred eighteen' WHERE a=11295;\nUPDATE t2 SET c='seventy-one thousand two hundred thirty-seven' WHERE a=11296;\nUPDATE t2 SET c='sixty-two thousand three hundred thirteen' WHERE a=11297;\nUPDATE t2 SET c='one thousand sixty-three' WHERE a=11298;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-four' WHERE a=11299;\nUPDATE t2 SET c='fifty-two thousand four hundred seven' WHERE a=11300;\nUPDATE t2 SET c='twelve thousand one hundred ninety-four' WHERE a=11301;\nUPDATE t2 SET c='sixty-five thousand four hundred sixty-four' WHERE a=11302;\nUPDATE t2 SET c='ninety-five thousand twelve' WHERE a=11303;\nUPDATE t2 SET c='ninety-three thousand six hundred forty-one' WHERE a=11304;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-eight' WHERE a=11305;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy' WHERE a=11306;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-three' WHERE a=11307;\nUPDATE t2 SET c='seventy-eight thousand six hundred fifty-six' WHERE a=11308;\nUPDATE t2 SET c='thirty-nine thousand eight hundred sixty-eight' WHERE a=11309;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-four' WHERE a=11310;\nUPDATE t2 SET c='seventy-eight thousand four hundred six' WHERE a=11311;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-seven' WHERE a=11312;\nUPDATE t2 SET c='twenty-six thousand forty' WHERE a=11313;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixty' WHERE a=11314;\nUPDATE t2 SET c='forty thousand four hundred' WHERE a=11315;\nUPDATE t2 SET c='thirty-one thousand ten' WHERE a=11316;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-six' WHERE a=11317;\nUPDATE t2 SET c='seventy-eight thousand six hundred ninety-seven' WHERE a=11318;\nUPDATE t2 SET c='eighteen thousand eight hundred seventeen' WHERE a=11319;\nUPDATE t2 SET c='forty-two thousand six hundred seventy-eight' WHERE a=11320;\nUPDATE t2 SET c='sixty-four thousand one hundred fifty-seven' WHERE a=11321;\nUPDATE t2 SET c='ten thousand nine hundred forty-eight' WHERE a=11322;\nUPDATE t2 SET c='eighty thousand two hundred twenty-seven' WHERE a=11323;\nUPDATE t2 SET c='forty-four thousand thirteen' WHERE a=11324;\nUPDATE t2 SET c='fifty-one thousand six hundred sixty-six' WHERE a=11325;\nUPDATE t2 SET c='fifty-six thousand nine hundred forty-six' WHERE a=11326;\nUPDATE t2 SET c='sixty-five thousand nine hundred eleven' WHERE a=11327;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-nine' WHERE a=11328;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-nine' WHERE a=11329;\nUPDATE t2 SET c='twelve thousand ten' WHERE a=11330;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty' WHERE a=11331;\nUPDATE t2 SET c='forty thousand one hundred three' WHERE a=11332;\nUPDATE t2 SET c='thirty-six thousand four hundred forty-nine' WHERE a=11333;\nUPDATE t2 SET c='thirty-three thousand six hundred four' WHERE a=11334;\nUPDATE t2 SET c='eleven thousand five hundred nine' WHERE a=11335;\nUPDATE t2 SET c='fifty-eight thousand thirty-eight' WHERE a=11336;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-five' WHERE a=11337;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-eight' WHERE a=11338;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-nine' WHERE a=11339;\nUPDATE t2 SET c='twenty-nine thousand ninety-one' WHERE a=11340;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty-three' WHERE a=11341;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixteen' WHERE a=11342;\nUPDATE t2 SET c='eighty-seven thousand three hundred twenty-three' WHERE a=11343;\nUPDATE t2 SET c='seventy-nine thousand eight hundred sixteen' WHERE a=11344;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy' WHERE a=11345;\nUPDATE t2 SET c='twenty-six thousand three hundred sixty-three' WHERE a=11346;\nUPDATE t2 SET c='twenty thousand four hundred ninety-nine' WHERE a=11347;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-one' WHERE a=11348;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-seven' WHERE a=11349;\nUPDATE t2 SET c='seventeen thousand nine hundred seventy-six' WHERE a=11350;\nUPDATE t2 SET c='five thousand six hundred fifty-five' WHERE a=11351;\nUPDATE t2 SET c='twenty-four thousand eight hundred seventy-eight' WHERE a=11352;\nUPDATE t2 SET c='ninety thousand four hundred seventy-six' WHERE a=11353;\nUPDATE t2 SET c='eighty-seven thousand five hundred seventy-one' WHERE a=11354;\nUPDATE t2 SET c='ninety-five thousand nine hundred fifty-three' WHERE a=11355;\nUPDATE t2 SET c='ninety-five thousand forty-four' WHERE a=11356;\nUPDATE t2 SET c='seven thousand four hundred eighty' WHERE a=11357;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-five' WHERE a=11358;\nUPDATE t2 SET c='forty-one thousand six hundred forty-six' WHERE a=11359;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-two' WHERE a=11360;\nUPDATE t2 SET c='fifty-one thousand seven hundred fifty-five' WHERE a=11361;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-two' WHERE a=11362;\nUPDATE t2 SET c='forty-two thousand seven hundred nineteen' WHERE a=11363;\nUPDATE t2 SET c='thirty thousand six hundred sixty-three' WHERE a=11364;\nUPDATE t2 SET c='seventy-eight thousand six hundred eighty-four' WHERE a=11365;\nUPDATE t2 SET c='eighty-three thousand ninety-six' WHERE a=11366;\nUPDATE t2 SET c='sixty-three thousand two hundred six' WHERE a=11367;\nUPDATE t2 SET c='fifty-one thousand seven hundred fifty-nine' WHERE a=11368;\nUPDATE t2 SET c='seventy-one thousand four hundred nineteen' WHERE a=11369;\nUPDATE t2 SET c='sixty-two thousand eight hundred eighty-two' WHERE a=11370;\nUPDATE t2 SET c='thirty-nine thousand seven hundred nine' WHERE a=11371;\nUPDATE t2 SET c='seventy-six thousand thirty-five' WHERE a=11372;\nUPDATE t2 SET c='sixty thousand six hundred fifty-one' WHERE a=11373;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty-one' WHERE a=11374;\nUPDATE t2 SET c='forty thousand six hundred ninety-six' WHERE a=11375;\nUPDATE t2 SET c='thirty-three thousand four hundred sixty-four' WHERE a=11376;\nUPDATE t2 SET c='seventy-four thousand four hundred forty-four' WHERE a=11377;\nUPDATE t2 SET c='five thousand nine hundred one' WHERE a=11378;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-one' WHERE a=11379;\nUPDATE t2 SET c='seventy-one thousand three hundred seventy-eight' WHERE a=11380;\nUPDATE t2 SET c='twenty-six thousand sixty-nine' WHERE a=11381;\nUPDATE t2 SET c='sixty-four thousand four hundred eighty-seven' WHERE a=11382;\nUPDATE t2 SET c='ninety thousand seven hundred ninety-four' WHERE a=11383;\nUPDATE t2 SET c='twenty-seven thousand one' WHERE a=11384;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-nine' WHERE a=11385;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-six' WHERE a=11386;\nUPDATE t2 SET c='fifteen thousand nine hundred ninety-three' WHERE a=11387;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-five' WHERE a=11388;\nUPDATE t2 SET c='sixty-three thousand four hundred eighteen' WHERE a=11389;\nUPDATE t2 SET c='ten thousand five hundred forty-three' WHERE a=11390;\nUPDATE t2 SET c='forty thousand three hundred eighty-one' WHERE a=11391;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=11392;\nUPDATE t2 SET c='forty-seven thousand eight hundred ten' WHERE a=11393;\nUPDATE t2 SET c='eighty-nine thousand eight hundred thirty-eight' WHERE a=11394;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-seven' WHERE a=11395;\nUPDATE t2 SET c='twenty-five thousand seventy-one' WHERE a=11396;\nUPDATE t2 SET c='sixty thousand three hundred one' WHERE a=11397;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-six' WHERE a=11398;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty' WHERE a=11399;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-one' WHERE a=11400;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-three' WHERE a=11401;\nUPDATE t2 SET c='seventy-five thousand six hundred thirty-six' WHERE a=11402;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-five' WHERE a=11403;\nUPDATE t2 SET c='fourteen thousand two hundred fifty-three' WHERE a=11404;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-three' WHERE a=11405;\nUPDATE t2 SET c='eight thousand two hundred seventy-one' WHERE a=11406;\nUPDATE t2 SET c='eighty-one thousand five hundred thirty-nine' WHERE a=11407;\nUPDATE t2 SET c='sixty-six thousand eight hundred forty-eight' WHERE a=11408;\nUPDATE t2 SET c='forty-eight thousand eight hundred sixty-four' WHERE a=11409;\nUPDATE t2 SET c='thirty-one thousand seven hundred sixty-seven' WHERE a=11410;\nUPDATE t2 SET c='seventy-seven thousand three hundred fourteen' WHERE a=11411;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-nine' WHERE a=11412;\nUPDATE t2 SET c='fifty-four thousand two hundred seventy-three' WHERE a=11413;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-one' WHERE a=11414;\nUPDATE t2 SET c='ninety-one thousand three hundred six' WHERE a=11415;\nUPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=11416;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-nine' WHERE a=11417;\nUPDATE t2 SET c='eighty thousand one hundred ninety-seven' WHERE a=11418;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-nine' WHERE a=11419;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-five' WHERE a=11420;\nUPDATE t2 SET c='fifty thousand five hundred forty-one' WHERE a=11421;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty-seven' WHERE a=11422;\nUPDATE t2 SET c='twenty-five thousand five hundred seventy-eight' WHERE a=11423;\nUPDATE t2 SET c='eighty-four thousand twenty' WHERE a=11424;\nUPDATE t2 SET c='seventy-seven thousand five hundred sixty-one' WHERE a=11425;\nUPDATE t2 SET c='seven thousand seven hundred thirty' WHERE a=11426;\nUPDATE t2 SET c='thirty thousand ninety' WHERE a=11427;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-four' WHERE a=11428;\nUPDATE t2 SET c='ninety-one thousand five hundred forty-five' WHERE a=11429;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-five' WHERE a=11430;\nUPDATE t2 SET c='sixty-four thousand seven hundred fifty-seven' WHERE a=11431;\nUPDATE t2 SET c='seventy-seven thousand nine hundred nine' WHERE a=11432;\nUPDATE t2 SET c='forty-six thousand four hundred eighteen' WHERE a=11433;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-one' WHERE a=11434;\nUPDATE t2 SET c='eighty-one thousand nine hundred eight' WHERE a=11435;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty' WHERE a=11436;\nUPDATE t2 SET c='forty-three thousand one hundred twenty-eight' WHERE a=11437;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty' WHERE a=11438;\nUPDATE t2 SET c='three thousand one hundred five' WHERE a=11439;\nUPDATE t2 SET c='forty-four thousand five hundred ninety-five' WHERE a=11440;\nUPDATE t2 SET c='twenty-two thousand ninety-eight' WHERE a=11441;\nUPDATE t2 SET c='ninety-two thousand five hundred four' WHERE a=11442;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-two' WHERE a=11443;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty-nine' WHERE a=11444;\nUPDATE t2 SET c='thirty thousand two hundred seventy' WHERE a=11445;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-five' WHERE a=11446;\nUPDATE t2 SET c='six thousand seven hundred eighty' WHERE a=11447;\nUPDATE t2 SET c='eighty-two thousand twenty-seven' WHERE a=11448;\nUPDATE t2 SET c='twenty-seven thousand two hundred thirty-eight' WHERE a=11449;\nUPDATE t2 SET c='forty thousand nine hundred fifty-seven' WHERE a=11450;\nUPDATE t2 SET c='eighty-five thousand six hundred sixty-two' WHERE a=11451;\nUPDATE t2 SET c='twenty thousand two hundred sixteen' WHERE a=11452;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-five' WHERE a=11453;\nUPDATE t2 SET c='eighty-eight thousand three hundred ninety-four' WHERE a=11454;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=11455;\nUPDATE t2 SET c='sixty-one thousand four hundred three' WHERE a=11456;\nUPDATE t2 SET c='seventy-three thousand eight hundred twenty-seven' WHERE a=11457;\nUPDATE t2 SET c='thirty-one thousand seventy-four' WHERE a=11458;\nUPDATE t2 SET c='sixty-seven thousand thirty-eight' WHERE a=11459;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-two' WHERE a=11460;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-seven' WHERE a=11461;\nUPDATE t2 SET c='sixteen thousand eight hundred sixty' WHERE a=11462;\nUPDATE t2 SET c='seventy-six thousand seven hundred' WHERE a=11463;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy' WHERE a=11464;\nUPDATE t2 SET c='twenty-one thousand fifty-one' WHERE a=11465;\nUPDATE t2 SET c='seven thousand eight hundred sixty-one' WHERE a=11466;\nUPDATE t2 SET c='seventy thousand three hundred seventy-eight' WHERE a=11467;\nUPDATE t2 SET c='fifty-two thousand six hundred twenty-four' WHERE a=11468;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-five' WHERE a=11469;\nUPDATE t2 SET c='twenty-five thousand three hundred ninety' WHERE a=11470;\nUPDATE t2 SET c='six thousand three hundred fifty-one' WHERE a=11471;\nUPDATE t2 SET c='sixty thousand two hundred twenty-nine' WHERE a=11472;\nUPDATE t2 SET c='twenty-three thousand seven' WHERE a=11473;\nUPDATE t2 SET c='eighteen thousand four' WHERE a=11474;\nUPDATE t2 SET c='seventy-seven thousand six hundred five' WHERE a=11475;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-five' WHERE a=11476;\nUPDATE t2 SET c='twenty-five thousand four hundred thirteen' WHERE a=11477;\nUPDATE t2 SET c='eighty-eight thousand nine hundred sixty-eight' WHERE a=11478;\nUPDATE t2 SET c='sixty-three thousand five hundred twenty-three' WHERE a=11479;\nUPDATE t2 SET c='eighty-five thousand five hundred thirty-six' WHERE a=11480;\nUPDATE t2 SET c='seventy-eight thousand eight hundred fifty-three' WHERE a=11481;\nUPDATE t2 SET c='forty-nine thousand four hundred twenty-three' WHERE a=11482;\nUPDATE t2 SET c='twenty-five thousand three hundred twenty-six' WHERE a=11483;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-two' WHERE a=11484;\nUPDATE t2 SET c='seventy thousand one hundred sixty' WHERE a=11485;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-nine' WHERE a=11486;\nUPDATE t2 SET c='thirty-four thousand forty-three' WHERE a=11487;\nUPDATE t2 SET c='sixty-five thousand five hundred three' WHERE a=11488;\nUPDATE t2 SET c='twenty-six thousand eight hundred forty-one' WHERE a=11489;\nUPDATE t2 SET c='eighty-two thousand thirty-two' WHERE a=11490;\nUPDATE t2 SET c='seventy-five thousand seven hundred forty-five' WHERE a=11491;\nUPDATE t2 SET c='fifty-six thousand seven hundred forty-eight' WHERE a=11492;\nUPDATE t2 SET c='ninety-four thousand two hundred eighty-seven' WHERE a=11493;\nUPDATE t2 SET c='one thousand seven hundred eighty' WHERE a=11494;\nUPDATE t2 SET c='thirty-one thousand six hundred fifteen' WHERE a=11495;\nUPDATE t2 SET c='ten thousand nine hundred fifty-four' WHERE a=11496;\nUPDATE t2 SET c='seventy-five thousand seven hundred eighty-two' WHERE a=11497;\nUPDATE t2 SET c='twenty-four thousand four hundred ten' WHERE a=11498;\nUPDATE t2 SET c='fifty-eight thousand four hundred ten' WHERE a=11499;\nUPDATE t2 SET c='thirty thousand three hundred twenty-six' WHERE a=11500;\nUPDATE t2 SET c='six hundred forty-five' WHERE a=11501;\nUPDATE t2 SET c='seventy-four thousand one hundred sixty-eight' WHERE a=11502;\nUPDATE t2 SET c='fifty-two thousand eight hundred forty-six' WHERE a=11503;\nUPDATE t2 SET c='thirty-three thousand three hundred thirty-six' WHERE a=11504;\nUPDATE t2 SET c='eighty-four thousand four hundred eight' WHERE a=11505;\nUPDATE t2 SET c='forty-seven thousand five hundred fifteen' WHERE a=11506;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-two' WHERE a=11507;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty' WHERE a=11508;\nUPDATE t2 SET c='eighty-one thousand six hundred twelve' WHERE a=11509;\nUPDATE t2 SET c='sixty-three thousand four hundred nine' WHERE a=11510;\nUPDATE t2 SET c='sixty-eight thousand four hundred sixty-five' WHERE a=11511;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty' WHERE a=11512;\nUPDATE t2 SET c='seventy thousand five hundred sixty-eight' WHERE a=11513;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-seven' WHERE a=11514;\nUPDATE t2 SET c='sixty-one thousand three hundred three' WHERE a=11515;\nUPDATE t2 SET c='sixty-five thousand four hundred twelve' WHERE a=11516;\nUPDATE t2 SET c='thirty thousand three hundred two' WHERE a=11517;\nUPDATE t2 SET c='fifty-seven thousand forty-one' WHERE a=11518;\nUPDATE t2 SET c='eighty-seven thousand five hundred ninety-nine' WHERE a=11519;\nUPDATE t2 SET c='one thousand one hundred thirty-four' WHERE a=11520;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-seven' WHERE a=11521;\nUPDATE t2 SET c='forty-nine thousand four hundred sixty-nine' WHERE a=11522;\nUPDATE t2 SET c='eighty-four thousand nine hundred sixty' WHERE a=11523;\nUPDATE t2 SET c='forty-two thousand one hundred seventeen' WHERE a=11524;\nUPDATE t2 SET c='sixty-five thousand six hundred eighty-two' WHERE a=11525;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eighty-three' WHERE a=11526;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-seven' WHERE a=11527;\nUPDATE t2 SET c='sixty-two thousand one hundred eight' WHERE a=11528;\nUPDATE t2 SET c='fifty-five thousand three hundred forty-seven' WHERE a=11529;\nUPDATE t2 SET c='twenty-eight thousand six hundred nineteen' WHERE a=11530;\nUPDATE t2 SET c='nineteen thousand nine hundred forty' WHERE a=11531;\nUPDATE t2 SET c='eighty-three thousand seven hundred seventy-eight' WHERE a=11532;\nUPDATE t2 SET c='eighty thousand six hundred sixty-four' WHERE a=11533;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-five' WHERE a=11534;\nUPDATE t2 SET c='forty-six thousand one hundred nine' WHERE a=11535;\nUPDATE t2 SET c='forty thousand twenty-two' WHERE a=11536;\nUPDATE t2 SET c='sixteen thousand one hundred eighty-four' WHERE a=11537;\nUPDATE t2 SET c='fifty-seven thousand three hundred two' WHERE a=11538;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-five' WHERE a=11539;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-six' WHERE a=11540;\nUPDATE t2 SET c='twenty thousand nine hundred sixteen' WHERE a=11541;\nUPDATE t2 SET c='seventy-six thousand thirty-three' WHERE a=11542;\nUPDATE t2 SET c='one thousand seven hundred thirty-six' WHERE a=11543;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-two' WHERE a=11544;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-five' WHERE a=11545;\nUPDATE t2 SET c='eighty-seven thousand five hundred two' WHERE a=11546;\nUPDATE t2 SET c='three thousand eight hundred fifty-two' WHERE a=11547;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-two' WHERE a=11548;\nUPDATE t2 SET c='thirty-seven thousand twenty-one' WHERE a=11549;\nUPDATE t2 SET c='twenty-nine thousand seven hundred ninety-three' WHERE a=11550;\nUPDATE t2 SET c='fifty thousand six hundred fifty-one' WHERE a=11551;\nUPDATE t2 SET c='ninety-nine thousand nine hundred seventy-eight' WHERE a=11552;\nUPDATE t2 SET c='seventy-four thousand two hundred forty-six' WHERE a=11553;\nUPDATE t2 SET c='sixty-five thousand two hundred seventy-seven' WHERE a=11554;\nUPDATE t2 SET c='twenty-two thousand forty-five' WHERE a=11555;\nUPDATE t2 SET c='sixty-seven thousand sixty-one' WHERE a=11556;\nUPDATE t2 SET c='thirty thousand forty-three' WHERE a=11557;\nUPDATE t2 SET c='one thousand eight hundred sixty-three' WHERE a=11558;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-six' WHERE a=11559;\nUPDATE t2 SET c='ten thousand six hundred sixty-one' WHERE a=11560;\nUPDATE t2 SET c='forty-two thousand one hundred seventy-two' WHERE a=11561;\nUPDATE t2 SET c='forty-two thousand three hundred forty-five' WHERE a=11562;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-two' WHERE a=11563;\nUPDATE t2 SET c='eight hundred five' WHERE a=11564;\nUPDATE t2 SET c='seventy-eight thousand fifty-eight' WHERE a=11565;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifteen' WHERE a=11566;\nUPDATE t2 SET c='fifty-two thousand eighty-nine' WHERE a=11567;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-four' WHERE a=11568;\nUPDATE t2 SET c='ninety-two thousand two hundred seventy-five' WHERE a=11569;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-one' WHERE a=11570;\nUPDATE t2 SET c='nineteen thousand five hundred forty-nine' WHERE a=11571;\nUPDATE t2 SET c='ninety-nine thousand three hundred eighty-six' WHERE a=11572;\nUPDATE t2 SET c='ten thousand thirty-two' WHERE a=11573;\nUPDATE t2 SET c='seventy-two thousand two hundred eighteen' WHERE a=11574;\nUPDATE t2 SET c='ten thousand four hundred twelve' WHERE a=11575;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twelve' WHERE a=11576;\nUPDATE t2 SET c='twenty-one thousand nine hundred seventy' WHERE a=11577;\nUPDATE t2 SET c='fifty-five thousand four hundred sixty-seven' WHERE a=11578;\nUPDATE t2 SET c='seventy thousand nine hundred thirty' WHERE a=11579;\nUPDATE t2 SET c='twenty-five thousand seven hundred four' WHERE a=11580;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-two' WHERE a=11581;\nUPDATE t2 SET c='seventy thousand two hundred ninety-nine' WHERE a=11582;\nUPDATE t2 SET c='seventy-three thousand two hundred sixty-five' WHERE a=11583;\nUPDATE t2 SET c='eighty-eight thousand two hundred seventy-nine' WHERE a=11584;\nUPDATE t2 SET c='fifty-seven thousand fifty-two' WHERE a=11585;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty' WHERE a=11586;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=11587;\nUPDATE t2 SET c='seven thousand three' WHERE a=11588;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-nine' WHERE a=11589;\nUPDATE t2 SET c='sixty-six thousand seventy-one' WHERE a=11590;\nUPDATE t2 SET c='seventy-six thousand sixty-seven' WHERE a=11591;\nUPDATE t2 SET c='fifty-eight thousand two hundred four' WHERE a=11592;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty-five' WHERE a=11593;\nUPDATE t2 SET c='four hundred seventy-one' WHERE a=11594;\nUPDATE t2 SET c='fifty-five thousand fifty' WHERE a=11595;\nUPDATE t2 SET c='three thousand two hundred ninety-four' WHERE a=11596;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety-six' WHERE a=11597;\nUPDATE t2 SET c='two thousand six hundred sixty-five' WHERE a=11598;\nUPDATE t2 SET c='eight thousand seven hundred seventeen' WHERE a=11599;\nUPDATE t2 SET c='forty-seven thousand seven hundred ninety' WHERE a=11600;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy-nine' WHERE a=11601;\nUPDATE t2 SET c='ninety-two thousand five hundred eighty-seven' WHERE a=11602;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty' WHERE a=11603;\nUPDATE t2 SET c='three thousand nine hundred fifty-five' WHERE a=11604;\nUPDATE t2 SET c='twenty-two thousand nine hundred one' WHERE a=11605;\nUPDATE t2 SET c='thirty-three thousand nine hundred seventy-two' WHERE a=11606;\nUPDATE t2 SET c='three thousand eight hundred twenty-eight' WHERE a=11607;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty' WHERE a=11608;\nUPDATE t2 SET c='twenty-four thousand five hundred seven' WHERE a=11609;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventy-one' WHERE a=11610;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety-four' WHERE a=11611;\nUPDATE t2 SET c='sixty-three thousand five hundred eighty-one' WHERE a=11612;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-three' WHERE a=11613;\nUPDATE t2 SET c='forty-one thousand one hundred twenty-eight' WHERE a=11614;\nUPDATE t2 SET c='eighty-nine thousand eight hundred forty' WHERE a=11615;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-five' WHERE a=11616;\nUPDATE t2 SET c='sixty-two thousand six hundred nineteen' WHERE a=11617;\nUPDATE t2 SET c='twenty-eight thousand three hundred twenty-seven' WHERE a=11618;\nUPDATE t2 SET c='twenty-four thousand eighty-nine' WHERE a=11619;\nUPDATE t2 SET c='forty-four thousand five hundred forty-one' WHERE a=11620;\nUPDATE t2 SET c='sixty-seven thousand three hundred ninety-nine' WHERE a=11621;\nUPDATE t2 SET c='ninety-nine thousand two hundred thirteen' WHERE a=11622;\nUPDATE t2 SET c='ninety-nine thousand nine hundred sixty-three' WHERE a=11623;\nUPDATE t2 SET c='seventy-three thousand five hundred nine' WHERE a=11624;\nUPDATE t2 SET c='one thousand seventy-two' WHERE a=11625;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-six' WHERE a=11626;\nUPDATE t2 SET c='sixty-four thousand six hundred forty-three' WHERE a=11627;\nUPDATE t2 SET c='fifty-four thousand' WHERE a=11628;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-eight' WHERE a=11629;\nUPDATE t2 SET c='seventy thousand three hundred twenty-three' WHERE a=11630;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-five' WHERE a=11631;\nUPDATE t2 SET c='thirty-three thousand eight hundred two' WHERE a=11632;\nUPDATE t2 SET c='two thousand one hundred thirty-seven' WHERE a=11633;\nUPDATE t2 SET c='twenty-two thousand two hundred fourteen' WHERE a=11634;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-six' WHERE a=11635;\nUPDATE t2 SET c='thirty-two thousand eight hundred eighty-two' WHERE a=11636;\nUPDATE t2 SET c='forty-one thousand two hundred sixty' WHERE a=11637;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-eight' WHERE a=11638;\nUPDATE t2 SET c='forty thousand nine hundred ninety-six' WHERE a=11639;\nUPDATE t2 SET c='ninety-one thousand eight hundred forty-eight' WHERE a=11640;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-nine' WHERE a=11641;\nUPDATE t2 SET c='nine thousand two hundred seventy-six' WHERE a=11642;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty-one' WHERE a=11643;\nUPDATE t2 SET c='thirty-two thousand three hundred thirty-six' WHERE a=11644;\nUPDATE t2 SET c='five thousand three hundred thirteen' WHERE a=11645;\nUPDATE t2 SET c='four hundred twenty-six' WHERE a=11646;\nUPDATE t2 SET c='fifteen thousand ten' WHERE a=11647;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-seven' WHERE a=11648;\nUPDATE t2 SET c='thirty-four thousand ninety-four' WHERE a=11649;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-five' WHERE a=11650;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-one' WHERE a=11651;\nUPDATE t2 SET c='forty-four thousand seven hundred ninety-four' WHERE a=11652;\nUPDATE t2 SET c='seventy-eight thousand one hundred forty-eight' WHERE a=11653;\nUPDATE t2 SET c='twenty-five thousand eight hundred ninety-two' WHERE a=11654;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fifty-one' WHERE a=11655;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty' WHERE a=11656;\nUPDATE t2 SET c='seventy-six thousand twenty-five' WHERE a=11657;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixty-two' WHERE a=11658;\nUPDATE t2 SET c='seventy-five thousand fifty-nine' WHERE a=11659;\nUPDATE t2 SET c='ninety-five thousand three hundred seventy-five' WHERE a=11660;\nUPDATE t2 SET c='ninety-one thousand seven hundred twenty-four' WHERE a=11661;\nUPDATE t2 SET c='seventy-five thousand seven hundred fifty-seven' WHERE a=11662;\nUPDATE t2 SET c='forty-five thousand four hundred ninety-three' WHERE a=11663;\nUPDATE t2 SET c='eleven thousand five hundred eighty-five' WHERE a=11664;\nUPDATE t2 SET c='one thousand five hundred thirty-six' WHERE a=11665;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty-five' WHERE a=11666;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-one' WHERE a=11667;\nUPDATE t2 SET c='two thousand four hundred twenty-five' WHERE a=11668;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty-two' WHERE a=11669;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-four' WHERE a=11670;\nUPDATE t2 SET c='fifty-eight thousand three hundred eighty-five' WHERE a=11671;\nUPDATE t2 SET c='seventy-four thousand one hundred fifty-three' WHERE a=11672;\nUPDATE t2 SET c='thirty-one thousand two hundred twenty-six' WHERE a=11673;\nUPDATE t2 SET c='four thousand one' WHERE a=11674;\nUPDATE t2 SET c='seventy-one thousand four hundred forty-four' WHERE a=11675;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty-five' WHERE a=11676;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-six' WHERE a=11677;\nUPDATE t2 SET c='forty thousand two hundred fifty-five' WHERE a=11678;\nUPDATE t2 SET c='ninety-seven thousand one hundred sixty-six' WHERE a=11679;\nUPDATE t2 SET c='fifty-four thousand two hundred ninety-nine' WHERE a=11680;\nUPDATE t2 SET c='nine thousand fifty-six' WHERE a=11681;\nUPDATE t2 SET c='fifty-six thousand seven hundred thirty-five' WHERE a=11682;\nUPDATE t2 SET c='three thousand seven hundred forty' WHERE a=11683;\nUPDATE t2 SET c='eighty-nine thousand one' WHERE a=11684;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty' WHERE a=11685;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-one' WHERE a=11686;\nUPDATE t2 SET c='fourteen thousand two hundred twenty-one' WHERE a=11687;\nUPDATE t2 SET c='fifty-five thousand one hundred seventy-seven' WHERE a=11688;\nUPDATE t2 SET c='twenty-four thousand one hundred eleven' WHERE a=11689;\nUPDATE t2 SET c='one thousand nine hundred eighty-one' WHERE a=11690;\nUPDATE t2 SET c='eighty thousand six hundred thirty-one' WHERE a=11691;\nUPDATE t2 SET c='forty-seven thousand thirty-six' WHERE a=11692;\nUPDATE t2 SET c='fifteen thousand five hundred three' WHERE a=11693;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirty-seven' WHERE a=11694;\nUPDATE t2 SET c='ninety-two thousand two hundred forty' WHERE a=11695;\nUPDATE t2 SET c='ninety-three thousand one hundred thirty' WHERE a=11696;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-seven' WHERE a=11697;\nUPDATE t2 SET c='seventeen thousand twenty-three' WHERE a=11698;\nUPDATE t2 SET c='ninety-seven thousand six hundred nine' WHERE a=11699;\nUPDATE t2 SET c='seventy-four thousand eight hundred eighty-seven' WHERE a=11700;\nUPDATE t2 SET c='nineteen thousand eight hundred forty-three' WHERE a=11701;\nUPDATE t2 SET c='forty-four thousand nine hundred fifteen' WHERE a=11702;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-nine' WHERE a=11703;\nUPDATE t2 SET c='eighty-three thousand five hundred nine' WHERE a=11704;\nUPDATE t2 SET c='seventy thousand five hundred seventy-eight' WHERE a=11705;\nUPDATE t2 SET c='twenty-eight thousand seven hundred six' WHERE a=11706;\nUPDATE t2 SET c='ninety-one thousand three hundred thirteen' WHERE a=11707;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-five' WHERE a=11708;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-six' WHERE a=11709;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-three' WHERE a=11710;\nUPDATE t2 SET c='seven thousand six hundred forty-six' WHERE a=11711;\nUPDATE t2 SET c='forty-seven thousand one hundred thirty-seven' WHERE a=11712;\nUPDATE t2 SET c='fifteen thousand eight hundred ninety-six' WHERE a=11713;\nUPDATE t2 SET c='one hundred five' WHERE a=11714;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-four' WHERE a=11715;\nUPDATE t2 SET c='forty-six thousand one hundred seventy-seven' WHERE a=11716;\nUPDATE t2 SET c='twenty thousand three hundred seventy-seven' WHERE a=11717;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-eight' WHERE a=11718;\nUPDATE t2 SET c='eight thousand six hundred ninety-three' WHERE a=11719;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-seven' WHERE a=11720;\nUPDATE t2 SET c='fifteen thousand three hundred fifty-two' WHERE a=11721;\nUPDATE t2 SET c='seventy-eight thousand eighty-three' WHERE a=11722;\nUPDATE t2 SET c='seven thousand six hundred eight' WHERE a=11723;\nUPDATE t2 SET c='seventy-eight thousand three hundred eleven' WHERE a=11724;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-one' WHERE a=11725;\nUPDATE t2 SET c='seventeen thousand three hundred seven' WHERE a=11726;\nUPDATE t2 SET c='sixteen thousand six hundred twenty-two' WHERE a=11727;\nUPDATE t2 SET c='ninety-six thousand thirty-four' WHERE a=11728;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-two' WHERE a=11729;\nUPDATE t2 SET c='forty-seven thousand four hundred sixty-nine' WHERE a=11730;\nUPDATE t2 SET c='twenty-one thousand two hundred twenty-four' WHERE a=11731;\nUPDATE t2 SET c='sixty-six thousand six hundred thirty-nine' WHERE a=11732;\nUPDATE t2 SET c='eight thousand four hundred fifteen' WHERE a=11733;\nUPDATE t2 SET c='sixty-four thousand six hundred ninety-six' WHERE a=11734;\nUPDATE t2 SET c='sixty-seven thousand four hundred sixty-three' WHERE a=11735;\nUPDATE t2 SET c='forty-eight thousand three hundred eleven' WHERE a=11736;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty' WHERE a=11737;\nUPDATE t2 SET c='eight thousand two hundred sixty-five' WHERE a=11738;\nUPDATE t2 SET c='ninety-six thousand one hundred eighty-seven' WHERE a=11739;\nUPDATE t2 SET c='sixteen thousand four hundred thirty-two' WHERE a=11740;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-one' WHERE a=11741;\nUPDATE t2 SET c='fifty-seven thousand four hundred eighty-three' WHERE a=11742;\nUPDATE t2 SET c='forty-one thousand three hundred twenty-one' WHERE a=11743;\nUPDATE t2 SET c='eighty-three thousand five hundred eighty-six' WHERE a=11744;\nUPDATE t2 SET c='seventy-five thousand four hundred eighteen' WHERE a=11745;\nUPDATE t2 SET c='thirty-six thousand twenty-seven' WHERE a=11746;\nUPDATE t2 SET c='sixty-two thousand two hundred seventy-six' WHERE a=11747;\nUPDATE t2 SET c='thirty-nine thousand eight hundred seventy-three' WHERE a=11748;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-three' WHERE a=11749;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-nine' WHERE a=11750;\nUPDATE t2 SET c='seventeen thousand eight hundred ninety-eight' WHERE a=11751;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty-one' WHERE a=11752;\nUPDATE t2 SET c='ten thousand eight' WHERE a=11753;\nUPDATE t2 SET c='sixty-three thousand five hundred sixty-nine' WHERE a=11754;\nUPDATE t2 SET c='fifty-two thousand two hundred six' WHERE a=11755;\nUPDATE t2 SET c='seventy-two thousand five hundred thirty-three' WHERE a=11756;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-seven' WHERE a=11757;\nUPDATE t2 SET c='thirty-four thousand one hundred fifty-seven' WHERE a=11758;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-five' WHERE a=11759;\nUPDATE t2 SET c='sixty-five thousand eight hundred fifty-two' WHERE a=11760;\nUPDATE t2 SET c='two thousand five hundred fifty-three' WHERE a=11761;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventy-one' WHERE a=11762;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty-nine' WHERE a=11763;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty-three' WHERE a=11764;\nUPDATE t2 SET c='thirty thousand five hundred forty-one' WHERE a=11765;\nUPDATE t2 SET c='five thousand six hundred ninety-nine' WHERE a=11766;\nUPDATE t2 SET c='thirty-three thousand three hundred thirty-five' WHERE a=11767;\nUPDATE t2 SET c='one thousand four hundred ninety-three' WHERE a=11768;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-nine' WHERE a=11769;\nUPDATE t2 SET c='fifteen thousand eight hundred sixty-two' WHERE a=11770;\nUPDATE t2 SET c='seventy-three thousand four hundred five' WHERE a=11771;\nUPDATE t2 SET c='twenty-one thousand two hundred sixteen' WHERE a=11772;\nUPDATE t2 SET c='seven thousand four hundred ninety-five' WHERE a=11773;\nUPDATE t2 SET c='seventy thousand six hundred eighty' WHERE a=11774;\nUPDATE t2 SET c='twenty-five thousand seven hundred eighty-nine' WHERE a=11775;\nUPDATE t2 SET c='three thousand two hundred four' WHERE a=11776;\nUPDATE t2 SET c='sixty-three thousand five hundred eighty-one' WHERE a=11777;\nUPDATE t2 SET c='eighty-four thousand eight hundred five' WHERE a=11778;\nUPDATE t2 SET c='six thousand eight hundred eighty-five' WHERE a=11779;\nUPDATE t2 SET c='sixty-six thousand nine hundred fourteen' WHERE a=11780;\nUPDATE t2 SET c='eighty thousand two hundred twenty-nine' WHERE a=11781;\nUPDATE t2 SET c='fifty thousand four hundred twenty-five' WHERE a=11782;\nUPDATE t2 SET c='sixty thousand eight hundred two' WHERE a=11783;\nUPDATE t2 SET c='sixty-six thousand three hundred eighty-four' WHERE a=11784;\nUPDATE t2 SET c='eighty-five thousand three hundred ninety-seven' WHERE a=11785;\nUPDATE t2 SET c='fifteen thousand seven hundred twelve' WHERE a=11786;\nUPDATE t2 SET c='seventy thousand five hundred twenty-six' WHERE a=11787;\nUPDATE t2 SET c='forty thousand sixty-five' WHERE a=11788;\nUPDATE t2 SET c='forty-six thousand sixty-two' WHERE a=11789;\nUPDATE t2 SET c='thirty-three thousand five hundred six' WHERE a=11790;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-eight' WHERE a=11791;\nUPDATE t2 SET c='eighty-one thousand four hundred twenty-three' WHERE a=11792;\nUPDATE t2 SET c='thirty thousand three hundred seventeen' WHERE a=11793;\nUPDATE t2 SET c='eighty-nine thousand four hundred seventy-six' WHERE a=11794;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-eight' WHERE a=11795;\nUPDATE t2 SET c='five thousand nine hundred eighty-nine' WHERE a=11796;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-two' WHERE a=11797;\nUPDATE t2 SET c='sixty-seven thousand nine hundred seventy' WHERE a=11798;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-two' WHERE a=11799;\nUPDATE t2 SET c='forty-four thousand seven hundred seventy-three' WHERE a=11800;\nUPDATE t2 SET c='eleven thousand two hundred forty-two' WHERE a=11801;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventy' WHERE a=11802;\nUPDATE t2 SET c='eighty-seven thousand seven hundred forty-one' WHERE a=11803;\nUPDATE t2 SET c='seventy-three thousand six hundred seventeen' WHERE a=11804;\nUPDATE t2 SET c='seventy-nine thousand eight hundred twenty-seven' WHERE a=11805;\nUPDATE t2 SET c='twenty-six thousand nine hundred sixty-two' WHERE a=11806;\nUPDATE t2 SET c='eighty-nine thousand eight hundred sixty-three' WHERE a=11807;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty-one' WHERE a=11808;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-seven' WHERE a=11809;\nUPDATE t2 SET c='thirty-five thousand five hundred two' WHERE a=11810;\nUPDATE t2 SET c='forty-nine thousand sixty' WHERE a=11811;\nUPDATE t2 SET c='fifty-seven thousand one hundred ninety' WHERE a=11812;\nUPDATE t2 SET c='sixty thousand six hundred forty-one' WHERE a=11813;\nUPDATE t2 SET c='sixty-five thousand four hundred forty-eight' WHERE a=11814;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy-eight' WHERE a=11815;\nUPDATE t2 SET c='eighteen thousand three hundred four' WHERE a=11816;\nUPDATE t2 SET c='sixty-five thousand four hundred one' WHERE a=11817;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-six' WHERE a=11818;\nUPDATE t2 SET c='fifty thousand eighty-two' WHERE a=11819;\nUPDATE t2 SET c='five thousand ninety' WHERE a=11820;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty-seven' WHERE a=11821;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-four' WHERE a=11822;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-six' WHERE a=11823;\nUPDATE t2 SET c='fifty-eight thousand one hundred five' WHERE a=11824;\nUPDATE t2 SET c='twenty-nine thousand nine hundred forty-eight' WHERE a=11825;\nUPDATE t2 SET c='thirty-nine thousand six hundred fifteen' WHERE a=11826;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-eight' WHERE a=11827;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirteen' WHERE a=11828;\nUPDATE t2 SET c='thirty-six thousand four' WHERE a=11829;\nUPDATE t2 SET c='eighty-seven thousand forty-eight' WHERE a=11830;\nUPDATE t2 SET c='thirteen thousand four hundred seven' WHERE a=11831;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-one' WHERE a=11832;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-two' WHERE a=11833;\nUPDATE t2 SET c='thirty-six thousand five hundred fifty-one' WHERE a=11834;\nUPDATE t2 SET c='eighty-three thousand seventy-seven' WHERE a=11835;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-six' WHERE a=11836;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty-four' WHERE a=11837;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-two' WHERE a=11838;\nUPDATE t2 SET c='forty-five thousand sixty-five' WHERE a=11839;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-four' WHERE a=11840;\nUPDATE t2 SET c='seventy-two thousand nine hundred eighty-three' WHERE a=11841;\nUPDATE t2 SET c='four thousand six hundred forty-one' WHERE a=11842;\nUPDATE t2 SET c='sixty-four thousand six hundred eighty-seven' WHERE a=11843;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty' WHERE a=11844;\nUPDATE t2 SET c='thirty-four thousand five hundred forty-nine' WHERE a=11845;\nUPDATE t2 SET c='eighty-one thousand seventy-three' WHERE a=11846;\nUPDATE t2 SET c='twenty-two thousand five hundred thirty-two' WHERE a=11847;\nUPDATE t2 SET c='thirty-six thousand five hundred seventy-two' WHERE a=11848;\nUPDATE t2 SET c='ninety thousand one hundred four' WHERE a=11849;\nUPDATE t2 SET c='seventy thousand four hundred ninety-nine' WHERE a=11850;\nUPDATE t2 SET c='twenty-four thousand four hundred sixty-seven' WHERE a=11851;\nUPDATE t2 SET c='sixty-two thousand two hundred forty' WHERE a=11852;\nUPDATE t2 SET c='thirty-seven thousand four hundred forty-four' WHERE a=11853;\nUPDATE t2 SET c='twelve thousand forty-one' WHERE a=11854;\nUPDATE t2 SET c='forty-two thousand five hundred forty-seven' WHERE a=11855;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-six' WHERE a=11856;\nUPDATE t2 SET c='fifty-six thousand seven hundred twenty-two' WHERE a=11857;\nUPDATE t2 SET c='nine thousand three hundred eleven' WHERE a=11858;\nUPDATE t2 SET c='thirty-nine thousand three hundred eighty-three' WHERE a=11859;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty-one' WHERE a=11860;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-seven' WHERE a=11861;\nUPDATE t2 SET c='fifty-three thousand six hundred' WHERE a=11862;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-eight' WHERE a=11863;\nUPDATE t2 SET c='forty-six thousand eight hundred sixteen' WHERE a=11864;\nUPDATE t2 SET c='thirty-four thousand three hundred fifty-five' WHERE a=11865;\nUPDATE t2 SET c='sixty-three thousand three hundred forty-nine' WHERE a=11866;\nUPDATE t2 SET c='sixty-eight thousand eight hundred thirty-six' WHERE a=11867;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=11868;\nUPDATE t2 SET c='seventy-seven thousand seven hundred thirty' WHERE a=11869;\nUPDATE t2 SET c='fifty-two thousand thirty-nine' WHERE a=11870;\nUPDATE t2 SET c='sixty-eight thousand five hundred twenty-nine' WHERE a=11871;\nUPDATE t2 SET c='twenty-one thousand nineteen' WHERE a=11872;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifteen' WHERE a=11873;\nUPDATE t2 SET c='fifty thousand seven hundred twelve' WHERE a=11874;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirty-seven' WHERE a=11875;\nUPDATE t2 SET c='eighty-four thousand ninety-seven' WHERE a=11876;\nUPDATE t2 SET c='ninety-nine thousand eight hundred seventy-two' WHERE a=11877;\nUPDATE t2 SET c='ninety-eight thousand six hundred thirty' WHERE a=11878;\nUPDATE t2 SET c='eight thousand one hundred ninety-nine' WHERE a=11879;\nUPDATE t2 SET c='eighty-two thousand twenty-two' WHERE a=11880;\nUPDATE t2 SET c='sixty-three thousand six hundred fourteen' WHERE a=11881;\nUPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=11882;\nUPDATE t2 SET c='seventy-four thousand eight hundred thirty-four' WHERE a=11883;\nUPDATE t2 SET c='thirty-four thousand six hundred eighty-eight' WHERE a=11884;\nUPDATE t2 SET c='forty-five thousand fifty' WHERE a=11885;\nUPDATE t2 SET c='eighty-three thousand three hundred seventy' WHERE a=11886;\nUPDATE t2 SET c='nine thousand two hundred ten' WHERE a=11887;\nUPDATE t2 SET c='eighty-five thousand eight hundred eighty-four' WHERE a=11888;\nUPDATE t2 SET c='thirteen thousand two hundred ninety-four' WHERE a=11889;\nUPDATE t2 SET c='thirty-one thousand six hundred sixty-one' WHERE a=11890;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-three' WHERE a=11891;\nUPDATE t2 SET c='sixty-eight thousand four hundred thirty-one' WHERE a=11892;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-five' WHERE a=11893;\nUPDATE t2 SET c='forty-nine thousand one hundred eighty-seven' WHERE a=11894;\nUPDATE t2 SET c='forty-three thousand four hundred fifty' WHERE a=11895;\nUPDATE t2 SET c='forty-nine thousand six hundred eight' WHERE a=11896;\nUPDATE t2 SET c='forty-one thousand five hundred thirty-six' WHERE a=11897;\nUPDATE t2 SET c='sixty-nine thousand three hundred fifty-seven' WHERE a=11898;\nUPDATE t2 SET c='sixty-five thousand two hundred sixty-three' WHERE a=11899;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-seven' WHERE a=11900;\nUPDATE t2 SET c='fifty thousand four hundred eight' WHERE a=11901;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-nine' WHERE a=11902;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-six' WHERE a=11903;\nUPDATE t2 SET c='thirty-four thousand six hundred twelve' WHERE a=11904;\nUPDATE t2 SET c='seventeen thousand one hundred eighty-three' WHERE a=11905;\nUPDATE t2 SET c='sixty-seven thousand five hundred thirty-seven' WHERE a=11906;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-five' WHERE a=11907;\nUPDATE t2 SET c='six thousand forty-two' WHERE a=11908;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty-nine' WHERE a=11909;\nUPDATE t2 SET c='fifty-two thousand nine hundred five' WHERE a=11910;\nUPDATE t2 SET c='twenty-two thousand eight hundred sixty-one' WHERE a=11911;\nUPDATE t2 SET c='twenty thousand three hundred thirty-seven' WHERE a=11912;\nUPDATE t2 SET c='forty-three thousand ninety-eight' WHERE a=11913;\nUPDATE t2 SET c='thirty-five thousand six hundred twenty-three' WHERE a=11914;\nUPDATE t2 SET c='fifty thousand eight hundred fourteen' WHERE a=11915;\nUPDATE t2 SET c='seventy-two thousand three hundred eight' WHERE a=11916;\nUPDATE t2 SET c='eighty-seven thousand three hundred one' WHERE a=11917;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-five' WHERE a=11918;\nUPDATE t2 SET c='ninety-six thousand nine hundred eight' WHERE a=11919;\nUPDATE t2 SET c='sixty thousand three hundred seven' WHERE a=11920;\nUPDATE t2 SET c='seventy-seven thousand thirty-five' WHERE a=11921;\nUPDATE t2 SET c='eighty-nine thousand nine hundred thirty-eight' WHERE a=11922;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-three' WHERE a=11923;\nUPDATE t2 SET c='seventy-five thousand six hundred thirty-eight' WHERE a=11924;\nUPDATE t2 SET c='thirty-one thousand thirty-eight' WHERE a=11925;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-three' WHERE a=11926;\nUPDATE t2 SET c='sixty-nine thousand six hundred twenty-nine' WHERE a=11927;\nUPDATE t2 SET c='eighty-four thousand one hundred twenty-nine' WHERE a=11928;\nUPDATE t2 SET c='fifty-two thousand five hundred seven' WHERE a=11929;\nUPDATE t2 SET c='three thousand two hundred eighty-five' WHERE a=11930;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-two' WHERE a=11931;\nUPDATE t2 SET c='twenty-nine thousand five hundred seventy-five' WHERE a=11932;\nUPDATE t2 SET c='five thousand eight hundred ninety-six' WHERE a=11933;\nUPDATE t2 SET c='forty-four thousand eight hundred eighty-three' WHERE a=11934;\nUPDATE t2 SET c='seventy-eight thousand five hundred thirty-eight' WHERE a=11935;\nUPDATE t2 SET c='seventy-seven thousand seven hundred twenty-six' WHERE a=11936;\nUPDATE t2 SET c='seventy-seven thousand two hundred forty-four' WHERE a=11937;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty-seven' WHERE a=11938;\nUPDATE t2 SET c='fifty-six thousand five hundred seventy-four' WHERE a=11939;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-eight' WHERE a=11940;\nUPDATE t2 SET c='thirty-four thousand ninety-five' WHERE a=11941;\nUPDATE t2 SET c='seven thousand nine hundred ninety-seven' WHERE a=11942;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-two' WHERE a=11943;\nUPDATE t2 SET c='forty-seven thousand two hundred sixty' WHERE a=11944;\nUPDATE t2 SET c='twenty-seven thousand four hundred eleven' WHERE a=11945;\nUPDATE t2 SET c='seventeen thousand five hundred seventy-eight' WHERE a=11946;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-eight' WHERE a=11947;\nUPDATE t2 SET c='eighty-nine thousand seven hundred fourteen' WHERE a=11948;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-nine' WHERE a=11949;\nUPDATE t2 SET c='twenty-two thousand five hundred seventy-six' WHERE a=11950;\nUPDATE t2 SET c='seventy-two thousand three hundred sixteen' WHERE a=11951;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=11952;\nUPDATE t2 SET c='thirty-one thousand three hundred forty-four' WHERE a=11953;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty-three' WHERE a=11954;\nUPDATE t2 SET c='thirteen thousand nine hundred ninety-nine' WHERE a=11955;\nUPDATE t2 SET c='nine thousand four hundred twenty-six' WHERE a=11956;\nUPDATE t2 SET c='twelve thousand three hundred sixty-six' WHERE a=11957;\nUPDATE t2 SET c='two hundred forty-four' WHERE a=11958;\nUPDATE t2 SET c='two hundred eighty-nine' WHERE a=11959;\nUPDATE t2 SET c='thirty thousand one hundred five' WHERE a=11960;\nUPDATE t2 SET c='thirty-five thousand six hundred two' WHERE a=11961;\nUPDATE t2 SET c='thirty-three thousand eight hundred nine' WHERE a=11962;\nUPDATE t2 SET c='eighty-one thousand two hundred thirty-nine' WHERE a=11963;\nUPDATE t2 SET c='ninety-five thousand four hundred seventy-eight' WHERE a=11964;\nUPDATE t2 SET c='ninety-three thousand four hundred sixty-nine' WHERE a=11965;\nUPDATE t2 SET c='eleven thousand five hundred sixteen' WHERE a=11966;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty' WHERE a=11967;\nUPDATE t2 SET c='sixty-three thousand six hundred eleven' WHERE a=11968;\nUPDATE t2 SET c='eighty thousand four hundred sixty-four' WHERE a=11969;\nUPDATE t2 SET c='ninety-one thousand seventy-six' WHERE a=11970;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-nine' WHERE a=11971;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-nine' WHERE a=11972;\nUPDATE t2 SET c='fifty-four thousand six hundred eighty-two' WHERE a=11973;\nUPDATE t2 SET c='sixty-five thousand two hundred eighty-five' WHERE a=11974;\nUPDATE t2 SET c='four thousand six hundred twenty' WHERE a=11975;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-eight' WHERE a=11976;\nUPDATE t2 SET c='ninety-four thousand forty-eight' WHERE a=11977;\nUPDATE t2 SET c='three thousand four hundred thirty-seven' WHERE a=11978;\nUPDATE t2 SET c='thirty-seven thousand eight hundred eighteen' WHERE a=11979;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-three' WHERE a=11980;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-two' WHERE a=11981;\nUPDATE t2 SET c='eighteen thousand nine hundred fifty-seven' WHERE a=11982;\nUPDATE t2 SET c='ninety-four thousand five hundred eighteen' WHERE a=11983;\nUPDATE t2 SET c='eighty thousand six hundred eighty-three' WHERE a=11984;\nUPDATE t2 SET c='six thousand four hundred twenty-seven' WHERE a=11985;\nUPDATE t2 SET c='forty-two thousand one hundred fifty-three' WHERE a=11986;\nUPDATE t2 SET c='eighty-one thousand eight hundred seventy-nine' WHERE a=11987;\nUPDATE t2 SET c='twenty thousand three hundred eighty-seven' WHERE a=11988;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty-three' WHERE a=11989;\nUPDATE t2 SET c='eighty-seven thousand eight hundred sixty-three' WHERE a=11990;\nUPDATE t2 SET c='eighty-seven thousand four hundred fifty-one' WHERE a=11991;\nUPDATE t2 SET c='six thousand four hundred four' WHERE a=11992;\nUPDATE t2 SET c='thirteen thousand thirty-two' WHERE a=11993;\nUPDATE t2 SET c='sixteen thousand nine hundred ninety-five' WHERE a=11994;\nUPDATE t2 SET c='twenty-five thousand five hundred eighty' WHERE a=11995;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-one' WHERE a=11996;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-six' WHERE a=11997;\nUPDATE t2 SET c='nineteen thousand one hundred thirteen' WHERE a=11998;\nUPDATE t2 SET c='seventy-four thousand one hundred eighty-nine' WHERE a=11999;\nUPDATE t2 SET c='sixty-seven thousand five hundred ninety-seven' WHERE a=12000;\nUPDATE t2 SET c='seventy-three thousand three hundred fifty-seven' WHERE a=12001;\nUPDATE t2 SET c='thirty-three thousand one hundred six' WHERE a=12002;\nUPDATE t2 SET c='eighty-seven thousand eight hundred thirty-one' WHERE a=12003;\nUPDATE t2 SET c='ninety-four thousand ninety-eight' WHERE a=12004;\nUPDATE t2 SET c='forty thousand six hundred eighteen' WHERE a=12005;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifty-nine' WHERE a=12006;\nUPDATE t2 SET c='seven thousand six hundred thirty-six' WHERE a=12007;\nUPDATE t2 SET c='eighty-three thousand five hundred twenty-eight' WHERE a=12008;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-two' WHERE a=12009;\nUPDATE t2 SET c='one thousand sixty-eight' WHERE a=12010;\nUPDATE t2 SET c='seventy-eight thousand two hundred ninety-five' WHERE a=12011;\nUPDATE t2 SET c='nineteen thousand three hundred seven' WHERE a=12012;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty-two' WHERE a=12013;\nUPDATE t2 SET c='twenty-four thousand two hundred eight' WHERE a=12014;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifty-nine' WHERE a=12015;\nUPDATE t2 SET c='ninety-nine thousand one hundred sixty-four' WHERE a=12016;\nUPDATE t2 SET c='twenty thousand one hundred thirty-eight' WHERE a=12017;\nUPDATE t2 SET c='ninety-nine thousand two hundred seven' WHERE a=12018;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-eight' WHERE a=12019;\nUPDATE t2 SET c='eighty-three thousand two hundred seventy-two' WHERE a=12020;\nUPDATE t2 SET c='forty-five thousand nine hundred eighty-four' WHERE a=12021;\nUPDATE t2 SET c='six thousand five' WHERE a=12022;\nUPDATE t2 SET c='fifty-seven thousand two hundred five' WHERE a=12023;\nUPDATE t2 SET c='forty-seven thousand four hundred seventy' WHERE a=12024;\nUPDATE t2 SET c='fifty-three thousand five hundred one' WHERE a=12025;\nUPDATE t2 SET c='twenty-four thousand five hundred twelve' WHERE a=12026;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-one' WHERE a=12027;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-nine' WHERE a=12028;\nUPDATE t2 SET c='eleven thousand five hundred six' WHERE a=12029;\nUPDATE t2 SET c='forty-six thousand eight hundred seventy-two' WHERE a=12030;\nUPDATE t2 SET c='forty-one thousand three hundred fifty-eight' WHERE a=12031;\nUPDATE t2 SET c='twenty-eight thousand five hundred five' WHERE a=12032;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-six' WHERE a=12033;\nUPDATE t2 SET c='sixty-four thousand eight hundred three' WHERE a=12034;\nUPDATE t2 SET c='eighty thousand eight hundred ninety-two' WHERE a=12035;\nUPDATE t2 SET c='eighty-seven thousand twelve' WHERE a=12036;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-nine' WHERE a=12037;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty-seven' WHERE a=12038;\nUPDATE t2 SET c='seven thousand one hundred thirty-seven' WHERE a=12039;\nUPDATE t2 SET c='thirty-one thousand eighty-seven' WHERE a=12040;\nUPDATE t2 SET c='forty-one thousand seven hundred sixty' WHERE a=12041;\nUPDATE t2 SET c='nine thousand six hundred ninety-two' WHERE a=12042;\nUPDATE t2 SET c='forty-one thousand one hundred' WHERE a=12043;\nUPDATE t2 SET c='seventy-eight thousand eight hundred three' WHERE a=12044;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-seven' WHERE a=12045;\nUPDATE t2 SET c='six thousand one hundred seventy-one' WHERE a=12046;\nUPDATE t2 SET c='ninety-four thousand four hundred thirty-five' WHERE a=12047;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-nine' WHERE a=12048;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-nine' WHERE a=12049;\nUPDATE t2 SET c='fifteen thousand five hundred eighty-six' WHERE a=12050;\nUPDATE t2 SET c='twenty-five thousand eight hundred fourteen' WHERE a=12051;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-five' WHERE a=12052;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-one' WHERE a=12053;\nUPDATE t2 SET c='four thousand three hundred forty-seven' WHERE a=12054;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-three' WHERE a=12055;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-seven' WHERE a=12056;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-two' WHERE a=12057;\nUPDATE t2 SET c='forty-five thousand six hundred forty-five' WHERE a=12058;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-four' WHERE a=12059;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-four' WHERE a=12060;\nUPDATE t2 SET c='sixty-two thousand two hundred seventeen' WHERE a=12061;\nUPDATE t2 SET c='two thousand sixty-seven' WHERE a=12062;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-five' WHERE a=12063;\nUPDATE t2 SET c='thirty-eight thousand three hundred forty-six' WHERE a=12064;\nUPDATE t2 SET c='five thousand five hundred fifty-two' WHERE a=12065;\nUPDATE t2 SET c='ninety thousand two hundred eighty-five' WHERE a=12066;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-eight' WHERE a=12067;\nUPDATE t2 SET c='one thousand six hundred sixty-four' WHERE a=12068;\nUPDATE t2 SET c='forty-two thousand six hundred forty-eight' WHERE a=12069;\nUPDATE t2 SET c='eighty-four thousand four hundred seventy-five' WHERE a=12070;\nUPDATE t2 SET c='forty-five thousand six hundred ninety-three' WHERE a=12071;\nUPDATE t2 SET c='ten thousand two hundred thirty-three' WHERE a=12072;\nUPDATE t2 SET c='fourteen thousand five hundred sixty-one' WHERE a=12073;\nUPDATE t2 SET c='ninety-four thousand one hundred forty-eight' WHERE a=12074;\nUPDATE t2 SET c='thirty thousand seventeen' WHERE a=12075;\nUPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=12076;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-three' WHERE a=12077;\nUPDATE t2 SET c='seventy-six thousand three hundred fifty-six' WHERE a=12078;\nUPDATE t2 SET c='fifty-seven thousand six hundred ninety' WHERE a=12079;\nUPDATE t2 SET c='seventy-eight thousand fifty-three' WHERE a=12080;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-five' WHERE a=12081;\nUPDATE t2 SET c='four thousand one hundred thirteen' WHERE a=12082;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-one' WHERE a=12083;\nUPDATE t2 SET c='thirty-nine thousand six hundred seventy' WHERE a=12084;\nUPDATE t2 SET c='seventy-nine thousand five hundred ninety-four' WHERE a=12085;\nUPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=12086;\nUPDATE t2 SET c='ninety-five thousand seven hundred fifty-one' WHERE a=12087;\nUPDATE t2 SET c='sixty-nine thousand forty-one' WHERE a=12088;\nUPDATE t2 SET c='forty-three thousand one hundred twenty-four' WHERE a=12089;\nUPDATE t2 SET c='ninety-four thousand five hundred nine' WHERE a=12090;\nUPDATE t2 SET c='seventy thousand six hundred thirteen' WHERE a=12091;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-six' WHERE a=12092;\nUPDATE t2 SET c='sixty-four thousand seven hundred four' WHERE a=12093;\nUPDATE t2 SET c='sixteen thousand three hundred thirty-four' WHERE a=12094;\nUPDATE t2 SET c='nineteen thousand six hundred thirty-one' WHERE a=12095;\nUPDATE t2 SET c='eighteen thousand five hundred twenty-six' WHERE a=12096;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-seven' WHERE a=12097;\nUPDATE t2 SET c='one thousand six hundred seven' WHERE a=12098;\nUPDATE t2 SET c='ten thousand two hundred seventy-nine' WHERE a=12099;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty-six' WHERE a=12100;\nUPDATE t2 SET c='eighty-two thousand four hundred nineteen' WHERE a=12101;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty-five' WHERE a=12102;\nUPDATE t2 SET c='fifteen thousand one hundred thirteen' WHERE a=12103;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-five' WHERE a=12104;\nUPDATE t2 SET c='fifty-nine thousand one hundred eighty' WHERE a=12105;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=12106;\nUPDATE t2 SET c='nineteen thousand five hundred twelve' WHERE a=12107;\nUPDATE t2 SET c='four thousand one hundred forty-six' WHERE a=12108;\nUPDATE t2 SET c='two thousand four hundred thirty-three' WHERE a=12109;\nUPDATE t2 SET c='fifty-one thousand four hundred eleven' WHERE a=12110;\nUPDATE t2 SET c='seventy-three thousand eight hundred ninety-eight' WHERE a=12111;\nUPDATE t2 SET c='eighty-one thousand seven hundred seventeen' WHERE a=12112;\nUPDATE t2 SET c='four hundred' WHERE a=12113;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-two' WHERE a=12114;\nUPDATE t2 SET c='eighteen thousand nine hundred forty-eight' WHERE a=12115;\nUPDATE t2 SET c='sixty-seven thousand six hundred fifty-two' WHERE a=12116;\nUPDATE t2 SET c='fifty-eight thousand eight hundred sixty-three' WHERE a=12117;\nUPDATE t2 SET c='fourteen thousand five hundred forty' WHERE a=12118;\nUPDATE t2 SET c='six thousand fifty' WHERE a=12119;\nUPDATE t2 SET c='twenty-six thousand three hundred fifty-three' WHERE a=12120;\nUPDATE t2 SET c='four hundred seventy-one' WHERE a=12121;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty-seven' WHERE a=12122;\nUPDATE t2 SET c='ten thousand three hundred ninety-four' WHERE a=12123;\nUPDATE t2 SET c='fifty-eight thousand eighty' WHERE a=12124;\nUPDATE t2 SET c='thirty-nine thousand ninety-nine' WHERE a=12125;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=12126;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-four' WHERE a=12127;\nUPDATE t2 SET c='fifty-three thousand forty-nine' WHERE a=12128;\nUPDATE t2 SET c='seven thousand seven hundred ninety' WHERE a=12129;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-one' WHERE a=12130;\nUPDATE t2 SET c='twenty-one thousand three hundred fifty-six' WHERE a=12131;\nUPDATE t2 SET c='sixty-three thousand three hundred nine' WHERE a=12132;\nUPDATE t2 SET c='six thousand three hundred ninety-eight' WHERE a=12133;\nUPDATE t2 SET c='fourteen thousand four hundred ninety-five' WHERE a=12134;\nUPDATE t2 SET c='eighty-eight thousand six hundred seventy-two' WHERE a=12135;\nUPDATE t2 SET c='seventy-one thousand four hundred ninety-one' WHERE a=12136;\nUPDATE t2 SET c='thirty-seven thousand eleven' WHERE a=12137;\nUPDATE t2 SET c='fifteen thousand one hundred seven' WHERE a=12138;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-five' WHERE a=12139;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-three' WHERE a=12140;\nUPDATE t2 SET c='seventy-nine thousand five hundred ninety-five' WHERE a=12141;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixteen' WHERE a=12142;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-seven' WHERE a=12143;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-nine' WHERE a=12144;\nUPDATE t2 SET c='eighteen thousand eight hundred nine' WHERE a=12145;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fourteen' WHERE a=12146;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-two' WHERE a=12147;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-six' WHERE a=12148;\nUPDATE t2 SET c='eighty thousand one hundred eighty-six' WHERE a=12149;\nUPDATE t2 SET c='sixteen thousand nine hundred ninety-six' WHERE a=12150;\nUPDATE t2 SET c='sixty-four thousand six hundred eighty-eight' WHERE a=12151;\nUPDATE t2 SET c='six thousand six hundred eighty-four' WHERE a=12152;\nUPDATE t2 SET c='sixty thousand eight hundred thirty-eight' WHERE a=12153;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-two' WHERE a=12154;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirty-one' WHERE a=12155;\nUPDATE t2 SET c='sixty-six thousand two hundred eighty-eight' WHERE a=12156;\nUPDATE t2 SET c='seventy-six thousand eight hundred twenty-four' WHERE a=12157;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-five' WHERE a=12158;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-eight' WHERE a=12159;\nUPDATE t2 SET c='four thousand nine hundred sixty-two' WHERE a=12160;\nUPDATE t2 SET c='eleven thousand one hundred sixty-two' WHERE a=12161;\nUPDATE t2 SET c='ninety-seven thousand three hundred seven' WHERE a=12162;\nUPDATE t2 SET c='eighty-six thousand five hundred sixty' WHERE a=12163;\nUPDATE t2 SET c='one hundred sixteen' WHERE a=12164;\nUPDATE t2 SET c='fifty thousand two hundred forty-three' WHERE a=12165;\nUPDATE t2 SET c='eighty-four thousand nine hundred sixty-nine' WHERE a=12166;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-six' WHERE a=12167;\nUPDATE t2 SET c='fifty-one thousand four hundred forty-two' WHERE a=12168;\nUPDATE t2 SET c='seventy-two thousand ninety-one' WHERE a=12169;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-eight' WHERE a=12170;\nUPDATE t2 SET c='seventy thousand two hundred forty-four' WHERE a=12171;\nUPDATE t2 SET c='fourteen thousand one hundred fifty-eight' WHERE a=12172;\nUPDATE t2 SET c='thirty-seven thousand eight hundred fifty-two' WHERE a=12173;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-nine' WHERE a=12174;\nUPDATE t2 SET c='ten thousand nine hundred thirteen' WHERE a=12175;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-six' WHERE a=12176;\nUPDATE t2 SET c='fifty-seven thousand four hundred eight' WHERE a=12177;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-five' WHERE a=12178;\nUPDATE t2 SET c='seventy-five thousand one hundred thirty-seven' WHERE a=12179;\nUPDATE t2 SET c='eighteen thousand seven hundred thirteen' WHERE a=12180;\nUPDATE t2 SET c='ninety-six thousand thirty-two' WHERE a=12181;\nUPDATE t2 SET c='eight thousand one hundred fifty-seven' WHERE a=12182;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-four' WHERE a=12183;\nUPDATE t2 SET c='forty-nine thousand five hundred fifteen' WHERE a=12184;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-five' WHERE a=12185;\nUPDATE t2 SET c='seventy-two thousand five hundred forty-four' WHERE a=12186;\nUPDATE t2 SET c='thirty thousand three hundred sixty-eight' WHERE a=12187;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-three' WHERE a=12188;\nUPDATE t2 SET c='eighty-six thousand three hundred ninety-one' WHERE a=12189;\nUPDATE t2 SET c='eighty-one thousand four hundred eight' WHERE a=12190;\nUPDATE t2 SET c='thirty-two thousand one hundred three' WHERE a=12191;\nUPDATE t2 SET c='two thousand eight hundred seventeen' WHERE a=12192;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety' WHERE a=12193;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-seven' WHERE a=12194;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-eight' WHERE a=12195;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=12196;\nUPDATE t2 SET c='forty-five thousand four hundred seventy-nine' WHERE a=12197;\nUPDATE t2 SET c='sixty-seven thousand three hundred sixty-six' WHERE a=12198;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=12199;\nUPDATE t2 SET c='thirty-five thousand four hundred ninety-four' WHERE a=12200;\nUPDATE t2 SET c='seventy thousand one hundred sixty-seven' WHERE a=12201;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-six' WHERE a=12202;\nUPDATE t2 SET c='ninety thousand three hundred seventy-two' WHERE a=12203;\nUPDATE t2 SET c='eighty-one thousand eight hundred twenty-seven' WHERE a=12204;\nUPDATE t2 SET c='four thousand seven hundred eighty-two' WHERE a=12205;\nUPDATE t2 SET c='forty-one thousand six hundred eighty' WHERE a=12206;\nUPDATE t2 SET c='fourteen thousand nine hundred sixty-four' WHERE a=12207;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty-eight' WHERE a=12208;\nUPDATE t2 SET c='ninety-seven thousand six hundred ninety-eight' WHERE a=12209;\nUPDATE t2 SET c='fifty thousand eight hundred forty-four' WHERE a=12210;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-nine' WHERE a=12211;\nUPDATE t2 SET c='two thousand eight hundred eighty-nine' WHERE a=12212;\nUPDATE t2 SET c='seventy-two thousand four hundred ninety-five' WHERE a=12213;\nUPDATE t2 SET c='thirty thousand eight hundred thirty-four' WHERE a=12214;\nUPDATE t2 SET c='eight thousand eleven' WHERE a=12215;\nUPDATE t2 SET c='nine thousand seven hundred forty-one' WHERE a=12216;\nUPDATE t2 SET c='forty-nine thousand one hundred thirty-nine' WHERE a=12217;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-seven' WHERE a=12218;\nUPDATE t2 SET c='ninety-eight thousand one hundred seventy-seven' WHERE a=12219;\nUPDATE t2 SET c='forty thousand nine hundred eighty-one' WHERE a=12220;\nUPDATE t2 SET c='ninety-six thousand four hundred eighty-eight' WHERE a=12221;\nUPDATE t2 SET c='seven thousand five hundred ninety-four' WHERE a=12222;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-five' WHERE a=12223;\nUPDATE t2 SET c='seventy-six thousand three hundred nine' WHERE a=12224;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-nine' WHERE a=12225;\nUPDATE t2 SET c='forty-four thousand two hundred sixty-nine' WHERE a=12226;\nUPDATE t2 SET c='thirty-eight thousand nine hundred fifty-three' WHERE a=12227;\nUPDATE t2 SET c='thirty-six thousand two hundred three' WHERE a=12228;\nUPDATE t2 SET c='forty-six thousand five hundred seventy-three' WHERE a=12229;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-eight' WHERE a=12230;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-one' WHERE a=12231;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-four' WHERE a=12232;\nUPDATE t2 SET c='fifteen thousand eight hundred twenty-two' WHERE a=12233;\nUPDATE t2 SET c='twelve thousand six hundred fifty-three' WHERE a=12234;\nUPDATE t2 SET c='seventy-five thousand nine hundred ninety-seven' WHERE a=12235;\nUPDATE t2 SET c='eight thousand five hundred seventy-one' WHERE a=12236;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy' WHERE a=12237;\nUPDATE t2 SET c='forty-two thousand three hundred eighty-four' WHERE a=12238;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-eight' WHERE a=12239;\nUPDATE t2 SET c='twenty-nine thousand four hundred four' WHERE a=12240;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=12241;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-two' WHERE a=12242;\nUPDATE t2 SET c='two thousand three hundred seventy-nine' WHERE a=12243;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-six' WHERE a=12244;\nUPDATE t2 SET c='forty-eight thousand two hundred fifty' WHERE a=12245;\nUPDATE t2 SET c='eighty-nine thousand six hundred eleven' WHERE a=12246;\nUPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=12247;\nUPDATE t2 SET c='forty-seven thousand eleven' WHERE a=12248;\nUPDATE t2 SET c='twenty-seven thousand eight hundred nineteen' WHERE a=12249;\nUPDATE t2 SET c='eighty-three thousand three hundred fifteen' WHERE a=12250;\nUPDATE t2 SET c='fifty-six thousand eight hundred eighty-eight' WHERE a=12251;\nUPDATE t2 SET c='sixty-nine thousand four hundred fifteen' WHERE a=12252;\nUPDATE t2 SET c='thirty thousand nine hundred forty-nine' WHERE a=12253;\nUPDATE t2 SET c='fifty-eight thousand four hundred thirty-five' WHERE a=12254;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-six' WHERE a=12255;\nUPDATE t2 SET c='ninety thousand twenty-one' WHERE a=12256;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-seven' WHERE a=12257;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-five' WHERE a=12258;\nUPDATE t2 SET c='forty-three thousand five hundred sixty-seven' WHERE a=12259;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty-nine' WHERE a=12260;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirteen' WHERE a=12261;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-six' WHERE a=12262;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-five' WHERE a=12263;\nUPDATE t2 SET c='ten thousand six hundred forty-three' WHERE a=12264;\nUPDATE t2 SET c='forty-five thousand ninety-seven' WHERE a=12265;\nUPDATE t2 SET c='twenty-one thousand six hundred forty-nine' WHERE a=12266;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixty-three' WHERE a=12267;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=12268;\nUPDATE t2 SET c='thirteen thousand four hundred twenty-five' WHERE a=12269;\nUPDATE t2 SET c='ten thousand three hundred seventy-three' WHERE a=12270;\nUPDATE t2 SET c='twenty-six thousand one hundred eight' WHERE a=12271;\nUPDATE t2 SET c='five hundred sixty-three' WHERE a=12272;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=12273;\nUPDATE t2 SET c='fifty-four thousand five hundred seventy-one' WHERE a=12274;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-five' WHERE a=12275;\nUPDATE t2 SET c='sixty-five thousand three hundred eight' WHERE a=12276;\nUPDATE t2 SET c='forty-nine thousand forty-eight' WHERE a=12277;\nUPDATE t2 SET c='eighty-six thousand two hundred eighteen' WHERE a=12278;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-two' WHERE a=12279;\nUPDATE t2 SET c='twenty-one thousand three hundred sixty-six' WHERE a=12280;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty' WHERE a=12281;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty-three' WHERE a=12282;\nUPDATE t2 SET c='ninety-six thousand one' WHERE a=12283;\nUPDATE t2 SET c='fifty-five thousand seventy-four' WHERE a=12284;\nUPDATE t2 SET c='three thousand seven hundred thirty-eight' WHERE a=12285;\nUPDATE t2 SET c='forty-one thousand six hundred sixty-four' WHERE a=12286;\nUPDATE t2 SET c='six thousand six hundred twenty-seven' WHERE a=12287;\nUPDATE t2 SET c='fifty-five thousand five hundred sixty-six' WHERE a=12288;\nUPDATE t2 SET c='fifty-eight thousand two hundred five' WHERE a=12289;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-seven' WHERE a=12290;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventy-seven' WHERE a=12291;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety-nine' WHERE a=12292;\nUPDATE t2 SET c='eighty-four thousand six hundred twenty-six' WHERE a=12293;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-nine' WHERE a=12294;\nUPDATE t2 SET c='thirty-nine thousand one hundred nineteen' WHERE a=12295;\nUPDATE t2 SET c='one thousand nine hundred eleven' WHERE a=12296;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-four' WHERE a=12297;\nUPDATE t2 SET c='twenty-four thousand five hundred seventy-seven' WHERE a=12298;\nUPDATE t2 SET c='seventeen thousand three hundred five' WHERE a=12299;\nUPDATE t2 SET c='thirty-three thousand twenty-five' WHERE a=12300;\nUPDATE t2 SET c='fifty-three thousand three hundred eighty-seven' WHERE a=12301;\nUPDATE t2 SET c='seventy thousand eighty-nine' WHERE a=12302;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-nine' WHERE a=12303;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-eight' WHERE a=12304;\nUPDATE t2 SET c='twenty thousand seven hundred forty' WHERE a=12305;\nUPDATE t2 SET c='eighty-two thousand ninety-two' WHERE a=12306;\nUPDATE t2 SET c='ninety-six thousand five hundred twelve' WHERE a=12307;\nUPDATE t2 SET c='eighty thousand five hundred fifteen' WHERE a=12308;\nUPDATE t2 SET c='seventy-nine thousand nine hundred sixty-three' WHERE a=12309;\nUPDATE t2 SET c='thirty-seven thousand three hundred forty' WHERE a=12310;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-five' WHERE a=12311;\nUPDATE t2 SET c='sixty-two thousand nine hundred seventy' WHERE a=12312;\nUPDATE t2 SET c='eighty-three thousand thirty-four' WHERE a=12313;\nUPDATE t2 SET c='thirty-six thousand six hundred seven' WHERE a=12314;\nUPDATE t2 SET c='sixty-three thousand one hundred seventeen' WHERE a=12315;\nUPDATE t2 SET c='forty-one thousand eight hundred thirty-seven' WHERE a=12316;\nUPDATE t2 SET c='fifty-eight thousand one hundred sixteen' WHERE a=12317;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy' WHERE a=12318;\nUPDATE t2 SET c='ninety thousand seventy' WHERE a=12319;\nUPDATE t2 SET c='fifteen thousand ninety-five' WHERE a=12320;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-seven' WHERE a=12321;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-one' WHERE a=12322;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-six' WHERE a=12323;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty-four' WHERE a=12324;\nUPDATE t2 SET c='seventeen thousand eight hundred ninety-four' WHERE a=12325;\nUPDATE t2 SET c='thirty-four thousand four hundred seventy-two' WHERE a=12326;\nUPDATE t2 SET c='thirty-three thousand nine hundred eighty-nine' WHERE a=12327;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-nine' WHERE a=12328;\nUPDATE t2 SET c='seventy-seven thousand six hundred seventy-one' WHERE a=12329;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-two' WHERE a=12330;\nUPDATE t2 SET c='one thousand six hundred sixty-eight' WHERE a=12331;\nUPDATE t2 SET c='sixty-four thousand eight hundred eight' WHERE a=12332;\nUPDATE t2 SET c='eighty-seven thousand three hundred seventy-four' WHERE a=12333;\nUPDATE t2 SET c='ninety-three thousand four hundred sixty-four' WHERE a=12334;\nUPDATE t2 SET c='four hundred thirty-seven' WHERE a=12335;\nUPDATE t2 SET c='forty-four thousand three hundred ninety-six' WHERE a=12336;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-one' WHERE a=12337;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-three' WHERE a=12338;\nUPDATE t2 SET c='eighty-three thousand eight hundred twelve' WHERE a=12339;\nUPDATE t2 SET c='five thousand four hundred twenty-one' WHERE a=12340;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-two' WHERE a=12341;\nUPDATE t2 SET c='seven thousand two hundred sixty-four' WHERE a=12342;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty' WHERE a=12343;\nUPDATE t2 SET c='thirty-eight thousand three hundred nine' WHERE a=12344;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-five' WHERE a=12345;\nUPDATE t2 SET c='nine thousand eight hundred forty-five' WHERE a=12346;\nUPDATE t2 SET c='forty-three thousand three hundred' WHERE a=12347;\nUPDATE t2 SET c='fifty-five thousand three hundred forty-nine' WHERE a=12348;\nUPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=12349;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-seven' WHERE a=12350;\nUPDATE t2 SET c='fourteen thousand four hundred three' WHERE a=12351;\nUPDATE t2 SET c='twenty-five thousand seven hundred seventy-five' WHERE a=12352;\nUPDATE t2 SET c='two thousand two hundred ninety-four' WHERE a=12353;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-four' WHERE a=12354;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-two' WHERE a=12355;\nUPDATE t2 SET c='six thousand five' WHERE a=12356;\nUPDATE t2 SET c='twenty-eight' WHERE a=12357;\nUPDATE t2 SET c='sixty-four thousand thirty-two' WHERE a=12358;\nUPDATE t2 SET c='five hundred ninety-five' WHERE a=12359;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy' WHERE a=12360;\nUPDATE t2 SET c='twenty thousand one hundred seventy-seven' WHERE a=12361;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-two' WHERE a=12362;\nUPDATE t2 SET c='sixty thousand one hundred sixty-five' WHERE a=12363;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty' WHERE a=12364;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-five' WHERE a=12365;\nUPDATE t2 SET c='forty-three thousand four hundred ninety-one' WHERE a=12366;\nUPDATE t2 SET c='seventy-eight thousand three hundred twenty' WHERE a=12367;\nUPDATE t2 SET c='seventy-seven thousand two hundred thirty-three' WHERE a=12368;\nUPDATE t2 SET c='ten thousand nine hundred thirty-eight' WHERE a=12369;\nUPDATE t2 SET c='twenty-one thousand four hundred fifty-six' WHERE a=12370;\nUPDATE t2 SET c='thirty-one thousand four hundred two' WHERE a=12371;\nUPDATE t2 SET c='six thousand six hundred thirty-four' WHERE a=12372;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-three' WHERE a=12373;\nUPDATE t2 SET c='thirty-eight thousand forty' WHERE a=12374;\nUPDATE t2 SET c='eighty-nine thousand three hundred nine' WHERE a=12375;\nUPDATE t2 SET c='fifty-four thousand three hundred thirteen' WHERE a=12376;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy-four' WHERE a=12377;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixty-eight' WHERE a=12378;\nUPDATE t2 SET c='sixty-five thousand eighty-three' WHERE a=12379;\nUPDATE t2 SET c='two thousand one hundred forty-six' WHERE a=12380;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-eight' WHERE a=12381;\nUPDATE t2 SET c='two thousand three hundred eighty-three' WHERE a=12382;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-five' WHERE a=12383;\nUPDATE t2 SET c='ninety-nine thousand five hundred ninety-two' WHERE a=12384;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty' WHERE a=12385;\nUPDATE t2 SET c='five thousand nine hundred ninety-five' WHERE a=12386;\nUPDATE t2 SET c='ninety-three thousand three hundred ninety-six' WHERE a=12387;\nUPDATE t2 SET c='forty-nine thousand six hundred two' WHERE a=12388;\nUPDATE t2 SET c='seventy-one thousand six hundred sixty-six' WHERE a=12389;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=12390;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-eight' WHERE a=12391;\nUPDATE t2 SET c='twenty-five thousand eight hundred eight' WHERE a=12392;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-three' WHERE a=12393;\nUPDATE t2 SET c='forty-two thousand four hundred seventy-nine' WHERE a=12394;\nUPDATE t2 SET c='fifty thousand three hundred seventy-four' WHERE a=12395;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-three' WHERE a=12396;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-five' WHERE a=12397;\nUPDATE t2 SET c='fifteen thousand one hundred two' WHERE a=12398;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-three' WHERE a=12399;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=12400;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-two' WHERE a=12401;\nUPDATE t2 SET c='twenty-four thousand eight hundred two' WHERE a=12402;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-five' WHERE a=12403;\nUPDATE t2 SET c='fifty-one thousand four hundred nineteen' WHERE a=12404;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-five' WHERE a=12405;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-two' WHERE a=12406;\nUPDATE t2 SET c='thirty-eight thousand six hundred ninety' WHERE a=12407;\nUPDATE t2 SET c='forty thousand one hundred seventy-four' WHERE a=12408;\nUPDATE t2 SET c='thirty-seven thousand nine hundred ninety-eight' WHERE a=12409;\nUPDATE t2 SET c='one thousand one hundred eighty-eight' WHERE a=12410;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-six' WHERE a=12411;\nUPDATE t2 SET c='seventy-two thousand two hundred forty-nine' WHERE a=12412;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-eight' WHERE a=12413;\nUPDATE t2 SET c='six thousand four hundred forty-one' WHERE a=12414;\nUPDATE t2 SET c='eighty thousand five hundred twenty-one' WHERE a=12415;\nUPDATE t2 SET c='fifty-one thousand six hundred fifty-one' WHERE a=12416;\nUPDATE t2 SET c='sixty-five thousand sixty-five' WHERE a=12417;\nUPDATE t2 SET c='ninety-nine thousand nine hundred twenty-eight' WHERE a=12418;\nUPDATE t2 SET c='ninety-eight thousand four hundred forty' WHERE a=12419;\nUPDATE t2 SET c='fifty-nine thousand one hundred four' WHERE a=12420;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty-five' WHERE a=12421;\nUPDATE t2 SET c='forty-five thousand six hundred ninety-nine' WHERE a=12422;\nUPDATE t2 SET c='twelve thousand four hundred seventy-nine' WHERE a=12423;\nUPDATE t2 SET c='eighteen thousand four hundred forty-two' WHERE a=12424;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-seven' WHERE a=12425;\nUPDATE t2 SET c='ten thousand seven hundred thirty-nine' WHERE a=12426;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-eight' WHERE a=12427;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty-eight' WHERE a=12428;\nUPDATE t2 SET c='seventy-four thousand seven' WHERE a=12429;\nUPDATE t2 SET c='eighty thousand three hundred fifty' WHERE a=12430;\nUPDATE t2 SET c='eight thousand five hundred sixty' WHERE a=12431;\nUPDATE t2 SET c='seventy thousand six hundred thirty-eight' WHERE a=12432;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-nine' WHERE a=12433;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seven' WHERE a=12434;\nUPDATE t2 SET c='seventy-eight thousand ten' WHERE a=12435;\nUPDATE t2 SET c='forty-five thousand two hundred one' WHERE a=12436;\nUPDATE t2 SET c='thirty thousand ten' WHERE a=12437;\nUPDATE t2 SET c='ninety-eight thousand two hundred fifty' WHERE a=12438;\nUPDATE t2 SET c='fifty thousand one hundred eighty-eight' WHERE a=12439;\nUPDATE t2 SET c='seventeen thousand three hundred forty-two' WHERE a=12440;\nUPDATE t2 SET c='sixty-four thousand three hundred eighty-nine' WHERE a=12441;\nUPDATE t2 SET c='twenty-five thousand fifty-five' WHERE a=12442;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventy-seven' WHERE a=12443;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-nine' WHERE a=12444;\nUPDATE t2 SET c='seventy-six thousand forty-six' WHERE a=12445;\nUPDATE t2 SET c='seventy-nine thousand four hundred ninety-nine' WHERE a=12446;\nUPDATE t2 SET c='fifty-two thousand three hundred thirteen' WHERE a=12447;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-one' WHERE a=12448;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighty-three' WHERE a=12449;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-one' WHERE a=12450;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty-seven' WHERE a=12451;\nUPDATE t2 SET c='seventy-five thousand five hundred fourteen' WHERE a=12452;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-two' WHERE a=12453;\nUPDATE t2 SET c='eighty-three thousand one hundred fifteen' WHERE a=12454;\nUPDATE t2 SET c='ninety-nine thousand two hundred two' WHERE a=12455;\nUPDATE t2 SET c='twenty-seven thousand two hundred twenty-nine' WHERE a=12456;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-two' WHERE a=12457;\nUPDATE t2 SET c='eighty-five thousand four hundred thirteen' WHERE a=12458;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-eight' WHERE a=12459;\nUPDATE t2 SET c='ninety thousand six hundred eighty-seven' WHERE a=12460;\nUPDATE t2 SET c='sixty-five thousand nine hundred ninety-three' WHERE a=12461;\nUPDATE t2 SET c='eighty-two thousand one hundred forty' WHERE a=12462;\nUPDATE t2 SET c='seventy-three thousand six hundred forty-four' WHERE a=12463;\nUPDATE t2 SET c='forty thousand seven hundred thirty-four' WHERE a=12464;\nUPDATE t2 SET c='seventy-one thousand four hundred forty-seven' WHERE a=12465;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-one' WHERE a=12466;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eleven' WHERE a=12467;\nUPDATE t2 SET c='six thousand one hundred thirty-two' WHERE a=12468;\nUPDATE t2 SET c='seventy-six thousand thirty-six' WHERE a=12469;\nUPDATE t2 SET c='sixty-eight thousand' WHERE a=12470;\nUPDATE t2 SET c='thirty-seven thousand seven hundred forty-four' WHERE a=12471;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-nine' WHERE a=12472;\nUPDATE t2 SET c='twenty thousand two hundred nineteen' WHERE a=12473;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-nine' WHERE a=12474;\nUPDATE t2 SET c='seventy-seven thousand eight hundred fifty-five' WHERE a=12475;\nUPDATE t2 SET c='fourteen thousand two hundred ninety-three' WHERE a=12476;\nUPDATE t2 SET c='eleven thousand six hundred twenty-five' WHERE a=12477;\nUPDATE t2 SET c='eight thousand four hundred eighteen' WHERE a=12478;\nUPDATE t2 SET c='one thousand six hundred sixty-four' WHERE a=12479;\nUPDATE t2 SET c='thirty-one thousand seven hundred seventy-eight' WHERE a=12480;\nUPDATE t2 SET c='thirty-eight thousand seven hundred fifty-two' WHERE a=12481;\nUPDATE t2 SET c='forty-six thousand five hundred nine' WHERE a=12482;\nUPDATE t2 SET c='one thousand two hundred thirty-eight' WHERE a=12483;\nUPDATE t2 SET c='twenty-one thousand one hundred seven' WHERE a=12484;\nUPDATE t2 SET c='eighty-four thousand eighty-two' WHERE a=12485;\nUPDATE t2 SET c='ninety-six thousand six hundred forty' WHERE a=12486;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-six' WHERE a=12487;\nUPDATE t2 SET c='eighty-three thousand twenty-one' WHERE a=12488;\nUPDATE t2 SET c='nine thousand sixty-nine' WHERE a=12489;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-seven' WHERE a=12490;\nUPDATE t2 SET c='ninety-seven thousand twenty-six' WHERE a=12491;\nUPDATE t2 SET c='ninety-eight thousand eight hundred ninety-one' WHERE a=12492;\nUPDATE t2 SET c='fourteen thousand five hundred fifty-nine' WHERE a=12493;\nUPDATE t2 SET c='sixty-one thousand nine hundred forty-five' WHERE a=12494;\nUPDATE t2 SET c='seven thousand five hundred four' WHERE a=12495;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-six' WHERE a=12496;\nUPDATE t2 SET c='seventy-four thousand five hundred forty-four' WHERE a=12497;\nUPDATE t2 SET c='twenty-eight thousand five hundred eleven' WHERE a=12498;\nUPDATE t2 SET c='eighty thousand two hundred sixty-seven' WHERE a=12499;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-one' WHERE a=12500;\nUPDATE t2 SET c='fifty-five thousand two hundred fifty-two' WHERE a=12501;\nUPDATE t2 SET c='eight thousand seventy-six' WHERE a=12502;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-three' WHERE a=12503;\nUPDATE t2 SET c='sixty-four thousand seven hundred two' WHERE a=12504;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-three' WHERE a=12505;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty-one' WHERE a=12506;\nUPDATE t2 SET c='seventy-six thousand five hundred three' WHERE a=12507;\nUPDATE t2 SET c='seventy-five thousand six hundred eighty-nine' WHERE a=12508;\nUPDATE t2 SET c='eleven thousand two hundred seventy-two' WHERE a=12509;\nUPDATE t2 SET c='ninety-nine thousand one hundred forty-nine' WHERE a=12510;\nUPDATE t2 SET c='fourteen thousand two hundred nineteen' WHERE a=12511;\nUPDATE t2 SET c='ninety thousand three hundred fifty-seven' WHERE a=12512;\nUPDATE t2 SET c='three thousand thirty-nine' WHERE a=12513;\nUPDATE t2 SET c='nine thousand four hundred thirty' WHERE a=12514;\nUPDATE t2 SET c='seventy-two thousand one hundred six' WHERE a=12515;\nUPDATE t2 SET c='three thousand seven hundred forty-two' WHERE a=12516;\nUPDATE t2 SET c='nineteen thousand two hundred ninety-two' WHERE a=12517;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=12518;\nUPDATE t2 SET c='forty-nine thousand one hundred thirty' WHERE a=12519;\nUPDATE t2 SET c='twenty-three thousand three hundred twelve' WHERE a=12520;\nUPDATE t2 SET c='seventy-one thousand eight hundred ninety' WHERE a=12521;\nUPDATE t2 SET c='ninety-eight thousand forty-six' WHERE a=12522;\nUPDATE t2 SET c='eighteen thousand seven hundred seventy-two' WHERE a=12523;\nUPDATE t2 SET c='thirty thousand four hundred fifty-one' WHERE a=12524;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-two' WHERE a=12525;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=12526;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixty-eight' WHERE a=12527;\nUPDATE t2 SET c='seventy-eight thousand four hundred ninety-two' WHERE a=12528;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-eight' WHERE a=12529;\nUPDATE t2 SET c='sixty-two thousand three hundred eighteen' WHERE a=12530;\nUPDATE t2 SET c='thirty-three thousand eight hundred thirty-five' WHERE a=12531;\nUPDATE t2 SET c='twelve thousand four hundred twenty-five' WHERE a=12532;\nUPDATE t2 SET c='twenty-six thousand nine hundred ninety-two' WHERE a=12533;\nUPDATE t2 SET c='forty thousand four hundred ninety-five' WHERE a=12534;\nUPDATE t2 SET c='five thousand eight hundred forty-four' WHERE a=12535;\nUPDATE t2 SET c='eighty-nine thousand nine hundred sixty-two' WHERE a=12536;\nUPDATE t2 SET c='ninety-seven thousand five hundred seventy-six' WHERE a=12537;\nUPDATE t2 SET c='eighty-six thousand four hundred eighteen' WHERE a=12538;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty-one' WHERE a=12539;\nUPDATE t2 SET c='ninety-five thousand six hundred thirty-six' WHERE a=12540;\nUPDATE t2 SET c='forty-four thousand nine hundred seventy-one' WHERE a=12541;\nUPDATE t2 SET c='seventy-seven thousand three hundred thirty-five' WHERE a=12542;\nUPDATE t2 SET c='eighty-two thousand two hundred' WHERE a=12543;\nUPDATE t2 SET c='forty-two thousand six hundred seven' WHERE a=12544;\nUPDATE t2 SET c='eighty-one thousand twenty-nine' WHERE a=12545;\nUPDATE t2 SET c='seventy-nine thousand five hundred sixty-one' WHERE a=12546;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-four' WHERE a=12547;\nUPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=12548;\nUPDATE t2 SET c='two thousand one hundred fifty-eight' WHERE a=12549;\nUPDATE t2 SET c='nine thousand eight hundred seventy-five' WHERE a=12550;\nUPDATE t2 SET c='seven thousand three hundred twenty-four' WHERE a=12551;\nUPDATE t2 SET c='eighty-three thousand three hundred forty-eight' WHERE a=12552;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-eight' WHERE a=12553;\nUPDATE t2 SET c='eighty thousand nine hundred fourteen' WHERE a=12554;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-three' WHERE a=12555;\nUPDATE t2 SET c='seventy-four thousand eight hundred nineteen' WHERE a=12556;\nUPDATE t2 SET c='fifty thousand three hundred seventy' WHERE a=12557;\nUPDATE t2 SET c='thirty-seven thousand two hundred sixty-eight' WHERE a=12558;\nUPDATE t2 SET c='thirty-six thousand seven hundred forty-three' WHERE a=12559;\nUPDATE t2 SET c='sixty-one thousand four hundred seventy-seven' WHERE a=12560;\nUPDATE t2 SET c='forty-six thousand eight hundred twenty-three' WHERE a=12561;\nUPDATE t2 SET c='sixty-five thousand seven hundred fifty-five' WHERE a=12562;\nUPDATE t2 SET c='fifty-three thousand seven hundred fifty' WHERE a=12563;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-six' WHERE a=12564;\nUPDATE t2 SET c='nineteen thousand two hundred thirteen' WHERE a=12565;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety' WHERE a=12566;\nUPDATE t2 SET c='forty-three thousand one hundred sixty-three' WHERE a=12567;\nUPDATE t2 SET c='sixty-five thousand six hundred thirty-one' WHERE a=12568;\nUPDATE t2 SET c='eighty-eight thousand nine hundred seventy-three' WHERE a=12569;\nUPDATE t2 SET c='four thousand five hundred eighty-eight' WHERE a=12570;\nUPDATE t2 SET c='eighty thousand nine hundred fifty' WHERE a=12571;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-eight' WHERE a=12572;\nUPDATE t2 SET c='twenty thousand three hundred forty-nine' WHERE a=12573;\nUPDATE t2 SET c='ninety-nine thousand one hundred sixty-seven' WHERE a=12574;\nUPDATE t2 SET c='five thousand eight hundred forty-six' WHERE a=12575;\nUPDATE t2 SET c='thirty-two thousand four hundred twelve' WHERE a=12576;\nUPDATE t2 SET c='forty-one thousand three hundred forty-eight' WHERE a=12577;\nUPDATE t2 SET c='six hundred four' WHERE a=12578;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=12579;\nUPDATE t2 SET c='eighty-nine thousand eight hundred ninety-nine' WHERE a=12580;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety-six' WHERE a=12581;\nUPDATE t2 SET c='fourteen thousand eight hundred fifty-four' WHERE a=12582;\nUPDATE t2 SET c='eighty-four thousand nine hundred seventy-eight' WHERE a=12583;\nUPDATE t2 SET c='eighty-two thousand six hundred seventy-nine' WHERE a=12584;\nUPDATE t2 SET c='twenty thousand five hundred nineteen' WHERE a=12585;\nUPDATE t2 SET c='two hundred sixty' WHERE a=12586;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-seven' WHERE a=12587;\nUPDATE t2 SET c='fifty-seven thousand eighty-nine' WHERE a=12588;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-one' WHERE a=12589;\nUPDATE t2 SET c='thirty-six thousand eighteen' WHERE a=12590;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-two' WHERE a=12591;\nUPDATE t2 SET c='seventy-six thousand thirty-six' WHERE a=12592;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-three' WHERE a=12593;\nUPDATE t2 SET c='eighty-eight thousand five hundred fifty-nine' WHERE a=12594;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-four' WHERE a=12595;\nUPDATE t2 SET c='thirty-two thousand one hundred twenty-seven' WHERE a=12596;\nUPDATE t2 SET c='fifty-five thousand two hundred thirty-eight' WHERE a=12597;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-six' WHERE a=12598;\nUPDATE t2 SET c='seven thousand eight hundred forty-seven' WHERE a=12599;\nUPDATE t2 SET c='twenty-six thousand seven hundred ninety-one' WHERE a=12600;\nUPDATE t2 SET c='nineteen thousand nine hundred ninety-nine' WHERE a=12601;\nUPDATE t2 SET c='fifty-eight thousand nine hundred eighty' WHERE a=12602;\nUPDATE t2 SET c='sixteen thousand sixty-nine' WHERE a=12603;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-nine' WHERE a=12604;\nUPDATE t2 SET c='three thousand nine hundred fifty-nine' WHERE a=12605;\nUPDATE t2 SET c='seventy-three thousand seventeen' WHERE a=12606;\nUPDATE t2 SET c='forty-nine thousand eight hundred ninety-one' WHERE a=12607;\nUPDATE t2 SET c='fifty-six thousand four hundred twenty-five' WHERE a=12608;\nUPDATE t2 SET c='thirty-two thousand six hundred twenty-five' WHERE a=12609;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-two' WHERE a=12610;\nUPDATE t2 SET c='forty-nine thousand ninety-seven' WHERE a=12611;\nUPDATE t2 SET c='sixty-three thousand two hundred forty' WHERE a=12612;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fifty-one' WHERE a=12613;\nUPDATE t2 SET c='six thousand forty' WHERE a=12614;\nUPDATE t2 SET c='thirty-nine thousand seven hundred ninety-six' WHERE a=12615;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventy-four' WHERE a=12616;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-three' WHERE a=12617;\nUPDATE t2 SET c='twenty-three thousand twenty-four' WHERE a=12618;\nUPDATE t2 SET c='one thousand seventy-four' WHERE a=12619;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-six' WHERE a=12620;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-six' WHERE a=12621;\nUPDATE t2 SET c='forty-one thousand four hundred thirty-five' WHERE a=12622;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-eight' WHERE a=12623;\nUPDATE t2 SET c='eighty-two thousand eight hundred sixty-nine' WHERE a=12624;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-three' WHERE a=12625;\nUPDATE t2 SET c='twenty-three thousand one hundred nineteen' WHERE a=12626;\nUPDATE t2 SET c='seventy-five thousand one hundred eighteen' WHERE a=12627;\nUPDATE t2 SET c='nine hundred eighty-seven' WHERE a=12628;\nUPDATE t2 SET c='seven thousand two hundred ninety-seven' WHERE a=12629;\nUPDATE t2 SET c='thirty-nine thousand nine hundred sixty-one' WHERE a=12630;\nUPDATE t2 SET c='ninety-nine thousand six hundred twenty-six' WHERE a=12631;\nUPDATE t2 SET c='eighty thousand six hundred five' WHERE a=12632;\nUPDATE t2 SET c='eighty-two thousand four hundred seventy-seven' WHERE a=12633;\nUPDATE t2 SET c='thirty-five thousand one hundred ninety-six' WHERE a=12634;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=12635;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-seven' WHERE a=12636;\nUPDATE t2 SET c='eighty thousand four hundred seventy-two' WHERE a=12637;\nUPDATE t2 SET c='forty thousand five hundred ninety-five' WHERE a=12638;\nUPDATE t2 SET c='five thousand six hundred eighty' WHERE a=12639;\nUPDATE t2 SET c='eighty-two thousand three hundred twenty-four' WHERE a=12640;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-nine' WHERE a=12641;\nUPDATE t2 SET c='fifty-three thousand one hundred forty-eight' WHERE a=12642;\nUPDATE t2 SET c='twenty thousand five hundred forty-nine' WHERE a=12643;\nUPDATE t2 SET c='forty-one thousand one hundred nineteen' WHERE a=12644;\nUPDATE t2 SET c='nine hundred fifty-nine' WHERE a=12645;\nUPDATE t2 SET c='fourteen thousand four hundred sixty-two' WHERE a=12646;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-eight' WHERE a=12647;\nUPDATE t2 SET c='sixty-one thousand eight hundred six' WHERE a=12648;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-five' WHERE a=12649;\nUPDATE t2 SET c='sixteen thousand one hundred fifty-five' WHERE a=12650;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy-three' WHERE a=12651;\nUPDATE t2 SET c='sixty-four thousand two hundred fifty-seven' WHERE a=12652;\nUPDATE t2 SET c='sixty-five thousand three hundred thirty-one' WHERE a=12653;\nUPDATE t2 SET c='ninety-one thousand seventy-four' WHERE a=12654;\nUPDATE t2 SET c='ninety-two thousand one hundred seventy' WHERE a=12655;\nUPDATE t2 SET c='one thousand eight hundred eleven' WHERE a=12656;\nUPDATE t2 SET c='fifty-four thousand seven hundred seventy-six' WHERE a=12657;\nUPDATE t2 SET c='seventy thousand four hundred sixty-eight' WHERE a=12658;\nUPDATE t2 SET c='ninety-nine thousand seven hundred sixty' WHERE a=12659;\nUPDATE t2 SET c='sixty-three thousand two hundred ten' WHERE a=12660;\nUPDATE t2 SET c='sixty-three thousand five hundred nine' WHERE a=12661;\nUPDATE t2 SET c='fourteen thousand one hundred two' WHERE a=12662;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=12663;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-eight' WHERE a=12664;\nUPDATE t2 SET c='forty-one thousand six hundred eighty-six' WHERE a=12665;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty-one' WHERE a=12666;\nUPDATE t2 SET c='seventy-two thousand eight hundred forty-five' WHERE a=12667;\nUPDATE t2 SET c='sixty-one thousand eight hundred ten' WHERE a=12668;\nUPDATE t2 SET c='twenty thousand six hundred seventy-one' WHERE a=12669;\nUPDATE t2 SET c='twelve thousand six hundred thirty-three' WHERE a=12670;\nUPDATE t2 SET c='three thousand eight hundred ninety-six' WHERE a=12671;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-five' WHERE a=12672;\nUPDATE t2 SET c='seventy-five thousand six hundred sixty-six' WHERE a=12673;\nUPDATE t2 SET c='eighty-three thousand three hundred thirty-nine' WHERE a=12674;\nUPDATE t2 SET c='fifty-five thousand three hundred seventy-nine' WHERE a=12675;\nUPDATE t2 SET c='sixty-seven thousand seventy-one' WHERE a=12676;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-six' WHERE a=12677;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixty-eight' WHERE a=12678;\nUPDATE t2 SET c='fourteen thousand seven hundred twenty-seven' WHERE a=12679;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-nine' WHERE a=12680;\nUPDATE t2 SET c='twenty-two thousand three hundred seventy-nine' WHERE a=12681;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy-four' WHERE a=12682;\nUPDATE t2 SET c='twenty-seven thousand three hundred twenty-four' WHERE a=12683;\nUPDATE t2 SET c='thirty-four thousand seven hundred seventy-eight' WHERE a=12684;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-five' WHERE a=12685;\nUPDATE t2 SET c='forty-eight thousand five hundred twelve' WHERE a=12686;\nUPDATE t2 SET c='ninety-seven thousand six hundred fifty-six' WHERE a=12687;\nUPDATE t2 SET c='thirty-five thousand fifty-one' WHERE a=12688;\nUPDATE t2 SET c='fifty-two thousand fifty-nine' WHERE a=12689;\nUPDATE t2 SET c='nine hundred sixty-four' WHERE a=12690;\nUPDATE t2 SET c='seven thousand seventy-six' WHERE a=12691;\nUPDATE t2 SET c='two thousand five hundred fourteen' WHERE a=12692;\nUPDATE t2 SET c='eighty-two thousand eight hundred eighty-four' WHERE a=12693;\nUPDATE t2 SET c='ninety-one thousand four hundred nineteen' WHERE a=12694;\nUPDATE t2 SET c='ninety-seven thousand six hundred ninety-eight' WHERE a=12695;\nUPDATE t2 SET c='eighty-seven thousand nine' WHERE a=12696;\nUPDATE t2 SET c='twenty-seven thousand six hundred sixty-three' WHERE a=12697;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty-seven' WHERE a=12698;\nUPDATE t2 SET c='five thousand seven hundred forty-five' WHERE a=12699;\nUPDATE t2 SET c='seventy-six thousand one hundred ninety-three' WHERE a=12700;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventeen' WHERE a=12701;\nUPDATE t2 SET c='ninety-one thousand three hundred eighty-six' WHERE a=12702;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-eight' WHERE a=12703;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty' WHERE a=12704;\nUPDATE t2 SET c='seventy-two thousand three hundred six' WHERE a=12705;\nUPDATE t2 SET c='twenty-three thousand seven hundred ninety-seven' WHERE a=12706;\nUPDATE t2 SET c='ninety-four thousand three hundred two' WHERE a=12707;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-nine' WHERE a=12708;\nUPDATE t2 SET c='eighty-one thousand one hundred fifty-seven' WHERE a=12709;\nUPDATE t2 SET c='fifty-nine thousand nine hundred ninety-six' WHERE a=12710;\nUPDATE t2 SET c='sixty-seven thousand six hundred five' WHERE a=12711;\nUPDATE t2 SET c='ninety-three thousand seventy-five' WHERE a=12712;\nUPDATE t2 SET c='twenty-six thousand eight hundred fifty-two' WHERE a=12713;\nUPDATE t2 SET c='fifty-three thousand eight hundred forty-seven' WHERE a=12714;\nUPDATE t2 SET c='twenty-six thousand six hundred eighty-eight' WHERE a=12715;\nUPDATE t2 SET c='twenty-six thousand six hundred sixty' WHERE a=12716;\nUPDATE t2 SET c='eighty-four thousand three hundred ninety-nine' WHERE a=12717;\nUPDATE t2 SET c='seven thousand five hundred seventy-two' WHERE a=12718;\nUPDATE t2 SET c='thirty-three thousand two hundred nine' WHERE a=12719;\nUPDATE t2 SET c='seventy-seven thousand eight hundred sixty-nine' WHERE a=12720;\nUPDATE t2 SET c='sixty-two thousand eight hundred twenty-one' WHERE a=12721;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty-one' WHERE a=12722;\nUPDATE t2 SET c='seventy-three thousand three hundred sixty-two' WHERE a=12723;\nUPDATE t2 SET c='forty-six thousand five hundred fifty-six' WHERE a=12724;\nUPDATE t2 SET c='forty-one thousand four hundred ninety-two' WHERE a=12725;\nUPDATE t2 SET c='seventy-four thousand six hundred eighty-seven' WHERE a=12726;\nUPDATE t2 SET c='eighty-nine thousand ninety-two' WHERE a=12727;\nUPDATE t2 SET c='nine thousand four' WHERE a=12728;\nUPDATE t2 SET c='thirty-three thousand two hundred ninety-six' WHERE a=12729;\nUPDATE t2 SET c='fifty-two thousand eight hundred eighteen' WHERE a=12730;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-three' WHERE a=12731;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=12732;\nUPDATE t2 SET c='thirty-four thousand four hundred nine' WHERE a=12733;\nUPDATE t2 SET c='eighty thousand forty-four' WHERE a=12734;\nUPDATE t2 SET c='eighty-nine thousand five hundred six' WHERE a=12735;\nUPDATE t2 SET c='seventy-five thousand eight hundred eighty-five' WHERE a=12736;\nUPDATE t2 SET c='thirty-five thousand seventy-four' WHERE a=12737;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-five' WHERE a=12738;\nUPDATE t2 SET c='sixty-eight thousand seven hundred eighty-four' WHERE a=12739;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighty' WHERE a=12740;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-two' WHERE a=12741;\nUPDATE t2 SET c='fifteen thousand three hundred thirty-four' WHERE a=12742;\nUPDATE t2 SET c='five thousand nine hundred twenty-eight' WHERE a=12743;\nUPDATE t2 SET c='fifty-two thousand one hundred seventy-three' WHERE a=12744;\nUPDATE t2 SET c='thirty-one thousand three hundred twenty-five' WHERE a=12745;\nUPDATE t2 SET c='forty-two thousand fifty' WHERE a=12746;\nUPDATE t2 SET c='eleven thousand one hundred sixty-three' WHERE a=12747;\nUPDATE t2 SET c='nine thousand six hundred one' WHERE a=12748;\nUPDATE t2 SET c='seventeen thousand forty-six' WHERE a=12749;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-nine' WHERE a=12750;\nUPDATE t2 SET c='eighty-seven thousand seventy-seven' WHERE a=12751;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-seven' WHERE a=12752;\nUPDATE t2 SET c='nine thousand eighty' WHERE a=12753;\nUPDATE t2 SET c='thirteen thousand four hundred forty-six' WHERE a=12754;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=12755;\nUPDATE t2 SET c='twelve thousand twenty-eight' WHERE a=12756;\nUPDATE t2 SET c='forty-five thousand one hundred seventy-six' WHERE a=12757;\nUPDATE t2 SET c='forty-eight thousand three hundred fifty' WHERE a=12758;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-two' WHERE a=12759;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-seven' WHERE a=12760;\nUPDATE t2 SET c='fifty-five thousand seven hundred fifty-six' WHERE a=12761;\nUPDATE t2 SET c='twenty-seven thousand three hundred twenty-eight' WHERE a=12762;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-one' WHERE a=12763;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-eight' WHERE a=12764;\nUPDATE t2 SET c='fifty-one thousand six hundred eighty-seven' WHERE a=12765;\nUPDATE t2 SET c='three thousand six hundred fifty-two' WHERE a=12766;\nUPDATE t2 SET c='eleven thousand four hundred ninety-seven' WHERE a=12767;\nUPDATE t2 SET c='eighty-nine thousand seven hundred seventy-two' WHERE a=12768;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-one' WHERE a=12769;\nUPDATE t2 SET c='five thousand two hundred eighty-three' WHERE a=12770;\nUPDATE t2 SET c='two thousand three hundred ninety-six' WHERE a=12771;\nUPDATE t2 SET c='twenty thousand nine hundred ninety-seven' WHERE a=12772;\nUPDATE t2 SET c='three thousand seven hundred seventy-six' WHERE a=12773;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-one' WHERE a=12774;\nUPDATE t2 SET c='nine thousand one hundred sixty-two' WHERE a=12775;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-nine' WHERE a=12776;\nUPDATE t2 SET c='forty-six thousand nine hundred sixty-eight' WHERE a=12777;\nUPDATE t2 SET c='ninety-six thousand five hundred ninety-three' WHERE a=12778;\nUPDATE t2 SET c='forty thousand seven hundred eighty-three' WHERE a=12779;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-eight' WHERE a=12780;\nUPDATE t2 SET c='thirty-six thousand two hundred fifty-two' WHERE a=12781;\nUPDATE t2 SET c='forty thousand five hundred nineteen' WHERE a=12782;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-five' WHERE a=12783;\nUPDATE t2 SET c='twelve thousand one hundred fifty-nine' WHERE a=12784;\nUPDATE t2 SET c='sixty-one thousand sixty-six' WHERE a=12785;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-eight' WHERE a=12786;\nUPDATE t2 SET c='thirty-two thousand eight hundred forty-five' WHERE a=12787;\nUPDATE t2 SET c='forty-eight thousand nine hundred twenty-seven' WHERE a=12788;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-six' WHERE a=12789;\nUPDATE t2 SET c='fifty-two thousand eight hundred sixty-one' WHERE a=12790;\nUPDATE t2 SET c='twenty-six thousand five hundred seventy-three' WHERE a=12791;\nUPDATE t2 SET c='sixty-six thousand eight hundred thirty-six' WHERE a=12792;\nUPDATE t2 SET c='three thousand two hundred forty-four' WHERE a=12793;\nUPDATE t2 SET c='ten thousand eight hundred eighty-three' WHERE a=12794;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-five' WHERE a=12795;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-one' WHERE a=12796;\nUPDATE t2 SET c='fifty thousand two hundred' WHERE a=12797;\nUPDATE t2 SET c='fifteen thousand nine hundred eighty-six' WHERE a=12798;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-two' WHERE a=12799;\nUPDATE t2 SET c='seventy-nine thousand nine hundred eighty-one' WHERE a=12800;\nUPDATE t2 SET c='seventy-seven thousand one hundred eleven' WHERE a=12801;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifteen' WHERE a=12802;\nUPDATE t2 SET c='thirty thousand six hundred sixty' WHERE a=12803;\nUPDATE t2 SET c='seventy-nine thousand eight hundred forty-seven' WHERE a=12804;\nUPDATE t2 SET c='fifty thousand forty-six' WHERE a=12805;\nUPDATE t2 SET c='fifteen thousand five hundred nineteen' WHERE a=12806;\nUPDATE t2 SET c='eighty-six thousand six hundred twelve' WHERE a=12807;\nUPDATE t2 SET c='twelve thousand forty-six' WHERE a=12808;\nUPDATE t2 SET c='seventy-five thousand three hundred eighty-eight' WHERE a=12809;\nUPDATE t2 SET c='forty-eight thousand three hundred seventy-one' WHERE a=12810;\nUPDATE t2 SET c='fifty-nine thousand one hundred nineteen' WHERE a=12811;\nUPDATE t2 SET c='ten thousand five hundred sixteen' WHERE a=12812;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty' WHERE a=12813;\nUPDATE t2 SET c='sixty-one thousand four hundred six' WHERE a=12814;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-one' WHERE a=12815;\nUPDATE t2 SET c='thirty-eight thousand nine hundred forty-three' WHERE a=12816;\nUPDATE t2 SET c='thirty-seven thousand seventy-five' WHERE a=12817;\nUPDATE t2 SET c='fifteen thousand six hundred fourteen' WHERE a=12818;\nUPDATE t2 SET c='eighty thousand nine hundred fifteen' WHERE a=12819;\nUPDATE t2 SET c='one thousand seven hundred nineteen' WHERE a=12820;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-seven' WHERE a=12821;\nUPDATE t2 SET c='twenty-three thousand one hundred nineteen' WHERE a=12822;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-three' WHERE a=12823;\nUPDATE t2 SET c='twenty-five thousand four hundred sixteen' WHERE a=12824;\nUPDATE t2 SET c='sixty-four thousand six hundred twelve' WHERE a=12825;\nUPDATE t2 SET c='sixty-three thousand four hundred ninety-three' WHERE a=12826;\nUPDATE t2 SET c='ninety-one thousand six hundred one' WHERE a=12827;\nUPDATE t2 SET c='sixty thousand eight hundred twenty' WHERE a=12828;\nUPDATE t2 SET c='thirty-four thousand eight hundred seven' WHERE a=12829;\nUPDATE t2 SET c='nineteen thousand five hundred six' WHERE a=12830;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-five' WHERE a=12831;\nUPDATE t2 SET c='thirty-one thousand two hundred thirty-four' WHERE a=12832;\nUPDATE t2 SET c='five hundred eighty-five' WHERE a=12833;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=12834;\nUPDATE t2 SET c='two thousand forty-nine' WHERE a=12835;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-two' WHERE a=12836;\nUPDATE t2 SET c='seventy thousand seven hundred fourteen' WHERE a=12837;\nUPDATE t2 SET c='seventy-six thousand one hundred thirty-six' WHERE a=12838;\nUPDATE t2 SET c='sixty-two thousand three hundred three' WHERE a=12839;\nUPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=12840;\nUPDATE t2 SET c='three thousand seven hundred forty-one' WHERE a=12841;\nUPDATE t2 SET c='fifty-four thousand four hundred fourteen' WHERE a=12842;\nUPDATE t2 SET c='sixty-six thousand seven hundred seventy-nine' WHERE a=12843;\nUPDATE t2 SET c='eighteen thousand two hundred eighty-one' WHERE a=12844;\nUPDATE t2 SET c='seventeen thousand five hundred eighteen' WHERE a=12845;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety-three' WHERE a=12846;\nUPDATE t2 SET c='eighty-six thousand one hundred eighty-seven' WHERE a=12847;\nUPDATE t2 SET c='eighty-nine thousand four hundred thirty-eight' WHERE a=12848;\nUPDATE t2 SET c='forty-one thousand nine hundred eighteen' WHERE a=12849;\nUPDATE t2 SET c='seventy-one thousand three hundred sixty-seven' WHERE a=12850;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-five' WHERE a=12851;\nUPDATE t2 SET c='twenty-nine thousand seven hundred eighty-two' WHERE a=12852;\nUPDATE t2 SET c='seventy-eight thousand five hundred ninety-nine' WHERE a=12853;\nUPDATE t2 SET c='four thousand nine hundred seventy-four' WHERE a=12854;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-three' WHERE a=12855;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-seven' WHERE a=12856;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty' WHERE a=12857;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixty-five' WHERE a=12858;\nUPDATE t2 SET c='one thousand three hundred nineteen' WHERE a=12859;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirteen' WHERE a=12860;\nUPDATE t2 SET c='seventy thousand six hundred ten' WHERE a=12861;\nUPDATE t2 SET c='nine thousand four hundred thirteen' WHERE a=12862;\nUPDATE t2 SET c='ninety-six thousand four hundred two' WHERE a=12863;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-one' WHERE a=12864;\nUPDATE t2 SET c='eighty-three thousand nine hundred seventy-one' WHERE a=12865;\nUPDATE t2 SET c='ninety-six thousand two hundred sixty-two' WHERE a=12866;\nUPDATE t2 SET c='forty-four thousand three hundred fifty' WHERE a=12867;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eighty-six' WHERE a=12868;\nUPDATE t2 SET c='thirty-nine thousand ninety-eight' WHERE a=12869;\nUPDATE t2 SET c='ten thousand six hundred twenty-nine' WHERE a=12870;\nUPDATE t2 SET c='seventy-five thousand four hundred twenty-six' WHERE a=12871;\nUPDATE t2 SET c='ten thousand two hundred two' WHERE a=12872;\nUPDATE t2 SET c='twenty-five thousand eight hundred fifty' WHERE a=12873;\nUPDATE t2 SET c='ninety-nine thousand one hundred one' WHERE a=12874;\nUPDATE t2 SET c='ninety-seven thousand three hundred fifty-six' WHERE a=12875;\nUPDATE t2 SET c='twenty-seven thousand two hundred seventy-three' WHERE a=12876;\nUPDATE t2 SET c='twenty-one thousand three hundred one' WHERE a=12877;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-six' WHERE a=12878;\nUPDATE t2 SET c='nine thousand eight hundred twelve' WHERE a=12879;\nUPDATE t2 SET c='thirty thousand six hundred eighty' WHERE a=12880;\nUPDATE t2 SET c='ninety-eight thousand forty-seven' WHERE a=12881;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-nine' WHERE a=12882;\nUPDATE t2 SET c='twenty-six thousand one hundred ten' WHERE a=12883;\nUPDATE t2 SET c='twenty-eight thousand eighty-eight' WHERE a=12884;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-eight' WHERE a=12885;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-eight' WHERE a=12886;\nUPDATE t2 SET c='eighteen thousand six hundred forty' WHERE a=12887;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-three' WHERE a=12888;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty' WHERE a=12889;\nUPDATE t2 SET c='two thousand one hundred thirteen' WHERE a=12890;\nUPDATE t2 SET c='sixty-five thousand ninety-six' WHERE a=12891;\nUPDATE t2 SET c='seventy thousand six hundred nineteen' WHERE a=12892;\nUPDATE t2 SET c='two thousand five hundred eighty-one' WHERE a=12893;\nUPDATE t2 SET c='forty-two thousand three hundred thirty-seven' WHERE a=12894;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-four' WHERE a=12895;\nUPDATE t2 SET c='forty-seven thousand six hundred sixty-four' WHERE a=12896;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-six' WHERE a=12897;\nUPDATE t2 SET c='thirty-five thousand nine hundred twenty' WHERE a=12898;\nUPDATE t2 SET c='eighty thousand five hundred sixty' WHERE a=12899;\nUPDATE t2 SET c='sixteen thousand two hundred twelve' WHERE a=12900;\nUPDATE t2 SET c='sixty-five thousand one hundred seventy-eight' WHERE a=12901;\nUPDATE t2 SET c='twenty-one thousand nine hundred eleven' WHERE a=12902;\nUPDATE t2 SET c='fifty-six thousand twenty-five' WHERE a=12903;\nUPDATE t2 SET c='sixteen thousand five hundred five' WHERE a=12904;\nUPDATE t2 SET c='seventy-four thousand seventy-seven' WHERE a=12905;\nUPDATE t2 SET c='eighty-two thousand nine hundred thirty-seven' WHERE a=12906;\nUPDATE t2 SET c='fifty-six thousand one hundred eighty-three' WHERE a=12907;\nUPDATE t2 SET c='seventy-six thousand seven hundred eleven' WHERE a=12908;\nUPDATE t2 SET c='five thousand eight hundred twenty-eight' WHERE a=12909;\nUPDATE t2 SET c='two thousand two hundred seventy-six' WHERE a=12910;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-five' WHERE a=12911;\nUPDATE t2 SET c='ninety-one thousand five hundred fifty-nine' WHERE a=12912;\nUPDATE t2 SET c='eighty-one thousand five hundred sixty-nine' WHERE a=12913;\nUPDATE t2 SET c='thirty-four thousand fifteen' WHERE a=12914;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-two' WHERE a=12915;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-two' WHERE a=12916;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-five' WHERE a=12917;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety-four' WHERE a=12918;\nUPDATE t2 SET c='seventy thousand one hundred thirty-six' WHERE a=12919;\nUPDATE t2 SET c='twenty thousand eight hundred two' WHERE a=12920;\nUPDATE t2 SET c='ninety-five thousand one hundred twenty-five' WHERE a=12921;\nUPDATE t2 SET c='thirty-five thousand seven hundred eighteen' WHERE a=12922;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-nine' WHERE a=12923;\nUPDATE t2 SET c='sixty-one thousand nine hundred thirty-three' WHERE a=12924;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-one' WHERE a=12925;\nUPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=12926;\nUPDATE t2 SET c='fourteen thousand forty-two' WHERE a=12927;\nUPDATE t2 SET c='seventy-two thousand nine hundred thirty-one' WHERE a=12928;\nUPDATE t2 SET c='fifty-four thousand three hundred seventy-five' WHERE a=12929;\nUPDATE t2 SET c='fifty-six thousand one' WHERE a=12930;\nUPDATE t2 SET c='eighty-nine thousand one hundred seventy-two' WHERE a=12931;\nUPDATE t2 SET c='thirteen thousand seventy-five' WHERE a=12932;\nUPDATE t2 SET c='fifty-four thousand seven hundred six' WHERE a=12933;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-three' WHERE a=12934;\nUPDATE t2 SET c='seventy thousand six hundred eight' WHERE a=12935;\nUPDATE t2 SET c='thirty-five thousand six hundred forty-five' WHERE a=12936;\nUPDATE t2 SET c='ninety thousand nine hundred two' WHERE a=12937;\nUPDATE t2 SET c='fourteen thousand six hundred sixty' WHERE a=12938;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-two' WHERE a=12939;\nUPDATE t2 SET c='ten thousand forty-eight' WHERE a=12940;\nUPDATE t2 SET c='forty-five thousand eight hundred thirteen' WHERE a=12941;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty-one' WHERE a=12942;\nUPDATE t2 SET c='fifty-four thousand seven hundred thirty-seven' WHERE a=12943;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-seven' WHERE a=12944;\nUPDATE t2 SET c='fifty-seven thousand nine hundred seventy-six' WHERE a=12945;\nUPDATE t2 SET c='forty-nine thousand seven hundred thirty-eight' WHERE a=12946;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-three' WHERE a=12947;\nUPDATE t2 SET c='seventy-eight thousand four hundred twenty-eight' WHERE a=12948;\nUPDATE t2 SET c='twenty-two thousand six hundred fifty-one' WHERE a=12949;\nUPDATE t2 SET c='seventy-one thousand three hundred thirty-six' WHERE a=12950;\nUPDATE t2 SET c='sixty-one thousand five hundred eleven' WHERE a=12951;\nUPDATE t2 SET c='forty-eight thousand two hundred ninety-eight' WHERE a=12952;\nUPDATE t2 SET c='sixty-nine thousand eight hundred ninety-nine' WHERE a=12953;\nUPDATE t2 SET c='thirty-nine thousand six hundred twenty-three' WHERE a=12954;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-nine' WHERE a=12955;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-five' WHERE a=12956;\nUPDATE t2 SET c='thirty-five thousand four hundred twelve' WHERE a=12957;\nUPDATE t2 SET c='eighty-seven thousand eight hundred fifty-two' WHERE a=12958;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-seven' WHERE a=12959;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-one' WHERE a=12960;\nUPDATE t2 SET c='thirty-two thousand five hundred sixty-seven' WHERE a=12961;\nUPDATE t2 SET c='thirty thousand five hundred thirty-seven' WHERE a=12962;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-eight' WHERE a=12963;\nUPDATE t2 SET c='thirteen thousand eight hundred nineteen' WHERE a=12964;\nUPDATE t2 SET c='four thousand one hundred ninety-five' WHERE a=12965;\nUPDATE t2 SET c='twelve thousand two hundred nineteen' WHERE a=12966;\nUPDATE t2 SET c='seventy-one thousand nine hundred sixty-nine' WHERE a=12967;\nUPDATE t2 SET c='forty-six thousand three hundred nineteen' WHERE a=12968;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-two' WHERE a=12969;\nUPDATE t2 SET c='sixty-two thousand five hundred ninety-five' WHERE a=12970;\nUPDATE t2 SET c='ninety-one thousand sixty-seven' WHERE a=12971;\nUPDATE t2 SET c='eighty-five thousand fifty-eight' WHERE a=12972;\nUPDATE t2 SET c='ninety-nine thousand six hundred sixty-one' WHERE a=12973;\nUPDATE t2 SET c='seventy-one thousand three hundred eighty-one' WHERE a=12974;\nUPDATE t2 SET c='ninety-nine thousand seven hundred thirty-seven' WHERE a=12975;\nUPDATE t2 SET c='sixty-five thousand three hundred fifty-nine' WHERE a=12976;\nUPDATE t2 SET c='twenty-two thousand one hundred twenty-three' WHERE a=12977;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-five' WHERE a=12978;\nUPDATE t2 SET c='sixty thousand eight hundred forty-four' WHERE a=12979;\nUPDATE t2 SET c='seventy-nine thousand four hundred fourteen' WHERE a=12980;\nUPDATE t2 SET c='fifty thousand one hundred fifty-two' WHERE a=12981;\nUPDATE t2 SET c='forty-two thousand two hundred eighty-two' WHERE a=12982;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-six' WHERE a=12983;\nUPDATE t2 SET c='seventy-five thousand two hundred eighty-three' WHERE a=12984;\nUPDATE t2 SET c='one thousand two hundred seventy-nine' WHERE a=12985;\nUPDATE t2 SET c='fifty-one thousand five hundred twenty-four' WHERE a=12986;\nUPDATE t2 SET c='twenty-four thousand five hundred fifty-three' WHERE a=12987;\nUPDATE t2 SET c='sixty-nine thousand two hundred fifty-eight' WHERE a=12988;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty-six' WHERE a=12989;\nUPDATE t2 SET c='five thousand eight hundred nineteen' WHERE a=12990;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-six' WHERE a=12991;\nUPDATE t2 SET c='thirty-six thousand two hundred sixty-six' WHERE a=12992;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-three' WHERE a=12993;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-one' WHERE a=12994;\nUPDATE t2 SET c='fifty thousand one hundred twenty' WHERE a=12995;\nUPDATE t2 SET c='twelve thousand fifty-six' WHERE a=12996;\nUPDATE t2 SET c='ninety thousand four hundred ninety' WHERE a=12997;\nUPDATE t2 SET c='ninety-nine thousand three hundred eighteen' WHERE a=12998;\nUPDATE t2 SET c='eighty-seven thousand thirty-five' WHERE a=12999;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-eight' WHERE a=13000;\nUPDATE t2 SET c='one thousand two hundred sixty-one' WHERE a=13001;\nUPDATE t2 SET c='forty-seven thousand eighty-three' WHERE a=13002;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-six' WHERE a=13003;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-two' WHERE a=13004;\nUPDATE t2 SET c='seventy-four thousand one hundred four' WHERE a=13005;\nUPDATE t2 SET c='seventy-six thousand four hundred ninety-six' WHERE a=13006;\nUPDATE t2 SET c='one thousand two hundred fifty-five' WHERE a=13007;\nUPDATE t2 SET c='four thousand seven hundred thirty' WHERE a=13008;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-nine' WHERE a=13009;\nUPDATE t2 SET c='forty-four thousand one hundred' WHERE a=13010;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-six' WHERE a=13011;\nUPDATE t2 SET c='forty-five thousand four hundred sixty-six' WHERE a=13012;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-five' WHERE a=13013;\nUPDATE t2 SET c='thirty-one thousand two hundred fourteen' WHERE a=13014;\nUPDATE t2 SET c='forty-six thousand eight hundred twenty-five' WHERE a=13015;\nUPDATE t2 SET c='forty thousand five hundred fifty-nine' WHERE a=13016;\nUPDATE t2 SET c='sixteen thousand nine hundred three' WHERE a=13017;\nUPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=13018;\nUPDATE t2 SET c='ninety-five thousand two hundred ninety-four' WHERE a=13019;\nUPDATE t2 SET c='sixty-three thousand four hundred fifty-eight' WHERE a=13020;\nUPDATE t2 SET c='twenty-one thousand eight hundred forty-one' WHERE a=13021;\nUPDATE t2 SET c='forty-five thousand sixty-nine' WHERE a=13022;\nUPDATE t2 SET c='sixty-one thousand seven hundred eighty-two' WHERE a=13023;\nUPDATE t2 SET c='twenty-nine thousand nine hundred forty-six' WHERE a=13024;\nUPDATE t2 SET c='twenty-three thousand three hundred ninety-five' WHERE a=13025;\nUPDATE t2 SET c='eighteen thousand four hundred thirty' WHERE a=13026;\nUPDATE t2 SET c='sixty-eight thousand nine hundred ten' WHERE a=13027;\nUPDATE t2 SET c='twenty-three thousand sixty-seven' WHERE a=13028;\nUPDATE t2 SET c='forty thousand two hundred seventy-seven' WHERE a=13029;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty-four' WHERE a=13030;\nUPDATE t2 SET c='eleven thousand eight hundred six' WHERE a=13031;\nUPDATE t2 SET c='seven thousand one hundred ninety-two' WHERE a=13032;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-seven' WHERE a=13033;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-six' WHERE a=13034;\nUPDATE t2 SET c='eighty-nine thousand seven hundred forty-four' WHERE a=13035;\nUPDATE t2 SET c='forty-nine thousand three hundred twenty-nine' WHERE a=13036;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-five' WHERE a=13037;\nUPDATE t2 SET c='seventy-three thousand eight hundred ninety-three' WHERE a=13038;\nUPDATE t2 SET c='seventy thousand five hundred nine' WHERE a=13039;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-eight' WHERE a=13040;\nUPDATE t2 SET c='forty-six thousand five hundred fifty' WHERE a=13041;\nUPDATE t2 SET c='seventy-eight thousand thirty' WHERE a=13042;\nUPDATE t2 SET c='eight thousand ninety-eight' WHERE a=13043;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty' WHERE a=13044;\nUPDATE t2 SET c='four thousand six hundred fourteen' WHERE a=13045;\nUPDATE t2 SET c='twenty-six thousand four hundred seventeen' WHERE a=13046;\nUPDATE t2 SET c='twenty-seven thousand twenty-eight' WHERE a=13047;\nUPDATE t2 SET c='sixty-four thousand six hundred thirty-five' WHERE a=13048;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-three' WHERE a=13049;\nUPDATE t2 SET c='thirty-seven thousand three hundred forty-three' WHERE a=13050;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-six' WHERE a=13051;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-nine' WHERE a=13052;\nUPDATE t2 SET c='six thousand three hundred seven' WHERE a=13053;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-nine' WHERE a=13054;\nUPDATE t2 SET c='thirty-eight thousand five hundred twenty-eight' WHERE a=13055;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-nine' WHERE a=13056;\nUPDATE t2 SET c='fifty-one thousand six hundred five' WHERE a=13057;\nUPDATE t2 SET c='seven thousand nine hundred forty-one' WHERE a=13058;\nUPDATE t2 SET c='thirty-two thousand six hundred seventy' WHERE a=13059;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-six' WHERE a=13060;\nUPDATE t2 SET c='seventy-three thousand one' WHERE a=13061;\nUPDATE t2 SET c='sixty-two thousand four hundred thirty-four' WHERE a=13062;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-eight' WHERE a=13063;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=13064;\nUPDATE t2 SET c='fifty-three thousand nine hundred forty-four' WHERE a=13065;\nUPDATE t2 SET c='thirty-two thousand eight hundred eighty-five' WHERE a=13066;\nUPDATE t2 SET c='eighty-four thousand one hundred fifty-seven' WHERE a=13067;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-one' WHERE a=13068;\nUPDATE t2 SET c='fifty-seven thousand three hundred eight' WHERE a=13069;\nUPDATE t2 SET c='forty-six thousand one hundred nine' WHERE a=13070;\nUPDATE t2 SET c='forty-six thousand one hundred sixty-six' WHERE a=13071;\nUPDATE t2 SET c='three thousand eight hundred ninety-seven' WHERE a=13072;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty' WHERE a=13073;\nUPDATE t2 SET c='twenty-two thousand seven hundred thirty-two' WHERE a=13074;\nUPDATE t2 SET c='forty-nine thousand nine hundred ninety-three' WHERE a=13075;\nUPDATE t2 SET c='seventy-one thousand five hundred twelve' WHERE a=13076;\nUPDATE t2 SET c='sixty-one thousand one hundred thirty-one' WHERE a=13077;\nUPDATE t2 SET c='twenty-five thousand five hundred twenty-six' WHERE a=13078;\nUPDATE t2 SET c='eight thousand fifty-three' WHERE a=13079;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-two' WHERE a=13080;\nUPDATE t2 SET c='nine thousand one hundred forty-three' WHERE a=13081;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-one' WHERE a=13082;\nUPDATE t2 SET c='thirty-five thousand sixty-three' WHERE a=13083;\nUPDATE t2 SET c='thirty-five thousand nine hundred' WHERE a=13084;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety' WHERE a=13085;\nUPDATE t2 SET c='fifty-six thousand six hundred eleven' WHERE a=13086;\nUPDATE t2 SET c='forty-three thousand eight hundred fifty-seven' WHERE a=13087;\nUPDATE t2 SET c='nineteen thousand one hundred eighty-one' WHERE a=13088;\nUPDATE t2 SET c='forty-nine thousand two hundred twelve' WHERE a=13089;\nUPDATE t2 SET c='four thousand two hundred seventy-five' WHERE a=13090;\nUPDATE t2 SET c='one thousand eighty' WHERE a=13091;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=13092;\nUPDATE t2 SET c='thirty-two thousand three hundred thirty-nine' WHERE a=13093;\nUPDATE t2 SET c='ninety thousand ninety-seven' WHERE a=13094;\nUPDATE t2 SET c='ninety-one thousand two hundred forty-five' WHERE a=13095;\nUPDATE t2 SET c='ninety-six thousand six hundred fifteen' WHERE a=13096;\nUPDATE t2 SET c='fifty-eight thousand ninety-four' WHERE a=13097;\nUPDATE t2 SET c='seven thousand three hundred seventy-two' WHERE a=13098;\nUPDATE t2 SET c='fifty-seven thousand eighty-eight' WHERE a=13099;\nUPDATE t2 SET c='twelve thousand three hundred forty-four' WHERE a=13100;\nUPDATE t2 SET c='fifty-seven thousand six hundred fifty-five' WHERE a=13101;\nUPDATE t2 SET c='four thousand one hundred eighty-seven' WHERE a=13102;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty-one' WHERE a=13103;\nUPDATE t2 SET c='nineteen thousand three hundred fifty-eight' WHERE a=13104;\nUPDATE t2 SET c='fifty-nine thousand three hundred fourteen' WHERE a=13105;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-five' WHERE a=13106;\nUPDATE t2 SET c='forty-two thousand two hundred eighteen' WHERE a=13107;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-seven' WHERE a=13108;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-four' WHERE a=13109;\nUPDATE t2 SET c='forty-eight thousand six hundred twenty-nine' WHERE a=13110;\nUPDATE t2 SET c='sixty thousand four hundred twenty-seven' WHERE a=13111;\nUPDATE t2 SET c='twenty-two thousand four hundred four' WHERE a=13112;\nUPDATE t2 SET c='fifty-four thousand five' WHERE a=13113;\nUPDATE t2 SET c='ninety-five thousand six hundred seven' WHERE a=13114;\nUPDATE t2 SET c='fourteen thousand one hundred eleven' WHERE a=13115;\nUPDATE t2 SET c='thirty-seven thousand ninety' WHERE a=13116;\nUPDATE t2 SET c='eighty-eight thousand ninety-four' WHERE a=13117;\nUPDATE t2 SET c='forty-five thousand three hundred ninety-nine' WHERE a=13118;\nUPDATE t2 SET c='thirty-three thousand two hundred eighty-seven' WHERE a=13119;\nUPDATE t2 SET c='twenty-nine thousand six hundred forty-five' WHERE a=13120;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixty-one' WHERE a=13121;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-one' WHERE a=13122;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-nine' WHERE a=13123;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-two' WHERE a=13124;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-one' WHERE a=13125;\nUPDATE t2 SET c='thirteen thousand one hundred fifty-nine' WHERE a=13126;\nUPDATE t2 SET c='forty-two thousand four hundred fourteen' WHERE a=13127;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-eight' WHERE a=13128;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-four' WHERE a=13129;\nUPDATE t2 SET c='thirty-seven thousand six hundred eighty-three' WHERE a=13130;\nUPDATE t2 SET c='seventy-three thousand three hundred eighty-one' WHERE a=13131;\nUPDATE t2 SET c='seventeen thousand seven hundred two' WHERE a=13132;\nUPDATE t2 SET c='forty-eight thousand six hundred fifty-three' WHERE a=13133;\nUPDATE t2 SET c='seventy-five thousand nine hundred ninety-three' WHERE a=13134;\nUPDATE t2 SET c='ninety-three thousand three hundred sixty-nine' WHERE a=13135;\nUPDATE t2 SET c='fifty-five thousand four hundred thirty-eight' WHERE a=13136;\nUPDATE t2 SET c='seventy-three thousand one hundred sixty-two' WHERE a=13137;\nUPDATE t2 SET c='sixty-five thousand one hundred sixty-five' WHERE a=13138;\nUPDATE t2 SET c='ninety-five thousand five hundred twenty-three' WHERE a=13139;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-two' WHERE a=13140;\nUPDATE t2 SET c='seventeen thousand three hundred six' WHERE a=13141;\nUPDATE t2 SET c='six thousand seven hundred eighty-six' WHERE a=13142;\nUPDATE t2 SET c='thirty thousand three hundred seventy-two' WHERE a=13143;\nUPDATE t2 SET c='fifty-six thousand five hundred ninety-one' WHERE a=13144;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy-seven' WHERE a=13145;\nUPDATE t2 SET c='twenty-two thousand nine hundred forty-six' WHERE a=13146;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixty-nine' WHERE a=13147;\nUPDATE t2 SET c='sixteen thousand one hundred eleven' WHERE a=13148;\nUPDATE t2 SET c='eighteen thousand fifty-two' WHERE a=13149;\nUPDATE t2 SET c='eighty-three thousand one hundred forty-two' WHERE a=13150;\nUPDATE t2 SET c='twenty-four thousand eight hundred seven' WHERE a=13151;\nUPDATE t2 SET c='forty-nine thousand sixty-two' WHERE a=13152;\nUPDATE t2 SET c='thirty-three thousand eight hundred seventy-one' WHERE a=13153;\nUPDATE t2 SET c='thirty-eight thousand one hundred nineteen' WHERE a=13154;\nUPDATE t2 SET c='forty-five thousand four hundred sixty-three' WHERE a=13155;\nUPDATE t2 SET c='twelve thousand seven hundred thirty' WHERE a=13156;\nUPDATE t2 SET c='ninety-nine thousand four hundred fourteen' WHERE a=13157;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-five' WHERE a=13158;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-nine' WHERE a=13159;\nUPDATE t2 SET c='fifteen thousand six hundred thirteen' WHERE a=13160;\nUPDATE t2 SET c='thirty-two thousand five hundred seventy-five' WHERE a=13161;\nUPDATE t2 SET c='eleven thousand one hundred fifty-one' WHERE a=13162;\nUPDATE t2 SET c='eighty-five thousand nine hundred twelve' WHERE a=13163;\nUPDATE t2 SET c='twenty thousand four hundred thirty-three' WHERE a=13164;\nUPDATE t2 SET c='sixty-four thousand six hundred sixteen' WHERE a=13165;\nUPDATE t2 SET c='eighty-nine thousand eighty-one' WHERE a=13166;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-nine' WHERE a=13167;\nUPDATE t2 SET c='thirty thousand ninety-three' WHERE a=13168;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-three' WHERE a=13169;\nUPDATE t2 SET c='fifty-four thousand sixteen' WHERE a=13170;\nUPDATE t2 SET c='seventy-three thousand two hundred fifty-seven' WHERE a=13171;\nUPDATE t2 SET c='seven thousand four hundred eight' WHERE a=13172;\nUPDATE t2 SET c='thirty-four thousand one hundred five' WHERE a=13173;\nUPDATE t2 SET c='seventy-nine thousand two hundred seventy-nine' WHERE a=13174;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-nine' WHERE a=13175;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-one' WHERE a=13176;\nUPDATE t2 SET c='twenty-eight thousand four hundred fifty-eight' WHERE a=13177;\nUPDATE t2 SET c='twenty-five thousand six hundred ninety-six' WHERE a=13178;\nUPDATE t2 SET c='ninety-nine thousand six hundred forty-eight' WHERE a=13179;\nUPDATE t2 SET c='forty-five thousand eight hundred sixty-three' WHERE a=13180;\nUPDATE t2 SET c='seventy-three thousand seven hundred twelve' WHERE a=13181;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-seven' WHERE a=13182;\nUPDATE t2 SET c='one thousand three hundred eighty' WHERE a=13183;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-one' WHERE a=13184;\nUPDATE t2 SET c='forty-eight thousand two hundred thirty-four' WHERE a=13185;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-three' WHERE a=13186;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-nine' WHERE a=13187;\nUPDATE t2 SET c='fifty thousand twelve' WHERE a=13188;\nUPDATE t2 SET c='eleven thousand one hundred seventeen' WHERE a=13189;\nUPDATE t2 SET c='eighty thousand two hundred ninety-six' WHERE a=13190;\nUPDATE t2 SET c='eleven thousand five hundred ninety-three' WHERE a=13191;\nUPDATE t2 SET c='ninety-six thousand fifty-five' WHERE a=13192;\nUPDATE t2 SET c='fifteen thousand one hundred thirty-five' WHERE a=13193;\nUPDATE t2 SET c='sixty-six thousand three hundred seventy-two' WHERE a=13194;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighteen' WHERE a=13195;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-one' WHERE a=13196;\nUPDATE t2 SET c='one thousand three hundred thirty-two' WHERE a=13197;\nUPDATE t2 SET c='ten thousand five hundred sixty-two' WHERE a=13198;\nUPDATE t2 SET c='fifty thousand two hundred eighty-two' WHERE a=13199;\nUPDATE t2 SET c='fifty-four thousand nine hundred thirteen' WHERE a=13200;\nUPDATE t2 SET c='seventy-one thousand two hundred fifty-five' WHERE a=13201;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighty' WHERE a=13202;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifty-four' WHERE a=13203;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-five' WHERE a=13204;\nUPDATE t2 SET c='seventy-four thousand nine hundred eleven' WHERE a=13205;\nUPDATE t2 SET c='seventeen thousand eight hundred five' WHERE a=13206;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-one' WHERE a=13207;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-one' WHERE a=13208;\nUPDATE t2 SET c='eighty-eight thousand eight hundred nine' WHERE a=13209;\nUPDATE t2 SET c='seventy-seven thousand two hundred seventeen' WHERE a=13210;\nUPDATE t2 SET c='ninety thousand one hundred thirty-four' WHERE a=13211;\nUPDATE t2 SET c='fifty-seven thousand seven hundred eighty' WHERE a=13212;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-six' WHERE a=13213;\nUPDATE t2 SET c='fifty-two thousand eight hundred seventy' WHERE a=13214;\nUPDATE t2 SET c='two thousand three hundred forty-seven' WHERE a=13215;\nUPDATE t2 SET c='eighteen thousand three hundred ninety-two' WHERE a=13216;\nUPDATE t2 SET c='nine thousand one hundred forty-one' WHERE a=13217;\nUPDATE t2 SET c='seventy-five thousand six hundred seventy-eight' WHERE a=13218;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty' WHERE a=13219;\nUPDATE t2 SET c='twenty-eight thousand six hundred eighty' WHERE a=13220;\nUPDATE t2 SET c='forty thousand nine hundred twelve' WHERE a=13221;\nUPDATE t2 SET c='seventy-six thousand four hundred twelve' WHERE a=13222;\nUPDATE t2 SET c='ten thousand four hundred eighty-six' WHERE a=13223;\nUPDATE t2 SET c='six thousand one hundred fifty-two' WHERE a=13224;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty-two' WHERE a=13225;\nUPDATE t2 SET c='seven hundred fifty-three' WHERE a=13226;\nUPDATE t2 SET c='three hundred eighty-five' WHERE a=13227;\nUPDATE t2 SET c='forty-one thousand nine hundred fifty-five' WHERE a=13228;\nUPDATE t2 SET c='six thousand two hundred sixty-two' WHERE a=13229;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty' WHERE a=13230;\nUPDATE t2 SET c='sixteen thousand eighty-four' WHERE a=13231;\nUPDATE t2 SET c='sixty-one thousand one hundred sixty-eight' WHERE a=13232;\nUPDATE t2 SET c='fifty-six thousand five hundred eighteen' WHERE a=13233;\nUPDATE t2 SET c='four thousand five hundred seventy-seven' WHERE a=13234;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=13235;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighty-two' WHERE a=13236;\nUPDATE t2 SET c='thirty-two thousand nine hundred ninety-two' WHERE a=13237;\nUPDATE t2 SET c='ninety-two thousand four hundred thirty-five' WHERE a=13238;\nUPDATE t2 SET c='seventy-seven thousand eight hundred eighty-six' WHERE a=13239;\nUPDATE t2 SET c='thirty-nine thousand two hundred sixteen' WHERE a=13240;\nUPDATE t2 SET c='seven thousand nine hundred eighty-eight' WHERE a=13241;\nUPDATE t2 SET c='ninety thousand three hundred sixty-eight' WHERE a=13242;\nUPDATE t2 SET c='twenty-four thousand six hundred twenty-four' WHERE a=13243;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-eight' WHERE a=13244;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-six' WHERE a=13245;\nUPDATE t2 SET c='seventy-four thousand six hundred thirty-seven' WHERE a=13246;\nUPDATE t2 SET c='twenty-eight thousand six hundred seven' WHERE a=13247;\nUPDATE t2 SET c='ninety-five thousand two hundred ninety-two' WHERE a=13248;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-three' WHERE a=13249;\nUPDATE t2 SET c='twenty-seven thousand nine hundred twenty' WHERE a=13250;\nUPDATE t2 SET c='sixty-five thousand one' WHERE a=13251;\nUPDATE t2 SET c='ninety-one thousand seven hundred forty-nine' WHERE a=13252;\nUPDATE t2 SET c='sixty-two thousand five hundred thirty-one' WHERE a=13253;\nUPDATE t2 SET c='thirty-one thousand eighteen' WHERE a=13254;\nUPDATE t2 SET c='sixty-one thousand thirty-eight' WHERE a=13255;\nUPDATE t2 SET c='fifty-nine thousand six hundred ninety-seven' WHERE a=13256;\nUPDATE t2 SET c='three hundred two' WHERE a=13257;\nUPDATE t2 SET c='sixty-four thousand four hundred forty-three' WHERE a=13258;\nUPDATE t2 SET c='seventy-nine thousand eight hundred one' WHERE a=13259;\nUPDATE t2 SET c='sixty-two thousand seven hundred twenty-six' WHERE a=13260;\nUPDATE t2 SET c='two thousand seven' WHERE a=13261;\nUPDATE t2 SET c='twenty-eight thousand ninety-eight' WHERE a=13262;\nUPDATE t2 SET c='sixteen thousand fourteen' WHERE a=13263;\nUPDATE t2 SET c='forty-eight thousand eight hundred fifty-five' WHERE a=13264;\nUPDATE t2 SET c='seventy thousand five hundred fourteen' WHERE a=13265;\nUPDATE t2 SET c='seventy-seven thousand fifty-eight' WHERE a=13266;\nUPDATE t2 SET c='forty-nine thousand four hundred fifteen' WHERE a=13267;\nUPDATE t2 SET c='seventy-nine thousand five hundred seventy-two' WHERE a=13268;\nUPDATE t2 SET c='ninety-five thousand eight hundred seventy-two' WHERE a=13269;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty' WHERE a=13270;\nUPDATE t2 SET c='ninety-one thousand six hundred twelve' WHERE a=13271;\nUPDATE t2 SET c='fifty-nine thousand thirty-two' WHERE a=13272;\nUPDATE t2 SET c='thirty-one thousand two hundred four' WHERE a=13273;\nUPDATE t2 SET c='ninety-seven thousand six hundred sixty-seven' WHERE a=13274;\nUPDATE t2 SET c='forty-nine thousand seven hundred thirty' WHERE a=13275;\nUPDATE t2 SET c='forty-two thousand six hundred forty-one' WHERE a=13276;\nUPDATE t2 SET c='six thousand one hundred seventeen' WHERE a=13277;\nUPDATE t2 SET c='nineteen thousand six hundred sixty' WHERE a=13278;\nUPDATE t2 SET c='ninety-seven thousand forty-six' WHERE a=13279;\nUPDATE t2 SET c='eighty-nine thousand eight hundred fifty-six' WHERE a=13280;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-eight' WHERE a=13281;\nUPDATE t2 SET c='three thousand eight hundred ninety-nine' WHERE a=13282;\nUPDATE t2 SET c='seventy thousand three hundred eighty-four' WHERE a=13283;\nUPDATE t2 SET c='seventeen thousand five hundred ninety-five' WHERE a=13284;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=13285;\nUPDATE t2 SET c='fifty-four thousand eight hundred sixty-two' WHERE a=13286;\nUPDATE t2 SET c='ninety-five thousand thirty-eight' WHERE a=13287;\nUPDATE t2 SET c='fifty thousand seven hundred twenty' WHERE a=13288;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-one' WHERE a=13289;\nUPDATE t2 SET c='fifty-five thousand one hundred fifty-seven' WHERE a=13290;\nUPDATE t2 SET c='twenty-two thousand seven hundred four' WHERE a=13291;\nUPDATE t2 SET c='one thousand two hundred thirty-five' WHERE a=13292;\nUPDATE t2 SET c='one thousand one hundred forty-five' WHERE a=13293;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-eight' WHERE a=13294;\nUPDATE t2 SET c='seventy-one thousand nine hundred sixty-six' WHERE a=13295;\nUPDATE t2 SET c='eleven thousand eight hundred twenty-three' WHERE a=13296;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-six' WHERE a=13297;\nUPDATE t2 SET c='seventy-five thousand six hundred fifty-seven' WHERE a=13298;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-eight' WHERE a=13299;\nUPDATE t2 SET c='one thousand eight hundred six' WHERE a=13300;\nUPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=13301;\nUPDATE t2 SET c='two thousand forty-one' WHERE a=13302;\nUPDATE t2 SET c='twenty-nine thousand two hundred seventy-six' WHERE a=13303;\nUPDATE t2 SET c='eighty thousand one hundred nineteen' WHERE a=13304;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-six' WHERE a=13305;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-five' WHERE a=13306;\nUPDATE t2 SET c='three thousand four hundred fifty-six' WHERE a=13307;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-seven' WHERE a=13308;\nUPDATE t2 SET c='twelve thousand sixty-two' WHERE a=13309;\nUPDATE t2 SET c='forty-one thousand eight hundred twenty-six' WHERE a=13310;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eleven' WHERE a=13311;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety-four' WHERE a=13312;\nUPDATE t2 SET c='ninety-five thousand eighty-seven' WHERE a=13313;\nUPDATE t2 SET c='fifty-five thousand fifty-five' WHERE a=13314;\nUPDATE t2 SET c='ninety-two thousand three hundred one' WHERE a=13315;\nUPDATE t2 SET c='ten thousand eight hundred sixty-five' WHERE a=13316;\nUPDATE t2 SET c='sixty thousand two hundred fifty-seven' WHERE a=13317;\nUPDATE t2 SET c='ninety-seven thousand five hundred forty-four' WHERE a=13318;\nUPDATE t2 SET c='eighty-six thousand four hundred twenty-five' WHERE a=13319;\nUPDATE t2 SET c='twenty-four thousand seventy-six' WHERE a=13320;\nUPDATE t2 SET c='forty-two thousand four hundred eighteen' WHERE a=13321;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-nine' WHERE a=13322;\nUPDATE t2 SET c='forty-one thousand one hundred eighty-five' WHERE a=13323;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighty' WHERE a=13324;\nUPDATE t2 SET c='twenty-four thousand four hundred seven' WHERE a=13325;\nUPDATE t2 SET c='forty-two thousand one hundred forty-two' WHERE a=13326;\nUPDATE t2 SET c='twenty-two thousand six hundred twenty-four' WHERE a=13327;\nUPDATE t2 SET c='seventy thousand six hundred nine' WHERE a=13328;\nUPDATE t2 SET c='twenty thousand five hundred twenty-two' WHERE a=13329;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty-two' WHERE a=13330;\nUPDATE t2 SET c='sixty thousand ninety-six' WHERE a=13331;\nUPDATE t2 SET c='ninety-seven thousand two hundred seventy-eight' WHERE a=13332;\nUPDATE t2 SET c='twenty-seven thousand three hundred ninety-nine' WHERE a=13333;\nUPDATE t2 SET c='four thousand nine hundred ninety-nine' WHERE a=13334;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixteen' WHERE a=13335;\nUPDATE t2 SET c='eight thousand five hundred thirty-eight' WHERE a=13336;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-three' WHERE a=13337;\nUPDATE t2 SET c='six thousand one hundred forty-five' WHERE a=13338;\nUPDATE t2 SET c='seventy-seven thousand eight hundred fifty-four' WHERE a=13339;\nUPDATE t2 SET c='forty-seven thousand five hundred twelve' WHERE a=13340;\nUPDATE t2 SET c='sixty-eight thousand one hundred twenty-three' WHERE a=13341;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-six' WHERE a=13342;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty-four' WHERE a=13343;\nUPDATE t2 SET c='fifty thousand three hundred eighty-two' WHERE a=13344;\nUPDATE t2 SET c='fifteen thousand eight hundred thirty-eight' WHERE a=13345;\nUPDATE t2 SET c='ninety-five thousand nine hundred sixty-four' WHERE a=13346;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty' WHERE a=13347;\nUPDATE t2 SET c='one thousand one hundred sixty-seven' WHERE a=13348;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-three' WHERE a=13349;\nUPDATE t2 SET c='nineteen thousand eight hundred eighty-one' WHERE a=13350;\nUPDATE t2 SET c='twenty thousand eight hundred thirty-six' WHERE a=13351;\nUPDATE t2 SET c='thirty-seven thousand six hundred twenty-nine' WHERE a=13352;\nUPDATE t2 SET c='twenty-eight thousand seventy' WHERE a=13353;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-nine' WHERE a=13354;\nUPDATE t2 SET c='sixteen thousand two hundred thirty-eight' WHERE a=13355;\nUPDATE t2 SET c='twenty-one thousand one hundred thirty-two' WHERE a=13356;\nUPDATE t2 SET c='thirty-five thousand four hundred forty-five' WHERE a=13357;\nUPDATE t2 SET c='seventy-nine thousand six hundred twenty' WHERE a=13358;\nUPDATE t2 SET c='eleven thousand seven hundred thirty-six' WHERE a=13359;\nUPDATE t2 SET c='twenty-seven thousand thirty-two' WHERE a=13360;\nUPDATE t2 SET c='two thousand nine hundred sixty-six' WHERE a=13361;\nUPDATE t2 SET c='twenty-eight thousand three hundred' WHERE a=13362;\nUPDATE t2 SET c='seventy thousand two hundred twenty-one' WHERE a=13363;\nUPDATE t2 SET c='fifty-six thousand five hundred forty-two' WHERE a=13364;\nUPDATE t2 SET c='forty-six thousand five' WHERE a=13365;\nUPDATE t2 SET c='eighty-four thousand seven hundred eighty-seven' WHERE a=13366;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty' WHERE a=13367;\nUPDATE t2 SET c='forty-one thousand three hundred seventy-two' WHERE a=13368;\nUPDATE t2 SET c='one thousand two hundred ninety-two' WHERE a=13369;\nUPDATE t2 SET c='ninety-eight thousand eighty-three' WHERE a=13370;\nUPDATE t2 SET c='thirty-four thousand one' WHERE a=13371;\nUPDATE t2 SET c='three thousand four hundred fifty' WHERE a=13372;\nUPDATE t2 SET c='twenty-one thousand seven hundred one' WHERE a=13373;\nUPDATE t2 SET c='thirty-seven thousand six hundred thirty-two' WHERE a=13374;\nUPDATE t2 SET c='fifty-nine thousand eight hundred forty-two' WHERE a=13375;\nUPDATE t2 SET c='seventy-five thousand eight hundred sixty-nine' WHERE a=13376;\nUPDATE t2 SET c='seventy-one thousand five hundred eleven' WHERE a=13377;\nUPDATE t2 SET c='twenty-eight thousand four hundred thirty' WHERE a=13378;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-one' WHERE a=13379;\nUPDATE t2 SET c='sixty-seven thousand seven hundred fifty-six' WHERE a=13380;\nUPDATE t2 SET c='eleven thousand two hundred thirty-one' WHERE a=13381;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-six' WHERE a=13382;\nUPDATE t2 SET c='twenty-eight thousand nine hundred thirty-four' WHERE a=13383;\nUPDATE t2 SET c='eleven thousand two hundred forty-three' WHERE a=13384;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-five' WHERE a=13385;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-six' WHERE a=13386;\nUPDATE t2 SET c='fifteen thousand nine hundred fifteen' WHERE a=13387;\nUPDATE t2 SET c='two thousand six hundred eighty-two' WHERE a=13388;\nUPDATE t2 SET c='six thousand nine hundred forty-seven' WHERE a=13389;\nUPDATE t2 SET c='ninety-six thousand three hundred sixty' WHERE a=13390;\nUPDATE t2 SET c='ninety-three thousand six hundred eighty-five' WHERE a=13391;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-two' WHERE a=13392;\nUPDATE t2 SET c='eighty-four thousand eight hundred seventy-three' WHERE a=13393;\nUPDATE t2 SET c='seventy-seven thousand three hundred sixty-four' WHERE a=13394;\nUPDATE t2 SET c='twenty thousand eight hundred eighty-one' WHERE a=13395;\nUPDATE t2 SET c='seventy thousand two hundred eighty-three' WHERE a=13396;\nUPDATE t2 SET c='ninety-one thousand seven hundred eighty-one' WHERE a=13397;\nUPDATE t2 SET c='thirty-one thousand eight hundred eighty-eight' WHERE a=13398;\nUPDATE t2 SET c='forty thousand three hundred fifty-eight' WHERE a=13399;\nUPDATE t2 SET c='ten thousand nine hundred thirty-three' WHERE a=13400;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-four' WHERE a=13401;\nUPDATE t2 SET c='twelve thousand five hundred ninety-nine' WHERE a=13402;\nUPDATE t2 SET c='nine hundred twenty-three' WHERE a=13403;\nUPDATE t2 SET c='forty-five thousand one hundred seventy-eight' WHERE a=13404;\nUPDATE t2 SET c='eighty-eight thousand two hundred sixty-four' WHERE a=13405;\nUPDATE t2 SET c='seven thousand one hundred twenty-seven' WHERE a=13406;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-eight' WHERE a=13407;\nUPDATE t2 SET c='eighty-four thousand ninety-seven' WHERE a=13408;\nUPDATE t2 SET c='twenty-three thousand eight hundred fifteen' WHERE a=13409;\nUPDATE t2 SET c='ninety-nine thousand three hundred fifteen' WHERE a=13410;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-three' WHERE a=13411;\nUPDATE t2 SET c='seventeen thousand seven hundred seventy-six' WHERE a=13412;\nUPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=13413;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventy-one' WHERE a=13414;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifty-six' WHERE a=13415;\nUPDATE t2 SET c='seventy-one thousand eight hundred sixty' WHERE a=13416;\nUPDATE t2 SET c='forty-six thousand five hundred twenty-one' WHERE a=13417;\nUPDATE t2 SET c='thirty-three thousand six hundred fourteen' WHERE a=13418;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-nine' WHERE a=13419;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=13420;\nUPDATE t2 SET c='one thousand one hundred ninety' WHERE a=13421;\nUPDATE t2 SET c='seventy-four thousand nine hundred nineteen' WHERE a=13422;\nUPDATE t2 SET c='twenty-two thousand six hundred eight' WHERE a=13423;\nUPDATE t2 SET c='one thousand eight hundred twenty-four' WHERE a=13424;\nUPDATE t2 SET c='ninety-nine thousand one hundred fifty-nine' WHERE a=13425;\nUPDATE t2 SET c='seventy-one thousand eight hundred four' WHERE a=13426;\nUPDATE t2 SET c='eighty-two thousand seven hundred eleven' WHERE a=13427;\nUPDATE t2 SET c='forty-nine thousand nine hundred eighty-seven' WHERE a=13428;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-six' WHERE a=13429;\nUPDATE t2 SET c='four thousand one hundred sixty-eight' WHERE a=13430;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty' WHERE a=13431;\nUPDATE t2 SET c='thirty-two thousand four hundred sixty-nine' WHERE a=13432;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-nine' WHERE a=13433;\nUPDATE t2 SET c='ninety-seven thousand one hundred twenty-seven' WHERE a=13434;\nUPDATE t2 SET c='sixteen thousand thirty-four' WHERE a=13435;\nUPDATE t2 SET c='thirty-one thousand four hundred ninety-eight' WHERE a=13436;\nUPDATE t2 SET c='twelve thousand six hundred eighteen' WHERE a=13437;\nUPDATE t2 SET c='thirty-seven thousand one hundred seventy-four' WHERE a=13438;\nUPDATE t2 SET c='seventeen thousand five hundred two' WHERE a=13439;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=13440;\nUPDATE t2 SET c='seventy-six thousand one hundred eighty-six' WHERE a=13441;\nUPDATE t2 SET c='three hundred forty-three' WHERE a=13442;\nUPDATE t2 SET c='sixty-one thousand eighty-eight' WHERE a=13443;\nUPDATE t2 SET c='seventy-eight thousand three hundred eighty-nine' WHERE a=13444;\nUPDATE t2 SET c='two thousand nine hundred eighty-six' WHERE a=13445;\nUPDATE t2 SET c='forty-seven thousand seven hundred sixty-six' WHERE a=13446;\nUPDATE t2 SET c='ninety-two thousand eight hundred twenty-three' WHERE a=13447;\nUPDATE t2 SET c='six thousand six hundred ninety-five' WHERE a=13448;\nUPDATE t2 SET c='twenty-five thousand six hundred sixty-seven' WHERE a=13449;\nUPDATE t2 SET c='twenty-one thousand eight hundred fifteen' WHERE a=13450;\nUPDATE t2 SET c='seventy-eight thousand four hundred forty-seven' WHERE a=13451;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-four' WHERE a=13452;\nUPDATE t2 SET c='thirty thousand one hundred thirty-seven' WHERE a=13453;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-four' WHERE a=13454;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty' WHERE a=13455;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy' WHERE a=13456;\nUPDATE t2 SET c='twenty-eight thousand one hundred eight' WHERE a=13457;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-seven' WHERE a=13458;\nUPDATE t2 SET c='thirty-one thousand four' WHERE a=13459;\nUPDATE t2 SET c='nine thousand one hundred ninety-one' WHERE a=13460;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-nine' WHERE a=13461;\nUPDATE t2 SET c='fifty-one thousand three hundred sixty-two' WHERE a=13462;\nUPDATE t2 SET c='five thousand seven hundred eighty-six' WHERE a=13463;\nUPDATE t2 SET c='seventy-seven thousand four hundred ninety-one' WHERE a=13464;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-four' WHERE a=13465;\nUPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=13466;\nUPDATE t2 SET c='seventy-two thousand one hundred ninety-seven' WHERE a=13467;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-seven' WHERE a=13468;\nUPDATE t2 SET c='twenty thousand two hundred ninety-nine' WHERE a=13469;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-five' WHERE a=13470;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-three' WHERE a=13471;\nUPDATE t2 SET c='ninety-three thousand three hundred fifty-six' WHERE a=13472;\nUPDATE t2 SET c='two thousand seven hundred seventy-four' WHERE a=13473;\nUPDATE t2 SET c='forty-four thousand ninety-eight' WHERE a=13474;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty-five' WHERE a=13475;\nUPDATE t2 SET c='fifteen thousand seven hundred seventy-seven' WHERE a=13476;\nUPDATE t2 SET c='seventy-three thousand two hundred seventy-eight' WHERE a=13477;\nUPDATE t2 SET c='seventy-three thousand two hundred four' WHERE a=13478;\nUPDATE t2 SET c='forty-nine thousand six hundred ten' WHERE a=13479;\nUPDATE t2 SET c='sixty-one thousand seven hundred seventy-nine' WHERE a=13480;\nUPDATE t2 SET c='seventeen thousand two hundred fifty-eight' WHERE a=13481;\nUPDATE t2 SET c='eight thousand two hundred forty-four' WHERE a=13482;\nUPDATE t2 SET c='thirty-five thousand four hundred eighty-three' WHERE a=13483;\nUPDATE t2 SET c='sixty-nine thousand two hundred ninety-two' WHERE a=13484;\nUPDATE t2 SET c='eighty-five thousand two hundred eighty-six' WHERE a=13485;\nUPDATE t2 SET c='sixty-eight thousand three hundred seventy-four' WHERE a=13486;\nUPDATE t2 SET c='ten thousand five hundred sixty-one' WHERE a=13487;\nUPDATE t2 SET c='eighty-one thousand four hundred forty-one' WHERE a=13488;\nUPDATE t2 SET c='thirty-four thousand three hundred forty-six' WHERE a=13489;\nUPDATE t2 SET c='eleven thousand three hundred forty-six' WHERE a=13490;\nUPDATE t2 SET c='fifty-five thousand five hundred ninety-three' WHERE a=13491;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty-seven' WHERE a=13492;\nUPDATE t2 SET c='forty-two thousand nine hundred one' WHERE a=13493;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty-three' WHERE a=13494;\nUPDATE t2 SET c='two thousand three hundred seventy-nine' WHERE a=13495;\nUPDATE t2 SET c='three thousand five hundred ninety-eight' WHERE a=13496;\nUPDATE t2 SET c='eighteen thousand three hundred fourteen' WHERE a=13497;\nUPDATE t2 SET c='twenty-three thousand eight hundred seven' WHERE a=13498;\nUPDATE t2 SET c='eighty thousand one hundred eighty-five' WHERE a=13499;\nUPDATE t2 SET c='thirty-six thousand one hundred twenty-seven' WHERE a=13500;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twelve' WHERE a=13501;\nUPDATE t2 SET c='eighty-six thousand four hundred seventy-five' WHERE a=13502;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighty-two' WHERE a=13503;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eight' WHERE a=13504;\nUPDATE t2 SET c='three thousand nine hundred eighty-two' WHERE a=13505;\nUPDATE t2 SET c='thirteen thousand three hundred sixty-five' WHERE a=13506;\nUPDATE t2 SET c='ninety-three thousand eight hundred fourteen' WHERE a=13507;\nUPDATE t2 SET c='thirty-seven thousand four hundred thirty-five' WHERE a=13508;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-five' WHERE a=13509;\nUPDATE t2 SET c='eighty-nine thousand five hundred eighty-four' WHERE a=13510;\nUPDATE t2 SET c='forty-eight thousand three hundred eighty-one' WHERE a=13511;\nUPDATE t2 SET c='three thousand three hundred sixty-three' WHERE a=13512;\nUPDATE t2 SET c='seventy thousand eighty-eight' WHERE a=13513;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty' WHERE a=13514;\nUPDATE t2 SET c='sixty-six thousand six hundred fifty-eight' WHERE a=13515;\nUPDATE t2 SET c='nine thousand two hundred seventy' WHERE a=13516;\nUPDATE t2 SET c='seventy-three thousand four hundred eighty-seven' WHERE a=13517;\nUPDATE t2 SET c='thirty-four thousand seven hundred forty-four' WHERE a=13518;\nUPDATE t2 SET c='eighty-nine thousand seven hundred six' WHERE a=13519;\nUPDATE t2 SET c='ninety-one thousand seven hundred thirty-six' WHERE a=13520;\nUPDATE t2 SET c='seventy-three thousand four hundred ninety-six' WHERE a=13521;\nUPDATE t2 SET c='thirty-six thousand seven hundred eighty-eight' WHERE a=13522;\nUPDATE t2 SET c='twenty-one thousand eight hundred six' WHERE a=13523;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-two' WHERE a=13524;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-one' WHERE a=13525;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-one' WHERE a=13526;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-two' WHERE a=13527;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-three' WHERE a=13528;\nUPDATE t2 SET c='seventy-four thousand seven hundred forty-five' WHERE a=13529;\nUPDATE t2 SET c='eighty-nine thousand three hundred seventy-two' WHERE a=13530;\nUPDATE t2 SET c='seventy-four thousand one hundred twenty-nine' WHERE a=13531;\nUPDATE t2 SET c='fourteen thousand nine hundred four' WHERE a=13532;\nUPDATE t2 SET c='forty-five thousand seven hundred twelve' WHERE a=13533;\nUPDATE t2 SET c='eighty-two thousand one hundred forty-six' WHERE a=13534;\nUPDATE t2 SET c='twenty-six thousand eight hundred ten' WHERE a=13535;\nUPDATE t2 SET c='eight thousand three hundred seventy-five' WHERE a=13536;\nUPDATE t2 SET c='eight thousand six hundred ten' WHERE a=13537;\nUPDATE t2 SET c='twenty-six thousand one hundred ninety' WHERE a=13538;\nUPDATE t2 SET c='fifty-five thousand eight hundred seventy-two' WHERE a=13539;\nUPDATE t2 SET c='seven thousand thirty-seven' WHERE a=13540;\nUPDATE t2 SET c='eighty-eight thousand five hundred twenty-five' WHERE a=13541;\nUPDATE t2 SET c='eighty-two thousand five hundred forty' WHERE a=13542;\nUPDATE t2 SET c='four thousand two hundred fifty-three' WHERE a=13543;\nUPDATE t2 SET c='seventy-one thousand three hundred sixty-three' WHERE a=13544;\nUPDATE t2 SET c='ninety-nine thousand two hundred eighty-three' WHERE a=13545;\nUPDATE t2 SET c='fifty-six thousand two hundred sixty-nine' WHERE a=13546;\nUPDATE t2 SET c='ninety-six thousand three hundred forty-eight' WHERE a=13547;\nUPDATE t2 SET c='eighty-six thousand seven hundred eighty-two' WHERE a=13548;\nUPDATE t2 SET c='seventy-eight thousand two hundred sixty-seven' WHERE a=13549;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirty-three' WHERE a=13550;\nUPDATE t2 SET c='sixty thousand one hundred seventy-six' WHERE a=13551;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety-eight' WHERE a=13552;\nUPDATE t2 SET c='sixty-nine thousand forty' WHERE a=13553;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-four' WHERE a=13554;\nUPDATE t2 SET c='twenty-eight thousand ten' WHERE a=13555;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty-one' WHERE a=13556;\nUPDATE t2 SET c='one hundred forty-six' WHERE a=13557;\nUPDATE t2 SET c='eleven thousand eight hundred thirty-three' WHERE a=13558;\nUPDATE t2 SET c='eighty-two thousand two hundred eighteen' WHERE a=13559;\nUPDATE t2 SET c='eighty-one thousand one hundred eighty' WHERE a=13560;\nUPDATE t2 SET c='eighty thousand fifty-nine' WHERE a=13561;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-five' WHERE a=13562;\nUPDATE t2 SET c='forty-nine thousand nine hundred forty-two' WHERE a=13563;\nUPDATE t2 SET c='fifteen thousand four hundred sixty-five' WHERE a=13564;\nUPDATE t2 SET c='four thousand fifty-two' WHERE a=13565;\nUPDATE t2 SET c='eighty-two thousand eight hundred six' WHERE a=13566;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-three' WHERE a=13567;\nUPDATE t2 SET c='fifty-six thousand one hundred sixty-seven' WHERE a=13568;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy' WHERE a=13569;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-seven' WHERE a=13570;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-one' WHERE a=13571;\nUPDATE t2 SET c='eighty-two thousand ten' WHERE a=13572;\nUPDATE t2 SET c='seventy-two thousand one hundred ninety' WHERE a=13573;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy-four' WHERE a=13574;\nUPDATE t2 SET c='seventeen thousand eight hundred twenty-six' WHERE a=13575;\nUPDATE t2 SET c='seventy-five thousand three hundred twelve' WHERE a=13576;\nUPDATE t2 SET c='eighty-three thousand one hundred eighteen' WHERE a=13577;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-nine' WHERE a=13578;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-nine' WHERE a=13579;\nUPDATE t2 SET c='eighteen thousand seven hundred thirty-seven' WHERE a=13580;\nUPDATE t2 SET c='fifty-three thousand six hundred sixty-two' WHERE a=13581;\nUPDATE t2 SET c='thirty-six thousand two hundred seven' WHERE a=13582;\nUPDATE t2 SET c='eighteen thousand eight hundred forty-six' WHERE a=13583;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighteen' WHERE a=13584;\nUPDATE t2 SET c='seventy-eight thousand six hundred forty-six' WHERE a=13585;\nUPDATE t2 SET c='eighty-seven thousand seven hundred ninety-one' WHERE a=13586;\nUPDATE t2 SET c='forty-two thousand four hundred eighty-five' WHERE a=13587;\nUPDATE t2 SET c='eighty-one thousand four hundred fifty-nine' WHERE a=13588;\nUPDATE t2 SET c='twenty-nine thousand five hundred eighty-five' WHERE a=13589;\nUPDATE t2 SET c='seventy-seven thousand forty-four' WHERE a=13590;\nUPDATE t2 SET c='fifteen thousand three hundred eighteen' WHERE a=13591;\nUPDATE t2 SET c='seventy-eight thousand eight hundred thirty-seven' WHERE a=13592;\nUPDATE t2 SET c='eighty-five thousand one hundred twenty-eight' WHERE a=13593;\nUPDATE t2 SET c='eighty-five thousand one hundred twelve' WHERE a=13594;\nUPDATE t2 SET c='sixty thousand nine hundred sixty-five' WHERE a=13595;\nUPDATE t2 SET c='eighty-one thousand six hundred fifteen' WHERE a=13596;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-seven' WHERE a=13597;\nUPDATE t2 SET c='twenty-two thousand six hundred fifteen' WHERE a=13598;\nUPDATE t2 SET c='six thousand nine hundred eighty-six' WHERE a=13599;\nUPDATE t2 SET c='seventy-two thousand eight hundred seven' WHERE a=13600;\nUPDATE t2 SET c='forty-three thousand three hundred ninety-one' WHERE a=13601;\nUPDATE t2 SET c='thirty-four thousand one hundred eighty-six' WHERE a=13602;\nUPDATE t2 SET c='forty-six thousand five hundred eighty' WHERE a=13603;\nUPDATE t2 SET c='ninety-six thousand six hundred forty-seven' WHERE a=13604;\nUPDATE t2 SET c='ninety-four thousand five hundred seventy-three' WHERE a=13605;\nUPDATE t2 SET c='forty-one thousand seventy-two' WHERE a=13606;\nUPDATE t2 SET c='five thousand seven hundred fifty-four' WHERE a=13607;\nUPDATE t2 SET c='thirteen thousand eight hundred eighty-eight' WHERE a=13608;\nUPDATE t2 SET c='eighty-five thousand eight hundred ninety-seven' WHERE a=13609;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-nine' WHERE a=13610;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty-five' WHERE a=13611;\nUPDATE t2 SET c='sixty-seven thousand eight hundred eighty' WHERE a=13612;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-five' WHERE a=13613;\nUPDATE t2 SET c='three thousand three hundred ninety-four' WHERE a=13614;\nUPDATE t2 SET c='twenty-seven thousand seventy-one' WHERE a=13615;\nUPDATE t2 SET c='sixty thousand eighty-nine' WHERE a=13616;\nUPDATE t2 SET c='thirty-three thousand one hundred seventy-five' WHERE a=13617;\nUPDATE t2 SET c='fifty-one thousand four hundred seventy-eight' WHERE a=13618;\nUPDATE t2 SET c='twenty-seven thousand eight hundred twenty-four' WHERE a=13619;\nUPDATE t2 SET c='fifty-nine thousand eight hundred four' WHERE a=13620;\nUPDATE t2 SET c='twenty-two thousand one hundred fifty-one' WHERE a=13621;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-one' WHERE a=13622;\nUPDATE t2 SET c='twenty-two thousand nine hundred three' WHERE a=13623;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-two' WHERE a=13624;\nUPDATE t2 SET c='seventy-two thousand forty-seven' WHERE a=13625;\nUPDATE t2 SET c='eighty-four thousand nine hundred eight' WHERE a=13626;\nUPDATE t2 SET c='thirty-nine thousand two hundred forty-two' WHERE a=13627;\nUPDATE t2 SET c='twenty-three thousand seven hundred ten' WHERE a=13628;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-one' WHERE a=13629;\nUPDATE t2 SET c='eighty-five thousand nine hundred forty' WHERE a=13630;\nUPDATE t2 SET c='five thousand six hundred fifty-three' WHERE a=13631;\nUPDATE t2 SET c='eighty-four thousand three hundred eighty-five' WHERE a=13632;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-five' WHERE a=13633;\nUPDATE t2 SET c='thirty-five thousand two hundred forty' WHERE a=13634;\nUPDATE t2 SET c='two thousand two hundred eighty-six' WHERE a=13635;\nUPDATE t2 SET c='seven thousand four' WHERE a=13636;\nUPDATE t2 SET c='seventy-four thousand seven hundred sixty-nine' WHERE a=13637;\nUPDATE t2 SET c='thirty-eight thousand six hundred twenty-one' WHERE a=13638;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-three' WHERE a=13639;\nUPDATE t2 SET c='forty-four thousand four hundred four' WHERE a=13640;\nUPDATE t2 SET c='four thousand five hundred sixty-two' WHERE a=13641;\nUPDATE t2 SET c='ninety-five thousand five hundred nine' WHERE a=13642;\nUPDATE t2 SET c='nineteen thousand six hundred forty-eight' WHERE a=13643;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixteen' WHERE a=13644;\nUPDATE t2 SET c='eighteen thousand nine hundred ninety-one' WHERE a=13645;\nUPDATE t2 SET c='fifty-six thousand one hundred twenty-nine' WHERE a=13646;\nUPDATE t2 SET c='thirty-nine thousand nine hundred six' WHERE a=13647;\nUPDATE t2 SET c='fifty-two thousand nine hundred sixty-seven' WHERE a=13648;\nUPDATE t2 SET c='seventeen thousand three hundred fifty-four' WHERE a=13649;\nUPDATE t2 SET c='fifty-six thousand sixty-two' WHERE a=13650;\nUPDATE t2 SET c='twenty-eight thousand nine hundred twenty-five' WHERE a=13651;\nUPDATE t2 SET c='twenty-eight thousand seven hundred ninety-four' WHERE a=13652;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-five' WHERE a=13653;\nUPDATE t2 SET c='seventy-four thousand seven hundred forty-one' WHERE a=13654;\nUPDATE t2 SET c='fourteen thousand four hundred fifty-three' WHERE a=13655;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety-nine' WHERE a=13656;\nUPDATE t2 SET c='six thousand seven hundred forty-eight' WHERE a=13657;\nUPDATE t2 SET c='sixty-five thousand sixty-six' WHERE a=13658;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-eight' WHERE a=13659;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty-six' WHERE a=13660;\nUPDATE t2 SET c='fifty-three thousand six hundred seventeen' WHERE a=13661;\nUPDATE t2 SET c='fifty-seven thousand five hundred eighty-one' WHERE a=13662;\nUPDATE t2 SET c='eighteen thousand one hundred eighty-seven' WHERE a=13663;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ninety-five' WHERE a=13664;\nUPDATE t2 SET c='seventy-nine thousand eighty-seven' WHERE a=13665;\nUPDATE t2 SET c='fifty-two thousand two hundred forty-one' WHERE a=13666;\nUPDATE t2 SET c='thirty-three thousand five hundred eighty-five' WHERE a=13667;\nUPDATE t2 SET c='thirty-three thousand four hundred eighty' WHERE a=13668;\nUPDATE t2 SET c='fifty-one thousand forty-five' WHERE a=13669;\nUPDATE t2 SET c='seven thousand seven hundred twenty-three' WHERE a=13670;\nUPDATE t2 SET c='thirty-eight thousand eight hundred seventy-five' WHERE a=13671;\nUPDATE t2 SET c='seventy-nine thousand eighteen' WHERE a=13672;\nUPDATE t2 SET c='five hundred seventy-three' WHERE a=13673;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-nine' WHERE a=13674;\nUPDATE t2 SET c='eighty-two thousand one hundred twenty-one' WHERE a=13675;\nUPDATE t2 SET c='sixty-five thousand six hundred fifty-one' WHERE a=13676;\nUPDATE t2 SET c='five thousand three hundred fifty-nine' WHERE a=13677;\nUPDATE t2 SET c='four hundred forty-five' WHERE a=13678;\nUPDATE t2 SET c='ninety-seven thousand nine hundred nineteen' WHERE a=13679;\nUPDATE t2 SET c='three thousand three hundred twenty-nine' WHERE a=13680;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty' WHERE a=13681;\nUPDATE t2 SET c='thirty-two thousand thirty-nine' WHERE a=13682;\nUPDATE t2 SET c='fifty thousand three hundred ninety-five' WHERE a=13683;\nUPDATE t2 SET c='eight thousand two hundred sixty-seven' WHERE a=13684;\nUPDATE t2 SET c='three thousand three hundred fifty-eight' WHERE a=13685;\nUPDATE t2 SET c='thirty-two thousand four hundred eighteen' WHERE a=13686;\nUPDATE t2 SET c='thirty-two thousand seven hundred eighty-six' WHERE a=13687;\nUPDATE t2 SET c='fourteen thousand two hundred twenty-two' WHERE a=13688;\nUPDATE t2 SET c='forty-nine thousand ninety-three' WHERE a=13689;\nUPDATE t2 SET c='forty-four thousand six hundred thirty-two' WHERE a=13690;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirteen' WHERE a=13691;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-five' WHERE a=13692;\nUPDATE t2 SET c='twenty-four thousand eight hundred seventy-seven' WHERE a=13693;\nUPDATE t2 SET c='fifty-nine thousand five hundred forty-six' WHERE a=13694;\nUPDATE t2 SET c='fifty-five thousand nine hundred seventy-three' WHERE a=13695;\nUPDATE t2 SET c='sixty-three thousand two hundred fifty-four' WHERE a=13696;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eighty' WHERE a=13697;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-six' WHERE a=13698;\nUPDATE t2 SET c='seven thousand five hundred four' WHERE a=13699;\nUPDATE t2 SET c='twelve thousand one hundred thirty-three' WHERE a=13700;\nUPDATE t2 SET c='thirty-three thousand eight' WHERE a=13701;\nUPDATE t2 SET c='thirty-three thousand seven hundred ninety-two' WHERE a=13702;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty' WHERE a=13703;\nUPDATE t2 SET c='ninety-six thousand two hundred fourteen' WHERE a=13704;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-nine' WHERE a=13705;\nUPDATE t2 SET c='seventy-four thousand one hundred thirty-three' WHERE a=13706;\nUPDATE t2 SET c='fifty-nine thousand three hundred fifteen' WHERE a=13707;\nUPDATE t2 SET c='fourteen thousand nine hundred thirty-four' WHERE a=13708;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-two' WHERE a=13709;\nUPDATE t2 SET c='twenty-two thousand nine hundred twenty-six' WHERE a=13710;\nUPDATE t2 SET c='eighty-one thousand sixty' WHERE a=13711;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-one' WHERE a=13712;\nUPDATE t2 SET c='forty-four thousand four hundred fifty-five' WHERE a=13713;\nUPDATE t2 SET c='thirty-eight thousand three hundred twenty-five' WHERE a=13714;\nUPDATE t2 SET c='eighty-five thousand five hundred seventy-two' WHERE a=13715;\nUPDATE t2 SET c='eighty-seven thousand eight hundred thirty-two' WHERE a=13716;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-four' WHERE a=13717;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-seven' WHERE a=13718;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-eight' WHERE a=13719;\nUPDATE t2 SET c='twelve thousand eight hundred three' WHERE a=13720;\nUPDATE t2 SET c='sixty-nine thousand two hundred ninety-six' WHERE a=13721;\nUPDATE t2 SET c='sixty-two thousand seven hundred ninety-nine' WHERE a=13722;\nUPDATE t2 SET c='nineteen thousand six hundred twenty-five' WHERE a=13723;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-two' WHERE a=13724;\nUPDATE t2 SET c='fifty-one thousand nine hundred ninety-six' WHERE a=13725;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirteen' WHERE a=13726;\nUPDATE t2 SET c='thirty thousand five hundred fifty-six' WHERE a=13727;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-four' WHERE a=13728;\nUPDATE t2 SET c='twenty-four thousand three hundred forty-six' WHERE a=13729;\nUPDATE t2 SET c='thirty-one thousand six hundred four' WHERE a=13730;\nUPDATE t2 SET c='ten thousand eighty' WHERE a=13731;\nUPDATE t2 SET c='seven thousand three hundred fifty-seven' WHERE a=13732;\nUPDATE t2 SET c='thirty-five thousand sixty-two' WHERE a=13733;\nUPDATE t2 SET c='eighteen thousand six hundred twenty-nine' WHERE a=13734;\nUPDATE t2 SET c='twenty-seven thousand four hundred forty-four' WHERE a=13735;\nUPDATE t2 SET c='thirty-three thousand eleven' WHERE a=13736;\nUPDATE t2 SET c='eighty thousand seven hundred thirty-three' WHERE a=13737;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-seven' WHERE a=13738;\nUPDATE t2 SET c='twenty-six thousand two hundred nineteen' WHERE a=13739;\nUPDATE t2 SET c='sixty-eight thousand eight hundred twenty-nine' WHERE a=13740;\nUPDATE t2 SET c='eighty-five thousand three hundred eighty-four' WHERE a=13741;\nUPDATE t2 SET c='sixty-seven thousand five hundred sixty-seven' WHERE a=13742;\nUPDATE t2 SET c='seven thousand four hundred seventy-four' WHERE a=13743;\nUPDATE t2 SET c='forty-two thousand six hundred ninety-eight' WHERE a=13744;\nUPDATE t2 SET c='sixty-nine thousand two hundred eighty-eight' WHERE a=13745;\nUPDATE t2 SET c='seventy-seven thousand ninety-eight' WHERE a=13746;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-nine' WHERE a=13747;\nUPDATE t2 SET c='ninety-one thousand six hundred fifty-one' WHERE a=13748;\nUPDATE t2 SET c='sixty-one thousand one hundred thirty-seven' WHERE a=13749;\nUPDATE t2 SET c='sixteen thousand nine hundred forty-one' WHERE a=13750;\nUPDATE t2 SET c='nine thousand two hundred ninety-six' WHERE a=13751;\nUPDATE t2 SET c='forty-two thousand three hundred twenty-nine' WHERE a=13752;\nUPDATE t2 SET c='five thousand two hundred sixty-five' WHERE a=13753;\nUPDATE t2 SET c='fifty-two thousand five hundred ninety-two' WHERE a=13754;\nUPDATE t2 SET c='forty-two thousand two hundred five' WHERE a=13755;\nUPDATE t2 SET c='ninety-two thousand six hundred sixty-three' WHERE a=13756;\nUPDATE t2 SET c='nine thousand nine hundred eight' WHERE a=13757;\nUPDATE t2 SET c='eighty-seven thousand one hundred eighty-seven' WHERE a=13758;\nUPDATE t2 SET c='four thousand eight hundred seventy-four' WHERE a=13759;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-five' WHERE a=13760;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty-seven' WHERE a=13761;\nUPDATE t2 SET c='twenty-one thousand three hundred twenty-four' WHERE a=13762;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirteen' WHERE a=13763;\nUPDATE t2 SET c='twenty-nine thousand eighty-eight' WHERE a=13764;\nUPDATE t2 SET c='eleven thousand eight hundred sixteen' WHERE a=13765;\nUPDATE t2 SET c='thirty-six thousand one hundred thirty-three' WHERE a=13766;\nUPDATE t2 SET c='ten thousand nine hundred sixty-three' WHERE a=13767;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-one' WHERE a=13768;\nUPDATE t2 SET c='two thousand eight hundred seventy-two' WHERE a=13769;\nUPDATE t2 SET c='sixty thousand one hundred three' WHERE a=13770;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-four' WHERE a=13771;\nUPDATE t2 SET c='thirty-four thousand fifty-one' WHERE a=13772;\nUPDATE t2 SET c='sixteen thousand nine hundred sixteen' WHERE a=13773;\nUPDATE t2 SET c='one thousand three hundred nineteen' WHERE a=13774;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-two' WHERE a=13775;\nUPDATE t2 SET c='twenty-seven thousand six hundred eighty-four' WHERE a=13776;\nUPDATE t2 SET c='one thousand nine hundred eighty-eight' WHERE a=13777;\nUPDATE t2 SET c='seven thousand two hundred thirty-six' WHERE a=13778;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty-seven' WHERE a=13779;\nUPDATE t2 SET c='sixty-six thousand seventeen' WHERE a=13780;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-four' WHERE a=13781;\nUPDATE t2 SET c='twelve thousand eight hundred twenty-six' WHERE a=13782;\nUPDATE t2 SET c='forty-seven thousand three hundred eleven' WHERE a=13783;\nUPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=13784;\nUPDATE t2 SET c='twenty-five thousand one hundred fifty-eight' WHERE a=13785;\nUPDATE t2 SET c='thirty-five thousand four hundred seven' WHERE a=13786;\nUPDATE t2 SET c='nine thousand three hundred ninety-five' WHERE a=13787;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-five' WHERE a=13788;\nUPDATE t2 SET c='twenty-eight thousand nine hundred thirty-two' WHERE a=13789;\nUPDATE t2 SET c='eighty-eight thousand three hundred fifty-two' WHERE a=13790;\nUPDATE t2 SET c='seventy-eight thousand five hundred seven' WHERE a=13791;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-seven' WHERE a=13792;\nUPDATE t2 SET c='four thousand seven hundred forty-three' WHERE a=13793;\nUPDATE t2 SET c='seventy-two thousand five hundred forty-nine' WHERE a=13794;\nUPDATE t2 SET c='twenty-one thousand nine hundred two' WHERE a=13795;\nUPDATE t2 SET c='eighty-four thousand two hundred eighty-four' WHERE a=13796;\nUPDATE t2 SET c='thirty-five thousand nine hundred fifteen' WHERE a=13797;\nUPDATE t2 SET c='sixty-two thousand nine hundred seven' WHERE a=13798;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-five' WHERE a=13799;\nUPDATE t2 SET c='six hundred thirty-one' WHERE a=13800;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-nine' WHERE a=13801;\nUPDATE t2 SET c='seventy-three thousand five hundred sixty-five' WHERE a=13802;\nUPDATE t2 SET c='thirty-four thousand fifty-six' WHERE a=13803;\nUPDATE t2 SET c='ninety-four thousand four hundred eleven' WHERE a=13804;\nUPDATE t2 SET c='forty thousand six hundred ninety-five' WHERE a=13805;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-four' WHERE a=13806;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-two' WHERE a=13807;\nUPDATE t2 SET c='sixty-five thousand five hundred eighty-nine' WHERE a=13808;\nUPDATE t2 SET c='nine thousand seven hundred ninety-five' WHERE a=13809;\nUPDATE t2 SET c='eighty-five thousand seven hundred six' WHERE a=13810;\nUPDATE t2 SET c='seventeen thousand four hundred twelve' WHERE a=13811;\nUPDATE t2 SET c='eighty-seven thousand one hundred forty' WHERE a=13812;\nUPDATE t2 SET c='sixty-seven thousand four hundred ninety-five' WHERE a=13813;\nUPDATE t2 SET c='twelve thousand four hundred twenty-four' WHERE a=13814;\nUPDATE t2 SET c='seven thousand one hundred seventy-two' WHERE a=13815;\nUPDATE t2 SET c='forty-five thousand six hundred forty-seven' WHERE a=13816;\nUPDATE t2 SET c='thirty thousand four hundred thirty-six' WHERE a=13817;\nUPDATE t2 SET c='sixty-one thousand four hundred fourteen' WHERE a=13818;\nUPDATE t2 SET c='forty-six thousand three hundred seven' WHERE a=13819;\nUPDATE t2 SET c='sixty-eight thousand ninety-eight' WHERE a=13820;\nUPDATE t2 SET c='seventeen thousand seven hundred forty-eight' WHERE a=13821;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-nine' WHERE a=13822;\nUPDATE t2 SET c='sixty-two thousand three hundred seventy-two' WHERE a=13823;\nUPDATE t2 SET c='thirty-five thousand two hundred thirty-five' WHERE a=13824;\nUPDATE t2 SET c='seventy-eight thousand thirty-nine' WHERE a=13825;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-three' WHERE a=13826;\nUPDATE t2 SET c='seventy thousand eight hundred twenty-four' WHERE a=13827;\nUPDATE t2 SET c='thirty thousand two hundred forty-five' WHERE a=13828;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-six' WHERE a=13829;\nUPDATE t2 SET c='five thousand four hundred sixty-seven' WHERE a=13830;\nUPDATE t2 SET c='fifty-three thousand seventy-three' WHERE a=13831;\nUPDATE t2 SET c='one thousand nine hundred thirty-one' WHERE a=13832;\nUPDATE t2 SET c='sixty-seven thousand three hundred fifty-five' WHERE a=13833;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty-five' WHERE a=13834;\nUPDATE t2 SET c='forty-two thousand seven hundred eleven' WHERE a=13835;\nUPDATE t2 SET c='fourteen thousand five hundred ten' WHERE a=13836;\nUPDATE t2 SET c='thirty thousand five hundred eighty-six' WHERE a=13837;\nUPDATE t2 SET c='sixty-one thousand eight hundred thirty-nine' WHERE a=13838;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty' WHERE a=13839;\nUPDATE t2 SET c='twenty thousand two hundred sixty-one' WHERE a=13840;\nUPDATE t2 SET c='eighty-seven thousand eight hundred thirty' WHERE a=13841;\nUPDATE t2 SET c='eighty-three thousand four hundred ninety-one' WHERE a=13842;\nUPDATE t2 SET c='fifty-six thousand four hundred twenty-seven' WHERE a=13843;\nUPDATE t2 SET c='fifty-eight thousand three hundred thirty-six' WHERE a=13844;\nUPDATE t2 SET c='eighty-three thousand nine hundred six' WHERE a=13845;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-four' WHERE a=13846;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fourteen' WHERE a=13847;\nUPDATE t2 SET c='forty-three thousand one hundred eighty' WHERE a=13848;\nUPDATE t2 SET c='eighty-one thousand one hundred seventeen' WHERE a=13849;\nUPDATE t2 SET c='twenty-eight thousand eight hundred nine' WHERE a=13850;\nUPDATE t2 SET c='seventy-three thousand seventy-one' WHERE a=13851;\nUPDATE t2 SET c='seventy-three thousand one hundred ninety-three' WHERE a=13852;\nUPDATE t2 SET c='sixty-five thousand three hundred twelve' WHERE a=13853;\nUPDATE t2 SET c='three thousand eight hundred nineteen' WHERE a=13854;\nUPDATE t2 SET c='forty-nine thousand one hundred sixteen' WHERE a=13855;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-three' WHERE a=13856;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-three' WHERE a=13857;\nUPDATE t2 SET c='ninety-one thousand one hundred one' WHERE a=13858;\nUPDATE t2 SET c='seventy thousand seven hundred forty-six' WHERE a=13859;\nUPDATE t2 SET c='seventy-two thousand six hundred eighty-three' WHERE a=13860;\nUPDATE t2 SET c='sixty-two thousand four hundred ninety-five' WHERE a=13861;\nUPDATE t2 SET c='forty-five thousand one hundred three' WHERE a=13862;\nUPDATE t2 SET c='sixteen thousand four hundred sixty-six' WHERE a=13863;\nUPDATE t2 SET c='seventy-one thousand twenty' WHERE a=13864;\nUPDATE t2 SET c='thirty-six thousand one hundred thirty-seven' WHERE a=13865;\nUPDATE t2 SET c='forty thousand ninety' WHERE a=13866;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-one' WHERE a=13867;\nUPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=13868;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-eight' WHERE a=13869;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-four' WHERE a=13870;\nUPDATE t2 SET c='twenty-one thousand eight hundred twenty-nine' WHERE a=13871;\nUPDATE t2 SET c='seventy-five thousand eight hundred eighty-nine' WHERE a=13872;\nUPDATE t2 SET c='fifty-six thousand nine hundred thirty-eight' WHERE a=13873;\nUPDATE t2 SET c='ninety-eight thousand nine hundred fifty-two' WHERE a=13874;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-six' WHERE a=13875;\nUPDATE t2 SET c='twenty-one thousand five hundred twenty-six' WHERE a=13876;\nUPDATE t2 SET c='twenty-one thousand seven hundred fifty-two' WHERE a=13877;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifty-four' WHERE a=13878;\nUPDATE t2 SET c='two thousand seven hundred three' WHERE a=13879;\nUPDATE t2 SET c='twenty thousand nine hundred ninety-five' WHERE a=13880;\nUPDATE t2 SET c='twenty-three thousand seven hundred ninety-three' WHERE a=13881;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-eight' WHERE a=13882;\nUPDATE t2 SET c='sixty-one thousand five hundred eighty-nine' WHERE a=13883;\nUPDATE t2 SET c='eighty-one thousand one hundred thirty-five' WHERE a=13884;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-three' WHERE a=13885;\nUPDATE t2 SET c='forty-seven thousand four hundred five' WHERE a=13886;\nUPDATE t2 SET c='thirty-six thousand four hundred ninety-one' WHERE a=13887;\nUPDATE t2 SET c='twenty-three thousand two hundred sixty-four' WHERE a=13888;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-seven' WHERE a=13889;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty-two' WHERE a=13890;\nUPDATE t2 SET c='eighty-five thousand one hundred sixty-seven' WHERE a=13891;\nUPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=13892;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-one' WHERE a=13893;\nUPDATE t2 SET c='seventy-nine thousand six hundred fifty-eight' WHERE a=13894;\nUPDATE t2 SET c='fifty-four thousand four hundred twelve' WHERE a=13895;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy-three' WHERE a=13896;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-six' WHERE a=13897;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-two' WHERE a=13898;\nUPDATE t2 SET c='ten thousand four hundred sixty-eight' WHERE a=13899;\nUPDATE t2 SET c='ten thousand six hundred eighty' WHERE a=13900;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty-six' WHERE a=13901;\nUPDATE t2 SET c='seventeen thousand eight hundred ninety-three' WHERE a=13902;\nUPDATE t2 SET c='seventy-three thousand fifty-five' WHERE a=13903;\nUPDATE t2 SET c='fourteen thousand four hundred nine' WHERE a=13904;\nUPDATE t2 SET c='two thousand nine hundred ninety' WHERE a=13905;\nUPDATE t2 SET c='ninety-seven thousand five hundred thirty' WHERE a=13906;\nUPDATE t2 SET c='eighty-six thousand sixty-eight' WHERE a=13907;\nUPDATE t2 SET c='sixty-eight thousand sixty-nine' WHERE a=13908;\nUPDATE t2 SET c='twenty-three thousand three hundred sixty-one' WHERE a=13909;\nUPDATE t2 SET c='thirty-six thousand sixty-seven' WHERE a=13910;\nUPDATE t2 SET c='fourteen thousand five hundred eighty-two' WHERE a=13911;\nUPDATE t2 SET c='sixty-six thousand three hundred eighty-three' WHERE a=13912;\nUPDATE t2 SET c='fifty-eight thousand two hundred' WHERE a=13913;\nUPDATE t2 SET c='twelve thousand two hundred seventeen' WHERE a=13914;\nUPDATE t2 SET c='forty-three thousand seven hundred twenty-six' WHERE a=13915;\nUPDATE t2 SET c='twenty-four thousand twelve' WHERE a=13916;\nUPDATE t2 SET c='thirty-nine thousand seven hundred seventy-seven' WHERE a=13917;\nUPDATE t2 SET c='nine thousand eight hundred thirty-six' WHERE a=13918;\nUPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=13919;\nUPDATE t2 SET c='twenty-five thousand one hundred sixty-four' WHERE a=13920;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-six' WHERE a=13921;\nUPDATE t2 SET c='forty-four thousand nine hundred thirty' WHERE a=13922;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-four' WHERE a=13923;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-two' WHERE a=13924;\nUPDATE t2 SET c='thirty-four thousand three hundred seven' WHERE a=13925;\nUPDATE t2 SET c='seventy-four thousand six hundred twenty-nine' WHERE a=13926;\nUPDATE t2 SET c='five thousand six hundred seventy-four' WHERE a=13927;\nUPDATE t2 SET c='seventeen thousand five hundred fifty-six' WHERE a=13928;\nUPDATE t2 SET c='eight thousand two hundred thirty-five' WHERE a=13929;\nUPDATE t2 SET c='twenty-six thousand six hundred fifty-eight' WHERE a=13930;\nUPDATE t2 SET c='fifty-seven thousand four' WHERE a=13931;\nUPDATE t2 SET c='forty-five thousand two hundred sixty-seven' WHERE a=13932;\nUPDATE t2 SET c='thirty-eight thousand thirty-five' WHERE a=13933;\nUPDATE t2 SET c='fifty-two thousand five hundred sixty-three' WHERE a=13934;\nUPDATE t2 SET c='thirty-four thousand five hundred twelve' WHERE a=13935;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-two' WHERE a=13936;\nUPDATE t2 SET c='ninety thousand eight hundred forty-one' WHERE a=13937;\nUPDATE t2 SET c='thirty-four thousand two hundred forty' WHERE a=13938;\nUPDATE t2 SET c='forty-six thousand nine hundred thirty-four' WHERE a=13939;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-three' WHERE a=13940;\nUPDATE t2 SET c='three thousand three hundred eighty-eight' WHERE a=13941;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-four' WHERE a=13942;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-one' WHERE a=13943;\nUPDATE t2 SET c='seven thousand five hundred twenty-one' WHERE a=13944;\nUPDATE t2 SET c='eight hundred forty-nine' WHERE a=13945;\nUPDATE t2 SET c='thirty-four thousand one hundred seventy-nine' WHERE a=13946;\nUPDATE t2 SET c='thirty thousand eight hundred forty-four' WHERE a=13947;\nUPDATE t2 SET c='nine thousand six hundred forty-two' WHERE a=13948;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-two' WHERE a=13949;\nUPDATE t2 SET c='forty-one thousand eighty-nine' WHERE a=13950;\nUPDATE t2 SET c='seventy-two thousand ninety-six' WHERE a=13951;\nUPDATE t2 SET c='sixty-eight thousand nineteen' WHERE a=13952;\nUPDATE t2 SET c='five thousand nine hundred ninety-two' WHERE a=13953;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-four' WHERE a=13954;\nUPDATE t2 SET c='thirty-one thousand five hundred seven' WHERE a=13955;\nUPDATE t2 SET c='forty-one thousand eight hundred sixty-nine' WHERE a=13956;\nUPDATE t2 SET c='fifty-one thousand four hundred seventeen' WHERE a=13957;\nUPDATE t2 SET c='eighty thousand seven hundred two' WHERE a=13958;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-six' WHERE a=13959;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy-nine' WHERE a=13960;\nUPDATE t2 SET c='six thousand eight hundred forty-eight' WHERE a=13961;\nUPDATE t2 SET c='eight thousand two hundred eighty-three' WHERE a=13962;\nUPDATE t2 SET c='sixty-six thousand five hundred fifty-three' WHERE a=13963;\nUPDATE t2 SET c='twenty-two thousand three hundred forty-one' WHERE a=13964;\nUPDATE t2 SET c='thirty-five thousand nine hundred' WHERE a=13965;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy-five' WHERE a=13966;\nUPDATE t2 SET c='sixty-eight thousand three hundred thirty-nine' WHERE a=13967;\nUPDATE t2 SET c='fifty thousand nine hundred fifty-six' WHERE a=13968;\nUPDATE t2 SET c='ninety-five thousand six hundred ninety-six' WHERE a=13969;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ten' WHERE a=13970;\nUPDATE t2 SET c='twenty-three thousand six hundred forty-nine' WHERE a=13971;\nUPDATE t2 SET c='six thousand two hundred twenty-four' WHERE a=13972;\nUPDATE t2 SET c='twenty thousand two hundred fifty-one' WHERE a=13973;\nUPDATE t2 SET c='fifty-six thousand eighty-three' WHERE a=13974;\nUPDATE t2 SET c='eight thousand three hundred twenty-seven' WHERE a=13975;\nUPDATE t2 SET c='twenty-five thousand seven hundred eighty-five' WHERE a=13976;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=13977;\nUPDATE t2 SET c='ninety-seven thousand five hundred fifty-eight' WHERE a=13978;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty-three' WHERE a=13979;\nUPDATE t2 SET c='eleven thousand seven hundred twenty-five' WHERE a=13980;\nUPDATE t2 SET c='forty-eight thousand five hundred eighty-three' WHERE a=13981;\nUPDATE t2 SET c='eighty thousand sixty-two' WHERE a=13982;\nUPDATE t2 SET c='twelve thousand four hundred twenty-nine' WHERE a=13983;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-seven' WHERE a=13984;\nUPDATE t2 SET c='ninety-six thousand twenty-five' WHERE a=13985;\nUPDATE t2 SET c='forty-five thousand eight hundred seventy-eight' WHERE a=13986;\nUPDATE t2 SET c='sixty-eight thousand nine hundred thirty-six' WHERE a=13987;\nUPDATE t2 SET c='ninety-seven thousand twenty-six' WHERE a=13988;\nUPDATE t2 SET c='two thousand six hundred ninety-five' WHERE a=13989;\nUPDATE t2 SET c='seventy-nine thousand two hundred thirty-six' WHERE a=13990;\nUPDATE t2 SET c='seventy-seven thousand one hundred twenty-two' WHERE a=13991;\nUPDATE t2 SET c='thirty-eight thousand fifty-seven' WHERE a=13992;\nUPDATE t2 SET c='forty-five thousand one hundred fourteen' WHERE a=13993;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty-eight' WHERE a=13994;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-eight' WHERE a=13995;\nUPDATE t2 SET c='eighty-one thousand two hundred twenty-six' WHERE a=13996;\nUPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=13997;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-eight' WHERE a=13998;\nUPDATE t2 SET c='twenty-nine thousand six hundred ninety-nine' WHERE a=13999;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-three' WHERE a=14000;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=14001;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-eight' WHERE a=14002;\nUPDATE t2 SET c='ninety thousand eight hundred sixty-one' WHERE a=14003;\nUPDATE t2 SET c='ninety-eight thousand fifty-four' WHERE a=14004;\nUPDATE t2 SET c='forty-four thousand three hundred twenty-seven' WHERE a=14005;\nUPDATE t2 SET c='eighty-eight thousand nine hundred fifty-three' WHERE a=14006;\nUPDATE t2 SET c='fifty-eight thousand ninety-four' WHERE a=14007;\nUPDATE t2 SET c='eighty-six thousand five hundred one' WHERE a=14008;\nUPDATE t2 SET c='sixty thousand twenty-five' WHERE a=14009;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-one' WHERE a=14010;\nUPDATE t2 SET c='ninety-seven thousand three hundred eighty-four' WHERE a=14011;\nUPDATE t2 SET c='twenty thousand one hundred forty-five' WHERE a=14012;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty-eight' WHERE a=14013;\nUPDATE t2 SET c='twenty thousand three hundred fifteen' WHERE a=14014;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-seven' WHERE a=14015;\nUPDATE t2 SET c='fifty-eight thousand four hundred fifty' WHERE a=14016;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-seven' WHERE a=14017;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy' WHERE a=14018;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty' WHERE a=14019;\nUPDATE t2 SET c='eighty-four thousand nine hundred forty' WHERE a=14020;\nUPDATE t2 SET c='thirty-seven thousand four hundred ninety-nine' WHERE a=14021;\nUPDATE t2 SET c='sixty-two thousand nine hundred fifty-two' WHERE a=14022;\nUPDATE t2 SET c='ten thousand nine hundred thirty-seven' WHERE a=14023;\nUPDATE t2 SET c='seventy-two thousand five hundred twenty-two' WHERE a=14024;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty-nine' WHERE a=14025;\nUPDATE t2 SET c='nineteen thousand three hundred ninety-seven' WHERE a=14026;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighty-five' WHERE a=14027;\nUPDATE t2 SET c='sixteen thousand forty-eight' WHERE a=14028;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=14029;\nUPDATE t2 SET c='nine thousand ten' WHERE a=14030;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-six' WHERE a=14031;\nUPDATE t2 SET c='fifty-six thousand six hundred seven' WHERE a=14032;\nUPDATE t2 SET c='twelve thousand nine hundred thirty-five' WHERE a=14033;\nUPDATE t2 SET c='forty-five thousand one hundred twenty-one' WHERE a=14034;\nUPDATE t2 SET c='eighty thousand six hundred fifty-eight' WHERE a=14035;\nUPDATE t2 SET c='seventy thousand four hundred eighteen' WHERE a=14036;\nUPDATE t2 SET c='twenty-eight thousand ninety-eight' WHERE a=14037;\nUPDATE t2 SET c='nineteen thousand twenty-four' WHERE a=14038;\nUPDATE t2 SET c='sixty thousand three hundred fifty-seven' WHERE a=14039;\nUPDATE t2 SET c='eighty-one thousand six hundred twenty-five' WHERE a=14040;\nUPDATE t2 SET c='eleven thousand six hundred twenty-three' WHERE a=14041;\nUPDATE t2 SET c='forty-one thousand eighty-nine' WHERE a=14042;\nUPDATE t2 SET c='thirty-one thousand six hundred nine' WHERE a=14043;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=14044;\nUPDATE t2 SET c='nineteen thousand eight hundred eighty-six' WHERE a=14045;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-eight' WHERE a=14046;\nUPDATE t2 SET c='seventy-six thousand nine hundred five' WHERE a=14047;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty-nine' WHERE a=14048;\nUPDATE t2 SET c='eighty-one thousand six hundred twenty' WHERE a=14049;\nUPDATE t2 SET c='twenty-one thousand sixty-four' WHERE a=14050;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty-seven' WHERE a=14051;\nUPDATE t2 SET c='six thousand two hundred thirty' WHERE a=14052;\nUPDATE t2 SET c='fifty-five thousand seventy-three' WHERE a=14053;\nUPDATE t2 SET c='four thousand eight hundred eighty-five' WHERE a=14054;\nUPDATE t2 SET c='fifty-four thousand three hundred eighteen' WHERE a=14055;\nUPDATE t2 SET c='ninety thousand one hundred ninety-three' WHERE a=14056;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-six' WHERE a=14057;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-one' WHERE a=14058;\nUPDATE t2 SET c='eight thousand one hundred twenty-four' WHERE a=14059;\nUPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=14060;\nUPDATE t2 SET c='fifty-eight thousand two hundred seventy-nine' WHERE a=14061;\nUPDATE t2 SET c='one thousand nine hundred thirty-two' WHERE a=14062;\nUPDATE t2 SET c='ninety-four thousand six hundred thirty-seven' WHERE a=14063;\nUPDATE t2 SET c='fifty thousand one hundred one' WHERE a=14064;\nUPDATE t2 SET c='two thousand eight hundred forty-three' WHERE a=14065;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-eight' WHERE a=14066;\nUPDATE t2 SET c='fifty-nine thousand five hundred' WHERE a=14067;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-nine' WHERE a=14068;\nUPDATE t2 SET c='nine thousand five hundred eighty-four' WHERE a=14069;\nUPDATE t2 SET c='seventy-two thousand sixteen' WHERE a=14070;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-eight' WHERE a=14071;\nUPDATE t2 SET c='two thousand seven hundred sixty-four' WHERE a=14072;\nUPDATE t2 SET c='thirty-four thousand ninety-nine' WHERE a=14073;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=14074;\nUPDATE t2 SET c='fifty-two thousand nine hundred eleven' WHERE a=14075;\nUPDATE t2 SET c='thirty-two thousand one hundred five' WHERE a=14076;\nUPDATE t2 SET c='sixty-two thousand six' WHERE a=14077;\nUPDATE t2 SET c='seventy-four thousand five hundred fifty' WHERE a=14078;\nUPDATE t2 SET c='sixty-two thousand eight hundred seventy-eight' WHERE a=14079;\nUPDATE t2 SET c='eighty-five thousand one hundred seventy-three' WHERE a=14080;\nUPDATE t2 SET c='twenty thousand eleven' WHERE a=14081;\nUPDATE t2 SET c='thirty-five thousand six hundred forty-two' WHERE a=14082;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eighty-five' WHERE a=14083;\nUPDATE t2 SET c='ninety-two thousand forty' WHERE a=14084;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-four' WHERE a=14085;\nUPDATE t2 SET c='eleven thousand three hundred forty-nine' WHERE a=14086;\nUPDATE t2 SET c='four thousand two hundred sixty-eight' WHERE a=14087;\nUPDATE t2 SET c='twenty-three thousand seven hundred seventy-six' WHERE a=14088;\nUPDATE t2 SET c='thirty-one thousand twenty-seven' WHERE a=14089;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-three' WHERE a=14090;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-seven' WHERE a=14091;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-four' WHERE a=14092;\nUPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=14093;\nUPDATE t2 SET c='seventeen thousand three hundred four' WHERE a=14094;\nUPDATE t2 SET c='eighty-one thousand three hundred ninety-eight' WHERE a=14095;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-nine' WHERE a=14096;\nUPDATE t2 SET c='nine thousand seven hundred twenty-four' WHERE a=14097;\nUPDATE t2 SET c='ninety-three thousand eight hundred thirty-seven' WHERE a=14098;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-one' WHERE a=14099;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-one' WHERE a=14100;\nUPDATE t2 SET c='three thousand seven hundred fifty-two' WHERE a=14101;\nUPDATE t2 SET c='three hundred seventy-two' WHERE a=14102;\nUPDATE t2 SET c='seventy thousand one hundred forty-nine' WHERE a=14103;\nUPDATE t2 SET c='forty-seven thousand nine hundred twenty-three' WHERE a=14104;\nUPDATE t2 SET c='fifty-two thousand seven hundred thirty-eight' WHERE a=14105;\nUPDATE t2 SET c='fifty-seven thousand seven hundred twenty-four' WHERE a=14106;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-nine' WHERE a=14107;\nUPDATE t2 SET c='sixty-one thousand five hundred sixty-six' WHERE a=14108;\nUPDATE t2 SET c='seventy-one thousand nine hundred four' WHERE a=14109;\nUPDATE t2 SET c='thirty-six thousand six hundred fifteen' WHERE a=14110;\nUPDATE t2 SET c='fifteen thousand six hundred twenty-nine' WHERE a=14111;\nUPDATE t2 SET c='eighty-nine thousand six hundred five' WHERE a=14112;\nUPDATE t2 SET c='ninety-five thousand seven hundred thirty-seven' WHERE a=14113;\nUPDATE t2 SET c='eighty-seven thousand three hundred ninety-three' WHERE a=14114;\nUPDATE t2 SET c='forty-seven thousand eighty-six' WHERE a=14115;\nUPDATE t2 SET c='forty-two thousand twenty-two' WHERE a=14116;\nUPDATE t2 SET c='seventeen thousand three hundred thirty-five' WHERE a=14117;\nUPDATE t2 SET c='ninety-seven thousand thirty' WHERE a=14118;\nUPDATE t2 SET c='seventeen thousand eight hundred sixty-nine' WHERE a=14119;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-eight' WHERE a=14120;\nUPDATE t2 SET c='fifty-one thousand five hundred eighty' WHERE a=14121;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-nine' WHERE a=14122;\nUPDATE t2 SET c='seven thousand nine hundred fifty' WHERE a=14123;\nUPDATE t2 SET c='eighty-two thousand seven hundred seventy-five' WHERE a=14124;\nUPDATE t2 SET c='thirty-five thousand one hundred ninety-seven' WHERE a=14125;\nUPDATE t2 SET c='seventeen thousand five hundred sixty' WHERE a=14126;\nUPDATE t2 SET c='sixty-two thousand two hundred thirty-seven' WHERE a=14127;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-three' WHERE a=14128;\nUPDATE t2 SET c='forty-eight thousand four hundred three' WHERE a=14129;\nUPDATE t2 SET c='sixty thousand eight hundred forty-one' WHERE a=14130;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-six' WHERE a=14131;\nUPDATE t2 SET c='forty-eight thousand five hundred thirty-four' WHERE a=14132;\nUPDATE t2 SET c='sixty-seven thousand three hundred sixty' WHERE a=14133;\nUPDATE t2 SET c='twenty-six thousand seven hundred ninety-three' WHERE a=14134;\nUPDATE t2 SET c='forty-six thousand nine hundred eight' WHERE a=14135;\nUPDATE t2 SET c='fifteen thousand one hundred sixty-five' WHERE a=14136;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety' WHERE a=14137;\nUPDATE t2 SET c='two thousand four hundred thirty-eight' WHERE a=14138;\nUPDATE t2 SET c='seventy-seven thousand one hundred forty-three' WHERE a=14139;\nUPDATE t2 SET c='forty-eight' WHERE a=14140;\nUPDATE t2 SET c='eighty-three thousand forty' WHERE a=14141;\nUPDATE t2 SET c='forty-four thousand one' WHERE a=14142;\nUPDATE t2 SET c='sixty-four thousand ninety-three' WHERE a=14143;\nUPDATE t2 SET c='seventy thousand forty-one' WHERE a=14144;\nUPDATE t2 SET c='sixty-nine thousand five hundred three' WHERE a=14145;\nUPDATE t2 SET c='nine thousand three hundred fifty-six' WHERE a=14146;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-four' WHERE a=14147;\nUPDATE t2 SET c='five thousand seven hundred fifty-eight' WHERE a=14148;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-seven' WHERE a=14149;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-five' WHERE a=14150;\nUPDATE t2 SET c='fifty-four thousand three hundred eighty-one' WHERE a=14151;\nUPDATE t2 SET c='fifty-three thousand seven hundred nineteen' WHERE a=14152;\nUPDATE t2 SET c='thirty-seven thousand four hundred thirty-seven' WHERE a=14153;\nUPDATE t2 SET c='thirty-three thousand two hundred forty-six' WHERE a=14154;\nUPDATE t2 SET c='thirty-two thousand one hundred two' WHERE a=14155;\nUPDATE t2 SET c='eight thousand six hundred one' WHERE a=14156;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-seven' WHERE a=14157;\nUPDATE t2 SET c='ninety thousand nine hundred forty-six' WHERE a=14158;\nUPDATE t2 SET c='eighty-one thousand seven hundred forty-five' WHERE a=14159;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-seven' WHERE a=14160;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirty-seven' WHERE a=14161;\nUPDATE t2 SET c='fifty-three thousand three hundred forty-seven' WHERE a=14162;\nUPDATE t2 SET c='twenty thousand seven hundred seventy-six' WHERE a=14163;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-nine' WHERE a=14164;\nUPDATE t2 SET c='two hundred sixteen' WHERE a=14165;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty-two' WHERE a=14166;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-one' WHERE a=14167;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twelve' WHERE a=14168;\nUPDATE t2 SET c='forty-eight thousand four hundred forty-five' WHERE a=14169;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-five' WHERE a=14170;\nUPDATE t2 SET c='twenty-two thousand seven hundred seventeen' WHERE a=14171;\nUPDATE t2 SET c='thirty-two thousand four hundred forty-one' WHERE a=14172;\nUPDATE t2 SET c='fourteen thousand one hundred eighty-six' WHERE a=14173;\nUPDATE t2 SET c='thirty-seven thousand nine' WHERE a=14174;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-three' WHERE a=14175;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-three' WHERE a=14176;\nUPDATE t2 SET c='one thousand two hundred sixty' WHERE a=14177;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-eight' WHERE a=14178;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-seven' WHERE a=14179;\nUPDATE t2 SET c='thirty-nine thousand sixty-two' WHERE a=14180;\nUPDATE t2 SET c='fifty-three thousand four' WHERE a=14181;\nUPDATE t2 SET c='thirty-eight thousand nine hundred ninety-five' WHERE a=14182;\nUPDATE t2 SET c='nine hundred seventy-one' WHERE a=14183;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-seven' WHERE a=14184;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-seven' WHERE a=14185;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-one' WHERE a=14186;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-four' WHERE a=14187;\nUPDATE t2 SET c='eighty-two thousand nine hundred seven' WHERE a=14188;\nUPDATE t2 SET c='twenty thousand one hundred three' WHERE a=14189;\nUPDATE t2 SET c='twenty-six thousand eighty-one' WHERE a=14190;\nUPDATE t2 SET c='ninety-one thousand six hundred twenty-two' WHERE a=14191;\nUPDATE t2 SET c='eighty-seven thousand six hundred five' WHERE a=14192;\nUPDATE t2 SET c='twenty-three thousand seven hundred seventy-three' WHERE a=14193;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-two' WHERE a=14194;\nUPDATE t2 SET c='forty-three thousand three hundred fifty-one' WHERE a=14195;\nUPDATE t2 SET c='thirty-four thousand seven hundred ninety-nine' WHERE a=14196;\nUPDATE t2 SET c='forty-one thousand three hundred thirty-seven' WHERE a=14197;\nUPDATE t2 SET c='forty-eight thousand three hundred thirty-three' WHERE a=14198;\nUPDATE t2 SET c='thirty-one thousand three hundred seventy-eight' WHERE a=14199;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty-six' WHERE a=14200;\nUPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=14201;\nUPDATE t2 SET c='thirty thousand one hundred fifty-four' WHERE a=14202;\nUPDATE t2 SET c='eleven thousand twenty-four' WHERE a=14203;\nUPDATE t2 SET c='forty-seven thousand one hundred thirty-one' WHERE a=14204;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-three' WHERE a=14205;\nUPDATE t2 SET c='fifty-two thousand four hundred ninety-seven' WHERE a=14206;\nUPDATE t2 SET c='eighty-three thousand five' WHERE a=14207;\nUPDATE t2 SET c='forty-eight thousand one hundred forty-four' WHERE a=14208;\nUPDATE t2 SET c='six thousand five hundred seventy' WHERE a=14209;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty-one' WHERE a=14210;\nUPDATE t2 SET c='ninety-two thousand seventy-four' WHERE a=14211;\nUPDATE t2 SET c='twenty thousand nine hundred forty-one' WHERE a=14212;\nUPDATE t2 SET c='ninety-three thousand one hundred two' WHERE a=14213;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-nine' WHERE a=14214;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-nine' WHERE a=14215;\nUPDATE t2 SET c='ninety-eight thousand three hundred eighty' WHERE a=14216;\nUPDATE t2 SET c='forty-two thousand sixty' WHERE a=14217;\nUPDATE t2 SET c='seventy-seven thousand four hundred eleven' WHERE a=14218;\nUPDATE t2 SET c='thirty-three thousand seven hundred ninety-nine' WHERE a=14219;\nUPDATE t2 SET c='ninety-four thousand nine hundred twenty-five' WHERE a=14220;\nUPDATE t2 SET c='sixty-four thousand six hundred sixty-five' WHERE a=14221;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-two' WHERE a=14222;\nUPDATE t2 SET c='ten thousand six hundred forty-five' WHERE a=14223;\nUPDATE t2 SET c='eighty-four thousand two' WHERE a=14224;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-one' WHERE a=14225;\nUPDATE t2 SET c='seventy-nine thousand one hundred fourteen' WHERE a=14226;\nUPDATE t2 SET c='ninety-seven thousand thirty-four' WHERE a=14227;\nUPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=14228;\nUPDATE t2 SET c='two thousand one hundred thirteen' WHERE a=14229;\nUPDATE t2 SET c='ninety-three thousand one hundred ninety-five' WHERE a=14230;\nUPDATE t2 SET c='forty-seven thousand seven hundred thirty-nine' WHERE a=14231;\nUPDATE t2 SET c='twenty-two thousand two hundred forty' WHERE a=14232;\nUPDATE t2 SET c='sixty-eight thousand two hundred twenty-seven' WHERE a=14233;\nUPDATE t2 SET c='forty-five thousand three hundred seventy-five' WHERE a=14234;\nUPDATE t2 SET c='twenty-seven thousand nine hundred seventy-four' WHERE a=14235;\nUPDATE t2 SET c='seventy-eight thousand two hundred ninety-three' WHERE a=14236;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-eight' WHERE a=14237;\nUPDATE t2 SET c='seventy-one thousand five hundred twenty-four' WHERE a=14238;\nUPDATE t2 SET c='forty-five thousand eighty-three' WHERE a=14239;\nUPDATE t2 SET c='forty thousand eight hundred fifty-three' WHERE a=14240;\nUPDATE t2 SET c='fifty-one thousand nineteen' WHERE a=14241;\nUPDATE t2 SET c='forty-nine thousand two hundred twenty-eight' WHERE a=14242;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty-eight' WHERE a=14243;\nUPDATE t2 SET c='six thousand twenty-nine' WHERE a=14244;\nUPDATE t2 SET c='eighty-three thousand nine hundred ninety-five' WHERE a=14245;\nUPDATE t2 SET c='ninety-nine thousand eight hundred thirty-seven' WHERE a=14246;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty-one' WHERE a=14247;\nUPDATE t2 SET c='eighteen thousand one hundred sixty-three' WHERE a=14248;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-two' WHERE a=14249;\nUPDATE t2 SET c='forty-seven thousand six hundred eighty-one' WHERE a=14250;\nUPDATE t2 SET c='twenty-two thousand four hundred forty-one' WHERE a=14251;\nUPDATE t2 SET c='fifty-four thousand one hundred thirteen' WHERE a=14252;\nUPDATE t2 SET c='twenty-seven thousand eight hundred seventeen' WHERE a=14253;\nUPDATE t2 SET c='seventeen thousand five hundred eighty-three' WHERE a=14254;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-four' WHERE a=14255;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-nine' WHERE a=14256;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-seven' WHERE a=14257;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-seven' WHERE a=14258;\nUPDATE t2 SET c='sixty-eight thousand two hundred forty-nine' WHERE a=14259;\nUPDATE t2 SET c='sixty-seven thousand four hundred twenty-three' WHERE a=14260;\nUPDATE t2 SET c='fifty-nine thousand six hundred ninety-two' WHERE a=14261;\nUPDATE t2 SET c='forty-five thousand seven hundred ninety-eight' WHERE a=14262;\nUPDATE t2 SET c='nine thousand three hundred ninety-two' WHERE a=14263;\nUPDATE t2 SET c='thirty-nine thousand three hundred fifty-three' WHERE a=14264;\nUPDATE t2 SET c='four thousand four hundred sixty-three' WHERE a=14265;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty' WHERE a=14266;\nUPDATE t2 SET c='thirteen thousand four hundred sixty-four' WHERE a=14267;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-nine' WHERE a=14268;\nUPDATE t2 SET c='seventy-three thousand six hundred one' WHERE a=14269;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-two' WHERE a=14270;\nUPDATE t2 SET c='sixty-three thousand eight hundred seventy-six' WHERE a=14271;\nUPDATE t2 SET c='fourteen thousand four hundred thirty-seven' WHERE a=14272;\nUPDATE t2 SET c='seven thousand nine hundred fifty-eight' WHERE a=14273;\nUPDATE t2 SET c='fifty-six thousand three hundred forty-three' WHERE a=14274;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-nine' WHERE a=14275;\nUPDATE t2 SET c='thirty-six thousand four hundred forty-three' WHERE a=14276;\nUPDATE t2 SET c='eighty-three thousand one hundred twelve' WHERE a=14277;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-eight' WHERE a=14278;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty' WHERE a=14279;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty-one' WHERE a=14280;\nUPDATE t2 SET c='thirty-one thousand five hundred ninety-one' WHERE a=14281;\nUPDATE t2 SET c='twenty thousand eight hundred sixty-five' WHERE a=14282;\nUPDATE t2 SET c='ninety-three thousand three hundred fourteen' WHERE a=14283;\nUPDATE t2 SET c='thirty-one thousand four hundred sixty-eight' WHERE a=14284;\nUPDATE t2 SET c='forty-two thousand two hundred thirty-two' WHERE a=14285;\nUPDATE t2 SET c='thirty thousand three hundred eighty' WHERE a=14286;\nUPDATE t2 SET c='fifty-four thousand six hundred eighteen' WHERE a=14287;\nUPDATE t2 SET c='sixty-six thousand one hundred thirteen' WHERE a=14288;\nUPDATE t2 SET c='twenty-four thousand three hundred sixty-seven' WHERE a=14289;\nUPDATE t2 SET c='one thousand nine hundred eighteen' WHERE a=14290;\nUPDATE t2 SET c='thirty-eight thousand two hundred twenty-two' WHERE a=14291;\nUPDATE t2 SET c='eleven thousand five hundred sixty-six' WHERE a=14292;\nUPDATE t2 SET c='fifty-five thousand six hundred thirty-seven' WHERE a=14293;\nUPDATE t2 SET c='twenty-eight thousand five hundred fifty-eight' WHERE a=14294;\nUPDATE t2 SET c='sixty thousand three hundred thirty-six' WHERE a=14295;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-two' WHERE a=14296;\nUPDATE t2 SET c='twelve thousand two hundred eighty-three' WHERE a=14297;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventy-six' WHERE a=14298;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-five' WHERE a=14299;\nUPDATE t2 SET c='thirty-one thousand four hundred two' WHERE a=14300;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=14301;\nUPDATE t2 SET c='three thousand seven hundred fifty-nine' WHERE a=14302;\nUPDATE t2 SET c='eighty-seven thousand sixty-nine' WHERE a=14303;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-seven' WHERE a=14304;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-five' WHERE a=14305;\nUPDATE t2 SET c='fifty-six thousand one hundred forty-nine' WHERE a=14306;\nUPDATE t2 SET c='ninety-three thousand fifty-seven' WHERE a=14307;\nUPDATE t2 SET c='thirty thousand nine hundred forty-six' WHERE a=14308;\nUPDATE t2 SET c='forty-nine thousand one hundred nineteen' WHERE a=14309;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-nine' WHERE a=14310;\nUPDATE t2 SET c='seventy-five thousand seven hundred' WHERE a=14311;\nUPDATE t2 SET c='twenty-one thousand four' WHERE a=14312;\nUPDATE t2 SET c='thirteen thousand four hundred eighty-one' WHERE a=14313;\nUPDATE t2 SET c='four thousand five hundred thirty-five' WHERE a=14314;\nUPDATE t2 SET c='seventy-seven thousand five hundred nine' WHERE a=14315;\nUPDATE t2 SET c='twenty-one thousand five hundred sixty-seven' WHERE a=14316;\nUPDATE t2 SET c='ten thousand fifty-nine' WHERE a=14317;\nUPDATE t2 SET c='three thousand two hundred twenty' WHERE a=14318;\nUPDATE t2 SET c='twenty-two thousand ninety-five' WHERE a=14319;\nUPDATE t2 SET c='five thousand thirty-four' WHERE a=14320;\nUPDATE t2 SET c='ninety-one thousand three hundred three' WHERE a=14321;\nUPDATE t2 SET c='sixteen thousand ninety-one' WHERE a=14322;\nUPDATE t2 SET c='fifty-three thousand one hundred twenty-three' WHERE a=14323;\nUPDATE t2 SET c='nineteen thousand four hundred ninety-eight' WHERE a=14324;\nUPDATE t2 SET c='five thousand four hundred eighty' WHERE a=14325;\nUPDATE t2 SET c='fifty thousand three hundred two' WHERE a=14326;\nUPDATE t2 SET c='thirty-one thousand eighty-eight' WHERE a=14327;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-seven' WHERE a=14328;\nUPDATE t2 SET c='seven thousand three hundred fifteen' WHERE a=14329;\nUPDATE t2 SET c='sixty-eight thousand seven hundred twenty-one' WHERE a=14330;\nUPDATE t2 SET c='forty-four thousand one hundred forty-nine' WHERE a=14331;\nUPDATE t2 SET c='twenty-eight thousand two hundred sixty-three' WHERE a=14332;\nUPDATE t2 SET c='ninety thousand six hundred fifty' WHERE a=14333;\nUPDATE t2 SET c='twenty thousand ninety-six' WHERE a=14334;\nUPDATE t2 SET c='thirty-three thousand four hundred four' WHERE a=14335;\nUPDATE t2 SET c='forty-seven thousand two hundred eleven' WHERE a=14336;\nUPDATE t2 SET c='thirty thousand three hundred ninety-four' WHERE a=14337;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-one' WHERE a=14338;\nUPDATE t2 SET c='twenty-six thousand four hundred eighty-eight' WHERE a=14339;\nUPDATE t2 SET c='eighty-eight thousand eight hundred eight' WHERE a=14340;\nUPDATE t2 SET c='eighty-one thousand three hundred eighty-two' WHERE a=14341;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty' WHERE a=14342;\nUPDATE t2 SET c='ninety-three thousand eight hundred eighty-one' WHERE a=14343;\nUPDATE t2 SET c='twenty-six thousand nine hundred sixty-six' WHERE a=14344;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-one' WHERE a=14345;\nUPDATE t2 SET c='ninety-five thousand nine hundred forty-six' WHERE a=14346;\nUPDATE t2 SET c='fourteen thousand two hundred thirty-eight' WHERE a=14347;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-six' WHERE a=14348;\nUPDATE t2 SET c='fourteen thousand seven hundred twelve' WHERE a=14349;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-one' WHERE a=14350;\nUPDATE t2 SET c='eighty-six thousand nine hundred twenty-seven' WHERE a=14351;\nUPDATE t2 SET c='sixty-nine thousand three hundred thirty' WHERE a=14352;\nUPDATE t2 SET c='thirty-eight thousand one hundred forty-eight' WHERE a=14353;\nUPDATE t2 SET c='nine thousand seven hundred forty-two' WHERE a=14354;\nUPDATE t2 SET c='eighty-five thousand five hundred thirteen' WHERE a=14355;\nUPDATE t2 SET c='thirty-two thousand ninety-four' WHERE a=14356;\nUPDATE t2 SET c='eighty-eight thousand one hundred twenty-two' WHERE a=14357;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-five' WHERE a=14358;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-one' WHERE a=14359;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-four' WHERE a=14360;\nUPDATE t2 SET c='forty-six thousand seven' WHERE a=14361;\nUPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=14362;\nUPDATE t2 SET c='ten thousand two hundred twelve' WHERE a=14363;\nUPDATE t2 SET c='fifty-nine thousand six hundred thirty-six' WHERE a=14364;\nUPDATE t2 SET c='fifty-seven thousand seventy-five' WHERE a=14365;\nUPDATE t2 SET c='eight thousand four hundred sixty-six' WHERE a=14366;\nUPDATE t2 SET c='forty-nine thousand seventy-six' WHERE a=14367;\nUPDATE t2 SET c='thirty-six thousand three hundred fifty-six' WHERE a=14368;\nUPDATE t2 SET c='twenty-one thousand five hundred twenty' WHERE a=14369;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-four' WHERE a=14370;\nUPDATE t2 SET c='fifty-one thousand' WHERE a=14371;\nUPDATE t2 SET c='one thousand eight hundred one' WHERE a=14372;\nUPDATE t2 SET c='thirty-three thousand nineteen' WHERE a=14373;\nUPDATE t2 SET c='forty-eight thousand nine hundred six' WHERE a=14374;\nUPDATE t2 SET c='thirty-eight thousand four hundred thirty-four' WHERE a=14375;\nUPDATE t2 SET c='twenty-three thousand nine hundred forty-three' WHERE a=14376;\nUPDATE t2 SET c='seventy-four thousand two hundred thirty-three' WHERE a=14377;\nUPDATE t2 SET c='seventy-two thousand one hundred thirty-seven' WHERE a=14378;\nUPDATE t2 SET c='sixty-six thousand seventy-two' WHERE a=14379;\nUPDATE t2 SET c='forty-two thousand five hundred fifty-one' WHERE a=14380;\nUPDATE t2 SET c='seventy thousand seven hundred thirty-three' WHERE a=14381;\nUPDATE t2 SET c='one thousand two hundred sixty-seven' WHERE a=14382;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-seven' WHERE a=14383;\nUPDATE t2 SET c='fifty-eight thousand five hundred eighty' WHERE a=14384;\nUPDATE t2 SET c='fifty-seven thousand five hundred fifty-five' WHERE a=14385;\nUPDATE t2 SET c='forty-eight thousand six hundred ninety-three' WHERE a=14386;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-three' WHERE a=14387;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventeen' WHERE a=14388;\nUPDATE t2 SET c='fifteen thousand eight hundred seventy-one' WHERE a=14389;\nUPDATE t2 SET c='forty thousand seven hundred thirty' WHERE a=14390;\nUPDATE t2 SET c='eighty-three thousand four hundred seventy-six' WHERE a=14391;\nUPDATE t2 SET c='forty-seven thousand four hundred ten' WHERE a=14392;\nUPDATE t2 SET c='fifty-four thousand six hundred sixty' WHERE a=14393;\nUPDATE t2 SET c='forty-nine thousand two hundred eight' WHERE a=14394;\nUPDATE t2 SET c='seventy-three thousand one hundred seventy-three' WHERE a=14395;\nUPDATE t2 SET c='sixteen thousand five hundred twenty-one' WHERE a=14396;\nUPDATE t2 SET c='seventy-one thousand four hundred three' WHERE a=14397;\nUPDATE t2 SET c='thirty-four thousand twelve' WHERE a=14398;\nUPDATE t2 SET c='forty-three thousand seven hundred eighty-one' WHERE a=14399;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety' WHERE a=14400;\nUPDATE t2 SET c='forty-eight thousand three hundred seventy-four' WHERE a=14401;\nUPDATE t2 SET c='sixty-five thousand fifty-six' WHERE a=14402;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty-four' WHERE a=14403;\nUPDATE t2 SET c='eighteen thousand five hundred forty-five' WHERE a=14404;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-four' WHERE a=14405;\nUPDATE t2 SET c='fifty-three thousand five hundred eight' WHERE a=14406;\nUPDATE t2 SET c='sixty-four thousand ninety-five' WHERE a=14407;\nUPDATE t2 SET c='eighty-eight thousand one hundred fifty' WHERE a=14408;\nUPDATE t2 SET c='forty-nine thousand six hundred forty-three' WHERE a=14409;\nUPDATE t2 SET c='sixty-eight thousand six hundred eighty-nine' WHERE a=14410;\nUPDATE t2 SET c='eight thousand three' WHERE a=14411;\nUPDATE t2 SET c='four thousand six hundred twenty-six' WHERE a=14412;\nUPDATE t2 SET c='seventy-nine thousand one hundred forty-six' WHERE a=14413;\nUPDATE t2 SET c='eighty-five thousand nine hundred fifty-three' WHERE a=14414;\nUPDATE t2 SET c='forty-five thousand eight hundred sixty-eight' WHERE a=14415;\nUPDATE t2 SET c='four thousand four hundred four' WHERE a=14416;\nUPDATE t2 SET c='forty-nine thousand one hundred three' WHERE a=14417;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty-three' WHERE a=14418;\nUPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=14419;\nUPDATE t2 SET c='fourteen thousand twelve' WHERE a=14420;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-eight' WHERE a=14421;\nUPDATE t2 SET c='fifty-four thousand six hundred ninety-eight' WHERE a=14422;\nUPDATE t2 SET c='fifty-two thousand one hundred ninety-six' WHERE a=14423;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifty' WHERE a=14424;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty' WHERE a=14425;\nUPDATE t2 SET c='sixty-four thousand eight hundred forty-one' WHERE a=14426;\nUPDATE t2 SET c='eighty-three thousand eighty-four' WHERE a=14427;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-seven' WHERE a=14428;\nUPDATE t2 SET c='eighty-two thousand two hundred eighteen' WHERE a=14429;\nUPDATE t2 SET c='fifty-seven thousand eighty' WHERE a=14430;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-six' WHERE a=14431;\nUPDATE t2 SET c='eighty thousand six hundred fifty' WHERE a=14432;\nUPDATE t2 SET c='thirty thousand one hundred three' WHERE a=14433;\nUPDATE t2 SET c='thirty-one thousand five hundred eight' WHERE a=14434;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifteen' WHERE a=14435;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-seven' WHERE a=14436;\nUPDATE t2 SET c='fifty-five thousand two hundred fourteen' WHERE a=14437;\nUPDATE t2 SET c='forty-nine thousand four hundred thirty-seven' WHERE a=14438;\nUPDATE t2 SET c='fifty-nine thousand one hundred four' WHERE a=14439;\nUPDATE t2 SET c='four thousand two hundred thirteen' WHERE a=14440;\nUPDATE t2 SET c='ninety-nine thousand six hundred thirty-six' WHERE a=14441;\nUPDATE t2 SET c='four thousand seven hundred eighty-eight' WHERE a=14442;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-nine' WHERE a=14443;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-nine' WHERE a=14444;\nUPDATE t2 SET c='two hundred eleven' WHERE a=14445;\nUPDATE t2 SET c='fifty-five thousand nine hundred forty-six' WHERE a=14446;\nUPDATE t2 SET c='fifty-four thousand two hundred twenty-nine' WHERE a=14447;\nUPDATE t2 SET c='eighty-one thousand seven hundred fifty-four' WHERE a=14448;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=14449;\nUPDATE t2 SET c='twenty-four thousand six hundred eighty-one' WHERE a=14450;\nUPDATE t2 SET c='ninety-six thousand nine hundred forty-three' WHERE a=14451;\nUPDATE t2 SET c='eleven thousand two hundred ninety-nine' WHERE a=14452;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty-one' WHERE a=14453;\nUPDATE t2 SET c='eighty-eight thousand four hundred seventy-nine' WHERE a=14454;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-six' WHERE a=14455;\nUPDATE t2 SET c='ninety-four thousand three hundred eighty-two' WHERE a=14456;\nUPDATE t2 SET c='seventy-five thousand one hundred forty-seven' WHERE a=14457;\nUPDATE t2 SET c='sixty-seven thousand two hundred fifty-eight' WHERE a=14458;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-five' WHERE a=14459;\nUPDATE t2 SET c='ninety-three thousand nine hundred thirty-nine' WHERE a=14460;\nUPDATE t2 SET c='eighty thousand five hundred thirty-one' WHERE a=14461;\nUPDATE t2 SET c='thirty-five thousand two hundred nine' WHERE a=14462;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-eight' WHERE a=14463;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-two' WHERE a=14464;\nUPDATE t2 SET c='twenty-two thousand eight hundred thirty-three' WHERE a=14465;\nUPDATE t2 SET c='forty-six thousand six hundred thirty' WHERE a=14466;\nUPDATE t2 SET c='sixty-two thousand two hundred seventy-nine' WHERE a=14467;\nUPDATE t2 SET c='thirty-three thousand seven hundred seven' WHERE a=14468;\nUPDATE t2 SET c='sixty-four thousand seven hundred sixty-seven' WHERE a=14469;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-four' WHERE a=14470;\nUPDATE t2 SET c='one thousand six hundred nine' WHERE a=14471;\nUPDATE t2 SET c='forty thousand one hundred fifty-one' WHERE a=14472;\nUPDATE t2 SET c='seventy-three thousand six hundred twenty-nine' WHERE a=14473;\nUPDATE t2 SET c='fifty-five thousand eight hundred seventy-eight' WHERE a=14474;\nUPDATE t2 SET c='thirty-four thousand nine hundred five' WHERE a=14475;\nUPDATE t2 SET c='twelve thousand nine hundred twenty-one' WHERE a=14476;\nUPDATE t2 SET c='forty-eight thousand six hundred twelve' WHERE a=14477;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-four' WHERE a=14478;\nUPDATE t2 SET c='eighty-nine thousand thirteen' WHERE a=14479;\nUPDATE t2 SET c='forty-two thousand eight hundred ninety-three' WHERE a=14480;\nUPDATE t2 SET c='seventy-one thousand eight hundred seventy-eight' WHERE a=14481;\nUPDATE t2 SET c='eighty-two thousand seven hundred eighty-two' WHERE a=14482;\nUPDATE t2 SET c='forty-nine thousand one hundred seven' WHERE a=14483;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=14484;\nUPDATE t2 SET c='twenty-seven thousand three hundred fifty-one' WHERE a=14485;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-six' WHERE a=14486;\nUPDATE t2 SET c='ninety-two thousand forty-nine' WHERE a=14487;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-two' WHERE a=14488;\nUPDATE t2 SET c='three thousand four hundred forty-nine' WHERE a=14489;\nUPDATE t2 SET c='ninety-seven thousand nine hundred eighty-four' WHERE a=14490;\nUPDATE t2 SET c='fifty-six thousand five hundred eighty-two' WHERE a=14491;\nUPDATE t2 SET c='forty-four thousand five hundred eighty-four' WHERE a=14492;\nUPDATE t2 SET c='thirty-eight thousand one hundred seventy-nine' WHERE a=14493;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-three' WHERE a=14494;\nUPDATE t2 SET c='eighty thousand two hundred two' WHERE a=14495;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-two' WHERE a=14496;\nUPDATE t2 SET c='forty-five thousand four hundred fourteen' WHERE a=14497;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-five' WHERE a=14498;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=14499;\nUPDATE t2 SET c='eighty-three thousand four hundred forty-seven' WHERE a=14500;\nUPDATE t2 SET c='fifteen thousand four hundred fifty-six' WHERE a=14501;\nUPDATE t2 SET c='ninety-five thousand six hundred sixteen' WHERE a=14502;\nUPDATE t2 SET c='thirty-six thousand five hundred one' WHERE a=14503;\nUPDATE t2 SET c='one thousand six hundred eighty-five' WHERE a=14504;\nUPDATE t2 SET c='four thousand one hundred one' WHERE a=14505;\nUPDATE t2 SET c='eleven thousand two hundred forty-three' WHERE a=14506;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-five' WHERE a=14507;\nUPDATE t2 SET c='twenty-five thousand four hundred seventeen' WHERE a=14508;\nUPDATE t2 SET c='forty-seven thousand five hundred fourteen' WHERE a=14509;\nUPDATE t2 SET c='sixty-nine thousand eight hundred ten' WHERE a=14510;\nUPDATE t2 SET c='three thousand eight hundred forty-two' WHERE a=14511;\nUPDATE t2 SET c='ninety-five thousand seventy-eight' WHERE a=14512;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-eight' WHERE a=14513;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-seven' WHERE a=14514;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-six' WHERE a=14515;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifty-four' WHERE a=14516;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-five' WHERE a=14517;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-five' WHERE a=14518;\nUPDATE t2 SET c='eighty-seven thousand one hundred seven' WHERE a=14519;\nUPDATE t2 SET c='eighty-six thousand four hundred twenty-nine' WHERE a=14520;\nUPDATE t2 SET c='seventy-four thousand five hundred seventy-three' WHERE a=14521;\nUPDATE t2 SET c='twenty-nine thousand five hundred eighty-six' WHERE a=14522;\nUPDATE t2 SET c='thirty-two thousand twenty-four' WHERE a=14523;\nUPDATE t2 SET c='ninety-two thousand two hundred six' WHERE a=14524;\nUPDATE t2 SET c='twenty thousand three hundred eleven' WHERE a=14525;\nUPDATE t2 SET c='forty-three thousand three hundred fifty-four' WHERE a=14526;\nUPDATE t2 SET c='nine thousand four hundred seventy-nine' WHERE a=14527;\nUPDATE t2 SET c='nineteen thousand nine hundred sixty-six' WHERE a=14528;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-one' WHERE a=14529;\nUPDATE t2 SET c='thirty-five thousand ninety-six' WHERE a=14530;\nUPDATE t2 SET c='sixty-seven thousand six hundred eight' WHERE a=14531;\nUPDATE t2 SET c='twenty-four thousand six hundred sixty-four' WHERE a=14532;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-two' WHERE a=14533;\nUPDATE t2 SET c='twenty thousand seven hundred ninety-four' WHERE a=14534;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-five' WHERE a=14535;\nUPDATE t2 SET c='thirty-seven thousand one hundred seventy-six' WHERE a=14536;\nUPDATE t2 SET c='two thousand seven hundred forty-nine' WHERE a=14537;\nUPDATE t2 SET c='fifty-seven thousand nine hundred eight' WHERE a=14538;\nUPDATE t2 SET c='forty-seven thousand three hundred fourteen' WHERE a=14539;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-three' WHERE a=14540;\nUPDATE t2 SET c='eighty-nine thousand two hundred two' WHERE a=14541;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty-two' WHERE a=14542;\nUPDATE t2 SET c='seventeen thousand one hundred fifty-six' WHERE a=14543;\nUPDATE t2 SET c='thirty-seven thousand nine hundred thirty-three' WHERE a=14544;\nUPDATE t2 SET c='sixty-four thousand one hundred forty-eight' WHERE a=14545;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-four' WHERE a=14546;\nUPDATE t2 SET c='twenty-one thousand six hundred sixty-one' WHERE a=14547;\nUPDATE t2 SET c='thirty-four thousand one hundred thirteen' WHERE a=14548;\nUPDATE t2 SET c='ninety-one thousand eight hundred seventy-two' WHERE a=14549;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-two' WHERE a=14550;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-eight' WHERE a=14551;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-one' WHERE a=14552;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty-five' WHERE a=14553;\nUPDATE t2 SET c='thirty-six thousand forty-one' WHERE a=14554;\nUPDATE t2 SET c='thirty-eight thousand thirty-five' WHERE a=14555;\nUPDATE t2 SET c='eighty-eight thousand fifty-three' WHERE a=14556;\nUPDATE t2 SET c='fifty-four thousand two hundred twenty-one' WHERE a=14557;\nUPDATE t2 SET c='ten thousand two hundred fifty-nine' WHERE a=14558;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-four' WHERE a=14559;\nUPDATE t2 SET c='seventy-five thousand four hundred forty-nine' WHERE a=14560;\nUPDATE t2 SET c='thirteen thousand nine hundred twenty-nine' WHERE a=14561;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-three' WHERE a=14562;\nUPDATE t2 SET c='fifty-five thousand seven hundred sixty-three' WHERE a=14563;\nUPDATE t2 SET c='thirty-three thousand four hundred thirty-nine' WHERE a=14564;\nUPDATE t2 SET c='twenty-eight thousand four hundred' WHERE a=14565;\nUPDATE t2 SET c='forty-eight thousand forty-one' WHERE a=14566;\nUPDATE t2 SET c='nine thousand six hundred sixty-two' WHERE a=14567;\nUPDATE t2 SET c='forty-three thousand eight hundred fifty-seven' WHERE a=14568;\nUPDATE t2 SET c='forty-five thousand five hundred fifty-one' WHERE a=14569;\nUPDATE t2 SET c='eighty-six thousand two hundred ninety-eight' WHERE a=14570;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-eight' WHERE a=14571;\nUPDATE t2 SET c='twenty-nine thousand six hundred twelve' WHERE a=14572;\nUPDATE t2 SET c='fifty-three thousand two hundred sixty' WHERE a=14573;\nUPDATE t2 SET c='eighty thousand one hundred seventy-six' WHERE a=14574;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-seven' WHERE a=14575;\nUPDATE t2 SET c='sixty-seven thousand five hundred fifty-seven' WHERE a=14576;\nUPDATE t2 SET c='seventy-nine thousand two hundred forty-four' WHERE a=14577;\nUPDATE t2 SET c='five thousand nine hundred fifty-seven' WHERE a=14578;\nUPDATE t2 SET c='eighty-eight thousand eight hundred twenty' WHERE a=14579;\nUPDATE t2 SET c='fifty-three thousand eight hundred fifty-three' WHERE a=14580;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-five' WHERE a=14581;\nUPDATE t2 SET c='forty-seven thousand eight hundred forty-nine' WHERE a=14582;\nUPDATE t2 SET c='twenty thousand nine hundred nineteen' WHERE a=14583;\nUPDATE t2 SET c='sixty-four thousand seven hundred eleven' WHERE a=14584;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-one' WHERE a=14585;\nUPDATE t2 SET c='fifty-seven thousand eight hundred nineteen' WHERE a=14586;\nUPDATE t2 SET c='eighty-two thousand eight hundred two' WHERE a=14587;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty-five' WHERE a=14588;\nUPDATE t2 SET c='seventy-five thousand two hundred forty-seven' WHERE a=14589;\nUPDATE t2 SET c='fifty-seven thousand two hundred eighty-four' WHERE a=14590;\nUPDATE t2 SET c='thirty-five thousand two hundred ninety-six' WHERE a=14591;\nUPDATE t2 SET c='thirty-one thousand two hundred sixty-seven' WHERE a=14592;\nUPDATE t2 SET c='sixty-two thousand two hundred ten' WHERE a=14593;\nUPDATE t2 SET c='seventy-nine thousand five hundred ninety-nine' WHERE a=14594;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-five' WHERE a=14595;\nUPDATE t2 SET c='twenty thousand three hundred twenty-three' WHERE a=14596;\nUPDATE t2 SET c='thirteen thousand three hundred eighty-two' WHERE a=14597;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-seven' WHERE a=14598;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-three' WHERE a=14599;\nUPDATE t2 SET c='fifty-six thousand two hundred three' WHERE a=14600;\nUPDATE t2 SET c='eighteen thousand three hundred fifty-three' WHERE a=14601;\nUPDATE t2 SET c='three thousand four hundred thirty-one' WHERE a=14602;\nUPDATE t2 SET c='eighteen thousand six hundred one' WHERE a=14603;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-seven' WHERE a=14604;\nUPDATE t2 SET c='fifty-four thousand three hundred forty-one' WHERE a=14605;\nUPDATE t2 SET c='seventeen thousand six hundred eighty-seven' WHERE a=14606;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-one' WHERE a=14607;\nUPDATE t2 SET c='twenty-eight thousand six hundred ninety-four' WHERE a=14608;\nUPDATE t2 SET c='ninety-three thousand sixty-seven' WHERE a=14609;\nUPDATE t2 SET c='fifty thousand seven hundred eighty-two' WHERE a=14610;\nUPDATE t2 SET c='fourteen thousand three hundred twenty-two' WHERE a=14611;\nUPDATE t2 SET c='thirty-four thousand six hundred fifty-two' WHERE a=14612;\nUPDATE t2 SET c='twenty-six thousand ninety-nine' WHERE a=14613;\nUPDATE t2 SET c='seventy-eight thousand one hundred eighty-two' WHERE a=14614;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-eight' WHERE a=14615;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-six' WHERE a=14616;\nUPDATE t2 SET c='eighty-nine thousand one hundred seventy-eight' WHERE a=14617;\nUPDATE t2 SET c='ninety-four thousand one hundred eighty-five' WHERE a=14618;\nUPDATE t2 SET c='thirty-two thousand four hundred sixty-eight' WHERE a=14619;\nUPDATE t2 SET c='twenty-two thousand four hundred eight' WHERE a=14620;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-six' WHERE a=14621;\nUPDATE t2 SET c='thirty-seven thousand four hundred seventy-four' WHERE a=14622;\nUPDATE t2 SET c='fifty-seven thousand eight hundred twenty-nine' WHERE a=14623;\nUPDATE t2 SET c='ninety-seven thousand five hundred forty' WHERE a=14624;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-four' WHERE a=14625;\nUPDATE t2 SET c='eight thousand four hundred twenty-one' WHERE a=14626;\nUPDATE t2 SET c='ninety-five thousand eighty-six' WHERE a=14627;\nUPDATE t2 SET c='sixty-four thousand seventy-four' WHERE a=14628;\nUPDATE t2 SET c='forty-four thousand nine hundred twenty-eight' WHERE a=14629;\nUPDATE t2 SET c='thirty-three thousand four hundred seven' WHERE a=14630;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-one' WHERE a=14631;\nUPDATE t2 SET c='fifty-five thousand eight hundred ninety-seven' WHERE a=14632;\nUPDATE t2 SET c='ninety-five thousand one hundred sixty-seven' WHERE a=14633;\nUPDATE t2 SET c='three thousand seven hundred eighty' WHERE a=14634;\nUPDATE t2 SET c='six hundred sixty-two' WHERE a=14635;\nUPDATE t2 SET c='seventy-four thousand three hundred eighty-six' WHERE a=14636;\nUPDATE t2 SET c='thirty-six thousand three hundred fifty' WHERE a=14637;\nUPDATE t2 SET c='seventy thousand four hundred ninety-nine' WHERE a=14638;\nUPDATE t2 SET c='twelve thousand thirty-five' WHERE a=14639;\nUPDATE t2 SET c='fifty-five thousand six hundred ninety-nine' WHERE a=14640;\nUPDATE t2 SET c='twenty-two thousand three hundred sixteen' WHERE a=14641;\nUPDATE t2 SET c='fifty-five thousand three hundred nineteen' WHERE a=14642;\nUPDATE t2 SET c='nineteen thousand seven hundred forty-nine' WHERE a=14643;\nUPDATE t2 SET c='fourteen thousand six' WHERE a=14644;\nUPDATE t2 SET c='thirty-seven thousand six hundred twenty' WHERE a=14645;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy-one' WHERE a=14646;\nUPDATE t2 SET c='seventy-four thousand forty-five' WHERE a=14647;\nUPDATE t2 SET c='one thousand six hundred thirty-four' WHERE a=14648;\nUPDATE t2 SET c='eighty-two thousand five hundred sixty-four' WHERE a=14649;\nUPDATE t2 SET c='eighty-two thousand five hundred eighty-nine' WHERE a=14650;\nUPDATE t2 SET c='thirty-nine thousand four hundred forty-five' WHERE a=14651;\nUPDATE t2 SET c='sixty-one thousand two hundred seven' WHERE a=14652;\nUPDATE t2 SET c='four thousand nine hundred thirty-four' WHERE a=14653;\nUPDATE t2 SET c='eighty-two thousand four hundred forty-five' WHERE a=14654;\nUPDATE t2 SET c='eighty-five thousand eight hundred ninety-five' WHERE a=14655;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-three' WHERE a=14656;\nUPDATE t2 SET c='seven thousand two hundred fifty-six' WHERE a=14657;\nUPDATE t2 SET c='ninety-six thousand nine hundred forty' WHERE a=14658;\nUPDATE t2 SET c='ninety-nine thousand four hundred sixty-four' WHERE a=14659;\nUPDATE t2 SET c='seventy thousand eight hundred twenty-eight' WHERE a=14660;\nUPDATE t2 SET c='forty-nine thousand seven hundred eighty-four' WHERE a=14661;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-five' WHERE a=14662;\nUPDATE t2 SET c='eighty-one thousand eight hundred ten' WHERE a=14663;\nUPDATE t2 SET c='thirteen thousand two hundred twenty-one' WHERE a=14664;\nUPDATE t2 SET c='seventy-three thousand three hundred fifty-eight' WHERE a=14665;\nUPDATE t2 SET c='ninety-five thousand one hundred eighty-three' WHERE a=14666;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-three' WHERE a=14667;\nUPDATE t2 SET c='twenty-one thousand one hundred thirty-one' WHERE a=14668;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty' WHERE a=14669;\nUPDATE t2 SET c='three thousand eight hundred sixty-nine' WHERE a=14670;\nUPDATE t2 SET c='eighty-two thousand eight hundred ninety-one' WHERE a=14671;\nUPDATE t2 SET c='seventy-four thousand five hundred eighty-one' WHERE a=14672;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-one' WHERE a=14673;\nUPDATE t2 SET c='fifty-two thousand three hundred fourteen' WHERE a=14674;\nUPDATE t2 SET c='eighty-three thousand seven hundred thirteen' WHERE a=14675;\nUPDATE t2 SET c='eighty-seven thousand three hundred forty-seven' WHERE a=14676;\nUPDATE t2 SET c='thirteen thousand six hundred fifty-six' WHERE a=14677;\nUPDATE t2 SET c='twelve thousand four hundred eighty-one' WHERE a=14678;\nUPDATE t2 SET c='two thousand four hundred ninety-one' WHERE a=14679;\nUPDATE t2 SET c='forty-five thousand eight hundred eight' WHERE a=14680;\nUPDATE t2 SET c='forty-one thousand one hundred eleven' WHERE a=14681;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty-three' WHERE a=14682;\nUPDATE t2 SET c='ninety-eight thousand five hundred fifteen' WHERE a=14683;\nUPDATE t2 SET c='thirty-three thousand four hundred one' WHERE a=14684;\nUPDATE t2 SET c='sixty thousand seven hundred eighty-three' WHERE a=14685;\nUPDATE t2 SET c='four thousand eight hundred sixty-six' WHERE a=14686;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty' WHERE a=14687;\nUPDATE t2 SET c='seventy-eight thousand one hundred thirteen' WHERE a=14688;\nUPDATE t2 SET c='eight thousand fourteen' WHERE a=14689;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-four' WHERE a=14690;\nUPDATE t2 SET c='forty thousand two hundred forty' WHERE a=14691;\nUPDATE t2 SET c='twenty-two thousand five hundred fifty-two' WHERE a=14692;\nUPDATE t2 SET c='forty-nine thousand eight hundred ninety-two' WHERE a=14693;\nUPDATE t2 SET c='two thousand nine hundred forty-one' WHERE a=14694;\nUPDATE t2 SET c='eighty-four thousand seven hundred ninety-eight' WHERE a=14695;\nUPDATE t2 SET c='two thousand three hundred forty-eight' WHERE a=14696;\nUPDATE t2 SET c='thirty-five thousand five hundred' WHERE a=14697;\nUPDATE t2 SET c='forty thousand six hundred sixty-seven' WHERE a=14698;\nUPDATE t2 SET c='sixty-two thousand two hundred fifty-three' WHERE a=14699;\nUPDATE t2 SET c='eighty-one thousand eight hundred six' WHERE a=14700;\nUPDATE t2 SET c='seventy-five thousand four hundred four' WHERE a=14701;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-five' WHERE a=14702;\nUPDATE t2 SET c='eight thousand seven hundred twenty-nine' WHERE a=14703;\nUPDATE t2 SET c='forty-four thousand two hundred fifty-eight' WHERE a=14704;\nUPDATE t2 SET c='eighty-three thousand two hundred' WHERE a=14705;\nUPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=14706;\nUPDATE t2 SET c='eighty thousand four hundred seventy-six' WHERE a=14707;\nUPDATE t2 SET c='seven thousand seven hundred fifty-eight' WHERE a=14708;\nUPDATE t2 SET c='eighteen thousand six hundred thirty-seven' WHERE a=14709;\nUPDATE t2 SET c='eighty-three thousand one hundred eleven' WHERE a=14710;\nUPDATE t2 SET c='ninety-two thousand two hundred fifty-seven' WHERE a=14711;\nUPDATE t2 SET c='ninety thousand eight hundred sixty' WHERE a=14712;\nUPDATE t2 SET c='twelve thousand two hundred twenty-five' WHERE a=14713;\nUPDATE t2 SET c='fifty-seven thousand seven hundred forty-one' WHERE a=14714;\nUPDATE t2 SET c='ninety-three thousand four hundred thirty-one' WHERE a=14715;\nUPDATE t2 SET c='seventy-two thousand five hundred ninety-nine' WHERE a=14716;\nUPDATE t2 SET c='thirty-three thousand one hundred five' WHERE a=14717;\nUPDATE t2 SET c='eighty-seven thousand nine hundred twenty-one' WHERE a=14718;\nUPDATE t2 SET c='forty-six thousand eight hundred eighty-seven' WHERE a=14719;\nUPDATE t2 SET c='twenty-one thousand one hundred seventy-three' WHERE a=14720;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty' WHERE a=14721;\nUPDATE t2 SET c='twelve thousand seven hundred eighty-four' WHERE a=14722;\nUPDATE t2 SET c='one thousand nine hundred twenty-nine' WHERE a=14723;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seven' WHERE a=14724;\nUPDATE t2 SET c='fifty-seven thousand nine hundred ninety-one' WHERE a=14725;\nUPDATE t2 SET c='ninety-two thousand fifty-eight' WHERE a=14726;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty' WHERE a=14727;\nUPDATE t2 SET c='nine thousand three hundred' WHERE a=14728;\nUPDATE t2 SET c='twenty-three thousand four hundred ninety-nine' WHERE a=14729;\nUPDATE t2 SET c='thirty thousand two hundred nineteen' WHERE a=14730;\nUPDATE t2 SET c='twenty-eight thousand eight hundred fifty-seven' WHERE a=14731;\nUPDATE t2 SET c='ninety-one thousand six hundred eleven' WHERE a=14732;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-four' WHERE a=14733;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-eight' WHERE a=14734;\nUPDATE t2 SET c='seven thousand two hundred fifty-four' WHERE a=14735;\nUPDATE t2 SET c='forty-three thousand six hundred sixty-two' WHERE a=14736;\nUPDATE t2 SET c='ten thousand one hundred eighty-four' WHERE a=14737;\nUPDATE t2 SET c='thirty-nine thousand seven hundred nine' WHERE a=14738;\nUPDATE t2 SET c='seventy-seven thousand two hundred fifty-seven' WHERE a=14739;\nUPDATE t2 SET c='eighteen thousand six hundred nine' WHERE a=14740;\nUPDATE t2 SET c='thirty-four thousand six hundred sixty-six' WHERE a=14741;\nUPDATE t2 SET c='one hundred fourteen' WHERE a=14742;\nUPDATE t2 SET c='fifty-five thousand seven hundred ninety-six' WHERE a=14743;\nUPDATE t2 SET c='forty thousand five hundred seventy-nine' WHERE a=14744;\nUPDATE t2 SET c='eighty-nine thousand nine hundred six' WHERE a=14745;\nUPDATE t2 SET c='eighty-five thousand five hundred sixteen' WHERE a=14746;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-three' WHERE a=14747;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-five' WHERE a=14748;\nUPDATE t2 SET c='eighty-six thousand nine hundred thirty-six' WHERE a=14749;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirteen' WHERE a=14750;\nUPDATE t2 SET c='thirty thousand two hundred sixty' WHERE a=14751;\nUPDATE t2 SET c='eighty thousand seven hundred eight' WHERE a=14752;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-one' WHERE a=14753;\nUPDATE t2 SET c='eleven thousand five hundred fifty-nine' WHERE a=14754;\nUPDATE t2 SET c='twenty-two thousand ninety-eight' WHERE a=14755;\nUPDATE t2 SET c='seventy-two thousand seven hundred twenty-seven' WHERE a=14756;\nUPDATE t2 SET c='fifty thousand eight hundred twenty' WHERE a=14757;\nUPDATE t2 SET c='eighty-eight thousand five hundred seventy-three' WHERE a=14758;\nUPDATE t2 SET c='ninety-four thousand two hundred seventy-four' WHERE a=14759;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=14760;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-six' WHERE a=14761;\nUPDATE t2 SET c='thirteen thousand three hundred twenty-five' WHERE a=14762;\nUPDATE t2 SET c='fifty-four thousand two hundred ninety-three' WHERE a=14763;\nUPDATE t2 SET c='thirty thousand eight hundred seventy-seven' WHERE a=14764;\nUPDATE t2 SET c='thirty-four thousand three hundred ninety-two' WHERE a=14765;\nUPDATE t2 SET c='eighty-one thousand six hundred one' WHERE a=14766;\nUPDATE t2 SET c='seventy thousand one hundred seventeen' WHERE a=14767;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifty-eight' WHERE a=14768;\nUPDATE t2 SET c='eighty-three thousand five hundred eleven' WHERE a=14769;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-eight' WHERE a=14770;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-six' WHERE a=14771;\nUPDATE t2 SET c='twenty-nine thousand three hundred sixty-six' WHERE a=14772;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventy-four' WHERE a=14773;\nUPDATE t2 SET c='one thousand two hundred forty-three' WHERE a=14774;\nUPDATE t2 SET c='thirty-five thousand two hundred sixty-eight' WHERE a=14775;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-six' WHERE a=14776;\nUPDATE t2 SET c='ninety-four thousand two hundred sixty-three' WHERE a=14777;\nUPDATE t2 SET c='fifty-seven thousand six hundred seventy-four' WHERE a=14778;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-six' WHERE a=14779;\nUPDATE t2 SET c='thirty thousand one hundred sixty-seven' WHERE a=14780;\nUPDATE t2 SET c='forty-nine thousand seven hundred nine' WHERE a=14781;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-five' WHERE a=14782;\nUPDATE t2 SET c='thirteen thousand eight hundred thirty-three' WHERE a=14783;\nUPDATE t2 SET c='fifteen thousand one hundred seventy-four' WHERE a=14784;\nUPDATE t2 SET c='thirty-five thousand four hundred thirty' WHERE a=14785;\nUPDATE t2 SET c='thirty-eight thousand five hundred forty-four' WHERE a=14786;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety' WHERE a=14787;\nUPDATE t2 SET c='forty-three thousand three hundred forty-four' WHERE a=14788;\nUPDATE t2 SET c='sixty-three thousand thirty-eight' WHERE a=14789;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-eight' WHERE a=14790;\nUPDATE t2 SET c='fifty-one thousand two hundred fifty-three' WHERE a=14791;\nUPDATE t2 SET c='twenty-nine thousand eight hundred sixty-two' WHERE a=14792;\nUPDATE t2 SET c='six thousand two hundred seventy-six' WHERE a=14793;\nUPDATE t2 SET c='forty thousand six hundred nine' WHERE a=14794;\nUPDATE t2 SET c='twenty-nine thousand six hundred one' WHERE a=14795;\nUPDATE t2 SET c='ninety-eight thousand two hundred forty-one' WHERE a=14796;\nUPDATE t2 SET c='sixty-eight thousand five hundred forty-seven' WHERE a=14797;\nUPDATE t2 SET c='two hundred twenty-eight' WHERE a=14798;\nUPDATE t2 SET c='fourteen thousand eight hundred forty-nine' WHERE a=14799;\nUPDATE t2 SET c='forty-nine thousand five hundred two' WHERE a=14800;\nUPDATE t2 SET c='sixty-eight thousand three hundred eighty-seven' WHERE a=14801;\nUPDATE t2 SET c='two thousand four hundred three' WHERE a=14802;\nUPDATE t2 SET c='fifty-six thousand two hundred seventy-five' WHERE a=14803;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty' WHERE a=14804;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-four' WHERE a=14805;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-one' WHERE a=14806;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixteen' WHERE a=14807;\nUPDATE t2 SET c='fifty-seven thousand nine hundred one' WHERE a=14808;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-four' WHERE a=14809;\nUPDATE t2 SET c='five thousand nineteen' WHERE a=14810;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-six' WHERE a=14811;\nUPDATE t2 SET c='seventeen thousand four hundred eight' WHERE a=14812;\nUPDATE t2 SET c='thirty-five thousand two hundred sixteen' WHERE a=14813;\nUPDATE t2 SET c='seven thousand forty-four' WHERE a=14814;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty-six' WHERE a=14815;\nUPDATE t2 SET c='seven thousand seven hundred eighty-two' WHERE a=14816;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-two' WHERE a=14817;\nUPDATE t2 SET c='sixty-seven thousand seven hundred forty-two' WHERE a=14818;\nUPDATE t2 SET c='seventeen thousand seven hundred fifty-five' WHERE a=14819;\nUPDATE t2 SET c='seventeen thousand one hundred seventy-four' WHERE a=14820;\nUPDATE t2 SET c='fourteen thousand two hundred fifty-three' WHERE a=14821;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-seven' WHERE a=14822;\nUPDATE t2 SET c='seven thousand seven hundred ninety-eight' WHERE a=14823;\nUPDATE t2 SET c='ninety-two thousand six hundred eighteen' WHERE a=14824;\nUPDATE t2 SET c='eighty-five thousand eight hundred eighty-two' WHERE a=14825;\nUPDATE t2 SET c='eighty-five thousand three hundred fifty' WHERE a=14826;\nUPDATE t2 SET c='ninety thousand four hundred eight' WHERE a=14827;\nUPDATE t2 SET c='eight thousand three hundred forty-nine' WHERE a=14828;\nUPDATE t2 SET c='ten thousand four hundred six' WHERE a=14829;\nUPDATE t2 SET c='sixty-one thousand twenty' WHERE a=14830;\nUPDATE t2 SET c='sixty-seven thousand three hundred five' WHERE a=14831;\nUPDATE t2 SET c='twelve thousand eight' WHERE a=14832;\nUPDATE t2 SET c='twenty thousand seven hundred seventy' WHERE a=14833;\nUPDATE t2 SET c='thirteen thousand sixty-four' WHERE a=14834;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-one' WHERE a=14835;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-six' WHERE a=14836;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty-eight' WHERE a=14837;\nUPDATE t2 SET c='ninety-one thousand six hundred eighteen' WHERE a=14838;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-five' WHERE a=14839;\nUPDATE t2 SET c='four thousand forty-two' WHERE a=14840;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-eight' WHERE a=14841;\nUPDATE t2 SET c='nine thousand nine hundred twenty-four' WHERE a=14842;\nUPDATE t2 SET c='fifty thousand two hundred nineteen' WHERE a=14843;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-eight' WHERE a=14844;\nUPDATE t2 SET c='fifteen thousand six hundred fourteen' WHERE a=14845;\nUPDATE t2 SET c='ninety-nine thousand one hundred thirty-eight' WHERE a=14846;\nUPDATE t2 SET c='thirty-one thousand five hundred seventy-three' WHERE a=14847;\nUPDATE t2 SET c='fifteen thousand forty-nine' WHERE a=14848;\nUPDATE t2 SET c='seventy-one thousand six hundred ninety-four' WHERE a=14849;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-nine' WHERE a=14850;\nUPDATE t2 SET c='three hundred twelve' WHERE a=14851;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-nine' WHERE a=14852;\nUPDATE t2 SET c='eighty-six thousand fifty-six' WHERE a=14853;\nUPDATE t2 SET c='seventy-six thousand nine hundred eighty' WHERE a=14854;\nUPDATE t2 SET c='thirteen thousand seven hundred forty-three' WHERE a=14855;\nUPDATE t2 SET c='seventy-one thousand five hundred sixty-six' WHERE a=14856;\nUPDATE t2 SET c='one thousand fifty-three' WHERE a=14857;\nUPDATE t2 SET c='eighty-nine thousand three hundred twenty-eight' WHERE a=14858;\nUPDATE t2 SET c='sixty-two thousand seven hundred ninety-three' WHERE a=14859;\nUPDATE t2 SET c='twenty-five thousand five hundred ninety-five' WHERE a=14860;\nUPDATE t2 SET c='forty-nine thousand five hundred fifty-eight' WHERE a=14861;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=14862;\nUPDATE t2 SET c='seven thousand thirty-five' WHERE a=14863;\nUPDATE t2 SET c='thirty-eight thousand four hundred sixty-four' WHERE a=14864;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-four' WHERE a=14865;\nUPDATE t2 SET c='fifty-nine thousand two hundred seventy-seven' WHERE a=14866;\nUPDATE t2 SET c='sixty-one thousand eight hundred twelve' WHERE a=14867;\nUPDATE t2 SET c='fifty-five thousand two hundred twelve' WHERE a=14868;\nUPDATE t2 SET c='ninety-two thousand three hundred sixty-three' WHERE a=14869;\nUPDATE t2 SET c='thirty-seven thousand thirty-nine' WHERE a=14870;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-eight' WHERE a=14871;\nUPDATE t2 SET c='six thousand nine hundred seventy-one' WHERE a=14872;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-six' WHERE a=14873;\nUPDATE t2 SET c='three thousand two hundred seventy-nine' WHERE a=14874;\nUPDATE t2 SET c='twelve thousand nine hundred forty-three' WHERE a=14875;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-six' WHERE a=14876;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-two' WHERE a=14877;\nUPDATE t2 SET c='eight thousand six hundred eighty' WHERE a=14878;\nUPDATE t2 SET c='four thousand five hundred four' WHERE a=14879;\nUPDATE t2 SET c='forty-seven thousand nine hundred seventy-nine' WHERE a=14880;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty' WHERE a=14881;\nUPDATE t2 SET c='ninety-seven thousand seven hundred fifty-two' WHERE a=14882;\nUPDATE t2 SET c='eighty-five thousand five hundred nineteen' WHERE a=14883;\nUPDATE t2 SET c='seventy-nine thousand six hundred three' WHERE a=14884;\nUPDATE t2 SET c='seven thousand nine hundred twenty-two' WHERE a=14885;\nUPDATE t2 SET c='twenty-nine thousand four hundred fourteen' WHERE a=14886;\nUPDATE t2 SET c='fifty thousand seven hundred fifty-seven' WHERE a=14887;\nUPDATE t2 SET c='seventy-seven thousand sixty-six' WHERE a=14888;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=14889;\nUPDATE t2 SET c='two thousand forty-one' WHERE a=14890;\nUPDATE t2 SET c='forty-six thousand two hundred twenty' WHERE a=14891;\nUPDATE t2 SET c='seventy-eight thousand nine hundred ninety-seven' WHERE a=14892;\nUPDATE t2 SET c='sixteen thousand three hundred sixty-four' WHERE a=14893;\nUPDATE t2 SET c='thirty-one thousand three hundred forty-two' WHERE a=14894;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety-five' WHERE a=14895;\nUPDATE t2 SET c='seventy-two thousand fifteen' WHERE a=14896;\nUPDATE t2 SET c='sixty-four thousand eight hundred ninety-seven' WHERE a=14897;\nUPDATE t2 SET c='fifty-three thousand two hundred fifty-four' WHERE a=14898;\nUPDATE t2 SET c='sixteen thousand six hundred nine' WHERE a=14899;\nUPDATE t2 SET c='fifty thousand two hundred thirty-eight' WHERE a=14900;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-three' WHERE a=14901;\nUPDATE t2 SET c='twenty-eight thousand nine hundred six' WHERE a=14902;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-nine' WHERE a=14903;\nUPDATE t2 SET c='thirty thousand nine hundred twenty-three' WHERE a=14904;\nUPDATE t2 SET c='eighty-eight thousand two hundred fifty-eight' WHERE a=14905;\nUPDATE t2 SET c='sixty-four thousand one hundred six' WHERE a=14906;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-seven' WHERE a=14907;\nUPDATE t2 SET c='twenty-four thousand eight hundred' WHERE a=14908;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-nine' WHERE a=14909;\nUPDATE t2 SET c='one thousand sixty-four' WHERE a=14910;\nUPDATE t2 SET c='forty-eight thousand eight hundred fourteen' WHERE a=14911;\nUPDATE t2 SET c='one thousand six hundred fifty-six' WHERE a=14912;\nUPDATE t2 SET c='forty-eight thousand seven hundred fifty-four' WHERE a=14913;\nUPDATE t2 SET c='twelve thousand five hundred fifty-two' WHERE a=14914;\nUPDATE t2 SET c='one thousand six hundred seventy-eight' WHERE a=14915;\nUPDATE t2 SET c='twenty-five thousand eight hundred forty-five' WHERE a=14916;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-five' WHERE a=14917;\nUPDATE t2 SET c='thirty-one thousand fifty' WHERE a=14918;\nUPDATE t2 SET c='twelve thousand three hundred twenty' WHERE a=14919;\nUPDATE t2 SET c='forty thousand seven hundred twenty-nine' WHERE a=14920;\nUPDATE t2 SET c='twenty-five thousand five hundred seventy-seven' WHERE a=14921;\nUPDATE t2 SET c='one thousand six hundred ninety' WHERE a=14922;\nUPDATE t2 SET c='one thousand six hundred eighteen' WHERE a=14923;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=14924;\nUPDATE t2 SET c='fifty-two thousand four hundred ninety-eight' WHERE a=14925;\nUPDATE t2 SET c='ninety-three thousand eight hundred ninety-three' WHERE a=14926;\nUPDATE t2 SET c='five thousand eighty-eight' WHERE a=14927;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-three' WHERE a=14928;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-nine' WHERE a=14929;\nUPDATE t2 SET c='fifteen thousand eight hundred forty' WHERE a=14930;\nUPDATE t2 SET c='twenty-five thousand seven hundred thirty-eight' WHERE a=14931;\nUPDATE t2 SET c='twelve thousand six hundred twenty-nine' WHERE a=14932;\nUPDATE t2 SET c='twenty-two thousand one hundred five' WHERE a=14933;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty-three' WHERE a=14934;\nUPDATE t2 SET c='sixty-six thousand nine hundred forty-nine' WHERE a=14935;\nUPDATE t2 SET c='thirty-six thousand four hundred fifty-one' WHERE a=14936;\nUPDATE t2 SET c='thirteen thousand twelve' WHERE a=14937;\nUPDATE t2 SET c='ninety-six thousand eight hundred' WHERE a=14938;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-three' WHERE a=14939;\nUPDATE t2 SET c='sixty-eight thousand six hundred ten' WHERE a=14940;\nUPDATE t2 SET c='thirty-seven thousand nine hundred thirty-nine' WHERE a=14941;\nUPDATE t2 SET c='eighty-four thousand six hundred nine' WHERE a=14942;\nUPDATE t2 SET c='eighty-six thousand one hundred seventy-eight' WHERE a=14943;\nUPDATE t2 SET c='ninety-six thousand six hundred forty-six' WHERE a=14944;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=14945;\nUPDATE t2 SET c='eighty-four thousand one hundred eighty-eight' WHERE a=14946;\nUPDATE t2 SET c='eighteen thousand three hundred twenty-nine' WHERE a=14947;\nUPDATE t2 SET c='ninety-two thousand ninety-two' WHERE a=14948;\nUPDATE t2 SET c='three thousand nine hundred forty-one' WHERE a=14949;\nUPDATE t2 SET c='sixty-one thousand seven hundred ninety-eight' WHERE a=14950;\nUPDATE t2 SET c='thirty-nine thousand nine hundred thirty' WHERE a=14951;\nUPDATE t2 SET c='forty-five thousand three hundred thirteen' WHERE a=14952;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-six' WHERE a=14953;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty' WHERE a=14954;\nUPDATE t2 SET c='forty-five thousand two hundred eighty-nine' WHERE a=14955;\nUPDATE t2 SET c='sixty-one thousand seven hundred ninety' WHERE a=14956;\nUPDATE t2 SET c='eighty-three thousand nine hundred twenty-eight' WHERE a=14957;\nUPDATE t2 SET c='eight hundred fifty-two' WHERE a=14958;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty-six' WHERE a=14959;\nUPDATE t2 SET c='eleven thousand six hundred seven' WHERE a=14960;\nUPDATE t2 SET c='seven thousand four hundred seventy-one' WHERE a=14961;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-seven' WHERE a=14962;\nUPDATE t2 SET c='forty-one thousand forty-nine' WHERE a=14963;\nUPDATE t2 SET c='seventy-one thousand four hundred seventeen' WHERE a=14964;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-eight' WHERE a=14965;\nUPDATE t2 SET c='seventy-two thousand four hundred eighty-three' WHERE a=14966;\nUPDATE t2 SET c='ninety-eight thousand six hundred fifty-seven' WHERE a=14967;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-four' WHERE a=14968;\nUPDATE t2 SET c='forty-four thousand five hundred five' WHERE a=14969;\nUPDATE t2 SET c='ninety-four thousand one hundred seventy-two' WHERE a=14970;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-eight' WHERE a=14971;\nUPDATE t2 SET c='ninety-five thousand two hundred eighty-nine' WHERE a=14972;\nUPDATE t2 SET c='thirty thousand two hundred seventy-two' WHERE a=14973;\nUPDATE t2 SET c='eighty-eight thousand six hundred eighty' WHERE a=14974;\nUPDATE t2 SET c='fifty-one thousand seven hundred five' WHERE a=14975;\nUPDATE t2 SET c='ninety-one thousand seven hundred sixty-five' WHERE a=14976;\nUPDATE t2 SET c='ninety-five thousand nine hundred ninety-one' WHERE a=14977;\nUPDATE t2 SET c='twelve thousand six hundred ninety-one' WHERE a=14978;\nUPDATE t2 SET c='fifty-three thousand two hundred seventy-two' WHERE a=14979;\nUPDATE t2 SET c='forty-one thousand three hundred fifty' WHERE a=14980;\nUPDATE t2 SET c='eight thousand five hundred sixty-two' WHERE a=14981;\nUPDATE t2 SET c='seventeen thousand eight hundred forty-six' WHERE a=14982;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty' WHERE a=14983;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-five' WHERE a=14984;\nUPDATE t2 SET c='ninety-five thousand two hundred twenty-five' WHERE a=14985;\nUPDATE t2 SET c='eighty-two thousand seven hundred ten' WHERE a=14986;\nUPDATE t2 SET c='five thousand three hundred twenty-five' WHERE a=14987;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=14988;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-five' WHERE a=14989;\nUPDATE t2 SET c='six thousand one hundred ninety-six' WHERE a=14990;\nUPDATE t2 SET c='sixteen thousand fifty-five' WHERE a=14991;\nUPDATE t2 SET c='ninety-one thousand two hundred forty' WHERE a=14992;\nUPDATE t2 SET c='eighty-nine thousand three hundred forty-nine' WHERE a=14993;\nUPDATE t2 SET c='thirty-four thousand three hundred forty-six' WHERE a=14994;\nUPDATE t2 SET c='fifty thousand three hundred seventy-six' WHERE a=14995;\nUPDATE t2 SET c='eleven thousand one hundred sixty-seven' WHERE a=14996;\nUPDATE t2 SET c='forty-three thousand seventy-nine' WHERE a=14997;\nUPDATE t2 SET c='thirty-one thousand four hundred fourteen' WHERE a=14998;\nUPDATE t2 SET c='forty-one thousand eight hundred forty-three' WHERE a=14999;\nUPDATE t2 SET c='eighty-six thousand four hundred forty-one' WHERE a=15000;\nUPDATE t2 SET c='eight thousand two hundred four' WHERE a=15001;\nUPDATE t2 SET c='nineteen thousand one hundred eighty' WHERE a=15002;\nUPDATE t2 SET c='ninety-two thousand four hundred fifty-four' WHERE a=15003;\nUPDATE t2 SET c='twenty-one thousand three hundred fourteen' WHERE a=15004;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-four' WHERE a=15005;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-nine' WHERE a=15006;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-six' WHERE a=15007;\nUPDATE t2 SET c='sixty thousand six hundred twenty-five' WHERE a=15008;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-three' WHERE a=15009;\nUPDATE t2 SET c='forty-six thousand one hundred sixty-four' WHERE a=15010;\nUPDATE t2 SET c='sixty-five thousand two hundred forty-five' WHERE a=15011;\nUPDATE t2 SET c='thirty thousand four hundred fifty-one' WHERE a=15012;\nUPDATE t2 SET c='fifty-two thousand nine hundred twenty-seven' WHERE a=15013;\nUPDATE t2 SET c='ninety thousand' WHERE a=15014;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighty-one' WHERE a=15015;\nUPDATE t2 SET c='sixteen thousand nine hundred twelve' WHERE a=15016;\nUPDATE t2 SET c='seven thousand two hundred ten' WHERE a=15017;\nUPDATE t2 SET c='forty-nine thousand three hundred forty-two' WHERE a=15018;\nUPDATE t2 SET c='thirty-two thousand six hundred thirty-two' WHERE a=15019;\nUPDATE t2 SET c='nineteen thousand one hundred forty-five' WHERE a=15020;\nUPDATE t2 SET c='twenty-three thousand two hundred seventeen' WHERE a=15021;\nUPDATE t2 SET c='thirteen thousand five hundred twenty-three' WHERE a=15022;\nUPDATE t2 SET c='thirty-seven thousand four hundred twenty-one' WHERE a=15023;\nUPDATE t2 SET c='thirty-one thousand two hundred eighty-six' WHERE a=15024;\nUPDATE t2 SET c='ninety thousand five hundred fifty' WHERE a=15025;\nUPDATE t2 SET c='sixty-five thousand one hundred forty-three' WHERE a=15026;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-one' WHERE a=15027;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty' WHERE a=15028;\nUPDATE t2 SET c='eighty-nine thousand twenty-seven' WHERE a=15029;\nUPDATE t2 SET c='fifty thousand one hundred fifty-eight' WHERE a=15030;\nUPDATE t2 SET c='four thousand sixty-seven' WHERE a=15031;\nUPDATE t2 SET c='forty-one thousand eight hundred twenty-one' WHERE a=15032;\nUPDATE t2 SET c='eleven thousand nine hundred sixty-six' WHERE a=15033;\nUPDATE t2 SET c='twenty-two thousand seven hundred seventy-nine' WHERE a=15034;\nUPDATE t2 SET c='forty-two thousand five hundred thirty-one' WHERE a=15035;\nUPDATE t2 SET c='fifty-one thousand three hundred four' WHERE a=15036;\nUPDATE t2 SET c='thirty-six thousand seventy-three' WHERE a=15037;\nUPDATE t2 SET c='thirteen thousand one hundred thirty-nine' WHERE a=15038;\nUPDATE t2 SET c='fifty-six thousand seven hundred nineteen' WHERE a=15039;\nUPDATE t2 SET c='twenty-six thousand three hundred forty-two' WHERE a=15040;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-three' WHERE a=15041;\nUPDATE t2 SET c='thirty thousand four hundred eighty-four' WHERE a=15042;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-two' WHERE a=15043;\nUPDATE t2 SET c='ten thousand seven hundred ninety' WHERE a=15044;\nUPDATE t2 SET c='sixty-three thousand three hundred ninety-six' WHERE a=15045;\nUPDATE t2 SET c='thirty-seven thousand seven hundred forty-eight' WHERE a=15046;\nUPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=15047;\nUPDATE t2 SET c='sixty-nine thousand one hundred sixty-six' WHERE a=15048;\nUPDATE t2 SET c='ninety-eight thousand four hundred eighty-nine' WHERE a=15049;\nUPDATE t2 SET c='seventy thousand two hundred twenty-three' WHERE a=15050;\nUPDATE t2 SET c='sixty-one thousand eight hundred seventy' WHERE a=15051;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-nine' WHERE a=15052;\nUPDATE t2 SET c='eighty thousand three hundred sixty-two' WHERE a=15053;\nUPDATE t2 SET c='twenty-two thousand seven hundred one' WHERE a=15054;\nUPDATE t2 SET c='forty-nine thousand one hundred sixty-nine' WHERE a=15055;\nUPDATE t2 SET c='sixty-one thousand six hundred eleven' WHERE a=15056;\nUPDATE t2 SET c='twenty-one thousand three hundred forty-two' WHERE a=15057;\nUPDATE t2 SET c='eight thousand four hundred sixty-nine' WHERE a=15058;\nUPDATE t2 SET c='fifteen thousand one hundred seventeen' WHERE a=15059;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=15060;\nUPDATE t2 SET c='twenty-two thousand eight hundred fourteen' WHERE a=15061;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-nine' WHERE a=15062;\nUPDATE t2 SET c='sixty-four thousand one hundred ten' WHERE a=15063;\nUPDATE t2 SET c='forty-four thousand three hundred forty-five' WHERE a=15064;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventy-six' WHERE a=15065;\nUPDATE t2 SET c='forty-five thousand eight hundred ninety-one' WHERE a=15066;\nUPDATE t2 SET c='sixty-six thousand one hundred forty-three' WHERE a=15067;\nUPDATE t2 SET c='seventy-six thousand four hundred forty-four' WHERE a=15068;\nUPDATE t2 SET c='nineteen thousand eight hundred eighty-seven' WHERE a=15069;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty-one' WHERE a=15070;\nUPDATE t2 SET c='sixty-nine thousand seven hundred eighty-eight' WHERE a=15071;\nUPDATE t2 SET c='twenty-seven thousand eight hundred eleven' WHERE a=15072;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-four' WHERE a=15073;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighty-nine' WHERE a=15074;\nUPDATE t2 SET c='ninety-four thousand five' WHERE a=15075;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty-eight' WHERE a=15076;\nUPDATE t2 SET c='five hundred seventy' WHERE a=15077;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-seven' WHERE a=15078;\nUPDATE t2 SET c='eighty-four thousand sixty-eight' WHERE a=15079;\nUPDATE t2 SET c='ninety-nine thousand seven hundred sixty-seven' WHERE a=15080;\nUPDATE t2 SET c='three thousand six hundred sixty-eight' WHERE a=15081;\nUPDATE t2 SET c='twenty-eight thousand seven hundred three' WHERE a=15082;\nUPDATE t2 SET c='seventy-five thousand seven hundred ninety-three' WHERE a=15083;\nUPDATE t2 SET c='eight thousand five hundred ninety-eight' WHERE a=15084;\nUPDATE t2 SET c='eighty-one thousand twenty' WHERE a=15085;\nUPDATE t2 SET c='eighty-seven thousand six hundred fifty-one' WHERE a=15086;\nUPDATE t2 SET c='nine thousand three hundred fifteen' WHERE a=15087;\nUPDATE t2 SET c='nineteen thousand four hundred forty-eight' WHERE a=15088;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-one' WHERE a=15089;\nUPDATE t2 SET c='eighty-one thousand two hundred three' WHERE a=15090;\nUPDATE t2 SET c='eighty-two thousand two hundred sixty-five' WHERE a=15091;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-five' WHERE a=15092;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-six' WHERE a=15093;\nUPDATE t2 SET c='two hundred eight' WHERE a=15094;\nUPDATE t2 SET c='forty thousand fifty-four' WHERE a=15095;\nUPDATE t2 SET c='eighty-three thousand seven hundred thirty-two' WHERE a=15096;\nUPDATE t2 SET c='seventy-four thousand six hundred nine' WHERE a=15097;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-nine' WHERE a=15098;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-five' WHERE a=15099;\nUPDATE t2 SET c='eighteen thousand six hundred three' WHERE a=15100;\nUPDATE t2 SET c='eighty-eight thousand three hundred six' WHERE a=15101;\nUPDATE t2 SET c='fifty thousand two hundred twenty-eight' WHERE a=15102;\nUPDATE t2 SET c='fifty-five thousand seven hundred ninety-four' WHERE a=15103;\nUPDATE t2 SET c='eighty-four thousand one hundred seventeen' WHERE a=15104;\nUPDATE t2 SET c='six thousand nine hundred eighty-six' WHERE a=15105;\nUPDATE t2 SET c='seventy-four thousand five hundred forty' WHERE a=15106;\nUPDATE t2 SET c='thirty-five thousand three hundred forty-eight' WHERE a=15107;\nUPDATE t2 SET c='ninety thousand three hundred twenty-two' WHERE a=15108;\nUPDATE t2 SET c='forty-nine thousand nine hundred twelve' WHERE a=15109;\nUPDATE t2 SET c='fifty-five thousand three hundred eight' WHERE a=15110;\nUPDATE t2 SET c='sixty-six thousand seven hundred forty-four' WHERE a=15111;\nUPDATE t2 SET c='seventy thousand seven hundred twenty-five' WHERE a=15112;\nUPDATE t2 SET c='ninety-seven thousand nine hundred seventy-one' WHERE a=15113;\nUPDATE t2 SET c='eighteen thousand eight hundred six' WHERE a=15114;\nUPDATE t2 SET c='forty-seven thousand six hundred fifty-six' WHERE a=15115;\nUPDATE t2 SET c='forty-seven thousand five hundred sixteen' WHERE a=15116;\nUPDATE t2 SET c='thirty-two thousand three hundred sixteen' WHERE a=15117;\nUPDATE t2 SET c='eight thousand three hundred ninety-three' WHERE a=15118;\nUPDATE t2 SET c='sixteen thousand two hundred seventy-eight' WHERE a=15119;\nUPDATE t2 SET c='ninety-nine thousand four hundred ten' WHERE a=15120;\nUPDATE t2 SET c='forty thousand six hundred sixty-four' WHERE a=15121;\nUPDATE t2 SET c='seventeen thousand one hundred fifty-one' WHERE a=15122;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-three' WHERE a=15123;\nUPDATE t2 SET c='ninety-seven thousand one hundred seventy-nine' WHERE a=15124;\nUPDATE t2 SET c='fifty-eight thousand three' WHERE a=15125;\nUPDATE t2 SET c='fifty-seven thousand three hundred thirty-nine' WHERE a=15126;\nUPDATE t2 SET c='nineteen thousand eight hundred fourteen' WHERE a=15127;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eighty-two' WHERE a=15128;\nUPDATE t2 SET c='ninety-two thousand eight hundred fifty-nine' WHERE a=15129;\nUPDATE t2 SET c='fifty-one thousand one hundred eighty-three' WHERE a=15130;\nUPDATE t2 SET c='ninety thousand fifty-one' WHERE a=15131;\nUPDATE t2 SET c='fifty-one thousand five hundred thirty-one' WHERE a=15132;\nUPDATE t2 SET c='twenty thousand eight hundred twenty-three' WHERE a=15133;\nUPDATE t2 SET c='thirty-four thousand four hundred seventeen' WHERE a=15134;\nUPDATE t2 SET c='eighty-five thousand two hundred six' WHERE a=15135;\nUPDATE t2 SET c='forty-one thousand two hundred twenty-nine' WHERE a=15136;\nUPDATE t2 SET c='seven thousand two hundred sixteen' WHERE a=15137;\nUPDATE t2 SET c='eighty-three thousand five hundred sixty' WHERE a=15138;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-four' WHERE a=15139;\nUPDATE t2 SET c='ninety-nine thousand three hundred forty-three' WHERE a=15140;\nUPDATE t2 SET c='one thousand six hundred thirty-two' WHERE a=15141;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-eight' WHERE a=15142;\nUPDATE t2 SET c='thirty-six thousand six hundred thirty-seven' WHERE a=15143;\nUPDATE t2 SET c='thirty thousand nine hundred fifty-four' WHERE a=15144;\nUPDATE t2 SET c='thirty-two thousand two hundred fifty-four' WHERE a=15145;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-three' WHERE a=15146;\nUPDATE t2 SET c='sixty-three thousand three hundred six' WHERE a=15147;\nUPDATE t2 SET c='eighty-three thousand four hundred eighteen' WHERE a=15148;\nUPDATE t2 SET c='fifty-two thousand nine hundred fifty-eight' WHERE a=15149;\nUPDATE t2 SET c='one thousand four hundred fifty-six' WHERE a=15150;\nUPDATE t2 SET c='eight thousand five hundred ninety-one' WHERE a=15151;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-one' WHERE a=15152;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty' WHERE a=15153;\nUPDATE t2 SET c='fifty-four thousand one hundred forty-one' WHERE a=15154;\nUPDATE t2 SET c='eighty-nine thousand five hundred seven' WHERE a=15155;\nUPDATE t2 SET c='four thousand eighty' WHERE a=15156;\nUPDATE t2 SET c='eighty-eight thousand five hundred two' WHERE a=15157;\nUPDATE t2 SET c='thirty-three thousand six hundred forty' WHERE a=15158;\nUPDATE t2 SET c='six thousand eight hundred thirty-two' WHERE a=15159;\nUPDATE t2 SET c='thirty-two thousand seven hundred one' WHERE a=15160;\nUPDATE t2 SET c='sixty thousand three hundred thirteen' WHERE a=15161;\nUPDATE t2 SET c='sixty-six thousand three hundred seventy-eight' WHERE a=15162;\nUPDATE t2 SET c='sixty-eight thousand seven hundred sixty-two' WHERE a=15163;\nUPDATE t2 SET c='forty-three thousand one hundred nine' WHERE a=15164;\nUPDATE t2 SET c='ninety-six thousand four hundred nine' WHERE a=15165;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-three' WHERE a=15166;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-four' WHERE a=15167;\nUPDATE t2 SET c='seventy thousand six hundred forty-seven' WHERE a=15168;\nUPDATE t2 SET c='seventeen thousand six hundred eighty-seven' WHERE a=15169;\nUPDATE t2 SET c='eight thousand twenty-six' WHERE a=15170;\nUPDATE t2 SET c='ninety-nine thousand nine hundred ninety-three' WHERE a=15171;\nUPDATE t2 SET c='sixty-seven thousand thirty-six' WHERE a=15172;\nUPDATE t2 SET c='twenty-six thousand fourteen' WHERE a=15173;\nUPDATE t2 SET c='eighty-four thousand forty-four' WHERE a=15174;\nUPDATE t2 SET c='thirteen thousand eight hundred forty-six' WHERE a=15175;\nUPDATE t2 SET c='ninety-two thousand forty-nine' WHERE a=15176;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eighty-three' WHERE a=15177;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety' WHERE a=15178;\nUPDATE t2 SET c='fifty-seven thousand thirty-nine' WHERE a=15179;\nUPDATE t2 SET c='twenty-two thousand ninety-seven' WHERE a=15180;\nUPDATE t2 SET c='sixty-seven thousand nine hundred eighty-five' WHERE a=15181;\nUPDATE t2 SET c='thirty thousand eight hundred fifty-one' WHERE a=15182;\nUPDATE t2 SET c='three thousand five hundred ninety-two' WHERE a=15183;\nUPDATE t2 SET c='sixty-three thousand seven hundred forty-five' WHERE a=15184;\nUPDATE t2 SET c='seventy-three thousand three hundred eighty-one' WHERE a=15185;\nUPDATE t2 SET c='sixty-six thousand one hundred thirty-nine' WHERE a=15186;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty-one' WHERE a=15187;\nUPDATE t2 SET c='fifteen thousand two hundred eighty-five' WHERE a=15188;\nUPDATE t2 SET c='one thousand nine hundred fifty-four' WHERE a=15189;\nUPDATE t2 SET c='fifty-eight thousand four hundred eighty-seven' WHERE a=15190;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-one' WHERE a=15191;\nUPDATE t2 SET c='twenty-one thousand four hundred fourteen' WHERE a=15192;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-five' WHERE a=15193;\nUPDATE t2 SET c='thirty thousand two hundred sixty-four' WHERE a=15194;\nUPDATE t2 SET c='eighty-five thousand eight hundred thirty-five' WHERE a=15195;\nUPDATE t2 SET c='eight thousand one hundred eighty-four' WHERE a=15196;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=15197;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-nine' WHERE a=15198;\nUPDATE t2 SET c='thirty-four thousand five hundred thirty-two' WHERE a=15199;\nUPDATE t2 SET c='sixty-seven thousand seven hundred twenty-three' WHERE a=15200;\nUPDATE t2 SET c='eighty thousand one hundred fifty-eight' WHERE a=15201;\nUPDATE t2 SET c='forty-five thousand two hundred ninety-three' WHERE a=15202;\nUPDATE t2 SET c='eighty-four thousand four hundred sixty-six' WHERE a=15203;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-four' WHERE a=15204;\nUPDATE t2 SET c='twenty-seven thousand eighty' WHERE a=15205;\nUPDATE t2 SET c='seventy-three thousand two hundred thirty-five' WHERE a=15206;\nUPDATE t2 SET c='nine thousand seven hundred two' WHERE a=15207;\nUPDATE t2 SET c='fifty-five thousand eight hundred forty-six' WHERE a=15208;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-four' WHERE a=15209;\nUPDATE t2 SET c='thirty-eight thousand eight hundred nine' WHERE a=15210;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-three' WHERE a=15211;\nUPDATE t2 SET c='eight thousand five hundred seven' WHERE a=15212;\nUPDATE t2 SET c='seventy thousand eight hundred fifty-five' WHERE a=15213;\nUPDATE t2 SET c='fifty-six thousand six hundred fifty-five' WHERE a=15214;\nUPDATE t2 SET c='fifty-nine thousand nine hundred twenty-one' WHERE a=15215;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-one' WHERE a=15216;\nUPDATE t2 SET c='thirty-three thousand seventeen' WHERE a=15217;\nUPDATE t2 SET c='eighty-nine thousand three hundred' WHERE a=15218;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-eight' WHERE a=15219;\nUPDATE t2 SET c='sixty-nine thousand one hundred nineteen' WHERE a=15220;\nUPDATE t2 SET c='thirty-eight thousand one hundred two' WHERE a=15221;\nUPDATE t2 SET c='ninety-six thousand one hundred fifteen' WHERE a=15222;\nUPDATE t2 SET c='ninety-one thousand seven hundred seventy-one' WHERE a=15223;\nUPDATE t2 SET c='thirty-six thousand one hundred ninety-six' WHERE a=15224;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-nine' WHERE a=15225;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-four' WHERE a=15226;\nUPDATE t2 SET c='sixteen thousand six hundred sixty-nine' WHERE a=15227;\nUPDATE t2 SET c='fifty-two thousand nine hundred thirty-two' WHERE a=15228;\nUPDATE t2 SET c='ten thousand one hundred twenty-nine' WHERE a=15229;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fourteen' WHERE a=15230;\nUPDATE t2 SET c='ninety-nine thousand one hundred fifty-two' WHERE a=15231;\nUPDATE t2 SET c='seventy-five thousand three hundred forty' WHERE a=15232;\nUPDATE t2 SET c='fifty-six thousand nine hundred four' WHERE a=15233;\nUPDATE t2 SET c='twelve thousand five hundred thirty-nine' WHERE a=15234;\nUPDATE t2 SET c='eighty-two thousand nine hundred seventy-two' WHERE a=15235;\nUPDATE t2 SET c='ninety-five thousand nine hundred thirty-six' WHERE a=15236;\nUPDATE t2 SET c='fifty thousand two hundred eight' WHERE a=15237;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-six' WHERE a=15238;\nUPDATE t2 SET c='six thousand three hundred twelve' WHERE a=15239;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy' WHERE a=15240;\nUPDATE t2 SET c='twenty-four thousand five hundred eighty-three' WHERE a=15241;\nUPDATE t2 SET c='forty thousand thirty-seven' WHERE a=15242;\nUPDATE t2 SET c='ninety-eight thousand thirty-one' WHERE a=15243;\nUPDATE t2 SET c='seven thousand seven hundred twenty-two' WHERE a=15244;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty-nine' WHERE a=15245;\nUPDATE t2 SET c='thirty-three thousand nine hundred ninety-six' WHERE a=15246;\nUPDATE t2 SET c='twenty-eight thousand six hundred fifty-four' WHERE a=15247;\nUPDATE t2 SET c='seventy-eight thousand two hundred thirty-three' WHERE a=15248;\nUPDATE t2 SET c='sixty-five thousand eight hundred fifty-eight' WHERE a=15249;\nUPDATE t2 SET c='ninety-two thousand two hundred thirty-nine' WHERE a=15250;\nUPDATE t2 SET c='thirty-seven thousand eight hundred forty-four' WHERE a=15251;\nUPDATE t2 SET c='forty-six thousand four hundred forty-six' WHERE a=15252;\nUPDATE t2 SET c='ninety thousand five hundred thirty-nine' WHERE a=15253;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-five' WHERE a=15254;\nUPDATE t2 SET c='fifty-three thousand three hundred thirty-one' WHERE a=15255;\nUPDATE t2 SET c='twelve thousand six hundred eighty' WHERE a=15256;\nUPDATE t2 SET c='seventeen thousand eight hundred twenty-eight' WHERE a=15257;\nUPDATE t2 SET c='sixty thousand nine hundred twelve' WHERE a=15258;\nUPDATE t2 SET c='forty-seven thousand two hundred sixty-seven' WHERE a=15259;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-two' WHERE a=15260;\nUPDATE t2 SET c='forty-four thousand one hundred ninety-four' WHERE a=15261;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-three' WHERE a=15262;\nUPDATE t2 SET c='fifty-five thousand four hundred ninety-three' WHERE a=15263;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-three' WHERE a=15264;\nUPDATE t2 SET c='sixty-five thousand one hundred twenty-two' WHERE a=15265;\nUPDATE t2 SET c='forty-six thousand two hundred sixty-two' WHERE a=15266;\nUPDATE t2 SET c='fifty-three thousand eight hundred fourteen' WHERE a=15267;\nUPDATE t2 SET c='sixty thousand four hundred twenty-nine' WHERE a=15268;\nUPDATE t2 SET c='sixty-four thousand three hundred seven' WHERE a=15269;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety-six' WHERE a=15270;\nUPDATE t2 SET c='forty-one thousand seven hundred eleven' WHERE a=15271;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-one' WHERE a=15272;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=15273;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-two' WHERE a=15274;\nUPDATE t2 SET c='thirty thousand six hundred thirty-five' WHERE a=15275;\nUPDATE t2 SET c='fifty-two thousand seven hundred forty-one' WHERE a=15276;\nUPDATE t2 SET c='twenty thousand six hundred ninety-three' WHERE a=15277;\nUPDATE t2 SET c='ninety-three thousand three hundred thirty-three' WHERE a=15278;\nUPDATE t2 SET c='nine thousand two hundred forty-four' WHERE a=15279;\nUPDATE t2 SET c='thirty-five thousand nine hundred fifty-nine' WHERE a=15280;\nUPDATE t2 SET c='fifty-six thousand seven hundred ninety-three' WHERE a=15281;\nUPDATE t2 SET c='seventy thousand nine hundred twenty-one' WHERE a=15282;\nUPDATE t2 SET c='fifty-four thousand two hundred thirty-nine' WHERE a=15283;\nUPDATE t2 SET c='ninety-two thousand seven hundred forty' WHERE a=15284;\nUPDATE t2 SET c='ninety-eight thousand three hundred four' WHERE a=15285;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-eight' WHERE a=15286;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-one' WHERE a=15287;\nUPDATE t2 SET c='sixty-five thousand three hundred forty-four' WHERE a=15288;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-four' WHERE a=15289;\nUPDATE t2 SET c='forty-five thousand one hundred seven' WHERE a=15290;\nUPDATE t2 SET c='ten thousand four hundred sixty-eight' WHERE a=15291;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=15292;\nUPDATE t2 SET c='sixty-five thousand five hundred fifty-two' WHERE a=15293;\nUPDATE t2 SET c='ninety-one thousand six hundred thirty-six' WHERE a=15294;\nUPDATE t2 SET c='fifty-three thousand three' WHERE a=15295;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety-seven' WHERE a=15296;\nUPDATE t2 SET c='ninety-six thousand seven hundred ninety-two' WHERE a=15297;\nUPDATE t2 SET c='eighty-three thousand nine hundred seven' WHERE a=15298;\nUPDATE t2 SET c='nine thousand two hundred eighty-nine' WHERE a=15299;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-three' WHERE a=15300;\nUPDATE t2 SET c='five thousand seven hundred forty-two' WHERE a=15301;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-three' WHERE a=15302;\nUPDATE t2 SET c='sixty thousand three hundred forty-one' WHERE a=15303;\nUPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=15304;\nUPDATE t2 SET c='ninety-six thousand five hundred twenty-seven' WHERE a=15305;\nUPDATE t2 SET c='seventy-six thousand five hundred twenty-nine' WHERE a=15306;\nUPDATE t2 SET c='thirty thousand five hundred seventy-seven' WHERE a=15307;\nUPDATE t2 SET c='ninety-nine thousand forty-five' WHERE a=15308;\nUPDATE t2 SET c='twenty-four thousand one hundred ninety-eight' WHERE a=15309;\nUPDATE t2 SET c='three thousand' WHERE a=15310;\nUPDATE t2 SET c='eleven thousand five hundred fourteen' WHERE a=15311;\nUPDATE t2 SET c='eighty-seven thousand sixty-one' WHERE a=15312;\nUPDATE t2 SET c='seventeen thousand seven hundred twelve' WHERE a=15313;\nUPDATE t2 SET c='twenty thousand three hundred fifty-four' WHERE a=15314;\nUPDATE t2 SET c='seventeen thousand five hundred sixty-two' WHERE a=15315;\nUPDATE t2 SET c='thirty-five thousand eight hundred eleven' WHERE a=15316;\nUPDATE t2 SET c='seven thousand seven hundred fifty-three' WHERE a=15317;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety' WHERE a=15318;\nUPDATE t2 SET c='forty-four thousand nine hundred two' WHERE a=15319;\nUPDATE t2 SET c='seventeen thousand five hundred thirty-two' WHERE a=15320;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-one' WHERE a=15321;\nUPDATE t2 SET c='thirty thousand four hundred ninety' WHERE a=15322;\nUPDATE t2 SET c='four thousand one hundred eleven' WHERE a=15323;\nUPDATE t2 SET c='sixty-one thousand two hundred thirty-eight' WHERE a=15324;\nUPDATE t2 SET c='forty-seven thousand six hundred forty-five' WHERE a=15325;\nUPDATE t2 SET c='fifteen thousand three hundred sixty' WHERE a=15326;\nUPDATE t2 SET c='fifteen thousand four hundred four' WHERE a=15327;\nUPDATE t2 SET c='fifty-six thousand eight hundred sixty-nine' WHERE a=15328;\nUPDATE t2 SET c='three thousand six hundred nineteen' WHERE a=15329;\nUPDATE t2 SET c='eighty-eight thousand eighty-eight' WHERE a=15330;\nUPDATE t2 SET c='forty-three thousand four hundred seventy-seven' WHERE a=15331;\nUPDATE t2 SET c='fifty-seven thousand eight hundred ninety-eight' WHERE a=15332;\nUPDATE t2 SET c='thirty-six thousand three hundred eighty' WHERE a=15333;\nUPDATE t2 SET c='fifty-six thousand four hundred thirty-two' WHERE a=15334;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty-nine' WHERE a=15335;\nUPDATE t2 SET c='eight thousand two hundred eighty-five' WHERE a=15336;\nUPDATE t2 SET c='three hundred three' WHERE a=15337;\nUPDATE t2 SET c='seventy-three thousand nine hundred forty-three' WHERE a=15338;\nUPDATE t2 SET c='eighty-two thousand six hundred twenty' WHERE a=15339;\nUPDATE t2 SET c='six thousand nine hundred thirty-one' WHERE a=15340;\nUPDATE t2 SET c='one hundred three' WHERE a=15341;\nUPDATE t2 SET c='forty-five thousand two hundred forty-five' WHERE a=15342;\nUPDATE t2 SET c='sixty-two thousand one hundred twelve' WHERE a=15343;\nUPDATE t2 SET c='sixty-nine thousand thirteen' WHERE a=15344;\nUPDATE t2 SET c='forty thousand eight hundred twenty-three' WHERE a=15345;\nUPDATE t2 SET c='four thousand two hundred sixty-four' WHERE a=15346;\nUPDATE t2 SET c='thirty-one thousand seventy-two' WHERE a=15347;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twenty' WHERE a=15348;\nUPDATE t2 SET c='sixty-one thousand one hundred thirty-nine' WHERE a=15349;\nUPDATE t2 SET c='sixty thousand eight hundred twenty-three' WHERE a=15350;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-eight' WHERE a=15351;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty' WHERE a=15352;\nUPDATE t2 SET c='twenty-three thousand nine hundred six' WHERE a=15353;\nUPDATE t2 SET c='twelve thousand one hundred eighty-three' WHERE a=15354;\nUPDATE t2 SET c='four thousand two hundred twelve' WHERE a=15355;\nUPDATE t2 SET c='fifteen thousand nine hundred thirty' WHERE a=15356;\nUPDATE t2 SET c='fifty-nine thousand eight hundred thirty-nine' WHERE a=15357;\nUPDATE t2 SET c='eighty-four thousand seven hundred' WHERE a=15358;\nUPDATE t2 SET c='seventy-six thousand six hundred twenty-eight' WHERE a=15359;\nUPDATE t2 SET c='twenty-nine thousand three hundred one' WHERE a=15360;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-three' WHERE a=15361;\nUPDATE t2 SET c='ninety-six thousand three hundred fifty-eight' WHERE a=15362;\nUPDATE t2 SET c='two thousand nine hundred seven' WHERE a=15363;\nUPDATE t2 SET c='ninety-three thousand two hundred sixty-three' WHERE a=15364;\nUPDATE t2 SET c='forty-nine thousand seven hundred forty' WHERE a=15365;\nUPDATE t2 SET c='eight thousand six hundred thirty-three' WHERE a=15366;\nUPDATE t2 SET c='fifty-three thousand seven hundred nine' WHERE a=15367;\nUPDATE t2 SET c='eleven thousand two hundred ninety-six' WHERE a=15368;\nUPDATE t2 SET c='ten thousand eight hundred ninety-six' WHERE a=15369;\nUPDATE t2 SET c='seventy-four thousand one hundred forty-six' WHERE a=15370;\nUPDATE t2 SET c='eighty-nine thousand seven hundred seventy-one' WHERE a=15371;\nUPDATE t2 SET c='four thousand two hundred one' WHERE a=15372;\nUPDATE t2 SET c='sixty-eight thousand one hundred thirty-one' WHERE a=15373;\nUPDATE t2 SET c='seventeen thousand eight hundred fifty-seven' WHERE a=15374;\nUPDATE t2 SET c='twenty-four thousand three hundred thirty-five' WHERE a=15375;\nUPDATE t2 SET c='fifty-one thousand one hundred eleven' WHERE a=15376;\nUPDATE t2 SET c='forty-four thousand nine hundred ninety-three' WHERE a=15377;\nUPDATE t2 SET c='forty-three thousand thirty-three' WHERE a=15378;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-eight' WHERE a=15379;\nUPDATE t2 SET c='eight thousand three hundred twelve' WHERE a=15380;\nUPDATE t2 SET c='ninety thousand five hundred thirteen' WHERE a=15381;\nUPDATE t2 SET c='forty-two thousand eight hundred seventy' WHERE a=15382;\nUPDATE t2 SET c='twenty-seven thousand four hundred eighteen' WHERE a=15383;\nUPDATE t2 SET c='sixty-one thousand one hundred forty-eight' WHERE a=15384;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-two' WHERE a=15385;\nUPDATE t2 SET c='twenty-eight thousand one hundred forty-eight' WHERE a=15386;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-one' WHERE a=15387;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-six' WHERE a=15388;\nUPDATE t2 SET c='seventeen thousand five hundred ninety-two' WHERE a=15389;\nUPDATE t2 SET c='nine thousand fifty-five' WHERE a=15390;\nUPDATE t2 SET c='forty-six thousand five hundred eleven' WHERE a=15391;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety' WHERE a=15392;\nUPDATE t2 SET c='forty-eight thousand eight hundred eighty-three' WHERE a=15393;\nUPDATE t2 SET c='forty-four thousand seventy-six' WHERE a=15394;\nUPDATE t2 SET c='eighteen thousand eight hundred eighty-eight' WHERE a=15395;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty' WHERE a=15396;\nUPDATE t2 SET c='thirty thousand five hundred forty' WHERE a=15397;\nUPDATE t2 SET c='eighty-six thousand five hundred nine' WHERE a=15398;\nUPDATE t2 SET c='ninety-seven thousand seven hundred eighty-four' WHERE a=15399;\nUPDATE t2 SET c='thirty thousand five hundred sixty-four' WHERE a=15400;\nUPDATE t2 SET c='forty-seven thousand eight hundred seven' WHERE a=15401;\nUPDATE t2 SET c='twelve thousand six hundred fifty' WHERE a=15402;\nUPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=15403;\nUPDATE t2 SET c='three thousand three' WHERE a=15404;\nUPDATE t2 SET c='eighty-seven thousand five hundred twenty-six' WHERE a=15405;\nUPDATE t2 SET c='eighty-nine thousand six hundred twenty' WHERE a=15406;\nUPDATE t2 SET c='forty-nine thousand eight hundred sixty-four' WHERE a=15407;\nUPDATE t2 SET c='thirty-two thousand nine hundred eight' WHERE a=15408;\nUPDATE t2 SET c='fifty thousand eight hundred eighty-two' WHERE a=15409;\nUPDATE t2 SET c='ten thousand five hundred seventy-two' WHERE a=15410;\nUPDATE t2 SET c='thirty-four thousand four hundred twenty-eight' WHERE a=15411;\nUPDATE t2 SET c='nine thousand seven hundred twenty-one' WHERE a=15412;\nUPDATE t2 SET c='eighteen thousand three hundred eighty-two' WHERE a=15413;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-three' WHERE a=15414;\nUPDATE t2 SET c='twenty-five thousand nine hundred fifty-five' WHERE a=15415;\nUPDATE t2 SET c='ninety-seven thousand eight hundred seventy-eight' WHERE a=15416;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-four' WHERE a=15417;\nUPDATE t2 SET c='forty-four thousand nine hundred eighty-four' WHERE a=15418;\nUPDATE t2 SET c='sixty-two thousand six hundred sixty-two' WHERE a=15419;\nUPDATE t2 SET c='fifty-eight thousand five hundred twenty-four' WHERE a=15420;\nUPDATE t2 SET c='fifty-eight thousand three hundred forty-seven' WHERE a=15421;\nUPDATE t2 SET c='seven thousand one hundred eighty-four' WHERE a=15422;\nUPDATE t2 SET c='sixty-nine thousand three hundred three' WHERE a=15423;\nUPDATE t2 SET c='sixty thousand one hundred seventy' WHERE a=15424;\nUPDATE t2 SET c='thirty-six thousand six hundred thirty' WHERE a=15425;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-seven' WHERE a=15426;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-three' WHERE a=15427;\nUPDATE t2 SET c='fourteen thousand eight hundred thirty-one' WHERE a=15428;\nUPDATE t2 SET c='eighty thousand seven hundred sixty-six' WHERE a=15429;\nUPDATE t2 SET c='twenty thousand two hundred ninety-six' WHERE a=15430;\nUPDATE t2 SET c='eighty-seven thousand two hundred thirty-two' WHERE a=15431;\nUPDATE t2 SET c='sixty-one thousand fifty-two' WHERE a=15432;\nUPDATE t2 SET c='nineteen thousand nine hundred fifty-two' WHERE a=15433;\nUPDATE t2 SET c='ninety-five thousand six hundred fourteen' WHERE a=15434;\nUPDATE t2 SET c='fifty-three thousand three hundred eighty-seven' WHERE a=15435;\nUPDATE t2 SET c='four thousand nine hundred five' WHERE a=15436;\nUPDATE t2 SET c='nine thousand one hundred twenty-five' WHERE a=15437;\nUPDATE t2 SET c='eighty-one thousand four hundred thirteen' WHERE a=15438;\nUPDATE t2 SET c='forty thousand four hundred eighty' WHERE a=15439;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty-one' WHERE a=15440;\nUPDATE t2 SET c='ninety-two thousand twenty-eight' WHERE a=15441;\nUPDATE t2 SET c='one thousand five hundred thirty-four' WHERE a=15442;\nUPDATE t2 SET c='three thousand eight hundred ninety-four' WHERE a=15443;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-five' WHERE a=15444;\nUPDATE t2 SET c='thirteen thousand six hundred twenty-four' WHERE a=15445;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-seven' WHERE a=15446;\nUPDATE t2 SET c='eighteen thousand two hundred two' WHERE a=15447;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty' WHERE a=15448;\nUPDATE t2 SET c='sixty-one thousand eighty-three' WHERE a=15449;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-three' WHERE a=15450;\nUPDATE t2 SET c='forty-six thousand one hundred thirty' WHERE a=15451;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifteen' WHERE a=15452;\nUPDATE t2 SET c='one thousand forty-three' WHERE a=15453;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-seven' WHERE a=15454;\nUPDATE t2 SET c='six thousand three hundred seven' WHERE a=15455;\nUPDATE t2 SET c='sixty-four thousand five hundred twenty' WHERE a=15456;\nUPDATE t2 SET c='twenty-two thousand seven hundred ninety-seven' WHERE a=15457;\nUPDATE t2 SET c='sixty-five thousand five hundred eighty-three' WHERE a=15458;\nUPDATE t2 SET c='thirty-seven thousand nine hundred twenty-three' WHERE a=15459;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy' WHERE a=15460;\nUPDATE t2 SET c='eighty-three thousand six hundred twenty-eight' WHERE a=15461;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-nine' WHERE a=15462;\nUPDATE t2 SET c='ninety-one thousand nine hundred eighty-four' WHERE a=15463;\nUPDATE t2 SET c='fifty thousand nine hundred eighty-two' WHERE a=15464;\nUPDATE t2 SET c='ninety-eight thousand eight hundred fifty-five' WHERE a=15465;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-six' WHERE a=15466;\nUPDATE t2 SET c='thirty-eight thousand seven hundred thirty-nine' WHERE a=15467;\nUPDATE t2 SET c='two thousand four hundred twelve' WHERE a=15468;\nUPDATE t2 SET c='eighty-six thousand nine hundred seventy-seven' WHERE a=15469;\nUPDATE t2 SET c='sixty-four thousand eight hundred fifty' WHERE a=15470;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety-four' WHERE a=15471;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-seven' WHERE a=15472;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-six' WHERE a=15473;\nUPDATE t2 SET c='ninety-one thousand nine hundred forty-nine' WHERE a=15474;\nUPDATE t2 SET c='twenty-six thousand one hundred forty-eight' WHERE a=15475;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-nine' WHERE a=15476;\nUPDATE t2 SET c='eight thousand seven hundred thirty-seven' WHERE a=15477;\nUPDATE t2 SET c='seventy-five thousand four hundred forty-nine' WHERE a=15478;\nUPDATE t2 SET c='sixty-three thousand seven hundred fifty-three' WHERE a=15479;\nUPDATE t2 SET c='ninety-eight thousand one hundred six' WHERE a=15480;\nUPDATE t2 SET c='twenty-two thousand five hundred ten' WHERE a=15481;\nUPDATE t2 SET c='fifty-three thousand eighty-six' WHERE a=15482;\nUPDATE t2 SET c='thirty-six thousand five hundred forty-three' WHERE a=15483;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty-four' WHERE a=15484;\nUPDATE t2 SET c='seven thousand three hundred ninety' WHERE a=15485;\nUPDATE t2 SET c='thirty-eight thousand six hundred thirteen' WHERE a=15486;\nUPDATE t2 SET c='ninety-five thousand six hundred thirty-two' WHERE a=15487;\nUPDATE t2 SET c='forty-nine thousand six hundred sixty-seven' WHERE a=15488;\nUPDATE t2 SET c='twenty-eight thousand four hundred three' WHERE a=15489;\nUPDATE t2 SET c='fifty-five thousand one hundred forty-six' WHERE a=15490;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-eight' WHERE a=15491;\nUPDATE t2 SET c='ninety-seven thousand six hundred four' WHERE a=15492;\nUPDATE t2 SET c='five thousand three hundred sixteen' WHERE a=15493;\nUPDATE t2 SET c='thirty-five thousand nineteen' WHERE a=15494;\nUPDATE t2 SET c='seventy-nine thousand three hundred' WHERE a=15495;\nUPDATE t2 SET c='eight thousand five hundred forty-seven' WHERE a=15496;\nUPDATE t2 SET c='thirty-eight thousand one hundred seventy-eight' WHERE a=15497;\nUPDATE t2 SET c='eighty-nine thousand ninety-two' WHERE a=15498;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighteen' WHERE a=15499;\nUPDATE t2 SET c='sixty thousand two hundred nine' WHERE a=15500;\nUPDATE t2 SET c='eighty-two thousand ninety-three' WHERE a=15501;\nUPDATE t2 SET c='seventy-five thousand twenty-eight' WHERE a=15502;\nUPDATE t2 SET c='seventy-three thousand eight hundred twenty-seven' WHERE a=15503;\nUPDATE t2 SET c='seventeen thousand one hundred seventy-five' WHERE a=15504;\nUPDATE t2 SET c='ninety thousand two hundred sixty-three' WHERE a=15505;\nUPDATE t2 SET c='eighty-four thousand seven hundred seventy-seven' WHERE a=15506;\nUPDATE t2 SET c='eighty-eight thousand nine hundred sixty-six' WHERE a=15507;\nUPDATE t2 SET c='seventy thousand two hundred forty-three' WHERE a=15508;\nUPDATE t2 SET c='one thousand six hundred nineteen' WHERE a=15509;\nUPDATE t2 SET c='thirty-three thousand nine hundred sixty-eight' WHERE a=15510;\nUPDATE t2 SET c='thirteen thousand seventy-two' WHERE a=15511;\nUPDATE t2 SET c='seventy-seven thousand seven' WHERE a=15512;\nUPDATE t2 SET c='thirty-five thousand nine hundred thirty-three' WHERE a=15513;\nUPDATE t2 SET c='thirty-six thousand twelve' WHERE a=15514;\nUPDATE t2 SET c='ninety-six thousand eight hundred eight' WHERE a=15515;\nUPDATE t2 SET c='thirty thousand one hundred thirty-four' WHERE a=15516;\nUPDATE t2 SET c='nine thousand eighty-eight' WHERE a=15517;\nUPDATE t2 SET c='sixteen thousand seven hundred forty-seven' WHERE a=15518;\nUPDATE t2 SET c='seventy-nine thousand nine hundred twenty-four' WHERE a=15519;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty' WHERE a=15520;\nUPDATE t2 SET c='fourteen thousand two hundred one' WHERE a=15521;\nUPDATE t2 SET c='one thousand eight hundred sixty-six' WHERE a=15522;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-six' WHERE a=15523;\nUPDATE t2 SET c='seventy-two thousand three hundred seventy-six' WHERE a=15524;\nUPDATE t2 SET c='seven thousand six hundred twenty-two' WHERE a=15525;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-nine' WHERE a=15526;\nUPDATE t2 SET c='ninety-one thousand one hundred fifty-nine' WHERE a=15527;\nUPDATE t2 SET c='ninety-seven thousand five hundred twelve' WHERE a=15528;\nUPDATE t2 SET c='sixty-five thousand one hundred thirteen' WHERE a=15529;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty' WHERE a=15530;\nUPDATE t2 SET c='fifty-seven thousand five hundred seventy-seven' WHERE a=15531;\nUPDATE t2 SET c='thirty-five thousand seven hundred sixteen' WHERE a=15532;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-two' WHERE a=15533;\nUPDATE t2 SET c='ninety-nine thousand eight hundred four' WHERE a=15534;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty' WHERE a=15535;\nUPDATE t2 SET c='twenty-three thousand eighty-three' WHERE a=15536;\nUPDATE t2 SET c='forty thousand seven hundred seventy-seven' WHERE a=15537;\nUPDATE t2 SET c='fifty-five thousand one hundred five' WHERE a=15538;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighteen' WHERE a=15539;\nUPDATE t2 SET c='forty-nine thousand nine hundred forty-six' WHERE a=15540;\nUPDATE t2 SET c='eighteen thousand nine hundred seven' WHERE a=15541;\nUPDATE t2 SET c='ninety-nine thousand six hundred three' WHERE a=15542;\nUPDATE t2 SET c='ninety thousand twenty-nine' WHERE a=15543;\nUPDATE t2 SET c='fifty-six thousand five hundred sixty-three' WHERE a=15544;\nUPDATE t2 SET c='eighty-seven thousand four hundred eighty' WHERE a=15545;\nUPDATE t2 SET c='thirty thousand five hundred sixty-six' WHERE a=15546;\nUPDATE t2 SET c='forty-one thousand four hundred three' WHERE a=15547;\nUPDATE t2 SET c='sixty-two thousand one hundred three' WHERE a=15548;\nUPDATE t2 SET c='seventy thousand nine hundred thirty-nine' WHERE a=15549;\nUPDATE t2 SET c='eighty-one thousand four hundred sixty-eight' WHERE a=15550;\nUPDATE t2 SET c='ninety thousand seventy-three' WHERE a=15551;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty-eight' WHERE a=15552;\nUPDATE t2 SET c='forty-seven thousand three hundred thirty-five' WHERE a=15553;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-three' WHERE a=15554;\nUPDATE t2 SET c='forty-nine thousand five hundred one' WHERE a=15555;\nUPDATE t2 SET c='six thousand six hundred seventy' WHERE a=15556;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-two' WHERE a=15557;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-nine' WHERE a=15558;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-three' WHERE a=15559;\nUPDATE t2 SET c='ninety-seven thousand fifty-nine' WHERE a=15560;\nUPDATE t2 SET c='forty-four thousand thirty' WHERE a=15561;\nUPDATE t2 SET c='eighty-two thousand eighty-five' WHERE a=15562;\nUPDATE t2 SET c='twenty-two thousand five hundred sixty-four' WHERE a=15563;\nUPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=15564;\nUPDATE t2 SET c='fifty-nine thousand five hundred seventy-one' WHERE a=15565;\nUPDATE t2 SET c='twenty-three thousand two hundred two' WHERE a=15566;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-nine' WHERE a=15567;\nUPDATE t2 SET c='seventy-six thousand four hundred seventy-four' WHERE a=15568;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-four' WHERE a=15569;\nUPDATE t2 SET c='sixty-three thousand seven hundred seventy-nine' WHERE a=15570;\nUPDATE t2 SET c='thirty-five thousand four hundred twenty-one' WHERE a=15571;\nUPDATE t2 SET c='eight thousand two hundred forty-four' WHERE a=15572;\nUPDATE t2 SET c='twenty-three thousand six hundred twenty-three' WHERE a=15573;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-six' WHERE a=15574;\nUPDATE t2 SET c='thirty-nine thousand nine hundred twenty-one' WHERE a=15575;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-five' WHERE a=15576;\nUPDATE t2 SET c='thirty-seven thousand five hundred eighty-one' WHERE a=15577;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-seven' WHERE a=15578;\nUPDATE t2 SET c='sixty-nine thousand thirty-nine' WHERE a=15579;\nUPDATE t2 SET c='seventy-two thousand seven hundred sixty-three' WHERE a=15580;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-eight' WHERE a=15581;\nUPDATE t2 SET c='sixty thousand one hundred ninety-eight' WHERE a=15582;\nUPDATE t2 SET c='twenty-eight thousand nine hundred seventy-eight' WHERE a=15583;\nUPDATE t2 SET c='sixty-nine thousand six hundred seven' WHERE a=15584;\nUPDATE t2 SET c='sixty thousand six hundred seventy-nine' WHERE a=15585;\nUPDATE t2 SET c='twelve thousand six hundred forty-one' WHERE a=15586;\nUPDATE t2 SET c='thirty-three thousand eight hundred ninety-nine' WHERE a=15587;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-five' WHERE a=15588;\nUPDATE t2 SET c='seventy-nine thousand nine hundred fifty-six' WHERE a=15589;\nUPDATE t2 SET c='forty-two thousand one hundred two' WHERE a=15590;\nUPDATE t2 SET c='thirty-eight thousand seven hundred twelve' WHERE a=15591;\nUPDATE t2 SET c='twenty-one thousand two hundred sixty-one' WHERE a=15592;\nUPDATE t2 SET c='sixty-three thousand seven hundred ninety-three' WHERE a=15593;\nUPDATE t2 SET c='twenty thousand six hundred four' WHERE a=15594;\nUPDATE t2 SET c='seventy-nine thousand four hundred eighty-seven' WHERE a=15595;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-one' WHERE a=15596;\nUPDATE t2 SET c='seventy-five thousand eight' WHERE a=15597;\nUPDATE t2 SET c='sixty-nine thousand four hundred seventy-nine' WHERE a=15598;\nUPDATE t2 SET c='seventy thousand seven hundred eighty-two' WHERE a=15599;\nUPDATE t2 SET c='twenty-four thousand one hundred fifty-four' WHERE a=15600;\nUPDATE t2 SET c='sixty thousand six hundred twenty-six' WHERE a=15601;\nUPDATE t2 SET c='two thousand seven hundred seventy-five' WHERE a=15602;\nUPDATE t2 SET c='two thousand seven hundred forty-seven' WHERE a=15603;\nUPDATE t2 SET c='seventy-one thousand five hundred fifty-eight' WHERE a=15604;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirty-seven' WHERE a=15605;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-six' WHERE a=15606;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-three' WHERE a=15607;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety' WHERE a=15608;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-four' WHERE a=15609;\nUPDATE t2 SET c='thirty thousand eight hundred eighty-three' WHERE a=15610;\nUPDATE t2 SET c='seventy thousand seven hundred seventy-nine' WHERE a=15611;\nUPDATE t2 SET c='forty-three thousand three hundred thirty-two' WHERE a=15612;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-seven' WHERE a=15613;\nUPDATE t2 SET c='eighty-five thousand twenty-three' WHERE a=15614;\nUPDATE t2 SET c='one thousand eight hundred twelve' WHERE a=15615;\nUPDATE t2 SET c='thirty-six thousand twenty-eight' WHERE a=15616;\nUPDATE t2 SET c='sixty-two thousand three hundred fifty-two' WHERE a=15617;\nUPDATE t2 SET c='forty-five thousand five hundred sixty-one' WHERE a=15618;\nUPDATE t2 SET c='two thousand nine hundred thirty-nine' WHERE a=15619;\nUPDATE t2 SET c='five hundred thirty' WHERE a=15620;\nUPDATE t2 SET c='fifty-six thousand nine hundred seventy-five' WHERE a=15621;\nUPDATE t2 SET c='seventy thousand nine hundred sixty-three' WHERE a=15622;\nUPDATE t2 SET c='five thousand nine hundred twenty-five' WHERE a=15623;\nUPDATE t2 SET c='seventy-six thousand one hundred forty' WHERE a=15624;\nUPDATE t2 SET c='eighty thousand two hundred thirteen' WHERE a=15625;\nUPDATE t2 SET c='ninety-one thousand four hundred six' WHERE a=15626;\nUPDATE t2 SET c='ninety-nine thousand four hundred three' WHERE a=15627;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-three' WHERE a=15628;\nUPDATE t2 SET c='seven thousand nine hundred sixty-three' WHERE a=15629;\nUPDATE t2 SET c='forty-five thousand seven hundred four' WHERE a=15630;\nUPDATE t2 SET c='eighty-three thousand sixteen' WHERE a=15631;\nUPDATE t2 SET c='seventy-five thousand three hundred fifty-three' WHERE a=15632;\nUPDATE t2 SET c='thirty-nine thousand four hundred thirty-six' WHERE a=15633;\nUPDATE t2 SET c='fifty thousand three' WHERE a=15634;\nUPDATE t2 SET c='seventy-two thousand nine hundred forty-nine' WHERE a=15635;\nUPDATE t2 SET c='sixty-five thousand five hundred two' WHERE a=15636;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-six' WHERE a=15637;\nUPDATE t2 SET c='seventy-five thousand seven hundred forty-eight' WHERE a=15638;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-nine' WHERE a=15639;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-seven' WHERE a=15640;\nUPDATE t2 SET c='nine thousand sixty-seven' WHERE a=15641;\nUPDATE t2 SET c='two thousand four hundred twenty-two' WHERE a=15642;\nUPDATE t2 SET c='sixty-three thousand five hundred ten' WHERE a=15643;\nUPDATE t2 SET c='forty-eight thousand twenty' WHERE a=15644;\nUPDATE t2 SET c='seventy-two thousand six hundred ninety-three' WHERE a=15645;\nUPDATE t2 SET c='eighty-nine thousand one hundred twenty-eight' WHERE a=15646;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-six' WHERE a=15647;\nUPDATE t2 SET c='twenty-five thousand seventy' WHERE a=15648;\nUPDATE t2 SET c='eighty-six thousand three hundred seven' WHERE a=15649;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-six' WHERE a=15650;\nUPDATE t2 SET c='thirty-four thousand three hundred one' WHERE a=15651;\nUPDATE t2 SET c='eighty-four thousand seventy-two' WHERE a=15652;\nUPDATE t2 SET c='twenty-six thousand three hundred seventy-two' WHERE a=15653;\nUPDATE t2 SET c='fifty-six thousand one hundred eighty-nine' WHERE a=15654;\nUPDATE t2 SET c='thirty-six thousand eight hundred seventy-nine' WHERE a=15655;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-eight' WHERE a=15656;\nUPDATE t2 SET c='fifty-four thousand sixty-eight' WHERE a=15657;\nUPDATE t2 SET c='eighty-three thousand three hundred ninety-nine' WHERE a=15658;\nUPDATE t2 SET c='sixty-four thousand eight hundred seventy-three' WHERE a=15659;\nUPDATE t2 SET c='fifty-nine thousand five hundred twelve' WHERE a=15660;\nUPDATE t2 SET c='seven thousand seven hundred fifty-seven' WHERE a=15661;\nUPDATE t2 SET c='seventy-four thousand six hundred forty-eight' WHERE a=15662;\nUPDATE t2 SET c='thirty-four thousand six hundred fifty' WHERE a=15663;\nUPDATE t2 SET c='fifty-two thousand eight hundred thirty-five' WHERE a=15664;\nUPDATE t2 SET c='seventy-four thousand one hundred four' WHERE a=15665;\nUPDATE t2 SET c='fifty-three thousand six hundred ninety-one' WHERE a=15666;\nUPDATE t2 SET c='thirty-one thousand eight hundred twenty-two' WHERE a=15667;\nUPDATE t2 SET c='seventy-six thousand four hundred ninety-nine' WHERE a=15668;\nUPDATE t2 SET c='fifty-four thousand eight hundred thirty-six' WHERE a=15669;\nUPDATE t2 SET c='five thousand two hundred sixty-six' WHERE a=15670;\nUPDATE t2 SET c='forty-six thousand eight hundred eighty' WHERE a=15671;\nUPDATE t2 SET c='thirty-eight thousand one hundred one' WHERE a=15672;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty-four' WHERE a=15673;\nUPDATE t2 SET c='six thousand nine hundred thirty-five' WHERE a=15674;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-three' WHERE a=15675;\nUPDATE t2 SET c='sixty-four thousand two hundred two' WHERE a=15676;\nUPDATE t2 SET c='eighteen thousand four hundred fifty-nine' WHERE a=15677;\nUPDATE t2 SET c='seventy-nine thousand two hundred ten' WHERE a=15678;\nUPDATE t2 SET c='twenty thousand nine hundred forty-two' WHERE a=15679;\nUPDATE t2 SET c='sixty-seven thousand ninety-four' WHERE a=15680;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-one' WHERE a=15681;\nUPDATE t2 SET c='forty-seven thousand nine hundred one' WHERE a=15682;\nUPDATE t2 SET c='twenty thousand two hundred fifty' WHERE a=15683;\nUPDATE t2 SET c='ninety-four thousand five hundred sixty-seven' WHERE a=15684;\nUPDATE t2 SET c='fifty-two thousand sixty' WHERE a=15685;\nUPDATE t2 SET c='eighty-one thousand seven hundred twenty-seven' WHERE a=15686;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-seven' WHERE a=15687;\nUPDATE t2 SET c='sixty-five thousand three hundred one' WHERE a=15688;\nUPDATE t2 SET c='four thousand three hundred forty-four' WHERE a=15689;\nUPDATE t2 SET c='three thousand five hundred sixty-three' WHERE a=15690;\nUPDATE t2 SET c='nineteen thousand nine hundred twenty-five' WHERE a=15691;\nUPDATE t2 SET c='ninety-nine thousand five hundred forty-two' WHERE a=15692;\nUPDATE t2 SET c='seventy-four thousand five hundred twenty-nine' WHERE a=15693;\nUPDATE t2 SET c='three thousand four hundred fifty-four' WHERE a=15694;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty' WHERE a=15695;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-six' WHERE a=15696;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-one' WHERE a=15697;\nUPDATE t2 SET c='eighty thousand sixty-three' WHERE a=15698;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-six' WHERE a=15699;\nUPDATE t2 SET c='eighty-six thousand six hundred eighty-seven' WHERE a=15700;\nUPDATE t2 SET c='forty-seven thousand seven hundred ten' WHERE a=15701;\nUPDATE t2 SET c='forty-five thousand forty-eight' WHERE a=15702;\nUPDATE t2 SET c='three thousand nine hundred seventy-eight' WHERE a=15703;\nUPDATE t2 SET c='forty thousand three hundred fifty-four' WHERE a=15704;\nUPDATE t2 SET c='sixty-five thousand two hundred nineteen' WHERE a=15705;\nUPDATE t2 SET c='thirty-four thousand two hundred ninety-eight' WHERE a=15706;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-five' WHERE a=15707;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-two' WHERE a=15708;\nUPDATE t2 SET c='sixty-four thousand six hundred forty-three' WHERE a=15709;\nUPDATE t2 SET c='fifty-two thousand six hundred eighty-two' WHERE a=15710;\nUPDATE t2 SET c='twenty-six thousand five hundred twenty-six' WHERE a=15711;\nUPDATE t2 SET c='eighty-four thousand one hundred seven' WHERE a=15712;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=15713;\nUPDATE t2 SET c='ninety thousand twenty-eight' WHERE a=15714;\nUPDATE t2 SET c='forty-one thousand seven hundred forty-two' WHERE a=15715;\nUPDATE t2 SET c='twenty-five thousand two hundred ninety-six' WHERE a=15716;\nUPDATE t2 SET c='seventy-six thousand seventeen' WHERE a=15717;\nUPDATE t2 SET c='twenty thousand seven hundred sixty-three' WHERE a=15718;\nUPDATE t2 SET c='sixty-four thousand four hundred forty-seven' WHERE a=15719;\nUPDATE t2 SET c='eleven thousand ninety-one' WHERE a=15720;\nUPDATE t2 SET c='fifteen thousand four hundred fifty-five' WHERE a=15721;\nUPDATE t2 SET c='nine thousand eight hundred seventy-eight' WHERE a=15722;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-seven' WHERE a=15723;\nUPDATE t2 SET c='seventy thousand forty-two' WHERE a=15724;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-two' WHERE a=15725;\nUPDATE t2 SET c='forty-two thousand nine hundred ninety-two' WHERE a=15726;\nUPDATE t2 SET c='twenty-five thousand twelve' WHERE a=15727;\nUPDATE t2 SET c='eighty-two thousand four hundred six' WHERE a=15728;\nUPDATE t2 SET c='forty-three thousand nine hundred sixty' WHERE a=15729;\nUPDATE t2 SET c='twenty-six thousand eight hundred twelve' WHERE a=15730;\nUPDATE t2 SET c='thirteen thousand ninety-seven' WHERE a=15731;\nUPDATE t2 SET c='forty-four thousand six hundred fifty-one' WHERE a=15732;\nUPDATE t2 SET c='fifty-one thousand three' WHERE a=15733;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty-one' WHERE a=15734;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy' WHERE a=15735;\nUPDATE t2 SET c='ninety thousand five hundred seventy' WHERE a=15736;\nUPDATE t2 SET c='seventeen thousand one hundred fifty' WHERE a=15737;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-four' WHERE a=15738;\nUPDATE t2 SET c='sixty thousand fifty-six' WHERE a=15739;\nUPDATE t2 SET c='twenty-six thousand one hundred twenty-three' WHERE a=15740;\nUPDATE t2 SET c='three thousand seven hundred nineteen' WHERE a=15741;\nUPDATE t2 SET c='eighty-eight thousand twenty-two' WHERE a=15742;\nUPDATE t2 SET c='five thousand three hundred three' WHERE a=15743;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty-two' WHERE a=15744;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety-seven' WHERE a=15745;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-eight' WHERE a=15746;\nUPDATE t2 SET c='two thousand three hundred ninety-nine' WHERE a=15747;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy' WHERE a=15748;\nUPDATE t2 SET c='fifty-three thousand seven hundred twelve' WHERE a=15749;\nUPDATE t2 SET c='fifty-seven thousand two hundred twelve' WHERE a=15750;\nUPDATE t2 SET c='sixty thousand nine hundred twenty' WHERE a=15751;\nUPDATE t2 SET c='eight thousand one hundred fifty-five' WHERE a=15752;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifty-six' WHERE a=15753;\nUPDATE t2 SET c='twenty-one thousand three hundred thirty-six' WHERE a=15754;\nUPDATE t2 SET c='three thousand two hundred sixty-one' WHERE a=15755;\nUPDATE t2 SET c='forty-two thousand thirty-six' WHERE a=15756;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=15757;\nUPDATE t2 SET c='fifty-seven thousand fifty-two' WHERE a=15758;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-six' WHERE a=15759;\nUPDATE t2 SET c='seventy-five thousand three hundred twenty-four' WHERE a=15760;\nUPDATE t2 SET c='sixty-nine thousand four hundred fifty-eight' WHERE a=15761;\nUPDATE t2 SET c='sixty-seven thousand three hundred forty-seven' WHERE a=15762;\nUPDATE t2 SET c='three thousand eight hundred sixty-six' WHERE a=15763;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-three' WHERE a=15764;\nUPDATE t2 SET c='thirty thousand nine hundred ninety-four' WHERE a=15765;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-one' WHERE a=15766;\nUPDATE t2 SET c='eighty-seven thousand nine hundred ninety-seven' WHERE a=15767;\nUPDATE t2 SET c='thirty-nine thousand eighty-five' WHERE a=15768;\nUPDATE t2 SET c='twenty-five thousand twenty-seven' WHERE a=15769;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-three' WHERE a=15770;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty' WHERE a=15771;\nUPDATE t2 SET c='ninety-five thousand one hundred fifty-five' WHERE a=15772;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-six' WHERE a=15773;\nUPDATE t2 SET c='fifty-two thousand eighty-eight' WHERE a=15774;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-two' WHERE a=15775;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-one' WHERE a=15776;\nUPDATE t2 SET c='ninety-two thousand three hundred sixty-four' WHERE a=15777;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty-five' WHERE a=15778;\nUPDATE t2 SET c='twenty-three thousand ninety-four' WHERE a=15779;\nUPDATE t2 SET c='ninety-four thousand five hundred two' WHERE a=15780;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-nine' WHERE a=15781;\nUPDATE t2 SET c='thirteen thousand seven hundred eighty-two' WHERE a=15782;\nUPDATE t2 SET c='sixty-six thousand ninety-eight' WHERE a=15783;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifty-five' WHERE a=15784;\nUPDATE t2 SET c='eighty-two thousand nine hundred eighty' WHERE a=15785;\nUPDATE t2 SET c='forty-four thousand seven hundred fifty' WHERE a=15786;\nUPDATE t2 SET c='sixteen thousand eighteen' WHERE a=15787;\nUPDATE t2 SET c='forty-six thousand nine hundred four' WHERE a=15788;\nUPDATE t2 SET c='fifty-nine thousand two hundred five' WHERE a=15789;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-one' WHERE a=15790;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-one' WHERE a=15791;\nUPDATE t2 SET c='eighty-two thousand two' WHERE a=15792;\nUPDATE t2 SET c='sixty-four thousand six hundred two' WHERE a=15793;\nUPDATE t2 SET c='sixty-nine thousand forty-seven' WHERE a=15794;\nUPDATE t2 SET c='forty-one thousand nine hundred thirty-one' WHERE a=15795;\nUPDATE t2 SET c='seventy-nine thousand one hundred forty-seven' WHERE a=15796;\nUPDATE t2 SET c='ninety-nine thousand nine hundred eighty-seven' WHERE a=15797;\nUPDATE t2 SET c='eighty-eight thousand six hundred fifteen' WHERE a=15798;\nUPDATE t2 SET c='thirteen thousand forty-four' WHERE a=15799;\nUPDATE t2 SET c='nine thousand nineteen' WHERE a=15800;\nUPDATE t2 SET c='forty-five thousand four hundred forty-seven' WHERE a=15801;\nUPDATE t2 SET c='eighty-two thousand three hundred fifty-four' WHERE a=15802;\nUPDATE t2 SET c='fifty-six thousand five hundred sixty' WHERE a=15803;\nUPDATE t2 SET c='thirty-eight thousand eight hundred six' WHERE a=15804;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-nine' WHERE a=15805;\nUPDATE t2 SET c='ten thousand nine hundred seventy-six' WHERE a=15806;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-two' WHERE a=15807;\nUPDATE t2 SET c='four thousand one hundred seventy-seven' WHERE a=15808;\nUPDATE t2 SET c='sixty thousand nine hundred ninety-seven' WHERE a=15809;\nUPDATE t2 SET c='forty-six thousand three hundred eighty-six' WHERE a=15810;\nUPDATE t2 SET c='ninety-nine thousand four hundred one' WHERE a=15811;\nUPDATE t2 SET c='seven thousand seven hundred five' WHERE a=15812;\nUPDATE t2 SET c='forty thousand seven hundred ninety-three' WHERE a=15813;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-four' WHERE a=15814;\nUPDATE t2 SET c='thirty-four thousand four hundred eighty' WHERE a=15815;\nUPDATE t2 SET c='eighty-five thousand five hundred sixty-eight' WHERE a=15816;\nUPDATE t2 SET c='seventy-four thousand three hundred sixteen' WHERE a=15817;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-eight' WHERE a=15818;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=15819;\nUPDATE t2 SET c='fifty-four thousand sixty-two' WHERE a=15820;\nUPDATE t2 SET c='thirty thousand nine hundred nineteen' WHERE a=15821;\nUPDATE t2 SET c='six thousand eight hundred fifty-one' WHERE a=15822;\nUPDATE t2 SET c='forty-six thousand fifty-four' WHERE a=15823;\nUPDATE t2 SET c='sixty-four thousand three hundred nine' WHERE a=15824;\nUPDATE t2 SET c='thirty-six thousand four hundred fourteen' WHERE a=15825;\nUPDATE t2 SET c='ninety-five thousand twenty-one' WHERE a=15826;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-two' WHERE a=15827;\nUPDATE t2 SET c='four thousand seven hundred seventy-seven' WHERE a=15828;\nUPDATE t2 SET c='sixty-two thousand four hundred eighty-five' WHERE a=15829;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-five' WHERE a=15830;\nUPDATE t2 SET c='seventy-two thousand sixty-one' WHERE a=15831;\nUPDATE t2 SET c='sixty-six thousand two hundred thirty-nine' WHERE a=15832;\nUPDATE t2 SET c='thirty-three thousand two hundred eleven' WHERE a=15833;\nUPDATE t2 SET c='nine thousand six hundred thirty-one' WHERE a=15834;\nUPDATE t2 SET c='seventy-one thousand five hundred eighty-seven' WHERE a=15835;\nUPDATE t2 SET c='twenty-two thousand two hundred twenty-eight' WHERE a=15836;\nUPDATE t2 SET c='eighty-three thousand seven hundred twenty-two' WHERE a=15837;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-two' WHERE a=15838;\nUPDATE t2 SET c='ninety-one thousand one hundred ninety-seven' WHERE a=15839;\nUPDATE t2 SET c='sixty-seven thousand six hundred thirty-three' WHERE a=15840;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-seven' WHERE a=15841;\nUPDATE t2 SET c='nineteen thousand five hundred seventy-six' WHERE a=15842;\nUPDATE t2 SET c='seventy-five thousand two hundred fifty-three' WHERE a=15843;\nUPDATE t2 SET c='eighty-four thousand two hundred thirty-two' WHERE a=15844;\nUPDATE t2 SET c='twenty-seven thousand four hundred six' WHERE a=15845;\nUPDATE t2 SET c='seventy-six thousand five hundred thirty-two' WHERE a=15846;\nUPDATE t2 SET c='twenty-five thousand six hundred fifty-one' WHERE a=15847;\nUPDATE t2 SET c='forty-six thousand six hundred twenty-nine' WHERE a=15848;\nUPDATE t2 SET c='fifteen thousand twenty-eight' WHERE a=15849;\nUPDATE t2 SET c='thirty-nine thousand three hundred thirty' WHERE a=15850;\nUPDATE t2 SET c='forty-six thousand five hundred sixty-six' WHERE a=15851;\nUPDATE t2 SET c='fifty-two thousand two hundred eighty-two' WHERE a=15852;\nUPDATE t2 SET c='eighty-nine thousand five hundred ninety-five' WHERE a=15853;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-two' WHERE a=15854;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixty-two' WHERE a=15855;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty' WHERE a=15856;\nUPDATE t2 SET c='twenty-one thousand eight hundred eighty-five' WHERE a=15857;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-seven' WHERE a=15858;\nUPDATE t2 SET c='eleven thousand two hundred twenty-four' WHERE a=15859;\nUPDATE t2 SET c='sixty-four thousand fifty-six' WHERE a=15860;\nUPDATE t2 SET c='eleven thousand seven hundred twenty' WHERE a=15861;\nUPDATE t2 SET c='thirty-one thousand eighty-two' WHERE a=15862;\nUPDATE t2 SET c='fifty-one thousand six' WHERE a=15863;\nUPDATE t2 SET c='eighty-three thousand four hundred fifty-three' WHERE a=15864;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-one' WHERE a=15865;\nUPDATE t2 SET c='eight thousand five hundred eighty-nine' WHERE a=15866;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-six' WHERE a=15867;\nUPDATE t2 SET c='seven thousand three hundred fifty-four' WHERE a=15868;\nUPDATE t2 SET c='forty-nine thousand two hundred forty-five' WHERE a=15869;\nUPDATE t2 SET c='thirty-seven thousand five hundred eighty-eight' WHERE a=15870;\nUPDATE t2 SET c='eighty-four thousand three hundred fifty-seven' WHERE a=15871;\nUPDATE t2 SET c='six thousand eight hundred fifty-two' WHERE a=15872;\nUPDATE t2 SET c='eighty thousand eight hundred seven' WHERE a=15873;\nUPDATE t2 SET c='seventy-one thousand seven hundred fifty' WHERE a=15874;\nUPDATE t2 SET c='forty-three thousand forty-three' WHERE a=15875;\nUPDATE t2 SET c='ninety-seven thousand eight hundred twenty-eight' WHERE a=15876;\nUPDATE t2 SET c='seventy-seven thousand nine hundred seven' WHERE a=15877;\nUPDATE t2 SET c='eighty-one thousand four hundred thirty-nine' WHERE a=15878;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighteen' WHERE a=15879;\nUPDATE t2 SET c='one thousand three hundred sixty-five' WHERE a=15880;\nUPDATE t2 SET c='twenty-one thousand nine hundred seventy' WHERE a=15881;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seventy-eight' WHERE a=15882;\nUPDATE t2 SET c='forty-one thousand five hundred thirty-two' WHERE a=15883;\nUPDATE t2 SET c='fifty-two thousand five hundred eighteen' WHERE a=15884;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-four' WHERE a=15885;\nUPDATE t2 SET c='seventy-one thousand eight hundred eleven' WHERE a=15886;\nUPDATE t2 SET c='fifty-nine thousand three hundred ninety-three' WHERE a=15887;\nUPDATE t2 SET c='fifty thousand nine hundred eighty-three' WHERE a=15888;\nUPDATE t2 SET c='ninety-two thousand six hundred' WHERE a=15889;\nUPDATE t2 SET c='sixty-six thousand five hundred four' WHERE a=15890;\nUPDATE t2 SET c='forty-nine thousand three hundred ten' WHERE a=15891;\nUPDATE t2 SET c='forty thousand nine hundred thirty-six' WHERE a=15892;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-six' WHERE a=15893;\nUPDATE t2 SET c='sixty-eight thousand one hundred ten' WHERE a=15894;\nUPDATE t2 SET c='one thousand one hundred twenty-four' WHERE a=15895;\nUPDATE t2 SET c='fifty thousand seven hundred fifty' WHERE a=15896;\nUPDATE t2 SET c='twenty-three thousand seven hundred seventy-seven' WHERE a=15897;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifteen' WHERE a=15898;\nUPDATE t2 SET c='thirty-three thousand five hundred seventeen' WHERE a=15899;\nUPDATE t2 SET c='forty-six thousand nine hundred thirteen' WHERE a=15900;\nUPDATE t2 SET c='fifty-three thousand five hundred ten' WHERE a=15901;\nUPDATE t2 SET c='thirty-seven thousand two hundred eighty-eight' WHERE a=15902;\nUPDATE t2 SET c='thirty-six thousand six hundred nine' WHERE a=15903;\nUPDATE t2 SET c='twenty thousand seven hundred forty-three' WHERE a=15904;\nUPDATE t2 SET c='thirty-four thousand four hundred fifty-nine' WHERE a=15905;\nUPDATE t2 SET c='forty-seven thousand four hundred fourteen' WHERE a=15906;\nUPDATE t2 SET c='fifty-seven thousand five hundred fifty-nine' WHERE a=15907;\nUPDATE t2 SET c='fifty-five thousand seven hundred five' WHERE a=15908;\nUPDATE t2 SET c='eleven thousand eight hundred ninety-one' WHERE a=15909;\nUPDATE t2 SET c='ten thousand six hundred forty-nine' WHERE a=15910;\nUPDATE t2 SET c='thirty-two thousand three hundred forty-seven' WHERE a=15911;\nUPDATE t2 SET c='fifty-eight thousand one hundred nine' WHERE a=15912;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-eight' WHERE a=15913;\nUPDATE t2 SET c='thirty-six thousand one hundred twenty-six' WHERE a=15914;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-nine' WHERE a=15915;\nUPDATE t2 SET c='seventy-two thousand six hundred seventy' WHERE a=15916;\nUPDATE t2 SET c='thirteen thousand four hundred seventeen' WHERE a=15917;\nUPDATE t2 SET c='thirty-seven thousand ninety-two' WHERE a=15918;\nUPDATE t2 SET c='seventy thousand seven hundred seventy-three' WHERE a=15919;\nUPDATE t2 SET c='twenty-nine thousand eight hundred sixty-eight' WHERE a=15920;\nUPDATE t2 SET c='forty-three thousand ninety-three' WHERE a=15921;\nUPDATE t2 SET c='eighty-seven thousand five hundred eighty' WHERE a=15922;\nUPDATE t2 SET c='seventy thousand one hundred eighty-six' WHERE a=15923;\nUPDATE t2 SET c='four thousand nine hundred eighty-eight' WHERE a=15924;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-six' WHERE a=15925;\nUPDATE t2 SET c='sixteen thousand four hundred fifty-four' WHERE a=15926;\nUPDATE t2 SET c='sixty-one thousand five hundred fifty-six' WHERE a=15927;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-three' WHERE a=15928;\nUPDATE t2 SET c='twenty-six thousand three hundred forty-two' WHERE a=15929;\nUPDATE t2 SET c='twelve thousand thirty-five' WHERE a=15930;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-eight' WHERE a=15931;\nUPDATE t2 SET c='ten thousand eight hundred forty-six' WHERE a=15932;\nUPDATE t2 SET c='six thousand five hundred sixty-five' WHERE a=15933;\nUPDATE t2 SET c='twenty-two thousand five hundred fifty-three' WHERE a=15934;\nUPDATE t2 SET c='nineteen thousand four hundred fifty-two' WHERE a=15935;\nUPDATE t2 SET c='forty-eight thousand five hundred fifty-four' WHERE a=15936;\nUPDATE t2 SET c='seven thousand five hundred sixty-four' WHERE a=15937;\nUPDATE t2 SET c='fifty thousand eight hundred ninety' WHERE a=15938;\nUPDATE t2 SET c='fifty-four thousand seven hundred eight' WHERE a=15939;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventy-nine' WHERE a=15940;\nUPDATE t2 SET c='eighty thousand four hundred' WHERE a=15941;\nUPDATE t2 SET c='seventy-eight thousand nine hundred seventy-four' WHERE a=15942;\nUPDATE t2 SET c='forty-six thousand seven hundred eighty-six' WHERE a=15943;\nUPDATE t2 SET c='ninety-seven thousand six hundred sixty-eight' WHERE a=15944;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-eight' WHERE a=15945;\nUPDATE t2 SET c='twenty-nine thousand five hundred fifty-four' WHERE a=15946;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-nine' WHERE a=15947;\nUPDATE t2 SET c='seventy-one thousand eight hundred nine' WHERE a=15948;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty' WHERE a=15949;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-eight' WHERE a=15950;\nUPDATE t2 SET c='seventy-three thousand three hundred forty' WHERE a=15951;\nUPDATE t2 SET c='fifty-seven thousand five hundred twenty' WHERE a=15952;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty' WHERE a=15953;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-five' WHERE a=15954;\nUPDATE t2 SET c='nine hundred seven' WHERE a=15955;\nUPDATE t2 SET c='forty-five thousand five hundred thirty-two' WHERE a=15956;\nUPDATE t2 SET c='twelve thousand nine hundred nineteen' WHERE a=15957;\nUPDATE t2 SET c='eighty thousand nine hundred eighty-three' WHERE a=15958;\nUPDATE t2 SET c='twenty-one thousand one hundred forty' WHERE a=15959;\nUPDATE t2 SET c='twenty-three thousand nine hundred forty-four' WHERE a=15960;\nUPDATE t2 SET c='seventy-eight thousand two hundred twelve' WHERE a=15961;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifteen' WHERE a=15962;\nUPDATE t2 SET c='thirteen thousand two hundred fifty-one' WHERE a=15963;\nUPDATE t2 SET c='seventy-one thousand one hundred eighteen' WHERE a=15964;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty-one' WHERE a=15965;\nUPDATE t2 SET c='fifty-five thousand six hundred sixty-three' WHERE a=15966;\nUPDATE t2 SET c='forty-five thousand four hundred twenty-nine' WHERE a=15967;\nUPDATE t2 SET c='fifty thousand five hundred sixty-five' WHERE a=15968;\nUPDATE t2 SET c='ninety-eight thousand six hundred twenty' WHERE a=15969;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty' WHERE a=15970;\nUPDATE t2 SET c='forty thousand five hundred fifty-five' WHERE a=15971;\nUPDATE t2 SET c='sixty-two thousand two hundred forty-seven' WHERE a=15972;\nUPDATE t2 SET c='forty-six thousand three hundred fifty-nine' WHERE a=15973;\nUPDATE t2 SET c='twenty-seven thousand three hundred seven' WHERE a=15974;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty' WHERE a=15975;\nUPDATE t2 SET c='ninety-five thousand four hundred sixty-six' WHERE a=15976;\nUPDATE t2 SET c='eighty-six thousand one hundred seventy-nine' WHERE a=15977;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-eight' WHERE a=15978;\nUPDATE t2 SET c='fifty thousand four hundred seventeen' WHERE a=15979;\nUPDATE t2 SET c='ten thousand eight hundred seventy-four' WHERE a=15980;\nUPDATE t2 SET c='ninety-two thousand nineteen' WHERE a=15981;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy' WHERE a=15982;\nUPDATE t2 SET c='seven thousand three hundred thirty-eight' WHERE a=15983;\nUPDATE t2 SET c='seventy-six thousand seventy-eight' WHERE a=15984;\nUPDATE t2 SET c='thirty-five thousand six hundred thirty-seven' WHERE a=15985;\nUPDATE t2 SET c='eighty thousand five hundred ten' WHERE a=15986;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-nine' WHERE a=15987;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-five' WHERE a=15988;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-seven' WHERE a=15989;\nUPDATE t2 SET c='sixty-eight thousand six hundred seventy-nine' WHERE a=15990;\nUPDATE t2 SET c='fifty-five thousand four hundred forty-six' WHERE a=15991;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ten' WHERE a=15992;\nUPDATE t2 SET c='seventy-one thousand five hundred eighty-eight' WHERE a=15993;\nUPDATE t2 SET c='four thousand seventy-four' WHERE a=15994;\nUPDATE t2 SET c='eighty-five thousand four hundred twenty-six' WHERE a=15995;\nUPDATE t2 SET c='ninety thousand seven hundred thirty-two' WHERE a=15996;\nUPDATE t2 SET c='fifty-four thousand sixty-four' WHERE a=15997;\nUPDATE t2 SET c='ninety-seven thousand one hundred' WHERE a=15998;\nUPDATE t2 SET c='ninety-one thousand six hundred forty-six' WHERE a=15999;\nUPDATE t2 SET c='two thousand five hundred seventy-seven' WHERE a=16000;\nUPDATE t2 SET c='eighty-one thousand three hundred forty' WHERE a=16001;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-five' WHERE a=16002;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-five' WHERE a=16003;\nUPDATE t2 SET c='thirteen thousand eight hundred nineteen' WHERE a=16004;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty' WHERE a=16005;\nUPDATE t2 SET c='seventy-six thousand seven hundred twenty-two' WHERE a=16006;\nUPDATE t2 SET c='fifty-one thousand three hundred forty-seven' WHERE a=16007;\nUPDATE t2 SET c='twenty-five thousand four hundred forty' WHERE a=16008;\nUPDATE t2 SET c='forty thousand eight hundred thirty-one' WHERE a=16009;\nUPDATE t2 SET c='nineteen thousand three hundred sixty-seven' WHERE a=16010;\nUPDATE t2 SET c='twenty-eight thousand one hundred ninety-five' WHERE a=16011;\nUPDATE t2 SET c='fifty-four thousand one hundred nine' WHERE a=16012;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-eight' WHERE a=16013;\nUPDATE t2 SET c='twenty-three thousand six hundred seventy-nine' WHERE a=16014;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-five' WHERE a=16015;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty-two' WHERE a=16016;\nUPDATE t2 SET c='thirty-three thousand nine hundred one' WHERE a=16017;\nUPDATE t2 SET c='seventy-five thousand three hundred eighty-five' WHERE a=16018;\nUPDATE t2 SET c='sixty-one thousand three hundred eighty-three' WHERE a=16019;\nUPDATE t2 SET c='thirty-two thousand one hundred thirteen' WHERE a=16020;\nUPDATE t2 SET c='seventy-seven thousand sixty-nine' WHERE a=16021;\nUPDATE t2 SET c='fifty-five thousand twenty-seven' WHERE a=16022;\nUPDATE t2 SET c='fifty-nine thousand nine hundred thirteen' WHERE a=16023;\nUPDATE t2 SET c='twenty-nine thousand five hundred fifty-five' WHERE a=16024;\nUPDATE t2 SET c='forty-seven thousand eight hundred thirty-three' WHERE a=16025;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy' WHERE a=16026;\nUPDATE t2 SET c='seventy-six thousand seven hundred sixty-five' WHERE a=16027;\nUPDATE t2 SET c='ninety-seven thousand five hundred twenty-seven' WHERE a=16028;\nUPDATE t2 SET c='fifty thousand one hundred eighty-nine' WHERE a=16029;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifty-eight' WHERE a=16030;\nUPDATE t2 SET c='fifty-eight thousand sixty-three' WHERE a=16031;\nUPDATE t2 SET c='ninety thousand five hundred eighty-two' WHERE a=16032;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventy-five' WHERE a=16033;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-five' WHERE a=16034;\nUPDATE t2 SET c='sixty-five thousand ninety-one' WHERE a=16035;\nUPDATE t2 SET c='six thousand three hundred thirty-six' WHERE a=16036;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-seven' WHERE a=16037;\nUPDATE t2 SET c='seventy-one thousand one hundred ninety-eight' WHERE a=16038;\nUPDATE t2 SET c='thirty-eight thousand four hundred forty-seven' WHERE a=16039;\nUPDATE t2 SET c='twenty-eight thousand seven hundred seventy' WHERE a=16040;\nUPDATE t2 SET c='eighty-five thousand three hundred five' WHERE a=16041;\nUPDATE t2 SET c='seventy-four thousand two hundred thirty-six' WHERE a=16042;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-two' WHERE a=16043;\nUPDATE t2 SET c='four hundred sixty-three' WHERE a=16044;\nUPDATE t2 SET c='nine thousand six hundred sixty-eight' WHERE a=16045;\nUPDATE t2 SET c='thirty thousand three hundred ninety-four' WHERE a=16046;\nUPDATE t2 SET c='thirty-five thousand seventy-one' WHERE a=16047;\nUPDATE t2 SET c='seventy-three thousand nine hundred nineteen' WHERE a=16048;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-six' WHERE a=16049;\nUPDATE t2 SET c='sixty-seven thousand one hundred thirty-six' WHERE a=16050;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty' WHERE a=16051;\nUPDATE t2 SET c='thirty-seven thousand thirty-two' WHERE a=16052;\nUPDATE t2 SET c='sixty-two thousand six hundred sixty-eight' WHERE a=16053;\nUPDATE t2 SET c='fifty-one thousand two' WHERE a=16054;\nUPDATE t2 SET c='ninety-seven thousand seven hundred eighty-five' WHERE a=16055;\nUPDATE t2 SET c='seven thousand six hundred fifteen' WHERE a=16056;\nUPDATE t2 SET c='seventy-five thousand eight hundred six' WHERE a=16057;\nUPDATE t2 SET c='forty-eight thousand forty-four' WHERE a=16058;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-six' WHERE a=16059;\nUPDATE t2 SET c='thirty-seven thousand five hundred seven' WHERE a=16060;\nUPDATE t2 SET c='twenty-two thousand eight hundred sixty-three' WHERE a=16061;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty-two' WHERE a=16062;\nUPDATE t2 SET c='sixty-six thousand eight hundred one' WHERE a=16063;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-six' WHERE a=16064;\nUPDATE t2 SET c='seventy-three thousand two hundred thirty-nine' WHERE a=16065;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-two' WHERE a=16066;\nUPDATE t2 SET c='twenty thousand one hundred fifty-one' WHERE a=16067;\nUPDATE t2 SET c='forty-nine thousand eight hundred nineteen' WHERE a=16068;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty' WHERE a=16069;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-five' WHERE a=16070;\nUPDATE t2 SET c='sixty-six thousand six hundred fifty-three' WHERE a=16071;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy-three' WHERE a=16072;\nUPDATE t2 SET c='three thousand two hundred twenty-two' WHERE a=16073;\nUPDATE t2 SET c='fifty-one thousand forty-three' WHERE a=16074;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-six' WHERE a=16075;\nUPDATE t2 SET c='fifty thousand nine hundred twenty-seven' WHERE a=16076;\nUPDATE t2 SET c='seventy thousand nine hundred twelve' WHERE a=16077;\nUPDATE t2 SET c='forty-six thousand four' WHERE a=16078;\nUPDATE t2 SET c='eleven thousand seven hundred seventy-four' WHERE a=16079;\nUPDATE t2 SET c='seventy thousand two hundred sixty-three' WHERE a=16080;\nUPDATE t2 SET c='four thousand eight hundred ninety-four' WHERE a=16081;\nUPDATE t2 SET c='eighty-four thousand eight hundred seventy-six' WHERE a=16082;\nUPDATE t2 SET c='eighty-three thousand four hundred sixty-six' WHERE a=16083;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-five' WHERE a=16084;\nUPDATE t2 SET c='ten thousand three hundred ninety-seven' WHERE a=16085;\nUPDATE t2 SET c='forty-six thousand five hundred twenty-eight' WHERE a=16086;\nUPDATE t2 SET c='thirty-three thousand twenty-three' WHERE a=16087;\nUPDATE t2 SET c='forty-five thousand two hundred thirty-nine' WHERE a=16088;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-nine' WHERE a=16089;\nUPDATE t2 SET c='eighty-six thousand thirty' WHERE a=16090;\nUPDATE t2 SET c='thirteen thousand two hundred ninety-eight' WHERE a=16091;\nUPDATE t2 SET c='two thousand three hundred twenty-seven' WHERE a=16092;\nUPDATE t2 SET c='eighty-three thousand ninety-eight' WHERE a=16093;\nUPDATE t2 SET c='fifty-one thousand seven hundred sixty-seven' WHERE a=16094;\nUPDATE t2 SET c='seventy-six thousand five hundred thirty-nine' WHERE a=16095;\nUPDATE t2 SET c='thirty-three thousand three hundred twenty-six' WHERE a=16096;\nUPDATE t2 SET c='sixty-five thousand seven hundred eighteen' WHERE a=16097;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-seven' WHERE a=16098;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-four' WHERE a=16099;\nUPDATE t2 SET c='seventeen thousand six hundred ninety-three' WHERE a=16100;\nUPDATE t2 SET c='sixty-five thousand five hundred forty' WHERE a=16101;\nUPDATE t2 SET c='sixty-two thousand one hundred ninety-nine' WHERE a=16102;\nUPDATE t2 SET c='twenty-nine thousand one hundred twelve' WHERE a=16103;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-one' WHERE a=16104;\nUPDATE t2 SET c='thirty-six thousand seven hundred ninety-four' WHERE a=16105;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-nine' WHERE a=16106;\nUPDATE t2 SET c='forty-eight thousand five hundred eighty-two' WHERE a=16107;\nUPDATE t2 SET c='twenty-eight thousand seven hundred twenty-three' WHERE a=16108;\nUPDATE t2 SET c='sixty-six thousand nine hundred twenty-five' WHERE a=16109;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-one' WHERE a=16110;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-one' WHERE a=16111;\nUPDATE t2 SET c='forty thousand one hundred seventy-six' WHERE a=16112;\nUPDATE t2 SET c='ninety-two thousand six hundred thirty-six' WHERE a=16113;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-four' WHERE a=16114;\nUPDATE t2 SET c='three thousand six hundred twenty-seven' WHERE a=16115;\nUPDATE t2 SET c='three thousand seven hundred ninety-five' WHERE a=16116;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety-two' WHERE a=16117;\nUPDATE t2 SET c='sixty-one thousand eighty-seven' WHERE a=16118;\nUPDATE t2 SET c='nineteen thousand five hundred seventeen' WHERE a=16119;\nUPDATE t2 SET c='nine thousand two hundred seventy-six' WHERE a=16120;\nUPDATE t2 SET c='eighty-six thousand six hundred thirty' WHERE a=16121;\nUPDATE t2 SET c='ninety-five thousand eight hundred forty-four' WHERE a=16122;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-eight' WHERE a=16123;\nUPDATE t2 SET c='ninety-six thousand one hundred five' WHERE a=16124;\nUPDATE t2 SET c='seventy thousand seven hundred forty-nine' WHERE a=16125;\nUPDATE t2 SET c='eighty-seven thousand four hundred forty-nine' WHERE a=16126;\nUPDATE t2 SET c='eighty-seven thousand four hundred twelve' WHERE a=16127;\nUPDATE t2 SET c='twenty-three thousand two hundred ninety-three' WHERE a=16128;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=16129;\nUPDATE t2 SET c='fifty-six thousand seven hundred ten' WHERE a=16130;\nUPDATE t2 SET c='seventy-five thousand eight hundred fifty-three' WHERE a=16131;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-three' WHERE a=16132;\nUPDATE t2 SET c='thirteen thousand two hundred fifty-six' WHERE a=16133;\nUPDATE t2 SET c='eighty-two thousand nine hundred sixty-five' WHERE a=16134;\nUPDATE t2 SET c='thirty-one thousand one hundred one' WHERE a=16135;\nUPDATE t2 SET c='sixty-three thousand five hundred forty-eight' WHERE a=16136;\nUPDATE t2 SET c='seventy-five thousand thirty-two' WHERE a=16137;\nUPDATE t2 SET c='six thousand six hundred seventy-nine' WHERE a=16138;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty-four' WHERE a=16139;\nUPDATE t2 SET c='sixty-two thousand five hundred nineteen' WHERE a=16140;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty-seven' WHERE a=16141;\nUPDATE t2 SET c='thirty-seven thousand two hundred forty-six' WHERE a=16142;\nUPDATE t2 SET c='seventy-seven thousand eighty-nine' WHERE a=16143;\nUPDATE t2 SET c='twenty-one thousand one hundred eighty-four' WHERE a=16144;\nUPDATE t2 SET c='seven thousand seven hundred seventy' WHERE a=16145;\nUPDATE t2 SET c='nine thousand eight hundred sixty-nine' WHERE a=16146;\nUPDATE t2 SET c='seventy-three thousand seven hundred twenty' WHERE a=16147;\nUPDATE t2 SET c='fifty-one thousand nine hundred four' WHERE a=16148;\nUPDATE t2 SET c='eighty-eight thousand eight hundred ninety-five' WHERE a=16149;\nUPDATE t2 SET c='thirty-six thousand one hundred four' WHERE a=16150;\nUPDATE t2 SET c='forty thousand one hundred fifty-seven' WHERE a=16151;\nUPDATE t2 SET c='forty-seven thousand one hundred sixty-eight' WHERE a=16152;\nUPDATE t2 SET c='five hundred three' WHERE a=16153;\nUPDATE t2 SET c='forty-one thousand two hundred thirty-eight' WHERE a=16154;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-five' WHERE a=16155;\nUPDATE t2 SET c='fifty-eight thousand eighty-one' WHERE a=16156;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixty' WHERE a=16157;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-three' WHERE a=16158;\nUPDATE t2 SET c='sixty-four thousand three hundred ninety-seven' WHERE a=16159;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty-six' WHERE a=16160;\nUPDATE t2 SET c='eighty-eight thousand one hundred eleven' WHERE a=16161;\nUPDATE t2 SET c='fifty-four thousand nine hundred thirty-three' WHERE a=16162;\nUPDATE t2 SET c='sixty-two thousand six hundred forty' WHERE a=16163;\nUPDATE t2 SET c='fifty-four thousand four hundred sixty-two' WHERE a=16164;\nUPDATE t2 SET c='thirty-three thousand four hundred ten' WHERE a=16165;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-six' WHERE a=16166;\nUPDATE t2 SET c='eleven thousand five hundred twenty' WHERE a=16167;\nUPDATE t2 SET c='thirty-one thousand five hundred forty-six' WHERE a=16168;\nUPDATE t2 SET c='fifty-six thousand two hundred ninety-one' WHERE a=16169;\nUPDATE t2 SET c='forty-five thousand two hundred twelve' WHERE a=16170;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-six' WHERE a=16171;\nUPDATE t2 SET c='one thousand forty-seven' WHERE a=16172;\nUPDATE t2 SET c='eighteen thousand fifty-four' WHERE a=16173;\nUPDATE t2 SET c='eighteen thousand two hundred forty-two' WHERE a=16174;\nUPDATE t2 SET c='forty-one thousand six hundred fifty-six' WHERE a=16175;\nUPDATE t2 SET c='twenty-nine thousand ninety-six' WHERE a=16176;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-three' WHERE a=16177;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy-four' WHERE a=16178;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-one' WHERE a=16179;\nUPDATE t2 SET c='forty thousand seven hundred forty-three' WHERE a=16180;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=16181;\nUPDATE t2 SET c='fourteen thousand two hundred eight' WHERE a=16182;\nUPDATE t2 SET c='sixty-eight thousand five hundred seventy-two' WHERE a=16183;\nUPDATE t2 SET c='seventy-eight thousand three hundred thirty-one' WHERE a=16184;\nUPDATE t2 SET c='thirty-six thousand seven hundred twenty-five' WHERE a=16185;\nUPDATE t2 SET c='thirty-two thousand seven hundred eighteen' WHERE a=16186;\nUPDATE t2 SET c='twenty-six thousand four hundred forty-nine' WHERE a=16187;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-five' WHERE a=16188;\nUPDATE t2 SET c='forty-nine thousand seven hundred ninety-four' WHERE a=16189;\nUPDATE t2 SET c='forty-three thousand seven hundred eighty-three' WHERE a=16190;\nUPDATE t2 SET c='seventy-nine thousand three hundred thirty-three' WHERE a=16191;\nUPDATE t2 SET c='twenty-seven thousand four hundred seventy-nine' WHERE a=16192;\nUPDATE t2 SET c='eighty-two thousand two hundred sixteen' WHERE a=16193;\nUPDATE t2 SET c='eighty-four thousand six hundred eighty-three' WHERE a=16194;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-four' WHERE a=16195;\nUPDATE t2 SET c='forty-six thousand eighty-four' WHERE a=16196;\nUPDATE t2 SET c='sixty-four thousand seven hundred forty-two' WHERE a=16197;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-seven' WHERE a=16198;\nUPDATE t2 SET c='fifty thousand five hundred sixty-two' WHERE a=16199;\nUPDATE t2 SET c='twelve thousand three hundred sixty-eight' WHERE a=16200;\nUPDATE t2 SET c='nineteen thousand seven hundred forty-eight' WHERE a=16201;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-one' WHERE a=16202;\nUPDATE t2 SET c='seventy-nine thousand one hundred twenty-two' WHERE a=16203;\nUPDATE t2 SET c='sixty-seven thousand nine hundred fifty-one' WHERE a=16204;\nUPDATE t2 SET c='eighty-eight thousand three hundred nineteen' WHERE a=16205;\nUPDATE t2 SET c='fifty-six thousand seventy-three' WHERE a=16206;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=16207;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-nine' WHERE a=16208;\nUPDATE t2 SET c='fifty thousand eight hundred twenty-one' WHERE a=16209;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty' WHERE a=16210;\nUPDATE t2 SET c='eighty-eight thousand five hundred fifty-eight' WHERE a=16211;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-two' WHERE a=16212;\nUPDATE t2 SET c='thirty-eight thousand four hundred six' WHERE a=16213;\nUPDATE t2 SET c='ninety-one thousand four hundred twenty' WHERE a=16214;\nUPDATE t2 SET c='forty-one thousand fifty-seven' WHERE a=16215;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty' WHERE a=16216;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-eight' WHERE a=16217;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-four' WHERE a=16218;\nUPDATE t2 SET c='ninety-nine thousand eight hundred six' WHERE a=16219;\nUPDATE t2 SET c='thirty-two thousand one hundred seventeen' WHERE a=16220;\nUPDATE t2 SET c='fifty-five thousand five hundred twenty' WHERE a=16221;\nUPDATE t2 SET c='thirty-eight thousand two hundred nineteen' WHERE a=16222;\nUPDATE t2 SET c='fifty-two thousand nine hundred fifty-five' WHERE a=16223;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-eight' WHERE a=16224;\nUPDATE t2 SET c='ninety-one thousand eight hundred seventeen' WHERE a=16225;\nUPDATE t2 SET c='eighty-six thousand six hundred forty-three' WHERE a=16226;\nUPDATE t2 SET c='seventy-nine thousand four hundred twenty-six' WHERE a=16227;\nUPDATE t2 SET c='ninety-five thousand seven hundred seventy-seven' WHERE a=16228;\nUPDATE t2 SET c='fifty-four thousand three hundred thirteen' WHERE a=16229;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-eight' WHERE a=16230;\nUPDATE t2 SET c='ninety-one thousand one hundred eighty' WHERE a=16231;\nUPDATE t2 SET c='fourteen thousand four hundred thirty-seven' WHERE a=16232;\nUPDATE t2 SET c='ninety-three thousand seven hundred forty-four' WHERE a=16233;\nUPDATE t2 SET c='fifty-eight thousand six hundred eighty-eight' WHERE a=16234;\nUPDATE t2 SET c='eighty-three thousand sixty' WHERE a=16235;\nUPDATE t2 SET c='seventy-nine thousand seven hundred ninety-five' WHERE a=16236;\nUPDATE t2 SET c='ninety-six thousand two hundred seventy-five' WHERE a=16237;\nUPDATE t2 SET c='seventy-three thousand seventy-six' WHERE a=16238;\nUPDATE t2 SET c='sixty-eight thousand six hundred nine' WHERE a=16239;\nUPDATE t2 SET c='forty-two thousand five hundred twenty-three' WHERE a=16240;\nUPDATE t2 SET c='eight thousand four hundred thirty-six' WHERE a=16241;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-two' WHERE a=16242;\nUPDATE t2 SET c='thirty-seven thousand nine hundred forty-five' WHERE a=16243;\nUPDATE t2 SET c='sixty-eight thousand nine hundred fifty-seven' WHERE a=16244;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-two' WHERE a=16245;\nUPDATE t2 SET c='forty-eight thousand four hundred twenty-eight' WHERE a=16246;\nUPDATE t2 SET c='four thousand seven hundred forty-four' WHERE a=16247;\nUPDATE t2 SET c='thirty-seven thousand ninety-seven' WHERE a=16248;\nUPDATE t2 SET c='eighty-six thousand four hundred forty' WHERE a=16249;\nUPDATE t2 SET c='eleven thousand nine hundred six' WHERE a=16250;\nUPDATE t2 SET c='sixty-six thousand two hundred twenty-three' WHERE a=16251;\nUPDATE t2 SET c='sixty-two thousand four hundred sixty-six' WHERE a=16252;\nUPDATE t2 SET c='twenty thousand eight hundred forty-six' WHERE a=16253;\nUPDATE t2 SET c='ninety-two thousand five hundred fifty-seven' WHERE a=16254;\nUPDATE t2 SET c='fifty-eight thousand one hundred fifteen' WHERE a=16255;\nUPDATE t2 SET c='six thousand six hundred twenty-four' WHERE a=16256;\nUPDATE t2 SET c='ninety-eight thousand two hundred eighty-one' WHERE a=16257;\nUPDATE t2 SET c='eighty-two thousand seven hundred sixty-eight' WHERE a=16258;\nUPDATE t2 SET c='five thousand three' WHERE a=16259;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-four' WHERE a=16260;\nUPDATE t2 SET c='eighty thousand seven hundred twenty-eight' WHERE a=16261;\nUPDATE t2 SET c='seventy-nine thousand one hundred forty-two' WHERE a=16262;\nUPDATE t2 SET c='twenty-nine thousand one hundred ninety' WHERE a=16263;\nUPDATE t2 SET c='eighty-five thousand six hundred nine' WHERE a=16264;\nUPDATE t2 SET c='thirty-nine thousand eight hundred eighty-six' WHERE a=16265;\nUPDATE t2 SET c='thirty-three thousand three hundred forty-six' WHERE a=16266;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirty-seven' WHERE a=16267;\nUPDATE t2 SET c='four thousand nine hundred seventeen' WHERE a=16268;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-three' WHERE a=16269;\nUPDATE t2 SET c='twenty-six thousand five hundred forty-eight' WHERE a=16270;\nUPDATE t2 SET c='ninety-two thousand two hundred eighty-eight' WHERE a=16271;\nUPDATE t2 SET c='ten thousand one hundred twenty-three' WHERE a=16272;\nUPDATE t2 SET c='twenty-eight thousand two hundred two' WHERE a=16273;\nUPDATE t2 SET c='eighty-six thousand one hundred thirteen' WHERE a=16274;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=16275;\nUPDATE t2 SET c='eighty-five thousand twenty-two' WHERE a=16276;\nUPDATE t2 SET c='seventy-two thousand eight hundred seven' WHERE a=16277;\nUPDATE t2 SET c='five thousand six hundred nine' WHERE a=16278;\nUPDATE t2 SET c='twelve thousand five hundred twenty-four' WHERE a=16279;\nUPDATE t2 SET c='fourteen thousand eight hundred eleven' WHERE a=16280;\nUPDATE t2 SET c='fifty-eight thousand one hundred eighty-seven' WHERE a=16281;\nUPDATE t2 SET c='ninety-six thousand nine hundred fifty-two' WHERE a=16282;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-eight' WHERE a=16283;\nUPDATE t2 SET c='forty-one thousand eight hundred twenty-eight' WHERE a=16284;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-three' WHERE a=16285;\nUPDATE t2 SET c='fifty-three thousand three hundred twelve' WHERE a=16286;\nUPDATE t2 SET c='ninety-two thousand eight hundred twenty-two' WHERE a=16287;\nUPDATE t2 SET c='seventy-four thousand six hundred one' WHERE a=16288;\nUPDATE t2 SET c='eighty-nine thousand five hundred seventy-three' WHERE a=16289;\nUPDATE t2 SET c='forty-seven thousand five hundred ninety-eight' WHERE a=16290;\nUPDATE t2 SET c='thirty-six thousand seven hundred ten' WHERE a=16291;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-seven' WHERE a=16292;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty' WHERE a=16293;\nUPDATE t2 SET c='eighteen thousand one hundred ninety-one' WHERE a=16294;\nUPDATE t2 SET c='sixty-two thousand eighty' WHERE a=16295;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-three' WHERE a=16296;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty-eight' WHERE a=16297;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-nine' WHERE a=16298;\nUPDATE t2 SET c='ninety-three thousand four hundred fifty-seven' WHERE a=16299;\nUPDATE t2 SET c='eighty-five thousand three hundred fifty-three' WHERE a=16300;\nUPDATE t2 SET c='thirty-five thousand six hundred one' WHERE a=16301;\nUPDATE t2 SET c='twenty-two thousand three hundred sixty-one' WHERE a=16302;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-six' WHERE a=16303;\nUPDATE t2 SET c='eighty-seven thousand eight hundred seventy-six' WHERE a=16304;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighteen' WHERE a=16305;\nUPDATE t2 SET c='sixty-two thousand seven hundred seventy-four' WHERE a=16306;\nUPDATE t2 SET c='forty-six thousand four hundred thirty-one' WHERE a=16307;\nUPDATE t2 SET c='ninety-one thousand nineteen' WHERE a=16308;\nUPDATE t2 SET c='eighteen thousand thirteen' WHERE a=16309;\nUPDATE t2 SET c='nine thousand two hundred fifty-seven' WHERE a=16310;\nUPDATE t2 SET c='eighty-one thousand one hundred sixty-one' WHERE a=16311;\nUPDATE t2 SET c='forty thousand three hundred thirty-eight' WHERE a=16312;\nUPDATE t2 SET c='twenty-nine thousand nine hundred ten' WHERE a=16313;\nUPDATE t2 SET c='thirteen thousand fifty-two' WHERE a=16314;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-three' WHERE a=16315;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-seven' WHERE a=16316;\nUPDATE t2 SET c='sixteen thousand one hundred' WHERE a=16317;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-five' WHERE a=16318;\nUPDATE t2 SET c='fifty-one thousand eight hundred sixty-three' WHERE a=16319;\nUPDATE t2 SET c='fifty-eight thousand five hundred ninety-eight' WHERE a=16320;\nUPDATE t2 SET c='eighty-one thousand nine hundred thirty-eight' WHERE a=16321;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-nine' WHERE a=16322;\nUPDATE t2 SET c='seventy thousand five hundred fifteen' WHERE a=16323;\nUPDATE t2 SET c='ninety thousand seven hundred thirty-four' WHERE a=16324;\nUPDATE t2 SET c='fifty-two thousand five hundred ninety-six' WHERE a=16325;\nUPDATE t2 SET c='fifty-two thousand two hundred seventy-nine' WHERE a=16326;\nUPDATE t2 SET c='eighty-eight thousand six hundred one' WHERE a=16327;\nUPDATE t2 SET c='sixty-five thousand six hundred thirty-three' WHERE a=16328;\nUPDATE t2 SET c='ninety thousand seven hundred thirty-four' WHERE a=16329;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-one' WHERE a=16330;\nUPDATE t2 SET c='ninety-six thousand five hundred seventeen' WHERE a=16331;\nUPDATE t2 SET c='eighty-one thousand two hundred ninety-six' WHERE a=16332;\nUPDATE t2 SET c='seventeen thousand four hundred forty-five' WHERE a=16333;\nUPDATE t2 SET c='ninety-six thousand two hundred ninety-four' WHERE a=16334;\nUPDATE t2 SET c='forty-two thousand two hundred thirty-eight' WHERE a=16335;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-three' WHERE a=16336;\nUPDATE t2 SET c='eighty thousand four hundred seventy-three' WHERE a=16337;\nUPDATE t2 SET c='fifty-five thousand five hundred thirty-nine' WHERE a=16338;\nUPDATE t2 SET c='sixty-five thousand eight hundred ninety-one' WHERE a=16339;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-three' WHERE a=16340;\nUPDATE t2 SET c='seventy-seven thousand twenty-five' WHERE a=16341;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-two' WHERE a=16342;\nUPDATE t2 SET c='four thousand three hundred seventy-eight' WHERE a=16343;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-three' WHERE a=16344;\nUPDATE t2 SET c='sixty thousand three hundred eighty-three' WHERE a=16345;\nUPDATE t2 SET c='sixty-five thousand eighty-nine' WHERE a=16346;\nUPDATE t2 SET c='twenty-three thousand seven hundred nineteen' WHERE a=16347;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-seven' WHERE a=16348;\nUPDATE t2 SET c='forty-two thousand seven hundred ninety-five' WHERE a=16349;\nUPDATE t2 SET c='seventy-three thousand five hundred seventy-four' WHERE a=16350;\nUPDATE t2 SET c='eight thousand nine hundred sixty-two' WHERE a=16351;\nUPDATE t2 SET c='thirty-three thousand one hundred eighty-two' WHERE a=16352;\nUPDATE t2 SET c='sixty-eight thousand seven hundred thirty-six' WHERE a=16353;\nUPDATE t2 SET c='forty-three thousand four hundred five' WHERE a=16354;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-two' WHERE a=16355;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixteen' WHERE a=16356;\nUPDATE t2 SET c='thirteen thousand nine hundred forty' WHERE a=16357;\nUPDATE t2 SET c='ninety-one thousand eight hundred seven' WHERE a=16358;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-six' WHERE a=16359;\nUPDATE t2 SET c='forty thousand four hundred seven' WHERE a=16360;\nUPDATE t2 SET c='fifty-nine thousand seven hundred ninety-nine' WHERE a=16361;\nUPDATE t2 SET c='eighty-three thousand six hundred seventy-seven' WHERE a=16362;\nUPDATE t2 SET c='forty-seven thousand eighteen' WHERE a=16363;\nUPDATE t2 SET c='one thousand one hundred ninety-six' WHERE a=16364;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-six' WHERE a=16365;\nUPDATE t2 SET c='eighty-one thousand fifty-two' WHERE a=16366;\nUPDATE t2 SET c='ninety-four thousand seven hundred ninety-one' WHERE a=16367;\nUPDATE t2 SET c='twenty-six thousand six hundred fifty' WHERE a=16368;\nUPDATE t2 SET c='seventy-six thousand eight hundred forty-one' WHERE a=16369;\nUPDATE t2 SET c='twenty-eight thousand eight hundred twenty-six' WHERE a=16370;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-two' WHERE a=16371;\nUPDATE t2 SET c='thirty-nine thousand twenty-four' WHERE a=16372;\nUPDATE t2 SET c='seventy-five thousand seven hundred forty-five' WHERE a=16373;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-two' WHERE a=16374;\nUPDATE t2 SET c='twenty-two thousand seven hundred eighty-six' WHERE a=16375;\nUPDATE t2 SET c='sixty-nine thousand five hundred twenty-five' WHERE a=16376;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-eight' WHERE a=16377;\nUPDATE t2 SET c='five thousand five hundred twenty-one' WHERE a=16378;\nUPDATE t2 SET c='seventy-eight thousand thirty-eight' WHERE a=16379;\nUPDATE t2 SET c='sixty-three thousand eight hundred thirty-eight' WHERE a=16380;\nUPDATE t2 SET c='sixty-one thousand nine hundred four' WHERE a=16381;\nUPDATE t2 SET c='eighty thousand seven hundred eight' WHERE a=16382;\nUPDATE t2 SET c='eighty-four thousand nine hundred ninety-three' WHERE a=16383;\nUPDATE t2 SET c='twenty thousand three hundred ninety-one' WHERE a=16384;\nUPDATE t2 SET c='forty-six thousand nine hundred sixty-seven' WHERE a=16385;\nUPDATE t2 SET c='eighty thousand two hundred thirty-five' WHERE a=16386;\nUPDATE t2 SET c='fifty-one thousand four hundred fifty-six' WHERE a=16387;\nUPDATE t2 SET c='twenty-two thousand five hundred ninety-three' WHERE a=16388;\nUPDATE t2 SET c='thirty-four thousand four hundred forty-three' WHERE a=16389;\nUPDATE t2 SET c='fifty-three thousand eight hundred eleven' WHERE a=16390;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-seven' WHERE a=16391;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-seven' WHERE a=16392;\nUPDATE t2 SET c='thirty-six thousand two hundred eleven' WHERE a=16393;\nUPDATE t2 SET c='twenty-seven thousand two hundred ten' WHERE a=16394;\nUPDATE t2 SET c='fifty-one thousand ninety-eight' WHERE a=16395;\nUPDATE t2 SET c='seventy-eight thousand seven hundred sixteen' WHERE a=16396;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-two' WHERE a=16397;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-seven' WHERE a=16398;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=16399;\nUPDATE t2 SET c='five thousand four hundred eighteen' WHERE a=16400;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-eight' WHERE a=16401;\nUPDATE t2 SET c='three thousand six hundred forty-one' WHERE a=16402;\nUPDATE t2 SET c='thirty-eight thousand three hundred fifty-seven' WHERE a=16403;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-seven' WHERE a=16404;\nUPDATE t2 SET c='thirty-five thousand five hundred ninety-seven' WHERE a=16405;\nUPDATE t2 SET c='seven thousand six hundred eighteen' WHERE a=16406;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty-seven' WHERE a=16407;\nUPDATE t2 SET c='five thousand five hundred nineteen' WHERE a=16408;\nUPDATE t2 SET c='three thousand eighty-six' WHERE a=16409;\nUPDATE t2 SET c='five thousand three hundred nine' WHERE a=16410;\nUPDATE t2 SET c='ten thousand seven hundred two' WHERE a=16411;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-six' WHERE a=16412;\nUPDATE t2 SET c='four thousand two hundred eleven' WHERE a=16413;\nUPDATE t2 SET c='ninety-five thousand six hundred forty-five' WHERE a=16414;\nUPDATE t2 SET c='thirty-three thousand five hundred thirty-two' WHERE a=16415;\nUPDATE t2 SET c='seventy-four thousand one hundred nineteen' WHERE a=16416;\nUPDATE t2 SET c='seventy thousand twenty-three' WHERE a=16417;\nUPDATE t2 SET c='eighty-two thousand ninety-four' WHERE a=16418;\nUPDATE t2 SET c='forty thousand two hundred sixty-seven' WHERE a=16419;\nUPDATE t2 SET c='eighty-six thousand one hundred fifty-two' WHERE a=16420;\nUPDATE t2 SET c='eighty-two thousand five hundred seventy-four' WHERE a=16421;\nUPDATE t2 SET c='seventy-eight thousand fifty-four' WHERE a=16422;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-four' WHERE a=16423;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-nine' WHERE a=16424;\nUPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=16425;\nUPDATE t2 SET c='thirty-two thousand nine hundred twenty-five' WHERE a=16426;\nUPDATE t2 SET c='sixty-two thousand one hundred eighty-four' WHERE a=16427;\nUPDATE t2 SET c='thirty-eight thousand two hundred fifty-one' WHERE a=16428;\nUPDATE t2 SET c='sixty-nine thousand seven hundred twenty-five' WHERE a=16429;\nUPDATE t2 SET c='fifty-three thousand two hundred fifty-four' WHERE a=16430;\nUPDATE t2 SET c='eighty-five thousand four hundred eighty-five' WHERE a=16431;\nUPDATE t2 SET c='eleven thousand one hundred eighty-nine' WHERE a=16432;\nUPDATE t2 SET c='sixty-three thousand four hundred sixty-eight' WHERE a=16433;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-nine' WHERE a=16434;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-seven' WHERE a=16435;\nUPDATE t2 SET c='fifty-six thousand six hundred forty-six' WHERE a=16436;\nUPDATE t2 SET c='eighty-one thousand sixty' WHERE a=16437;\nUPDATE t2 SET c='fourteen thousand four hundred sixty-one' WHERE a=16438;\nUPDATE t2 SET c='forty-four thousand seven hundred seventy-eight' WHERE a=16439;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-two' WHERE a=16440;\nUPDATE t2 SET c='fifty thousand seven hundred thirteen' WHERE a=16441;\nUPDATE t2 SET c='seven thousand seven hundred nine' WHERE a=16442;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-three' WHERE a=16443;\nUPDATE t2 SET c='one thousand three hundred forty-two' WHERE a=16444;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-five' WHERE a=16445;\nUPDATE t2 SET c='ninety-one thousand nine hundred fourteen' WHERE a=16446;\nUPDATE t2 SET c='four thousand sixty-two' WHERE a=16447;\nUPDATE t2 SET c='eighty-two thousand eight hundred fifty-three' WHERE a=16448;\nUPDATE t2 SET c='forty-nine thousand six hundred' WHERE a=16449;\nUPDATE t2 SET c='fifty-seven thousand six hundred fifty' WHERE a=16450;\nUPDATE t2 SET c='eighty-two thousand five hundred forty-four' WHERE a=16451;\nUPDATE t2 SET c='eight thousand five hundred sixty-five' WHERE a=16452;\nUPDATE t2 SET c='ninety thousand three hundred three' WHERE a=16453;\nUPDATE t2 SET c='eighty-eight thousand two hundred sixty' WHERE a=16454;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-five' WHERE a=16455;\nUPDATE t2 SET c='forty-one thousand three hundred ninety-eight' WHERE a=16456;\nUPDATE t2 SET c='forty-nine thousand five hundred seventeen' WHERE a=16457;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-seven' WHERE a=16458;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-four' WHERE a=16459;\nUPDATE t2 SET c='seven hundred forty-four' WHERE a=16460;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-nine' WHERE a=16461;\nUPDATE t2 SET c='fifty-nine thousand nine hundred three' WHERE a=16462;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-six' WHERE a=16463;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-seven' WHERE a=16464;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty-four' WHERE a=16465;\nUPDATE t2 SET c='eighty-five thousand six hundred fifty-four' WHERE a=16466;\nUPDATE t2 SET c='thirty-nine thousand five hundred fifty-eight' WHERE a=16467;\nUPDATE t2 SET c='fifty-six thousand six hundred two' WHERE a=16468;\nUPDATE t2 SET c='ninety-four thousand six hundred one' WHERE a=16469;\nUPDATE t2 SET c='sixty-six thousand three hundred fifty-four' WHERE a=16470;\nUPDATE t2 SET c='six thousand one hundred ninety-two' WHERE a=16471;\nUPDATE t2 SET c='thirty-four thousand five hundred two' WHERE a=16472;\nUPDATE t2 SET c='nineteen thousand six hundred sixty-four' WHERE a=16473;\nUPDATE t2 SET c='five thousand nine hundred eighty-six' WHERE a=16474;\nUPDATE t2 SET c='ninety-four thousand forty-nine' WHERE a=16475;\nUPDATE t2 SET c='nineteen thousand five hundred eighty-two' WHERE a=16476;\nUPDATE t2 SET c='eighteen thousand six hundred ninety-eight' WHERE a=16477;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-one' WHERE a=16478;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-six' WHERE a=16479;\nUPDATE t2 SET c='twenty thousand four hundred forty-one' WHERE a=16480;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-four' WHERE a=16481;\nUPDATE t2 SET c='ninety-eight thousand six hundred twenty-two' WHERE a=16482;\nUPDATE t2 SET c='six thousand three hundred ten' WHERE a=16483;\nUPDATE t2 SET c='thirty-five thousand seven hundred twenty-one' WHERE a=16484;\nUPDATE t2 SET c='fifty-three thousand nine hundred three' WHERE a=16485;\nUPDATE t2 SET c='four thousand eight hundred eighty-one' WHERE a=16486;\nUPDATE t2 SET c='sixty-four thousand thirty-eight' WHERE a=16487;\nUPDATE t2 SET c='twenty-seven thousand two hundred ninety-five' WHERE a=16488;\nUPDATE t2 SET c='fifteen thousand four hundred seventy-two' WHERE a=16489;\nUPDATE t2 SET c='fifty-three thousand six hundred two' WHERE a=16490;\nUPDATE t2 SET c='four thousand nine hundred nineteen' WHERE a=16491;\nUPDATE t2 SET c='ninety-one thousand one hundred thirteen' WHERE a=16492;\nUPDATE t2 SET c='fifty-nine thousand three hundred thirty-one' WHERE a=16493;\nUPDATE t2 SET c='eighty-one thousand sixty-three' WHERE a=16494;\nUPDATE t2 SET c='thirty-five thousand six hundred ninety-five' WHERE a=16495;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-one' WHERE a=16496;\nUPDATE t2 SET c='thirty-seven thousand three hundred forty-four' WHERE a=16497;\nUPDATE t2 SET c='seven thousand six' WHERE a=16498;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventeen' WHERE a=16499;\nUPDATE t2 SET c='fifty-four thousand three hundred forty-five' WHERE a=16500;\nUPDATE t2 SET c='fifty-three thousand one hundred thirty-three' WHERE a=16501;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-six' WHERE a=16502;\nUPDATE t2 SET c='eighty-seven thousand eighty-nine' WHERE a=16503;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-four' WHERE a=16504;\nUPDATE t2 SET c='seventeen thousand four hundred six' WHERE a=16505;\nUPDATE t2 SET c='eleven thousand two hundred seventy' WHERE a=16506;\nUPDATE t2 SET c='ninety-eight thousand eight hundred sixty-five' WHERE a=16507;\nUPDATE t2 SET c='fifty-one thousand six hundred thirty-three' WHERE a=16508;\nUPDATE t2 SET c='seventy-one thousand seventy-two' WHERE a=16509;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=16510;\nUPDATE t2 SET c='eighty thousand six hundred three' WHERE a=16511;\nUPDATE t2 SET c='sixty-five thousand nine hundred seventeen' WHERE a=16512;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-three' WHERE a=16513;\nUPDATE t2 SET c='sixty-three thousand seven hundred sixty-six' WHERE a=16514;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirty-seven' WHERE a=16515;\nUPDATE t2 SET c='eight thousand nine hundred thirty-three' WHERE a=16516;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-two' WHERE a=16517;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty-five' WHERE a=16518;\nUPDATE t2 SET c='forty-three thousand three hundred eighty-six' WHERE a=16519;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-seven' WHERE a=16520;\nUPDATE t2 SET c='nine thousand nine hundred fifty-two' WHERE a=16521;\nUPDATE t2 SET c='twenty thousand seven hundred ninety-three' WHERE a=16522;\nUPDATE t2 SET c='forty thousand two hundred nineteen' WHERE a=16523;\nUPDATE t2 SET c='nine thousand three hundred sixteen' WHERE a=16524;\nUPDATE t2 SET c='forty-six thousand eighty-two' WHERE a=16525;\nUPDATE t2 SET c='forty-three thousand two hundred seventeen' WHERE a=16526;\nUPDATE t2 SET c='thirty-eight thousand eight hundred four' WHERE a=16527;\nUPDATE t2 SET c='ninety-nine thousand four hundred ninety-eight' WHERE a=16528;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-three' WHERE a=16529;\nUPDATE t2 SET c='eighty-nine thousand forty-one' WHERE a=16530;\nUPDATE t2 SET c='seventy-three thousand six hundred twenty' WHERE a=16531;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-nine' WHERE a=16532;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-eight' WHERE a=16533;\nUPDATE t2 SET c='seventy-eight thousand two hundred nineteen' WHERE a=16534;\nUPDATE t2 SET c='ninety-four' WHERE a=16535;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety' WHERE a=16536;\nUPDATE t2 SET c='one thousand six hundred ninety-nine' WHERE a=16537;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-nine' WHERE a=16538;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-six' WHERE a=16539;\nUPDATE t2 SET c='thirty-two thousand eight hundred sixty-five' WHERE a=16540;\nUPDATE t2 SET c='seventy thousand six hundred sixty-four' WHERE a=16541;\nUPDATE t2 SET c='fifteen thousand nine hundred fifty-four' WHERE a=16542;\nUPDATE t2 SET c='forty-five thousand two hundred ninety-one' WHERE a=16543;\nUPDATE t2 SET c='twenty-nine thousand five hundred eighty-seven' WHERE a=16544;\nUPDATE t2 SET c='sixty-two thousand thirty-six' WHERE a=16545;\nUPDATE t2 SET c='twelve thousand seven hundred thirty-six' WHERE a=16546;\nUPDATE t2 SET c='fifty thousand eight hundred fifty' WHERE a=16547;\nUPDATE t2 SET c='twelve thousand five hundred eighty-four' WHERE a=16548;\nUPDATE t2 SET c='fifty-five thousand four hundred forty-eight' WHERE a=16549;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-four' WHERE a=16550;\nUPDATE t2 SET c='thirty-eight thousand seven hundred sixteen' WHERE a=16551;\nUPDATE t2 SET c='fifty-nine thousand four hundred nine' WHERE a=16552;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty-eight' WHERE a=16553;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-five' WHERE a=16554;\nUPDATE t2 SET c='forty-one thousand four hundred fifty' WHERE a=16555;\nUPDATE t2 SET c='seven thousand eight hundred sixty-seven' WHERE a=16556;\nUPDATE t2 SET c='twenty-nine thousand five hundred ninety-nine' WHERE a=16557;\nUPDATE t2 SET c='twenty-five thousand eight hundred eight' WHERE a=16558;\nUPDATE t2 SET c='ninety-two thousand nine' WHERE a=16559;\nUPDATE t2 SET c='fifty-eight thousand seven hundred two' WHERE a=16560;\nUPDATE t2 SET c='two thousand eight' WHERE a=16561;\nUPDATE t2 SET c='eighty-two thousand one hundred forty-six' WHERE a=16562;\nUPDATE t2 SET c='five hundred thirty-seven' WHERE a=16563;\nUPDATE t2 SET c='nine thousand five hundred thirty-nine' WHERE a=16564;\nUPDATE t2 SET c='twenty-one thousand' WHERE a=16565;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-seven' WHERE a=16566;\nUPDATE t2 SET c='forty-three thousand six hundred fourteen' WHERE a=16567;\nUPDATE t2 SET c='seventy-three thousand one hundred nine' WHERE a=16568;\nUPDATE t2 SET c='seventy-five thousand eight hundred ninety-nine' WHERE a=16569;\nUPDATE t2 SET c='seventy-seven thousand four hundred three' WHERE a=16570;\nUPDATE t2 SET c='sixty-nine thousand six hundred seventy-nine' WHERE a=16571;\nUPDATE t2 SET c='ninety-two thousand six hundred one' WHERE a=16572;\nUPDATE t2 SET c='forty-four thousand four hundred one' WHERE a=16573;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-six' WHERE a=16574;\nUPDATE t2 SET c='twenty-three thousand eight hundred thirty-nine' WHERE a=16575;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-eight' WHERE a=16576;\nUPDATE t2 SET c='twenty thousand two hundred two' WHERE a=16577;\nUPDATE t2 SET c='fifty-six thousand four hundred thirty' WHERE a=16578;\nUPDATE t2 SET c='twenty-three thousand two hundred eighty-eight' WHERE a=16579;\nUPDATE t2 SET c='forty-five thousand seventy-two' WHERE a=16580;\nUPDATE t2 SET c='seventeen thousand two hundred twenty-four' WHERE a=16581;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-four' WHERE a=16582;\nUPDATE t2 SET c='ninety-two thousand five hundred forty-two' WHERE a=16583;\nUPDATE t2 SET c='eighty thousand six hundred forty' WHERE a=16584;\nUPDATE t2 SET c='fifty-six thousand six hundred forty-eight' WHERE a=16585;\nUPDATE t2 SET c='forty-six thousand three hundred two' WHERE a=16586;\nUPDATE t2 SET c='seventy-four thousand one hundred fifty-six' WHERE a=16587;\nUPDATE t2 SET c='eight thousand seven hundred sixty-two' WHERE a=16588;\nUPDATE t2 SET c='sixty-seven thousand nine hundred forty-nine' WHERE a=16589;\nUPDATE t2 SET c='twenty-two thousand three hundred three' WHERE a=16590;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-five' WHERE a=16591;\nUPDATE t2 SET c='two thousand nine hundred twenty-two' WHERE a=16592;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-five' WHERE a=16593;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-one' WHERE a=16594;\nUPDATE t2 SET c='thirty-one thousand six hundred fifty-six' WHERE a=16595;\nUPDATE t2 SET c='ninety-six thousand eight hundred eighty-seven' WHERE a=16596;\nUPDATE t2 SET c='two thousand seven hundred fifty-three' WHERE a=16597;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty' WHERE a=16598;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-six' WHERE a=16599;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ninety-one' WHERE a=16600;\nUPDATE t2 SET c='sixty-nine thousand three hundred sixty-four' WHERE a=16601;\nUPDATE t2 SET c='sixty thousand four hundred eighteen' WHERE a=16602;\nUPDATE t2 SET c='thirteen thousand one hundred twenty-five' WHERE a=16603;\nUPDATE t2 SET c='sixty-five thousand four hundred forty-eight' WHERE a=16604;\nUPDATE t2 SET c='seventy-three thousand forty-seven' WHERE a=16605;\nUPDATE t2 SET c='thirty-two thousand' WHERE a=16606;\nUPDATE t2 SET c='ninety-one thousand one hundred twenty-four' WHERE a=16607;\nUPDATE t2 SET c='seventy-eight thousand two hundred six' WHERE a=16608;\nUPDATE t2 SET c='two thousand eight hundred seventeen' WHERE a=16609;\nUPDATE t2 SET c='forty-six thousand eighty-seven' WHERE a=16610;\nUPDATE t2 SET c='seventy-seven thousand seventy-six' WHERE a=16611;\nUPDATE t2 SET c='sixty-four thousand eight hundred sixty-one' WHERE a=16612;\nUPDATE t2 SET c='four thousand one hundred six' WHERE a=16613;\nUPDATE t2 SET c='fifty-five thousand four hundred fifty-eight' WHERE a=16614;\nUPDATE t2 SET c='ninety-four thousand seven hundred twenty-three' WHERE a=16615;\nUPDATE t2 SET c='eighty-two thousand five hundred fifty-seven' WHERE a=16616;\nUPDATE t2 SET c='eighty-one thousand seven hundred forty-nine' WHERE a=16617;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-two' WHERE a=16618;\nUPDATE t2 SET c='thirty-four thousand nine hundred fifty-three' WHERE a=16619;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty' WHERE a=16620;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty-five' WHERE a=16621;\nUPDATE t2 SET c='seventeen thousand six hundred ninety-two' WHERE a=16622;\nUPDATE t2 SET c='fourteen thousand one hundred three' WHERE a=16623;\nUPDATE t2 SET c='eighty-six thousand three hundred seventeen' WHERE a=16624;\nUPDATE t2 SET c='eighty-three thousand nine hundred fifty-eight' WHERE a=16625;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighteen' WHERE a=16626;\nUPDATE t2 SET c='twenty thousand five hundred seven' WHERE a=16627;\nUPDATE t2 SET c='forty-five thousand four hundred forty-seven' WHERE a=16628;\nUPDATE t2 SET c='twenty-six thousand five hundred seventy-five' WHERE a=16629;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-three' WHERE a=16630;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-one' WHERE a=16631;\nUPDATE t2 SET c='fifty-one thousand three hundred seventy-four' WHERE a=16632;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=16633;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-seven' WHERE a=16634;\nUPDATE t2 SET c='forty-two thousand seven hundred seventy-three' WHERE a=16635;\nUPDATE t2 SET c='forty-four thousand one hundred eighty-nine' WHERE a=16636;\nUPDATE t2 SET c='ninety-one thousand six hundred eighteen' WHERE a=16637;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-two' WHERE a=16638;\nUPDATE t2 SET c='eighty-nine thousand five hundred fifty-one' WHERE a=16639;\nUPDATE t2 SET c='eighty thousand two hundred thirty-five' WHERE a=16640;\nUPDATE t2 SET c='fifty-five thousand one hundred forty-eight' WHERE a=16641;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-three' WHERE a=16642;\nUPDATE t2 SET c='thirty-four thousand one hundred three' WHERE a=16643;\nUPDATE t2 SET c='eighty-nine thousand two hundred fifty-two' WHERE a=16644;\nUPDATE t2 SET c='fifty-six thousand six hundred eighty-five' WHERE a=16645;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-six' WHERE a=16646;\nUPDATE t2 SET c='nine thousand five hundred sixty-three' WHERE a=16647;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty-six' WHERE a=16648;\nUPDATE t2 SET c='four hundred thirty-seven' WHERE a=16649;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventy-four' WHERE a=16650;\nUPDATE t2 SET c='twenty-six thousand six hundred forty-three' WHERE a=16651;\nUPDATE t2 SET c='forty-four thousand six hundred thirteen' WHERE a=16652;\nUPDATE t2 SET c='eighty-seven thousand five hundred eighteen' WHERE a=16653;\nUPDATE t2 SET c='twenty thousand six hundred fifty-two' WHERE a=16654;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty-eight' WHERE a=16655;\nUPDATE t2 SET c='fifty-four thousand nine hundred forty-one' WHERE a=16656;\nUPDATE t2 SET c='one thousand seven hundred eleven' WHERE a=16657;\nUPDATE t2 SET c='five thousand five hundred forty-six' WHERE a=16658;\nUPDATE t2 SET c='four thousand one hundred thirty-four' WHERE a=16659;\nUPDATE t2 SET c='fifty-one thousand one hundred seventy-one' WHERE a=16660;\nUPDATE t2 SET c='sixty-three thousand eleven' WHERE a=16661;\nUPDATE t2 SET c='fifteen thousand one hundred three' WHERE a=16662;\nUPDATE t2 SET c='nine thousand six hundred twenty-nine' WHERE a=16663;\nUPDATE t2 SET c='ninety-eight thousand four hundred eighty' WHERE a=16664;\nUPDATE t2 SET c='thirty-six thousand three hundred four' WHERE a=16665;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-one' WHERE a=16666;\nUPDATE t2 SET c='fourteen thousand ninety-nine' WHERE a=16667;\nUPDATE t2 SET c='eighty-eight thousand one hundred twenty-four' WHERE a=16668;\nUPDATE t2 SET c='eighty-five thousand nine hundred eight' WHERE a=16669;\nUPDATE t2 SET c='seventy-four thousand one hundred thirty-eight' WHERE a=16670;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-two' WHERE a=16671;\nUPDATE t2 SET c='thirty-three thousand eleven' WHERE a=16672;\nUPDATE t2 SET c='fifty-one thousand ninety-one' WHERE a=16673;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-one' WHERE a=16674;\nUPDATE t2 SET c='ninety-five thousand three hundred sixty' WHERE a=16675;\nUPDATE t2 SET c='fifty-five thousand two hundred seventy-seven' WHERE a=16676;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-one' WHERE a=16677;\nUPDATE t2 SET c='eighty-two thousand seven hundred sixty-three' WHERE a=16678;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-five' WHERE a=16679;\nUPDATE t2 SET c='twenty-five thousand seven hundred ninety-seven' WHERE a=16680;\nUPDATE t2 SET c='nine thousand sixty-two' WHERE a=16681;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-nine' WHERE a=16682;\nUPDATE t2 SET c='seventy-three thousand seven hundred one' WHERE a=16683;\nUPDATE t2 SET c='twenty-three thousand four hundred fifteen' WHERE a=16684;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty-three' WHERE a=16685;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-seven' WHERE a=16686;\nUPDATE t2 SET c='sixty-nine thousand two hundred fifty-nine' WHERE a=16687;\nUPDATE t2 SET c='forty-two thousand nine hundred thirty-eight' WHERE a=16688;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty' WHERE a=16689;\nUPDATE t2 SET c='eighty-nine thousand four hundred twenty-three' WHERE a=16690;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-five' WHERE a=16691;\nUPDATE t2 SET c='ninety-three thousand eight hundred twenty-seven' WHERE a=16692;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty-five' WHERE a=16693;\nUPDATE t2 SET c='thirty-nine thousand seven hundred eighty-four' WHERE a=16694;\nUPDATE t2 SET c='sixty-six thousand one hundred ten' WHERE a=16695;\nUPDATE t2 SET c='sixty-one thousand one hundred eighteen' WHERE a=16696;\nUPDATE t2 SET c='seventy-one thousand three hundred seventy-nine' WHERE a=16697;\nUPDATE t2 SET c='ninety-eight thousand three hundred thirty-two' WHERE a=16698;\nUPDATE t2 SET c='seventy-eight thousand eighteen' WHERE a=16699;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-eight' WHERE a=16700;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-two' WHERE a=16701;\nUPDATE t2 SET c='fifty-eight thousand seventy-two' WHERE a=16702;\nUPDATE t2 SET c='forty-six thousand one hundred four' WHERE a=16703;\nUPDATE t2 SET c='nine thousand six hundred eighty-one' WHERE a=16704;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-six' WHERE a=16705;\nUPDATE t2 SET c='thirty-seven thousand one hundred eighty-four' WHERE a=16706;\nUPDATE t2 SET c='fifty-three thousand four hundred thirty-five' WHERE a=16707;\nUPDATE t2 SET c='nineteen thousand seven hundred ninety-five' WHERE a=16708;\nUPDATE t2 SET c='thirty-four thousand one hundred forty-seven' WHERE a=16709;\nUPDATE t2 SET c='fifty thousand six hundred twenty-two' WHERE a=16710;\nUPDATE t2 SET c='eighty-three thousand seven hundred forty' WHERE a=16711;\nUPDATE t2 SET c='ninety thousand four hundred twenty-one' WHERE a=16712;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixty-one' WHERE a=16713;\nUPDATE t2 SET c='ninety-six thousand four hundred forty-two' WHERE a=16714;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-four' WHERE a=16715;\nUPDATE t2 SET c='forty-six thousand eight hundred eighty-seven' WHERE a=16716;\nUPDATE t2 SET c='thirty-six thousand nine hundred sixty-three' WHERE a=16717;\nUPDATE t2 SET c='thirty-eight thousand eighteen' WHERE a=16718;\nUPDATE t2 SET c='thirty-six thousand one hundred nine' WHERE a=16719;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=16720;\nUPDATE t2 SET c='seventy-five thousand three hundred eleven' WHERE a=16721;\nUPDATE t2 SET c='ten thousand one hundred seventeen' WHERE a=16722;\nUPDATE t2 SET c='forty-four thousand two hundred fifty-three' WHERE a=16723;\nUPDATE t2 SET c='twelve thousand three hundred fifty-one' WHERE a=16724;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-five' WHERE a=16725;\nUPDATE t2 SET c='seventy-one thousand five hundred eighty-three' WHERE a=16726;\nUPDATE t2 SET c='six thousand two hundred seventy-seven' WHERE a=16727;\nUPDATE t2 SET c='eighty-three thousand six hundred twenty-eight' WHERE a=16728;\nUPDATE t2 SET c='five thousand nine hundred' WHERE a=16729;\nUPDATE t2 SET c='seventy-seven thousand eight hundred fifty-two' WHERE a=16730;\nUPDATE t2 SET c='eighty-five thousand five hundred thirty-six' WHERE a=16731;\nUPDATE t2 SET c='sixty-seven thousand nine hundred ninety-seven' WHERE a=16732;\nUPDATE t2 SET c='seventy-eight thousand seven hundred thirty-seven' WHERE a=16733;\nUPDATE t2 SET c='seventy-two thousand eight hundred fifty-one' WHERE a=16734;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=16735;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty-three' WHERE a=16736;\nUPDATE t2 SET c='seventy thousand eighty-seven' WHERE a=16737;\nUPDATE t2 SET c='fifty-two thousand five hundred sixteen' WHERE a=16738;\nUPDATE t2 SET c='ninety-three thousand nine hundred twenty-seven' WHERE a=16739;\nUPDATE t2 SET c='nine thousand eight hundred thirty-seven' WHERE a=16740;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-six' WHERE a=16741;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-five' WHERE a=16742;\nUPDATE t2 SET c='forty-eight thousand ten' WHERE a=16743;\nUPDATE t2 SET c='sixty thousand seven hundred ninety-five' WHERE a=16744;\nUPDATE t2 SET c='thirty-nine thousand nine hundred seventy-four' WHERE a=16745;\nUPDATE t2 SET c='thirty-four thousand six hundred twenty-two' WHERE a=16746;\nUPDATE t2 SET c='eighty thousand two hundred' WHERE a=16747;\nUPDATE t2 SET c='five thousand eight hundred fourteen' WHERE a=16748;\nUPDATE t2 SET c='twenty-one thousand seventy-six' WHERE a=16749;\nUPDATE t2 SET c='seventy-five thousand forty-five' WHERE a=16750;\nUPDATE t2 SET c='sixty-five thousand sixty-three' WHERE a=16751;\nUPDATE t2 SET c='seventy-eight thousand thirty-seven' WHERE a=16752;\nUPDATE t2 SET c='ninety-six thousand five hundred twenty-five' WHERE a=16753;\nUPDATE t2 SET c='sixty-eight thousand seven hundred seventy-four' WHERE a=16754;\nUPDATE t2 SET c='nineteen thousand fifteen' WHERE a=16755;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-five' WHERE a=16756;\nUPDATE t2 SET c='fifteen thousand twenty-one' WHERE a=16757;\nUPDATE t2 SET c='sixty-nine thousand eight hundred fifty-seven' WHERE a=16758;\nUPDATE t2 SET c='forty-two thousand two hundred' WHERE a=16759;\nUPDATE t2 SET c='six thousand nine hundred' WHERE a=16760;\nUPDATE t2 SET c='eighty-eight thousand nine hundred seventy-six' WHERE a=16761;\nUPDATE t2 SET c='six thousand two hundred fifty-five' WHERE a=16762;\nUPDATE t2 SET c='seven thousand four hundred sixty' WHERE a=16763;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-two' WHERE a=16764;\nUPDATE t2 SET c='ninety-three thousand two hundred twelve' WHERE a=16765;\nUPDATE t2 SET c='forty-five thousand seven hundred thirty-seven' WHERE a=16766;\nUPDATE t2 SET c='twenty-two thousand eight hundred thirty-eight' WHERE a=16767;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty' WHERE a=16768;\nUPDATE t2 SET c='eighty-two thousand five hundred eighty-nine' WHERE a=16769;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-two' WHERE a=16770;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-nine' WHERE a=16771;\nUPDATE t2 SET c='ten thousand one hundred twenty-two' WHERE a=16772;\nUPDATE t2 SET c='eighty thousand two hundred thirty-two' WHERE a=16773;\nUPDATE t2 SET c='sixty-five thousand three hundred seventy-one' WHERE a=16774;\nUPDATE t2 SET c='forty-six thousand seven hundred nine' WHERE a=16775;\nUPDATE t2 SET c='ninety-two thousand seven hundred eighty-three' WHERE a=16776;\nUPDATE t2 SET c='ninety-one thousand five hundred seventy-four' WHERE a=16777;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-nine' WHERE a=16778;\nUPDATE t2 SET c='fifty-five thousand eight hundred ninety-three' WHERE a=16779;\nUPDATE t2 SET c='fifty-two thousand seven hundred ninety-five' WHERE a=16780;\nUPDATE t2 SET c='eighty-six thousand five hundred eighty-three' WHERE a=16781;\nUPDATE t2 SET c='sixty-five thousand nine hundred forty-nine' WHERE a=16782;\nUPDATE t2 SET c='eighty-nine thousand seven hundred fifty-six' WHERE a=16783;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=16784;\nUPDATE t2 SET c='eighteen thousand two hundred sixty-three' WHERE a=16785;\nUPDATE t2 SET c='ten thousand nine hundred nine' WHERE a=16786;\nUPDATE t2 SET c='ninety-eight thousand one hundred thirty-five' WHERE a=16787;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty-three' WHERE a=16788;\nUPDATE t2 SET c='eighty thousand twenty-three' WHERE a=16789;\nUPDATE t2 SET c='six thousand one hundred twenty-nine' WHERE a=16790;\nUPDATE t2 SET c='eighty-two thousand three hundred fifteen' WHERE a=16791;\nUPDATE t2 SET c='forty thousand six hundred seventeen' WHERE a=16792;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-nine' WHERE a=16793;\nUPDATE t2 SET c='eight thousand two hundred thirty-five' WHERE a=16794;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-five' WHERE a=16795;\nUPDATE t2 SET c='seventy-seven thousand seven hundred fifty-seven' WHERE a=16796;\nUPDATE t2 SET c='eighty-two thousand eight hundred' WHERE a=16797;\nUPDATE t2 SET c='eighteen thousand five hundred twenty' WHERE a=16798;\nUPDATE t2 SET c='thirty-two thousand nine hundred five' WHERE a=16799;\nUPDATE t2 SET c='fifty-two thousand eight hundred eighteen' WHERE a=16800;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-five' WHERE a=16801;\nUPDATE t2 SET c='sixty-five thousand five hundred ninety' WHERE a=16802;\nUPDATE t2 SET c='eight thousand one hundred seventy-two' WHERE a=16803;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety' WHERE a=16804;\nUPDATE t2 SET c='fifty thousand seven hundred one' WHERE a=16805;\nUPDATE t2 SET c='eleven thousand two hundred sixty-three' WHERE a=16806;\nUPDATE t2 SET c='twenty-four thousand nine hundred eleven' WHERE a=16807;\nUPDATE t2 SET c='seventy-two thousand five hundred eighty-eight' WHERE a=16808;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-one' WHERE a=16809;\nUPDATE t2 SET c='four thousand four hundred seventy-two' WHERE a=16810;\nUPDATE t2 SET c='two thousand one hundred sixty' WHERE a=16811;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-one' WHERE a=16812;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-six' WHERE a=16813;\nUPDATE t2 SET c='eighty-nine thousand two hundred five' WHERE a=16814;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-two' WHERE a=16815;\nUPDATE t2 SET c='five hundred eighty-one' WHERE a=16816;\nUPDATE t2 SET c='twenty-eight thousand nine hundred forty-eight' WHERE a=16817;\nUPDATE t2 SET c='twenty-seven thousand seven hundred fifty-two' WHERE a=16818;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-seven' WHERE a=16819;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-seven' WHERE a=16820;\nUPDATE t2 SET c='nineteen thousand three hundred ninety-eight' WHERE a=16821;\nUPDATE t2 SET c='sixty-four thousand five hundred twenty-two' WHERE a=16822;\nUPDATE t2 SET c='sixty thousand nine hundred thirty-six' WHERE a=16823;\nUPDATE t2 SET c='forty-three thousand three hundred eighty-four' WHERE a=16824;\nUPDATE t2 SET c='eighteen thousand seven hundred sixty-three' WHERE a=16825;\nUPDATE t2 SET c='nineteen thousand two hundred forty-one' WHERE a=16826;\nUPDATE t2 SET c='thirty thousand three hundred sixty-two' WHERE a=16827;\nUPDATE t2 SET c='fifty-four thousand two hundred forty-three' WHERE a=16828;\nUPDATE t2 SET c='seventy thousand nineteen' WHERE a=16829;\nUPDATE t2 SET c='seventy thousand five hundred ninety-nine' WHERE a=16830;\nUPDATE t2 SET c='ninety thousand three hundred fifty-eight' WHERE a=16831;\nUPDATE t2 SET c='eleven thousand nine hundred fifty-five' WHERE a=16832;\nUPDATE t2 SET c='thirty-six thousand nine hundred fifty-six' WHERE a=16833;\nUPDATE t2 SET c='thirty-seven thousand fifty-nine' WHERE a=16834;\nUPDATE t2 SET c='thirty-seven thousand thirty-eight' WHERE a=16835;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-three' WHERE a=16836;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty-seven' WHERE a=16837;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-one' WHERE a=16838;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-two' WHERE a=16839;\nUPDATE t2 SET c='seventy-six thousand nine hundred four' WHERE a=16840;\nUPDATE t2 SET c='eighteen thousand four hundred thirty-three' WHERE a=16841;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty-four' WHERE a=16842;\nUPDATE t2 SET c='seventy-two thousand one hundred sixty-seven' WHERE a=16843;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-five' WHERE a=16844;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-five' WHERE a=16845;\nUPDATE t2 SET c='fifteen thousand five hundred twenty-five' WHERE a=16846;\nUPDATE t2 SET c='eighty-three thousand fourteen' WHERE a=16847;\nUPDATE t2 SET c='six thousand one hundred seventeen' WHERE a=16848;\nUPDATE t2 SET c='eighty-four thousand nine hundred eleven' WHERE a=16849;\nUPDATE t2 SET c='ninety-two thousand three hundred five' WHERE a=16850;\nUPDATE t2 SET c='fifty thousand seventy-five' WHERE a=16851;\nUPDATE t2 SET c='eighty-nine thousand two hundred twelve' WHERE a=16852;\nUPDATE t2 SET c='fifty-one thousand one hundred sixty-four' WHERE a=16853;\nUPDATE t2 SET c='nineteen thousand one hundred seventeen' WHERE a=16854;\nUPDATE t2 SET c='sixty thousand four hundred thirty-five' WHERE a=16855;\nUPDATE t2 SET c='eighty-five thousand three hundred fifty-four' WHERE a=16856;\nUPDATE t2 SET c='four thousand three hundred seventy-three' WHERE a=16857;\nUPDATE t2 SET c='twenty thousand five hundred fifty-seven' WHERE a=16858;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-two' WHERE a=16859;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighty-two' WHERE a=16860;\nUPDATE t2 SET c='thirty-two thousand sixty-two' WHERE a=16861;\nUPDATE t2 SET c='forty-four thousand eight hundred sixty-four' WHERE a=16862;\nUPDATE t2 SET c='twenty-four thousand five hundred twenty-three' WHERE a=16863;\nUPDATE t2 SET c='thirty-four thousand five hundred nine' WHERE a=16864;\nUPDATE t2 SET c='fifteen thousand nine hundred twenty-three' WHERE a=16865;\nUPDATE t2 SET c='sixteen thousand five hundred forty-six' WHERE a=16866;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-three' WHERE a=16867;\nUPDATE t2 SET c='eighty-one thousand four hundred eighteen' WHERE a=16868;\nUPDATE t2 SET c='fourteen thousand five hundred fifty-one' WHERE a=16869;\nUPDATE t2 SET c='twenty-three thousand three hundred fifty-seven' WHERE a=16870;\nUPDATE t2 SET c='thirty-eight thousand one hundred twenty-eight' WHERE a=16871;\nUPDATE t2 SET c='sixty-eight thousand nine hundred fifty' WHERE a=16872;\nUPDATE t2 SET c='one thousand six hundred forty-four' WHERE a=16873;\nUPDATE t2 SET c='thirty-two thousand five hundred sixty-two' WHERE a=16874;\nUPDATE t2 SET c='ninety-seven thousand seventy-five' WHERE a=16875;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=16876;\nUPDATE t2 SET c='fifty thousand seven hundred ninety-five' WHERE a=16877;\nUPDATE t2 SET c='ninety thousand nine hundred twenty-nine' WHERE a=16878;\nUPDATE t2 SET c='fifty thousand eight hundred fifteen' WHERE a=16879;\nUPDATE t2 SET c='fifty-two thousand six hundred thirty-five' WHERE a=16880;\nUPDATE t2 SET c='ninety-three thousand seven hundred thirty-nine' WHERE a=16881;\nUPDATE t2 SET c='seventeen thousand seven hundred fifty-eight' WHERE a=16882;\nUPDATE t2 SET c='forty-eight thousand two hundred fourteen' WHERE a=16883;\nUPDATE t2 SET c='sixty thousand eight hundred ten' WHERE a=16884;\nUPDATE t2 SET c='fifty-nine thousand seven hundred eighteen' WHERE a=16885;\nUPDATE t2 SET c='three thousand seven hundred sixty-three' WHERE a=16886;\nUPDATE t2 SET c='six thousand eight hundred ninety-one' WHERE a=16887;\nUPDATE t2 SET c='eighty-four thousand one hundred forty-nine' WHERE a=16888;\nUPDATE t2 SET c='fifty-two thousand fifteen' WHERE a=16889;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-eight' WHERE a=16890;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-one' WHERE a=16891;\nUPDATE t2 SET c='ninety-four thousand eight hundred six' WHERE a=16892;\nUPDATE t2 SET c='ninety-nine thousand two hundred ninety-five' WHERE a=16893;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-seven' WHERE a=16894;\nUPDATE t2 SET c='twenty-nine thousand five hundred thirty-one' WHERE a=16895;\nUPDATE t2 SET c='seventy-five thousand nine hundred' WHERE a=16896;\nUPDATE t2 SET c='twenty-five thousand three hundred' WHERE a=16897;\nUPDATE t2 SET c='fifty-four thousand seventeen' WHERE a=16898;\nUPDATE t2 SET c='twenty-nine thousand nine hundred sixty' WHERE a=16899;\nUPDATE t2 SET c='forty-three thousand two hundred eighty-eight' WHERE a=16900;\nUPDATE t2 SET c='seventy-seven thousand three hundred seventy-eight' WHERE a=16901;\nUPDATE t2 SET c='one hundred forty-nine' WHERE a=16902;\nUPDATE t2 SET c='sixty-six thousand eight hundred eighteen' WHERE a=16903;\nUPDATE t2 SET c='fifty-four thousand three hundred thirty-nine' WHERE a=16904;\nUPDATE t2 SET c='ninety-four thousand nine hundred eighty-six' WHERE a=16905;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-five' WHERE a=16906;\nUPDATE t2 SET c='fifty-five thousand nine hundred eighty-six' WHERE a=16907;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-seven' WHERE a=16908;\nUPDATE t2 SET c='thirteen thousand three hundred seventeen' WHERE a=16909;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-four' WHERE a=16910;\nUPDATE t2 SET c='sixty-one thousand three hundred forty-six' WHERE a=16911;\nUPDATE t2 SET c='seventy-eight thousand one hundred eighty-nine' WHERE a=16912;\nUPDATE t2 SET c='sixteen thousand twenty-seven' WHERE a=16913;\nUPDATE t2 SET c='fifty-five thousand six hundred ninety' WHERE a=16914;\nUPDATE t2 SET c='twelve thousand six hundred eight' WHERE a=16915;\nUPDATE t2 SET c='seventy thousand thirty-three' WHERE a=16916;\nUPDATE t2 SET c='eight thousand seven hundred ninety-six' WHERE a=16917;\nUPDATE t2 SET c='seventy-five thousand nine hundred eighty-one' WHERE a=16918;\nUPDATE t2 SET c='eighty-six thousand six hundred seventy-two' WHERE a=16919;\nUPDATE t2 SET c='eighty thousand nine hundred eighty' WHERE a=16920;\nUPDATE t2 SET c='sixty-five thousand six hundred twelve' WHERE a=16921;\nUPDATE t2 SET c='thirty thousand three hundred twenty-four' WHERE a=16922;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=16923;\nUPDATE t2 SET c='thirty-five thousand one hundred twelve' WHERE a=16924;\nUPDATE t2 SET c='forty thousand twenty-two' WHERE a=16925;\nUPDATE t2 SET c='twenty-seven thousand four hundred forty-five' WHERE a=16926;\nUPDATE t2 SET c='ninety-four thousand seven hundred forty-nine' WHERE a=16927;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-six' WHERE a=16928;\nUPDATE t2 SET c='thirty-seven thousand six hundred five' WHERE a=16929;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-three' WHERE a=16930;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-two' WHERE a=16931;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-seven' WHERE a=16932;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-one' WHERE a=16933;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-two' WHERE a=16934;\nUPDATE t2 SET c='forty thousand two hundred seventy-one' WHERE a=16935;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-one' WHERE a=16936;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-eight' WHERE a=16937;\nUPDATE t2 SET c='seventy-four thousand forty-four' WHERE a=16938;\nUPDATE t2 SET c='twelve thousand nine hundred ninety-five' WHERE a=16939;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-six' WHERE a=16940;\nUPDATE t2 SET c='seventeen thousand five hundred nine' WHERE a=16941;\nUPDATE t2 SET c='sixty-nine thousand eight hundred nine' WHERE a=16942;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-seven' WHERE a=16943;\nUPDATE t2 SET c='eighty-five thousand six hundred three' WHERE a=16944;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-seven' WHERE a=16945;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-three' WHERE a=16946;\nUPDATE t2 SET c='ninety-three thousand three hundred fourteen' WHERE a=16947;\nUPDATE t2 SET c='ninety-one thousand six hundred seventy-five' WHERE a=16948;\nUPDATE t2 SET c='ninety-four thousand six hundred ninety' WHERE a=16949;\nUPDATE t2 SET c='one thousand eight hundred thirty-nine' WHERE a=16950;\nUPDATE t2 SET c='twenty-five thousand six hundred eighty-six' WHERE a=16951;\nUPDATE t2 SET c='forty-eight thousand four hundred eighty-five' WHERE a=16952;\nUPDATE t2 SET c='forty-nine thousand three hundred twelve' WHERE a=16953;\nUPDATE t2 SET c='ninety-six thousand thirty' WHERE a=16954;\nUPDATE t2 SET c='one thousand four hundred five' WHERE a=16955;\nUPDATE t2 SET c='seventy-four thousand one hundred thirteen' WHERE a=16956;\nUPDATE t2 SET c='one thousand seven hundred two' WHERE a=16957;\nUPDATE t2 SET c='eighty-three thousand ninety-three' WHERE a=16958;\nUPDATE t2 SET c='eighty-seven thousand four hundred seventy' WHERE a=16959;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-two' WHERE a=16960;\nUPDATE t2 SET c='twenty thousand seven hundred thirty-one' WHERE a=16961;\nUPDATE t2 SET c='thirteen thousand seven hundred thirty-four' WHERE a=16962;\nUPDATE t2 SET c='fifty-seven thousand nine hundred twenty-five' WHERE a=16963;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-four' WHERE a=16964;\nUPDATE t2 SET c='fifty-one thousand eight hundred eighty-three' WHERE a=16965;\nUPDATE t2 SET c='fourteen thousand five hundred seven' WHERE a=16966;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-two' WHERE a=16967;\nUPDATE t2 SET c='seventy-six thousand sixty-one' WHERE a=16968;\nUPDATE t2 SET c='seventy-two thousand three hundred sixteen' WHERE a=16969;\nUPDATE t2 SET c='seventy thousand four hundred eighty-seven' WHERE a=16970;\nUPDATE t2 SET c='one thousand fifty-eight' WHERE a=16971;\nUPDATE t2 SET c='fifty-seven thousand one hundred seventy-eight' WHERE a=16972;\nUPDATE t2 SET c='sixty-seven thousand three hundred fifty-nine' WHERE a=16973;\nUPDATE t2 SET c='eleven thousand four hundred thirty-six' WHERE a=16974;\nUPDATE t2 SET c='seventy-five thousand two hundred eighty-eight' WHERE a=16975;\nUPDATE t2 SET c='ninety-eight thousand five hundred sixty-two' WHERE a=16976;\nUPDATE t2 SET c='sixty-three thousand one hundred ninety-two' WHERE a=16977;\nUPDATE t2 SET c='seventy thousand six hundred eighty-nine' WHERE a=16978;\nUPDATE t2 SET c='fifty-four thousand two hundred one' WHERE a=16979;\nUPDATE t2 SET c='ninety-five thousand six hundred nineteen' WHERE a=16980;\nUPDATE t2 SET c='eighty-two thousand three hundred forty-three' WHERE a=16981;\nUPDATE t2 SET c='sixty-four thousand five hundred four' WHERE a=16982;\nUPDATE t2 SET c='ninety-nine thousand seven hundred seventeen' WHERE a=16983;\nUPDATE t2 SET c='forty-four thousand one hundred nineteen' WHERE a=16984;\nUPDATE t2 SET c='ten thousand three hundred seventy-three' WHERE a=16985;\nUPDATE t2 SET c='fifty-three thousand eight hundred forty-one' WHERE a=16986;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixty-one' WHERE a=16987;\nUPDATE t2 SET c='sixty-three thousand seven hundred eighty-eight' WHERE a=16988;\nUPDATE t2 SET c='forty-three thousand forty-three' WHERE a=16989;\nUPDATE t2 SET c='forty-four thousand three hundred forty-nine' WHERE a=16990;\nUPDATE t2 SET c='thirty-one thousand seven hundred eighteen' WHERE a=16991;\nUPDATE t2 SET c='forty-seven thousand three hundred ninety' WHERE a=16992;\nUPDATE t2 SET c='ninety-seven thousand two hundred forty-seven' WHERE a=16993;\nUPDATE t2 SET c='sixty-four thousand seven hundred forty-nine' WHERE a=16994;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-three' WHERE a=16995;\nUPDATE t2 SET c='twenty-four thousand three hundred ninety-four' WHERE a=16996;\nUPDATE t2 SET c='seventy thousand two hundred twenty-six' WHERE a=16997;\nUPDATE t2 SET c='fifty-five thousand three hundred fifty-two' WHERE a=16998;\nUPDATE t2 SET c='fourteen thousand nine hundred seventy-nine' WHERE a=16999;\nUPDATE t2 SET c='sixty-five thousand forty-seven' WHERE a=17000;\nUPDATE t2 SET c='forty thousand nine hundred sixty-seven' WHERE a=17001;\nUPDATE t2 SET c='sixty thousand nine hundred eighty-four' WHERE a=17002;\nUPDATE t2 SET c='forty thousand seventy-one' WHERE a=17003;\nUPDATE t2 SET c='four thousand one hundred fifty-eight' WHERE a=17004;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-four' WHERE a=17005;\nUPDATE t2 SET c='seventy-eight thousand three hundred seventeen' WHERE a=17006;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-four' WHERE a=17007;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-four' WHERE a=17008;\nUPDATE t2 SET c='fifty-four thousand eighty-nine' WHERE a=17009;\nUPDATE t2 SET c='forty thousand two hundred seventy-three' WHERE a=17010;\nUPDATE t2 SET c='thirty-one thousand one hundred nine' WHERE a=17011;\nUPDATE t2 SET c='forty-eight thousand eight hundred ninety-two' WHERE a=17012;\nUPDATE t2 SET c='fifty-nine thousand eight hundred sixteen' WHERE a=17013;\nUPDATE t2 SET c='thirty-five thousand eight hundred fifty-two' WHERE a=17014;\nUPDATE t2 SET c='twenty-seven thousand three hundred forty-four' WHERE a=17015;\nUPDATE t2 SET c='one thousand one hundred fifty-one' WHERE a=17016;\nUPDATE t2 SET c='six thousand six hundred eighty-one' WHERE a=17017;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty' WHERE a=17018;\nUPDATE t2 SET c='three thousand five hundred ninety-three' WHERE a=17019;\nUPDATE t2 SET c='sixty-five thousand six hundred eighteen' WHERE a=17020;\nUPDATE t2 SET c='ninety thousand three hundred sixty-six' WHERE a=17021;\nUPDATE t2 SET c='eighty-four thousand four hundred thirty-two' WHERE a=17022;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-two' WHERE a=17023;\nUPDATE t2 SET c='seventy-eight thousand three hundred five' WHERE a=17024;\nUPDATE t2 SET c='seventy-five thousand twenty-one' WHERE a=17025;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-eight' WHERE a=17026;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-two' WHERE a=17027;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-two' WHERE a=17028;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-nine' WHERE a=17029;\nUPDATE t2 SET c='seventy thousand two hundred forty-three' WHERE a=17030;\nUPDATE t2 SET c='sixty-seven thousand seven hundred ninety-three' WHERE a=17031;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-five' WHERE a=17032;\nUPDATE t2 SET c='four thousand five hundred eighty-seven' WHERE a=17033;\nUPDATE t2 SET c='one thousand seven hundred ninety-five' WHERE a=17034;\nUPDATE t2 SET c='fourteen thousand seven hundred sixty-nine' WHERE a=17035;\nUPDATE t2 SET c='twenty-seven thousand nine hundred thirty' WHERE a=17036;\nUPDATE t2 SET c='forty thousand five hundred seven' WHERE a=17037;\nUPDATE t2 SET c='thirty-eight thousand ninety-seven' WHERE a=17038;\nUPDATE t2 SET c='eighteen thousand six hundred ten' WHERE a=17039;\nUPDATE t2 SET c='fifty-two thousand three hundred twenty-one' WHERE a=17040;\nUPDATE t2 SET c='thirty-six thousand two hundred ninety-eight' WHERE a=17041;\nUPDATE t2 SET c='four hundred eight' WHERE a=17042;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-eight' WHERE a=17043;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty' WHERE a=17044;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eighty-one' WHERE a=17045;\nUPDATE t2 SET c='seventy-seven thousand five hundred fifty-three' WHERE a=17046;\nUPDATE t2 SET c='eighty-five thousand six hundred one' WHERE a=17047;\nUPDATE t2 SET c='four thousand six hundred thirty-six' WHERE a=17048;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-seven' WHERE a=17049;\nUPDATE t2 SET c='seventy-four thousand ninety-five' WHERE a=17050;\nUPDATE t2 SET c='three thousand five hundred seventy-eight' WHERE a=17051;\nUPDATE t2 SET c='one thousand five hundred ninety-nine' WHERE a=17052;\nUPDATE t2 SET c='sixty-three thousand two hundred seventy-one' WHERE a=17053;\nUPDATE t2 SET c='fifty-six thousand two hundred eighty' WHERE a=17054;\nUPDATE t2 SET c='ninety-six thousand twenty-eight' WHERE a=17055;\nUPDATE t2 SET c='thirty-four thousand one hundred sixty-eight' WHERE a=17056;\nUPDATE t2 SET c='seventy-six thousand three hundred five' WHERE a=17057;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-seven' WHERE a=17058;\nUPDATE t2 SET c='seventy-one thousand nine hundred twelve' WHERE a=17059;\nUPDATE t2 SET c='five thousand eight hundred sixteen' WHERE a=17060;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-nine' WHERE a=17061;\nUPDATE t2 SET c='forty-six thousand six hundred ninety-five' WHERE a=17062;\nUPDATE t2 SET c='eighty-two thousand six hundred two' WHERE a=17063;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy' WHERE a=17064;\nUPDATE t2 SET c='sixty-eight thousand four hundred sixty-eight' WHERE a=17065;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-six' WHERE a=17066;\nUPDATE t2 SET c='eighty-five thousand one hundred fourteen' WHERE a=17067;\nUPDATE t2 SET c='sixteen thousand five hundred thirty-nine' WHERE a=17068;\nUPDATE t2 SET c='seventy-one thousand seven hundred eight' WHERE a=17069;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-eight' WHERE a=17070;\nUPDATE t2 SET c='eighty-two thousand nine hundred thirty-two' WHERE a=17071;\nUPDATE t2 SET c='five thousand one hundred twenty-two' WHERE a=17072;\nUPDATE t2 SET c='forty-three thousand four hundred thirty-four' WHERE a=17073;\nUPDATE t2 SET c='seventy-six thousand seven hundred forty-eight' WHERE a=17074;\nUPDATE t2 SET c='six thousand six hundred twenty-four' WHERE a=17075;\nUPDATE t2 SET c='seventeen thousand three hundred forty' WHERE a=17076;\nUPDATE t2 SET c='twenty-eight thousand three hundred seventy-nine' WHERE a=17077;\nUPDATE t2 SET c='forty-four thousand two hundred sixty-seven' WHERE a=17078;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-four' WHERE a=17079;\nUPDATE t2 SET c='sixteen thousand eight hundred forty-three' WHERE a=17080;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty-seven' WHERE a=17081;\nUPDATE t2 SET c='sixty-one thousand nine hundred ninety-one' WHERE a=17082;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-nine' WHERE a=17083;\nUPDATE t2 SET c='ninety-six thousand nine hundred three' WHERE a=17084;\nUPDATE t2 SET c='ten thousand eight hundred sixty-six' WHERE a=17085;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-four' WHERE a=17086;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-one' WHERE a=17087;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-two' WHERE a=17088;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty' WHERE a=17089;\nUPDATE t2 SET c='thirty-one thousand forty-seven' WHERE a=17090;\nUPDATE t2 SET c='ten thousand two hundred eighty-four' WHERE a=17091;\nUPDATE t2 SET c='fifteen thousand four hundred eighty-eight' WHERE a=17092;\nUPDATE t2 SET c='sixty-eight thousand five hundred thirty-eight' WHERE a=17093;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventy-four' WHERE a=17094;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-one' WHERE a=17095;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=17096;\nUPDATE t2 SET c='twenty-five thousand five hundred eight' WHERE a=17097;\nUPDATE t2 SET c='fifty thousand four hundred twenty-seven' WHERE a=17098;\nUPDATE t2 SET c='eighty-eight thousand three hundred seventeen' WHERE a=17099;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-two' WHERE a=17100;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-six' WHERE a=17101;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-two' WHERE a=17102;\nUPDATE t2 SET c='ninety-eight thousand two hundred eighty' WHERE a=17103;\nUPDATE t2 SET c='twenty thousand ninety' WHERE a=17104;\nUPDATE t2 SET c='sixty-three thousand four hundred sixty-eight' WHERE a=17105;\nUPDATE t2 SET c='forty-seven thousand eight hundred fifty-seven' WHERE a=17106;\nUPDATE t2 SET c='seventeen thousand four hundred fifty-nine' WHERE a=17107;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-six' WHERE a=17108;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-four' WHERE a=17109;\nUPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=17110;\nUPDATE t2 SET c='thirty-nine thousand one hundred thirty-one' WHERE a=17111;\nUPDATE t2 SET c='thirty-eight thousand six hundred forty-one' WHERE a=17112;\nUPDATE t2 SET c='ninety-six thousand four hundred sixty-one' WHERE a=17113;\nUPDATE t2 SET c='forty-nine thousand ninety-seven' WHERE a=17114;\nUPDATE t2 SET c='eighty-one thousand four hundred seventy-eight' WHERE a=17115;\nUPDATE t2 SET c='sixteen thousand eight hundred sixty-four' WHERE a=17116;\nUPDATE t2 SET c='ninety-five thousand seven hundred ten' WHERE a=17117;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventy-six' WHERE a=17118;\nUPDATE t2 SET c='ninety-nine thousand six hundred fifty-two' WHERE a=17119;\nUPDATE t2 SET c='sixty thousand one hundred forty-nine' WHERE a=17120;\nUPDATE t2 SET c='ninety thousand four hundred forty-eight' WHERE a=17121;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-one' WHERE a=17122;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-five' WHERE a=17123;\nUPDATE t2 SET c='thirty thousand eight hundred nine' WHERE a=17124;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-seven' WHERE a=17125;\nUPDATE t2 SET c='seven thousand eight hundred thirty-three' WHERE a=17126;\nUPDATE t2 SET c='ninety-seven thousand three hundred sixty-eight' WHERE a=17127;\nUPDATE t2 SET c='nineteen thousand one hundred eight' WHERE a=17128;\nUPDATE t2 SET c='seventy-one thousand six hundred eight' WHERE a=17129;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-one' WHERE a=17130;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-six' WHERE a=17131;\nUPDATE t2 SET c='sixty-one thousand nine hundred forty-six' WHERE a=17132;\nUPDATE t2 SET c='forty-two thousand six hundred fifty-eight' WHERE a=17133;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-four' WHERE a=17134;\nUPDATE t2 SET c='sixty-two thousand one hundred eighty-five' WHERE a=17135;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-five' WHERE a=17136;\nUPDATE t2 SET c='fifty-one thousand three hundred' WHERE a=17137;\nUPDATE t2 SET c='eighty-seven thousand seven hundred thirty-two' WHERE a=17138;\nUPDATE t2 SET c='twenty-one thousand ninety-three' WHERE a=17139;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-eight' WHERE a=17140;\nUPDATE t2 SET c='thirty-three thousand three hundred twelve' WHERE a=17141;\nUPDATE t2 SET c='forty-seven thousand nine hundred thirty-four' WHERE a=17142;\nUPDATE t2 SET c='seventeen thousand seven hundred twenty-one' WHERE a=17143;\nUPDATE t2 SET c='seventy-four thousand nine hundred ninety-four' WHERE a=17144;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-nine' WHERE a=17145;\nUPDATE t2 SET c='eighty thousand nine hundred thirty-one' WHERE a=17146;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=17147;\nUPDATE t2 SET c='eleven thousand eight hundred twenty' WHERE a=17148;\nUPDATE t2 SET c='sixty-six thousand eight hundred fourteen' WHERE a=17149;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-three' WHERE a=17150;\nUPDATE t2 SET c='sixty thousand two hundred twenty-seven' WHERE a=17151;\nUPDATE t2 SET c='ninety-four thousand seven hundred sixty-four' WHERE a=17152;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-four' WHERE a=17153;\nUPDATE t2 SET c='twenty-two thousand two hundred sixty-three' WHERE a=17154;\nUPDATE t2 SET c='fifteen thousand two hundred fifty-two' WHERE a=17155;\nUPDATE t2 SET c='thirty-seven thousand one hundred forty-seven' WHERE a=17156;\nUPDATE t2 SET c='sixty-two thousand seven hundred forty-six' WHERE a=17157;\nUPDATE t2 SET c='one thousand two hundred twenty-two' WHERE a=17158;\nUPDATE t2 SET c='fifty-six thousand three hundred fourteen' WHERE a=17159;\nUPDATE t2 SET c='ten thousand eight hundred eighty-two' WHERE a=17160;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-three' WHERE a=17161;\nUPDATE t2 SET c='forty-one thousand six hundred forty-five' WHERE a=17162;\nUPDATE t2 SET c='sixty-three thousand nine hundred seventy' WHERE a=17163;\nUPDATE t2 SET c='five thousand five hundred seventy-one' WHERE a=17164;\nUPDATE t2 SET c='seventy-four thousand three hundred eight' WHERE a=17165;\nUPDATE t2 SET c='thirty-two thousand three hundred eighty-seven' WHERE a=17166;\nUPDATE t2 SET c='two hundred sixty-eight' WHERE a=17167;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-seven' WHERE a=17168;\nUPDATE t2 SET c='seventy thousand five hundred eighty-seven' WHERE a=17169;\nUPDATE t2 SET c='ninety-three thousand four hundred forty-three' WHERE a=17170;\nUPDATE t2 SET c='fifty-six thousand one hundred thirty-nine' WHERE a=17171;\nUPDATE t2 SET c='seven hundred twenty-nine' WHERE a=17172;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-six' WHERE a=17173;\nUPDATE t2 SET c='one thousand six hundred forty-six' WHERE a=17174;\nUPDATE t2 SET c='thirteen thousand ninety-four' WHERE a=17175;\nUPDATE t2 SET c='thirty-six thousand one hundred sixty-six' WHERE a=17176;\nUPDATE t2 SET c='seventy-eight thousand six hundred seven' WHERE a=17177;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-nine' WHERE a=17178;\nUPDATE t2 SET c='seventy thousand eight hundred sixteen' WHERE a=17179;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-three' WHERE a=17180;\nUPDATE t2 SET c='thirty-one thousand three hundred seventy-six' WHERE a=17181;\nUPDATE t2 SET c='seventeen thousand six hundred twenty-six' WHERE a=17182;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-two' WHERE a=17183;\nUPDATE t2 SET c='forty-six thousand one hundred nineteen' WHERE a=17184;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-six' WHERE a=17185;\nUPDATE t2 SET c='two thousand six hundred seventy-two' WHERE a=17186;\nUPDATE t2 SET c='twenty-nine thousand five hundred thirty-two' WHERE a=17187;\nUPDATE t2 SET c='seventeen thousand six hundred twenty-eight' WHERE a=17188;\nUPDATE t2 SET c='seven hundred two' WHERE a=17189;\nUPDATE t2 SET c='eighty-three thousand seven hundred thirty-two' WHERE a=17190;\nUPDATE t2 SET c='ninety-eight thousand seven hundred thirty-six' WHERE a=17191;\nUPDATE t2 SET c='seventy-three thousand three hundred sixty' WHERE a=17192;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-one' WHERE a=17193;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-nine' WHERE a=17194;\nUPDATE t2 SET c='seventy-two thousand one hundred one' WHERE a=17195;\nUPDATE t2 SET c='seventy thousand six hundred thirty-seven' WHERE a=17196;\nUPDATE t2 SET c='thirty thousand one hundred ninety-six' WHERE a=17197;\nUPDATE t2 SET c='twenty-six thousand four hundred sixty-three' WHERE a=17198;\nUPDATE t2 SET c='four thousand four hundred thirty-nine' WHERE a=17199;\nUPDATE t2 SET c='fifty-six thousand ninety' WHERE a=17200;\nUPDATE t2 SET c='eighty-two thousand thirty' WHERE a=17201;\nUPDATE t2 SET c='eighty-seven thousand nine hundred sixty-two' WHERE a=17202;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifty-eight' WHERE a=17203;\nUPDATE t2 SET c='ninety thousand thirty-three' WHERE a=17204;\nUPDATE t2 SET c='sixty-five thousand five hundred twenty' WHERE a=17205;\nUPDATE t2 SET c='fifty-five thousand three hundred seventy-nine' WHERE a=17206;\nUPDATE t2 SET c='sixty-nine thousand one hundred eighteen' WHERE a=17207;\nUPDATE t2 SET c='forty-one thousand eight hundred fifty-seven' WHERE a=17208;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-two' WHERE a=17209;\nUPDATE t2 SET c='ninety thousand four hundred twenty' WHERE a=17210;\nUPDATE t2 SET c='sixty thousand seven hundred eighty-nine' WHERE a=17211;\nUPDATE t2 SET c='thirty-five thousand nineteen' WHERE a=17212;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-one' WHERE a=17213;\nUPDATE t2 SET c='forty-eight thousand five hundred fifty-two' WHERE a=17214;\nUPDATE t2 SET c='eight thousand one hundred sixty-three' WHERE a=17215;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-three' WHERE a=17216;\nUPDATE t2 SET c='eighty-nine thousand one hundred fifty-one' WHERE a=17217;\nUPDATE t2 SET c='eighty-eight thousand five hundred forty-eight' WHERE a=17218;\nUPDATE t2 SET c='fifty-one thousand six hundred seventy-two' WHERE a=17219;\nUPDATE t2 SET c='twenty-six thousand three hundred sixty-two' WHERE a=17220;\nUPDATE t2 SET c='fifty-one thousand eighty-seven' WHERE a=17221;\nUPDATE t2 SET c='sixty-three thousand six hundred twenty-eight' WHERE a=17222;\nUPDATE t2 SET c='forty-two thousand nine hundred fifty' WHERE a=17223;\nUPDATE t2 SET c='twelve thousand three hundred eighty-three' WHERE a=17224;\nUPDATE t2 SET c='forty-six thousand two hundred eighty-eight' WHERE a=17225;\nUPDATE t2 SET c='fifty thousand eighty-seven' WHERE a=17226;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-five' WHERE a=17227;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=17228;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-one' WHERE a=17229;\nUPDATE t2 SET c='eighty-six thousand fifty-two' WHERE a=17230;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-eight' WHERE a=17231;\nUPDATE t2 SET c='eleven thousand nine hundred six' WHERE a=17232;\nUPDATE t2 SET c='thirteen thousand nine hundred forty-seven' WHERE a=17233;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty' WHERE a=17234;\nUPDATE t2 SET c='eighty thousand five hundred ninety-two' WHERE a=17235;\nUPDATE t2 SET c='seventeen thousand eighty-nine' WHERE a=17236;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety' WHERE a=17237;\nUPDATE t2 SET c='fifty-four thousand four hundred eight' WHERE a=17238;\nUPDATE t2 SET c='thirty-six thousand two hundred forty-eight' WHERE a=17239;\nUPDATE t2 SET c='eighty-six thousand four hundred seventy' WHERE a=17240;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty-five' WHERE a=17241;\nUPDATE t2 SET c='seventeen thousand seven hundred sixty' WHERE a=17242;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty' WHERE a=17243;\nUPDATE t2 SET c='seventy-five thousand two hundred thirty-four' WHERE a=17244;\nUPDATE t2 SET c='ninety-four thousand four hundred fifty-seven' WHERE a=17245;\nUPDATE t2 SET c='sixty thousand three hundred ninety-one' WHERE a=17246;\nUPDATE t2 SET c='seventy-five thousand one hundred ninety-two' WHERE a=17247;\nUPDATE t2 SET c='thirty-two thousand seven hundred seventy-five' WHERE a=17248;\nUPDATE t2 SET c='eleven thousand sixty-one' WHERE a=17249;\nUPDATE t2 SET c='fifty thousand one hundred thirty-five' WHERE a=17250;\nUPDATE t2 SET c='eighty-six thousand two hundred ninety-three' WHERE a=17251;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-three' WHERE a=17252;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-three' WHERE a=17253;\nUPDATE t2 SET c='fifty-seven thousand five hundred twenty-seven' WHERE a=17254;\nUPDATE t2 SET c='sixty-two thousand three hundred eighty-two' WHERE a=17255;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-five' WHERE a=17256;\nUPDATE t2 SET c='thirty thousand four hundred eighty-five' WHERE a=17257;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-seven' WHERE a=17258;\nUPDATE t2 SET c='sixty-four thousand eighty' WHERE a=17259;\nUPDATE t2 SET c='two thousand two hundred ninety-three' WHERE a=17260;\nUPDATE t2 SET c='one thousand five hundred seventeen' WHERE a=17261;\nUPDATE t2 SET c='twenty-six thousand four hundred eighty-nine' WHERE a=17262;\nUPDATE t2 SET c='sixty-six thousand four hundred fifty-three' WHERE a=17263;\nUPDATE t2 SET c='forty-two thousand five hundred forty-six' WHERE a=17264;\nUPDATE t2 SET c='eighty-two thousand four hundred nine' WHERE a=17265;\nUPDATE t2 SET c='twenty-seven thousand one hundred ninety-three' WHERE a=17266;\nUPDATE t2 SET c='seventy-seven thousand four hundred eighty-six' WHERE a=17267;\nUPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=17268;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-three' WHERE a=17269;\nUPDATE t2 SET c='seven thousand four hundred forty-nine' WHERE a=17270;\nUPDATE t2 SET c='seventy-four thousand seven hundred seventy-two' WHERE a=17271;\nUPDATE t2 SET c='ninety-three thousand four hundred five' WHERE a=17272;\nUPDATE t2 SET c='eighty-four thousand six hundred one' WHERE a=17273;\nUPDATE t2 SET c='eighteen thousand five hundred thirteen' WHERE a=17274;\nUPDATE t2 SET c='eighty-four thousand four hundred sixty-six' WHERE a=17275;\nUPDATE t2 SET c='sixty-five thousand seven' WHERE a=17276;\nUPDATE t2 SET c='thirty-eight thousand eight hundred forty-five' WHERE a=17277;\nUPDATE t2 SET c='twenty-four thousand five hundred ninety-two' WHERE a=17278;\nUPDATE t2 SET c='seventy thousand sixty-four' WHERE a=17279;\nUPDATE t2 SET c='thirty-seven thousand sixty-eight' WHERE a=17280;\nUPDATE t2 SET c='ninety-six thousand sixty-nine' WHERE a=17281;\nUPDATE t2 SET c='seventy-five thousand eight hundred eighty-two' WHERE a=17282;\nUPDATE t2 SET c='thirty-six thousand one hundred thirty-five' WHERE a=17283;\nUPDATE t2 SET c='eighty-three thousand eighty-one' WHERE a=17284;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=17285;\nUPDATE t2 SET c='sixty-one thousand thirty' WHERE a=17286;\nUPDATE t2 SET c='forty-nine thousand eight hundred forty-six' WHERE a=17287;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-seven' WHERE a=17288;\nUPDATE t2 SET c='twenty-four thousand nine hundred twenty-seven' WHERE a=17289;\nUPDATE t2 SET c='fifty-four thousand seven hundred forty-seven' WHERE a=17290;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-three' WHERE a=17291;\nUPDATE t2 SET c='nine thousand three hundred forty-two' WHERE a=17292;\nUPDATE t2 SET c='seven thousand three hundred one' WHERE a=17293;\nUPDATE t2 SET c='eighty-two thousand sixty-seven' WHERE a=17294;\nUPDATE t2 SET c='forty-five thousand seven hundred twelve' WHERE a=17295;\nUPDATE t2 SET c='ninety-six thousand ninety-two' WHERE a=17296;\nUPDATE t2 SET c='one thousand one hundred fifty' WHERE a=17297;\nUPDATE t2 SET c='seventy-nine thousand eight hundred twenty-nine' WHERE a=17298;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-nine' WHERE a=17299;\nUPDATE t2 SET c='ninety-two thousand one hundred seventy-six' WHERE a=17300;\nUPDATE t2 SET c='twenty-one thousand eight hundred thirteen' WHERE a=17301;\nUPDATE t2 SET c='twenty-three thousand seven hundred sixteen' WHERE a=17302;\nUPDATE t2 SET c='sixty-six thousand ninety-one' WHERE a=17303;\nUPDATE t2 SET c='seventy-four thousand four hundred forty-nine' WHERE a=17304;\nUPDATE t2 SET c='seventy-five thousand one hundred eighty-eight' WHERE a=17305;\nUPDATE t2 SET c='forty-five thousand nine hundred eighty-nine' WHERE a=17306;\nUPDATE t2 SET c='twenty-seven thousand seven hundred sixty-two' WHERE a=17307;\nUPDATE t2 SET c='twenty-two thousand nine' WHERE a=17308;\nUPDATE t2 SET c='four thousand eight hundred thirty-two' WHERE a=17309;\nUPDATE t2 SET c='nine thousand seven hundred forty-two' WHERE a=17310;\nUPDATE t2 SET c='forty-one thousand one hundred thirty-five' WHERE a=17311;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-eight' WHERE a=17312;\nUPDATE t2 SET c='sixty-four thousand one hundred sixty-six' WHERE a=17313;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fifty-six' WHERE a=17314;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty-two' WHERE a=17315;\nUPDATE t2 SET c='thirty-two thousand three hundred ninety-two' WHERE a=17316;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-three' WHERE a=17317;\nUPDATE t2 SET c='forty-four thousand one hundred seventy-eight' WHERE a=17318;\nUPDATE t2 SET c='one thousand seven hundred twenty' WHERE a=17319;\nUPDATE t2 SET c='three thousand eight hundred twenty-nine' WHERE a=17320;\nUPDATE t2 SET c='eighty thousand nine hundred forty' WHERE a=17321;\nUPDATE t2 SET c='eight hundred thirty-five' WHERE a=17322;\nUPDATE t2 SET c='twenty-seven thousand nine hundred seventy-six' WHERE a=17323;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-seven' WHERE a=17324;\nUPDATE t2 SET c='eleven thousand three hundred ninety-seven' WHERE a=17325;\nUPDATE t2 SET c='twelve thousand three hundred eighty-one' WHERE a=17326;\nUPDATE t2 SET c='two thousand eight hundred forty' WHERE a=17327;\nUPDATE t2 SET c='nineteen thousand five hundred twenty-one' WHERE a=17328;\nUPDATE t2 SET c='forty-five thousand seventy-nine' WHERE a=17329;\nUPDATE t2 SET c='fifty thousand one hundred sixty' WHERE a=17330;\nUPDATE t2 SET c='sixty-three thousand nine hundred eleven' WHERE a=17331;\nUPDATE t2 SET c='twenty thousand one hundred sixty-nine' WHERE a=17332;\nUPDATE t2 SET c='thirty-seven thousand ninety-nine' WHERE a=17333;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventy-seven' WHERE a=17334;\nUPDATE t2 SET c='forty-seven thousand six hundred forty-four' WHERE a=17335;\nUPDATE t2 SET c='forty-eight thousand nine hundred seventy-eight' WHERE a=17336;\nUPDATE t2 SET c='eighty-two thousand six hundred seventeen' WHERE a=17337;\nUPDATE t2 SET c='thirty-three thousand four hundred ten' WHERE a=17338;\nUPDATE t2 SET c='forty-three' WHERE a=17339;\nUPDATE t2 SET c='fifty-eight thousand seven hundred ninety-seven' WHERE a=17340;\nUPDATE t2 SET c='two thousand seven hundred fifty-nine' WHERE a=17341;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty-eight' WHERE a=17342;\nUPDATE t2 SET c='fifty-three thousand seven hundred seven' WHERE a=17343;\nUPDATE t2 SET c='twenty thousand six hundred seventy-three' WHERE a=17344;\nUPDATE t2 SET c='forty-six thousand eight hundred seven' WHERE a=17345;\nUPDATE t2 SET c='one thousand eight hundred thirty-six' WHERE a=17346;\nUPDATE t2 SET c='eighty-five thousand seven hundred nine' WHERE a=17347;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-nine' WHERE a=17348;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy-three' WHERE a=17349;\nUPDATE t2 SET c='two thousand nine hundred eighty-seven' WHERE a=17350;\nUPDATE t2 SET c='thirty-eight thousand two hundred twenty-one' WHERE a=17351;\nUPDATE t2 SET c='eighty-four thousand six hundred seventy-three' WHERE a=17352;\nUPDATE t2 SET c='seventy-three thousand five hundred twenty-nine' WHERE a=17353;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-nine' WHERE a=17354;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-six' WHERE a=17355;\nUPDATE t2 SET c='one thousand six hundred eleven' WHERE a=17356;\nUPDATE t2 SET c='fifteen thousand forty-four' WHERE a=17357;\nUPDATE t2 SET c='thirty-eight thousand two hundred seventy-nine' WHERE a=17358;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=17359;\nUPDATE t2 SET c='seventy-nine thousand four hundred fifty' WHERE a=17360;\nUPDATE t2 SET c='seventeen thousand five hundred eight' WHERE a=17361;\nUPDATE t2 SET c='seventy-four thousand three hundred ninety' WHERE a=17362;\nUPDATE t2 SET c='fifty-two thousand eight hundred one' WHERE a=17363;\nUPDATE t2 SET c='seven thousand eight hundred sixty-nine' WHERE a=17364;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety-two' WHERE a=17365;\nUPDATE t2 SET c='nineteen thousand one hundred seventy-five' WHERE a=17366;\nUPDATE t2 SET c='ninety-one thousand six hundred seven' WHERE a=17367;\nUPDATE t2 SET c='seventy-one thousand four hundred ten' WHERE a=17368;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-seven' WHERE a=17369;\nUPDATE t2 SET c='six thousand eight hundred sixty-two' WHERE a=17370;\nUPDATE t2 SET c='three thousand four hundred eighteen' WHERE a=17371;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-six' WHERE a=17372;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty' WHERE a=17373;\nUPDATE t2 SET c='twenty-six thousand sixty' WHERE a=17374;\nUPDATE t2 SET c='thirty-one thousand three hundred fifty' WHERE a=17375;\nUPDATE t2 SET c='forty-three thousand one hundred forty-three' WHERE a=17376;\nUPDATE t2 SET c='six thousand eight hundred fifty-five' WHERE a=17377;\nUPDATE t2 SET c='eighty-six thousand eight hundred' WHERE a=17378;\nUPDATE t2 SET c='seventy thousand four hundred fifty-three' WHERE a=17379;\nUPDATE t2 SET c='twenty thousand four hundred four' WHERE a=17380;\nUPDATE t2 SET c='twenty-six thousand three hundred fifty-two' WHERE a=17381;\nUPDATE t2 SET c='six thousand five hundred fifty-seven' WHERE a=17382;\nUPDATE t2 SET c='fifty-eight thousand six hundred ninety-six' WHERE a=17383;\nUPDATE t2 SET c='sixty-five thousand eight hundred' WHERE a=17384;\nUPDATE t2 SET c='thirty thousand two hundred eighty-one' WHERE a=17385;\nUPDATE t2 SET c='forty-eight thousand six hundred thirty-two' WHERE a=17386;\nUPDATE t2 SET c='ninety-three thousand four hundred forty-five' WHERE a=17387;\nUPDATE t2 SET c='fifty-one thousand one hundred fifty-six' WHERE a=17388;\nUPDATE t2 SET c='eighty-two thousand four hundred ninety-seven' WHERE a=17389;\nUPDATE t2 SET c='twenty-one thousand four hundred ninety-five' WHERE a=17390;\nUPDATE t2 SET c='eleven thousand sixty-eight' WHERE a=17391;\nUPDATE t2 SET c='thirty-three thousand six hundred ninety-six' WHERE a=17392;\nUPDATE t2 SET c='eighty-four thousand twenty-six' WHERE a=17393;\nUPDATE t2 SET c='forty-two thousand seven hundred ninety-nine' WHERE a=17394;\nUPDATE t2 SET c='thirteen thousand ten' WHERE a=17395;\nUPDATE t2 SET c='sixty-nine thousand eight hundred three' WHERE a=17396;\nUPDATE t2 SET c='thirty-nine thousand sixty-seven' WHERE a=17397;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty-nine' WHERE a=17398;\nUPDATE t2 SET c='forty-nine thousand five hundred ten' WHERE a=17399;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-eight' WHERE a=17400;\nUPDATE t2 SET c='ninety-five thousand six hundred eighty-one' WHERE a=17401;\nUPDATE t2 SET c='fifty-six thousand one hundred sixty-four' WHERE a=17402;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-two' WHERE a=17403;\nUPDATE t2 SET c='seventy-one thousand three hundred ten' WHERE a=17404;\nUPDATE t2 SET c='thirty-two thousand fifty-three' WHERE a=17405;\nUPDATE t2 SET c='ninety-nine thousand three hundred sixty-one' WHERE a=17406;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-four' WHERE a=17407;\nUPDATE t2 SET c='fifty-six thousand ten' WHERE a=17408;\nUPDATE t2 SET c='thirty-two thousand one hundred twenty-nine' WHERE a=17409;\nUPDATE t2 SET c='fifty-four thousand six hundred fifty-six' WHERE a=17410;\nUPDATE t2 SET c='forty-two thousand eight hundred seventy-nine' WHERE a=17411;\nUPDATE t2 SET c='eighty-six thousand fifty-seven' WHERE a=17412;\nUPDATE t2 SET c='forty-five thousand eight hundred twenty-seven' WHERE a=17413;\nUPDATE t2 SET c='sixty thousand four hundred forty-eight' WHERE a=17414;\nUPDATE t2 SET c='seventy-five thousand six hundred seventy-three' WHERE a=17415;\nUPDATE t2 SET c='fifty-six thousand two hundred ninety-six' WHERE a=17416;\nUPDATE t2 SET c='seventy-five thousand nine hundred thirty-six' WHERE a=17417;\nUPDATE t2 SET c='ninety thousand six hundred seventy' WHERE a=17418;\nUPDATE t2 SET c='forty-three thousand nine hundred seventy-one' WHERE a=17419;\nUPDATE t2 SET c='seventy-eight thousand one hundred five' WHERE a=17420;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty-five' WHERE a=17421;\nUPDATE t2 SET c='forty-eight thousand eight hundred thirteen' WHERE a=17422;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-eight' WHERE a=17423;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-seven' WHERE a=17424;\nUPDATE t2 SET c='ninety-three thousand five hundred thirty-two' WHERE a=17425;\nUPDATE t2 SET c='forty-seven thousand four hundred thirty-five' WHERE a=17426;\nUPDATE t2 SET c='ninety-nine thousand eight hundred thirty-nine' WHERE a=17427;\nUPDATE t2 SET c='eighty thousand seven hundred fifty-six' WHERE a=17428;\nUPDATE t2 SET c='nine thousand thirty' WHERE a=17429;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-four' WHERE a=17430;\nUPDATE t2 SET c='ninety thousand four hundred ninety-six' WHERE a=17431;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy-one' WHERE a=17432;\nUPDATE t2 SET c='eighty-five thousand six hundred eighty-one' WHERE a=17433;\nUPDATE t2 SET c='seventy-one thousand seven hundred ninety-one' WHERE a=17434;\nUPDATE t2 SET c='eleven thousand two hundred sixty-nine' WHERE a=17435;\nUPDATE t2 SET c='fifteen thousand five hundred four' WHERE a=17436;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty-seven' WHERE a=17437;\nUPDATE t2 SET c='ninety-nine thousand nine hundred forty-seven' WHERE a=17438;\nUPDATE t2 SET c='forty-one thousand six hundred sixty-four' WHERE a=17439;\nUPDATE t2 SET c='forty-eight thousand four hundred forty-eight' WHERE a=17440;\nUPDATE t2 SET c='nine thousand eight hundred ninety-eight' WHERE a=17441;\nUPDATE t2 SET c='seventy-seven thousand five hundred two' WHERE a=17442;\nUPDATE t2 SET c='forty-seven thousand one hundred sixty-one' WHERE a=17443;\nUPDATE t2 SET c='seventy-two thousand six hundred twenty' WHERE a=17444;\nUPDATE t2 SET c='fifty-eight thousand nine hundred fourteen' WHERE a=17445;\nUPDATE t2 SET c='fifty-two thousand nine hundred ten' WHERE a=17446;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-eight' WHERE a=17447;\nUPDATE t2 SET c='sixty-nine thousand thirty-three' WHERE a=17448;\nUPDATE t2 SET c='seventy-eight thousand seven' WHERE a=17449;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-eight' WHERE a=17450;\nUPDATE t2 SET c='two thousand four hundred thirty-five' WHERE a=17451;\nUPDATE t2 SET c='eighty-two thousand eight hundred twenty-five' WHERE a=17452;\nUPDATE t2 SET c='five thousand three hundred sixty-five' WHERE a=17453;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy-three' WHERE a=17454;\nUPDATE t2 SET c='forty-five thousand five hundred eight' WHERE a=17455;\nUPDATE t2 SET c='sixty thousand five hundred fifty-seven' WHERE a=17456;\nUPDATE t2 SET c='fifty-seven thousand two hundred seventy-four' WHERE a=17457;\nUPDATE t2 SET c='sixteen thousand four hundred six' WHERE a=17458;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-nine' WHERE a=17459;\nUPDATE t2 SET c='ninety-one thousand eight hundred seven' WHERE a=17460;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-three' WHERE a=17461;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-seven' WHERE a=17462;\nUPDATE t2 SET c='seventy-four thousand three hundred eighty-nine' WHERE a=17463;\nUPDATE t2 SET c='eighty thousand three hundred seventy-seven' WHERE a=17464;\nUPDATE t2 SET c='thirty-nine thousand two hundred seventy-five' WHERE a=17465;\nUPDATE t2 SET c='fifty-two thousand six hundred three' WHERE a=17466;\nUPDATE t2 SET c='twenty-two thousand one hundred' WHERE a=17467;\nUPDATE t2 SET c='ninety-four thousand seven hundred four' WHERE a=17468;\nUPDATE t2 SET c='seventy-three thousand seven hundred thirty-six' WHERE a=17469;\nUPDATE t2 SET c='sixty-two thousand nine hundred eighty-five' WHERE a=17470;\nUPDATE t2 SET c='seventy-five thousand five hundred eighty-six' WHERE a=17471;\nUPDATE t2 SET c='fifty-six thousand thirty-six' WHERE a=17472;\nUPDATE t2 SET c='forty-eight thousand six hundred nine' WHERE a=17473;\nUPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=17474;\nUPDATE t2 SET c='twenty-two thousand seven hundred twenty-three' WHERE a=17475;\nUPDATE t2 SET c='ninety-two thousand seven hundred forty-four' WHERE a=17476;\nUPDATE t2 SET c='seventy-two thousand nine hundred eighty-two' WHERE a=17477;\nUPDATE t2 SET c='sixty-six thousand nine hundred fifty-five' WHERE a=17478;\nUPDATE t2 SET c='twenty-six thousand five hundred seventeen' WHERE a=17479;\nUPDATE t2 SET c='twenty-three thousand nine hundred twenty-three' WHERE a=17480;\nUPDATE t2 SET c='ninety-two thousand three hundred thirty-six' WHERE a=17481;\nUPDATE t2 SET c='seventy-six thousand three hundred eighty-five' WHERE a=17482;\nUPDATE t2 SET c='eighteen thousand six hundred nineteen' WHERE a=17483;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-eight' WHERE a=17484;\nUPDATE t2 SET c='seventy-six thousand eight hundred ninety' WHERE a=17485;\nUPDATE t2 SET c='seventy-two thousand nine hundred seventy-four' WHERE a=17486;\nUPDATE t2 SET c='thirty thousand three hundred five' WHERE a=17487;\nUPDATE t2 SET c='four thousand three hundred forty-seven' WHERE a=17488;\nUPDATE t2 SET c='ninety-four thousand nine hundred sixty-two' WHERE a=17489;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-three' WHERE a=17490;\nUPDATE t2 SET c='five thousand two hundred seven' WHERE a=17491;\nUPDATE t2 SET c='ten thousand nine hundred eighty-five' WHERE a=17492;\nUPDATE t2 SET c='forty-four thousand three hundred twenty-three' WHERE a=17493;\nUPDATE t2 SET c='eight thousand eight hundred twenty-seven' WHERE a=17494;\nUPDATE t2 SET c='twenty-nine thousand eight hundred thirty' WHERE a=17495;\nUPDATE t2 SET c='fifty-one thousand eight hundred forty-one' WHERE a=17496;\nUPDATE t2 SET c='twenty-seven thousand nine hundred twenty-eight' WHERE a=17497;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-seven' WHERE a=17498;\nUPDATE t2 SET c='eleven thousand eight hundred thirty-five' WHERE a=17499;\nUPDATE t2 SET c='ninety-eight thousand fifteen' WHERE a=17500;\nUPDATE t2 SET c='ninety-two thousand five hundred thirty' WHERE a=17501;\nUPDATE t2 SET c='three thousand five hundred sixteen' WHERE a=17502;\nUPDATE t2 SET c='four thousand five hundred twenty-two' WHERE a=17503;\nUPDATE t2 SET c='fifty-four thousand three hundred eighty-four' WHERE a=17504;\nUPDATE t2 SET c='forty-nine thousand six hundred thirty-six' WHERE a=17505;\nUPDATE t2 SET c='twenty thousand three hundred thirteen' WHERE a=17506;\nUPDATE t2 SET c='five thousand eighty-two' WHERE a=17507;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-nine' WHERE a=17508;\nUPDATE t2 SET c='seven thousand seven hundred twenty-nine' WHERE a=17509;\nUPDATE t2 SET c='thirty-eight thousand five hundred sixty-five' WHERE a=17510;\nUPDATE t2 SET c='thirty-four thousand three hundred six' WHERE a=17511;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty-nine' WHERE a=17512;\nUPDATE t2 SET c='twenty-six thousand four hundred seventy-five' WHERE a=17513;\nUPDATE t2 SET c='fifty-three thousand five hundred eight' WHERE a=17514;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-five' WHERE a=17515;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty-one' WHERE a=17516;\nUPDATE t2 SET c='fifty-eight thousand thirty-nine' WHERE a=17517;\nUPDATE t2 SET c='sixty-five thousand seventeen' WHERE a=17518;\nUPDATE t2 SET c='fifty-nine thousand seven hundred seventy-nine' WHERE a=17519;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifteen' WHERE a=17520;\nUPDATE t2 SET c='ten thousand five hundred forty-three' WHERE a=17521;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-four' WHERE a=17522;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixteen' WHERE a=17523;\nUPDATE t2 SET c='eighty-two thousand six hundred thirty-four' WHERE a=17524;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty' WHERE a=17525;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-three' WHERE a=17526;\nUPDATE t2 SET c='fourteen thousand eight hundred fifty' WHERE a=17527;\nUPDATE t2 SET c='eighty-four thousand two hundred ninety-seven' WHERE a=17528;\nUPDATE t2 SET c='twenty-seven thousand five hundred eleven' WHERE a=17529;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-five' WHERE a=17530;\nUPDATE t2 SET c='two thousand four hundred thirty-two' WHERE a=17531;\nUPDATE t2 SET c='sixty-six thousand three hundred fifty-five' WHERE a=17532;\nUPDATE t2 SET c='fifty-four thousand fifty' WHERE a=17533;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty' WHERE a=17534;\nUPDATE t2 SET c='thirty-nine thousand three hundred forty-three' WHERE a=17535;\nUPDATE t2 SET c='eighty-nine thousand four hundred fifty-seven' WHERE a=17536;\nUPDATE t2 SET c='ninety-nine thousand five hundred sixty-six' WHERE a=17537;\nUPDATE t2 SET c='ten thousand four hundred seventy-eight' WHERE a=17538;\nUPDATE t2 SET c='eighty-five thousand three hundred ten' WHERE a=17539;\nUPDATE t2 SET c='ninety-seven thousand five hundred fourteen' WHERE a=17540;\nUPDATE t2 SET c='fifty-five thousand five hundred twenty-four' WHERE a=17541;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-three' WHERE a=17542;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-five' WHERE a=17543;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-four' WHERE a=17544;\nUPDATE t2 SET c='forty-five thousand two hundred forty-five' WHERE a=17545;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifty-two' WHERE a=17546;\nUPDATE t2 SET c='ten thousand thirty' WHERE a=17547;\nUPDATE t2 SET c='fifty-eight thousand five hundred twelve' WHERE a=17548;\nUPDATE t2 SET c='seventy-four thousand two hundred sixty-eight' WHERE a=17549;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-one' WHERE a=17550;\nUPDATE t2 SET c='forty-six thousand four hundred thirty-six' WHERE a=17551;\nUPDATE t2 SET c='fourteen thousand eighty-seven' WHERE a=17552;\nUPDATE t2 SET c='two thousand three hundred sixty-four' WHERE a=17553;\nUPDATE t2 SET c='eighty-four thousand fifty-four' WHERE a=17554;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-two' WHERE a=17555;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-five' WHERE a=17556;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-seven' WHERE a=17557;\nUPDATE t2 SET c='eighty-three thousand two' WHERE a=17558;\nUPDATE t2 SET c='fifty-six thousand five hundred sixty-five' WHERE a=17559;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-four' WHERE a=17560;\nUPDATE t2 SET c='forty-one thousand seven hundred seventy-one' WHERE a=17561;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-three' WHERE a=17562;\nUPDATE t2 SET c='six thousand five hundred twenty-two' WHERE a=17563;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety-seven' WHERE a=17564;\nUPDATE t2 SET c='twenty-eight thousand eight hundred ninety-one' WHERE a=17565;\nUPDATE t2 SET c='two thousand two' WHERE a=17566;\nUPDATE t2 SET c='twenty-two thousand three hundred forty-seven' WHERE a=17567;\nUPDATE t2 SET c='five thousand four hundred thirty-four' WHERE a=17568;\nUPDATE t2 SET c='fifty-four thousand four hundred ninety-five' WHERE a=17569;\nUPDATE t2 SET c='fourteen thousand five hundred ninety-six' WHERE a=17570;\nUPDATE t2 SET c='ninety-three thousand two hundred two' WHERE a=17571;\nUPDATE t2 SET c='thirteen thousand one hundred twelve' WHERE a=17572;\nUPDATE t2 SET c='thirteen thousand eight hundred twelve' WHERE a=17573;\nUPDATE t2 SET c='ninety thousand nine hundred seventy-five' WHERE a=17574;\nUPDATE t2 SET c='eighty-eight thousand eight hundred twenty-one' WHERE a=17575;\nUPDATE t2 SET c='fifty-six thousand twenty-two' WHERE a=17576;\nUPDATE t2 SET c='fourteen thousand one hundred twenty' WHERE a=17577;\nUPDATE t2 SET c='seventy-nine thousand eight hundred seventeen' WHERE a=17578;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-one' WHERE a=17579;\nUPDATE t2 SET c='sixty-nine thousand four hundred four' WHERE a=17580;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty-one' WHERE a=17581;\nUPDATE t2 SET c='eighty-eight thousand fifty-four' WHERE a=17582;\nUPDATE t2 SET c='twenty-five thousand four hundred two' WHERE a=17583;\nUPDATE t2 SET c='sixty-seven thousand seven hundred eighty-five' WHERE a=17584;\nUPDATE t2 SET c='nineteen thousand six hundred eleven' WHERE a=17585;\nUPDATE t2 SET c='seventy-six thousand seven hundred eight' WHERE a=17586;\nUPDATE t2 SET c='fifty-eight thousand seven hundred forty-nine' WHERE a=17587;\nUPDATE t2 SET c='two hundred twenty-two' WHERE a=17588;\nUPDATE t2 SET c='ninety-four thousand eight hundred seventy-five' WHERE a=17589;\nUPDATE t2 SET c='sixty-seven thousand one hundred fourteen' WHERE a=17590;\nUPDATE t2 SET c='sixty-one thousand four hundred one' WHERE a=17591;\nUPDATE t2 SET c='fifty-five thousand ninety-three' WHERE a=17592;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-five' WHERE a=17593;\nUPDATE t2 SET c='seventy-eight thousand thirteen' WHERE a=17594;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-five' WHERE a=17595;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty-seven' WHERE a=17596;\nUPDATE t2 SET c='thirty-two thousand three hundred sixty-five' WHERE a=17597;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-seven' WHERE a=17598;\nUPDATE t2 SET c='sixteen thousand one hundred ninety-six' WHERE a=17599;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-eight' WHERE a=17600;\nUPDATE t2 SET c='ninety-two thousand eight hundred fifty-five' WHERE a=17601;\nUPDATE t2 SET c='forty-six thousand three hundred twenty-nine' WHERE a=17602;\nUPDATE t2 SET c='fifty-nine thousand four hundred sixty-seven' WHERE a=17603;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty' WHERE a=17604;\nUPDATE t2 SET c='ninety thousand six hundred sixty-seven' WHERE a=17605;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-nine' WHERE a=17606;\nUPDATE t2 SET c='two thousand three hundred fifty-two' WHERE a=17607;\nUPDATE t2 SET c='forty-two thousand six hundred eighteen' WHERE a=17608;\nUPDATE t2 SET c='ninety-four thousand four hundred forty-one' WHERE a=17609;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-one' WHERE a=17610;\nUPDATE t2 SET c='three thousand seven hundred sixty-eight' WHERE a=17611;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy' WHERE a=17612;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-four' WHERE a=17613;\nUPDATE t2 SET c='eighty-three thousand four hundred ninety-eight' WHERE a=17614;\nUPDATE t2 SET c='fifty-six thousand fifty-five' WHERE a=17615;\nUPDATE t2 SET c='eighteen thousand one hundred nineteen' WHERE a=17616;\nUPDATE t2 SET c='eighty-two thousand seven hundred fifty-nine' WHERE a=17617;\nUPDATE t2 SET c='eighty thousand eight hundred thirty-eight' WHERE a=17618;\nUPDATE t2 SET c='ninety-six thousand six hundred six' WHERE a=17619;\nUPDATE t2 SET c='twenty-five thousand two hundred eighty-seven' WHERE a=17620;\nUPDATE t2 SET c='fifty-three thousand two hundred eight' WHERE a=17621;\nUPDATE t2 SET c='sixty-seven thousand thirty-one' WHERE a=17622;\nUPDATE t2 SET c='sixty-one thousand two hundred sixty-six' WHERE a=17623;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirteen' WHERE a=17624;\nUPDATE t2 SET c='forty-two thousand eight hundred twenty-nine' WHERE a=17625;\nUPDATE t2 SET c='forty-nine thousand two hundred ninety-nine' WHERE a=17626;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-one' WHERE a=17627;\nUPDATE t2 SET c='eighty-seven thousand nine hundred ninety-six' WHERE a=17628;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty-six' WHERE a=17629;\nUPDATE t2 SET c='forty-one thousand four hundred ninety-five' WHERE a=17630;\nUPDATE t2 SET c='seven thousand sixty-six' WHERE a=17631;\nUPDATE t2 SET c='forty-two thousand ninety-eight' WHERE a=17632;\nUPDATE t2 SET c='eighty-one thousand eight hundred fifty-two' WHERE a=17633;\nUPDATE t2 SET c='nineteen thousand nine hundred eighty-four' WHERE a=17634;\nUPDATE t2 SET c='eleven thousand six hundred nine' WHERE a=17635;\nUPDATE t2 SET c='twenty-six thousand one hundred twelve' WHERE a=17636;\nUPDATE t2 SET c='seventy-six thousand seven hundred sixty-eight' WHERE a=17637;\nUPDATE t2 SET c='fourteen thousand five hundred nine' WHERE a=17638;\nUPDATE t2 SET c='six thousand four hundred sixteen' WHERE a=17639;\nUPDATE t2 SET c='thirteen thousand two hundred sixty-five' WHERE a=17640;\nUPDATE t2 SET c='seventy-four thousand two hundred eighty-three' WHERE a=17641;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-seven' WHERE a=17642;\nUPDATE t2 SET c='ninety-six thousand one hundred seventy-six' WHERE a=17643;\nUPDATE t2 SET c='forty-two thousand three hundred five' WHERE a=17644;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty-seven' WHERE a=17645;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-seven' WHERE a=17646;\nUPDATE t2 SET c='sixty-six thousand two hundred seventy-seven' WHERE a=17647;\nUPDATE t2 SET c='twelve thousand seven hundred twenty-eight' WHERE a=17648;\nUPDATE t2 SET c='sixty-four thousand nine hundred thirty-nine' WHERE a=17649;\nUPDATE t2 SET c='ninety-six thousand seven hundred fifteen' WHERE a=17650;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=17651;\nUPDATE t2 SET c='fourteen thousand seven hundred eighty' WHERE a=17652;\nUPDATE t2 SET c='thirty-five thousand two hundred twenty-eight' WHERE a=17653;\nUPDATE t2 SET c='eighty-one thousand thirty-three' WHERE a=17654;\nUPDATE t2 SET c='twenty-one thousand nine hundred fifty-one' WHERE a=17655;\nUPDATE t2 SET c='sixteen thousand nine hundred seventy-three' WHERE a=17656;\nUPDATE t2 SET c='eighty-six thousand three hundred fifty-seven' WHERE a=17657;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy-six' WHERE a=17658;\nUPDATE t2 SET c='eight thousand one hundred fifty-six' WHERE a=17659;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-eight' WHERE a=17660;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-three' WHERE a=17661;\nUPDATE t2 SET c='eighty-one thousand seven hundred sixty-nine' WHERE a=17662;\nUPDATE t2 SET c='ninety thousand one hundred eighty-one' WHERE a=17663;\nUPDATE t2 SET c='thirty-two thousand five hundred twelve' WHERE a=17664;\nUPDATE t2 SET c='eighty-one thousand three hundred thirty-two' WHERE a=17665;\nUPDATE t2 SET c='eighty-three thousand six hundred thirty-eight' WHERE a=17666;\nUPDATE t2 SET c='seventy-one thousand nine hundred thirty-two' WHERE a=17667;\nUPDATE t2 SET c='fifteen thousand seven hundred eighty-six' WHERE a=17668;\nUPDATE t2 SET c='thirty-two thousand seven hundred ninety-one' WHERE a=17669;\nUPDATE t2 SET c='fifty-five thousand forty-seven' WHERE a=17670;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-three' WHERE a=17671;\nUPDATE t2 SET c='forty-three thousand seven hundred forty-nine' WHERE a=17672;\nUPDATE t2 SET c='fifty-five thousand two hundred seventy-eight' WHERE a=17673;\nUPDATE t2 SET c='ninety-one thousand two hundred six' WHERE a=17674;\nUPDATE t2 SET c='seventy thousand one hundred fifteen' WHERE a=17675;\nUPDATE t2 SET c='eighty-three thousand two hundred ninety-nine' WHERE a=17676;\nUPDATE t2 SET c='seventy-six thousand four hundred sixty-five' WHERE a=17677;\nUPDATE t2 SET c='forty-nine thousand four hundred forty' WHERE a=17678;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-six' WHERE a=17679;\nUPDATE t2 SET c='sixty-two thousand nineteen' WHERE a=17680;\nUPDATE t2 SET c='seventy-two thousand ninety-two' WHERE a=17681;\nUPDATE t2 SET c='seventy thousand three hundred eighty-six' WHERE a=17682;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-seven' WHERE a=17683;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-seven' WHERE a=17684;\nUPDATE t2 SET c='fifty thousand eight hundred eight' WHERE a=17685;\nUPDATE t2 SET c='fourteen thousand two hundred ninety-one' WHERE a=17686;\nUPDATE t2 SET c='four thousand one hundred forty-six' WHERE a=17687;\nUPDATE t2 SET c='eighty-eight thousand seven hundred twenty-seven' WHERE a=17688;\nUPDATE t2 SET c='thirty thousand twenty-four' WHERE a=17689;\nUPDATE t2 SET c='thirty thousand seven hundred sixty-seven' WHERE a=17690;\nUPDATE t2 SET c='ninety-five thousand seven hundred nine' WHERE a=17691;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-seven' WHERE a=17692;\nUPDATE t2 SET c='five thousand seven hundred fifty-three' WHERE a=17693;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-six' WHERE a=17694;\nUPDATE t2 SET c='fifteen thousand six hundred eighty-five' WHERE a=17695;\nUPDATE t2 SET c='sixty-two thousand four hundred seventy-one' WHERE a=17696;\nUPDATE t2 SET c='forty thousand nine hundred fifty-two' WHERE a=17697;\nUPDATE t2 SET c='sixteen thousand six hundred ninety-five' WHERE a=17698;\nUPDATE t2 SET c='fifty-eight thousand five hundred twenty-seven' WHERE a=17699;\nUPDATE t2 SET c='forty-five thousand two hundred thirteen' WHERE a=17700;\nUPDATE t2 SET c='twenty-one thousand five hundred sixty-five' WHERE a=17701;\nUPDATE t2 SET c='twenty-two thousand six hundred five' WHERE a=17702;\nUPDATE t2 SET c='thirty-eight thousand four hundred seventy-one' WHERE a=17703;\nUPDATE t2 SET c='forty-nine thousand four hundred ninety-two' WHERE a=17704;\nUPDATE t2 SET c='forty-two thousand two hundred twelve' WHERE a=17705;\nUPDATE t2 SET c='thirty-seven thousand two hundred ninety-five' WHERE a=17706;\nUPDATE t2 SET c='eighty-two thousand six hundred thirty-three' WHERE a=17707;\nUPDATE t2 SET c='fifty-nine thousand one hundred six' WHERE a=17708;\nUPDATE t2 SET c='sixty-one thousand three hundred thirteen' WHERE a=17709;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety' WHERE a=17710;\nUPDATE t2 SET c='nine thousand three hundred seventy-nine' WHERE a=17711;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-five' WHERE a=17712;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-seven' WHERE a=17713;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-one' WHERE a=17714;\nUPDATE t2 SET c='sixty-eight thousand eighty-four' WHERE a=17715;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirteen' WHERE a=17716;\nUPDATE t2 SET c='eighty-one thousand eight hundred eighty-eight' WHERE a=17717;\nUPDATE t2 SET c='sixty-five thousand three hundred two' WHERE a=17718;\nUPDATE t2 SET c='ninety-three thousand four hundred fifty-four' WHERE a=17719;\nUPDATE t2 SET c='twenty-four thousand six hundred twelve' WHERE a=17720;\nUPDATE t2 SET c='twenty-six thousand eight hundred eighteen' WHERE a=17721;\nUPDATE t2 SET c='ten thousand seven hundred thirty-eight' WHERE a=17722;\nUPDATE t2 SET c='ninety-five thousand six hundred eighty-nine' WHERE a=17723;\nUPDATE t2 SET c='three thousand six hundred fourteen' WHERE a=17724;\nUPDATE t2 SET c='twenty-eight thousand four hundred fourteen' WHERE a=17725;\nUPDATE t2 SET c='ninety-five thousand three hundred thirteen' WHERE a=17726;\nUPDATE t2 SET c='forty-eight thousand nine hundred eighty-six' WHERE a=17727;\nUPDATE t2 SET c='thirty thousand three hundred fifteen' WHERE a=17728;\nUPDATE t2 SET c='fifty thousand thirty-four' WHERE a=17729;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-eight' WHERE a=17730;\nUPDATE t2 SET c='twenty-five thousand five hundred fifteen' WHERE a=17731;\nUPDATE t2 SET c='eighty-nine thousand nine hundred seventy-eight' WHERE a=17732;\nUPDATE t2 SET c='seventy thousand four hundred sixty-two' WHERE a=17733;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty' WHERE a=17734;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixteen' WHERE a=17735;\nUPDATE t2 SET c='forty-six thousand eight hundred forty' WHERE a=17736;\nUPDATE t2 SET c='seventy thousand four hundred nineteen' WHERE a=17737;\nUPDATE t2 SET c='nine thousand six hundred sixty-seven' WHERE a=17738;\nUPDATE t2 SET c='eighty-two thousand nine hundred fifteen' WHERE a=17739;\nUPDATE t2 SET c='seven thousand nine hundred ninety-four' WHERE a=17740;\nUPDATE t2 SET c='five thousand one hundred ninety-three' WHERE a=17741;\nUPDATE t2 SET c='two thousand four hundred seventy' WHERE a=17742;\nUPDATE t2 SET c='twenty-five thousand seven hundred forty-one' WHERE a=17743;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-seven' WHERE a=17744;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-nine' WHERE a=17745;\nUPDATE t2 SET c='seven thousand nine hundred fifty-two' WHERE a=17746;\nUPDATE t2 SET c='four thousand two hundred thirty-two' WHERE a=17747;\nUPDATE t2 SET c='ninety thousand four hundred forty-five' WHERE a=17748;\nUPDATE t2 SET c='twelve thousand fifteen' WHERE a=17749;\nUPDATE t2 SET c='seventy thousand eight hundred forty-nine' WHERE a=17750;\nUPDATE t2 SET c='seventy thousand three hundred two' WHERE a=17751;\nUPDATE t2 SET c='ninety-six thousand five hundred forty-one' WHERE a=17752;\nUPDATE t2 SET c='ten thousand seven hundred forty-five' WHERE a=17753;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty' WHERE a=17754;\nUPDATE t2 SET c='sixty-eight thousand eight hundred thirty-six' WHERE a=17755;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-two' WHERE a=17756;\nUPDATE t2 SET c='ninety-four thousand four hundred ninety-nine' WHERE a=17757;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-three' WHERE a=17758;\nUPDATE t2 SET c='ninety-five thousand three hundred thirty' WHERE a=17759;\nUPDATE t2 SET c='forty-three thousand four hundred forty-four' WHERE a=17760;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-five' WHERE a=17761;\nUPDATE t2 SET c='seven thousand three hundred thirty-five' WHERE a=17762;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty-seven' WHERE a=17763;\nUPDATE t2 SET c='eighty-five thousand five hundred fifty-nine' WHERE a=17764;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=17765;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=17766;\nUPDATE t2 SET c='fifty-seven thousand six hundred sixty-two' WHERE a=17767;\nUPDATE t2 SET c='twenty-two thousand four hundred fifty-nine' WHERE a=17768;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-seven' WHERE a=17769;\nUPDATE t2 SET c='fifty-nine thousand seven hundred thirty-two' WHERE a=17770;\nUPDATE t2 SET c='forty-three thousand two hundred fifty-five' WHERE a=17771;\nUPDATE t2 SET c='eighty-five thousand seven hundred thirty' WHERE a=17772;\nUPDATE t2 SET c='eighty-nine thousand eight hundred thirty-four' WHERE a=17773;\nUPDATE t2 SET c='one thousand nine hundred fifty-eight' WHERE a=17774;\nUPDATE t2 SET c='forty-two thousand four hundred six' WHERE a=17775;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-one' WHERE a=17776;\nUPDATE t2 SET c='ten thousand five hundred fourteen' WHERE a=17777;\nUPDATE t2 SET c='eighty-three thousand seventy-two' WHERE a=17778;\nUPDATE t2 SET c='sixty-five thousand four hundred fourteen' WHERE a=17779;\nUPDATE t2 SET c='seventy-seven thousand one hundred sixty-one' WHERE a=17780;\nUPDATE t2 SET c='seventy-nine thousand seven hundred ninety-three' WHERE a=17781;\nUPDATE t2 SET c='nine thousand eight hundred ninety-one' WHERE a=17782;\nUPDATE t2 SET c='five thousand three hundred forty-one' WHERE a=17783;\nUPDATE t2 SET c='sixty-two thousand four hundred sixty-seven' WHERE a=17784;\nUPDATE t2 SET c='ninety-four thousand four hundred twenty-five' WHERE a=17785;\nUPDATE t2 SET c='forty-six thousand fifty-nine' WHERE a=17786;\nUPDATE t2 SET c='one thousand eight hundred sixty' WHERE a=17787;\nUPDATE t2 SET c='seventy-five thousand fifteen' WHERE a=17788;\nUPDATE t2 SET c='fifty-six thousand seven hundred sixty-one' WHERE a=17789;\nUPDATE t2 SET c='fifty thousand two hundred eighty-five' WHERE a=17790;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-seven' WHERE a=17791;\nUPDATE t2 SET c='eighty-four thousand eight hundred forty-three' WHERE a=17792;\nUPDATE t2 SET c='forty-one thousand two hundred sixty-four' WHERE a=17793;\nUPDATE t2 SET c='fifty-five thousand seven hundred fifty-two' WHERE a=17794;\nUPDATE t2 SET c='seventy-five thousand four hundred eighty-six' WHERE a=17795;\nUPDATE t2 SET c='thirty-three thousand three hundred seventy-three' WHERE a=17796;\nUPDATE t2 SET c='twenty-nine thousand five' WHERE a=17797;\nUPDATE t2 SET c='six thousand seven hundred fifty-six' WHERE a=17798;\nUPDATE t2 SET c='sixty-one thousand one' WHERE a=17799;\nUPDATE t2 SET c='fifty-nine thousand three hundred eighty' WHERE a=17800;\nUPDATE t2 SET c='twenty thousand nine hundred eighty-nine' WHERE a=17801;\nUPDATE t2 SET c='eighty-three thousand two hundred fifty' WHERE a=17802;\nUPDATE t2 SET c='thirty-two thousand eight hundred fifty-five' WHERE a=17803;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-three' WHERE a=17804;\nUPDATE t2 SET c='eighty-four thousand seven hundred nineteen' WHERE a=17805;\nUPDATE t2 SET c='five thousand four hundred fifteen' WHERE a=17806;\nUPDATE t2 SET c='ninety-four thousand one hundred fourteen' WHERE a=17807;\nUPDATE t2 SET c='fifty-three thousand four hundred forty-three' WHERE a=17808;\nUPDATE t2 SET c='nineteen thousand three hundred twenty' WHERE a=17809;\nUPDATE t2 SET c='twenty-two thousand three hundred thirty-five' WHERE a=17810;\nUPDATE t2 SET c='fifty-five thousand sixteen' WHERE a=17811;\nUPDATE t2 SET c='one thousand four hundred fifty-two' WHERE a=17812;\nUPDATE t2 SET c='seventy-three thousand four hundred seventy-two' WHERE a=17813;\nUPDATE t2 SET c='thirty-seven thousand four hundred sixty-seven' WHERE a=17814;\nUPDATE t2 SET c='twenty-eight thousand six hundred twenty-seven' WHERE a=17815;\nUPDATE t2 SET c='eight thousand three hundred twenty-six' WHERE a=17816;\nUPDATE t2 SET c='ninety-one thousand six hundred twenty-one' WHERE a=17817;\nUPDATE t2 SET c='fifty-four thousand two hundred eighty-nine' WHERE a=17818;\nUPDATE t2 SET c='sixty-seven thousand seven hundred sixty-five' WHERE a=17819;\nUPDATE t2 SET c='thirty-five thousand two hundred five' WHERE a=17820;\nUPDATE t2 SET c='sixty-three thousand eight hundred' WHERE a=17821;\nUPDATE t2 SET c='nine hundred thirty-three' WHERE a=17822;\nUPDATE t2 SET c='thirty-four thousand one hundred eighty-three' WHERE a=17823;\nUPDATE t2 SET c='eight thousand three hundred ninety-eight' WHERE a=17824;\nUPDATE t2 SET c='forty-nine thousand nine hundred fifty-two' WHERE a=17825;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-five' WHERE a=17826;\nUPDATE t2 SET c='fifty-nine thousand three hundred forty-two' WHERE a=17827;\nUPDATE t2 SET c='sixty thousand forty-seven' WHERE a=17828;\nUPDATE t2 SET c='eight thousand one hundred fifty-five' WHERE a=17829;\nUPDATE t2 SET c='nineteen thousand three hundred eighty-seven' WHERE a=17830;\nUPDATE t2 SET c='thirty-seven thousand eighty-seven' WHERE a=17831;\nUPDATE t2 SET c='eighty-four thousand three hundred eighty-five' WHERE a=17832;\nUPDATE t2 SET c='sixty-nine thousand thirty-nine' WHERE a=17833;\nUPDATE t2 SET c='seventy-eight thousand five hundred twelve' WHERE a=17834;\nUPDATE t2 SET c='eighteen thousand eighty' WHERE a=17835;\nUPDATE t2 SET c='forty-three thousand nine' WHERE a=17836;\nUPDATE t2 SET c='three thousand nine hundred thirty-nine' WHERE a=17837;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-two' WHERE a=17838;\nUPDATE t2 SET c='thirty-nine thousand two hundred sixty-five' WHERE a=17839;\nUPDATE t2 SET c='fifty-seven thousand seven hundred eighty-three' WHERE a=17840;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-five' WHERE a=17841;\nUPDATE t2 SET c='eighteen thousand five hundred twenty-four' WHERE a=17842;\nUPDATE t2 SET c='sixty-eight thousand sixty-nine' WHERE a=17843;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-four' WHERE a=17844;\nUPDATE t2 SET c='ninety-five thousand nine hundred five' WHERE a=17845;\nUPDATE t2 SET c='eighty-three thousand five hundred sixty-one' WHERE a=17846;\nUPDATE t2 SET c='ninety-two thousand two hundred fifty-five' WHERE a=17847;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-two' WHERE a=17848;\nUPDATE t2 SET c='forty-eight thousand four hundred eighty-seven' WHERE a=17849;\nUPDATE t2 SET c='thirty-three thousand three hundred five' WHERE a=17850;\nUPDATE t2 SET c='thirty-six thousand one hundred fifty-four' WHERE a=17851;\nUPDATE t2 SET c='forty-three thousand two hundred six' WHERE a=17852;\nUPDATE t2 SET c='twenty-six thousand seven hundred seven' WHERE a=17853;\nUPDATE t2 SET c='twenty-nine thousand nine hundred fourteen' WHERE a=17854;\nUPDATE t2 SET c='ninety thousand nine hundred thirty-seven' WHERE a=17855;\nUPDATE t2 SET c='fifty-three thousand seventy-four' WHERE a=17856;\nUPDATE t2 SET c='thirteen thousand two hundred forty-two' WHERE a=17857;\nUPDATE t2 SET c='seventy-nine thousand nine hundred twelve' WHERE a=17858;\nUPDATE t2 SET c='ninety-three thousand eight hundred sixty-three' WHERE a=17859;\nUPDATE t2 SET c='eighteen thousand one hundred seventy-six' WHERE a=17860;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty' WHERE a=17861;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-three' WHERE a=17862;\nUPDATE t2 SET c='thirty-four thousand eighteen' WHERE a=17863;\nUPDATE t2 SET c='twenty-eight thousand three hundred sixty-nine' WHERE a=17864;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty-four' WHERE a=17865;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-one' WHERE a=17866;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-three' WHERE a=17867;\nUPDATE t2 SET c='forty-eight thousand one hundred seventy-seven' WHERE a=17868;\nUPDATE t2 SET c='seventy-two thousand one hundred fifteen' WHERE a=17869;\nUPDATE t2 SET c='seventy-three thousand eight hundred nineteen' WHERE a=17870;\nUPDATE t2 SET c='twenty-five thousand three hundred' WHERE a=17871;\nUPDATE t2 SET c='sixty-four thousand thirty-four' WHERE a=17872;\nUPDATE t2 SET c='forty-seven thousand two hundred eighteen' WHERE a=17873;\nUPDATE t2 SET c='eighty-one thousand two hundred ninety-seven' WHERE a=17874;\nUPDATE t2 SET c='thirty thousand five hundred sixty-seven' WHERE a=17875;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eleven' WHERE a=17876;\nUPDATE t2 SET c='forty-five thousand two hundred eleven' WHERE a=17877;\nUPDATE t2 SET c='forty-one thousand three hundred ninety-eight' WHERE a=17878;\nUPDATE t2 SET c='eighty-eight thousand six hundred twenty-seven' WHERE a=17879;\nUPDATE t2 SET c='sixty-two thousand three hundred ninety-nine' WHERE a=17880;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-five' WHERE a=17881;\nUPDATE t2 SET c='twelve thousand one hundred twenty-three' WHERE a=17882;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-four' WHERE a=17883;\nUPDATE t2 SET c='thirty-four thousand seventy-two' WHERE a=17884;\nUPDATE t2 SET c='seventy-four thousand three hundred fifty-six' WHERE a=17885;\nUPDATE t2 SET c='eighty-six thousand two hundred fifty-four' WHERE a=17886;\nUPDATE t2 SET c='sixty-one thousand forty' WHERE a=17887;\nUPDATE t2 SET c='seventy-two thousand three hundred thirty-one' WHERE a=17888;\nUPDATE t2 SET c='forty-four thousand two hundred seventy-nine' WHERE a=17889;\nUPDATE t2 SET c='seventy-four thousand four hundred six' WHERE a=17890;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighty-eight' WHERE a=17891;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-two' WHERE a=17892;\nUPDATE t2 SET c='twenty-seven thousand four hundred twenty-four' WHERE a=17893;\nUPDATE t2 SET c='forty-five thousand two hundred seventy-two' WHERE a=17894;\nUPDATE t2 SET c='eighty-four thousand eight hundred twenty-one' WHERE a=17895;\nUPDATE t2 SET c='seventy thousand two hundred six' WHERE a=17896;\nUPDATE t2 SET c='thirty-four thousand six hundred ninety' WHERE a=17897;\nUPDATE t2 SET c='fifty-three thousand three hundred three' WHERE a=17898;\nUPDATE t2 SET c='fifty-five thousand nine hundred thirty-one' WHERE a=17899;\nUPDATE t2 SET c='twenty-two thousand four hundred seventy-one' WHERE a=17900;\nUPDATE t2 SET c='forty-three thousand one hundred ninety-five' WHERE a=17901;\nUPDATE t2 SET c='twelve thousand two hundred sixty-five' WHERE a=17902;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty' WHERE a=17903;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-eight' WHERE a=17904;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty' WHERE a=17905;\nUPDATE t2 SET c='fifty thousand four hundred twenty-six' WHERE a=17906;\nUPDATE t2 SET c='thirty-nine thousand eight hundred forty-four' WHERE a=17907;\nUPDATE t2 SET c='thirty-six thousand three hundred seventy-six' WHERE a=17908;\nUPDATE t2 SET c='sixty-five thousand forty-one' WHERE a=17909;\nUPDATE t2 SET c='eleven thousand eighteen' WHERE a=17910;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-one' WHERE a=17911;\nUPDATE t2 SET c='ninety-eight thousand one hundred forty-four' WHERE a=17912;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-four' WHERE a=17913;\nUPDATE t2 SET c='twelve thousand one hundred sixty-two' WHERE a=17914;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-one' WHERE a=17915;\nUPDATE t2 SET c='twenty-five thousand five hundred eighteen' WHERE a=17916;\nUPDATE t2 SET c='fifty-nine thousand four hundred seventy-four' WHERE a=17917;\nUPDATE t2 SET c='twenty thousand two hundred thirty-nine' WHERE a=17918;\nUPDATE t2 SET c='seventy-two thousand sixteen' WHERE a=17919;\nUPDATE t2 SET c='seven thousand seven hundred eighty-two' WHERE a=17920;\nUPDATE t2 SET c='forty-six thousand one hundred seventy-one' WHERE a=17921;\nUPDATE t2 SET c='forty-six thousand five hundred six' WHERE a=17922;\nUPDATE t2 SET c='thirty thousand sixteen' WHERE a=17923;\nUPDATE t2 SET c='forty-two thousand ninety' WHERE a=17924;\nUPDATE t2 SET c='sixty thousand six hundred ninety-six' WHERE a=17925;\nUPDATE t2 SET c='fifty-four thousand one' WHERE a=17926;\nUPDATE t2 SET c='thirty-five thousand two hundred sixty-one' WHERE a=17927;\nUPDATE t2 SET c='sixteen thousand three hundred twenty' WHERE a=17928;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty-one' WHERE a=17929;\nUPDATE t2 SET c='sixteen thousand six hundred ninety-two' WHERE a=17930;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-eight' WHERE a=17931;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-seven' WHERE a=17932;\nUPDATE t2 SET c='twenty-eight thousand three' WHERE a=17933;\nUPDATE t2 SET c='forty-eight thousand seven hundred twenty-seven' WHERE a=17934;\nUPDATE t2 SET c='seventy-five thousand one hundred seventy-six' WHERE a=17935;\nUPDATE t2 SET c='fifty-two thousand one hundred forty-nine' WHERE a=17936;\nUPDATE t2 SET c='thirty-five thousand nine hundred eleven' WHERE a=17937;\nUPDATE t2 SET c='seven thousand two hundred seventeen' WHERE a=17938;\nUPDATE t2 SET c='ninety-five thousand four hundred forty-nine' WHERE a=17939;\nUPDATE t2 SET c='six thousand eighty-six' WHERE a=17940;\nUPDATE t2 SET c='eighty-three thousand one hundred thirty' WHERE a=17941;\nUPDATE t2 SET c='nineteen thousand thirty-six' WHERE a=17942;\nUPDATE t2 SET c='fifty-eight thousand nine hundred seventy-seven' WHERE a=17943;\nUPDATE t2 SET c='eighteen thousand three hundred sixty-four' WHERE a=17944;\nUPDATE t2 SET c='seventy-one thousand six hundred four' WHERE a=17945;\nUPDATE t2 SET c='eighty-five thousand twenty-one' WHERE a=17946;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty' WHERE a=17947;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-eight' WHERE a=17948;\nUPDATE t2 SET c='seventy-five thousand one hundred fifty-nine' WHERE a=17949;\nUPDATE t2 SET c='nine thousand ninety-eight' WHERE a=17950;\nUPDATE t2 SET c='eighty-six thousand six hundred forty-six' WHERE a=17951;\nUPDATE t2 SET c='forty-three thousand four hundred fifty-one' WHERE a=17952;\nUPDATE t2 SET c='eighty-six thousand fourteen' WHERE a=17953;\nUPDATE t2 SET c='sixty-one thousand three hundred six' WHERE a=17954;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=17955;\nUPDATE t2 SET c='eighty-two thousand three hundred' WHERE a=17956;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-three' WHERE a=17957;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-six' WHERE a=17958;\nUPDATE t2 SET c='eleven thousand fifty-five' WHERE a=17959;\nUPDATE t2 SET c='fifty-eight thousand two hundred forty-four' WHERE a=17960;\nUPDATE t2 SET c='twenty-two thousand twenty-six' WHERE a=17961;\nUPDATE t2 SET c='twenty-one thousand five hundred seven' WHERE a=17962;\nUPDATE t2 SET c='twenty-four thousand two hundred twenty-five' WHERE a=17963;\nUPDATE t2 SET c='nineteen thousand seven hundred eighty-five' WHERE a=17964;\nUPDATE t2 SET c='forty-five thousand three hundred twenty-seven' WHERE a=17965;\nUPDATE t2 SET c='ninety-seven thousand two hundred eighty-four' WHERE a=17966;\nUPDATE t2 SET c='sixty thousand six hundred forty-four' WHERE a=17967;\nUPDATE t2 SET c='seventy-one thousand twelve' WHERE a=17968;\nUPDATE t2 SET c='fifty-four thousand two hundred forty-three' WHERE a=17969;\nUPDATE t2 SET c='seventeen thousand fifty' WHERE a=17970;\nUPDATE t2 SET c='seventy-seven thousand eight hundred seven' WHERE a=17971;\nUPDATE t2 SET c='sixty-nine thousand four hundred fifteen' WHERE a=17972;\nUPDATE t2 SET c='forty-six thousand nine hundred eighty-two' WHERE a=17973;\nUPDATE t2 SET c='one thousand three hundred forty-one' WHERE a=17974;\nUPDATE t2 SET c='sixty thousand seven hundred twenty-six' WHERE a=17975;\nUPDATE t2 SET c='twenty-two thousand one hundred eighteen' WHERE a=17976;\nUPDATE t2 SET c='sixteen thousand three hundred twenty-five' WHERE a=17977;\nUPDATE t2 SET c='seventy-two thousand four hundred five' WHERE a=17978;\nUPDATE t2 SET c='twenty-three thousand nine hundred eighty' WHERE a=17979;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty-three' WHERE a=17980;\nUPDATE t2 SET c='two hundred twelve' WHERE a=17981;\nUPDATE t2 SET c='seven thousand sixty-four' WHERE a=17982;\nUPDATE t2 SET c='seventy-four thousand nine hundred fourteen' WHERE a=17983;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-seven' WHERE a=17984;\nUPDATE t2 SET c='thirty thousand nine hundred forty-five' WHERE a=17985;\nUPDATE t2 SET c='eighty-two thousand one hundred sixty-three' WHERE a=17986;\nUPDATE t2 SET c='eight thousand seven hundred ninety-five' WHERE a=17987;\nUPDATE t2 SET c='eighty thousand nine hundred eight' WHERE a=17988;\nUPDATE t2 SET c='seventy-five thousand five hundred seventy-seven' WHERE a=17989;\nUPDATE t2 SET c='thirty-nine thousand seven hundred sixty-eight' WHERE a=17990;\nUPDATE t2 SET c='thirty-six thousand nineteen' WHERE a=17991;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-nine' WHERE a=17992;\nUPDATE t2 SET c='ninety thousand six hundred seven' WHERE a=17993;\nUPDATE t2 SET c='nine thousand five hundred eighty-five' WHERE a=17994;\nUPDATE t2 SET c='thirty-nine thousand four hundred thirty-eight' WHERE a=17995;\nUPDATE t2 SET c='sixteen thousand one hundred thirteen' WHERE a=17996;\nUPDATE t2 SET c='eighty-eight thousand four hundred ninety-one' WHERE a=17997;\nUPDATE t2 SET c='fifty-two thousand six hundred sixty-eight' WHERE a=17998;\nUPDATE t2 SET c='fifty-five thousand five hundred ninety-two' WHERE a=17999;\nUPDATE t2 SET c='one hundred eighty-nine' WHERE a=18000;\nUPDATE t2 SET c='forty-eight thousand three hundred forty-one' WHERE a=18001;\nUPDATE t2 SET c='sixty-six thousand one hundred eighty-nine' WHERE a=18002;\nUPDATE t2 SET c='thirty thousand five hundred thirty-three' WHERE a=18003;\nUPDATE t2 SET c='seventy-five thousand three hundred seventy-three' WHERE a=18004;\nUPDATE t2 SET c='thirty-eight thousand seven hundred nineteen' WHERE a=18005;\nUPDATE t2 SET c='ninety-five thousand seven hundred six' WHERE a=18006;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-one' WHERE a=18007;\nUPDATE t2 SET c='sixty-three thousand eight hundred ninety-nine' WHERE a=18008;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy' WHERE a=18009;\nUPDATE t2 SET c='forty-nine thousand seven hundred ninety-seven' WHERE a=18010;\nUPDATE t2 SET c='ninety-nine thousand eight hundred seventy-one' WHERE a=18011;\nUPDATE t2 SET c='sixty-six thousand three hundred fifty' WHERE a=18012;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-eight' WHERE a=18013;\nUPDATE t2 SET c='fifty-eight thousand fifty-one' WHERE a=18014;\nUPDATE t2 SET c='eleven thousand three hundred sixty-three' WHERE a=18015;\nUPDATE t2 SET c='forty thousand two hundred thirty-six' WHERE a=18016;\nUPDATE t2 SET c='fifteen thousand thirty-one' WHERE a=18017;\nUPDATE t2 SET c='fifty-one thousand three hundred seventy-nine' WHERE a=18018;\nUPDATE t2 SET c='eighty-six thousand three hundred forty-three' WHERE a=18019;\nUPDATE t2 SET c='thirty-one thousand twenty-nine' WHERE a=18020;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-three' WHERE a=18021;\nUPDATE t2 SET c='forty-six thousand two hundred forty-four' WHERE a=18022;\nUPDATE t2 SET c='twenty-six thousand nine hundred forty-five' WHERE a=18023;\nUPDATE t2 SET c='thirteen thousand seven hundred five' WHERE a=18024;\nUPDATE t2 SET c='twenty-eight thousand two hundred ninety-eight' WHERE a=18025;\nUPDATE t2 SET c='seventy-two thousand six hundred ninety-nine' WHERE a=18026;\nUPDATE t2 SET c='twenty-eight thousand five hundred four' WHERE a=18027;\nUPDATE t2 SET c='nineteen thousand sixty-seven' WHERE a=18028;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-nine' WHERE a=18029;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-five' WHERE a=18030;\nUPDATE t2 SET c='eighty thousand three hundred thirty-four' WHERE a=18031;\nUPDATE t2 SET c='three thousand two hundred eighty-nine' WHERE a=18032;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-six' WHERE a=18033;\nUPDATE t2 SET c='twenty-nine thousand nine hundred seventy-seven' WHERE a=18034;\nUPDATE t2 SET c='thirty thousand seven hundred six' WHERE a=18035;\nUPDATE t2 SET c='forty-six thousand nine hundred thirty-one' WHERE a=18036;\nUPDATE t2 SET c='seventy-two thousand one hundred fifty-seven' WHERE a=18037;\nUPDATE t2 SET c='seventeen thousand three hundred eight' WHERE a=18038;\nUPDATE t2 SET c='fifty-six thousand ninety-three' WHERE a=18039;\nUPDATE t2 SET c='ninety-three thousand fifty-five' WHERE a=18040;\nUPDATE t2 SET c='eighty-five thousand three hundred sixty-three' WHERE a=18041;\nUPDATE t2 SET c='seven thousand three hundred seventy-eight' WHERE a=18042;\nUPDATE t2 SET c='sixty thousand five hundred thirty-eight' WHERE a=18043;\nUPDATE t2 SET c='fifty thousand four hundred forty' WHERE a=18044;\nUPDATE t2 SET c='twenty-four thousand five hundred eighty-eight' WHERE a=18045;\nUPDATE t2 SET c='ninety-one thousand four hundred twenty-four' WHERE a=18046;\nUPDATE t2 SET c='sixty-eight thousand two hundred sixty-five' WHERE a=18047;\nUPDATE t2 SET c='seven thousand eight hundred eighty-seven' WHERE a=18048;\nUPDATE t2 SET c='fifty-eight thousand seventy-eight' WHERE a=18049;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-five' WHERE a=18050;\nUPDATE t2 SET c='ninety-nine thousand one hundred ninety-nine' WHERE a=18051;\nUPDATE t2 SET c='eighty thousand three hundred thirty-two' WHERE a=18052;\nUPDATE t2 SET c='twelve thousand one hundred fifty-four' WHERE a=18053;\nUPDATE t2 SET c='fifty-two thousand four hundred forty-nine' WHERE a=18054;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-six' WHERE a=18055;\nUPDATE t2 SET c='twenty-seven thousand six hundred nine' WHERE a=18056;\nUPDATE t2 SET c='fifteen thousand nine hundred thirty-three' WHERE a=18057;\nUPDATE t2 SET c='fifty-six thousand one hundred seventy-two' WHERE a=18058;\nUPDATE t2 SET c='nine thousand eight hundred eighteen' WHERE a=18059;\nUPDATE t2 SET c='seventy thousand two hundred ninety-two' WHERE a=18060;\nUPDATE t2 SET c='fifty-eight thousand five hundred seventy-five' WHERE a=18061;\nUPDATE t2 SET c='seventy-four thousand two hundred sixteen' WHERE a=18062;\nUPDATE t2 SET c='eighty-one thousand two hundred seventy-one' WHERE a=18063;\nUPDATE t2 SET c='two thousand thirty-one' WHERE a=18064;\nUPDATE t2 SET c='forty-seven thousand six hundred nine' WHERE a=18065;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-seven' WHERE a=18066;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy-six' WHERE a=18067;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty' WHERE a=18068;\nUPDATE t2 SET c='eighteen thousand eight hundred sixty' WHERE a=18069;\nUPDATE t2 SET c='fifty-eight thousand five hundred ninety-seven' WHERE a=18070;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty-five' WHERE a=18071;\nUPDATE t2 SET c='eighteen thousand four hundred forty-two' WHERE a=18072;\nUPDATE t2 SET c='fifty-seven thousand six hundred thirty-six' WHERE a=18073;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-one' WHERE a=18074;\nUPDATE t2 SET c='forty-four thousand nine hundred ninety-five' WHERE a=18075;\nUPDATE t2 SET c='ninety-two thousand six hundred forty-three' WHERE a=18076;\nUPDATE t2 SET c='thirty-three thousand seven hundred seventy' WHERE a=18077;\nUPDATE t2 SET c='seventy-three thousand fourteen' WHERE a=18078;\nUPDATE t2 SET c='one thousand forty-two' WHERE a=18079;\nUPDATE t2 SET c='twenty-one thousand four hundred thirty-seven' WHERE a=18080;\nUPDATE t2 SET c='sixty-six thousand six hundred five' WHERE a=18081;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-six' WHERE a=18082;\nUPDATE t2 SET c='one thousand six hundred twenty-seven' WHERE a=18083;\nUPDATE t2 SET c='sixty-one thousand eighty-four' WHERE a=18084;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety-seven' WHERE a=18085;\nUPDATE t2 SET c='fifty-eight thousand four hundred fifty-six' WHERE a=18086;\nUPDATE t2 SET c='twenty-seven thousand five hundred seventeen' WHERE a=18087;\nUPDATE t2 SET c='twenty-one thousand four hundred sixty-seven' WHERE a=18088;\nUPDATE t2 SET c='twenty-eight thousand one hundred' WHERE a=18089;\nUPDATE t2 SET c='thirty-one thousand three hundred twenty-six' WHERE a=18090;\nUPDATE t2 SET c='six thousand five hundred forty-three' WHERE a=18091;\nUPDATE t2 SET c='twenty-eight thousand four' WHERE a=18092;\nUPDATE t2 SET c='ninety-four thousand five hundred nine' WHERE a=18093;\nUPDATE t2 SET c='seventy-six thousand three hundred forty-seven' WHERE a=18094;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=18095;\nUPDATE t2 SET c='forty-two thousand five hundred ninety' WHERE a=18096;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eighteen' WHERE a=18097;\nUPDATE t2 SET c='sixty-eight thousand four hundred nine' WHERE a=18098;\nUPDATE t2 SET c='eighty-three thousand nine hundred twenty-three' WHERE a=18099;\nUPDATE t2 SET c='twenty-two thousand two hundred eighty-eight' WHERE a=18100;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty-three' WHERE a=18101;\nUPDATE t2 SET c='eighty-seven thousand two hundred' WHERE a=18102;\nUPDATE t2 SET c='seventy-eight thousand fifty-three' WHERE a=18103;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-four' WHERE a=18104;\nUPDATE t2 SET c='thirty-two thousand seven hundred forty-five' WHERE a=18105;\nUPDATE t2 SET c='sixty-two thousand eight hundred three' WHERE a=18106;\nUPDATE t2 SET c='thirty-six thousand two hundred fifteen' WHERE a=18107;\nUPDATE t2 SET c='sixty thousand eight hundred seventeen' WHERE a=18108;\nUPDATE t2 SET c='eighteen thousand two hundred fifty-one' WHERE a=18109;\nUPDATE t2 SET c='ninety-two thousand four hundred fifteen' WHERE a=18110;\nUPDATE t2 SET c='sixty-four thousand twenty-four' WHERE a=18111;\nUPDATE t2 SET c='eighty-one thousand nine' WHERE a=18112;\nUPDATE t2 SET c='forty thousand nine hundred five' WHERE a=18113;\nUPDATE t2 SET c='fifty-two thousand nine hundred seventy-five' WHERE a=18114;\nUPDATE t2 SET c='sixty-six thousand seventy' WHERE a=18115;\nUPDATE t2 SET c='eighty-seven thousand twenty' WHERE a=18116;\nUPDATE t2 SET c='fourteen thousand ninety-five' WHERE a=18117;\nUPDATE t2 SET c='seventy-seven thousand six hundred sixty-seven' WHERE a=18118;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-three' WHERE a=18119;\nUPDATE t2 SET c='eighty-nine thousand two hundred sixty-two' WHERE a=18120;\nUPDATE t2 SET c='four thousand five hundred seventy-four' WHERE a=18121;\nUPDATE t2 SET c='four thousand four hundred sixty-one' WHERE a=18122;\nUPDATE t2 SET c='eighty-three thousand two hundred eighteen' WHERE a=18123;\nUPDATE t2 SET c='nine thousand five hundred eighty-seven' WHERE a=18124;\nUPDATE t2 SET c='eight thousand eight hundred sixteen' WHERE a=18125;\nUPDATE t2 SET c='nine thousand two hundred five' WHERE a=18126;\nUPDATE t2 SET c='sixty-four thousand two hundred thirty-four' WHERE a=18127;\nUPDATE t2 SET c='thirty thousand seven hundred six' WHERE a=18128;\nUPDATE t2 SET c='seven thousand five hundred fifty-four' WHERE a=18129;\nUPDATE t2 SET c='four thousand two hundred' WHERE a=18130;\nUPDATE t2 SET c='fifty-four thousand four hundred ninety-nine' WHERE a=18131;\nUPDATE t2 SET c='eighty-two thousand four hundred fifty-seven' WHERE a=18132;\nUPDATE t2 SET c='nine thousand four hundred fifty-five' WHERE a=18133;\nUPDATE t2 SET c='eighty-five thousand nine hundred thirty' WHERE a=18134;\nUPDATE t2 SET c='thirty-four thousand four hundred thirty-eight' WHERE a=18135;\nUPDATE t2 SET c='fourteen thousand six hundred fifteen' WHERE a=18136;\nUPDATE t2 SET c='eighty-four thousand three hundred three' WHERE a=18137;\nUPDATE t2 SET c='twenty-eight thousand four hundred seven' WHERE a=18138;\nUPDATE t2 SET c='eighteen thousand five hundred forty-nine' WHERE a=18139;\nUPDATE t2 SET c='eighteen thousand nine hundred sixty-six' WHERE a=18140;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-eight' WHERE a=18141;\nUPDATE t2 SET c='eleven thousand twenty-four' WHERE a=18142;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-six' WHERE a=18143;\nUPDATE t2 SET c='sixty-seven thousand one hundred six' WHERE a=18144;\nUPDATE t2 SET c='five thousand nine' WHERE a=18145;\nUPDATE t2 SET c='fifty-eight thousand seven hundred' WHERE a=18146;\nUPDATE t2 SET c='eighty-two thousand seven hundred thirty-eight' WHERE a=18147;\nUPDATE t2 SET c='thirteen thousand eight hundred forty-seven' WHERE a=18148;\nUPDATE t2 SET c='ten thousand eight hundred ninety-seven' WHERE a=18149;\nUPDATE t2 SET c='seventy-one thousand forty-four' WHERE a=18150;\nUPDATE t2 SET c='eighty-nine thousand eight hundred eighteen' WHERE a=18151;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifty-four' WHERE a=18152;\nUPDATE t2 SET c='forty-two thousand one hundred ninety-nine' WHERE a=18153;\nUPDATE t2 SET c='forty-one thousand five hundred fifty-eight' WHERE a=18154;\nUPDATE t2 SET c='seventy-one thousand six hundred three' WHERE a=18155;\nUPDATE t2 SET c='seventy-eight thousand three hundred fifty-eight' WHERE a=18156;\nUPDATE t2 SET c='seventy-nine thousand nine hundred sixty' WHERE a=18157;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy-one' WHERE a=18158;\nUPDATE t2 SET c='fifty-four thousand three hundred forty-seven' WHERE a=18159;\nUPDATE t2 SET c='fifty-four thousand four hundred twenty-one' WHERE a=18160;\nUPDATE t2 SET c='nineteen thousand nine hundred forty-nine' WHERE a=18161;\nUPDATE t2 SET c='sixty-four thousand seven hundred eighty-two' WHERE a=18162;\nUPDATE t2 SET c='fifty thousand nine hundred sixty-seven' WHERE a=18163;\nUPDATE t2 SET c='eleven thousand seven hundred forty-eight' WHERE a=18164;\nUPDATE t2 SET c='seventy-one thousand forty' WHERE a=18165;\nUPDATE t2 SET c='sixty-seven thousand six hundred eighty-three' WHERE a=18166;\nUPDATE t2 SET c='thirty thousand seven hundred two' WHERE a=18167;\nUPDATE t2 SET c='sixty-six thousand one hundred seventy-seven' WHERE a=18168;\nUPDATE t2 SET c='thirty-nine thousand six hundred thirty-three' WHERE a=18169;\nUPDATE t2 SET c='seventeen thousand two hundred sixty-four' WHERE a=18170;\nUPDATE t2 SET c='forty-seven thousand five hundred six' WHERE a=18171;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty' WHERE a=18172;\nUPDATE t2 SET c='sixty-six thousand three hundred forty-nine' WHERE a=18173;\nUPDATE t2 SET c='seventeen thousand six hundred sixty-two' WHERE a=18174;\nUPDATE t2 SET c='sixty-eight thousand one hundred eighty-two' WHERE a=18175;\nUPDATE t2 SET c='fourteen thousand seven hundred nineteen' WHERE a=18176;\nUPDATE t2 SET c='thirty-five thousand five hundred twenty-four' WHERE a=18177;\nUPDATE t2 SET c='sixty-five thousand one hundred three' WHERE a=18178;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-five' WHERE a=18179;\nUPDATE t2 SET c='eleven thousand nine hundred ten' WHERE a=18180;\nUPDATE t2 SET c='twenty-six thousand nine hundred forty-seven' WHERE a=18181;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-nine' WHERE a=18182;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-seven' WHERE a=18183;\nUPDATE t2 SET c='forty-seven thousand five hundred thirty-seven' WHERE a=18184;\nUPDATE t2 SET c='seventeen thousand forty-three' WHERE a=18185;\nUPDATE t2 SET c='ninety-nine thousand six hundred twenty-seven' WHERE a=18186;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=18187;\nUPDATE t2 SET c='thirty-three thousand five hundred sixty-six' WHERE a=18188;\nUPDATE t2 SET c='seventy-one thousand one hundred nineteen' WHERE a=18189;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-six' WHERE a=18190;\nUPDATE t2 SET c='eighty-five thousand' WHERE a=18191;\nUPDATE t2 SET c='seventy thousand three hundred seventy-five' WHERE a=18192;\nUPDATE t2 SET c='sixty-nine thousand forty-six' WHERE a=18193;\nUPDATE t2 SET c='thirty-four thousand seven hundred six' WHERE a=18194;\nUPDATE t2 SET c='eighteen thousand two hundred thirty-eight' WHERE a=18195;\nUPDATE t2 SET c='thirty thousand four hundred fifty-three' WHERE a=18196;\nUPDATE t2 SET c='one thousand seven hundred forty-six' WHERE a=18197;\nUPDATE t2 SET c='eleven thousand four' WHERE a=18198;\nUPDATE t2 SET c='twenty-eight thousand eight hundred two' WHERE a=18199;\nUPDATE t2 SET c='seventy-eight thousand five hundred thirty-two' WHERE a=18200;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventy-one' WHERE a=18201;\nUPDATE t2 SET c='thirty-five thousand eight hundred sixty' WHERE a=18202;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirteen' WHERE a=18203;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy-eight' WHERE a=18204;\nUPDATE t2 SET c='forty-six thousand seven hundred nineteen' WHERE a=18205;\nUPDATE t2 SET c='sixty-four thousand five hundred eighty-nine' WHERE a=18206;\nUPDATE t2 SET c='eighty-nine thousand two hundred fifty-four' WHERE a=18207;\nUPDATE t2 SET c='forty-two thousand one hundred sixty-six' WHERE a=18208;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-seven' WHERE a=18209;\nUPDATE t2 SET c='one thousand six hundred sixty-seven' WHERE a=18210;\nUPDATE t2 SET c='nine hundred ninety-two' WHERE a=18211;\nUPDATE t2 SET c='thirty-two thousand five hundred thirty' WHERE a=18212;\nUPDATE t2 SET c='thirty thousand three hundred' WHERE a=18213;\nUPDATE t2 SET c='seventy-nine thousand six hundred forty-eight' WHERE a=18214;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-nine' WHERE a=18215;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-three' WHERE a=18216;\nUPDATE t2 SET c='sixty-six thousand eight hundred eighty-three' WHERE a=18217;\nUPDATE t2 SET c='eighty-six thousand five hundred fifty-three' WHERE a=18218;\nUPDATE t2 SET c='sixteen thousand seven hundred fifty-six' WHERE a=18219;\nUPDATE t2 SET c='seventy-eight thousand one hundred eighty-two' WHERE a=18220;\nUPDATE t2 SET c='seventy-six thousand sixty-four' WHERE a=18221;\nUPDATE t2 SET c='twenty thousand two hundred sixty-one' WHERE a=18222;\nUPDATE t2 SET c='five thousand five hundred ninety-eight' WHERE a=18223;\nUPDATE t2 SET c='seventy-six thousand three hundred ninety-one' WHERE a=18224;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=18225;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty-three' WHERE a=18226;\nUPDATE t2 SET c='seven thousand seven hundred ninety-one' WHERE a=18227;\nUPDATE t2 SET c='eighty-three thousand nine hundred ninety' WHERE a=18228;\nUPDATE t2 SET c='seventy-five thousand nine hundred sixty-three' WHERE a=18229;\nUPDATE t2 SET c='sixty-two thousand five hundred sixty-five' WHERE a=18230;\nUPDATE t2 SET c='twelve thousand one' WHERE a=18231;\nUPDATE t2 SET c='fifty-two thousand one hundred forty-seven' WHERE a=18232;\nUPDATE t2 SET c='ninety thousand two hundred twenty-two' WHERE a=18233;\nUPDATE t2 SET c='seventy-seven thousand six hundred fifty-two' WHERE a=18234;\nUPDATE t2 SET c='seventy-two thousand three hundred sixty-five' WHERE a=18235;\nUPDATE t2 SET c='thirty-four thousand two hundred fourteen' WHERE a=18236;\nUPDATE t2 SET c='forty-six thousand one hundred ninety-one' WHERE a=18237;\nUPDATE t2 SET c='ninety-four thousand eight hundred sixty-one' WHERE a=18238;\nUPDATE t2 SET c='fifty-four thousand six hundred ninety-one' WHERE a=18239;\nUPDATE t2 SET c='thirty thousand seven hundred thirteen' WHERE a=18240;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-two' WHERE a=18241;\nUPDATE t2 SET c='eighteen thousand seven hundred fifty-five' WHERE a=18242;\nUPDATE t2 SET c='fifty-six thousand eight hundred twenty-one' WHERE a=18243;\nUPDATE t2 SET c='forty-eight thousand one hundred thirty-five' WHERE a=18244;\nUPDATE t2 SET c='forty-three thousand one hundred thirty-two' WHERE a=18245;\nUPDATE t2 SET c='sixty-three thousand eight hundred twenty-one' WHERE a=18246;\nUPDATE t2 SET c='twenty-nine thousand three hundred forty-one' WHERE a=18247;\nUPDATE t2 SET c='seventy-nine thousand five hundred twenty-two' WHERE a=18248;\nUPDATE t2 SET c='eighty-three thousand two hundred fifty-six' WHERE a=18249;\nUPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=18250;\nUPDATE t2 SET c='twenty-two thousand five hundred seventy-five' WHERE a=18251;\nUPDATE t2 SET c='two thousand four hundred ninety-six' WHERE a=18252;\nUPDATE t2 SET c='thirty-three thousand one hundred one' WHERE a=18253;\nUPDATE t2 SET c='ten thousand nine hundred twenty-six' WHERE a=18254;\nUPDATE t2 SET c='thirty-nine thousand nine hundred fifty-two' WHERE a=18255;\nUPDATE t2 SET c='thirty-three thousand nine hundred ninety-five' WHERE a=18256;\nUPDATE t2 SET c='forty-five thousand six hundred nine' WHERE a=18257;\nUPDATE t2 SET c='ninety-seven thousand one hundred sixty-one' WHERE a=18258;\nUPDATE t2 SET c='eight thousand four hundred fifty-six' WHERE a=18259;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-seven' WHERE a=18260;\nUPDATE t2 SET c='twenty-four thousand five hundred thirty-five' WHERE a=18261;\nUPDATE t2 SET c='twenty-seven thousand three hundred seventy-eight' WHERE a=18262;\nUPDATE t2 SET c='forty-two thousand seven hundred forty-five' WHERE a=18263;\nUPDATE t2 SET c='fifty-four thousand nine hundred twenty-two' WHERE a=18264;\nUPDATE t2 SET c='fifty-two thousand seven hundred fifty-two' WHERE a=18265;\nUPDATE t2 SET c='seventy-four thousand six hundred eighteen' WHERE a=18266;\nUPDATE t2 SET c='eighteen thousand eighty-two' WHERE a=18267;\nUPDATE t2 SET c='ninety-eight thousand nine hundred seventy-eight' WHERE a=18268;\nUPDATE t2 SET c='fifty thousand two hundred nineteen' WHERE a=18269;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-three' WHERE a=18270;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-four' WHERE a=18271;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventy-nine' WHERE a=18272;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-seven' WHERE a=18273;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-two' WHERE a=18274;\nUPDATE t2 SET c='eleven thousand two hundred seventeen' WHERE a=18275;\nUPDATE t2 SET c='eighty-three thousand two hundred forty-seven' WHERE a=18276;\nUPDATE t2 SET c='thirty-four thousand nine hundred ninety' WHERE a=18277;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=18278;\nUPDATE t2 SET c='ninety-two thousand one hundred twenty-two' WHERE a=18279;\nUPDATE t2 SET c='twelve thousand seven hundred ninety-four' WHERE a=18280;\nUPDATE t2 SET c='seventy thousand eight hundred eighty' WHERE a=18281;\nUPDATE t2 SET c='forty-five thousand two hundred eighteen' WHERE a=18282;\nUPDATE t2 SET c='seventy-four thousand seven hundred fifty-nine' WHERE a=18283;\nUPDATE t2 SET c='sixty-four thousand sixty-six' WHERE a=18284;\nUPDATE t2 SET c='seventy-two thousand two hundred ten' WHERE a=18285;\nUPDATE t2 SET c='one hundred fifty-nine' WHERE a=18286;\nUPDATE t2 SET c='thirty-five thousand six' WHERE a=18287;\nUPDATE t2 SET c='seventy-two thousand five hundred eighty-six' WHERE a=18288;\nUPDATE t2 SET c='nine thousand three hundred eleven' WHERE a=18289;\nUPDATE t2 SET c='forty-three thousand three hundred sixty-eight' WHERE a=18290;\nUPDATE t2 SET c='forty-three thousand eight hundred thirty-five' WHERE a=18291;\nUPDATE t2 SET c='eleven thousand seven hundred fifty-six' WHERE a=18292;\nUPDATE t2 SET c='ninety-two thousand two hundred fifty-one' WHERE a=18293;\nUPDATE t2 SET c='nine thousand four hundred sixty-four' WHERE a=18294;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=18295;\nUPDATE t2 SET c='fifty-nine thousand two hundred eighty-one' WHERE a=18296;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-seven' WHERE a=18297;\nUPDATE t2 SET c='forty thousand fifty-one' WHERE a=18298;\nUPDATE t2 SET c='eighteen thousand twenty-eight' WHERE a=18299;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=18300;\nUPDATE t2 SET c='thirty-three thousand two hundred' WHERE a=18301;\nUPDATE t2 SET c='thirty-eight thousand nine hundred thirty-five' WHERE a=18302;\nUPDATE t2 SET c='forty-five thousand sixteen' WHERE a=18303;\nUPDATE t2 SET c='twenty-five thousand eight hundred' WHERE a=18304;\nUPDATE t2 SET c='ten thousand five hundred nine' WHERE a=18305;\nUPDATE t2 SET c='two thousand nine hundred sixty-one' WHERE a=18306;\nUPDATE t2 SET c='fifty-eight thousand two hundred twenty' WHERE a=18307;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-eight' WHERE a=18308;\nUPDATE t2 SET c='fifty-eight thousand two hundred fifty-six' WHERE a=18309;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-two' WHERE a=18310;\nUPDATE t2 SET c='sixty-six thousand forty-three' WHERE a=18311;\nUPDATE t2 SET c='ninety-seven thousand one hundred sixty-five' WHERE a=18312;\nUPDATE t2 SET c='ninety-six thousand eight hundred forty-seven' WHERE a=18313;\nUPDATE t2 SET c='fourteen thousand three hundred sixty-one' WHERE a=18314;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=18315;\nUPDATE t2 SET c='ninety-four thousand eighty-eight' WHERE a=18316;\nUPDATE t2 SET c='ninety-one thousand four hundred four' WHERE a=18317;\nUPDATE t2 SET c='seventy-five thousand ninety' WHERE a=18318;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-six' WHERE a=18319;\nUPDATE t2 SET c='eighty-one thousand five hundred nineteen' WHERE a=18320;\nUPDATE t2 SET c='five thousand nine hundred eighty-six' WHERE a=18321;\nUPDATE t2 SET c='two hundred ninety-six' WHERE a=18322;\nUPDATE t2 SET c='four thousand two hundred sixty-one' WHERE a=18323;\nUPDATE t2 SET c='forty-six thousand nine hundred fifty-five' WHERE a=18324;\nUPDATE t2 SET c='five thousand eight hundred sixty' WHERE a=18325;\nUPDATE t2 SET c='ninety thousand four hundred sixty-six' WHERE a=18326;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-one' WHERE a=18327;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty' WHERE a=18328;\nUPDATE t2 SET c='fifty thousand three hundred thirty-two' WHERE a=18329;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixty-nine' WHERE a=18330;\nUPDATE t2 SET c='ninety-two thousand one hundred fifty-four' WHERE a=18331;\nUPDATE t2 SET c='twenty-nine thousand four hundred thirty-six' WHERE a=18332;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-eight' WHERE a=18333;\nUPDATE t2 SET c='eleven thousand one' WHERE a=18334;\nUPDATE t2 SET c='thirty-one thousand nine hundred twenty-eight' WHERE a=18335;\nUPDATE t2 SET c='fifty-one thousand two hundred twenty-four' WHERE a=18336;\nUPDATE t2 SET c='thirty-three thousand two hundred ninety-one' WHERE a=18337;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-six' WHERE a=18338;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-four' WHERE a=18339;\nUPDATE t2 SET c='five thousand one hundred twenty-five' WHERE a=18340;\nUPDATE t2 SET c='seventy-six thousand nine hundred twenty-four' WHERE a=18341;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-one' WHERE a=18342;\nUPDATE t2 SET c='sixty-eight thousand five hundred eight' WHERE a=18343;\nUPDATE t2 SET c='five thousand three hundred twenty-eight' WHERE a=18344;\nUPDATE t2 SET c='fifty-three thousand eight hundred sixty' WHERE a=18345;\nUPDATE t2 SET c='fifteen thousand six' WHERE a=18346;\nUPDATE t2 SET c='ninety-five thousand five hundred ninety-eight' WHERE a=18347;\nUPDATE t2 SET c='ninety-six thousand five hundred eighty-seven' WHERE a=18348;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-three' WHERE a=18349;\nUPDATE t2 SET c='one thousand eight hundred sixty-seven' WHERE a=18350;\nUPDATE t2 SET c='seventy-six thousand twenty-nine' WHERE a=18351;\nUPDATE t2 SET c='ninety-seven thousand eight hundred sixty-seven' WHERE a=18352;\nUPDATE t2 SET c='twenty-eight thousand six hundred sixty-one' WHERE a=18353;\nUPDATE t2 SET c='fifteen thousand nine hundred sixty-seven' WHERE a=18354;\nUPDATE t2 SET c='sixty-five thousand sixty-five' WHERE a=18355;\nUPDATE t2 SET c='one thousand eight hundred twenty-four' WHERE a=18356;\nUPDATE t2 SET c='sixty-seven thousand two hundred ninety-seven' WHERE a=18357;\nUPDATE t2 SET c='sixty-one thousand eight hundred thirty-five' WHERE a=18358;\nUPDATE t2 SET c='fifty-one thousand seven hundred twenty-four' WHERE a=18359;\nUPDATE t2 SET c='ninety thousand six hundred twenty-nine' WHERE a=18360;\nUPDATE t2 SET c='forty thousand fourteen' WHERE a=18361;\nUPDATE t2 SET c='fifty-seven thousand two hundred seventy-nine' WHERE a=18362;\nUPDATE t2 SET c='eighty-eight thousand five hundred ninety-six' WHERE a=18363;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty-six' WHERE a=18364;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-six' WHERE a=18365;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-six' WHERE a=18366;\nUPDATE t2 SET c='eighty-eight thousand twelve' WHERE a=18367;\nUPDATE t2 SET c='seventy-seven thousand nine hundred six' WHERE a=18368;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-eight' WHERE a=18369;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-six' WHERE a=18370;\nUPDATE t2 SET c='forty-six thousand seven hundred twenty-seven' WHERE a=18371;\nUPDATE t2 SET c='four thousand five hundred fifty-one' WHERE a=18372;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-five' WHERE a=18373;\nUPDATE t2 SET c='forty-three thousand one hundred thirty-seven' WHERE a=18374;\nUPDATE t2 SET c='ten thousand nine hundred ninety' WHERE a=18375;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-three' WHERE a=18376;\nUPDATE t2 SET c='eleven thousand seven hundred four' WHERE a=18377;\nUPDATE t2 SET c='fifty-six thousand six hundred seventy-five' WHERE a=18378;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-three' WHERE a=18379;\nUPDATE t2 SET c='eleven thousand six' WHERE a=18380;\nUPDATE t2 SET c='sixty-nine thousand seven hundred fifty-seven' WHERE a=18381;\nUPDATE t2 SET c='thirty-three thousand seven hundred nineteen' WHERE a=18382;\nUPDATE t2 SET c='forty-nine thousand twenty-one' WHERE a=18383;\nUPDATE t2 SET c='twenty thousand four hundred sixty-eight' WHERE a=18384;\nUPDATE t2 SET c='forty-one thousand eight hundred thirty-four' WHERE a=18385;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety' WHERE a=18386;\nUPDATE t2 SET c='seventy-one thousand four hundred thirty-two' WHERE a=18387;\nUPDATE t2 SET c='twenty-two thousand eight hundred forty-six' WHERE a=18388;\nUPDATE t2 SET c='twenty-six thousand four hundred forty-six' WHERE a=18389;\nUPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=18390;\nUPDATE t2 SET c='seventeen thousand five hundred sixty-six' WHERE a=18391;\nUPDATE t2 SET c='sixty-seven thousand seven hundred eleven' WHERE a=18392;\nUPDATE t2 SET c='thirty-two thousand three hundred twenty-two' WHERE a=18393;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-four' WHERE a=18394;\nUPDATE t2 SET c='ninety thousand six hundred sixty-seven' WHERE a=18395;\nUPDATE t2 SET c='sixty-four thousand nine hundred five' WHERE a=18396;\nUPDATE t2 SET c='eighty-four thousand two hundred eighty-two' WHERE a=18397;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-two' WHERE a=18398;\nUPDATE t2 SET c='ninety-two thousand three hundred eight' WHERE a=18399;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-three' WHERE a=18400;\nUPDATE t2 SET c='thirty-three thousand thirty-two' WHERE a=18401;\nUPDATE t2 SET c='twenty-eight thousand five hundred eighty-one' WHERE a=18402;\nUPDATE t2 SET c='fifty-seven thousand three hundred thirteen' WHERE a=18403;\nUPDATE t2 SET c='twenty-five thousand eight hundred sixty-six' WHERE a=18404;\nUPDATE t2 SET c='fifty-four thousand nine hundred eighty-two' WHERE a=18405;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-seven' WHERE a=18406;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-seven' WHERE a=18407;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty-one' WHERE a=18408;\nUPDATE t2 SET c='fifty-six thousand four hundred ninety-five' WHERE a=18409;\nUPDATE t2 SET c='six thousand seven hundred thirty' WHERE a=18410;\nUPDATE t2 SET c='ninety-nine thousand five hundred eighty-nine' WHERE a=18411;\nUPDATE t2 SET c='eighty thousand five hundred five' WHERE a=18412;\nUPDATE t2 SET c='twenty-seven thousand six hundred ninety-one' WHERE a=18413;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-seven' WHERE a=18414;\nUPDATE t2 SET c='seventy-four thousand four hundred nine' WHERE a=18415;\nUPDATE t2 SET c='thirty thousand three hundred thirty-five' WHERE a=18416;\nUPDATE t2 SET c='seven thousand four hundred nineteen' WHERE a=18417;\nUPDATE t2 SET c='seventy-three thousand six hundred thirty-two' WHERE a=18418;\nUPDATE t2 SET c='eight thousand two hundred eighty-one' WHERE a=18419;\nUPDATE t2 SET c='sixty-seven thousand ninety-five' WHERE a=18420;\nUPDATE t2 SET c='six thousand four hundred one' WHERE a=18421;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-seven' WHERE a=18422;\nUPDATE t2 SET c='twenty-eight thousand four hundred sixty-four' WHERE a=18423;\nUPDATE t2 SET c='fifty-four thousand five hundred six' WHERE a=18424;\nUPDATE t2 SET c='seventy-seven thousand six hundred forty-five' WHERE a=18425;\nUPDATE t2 SET c='twenty-nine thousand two hundred four' WHERE a=18426;\nUPDATE t2 SET c='eight thousand four hundred six' WHERE a=18427;\nUPDATE t2 SET c='three thousand nine hundred eighty-two' WHERE a=18428;\nUPDATE t2 SET c='seventy-seven thousand nine hundred fifty-four' WHERE a=18429;\nUPDATE t2 SET c='twelve thousand six hundred ninety' WHERE a=18430;\nUPDATE t2 SET c='eighty-one thousand sixty-seven' WHERE a=18431;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-six' WHERE a=18432;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-two' WHERE a=18433;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-two' WHERE a=18434;\nUPDATE t2 SET c='ten thousand seven hundred ninety-eight' WHERE a=18435;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty-seven' WHERE a=18436;\nUPDATE t2 SET c='twenty-four thousand six hundred eleven' WHERE a=18437;\nUPDATE t2 SET c='eighty thousand four hundred seventy-nine' WHERE a=18438;\nUPDATE t2 SET c='twenty-seven thousand three hundred fifty-five' WHERE a=18439;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-one' WHERE a=18440;\nUPDATE t2 SET c='five hundred twenty-five' WHERE a=18441;\nUPDATE t2 SET c='ninety-one thousand one hundred ninety-four' WHERE a=18442;\nUPDATE t2 SET c='one thousand nineteen' WHERE a=18443;\nUPDATE t2 SET c='five thousand five hundred ninety-three' WHERE a=18444;\nUPDATE t2 SET c='fourteen thousand four hundred fifteen' WHERE a=18445;\nUPDATE t2 SET c='forty-one thousand seven hundred thirty-nine' WHERE a=18446;\nUPDATE t2 SET c='ninety-one thousand one hundred twenty-three' WHERE a=18447;\nUPDATE t2 SET c='seventeen thousand two hundred seven' WHERE a=18448;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fifteen' WHERE a=18449;\nUPDATE t2 SET c='eighty-four thousand three hundred eighty-one' WHERE a=18450;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-two' WHERE a=18451;\nUPDATE t2 SET c='three thousand three hundred sixty-three' WHERE a=18452;\nUPDATE t2 SET c='thirty-three thousand two hundred thirty-six' WHERE a=18453;\nUPDATE t2 SET c='thirty-eight thousand thirty-nine' WHERE a=18454;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-five' WHERE a=18455;\nUPDATE t2 SET c='thirty-two thousand six hundred sixty' WHERE a=18456;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-nine' WHERE a=18457;\nUPDATE t2 SET c='one thousand two hundred forty-one' WHERE a=18458;\nUPDATE t2 SET c='twenty thousand four hundred twenty-eight' WHERE a=18459;\nUPDATE t2 SET c='fifty-eight thousand two hundred eighty-three' WHERE a=18460;\nUPDATE t2 SET c='thirty-four thousand two hundred sixty-one' WHERE a=18461;\nUPDATE t2 SET c='eight thousand seven' WHERE a=18462;\nUPDATE t2 SET c='fifty-three thousand nine hundred forty-three' WHERE a=18463;\nUPDATE t2 SET c='sixty-seven thousand six hundred ninety-eight' WHERE a=18464;\nUPDATE t2 SET c='fifty-three thousand nine hundred twenty-three' WHERE a=18465;\nUPDATE t2 SET c='fifty-six thousand eighty-six' WHERE a=18466;\nUPDATE t2 SET c='two thousand six hundred sixteen' WHERE a=18467;\nUPDATE t2 SET c='fifty-seven thousand nine hundred ninety' WHERE a=18468;\nUPDATE t2 SET c='twelve thousand seventy-four' WHERE a=18469;\nUPDATE t2 SET c='thirteen thousand twenty-nine' WHERE a=18470;\nUPDATE t2 SET c='seventy-three thousand six hundred eighteen' WHERE a=18471;\nUPDATE t2 SET c='seventy thousand eight hundred seventy-five' WHERE a=18472;\nUPDATE t2 SET c='ninety-two thousand seventy-one' WHERE a=18473;\nUPDATE t2 SET c='eighty thousand one hundred sixty-four' WHERE a=18474;\nUPDATE t2 SET c='sixty-four thousand one hundred sixty-four' WHERE a=18475;\nUPDATE t2 SET c='forty-four thousand one hundred six' WHERE a=18476;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy' WHERE a=18477;\nUPDATE t2 SET c='seventy-eight thousand eighty-three' WHERE a=18478;\nUPDATE t2 SET c='forty-eight thousand one hundred four' WHERE a=18479;\nUPDATE t2 SET c='twelve thousand one hundred ninety-two' WHERE a=18480;\nUPDATE t2 SET c='thirteen thousand sixteen' WHERE a=18481;\nUPDATE t2 SET c='ninety-one thousand four hundred thirty-five' WHERE a=18482;\nUPDATE t2 SET c='fifty-seven thousand two hundred twenty-four' WHERE a=18483;\nUPDATE t2 SET c='seventy-five thousand four hundred fifty' WHERE a=18484;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-nine' WHERE a=18485;\nUPDATE t2 SET c='seventy-two thousand six hundred fifty-five' WHERE a=18486;\nUPDATE t2 SET c='four thousand seven hundred sixty' WHERE a=18487;\nUPDATE t2 SET c='sixty-five thousand six hundred eighty-nine' WHERE a=18488;\nUPDATE t2 SET c='ninety-nine thousand fifty' WHERE a=18489;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty-four' WHERE a=18490;\nUPDATE t2 SET c='ninety-nine thousand eighty-four' WHERE a=18491;\nUPDATE t2 SET c='forty-five thousand four hundred eighty-five' WHERE a=18492;\nUPDATE t2 SET c='forty thousand nine hundred sixty-five' WHERE a=18493;\nUPDATE t2 SET c='eleven thousand four hundred forty-six' WHERE a=18494;\nUPDATE t2 SET c='seventy-four thousand three hundred forty' WHERE a=18495;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-six' WHERE a=18496;\nUPDATE t2 SET c='forty-three thousand nine hundred sixty' WHERE a=18497;\nUPDATE t2 SET c='seventy-six thousand nine hundred seventy-four' WHERE a=18498;\nUPDATE t2 SET c='fifty-seven thousand six hundred three' WHERE a=18499;\nUPDATE t2 SET c='fifty-four thousand three hundred twenty-two' WHERE a=18500;\nUPDATE t2 SET c='forty-seven thousand three hundred twenty-five' WHERE a=18501;\nUPDATE t2 SET c='thirty-five thousand twenty-seven' WHERE a=18502;\nUPDATE t2 SET c='fifty-one thousand four hundred four' WHERE a=18503;\nUPDATE t2 SET c='three thousand seven hundred eighty-two' WHERE a=18504;\nUPDATE t2 SET c='forty-one thousand seven hundred forty-one' WHERE a=18505;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-three' WHERE a=18506;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-four' WHERE a=18507;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-seven' WHERE a=18508;\nUPDATE t2 SET c='sixty-four thousand two hundred eighty-one' WHERE a=18509;\nUPDATE t2 SET c='seventy-four thousand four hundred nineteen' WHERE a=18510;\nUPDATE t2 SET c='sixty-eight thousand six hundred fifty-three' WHERE a=18511;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-six' WHERE a=18512;\nUPDATE t2 SET c='sixteen thousand one hundred seventy-five' WHERE a=18513;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-seven' WHERE a=18514;\nUPDATE t2 SET c='seventy-seven thousand six hundred twenty' WHERE a=18515;\nUPDATE t2 SET c='eighty thousand seven hundred thirty-four' WHERE a=18516;\nUPDATE t2 SET c='sixty-one thousand seven hundred sixty-nine' WHERE a=18517;\nUPDATE t2 SET c='fifty-nine thousand two hundred forty-one' WHERE a=18518;\nUPDATE t2 SET c='twenty-five thousand two hundred twenty-one' WHERE a=18519;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty-two' WHERE a=18520;\nUPDATE t2 SET c='thirty-three thousand seven hundred forty-seven' WHERE a=18521;\nUPDATE t2 SET c='sixty-eight thousand three hundred seven' WHERE a=18522;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty-eight' WHERE a=18523;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-five' WHERE a=18524;\nUPDATE t2 SET c='eighty thousand four hundred seventy-eight' WHERE a=18525;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty-six' WHERE a=18526;\nUPDATE t2 SET c='thirteen thousand five hundred fifty-eight' WHERE a=18527;\nUPDATE t2 SET c='eighty-eight thousand seven hundred eighty-two' WHERE a=18528;\nUPDATE t2 SET c='sixty-five thousand six hundred fifty-eight' WHERE a=18529;\nUPDATE t2 SET c='sixty-six thousand eighty-one' WHERE a=18530;\nUPDATE t2 SET c='forty-one thousand nine hundred seventy-five' WHERE a=18531;\nUPDATE t2 SET c='twelve thousand six hundred twenty-three' WHERE a=18532;\nUPDATE t2 SET c='sixty-one thousand fifty-eight' WHERE a=18533;\nUPDATE t2 SET c='ten thousand two hundred seventy-three' WHERE a=18534;\nUPDATE t2 SET c='ten thousand twenty-four' WHERE a=18535;\nUPDATE t2 SET c='fifty-nine thousand five hundred forty-four' WHERE a=18536;\nUPDATE t2 SET c='ninety-eight thousand seven hundred one' WHERE a=18537;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-four' WHERE a=18538;\nUPDATE t2 SET c='twenty-nine thousand eight hundred one' WHERE a=18539;\nUPDATE t2 SET c='ninety thousand four hundred fourteen' WHERE a=18540;\nUPDATE t2 SET c='thirty-three thousand nine hundred seventy-six' WHERE a=18541;\nUPDATE t2 SET c='eleven thousand two hundred twenty-seven' WHERE a=18542;\nUPDATE t2 SET c='ninety-one thousand three hundred thirty-seven' WHERE a=18543;\nUPDATE t2 SET c='eight thousand seven hundred fifty-seven' WHERE a=18544;\nUPDATE t2 SET c='eighty-eight thousand three hundred seventy-eight' WHERE a=18545;\nUPDATE t2 SET c='fifty-four thousand seven hundred eighty-three' WHERE a=18546;\nUPDATE t2 SET c='fifty-one thousand eight hundred ninety' WHERE a=18547;\nUPDATE t2 SET c='eighteen thousand eight hundred fifty-five' WHERE a=18548;\nUPDATE t2 SET c='seventy-three thousand four hundred forty-two' WHERE a=18549;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-four' WHERE a=18550;\nUPDATE t2 SET c='ninety-seven thousand four hundred thirty-six' WHERE a=18551;\nUPDATE t2 SET c='twenty thousand one hundred thirty-six' WHERE a=18552;\nUPDATE t2 SET c='sixty-seven thousand five hundred forty-nine' WHERE a=18553;\nUPDATE t2 SET c='forty-three thousand nine hundred twenty-one' WHERE a=18554;\nUPDATE t2 SET c='ninety-nine thousand six hundred seven' WHERE a=18555;\nUPDATE t2 SET c='eighty-seven thousand two hundred forty-seven' WHERE a=18556;\nUPDATE t2 SET c='forty-seven thousand nine hundred thirty-nine' WHERE a=18557;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-seven' WHERE a=18558;\nUPDATE t2 SET c='forty-eight thousand four hundred fourteen' WHERE a=18559;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-two' WHERE a=18560;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-seven' WHERE a=18561;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-seven' WHERE a=18562;\nUPDATE t2 SET c='sixty-eight thousand four hundred nine' WHERE a=18563;\nUPDATE t2 SET c='ninety-five thousand seventy-nine' WHERE a=18564;\nUPDATE t2 SET c='forty-two thousand seven hundred six' WHERE a=18565;\nUPDATE t2 SET c='forty thousand eight hundred twenty-two' WHERE a=18566;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-nine' WHERE a=18567;\nUPDATE t2 SET c='seventeen thousand one hundred forty-one' WHERE a=18568;\nUPDATE t2 SET c='seventy-seven thousand seven' WHERE a=18569;\nUPDATE t2 SET c='nineteen thousand five hundred ninety-three' WHERE a=18570;\nUPDATE t2 SET c='one thousand five hundred sixty-four' WHERE a=18571;\nUPDATE t2 SET c='five thousand five hundred twenty-three' WHERE a=18572;\nUPDATE t2 SET c='seventy-nine thousand one hundred eight' WHERE a=18573;\nUPDATE t2 SET c='thirty-eight thousand two hundred eighty-six' WHERE a=18574;\nUPDATE t2 SET c='twenty-one thousand four hundred ten' WHERE a=18575;\nUPDATE t2 SET c='thirty-five thousand three hundred eighty-two' WHERE a=18576;\nUPDATE t2 SET c='sixty-seven thousand two hundred sixty-three' WHERE a=18577;\nUPDATE t2 SET c='fifty-nine thousand five hundred thirty-two' WHERE a=18578;\nUPDATE t2 SET c='fifty-nine thousand four hundred fifty-eight' WHERE a=18579;\nUPDATE t2 SET c='nine hundred eighty-five' WHERE a=18580;\nUPDATE t2 SET c='seventy-one thousand six hundred eighty-three' WHERE a=18581;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-nine' WHERE a=18582;\nUPDATE t2 SET c='eighty-three thousand ninety-seven' WHERE a=18583;\nUPDATE t2 SET c='ninety-four thousand seven hundred eighty-one' WHERE a=18584;\nUPDATE t2 SET c='thirty thousand twelve' WHERE a=18585;\nUPDATE t2 SET c='twelve thousand four hundred thirty-two' WHERE a=18586;\nUPDATE t2 SET c='six thousand nine hundred twenty-eight' WHERE a=18587;\nUPDATE t2 SET c='ninety-two thousand forty-seven' WHERE a=18588;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ten' WHERE a=18589;\nUPDATE t2 SET c='twenty thousand two hundred forty-six' WHERE a=18590;\nUPDATE t2 SET c='forty-eight thousand four hundred thirty-three' WHERE a=18591;\nUPDATE t2 SET c='thirty-five thousand two hundred forty' WHERE a=18592;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=18593;\nUPDATE t2 SET c='twelve thousand nine hundred forty-one' WHERE a=18594;\nUPDATE t2 SET c='ten thousand six hundred thirty-five' WHERE a=18595;\nUPDATE t2 SET c='ten thousand eight hundred ninety-six' WHERE a=18596;\nUPDATE t2 SET c='fifty-six thousand five hundred ninety-nine' WHERE a=18597;\nUPDATE t2 SET c='eighty-seven thousand five hundred nine' WHERE a=18598;\nUPDATE t2 SET c='seventy-three thousand one hundred fifty-five' WHERE a=18599;\nUPDATE t2 SET c='forty-nine thousand nine hundred fifty-eight' WHERE a=18600;\nUPDATE t2 SET c='two thousand two hundred seventy-nine' WHERE a=18601;\nUPDATE t2 SET c='three thousand three hundred twenty-four' WHERE a=18602;\nUPDATE t2 SET c='sixteen thousand seven hundred sixty-seven' WHERE a=18603;\nUPDATE t2 SET c='seventy-six thousand two hundred twenty-four' WHERE a=18604;\nUPDATE t2 SET c='forty-six thousand thirty-nine' WHERE a=18605;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-eight' WHERE a=18606;\nUPDATE t2 SET c='twenty-four thousand seven hundred eighty-six' WHERE a=18607;\nUPDATE t2 SET c='eleven thousand two hundred two' WHERE a=18608;\nUPDATE t2 SET c='ninety-nine thousand four hundred forty' WHERE a=18609;\nUPDATE t2 SET c='seventeen thousand seven hundred fifty-six' WHERE a=18610;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-seven' WHERE a=18611;\nUPDATE t2 SET c='seventy-nine thousand seven hundred twenty' WHERE a=18612;\nUPDATE t2 SET c='ninety-nine thousand six hundred eighteen' WHERE a=18613;\nUPDATE t2 SET c='seventeen thousand two hundred thirty-nine' WHERE a=18614;\nUPDATE t2 SET c='twenty-nine thousand seventy-six' WHERE a=18615;\nUPDATE t2 SET c='eleven thousand one hundred thirty-nine' WHERE a=18616;\nUPDATE t2 SET c='ninety-six thousand two hundred eighty-six' WHERE a=18617;\nUPDATE t2 SET c='forty-seven thousand one hundred twenty-two' WHERE a=18618;\nUPDATE t2 SET c='seventy-one thousand seven hundred nine' WHERE a=18619;\nUPDATE t2 SET c='fifty-two thousand sixty-six' WHERE a=18620;\nUPDATE t2 SET c='sixty thousand two hundred seventy-two' WHERE a=18621;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-seven' WHERE a=18622;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-five' WHERE a=18623;\nUPDATE t2 SET c='seventy-nine thousand three hundred sixty' WHERE a=18624;\nUPDATE t2 SET c='seventy-seven thousand one hundred forty-six' WHERE a=18625;\nUPDATE t2 SET c='seventy-five thousand three hundred seven' WHERE a=18626;\nUPDATE t2 SET c='twenty-four thousand eight hundred twelve' WHERE a=18627;\nUPDATE t2 SET c='nine thousand three hundred forty-three' WHERE a=18628;\nUPDATE t2 SET c='thirteen thousand five hundred forty-two' WHERE a=18629;\nUPDATE t2 SET c='five thousand two hundred forty-nine' WHERE a=18630;\nUPDATE t2 SET c='thirty thousand nine hundred ninety' WHERE a=18631;\nUPDATE t2 SET c='eleven thousand three hundred ninety-nine' WHERE a=18632;\nUPDATE t2 SET c='ninety thousand six hundred seventeen' WHERE a=18633;\nUPDATE t2 SET c='eighty-five thousand two hundred fifty-eight' WHERE a=18634;\nUPDATE t2 SET c='forty-eight thousand three hundred twenty-seven' WHERE a=18635;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-two' WHERE a=18636;\nUPDATE t2 SET c='ninety-eight thousand four hundred eighty-eight' WHERE a=18637;\nUPDATE t2 SET c='six thousand one hundred sixty-five' WHERE a=18638;\nUPDATE t2 SET c='ten thousand seven hundred eighty-three' WHERE a=18639;\nUPDATE t2 SET c='eighty-nine thousand nine hundred fifty-four' WHERE a=18640;\nUPDATE t2 SET c='forty-four thousand six hundred eighty-two' WHERE a=18641;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-three' WHERE a=18642;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy' WHERE a=18643;\nUPDATE t2 SET c='nine thousand six hundred seventy-one' WHERE a=18644;\nUPDATE t2 SET c='seventeen thousand five hundred fifty' WHERE a=18645;\nUPDATE t2 SET c='ninety-six thousand seven hundred thirty-two' WHERE a=18646;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty-eight' WHERE a=18647;\nUPDATE t2 SET c='sixty-five thousand six hundred twenty-two' WHERE a=18648;\nUPDATE t2 SET c='fifty thousand nine hundred ninety-six' WHERE a=18649;\nUPDATE t2 SET c='seven thousand five hundred seventy-one' WHERE a=18650;\nUPDATE t2 SET c='twenty-one thousand nine hundred thirty-two' WHERE a=18651;\nUPDATE t2 SET c='twenty-eight thousand two hundred forty-six' WHERE a=18652;\nUPDATE t2 SET c='ninety thousand six hundred sixty-two' WHERE a=18653;\nUPDATE t2 SET c='seventy-six thousand thirty-five' WHERE a=18654;\nUPDATE t2 SET c='twenty-six thousand nine hundred one' WHERE a=18655;\nUPDATE t2 SET c='thirty-three thousand eight hundred fifty-nine' WHERE a=18656;\nUPDATE t2 SET c='eighty-eight thousand five hundred thirty-four' WHERE a=18657;\nUPDATE t2 SET c='thirty-seven thousand one' WHERE a=18658;\nUPDATE t2 SET c='six thousand four hundred seventy-five' WHERE a=18659;\nUPDATE t2 SET c='ninety-eight thousand nine hundred three' WHERE a=18660;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-one' WHERE a=18661;\nUPDATE t2 SET c='eighty-three thousand seventy-one' WHERE a=18662;\nUPDATE t2 SET c='eighty thousand seven hundred forty-three' WHERE a=18663;\nUPDATE t2 SET c='ten thousand one hundred thirty-nine' WHERE a=18664;\nUPDATE t2 SET c='nine thousand five hundred six' WHERE a=18665;\nUPDATE t2 SET c='forty-one thousand eight hundred thirty-three' WHERE a=18666;\nUPDATE t2 SET c='sixty-seven thousand eight hundred forty-nine' WHERE a=18667;\nUPDATE t2 SET c='fourteen thousand four hundred nineteen' WHERE a=18668;\nUPDATE t2 SET c='seventy-eight thousand one hundred ten' WHERE a=18669;\nUPDATE t2 SET c='thirty-four thousand ninety' WHERE a=18670;\nUPDATE t2 SET c='four thousand seven hundred six' WHERE a=18671;\nUPDATE t2 SET c='thirty-five thousand four hundred sixty-three' WHERE a=18672;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy-eight' WHERE a=18673;\nUPDATE t2 SET c='forty-six thousand four hundred eighty-nine' WHERE a=18674;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-six' WHERE a=18675;\nUPDATE t2 SET c='thirty-eight thousand seven hundred eighteen' WHERE a=18676;\nUPDATE t2 SET c='thirty-four thousand three hundred twenty' WHERE a=18677;\nUPDATE t2 SET c='ten thousand eight hundred seventeen' WHERE a=18678;\nUPDATE t2 SET c='eight hundred ninety-one' WHERE a=18679;\nUPDATE t2 SET c='five thousand nine hundred sixty-one' WHERE a=18680;\nUPDATE t2 SET c='fifty-two thousand seven hundred six' WHERE a=18681;\nUPDATE t2 SET c='thirty-three thousand nine hundred forty-five' WHERE a=18682;\nUPDATE t2 SET c='ninety-seven thousand one hundred thirty-five' WHERE a=18683;\nUPDATE t2 SET c='fifty-three thousand three hundred forty-seven' WHERE a=18684;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-one' WHERE a=18685;\nUPDATE t2 SET c='forty thousand four hundred thirty-four' WHERE a=18686;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-two' WHERE a=18687;\nUPDATE t2 SET c='six thousand one hundred fifty-seven' WHERE a=18688;\nUPDATE t2 SET c='fifty-nine thousand three hundred seventeen' WHERE a=18689;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy' WHERE a=18690;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty' WHERE a=18691;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=18692;\nUPDATE t2 SET c='four thousand five hundred forty-two' WHERE a=18693;\nUPDATE t2 SET c='ninety-six thousand two hundred twenty-five' WHERE a=18694;\nUPDATE t2 SET c='twelve thousand nine hundred thirty-three' WHERE a=18695;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-nine' WHERE a=18696;\nUPDATE t2 SET c='seventy-seven thousand eight hundred thirty-four' WHERE a=18697;\nUPDATE t2 SET c='sixty-one thousand five hundred sixty-two' WHERE a=18698;\nUPDATE t2 SET c='eighty-five thousand six hundred seventeen' WHERE a=18699;\nUPDATE t2 SET c='sixty-five thousand seven hundred fifty' WHERE a=18700;\nUPDATE t2 SET c='seventy-two thousand five hundred sixty-two' WHERE a=18701;\nUPDATE t2 SET c='thirty thousand eleven' WHERE a=18702;\nUPDATE t2 SET c='seventy-four thousand eighteen' WHERE a=18703;\nUPDATE t2 SET c='sixty-eight thousand three hundred fifty-seven' WHERE a=18704;\nUPDATE t2 SET c='two thousand nine hundred twenty-eight' WHERE a=18705;\nUPDATE t2 SET c='sixty-five thousand nine hundred fifty-eight' WHERE a=18706;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-six' WHERE a=18707;\nUPDATE t2 SET c='seventy-four thousand nine hundred forty-six' WHERE a=18708;\nUPDATE t2 SET c='eighty-nine thousand sixty-four' WHERE a=18709;\nUPDATE t2 SET c='sixty-four thousand four hundred ninety' WHERE a=18710;\nUPDATE t2 SET c='seventy-five thousand three hundred four' WHERE a=18711;\nUPDATE t2 SET c='ten thousand eight hundred ninety-nine' WHERE a=18712;\nUPDATE t2 SET c='seventy-one thousand five hundred forty-eight' WHERE a=18713;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty-five' WHERE a=18714;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-three' WHERE a=18715;\nUPDATE t2 SET c='fifty-seven thousand three hundred twenty-six' WHERE a=18716;\nUPDATE t2 SET c='fourteen thousand nine hundred thirty-one' WHERE a=18717;\nUPDATE t2 SET c='twenty-two thousand nine hundred fifty-three' WHERE a=18718;\nUPDATE t2 SET c='sixty-four thousand sixty-nine' WHERE a=18719;\nUPDATE t2 SET c='ten thousand three hundred fifty-four' WHERE a=18720;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-eight' WHERE a=18721;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty-nine' WHERE a=18722;\nUPDATE t2 SET c='ninety thousand eight hundred eighty-two' WHERE a=18723;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-seven' WHERE a=18724;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-seven' WHERE a=18725;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-six' WHERE a=18726;\nUPDATE t2 SET c='eleven thousand three hundred seventy' WHERE a=18727;\nUPDATE t2 SET c='thirty-seven thousand two hundred seventy-three' WHERE a=18728;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-five' WHERE a=18729;\nUPDATE t2 SET c='seven thousand seven hundred thirty-seven' WHERE a=18730;\nUPDATE t2 SET c='one hundred forty-three' WHERE a=18731;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-seven' WHERE a=18732;\nUPDATE t2 SET c='thirty-two thousand seven hundred three' WHERE a=18733;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-two' WHERE a=18734;\nUPDATE t2 SET c='seventy-three thousand two hundred eighty-eight' WHERE a=18735;\nUPDATE t2 SET c='three hundred ninety-seven' WHERE a=18736;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-five' WHERE a=18737;\nUPDATE t2 SET c='fifty-three thousand four hundred four' WHERE a=18738;\nUPDATE t2 SET c='thirty thousand two hundred seventy-seven' WHERE a=18739;\nUPDATE t2 SET c='five thousand seven hundred ninety-six' WHERE a=18740;\nUPDATE t2 SET c='eighty thousand nine hundred ninety-nine' WHERE a=18741;\nUPDATE t2 SET c='eighty-five thousand one hundred eighty-seven' WHERE a=18742;\nUPDATE t2 SET c='sixty-four thousand nine hundred fifty-two' WHERE a=18743;\nUPDATE t2 SET c='forty-two thousand four hundred ninety-four' WHERE a=18744;\nUPDATE t2 SET c='ninety-six thousand thirty-seven' WHERE a=18745;\nUPDATE t2 SET c='eighty-six thousand sixty-six' WHERE a=18746;\nUPDATE t2 SET c='nineteen thousand seven hundred ten' WHERE a=18747;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=18748;\nUPDATE t2 SET c='thirty-eight thousand six hundred eighty-two' WHERE a=18749;\nUPDATE t2 SET c='thirty thousand six' WHERE a=18750;\nUPDATE t2 SET c='one thousand four hundred forty-five' WHERE a=18751;\nUPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=18752;\nUPDATE t2 SET c='sixty-seven thousand one hundred sixty-five' WHERE a=18753;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-seven' WHERE a=18754;\nUPDATE t2 SET c='fifty-seven thousand nine hundred two' WHERE a=18755;\nUPDATE t2 SET c='forty-seven thousand seven hundred ninety-eight' WHERE a=18756;\nUPDATE t2 SET c='twenty thousand five hundred ten' WHERE a=18757;\nUPDATE t2 SET c='seventy-one thousand eight hundred fourteen' WHERE a=18758;\nUPDATE t2 SET c='four thousand three hundred thirty-nine' WHERE a=18759;\nUPDATE t2 SET c='eighty-five thousand six' WHERE a=18760;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighteen' WHERE a=18761;\nUPDATE t2 SET c='twenty-four thousand nine hundred sixty-two' WHERE a=18762;\nUPDATE t2 SET c='thirty-seven thousand one hundred thirty-seven' WHERE a=18763;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-nine' WHERE a=18764;\nUPDATE t2 SET c='seventy-nine thousand one hundred one' WHERE a=18765;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-three' WHERE a=18766;\nUPDATE t2 SET c='fifty-one thousand eight hundred forty-two' WHERE a=18767;\nUPDATE t2 SET c='nine thousand five hundred eighty-four' WHERE a=18768;\nUPDATE t2 SET c='sixty-one thousand two hundred eighty' WHERE a=18769;\nUPDATE t2 SET c='thirty-seven thousand six hundred sixty-three' WHERE a=18770;\nUPDATE t2 SET c='fifty-seven thousand eight hundred forty-nine' WHERE a=18771;\nUPDATE t2 SET c='forty-three thousand five hundred fifty-seven' WHERE a=18772;\nUPDATE t2 SET c='sixty thousand eight hundred' WHERE a=18773;\nUPDATE t2 SET c='thirty-three thousand one hundred ninety-two' WHERE a=18774;\nUPDATE t2 SET c='ninety-two thousand six hundred eighty-one' WHERE a=18775;\nUPDATE t2 SET c='eight hundred eighty-one' WHERE a=18776;\nUPDATE t2 SET c='ninety-seven thousand sixty-one' WHERE a=18777;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-one' WHERE a=18778;\nUPDATE t2 SET c='ten thousand sixty-five' WHERE a=18779;\nUPDATE t2 SET c='fifty-one thousand one hundred seventy-nine' WHERE a=18780;\nUPDATE t2 SET c='sixteen thousand two hundred six' WHERE a=18781;\nUPDATE t2 SET c='one thousand sixty-nine' WHERE a=18782;\nUPDATE t2 SET c='twenty-nine thousand five hundred forty-eight' WHERE a=18783;\nUPDATE t2 SET c='eighty-eight thousand seven hundred fifty-two' WHERE a=18784;\nUPDATE t2 SET c='six thousand seven hundred twenty-nine' WHERE a=18785;\nUPDATE t2 SET c='fifty-three thousand five hundred seventy-seven' WHERE a=18786;\nUPDATE t2 SET c='fifty thousand nine hundred twenty-one' WHERE a=18787;\nUPDATE t2 SET c='fifty-nine thousand sixty-two' WHERE a=18788;\nUPDATE t2 SET c='eighty-eight thousand six hundred three' WHERE a=18789;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-four' WHERE a=18790;\nUPDATE t2 SET c='two thousand nine hundred twenty-one' WHERE a=18791;\nUPDATE t2 SET c='sixty-three thousand seven hundred thirty-six' WHERE a=18792;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty' WHERE a=18793;\nUPDATE t2 SET c='ninety-one thousand two hundred ten' WHERE a=18794;\nUPDATE t2 SET c='twenty-four thousand two hundred seven' WHERE a=18795;\nUPDATE t2 SET c='ninety-one thousand six hundred six' WHERE a=18796;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-three' WHERE a=18797;\nUPDATE t2 SET c='fifty-nine thousand one hundred twenty-four' WHERE a=18798;\nUPDATE t2 SET c='fifty-three thousand four hundred forty-two' WHERE a=18799;\nUPDATE t2 SET c='fifty-six thousand one hundred five' WHERE a=18800;\nUPDATE t2 SET c='ninety-two thousand eight hundred thirty-five' WHERE a=18801;\nUPDATE t2 SET c='twenty-four thousand two hundred eighty' WHERE a=18802;\nUPDATE t2 SET c='eighty-six thousand five hundred seventy-eight' WHERE a=18803;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-five' WHERE a=18804;\nUPDATE t2 SET c='fifty-nine thousand one hundred sixty' WHERE a=18805;\nUPDATE t2 SET c='thirty thousand four hundred fifty' WHERE a=18806;\nUPDATE t2 SET c='twelve thousand eight hundred fifty-three' WHERE a=18807;\nUPDATE t2 SET c='forty-seven thousand eight hundred sixty-nine' WHERE a=18808;\nUPDATE t2 SET c='seventy-five thousand six hundred seventeen' WHERE a=18809;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-eight' WHERE a=18810;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixty-six' WHERE a=18811;\nUPDATE t2 SET c='forty-nine thousand six hundred fifteen' WHERE a=18812;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty-three' WHERE a=18813;\nUPDATE t2 SET c='sixty thousand five hundred twenty-two' WHERE a=18814;\nUPDATE t2 SET c='ninety-four thousand two hundred forty-six' WHERE a=18815;\nUPDATE t2 SET c='eight thousand eight hundred eighty-nine' WHERE a=18816;\nUPDATE t2 SET c='eighty-seven thousand six hundred sixty-nine' WHERE a=18817;\nUPDATE t2 SET c='ninety-one thousand two hundred one' WHERE a=18818;\nUPDATE t2 SET c='sixty-seven thousand three hundred forty-two' WHERE a=18819;\nUPDATE t2 SET c='eighty thousand twenty-nine' WHERE a=18820;\nUPDATE t2 SET c='ninety-four thousand six hundred fifty-eight' WHERE a=18821;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-seven' WHERE a=18822;\nUPDATE t2 SET c='forty-one thousand six hundred one' WHERE a=18823;\nUPDATE t2 SET c='thirty-seven thousand sixty' WHERE a=18824;\nUPDATE t2 SET c='eighty-nine thousand four hundred twelve' WHERE a=18825;\nUPDATE t2 SET c='three hundred forty-two' WHERE a=18826;\nUPDATE t2 SET c='nineteen thousand three hundred sixty' WHERE a=18827;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-four' WHERE a=18828;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty-four' WHERE a=18829;\nUPDATE t2 SET c='twenty-eight thousand sixty-seven' WHERE a=18830;\nUPDATE t2 SET c='sixty-one thousand four hundred seventy-eight' WHERE a=18831;\nUPDATE t2 SET c='ninety-four thousand eight hundred thirty-three' WHERE a=18832;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-nine' WHERE a=18833;\nUPDATE t2 SET c='eighty-four thousand eight hundred fifty-two' WHERE a=18834;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-four' WHERE a=18835;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-eight' WHERE a=18836;\nUPDATE t2 SET c='fourteen thousand two' WHERE a=18837;\nUPDATE t2 SET c='twenty-four thousand nine hundred seventy-nine' WHERE a=18838;\nUPDATE t2 SET c='forty-one thousand five hundred nineteen' WHERE a=18839;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-three' WHERE a=18840;\nUPDATE t2 SET c='twelve thousand one' WHERE a=18841;\nUPDATE t2 SET c='fifty-five thousand one hundred fourteen' WHERE a=18842;\nUPDATE t2 SET c='eleven thousand one hundred fifty-four' WHERE a=18843;\nUPDATE t2 SET c='fifty-six thousand seventy-one' WHERE a=18844;\nUPDATE t2 SET c='twenty-one thousand seven hundred thirty-seven' WHERE a=18845;\nUPDATE t2 SET c='seven thousand nine hundred fourteen' WHERE a=18846;\nUPDATE t2 SET c='forty-nine thousand one hundred eighty-three' WHERE a=18847;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-nine' WHERE a=18848;\nUPDATE t2 SET c='sixty-nine thousand nine hundred ninety-eight' WHERE a=18849;\nUPDATE t2 SET c='twenty-one thousand one hundred ninety' WHERE a=18850;\nUPDATE t2 SET c='five thousand three hundred nineteen' WHERE a=18851;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-five' WHERE a=18852;\nUPDATE t2 SET c='fifty-four thousand six hundred eleven' WHERE a=18853;\nUPDATE t2 SET c='thirty-six thousand three hundred sixty-five' WHERE a=18854;\nUPDATE t2 SET c='sixty-seven thousand four hundred forty-seven' WHERE a=18855;\nUPDATE t2 SET c='eighty-four thousand one hundred sixteen' WHERE a=18856;\nUPDATE t2 SET c='eighty-eight thousand forty' WHERE a=18857;\nUPDATE t2 SET c='forty-four thousand two hundred six' WHERE a=18858;\nUPDATE t2 SET c='four thousand two hundred thirty-nine' WHERE a=18859;\nUPDATE t2 SET c='six thousand three hundred thirty-one' WHERE a=18860;\nUPDATE t2 SET c='seventy-five thousand nine hundred twenty-eight' WHERE a=18861;\nUPDATE t2 SET c='eighty-five thousand eighty-six' WHERE a=18862;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-nine' WHERE a=18863;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty-five' WHERE a=18864;\nUPDATE t2 SET c='thirty-one thousand nine hundred seventy-one' WHERE a=18865;\nUPDATE t2 SET c='ninety-one thousand sixty-nine' WHERE a=18866;\nUPDATE t2 SET c='seventy thousand seven hundred eighty' WHERE a=18867;\nUPDATE t2 SET c='seventy-two thousand eight hundred forty-two' WHERE a=18868;\nUPDATE t2 SET c='fifty-five thousand five hundred eighty-seven' WHERE a=18869;\nUPDATE t2 SET c='eighteen thousand twenty-four' WHERE a=18870;\nUPDATE t2 SET c='forty-six thousand fifty-seven' WHERE a=18871;\nUPDATE t2 SET c='ninety-six thousand eight hundred ninety' WHERE a=18872;\nUPDATE t2 SET c='one thousand two hundred seventy-eight' WHERE a=18873;\nUPDATE t2 SET c='sixty-three thousand nine hundred fifty-three' WHERE a=18874;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-one' WHERE a=18875;\nUPDATE t2 SET c='twenty-seven thousand one hundred ninety-three' WHERE a=18876;\nUPDATE t2 SET c='fourteen thousand one hundred eighty-nine' WHERE a=18877;\nUPDATE t2 SET c='five thousand nine hundred fifty-seven' WHERE a=18878;\nUPDATE t2 SET c='twenty-six thousand one hundred forty-eight' WHERE a=18879;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-eight' WHERE a=18880;\nUPDATE t2 SET c='twenty-three thousand five hundred sixty' WHERE a=18881;\nUPDATE t2 SET c='ninety-six thousand two hundred eight' WHERE a=18882;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-seven' WHERE a=18883;\nUPDATE t2 SET c='twenty-five thousand three hundred eight' WHERE a=18884;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-two' WHERE a=18885;\nUPDATE t2 SET c='thirty-five thousand one hundred nine' WHERE a=18886;\nUPDATE t2 SET c='thirty-three thousand five hundred ninety-eight' WHERE a=18887;\nUPDATE t2 SET c='twenty-three thousand eighty-seven' WHERE a=18888;\nUPDATE t2 SET c='forty-five thousand four hundred thirteen' WHERE a=18889;\nUPDATE t2 SET c='seven thousand two hundred ninety-eight' WHERE a=18890;\nUPDATE t2 SET c='thirteen thousand eight hundred sixty-seven' WHERE a=18891;\nUPDATE t2 SET c='five thousand nine hundred seventy-four' WHERE a=18892;\nUPDATE t2 SET c='seven hundred two' WHERE a=18893;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-nine' WHERE a=18894;\nUPDATE t2 SET c='twenty-seven thousand two hundred fifty-two' WHERE a=18895;\nUPDATE t2 SET c='eight thousand three hundred twenty-four' WHERE a=18896;\nUPDATE t2 SET c='fifty-seven thousand four hundred forty-eight' WHERE a=18897;\nUPDATE t2 SET c='eighty thousand five hundred seventy-two' WHERE a=18898;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-six' WHERE a=18899;\nUPDATE t2 SET c='eighty-three thousand two hundred thirty-two' WHERE a=18900;\nUPDATE t2 SET c='three thousand two hundred twenty-three' WHERE a=18901;\nUPDATE t2 SET c='sixty-three thousand one hundred twenty-three' WHERE a=18902;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-two' WHERE a=18903;\nUPDATE t2 SET c='sixty thousand twenty-three' WHERE a=18904;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-eight' WHERE a=18905;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-nine' WHERE a=18906;\nUPDATE t2 SET c='twenty-four thousand eighty-five' WHERE a=18907;\nUPDATE t2 SET c='forty-nine thousand three hundred sixty-eight' WHERE a=18908;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-three' WHERE a=18909;\nUPDATE t2 SET c='thirty-six thousand five hundred seventeen' WHERE a=18910;\nUPDATE t2 SET c='twenty-four thousand four hundred thirty-eight' WHERE a=18911;\nUPDATE t2 SET c='forty-four thousand four hundred twenty-three' WHERE a=18912;\nUPDATE t2 SET c='sixty-one thousand eight hundred five' WHERE a=18913;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-three' WHERE a=18914;\nUPDATE t2 SET c='seventy-five thousand six hundred eighty' WHERE a=18915;\nUPDATE t2 SET c='sixty-five thousand thirty-seven' WHERE a=18916;\nUPDATE t2 SET c='fifty-two thousand seven hundred eighty' WHERE a=18917;\nUPDATE t2 SET c='thirty-six thousand four hundred ten' WHERE a=18918;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-two' WHERE a=18919;\nUPDATE t2 SET c='fifteen thousand six hundred ninety' WHERE a=18920;\nUPDATE t2 SET c='ninety-six thousand seven hundred forty-one' WHERE a=18921;\nUPDATE t2 SET c='fifteen thousand two hundred ten' WHERE a=18922;\nUPDATE t2 SET c='fifty-three thousand seven hundred forty-seven' WHERE a=18923;\nUPDATE t2 SET c='eighty-nine thousand five hundred seventy-eight' WHERE a=18924;\nUPDATE t2 SET c='fifty-five thousand two hundred sixty-seven' WHERE a=18925;\nUPDATE t2 SET c='thirty-one thousand five hundred eighty-six' WHERE a=18926;\nUPDATE t2 SET c='sixty-seven thousand thirty-six' WHERE a=18927;\nUPDATE t2 SET c='sixty-nine thousand three hundred thirty-eight' WHERE a=18928;\nUPDATE t2 SET c='thirty-five thousand twenty-six' WHERE a=18929;\nUPDATE t2 SET c='ninety-one thousand two hundred forty' WHERE a=18930;\nUPDATE t2 SET c='thirty-one thousand five hundred thirty' WHERE a=18931;\nUPDATE t2 SET c='sixty thousand seven hundred forty-seven' WHERE a=18932;\nUPDATE t2 SET c='six thousand six hundred fifty-eight' WHERE a=18933;\nUPDATE t2 SET c='eighty-nine thousand five hundred twenty-eight' WHERE a=18934;\nUPDATE t2 SET c='sixty-two thousand five hundred twenty' WHERE a=18935;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-three' WHERE a=18936;\nUPDATE t2 SET c='forty-one thousand five hundred forty-seven' WHERE a=18937;\nUPDATE t2 SET c='nine thousand five hundred ninety-seven' WHERE a=18938;\nUPDATE t2 SET c='ninety-two thousand eight hundred sixty-seven' WHERE a=18939;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-one' WHERE a=18940;\nUPDATE t2 SET c='four thousand five hundred seventy-six' WHERE a=18941;\nUPDATE t2 SET c='thirty-four thousand forty-eight' WHERE a=18942;\nUPDATE t2 SET c='seventy-four thousand seven hundred twelve' WHERE a=18943;\nUPDATE t2 SET c='three thousand seven hundred ninety-three' WHERE a=18944;\nUPDATE t2 SET c='fifty-one thousand six hundred sixty-three' WHERE a=18945;\nUPDATE t2 SET c='thirty-four thousand eight hundred eighty-two' WHERE a=18946;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-two' WHERE a=18947;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-six' WHERE a=18948;\nUPDATE t2 SET c='seventy-three thousand two hundred seventy-four' WHERE a=18949;\nUPDATE t2 SET c='thirty-nine thousand five hundred fifty-one' WHERE a=18950;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-two' WHERE a=18951;\nUPDATE t2 SET c='thirty-nine thousand two hundred eighty-three' WHERE a=18952;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty-one' WHERE a=18953;\nUPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=18954;\nUPDATE t2 SET c='thirty-five thousand five hundred fifty-two' WHERE a=18955;\nUPDATE t2 SET c='fifty-one thousand five hundred eight' WHERE a=18956;\nUPDATE t2 SET c='eighty-one thousand eighty' WHERE a=18957;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty-two' WHERE a=18958;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-one' WHERE a=18959;\nUPDATE t2 SET c='forty-three thousand eight hundred' WHERE a=18960;\nUPDATE t2 SET c='ninety-eight thousand six hundred eighty-five' WHERE a=18961;\nUPDATE t2 SET c='thirty-nine thousand six hundred sixty-six' WHERE a=18962;\nUPDATE t2 SET c='ninety-three thousand six hundred eighty-six' WHERE a=18963;\nUPDATE t2 SET c='ninety-eight thousand two hundred ninety-nine' WHERE a=18964;\nUPDATE t2 SET c='eighty thousand five hundred forty-six' WHERE a=18965;\nUPDATE t2 SET c='five thousand three hundred ninety' WHERE a=18966;\nUPDATE t2 SET c='twenty-five thousand eighty-six' WHERE a=18967;\nUPDATE t2 SET c='sixty-five thousand four hundred eighty-four' WHERE a=18968;\nUPDATE t2 SET c='thirty thousand sixty-one' WHERE a=18969;\nUPDATE t2 SET c='seventy thousand four hundred forty' WHERE a=18970;\nUPDATE t2 SET c='seventy-five thousand nine hundred fifty-five' WHERE a=18971;\nUPDATE t2 SET c='twenty-nine thousand three hundred twenty-six' WHERE a=18972;\nUPDATE t2 SET c='forty-five thousand nine hundred ninety-four' WHERE a=18973;\nUPDATE t2 SET c='fifty-three thousand five hundred nineteen' WHERE a=18974;\nUPDATE t2 SET c='nine thousand one hundred eleven' WHERE a=18975;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy' WHERE a=18976;\nUPDATE t2 SET c='thirty-four thousand eight hundred six' WHERE a=18977;\nUPDATE t2 SET c='fifty-nine thousand nine hundred one' WHERE a=18978;\nUPDATE t2 SET c='three thousand six hundred ten' WHERE a=18979;\nUPDATE t2 SET c='twenty thousand five hundred twenty-seven' WHERE a=18980;\nUPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=18981;\nUPDATE t2 SET c='forty thousand two hundred ten' WHERE a=18982;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-six' WHERE a=18983;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-seven' WHERE a=18984;\nUPDATE t2 SET c='fifty-four thousand five hundred eighty-four' WHERE a=18985;\nUPDATE t2 SET c='sixty-one thousand nine hundred fifty-six' WHERE a=18986;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-five' WHERE a=18987;\nUPDATE t2 SET c='forty-nine thousand seven hundred fifty-six' WHERE a=18988;\nUPDATE t2 SET c='seventy-seven thousand seventy-nine' WHERE a=18989;\nUPDATE t2 SET c='forty-five thousand six hundred ninety-two' WHERE a=18990;\nUPDATE t2 SET c='thirty-seven thousand one hundred ninety-three' WHERE a=18991;\nUPDATE t2 SET c='twelve thousand two hundred forty-six' WHERE a=18992;\nUPDATE t2 SET c='thirty-eight thousand eighty-six' WHERE a=18993;\nUPDATE t2 SET c='fifty-four thousand four hundred forty-three' WHERE a=18994;\nUPDATE t2 SET c='sixty-five thousand forty-four' WHERE a=18995;\nUPDATE t2 SET c='sixty-eight thousand eight hundred twelve' WHERE a=18996;\nUPDATE t2 SET c='twenty-four thousand seven hundred two' WHERE a=18997;\nUPDATE t2 SET c='eighty-six thousand three hundred fifty-four' WHERE a=18998;\nUPDATE t2 SET c='forty-two thousand two hundred fifty-eight' WHERE a=18999;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-five' WHERE a=19000;\nUPDATE t2 SET c='twenty-four thousand three hundred eighty-two' WHERE a=19001;\nUPDATE t2 SET c='forty-five thousand four hundred forty-nine' WHERE a=19002;\nUPDATE t2 SET c='eighty-five thousand six hundred thirty-eight' WHERE a=19003;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty' WHERE a=19004;\nUPDATE t2 SET c='twenty-three thousand three hundred fifty-one' WHERE a=19005;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-five' WHERE a=19006;\nUPDATE t2 SET c='sixty-nine thousand eight hundred thirty-seven' WHERE a=19007;\nUPDATE t2 SET c='thirty-nine thousand two hundred sixty-nine' WHERE a=19008;\nUPDATE t2 SET c='forty-seven thousand seven hundred eighty-five' WHERE a=19009;\nUPDATE t2 SET c='ninety-one thousand six hundred sixty-three' WHERE a=19010;\nUPDATE t2 SET c='thirty-nine thousand one hundred forty-five' WHERE a=19011;\nUPDATE t2 SET c='sixty-four thousand three hundred fifty-five' WHERE a=19012;\nUPDATE t2 SET c='fourteen thousand three hundred ten' WHERE a=19013;\nUPDATE t2 SET c='one thousand one hundred seventy-one' WHERE a=19014;\nUPDATE t2 SET c='eleven thousand four hundred fifteen' WHERE a=19015;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty-one' WHERE a=19016;\nUPDATE t2 SET c='eleven thousand two hundred' WHERE a=19017;\nUPDATE t2 SET c='ten thousand two hundred four' WHERE a=19018;\nUPDATE t2 SET c='seventy-five thousand two hundred sixty' WHERE a=19019;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirty-six' WHERE a=19020;\nUPDATE t2 SET c='eighty-six thousand one hundred twenty-two' WHERE a=19021;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighteen' WHERE a=19022;\nUPDATE t2 SET c='fifteen thousand seven hundred twenty-one' WHERE a=19023;\nUPDATE t2 SET c='two thousand one hundred sixty-two' WHERE a=19024;\nUPDATE t2 SET c='fifty-seven thousand six hundred seventy-three' WHERE a=19025;\nUPDATE t2 SET c='forty thousand two hundred twelve' WHERE a=19026;\nUPDATE t2 SET c='forty thousand eight hundred fifty-five' WHERE a=19027;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-nine' WHERE a=19028;\nUPDATE t2 SET c='twenty thousand thirty-four' WHERE a=19029;\nUPDATE t2 SET c='fifty-five thousand two hundred eighty-nine' WHERE a=19030;\nUPDATE t2 SET c='fifty-seven thousand five hundred sixteen' WHERE a=19031;\nUPDATE t2 SET c='thirteen thousand three hundred thirty-six' WHERE a=19032;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-two' WHERE a=19033;\nUPDATE t2 SET c='twenty-three thousand nine hundred fifty-five' WHERE a=19034;\nUPDATE t2 SET c='twenty-two thousand five hundred eighty-two' WHERE a=19035;\nUPDATE t2 SET c='ninety-eight thousand three hundred fifty-eight' WHERE a=19036;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-three' WHERE a=19037;\nUPDATE t2 SET c='two thousand two hundred sixteen' WHERE a=19038;\nUPDATE t2 SET c='thirty-four thousand two hundred six' WHERE a=19039;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-six' WHERE a=19040;\nUPDATE t2 SET c='seventy-two thousand seven hundred thirty-eight' WHERE a=19041;\nUPDATE t2 SET c='thirty-six thousand nine hundred four' WHERE a=19042;\nUPDATE t2 SET c='thirty-one thousand six hundred sixteen' WHERE a=19043;\nUPDATE t2 SET c='thirty-four thousand eight hundred twenty' WHERE a=19044;\nUPDATE t2 SET c='two thousand seventy-nine' WHERE a=19045;\nUPDATE t2 SET c='fifteen thousand five hundred twenty-one' WHERE a=19046;\nUPDATE t2 SET c='ninety thousand seven hundred forty-two' WHERE a=19047;\nUPDATE t2 SET c='sixty-nine thousand six hundred five' WHERE a=19048;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-nine' WHERE a=19049;\nUPDATE t2 SET c='twenty-three thousand three hundred twenty-eight' WHERE a=19050;\nUPDATE t2 SET c='sixty-five thousand two hundred one' WHERE a=19051;\nUPDATE t2 SET c='two thousand six hundred eighty-four' WHERE a=19052;\nUPDATE t2 SET c='forty-one thousand three hundred eight' WHERE a=19053;\nUPDATE t2 SET c='forty-one thousand four hundred twenty-nine' WHERE a=19054;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-eight' WHERE a=19055;\nUPDATE t2 SET c='seventy-five thousand eight hundred seventy-one' WHERE a=19056;\nUPDATE t2 SET c='eleven thousand forty-six' WHERE a=19057;\nUPDATE t2 SET c='ninety-seven thousand six hundred nine' WHERE a=19058;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-three' WHERE a=19059;\nUPDATE t2 SET c='thirty-two thousand sixty-two' WHERE a=19060;\nUPDATE t2 SET c='fifty-four thousand twenty' WHERE a=19061;\nUPDATE t2 SET c='sixty thousand eight hundred forty-four' WHERE a=19062;\nUPDATE t2 SET c='sixty-seven thousand eight hundred eighty' WHERE a=19063;\nUPDATE t2 SET c='seven thousand nine hundred fifteen' WHERE a=19064;\nUPDATE t2 SET c='nine thousand five hundred ninety-seven' WHERE a=19065;\nUPDATE t2 SET c='forty thousand one hundred twelve' WHERE a=19066;\nUPDATE t2 SET c='four thousand nine hundred seventy-seven' WHERE a=19067;\nUPDATE t2 SET c='sixty-five thousand five hundred thirty-nine' WHERE a=19068;\nUPDATE t2 SET c='ninety-eight thousand three hundred twenty-five' WHERE a=19069;\nUPDATE t2 SET c='thirty-six thousand six hundred forty-seven' WHERE a=19070;\nUPDATE t2 SET c='sixty thousand seven hundred twenty-one' WHERE a=19071;\nUPDATE t2 SET c='forty thousand four hundred eleven' WHERE a=19072;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-three' WHERE a=19073;\nUPDATE t2 SET c='thirty-three thousand four hundred ninety-eight' WHERE a=19074;\nUPDATE t2 SET c='twenty-eight thousand nine hundred six' WHERE a=19075;\nUPDATE t2 SET c='ninety-six thousand one hundred nineteen' WHERE a=19076;\nUPDATE t2 SET c='twenty-five thousand six hundred two' WHERE a=19077;\nUPDATE t2 SET c='seventy-eight thousand nine hundred fifty-six' WHERE a=19078;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty' WHERE a=19079;\nUPDATE t2 SET c='eighty-nine thousand three hundred sixty-five' WHERE a=19080;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-six' WHERE a=19081;\nUPDATE t2 SET c='ninety-six thousand three hundred twenty-six' WHERE a=19082;\nUPDATE t2 SET c='twenty-eight thousand seven hundred twenty-four' WHERE a=19083;\nUPDATE t2 SET c='thirty-one thousand five hundred five' WHERE a=19084;\nUPDATE t2 SET c='ninety thousand four hundred sixty-two' WHERE a=19085;\nUPDATE t2 SET c='thirty-four thousand nine hundred eighty-three' WHERE a=19086;\nUPDATE t2 SET c='forty-five thousand five hundred fifty-one' WHERE a=19087;\nUPDATE t2 SET c='eight thousand three hundred thirty-six' WHERE a=19088;\nUPDATE t2 SET c='forty thousand five hundred fifty-three' WHERE a=19089;\nUPDATE t2 SET c='sixty-three thousand six hundred seventy-eight' WHERE a=19090;\nUPDATE t2 SET c='eighty-four thousand five hundred ninety-two' WHERE a=19091;\nUPDATE t2 SET c='forty-nine thousand five hundred eighty-five' WHERE a=19092;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty' WHERE a=19093;\nUPDATE t2 SET c='ninety-nine thousand six hundred sixteen' WHERE a=19094;\nUPDATE t2 SET c='eighty thousand nine hundred ninety-four' WHERE a=19095;\nUPDATE t2 SET c='fifty-three thousand nine hundred ninety-seven' WHERE a=19096;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-seven' WHERE a=19097;\nUPDATE t2 SET c='seventy-three thousand one hundred fifteen' WHERE a=19098;\nUPDATE t2 SET c='eighty-three thousand sixty-five' WHERE a=19099;\nUPDATE t2 SET c='ninety-seven thousand four hundred ten' WHERE a=19100;\nUPDATE t2 SET c='seventy thousand nine hundred sixty-two' WHERE a=19101;\nUPDATE t2 SET c='ninety-six thousand six hundred seventy-five' WHERE a=19102;\nUPDATE t2 SET c='ninety-one thousand thirty-seven' WHERE a=19103;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty' WHERE a=19104;\nUPDATE t2 SET c='fourteen thousand seventy' WHERE a=19105;\nUPDATE t2 SET c='eighty-five thousand seven hundred sixteen' WHERE a=19106;\nUPDATE t2 SET c='seventy-nine thousand one hundred eleven' WHERE a=19107;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-three' WHERE a=19108;\nUPDATE t2 SET c='thirty-one thousand two hundred forty' WHERE a=19109;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=19110;\nUPDATE t2 SET c='thirty-seven thousand nine hundred sixty-three' WHERE a=19111;\nUPDATE t2 SET c='twenty thousand nine hundred sixty-five' WHERE a=19112;\nUPDATE t2 SET c='eighty-three thousand sixty-nine' WHERE a=19113;\nUPDATE t2 SET c='ninety-one thousand seventeen' WHERE a=19114;\nUPDATE t2 SET c='seventy-five thousand four hundred seventy-seven' WHERE a=19115;\nUPDATE t2 SET c='sixty-one thousand fourteen' WHERE a=19116;\nUPDATE t2 SET c='seventy-three thousand one hundred fourteen' WHERE a=19117;\nUPDATE t2 SET c='fifty-four thousand one hundred fifty-eight' WHERE a=19118;\nUPDATE t2 SET c='forty thousand seven hundred five' WHERE a=19119;\nUPDATE t2 SET c='seventy-six thousand three hundred forty-eight' WHERE a=19120;\nUPDATE t2 SET c='thirty-four thousand eight hundred sixty-eight' WHERE a=19121;\nUPDATE t2 SET c='fifty-eight thousand nine hundred three' WHERE a=19122;\nUPDATE t2 SET c='twenty-nine thousand four hundred forty' WHERE a=19123;\nUPDATE t2 SET c='nine thousand four hundred eighty-four' WHERE a=19124;\nUPDATE t2 SET c='ninety thousand two hundred fifty-six' WHERE a=19125;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-five' WHERE a=19126;\nUPDATE t2 SET c='sixty-nine thousand eight hundred ninety' WHERE a=19127;\nUPDATE t2 SET c='eighty thousand four hundred sixteen' WHERE a=19128;\nUPDATE t2 SET c='four thousand eight hundred thirty-five' WHERE a=19129;\nUPDATE t2 SET c='forty-six thousand one hundred ninety-four' WHERE a=19130;\nUPDATE t2 SET c='seventy thousand one hundred fifteen' WHERE a=19131;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-one' WHERE a=19132;\nUPDATE t2 SET c='sixty-six thousand three hundred sixty-five' WHERE a=19133;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-three' WHERE a=19134;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-one' WHERE a=19135;\nUPDATE t2 SET c='seventy-nine thousand three hundred ninety-six' WHERE a=19136;\nUPDATE t2 SET c='eighty-six thousand twenty-three' WHERE a=19137;\nUPDATE t2 SET c='seventy-one thousand one hundred twenty-nine' WHERE a=19138;\nUPDATE t2 SET c='twenty-five thousand fifty' WHERE a=19139;\nUPDATE t2 SET c='fifty-nine thousand two hundred twenty-five' WHERE a=19140;\nUPDATE t2 SET c='seventeen thousand six hundred eighty-six' WHERE a=19141;\nUPDATE t2 SET c='fifty-two thousand six hundred twenty-nine' WHERE a=19142;\nUPDATE t2 SET c='thirty-two thousand one hundred eighty-one' WHERE a=19143;\nUPDATE t2 SET c='sixty-five thousand seven hundred thirty-two' WHERE a=19144;\nUPDATE t2 SET c='eighty-six thousand two hundred' WHERE a=19145;\nUPDATE t2 SET c='ninety-three thousand nine hundred twenty-seven' WHERE a=19146;\nUPDATE t2 SET c='nineteen thousand two hundred eighty' WHERE a=19147;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=19148;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-one' WHERE a=19149;\nUPDATE t2 SET c='fifty-nine thousand three hundred forty-eight' WHERE a=19150;\nUPDATE t2 SET c='sixty-six thousand two hundred sixty-one' WHERE a=19151;\nUPDATE t2 SET c='sixty-five thousand two hundred ten' WHERE a=19152;\nUPDATE t2 SET c='one thousand six hundred twenty-nine' WHERE a=19153;\nUPDATE t2 SET c='forty-two thousand nine hundred ninety-eight' WHERE a=19154;\nUPDATE t2 SET c='eight thousand three hundred thirty' WHERE a=19155;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eighty-one' WHERE a=19156;\nUPDATE t2 SET c='seven thousand sixty-eight' WHERE a=19157;\nUPDATE t2 SET c='forty-four thousand five hundred forty-eight' WHERE a=19158;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirty-five' WHERE a=19159;\nUPDATE t2 SET c='seven thousand one hundred fifteen' WHERE a=19160;\nUPDATE t2 SET c='thirty-six thousand three hundred twenty-nine' WHERE a=19161;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy-five' WHERE a=19162;\nUPDATE t2 SET c='thirty-five thousand forty-two' WHERE a=19163;\nUPDATE t2 SET c='ninety thousand three hundred thirty-one' WHERE a=19164;\nUPDATE t2 SET c='ninety-seven thousand eight hundred fifty-four' WHERE a=19165;\nUPDATE t2 SET c='eighty thousand nine hundred fifty' WHERE a=19166;\nUPDATE t2 SET c='seventy-three thousand three hundred ninety-eight' WHERE a=19167;\nUPDATE t2 SET c='nineteen thousand one hundred forty-five' WHERE a=19168;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-two' WHERE a=19169;\nUPDATE t2 SET c='eighty-one thousand one hundred twenty-one' WHERE a=19170;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-three' WHERE a=19171;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy-six' WHERE a=19172;\nUPDATE t2 SET c='forty-five thousand eight hundred seventy-seven' WHERE a=19173;\nUPDATE t2 SET c='fifty-four thousand one hundred fifteen' WHERE a=19174;\nUPDATE t2 SET c='thirty-eight thousand four hundred thirty-five' WHERE a=19175;\nUPDATE t2 SET c='twenty thousand six hundred eight' WHERE a=19176;\nUPDATE t2 SET c='fifty-five thousand eighty' WHERE a=19177;\nUPDATE t2 SET c='nineteen thousand fifty-one' WHERE a=19178;\nUPDATE t2 SET c='eighty-three thousand eight hundred ninety-seven' WHERE a=19179;\nUPDATE t2 SET c='forty-seven thousand ninety-two' WHERE a=19180;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-two' WHERE a=19181;\nUPDATE t2 SET c='thirty-six thousand seven hundred twenty-six' WHERE a=19182;\nUPDATE t2 SET c='forty-three thousand three hundred ten' WHERE a=19183;\nUPDATE t2 SET c='nine thousand three hundred eighty-five' WHERE a=19184;\nUPDATE t2 SET c='thirty-eight thousand one hundred seventy-five' WHERE a=19185;\nUPDATE t2 SET c='thirty thousand four hundred twenty-one' WHERE a=19186;\nUPDATE t2 SET c='sixty-eight thousand three hundred eighty' WHERE a=19187;\nUPDATE t2 SET c='forty-one thousand nine hundred ninety-five' WHERE a=19188;\nUPDATE t2 SET c='ninety-three thousand nine hundred sixty-three' WHERE a=19189;\nUPDATE t2 SET c='ninety-nine thousand fifteen' WHERE a=19190;\nUPDATE t2 SET c='seventy-six thousand two hundred ninety-seven' WHERE a=19191;\nUPDATE t2 SET c='one thousand seven hundred sixty-four' WHERE a=19192;\nUPDATE t2 SET c='nine thousand eight hundred eighty' WHERE a=19193;\nUPDATE t2 SET c='ninety-seven thousand four hundred three' WHERE a=19194;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ten' WHERE a=19195;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-seven' WHERE a=19196;\nUPDATE t2 SET c='six hundred thirty-seven' WHERE a=19197;\nUPDATE t2 SET c='forty thousand eight hundred twenty-five' WHERE a=19198;\nUPDATE t2 SET c='eighty thousand three hundred fifty-five' WHERE a=19199;\nUPDATE t2 SET c='fifty thousand two hundred twelve' WHERE a=19200;\nUPDATE t2 SET c='fifty-one thousand three hundred thirty-two' WHERE a=19201;\nUPDATE t2 SET c='twelve thousand six hundred thirty' WHERE a=19202;\nUPDATE t2 SET c='fifty thousand fifty-one' WHERE a=19203;\nUPDATE t2 SET c='twenty-five thousand one hundred six' WHERE a=19204;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=19205;\nUPDATE t2 SET c='five thousand seven hundred sixty-five' WHERE a=19206;\nUPDATE t2 SET c='fifty-six thousand eight hundred thirty-one' WHERE a=19207;\nUPDATE t2 SET c='sixty-seven thousand six hundred fifty-eight' WHERE a=19208;\nUPDATE t2 SET c='twenty thousand two hundred thirty-three' WHERE a=19209;\nUPDATE t2 SET c='seventy-two thousand three hundred ninety-five' WHERE a=19210;\nUPDATE t2 SET c='twenty-nine thousand five hundred seven' WHERE a=19211;\nUPDATE t2 SET c='ninety-five thousand six hundred fifty-six' WHERE a=19212;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty-two' WHERE a=19213;\nUPDATE t2 SET c='twenty-six thousand three hundred sixty-six' WHERE a=19214;\nUPDATE t2 SET c='twelve thousand two hundred eight' WHERE a=19215;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-six' WHERE a=19216;\nUPDATE t2 SET c='ten thousand four hundred seventy-three' WHERE a=19217;\nUPDATE t2 SET c='forty-six thousand five hundred sixty' WHERE a=19218;\nUPDATE t2 SET c='sixty-five thousand thirteen' WHERE a=19219;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-four' WHERE a=19220;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty-six' WHERE a=19221;\nUPDATE t2 SET c='thirty-three thousand one hundred fourteen' WHERE a=19222;\nUPDATE t2 SET c='thirty-one thousand sixty-two' WHERE a=19223;\nUPDATE t2 SET c='ninety-five thousand three hundred eighty-two' WHERE a=19224;\nUPDATE t2 SET c='forty-five thousand eight hundred twenty-one' WHERE a=19225;\nUPDATE t2 SET c='forty-nine thousand one hundred one' WHERE a=19226;\nUPDATE t2 SET c='thirty-two thousand six hundred thirteen' WHERE a=19227;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty-five' WHERE a=19228;\nUPDATE t2 SET c='thirteen thousand six hundred seventy' WHERE a=19229;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-six' WHERE a=19230;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-two' WHERE a=19231;\nUPDATE t2 SET c='twenty-three thousand nine hundred forty-seven' WHERE a=19232;\nUPDATE t2 SET c='three thousand one hundred thirty-eight' WHERE a=19233;\nUPDATE t2 SET c='ninety-four thousand twenty-two' WHERE a=19234;\nUPDATE t2 SET c='sixty-four thousand nine hundred five' WHERE a=19235;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-seven' WHERE a=19236;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy' WHERE a=19237;\nUPDATE t2 SET c='nineteen thousand two hundred five' WHERE a=19238;\nUPDATE t2 SET c='fifty-three thousand one hundred ninety' WHERE a=19239;\nUPDATE t2 SET c='nineteen thousand six hundred sixty-one' WHERE a=19240;\nUPDATE t2 SET c='sixty-six thousand four hundred forty' WHERE a=19241;\nUPDATE t2 SET c='ninety thousand six hundred thirty-three' WHERE a=19242;\nUPDATE t2 SET c='twenty-seven thousand eight hundred forty-eight' WHERE a=19243;\nUPDATE t2 SET c='sixty-one thousand six hundred thirty-six' WHERE a=19244;\nUPDATE t2 SET c='seventeen thousand two hundred forty-nine' WHERE a=19245;\nUPDATE t2 SET c='sixty-one thousand two hundred forty-two' WHERE a=19246;\nUPDATE t2 SET c='eighty-three thousand two hundred twenty' WHERE a=19247;\nUPDATE t2 SET c='nineteen thousand five hundred twenty-three' WHERE a=19248;\nUPDATE t2 SET c='eighty-nine thousand nine hundred sixty-nine' WHERE a=19249;\nUPDATE t2 SET c='twenty-four thousand twenty-seven' WHERE a=19250;\nUPDATE t2 SET c='ninety-nine thousand two hundred seven' WHERE a=19251;\nUPDATE t2 SET c='forty-seven thousand twenty-four' WHERE a=19252;\nUPDATE t2 SET c='eighty-four thousand one hundred fifty-eight' WHERE a=19253;\nUPDATE t2 SET c='ninety-nine thousand three hundred sixty-six' WHERE a=19254;\nUPDATE t2 SET c='ninety-nine thousand seven hundred eighty-nine' WHERE a=19255;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-six' WHERE a=19256;\nUPDATE t2 SET c='eleven thousand seven hundred ninety-seven' WHERE a=19257;\nUPDATE t2 SET c='twenty thousand six hundred forty-one' WHERE a=19258;\nUPDATE t2 SET c='thirty-one thousand eight hundred forty-four' WHERE a=19259;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-four' WHERE a=19260;\nUPDATE t2 SET c='ninety thousand eight hundred seventy' WHERE a=19261;\nUPDATE t2 SET c='eight thousand one hundred sixty-two' WHERE a=19262;\nUPDATE t2 SET c='thirty-three thousand five hundred twenty-two' WHERE a=19263;\nUPDATE t2 SET c='seventy-one thousand five hundred ten' WHERE a=19264;\nUPDATE t2 SET c='ninety-seven thousand sixty-five' WHERE a=19265;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-nine' WHERE a=19266;\nUPDATE t2 SET c='one thousand eight hundred seven' WHERE a=19267;\nUPDATE t2 SET c='fifteen thousand three hundred seventy-six' WHERE a=19268;\nUPDATE t2 SET c='sixty-four thousand seven hundred eighty-four' WHERE a=19269;\nUPDATE t2 SET c='eighty-eight thousand nine hundred six' WHERE a=19270;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eighty-eight' WHERE a=19271;\nUPDATE t2 SET c='eighty-three thousand eight hundred sixty' WHERE a=19272;\nUPDATE t2 SET c='twenty-two thousand eight hundred ninety-three' WHERE a=19273;\nUPDATE t2 SET c='sixty-seven thousand five hundred eighty-six' WHERE a=19274;\nUPDATE t2 SET c='fifty-seven thousand one hundred fifty-one' WHERE a=19275;\nUPDATE t2 SET c='forty-nine thousand eight hundred seventy-two' WHERE a=19276;\nUPDATE t2 SET c='forty-three thousand five hundred forty-seven' WHERE a=19277;\nUPDATE t2 SET c='seventy-one thousand three hundred ninety-five' WHERE a=19278;\nUPDATE t2 SET c='seventy-six thousand three hundred thirty-two' WHERE a=19279;\nUPDATE t2 SET c='two thousand thirteen' WHERE a=19280;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifty-five' WHERE a=19281;\nUPDATE t2 SET c='seventy-three thousand fifty-seven' WHERE a=19282;\nUPDATE t2 SET c='forty-three thousand eighty-two' WHERE a=19283;\nUPDATE t2 SET c='nine thousand eight hundred eighty-nine' WHERE a=19284;\nUPDATE t2 SET c='thirty-seven thousand two hundred thirty-eight' WHERE a=19285;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-five' WHERE a=19286;\nUPDATE t2 SET c='thirty-six' WHERE a=19287;\nUPDATE t2 SET c='forty-five thousand six hundred fifty-seven' WHERE a=19288;\nUPDATE t2 SET c='forty-two thousand one hundred forty-six' WHERE a=19289;\nUPDATE t2 SET c='seventy-six thousand four hundred twenty' WHERE a=19290;\nUPDATE t2 SET c='fifty-two thousand four hundred eleven' WHERE a=19291;\nUPDATE t2 SET c='sixty-one thousand five hundred eighty-seven' WHERE a=19292;\nUPDATE t2 SET c='seventy-seven thousand nine hundred thirty-four' WHERE a=19293;\nUPDATE t2 SET c='sixty-nine thousand six hundred forty-five' WHERE a=19294;\nUPDATE t2 SET c='fifty-three thousand five hundred fifty' WHERE a=19295;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-nine' WHERE a=19296;\nUPDATE t2 SET c='seven thousand eight hundred thirty-six' WHERE a=19297;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-six' WHERE a=19298;\nUPDATE t2 SET c='nine thousand two hundred eighty-one' WHERE a=19299;\nUPDATE t2 SET c='seventy-four thousand thirty-four' WHERE a=19300;\nUPDATE t2 SET c='nine thousand five hundred thirty-seven' WHERE a=19301;\nUPDATE t2 SET c='seventy-two thousand two hundred eighty-eight' WHERE a=19302;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-five' WHERE a=19303;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-four' WHERE a=19304;\nUPDATE t2 SET c='fifty-seven thousand five hundred fifty-three' WHERE a=19305;\nUPDATE t2 SET c='thirty-three thousand three hundred eleven' WHERE a=19306;\nUPDATE t2 SET c='eight thousand one hundred seventy-seven' WHERE a=19307;\nUPDATE t2 SET c='ninety-eight thousand five hundred three' WHERE a=19308;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-five' WHERE a=19309;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifteen' WHERE a=19310;\nUPDATE t2 SET c='eighty-seven thousand one' WHERE a=19311;\nUPDATE t2 SET c='seventy-seven thousand eight hundred seventy-seven' WHERE a=19312;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=19313;\nUPDATE t2 SET c='thirty-seven thousand six hundred seventy-seven' WHERE a=19314;\nUPDATE t2 SET c='seventy-one thousand two hundred twenty-three' WHERE a=19315;\nUPDATE t2 SET c='ninety-one thousand five hundred eighty-three' WHERE a=19316;\nUPDATE t2 SET c='forty-two thousand nine hundred seventy-one' WHERE a=19317;\nUPDATE t2 SET c='thirty-six thousand five hundred ninety-five' WHERE a=19318;\nUPDATE t2 SET c='thirty-five thousand seven hundred thirteen' WHERE a=19319;\nUPDATE t2 SET c='thirty-six thousand forty-four' WHERE a=19320;\nUPDATE t2 SET c='forty-five thousand two hundred fifty-five' WHERE a=19321;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-four' WHERE a=19322;\nUPDATE t2 SET c='thirty-eight thousand five hundred two' WHERE a=19323;\nUPDATE t2 SET c='thirty-five thousand six hundred eighteen' WHERE a=19324;\nUPDATE t2 SET c='thirty-one thousand six hundred twenty-two' WHERE a=19325;\nUPDATE t2 SET c='four thousand one hundred twenty-four' WHERE a=19326;\nUPDATE t2 SET c='forty-six thousand three hundred seventy-six' WHERE a=19327;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-seven' WHERE a=19328;\nUPDATE t2 SET c='ninety-one thousand two hundred sixteen' WHERE a=19329;\nUPDATE t2 SET c='fifty-six thousand eight hundred three' WHERE a=19330;\nUPDATE t2 SET c='thirty-two thousand one hundred fifty-one' WHERE a=19331;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-three' WHERE a=19332;\nUPDATE t2 SET c='ninety-seven thousand two hundred fifty-nine' WHERE a=19333;\nUPDATE t2 SET c='sixteen thousand six hundred forty-eight' WHERE a=19334;\nUPDATE t2 SET c='thirty-four thousand two hundred twenty' WHERE a=19335;\nUPDATE t2 SET c='ninety-seven thousand two hundred ninety-nine' WHERE a=19336;\nUPDATE t2 SET c='forty-six thousand six hundred fifty-four' WHERE a=19337;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-nine' WHERE a=19338;\nUPDATE t2 SET c='five thousand six hundred seventy-four' WHERE a=19339;\nUPDATE t2 SET c='eighty-two thousand nine hundred twelve' WHERE a=19340;\nUPDATE t2 SET c='nineteen thousand three hundred seventy-four' WHERE a=19341;\nUPDATE t2 SET c='ninety-eight thousand two hundred ninety-nine' WHERE a=19342;\nUPDATE t2 SET c='sixty-five thousand nine hundred forty-four' WHERE a=19343;\nUPDATE t2 SET c='fifty-eight thousand seven hundred thirty-one' WHERE a=19344;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-four' WHERE a=19345;\nUPDATE t2 SET c='fifty-six thousand three hundred thirty-nine' WHERE a=19346;\nUPDATE t2 SET c='forty-seven thousand forty-nine' WHERE a=19347;\nUPDATE t2 SET c='ninety-nine thousand seven hundred ninety-six' WHERE a=19348;\nUPDATE t2 SET c='sixty-five thousand one hundred twenty-five' WHERE a=19349;\nUPDATE t2 SET c='seventy-six thousand eight hundred ninety-six' WHERE a=19350;\nUPDATE t2 SET c='eighty-three thousand three hundred sixty-four' WHERE a=19351;\nUPDATE t2 SET c='nine thousand five hundred seventy-five' WHERE a=19352;\nUPDATE t2 SET c='ninety-three thousand seven hundred nineteen' WHERE a=19353;\nUPDATE t2 SET c='fifty-six thousand seven hundred eighty-four' WHERE a=19354;\nUPDATE t2 SET c='seventy-one thousand nine hundred sixty-six' WHERE a=19355;\nUPDATE t2 SET c='fifty thousand one hundred ninety-four' WHERE a=19356;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ninety-six' WHERE a=19357;\nUPDATE t2 SET c='twenty-six thousand five hundred thirty-seven' WHERE a=19358;\nUPDATE t2 SET c='forty-two thousand six hundred seventy-six' WHERE a=19359;\nUPDATE t2 SET c='ten thousand one hundred eighty-five' WHERE a=19360;\nUPDATE t2 SET c='eighty-eight thousand six hundred twenty-three' WHERE a=19361;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty-three' WHERE a=19362;\nUPDATE t2 SET c='seven thousand four hundred nine' WHERE a=19363;\nUPDATE t2 SET c='eighty-five thousand seven hundred ninety-four' WHERE a=19364;\nUPDATE t2 SET c='thirty-nine thousand five hundred sixteen' WHERE a=19365;\nUPDATE t2 SET c='eighty-six thousand nine hundred eight' WHERE a=19366;\nUPDATE t2 SET c='four thousand seven hundred eighty-seven' WHERE a=19367;\nUPDATE t2 SET c='twenty-nine thousand eight hundred forty-nine' WHERE a=19368;\nUPDATE t2 SET c='fifty-two thousand seven hundred seventy-eight' WHERE a=19369;\nUPDATE t2 SET c='seventy-five thousand seven hundred twenty-four' WHERE a=19370;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-four' WHERE a=19371;\nUPDATE t2 SET c='forty-nine thousand nine hundred sixty' WHERE a=19372;\nUPDATE t2 SET c='sixty thousand eight hundred ten' WHERE a=19373;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-seven' WHERE a=19374;\nUPDATE t2 SET c='thirty-six thousand three hundred thirteen' WHERE a=19375;\nUPDATE t2 SET c='thirty-four thousand four hundred twenty-eight' WHERE a=19376;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy-four' WHERE a=19377;\nUPDATE t2 SET c='twelve thousand six hundred three' WHERE a=19378;\nUPDATE t2 SET c='thirty-four thousand three hundred sixty-six' WHERE a=19379;\nUPDATE t2 SET c='sixteen thousand six hundred ninety-one' WHERE a=19380;\nUPDATE t2 SET c='ninety-five thousand seven hundred five' WHERE a=19381;\nUPDATE t2 SET c='fifty-three thousand seven hundred sixty-five' WHERE a=19382;\nUPDATE t2 SET c='thirty-five thousand seven hundred ninety-seven' WHERE a=19383;\nUPDATE t2 SET c='eighty-eight thousand four hundred seventeen' WHERE a=19384;\nUPDATE t2 SET c='nine thousand two hundred three' WHERE a=19385;\nUPDATE t2 SET c='eighty-nine thousand one hundred thirty-two' WHERE a=19386;\nUPDATE t2 SET c='twenty-seven thousand one hundred seventy-nine' WHERE a=19387;\nUPDATE t2 SET c='sixty-eight thousand one' WHERE a=19388;\nUPDATE t2 SET c='eighty-four thousand three hundred sixteen' WHERE a=19389;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-seven' WHERE a=19390;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty-nine' WHERE a=19391;\nUPDATE t2 SET c='eighty-five thousand one hundred twenty-seven' WHERE a=19392;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-five' WHERE a=19393;\nUPDATE t2 SET c='thirty-five thousand five hundred forty-four' WHERE a=19394;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-five' WHERE a=19395;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-nine' WHERE a=19396;\nUPDATE t2 SET c='thirty-six thousand two hundred sixty-five' WHERE a=19397;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty' WHERE a=19398;\nUPDATE t2 SET c='two thousand five hundred seventy-nine' WHERE a=19399;\nUPDATE t2 SET c='sixteen thousand four hundred ninety-six' WHERE a=19400;\nUPDATE t2 SET c='one hundred thirty-eight' WHERE a=19401;\nUPDATE t2 SET c='forty-two thousand eight hundred ninety-four' WHERE a=19402;\nUPDATE t2 SET c='sixty-two thousand five hundred fourteen' WHERE a=19403;\nUPDATE t2 SET c='fifty-three thousand four hundred six' WHERE a=19404;\nUPDATE t2 SET c='twenty-four thousand six hundred nineteen' WHERE a=19405;\nUPDATE t2 SET c='ninety-one thousand fifty-nine' WHERE a=19406;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifty-two' WHERE a=19407;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-six' WHERE a=19408;\nUPDATE t2 SET c='thirty-seven thousand five hundred ten' WHERE a=19409;\nUPDATE t2 SET c='thirty-one thousand three hundred sixty-five' WHERE a=19410;\nUPDATE t2 SET c='thirty thousand eight hundred six' WHERE a=19411;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty-three' WHERE a=19412;\nUPDATE t2 SET c='sixty-six thousand nine hundred thirteen' WHERE a=19413;\nUPDATE t2 SET c='seven thousand three hundred fifty-one' WHERE a=19414;\nUPDATE t2 SET c='thirteen thousand nine hundred five' WHERE a=19415;\nUPDATE t2 SET c='thirty-nine thousand seventy-eight' WHERE a=19416;\nUPDATE t2 SET c='twenty-eight thousand six hundred seven' WHERE a=19417;\nUPDATE t2 SET c='thirty-six thousand six hundred eighty-nine' WHERE a=19418;\nUPDATE t2 SET c='thirty thousand five hundred two' WHERE a=19419;\nUPDATE t2 SET c='ninety-two thousand three hundred forty-six' WHERE a=19420;\nUPDATE t2 SET c='eighty-two thousand seven hundred seventy-three' WHERE a=19421;\nUPDATE t2 SET c='twenty-seven thousand forty-two' WHERE a=19422;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-seven' WHERE a=19423;\nUPDATE t2 SET c='sixty-seven thousand three hundred one' WHERE a=19424;\nUPDATE t2 SET c='thirty-five thousand eight hundred eighty' WHERE a=19425;\nUPDATE t2 SET c='twenty-one thousand seven hundred eighty-one' WHERE a=19426;\nUPDATE t2 SET c='thirty-two thousand five hundred thirteen' WHERE a=19427;\nUPDATE t2 SET c='fifty-six thousand nine hundred fifty-one' WHERE a=19428;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-seven' WHERE a=19429;\nUPDATE t2 SET c='seventy thousand five hundred ninety-eight' WHERE a=19430;\nUPDATE t2 SET c='thirteen thousand sixty-five' WHERE a=19431;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-eight' WHERE a=19432;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty-two' WHERE a=19433;\nUPDATE t2 SET c='one thousand six hundred ninety-nine' WHERE a=19434;\nUPDATE t2 SET c='fifty-three thousand four hundred thirty-two' WHERE a=19435;\nUPDATE t2 SET c='thirty-two thousand six hundred eighty-six' WHERE a=19436;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-three' WHERE a=19437;\nUPDATE t2 SET c='ninety-two thousand nine hundred fifty-three' WHERE a=19438;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-nine' WHERE a=19439;\nUPDATE t2 SET c='fifty-four thousand seven hundred ninety-one' WHERE a=19440;\nUPDATE t2 SET c='fifty-nine thousand nine hundred seventeen' WHERE a=19441;\nUPDATE t2 SET c='twenty-one thousand nine hundred eight' WHERE a=19442;\nUPDATE t2 SET c='forty-three thousand eight hundred sixty-nine' WHERE a=19443;\nUPDATE t2 SET c='sixty-five thousand two hundred fifty-six' WHERE a=19444;\nUPDATE t2 SET c='fifty-six thousand nine hundred twenty-six' WHERE a=19445;\nUPDATE t2 SET c='twenty-eight thousand one hundred eighty-six' WHERE a=19446;\nUPDATE t2 SET c='thirty-five thousand eight hundred forty-one' WHERE a=19447;\nUPDATE t2 SET c='three thousand five hundred twenty-eight' WHERE a=19448;\nUPDATE t2 SET c='ninety-one thousand seven hundred twenty-one' WHERE a=19449;\nUPDATE t2 SET c='ninety-five thousand fourteen' WHERE a=19450;\nUPDATE t2 SET c='ninety-four thousand thirty-six' WHERE a=19451;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-one' WHERE a=19452;\nUPDATE t2 SET c='sixty-three thousand seven hundred forty-three' WHERE a=19453;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-one' WHERE a=19454;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty-five' WHERE a=19455;\nUPDATE t2 SET c='seventy-nine thousand four hundred sixty-two' WHERE a=19456;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-six' WHERE a=19457;\nUPDATE t2 SET c='thirty thousand four hundred ninety-four' WHERE a=19458;\nUPDATE t2 SET c='three thousand three hundred eighty-nine' WHERE a=19459;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-three' WHERE a=19460;\nUPDATE t2 SET c='one thousand sixty-eight' WHERE a=19461;\nUPDATE t2 SET c='eighty-three thousand five hundred forty-eight' WHERE a=19462;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-three' WHERE a=19463;\nUPDATE t2 SET c='eighty thousand four hundred thirty-eight' WHERE a=19464;\nUPDATE t2 SET c='forty-five thousand one hundred fifty-six' WHERE a=19465;\nUPDATE t2 SET c='twenty-five thousand six hundred thirty-six' WHERE a=19466;\nUPDATE t2 SET c='one thousand five hundred thirty-six' WHERE a=19467;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-nine' WHERE a=19468;\nUPDATE t2 SET c='twenty-one thousand six hundred ninety-three' WHERE a=19469;\nUPDATE t2 SET c='eighty-six thousand seven hundred fifty-three' WHERE a=19470;\nUPDATE t2 SET c='ninety-six thousand three hundred thirteen' WHERE a=19471;\nUPDATE t2 SET c='ninety-two thousand nine hundred five' WHERE a=19472;\nUPDATE t2 SET c='fifty-six thousand one hundred fifty-three' WHERE a=19473;\nUPDATE t2 SET c='forty-six thousand four hundred seven' WHERE a=19474;\nUPDATE t2 SET c='ninety-eight thousand eight hundred forty-one' WHERE a=19475;\nUPDATE t2 SET c='seventy-eight thousand three hundred sixty-one' WHERE a=19476;\nUPDATE t2 SET c='ninety-eight thousand six hundred fifteen' WHERE a=19477;\nUPDATE t2 SET c='ninety-seven thousand two hundred sixteen' WHERE a=19478;\nUPDATE t2 SET c='ninety-seven thousand one' WHERE a=19479;\nUPDATE t2 SET c='eighty-four thousand five hundred fifty-four' WHERE a=19480;\nUPDATE t2 SET c='seventy-six thousand fifty-nine' WHERE a=19481;\nUPDATE t2 SET c='twelve thousand five hundred sixteen' WHERE a=19482;\nUPDATE t2 SET c='forty-six thousand eight hundred three' WHERE a=19483;\nUPDATE t2 SET c='three thousand nine hundred seventy-four' WHERE a=19484;\nUPDATE t2 SET c='seventy-three thousand ninety-three' WHERE a=19485;\nUPDATE t2 SET c='seventy-nine thousand five hundred seventy-three' WHERE a=19486;\nUPDATE t2 SET c='seventy-six thousand five hundred forty-two' WHERE a=19487;\nUPDATE t2 SET c='ninety-five thousand fifty-four' WHERE a=19488;\nUPDATE t2 SET c='thirty-seven thousand sixty-seven' WHERE a=19489;\nUPDATE t2 SET c='thirty-three thousand six hundred fifty-three' WHERE a=19490;\nUPDATE t2 SET c='eighty-one thousand nine hundred' WHERE a=19491;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-eight' WHERE a=19492;\nUPDATE t2 SET c='twenty-three thousand three hundred nineteen' WHERE a=19493;\nUPDATE t2 SET c='fifty-one thousand seven hundred nine' WHERE a=19494;\nUPDATE t2 SET c='twenty-nine thousand eleven' WHERE a=19495;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-seven' WHERE a=19496;\nUPDATE t2 SET c='fifty-four thousand two hundred sixty' WHERE a=19497;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty' WHERE a=19498;\nUPDATE t2 SET c='twenty-five thousand eight hundred eighty-five' WHERE a=19499;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty' WHERE a=19500;\nUPDATE t2 SET c='thirty-one thousand six hundred twelve' WHERE a=19501;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty-four' WHERE a=19502;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-four' WHERE a=19503;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-eight' WHERE a=19504;\nUPDATE t2 SET c='twenty-eight thousand one hundred sixty-one' WHERE a=19505;\nUPDATE t2 SET c='sixty-two thousand eight hundred four' WHERE a=19506;\nUPDATE t2 SET c='twenty-nine thousand eight hundred six' WHERE a=19507;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-nine' WHERE a=19508;\nUPDATE t2 SET c='ninety thousand five hundred twenty-nine' WHERE a=19509;\nUPDATE t2 SET c='sixty-nine thousand five hundred sixty-four' WHERE a=19510;\nUPDATE t2 SET c='thirty-six thousand two hundred ten' WHERE a=19511;\nUPDATE t2 SET c='twelve thousand four hundred forty-five' WHERE a=19512;\nUPDATE t2 SET c='fifty-five thousand five hundred forty-two' WHERE a=19513;\nUPDATE t2 SET c='seventy-eight thousand one hundred seventy' WHERE a=19514;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventy-eight' WHERE a=19515;\nUPDATE t2 SET c='forty-three thousand eighty-five' WHERE a=19516;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-five' WHERE a=19517;\nUPDATE t2 SET c='seventy-seven thousand seven hundred ninety-one' WHERE a=19518;\nUPDATE t2 SET c='twenty-six thousand six hundred seventy-six' WHERE a=19519;\nUPDATE t2 SET c='ninety-six thousand four hundred fifteen' WHERE a=19520;\nUPDATE t2 SET c='ninety-eight thousand forty' WHERE a=19521;\nUPDATE t2 SET c='forty thousand four hundred fifty-two' WHERE a=19522;\nUPDATE t2 SET c='sixty-nine thousand seven hundred nine' WHERE a=19523;\nUPDATE t2 SET c='eighty-nine thousand six hundred ninety' WHERE a=19524;\nUPDATE t2 SET c='ninety-two thousand five hundred thirty-five' WHERE a=19525;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=19526;\nUPDATE t2 SET c='seventy-one thousand six hundred seventy-seven' WHERE a=19527;\nUPDATE t2 SET c='forty-one thousand two hundred eighty-seven' WHERE a=19528;\nUPDATE t2 SET c='five thousand eight hundred seventy-eight' WHERE a=19529;\nUPDATE t2 SET c='eighty-five thousand nineteen' WHERE a=19530;\nUPDATE t2 SET c='eleven thousand five hundred thirty-four' WHERE a=19531;\nUPDATE t2 SET c='eleven thousand eight hundred five' WHERE a=19532;\nUPDATE t2 SET c='eight thousand seven hundred fifty-five' WHERE a=19533;\nUPDATE t2 SET c='fifty-eight thousand six hundred eighty-three' WHERE a=19534;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixteen' WHERE a=19535;\nUPDATE t2 SET c='eighty-three thousand seventeen' WHERE a=19536;\nUPDATE t2 SET c='ten thousand six hundred seventy-eight' WHERE a=19537;\nUPDATE t2 SET c='seventeen thousand four hundred twenty-five' WHERE a=19538;\nUPDATE t2 SET c='eighteen thousand two hundred eighty-nine' WHERE a=19539;\nUPDATE t2 SET c='eighty-two thousand two hundred thirty' WHERE a=19540;\nUPDATE t2 SET c='fifty-five thousand three hundred ninety-eight' WHERE a=19541;\nUPDATE t2 SET c='seven thousand two hundred eighteen' WHERE a=19542;\nUPDATE t2 SET c='seventy-three thousand five hundred fifty-nine' WHERE a=19543;\nUPDATE t2 SET c='forty thousand seven hundred twenty-five' WHERE a=19544;\nUPDATE t2 SET c='nine thousand eight hundred fifty-seven' WHERE a=19545;\nUPDATE t2 SET c='thirty-one thousand nine hundred forty' WHERE a=19546;\nUPDATE t2 SET c='eighteen thousand five hundred one' WHERE a=19547;\nUPDATE t2 SET c='seven thousand six hundred eighty-four' WHERE a=19548;\nUPDATE t2 SET c='forty-nine thousand five hundred sixty-eight' WHERE a=19549;\nUPDATE t2 SET c='fourteen thousand six hundred sixty-seven' WHERE a=19550;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-one' WHERE a=19551;\nUPDATE t2 SET c='forty thousand five hundred sixty-nine' WHERE a=19552;\nUPDATE t2 SET c='thirty-three thousand four hundred forty-three' WHERE a=19553;\nUPDATE t2 SET c='nine thousand thirty-seven' WHERE a=19554;\nUPDATE t2 SET c='forty-seven thousand eight hundred fifty-four' WHERE a=19555;\nUPDATE t2 SET c='ten thousand five hundred seven' WHERE a=19556;\nUPDATE t2 SET c='seventeen thousand ninety-nine' WHERE a=19557;\nUPDATE t2 SET c='seventy-nine thousand three hundred twenty-six' WHERE a=19558;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-nine' WHERE a=19559;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-nine' WHERE a=19560;\nUPDATE t2 SET c='twenty-four thousand five hundred twelve' WHERE a=19561;\nUPDATE t2 SET c='twenty-nine thousand four hundred sixty-one' WHERE a=19562;\nUPDATE t2 SET c='eighty-eight thousand five hundred sixty-seven' WHERE a=19563;\nUPDATE t2 SET c='sixty-eight thousand eight hundred one' WHERE a=19564;\nUPDATE t2 SET c='fifty-four thousand one hundred seventy-two' WHERE a=19565;\nUPDATE t2 SET c='six thousand four hundred eighty' WHERE a=19566;\nUPDATE t2 SET c='fifty-four thousand nine hundred twenty' WHERE a=19567;\nUPDATE t2 SET c='thirty-two thousand four hundred eight' WHERE a=19568;\nUPDATE t2 SET c='ten thousand eight hundred nineteen' WHERE a=19569;\nUPDATE t2 SET c='ninety thousand nine hundred forty-two' WHERE a=19570;\nUPDATE t2 SET c='seventeen thousand seventy-five' WHERE a=19571;\nUPDATE t2 SET c='sixty thousand eighty-six' WHERE a=19572;\nUPDATE t2 SET c='fifty-three thousand eight hundred twenty-two' WHERE a=19573;\nUPDATE t2 SET c='forty-six thousand one hundred eighty-six' WHERE a=19574;\nUPDATE t2 SET c='seven thousand four hundred twenty-two' WHERE a=19575;\nUPDATE t2 SET c='twenty-seven thousand eight hundred thirty' WHERE a=19576;\nUPDATE t2 SET c='thirty-eight thousand six' WHERE a=19577;\nUPDATE t2 SET c='forty-seven thousand six hundred sixty' WHERE a=19578;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirty-eight' WHERE a=19579;\nUPDATE t2 SET c='three thousand three hundred twenty' WHERE a=19580;\nUPDATE t2 SET c='thirty-five thousand one hundred sixty-eight' WHERE a=19581;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-four' WHERE a=19582;\nUPDATE t2 SET c='eighty-six thousand four hundred fifty-six' WHERE a=19583;\nUPDATE t2 SET c='two thousand eight hundred eight' WHERE a=19584;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifty-one' WHERE a=19585;\nUPDATE t2 SET c='fifty-eight thousand eight hundred nine' WHERE a=19586;\nUPDATE t2 SET c='fifty-five thousand forty-four' WHERE a=19587;\nUPDATE t2 SET c='twenty thousand one hundred eighty-eight' WHERE a=19588;\nUPDATE t2 SET c='fifty-nine thousand fifty-nine' WHERE a=19589;\nUPDATE t2 SET c='fourteen thousand six hundred ninety-nine' WHERE a=19590;\nUPDATE t2 SET c='ninety-six thousand fifty-nine' WHERE a=19591;\nUPDATE t2 SET c='thirty-five thousand three hundred thirty' WHERE a=19592;\nUPDATE t2 SET c='thirty-three thousand seventy-one' WHERE a=19593;\nUPDATE t2 SET c='fifty thousand nine hundred ninety-one' WHERE a=19594;\nUPDATE t2 SET c='ninety-seven thousand nine hundred one' WHERE a=19595;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-six' WHERE a=19596;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirteen' WHERE a=19597;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-eight' WHERE a=19598;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-one' WHERE a=19599;\nUPDATE t2 SET c='fifty-six thousand two hundred forty-three' WHERE a=19600;\nUPDATE t2 SET c='forty thousand four hundred twenty-eight' WHERE a=19601;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-five' WHERE a=19602;\nUPDATE t2 SET c='twelve thousand seven hundred thirty-six' WHERE a=19603;\nUPDATE t2 SET c='eighty-six thousand twenty-nine' WHERE a=19604;\nUPDATE t2 SET c='fifty-seven thousand nine hundred thirty-six' WHERE a=19605;\nUPDATE t2 SET c='seventy-eight thousand seventy' WHERE a=19606;\nUPDATE t2 SET c='eighty-three thousand five hundred thirty-one' WHERE a=19607;\nUPDATE t2 SET c='eight thousand four hundred seventy-eight' WHERE a=19608;\nUPDATE t2 SET c='thirty-four thousand two hundred eighty-eight' WHERE a=19609;\nUPDATE t2 SET c='fifty-one thousand seven hundred thirty-one' WHERE a=19610;\nUPDATE t2 SET c='seventy-four thousand eight hundred seventy-seven' WHERE a=19611;\nUPDATE t2 SET c='seventy thousand one hundred ninety-one' WHERE a=19612;\nUPDATE t2 SET c='eighty-three thousand eight hundred forty' WHERE a=19613;\nUPDATE t2 SET c='sixty-three thousand three hundred seventy-three' WHERE a=19614;\nUPDATE t2 SET c='twenty-five thousand four hundred six' WHERE a=19615;\nUPDATE t2 SET c='seventy-nine thousand eight hundred thirty-nine' WHERE a=19616;\nUPDATE t2 SET c='thirty-six thousand eighty-nine' WHERE a=19617;\nUPDATE t2 SET c='three thousand two hundred eighty-two' WHERE a=19618;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-six' WHERE a=19619;\nUPDATE t2 SET c='one thousand eight hundred ninety-eight' WHERE a=19620;\nUPDATE t2 SET c='seventy-two thousand two hundred one' WHERE a=19621;\nUPDATE t2 SET c='seventy-four thousand four hundred seventy-eight' WHERE a=19622;\nUPDATE t2 SET c='forty-seven thousand three hundred seventy-five' WHERE a=19623;\nUPDATE t2 SET c='sixty thousand eight hundred thirty-seven' WHERE a=19624;\nUPDATE t2 SET c='thirty-six thousand three hundred eighteen' WHERE a=19625;\nUPDATE t2 SET c='forty-one thousand one hundred eighty' WHERE a=19626;\nUPDATE t2 SET c='three thousand eight hundred sixty-eight' WHERE a=19627;\nUPDATE t2 SET c='forty-one thousand one hundred eleven' WHERE a=19628;\nUPDATE t2 SET c='thirty-two thousand five hundred eighteen' WHERE a=19629;\nUPDATE t2 SET c='six thousand five hundred seventy-one' WHERE a=19630;\nUPDATE t2 SET c='eighty-seven thousand one hundred ninety-nine' WHERE a=19631;\nUPDATE t2 SET c='sixty-nine thousand sixty' WHERE a=19632;\nUPDATE t2 SET c='forty-nine thousand two hundred four' WHERE a=19633;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-nine' WHERE a=19634;\nUPDATE t2 SET c='sixty-six thousand three hundred ten' WHERE a=19635;\nUPDATE t2 SET c='eighty-six thousand eight hundred sixty-five' WHERE a=19636;\nUPDATE t2 SET c='thirty-six thousand four hundred fifty-four' WHERE a=19637;\nUPDATE t2 SET c='forty-seven thousand six hundred thirty-six' WHERE a=19638;\nUPDATE t2 SET c='sixty-three thousand thirty-nine' WHERE a=19639;\nUPDATE t2 SET c='eleven thousand seven hundred eighty-two' WHERE a=19640;\nUPDATE t2 SET c='eighty-nine thousand two hundred thirty-four' WHERE a=19641;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-one' WHERE a=19642;\nUPDATE t2 SET c='seventy-three thousand nine hundred forty' WHERE a=19643;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirty-four' WHERE a=19644;\nUPDATE t2 SET c='ninety-six thousand nine hundred fifty-eight' WHERE a=19645;\nUPDATE t2 SET c='twenty-one thousand five hundred fifty-six' WHERE a=19646;\nUPDATE t2 SET c='fifteen thousand six hundred fifty-three' WHERE a=19647;\nUPDATE t2 SET c='sixty-six thousand six hundred twenty-six' WHERE a=19648;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-five' WHERE a=19649;\nUPDATE t2 SET c='nineteen thousand five hundred twenty' WHERE a=19650;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-one' WHERE a=19651;\nUPDATE t2 SET c='fifty thousand five hundred thirty-eight' WHERE a=19652;\nUPDATE t2 SET c='three thousand six hundred twenty' WHERE a=19653;\nUPDATE t2 SET c='twelve thousand one hundred fifteen' WHERE a=19654;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-seven' WHERE a=19655;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-six' WHERE a=19656;\nUPDATE t2 SET c='seventy-seven thousand two hundred ninety-four' WHERE a=19657;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventeen' WHERE a=19658;\nUPDATE t2 SET c='thirty-five thousand sixty-three' WHERE a=19659;\nUPDATE t2 SET c='eighty-three thousand three hundred seventeen' WHERE a=19660;\nUPDATE t2 SET c='sixty thousand eight hundred sixty-three' WHERE a=19661;\nUPDATE t2 SET c='eighty-eight thousand forty-four' WHERE a=19662;\nUPDATE t2 SET c='five thousand three hundred fifty-four' WHERE a=19663;\nUPDATE t2 SET c='sixty-one thousand one hundred fifty-eight' WHERE a=19664;\nUPDATE t2 SET c='sixty-five thousand seven hundred twenty-eight' WHERE a=19665;\nUPDATE t2 SET c='ninety-seven thousand three hundred seventy-three' WHERE a=19666;\nUPDATE t2 SET c='two thousand thirty-five' WHERE a=19667;\nUPDATE t2 SET c='sixty-one thousand one hundred ninety-one' WHERE a=19668;\nUPDATE t2 SET c='twenty-five thousand nine hundred ninety-two' WHERE a=19669;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty-three' WHERE a=19670;\nUPDATE t2 SET c='two thousand nine hundred eighty-six' WHERE a=19671;\nUPDATE t2 SET c='fifty-two thousand six hundred seventy-three' WHERE a=19672;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-eight' WHERE a=19673;\nUPDATE t2 SET c='eighty-six thousand two hundred seventy-one' WHERE a=19674;\nUPDATE t2 SET c='fifteen thousand seven hundred two' WHERE a=19675;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-five' WHERE a=19676;\nUPDATE t2 SET c='fifty-nine thousand two hundred ten' WHERE a=19677;\nUPDATE t2 SET c='forty-two thousand seven hundred ninety' WHERE a=19678;\nUPDATE t2 SET c='fourteen thousand one hundred twenty' WHERE a=19679;\nUPDATE t2 SET c='thirty-one thousand eight hundred fourteen' WHERE a=19680;\nUPDATE t2 SET c='two thousand ninety-five' WHERE a=19681;\nUPDATE t2 SET c='sixty-three thousand four hundred forty-one' WHERE a=19682;\nUPDATE t2 SET c='twenty-two thousand two hundred seventy' WHERE a=19683;\nUPDATE t2 SET c='sixteen thousand eight hundred seventy-nine' WHERE a=19684;\nUPDATE t2 SET c='thirty-one thousand one hundred' WHERE a=19685;\nUPDATE t2 SET c='fifteen thousand six hundred thirty-two' WHERE a=19686;\nUPDATE t2 SET c='twenty thousand nine hundred forty-one' WHERE a=19687;\nUPDATE t2 SET c='ten thousand eight hundred fifty' WHERE a=19688;\nUPDATE t2 SET c='ninety-six thousand four hundred twenty-nine' WHERE a=19689;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-nine' WHERE a=19690;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty-four' WHERE a=19691;\nUPDATE t2 SET c='thirty-three thousand eight hundred fifty-eight' WHERE a=19692;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-seven' WHERE a=19693;\nUPDATE t2 SET c='nine thousand three hundred seventy' WHERE a=19694;\nUPDATE t2 SET c='fifteen thousand one hundred ninety-three' WHERE a=19695;\nUPDATE t2 SET c='fifty-five thousand four hundred four' WHERE a=19696;\nUPDATE t2 SET c='seventy-one thousand eight hundred ninety-four' WHERE a=19697;\nUPDATE t2 SET c='sixty-eight thousand three hundred ninety-two' WHERE a=19698;\nUPDATE t2 SET c='ninety-two thousand two hundred thirteen' WHERE a=19699;\nUPDATE t2 SET c='forty-six thousand four hundred seventy-nine' WHERE a=19700;\nUPDATE t2 SET c='ninety-eight thousand five hundred five' WHERE a=19701;\nUPDATE t2 SET c='eight thousand nine hundred forty-nine' WHERE a=19702;\nUPDATE t2 SET c='sixty-seven thousand five hundred seventy-five' WHERE a=19703;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-seven' WHERE a=19704;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-one' WHERE a=19705;\nUPDATE t2 SET c='fifty-five thousand nine hundred fifty' WHERE a=19706;\nUPDATE t2 SET c='fifty-four thousand six hundred four' WHERE a=19707;\nUPDATE t2 SET c='three thousand three hundred twenty-two' WHERE a=19708;\nUPDATE t2 SET c='thirty-three thousand six hundred twenty-five' WHERE a=19709;\nUPDATE t2 SET c='eighty-eight thousand five hundred thirteen' WHERE a=19710;\nUPDATE t2 SET c='seventy-two thousand seven hundred fifty-five' WHERE a=19711;\nUPDATE t2 SET c='forty-four thousand eighty-three' WHERE a=19712;\nUPDATE t2 SET c='thirty-two thousand one hundred thirteen' WHERE a=19713;\nUPDATE t2 SET c='five thousand seven hundred ninety-seven' WHERE a=19714;\nUPDATE t2 SET c='fourteen thousand three hundred seventeen' WHERE a=19715;\nUPDATE t2 SET c='seventy-three thousand eight hundred thirty-one' WHERE a=19716;\nUPDATE t2 SET c='thirty-seven thousand three hundred ninety-seven' WHERE a=19717;\nUPDATE t2 SET c='eight thousand nine hundred thirty' WHERE a=19718;\nUPDATE t2 SET c='twenty-four thousand eight hundred ninety-six' WHERE a=19719;\nUPDATE t2 SET c='thirty-six thousand fifty-four' WHERE a=19720;\nUPDATE t2 SET c='seventy-three thousand eight hundred eighty-two' WHERE a=19721;\nUPDATE t2 SET c='eleven thousand six hundred sixty-four' WHERE a=19722;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-eight' WHERE a=19723;\nUPDATE t2 SET c='sixty thousand one hundred forty-eight' WHERE a=19724;\nUPDATE t2 SET c='fifty-six thousand eighty-seven' WHERE a=19725;\nUPDATE t2 SET c='twelve thousand one hundred eighty-eight' WHERE a=19726;\nUPDATE t2 SET c='twenty-two thousand nine hundred sixty-nine' WHERE a=19727;\nUPDATE t2 SET c='ninety-three thousand ninety-seven' WHERE a=19728;\nUPDATE t2 SET c='ninety-six thousand two hundred fifty-four' WHERE a=19729;\nUPDATE t2 SET c='seventy-four thousand one hundred fifteen' WHERE a=19730;\nUPDATE t2 SET c='thirty-five thousand eight hundred fifty-seven' WHERE a=19731;\nUPDATE t2 SET c='ninety thousand one hundred eighty-four' WHERE a=19732;\nUPDATE t2 SET c='thirty-seven thousand three hundred fifty' WHERE a=19733;\nUPDATE t2 SET c='thirty-two thousand nine hundred fifty' WHERE a=19734;\nUPDATE t2 SET c='eighty-six thousand six hundred nineteen' WHERE a=19735;\nUPDATE t2 SET c='thirteen thousand six hundred fifteen' WHERE a=19736;\nUPDATE t2 SET c='twenty-five thousand nine hundred eighty-three' WHERE a=19737;\nUPDATE t2 SET c='seventy-five thousand six hundred sixteen' WHERE a=19738;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-four' WHERE a=19739;\nUPDATE t2 SET c='thirty-one thousand two hundred eighty' WHERE a=19740;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-two' WHERE a=19741;\nUPDATE t2 SET c='seventy-six thousand six hundred forty-six' WHERE a=19742;\nUPDATE t2 SET c='eighty-four thousand seven hundred forty-two' WHERE a=19743;\nUPDATE t2 SET c='thirty-nine thousand one hundred eight' WHERE a=19744;\nUPDATE t2 SET c='ninety-nine thousand four hundred fifty-eight' WHERE a=19745;\nUPDATE t2 SET c='forty-four thousand eight hundred ninety-three' WHERE a=19746;\nUPDATE t2 SET c='sixty-eight thousand two hundred thirty-one' WHERE a=19747;\nUPDATE t2 SET c='two thousand three hundred one' WHERE a=19748;\nUPDATE t2 SET c='fifty-two thousand six hundred nineteen' WHERE a=19749;\nUPDATE t2 SET c='sixty-one thousand eight hundred eighty-five' WHERE a=19750;\nUPDATE t2 SET c='twelve thousand two hundred eighty-four' WHERE a=19751;\nUPDATE t2 SET c='twenty-seven thousand eight hundred ninety-four' WHERE a=19752;\nUPDATE t2 SET c='twenty-eight thousand seven hundred two' WHERE a=19753;\nUPDATE t2 SET c='eighty-seven thousand one hundred sixty-nine' WHERE a=19754;\nUPDATE t2 SET c='thirty-seven thousand seven hundred seventy-seven' WHERE a=19755;\nUPDATE t2 SET c='forty-nine thousand eight hundred twenty-five' WHERE a=19756;\nUPDATE t2 SET c='seventy-four thousand five hundred sixty' WHERE a=19757;\nUPDATE t2 SET c='twenty-two thousand four hundred ninety-eight' WHERE a=19758;\nUPDATE t2 SET c='thirty-six thousand one hundred ninety-eight' WHERE a=19759;\nUPDATE t2 SET c='sixty-seven thousand two hundred eighty-eight' WHERE a=19760;\nUPDATE t2 SET c='sixty thousand eight hundred six' WHERE a=19761;\nUPDATE t2 SET c='thirty-four thousand five hundred forty-five' WHERE a=19762;\nUPDATE t2 SET c='sixty-eight thousand nine hundred sixteen' WHERE a=19763;\nUPDATE t2 SET c='eighty-seven thousand three hundred fifty-seven' WHERE a=19764;\nUPDATE t2 SET c='ten thousand five hundred twenty-two' WHERE a=19765;\nUPDATE t2 SET c='eighteen thousand three hundred thirty' WHERE a=19766;\nUPDATE t2 SET c='forty-four thousand one hundred four' WHERE a=19767;\nUPDATE t2 SET c='eighty-three thousand one hundred twenty-two' WHERE a=19768;\nUPDATE t2 SET c='fifty-two thousand nine hundred seventy-seven' WHERE a=19769;\nUPDATE t2 SET c='thirty-one thousand one hundred ninety-two' WHERE a=19770;\nUPDATE t2 SET c='eighty-nine thousand four hundred five' WHERE a=19771;\nUPDATE t2 SET c='seventy-one thousand six hundred seventeen' WHERE a=19772;\nUPDATE t2 SET c='sixty-three thousand one hundred fifty-two' WHERE a=19773;\nUPDATE t2 SET c='eighty-eight thousand two hundred fifty-five' WHERE a=19774;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-two' WHERE a=19775;\nUPDATE t2 SET c='thirty-eight thousand twelve' WHERE a=19776;\nUPDATE t2 SET c='seventy-nine thousand four hundred eighty-three' WHERE a=19777;\nUPDATE t2 SET c='fifty thousand four hundred eighty-seven' WHERE a=19778;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-five' WHERE a=19779;\nUPDATE t2 SET c='ninety-seven thousand three hundred thirty-four' WHERE a=19780;\nUPDATE t2 SET c='eighty-nine thousand four hundred fourteen' WHERE a=19781;\nUPDATE t2 SET c='forty thousand fifty-nine' WHERE a=19782;\nUPDATE t2 SET c='fifty-seven thousand five hundred eight' WHERE a=19783;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-six' WHERE a=19784;\nUPDATE t2 SET c='thirty-six thousand nine hundred fifty-six' WHERE a=19785;\nUPDATE t2 SET c='fifty-three thousand three hundred seven' WHERE a=19786;\nUPDATE t2 SET c='thirty-nine thousand seven hundred thirty-six' WHERE a=19787;\nUPDATE t2 SET c='seventy-six thousand four hundred forty-two' WHERE a=19788;\nUPDATE t2 SET c='one thousand five hundred forty-six' WHERE a=19789;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifteen' WHERE a=19790;\nUPDATE t2 SET c='forty-eight thousand seven hundred seventy-three' WHERE a=19791;\nUPDATE t2 SET c='forty-six thousand three hundred eighty-five' WHERE a=19792;\nUPDATE t2 SET c='sixty thousand four hundred seventy-nine' WHERE a=19793;\nUPDATE t2 SET c='forty-seven thousand eight hundred seventy-three' WHERE a=19794;\nUPDATE t2 SET c='fifty-four thousand five hundred fifty-four' WHERE a=19795;\nUPDATE t2 SET c='forty-six thousand seven hundred forty-three' WHERE a=19796;\nUPDATE t2 SET c='eighteen thousand three hundred twenty-seven' WHERE a=19797;\nUPDATE t2 SET c='seventy-nine thousand six hundred sixty-nine' WHERE a=19798;\nUPDATE t2 SET c='eight thousand nine hundred forty-seven' WHERE a=19799;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty-one' WHERE a=19800;\nUPDATE t2 SET c='forty-three thousand five hundred eighty-one' WHERE a=19801;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety' WHERE a=19802;\nUPDATE t2 SET c='sixty-five thousand four hundred ninety-seven' WHERE a=19803;\nUPDATE t2 SET c='sixty-one thousand eight hundred seventy-nine' WHERE a=19804;\nUPDATE t2 SET c='forty-nine thousand seven hundred eighty-seven' WHERE a=19805;\nUPDATE t2 SET c='eighty thousand six hundred ninety-two' WHERE a=19806;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-two' WHERE a=19807;\nUPDATE t2 SET c='twenty-six thousand five hundred fifteen' WHERE a=19808;\nUPDATE t2 SET c='fifty-eight thousand three hundred sixty-six' WHERE a=19809;\nUPDATE t2 SET c='sixty-two thousand one hundred fifty' WHERE a=19810;\nUPDATE t2 SET c='twenty-five thousand nine hundred twenty-six' WHERE a=19811;\nUPDATE t2 SET c='sixteen thousand ninety-two' WHERE a=19812;\nUPDATE t2 SET c='one thousand three hundred twenty-nine' WHERE a=19813;\nUPDATE t2 SET c='ninety-four thousand one hundred fifty' WHERE a=19814;\nUPDATE t2 SET c='three thousand forty-five' WHERE a=19815;\nUPDATE t2 SET c='seventy-five thousand three hundred forty-five' WHERE a=19816;\nUPDATE t2 SET c='sixty-eight thousand eight hundred ten' WHERE a=19817;\nUPDATE t2 SET c='sixteen thousand five hundred fifty-seven' WHERE a=19818;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-four' WHERE a=19819;\nUPDATE t2 SET c='sixty-one thousand one hundred eighteen' WHERE a=19820;\nUPDATE t2 SET c='twenty-nine thousand six hundred eighty-four' WHERE a=19821;\nUPDATE t2 SET c='ninety-five thousand nine hundred seventy-seven' WHERE a=19822;\nUPDATE t2 SET c='fifty thousand four hundred eighty-five' WHERE a=19823;\nUPDATE t2 SET c='ninety-three thousand five hundred twenty-two' WHERE a=19824;\nUPDATE t2 SET c='forty-one thousand four hundred seven' WHERE a=19825;\nUPDATE t2 SET c='nineteen thousand seven hundred twelve' WHERE a=19826;\nUPDATE t2 SET c='five thousand six hundred four' WHERE a=19827;\nUPDATE t2 SET c='ten thousand five hundred five' WHERE a=19828;\nUPDATE t2 SET c='eight thousand four hundred eight' WHERE a=19829;\nUPDATE t2 SET c='one thousand eight hundred forty-five' WHERE a=19830;\nUPDATE t2 SET c='thirty-six thousand nine hundred eighty-one' WHERE a=19831;\nUPDATE t2 SET c='thirty-four thousand seven hundred fifty' WHERE a=19832;\nUPDATE t2 SET c='sixty-eight thousand five hundred forty-three' WHERE a=19833;\nUPDATE t2 SET c='forty-two thousand two hundred ninety-one' WHERE a=19834;\nUPDATE t2 SET c='eighty thousand eight hundred twenty-seven' WHERE a=19835;\nUPDATE t2 SET c='forty thousand three hundred thirty-three' WHERE a=19836;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-four' WHERE a=19837;\nUPDATE t2 SET c='sixty-eight thousand one hundred seventy-eight' WHERE a=19838;\nUPDATE t2 SET c='ninety-three thousand seven hundred sixty' WHERE a=19839;\nUPDATE t2 SET c='seventy-nine thousand one hundred sixty-one' WHERE a=19840;\nUPDATE t2 SET c='thirty thousand one hundred fifteen' WHERE a=19841;\nUPDATE t2 SET c='ninety thousand four hundred seventy-two' WHERE a=19842;\nUPDATE t2 SET c='fifty-five thousand three hundred eighteen' WHERE a=19843;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-six' WHERE a=19844;\nUPDATE t2 SET c='eighty-six thousand twenty-six' WHERE a=19845;\nUPDATE t2 SET c='ninety-three thousand five hundred thirty' WHERE a=19846;\nUPDATE t2 SET c='thirteen thousand sixty-four' WHERE a=19847;\nUPDATE t2 SET c='thirty-seven thousand nine hundred seventeen' WHERE a=19848;\nUPDATE t2 SET c='eighty-two thousand five hundred nine' WHERE a=19849;\nUPDATE t2 SET c='thirteen thousand four hundred forty' WHERE a=19850;\nUPDATE t2 SET c='nine thousand five hundred twenty-six' WHERE a=19851;\nUPDATE t2 SET c='ninety-nine thousand four hundred six' WHERE a=19852;\nUPDATE t2 SET c='fifty-four thousand eight hundred thirty-nine' WHERE a=19853;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty' WHERE a=19854;\nUPDATE t2 SET c='seventy-three thousand three' WHERE a=19855;\nUPDATE t2 SET c='twenty-five thousand six hundred forty' WHERE a=19856;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty' WHERE a=19857;\nUPDATE t2 SET c='eighty-nine thousand one hundred forty-four' WHERE a=19858;\nUPDATE t2 SET c='thirteen thousand twenty' WHERE a=19859;\nUPDATE t2 SET c='thirty thousand seven hundred forty-nine' WHERE a=19860;\nUPDATE t2 SET c='seventy thousand four hundred ninety-six' WHERE a=19861;\nUPDATE t2 SET c='ninety-six thousand eight hundred forty' WHERE a=19862;\nUPDATE t2 SET c='sixty-one thousand seven hundred twenty-three' WHERE a=19863;\nUPDATE t2 SET c='ninety-one thousand eight hundred twenty-eight' WHERE a=19864;\nUPDATE t2 SET c='fifty-five thousand three hundred fifteen' WHERE a=19865;\nUPDATE t2 SET c='forty-five thousand eight hundred seventy-four' WHERE a=19866;\nUPDATE t2 SET c='fifty thousand seven hundred sixty-five' WHERE a=19867;\nUPDATE t2 SET c='eighty-two thousand five hundred twelve' WHERE a=19868;\nUPDATE t2 SET c='forty-one thousand four hundred eighty-four' WHERE a=19869;\nUPDATE t2 SET c='forty-eight thousand seven hundred ninety-eight' WHERE a=19870;\nUPDATE t2 SET c='fifty-five thousand one hundred four' WHERE a=19871;\nUPDATE t2 SET c='twenty-four thousand nine hundred ninety' WHERE a=19872;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-five' WHERE a=19873;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-three' WHERE a=19874;\nUPDATE t2 SET c='eighty-three thousand nine hundred thirty-four' WHERE a=19875;\nUPDATE t2 SET c='seventy-two thousand one hundred thirty-two' WHERE a=19876;\nUPDATE t2 SET c='thirty-four thousand twenty-three' WHERE a=19877;\nUPDATE t2 SET c='fifty-eight thousand six hundred thirty' WHERE a=19878;\nUPDATE t2 SET c='sixteen thousand two hundred sixty-seven' WHERE a=19879;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=19880;\nUPDATE t2 SET c='forty thousand one hundred sixty' WHERE a=19881;\nUPDATE t2 SET c='eighty thousand three hundred fifty-four' WHERE a=19882;\nUPDATE t2 SET c='fifty-one thousand two hundred seventy-one' WHERE a=19883;\nUPDATE t2 SET c='twelve thousand six hundred seventy-two' WHERE a=19884;\nUPDATE t2 SET c='eight thousand one hundred five' WHERE a=19885;\nUPDATE t2 SET c='thirty-one thousand nine hundred fifteen' WHERE a=19886;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=19887;\nUPDATE t2 SET c='four thousand eight hundred fifty-four' WHERE a=19888;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifteen' WHERE a=19889;\nUPDATE t2 SET c='forty thousand six hundred fifty-two' WHERE a=19890;\nUPDATE t2 SET c='thirty-four thousand four hundred eighty-three' WHERE a=19891;\nUPDATE t2 SET c='five thousand nine hundred eleven' WHERE a=19892;\nUPDATE t2 SET c='eighty-one thousand five hundred forty-one' WHERE a=19893;\nUPDATE t2 SET c='nineteen thousand six hundred fifty-four' WHERE a=19894;\nUPDATE t2 SET c='sixty-four thousand four hundred seventy-four' WHERE a=19895;\nUPDATE t2 SET c='twenty-three thousand thirty-four' WHERE a=19896;\nUPDATE t2 SET c='fifty-three thousand seven hundred seventy-nine' WHERE a=19897;\nUPDATE t2 SET c='forty-four thousand nine hundred forty-five' WHERE a=19898;\nUPDATE t2 SET c='ninety-six thousand five hundred eighty' WHERE a=19899;\nUPDATE t2 SET c='eighty-three thousand three' WHERE a=19900;\nUPDATE t2 SET c='twenty-four thousand five' WHERE a=19901;\nUPDATE t2 SET c='two thousand nine hundred two' WHERE a=19902;\nUPDATE t2 SET c='six thousand nine hundred' WHERE a=19903;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-three' WHERE a=19904;\nUPDATE t2 SET c='twenty-seven thousand seven hundred fifty-four' WHERE a=19905;\nUPDATE t2 SET c='fifty-one thousand seven hundred eighty-two' WHERE a=19906;\nUPDATE t2 SET c='eighty-three thousand eight hundred sixty' WHERE a=19907;\nUPDATE t2 SET c='eleven thousand six hundred sixteen' WHERE a=19908;\nUPDATE t2 SET c='seventy-eight thousand sixteen' WHERE a=19909;\nUPDATE t2 SET c='eighty thousand three hundred ninety-three' WHERE a=19910;\nUPDATE t2 SET c='forty-eight thousand eight hundred ninety-three' WHERE a=19911;\nUPDATE t2 SET c='fifty thousand two hundred ninety-nine' WHERE a=19912;\nUPDATE t2 SET c='forty thousand two hundred forty-four' WHERE a=19913;\nUPDATE t2 SET c='ninety-eight thousand four hundred fifty-four' WHERE a=19914;\nUPDATE t2 SET c='fifty-five thousand eight hundred two' WHERE a=19915;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-nine' WHERE a=19916;\nUPDATE t2 SET c='seventy thousand eight hundred thirty-three' WHERE a=19917;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy-eight' WHERE a=19918;\nUPDATE t2 SET c='fifty-two thousand four hundred fifty-five' WHERE a=19919;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty-nine' WHERE a=19920;\nUPDATE t2 SET c='fifty-seven thousand five hundred forty-six' WHERE a=19921;\nUPDATE t2 SET c='ninety-nine thousand three hundred eighty-one' WHERE a=19922;\nUPDATE t2 SET c='thirty-one thousand seven hundred seventy-four' WHERE a=19923;\nUPDATE t2 SET c='seventy-seven thousand three hundred seventy-one' WHERE a=19924;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-two' WHERE a=19925;\nUPDATE t2 SET c='six thousand three hundred fifteen' WHERE a=19926;\nUPDATE t2 SET c='sixty-four thousand two hundred six' WHERE a=19927;\nUPDATE t2 SET c='eighty-eight thousand one hundred seventy-five' WHERE a=19928;\nUPDATE t2 SET c='fifty-one thousand one hundred thirty-five' WHERE a=19929;\nUPDATE t2 SET c='ninety thousand eighty-two' WHERE a=19930;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-eight' WHERE a=19931;\nUPDATE t2 SET c='eighty-seven thousand five hundred ninety-one' WHERE a=19932;\nUPDATE t2 SET c='seventy-nine thousand one hundred fifty' WHERE a=19933;\nUPDATE t2 SET c='sixty thousand thirty-four' WHERE a=19934;\nUPDATE t2 SET c='fifty-four thousand four hundred seventy-eight' WHERE a=19935;\nUPDATE t2 SET c='five thousand forty-nine' WHERE a=19936;\nUPDATE t2 SET c='twenty-six thousand eight hundred eleven' WHERE a=19937;\nUPDATE t2 SET c='seventy-two thousand eight hundred seventeen' WHERE a=19938;\nUPDATE t2 SET c='thirty-two thousand six hundred ninety-one' WHERE a=19939;\nUPDATE t2 SET c='thirty-two thousand nine hundred two' WHERE a=19940;\nUPDATE t2 SET c='fourteen thousand two hundred twenty-one' WHERE a=19941;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-seven' WHERE a=19942;\nUPDATE t2 SET c='eighteen thousand two hundred ninety-seven' WHERE a=19943;\nUPDATE t2 SET c='forty-four thousand seven hundred sixty-seven' WHERE a=19944;\nUPDATE t2 SET c='forty thousand two hundred seventy-two' WHERE a=19945;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-seven' WHERE a=19946;\nUPDATE t2 SET c='twenty-nine thousand seven hundred ninety-seven' WHERE a=19947;\nUPDATE t2 SET c='eight thousand three hundred nineteen' WHERE a=19948;\nUPDATE t2 SET c='eleven thousand nine hundred sixty-five' WHERE a=19949;\nUPDATE t2 SET c='fifty-three thousand nine hundred fifty-seven' WHERE a=19950;\nUPDATE t2 SET c='forty-three thousand two hundred ninety-eight' WHERE a=19951;\nUPDATE t2 SET c='forty-three thousand eight hundred seven' WHERE a=19952;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-nine' WHERE a=19953;\nUPDATE t2 SET c='twelve thousand one hundred thirteen' WHERE a=19954;\nUPDATE t2 SET c='ninety-nine thousand eight hundred eighteen' WHERE a=19955;\nUPDATE t2 SET c='fifteen thousand two hundred forty-seven' WHERE a=19956;\nUPDATE t2 SET c='seventeen thousand one hundred ninety-nine' WHERE a=19957;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-six' WHERE a=19958;\nUPDATE t2 SET c='thirty-two thousand seventy-one' WHERE a=19959;\nUPDATE t2 SET c='eleven thousand one hundred thirty-seven' WHERE a=19960;\nUPDATE t2 SET c='seventy-eight thousand eight hundred twelve' WHERE a=19961;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-eight' WHERE a=19962;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-four' WHERE a=19963;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy-nine' WHERE a=19964;\nUPDATE t2 SET c='fourteen thousand three hundred eight' WHERE a=19965;\nUPDATE t2 SET c='thirty-nine thousand two hundred forty' WHERE a=19966;\nUPDATE t2 SET c='eighty-two thousand two hundred eighty-three' WHERE a=19967;\nUPDATE t2 SET c='eighty-eight thousand nine hundred thirty' WHERE a=19968;\nUPDATE t2 SET c='twenty-two thousand one hundred seventy-seven' WHERE a=19969;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty-six' WHERE a=19970;\nUPDATE t2 SET c='two thousand three hundred twenty-nine' WHERE a=19971;\nUPDATE t2 SET c='twenty-two thousand six hundred ninety-seven' WHERE a=19972;\nUPDATE t2 SET c='eighty-four thousand eight hundred twenty-five' WHERE a=19973;\nUPDATE t2 SET c='six thousand six hundred sixty-six' WHERE a=19974;\nUPDATE t2 SET c='forty-nine thousand seven hundred seven' WHERE a=19975;\nUPDATE t2 SET c='twenty-nine thousand two hundred eighty-nine' WHERE a=19976;\nUPDATE t2 SET c='eighty-nine thousand five hundred sixty' WHERE a=19977;\nUPDATE t2 SET c='eighty-nine thousand six hundred forty-seven' WHERE a=19978;\nUPDATE t2 SET c='fifty-nine thousand nine hundred forty-nine' WHERE a=19979;\nUPDATE t2 SET c='seventy-nine thousand ninety-five' WHERE a=19980;\nUPDATE t2 SET c='seven thousand seven hundred ninety-four' WHERE a=19981;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-three' WHERE a=19982;\nUPDATE t2 SET c='ninety-five thousand five hundred eighty-three' WHERE a=19983;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-five' WHERE a=19984;\nUPDATE t2 SET c='four thousand sixty-six' WHERE a=19985;\nUPDATE t2 SET c='seventeen thousand three hundred twenty-two' WHERE a=19986;\nUPDATE t2 SET c='ninety-two thousand four hundred sixty-four' WHERE a=19987;\nUPDATE t2 SET c='seventy-six thousand nine hundred nine' WHERE a=19988;\nUPDATE t2 SET c='seventy-two thousand two hundred twenty-four' WHERE a=19989;\nUPDATE t2 SET c='ninety-three thousand six hundred sixteen' WHERE a=19990;\nUPDATE t2 SET c='ninety-five thousand seven hundred twenty-three' WHERE a=19991;\nUPDATE t2 SET c='ninety-nine thousand twenty-two' WHERE a=19992;\nUPDATE t2 SET c='twenty thousand four hundred eighty-six' WHERE a=19993;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-seven' WHERE a=19994;\nUPDATE t2 SET c='forty-two thousand two hundred twenty-five' WHERE a=19995;\nUPDATE t2 SET c='eighty-seven thousand forty-nine' WHERE a=19996;\nUPDATE t2 SET c='sixteen thousand sixty-three' WHERE a=19997;\nUPDATE t2 SET c='thirty-eight thousand one hundred sixty-two' WHERE a=19998;\nUPDATE t2 SET c='eleven thousand two hundred eighty-five' WHERE a=19999;\nUPDATE t2 SET c='seventy thousand nine hundred forty-one' WHERE a=20000;\nUPDATE t2 SET c='sixteen thousand nine hundred thirty-two' WHERE a=20001;\nUPDATE t2 SET c='fifty-one thousand nine hundred nineteen' WHERE a=20002;\nUPDATE t2 SET c='twelve thousand five hundred sixty' WHERE a=20003;\nUPDATE t2 SET c='seventy-four thousand eight hundred forty-two' WHERE a=20004;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-eight' WHERE a=20005;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-seven' WHERE a=20006;\nUPDATE t2 SET c='forty thousand four hundred forty-six' WHERE a=20007;\nUPDATE t2 SET c='five thousand six hundred fifty-two' WHERE a=20008;\nUPDATE t2 SET c='seventy-one thousand one hundred seventy-six' WHERE a=20009;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-two' WHERE a=20010;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-two' WHERE a=20011;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=20012;\nUPDATE t2 SET c='forty-nine thousand one' WHERE a=20013;\nUPDATE t2 SET c='two thousand thirty-seven' WHERE a=20014;\nUPDATE t2 SET c='ninety thousand eight hundred seventy-seven' WHERE a=20015;\nUPDATE t2 SET c='ninety-four thousand eight hundred nine' WHERE a=20016;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-six' WHERE a=20017;\nUPDATE t2 SET c='seventy-three thousand one hundred sixty-three' WHERE a=20018;\nUPDATE t2 SET c='twenty-two thousand four hundred twenty-three' WHERE a=20019;\nUPDATE t2 SET c='two thousand three hundred fifty-two' WHERE a=20020;\nUPDATE t2 SET c='ninety-six thousand three hundred sixty-eight' WHERE a=20021;\nUPDATE t2 SET c='ninety-two thousand six hundred fifteen' WHERE a=20022;\nUPDATE t2 SET c='thirty-eight thousand three hundred eighty-two' WHERE a=20023;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-two' WHERE a=20024;\nUPDATE t2 SET c='forty-one thousand twenty-six' WHERE a=20025;\nUPDATE t2 SET c='forty thousand seven hundred ninety-nine' WHERE a=20026;\nUPDATE t2 SET c='thirteen thousand three hundred ninety-seven' WHERE a=20027;\nUPDATE t2 SET c='twenty-one thousand seven hundred sixty-three' WHERE a=20028;\nUPDATE t2 SET c='thirty-one thousand one hundred ninety' WHERE a=20029;\nUPDATE t2 SET c='sixty-two thousand five hundred ninety-six' WHERE a=20030;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety' WHERE a=20031;\nUPDATE t2 SET c='seventy-eight thousand three hundred eighty-seven' WHERE a=20032;\nUPDATE t2 SET c='seventy-three thousand one hundred forty-nine' WHERE a=20033;\nUPDATE t2 SET c='eighty-four thousand two hundred fifty-nine' WHERE a=20034;\nUPDATE t2 SET c='sixty thousand eight hundred forty-one' WHERE a=20035;\nUPDATE t2 SET c='eighteen thousand four hundred twenty-two' WHERE a=20036;\nUPDATE t2 SET c='seventy-six thousand one hundred forty-four' WHERE a=20037;\nUPDATE t2 SET c='sixty-five thousand three hundred thirty-four' WHERE a=20038;\nUPDATE t2 SET c='five thousand six hundred thirty-nine' WHERE a=20039;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety-six' WHERE a=20040;\nUPDATE t2 SET c='seven thousand eight hundred thirty-eight' WHERE a=20041;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-eight' WHERE a=20042;\nUPDATE t2 SET c='thirty-four thousand two hundred ninety-seven' WHERE a=20043;\nUPDATE t2 SET c='five thousand nine hundred eighty-three' WHERE a=20044;\nUPDATE t2 SET c='eighty-three thousand four hundred thirty-two' WHERE a=20045;\nUPDATE t2 SET c='seventeen thousand nine hundred eighty-seven' WHERE a=20046;\nUPDATE t2 SET c='five thousand three hundred thirty-three' WHERE a=20047;\nUPDATE t2 SET c='fifty-nine thousand three hundred sixty-three' WHERE a=20048;\nUPDATE t2 SET c='thirty-seven thousand eight hundred four' WHERE a=20049;\nUPDATE t2 SET c='sixteen thousand two hundred thirty-nine' WHERE a=20050;\nUPDATE t2 SET c='five thousand one hundred' WHERE a=20051;\nUPDATE t2 SET c='forty-eight thousand nine' WHERE a=20052;\nUPDATE t2 SET c='fifty-two thousand five' WHERE a=20053;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-four' WHERE a=20054;\nUPDATE t2 SET c='fifty-two thousand seven hundred five' WHERE a=20055;\nUPDATE t2 SET c='twelve thousand seven hundred thirteen' WHERE a=20056;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-six' WHERE a=20057;\nUPDATE t2 SET c='eighty-two thousand four hundred thirty-seven' WHERE a=20058;\nUPDATE t2 SET c='seventy-six thousand twenty-one' WHERE a=20059;\nUPDATE t2 SET c='forty-two thousand nine hundred seventeen' WHERE a=20060;\nUPDATE t2 SET c='ninety thousand nine hundred sixty-three' WHERE a=20061;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-nine' WHERE a=20062;\nUPDATE t2 SET c='forty-one thousand one hundred seventy-one' WHERE a=20063;\nUPDATE t2 SET c='sixty thousand two hundred forty-five' WHERE a=20064;\nUPDATE t2 SET c='twenty thousand three hundred eighty-one' WHERE a=20065;\nUPDATE t2 SET c='fifty-one thousand six hundred forty-three' WHERE a=20066;\nUPDATE t2 SET c='seventy thousand nine hundred four' WHERE a=20067;\nUPDATE t2 SET c='two thousand one hundred thirty-six' WHERE a=20068;\nUPDATE t2 SET c='seventy-six thousand two hundred seven' WHERE a=20069;\nUPDATE t2 SET c='sixty-two thousand four hundred twenty-two' WHERE a=20070;\nUPDATE t2 SET c='fifty-six thousand nine hundred eighty-six' WHERE a=20071;\nUPDATE t2 SET c='sixty-one thousand eight hundred forty-one' WHERE a=20072;\nUPDATE t2 SET c='thirteen thousand four hundred twenty-seven' WHERE a=20073;\nUPDATE t2 SET c='ten thousand one hundred sixty' WHERE a=20074;\nUPDATE t2 SET c='sixty thousand seven hundred fifty-seven' WHERE a=20075;\nUPDATE t2 SET c='seventy-six thousand four hundred ninety-five' WHERE a=20076;\nUPDATE t2 SET c='sixty-eight thousand six hundred twenty-eight' WHERE a=20077;\nUPDATE t2 SET c='eighty-four thousand eight hundred thirty' WHERE a=20078;\nUPDATE t2 SET c='sixty-six thousand seven hundred nine' WHERE a=20079;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-four' WHERE a=20080;\nUPDATE t2 SET c='eighty-four thousand three hundred thirty-six' WHERE a=20081;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-five' WHERE a=20082;\nUPDATE t2 SET c='twenty-four thousand three hundred sixty-nine' WHERE a=20083;\nUPDATE t2 SET c='ten thousand nine hundred nineteen' WHERE a=20084;\nUPDATE t2 SET c='twenty-seven thousand twenty' WHERE a=20085;\nUPDATE t2 SET c='twenty thousand seven hundred one' WHERE a=20086;\nUPDATE t2 SET c='thirteen thousand one hundred eighty-six' WHERE a=20087;\nUPDATE t2 SET c='ninety-one thousand four hundred seventy-three' WHERE a=20088;\nUPDATE t2 SET c='eighty-one thousand four hundred seventeen' WHERE a=20089;\nUPDATE t2 SET c='sixty-eight thousand two hundred ninety' WHERE a=20090;\nUPDATE t2 SET c='eight thousand two hundred thirty-nine' WHERE a=20091;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty-seven' WHERE a=20092;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-five' WHERE a=20093;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-nine' WHERE a=20094;\nUPDATE t2 SET c='seventy-four thousand one hundred' WHERE a=20095;\nUPDATE t2 SET c='eighty-six thousand five hundred sixty-three' WHERE a=20096;\nUPDATE t2 SET c='eight thousand five hundred ninety-four' WHERE a=20097;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=20098;\nUPDATE t2 SET c='forty-eight thousand four hundred ninety-eight' WHERE a=20099;\nUPDATE t2 SET c='thirty-seven thousand six hundred eighty-four' WHERE a=20100;\nUPDATE t2 SET c='seventy-four thousand seven hundred seven' WHERE a=20101;\nUPDATE t2 SET c='forty-six thousand eight hundred forty-two' WHERE a=20102;\nUPDATE t2 SET c='eighteen thousand nineteen' WHERE a=20103;\nUPDATE t2 SET c='thirty thousand one hundred seventeen' WHERE a=20104;\nUPDATE t2 SET c='eight thousand four hundred one' WHERE a=20105;\nUPDATE t2 SET c='eleven thousand ninety-eight' WHERE a=20106;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-four' WHERE a=20107;\nUPDATE t2 SET c='eight hundred fifty-two' WHERE a=20108;\nUPDATE t2 SET c='eighty-four thousand seven hundred fifty-eight' WHERE a=20109;\nUPDATE t2 SET c='eleven thousand twelve' WHERE a=20110;\nUPDATE t2 SET c='six thousand eight hundred seven' WHERE a=20111;\nUPDATE t2 SET c='thirty-seven thousand three hundred six' WHERE a=20112;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-nine' WHERE a=20113;\nUPDATE t2 SET c='ninety-six thousand seven hundred seven' WHERE a=20114;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-nine' WHERE a=20115;\nUPDATE t2 SET c='fourteen thousand forty' WHERE a=20116;\nUPDATE t2 SET c='sixty-seven thousand six hundred ninety-three' WHERE a=20117;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty' WHERE a=20118;\nUPDATE t2 SET c='twenty thousand one hundred eighty-seven' WHERE a=20119;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-six' WHERE a=20120;\nUPDATE t2 SET c='sixty-six thousand three hundred seventy-seven' WHERE a=20121;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-four' WHERE a=20122;\nUPDATE t2 SET c='eighteen thousand nine hundred seven' WHERE a=20123;\nUPDATE t2 SET c='fifty-seven thousand two hundred forty-seven' WHERE a=20124;\nUPDATE t2 SET c='eighteen thousand two hundred seventy-nine' WHERE a=20125;\nUPDATE t2 SET c='twenty-three thousand three hundred eighty' WHERE a=20126;\nUPDATE t2 SET c='sixty-five thousand two hundred seventy-eight' WHERE a=20127;\nUPDATE t2 SET c='forty thousand five hundred twenty-one' WHERE a=20128;\nUPDATE t2 SET c='twenty-one thousand eight hundred sixty' WHERE a=20129;\nUPDATE t2 SET c='seventy thousand three hundred fourteen' WHERE a=20130;\nUPDATE t2 SET c='twenty-six thousand nine hundred fifty-six' WHERE a=20131;\nUPDATE t2 SET c='sixty-four thousand two hundred sixty' WHERE a=20132;\nUPDATE t2 SET c='twenty-four thousand eight hundred ninety-seven' WHERE a=20133;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-one' WHERE a=20134;\nUPDATE t2 SET c='sixty-one thousand twenty' WHERE a=20135;\nUPDATE t2 SET c='fifty-three thousand three hundred fifty-six' WHERE a=20136;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-one' WHERE a=20137;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety-seven' WHERE a=20138;\nUPDATE t2 SET c='seventy-five thousand thirty-six' WHERE a=20139;\nUPDATE t2 SET c='sixty thousand nine hundred fifty-five' WHERE a=20140;\nUPDATE t2 SET c='seventy-eight thousand six hundred eighty-seven' WHERE a=20141;\nUPDATE t2 SET c='thirty-one thousand fifty-six' WHERE a=20142;\nUPDATE t2 SET c='seventy-five thousand five hundred six' WHERE a=20143;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-one' WHERE a=20144;\nUPDATE t2 SET c='seventy-three thousand one hundred eight' WHERE a=20145;\nUPDATE t2 SET c='sixty-two thousand six hundred ninety' WHERE a=20146;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty' WHERE a=20147;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirty-six' WHERE a=20148;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-nine' WHERE a=20149;\nUPDATE t2 SET c='forty thousand twenty-five' WHERE a=20150;\nUPDATE t2 SET c='ninety-six thousand five hundred fifty-one' WHERE a=20151;\nUPDATE t2 SET c='ninety-six thousand seventy-seven' WHERE a=20152;\nUPDATE t2 SET c='forty thousand one hundred sixty-six' WHERE a=20153;\nUPDATE t2 SET c='ninety thousand three hundred fifty-five' WHERE a=20154;\nUPDATE t2 SET c='fifty-one thousand seven hundred ninety-three' WHERE a=20155;\nUPDATE t2 SET c='sixty-one thousand six hundred sixty-three' WHERE a=20156;\nUPDATE t2 SET c='sixty-nine thousand eight hundred seventy-five' WHERE a=20157;\nUPDATE t2 SET c='forty-four thousand two hundred five' WHERE a=20158;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-two' WHERE a=20159;\nUPDATE t2 SET c='eighty-six thousand five' WHERE a=20160;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-nine' WHERE a=20161;\nUPDATE t2 SET c='sixty-three thousand four hundred thirty-five' WHERE a=20162;\nUPDATE t2 SET c='forty thousand two hundred nine' WHERE a=20163;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-four' WHERE a=20164;\nUPDATE t2 SET c='ninety-one thousand one hundred forty-eight' WHERE a=20165;\nUPDATE t2 SET c='forty-eight thousand one hundred eighty-four' WHERE a=20166;\nUPDATE t2 SET c='ninety-eight thousand two hundred thirty-three' WHERE a=20167;\nUPDATE t2 SET c='thirty-one thousand two hundred twenty' WHERE a=20168;\nUPDATE t2 SET c='nineteen thousand eight hundred eighteen' WHERE a=20169;\nUPDATE t2 SET c='fifty-three thousand three hundred eleven' WHERE a=20170;\nUPDATE t2 SET c='twenty-one thousand two hundred two' WHERE a=20171;\nUPDATE t2 SET c='twenty-five thousand seven hundred forty-seven' WHERE a=20172;\nUPDATE t2 SET c='twenty-five thousand two hundred fifty-nine' WHERE a=20173;\nUPDATE t2 SET c='sixteen thousand five hundred' WHERE a=20174;\nUPDATE t2 SET c='eleven thousand eight hundred seventy-seven' WHERE a=20175;\nUPDATE t2 SET c='six thousand three hundred two' WHERE a=20176;\nUPDATE t2 SET c='thirty-six thousand six hundred nineteen' WHERE a=20177;\nUPDATE t2 SET c='sixteen thousand two hundred eighteen' WHERE a=20178;\nUPDATE t2 SET c='twenty-four thousand eight hundred two' WHERE a=20179;\nUPDATE t2 SET c='one thousand six hundred ninety-seven' WHERE a=20180;\nUPDATE t2 SET c='forty-three thousand one hundred seventy-seven' WHERE a=20181;\nUPDATE t2 SET c='eighteen thousand eight hundred twenty-four' WHERE a=20182;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-eight' WHERE a=20183;\nUPDATE t2 SET c='six thousand five hundred two' WHERE a=20184;\nUPDATE t2 SET c='ninety-three thousand one hundred nineteen' WHERE a=20185;\nUPDATE t2 SET c='eighty-four thousand five hundred twenty' WHERE a=20186;\nUPDATE t2 SET c='eighty-one thousand three hundred twenty-nine' WHERE a=20187;\nUPDATE t2 SET c='fourteen thousand three hundred ten' WHERE a=20188;\nUPDATE t2 SET c='forty-seven thousand three hundred thirty-one' WHERE a=20189;\nUPDATE t2 SET c='fourteen thousand three hundred eighty-six' WHERE a=20190;\nUPDATE t2 SET c='twenty-six thousand three hundred ninety-one' WHERE a=20191;\nUPDATE t2 SET c='ninety-three thousand eighty-seven' WHERE a=20192;\nUPDATE t2 SET c='ten thousand eight hundred fifty-eight' WHERE a=20193;\nUPDATE t2 SET c='thirty-one thousand two hundred twenty' WHERE a=20194;\nUPDATE t2 SET c='eighty-eight thousand three hundred twenty-three' WHERE a=20195;\nUPDATE t2 SET c='thirty-four thousand five hundred two' WHERE a=20196;\nUPDATE t2 SET c='one thousand nine hundred twenty-three' WHERE a=20197;\nUPDATE t2 SET c='nine thousand eight hundred thirty-four' WHERE a=20198;\nUPDATE t2 SET c='seventy-seven thousand five hundred forty-seven' WHERE a=20199;\nUPDATE t2 SET c='ninety-four thousand six hundred eighty-seven' WHERE a=20200;\nUPDATE t2 SET c='thirty-five thousand five hundred sixty-seven' WHERE a=20201;\nUPDATE t2 SET c='twenty-five thousand five hundred seven' WHERE a=20202;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eleven' WHERE a=20203;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-five' WHERE a=20204;\nUPDATE t2 SET c='seven thousand nine hundred fifty-three' WHERE a=20205;\nUPDATE t2 SET c='eighty-one thousand seven hundred thirty-five' WHERE a=20206;\nUPDATE t2 SET c='forty thousand two hundred thirty-nine' WHERE a=20207;\nUPDATE t2 SET c='fifteen thousand sixty-eight' WHERE a=20208;\nUPDATE t2 SET c='forty-four thousand ten' WHERE a=20209;\nUPDATE t2 SET c='thirty-one thousand six hundred thirty' WHERE a=20210;\nUPDATE t2 SET c='forty thousand six hundred seventy-seven' WHERE a=20211;\nUPDATE t2 SET c='seventy-three thousand eight hundred' WHERE a=20212;\nUPDATE t2 SET c='forty-one thousand nine hundred twenty-one' WHERE a=20213;\nUPDATE t2 SET c='ninety-five thousand nine hundred four' WHERE a=20214;\nUPDATE t2 SET c='eighty-six thousand nine hundred eighty-one' WHERE a=20215;\nUPDATE t2 SET c='forty-nine thousand five hundred forty-six' WHERE a=20216;\nUPDATE t2 SET c='eighty-eight thousand eight hundred sixteen' WHERE a=20217;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-three' WHERE a=20218;\nUPDATE t2 SET c='forty-one thousand seven hundred eighty' WHERE a=20219;\nUPDATE t2 SET c='forty-three thousand nine hundred ninety' WHERE a=20220;\nUPDATE t2 SET c='twenty-six thousand one hundred eighty-nine' WHERE a=20221;\nUPDATE t2 SET c='thirty-eight thousand two hundred fourteen' WHERE a=20222;\nUPDATE t2 SET c='twenty-nine thousand six hundred twenty-seven' WHERE a=20223;\nUPDATE t2 SET c='eighty-five thousand six hundred seventy-six' WHERE a=20224;\nUPDATE t2 SET c='forty-eight thousand four hundred fifty-six' WHERE a=20225;\nUPDATE t2 SET c='thirty-eight thousand five hundred ninety' WHERE a=20226;\nUPDATE t2 SET c='fifty-four thousand one hundred two' WHERE a=20227;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-one' WHERE a=20228;\nUPDATE t2 SET c='thirty-two thousand seven hundred forty-one' WHERE a=20229;\nUPDATE t2 SET c='eighty-six thousand two hundred twenty' WHERE a=20230;\nUPDATE t2 SET c='twelve thousand seven hundred fifty-three' WHERE a=20231;\nUPDATE t2 SET c='fifty-one thousand four hundred forty-one' WHERE a=20232;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-seven' WHERE a=20233;\nUPDATE t2 SET c='twenty thousand seven hundred forty-eight' WHERE a=20234;\nUPDATE t2 SET c='thirty-seven thousand three hundred thirty-six' WHERE a=20235;\nUPDATE t2 SET c='eighty-eight thousand eight hundred twenty-one' WHERE a=20236;\nUPDATE t2 SET c='thirteen thousand six hundred sixty-two' WHERE a=20237;\nUPDATE t2 SET c='fifty-one thousand two hundred seven' WHERE a=20238;\nUPDATE t2 SET c='six thousand two hundred ninety-six' WHERE a=20239;\nUPDATE t2 SET c='three thousand seven hundred seventy-two' WHERE a=20240;\nUPDATE t2 SET c='sixty-nine thousand five hundred ninety-one' WHERE a=20241;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifteen' WHERE a=20242;\nUPDATE t2 SET c='thirty-seven thousand four hundred forty-four' WHERE a=20243;\nUPDATE t2 SET c='nine thousand five hundred seventy-two' WHERE a=20244;\nUPDATE t2 SET c='thirteen thousand eight hundred eighty-five' WHERE a=20245;\nUPDATE t2 SET c='forty thousand one hundred thirty-two' WHERE a=20246;\nUPDATE t2 SET c='forty-two thousand four hundred eighty-nine' WHERE a=20247;\nUPDATE t2 SET c='nine thousand five hundred ninety-six' WHERE a=20248;\nUPDATE t2 SET c='thirty-two thousand three hundred eight' WHERE a=20249;\nUPDATE t2 SET c='twenty-two thousand ninety-four' WHERE a=20250;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-three' WHERE a=20251;\nUPDATE t2 SET c='twenty-four thousand five hundred fifty' WHERE a=20252;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy-seven' WHERE a=20253;\nUPDATE t2 SET c='forty-two thousand two hundred eight' WHERE a=20254;\nUPDATE t2 SET c='one thousand five' WHERE a=20255;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-eight' WHERE a=20256;\nUPDATE t2 SET c='eighty-seven thousand three hundred nineteen' WHERE a=20257;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=20258;\nUPDATE t2 SET c='thirty-one thousand eight hundred sixty-five' WHERE a=20259;\nUPDATE t2 SET c='five thousand nine hundred seventy-six' WHERE a=20260;\nUPDATE t2 SET c='three hundred forty' WHERE a=20261;\nUPDATE t2 SET c='fourteen thousand twenty-three' WHERE a=20262;\nUPDATE t2 SET c='sixty thousand four hundred thirty-nine' WHERE a=20263;\nUPDATE t2 SET c='eighty-nine thousand eight hundred sixty-two' WHERE a=20264;\nUPDATE t2 SET c='thirty-six thousand two hundred thirty-six' WHERE a=20265;\nUPDATE t2 SET c='thirty-seven thousand six hundred forty-seven' WHERE a=20266;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixty-five' WHERE a=20267;\nUPDATE t2 SET c='thirty-six thousand four hundred' WHERE a=20268;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty-three' WHERE a=20269;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-one' WHERE a=20270;\nUPDATE t2 SET c='ninety-one thousand four hundred forty-two' WHERE a=20271;\nUPDATE t2 SET c='fifty-six thousand four hundred seventy-six' WHERE a=20272;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty' WHERE a=20273;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty' WHERE a=20274;\nUPDATE t2 SET c='eighty-three thousand four hundred seventy-two' WHERE a=20275;\nUPDATE t2 SET c='fifty-three thousand seven hundred fifty-one' WHERE a=20276;\nUPDATE t2 SET c='two thousand seven hundred two' WHERE a=20277;\nUPDATE t2 SET c='eighty-one thousand thirty-six' WHERE a=20278;\nUPDATE t2 SET c='ten thousand eight hundred thirty' WHERE a=20279;\nUPDATE t2 SET c='sixty-two thousand eight hundred eighty-eight' WHERE a=20280;\nUPDATE t2 SET c='sixty-one thousand four hundred ninety-three' WHERE a=20281;\nUPDATE t2 SET c='forty-two thousand three hundred forty' WHERE a=20282;\nUPDATE t2 SET c='eighty-nine thousand one hundred nine' WHERE a=20283;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-seven' WHERE a=20284;\nUPDATE t2 SET c='sixty-three thousand eight hundred forty-six' WHERE a=20285;\nUPDATE t2 SET c='seventy-three thousand two hundred twenty-five' WHERE a=20286;\nUPDATE t2 SET c='seventy-eight thousand ninety-seven' WHERE a=20287;\nUPDATE t2 SET c='twenty-five thousand four hundred seven' WHERE a=20288;\nUPDATE t2 SET c='thirty-four thousand eight hundred ten' WHERE a=20289;\nUPDATE t2 SET c='twenty-seven thousand seven' WHERE a=20290;\nUPDATE t2 SET c='ninety-eight thousand one hundred fifty-five' WHERE a=20291;\nUPDATE t2 SET c='twenty-five thousand four hundred fifty-six' WHERE a=20292;\nUPDATE t2 SET c='fifty-six thousand one hundred twenty-eight' WHERE a=20293;\nUPDATE t2 SET c='four thousand four hundred seventy-one' WHERE a=20294;\nUPDATE t2 SET c='forty thousand seven hundred fifteen' WHERE a=20295;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-six' WHERE a=20296;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=20297;\nUPDATE t2 SET c='eighty-four thousand two hundred sixty-four' WHERE a=20298;\nUPDATE t2 SET c='twenty-nine thousand two hundred ninety-two' WHERE a=20299;\nUPDATE t2 SET c='eighty-two thousand eight hundred thirty-three' WHERE a=20300;\nUPDATE t2 SET c='seventy-three thousand nine hundred sixteen' WHERE a=20301;\nUPDATE t2 SET c='thirty-four thousand six hundred thirty-four' WHERE a=20302;\nUPDATE t2 SET c='forty-eight thousand five hundred thirty-nine' WHERE a=20303;\nUPDATE t2 SET c='sixty-nine thousand nine hundred one' WHERE a=20304;\nUPDATE t2 SET c='seventeen thousand two hundred twenty-three' WHERE a=20305;\nUPDATE t2 SET c='sixty-three thousand twenty-two' WHERE a=20306;\nUPDATE t2 SET c='seventy-five thousand five hundred forty-eight' WHERE a=20307;\nUPDATE t2 SET c='fifty-nine thousand six hundred seventy-six' WHERE a=20308;\nUPDATE t2 SET c='twenty-one thousand three hundred eighty-four' WHERE a=20309;\nUPDATE t2 SET c='fifty-six thousand forty-nine' WHERE a=20310;\nUPDATE t2 SET c='two thousand three hundred seventeen' WHERE a=20311;\nUPDATE t2 SET c='eighty-five thousand nine hundred thirty-nine' WHERE a=20312;\nUPDATE t2 SET c='forty-six thousand four hundred eighty-one' WHERE a=20313;\nUPDATE t2 SET c='ten thousand nine hundred ninety-five' WHERE a=20314;\nUPDATE t2 SET c='fifty-one thousand eight hundred thirty-seven' WHERE a=20315;\nUPDATE t2 SET c='ninety-nine thousand two hundred seventeen' WHERE a=20316;\nUPDATE t2 SET c='fifty-two thousand eighty-one' WHERE a=20317;\nUPDATE t2 SET c='seventy-nine thousand six hundred ninety-three' WHERE a=20318;\nUPDATE t2 SET c='sixty-four thousand six hundred twenty-five' WHERE a=20319;\nUPDATE t2 SET c='forty-nine thousand three hundred forty-nine' WHERE a=20320;\nUPDATE t2 SET c='eighty-five thousand two hundred ten' WHERE a=20321;\nUPDATE t2 SET c='fifty-seven thousand six hundred eighty-one' WHERE a=20322;\nUPDATE t2 SET c='seventy-one thousand six hundred thirty-five' WHERE a=20323;\nUPDATE t2 SET c='fifteen thousand one hundred forty-four' WHERE a=20324;\nUPDATE t2 SET c='sixty-four thousand nine hundred sixty-eight' WHERE a=20325;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirteen' WHERE a=20326;\nUPDATE t2 SET c='twenty-eight thousand eight hundred sixteen' WHERE a=20327;\nUPDATE t2 SET c='forty-six thousand one hundred twenty-eight' WHERE a=20328;\nUPDATE t2 SET c='seventy-six thousand six hundred eighty-nine' WHERE a=20329;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-two' WHERE a=20330;\nUPDATE t2 SET c='fifty-four thousand' WHERE a=20331;\nUPDATE t2 SET c='fourteen thousand forty-seven' WHERE a=20332;\nUPDATE t2 SET c='five thousand nine hundred twelve' WHERE a=20333;\nUPDATE t2 SET c='thirteen thousand six hundred thirty-two' WHERE a=20334;\nUPDATE t2 SET c='sixty-six thousand five hundred ninety-seven' WHERE a=20335;\nUPDATE t2 SET c='ninety-four thousand five hundred twenty-four' WHERE a=20336;\nUPDATE t2 SET c='sixty-nine thousand seven hundred thirty-one' WHERE a=20337;\nUPDATE t2 SET c='three thousand nine hundred eighty-four' WHERE a=20338;\nUPDATE t2 SET c='one thousand nine hundred thirty-four' WHERE a=20339;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-nine' WHERE a=20340;\nUPDATE t2 SET c='two thousand three hundred sixty-four' WHERE a=20341;\nUPDATE t2 SET c='forty-five thousand three hundred fifty-seven' WHERE a=20342;\nUPDATE t2 SET c='eighty-two thousand seven hundred thirty-six' WHERE a=20343;\nUPDATE t2 SET c='eleven thousand two hundred ninety-nine' WHERE a=20344;\nUPDATE t2 SET c='ninety-two thousand seventy-six' WHERE a=20345;\nUPDATE t2 SET c='seventy-three thousand six hundred eighty-six' WHERE a=20346;\nUPDATE t2 SET c='ninety-seven thousand eight hundred forty' WHERE a=20347;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-seven' WHERE a=20348;\nUPDATE t2 SET c='forty-four thousand five hundred ninety' WHERE a=20349;\nUPDATE t2 SET c='ninety-four thousand forty-one' WHERE a=20350;\nUPDATE t2 SET c='forty-nine thousand one hundred ninety' WHERE a=20351;\nUPDATE t2 SET c='thirteen thousand eight hundred ninety-four' WHERE a=20352;\nUPDATE t2 SET c='forty thousand five hundred eight' WHERE a=20353;\nUPDATE t2 SET c='thirty-nine thousand sixty-five' WHERE a=20354;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-six' WHERE a=20355;\nUPDATE t2 SET c='four thousand two hundred twenty-six' WHERE a=20356;\nUPDATE t2 SET c='five thousand three hundred fifty-six' WHERE a=20357;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-four' WHERE a=20358;\nUPDATE t2 SET c='ninety thousand four hundred ninety-eight' WHERE a=20359;\nUPDATE t2 SET c='ninety-six thousand three' WHERE a=20360;\nUPDATE t2 SET c='twenty thousand five hundred fifty-nine' WHERE a=20361;\nUPDATE t2 SET c='two thousand ninety-five' WHERE a=20362;\nUPDATE t2 SET c='ninety-four thousand eight hundred eighty-one' WHERE a=20363;\nUPDATE t2 SET c='thirty-seven thousand nine hundred twenty-three' WHERE a=20364;\nUPDATE t2 SET c='thirty-four thousand seven hundred thirty-six' WHERE a=20365;\nUPDATE t2 SET c='ninety-five thousand three hundred seventy-seven' WHERE a=20366;\nUPDATE t2 SET c='four thousand nine' WHERE a=20367;\nUPDATE t2 SET c='eighty-seven thousand nine hundred ten' WHERE a=20368;\nUPDATE t2 SET c='eighteen thousand thirty-six' WHERE a=20369;\nUPDATE t2 SET c='forty-seven thousand one hundred eighty-six' WHERE a=20370;\nUPDATE t2 SET c='eighty-three thousand nine hundred seventy-one' WHERE a=20371;\nUPDATE t2 SET c='sixty-five thousand nine hundred eighty-nine' WHERE a=20372;\nUPDATE t2 SET c='twenty thousand nine hundred thirty-seven' WHERE a=20373;\nUPDATE t2 SET c='fifty-one thousand four hundred ninety-five' WHERE a=20374;\nUPDATE t2 SET c='twenty thousand seven hundred eighty-two' WHERE a=20375;\nUPDATE t2 SET c='one thousand nine hundred sixty' WHERE a=20376;\nUPDATE t2 SET c='thirty-six thousand six hundred ninety-two' WHERE a=20377;\nUPDATE t2 SET c='one thousand six hundred sixteen' WHERE a=20378;\nUPDATE t2 SET c='ninety-four thousand four hundred fifteen' WHERE a=20379;\nUPDATE t2 SET c='twenty-two thousand four hundred eighty' WHERE a=20380;\nUPDATE t2 SET c='forty-one thousand eight hundred ninety-eight' WHERE a=20381;\nUPDATE t2 SET c='two thousand two hundred forty-two' WHERE a=20382;\nUPDATE t2 SET c='forty-seven thousand two hundred two' WHERE a=20383;\nUPDATE t2 SET c='nine thousand twenty-nine' WHERE a=20384;\nUPDATE t2 SET c='sixteen thousand five hundred twenty-one' WHERE a=20385;\nUPDATE t2 SET c='forty-two thousand four hundred five' WHERE a=20386;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-four' WHERE a=20387;\nUPDATE t2 SET c='eighty thousand three hundred eleven' WHERE a=20388;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-two' WHERE a=20389;\nUPDATE t2 SET c='sixty-eight thousand one hundred fifty-six' WHERE a=20390;\nUPDATE t2 SET c='thirty-three thousand five hundred thirty-three' WHERE a=20391;\nUPDATE t2 SET c='ninety-one thousand six hundred seventy-two' WHERE a=20392;\nUPDATE t2 SET c='eighty thousand five hundred thirty-five' WHERE a=20393;\nUPDATE t2 SET c='thirty-four thousand eight hundred seventy-seven' WHERE a=20394;\nUPDATE t2 SET c='forty-six thousand seven hundred one' WHERE a=20395;\nUPDATE t2 SET c='ninety-two thousand six hundred fourteen' WHERE a=20396;\nUPDATE t2 SET c='eighty-six thousand seven hundred fifty-two' WHERE a=20397;\nUPDATE t2 SET c='forty-six thousand nine hundred sixty-seven' WHERE a=20398;\nUPDATE t2 SET c='twelve thousand eighty-four' WHERE a=20399;\nUPDATE t2 SET c='fifty thousand five hundred ninety-seven' WHERE a=20400;\nUPDATE t2 SET c='fifty-four thousand seven hundred eighty-two' WHERE a=20401;\nUPDATE t2 SET c='eighty-six thousand two hundred six' WHERE a=20402;\nUPDATE t2 SET c='ninety-nine thousand thirty-six' WHERE a=20403;\nUPDATE t2 SET c='forty-six thousand five hundred thirty-six' WHERE a=20404;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-six' WHERE a=20405;\nUPDATE t2 SET c='twelve thousand four hundred forty-three' WHERE a=20406;\nUPDATE t2 SET c='sixty-seven thousand five hundred twenty-five' WHERE a=20407;\nUPDATE t2 SET c='twenty-nine thousand two hundred seventy-eight' WHERE a=20408;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-seven' WHERE a=20409;\nUPDATE t2 SET c='thirty-five thousand four hundred ninety-seven' WHERE a=20410;\nUPDATE t2 SET c='seven thousand two hundred ninety-nine' WHERE a=20411;\nUPDATE t2 SET c='fifty-nine thousand five hundred seventy-four' WHERE a=20412;\nUPDATE t2 SET c='thirty thousand two hundred twenty-eight' WHERE a=20413;\nUPDATE t2 SET c='fifty-one thousand two' WHERE a=20414;\nUPDATE t2 SET c='thirty-one thousand two hundred fifty-nine' WHERE a=20415;\nUPDATE t2 SET c='twenty-six thousand nine hundred twenty-six' WHERE a=20416;\nUPDATE t2 SET c='forty-one thousand seven' WHERE a=20417;\nUPDATE t2 SET c='twenty-six thousand five' WHERE a=20418;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=20419;\nUPDATE t2 SET c='ninety-five thousand eight hundred sixty-one' WHERE a=20420;\nUPDATE t2 SET c='thirty-five thousand nine hundred four' WHERE a=20421;\nUPDATE t2 SET c='forty-one thousand one hundred eighty' WHERE a=20422;\nUPDATE t2 SET c='thirty-six thousand three hundred thirty-six' WHERE a=20423;\nUPDATE t2 SET c='ninety-three thousand eight hundred fifty-two' WHERE a=20424;\nUPDATE t2 SET c='seventy-three thousand seven hundred seventy-one' WHERE a=20425;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twelve' WHERE a=20426;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-three' WHERE a=20427;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-two' WHERE a=20428;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-seven' WHERE a=20429;\nUPDATE t2 SET c='twelve thousand thirty-seven' WHERE a=20430;\nUPDATE t2 SET c='sixteen thousand seven hundred thirty' WHERE a=20431;\nUPDATE t2 SET c='twenty-five thousand four hundred eighty-two' WHERE a=20432;\nUPDATE t2 SET c='forty-four thousand four hundred fifteen' WHERE a=20433;\nUPDATE t2 SET c='sixteen thousand one hundred twenty-nine' WHERE a=20434;\nUPDATE t2 SET c='eight thousand one hundred seventeen' WHERE a=20435;\nUPDATE t2 SET c='nineteen thousand thirty' WHERE a=20436;\nUPDATE t2 SET c='seventy-one thousand two hundred twenty-four' WHERE a=20437;\nUPDATE t2 SET c='thirty-five thousand seven hundred eleven' WHERE a=20438;\nUPDATE t2 SET c='seven thousand seventeen' WHERE a=20439;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-one' WHERE a=20440;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-nine' WHERE a=20441;\nUPDATE t2 SET c='ninety-three thousand three hundred seventy-nine' WHERE a=20442;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-four' WHERE a=20443;\nUPDATE t2 SET c='one thousand six hundred seventy-seven' WHERE a=20444;\nUPDATE t2 SET c='sixty-nine thousand four hundred twenty-five' WHERE a=20445;\nUPDATE t2 SET c='ninety-eight thousand six hundred sixty-five' WHERE a=20446;\nUPDATE t2 SET c='twenty-three thousand five hundred eighty-nine' WHERE a=20447;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-two' WHERE a=20448;\nUPDATE t2 SET c='sixty-three thousand six hundred sixty-five' WHERE a=20449;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-eight' WHERE a=20450;\nUPDATE t2 SET c='twenty-four thousand seven hundred sixty-one' WHERE a=20451;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-nine' WHERE a=20452;\nUPDATE t2 SET c='five thousand eight hundred eighty-nine' WHERE a=20453;\nUPDATE t2 SET c='fifty-eight thousand seven hundred thirty-three' WHERE a=20454;\nUPDATE t2 SET c='sixty-six thousand one hundred twenty-one' WHERE a=20455;\nUPDATE t2 SET c='twenty thousand six hundred sixty-eight' WHERE a=20456;\nUPDATE t2 SET c='eighty-eight thousand seven hundred seventy-five' WHERE a=20457;\nUPDATE t2 SET c='thirty-one thousand eight hundred twenty-nine' WHERE a=20458;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-eight' WHERE a=20459;\nUPDATE t2 SET c='twenty thousand fifty' WHERE a=20460;\nUPDATE t2 SET c='seventy thousand three hundred eight' WHERE a=20461;\nUPDATE t2 SET c='fifty thousand six hundred ninety-eight' WHERE a=20462;\nUPDATE t2 SET c='seventy-six thousand seven hundred ninety-eight' WHERE a=20463;\nUPDATE t2 SET c='ten thousand nine hundred eleven' WHERE a=20464;\nUPDATE t2 SET c='fifty thousand four hundred ninety-six' WHERE a=20465;\nUPDATE t2 SET c='sixteen thousand three hundred ninety-seven' WHERE a=20466;\nUPDATE t2 SET c='ninety-nine thousand five hundred nine' WHERE a=20467;\nUPDATE t2 SET c='fifty-two thousand nine hundred eighty-two' WHERE a=20468;\nUPDATE t2 SET c='ninety-one thousand two hundred fifty-seven' WHERE a=20469;\nUPDATE t2 SET c='twenty-five thousand eight hundred seventy-one' WHERE a=20470;\nUPDATE t2 SET c='thirteen thousand two hundred thirty-six' WHERE a=20471;\nUPDATE t2 SET c='forty-two thousand eight hundred eighty-nine' WHERE a=20472;\nUPDATE t2 SET c='eighteen thousand six hundred eighteen' WHERE a=20473;\nUPDATE t2 SET c='twenty-five thousand three hundred sixty-nine' WHERE a=20474;\nUPDATE t2 SET c='twenty-six thousand seven hundred forty-two' WHERE a=20475;\nUPDATE t2 SET c='ninety-three thousand nine hundred ten' WHERE a=20476;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-seven' WHERE a=20477;\nUPDATE t2 SET c='three thousand five hundred seventy' WHERE a=20478;\nUPDATE t2 SET c='forty-nine thousand ninety-four' WHERE a=20479;\nUPDATE t2 SET c='twenty-two thousand two hundred fifty-nine' WHERE a=20480;\nUPDATE t2 SET c='fifty-nine thousand three hundred ninety-four' WHERE a=20481;\nUPDATE t2 SET c='twenty-eight thousand three hundred fifty-three' WHERE a=20482;\nUPDATE t2 SET c='fourteen thousand four hundred eleven' WHERE a=20483;\nUPDATE t2 SET c='nineteen thousand four hundred fifty-two' WHERE a=20484;\nUPDATE t2 SET c='sixty-nine thousand seven hundred fifty-three' WHERE a=20485;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy-four' WHERE a=20486;\nUPDATE t2 SET c='eighty-two thousand two hundred ten' WHERE a=20487;\nUPDATE t2 SET c='eighty-seven thousand sixty-four' WHERE a=20488;\nUPDATE t2 SET c='twenty-three thousand six hundred fifty-four' WHERE a=20489;\nUPDATE t2 SET c='two thousand nine hundred fifty-six' WHERE a=20490;\nUPDATE t2 SET c='nine thousand two hundred fifty-six' WHERE a=20491;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-eight' WHERE a=20492;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-six' WHERE a=20493;\nUPDATE t2 SET c='seventy-one thousand nine hundred forty-seven' WHERE a=20494;\nUPDATE t2 SET c='sixty-five thousand seven hundred forty' WHERE a=20495;\nUPDATE t2 SET c='forty-six thousand three hundred eight' WHERE a=20496;\nUPDATE t2 SET c='nineteen thousand nine hundred seventy-six' WHERE a=20497;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-eight' WHERE a=20498;\nUPDATE t2 SET c='fourteen thousand two hundred seventy-nine' WHERE a=20499;\nUPDATE t2 SET c='sixty thousand two hundred fifty-four' WHERE a=20500;\nUPDATE t2 SET c='seven thousand seven hundred thirty-one' WHERE a=20501;\nUPDATE t2 SET c='three thousand thirty-seven' WHERE a=20502;\nUPDATE t2 SET c='twenty-seven thousand four hundred fifty-six' WHERE a=20503;\nUPDATE t2 SET c='ninety-six thousand nine hundred sixty-one' WHERE a=20504;\nUPDATE t2 SET c='ninety thousand six hundred forty-six' WHERE a=20505;\nUPDATE t2 SET c='ninety-one thousand six hundred four' WHERE a=20506;\nUPDATE t2 SET c='nineteen thousand four hundred eighty-nine' WHERE a=20507;\nUPDATE t2 SET c='eleven thousand four hundred sixty-five' WHERE a=20508;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-two' WHERE a=20509;\nUPDATE t2 SET c='eighteen thousand four hundred sixty' WHERE a=20510;\nUPDATE t2 SET c='eleven thousand six hundred fifty-six' WHERE a=20511;\nUPDATE t2 SET c='sixty-seven thousand eight hundred twenty-four' WHERE a=20512;\nUPDATE t2 SET c='twenty thousand four hundred twenty-six' WHERE a=20513;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-three' WHERE a=20514;\nUPDATE t2 SET c='fifty-eight thousand seven hundred twenty-six' WHERE a=20515;\nUPDATE t2 SET c='ninety-seven thousand two hundred thirty-seven' WHERE a=20516;\nUPDATE t2 SET c='fifteen thousand eight hundred forty-eight' WHERE a=20517;\nUPDATE t2 SET c='ninety-eight thousand five hundred forty-two' WHERE a=20518;\nUPDATE t2 SET c='fourteen thousand two hundred thirty-two' WHERE a=20519;\nUPDATE t2 SET c='twenty-four thousand eight hundred seventy-one' WHERE a=20520;\nUPDATE t2 SET c='forty thousand seven hundred forty-three' WHERE a=20521;\nUPDATE t2 SET c='seventy-six thousand three hundred ninety-nine' WHERE a=20522;\nUPDATE t2 SET c='eighty-eight thousand thirty-two' WHERE a=20523;\nUPDATE t2 SET c='eighty-nine thousand three hundred forty-five' WHERE a=20524;\nUPDATE t2 SET c='thirty-six thousand twenty-five' WHERE a=20525;\nUPDATE t2 SET c='fifty-one thousand nine hundred seventy' WHERE a=20526;\nUPDATE t2 SET c='sixteen thousand six hundred twenty-five' WHERE a=20527;\nUPDATE t2 SET c='eighteen thousand three hundred thirty-eight' WHERE a=20528;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-nine' WHERE a=20529;\nUPDATE t2 SET c='thirteen thousand nine hundred sixty-three' WHERE a=20530;\nUPDATE t2 SET c='eleven thousand two hundred twenty-nine' WHERE a=20531;\nUPDATE t2 SET c='eighty-three thousand seven hundred twenty-nine' WHERE a=20532;\nUPDATE t2 SET c='twenty-seven thousand nine hundred fourteen' WHERE a=20533;\nUPDATE t2 SET c='seventy-three thousand seven hundred twenty-six' WHERE a=20534;\nUPDATE t2 SET c='eighty-two thousand three hundred seventy-five' WHERE a=20535;\nUPDATE t2 SET c='twenty-three thousand one hundred ninety-nine' WHERE a=20536;\nUPDATE t2 SET c='thirty thousand eight hundred sixty-two' WHERE a=20537;\nUPDATE t2 SET c='twenty-nine thousand one hundred thirty-one' WHERE a=20538;\nUPDATE t2 SET c='nine thousand twenty-one' WHERE a=20539;\nUPDATE t2 SET c='forty-four thousand eight hundred twenty-seven' WHERE a=20540;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty-five' WHERE a=20541;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty-two' WHERE a=20542;\nUPDATE t2 SET c='ninety-four thousand seven hundred ninety-two' WHERE a=20543;\nUPDATE t2 SET c='fifty-eight thousand three hundred fifty-two' WHERE a=20544;\nUPDATE t2 SET c='eighty-five thousand one hundred twenty-four' WHERE a=20545;\nUPDATE t2 SET c='six thousand eight hundred ninety-three' WHERE a=20546;\nUPDATE t2 SET c='one thousand five hundred ninety-five' WHERE a=20547;\nUPDATE t2 SET c='fifty-one thousand three hundred twenty-four' WHERE a=20548;\nUPDATE t2 SET c='twenty-eight thousand one hundred fifty-five' WHERE a=20549;\nUPDATE t2 SET c='eighty-eight thousand three hundred sixty-eight' WHERE a=20550;\nUPDATE t2 SET c='forty-five thousand four hundred seventeen' WHERE a=20551;\nUPDATE t2 SET c='seventy-nine thousand nine hundred twelve' WHERE a=20552;\nUPDATE t2 SET c='fifty-four thousand three hundred fifty-seven' WHERE a=20553;\nUPDATE t2 SET c='four hundred twenty-four' WHERE a=20554;\nUPDATE t2 SET c='forty-four thousand seven hundred eight' WHERE a=20555;\nUPDATE t2 SET c='ninety thousand twenty-three' WHERE a=20556;\nUPDATE t2 SET c='eighteen thousand six hundred fifty-eight' WHERE a=20557;\nUPDATE t2 SET c='seventy-three thousand two hundred seventy-one' WHERE a=20558;\nUPDATE t2 SET c='forty-seven thousand three hundred twenty-four' WHERE a=20559;\nUPDATE t2 SET c='sixty thousand seven hundred fifty-seven' WHERE a=20560;\nUPDATE t2 SET c='three thousand eight hundred thirty-eight' WHERE a=20561;\nUPDATE t2 SET c='six thousand seventy-five' WHERE a=20562;\nUPDATE t2 SET c='thirty-five thousand four hundred' WHERE a=20563;\nUPDATE t2 SET c='forty-eight thousand one hundred ninety-one' WHERE a=20564;\nUPDATE t2 SET c='thirty-nine thousand three hundred twenty-seven' WHERE a=20565;\nUPDATE t2 SET c='eighteen thousand nine hundred sixty-seven' WHERE a=20566;\nUPDATE t2 SET c='eighty-two thousand eight hundred ten' WHERE a=20567;\nUPDATE t2 SET c='eighty-five thousand one hundred ninety-five' WHERE a=20568;\nUPDATE t2 SET c='eighty-six' WHERE a=20569;\nUPDATE t2 SET c='twenty thousand six hundred one' WHERE a=20570;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighteen' WHERE a=20571;\nUPDATE t2 SET c='eighty-six thousand seven hundred ten' WHERE a=20572;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=20573;\nUPDATE t2 SET c='ninety-six thousand four hundred sixty-three' WHERE a=20574;\nUPDATE t2 SET c='ninety-eight thousand six hundred ninety' WHERE a=20575;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty-eight' WHERE a=20576;\nUPDATE t2 SET c='three thousand seven hundred fifty-six' WHERE a=20577;\nUPDATE t2 SET c='sixty-one thousand four hundred seven' WHERE a=20578;\nUPDATE t2 SET c='fifteen thousand seven hundred seventeen' WHERE a=20579;\nUPDATE t2 SET c='sixty thousand nine hundred twenty-five' WHERE a=20580;\nUPDATE t2 SET c='eighty thousand three hundred forty-one' WHERE a=20581;\nUPDATE t2 SET c='eighty-one thousand five hundred ninety-two' WHERE a=20582;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-six' WHERE a=20583;\nUPDATE t2 SET c='seventy-four thousand five hundred fifteen' WHERE a=20584;\nUPDATE t2 SET c='fifteen thousand eight hundred eighty-four' WHERE a=20585;\nUPDATE t2 SET c='eighty-two thousand six hundred forty' WHERE a=20586;\nUPDATE t2 SET c='one thousand six hundred thirty-one' WHERE a=20587;\nUPDATE t2 SET c='eleven thousand three hundred fifty-three' WHERE a=20588;\nUPDATE t2 SET c='sixteen thousand four hundred thirty' WHERE a=20589;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-one' WHERE a=20590;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-four' WHERE a=20591;\nUPDATE t2 SET c='thirty-nine thousand one hundred thirty-five' WHERE a=20592;\nUPDATE t2 SET c='ten thousand two hundred thirty-eight' WHERE a=20593;\nUPDATE t2 SET c='twenty-seven thousand eight hundred eighty-six' WHERE a=20594;\nUPDATE t2 SET c='eighty-six thousand three hundred forty-seven' WHERE a=20595;\nUPDATE t2 SET c='sixty-five thousand nine hundred twenty-eight' WHERE a=20596;\nUPDATE t2 SET c='ninety-five thousand eight hundred eighty' WHERE a=20597;\nUPDATE t2 SET c='fifty-four thousand seven hundred fifty' WHERE a=20598;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy' WHERE a=20599;\nUPDATE t2 SET c='eighty thousand four hundred twenty-four' WHERE a=20600;\nUPDATE t2 SET c='seventy thousand seven hundred sixty' WHERE a=20601;\nUPDATE t2 SET c='twenty thousand six hundred sixty-seven' WHERE a=20602;\nUPDATE t2 SET c='eleven thousand eight hundred fifty-six' WHERE a=20603;\nUPDATE t2 SET c='ninety-two thousand sixteen' WHERE a=20604;\nUPDATE t2 SET c='twenty-four thousand seventeen' WHERE a=20605;\nUPDATE t2 SET c='nineteen thousand three hundred fifty-nine' WHERE a=20606;\nUPDATE t2 SET c='twenty-seven thousand seven hundred ninety-nine' WHERE a=20607;\nUPDATE t2 SET c='eighty-two thousand five hundred sixty-three' WHERE a=20608;\nUPDATE t2 SET c='eighty thousand three hundred three' WHERE a=20609;\nUPDATE t2 SET c='fourteen thousand fourteen' WHERE a=20610;\nUPDATE t2 SET c='twelve thousand one hundred twenty-eight' WHERE a=20611;\nUPDATE t2 SET c='twenty-four thousand one hundred twenty-five' WHERE a=20612;\nUPDATE t2 SET c='seventy-nine thousand five hundred sixty-three' WHERE a=20613;\nUPDATE t2 SET c='seven thousand two hundred ninety' WHERE a=20614;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-nine' WHERE a=20615;\nUPDATE t2 SET c='eighty-nine thousand three hundred two' WHERE a=20616;\nUPDATE t2 SET c='ten thousand eighty-eight' WHERE a=20617;\nUPDATE t2 SET c='thirty-eight thousand two hundred seventeen' WHERE a=20618;\nUPDATE t2 SET c='fourteen thousand forty-five' WHERE a=20619;\nUPDATE t2 SET c='fifty-one thousand seven hundred eleven' WHERE a=20620;\nUPDATE t2 SET c='five thousand two hundred fifteen' WHERE a=20621;\nUPDATE t2 SET c='thirteen thousand forty-four' WHERE a=20622;\nUPDATE t2 SET c='forty-eight thousand ninety-nine' WHERE a=20623;\nUPDATE t2 SET c='fifty-three thousand forty-nine' WHERE a=20624;\nUPDATE t2 SET c='eighty-three thousand four hundred' WHERE a=20625;\nUPDATE t2 SET c='six thousand seven hundred seventy' WHERE a=20626;\nUPDATE t2 SET c='thirty-three thousand three hundred ninety-eight' WHERE a=20627;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-three' WHERE a=20628;\nUPDATE t2 SET c='three thousand fifty-one' WHERE a=20629;\nUPDATE t2 SET c='seventy-four thousand eight hundred sixty' WHERE a=20630;\nUPDATE t2 SET c='three thousand five hundred thirty-three' WHERE a=20631;\nUPDATE t2 SET c='thirty-three thousand two hundred two' WHERE a=20632;\nUPDATE t2 SET c='seventy-eight thousand three hundred twenty-seven' WHERE a=20633;\nUPDATE t2 SET c='eighty-eight thousand three hundred fifty-four' WHERE a=20634;\nUPDATE t2 SET c='ninety-one thousand nine hundred fifty-six' WHERE a=20635;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-eight' WHERE a=20636;\nUPDATE t2 SET c='seventy-six thousand seven hundred five' WHERE a=20637;\nUPDATE t2 SET c='thirteen thousand seventy-one' WHERE a=20638;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-one' WHERE a=20639;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-five' WHERE a=20640;\nUPDATE t2 SET c='eighty thousand two hundred ten' WHERE a=20641;\nUPDATE t2 SET c='ninety-six thousand three hundred fourteen' WHERE a=20642;\nUPDATE t2 SET c='twenty-three thousand six hundred nineteen' WHERE a=20643;\nUPDATE t2 SET c='thirty-one thousand five hundred fifty-five' WHERE a=20644;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-three' WHERE a=20645;\nUPDATE t2 SET c='eighty-six thousand six hundred ninety' WHERE a=20646;\nUPDATE t2 SET c='thirty-five thousand one hundred eighty-seven' WHERE a=20647;\nUPDATE t2 SET c='seventy-seven thousand forty-eight' WHERE a=20648;\nUPDATE t2 SET c='ten thousand six hundred forty-two' WHERE a=20649;\nUPDATE t2 SET c='forty-seven thousand three hundred seventy-two' WHERE a=20650;\nUPDATE t2 SET c='seventeen thousand seven hundred thirty-four' WHERE a=20651;\nUPDATE t2 SET c='sixty-six thousand three hundred sixty-one' WHERE a=20652;\nUPDATE t2 SET c='three thousand eight hundred five' WHERE a=20653;\nUPDATE t2 SET c='forty-five thousand four hundred eighty-three' WHERE a=20654;\nUPDATE t2 SET c='seventy-four thousand five hundred fifteen' WHERE a=20655;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-nine' WHERE a=20656;\nUPDATE t2 SET c='sixty-six thousand seven hundred eleven' WHERE a=20657;\nUPDATE t2 SET c='twenty-eight thousand five hundred forty-two' WHERE a=20658;\nUPDATE t2 SET c='eighty-one thousand twenty-four' WHERE a=20659;\nUPDATE t2 SET c='eight hundred seven' WHERE a=20660;\nUPDATE t2 SET c='five thousand two hundred forty' WHERE a=20661;\nUPDATE t2 SET c='ninety thousand seven hundred eighty-one' WHERE a=20662;\nUPDATE t2 SET c='sixty-two thousand nine hundred ninety-five' WHERE a=20663;\nUPDATE t2 SET c='fifty-three thousand seven hundred twenty-one' WHERE a=20664;\nUPDATE t2 SET c='forty-two thousand nine hundred ten' WHERE a=20665;\nUPDATE t2 SET c='thirty-five thousand seven hundred ninety-seven' WHERE a=20666;\nUPDATE t2 SET c='six thousand four hundred fifty-three' WHERE a=20667;\nUPDATE t2 SET c='fifty-one thousand two hundred five' WHERE a=20668;\nUPDATE t2 SET c='one thousand three hundred eighty-seven' WHERE a=20669;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy' WHERE a=20670;\nUPDATE t2 SET c='eighty-nine thousand seventy' WHERE a=20671;\nUPDATE t2 SET c='eighteen thousand seven hundred twenty-three' WHERE a=20672;\nUPDATE t2 SET c='ninety-seven thousand four hundred eighty-four' WHERE a=20673;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-five' WHERE a=20674;\nUPDATE t2 SET c='sixty-two thousand eight hundred fifty-three' WHERE a=20675;\nUPDATE t2 SET c='twenty thousand nine hundred forty-seven' WHERE a=20676;\nUPDATE t2 SET c='twenty-six thousand eight' WHERE a=20677;\nUPDATE t2 SET c='seventeen thousand five hundred sixteen' WHERE a=20678;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety-three' WHERE a=20679;\nUPDATE t2 SET c='forty-six thousand eighty-four' WHERE a=20680;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty-four' WHERE a=20681;\nUPDATE t2 SET c='thirty-nine thousand five hundred twelve' WHERE a=20682;\nUPDATE t2 SET c='forty-five thousand six hundred thirty-six' WHERE a=20683;\nUPDATE t2 SET c='twelve thousand four hundred forty-four' WHERE a=20684;\nUPDATE t2 SET c='eighty-seven thousand four hundred fifty-four' WHERE a=20685;\nUPDATE t2 SET c='seventy-seven thousand two hundred twenty-one' WHERE a=20686;\nUPDATE t2 SET c='twelve thousand three hundred seventy-one' WHERE a=20687;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-four' WHERE a=20688;\nUPDATE t2 SET c='nine thousand seven hundred fifty-eight' WHERE a=20689;\nUPDATE t2 SET c='thirty-six thousand three hundred sixty-seven' WHERE a=20690;\nUPDATE t2 SET c='eighty-five thousand nine hundred forty-four' WHERE a=20691;\nUPDATE t2 SET c='forty-five thousand four hundred thirty' WHERE a=20692;\nUPDATE t2 SET c='thirty-nine thousand sixty-three' WHERE a=20693;\nUPDATE t2 SET c='twenty-four thousand two hundred ninety-nine' WHERE a=20694;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-seven' WHERE a=20695;\nUPDATE t2 SET c='seventy-eight thousand seven hundred eighty-six' WHERE a=20696;\nUPDATE t2 SET c='seventy-nine thousand twenty-three' WHERE a=20697;\nUPDATE t2 SET c='ninety-four thousand eight hundred fifty-one' WHERE a=20698;\nUPDATE t2 SET c='ninety thousand four hundred seventy' WHERE a=20699;\nUPDATE t2 SET c='forty-six thousand five hundred six' WHERE a=20700;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty-six' WHERE a=20701;\nUPDATE t2 SET c='ninety-five thousand three hundred seventy' WHERE a=20702;\nUPDATE t2 SET c='seventy-seven thousand eight hundred thirty-five' WHERE a=20703;\nUPDATE t2 SET c='ten thousand fifty-two' WHERE a=20704;\nUPDATE t2 SET c='sixty-one thousand nine hundred' WHERE a=20705;\nUPDATE t2 SET c='fifteen thousand six hundred five' WHERE a=20706;\nUPDATE t2 SET c='thirteen thousand four hundred forty-eight' WHERE a=20707;\nUPDATE t2 SET c='fifty thousand one hundred forty-two' WHERE a=20708;\nUPDATE t2 SET c='forty-four thousand two hundred fifty-eight' WHERE a=20709;\nUPDATE t2 SET c='fifty-four thousand five hundred thirty-five' WHERE a=20710;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty' WHERE a=20711;\nUPDATE t2 SET c='seventy-seven thousand seven hundred thirty-eight' WHERE a=20712;\nUPDATE t2 SET c='fifteen thousand one hundred eighty-one' WHERE a=20713;\nUPDATE t2 SET c='eighty-four thousand sixty-nine' WHERE a=20714;\nUPDATE t2 SET c='fifty-four thousand seven hundred thirty-two' WHERE a=20715;\nUPDATE t2 SET c='thirty thousand two hundred one' WHERE a=20716;\nUPDATE t2 SET c='fifty-seven thousand seven hundred thirty-four' WHERE a=20717;\nUPDATE t2 SET c='thirty-five thousand five hundred four' WHERE a=20718;\nUPDATE t2 SET c='thirty-four thousand nine hundred sixteen' WHERE a=20719;\nUPDATE t2 SET c='ninety-one thousand six hundred fifty-four' WHERE a=20720;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-one' WHERE a=20721;\nUPDATE t2 SET c='ninety-nine thousand three hundred ninety-nine' WHERE a=20722;\nUPDATE t2 SET c='twenty-seven thousand five hundred fifteen' WHERE a=20723;\nUPDATE t2 SET c='thirty-four thousand eight hundred thirty-five' WHERE a=20724;\nUPDATE t2 SET c='eighty thousand one hundred eight' WHERE a=20725;\nUPDATE t2 SET c='fifty-two thousand eight hundred sixty-six' WHERE a=20726;\nUPDATE t2 SET c='five thousand five hundred seventy-five' WHERE a=20727;\nUPDATE t2 SET c='forty-eight thousand three hundred eleven' WHERE a=20728;\nUPDATE t2 SET c='nineteen thousand four hundred twenty-two' WHERE a=20729;\nUPDATE t2 SET c='thirty-seven thousand seventy-five' WHERE a=20730;\nUPDATE t2 SET c='sixty-eight thousand four hundred thirty-six' WHERE a=20731;\nUPDATE t2 SET c='sixty-nine thousand four hundred thirty-seven' WHERE a=20732;\nUPDATE t2 SET c='thirty-six thousand seven hundred forty-eight' WHERE a=20733;\nUPDATE t2 SET c='ninety-eight thousand eight hundred eighty-nine' WHERE a=20734;\nUPDATE t2 SET c='forty-five thousand eight hundred forty-four' WHERE a=20735;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-three' WHERE a=20736;\nUPDATE t2 SET c='six thousand five hundred sixteen' WHERE a=20737;\nUPDATE t2 SET c='thirty-five thousand eight hundred ninety-nine' WHERE a=20738;\nUPDATE t2 SET c='seventy-two thousand nine hundred ten' WHERE a=20739;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-five' WHERE a=20740;\nUPDATE t2 SET c='fifty-eight thousand two hundred sixty-nine' WHERE a=20741;\nUPDATE t2 SET c='ten thousand eight hundred eighty-four' WHERE a=20742;\nUPDATE t2 SET c='forty-six thousand four hundred sixteen' WHERE a=20743;\nUPDATE t2 SET c='thirty-seven thousand three hundred eleven' WHERE a=20744;\nUPDATE t2 SET c='seventy-eight thousand nine hundred ninety' WHERE a=20745;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-seven' WHERE a=20746;\nUPDATE t2 SET c='twenty-nine thousand four hundred thirty-seven' WHERE a=20747;\nUPDATE t2 SET c='eighty thousand four hundred seven' WHERE a=20748;\nUPDATE t2 SET c='fifty-four thousand five hundred seventy-five' WHERE a=20749;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-nine' WHERE a=20750;\nUPDATE t2 SET c='nine thousand one hundred ninety-three' WHERE a=20751;\nUPDATE t2 SET c='fifty-one thousand seven hundred thirty-four' WHERE a=20752;\nUPDATE t2 SET c='forty-five thousand two hundred five' WHERE a=20753;\nUPDATE t2 SET c='seventy-one thousand seven hundred sixteen' WHERE a=20754;\nUPDATE t2 SET c='forty-one thousand three hundred seventy-one' WHERE a=20755;\nUPDATE t2 SET c='twenty-three thousand three hundred eleven' WHERE a=20756;\nUPDATE t2 SET c='sixty-two thousand six hundred thirty-four' WHERE a=20757;\nUPDATE t2 SET c='ninety-two thousand five hundred fourteen' WHERE a=20758;\nUPDATE t2 SET c='eighty-three thousand three hundred thirty-seven' WHERE a=20759;\nUPDATE t2 SET c='seventy-five thousand four hundred eight' WHERE a=20760;\nUPDATE t2 SET c='seventy-nine thousand six hundred two' WHERE a=20761;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy-one' WHERE a=20762;\nUPDATE t2 SET c='thirty-nine thousand five hundred thirty-seven' WHERE a=20763;\nUPDATE t2 SET c='ninety-four thousand two hundred thirty-three' WHERE a=20764;\nUPDATE t2 SET c='forty-three thousand three hundred eighteen' WHERE a=20765;\nUPDATE t2 SET c='seven thousand eight hundred twenty-nine' WHERE a=20766;\nUPDATE t2 SET c='twenty-eight thousand three hundred eighty' WHERE a=20767;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety-one' WHERE a=20768;\nUPDATE t2 SET c='seventy-two thousand seven hundred sixty-four' WHERE a=20769;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fourteen' WHERE a=20770;\nUPDATE t2 SET c='twenty-six thousand one hundred seventy-three' WHERE a=20771;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-three' WHERE a=20772;\nUPDATE t2 SET c='eighty-nine thousand four hundred sixty-four' WHERE a=20773;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty-seven' WHERE a=20774;\nUPDATE t2 SET c='twenty-two thousand one hundred twenty-seven' WHERE a=20775;\nUPDATE t2 SET c='ninety-eight thousand nine hundred ninety-five' WHERE a=20776;\nUPDATE t2 SET c='seventy-one thousand eight hundred eighty-seven' WHERE a=20777;\nUPDATE t2 SET c='nineteen thousand six hundred sixty-three' WHERE a=20778;\nUPDATE t2 SET c='nineteen thousand five hundred sixty-nine' WHERE a=20779;\nUPDATE t2 SET c='eighty-four thousand eight hundred ninety-seven' WHERE a=20780;\nUPDATE t2 SET c='one thousand one hundred seven' WHERE a=20781;\nUPDATE t2 SET c='sixty-nine thousand two hundred four' WHERE a=20782;\nUPDATE t2 SET c='four thousand one hundred eighty-seven' WHERE a=20783;\nUPDATE t2 SET c='twenty-seven thousand nine hundred fifty-five' WHERE a=20784;\nUPDATE t2 SET c='fifty-five thousand one hundred sixty-nine' WHERE a=20785;\nUPDATE t2 SET c='one thousand six hundred forty-seven' WHERE a=20786;\nUPDATE t2 SET c='eighty-seven thousand ninety-eight' WHERE a=20787;\nUPDATE t2 SET c='fifty-one thousand five hundred twenty-seven' WHERE a=20788;\nUPDATE t2 SET c='eighty thousand five hundred sixty' WHERE a=20789;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty-eight' WHERE a=20790;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-nine' WHERE a=20791;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-five' WHERE a=20792;\nUPDATE t2 SET c='seven thousand four hundred seventeen' WHERE a=20793;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-nine' WHERE a=20794;\nUPDATE t2 SET c='ninety-six thousand one hundred forty-nine' WHERE a=20795;\nUPDATE t2 SET c='sixty-two thousand one' WHERE a=20796;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy' WHERE a=20797;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety-six' WHERE a=20798;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirteen' WHERE a=20799;\nUPDATE t2 SET c='twenty-seven thousand three hundred sixty-eight' WHERE a=20800;\nUPDATE t2 SET c='ninety-four thousand nine hundred fifty-two' WHERE a=20801;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-one' WHERE a=20802;\nUPDATE t2 SET c='sixty thousand eight hundred seventy' WHERE a=20803;\nUPDATE t2 SET c='forty-nine thousand one hundred twenty-six' WHERE a=20804;\nUPDATE t2 SET c='thirty-seven thousand fifteen' WHERE a=20805;\nUPDATE t2 SET c='six thousand six hundred forty-two' WHERE a=20806;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty-three' WHERE a=20807;\nUPDATE t2 SET c='fifteen thousand five hundred seventy-two' WHERE a=20808;\nUPDATE t2 SET c='sixty-seven thousand six hundred seventy-eight' WHERE a=20809;\nUPDATE t2 SET c='ninety-four thousand two hundred fifty-one' WHERE a=20810;\nUPDATE t2 SET c='twenty-eight thousand two hundred forty-nine' WHERE a=20811;\nUPDATE t2 SET c='eighty-five thousand two hundred ninety-eight' WHERE a=20812;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-one' WHERE a=20813;\nUPDATE t2 SET c='seventy thousand seven hundred fifty-three' WHERE a=20814;\nUPDATE t2 SET c='ninety-nine thousand one hundred thirty-four' WHERE a=20815;\nUPDATE t2 SET c='thirty-nine thousand four hundred nine' WHERE a=20816;\nUPDATE t2 SET c='ninety-seven thousand five hundred forty-nine' WHERE a=20817;\nUPDATE t2 SET c='seventy-eight thousand three hundred ninety-six' WHERE a=20818;\nUPDATE t2 SET c='thirty-three thousand eight hundred seventy-three' WHERE a=20819;\nUPDATE t2 SET c='sixty-four thousand five hundred ninety' WHERE a=20820;\nUPDATE t2 SET c='eight thousand nine hundred ninety-five' WHERE a=20821;\nUPDATE t2 SET c='four thousand six hundred fifty-seven' WHERE a=20822;\nUPDATE t2 SET c='twenty thousand two hundred ninety' WHERE a=20823;\nUPDATE t2 SET c='ninety-six thousand four hundred fifty-four' WHERE a=20824;\nUPDATE t2 SET c='sixty-seven thousand seven hundred twenty-eight' WHERE a=20825;\nUPDATE t2 SET c='three thousand seven hundred one' WHERE a=20826;\nUPDATE t2 SET c='thirty-six thousand eighty-five' WHERE a=20827;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty-two' WHERE a=20828;\nUPDATE t2 SET c='ninety-seven thousand one hundred forty-six' WHERE a=20829;\nUPDATE t2 SET c='sixty-two thousand four hundred fifty-three' WHERE a=20830;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-seven' WHERE a=20831;\nUPDATE t2 SET c='sixty-four thousand seven hundred thirty-nine' WHERE a=20832;\nUPDATE t2 SET c='forty thousand five hundred twenty-seven' WHERE a=20833;\nUPDATE t2 SET c='four thousand one hundred ninety-eight' WHERE a=20834;\nUPDATE t2 SET c='fifty-one thousand nine hundred fifty-six' WHERE a=20835;\nUPDATE t2 SET c='eighty-two thousand two hundred sixteen' WHERE a=20836;\nUPDATE t2 SET c='forty thousand four hundred ninety-seven' WHERE a=20837;\nUPDATE t2 SET c='thirty thousand nine hundred thirty-four' WHERE a=20838;\nUPDATE t2 SET c='twenty thousand five hundred fourteen' WHERE a=20839;\nUPDATE t2 SET c='thirty-nine thousand nine hundred eighty-nine' WHERE a=20840;\nUPDATE t2 SET c='twenty thousand six hundred eighty-one' WHERE a=20841;\nUPDATE t2 SET c='eleven thousand five hundred seventy-one' WHERE a=20842;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-one' WHERE a=20843;\nUPDATE t2 SET c='twenty-seven thousand five hundred ninety-three' WHERE a=20844;\nUPDATE t2 SET c='three thousand two hundred eighty-nine' WHERE a=20845;\nUPDATE t2 SET c='forty-seven thousand five hundred eighty-eight' WHERE a=20846;\nUPDATE t2 SET c='thirty-seven thousand seven hundred two' WHERE a=20847;\nUPDATE t2 SET c='twenty-two thousand one hundred fifty' WHERE a=20848;\nUPDATE t2 SET c='twenty thousand four hundred seventy' WHERE a=20849;\nUPDATE t2 SET c='sixty-four thousand four hundred fifty-two' WHERE a=20850;\nUPDATE t2 SET c='twenty-six thousand thirty-one' WHERE a=20851;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifty-seven' WHERE a=20852;\nUPDATE t2 SET c='ten thousand four hundred twelve' WHERE a=20853;\nUPDATE t2 SET c='eleven thousand five hundred fifty-eight' WHERE a=20854;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-nine' WHERE a=20855;\nUPDATE t2 SET c='eighty-three thousand one hundred fifty-six' WHERE a=20856;\nUPDATE t2 SET c='fifty-seven thousand three hundred forty-seven' WHERE a=20857;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-five' WHERE a=20858;\nUPDATE t2 SET c='fifty-two thousand five hundred fourteen' WHERE a=20859;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty-one' WHERE a=20860;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety-one' WHERE a=20861;\nUPDATE t2 SET c='thirty-seven thousand five hundred thirteen' WHERE a=20862;\nUPDATE t2 SET c='five hundred eighty-seven' WHERE a=20863;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-five' WHERE a=20864;\nUPDATE t2 SET c='fifty-nine thousand eight hundred thirteen' WHERE a=20865;\nUPDATE t2 SET c='fifty-nine thousand nine hundred thirty-six' WHERE a=20866;\nUPDATE t2 SET c='ninety thousand one hundred seven' WHERE a=20867;\nUPDATE t2 SET c='forty thousand four hundred ninety-one' WHERE a=20868;\nUPDATE t2 SET c='thirty-three thousand nine hundred forty-eight' WHERE a=20869;\nUPDATE t2 SET c='three thousand seventeen' WHERE a=20870;\nUPDATE t2 SET c='eighty thousand eight hundred twenty-four' WHERE a=20871;\nUPDATE t2 SET c='eight thousand five hundred twenty-four' WHERE a=20872;\nUPDATE t2 SET c='ninety thousand nine hundred fifty-two' WHERE a=20873;\nUPDATE t2 SET c='thirty-four thousand seven hundred sixty-eight' WHERE a=20874;\nUPDATE t2 SET c='sixty thousand six hundred eighty-seven' WHERE a=20875;\nUPDATE t2 SET c='seventy-two thousand seven hundred ninety-six' WHERE a=20876;\nUPDATE t2 SET c='thirty thousand nine hundred ninety-nine' WHERE a=20877;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-two' WHERE a=20878;\nUPDATE t2 SET c='thirty-nine thousand sixty-one' WHERE a=20879;\nUPDATE t2 SET c='forty-one thousand eight hundred seventy-six' WHERE a=20880;\nUPDATE t2 SET c='seventy-one thousand eight hundred fourteen' WHERE a=20881;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety' WHERE a=20882;\nUPDATE t2 SET c='thirty-two thousand seven hundred fifteen' WHERE a=20883;\nUPDATE t2 SET c='sixty-eight thousand seven hundred forty-two' WHERE a=20884;\nUPDATE t2 SET c='seventy thousand two hundred eighty' WHERE a=20885;\nUPDATE t2 SET c='thirteen thousand two hundred sixty' WHERE a=20886;\nUPDATE t2 SET c='twenty-three thousand four hundred sixty-five' WHERE a=20887;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-one' WHERE a=20888;\nUPDATE t2 SET c='two thousand four hundred eighty-three' WHERE a=20889;\nUPDATE t2 SET c='seventy-one thousand one hundred thirty-seven' WHERE a=20890;\nUPDATE t2 SET c='fifty-two thousand one hundred twenty' WHERE a=20891;\nUPDATE t2 SET c='fourteen thousand three hundred six' WHERE a=20892;\nUPDATE t2 SET c='eighteen thousand two hundred five' WHERE a=20893;\nUPDATE t2 SET c='nineteen thousand thirty-seven' WHERE a=20894;\nUPDATE t2 SET c='eight thousand eight hundred eighty-nine' WHERE a=20895;\nUPDATE t2 SET c='two thousand eight hundred eighteen' WHERE a=20896;\nUPDATE t2 SET c='sixty-seven thousand two hundred forty-six' WHERE a=20897;\nUPDATE t2 SET c='thirty-nine thousand nine' WHERE a=20898;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty' WHERE a=20899;\nUPDATE t2 SET c='nine hundred fifteen' WHERE a=20900;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-one' WHERE a=20901;\nUPDATE t2 SET c='one thousand six hundred thirty-six' WHERE a=20902;\nUPDATE t2 SET c='sixty-five thousand forty' WHERE a=20903;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-nine' WHERE a=20904;\nUPDATE t2 SET c='fifty-four thousand eight hundred fifty' WHERE a=20905;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety' WHERE a=20906;\nUPDATE t2 SET c='forty-four thousand five hundred fifty-five' WHERE a=20907;\nUPDATE t2 SET c='thirty-one thousand six hundred eighty-seven' WHERE a=20908;\nUPDATE t2 SET c='twenty-eight thousand five hundred eight' WHERE a=20909;\nUPDATE t2 SET c='twenty-three thousand three hundred seventy-two' WHERE a=20910;\nUPDATE t2 SET c='sixteen thousand two hundred three' WHERE a=20911;\nUPDATE t2 SET c='eighty thousand nine hundred nine' WHERE a=20912;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-eight' WHERE a=20913;\nUPDATE t2 SET c='one thousand three hundred thirty-one' WHERE a=20914;\nUPDATE t2 SET c='sixteen thousand five hundred ninety-six' WHERE a=20915;\nUPDATE t2 SET c='nineteen thousand two hundred eighty-one' WHERE a=20916;\nUPDATE t2 SET c='eleven thousand five hundred twenty-three' WHERE a=20917;\nUPDATE t2 SET c='eighty-five thousand five hundred eight' WHERE a=20918;\nUPDATE t2 SET c='seventy-four thousand eight hundred fifty-six' WHERE a=20919;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-one' WHERE a=20920;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-five' WHERE a=20921;\nUPDATE t2 SET c='ninety-one thousand four hundred eighty-nine' WHERE a=20922;\nUPDATE t2 SET c='eighty-seven thousand nine hundred twenty-four' WHERE a=20923;\nUPDATE t2 SET c='forty-two thousand one hundred sixty-seven' WHERE a=20924;\nUPDATE t2 SET c='forty-five thousand seven hundred three' WHERE a=20925;\nUPDATE t2 SET c='fifty thousand nine hundred thirty-eight' WHERE a=20926;\nUPDATE t2 SET c='forty-six thousand eight hundred thirty-six' WHERE a=20927;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-nine' WHERE a=20928;\nUPDATE t2 SET c='twenty-five thousand four hundred twenty-nine' WHERE a=20929;\nUPDATE t2 SET c='two thousand two hundred fifty-four' WHERE a=20930;\nUPDATE t2 SET c='eighty-eight thousand two hundred forty-nine' WHERE a=20931;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-two' WHERE a=20932;\nUPDATE t2 SET c='fifteen thousand two hundred ninety-five' WHERE a=20933;\nUPDATE t2 SET c='sixty-one thousand five hundred twenty-five' WHERE a=20934;\nUPDATE t2 SET c='sixty thousand one hundred fourteen' WHERE a=20935;\nUPDATE t2 SET c='seventy-six thousand seven hundred fourteen' WHERE a=20936;\nUPDATE t2 SET c='twenty-two thousand two hundred forty-seven' WHERE a=20937;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-three' WHERE a=20938;\nUPDATE t2 SET c='forty-six thousand seven hundred ninety-one' WHERE a=20939;\nUPDATE t2 SET c='ninety-three thousand eight hundred eleven' WHERE a=20940;\nUPDATE t2 SET c='ninety-four thousand eight hundred ten' WHERE a=20941;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-eight' WHERE a=20942;\nUPDATE t2 SET c='ninety-seven thousand two hundred fifty-nine' WHERE a=20943;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-three' WHERE a=20944;\nUPDATE t2 SET c='seventy-eight thousand one hundred thirteen' WHERE a=20945;\nUPDATE t2 SET c='eighty-nine thousand six hundred fifty-four' WHERE a=20946;\nUPDATE t2 SET c='two thousand five hundred ninety-five' WHERE a=20947;\nUPDATE t2 SET c='eighty-six thousand four hundred eighty-two' WHERE a=20948;\nUPDATE t2 SET c='twenty-four thousand four' WHERE a=20949;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-seven' WHERE a=20950;\nUPDATE t2 SET c='eighty-four thousand six hundred sixty-three' WHERE a=20951;\nUPDATE t2 SET c='thirty-two thousand sixty-one' WHERE a=20952;\nUPDATE t2 SET c='twenty-two thousand four hundred forty-five' WHERE a=20953;\nUPDATE t2 SET c='forty-three thousand two hundred thirty-nine' WHERE a=20954;\nUPDATE t2 SET c='thirty-eight thousand five hundred' WHERE a=20955;\nUPDATE t2 SET c='fifty-one thousand seven hundred seventy-nine' WHERE a=20956;\nUPDATE t2 SET c='forty-eight thousand six hundred seventy' WHERE a=20957;\nUPDATE t2 SET c='sixty thousand six hundred twelve' WHERE a=20958;\nUPDATE t2 SET c='ninety-four thousand five hundred ninety-three' WHERE a=20959;\nUPDATE t2 SET c='sixty-six thousand nine hundred eighteen' WHERE a=20960;\nUPDATE t2 SET c='thirty-six thousand eight hundred sixty-two' WHERE a=20961;\nUPDATE t2 SET c='forty-six thousand two hundred twenty-one' WHERE a=20962;\nUPDATE t2 SET c='thirty-six thousand one hundred sixty-seven' WHERE a=20963;\nUPDATE t2 SET c='thirty-four thousand two hundred eleven' WHERE a=20964;\nUPDATE t2 SET c='eight thousand ninety-five' WHERE a=20965;\nUPDATE t2 SET c='seventy-eight thousand seventy-one' WHERE a=20966;\nUPDATE t2 SET c='sixty-three thousand two hundred twenty-four' WHERE a=20967;\nUPDATE t2 SET c='ninety-five thousand nine' WHERE a=20968;\nUPDATE t2 SET c='twelve thousand five hundred twenty-three' WHERE a=20969;\nUPDATE t2 SET c='seventy-five thousand seven hundred thirty-one' WHERE a=20970;\nUPDATE t2 SET c='one thousand one hundred twenty-eight' WHERE a=20971;\nUPDATE t2 SET c='seventy thousand seven hundred sixty-six' WHERE a=20972;\nUPDATE t2 SET c='sixteen thousand three hundred eleven' WHERE a=20973;\nUPDATE t2 SET c='seven thousand three hundred forty-nine' WHERE a=20974;\nUPDATE t2 SET c='fifty-five thousand five hundred two' WHERE a=20975;\nUPDATE t2 SET c='ninety-three thousand nine hundred eleven' WHERE a=20976;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety' WHERE a=20977;\nUPDATE t2 SET c='thirty-three thousand seven hundred thirty-seven' WHERE a=20978;\nUPDATE t2 SET c='fifty-eight thousand two hundred nine' WHERE a=20979;\nUPDATE t2 SET c='eighty-three thousand ninety-two' WHERE a=20980;\nUPDATE t2 SET c='fifty-two thousand seven hundred six' WHERE a=20981;\nUPDATE t2 SET c='sixty-one thousand three hundred sixty-three' WHERE a=20982;\nUPDATE t2 SET c='ninety-five thousand eight hundred fifty-one' WHERE a=20983;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-five' WHERE a=20984;\nUPDATE t2 SET c='four thousand five hundred twenty-six' WHERE a=20985;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-nine' WHERE a=20986;\nUPDATE t2 SET c='nineteen thousand two hundred one' WHERE a=20987;\nUPDATE t2 SET c='eighty thousand two hundred one' WHERE a=20988;\nUPDATE t2 SET c='fifty-three thousand seven hundred seventy-six' WHERE a=20989;\nUPDATE t2 SET c='fifty thousand five hundred ninety-eight' WHERE a=20990;\nUPDATE t2 SET c='nine thousand three hundred sixty-two' WHERE a=20991;\nUPDATE t2 SET c='ten thousand nine hundred seventeen' WHERE a=20992;\nUPDATE t2 SET c='three thousand three hundred thirty-three' WHERE a=20993;\nUPDATE t2 SET c='eight thousand two hundred twenty-four' WHERE a=20994;\nUPDATE t2 SET c='three thousand one hundred seventy-six' WHERE a=20995;\nUPDATE t2 SET c='four thousand six hundred fifteen' WHERE a=20996;\nUPDATE t2 SET c='seventy-two thousand four hundred sixty-two' WHERE a=20997;\nUPDATE t2 SET c='eighteen thousand three hundred thirty-two' WHERE a=20998;\nUPDATE t2 SET c='one thousand three hundred seventy-eight' WHERE a=20999;\nUPDATE t2 SET c='fifteen thousand nine hundred sixty-one' WHERE a=21000;\nUPDATE t2 SET c='seventy-two thousand three hundred twenty-six' WHERE a=21001;\nUPDATE t2 SET c='ninety-one thousand forty-three' WHERE a=21002;\nUPDATE t2 SET c='twenty-four thousand seven hundred thirteen' WHERE a=21003;\nUPDATE t2 SET c='fifty-seven thousand two hundred ninety-five' WHERE a=21004;\nUPDATE t2 SET c='ninety-one thousand fourteen' WHERE a=21005;\nUPDATE t2 SET c='thirty-six thousand five hundred eighty-seven' WHERE a=21006;\nUPDATE t2 SET c='forty-seven thousand one hundred seventy' WHERE a=21007;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-eight' WHERE a=21008;\nUPDATE t2 SET c='twenty-six thousand nine hundred eighty-three' WHERE a=21009;\nUPDATE t2 SET c='nine thousand seven hundred sixty-seven' WHERE a=21010;\nUPDATE t2 SET c='seventeen thousand one hundred thirteen' WHERE a=21011;\nUPDATE t2 SET c='forty-four thousand two hundred ninety' WHERE a=21012;\nUPDATE t2 SET c='thirty thousand eight hundred nine' WHERE a=21013;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-six' WHERE a=21014;\nUPDATE t2 SET c='four thousand eight hundred ninety-one' WHERE a=21015;\nUPDATE t2 SET c='forty-one thousand five hundred sixty-eight' WHERE a=21016;\nUPDATE t2 SET c='forty-eight thousand seven hundred sixty-two' WHERE a=21017;\nUPDATE t2 SET c='twenty-three thousand one hundred twenty-nine' WHERE a=21018;\nUPDATE t2 SET c='seventeen thousand five hundred thirty-four' WHERE a=21019;\nUPDATE t2 SET c='eighty-four thousand four hundred eighty-three' WHERE a=21020;\nUPDATE t2 SET c='fifty-three thousand two hundred thirty-six' WHERE a=21021;\nUPDATE t2 SET c='nineteen thousand six hundred eighty-three' WHERE a=21022;\nUPDATE t2 SET c='eighteen thousand nine hundred eighty-nine' WHERE a=21023;\nUPDATE t2 SET c='twenty-three thousand three hundred ten' WHERE a=21024;\nUPDATE t2 SET c='seventy-five thousand sixty-four' WHERE a=21025;\nUPDATE t2 SET c='seventy-five thousand two hundred fifty-five' WHERE a=21026;\nUPDATE t2 SET c='forty-one thousand one hundred seventy-one' WHERE a=21027;\nUPDATE t2 SET c='eighty-eight thousand thirty-seven' WHERE a=21028;\nUPDATE t2 SET c='twenty-two thousand five hundred fifty-one' WHERE a=21029;\nUPDATE t2 SET c='four thousand three hundred eleven' WHERE a=21030;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety-nine' WHERE a=21031;\nUPDATE t2 SET c='seventy-nine thousand two hundred eighteen' WHERE a=21032;\nUPDATE t2 SET c='twenty-four thousand six hundred fifty-three' WHERE a=21033;\nUPDATE t2 SET c='fifty thousand four hundred forty-one' WHERE a=21034;\nUPDATE t2 SET c='forty-three thousand fifty-nine' WHERE a=21035;\nUPDATE t2 SET c='fifty-six thousand six hundred nineteen' WHERE a=21036;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seven' WHERE a=21037;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-five' WHERE a=21038;\nUPDATE t2 SET c='five thousand four hundred thirty-five' WHERE a=21039;\nUPDATE t2 SET c='thirty-six thousand seventy-three' WHERE a=21040;\nUPDATE t2 SET c='ninety-five thousand eight hundred ninety-three' WHERE a=21041;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety' WHERE a=21042;\nUPDATE t2 SET c='fourteen thousand one hundred twenty-eight' WHERE a=21043;\nUPDATE t2 SET c='four thousand two hundred twenty-nine' WHERE a=21044;\nUPDATE t2 SET c='ninety-five thousand four hundred two' WHERE a=21045;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-two' WHERE a=21046;\nUPDATE t2 SET c='ninety-two thousand nine hundred eighty-eight' WHERE a=21047;\nUPDATE t2 SET c='eighty-two thousand one hundred twenty-five' WHERE a=21048;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eleven' WHERE a=21049;\nUPDATE t2 SET c='twenty-five thousand one hundred four' WHERE a=21050;\nUPDATE t2 SET c='ninety-one thousand nine hundred sixty-one' WHERE a=21051;\nUPDATE t2 SET c='seven hundred twenty-five' WHERE a=21052;\nUPDATE t2 SET c='twenty thousand seven hundred twenty-two' WHERE a=21053;\nUPDATE t2 SET c='three thousand sixty-five' WHERE a=21054;\nUPDATE t2 SET c='forty-four thousand four hundred ninety-eight' WHERE a=21055;\nUPDATE t2 SET c='ninety-six thousand six hundred forty-eight' WHERE a=21056;\nUPDATE t2 SET c='sixty thousand eight hundred ninety' WHERE a=21057;\nUPDATE t2 SET c='eighty-three thousand nine hundred thirty-nine' WHERE a=21058;\nUPDATE t2 SET c='one thousand one hundred twenty-two' WHERE a=21059;\nUPDATE t2 SET c='forty-two thousand four hundred fifteen' WHERE a=21060;\nUPDATE t2 SET c='six thousand eight hundred eighty-three' WHERE a=21061;\nUPDATE t2 SET c='ninety-four thousand seven hundred forty-four' WHERE a=21062;\nUPDATE t2 SET c='eighteen thousand nine hundred forty-nine' WHERE a=21063;\nUPDATE t2 SET c='sixty-one thousand one hundred nineteen' WHERE a=21064;\nUPDATE t2 SET c='thirty-eight thousand nine hundred twenty-five' WHERE a=21065;\nUPDATE t2 SET c='ten thousand nine hundred sixty-one' WHERE a=21066;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-eight' WHERE a=21067;\nUPDATE t2 SET c='thirty thousand one hundred thirty-six' WHERE a=21068;\nUPDATE t2 SET c='twenty-nine thousand five hundred sixteen' WHERE a=21069;\nUPDATE t2 SET c='eighty-one thousand one hundred ninety-nine' WHERE a=21070;\nUPDATE t2 SET c='eight thousand two hundred forty-one' WHERE a=21071;\nUPDATE t2 SET c='seventy-nine thousand nine hundred seventeen' WHERE a=21072;\nUPDATE t2 SET c='eighty thousand five hundred sixty-two' WHERE a=21073;\nUPDATE t2 SET c='sixty-nine thousand seven hundred six' WHERE a=21074;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-six' WHERE a=21075;\nUPDATE t2 SET c='twelve thousand eight hundred ninety-four' WHERE a=21076;\nUPDATE t2 SET c='seventy-five thousand four hundred eighty-seven' WHERE a=21077;\nUPDATE t2 SET c='twenty-seven thousand six hundred thirty-seven' WHERE a=21078;\nUPDATE t2 SET c='nine thousand eight hundred sixty-nine' WHERE a=21079;\nUPDATE t2 SET c='sixty-three thousand six hundred sixty-four' WHERE a=21080;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-five' WHERE a=21081;\nUPDATE t2 SET c='eighty-seven thousand fifteen' WHERE a=21082;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-six' WHERE a=21083;\nUPDATE t2 SET c='thirty-six thousand two hundred seventy-two' WHERE a=21084;\nUPDATE t2 SET c='fifty-five thousand eight hundred thirty' WHERE a=21085;\nUPDATE t2 SET c='eighty-six thousand five hundred thirty-seven' WHERE a=21086;\nUPDATE t2 SET c='sixty-three thousand one hundred thirty-four' WHERE a=21087;\nUPDATE t2 SET c='seventeen thousand one hundred twenty-seven' WHERE a=21088;\nUPDATE t2 SET c='seventy-nine thousand one hundred ninety-seven' WHERE a=21089;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-four' WHERE a=21090;\nUPDATE t2 SET c='seventy-seven thousand six hundred eighty-four' WHERE a=21091;\nUPDATE t2 SET c='eighty-two thousand six hundred eight' WHERE a=21092;\nUPDATE t2 SET c='thirty-three thousand one hundred forty-six' WHERE a=21093;\nUPDATE t2 SET c='sixty thousand six hundred forty-six' WHERE a=21094;\nUPDATE t2 SET c='nine thousand fifty-six' WHERE a=21095;\nUPDATE t2 SET c='seventy-eight thousand eight hundred thirty-five' WHERE a=21096;\nUPDATE t2 SET c='sixty-four thousand nine hundred two' WHERE a=21097;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-seven' WHERE a=21098;\nUPDATE t2 SET c='thirty-one thousand two hundred thirty-six' WHERE a=21099;\nUPDATE t2 SET c='fifteen thousand eight hundred fifty-four' WHERE a=21100;\nUPDATE t2 SET c='forty thousand three hundred fifty-seven' WHERE a=21101;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-seven' WHERE a=21102;\nUPDATE t2 SET c='one thousand four hundred eighty-two' WHERE a=21103;\nUPDATE t2 SET c='forty-four thousand five hundred twenty-six' WHERE a=21104;\nUPDATE t2 SET c='fifty-nine thousand three hundred sixty-eight' WHERE a=21105;\nUPDATE t2 SET c='twenty-four thousand four hundred eighty-five' WHERE a=21106;\nUPDATE t2 SET c='five thousand six hundred sixty' WHERE a=21107;\nUPDATE t2 SET c='twenty thousand eight hundred twenty-eight' WHERE a=21108;\nUPDATE t2 SET c='ninety-one thousand nine hundred twenty-two' WHERE a=21109;\nUPDATE t2 SET c='seventy thousand ninety' WHERE a=21110;\nUPDATE t2 SET c='eight thousand six hundred ninety-seven' WHERE a=21111;\nUPDATE t2 SET c='sixty-eight thousand five hundred sixty-one' WHERE a=21112;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-three' WHERE a=21113;\nUPDATE t2 SET c='eighty-six thousand seven hundred four' WHERE a=21114;\nUPDATE t2 SET c='twenty-eight thousand eighty-three' WHERE a=21115;\nUPDATE t2 SET c='eighty-four thousand six hundred thirty-one' WHERE a=21116;\nUPDATE t2 SET c='sixty-seven thousand one hundred seventeen' WHERE a=21117;\nUPDATE t2 SET c='ninety-seven thousand one hundred ninety-six' WHERE a=21118;\nUPDATE t2 SET c='ninety-three thousand two hundred twenty-four' WHERE a=21119;\nUPDATE t2 SET c='ten thousand eight hundred thirteen' WHERE a=21120;\nUPDATE t2 SET c='ninety-eight thousand seven hundred forty-nine' WHERE a=21121;\nUPDATE t2 SET c='twenty-seven thousand one hundred thirty-seven' WHERE a=21122;\nUPDATE t2 SET c='thirty thousand one hundred twenty-three' WHERE a=21123;\nUPDATE t2 SET c='twelve thousand three hundred fifty-eight' WHERE a=21124;\nUPDATE t2 SET c='forty-five thousand seven hundred twenty-two' WHERE a=21125;\nUPDATE t2 SET c='sixty-one thousand one hundred forty' WHERE a=21126;\nUPDATE t2 SET c='sixty thousand six hundred twenty-three' WHERE a=21127;\nUPDATE t2 SET c='five thousand two hundred thirty-three' WHERE a=21128;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-four' WHERE a=21129;\nUPDATE t2 SET c='twelve thousand eight hundred seventy-eight' WHERE a=21130;\nUPDATE t2 SET c='thirty-three thousand three hundred sixty-seven' WHERE a=21131;\nUPDATE t2 SET c='five thousand five hundred thirty-nine' WHERE a=21132;\nUPDATE t2 SET c='sixty-seven thousand five hundred thirty-five' WHERE a=21133;\nUPDATE t2 SET c='fourteen thousand seven hundred forty-seven' WHERE a=21134;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventy-one' WHERE a=21135;\nUPDATE t2 SET c='eighty thousand six hundred forty-one' WHERE a=21136;\nUPDATE t2 SET c='eight hundred ten' WHERE a=21137;\nUPDATE t2 SET c='eighty-two thousand six hundred eighty-three' WHERE a=21138;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-five' WHERE a=21139;\nUPDATE t2 SET c='sixty-four thousand one hundred eighty-four' WHERE a=21140;\nUPDATE t2 SET c='thirty-three thousand three hundred seventy-six' WHERE a=21141;\nUPDATE t2 SET c='fifty-eight thousand nine hundred nine' WHERE a=21142;\nUPDATE t2 SET c='two thousand one hundred ninety-two' WHERE a=21143;\nUPDATE t2 SET c='eighty-three thousand one hundred sixty-four' WHERE a=21144;\nUPDATE t2 SET c='forty-seven thousand six hundred sixty-three' WHERE a=21145;\nUPDATE t2 SET c='thirty-two thousand nine hundred ninety-nine' WHERE a=21146;\nUPDATE t2 SET c='twenty-five thousand seven hundred fifty-two' WHERE a=21147;\nUPDATE t2 SET c='eighty-four thousand fifty-two' WHERE a=21148;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-six' WHERE a=21149;\nUPDATE t2 SET c='sixty-four thousand five hundred thirty-eight' WHERE a=21150;\nUPDATE t2 SET c='seven thousand one hundred ninety-nine' WHERE a=21151;\nUPDATE t2 SET c='eighty-eight thousand forty-nine' WHERE a=21152;\nUPDATE t2 SET c='seven thousand four hundred ten' WHERE a=21153;\nUPDATE t2 SET c='ninety-seven thousand six hundred thirty-seven' WHERE a=21154;\nUPDATE t2 SET c='thirteen thousand seven hundred thirty-eight' WHERE a=21155;\nUPDATE t2 SET c='twenty-two thousand seven hundred sixty-four' WHERE a=21156;\nUPDATE t2 SET c='eighty-eight thousand fifty' WHERE a=21157;\nUPDATE t2 SET c='eighty thousand five hundred seventy-nine' WHERE a=21158;\nUPDATE t2 SET c='thirty-seven thousand eight hundred one' WHERE a=21159;\nUPDATE t2 SET c='twenty-eight thousand four hundred ninety-eight' WHERE a=21160;\nUPDATE t2 SET c='twenty-seven thousand one hundred seven' WHERE a=21161;\nUPDATE t2 SET c='ninety-one thousand two hundred one' WHERE a=21162;\nUPDATE t2 SET c='twenty-eight thousand two hundred seventy-eight' WHERE a=21163;\nUPDATE t2 SET c='seventy thousand one hundred' WHERE a=21164;\nUPDATE t2 SET c='sixteen thousand four hundred seven' WHERE a=21165;\nUPDATE t2 SET c='seventy-two thousand three hundred forty-three' WHERE a=21166;\nUPDATE t2 SET c='seventy-one thousand six hundred sixty-two' WHERE a=21167;\nUPDATE t2 SET c='thirty-four thousand seven hundred sixty-five' WHERE a=21168;\nUPDATE t2 SET c='sixty-eight thousand four hundred thirty-two' WHERE a=21169;\nUPDATE t2 SET c='seventy-three thousand two hundred eighteen' WHERE a=21170;\nUPDATE t2 SET c='sixty-one thousand seven hundred fifty-nine' WHERE a=21171;\nUPDATE t2 SET c='eighty thousand fifty-nine' WHERE a=21172;\nUPDATE t2 SET c='seventeen thousand one hundred forty-six' WHERE a=21173;\nUPDATE t2 SET c='thirty-three thousand three hundred twenty-seven' WHERE a=21174;\nUPDATE t2 SET c='eighty thousand one hundred seven' WHERE a=21175;\nUPDATE t2 SET c='fourteen thousand three hundred ninety-one' WHERE a=21176;\nUPDATE t2 SET c='fifty-five thousand four hundred twenty-five' WHERE a=21177;\nUPDATE t2 SET c='fifteen thousand five hundred sixty-three' WHERE a=21178;\nUPDATE t2 SET c='sixty-nine thousand forty-six' WHERE a=21179;\nUPDATE t2 SET c='seventy-seven thousand six hundred fifty-one' WHERE a=21180;\nUPDATE t2 SET c='sixty-six thousand five hundred nineteen' WHERE a=21181;\nUPDATE t2 SET c='nineteen thousand two hundred sixty-nine' WHERE a=21182;\nUPDATE t2 SET c='thirty-six thousand four hundred sixty-three' WHERE a=21183;\nUPDATE t2 SET c='fifty-one thousand nine hundred eighty-four' WHERE a=21184;\nUPDATE t2 SET c='eighty thousand five hundred five' WHERE a=21185;\nUPDATE t2 SET c='twenty-one thousand two hundred thirty-seven' WHERE a=21186;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-four' WHERE a=21187;\nUPDATE t2 SET c='sixty-two thousand forty-four' WHERE a=21188;\nUPDATE t2 SET c='sixteen thousand four hundred eighty-five' WHERE a=21189;\nUPDATE t2 SET c='twenty-one thousand eight hundred ninety-one' WHERE a=21190;\nUPDATE t2 SET c='forty-four thousand eight hundred forty-one' WHERE a=21191;\nUPDATE t2 SET c='eighty-four thousand seven hundred eighty' WHERE a=21192;\nUPDATE t2 SET c='ninety-eight thousand four hundred thirty' WHERE a=21193;\nUPDATE t2 SET c='fifty-four thousand one hundred sixty-one' WHERE a=21194;\nUPDATE t2 SET c='nineteen thousand three hundred sixty-eight' WHERE a=21195;\nUPDATE t2 SET c='twenty-eight thousand two hundred fifty-eight' WHERE a=21196;\nUPDATE t2 SET c='seventy-nine thousand six hundred eighty-six' WHERE a=21197;\nUPDATE t2 SET c='two thousand six hundred' WHERE a=21198;\nUPDATE t2 SET c='thirty-seven thousand nine hundred one' WHERE a=21199;\nUPDATE t2 SET c='sixteen thousand four hundred twenty' WHERE a=21200;\nUPDATE t2 SET c='ten thousand four hundred thirteen' WHERE a=21201;\nUPDATE t2 SET c='forty-eight thousand two hundred' WHERE a=21202;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-two' WHERE a=21203;\nUPDATE t2 SET c='five thousand two hundred sixty-three' WHERE a=21204;\nUPDATE t2 SET c='sixty-nine thousand three hundred sixty-nine' WHERE a=21205;\nUPDATE t2 SET c='thirty-six thousand eight hundred sixty-two' WHERE a=21206;\nUPDATE t2 SET c='eighty-seven thousand nine hundred thirty-five' WHERE a=21207;\nUPDATE t2 SET c='eighty-five thousand two hundred sixty-two' WHERE a=21208;\nUPDATE t2 SET c='seventy-four thousand four hundred thirty-three' WHERE a=21209;\nUPDATE t2 SET c='thirteen thousand eight hundred ninety' WHERE a=21210;\nUPDATE t2 SET c='ninety-five thousand six hundred ninety-three' WHERE a=21211;\nUPDATE t2 SET c='twelve thousand six' WHERE a=21212;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-one' WHERE a=21213;\nUPDATE t2 SET c='fifty-one thousand seven hundred forty-four' WHERE a=21214;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty' WHERE a=21215;\nUPDATE t2 SET c='forty-three thousand five hundred seventy-three' WHERE a=21216;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-two' WHERE a=21217;\nUPDATE t2 SET c='fifty-nine thousand three hundred twenty-eight' WHERE a=21218;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-eight' WHERE a=21219;\nUPDATE t2 SET c='forty-seven thousand four hundred twenty-six' WHERE a=21220;\nUPDATE t2 SET c='fifty-nine thousand seven hundred twenty-four' WHERE a=21221;\nUPDATE t2 SET c='one hundred fifty-five' WHERE a=21222;\nUPDATE t2 SET c='ninety-seven thousand three hundred forty-four' WHERE a=21223;\nUPDATE t2 SET c='eighteen thousand five hundred thirty-five' WHERE a=21224;\nUPDATE t2 SET c='fifty-seven thousand six hundred twenty-seven' WHERE a=21225;\nUPDATE t2 SET c='sixty-six thousand eighty-five' WHERE a=21226;\nUPDATE t2 SET c='twenty-seven thousand fifteen' WHERE a=21227;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-eight' WHERE a=21228;\nUPDATE t2 SET c='ninety-five thousand six hundred eighty-three' WHERE a=21229;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=21230;\nUPDATE t2 SET c='ninety-six thousand one hundred sixty-five' WHERE a=21231;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty-five' WHERE a=21232;\nUPDATE t2 SET c='sixty-six thousand fifty-six' WHERE a=21233;\nUPDATE t2 SET c='twelve thousand two hundred forty' WHERE a=21234;\nUPDATE t2 SET c='sixty-eight thousand five hundred forty-six' WHERE a=21235;\nUPDATE t2 SET c='twenty-four thousand five hundred sixty-four' WHERE a=21236;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-five' WHERE a=21237;\nUPDATE t2 SET c='seventy-seven thousand three hundred twenty-two' WHERE a=21238;\nUPDATE t2 SET c='eighty-nine thousand three hundred forty-nine' WHERE a=21239;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifty' WHERE a=21240;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighty-four' WHERE a=21241;\nUPDATE t2 SET c='forty-four thousand eight hundred fifty-two' WHERE a=21242;\nUPDATE t2 SET c='five thousand eighty-eight' WHERE a=21243;\nUPDATE t2 SET c='forty thousand four hundred four' WHERE a=21244;\nUPDATE t2 SET c='forty-three thousand five hundred eighty-two' WHERE a=21245;\nUPDATE t2 SET c='eighty-two thousand five hundred seventeen' WHERE a=21246;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-nine' WHERE a=21247;\nUPDATE t2 SET c='seventy-one thousand five hundred thirty-three' WHERE a=21248;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-one' WHERE a=21249;\nUPDATE t2 SET c='thirty-three thousand five hundred fifty-four' WHERE a=21250;\nUPDATE t2 SET c='twelve thousand fifty-eight' WHERE a=21251;\nUPDATE t2 SET c='forty-four thousand five hundred ninety-eight' WHERE a=21252;\nUPDATE t2 SET c='seventy-four thousand five hundred eighty-six' WHERE a=21253;\nUPDATE t2 SET c='twenty-seven thousand forty-seven' WHERE a=21254;\nUPDATE t2 SET c='forty-three thousand nine hundred fifty-nine' WHERE a=21255;\nUPDATE t2 SET c='twenty-eight thousand three hundred twenty-five' WHERE a=21256;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty-one' WHERE a=21257;\nUPDATE t2 SET c='eight thousand one hundred ten' WHERE a=21258;\nUPDATE t2 SET c='forty-one thousand two hundred ninety-three' WHERE a=21259;\nUPDATE t2 SET c='eighty-four thousand eight hundred sixty-six' WHERE a=21260;\nUPDATE t2 SET c='twenty-two thousand nine hundred twelve' WHERE a=21261;\nUPDATE t2 SET c='sixty-seven thousand one hundred forty-nine' WHERE a=21262;\nUPDATE t2 SET c='fifty-six thousand seven hundred sixteen' WHERE a=21263;\nUPDATE t2 SET c='eighty-five thousand eight hundred seventeen' WHERE a=21264;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-one' WHERE a=21265;\nUPDATE t2 SET c='twenty-two thousand seven hundred twenty-six' WHERE a=21266;\nUPDATE t2 SET c='eighty-nine thousand seven hundred forty-nine' WHERE a=21267;\nUPDATE t2 SET c='sixty-seven thousand eleven' WHERE a=21268;\nUPDATE t2 SET c='forty-one thousand seven hundred fifty-nine' WHERE a=21269;\nUPDATE t2 SET c='sixty-two thousand nine hundred seventy-seven' WHERE a=21270;\nUPDATE t2 SET c='eighteen thousand four hundred thirty-seven' WHERE a=21271;\nUPDATE t2 SET c='sixty-five thousand sixty-four' WHERE a=21272;\nUPDATE t2 SET c='fifty-five thousand eighty-four' WHERE a=21273;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-nine' WHERE a=21274;\nUPDATE t2 SET c='eighty-five thousand eight hundred nine' WHERE a=21275;\nUPDATE t2 SET c='seventeen thousand four hundred ninety-six' WHERE a=21276;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty-six' WHERE a=21277;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fifty-one' WHERE a=21278;\nUPDATE t2 SET c='forty-eight thousand seven hundred seven' WHERE a=21279;\nUPDATE t2 SET c='six thousand nine hundred sixty-five' WHERE a=21280;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-six' WHERE a=21281;\nUPDATE t2 SET c='nine thousand one hundred forty-one' WHERE a=21282;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-six' WHERE a=21283;\nUPDATE t2 SET c='one thousand two hundred eighty-two' WHERE a=21284;\nUPDATE t2 SET c='eighty-seven thousand two hundred ten' WHERE a=21285;\nUPDATE t2 SET c='fifteen thousand four hundred seventy' WHERE a=21286;\nUPDATE t2 SET c='fifty-two thousand eight hundred ninety-seven' WHERE a=21287;\nUPDATE t2 SET c='seventy-one thousand sixty-six' WHERE a=21288;\nUPDATE t2 SET c='fifty-five thousand two hundred eleven' WHERE a=21289;\nUPDATE t2 SET c='ninety-eight thousand forty-four' WHERE a=21290;\nUPDATE t2 SET c='nineteen thousand three hundred eighty-four' WHERE a=21291;\nUPDATE t2 SET c='forty-nine thousand eight hundred thirty-eight' WHERE a=21292;\nUPDATE t2 SET c='eight thousand six hundred fifty-one' WHERE a=21293;\nUPDATE t2 SET c='sixty-eight thousand four hundred seventy-five' WHERE a=21294;\nUPDATE t2 SET c='twenty-seven thousand six hundred seventy-nine' WHERE a=21295;\nUPDATE t2 SET c='sixty-six thousand four hundred thirty-two' WHERE a=21296;\nUPDATE t2 SET c='seventy-eight thousand three hundred forty-one' WHERE a=21297;\nUPDATE t2 SET c='sixty-six thousand five hundred forty' WHERE a=21298;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-seven' WHERE a=21299;\nUPDATE t2 SET c='sixteen thousand five hundred seventy-seven' WHERE a=21300;\nUPDATE t2 SET c='thirty-six thousand three hundred ninety-three' WHERE a=21301;\nUPDATE t2 SET c='sixty-nine thousand one hundred eighty-nine' WHERE a=21302;\nUPDATE t2 SET c='twenty-five thousand nine hundred four' WHERE a=21303;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=21304;\nUPDATE t2 SET c='fifty-three thousand five hundred fifty-six' WHERE a=21305;\nUPDATE t2 SET c='seventy-six thousand five hundred eighty-two' WHERE a=21306;\nUPDATE t2 SET c='thirty-three thousand forty-four' WHERE a=21307;\nUPDATE t2 SET c='six hundred sixty-one' WHERE a=21308;\nUPDATE t2 SET c='forty thousand two hundred thirty-two' WHERE a=21309;\nUPDATE t2 SET c='fifty-five thousand nine hundred sixty-one' WHERE a=21310;\nUPDATE t2 SET c='thirty-six thousand five hundred sixty-five' WHERE a=21311;\nUPDATE t2 SET c='eight thousand seven hundred eight' WHERE a=21312;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety' WHERE a=21313;\nUPDATE t2 SET c='thirty-nine thousand nine hundred thirty-three' WHERE a=21314;\nUPDATE t2 SET c='twenty-seven thousand nine hundred ninety-eight' WHERE a=21315;\nUPDATE t2 SET c='twenty-one thousand six hundred seventy-two' WHERE a=21316;\nUPDATE t2 SET c='fifty-three thousand six hundred twenty-one' WHERE a=21317;\nUPDATE t2 SET c='forty-one thousand six hundred eighty' WHERE a=21318;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety-nine' WHERE a=21319;\nUPDATE t2 SET c='ninety-six thousand five hundred thirty-five' WHERE a=21320;\nUPDATE t2 SET c='sixty-three thousand nine hundred seventy' WHERE a=21321;\nUPDATE t2 SET c='nine thousand two hundred seventy-five' WHERE a=21322;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-two' WHERE a=21323;\nUPDATE t2 SET c='seven thousand' WHERE a=21324;\nUPDATE t2 SET c='sixty-one thousand nine hundred sixty-two' WHERE a=21325;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-nine' WHERE a=21326;\nUPDATE t2 SET c='forty thousand seven hundred twenty-nine' WHERE a=21327;\nUPDATE t2 SET c='seventy-one thousand twenty-nine' WHERE a=21328;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-six' WHERE a=21329;\nUPDATE t2 SET c='ninety-seven thousand seven' WHERE a=21330;\nUPDATE t2 SET c='sixty-eight thousand nine hundred eighty-four' WHERE a=21331;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy-two' WHERE a=21332;\nUPDATE t2 SET c='forty-seven thousand eight hundred eighty-seven' WHERE a=21333;\nUPDATE t2 SET c='three thousand five hundred five' WHERE a=21334;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty' WHERE a=21335;\nUPDATE t2 SET c='four thousand seven hundred ninety-five' WHERE a=21336;\nUPDATE t2 SET c='forty-two thousand one hundred ninety-seven' WHERE a=21337;\nUPDATE t2 SET c='seventy-two thousand eight hundred eighty-six' WHERE a=21338;\nUPDATE t2 SET c='ninety-six thousand one hundred eighty-one' WHERE a=21339;\nUPDATE t2 SET c='eighty thousand nine hundred seventy' WHERE a=21340;\nUPDATE t2 SET c='seventy-eight thousand six hundred forty-three' WHERE a=21341;\nUPDATE t2 SET c='sixty-three thousand two hundred ninety-three' WHERE a=21342;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-nine' WHERE a=21343;\nUPDATE t2 SET c='twenty-four thousand one hundred ninety-five' WHERE a=21344;\nUPDATE t2 SET c='nine thousand five hundred seventy-six' WHERE a=21345;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21346;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-four' WHERE a=21347;\nUPDATE t2 SET c='eighty-four thousand five hundred fourteen' WHERE a=21348;\nUPDATE t2 SET c='fifty-five thousand eight hundred fifteen' WHERE a=21349;\nUPDATE t2 SET c='seven thousand nine hundred eighteen' WHERE a=21350;\nUPDATE t2 SET c='seventy-six thousand six hundred twenty-four' WHERE a=21351;\nUPDATE t2 SET c='twenty-three thousand seven hundred forty-four' WHERE a=21352;\nUPDATE t2 SET c='forty-five thousand three hundred forty-five' WHERE a=21353;\nUPDATE t2 SET c='eighty-seven thousand six hundred eighteen' WHERE a=21354;\nUPDATE t2 SET c='sixty-eight thousand seven hundred thirty-nine' WHERE a=21355;\nUPDATE t2 SET c='thirty-eight thousand six hundred seventy-six' WHERE a=21356;\nUPDATE t2 SET c='eighty-five thousand seven hundred fifty-eight' WHERE a=21357;\nUPDATE t2 SET c='ninety-seven thousand five hundred thirty-three' WHERE a=21358;\nUPDATE t2 SET c='fifty-seven thousand eight hundred forty-five' WHERE a=21359;\nUPDATE t2 SET c='seven hundred seventy-two' WHERE a=21360;\nUPDATE t2 SET c='one thousand six hundred one' WHERE a=21361;\nUPDATE t2 SET c='nineteen thousand four hundred twenty-one' WHERE a=21362;\nUPDATE t2 SET c='eighty-nine thousand two hundred forty-six' WHERE a=21363;\nUPDATE t2 SET c='ninety-two thousand four hundred eleven' WHERE a=21364;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifty-four' WHERE a=21365;\nUPDATE t2 SET c='eighty-five thousand seven hundred fifty-eight' WHERE a=21366;\nUPDATE t2 SET c='fifteen thousand eight hundred fifty-nine' WHERE a=21367;\nUPDATE t2 SET c='forty-two thousand nine hundred twenty-one' WHERE a=21368;\nUPDATE t2 SET c='nine thousand seven hundred fifty-three' WHERE a=21369;\nUPDATE t2 SET c='four thousand eight hundred eighty-nine' WHERE a=21370;\nUPDATE t2 SET c='forty-seven thousand five hundred ten' WHERE a=21371;\nUPDATE t2 SET c='forty-eight thousand eight hundred forty-seven' WHERE a=21372;\nUPDATE t2 SET c='twenty-one thousand eight hundred seventy-two' WHERE a=21373;\nUPDATE t2 SET c='fifteen thousand seven hundred forty-six' WHERE a=21374;\nUPDATE t2 SET c='ten thousand six hundred twenty-nine' WHERE a=21375;\nUPDATE t2 SET c='eighty-seven thousand one hundred thirty-three' WHERE a=21376;\nUPDATE t2 SET c='ninety-three thousand seven hundred eighty-six' WHERE a=21377;\nUPDATE t2 SET c='twenty-seven thousand one hundred sixty-one' WHERE a=21378;\nUPDATE t2 SET c='thirty-four thousand forty-two' WHERE a=21379;\nUPDATE t2 SET c='forty-five thousand four hundred sixty-three' WHERE a=21380;\nUPDATE t2 SET c='seventy-three thousand seven hundred forty-two' WHERE a=21381;\nUPDATE t2 SET c='forty-one thousand four hundred sixteen' WHERE a=21382;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-four' WHERE a=21383;\nUPDATE t2 SET c='thirty-seven thousand two hundred fifty-seven' WHERE a=21384;\nUPDATE t2 SET c='forty-three thousand three hundred seventy-three' WHERE a=21385;\nUPDATE t2 SET c='four thousand eight hundred forty' WHERE a=21386;\nUPDATE t2 SET c='nineteen thousand six hundred ninety' WHERE a=21387;\nUPDATE t2 SET c='sixteen thousand four hundred forty-seven' WHERE a=21388;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifty-two' WHERE a=21389;\nUPDATE t2 SET c='fifty-two thousand two hundred fifty-eight' WHERE a=21390;\nUPDATE t2 SET c='forty-four thousand nine hundred fourteen' WHERE a=21391;\nUPDATE t2 SET c='fourteen thousand twenty-eight' WHERE a=21392;\nUPDATE t2 SET c='ninety-three thousand four hundred sixty-seven' WHERE a=21393;\nUPDATE t2 SET c='forty-three thousand two hundred seventy-nine' WHERE a=21394;\nUPDATE t2 SET c='eleven thousand seven hundred forty' WHERE a=21395;\nUPDATE t2 SET c='forty-three thousand six hundred eighteen' WHERE a=21396;\nUPDATE t2 SET c='eighty-two thousand three hundred ninety-four' WHERE a=21397;\nUPDATE t2 SET c='seventy-eight thousand six hundred ninety-eight' WHERE a=21398;\nUPDATE t2 SET c='seventy thousand thirty-six' WHERE a=21399;\nUPDATE t2 SET c='seventy-seven thousand eight hundred thirty' WHERE a=21400;\nUPDATE t2 SET c='forty-seven thousand five' WHERE a=21401;\nUPDATE t2 SET c='twenty-eight thousand nine hundred sixty-seven' WHERE a=21402;\nUPDATE t2 SET c='nineteen thousand one hundred ninety-eight' WHERE a=21403;\nUPDATE t2 SET c='twenty-five thousand six hundred forty-seven' WHERE a=21404;\nUPDATE t2 SET c='fifty-five thousand five hundred fifty-nine' WHERE a=21405;\nUPDATE t2 SET c='seventy-six thousand seven hundred thirty-six' WHERE a=21406;\nUPDATE t2 SET c='thirty-six thousand nine hundred thirty-four' WHERE a=21407;\nUPDATE t2 SET c='sixty-nine thousand six hundred sixty-two' WHERE a=21408;\nUPDATE t2 SET c='thirty-two thousand seven hundred sixty-one' WHERE a=21409;\nUPDATE t2 SET c='eighty-four thousand two hundred seventy-nine' WHERE a=21410;\nUPDATE t2 SET c='seventy thousand one hundred sixty-five' WHERE a=21411;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-six' WHERE a=21412;\nUPDATE t2 SET c='twenty-three thousand five hundred seventy-three' WHERE a=21413;\nUPDATE t2 SET c='four thousand one hundred fifteen' WHERE a=21414;\nUPDATE t2 SET c='eighty-four thousand three hundred twenty-one' WHERE a=21415;\nUPDATE t2 SET c='twenty-one thousand four hundred thirteen' WHERE a=21416;\nUPDATE t2 SET c='ninety-one thousand four hundred fifty' WHERE a=21417;\nUPDATE t2 SET c='eighty-eight thousand one hundred seventy' WHERE a=21418;\nUPDATE t2 SET c='twenty-seven thousand nine hundred eight' WHERE a=21419;\nUPDATE t2 SET c='eighty-two thousand nine hundred twenty-two' WHERE a=21420;\nUPDATE t2 SET c='ninety-three thousand eighty-four' WHERE a=21421;\nUPDATE t2 SET c='twenty-one thousand eight hundred eighty-six' WHERE a=21422;\nUPDATE t2 SET c='seventy-one thousand eight hundred eleven' WHERE a=21423;\nUPDATE t2 SET c='forty-eight thousand two hundred fifty-eight' WHERE a=21424;\nUPDATE t2 SET c='seventeen thousand two hundred ninety-six' WHERE a=21425;\nUPDATE t2 SET c='seventy-two thousand seven hundred eighty-seven' WHERE a=21426;\nUPDATE t2 SET c='eight thousand five hundred fifty-four' WHERE a=21427;\nUPDATE t2 SET c='twenty-three thousand seven hundred thirty-nine' WHERE a=21428;\nUPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=21429;\nUPDATE t2 SET c='ninety-seven thousand nine hundred sixty-seven' WHERE a=21430;\nUPDATE t2 SET c='six thousand six hundred twenty-seven' WHERE a=21431;\nUPDATE t2 SET c='ninety-seven thousand sixty-three' WHERE a=21432;\nUPDATE t2 SET c='five thousand seven hundred forty-six' WHERE a=21433;\nUPDATE t2 SET c='ninety-two thousand one hundred sixty-four' WHERE a=21434;\nUPDATE t2 SET c='eighty-one thousand twenty-two' WHERE a=21435;\nUPDATE t2 SET c='sixty-nine thousand nine hundred sixty' WHERE a=21436;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-five' WHERE a=21437;\nUPDATE t2 SET c='ten thousand six hundred thirty-six' WHERE a=21438;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-one' WHERE a=21439;\nUPDATE t2 SET c='thirty-two thousand six hundred thirty-five' WHERE a=21440;\nUPDATE t2 SET c='seventy thousand nine hundred forty-three' WHERE a=21441;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-two' WHERE a=21442;\nUPDATE t2 SET c='thirty-three thousand eight hundred twenty-seven' WHERE a=21443;\nUPDATE t2 SET c='twenty-eight thousand six hundred forty' WHERE a=21444;\nUPDATE t2 SET c='thirty-two thousand forty-four' WHERE a=21445;\nUPDATE t2 SET c='fifty-eight thousand sixty-five' WHERE a=21446;\nUPDATE t2 SET c='nineteen thousand eight hundred nine' WHERE a=21447;\nUPDATE t2 SET c='eighty-five thousand ninety-nine' WHERE a=21448;\nUPDATE t2 SET c='six thousand four hundred seventy-eight' WHERE a=21449;\nUPDATE t2 SET c='sixty-five thousand seven hundred eight' WHERE a=21450;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-nine' WHERE a=21451;\nUPDATE t2 SET c='ninety-two thousand seven hundred sixteen' WHERE a=21452;\nUPDATE t2 SET c='three thousand six hundred sixty-one' WHERE a=21453;\nUPDATE t2 SET c='twenty-four thousand six hundred eighty-eight' WHERE a=21454;\nUPDATE t2 SET c='thirty-three thousand four hundred seventy-five' WHERE a=21455;\nUPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=21456;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-eight' WHERE a=21457;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-six' WHERE a=21458;\nUPDATE t2 SET c='ninety-four thousand one hundred fifteen' WHERE a=21459;\nUPDATE t2 SET c='thirty-two thousand nine hundred seventy-four' WHERE a=21460;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-five' WHERE a=21461;\nUPDATE t2 SET c='ninety-five thousand nine' WHERE a=21462;\nUPDATE t2 SET c='thirty-six thousand five hundred seventy-eight' WHERE a=21463;\nUPDATE t2 SET c='seventy-eight thousand seven hundred' WHERE a=21464;\nUPDATE t2 SET c='twenty-four thousand five hundred twenty-two' WHERE a=21465;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-six' WHERE a=21466;\nUPDATE t2 SET c='ninety-eight thousand forty-six' WHERE a=21467;\nUPDATE t2 SET c='sixty-six thousand seventy-six' WHERE a=21468;\nUPDATE t2 SET c='forty-two thousand four hundred fifty' WHERE a=21469;\nUPDATE t2 SET c='sixty thousand eleven' WHERE a=21470;\nUPDATE t2 SET c='eight thousand eight hundred seventeen' WHERE a=21471;\nUPDATE t2 SET c='seventy-five thousand three hundred ninety-three' WHERE a=21472;\nUPDATE t2 SET c='fifty-one thousand six hundred seventy-eight' WHERE a=21473;\nUPDATE t2 SET c='fifteen thousand three hundred sixty-one' WHERE a=21474;\nUPDATE t2 SET c='twenty-seven thousand five hundred eighty' WHERE a=21475;\nUPDATE t2 SET c='seventeen thousand nine hundred forty-three' WHERE a=21476;\nUPDATE t2 SET c='thirty-three thousand sixty' WHERE a=21477;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-seven' WHERE a=21478;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-four' WHERE a=21479;\nUPDATE t2 SET c='forty-four thousand one hundred thirty-eight' WHERE a=21480;\nUPDATE t2 SET c='twenty-five thousand three hundred twenty-five' WHERE a=21481;\nUPDATE t2 SET c='ninety-six thousand one hundred fifty' WHERE a=21482;\nUPDATE t2 SET c='seventy-one thousand five hundred thirty-eight' WHERE a=21483;\nUPDATE t2 SET c='twenty-six thousand five hundred seventy' WHERE a=21484;\nUPDATE t2 SET c='eleven thousand nine hundred ninety-eight' WHERE a=21485;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirty-one' WHERE a=21486;\nUPDATE t2 SET c='fourteen thousand four hundred forty-six' WHERE a=21487;\nUPDATE t2 SET c='fifty-one thousand three hundred eighty-seven' WHERE a=21488;\nUPDATE t2 SET c='forty-one thousand eight hundred eighty-four' WHERE a=21489;\nUPDATE t2 SET c='ninety-one thousand two hundred thirty-five' WHERE a=21490;\nUPDATE t2 SET c='eighty-nine thousand eight hundred seventy-three' WHERE a=21491;\nUPDATE t2 SET c='fifty-three thousand six hundred six' WHERE a=21492;\nUPDATE t2 SET c='seventy-nine thousand eight hundred fifty-one' WHERE a=21493;\nUPDATE t2 SET c='forty-one thousand two hundred eighty-four' WHERE a=21494;\nUPDATE t2 SET c='ninety-four thousand two hundred eight' WHERE a=21495;\nUPDATE t2 SET c='sixty-nine thousand eight hundred sixty-eight' WHERE a=21496;\nUPDATE t2 SET c='ninety-five thousand nine hundred eighty-three' WHERE a=21497;\nUPDATE t2 SET c='three thousand eight hundred thirty-eight' WHERE a=21498;\nUPDATE t2 SET c='forty-seven thousand eighty-six' WHERE a=21499;\nUPDATE t2 SET c='one thousand two hundred eighty-four' WHERE a=21500;\nUPDATE t2 SET c='thirteen thousand six hundred thirty-seven' WHERE a=21501;\nUPDATE t2 SET c='eighty-eight thousand six hundred forty-one' WHERE a=21502;\nUPDATE t2 SET c='thirty-four thousand four hundred eighty-nine' WHERE a=21503;\nUPDATE t2 SET c='fourteen thousand eight hundred two' WHERE a=21504;\nUPDATE t2 SET c='eighty thousand five hundred seventeen' WHERE a=21505;\nUPDATE t2 SET c='seventy thousand three hundred thirty-three' WHERE a=21506;\nUPDATE t2 SET c='twenty-eight thousand nine hundred ten' WHERE a=21507;\nUPDATE t2 SET c='thirty-six thousand six hundred fifty' WHERE a=21508;\nUPDATE t2 SET c='eighty-eight thousand two hundred ninety' WHERE a=21509;\nUPDATE t2 SET c='two thousand nine hundred fifty-five' WHERE a=21510;\nUPDATE t2 SET c='ninety-one thousand one hundred sixty-one' WHERE a=21511;\nUPDATE t2 SET c='eighty-two thousand seven hundred forty-five' WHERE a=21512;\nUPDATE t2 SET c='fifty thousand three hundred ninety-one' WHERE a=21513;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-three' WHERE a=21514;\nUPDATE t2 SET c='fifty-two thousand six hundred thirteen' WHERE a=21515;\nUPDATE t2 SET c='eighty-five thousand two hundred' WHERE a=21516;\nUPDATE t2 SET c='nine thousand three hundred seventy-three' WHERE a=21517;\nUPDATE t2 SET c='twenty-two thousand two hundred fifty-four' WHERE a=21518;\nUPDATE t2 SET c='fifty thousand six hundred six' WHERE a=21519;\nUPDATE t2 SET c='twenty-two thousand two hundred ten' WHERE a=21520;\nUPDATE t2 SET c='seventy-one thousand nine' WHERE a=21521;\nUPDATE t2 SET c='thirty-six thousand six hundred seventy-six' WHERE a=21522;\nUPDATE t2 SET c='fifty-eight thousand four hundred forty-three' WHERE a=21523;\nUPDATE t2 SET c='thirty-seven thousand seven hundred fifty-four' WHERE a=21524;\nUPDATE t2 SET c='forty-seven thousand two hundred eighty-six' WHERE a=21525;\nUPDATE t2 SET c='sixty-one thousand six hundred seventy-nine' WHERE a=21526;\nUPDATE t2 SET c='sixteen thousand six hundred four' WHERE a=21527;\nUPDATE t2 SET c='seventy-two thousand three hundred fifty-eight' WHERE a=21528;\nUPDATE t2 SET c='forty-one thousand ninety-four' WHERE a=21529;\nUPDATE t2 SET c='thirty-nine thousand five hundred six' WHERE a=21530;\nUPDATE t2 SET c='forty-nine thousand three hundred seventy-three' WHERE a=21531;\nUPDATE t2 SET c='eighty-three thousand three hundred forty' WHERE a=21532;\nUPDATE t2 SET c='seventy-two thousand forty-two' WHERE a=21533;\nUPDATE t2 SET c='four thousand eighty-five' WHERE a=21534;\nUPDATE t2 SET c='fifty-five thousand one hundred seventy' WHERE a=21535;\nUPDATE t2 SET c='thirty-two thousand three hundred fifty-nine' WHERE a=21536;\nUPDATE t2 SET c='forty-four thousand two hundred twenty-nine' WHERE a=21537;\nUPDATE t2 SET c='eleven thousand nine hundred seventy-four' WHERE a=21538;\nUPDATE t2 SET c='ninety-two thousand eight hundred fourteen' WHERE a=21539;\nUPDATE t2 SET c='eighty-two thousand five hundred ninety-nine' WHERE a=21540;\nUPDATE t2 SET c='ninety-eight thousand seven hundred fifty-three' WHERE a=21541;\nUPDATE t2 SET c='forty thousand two hundred eighty-two' WHERE a=21542;\nUPDATE t2 SET c='ninety-four thousand seven hundred eleven' WHERE a=21543;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty' WHERE a=21544;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-seven' WHERE a=21545;\nUPDATE t2 SET c='twenty-three thousand five hundred thirty-nine' WHERE a=21546;\nUPDATE t2 SET c='ninety-eight thousand five hundred seventy-five' WHERE a=21547;\nUPDATE t2 SET c='ninety-four thousand one hundred seventy-nine' WHERE a=21548;\nUPDATE t2 SET c='eighty-three thousand one hundred twenty' WHERE a=21549;\nUPDATE t2 SET c='eighty-eight thousand four hundred ninety-four' WHERE a=21550;\nUPDATE t2 SET c='sixty-eight thousand ninety-three' WHERE a=21551;\nUPDATE t2 SET c='ninety-three thousand two hundred seventy-nine' WHERE a=21552;\nUPDATE t2 SET c='thirty-two thousand one hundred sixty-two' WHERE a=21553;\nUPDATE t2 SET c='five thousand seven hundred fifty-eight' WHERE a=21554;\nUPDATE t2 SET c='forty-nine thousand two hundred eighteen' WHERE a=21555;\nUPDATE t2 SET c='thirty-one thousand five hundred seven' WHERE a=21556;\nUPDATE t2 SET c='seventeen thousand eight hundred thirty-one' WHERE a=21557;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-five' WHERE a=21558;\nUPDATE t2 SET c='twenty thousand nine hundred twenty-one' WHERE a=21559;\nUPDATE t2 SET c='seventy-three thousand seven hundred fourteen' WHERE a=21560;\nUPDATE t2 SET c='eighty-one thousand eight hundred fifteen' WHERE a=21561;\nUPDATE t2 SET c='eighty thousand six hundred twenty-one' WHERE a=21562;\nUPDATE t2 SET c='eleven thousand six hundred sixteen' WHERE a=21563;\nUPDATE t2 SET c='six thousand four hundred sixty-six' WHERE a=21564;\nUPDATE t2 SET c='ninety thousand six hundred eleven' WHERE a=21565;\nUPDATE t2 SET c='eighty-five thousand three hundred thirty-four' WHERE a=21566;\nUPDATE t2 SET c='forty-eight thousand ninety-five' WHERE a=21567;\nUPDATE t2 SET c='two hundred eighty-one' WHERE a=21568;\nUPDATE t2 SET c='eighteen thousand ninety-five' WHERE a=21569;\nUPDATE t2 SET c='thirty-seven thousand six hundred three' WHERE a=21570;\nUPDATE t2 SET c='eighty-two thousand two hundred seventy-three' WHERE a=21571;\nUPDATE t2 SET c='twenty-three thousand two hundred eight' WHERE a=21572;\nUPDATE t2 SET c='twenty-nine thousand four hundred sixty-seven' WHERE a=21573;\nUPDATE t2 SET c='eighty-three thousand three hundred seventy-two' WHERE a=21574;\nUPDATE t2 SET c='eighty-five thousand five hundred sixty-six' WHERE a=21575;\nUPDATE t2 SET c='fourteen thousand six hundred fourteen' WHERE a=21576;\nUPDATE t2 SET c='eighty-seven thousand nine hundred eighty-seven' WHERE a=21577;\nUPDATE t2 SET c='thirty-nine thousand nine hundred ten' WHERE a=21578;\nUPDATE t2 SET c='seventy-nine thousand seven hundred thirty-five' WHERE a=21579;\nUPDATE t2 SET c='ninety-two thousand three hundred thirty-four' WHERE a=21580;\nUPDATE t2 SET c='ninety-two thousand eight hundred ninety-four' WHERE a=21581;\nUPDATE t2 SET c='ninety-four thousand two hundred eighty-seven' WHERE a=21582;\nUPDATE t2 SET c='twenty-seven thousand six hundred sixty-seven' WHERE a=21583;\nUPDATE t2 SET c='twenty-one thousand four hundred twelve' WHERE a=21584;\nUPDATE t2 SET c='fifty-nine thousand four hundred twenty-three' WHERE a=21585;\nUPDATE t2 SET c='twenty-nine thousand two hundred thirty-two' WHERE a=21586;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-four' WHERE a=21587;\nUPDATE t2 SET c='sixty thousand two hundred fifty' WHERE a=21588;\nUPDATE t2 SET c='twelve thousand six hundred eighteen' WHERE a=21589;\nUPDATE t2 SET c='eighty-three thousand one hundred seventy-one' WHERE a=21590;\nUPDATE t2 SET c='forty-nine thousand fifteen' WHERE a=21591;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21592;\nUPDATE t2 SET c='twenty-two thousand one hundred forty-six' WHERE a=21593;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-eight' WHERE a=21594;\nUPDATE t2 SET c='nine thousand nine hundred fifty-nine' WHERE a=21595;\nUPDATE t2 SET c='sixty-one thousand two hundred seventy-four' WHERE a=21596;\nUPDATE t2 SET c='forty-nine thousand two hundred seventy-six' WHERE a=21597;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-four' WHERE a=21598;\nUPDATE t2 SET c='sixteen thousand two hundred ninety-eight' WHERE a=21599;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty' WHERE a=21600;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-two' WHERE a=21601;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-two' WHERE a=21602;\nUPDATE t2 SET c='eighty-three thousand one hundred ninety' WHERE a=21603;\nUPDATE t2 SET c='fifty-nine thousand two hundred seventy-four' WHERE a=21604;\nUPDATE t2 SET c='twenty-seven thousand five hundred twenty-six' WHERE a=21605;\nUPDATE t2 SET c='forty-two thousand nine hundred fifteen' WHERE a=21606;\nUPDATE t2 SET c='eighty-seven thousand five hundred thirty' WHERE a=21607;\nUPDATE t2 SET c='thirty-five thousand five hundred thirty-three' WHERE a=21608;\nUPDATE t2 SET c='ninety-six thousand eight hundred sixty-three' WHERE a=21609;\nUPDATE t2 SET c='sixty-eight thousand two hundred seventy-five' WHERE a=21610;\nUPDATE t2 SET c='forty thousand six hundred fourteen' WHERE a=21611;\nUPDATE t2 SET c='twenty-four thousand eight hundred thirty-nine' WHERE a=21612;\nUPDATE t2 SET c='fifty-six thousand forty-five' WHERE a=21613;\nUPDATE t2 SET c='twenty-nine thousand six hundred seventy-two' WHERE a=21614;\nUPDATE t2 SET c='eighty-one thousand six hundred ninety-five' WHERE a=21615;\nUPDATE t2 SET c='fourteen thousand seven hundred eighty-one' WHERE a=21616;\nUPDATE t2 SET c='fifty-six thousand one hundred ninety-one' WHERE a=21617;\nUPDATE t2 SET c='nine thousand four hundred seventy-eight' WHERE a=21618;\nUPDATE t2 SET c='forty-seven thousand seven hundred thirty-four' WHERE a=21619;\nUPDATE t2 SET c='eighty-six thousand fifteen' WHERE a=21620;\nUPDATE t2 SET c='thirteen thousand five hundred sixty-two' WHERE a=21621;\nUPDATE t2 SET c='forty-three thousand one hundred twenty-nine' WHERE a=21622;\nUPDATE t2 SET c='thirty-one thousand one hundred fifty-two' WHERE a=21623;\nUPDATE t2 SET c='fifteen thousand nine hundred forty-seven' WHERE a=21624;\nUPDATE t2 SET c='twenty thousand eight hundred eighty-five' WHERE a=21625;\nUPDATE t2 SET c='seventy-nine thousand fifty-seven' WHERE a=21626;\nUPDATE t2 SET c='sixty thousand nine hundred fifty-eight' WHERE a=21627;\nUPDATE t2 SET c='thirteen thousand five hundred five' WHERE a=21628;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty-three' WHERE a=21629;\nUPDATE t2 SET c='sixty-four thousand twenty-two' WHERE a=21630;\nUPDATE t2 SET c='thirty-six thousand nine hundred forty' WHERE a=21631;\nUPDATE t2 SET c='ninety thousand five hundred nineteen' WHERE a=21632;\nUPDATE t2 SET c='seventy-seven thousand one hundred sixty-four' WHERE a=21633;\nUPDATE t2 SET c='seventy-nine thousand eighty-four' WHERE a=21634;\nUPDATE t2 SET c='twelve thousand two hundred thirty-nine' WHERE a=21635;\nUPDATE t2 SET c='thirty-one thousand sixty-seven' WHERE a=21636;\nUPDATE t2 SET c='eighty-five thousand eight hundred fifty-six' WHERE a=21637;\nUPDATE t2 SET c='fifty-six thousand eight hundred fifty' WHERE a=21638;\nUPDATE t2 SET c='twenty-nine thousand four hundred thirty-seven' WHERE a=21639;\nUPDATE t2 SET c='twenty-four thousand four hundred twenty' WHERE a=21640;\nUPDATE t2 SET c='ninety thousand six hundred fifty-six' WHERE a=21641;\nUPDATE t2 SET c='ninety-one thousand two hundred twenty-nine' WHERE a=21642;\nUPDATE t2 SET c='twenty thousand five hundred ninety-one' WHERE a=21643;\nUPDATE t2 SET c='forty-two thousand two hundred seventy' WHERE a=21644;\nUPDATE t2 SET c='sixty-nine thousand six hundred forty-three' WHERE a=21645;\nUPDATE t2 SET c='fifty-eight thousand six hundred ninety-nine' WHERE a=21646;\nUPDATE t2 SET c='fifty-one thousand two hundred ninety-four' WHERE a=21647;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-five' WHERE a=21648;\nUPDATE t2 SET c='sixty-four thousand three hundred six' WHERE a=21649;\nUPDATE t2 SET c='three thousand three hundred eighty-four' WHERE a=21650;\nUPDATE t2 SET c='fifty-two thousand two hundred forty-one' WHERE a=21651;\nUPDATE t2 SET c='ninety-four thousand five hundred thirty-eight' WHERE a=21652;\nUPDATE t2 SET c='ninety thousand six hundred nineteen' WHERE a=21653;\nUPDATE t2 SET c='eighty-eight thousand nine hundred sixty' WHERE a=21654;\nUPDATE t2 SET c='twenty-nine thousand one hundred fifty-seven' WHERE a=21655;\nUPDATE t2 SET c='fifty-seven thousand six hundred sixty-seven' WHERE a=21656;\nUPDATE t2 SET c='fifty-nine thousand nine hundred nine' WHERE a=21657;\nUPDATE t2 SET c='thirty-eight thousand fifty-four' WHERE a=21658;\nUPDATE t2 SET c='sixty-seven thousand eight' WHERE a=21659;\nUPDATE t2 SET c='eighty-six thousand two hundred fifty-seven' WHERE a=21660;\nUPDATE t2 SET c='forty-two thousand one hundred sixty-seven' WHERE a=21661;\nUPDATE t2 SET c='forty-nine thousand three hundred fourteen' WHERE a=21662;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-four' WHERE a=21663;\nUPDATE t2 SET c='ninety-one thousand two hundred thirteen' WHERE a=21664;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-one' WHERE a=21665;\nUPDATE t2 SET c='fifty-one thousand fourteen' WHERE a=21666;\nUPDATE t2 SET c='seventy-seven thousand forty-three' WHERE a=21667;\nUPDATE t2 SET c='seven thousand one hundred ninety-nine' WHERE a=21668;\nUPDATE t2 SET c='sixty-seven thousand seven hundred five' WHERE a=21669;\nUPDATE t2 SET c='three thousand one hundred fifty-eight' WHERE a=21670;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-two' WHERE a=21671;\nUPDATE t2 SET c='eighty-four thousand two hundred twenty' WHERE a=21672;\nUPDATE t2 SET c='three thousand eighty-seven' WHERE a=21673;\nUPDATE t2 SET c='seventy-six thousand seventy-two' WHERE a=21674;\nUPDATE t2 SET c='sixty-six thousand two hundred forty-five' WHERE a=21675;\nUPDATE t2 SET c='seventy-three thousand two hundred fifty-five' WHERE a=21676;\nUPDATE t2 SET c='sixty thousand four hundred seventy-one' WHERE a=21677;\nUPDATE t2 SET c='ninety-six thousand eight hundred thirteen' WHERE a=21678;\nUPDATE t2 SET c='seven hundred fourteen' WHERE a=21679;\nUPDATE t2 SET c='ninety thousand four hundred ninety-five' WHERE a=21680;\nUPDATE t2 SET c='seventeen thousand nine hundred eleven' WHERE a=21681;\nUPDATE t2 SET c='twenty-two thousand eight hundred twenty-two' WHERE a=21682;\nUPDATE t2 SET c='seventy-two thousand two hundred thirty-nine' WHERE a=21683;\nUPDATE t2 SET c='ninety-nine thousand forty-three' WHERE a=21684;\nUPDATE t2 SET c='ninety-four thousand fourteen' WHERE a=21685;\nUPDATE t2 SET c='four hundred fifty-six' WHERE a=21686;\nUPDATE t2 SET c='twenty-six thousand nine hundred seventy-seven' WHERE a=21687;\nUPDATE t2 SET c='ninety-six thousand four hundred eighty-five' WHERE a=21688;\nUPDATE t2 SET c='seventy-four thousand six hundred seventy-six' WHERE a=21689;\nUPDATE t2 SET c='thirty-six thousand nine hundred seventy-three' WHERE a=21690;\nUPDATE t2 SET c='ninety-seven thousand four hundred eighteen' WHERE a=21691;\nUPDATE t2 SET c='thirty-nine thousand six hundred one' WHERE a=21692;\nUPDATE t2 SET c='ninety-five thousand nine hundred sixty-three' WHERE a=21693;\nUPDATE t2 SET c='fifty-seven thousand seven hundred ninety-three' WHERE a=21694;\nUPDATE t2 SET c='ninety-five thousand nine hundred thirty-one' WHERE a=21695;\nUPDATE t2 SET c='seventy-eight thousand six hundred two' WHERE a=21696;\nUPDATE t2 SET c='forty-five thousand eighty-nine' WHERE a=21697;\nUPDATE t2 SET c='forty-eight thousand eight hundred thirty-five' WHERE a=21698;\nUPDATE t2 SET c='thirty thousand six hundred eighteen' WHERE a=21699;\nUPDATE t2 SET c='fifty-three thousand sixty-three' WHERE a=21700;\nUPDATE t2 SET c='twenty-five thousand two hundred sixty-one' WHERE a=21701;\nUPDATE t2 SET c='sixty thousand five hundred one' WHERE a=21702;\nUPDATE t2 SET c='twenty-three thousand four hundred seventy-six' WHERE a=21703;\nUPDATE t2 SET c='twenty-two thousand forty-two' WHERE a=21704;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty-five' WHERE a=21705;\nUPDATE t2 SET c='eleven thousand eight hundred twenty-three' WHERE a=21706;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-six' WHERE a=21707;\nUPDATE t2 SET c='seventy-four thousand one hundred forty' WHERE a=21708;\nUPDATE t2 SET c='twenty thousand seven hundred fifteen' WHERE a=21709;\nUPDATE t2 SET c='ninety-seven thousand five hundred seventy-seven' WHERE a=21710;\nUPDATE t2 SET c='fifty-two thousand four hundred eighteen' WHERE a=21711;\nUPDATE t2 SET c='ninety-one thousand seven hundred forty-six' WHERE a=21712;\nUPDATE t2 SET c='eighty-eight thousand three hundred ninety-five' WHERE a=21713;\nUPDATE t2 SET c='fifty thousand four hundred eleven' WHERE a=21714;\nUPDATE t2 SET c='fifty-three thousand five hundred twenty-six' WHERE a=21715;\nUPDATE t2 SET c='ninety-seven thousand four hundred seventy-one' WHERE a=21716;\nUPDATE t2 SET c='eighty-five thousand ninety-four' WHERE a=21717;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety' WHERE a=21718;\nUPDATE t2 SET c='forty-five thousand nine hundred' WHERE a=21719;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-four' WHERE a=21720;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-eight' WHERE a=21721;\nUPDATE t2 SET c='ninety-one thousand eight hundred eighty-five' WHERE a=21722;\nUPDATE t2 SET c='twenty-four thousand six hundred forty-two' WHERE a=21723;\nUPDATE t2 SET c='fifteen thousand three hundred eighteen' WHERE a=21724;\nUPDATE t2 SET c='thirty-five thousand twenty-three' WHERE a=21725;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-one' WHERE a=21726;\nUPDATE t2 SET c='forty-seven thousand eighty' WHERE a=21727;\nUPDATE t2 SET c='sixty-six thousand three hundred' WHERE a=21728;\nUPDATE t2 SET c='eighteen thousand six hundred ninety-six' WHERE a=21729;\nUPDATE t2 SET c='sixty-five thousand seven hundred two' WHERE a=21730;\nUPDATE t2 SET c='nine thousand eight hundred thirty-nine' WHERE a=21731;\nUPDATE t2 SET c='eighty-six thousand seven hundred seventy' WHERE a=21732;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-six' WHERE a=21733;\nUPDATE t2 SET c='thirty-eight thousand eighty-three' WHERE a=21734;\nUPDATE t2 SET c='eighteen thousand one hundred sixty-three' WHERE a=21735;\nUPDATE t2 SET c='fifty-eight thousand nine hundred twenty' WHERE a=21736;\nUPDATE t2 SET c='forty-four thousand six hundred sixty-eight' WHERE a=21737;\nUPDATE t2 SET c='eighty-five thousand four hundred seventy-seven' WHERE a=21738;\nUPDATE t2 SET c='fifty-six thousand eight hundred seventy-seven' WHERE a=21739;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-eight' WHERE a=21740;\nUPDATE t2 SET c='eighty thousand seven hundred eighteen' WHERE a=21741;\nUPDATE t2 SET c='three thousand one' WHERE a=21742;\nUPDATE t2 SET c='sixty-seven thousand two hundred seventy-one' WHERE a=21743;\nUPDATE t2 SET c='ninety-five thousand seventy-eight' WHERE a=21744;\nUPDATE t2 SET c='sixty-seven thousand seven hundred sixty-six' WHERE a=21745;\nUPDATE t2 SET c='seven hundred sixty-three' WHERE a=21746;\nUPDATE t2 SET c='sixty-five thousand nine hundred sixty' WHERE a=21747;\nUPDATE t2 SET c='seventy thousand eight hundred seventy-six' WHERE a=21748;\nUPDATE t2 SET c='seventy-six thousand two hundred fifty-five' WHERE a=21749;\nUPDATE t2 SET c='ninety-seven thousand eight hundred four' WHERE a=21750;\nUPDATE t2 SET c='ninety-three thousand ninety-four' WHERE a=21751;\nUPDATE t2 SET c='seventy-seven thousand six hundred sixty-four' WHERE a=21752;\nUPDATE t2 SET c='forty-one thousand six hundred thirty-seven' WHERE a=21753;\nUPDATE t2 SET c='forty thousand nine hundred twelve' WHERE a=21754;\nUPDATE t2 SET c='eighty thousand four hundred nineteen' WHERE a=21755;\nUPDATE t2 SET c='fifteen thousand nine hundred fifty-nine' WHERE a=21756;\nUPDATE t2 SET c='seventy-seven thousand four hundred ninety-four' WHERE a=21757;\nUPDATE t2 SET c='ninety-one thousand three hundred thirty-seven' WHERE a=21758;\nUPDATE t2 SET c='seventy-eight thousand two hundred eighty-four' WHERE a=21759;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-nine' WHERE a=21760;\nUPDATE t2 SET c='seventy-seven thousand eighty' WHERE a=21761;\nUPDATE t2 SET c='eighty-six thousand two hundred sixty' WHERE a=21762;\nUPDATE t2 SET c='fifty-seven thousand four hundred thirty-five' WHERE a=21763;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty-nine' WHERE a=21764;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-five' WHERE a=21765;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-four' WHERE a=21766;\nUPDATE t2 SET c='four thousand six hundred fifteen' WHERE a=21767;\nUPDATE t2 SET c='ninety thousand eight hundred forty-two' WHERE a=21768;\nUPDATE t2 SET c='four thousand six hundred seventeen' WHERE a=21769;\nUPDATE t2 SET c='ninety-six thousand nine hundred twenty-seven' WHERE a=21770;\nUPDATE t2 SET c='thirty thousand nine hundred sixty-three' WHERE a=21771;\nUPDATE t2 SET c='seventy-nine thousand two hundred twelve' WHERE a=21772;\nUPDATE t2 SET c='fifty-four thousand eight hundred twenty-one' WHERE a=21773;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-four' WHERE a=21774;\nUPDATE t2 SET c='seventy-five thousand one hundred thirty-nine' WHERE a=21775;\nUPDATE t2 SET c='twenty thousand three hundred' WHERE a=21776;\nUPDATE t2 SET c='sixty-two thousand six hundred forty-seven' WHERE a=21777;\nUPDATE t2 SET c='thirty-seven thousand eight hundred fifty-six' WHERE a=21778;\nUPDATE t2 SET c='twenty thousand three hundred sixteen' WHERE a=21779;\nUPDATE t2 SET c='fifty-seven thousand four hundred seventy-five' WHERE a=21780;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-one' WHERE a=21781;\nUPDATE t2 SET c='twenty thousand four hundred eighty-one' WHERE a=21782;\nUPDATE t2 SET c='nine thousand eight hundred one' WHERE a=21783;\nUPDATE t2 SET c='ten thousand one hundred fifty-eight' WHERE a=21784;\nUPDATE t2 SET c='nineteen thousand eight hundred thirty-eight' WHERE a=21785;\nUPDATE t2 SET c='one thousand nine hundred twenty-five' WHERE a=21786;\nUPDATE t2 SET c='seventy-six thousand two hundred seventy-five' WHERE a=21787;\nUPDATE t2 SET c='twenty-five thousand six hundred fifty-nine' WHERE a=21788;\nUPDATE t2 SET c='thirty-three thousand seven hundred ninety-one' WHERE a=21789;\nUPDATE t2 SET c='forty-four thousand one hundred twenty-two' WHERE a=21790;\nUPDATE t2 SET c='forty-eight thousand eight hundred seventy-eight' WHERE a=21791;\nUPDATE t2 SET c='ninety thousand seven hundred seventy-two' WHERE a=21792;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-six' WHERE a=21793;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-one' WHERE a=21794;\nUPDATE t2 SET c='sixty-one thousand twenty-five' WHERE a=21795;\nUPDATE t2 SET c='six thousand seven hundred sixty-two' WHERE a=21796;\nUPDATE t2 SET c='forty-five thousand six hundred sixty-three' WHERE a=21797;\nUPDATE t2 SET c='forty-three thousand seven hundred seventy-three' WHERE a=21798;\nUPDATE t2 SET c='sixty-two thousand sixty-seven' WHERE a=21799;\nUPDATE t2 SET c='ninety-nine thousand nine hundred thirty-seven' WHERE a=21800;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-nine' WHERE a=21801;\nUPDATE t2 SET c='seventy-six thousand seven hundred five' WHERE a=21802;\nUPDATE t2 SET c='forty thousand eight hundred twenty-five' WHERE a=21803;\nUPDATE t2 SET c='twelve thousand two hundred forty-eight' WHERE a=21804;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-eight' WHERE a=21805;\nUPDATE t2 SET c='fifty-six thousand three hundred twenty-two' WHERE a=21806;\nUPDATE t2 SET c='seventy-eight thousand two hundred two' WHERE a=21807;\nUPDATE t2 SET c='fifty-five thousand five hundred twenty-three' WHERE a=21808;\nUPDATE t2 SET c='three thousand eight hundred twenty-five' WHERE a=21809;\nUPDATE t2 SET c='forty-four thousand eight hundred twenty-nine' WHERE a=21810;\nUPDATE t2 SET c='fifty-eight thousand eight hundred eighty-four' WHERE a=21811;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-three' WHERE a=21812;\nUPDATE t2 SET c='fifty-one thousand six hundred fifty-seven' WHERE a=21813;\nUPDATE t2 SET c='twenty-six thousand four hundred thirteen' WHERE a=21814;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-two' WHERE a=21815;\nUPDATE t2 SET c='twenty-two thousand eight hundred eighty-five' WHERE a=21816;\nUPDATE t2 SET c='seven thousand nine hundred seventy-four' WHERE a=21817;\nUPDATE t2 SET c='seventy-two thousand five hundred thirteen' WHERE a=21818;\nUPDATE t2 SET c='four hundred sixty-eight' WHERE a=21819;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty-six' WHERE a=21820;\nUPDATE t2 SET c='eighty-nine thousand six hundred eighty' WHERE a=21821;\nUPDATE t2 SET c='one thousand seven hundred forty-five' WHERE a=21822;\nUPDATE t2 SET c='four thousand three hundred forty-four' WHERE a=21823;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty-one' WHERE a=21824;\nUPDATE t2 SET c='three thousand one hundred seventeen' WHERE a=21825;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety-two' WHERE a=21826;\nUPDATE t2 SET c='thirty-three thousand six hundred fifty-three' WHERE a=21827;\nUPDATE t2 SET c='twenty thousand two hundred seventy-nine' WHERE a=21828;\nUPDATE t2 SET c='ninety-five thousand ninety-nine' WHERE a=21829;\nUPDATE t2 SET c='fifty-one thousand four hundred fifty-five' WHERE a=21830;\nUPDATE t2 SET c='sixty-nine thousand eight hundred' WHERE a=21831;\nUPDATE t2 SET c='six thousand eight hundred eighty-seven' WHERE a=21832;\nUPDATE t2 SET c='fifteen thousand seven hundred thirty-seven' WHERE a=21833;\nUPDATE t2 SET c='thirty-six thousand nine hundred' WHERE a=21834;\nUPDATE t2 SET c='fifty-nine thousand five hundred forty-one' WHERE a=21835;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-seven' WHERE a=21836;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-one' WHERE a=21837;\nUPDATE t2 SET c='ninety-one thousand five hundred thirty-nine' WHERE a=21838;\nUPDATE t2 SET c='twenty-six thousand six hundred seven' WHERE a=21839;\nUPDATE t2 SET c='nineteen thousand five hundred thirty-five' WHERE a=21840;\nUPDATE t2 SET c='seventy-two thousand two hundred fifty-two' WHERE a=21841;\nUPDATE t2 SET c='nine hundred seventy-nine' WHERE a=21842;\nUPDATE t2 SET c='eighty-six thousand six hundred four' WHERE a=21843;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-nine' WHERE a=21844;\nUPDATE t2 SET c='fifty-nine thousand five hundred ninety-nine' WHERE a=21845;\nUPDATE t2 SET c='eighty-four thousand nine hundred thirty' WHERE a=21846;\nUPDATE t2 SET c='seventy-eight thousand nine hundred ninety-six' WHERE a=21847;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty-two' WHERE a=21848;\nUPDATE t2 SET c='eighty-seven thousand four hundred seventy-one' WHERE a=21849;\nUPDATE t2 SET c='sixty-six thousand four hundred eighty' WHERE a=21850;\nUPDATE t2 SET c='thirty-five thousand five hundred eighty-one' WHERE a=21851;\nUPDATE t2 SET c='twenty-seven thousand seventy-five' WHERE a=21852;\nUPDATE t2 SET c='seventy-one thousand four hundred three' WHERE a=21853;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty' WHERE a=21854;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-three' WHERE a=21855;\nUPDATE t2 SET c='fifteen thousand five hundred thirty-nine' WHERE a=21856;\nUPDATE t2 SET c='forty thousand seven hundred two' WHERE a=21857;\nUPDATE t2 SET c='thirty-seven thousand seven hundred twenty-six' WHERE a=21858;\nUPDATE t2 SET c='two thousand six hundred sixty-eight' WHERE a=21859;\nUPDATE t2 SET c='twenty-three thousand three hundred eighty-nine' WHERE a=21860;\nUPDATE t2 SET c='twenty-seven thousand twenty-three' WHERE a=21861;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-seven' WHERE a=21862;\nUPDATE t2 SET c='sixty-three thousand six hundred eighty-nine' WHERE a=21863;\nUPDATE t2 SET c='seventy-two thousand one hundred eight' WHERE a=21864;\nUPDATE t2 SET c='eighty-two thousand six hundred six' WHERE a=21865;\nUPDATE t2 SET c='sixteen thousand five hundred twenty-nine' WHERE a=21866;\nUPDATE t2 SET c='sixty-eight thousand eight hundred eighty-two' WHERE a=21867;\nUPDATE t2 SET c='forty thousand six hundred seventy-seven' WHERE a=21868;\nUPDATE t2 SET c='nine thousand five hundred fourteen' WHERE a=21869;\nUPDATE t2 SET c='seventy-four thousand five hundred fifty-six' WHERE a=21870;\nUPDATE t2 SET c='forty-nine thousand two hundred eighteen' WHERE a=21871;\nUPDATE t2 SET c='ten thousand eight hundred thirty-three' WHERE a=21872;\nUPDATE t2 SET c='ten thousand three hundred twenty' WHERE a=21873;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-nine' WHERE a=21874;\nUPDATE t2 SET c='fifty-two thousand one hundred eighty-four' WHERE a=21875;\nUPDATE t2 SET c='seventy-one thousand two hundred ten' WHERE a=21876;\nUPDATE t2 SET c='six hundred forty-eight' WHERE a=21877;\nUPDATE t2 SET c='ninety-eight thousand seven hundred fifty' WHERE a=21878;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty-six' WHERE a=21879;\nUPDATE t2 SET c='seventy-one thousand nine hundred ninety-five' WHERE a=21880;\nUPDATE t2 SET c='forty-four thousand seven hundred seventy-one' WHERE a=21881;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy-six' WHERE a=21882;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-one' WHERE a=21883;\nUPDATE t2 SET c='ninety-four thousand five hundred ten' WHERE a=21884;\nUPDATE t2 SET c='thirty-five thousand six hundred sixty-six' WHERE a=21885;\nUPDATE t2 SET c='fifty-nine thousand five hundred sixty-one' WHERE a=21886;\nUPDATE t2 SET c='ninety-eight thousand eight hundred' WHERE a=21887;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-five' WHERE a=21888;\nUPDATE t2 SET c='eighty-four thousand five hundred sixty-five' WHERE a=21889;\nUPDATE t2 SET c='ninety-one thousand three hundred sixty-nine' WHERE a=21890;\nUPDATE t2 SET c='eighty-three thousand three hundred eighty-one' WHERE a=21891;\nUPDATE t2 SET c='fifty-four thousand eight hundred ninety-nine' WHERE a=21892;\nUPDATE t2 SET c='one thousand nine hundred sixty-seven' WHERE a=21893;\nUPDATE t2 SET c='ten thousand two hundred ninety-five' WHERE a=21894;\nUPDATE t2 SET c='seventy thousand nine hundred seventy-four' WHERE a=21895;\nUPDATE t2 SET c='fifty-five thousand nine hundred twenty-five' WHERE a=21896;\nUPDATE t2 SET c='twenty-two thousand three hundred fifty' WHERE a=21897;\nUPDATE t2 SET c='sixty-two thousand seven hundred thirty-six' WHERE a=21898;\nUPDATE t2 SET c='twenty-two thousand four hundred sixty-eight' WHERE a=21899;\nUPDATE t2 SET c='ninety-eight thousand seventy-five' WHERE a=21900;\nUPDATE t2 SET c='sixty-one thousand six hundred two' WHERE a=21901;\nUPDATE t2 SET c='five thousand five hundred thirty-one' WHERE a=21902;\nUPDATE t2 SET c='thirty-one thousand three hundred eighty' WHERE a=21903;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-seven' WHERE a=21904;\nUPDATE t2 SET c='thirty-six thousand five hundred forty-one' WHERE a=21905;\nUPDATE t2 SET c='twenty-three thousand six hundred twenty-two' WHERE a=21906;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-seven' WHERE a=21907;\nUPDATE t2 SET c='ninety-one thousand eight hundred fifty-four' WHERE a=21908;\nUPDATE t2 SET c='ninety-eight thousand seven hundred fifty-four' WHERE a=21909;\nUPDATE t2 SET c='nine thousand four hundred sixty-eight' WHERE a=21910;\nUPDATE t2 SET c='nine thousand nine hundred seventeen' WHERE a=21911;\nUPDATE t2 SET c='forty-six thousand three hundred ninety-eight' WHERE a=21912;\nUPDATE t2 SET c='sixty-two thousand four hundred ninety-three' WHERE a=21913;\nUPDATE t2 SET c='thirty-eight thousand three hundred fifty-four' WHERE a=21914;\nUPDATE t2 SET c='ninety-one thousand eight hundred thirty-four' WHERE a=21915;\nUPDATE t2 SET c='thirty-six thousand five hundred two' WHERE a=21916;\nUPDATE t2 SET c='twenty thousand six hundred ninety' WHERE a=21917;\nUPDATE t2 SET c='eighteen thousand three hundred sixteen' WHERE a=21918;\nUPDATE t2 SET c='sixty-three thousand three hundred forty-two' WHERE a=21919;\nUPDATE t2 SET c='forty-two thousand nine hundred seventy' WHERE a=21920;\nUPDATE t2 SET c='eighty-two thousand seven hundred twenty-seven' WHERE a=21921;\nUPDATE t2 SET c='twenty thousand two hundred eighty' WHERE a=21922;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventy-four' WHERE a=21923;\nUPDATE t2 SET c='seven thousand eight hundred nineteen' WHERE a=21924;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-nine' WHERE a=21925;\nUPDATE t2 SET c='eighty-two thousand two hundred ninety-five' WHERE a=21926;\nUPDATE t2 SET c='forty-three thousand three hundred twelve' WHERE a=21927;\nUPDATE t2 SET c='ninety thousand eight hundred twenty-seven' WHERE a=21928;\nUPDATE t2 SET c='forty-six thousand two hundred fifty-two' WHERE a=21929;\nUPDATE t2 SET c='seventy-eight thousand three hundred seven' WHERE a=21930;\nUPDATE t2 SET c='seventy-three thousand two hundred thirty-one' WHERE a=21931;\nUPDATE t2 SET c='fifty thousand one hundred fourteen' WHERE a=21932;\nUPDATE t2 SET c='seventeen thousand ninety-two' WHERE a=21933;\nUPDATE t2 SET c='sixty thousand four hundred nineteen' WHERE a=21934;\nUPDATE t2 SET c='sixty-four thousand two hundred nineteen' WHERE a=21935;\nUPDATE t2 SET c='ninety-eight thousand four hundred three' WHERE a=21936;\nUPDATE t2 SET c='thirty-six thousand eight hundred ninety-two' WHERE a=21937;\nUPDATE t2 SET c='ninety-four thousand one hundred sixteen' WHERE a=21938;\nUPDATE t2 SET c='sixty-five thousand five hundred seventy' WHERE a=21939;\nUPDATE t2 SET c='fifty thousand ninety-one' WHERE a=21940;\nUPDATE t2 SET c='three thousand nine hundred five' WHERE a=21941;\nUPDATE t2 SET c='eighty-one thousand eight hundred thirty-eight' WHERE a=21942;\nUPDATE t2 SET c='ten thousand four hundred ninety' WHERE a=21943;\nUPDATE t2 SET c='forty-seven thousand twenty' WHERE a=21944;\nUPDATE t2 SET c='five thousand two hundred ninety-eight' WHERE a=21945;\nUPDATE t2 SET c='seventy-seven thousand nine hundred seven' WHERE a=21946;\nUPDATE t2 SET c='seventy-nine thousand six hundred nine' WHERE a=21947;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-one' WHERE a=21948;\nUPDATE t2 SET c='seventy-six thousand sixteen' WHERE a=21949;\nUPDATE t2 SET c='sixty thousand two hundred eight' WHERE a=21950;\nUPDATE t2 SET c='seven thousand five hundred seventy-eight' WHERE a=21951;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirteen' WHERE a=21952;\nUPDATE t2 SET c='thirty-four thousand eight' WHERE a=21953;\nUPDATE t2 SET c='eighteen thousand seven hundred one' WHERE a=21954;\nUPDATE t2 SET c='forty-nine thousand seven hundred seventy-nine' WHERE a=21955;\nUPDATE t2 SET c='fifty-three thousand three hundred twenty-three' WHERE a=21956;\nUPDATE t2 SET c='ninety-three thousand three hundred forty-two' WHERE a=21957;\nUPDATE t2 SET c='ninety-three thousand two hundred thirteen' WHERE a=21958;\nUPDATE t2 SET c='twenty-three thousand ninety-five' WHERE a=21959;\nUPDATE t2 SET c='twenty-six thousand eight hundred ninety-six' WHERE a=21960;\nUPDATE t2 SET c='ninety-two thousand three hundred ninety-three' WHERE a=21961;\nUPDATE t2 SET c='eighty-three thousand twenty-seven' WHERE a=21962;\nUPDATE t2 SET c='seventy-one thousand two hundred thirty-six' WHERE a=21963;\nUPDATE t2 SET c='three thousand seven hundred thirty-two' WHERE a=21964;\nUPDATE t2 SET c='nine thousand two hundred twenty-nine' WHERE a=21965;\nUPDATE t2 SET c='seventy-two thousand eight hundred twenty-four' WHERE a=21966;\nUPDATE t2 SET c='forty-four thousand forty-five' WHERE a=21967;\nUPDATE t2 SET c='thirty-six thousand seven hundred sixty-one' WHERE a=21968;\nUPDATE t2 SET c='ninety-six thousand three hundred twenty-nine' WHERE a=21969;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-two' WHERE a=21970;\nUPDATE t2 SET c='forty-eight thousand two hundred twelve' WHERE a=21971;\nUPDATE t2 SET c='seventy-eight thousand five hundred sixty-four' WHERE a=21972;\nUPDATE t2 SET c='fifty-eight thousand five hundred fifty' WHERE a=21973;\nUPDATE t2 SET c='sixty-six thousand eight hundred fifty-one' WHERE a=21974;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-eight' WHERE a=21975;\nUPDATE t2 SET c='forty-nine thousand five hundred ninety-nine' WHERE a=21976;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-two' WHERE a=21977;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-eight' WHERE a=21978;\nUPDATE t2 SET c='fifty-nine thousand two hundred thirty-seven' WHERE a=21979;\nUPDATE t2 SET c='sixty-four thousand four hundred eleven' WHERE a=21980;\nUPDATE t2 SET c='thirty-nine thousand three hundred seventy-seven' WHERE a=21981;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-three' WHERE a=21982;\nUPDATE t2 SET c='sixty-four thousand seven hundred seventy-one' WHERE a=21983;\nUPDATE t2 SET c='ninety-nine thousand three hundred twenty-nine' WHERE a=21984;\nUPDATE t2 SET c='thirty-eight thousand one hundred ninety-six' WHERE a=21985;\nUPDATE t2 SET c='thirty-two thousand eight hundred fifty-two' WHERE a=21986;\nUPDATE t2 SET c='eighty thousand five hundred forty-eight' WHERE a=21987;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifty-four' WHERE a=21988;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-three' WHERE a=21989;\nUPDATE t2 SET c='thirty-two thousand two hundred eighty-five' WHERE a=21990;\nUPDATE t2 SET c='eighty-seven thousand one hundred seventeen' WHERE a=21991;\nUPDATE t2 SET c='sixteen thousand nine hundred twenty' WHERE a=21992;\nUPDATE t2 SET c='fourteen thousand two hundred nineteen' WHERE a=21993;\nUPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=21994;\nUPDATE t2 SET c='sixty-six thousand four hundred ninety-four' WHERE a=21995;\nUPDATE t2 SET c='eighty-four thousand four hundred three' WHERE a=21996;\nUPDATE t2 SET c='forty-four thousand eight hundred seventy-eight' WHERE a=21997;\nUPDATE t2 SET c='ninety-nine thousand four hundred thirty' WHERE a=21998;\nUPDATE t2 SET c='forty thousand ninety-seven' WHERE a=21999;\nUPDATE t2 SET c='fifty-two thousand forty-six' WHERE a=22000;\nUPDATE t2 SET c='ninety-one thousand nine hundred fifty-two' WHERE a=22001;\nUPDATE t2 SET c='thirty-three thousand fifty-three' WHERE a=22002;\nUPDATE t2 SET c='twenty-five thousand eight hundred ninety-four' WHERE a=22003;\nUPDATE t2 SET c='thirty-five thousand five hundred forty-two' WHERE a=22004;\nUPDATE t2 SET c='seventy thousand seven hundred seventy' WHERE a=22005;\nUPDATE t2 SET c='nine thousand seven hundred eighteen' WHERE a=22006;\nUPDATE t2 SET c='forty-four thousand two hundred sixteen' WHERE a=22007;\nUPDATE t2 SET c='twenty-nine thousand four hundred ninety-five' WHERE a=22008;\nUPDATE t2 SET c='twenty-eight thousand six hundred seventy-five' WHERE a=22009;\nUPDATE t2 SET c='six thousand eight hundred sixty-five' WHERE a=22010;\nUPDATE t2 SET c='seventeen thousand six hundred seventy-eight' WHERE a=22011;\nUPDATE t2 SET c='fifty thousand eight hundred seventy-one' WHERE a=22012;\nUPDATE t2 SET c='fifty-seven thousand four hundred eight' WHERE a=22013;\nUPDATE t2 SET c='four hundred twenty-five' WHERE a=22014;\nUPDATE t2 SET c='sixty-five thousand six' WHERE a=22015;\nUPDATE t2 SET c='twenty-four thousand fifty-two' WHERE a=22016;\nUPDATE t2 SET c='one thousand eight hundred' WHERE a=22017;\nUPDATE t2 SET c='thirteen thousand one hundred sixty-five' WHERE a=22018;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-three' WHERE a=22019;\nUPDATE t2 SET c='nine thousand nine hundred ninety-two' WHERE a=22020;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty-six' WHERE a=22021;\nUPDATE t2 SET c='eighty-two thousand eight hundred seventy-nine' WHERE a=22022;\nUPDATE t2 SET c='eighty-eight thousand five hundred seventy-two' WHERE a=22023;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty' WHERE a=22024;\nUPDATE t2 SET c='twenty thousand one hundred fifty-eight' WHERE a=22025;\nUPDATE t2 SET c='thirteen thousand one hundred forty-four' WHERE a=22026;\nUPDATE t2 SET c='thirty-six thousand eight hundred fifty-seven' WHERE a=22027;\nUPDATE t2 SET c='sixty-nine thousand three hundred ninety-eight' WHERE a=22028;\nUPDATE t2 SET c='sixty-six thousand four hundred forty-two' WHERE a=22029;\nUPDATE t2 SET c='fifty-three thousand eight hundred ninety-eight' WHERE a=22030;\nUPDATE t2 SET c='twenty-one thousand one hundred eighty-two' WHERE a=22031;\nUPDATE t2 SET c='thirty-six thousand five hundred fifteen' WHERE a=22032;\nUPDATE t2 SET c='seventy-four thousand eight hundred twenty-nine' WHERE a=22033;\nUPDATE t2 SET c='seventy-three thousand six hundred seventy-four' WHERE a=22034;\nUPDATE t2 SET c='seventeen thousand six hundred twenty-three' WHERE a=22035;\nUPDATE t2 SET c='sixty-seven thousand five hundred fifty-two' WHERE a=22036;\nUPDATE t2 SET c='six thousand two hundred forty-five' WHERE a=22037;\nUPDATE t2 SET c='one hundred five' WHERE a=22038;\nUPDATE t2 SET c='ninety-two thousand sixty-five' WHERE a=22039;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety-five' WHERE a=22040;\nUPDATE t2 SET c='sixty-three thousand four hundred eighty-three' WHERE a=22041;\nUPDATE t2 SET c='twenty-eight thousand seven hundred forty' WHERE a=22042;\nUPDATE t2 SET c='sixty-one thousand eight hundred sixty-five' WHERE a=22043;\nUPDATE t2 SET c='seventy thousand four hundred thirty' WHERE a=22044;\nUPDATE t2 SET c='twenty-eight thousand six hundred seventy-nine' WHERE a=22045;\nUPDATE t2 SET c='nineteen thousand two hundred ninety' WHERE a=22046;\nUPDATE t2 SET c='eighty-two thousand two hundred fifty-two' WHERE a=22047;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty' WHERE a=22048;\nUPDATE t2 SET c='fifty-one thousand six hundred eighty-eight' WHERE a=22049;\nUPDATE t2 SET c='twelve thousand seven hundred ninety' WHERE a=22050;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-eight' WHERE a=22051;\nUPDATE t2 SET c='twenty-four thousand four hundred eighty-two' WHERE a=22052;\nUPDATE t2 SET c='forty-two thousand eight hundred fifty-four' WHERE a=22053;\nUPDATE t2 SET c='forty-seven thousand four hundred eighty-two' WHERE a=22054;\nUPDATE t2 SET c='ninety-seven thousand five hundred six' WHERE a=22055;\nUPDATE t2 SET c='seventy thousand nine hundred ninety-seven' WHERE a=22056;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty-one' WHERE a=22057;\nUPDATE t2 SET c='twenty-six thousand nine hundred fifty-six' WHERE a=22058;\nUPDATE t2 SET c='thirty-nine thousand one hundred eighty-six' WHERE a=22059;\nUPDATE t2 SET c='sixteen thousand two hundred two' WHERE a=22060;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-two' WHERE a=22061;\nUPDATE t2 SET c='eighty-four thousand eight hundred forty' WHERE a=22062;\nUPDATE t2 SET c='four thousand seven hundred forty' WHERE a=22063;\nUPDATE t2 SET c='forty thousand four hundred seventy' WHERE a=22064;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty' WHERE a=22065;\nUPDATE t2 SET c='seventy-nine thousand four hundred fifty-seven' WHERE a=22066;\nUPDATE t2 SET c='twenty thousand four hundred eighty' WHERE a=22067;\nUPDATE t2 SET c='ten thousand four hundred ninety-three' WHERE a=22068;\nUPDATE t2 SET c='forty-eight thousand four hundred ninety' WHERE a=22069;\nUPDATE t2 SET c='seventy-one thousand seven hundred sixty' WHERE a=22070;\nUPDATE t2 SET c='seventy-three thousand nine hundred one' WHERE a=22071;\nUPDATE t2 SET c='thirteen thousand two hundred nineteen' WHERE a=22072;\nUPDATE t2 SET c='fifty-seven thousand five hundred ninety-four' WHERE a=22073;\nUPDATE t2 SET c='sixty-one thousand seven hundred eighty-eight' WHERE a=22074;\nUPDATE t2 SET c='nineteen thousand one hundred sixty-eight' WHERE a=22075;\nUPDATE t2 SET c='sixty-three thousand two hundred eighty-nine' WHERE a=22076;\nUPDATE t2 SET c='fifty thousand five hundred sixty-eight' WHERE a=22077;\nUPDATE t2 SET c='seventy-four thousand sixty-eight' WHERE a=22078;\nUPDATE t2 SET c='ninety-two thousand five hundred seventy-six' WHERE a=22079;\nUPDATE t2 SET c='fifty-nine thousand four hundred eighty-five' WHERE a=22080;\nUPDATE t2 SET c='sixty-one thousand five hundred eighty-five' WHERE a=22081;\nUPDATE t2 SET c='eighty-two thousand six hundred seventy-eight' WHERE a=22082;\nUPDATE t2 SET c='one thousand sixty-one' WHERE a=22083;\nUPDATE t2 SET c='thirty-nine thousand four hundred seven' WHERE a=22084;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-seven' WHERE a=22085;\nUPDATE t2 SET c='fifty-seven thousand seven hundred forty-five' WHERE a=22086;\nUPDATE t2 SET c='eighty-seven thousand two hundred one' WHERE a=22087;\nUPDATE t2 SET c='ninety-one thousand nine hundred seventy-nine' WHERE a=22088;\nUPDATE t2 SET c='eighty-six thousand eight hundred ninety-seven' WHERE a=22089;\nUPDATE t2 SET c='twenty-six thousand two hundred eighty-seven' WHERE a=22090;\nUPDATE t2 SET c='twenty-one thousand six hundred six' WHERE a=22091;\nUPDATE t2 SET c='sixty-five thousand three hundred twenty-one' WHERE a=22092;\nUPDATE t2 SET c='sixty-three thousand five hundred thirty' WHERE a=22093;\nUPDATE t2 SET c='forty-two thousand seven hundred sixty-one' WHERE a=22094;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty-three' WHERE a=22095;\nUPDATE t2 SET c='seventy-five thousand two hundred ninety-two' WHERE a=22096;\nUPDATE t2 SET c='fifty-six thousand three hundred eighty-three' WHERE a=22097;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=22098;\nUPDATE t2 SET c='eighty-four thousand nine hundred sixty-seven' WHERE a=22099;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-six' WHERE a=22100;\nUPDATE t2 SET c='twenty-eight thousand three hundred' WHERE a=22101;\nUPDATE t2 SET c='seventy-five thousand four hundred sixty-two' WHERE a=22102;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixty' WHERE a=22103;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-six' WHERE a=22104;\nUPDATE t2 SET c='sixty-five thousand five hundred sixty-seven' WHERE a=22105;\nUPDATE t2 SET c='twenty-four thousand eighty-five' WHERE a=22106;\nUPDATE t2 SET c='ninety-seven thousand two hundred twelve' WHERE a=22107;\nUPDATE t2 SET c='sixty-seven thousand six hundred thirty-five' WHERE a=22108;\nUPDATE t2 SET c='three thousand eight hundred twenty-three' WHERE a=22109;\nUPDATE t2 SET c='fifty-three thousand six hundred thirty' WHERE a=22110;\nUPDATE t2 SET c='thirty-four thousand four hundred seventy-one' WHERE a=22111;\nUPDATE t2 SET c='thirty-three thousand six hundred seventy-seven' WHERE a=22112;\nUPDATE t2 SET c='forty thousand seven hundred fifty-two' WHERE a=22113;\nUPDATE t2 SET c='two thousand eight hundred eighty' WHERE a=22114;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty' WHERE a=22115;\nUPDATE t2 SET c='six hundred seventy-four' WHERE a=22116;\nUPDATE t2 SET c='seventy-four thousand four hundred thirty-four' WHERE a=22117;\nUPDATE t2 SET c='fifty-two thousand five hundred twenty-three' WHERE a=22118;\nUPDATE t2 SET c='ninety-four thousand seven hundred seventy-nine' WHERE a=22119;\nUPDATE t2 SET c='eight thousand thirty-nine' WHERE a=22120;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-eight' WHERE a=22121;\nUPDATE t2 SET c='fifty-one thousand one hundred twenty-two' WHERE a=22122;\nUPDATE t2 SET c='forty-nine thousand one hundred fifty-three' WHERE a=22123;\nUPDATE t2 SET c='eighty-nine thousand eight hundred fifty-three' WHERE a=22124;\nUPDATE t2 SET c='fifty-two thousand nine hundred forty-five' WHERE a=22125;\nUPDATE t2 SET c='ninety-nine thousand two hundred fourteen' WHERE a=22126;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-one' WHERE a=22127;\nUPDATE t2 SET c='one hundred seven' WHERE a=22128;\nUPDATE t2 SET c='thirty-two thousand four hundred thirty-six' WHERE a=22129;\nUPDATE t2 SET c='eleven thousand eight hundred eighty-two' WHERE a=22130;\nUPDATE t2 SET c='seventy-one thousand three hundred sixteen' WHERE a=22131;\nUPDATE t2 SET c='seventy-three thousand six hundred eighteen' WHERE a=22132;\nUPDATE t2 SET c='sixty-four thousand nine hundred ninety' WHERE a=22133;\nUPDATE t2 SET c='ninety-seven thousand eight hundred ninety-four' WHERE a=22134;\nUPDATE t2 SET c='eighty-eight thousand nine hundred ninety-eight' WHERE a=22135;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-eight' WHERE a=22136;\nUPDATE t2 SET c='ninety-seven thousand seventy-two' WHERE a=22137;\nUPDATE t2 SET c='ninety-four thousand nine hundred one' WHERE a=22138;\nUPDATE t2 SET c='three thousand three hundred forty-six' WHERE a=22139;\nUPDATE t2 SET c='nine thousand two hundred seventy-five' WHERE a=22140;\nUPDATE t2 SET c='sixty-eight thousand one hundred forty-six' WHERE a=22141;\nUPDATE t2 SET c='forty-one thousand two hundred seventy-seven' WHERE a=22142;\nUPDATE t2 SET c='forty thousand four hundred six' WHERE a=22143;\nUPDATE t2 SET c='thirty-five thousand eight hundred eighty-one' WHERE a=22144;\nUPDATE t2 SET c='eighty-eight thousand seven hundred sixty-six' WHERE a=22145;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety-nine' WHERE a=22146;\nUPDATE t2 SET c='sixty-six thousand nine hundred forty-eight' WHERE a=22147;\nUPDATE t2 SET c='eighty-eight thousand one hundred fifty-seven' WHERE a=22148;\nUPDATE t2 SET c='sixty-three thousand eight hundred three' WHERE a=22149;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-five' WHERE a=22150;\nUPDATE t2 SET c='four thousand eight hundred ninety-four' WHERE a=22151;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-three' WHERE a=22152;\nUPDATE t2 SET c='four thousand two hundred eighty-four' WHERE a=22153;\nUPDATE t2 SET c='twenty-one thousand five hundred seventy-eight' WHERE a=22154;\nUPDATE t2 SET c='sixty-nine thousand six hundred eighty-three' WHERE a=22155;\nUPDATE t2 SET c='five hundred thirty-five' WHERE a=22156;\nUPDATE t2 SET c='thirty-four thousand five hundred fifty-nine' WHERE a=22157;\nUPDATE t2 SET c='forty thousand two hundred ninety-one' WHERE a=22158;\nUPDATE t2 SET c='six thousand eight hundred sixty-nine' WHERE a=22159;\nUPDATE t2 SET c='fifty-one thousand eight hundred fifty-nine' WHERE a=22160;\nUPDATE t2 SET c='sixty-four thousand four hundred sixty-seven' WHERE a=22161;\nUPDATE t2 SET c='ninety-eight thousand three hundred forty-one' WHERE a=22162;\nUPDATE t2 SET c='ninety thousand five hundred sixty-eight' WHERE a=22163;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-three' WHERE a=22164;\nUPDATE t2 SET c='fifteen thousand four hundred forty-four' WHERE a=22165;\nUPDATE t2 SET c='six thousand eight hundred one' WHERE a=22166;\nUPDATE t2 SET c='eighty-eight thousand one hundred eighty-three' WHERE a=22167;\nUPDATE t2 SET c='forty-seven thousand ninety-nine' WHERE a=22168;\nUPDATE t2 SET c='sixty-eight thousand one hundred ninety' WHERE a=22169;\nUPDATE t2 SET c='seven thousand six hundred seventy-eight' WHERE a=22170;\nUPDATE t2 SET c='fifty-seven thousand seven hundred four' WHERE a=22171;\nUPDATE t2 SET c='twenty-six thousand one hundred sixty-one' WHERE a=22172;\nUPDATE t2 SET c='seventy-six thousand six hundred forty-seven' WHERE a=22173;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-one' WHERE a=22174;\nUPDATE t2 SET c='eighty-six thousand fifty-five' WHERE a=22175;\nUPDATE t2 SET c='ninety-two thousand eight hundred thirty-nine' WHERE a=22176;\nUPDATE t2 SET c='ninety-two thousand seven hundred thirty-four' WHERE a=22177;\nUPDATE t2 SET c='ninety-three thousand forty-nine' WHERE a=22178;\nUPDATE t2 SET c='forty-nine thousand one hundred forty-five' WHERE a=22179;\nUPDATE t2 SET c='fourteen thousand forty-seven' WHERE a=22180;\nUPDATE t2 SET c='eleven thousand five hundred thirty-five' WHERE a=22181;\nUPDATE t2 SET c='fifty-two thousand nine hundred twenty-five' WHERE a=22182;\nUPDATE t2 SET c='sixty-nine thousand four hundred ninety-six' WHERE a=22183;\nUPDATE t2 SET c='ninety-four thousand one hundred thirty-six' WHERE a=22184;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirteen' WHERE a=22185;\nUPDATE t2 SET c='thirty-nine thousand eight hundred ninety-seven' WHERE a=22186;\nUPDATE t2 SET c='seventy-five thousand four hundred thirty-five' WHERE a=22187;\nUPDATE t2 SET c='seven thousand three hundred seventy-nine' WHERE a=22188;\nUPDATE t2 SET c='ninety-six thousand five hundred ninety-six' WHERE a=22189;\nUPDATE t2 SET c='four thousand seven hundred four' WHERE a=22190;\nUPDATE t2 SET c='twenty-three thousand six hundred ninety-one' WHERE a=22191;\nUPDATE t2 SET c='ninety-nine thousand six hundred sixty-seven' WHERE a=22192;\nUPDATE t2 SET c='ninety-seven thousand four hundred twelve' WHERE a=22193;\nUPDATE t2 SET c='sixteen thousand seven hundred eight' WHERE a=22194;\nUPDATE t2 SET c='twenty-three thousand two hundred seventy-seven' WHERE a=22195;\nUPDATE t2 SET c='forty-nine thousand six hundred thirty-eight' WHERE a=22196;\nUPDATE t2 SET c='sixty-eight thousand eight hundred forty-six' WHERE a=22197;\nUPDATE t2 SET c='eighty-two thousand three hundred eighty' WHERE a=22198;\nUPDATE t2 SET c='fifty-six thousand one hundred forty-nine' WHERE a=22199;\nUPDATE t2 SET c='eighty-seven thousand one hundred ten' WHERE a=22200;\nUPDATE t2 SET c='ninety-eight thousand five hundred ninety-seven' WHERE a=22201;\nUPDATE t2 SET c='thirty-eight thousand four hundred eighty-eight' WHERE a=22202;\nUPDATE t2 SET c='eighty-five thousand ninety-seven' WHERE a=22203;\nUPDATE t2 SET c='eleven thousand fifty-six' WHERE a=22204;\nUPDATE t2 SET c='fourteen thousand seven hundred seventy-six' WHERE a=22205;\nUPDATE t2 SET c='fifty-nine thousand thirty' WHERE a=22206;\nUPDATE t2 SET c='fifty-six thousand eight hundred ninety-two' WHERE a=22207;\nUPDATE t2 SET c='forty-six thousand six hundred eighty-eight' WHERE a=22208;\nUPDATE t2 SET c='eighteen thousand three hundred one' WHERE a=22209;\nUPDATE t2 SET c='ninety-six thousand seven hundred thirty-six' WHERE a=22210;\nUPDATE t2 SET c='twelve thousand' WHERE a=22211;\nUPDATE t2 SET c='ninety-nine thousand five hundred twenty' WHERE a=22212;\nUPDATE t2 SET c='eighteen thousand one hundred twenty-nine' WHERE a=22213;\nUPDATE t2 SET c='eighty-four thousand two hundred twenty-eight' WHERE a=22214;\nUPDATE t2 SET c='forty-seven thousand four hundred thirty-eight' WHERE a=22215;\nUPDATE t2 SET c='eighty-nine thousand seven hundred ninety-one' WHERE a=22216;\nUPDATE t2 SET c='twenty-one thousand six hundred eighty-one' WHERE a=22217;\nUPDATE t2 SET c='sixty-six thousand nine hundred ninety-six' WHERE a=22218;\nUPDATE t2 SET c='forty-five thousand one hundred thirty-one' WHERE a=22219;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifteen' WHERE a=22220;\nUPDATE t2 SET c='seventy-two thousand ninety-seven' WHERE a=22221;\nUPDATE t2 SET c='forty-nine thousand two hundred twenty' WHERE a=22222;\nUPDATE t2 SET c='nine thousand twenty-eight' WHERE a=22223;\nUPDATE t2 SET c='seventeen thousand four hundred seventy-six' WHERE a=22224;\nUPDATE t2 SET c='five hundred four' WHERE a=22225;\nUPDATE t2 SET c='ten thousand nine hundred nine' WHERE a=22226;\nUPDATE t2 SET c='seventy thousand three hundred six' WHERE a=22227;\nUPDATE t2 SET c='seventy-one thousand five hundred six' WHERE a=22228;\nUPDATE t2 SET c='sixty-four thousand one hundred sixty-eight' WHERE a=22229;\nUPDATE t2 SET c='thirteen thousand two hundred' WHERE a=22230;\nUPDATE t2 SET c='forty-seven thousand one hundred eleven' WHERE a=22231;\nUPDATE t2 SET c='twenty-nine thousand three hundred sixty-five' WHERE a=22232;\nUPDATE t2 SET c='sixty-six thousand three hundred ninety-one' WHERE a=22233;\nUPDATE t2 SET c='one thousand six hundred eighty' WHERE a=22234;\nUPDATE t2 SET c='twelve thousand three hundred thirty-two' WHERE a=22235;\nUPDATE t2 SET c='sixty-two thousand six hundred seventy-two' WHERE a=22236;\nUPDATE t2 SET c='twenty-four thousand two hundred seventy-four' WHERE a=22237;\nUPDATE t2 SET c='eight thousand seven hundred fourteen' WHERE a=22238;\nUPDATE t2 SET c='twenty-one thousand four hundred seventy-four' WHERE a=22239;\nUPDATE t2 SET c='fifty-two thousand two hundred thirty-nine' WHERE a=22240;\nUPDATE t2 SET c='ten thousand three hundred seventy-seven' WHERE a=22241;\nUPDATE t2 SET c='thirty-nine thousand six hundred six' WHERE a=22242;\nUPDATE t2 SET c='fifty-nine thousand seven hundred fifty-five' WHERE a=22243;\nUPDATE t2 SET c='seventy-one thousand six hundred thirty-eight' WHERE a=22244;\nUPDATE t2 SET c='eighty-five thousand six hundred twenty-seven' WHERE a=22245;\nUPDATE t2 SET c='twenty thousand seventy-one' WHERE a=22246;\nUPDATE t2 SET c='sixty-five thousand seven hundred five' WHERE a=22247;\nUPDATE t2 SET c='sixty-two thousand two hundred eighty-one' WHERE a=22248;\nUPDATE t2 SET c='seventy-one thousand nine hundred seventy' WHERE a=22249;\nUPDATE t2 SET c='thirty-four thousand three hundred seventy-six' WHERE a=22250;\nUPDATE t2 SET c='sixty-six thousand six hundred three' WHERE a=22251;\nUPDATE t2 SET c='twelve thousand five hundred seventy-one' WHERE a=22252;\nUPDATE t2 SET c='seventy thousand one hundred eighty-two' WHERE a=22253;\nUPDATE t2 SET c='eighty-five thousand three hundred seventy-two' WHERE a=22254;\nUPDATE t2 SET c='sixty-three thousand nine hundred eight' WHERE a=22255;\nUPDATE t2 SET c='eight thousand six hundred eighty-nine' WHERE a=22256;\nUPDATE t2 SET c='fifty thousand three hundred forty-three' WHERE a=22257;\nUPDATE t2 SET c='thirty-five thousand three hundred thirty-three' WHERE a=22258;\nUPDATE t2 SET c='forty-nine thousand nine hundred forty-eight' WHERE a=22259;\nUPDATE t2 SET c='fifteen thousand one hundred eighty-eight' WHERE a=22260;\nUPDATE t2 SET c='twenty-one thousand nine hundred forty' WHERE a=22261;\nUPDATE t2 SET c='forty-eight thousand one hundred fifty-nine' WHERE a=22262;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-four' WHERE a=22263;\nUPDATE t2 SET c='three thousand two hundred twenty-seven' WHERE a=22264;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-three' WHERE a=22265;\nUPDATE t2 SET c='twelve thousand two hundred eighty-five' WHERE a=22266;\nUPDATE t2 SET c='eighty-five thousand one hundred three' WHERE a=22267;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifteen' WHERE a=22268;\nUPDATE t2 SET c='seventy thousand six hundred twenty-eight' WHERE a=22269;\nUPDATE t2 SET c='seventy-one thousand seven hundred seventy-five' WHERE a=22270;\nUPDATE t2 SET c='seventy-four thousand seven hundred twenty-three' WHERE a=22271;\nUPDATE t2 SET c='twenty-nine thousand fifty-seven' WHERE a=22272;\nUPDATE t2 SET c='three thousand one hundred twenty-eight' WHERE a=22273;\nUPDATE t2 SET c='fifty-six thousand five hundred seven' WHERE a=22274;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-one' WHERE a=22275;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-seven' WHERE a=22276;\nUPDATE t2 SET c='eleven thousand two hundred seventy-nine' WHERE a=22277;\nUPDATE t2 SET c='eighty-six thousand five hundred ninety' WHERE a=22278;\nUPDATE t2 SET c='thirty-five thousand two' WHERE a=22279;\nUPDATE t2 SET c='sixty-two thousand eight hundred twenty-one' WHERE a=22280;\nUPDATE t2 SET c='fifty-two thousand seventy-two' WHERE a=22281;\nUPDATE t2 SET c='fifty-six thousand two hundred fifty-seven' WHERE a=22282;\nUPDATE t2 SET c='sixty-four thousand seven hundred six' WHERE a=22283;\nUPDATE t2 SET c='seventy-three thousand ninety-seven' WHERE a=22284;\nUPDATE t2 SET c='ninety thousand two hundred seventy-two' WHERE a=22285;\nUPDATE t2 SET c='thirty-six thousand three hundred thirty-three' WHERE a=22286;\nUPDATE t2 SET c='fifteen thousand four hundred ninety-three' WHERE a=22287;\nUPDATE t2 SET c='forty-nine thousand six hundred seventy-three' WHERE a=22288;\nUPDATE t2 SET c='eighty-four thousand eight hundred sixty-three' WHERE a=22289;\nUPDATE t2 SET c='thirty thousand eighty-six' WHERE a=22290;\nUPDATE t2 SET c='eighty-eight thousand three hundred eighty-five' WHERE a=22291;\nUPDATE t2 SET c='seventeen thousand six hundred ninety-four' WHERE a=22292;\nUPDATE t2 SET c='forty-four thousand one hundred seventy-four' WHERE a=22293;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-four' WHERE a=22294;\nUPDATE t2 SET c='forty-five thousand eight hundred thirteen' WHERE a=22295;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-six' WHERE a=22296;\nUPDATE t2 SET c='ninety-two thousand five hundred eleven' WHERE a=22297;\nUPDATE t2 SET c='seventy-nine thousand six hundred twenty' WHERE a=22298;\nUPDATE t2 SET c='thirty-two thousand four hundred twenty-nine' WHERE a=22299;\nUPDATE t2 SET c='five hundred fifty-eight' WHERE a=22300;\nUPDATE t2 SET c='ninety thousand seven hundred forty-six' WHERE a=22301;\nUPDATE t2 SET c='eleven thousand two hundred forty' WHERE a=22302;\nUPDATE t2 SET c='eighty thousand five hundred thirty-six' WHERE a=22303;\nUPDATE t2 SET c='twenty-seven thousand three hundred four' WHERE a=22304;\nUPDATE t2 SET c='sixteen thousand six hundred eighty-five' WHERE a=22305;\nUPDATE t2 SET c='ninety thousand five hundred ninety-one' WHERE a=22306;\nUPDATE t2 SET c='sixty-seven thousand seven hundred seventy-four' WHERE a=22307;\nUPDATE t2 SET c='forty-nine thousand nine hundred thirty-eight' WHERE a=22308;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-two' WHERE a=22309;\nUPDATE t2 SET c='twenty-one thousand three hundred fifty-nine' WHERE a=22310;\nUPDATE t2 SET c='eight thousand six hundred thirty-five' WHERE a=22311;\nUPDATE t2 SET c='fifty-one thousand seven hundred five' WHERE a=22312;\nUPDATE t2 SET c='seventy-eight thousand seven hundred eighty-two' WHERE a=22313;\nUPDATE t2 SET c='twenty-six thousand seven hundred ninety-three' WHERE a=22314;\nUPDATE t2 SET c='sixty-nine thousand one hundred twenty-five' WHERE a=22315;\nUPDATE t2 SET c='sixteen thousand one hundred twenty-one' WHERE a=22316;\nUPDATE t2 SET c='sixteen thousand eight hundred eighty-six' WHERE a=22317;\nUPDATE t2 SET c='eighty-five thousand nine hundred twenty-four' WHERE a=22318;\nUPDATE t2 SET c='ninety-four thousand three hundred thirty-five' WHERE a=22319;\nUPDATE t2 SET c='seventy-two thousand fifty-four' WHERE a=22320;\nUPDATE t2 SET c='twenty-five thousand six hundred two' WHERE a=22321;\nUPDATE t2 SET c='fifty-three thousand nine hundred twelve' WHERE a=22322;\nUPDATE t2 SET c='thirteen thousand three hundred' WHERE a=22323;\nUPDATE t2 SET c='forty-three thousand forty-four' WHERE a=22324;\nUPDATE t2 SET c='fifty-four thousand four hundred fifty-five' WHERE a=22325;\nUPDATE t2 SET c='forty-one thousand eight hundred forty-five' WHERE a=22326;\nUPDATE t2 SET c='forty-three thousand eight hundred twenty-two' WHERE a=22327;\nUPDATE t2 SET c='thirty-four thousand seven hundred seventy-four' WHERE a=22328;\nUPDATE t2 SET c='thirty-four thousand six hundred fourteen' WHERE a=22329;\nUPDATE t2 SET c='twenty-five thousand two hundred four' WHERE a=22330;\nUPDATE t2 SET c='forty-two thousand one hundred fifty-nine' WHERE a=22331;\nUPDATE t2 SET c='thirty thousand four hundred six' WHERE a=22332;\nUPDATE t2 SET c='ninety-eight thousand two hundred thirty-five' WHERE a=22333;\nUPDATE t2 SET c='twenty-four thousand one hundred thirty-two' WHERE a=22334;\nUPDATE t2 SET c='twenty-seven thousand two hundred twenty-four' WHERE a=22335;\nUPDATE t2 SET c='sixty-one thousand nine hundred sixty-seven' WHERE a=22336;\nUPDATE t2 SET c='forty-nine thousand five hundred seventy-three' WHERE a=22337;\nUPDATE t2 SET c='two thousand fifty-nine' WHERE a=22338;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-seven' WHERE a=22339;\nUPDATE t2 SET c='sixty-eight thousand nine hundred seventeen' WHERE a=22340;\nUPDATE t2 SET c='seventy-one thousand nine hundred eighty-two' WHERE a=22341;\nUPDATE t2 SET c='two thousand six hundred forty-five' WHERE a=22342;\nUPDATE t2 SET c='twenty-six thousand nine' WHERE a=22343;\nUPDATE t2 SET c='ninety-one thousand eight hundred ninety-six' WHERE a=22344;\nUPDATE t2 SET c='seventeen thousand five hundred seventy-five' WHERE a=22345;\nUPDATE t2 SET c='ninety-six thousand five hundred ten' WHERE a=22346;\nUPDATE t2 SET c='seventy-nine thousand nine hundred forty-nine' WHERE a=22347;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-eight' WHERE a=22348;\nUPDATE t2 SET c='eighty-three thousand one hundred six' WHERE a=22349;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-eight' WHERE a=22350;\nUPDATE t2 SET c='thirty-seven thousand six hundred fourteen' WHERE a=22351;\nUPDATE t2 SET c='ninety-three thousand one hundred sixty-five' WHERE a=22352;\nUPDATE t2 SET c='seventy-seven thousand nine hundred fifty-nine' WHERE a=22353;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-two' WHERE a=22354;\nUPDATE t2 SET c='fifty-nine thousand eight hundred eighty-four' WHERE a=22355;\nUPDATE t2 SET c='forty thousand six hundred forty-one' WHERE a=22356;\nUPDATE t2 SET c='thirty-one thousand five hundred forty-five' WHERE a=22357;\nUPDATE t2 SET c='twenty-nine thousand three hundred twenty-nine' WHERE a=22358;\nUPDATE t2 SET c='twenty-one thousand two hundred seventy-eight' WHERE a=22359;\nUPDATE t2 SET c='ninety-two thousand eight hundred eighty-six' WHERE a=22360;\nUPDATE t2 SET c='five thousand one hundred twenty' WHERE a=22361;\nUPDATE t2 SET c='seventy thousand nine hundred fifty-five' WHERE a=22362;\nUPDATE t2 SET c='ninety-three thousand one hundred forty-nine' WHERE a=22363;\nUPDATE t2 SET c='fifty-six thousand five hundred fifty-one' WHERE a=22364;\nUPDATE t2 SET c='twenty-eight thousand six hundred forty-three' WHERE a=22365;\nUPDATE t2 SET c='eighty-seven thousand nine hundred forty-five' WHERE a=22366;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-five' WHERE a=22367;\nUPDATE t2 SET c='sixty-seven thousand five hundred two' WHERE a=22368;\nUPDATE t2 SET c='seventy-eight thousand four hundred fifty-one' WHERE a=22369;\nUPDATE t2 SET c='forty-nine thousand three hundred thirty-one' WHERE a=22370;\nUPDATE t2 SET c='eighty-six thousand seven hundred forty-three' WHERE a=22371;\nUPDATE t2 SET c='sixty-five thousand one hundred eighty-four' WHERE a=22372;\nUPDATE t2 SET c='forty-one thousand four hundred sixty-eight' WHERE a=22373;\nUPDATE t2 SET c='forty-seven thousand fifteen' WHERE a=22374;\nUPDATE t2 SET c='two thousand five hundred thirty-one' WHERE a=22375;\nUPDATE t2 SET c='nineteen thousand three hundred twenty-one' WHERE a=22376;\nUPDATE t2 SET c='forty-four thousand six hundred thirty-four' WHERE a=22377;\nUPDATE t2 SET c='ninety-six thousand nine hundred seventy-eight' WHERE a=22378;\nUPDATE t2 SET c='forty-one thousand six hundred ninety-two' WHERE a=22379;\nUPDATE t2 SET c='five thousand five hundred eighty-seven' WHERE a=22380;\nUPDATE t2 SET c='forty-five thousand three hundred eighty-four' WHERE a=22381;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-four' WHERE a=22382;\nUPDATE t2 SET c='ninety-two thousand nine hundred two' WHERE a=22383;\nUPDATE t2 SET c='eight thousand fifty-nine' WHERE a=22384;\nUPDATE t2 SET c='five thousand four hundred eighty-six' WHERE a=22385;\nUPDATE t2 SET c='ninety-four thousand four hundred fifty-two' WHERE a=22386;\nUPDATE t2 SET c='twenty thousand one hundred' WHERE a=22387;\nUPDATE t2 SET c='eighteen thousand twelve' WHERE a=22388;\nUPDATE t2 SET c='twenty-eight thousand five hundred thirty-five' WHERE a=22389;\nUPDATE t2 SET c='seventy-one thousand three hundred twenty-nine' WHERE a=22390;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-seven' WHERE a=22391;\nUPDATE t2 SET c='thirty-three thousand six hundred five' WHERE a=22392;\nUPDATE t2 SET c='thirty-nine thousand twenty-seven' WHERE a=22393;\nUPDATE t2 SET c='twenty-one thousand forty-five' WHERE a=22394;\nUPDATE t2 SET c='fourteen thousand one hundred fifty-three' WHERE a=22395;\nUPDATE t2 SET c='fifty-three thousand five hundred ninety-eight' WHERE a=22396;\nUPDATE t2 SET c='thirty-seven thousand one hundred sixty-four' WHERE a=22397;\nUPDATE t2 SET c='sixty-six thousand two hundred thirty-four' WHERE a=22398;\nUPDATE t2 SET c='forty-five thousand nine hundred seventy-six' WHERE a=22399;\nUPDATE t2 SET c='thirty-three thousand ninety-one' WHERE a=22400;\nUPDATE t2 SET c='seventy-eight thousand eight hundred eighty' WHERE a=22401;\nUPDATE t2 SET c='forty-eight thousand five hundred ninety-three' WHERE a=22402;\nUPDATE t2 SET c='thirty thousand seven hundred ninety-three' WHERE a=22403;\nUPDATE t2 SET c='two thousand six hundred sixty-three' WHERE a=22404;\nUPDATE t2 SET c='forty-eight thousand one hundred eighteen' WHERE a=22405;\nUPDATE t2 SET c='twenty-two thousand nine hundred ninety' WHERE a=22406;\nUPDATE t2 SET c='twenty-five thousand six hundred seventy-seven' WHERE a=22407;\nUPDATE t2 SET c='ninety-two thousand one hundred thirty-four' WHERE a=22408;\nUPDATE t2 SET c='eight thousand nine hundred eighty-one' WHERE a=22409;\nUPDATE t2 SET c='forty-three thousand six hundred fifty' WHERE a=22410;\nUPDATE t2 SET c='twelve thousand four hundred eight' WHERE a=22411;\nUPDATE t2 SET c='forty-one thousand eight hundred eighteen' WHERE a=22412;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirty-nine' WHERE a=22413;\nUPDATE t2 SET c='twenty-two thousand seven hundred fifty' WHERE a=22414;\nUPDATE t2 SET c='thirty-one thousand eight hundred ninety-four' WHERE a=22415;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty-six' WHERE a=22416;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty' WHERE a=22417;\nUPDATE t2 SET c='thirty-seven thousand three hundred sixty-eight' WHERE a=22418;\nUPDATE t2 SET c='thirty-two thousand five hundred twenty-five' WHERE a=22419;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=22420;\nUPDATE t2 SET c='fifty-nine thousand five hundred thirty-three' WHERE a=22421;\nUPDATE t2 SET c='twenty-nine thousand seven hundred fifty-four' WHERE a=22422;\nUPDATE t2 SET c='twenty-nine thousand three hundred fifty-six' WHERE a=22423;\nUPDATE t2 SET c='ninety-one thousand three hundred fifty-seven' WHERE a=22424;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-two' WHERE a=22425;\nUPDATE t2 SET c='fifteen thousand four hundred ninety' WHERE a=22426;\nUPDATE t2 SET c='forty-four thousand five hundred forty-six' WHERE a=22427;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-five' WHERE a=22428;\nUPDATE t2 SET c='sixty-one thousand two hundred forty-eight' WHERE a=22429;\nUPDATE t2 SET c='seventy-three thousand five hundred ninety-six' WHERE a=22430;\nUPDATE t2 SET c='two hundred eleven' WHERE a=22431;\nUPDATE t2 SET c='twenty-six thousand five hundred' WHERE a=22432;\nUPDATE t2 SET c='sixty-one thousand three hundred twenty-three' WHERE a=22433;\nUPDATE t2 SET c='fifty-eight thousand seven hundred sixty-eight' WHERE a=22434;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty-three' WHERE a=22435;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-one' WHERE a=22436;\nUPDATE t2 SET c='thirty-three thousand nine hundred six' WHERE a=22437;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-two' WHERE a=22438;\nUPDATE t2 SET c='seventeen thousand nine hundred fifty-four' WHERE a=22439;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-seven' WHERE a=22440;\nUPDATE t2 SET c='thirty thousand six hundred seventeen' WHERE a=22441;\nUPDATE t2 SET c='eighty-two thousand four hundred ninety-seven' WHERE a=22442;\nUPDATE t2 SET c='sixty-five thousand five hundred fifteen' WHERE a=22443;\nUPDATE t2 SET c='sixty-two thousand ninety-nine' WHERE a=22444;\nUPDATE t2 SET c='fifteen thousand seven hundred twenty-one' WHERE a=22445;\nUPDATE t2 SET c='eighty-three thousand seven hundred twenty-six' WHERE a=22446;\nUPDATE t2 SET c='thirty-nine thousand twenty-seven' WHERE a=22447;\nUPDATE t2 SET c='sixty-four thousand five hundred ninety-four' WHERE a=22448;\nUPDATE t2 SET c='thirty-eight thousand one hundred fifty-nine' WHERE a=22449;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-five' WHERE a=22450;\nUPDATE t2 SET c='ninety-seven thousand seven hundred fifty-eight' WHERE a=22451;\nUPDATE t2 SET c='ninety-seven thousand four hundred twenty-nine' WHERE a=22452;\nUPDATE t2 SET c='twenty-four thousand four hundred fifty-two' WHERE a=22453;\nUPDATE t2 SET c='forty-three thousand eight hundred seventy-four' WHERE a=22454;\nUPDATE t2 SET c='forty-four thousand six hundred seventy-four' WHERE a=22455;\nUPDATE t2 SET c='twenty thousand sixty-six' WHERE a=22456;\nUPDATE t2 SET c='ninety-two thousand seven hundred fifty-four' WHERE a=22457;\nUPDATE t2 SET c='seventy-six thousand four hundred six' WHERE a=22458;\nUPDATE t2 SET c='fifty-two thousand seven hundred forty-two' WHERE a=22459;\nUPDATE t2 SET c='thirty-four thousand eight hundred thirty' WHERE a=22460;\nUPDATE t2 SET c='ninety-two thousand five hundred twenty' WHERE a=22461;\nUPDATE t2 SET c='twelve thousand nine hundred ninety' WHERE a=22462;\nUPDATE t2 SET c='sixty-two thousand two hundred seventy-seven' WHERE a=22463;\nUPDATE t2 SET c='forty-two thousand eight hundred fourteen' WHERE a=22464;\nUPDATE t2 SET c='ninety-six thousand seven hundred sixty-one' WHERE a=22465;\nUPDATE t2 SET c='fifty-five thousand nine hundred fifty-three' WHERE a=22466;\nUPDATE t2 SET c='ten thousand four hundred ninety-seven' WHERE a=22467;\nUPDATE t2 SET c='ninety-three thousand one hundred seventy-six' WHERE a=22468;\nUPDATE t2 SET c='seventy-two thousand nine hundred ninety-six' WHERE a=22469;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifty-six' WHERE a=22470;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-seven' WHERE a=22471;\nUPDATE t2 SET c='twenty-one thousand eight hundred twenty-nine' WHERE a=22472;\nUPDATE t2 SET c='nine thousand one hundred seventy-four' WHERE a=22473;\nUPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=22474;\nUPDATE t2 SET c='thirty-three thousand one hundred seventy-six' WHERE a=22475;\nUPDATE t2 SET c='sixty-seven thousand four hundred thirty-five' WHERE a=22476;\nUPDATE t2 SET c='sixteen thousand sixty-six' WHERE a=22477;\nUPDATE t2 SET c='five thousand seventy-nine' WHERE a=22478;\nUPDATE t2 SET c='forty-seven thousand five hundred eighty-eight' WHERE a=22479;\nUPDATE t2 SET c='sixty-two thousand six hundred seventy-seven' WHERE a=22480;\nUPDATE t2 SET c='five thousand one hundred seventy-five' WHERE a=22481;\nUPDATE t2 SET c='three hundred sixty' WHERE a=22482;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety' WHERE a=22483;\nUPDATE t2 SET c='sixty-four thousand two hundred ninety-nine' WHERE a=22484;\nUPDATE t2 SET c='ninety-seven thousand ninety-four' WHERE a=22485;\nUPDATE t2 SET c='seventy-six thousand one hundred fifty-four' WHERE a=22486;\nUPDATE t2 SET c='fourteen thousand two hundred sixty-seven' WHERE a=22487;\nUPDATE t2 SET c='fifty-two thousand nine hundred five' WHERE a=22488;\nUPDATE t2 SET c='thirty-nine thousand six hundred fifty-three' WHERE a=22489;\nUPDATE t2 SET c='eighty-nine thousand two hundred ninety' WHERE a=22490;\nUPDATE t2 SET c='fifty-nine thousand five hundred eight' WHERE a=22491;\nUPDATE t2 SET c='fifty-nine thousand seven hundred ninety-seven' WHERE a=22492;\nUPDATE t2 SET c='six thousand four hundred sixty' WHERE a=22493;\nUPDATE t2 SET c='sixty-two thousand seven hundred' WHERE a=22494;\nUPDATE t2 SET c='eighty-five thousand two hundred seventy-seven' WHERE a=22495;\nUPDATE t2 SET c='seventy-six thousand nine hundred seventy-one' WHERE a=22496;\nUPDATE t2 SET c='fourteen thousand four hundred eighty-nine' WHERE a=22497;\nUPDATE t2 SET c='ninety-four thousand nine hundred thirty-nine' WHERE a=22498;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-two' WHERE a=22499;\nUPDATE t2 SET c='thirty-seven thousand seven hundred ninety-nine' WHERE a=22500;\nUPDATE t2 SET c='fifty-eight thousand five hundred eighteen' WHERE a=22501;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty' WHERE a=22502;\nUPDATE t2 SET c='seventy-one thousand three hundred forty-eight' WHERE a=22503;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-eight' WHERE a=22504;\nUPDATE t2 SET c='thirty-seven thousand nine hundred eighteen' WHERE a=22505;\nUPDATE t2 SET c='thirty-four thousand one hundred twenty-eight' WHERE a=22506;\nUPDATE t2 SET c='sixty-four thousand two hundred three' WHERE a=22507;\nUPDATE t2 SET c='thirteen thousand one hundred twenty' WHERE a=22508;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-one' WHERE a=22509;\nUPDATE t2 SET c='seventy-seven thousand fifty-one' WHERE a=22510;\nUPDATE t2 SET c='thirty thousand five hundred six' WHERE a=22511;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-four' WHERE a=22512;\nUPDATE t2 SET c='six thousand eight hundred eighty-three' WHERE a=22513;\nUPDATE t2 SET c='eighty-three thousand seven hundred eight' WHERE a=22514;\nUPDATE t2 SET c='forty thousand five hundred seventy-two' WHERE a=22515;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-one' WHERE a=22516;\nUPDATE t2 SET c='eighty-seven thousand nine hundred seven' WHERE a=22517;\nUPDATE t2 SET c='forty thousand seventy-eight' WHERE a=22518;\nUPDATE t2 SET c='thirty-three thousand six hundred fifty-five' WHERE a=22519;\nUPDATE t2 SET c='eighty-seven thousand five hundred four' WHERE a=22520;\nUPDATE t2 SET c='forty-three thousand two hundred eighty-nine' WHERE a=22521;\nUPDATE t2 SET c='ninety-two thousand nine hundred twenty-five' WHERE a=22522;\nUPDATE t2 SET c='ninety-eight thousand eight hundred three' WHERE a=22523;\nUPDATE t2 SET c='fifty-nine thousand nine hundred fifty' WHERE a=22524;\nUPDATE t2 SET c='sixty thousand four hundred six' WHERE a=22525;\nUPDATE t2 SET c='fifteen thousand eight hundred three' WHERE a=22526;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifty-seven' WHERE a=22527;\nUPDATE t2 SET c='seventy-one thousand three hundred nineteen' WHERE a=22528;\nUPDATE t2 SET c='two thousand nine hundred sixty-four' WHERE a=22529;\nUPDATE t2 SET c='twenty-one thousand fifty-six' WHERE a=22530;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-three' WHERE a=22531;\nUPDATE t2 SET c='forty-six thousand nine hundred thirty' WHERE a=22532;\nUPDATE t2 SET c='ten thousand seven hundred ten' WHERE a=22533;\nUPDATE t2 SET c='twenty-eight thousand two hundred fifty-six' WHERE a=22534;\nUPDATE t2 SET c='fifty-five thousand five hundred thirty-two' WHERE a=22535;\nUPDATE t2 SET c='thirty-six thousand five hundred ninety-three' WHERE a=22536;\nUPDATE t2 SET c='forty-three thousand thirty-seven' WHERE a=22537;\nUPDATE t2 SET c='fifty thousand two hundred twenty-three' WHERE a=22538;\nUPDATE t2 SET c='sixty-five thousand three hundred seventy' WHERE a=22539;\nUPDATE t2 SET c='twenty-four thousand four hundred twenty-six' WHERE a=22540;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-one' WHERE a=22541;\nUPDATE t2 SET c='twenty-nine thousand nine hundred eighty-one' WHERE a=22542;\nUPDATE t2 SET c='ninety-seven thousand seven hundred forty-four' WHERE a=22543;\nUPDATE t2 SET c='eighty-two thousand five hundred ninety-two' WHERE a=22544;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-two' WHERE a=22545;\nUPDATE t2 SET c='seventy-seven thousand seven hundred seventy-four' WHERE a=22546;\nUPDATE t2 SET c='seventy-three thousand four hundred fifty-nine' WHERE a=22547;\nUPDATE t2 SET c='seven thousand seven hundred ninety-six' WHERE a=22548;\nUPDATE t2 SET c='eighty-seven thousand two hundred five' WHERE a=22549;\nUPDATE t2 SET c='sixty thousand four hundred twenty-four' WHERE a=22550;\nUPDATE t2 SET c='twenty-nine thousand four hundred twenty-five' WHERE a=22551;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighty-five' WHERE a=22552;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-two' WHERE a=22553;\nUPDATE t2 SET c='nine thousand five hundred fifty-two' WHERE a=22554;\nUPDATE t2 SET c='ninety-seven thousand sixty-two' WHERE a=22555;\nUPDATE t2 SET c='fifty-eight thousand seven hundred eighty-nine' WHERE a=22556;\nUPDATE t2 SET c='sixty-three thousand three hundred thirty-one' WHERE a=22557;\nUPDATE t2 SET c='thirty thousand six hundred eighty-three' WHERE a=22558;\nUPDATE t2 SET c='eighty-six thousand two hundred fifty-eight' WHERE a=22559;\nUPDATE t2 SET c='sixty-eight thousand seven hundred fifty-six' WHERE a=22560;\nUPDATE t2 SET c='seventy-eight thousand six hundred seventy-four' WHERE a=22561;\nUPDATE t2 SET c='twenty-seven thousand five hundred sixty-nine' WHERE a=22562;\nUPDATE t2 SET c='eighty thousand one hundred nine' WHERE a=22563;\nUPDATE t2 SET c='fifty-four thousand four hundred ninety-four' WHERE a=22564;\nUPDATE t2 SET c='five thousand three hundred thirty-seven' WHERE a=22565;\nUPDATE t2 SET c='sixty thousand three hundred ninety-one' WHERE a=22566;\nUPDATE t2 SET c='ninety-two thousand five hundred twenty-one' WHERE a=22567;\nUPDATE t2 SET c='twenty-three thousand four hundred eighty' WHERE a=22568;\nUPDATE t2 SET c='seventy-nine thousand one hundred seventy-seven' WHERE a=22569;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty' WHERE a=22570;\nUPDATE t2 SET c='ten thousand six hundred nineteen' WHERE a=22571;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixteen' WHERE a=22572;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety' WHERE a=22573;\nUPDATE t2 SET c='nineteen thousand five hundred forty-one' WHERE a=22574;\nUPDATE t2 SET c='six thousand six hundred eight' WHERE a=22575;\nUPDATE t2 SET c='sixty-two thousand five hundred forty-four' WHERE a=22576;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty-six' WHERE a=22577;\nUPDATE t2 SET c='five hundred sixty-nine' WHERE a=22578;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-six' WHERE a=22579;\nUPDATE t2 SET c='fifty thousand thirteen' WHERE a=22580;\nUPDATE t2 SET c='eighty-six thousand five hundred twenty-eight' WHERE a=22581;\nUPDATE t2 SET c='twenty-nine thousand four hundred seventy-seven' WHERE a=22582;\nUPDATE t2 SET c='sixty-three thousand seven hundred twenty-five' WHERE a=22583;\nUPDATE t2 SET c='twenty thousand one hundred seventy-two' WHERE a=22584;\nUPDATE t2 SET c='eighty-four thousand eight hundred fourteen' WHERE a=22585;\nUPDATE t2 SET c='three thousand eight hundred thirty-five' WHERE a=22586;\nUPDATE t2 SET c='eleven thousand six hundred twenty-eight' WHERE a=22587;\nUPDATE t2 SET c='seventy-eight thousand seven hundred fifty-eight' WHERE a=22588;\nUPDATE t2 SET c='eighty-five thousand twenty-three' WHERE a=22589;\nUPDATE t2 SET c='thirty-seven thousand seven hundred eighty-five' WHERE a=22590;\nUPDATE t2 SET c='forty thousand two hundred sixty-two' WHERE a=22591;\nUPDATE t2 SET c='twenty-one thousand five hundred fourteen' WHERE a=22592;\nUPDATE t2 SET c='fourteen thousand seven hundred ninety-three' WHERE a=22593;\nUPDATE t2 SET c='seventy-two thousand eight hundred ninety-nine' WHERE a=22594;\nUPDATE t2 SET c='twenty-seven thousand eight hundred seventeen' WHERE a=22595;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-five' WHERE a=22596;\nUPDATE t2 SET c='eighty-seven thousand six hundred fifty-three' WHERE a=22597;\nUPDATE t2 SET c='thirteen thousand four hundred seventy-eight' WHERE a=22598;\nUPDATE t2 SET c='ninety-eight thousand two hundred fifty-two' WHERE a=22599;\nUPDATE t2 SET c='nine hundred twenty-nine' WHERE a=22600;\nUPDATE t2 SET c='fifty-one thousand four hundred sixty-two' WHERE a=22601;\nUPDATE t2 SET c='seventy-three thousand eight hundred forty-two' WHERE a=22602;\nUPDATE t2 SET c='seventy-seven thousand four hundred eighty-eight' WHERE a=22603;\nUPDATE t2 SET c='eighty-three thousand two hundred one' WHERE a=22604;\nUPDATE t2 SET c='fifty-seven thousand three hundred sixty-six' WHERE a=22605;\nUPDATE t2 SET c='fifty-eight thousand fifty' WHERE a=22606;\nUPDATE t2 SET c='forty-seven thousand six hundred ninety-two' WHERE a=22607;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty-seven' WHERE a=22608;\nUPDATE t2 SET c='sixteen thousand eight hundred seven' WHERE a=22609;\nUPDATE t2 SET c='seventeen thousand three hundred eighty-two' WHERE a=22610;\nUPDATE t2 SET c='forty-three thousand three hundred thirty-four' WHERE a=22611;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-one' WHERE a=22612;\nUPDATE t2 SET c='forty-nine thousand eight hundred forty-two' WHERE a=22613;\nUPDATE t2 SET c='ninety-nine thousand two hundred sixty-one' WHERE a=22614;\nUPDATE t2 SET c='forty-six thousand nine hundred twenty-one' WHERE a=22615;\nUPDATE t2 SET c='five thousand four hundred fifty-eight' WHERE a=22616;\nUPDATE t2 SET c='forty-five thousand two hundred three' WHERE a=22617;\nUPDATE t2 SET c='sixty-five thousand four hundred thirty-eight' WHERE a=22618;\nUPDATE t2 SET c='fifty-four thousand six hundred twenty-four' WHERE a=22619;\nUPDATE t2 SET c='sixty-eight thousand eight hundred sixty-eight' WHERE a=22620;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-three' WHERE a=22621;\nUPDATE t2 SET c='eleven thousand four hundred thirty-six' WHERE a=22622;\nUPDATE t2 SET c='sixty-four thousand fifty' WHERE a=22623;\nUPDATE t2 SET c='thirty-two thousand two hundred ninety' WHERE a=22624;\nUPDATE t2 SET c='seventy-nine thousand two hundred seventy-six' WHERE a=22625;\nUPDATE t2 SET c='fifty-four thousand two hundred fifty-eight' WHERE a=22626;\nUPDATE t2 SET c='thirty-eight thousand two hundred thirty-four' WHERE a=22627;\nUPDATE t2 SET c='sixty-eight thousand seven hundred seventy-four' WHERE a=22628;\nUPDATE t2 SET c='eighty-nine thousand six hundred seventy-six' WHERE a=22629;\nUPDATE t2 SET c='fifty-nine thousand six hundred sixty-seven' WHERE a=22630;\nUPDATE t2 SET c='six thousand nine hundred seventy-seven' WHERE a=22631;\nUPDATE t2 SET c='twelve thousand five hundred two' WHERE a=22632;\nUPDATE t2 SET c='sixty-one thousand one hundred thirteen' WHERE a=22633;\nUPDATE t2 SET c='nineteen thousand two hundred thirty-eight' WHERE a=22634;\nUPDATE t2 SET c='twenty-one thousand four hundred eighteen' WHERE a=22635;\nUPDATE t2 SET c='twenty-seven thousand eight hundred thirteen' WHERE a=22636;\nUPDATE t2 SET c='ninety-six thousand seven hundred eighty-nine' WHERE a=22637;\nUPDATE t2 SET c='twenty-four thousand two hundred twenty-five' WHERE a=22638;\nUPDATE t2 SET c='fifty-three thousand two hundred fifty-six' WHERE a=22639;\nUPDATE t2 SET c='thirty-two thousand ninety' WHERE a=22640;\nUPDATE t2 SET c='sixty-two thousand six hundred twenty' WHERE a=22641;\nUPDATE t2 SET c='forty-eight thousand nine hundred thirty-eight' WHERE a=22642;\nUPDATE t2 SET c='fifty-two thousand five hundred sixty-two' WHERE a=22643;\nUPDATE t2 SET c='eighty-five thousand ninety-two' WHERE a=22644;\nUPDATE t2 SET c='ninety-one thousand five hundred fifty-eight' WHERE a=22645;\nUPDATE t2 SET c='fifty-eight thousand one hundred thirty-three' WHERE a=22646;\nUPDATE t2 SET c='fifty-three thousand forty-seven' WHERE a=22647;\nUPDATE t2 SET c='ninety-four thousand seven hundred fifty-four' WHERE a=22648;\nUPDATE t2 SET c='fifty-nine thousand four hundred ninety-four' WHERE a=22649;\nUPDATE t2 SET c='seven hundred seventy-four' WHERE a=22650;\nUPDATE t2 SET c='eighty-four thousand seven hundred thirty-five' WHERE a=22651;\nUPDATE t2 SET c='fifty-two thousand one hundred thirteen' WHERE a=22652;\nUPDATE t2 SET c='eighty thousand nine hundred fifty-eight' WHERE a=22653;\nUPDATE t2 SET c='seventy-five thousand four hundred eighty-one' WHERE a=22654;\nUPDATE t2 SET c='sixty-nine thousand eight hundred forty-six' WHERE a=22655;\nUPDATE t2 SET c='sixty-six thousand five hundred ninety-five' WHERE a=22656;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-eight' WHERE a=22657;\nUPDATE t2 SET c='twenty-six thousand two hundred ninety-seven' WHERE a=22658;\nUPDATE t2 SET c='ninety-one thousand six hundred sixty-one' WHERE a=22659;\nUPDATE t2 SET c='seventy-eight thousand six hundred twenty-nine' WHERE a=22660;\nUPDATE t2 SET c='eighty-nine thousand ninety-one' WHERE a=22661;\nUPDATE t2 SET c='seventy thousand eight hundred thirty-one' WHERE a=22662;\nUPDATE t2 SET c='eighty-one thousand five hundred sixty-four' WHERE a=22663;\nUPDATE t2 SET c='seventy-seven thousand five hundred twenty-nine' WHERE a=22664;\nUPDATE t2 SET c='twelve thousand three hundred ninety-three' WHERE a=22665;\nUPDATE t2 SET c='eighty-five thousand four hundred ninety-eight' WHERE a=22666;\nUPDATE t2 SET c='thirty-eight thousand three' WHERE a=22667;\nUPDATE t2 SET c='forty-one thousand nine hundred eighty-six' WHERE a=22668;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-five' WHERE a=22669;\nUPDATE t2 SET c='fifty-seven thousand three hundred fifty-seven' WHERE a=22670;\nUPDATE t2 SET c='twenty-five thousand seven hundred ten' WHERE a=22671;\nUPDATE t2 SET c='fifty-nine thousand four hundred seventy-seven' WHERE a=22672;\nUPDATE t2 SET c='thirty-seven thousand three hundred ninety-three' WHERE a=22673;\nUPDATE t2 SET c='seventy-seven thousand four hundred sixty-four' WHERE a=22674;\nUPDATE t2 SET c='forty-four thousand nine hundred eight' WHERE a=22675;\nUPDATE t2 SET c='fifty-seven thousand seven hundred fourteen' WHERE a=22676;\nUPDATE t2 SET c='ninety-five thousand one hundred forty-eight' WHERE a=22677;\nUPDATE t2 SET c='forty-one thousand five hundred thirty' WHERE a=22678;\nUPDATE t2 SET c='sixty-five thousand eight hundred thirty-three' WHERE a=22679;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-six' WHERE a=22680;\nUPDATE t2 SET c='twenty-five thousand sixty-three' WHERE a=22681;\nUPDATE t2 SET c='forty thousand two hundred seventy-five' WHERE a=22682;\nUPDATE t2 SET c='sixty-seven thousand forty-eight' WHERE a=22683;\nUPDATE t2 SET c='ninety-six thousand three hundred ninety-eight' WHERE a=22684;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-three' WHERE a=22685;\nUPDATE t2 SET c='seventy-six thousand seven hundred eighty-one' WHERE a=22686;\nUPDATE t2 SET c='twelve thousand six hundred forty-three' WHERE a=22687;\nUPDATE t2 SET c='sixty-four thousand two hundred ninety-eight' WHERE a=22688;\nUPDATE t2 SET c='thirty-one thousand seventy-two' WHERE a=22689;\nUPDATE t2 SET c='sixty-five thousand six hundred ninety-one' WHERE a=22690;\nUPDATE t2 SET c='twenty-six thousand two hundred twenty-six' WHERE a=22691;\nUPDATE t2 SET c='seventy-four thousand one hundred twelve' WHERE a=22692;\nUPDATE t2 SET c='forty-one thousand five hundred thirteen' WHERE a=22693;\nUPDATE t2 SET c='thirty thousand eight hundred ten' WHERE a=22694;\nUPDATE t2 SET c='seventy-four thousand six hundred forty-six' WHERE a=22695;\nUPDATE t2 SET c='thirty-six thousand five hundred eighty-four' WHERE a=22696;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-nine' WHERE a=22697;\nUPDATE t2 SET c='thirty-five thousand seven hundred ninety' WHERE a=22698;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty' WHERE a=22699;\nUPDATE t2 SET c='eighty-two thousand nine hundred thirty-six' WHERE a=22700;\nUPDATE t2 SET c='fifty-one thousand forty-two' WHERE a=22701;\nUPDATE t2 SET c='fifty-six thousand four hundred sixty' WHERE a=22702;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-six' WHERE a=22703;\nUPDATE t2 SET c='ninety-two thousand two hundred seventeen' WHERE a=22704;\nUPDATE t2 SET c='forty-five thousand one hundred eighty-one' WHERE a=22705;\nUPDATE t2 SET c='five thousand eight hundred eighty-two' WHERE a=22706;\nUPDATE t2 SET c='thirty-eight thousand two hundred ninety-nine' WHERE a=22707;\nUPDATE t2 SET c='twenty-nine thousand seven' WHERE a=22708;\nUPDATE t2 SET c='eighty-six thousand eight hundred thirty-two' WHERE a=22709;\nUPDATE t2 SET c='thirty-five thousand three hundred fifty-five' WHERE a=22710;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-three' WHERE a=22711;\nUPDATE t2 SET c='one thousand six hundred twelve' WHERE a=22712;\nUPDATE t2 SET c='thirty-eight thousand seven hundred sixty-three' WHERE a=22713;\nUPDATE t2 SET c='thirty-two thousand seven hundred nine' WHERE a=22714;\nUPDATE t2 SET c='eighty-four thousand nine hundred eighty-eight' WHERE a=22715;\nUPDATE t2 SET c='ninety-five thousand four hundred fifteen' WHERE a=22716;\nUPDATE t2 SET c='fifty thousand four hundred eighty-two' WHERE a=22717;\nUPDATE t2 SET c='two thousand seven hundred two' WHERE a=22718;\nUPDATE t2 SET c='nine thousand three hundred ninety-four' WHERE a=22719;\nUPDATE t2 SET c='thirty-two thousand nine' WHERE a=22720;\nUPDATE t2 SET c='one thousand eight hundred ninety-three' WHERE a=22721;\nUPDATE t2 SET c='sixty-one thousand two hundred four' WHERE a=22722;\nUPDATE t2 SET c='eighty-three thousand seven hundred sixty-nine' WHERE a=22723;\nUPDATE t2 SET c='twenty-four thousand six hundred forty-eight' WHERE a=22724;\nUPDATE t2 SET c='ninety-nine thousand two hundred fifty-five' WHERE a=22725;\nUPDATE t2 SET c='eighteen thousand three hundred thirty' WHERE a=22726;\nUPDATE t2 SET c='nineteen thousand six hundred forty-five' WHERE a=22727;\nUPDATE t2 SET c='ninety-four thousand four hundred eighty-one' WHERE a=22728;\nUPDATE t2 SET c='fifty-nine thousand eighty-six' WHERE a=22729;\nUPDATE t2 SET c='four thousand forty-eight' WHERE a=22730;\nUPDATE t2 SET c='seventy-five thousand eight hundred forty-eight' WHERE a=22731;\nUPDATE t2 SET c='ninety-two thousand two hundred twenty-one' WHERE a=22732;\nUPDATE t2 SET c='sixty-three thousand six hundred fifty-five' WHERE a=22733;\nUPDATE t2 SET c='fifty-two thousand four hundred ninety-eight' WHERE a=22734;\nUPDATE t2 SET c='fifty-six thousand seventy-two' WHERE a=22735;\nUPDATE t2 SET c='seventy-one thousand seven hundred thirteen' WHERE a=22736;\nUPDATE t2 SET c='sixty-six thousand two hundred fifteen' WHERE a=22737;\nUPDATE t2 SET c='forty-six thousand ten' WHERE a=22738;\nUPDATE t2 SET c='twenty thousand nine hundred' WHERE a=22739;\nUPDATE t2 SET c='twenty-three thousand three hundred thirty-six' WHERE a=22740;\nUPDATE t2 SET c='thirty-eight thousand eight hundred twenty-eight' WHERE a=22741;\nUPDATE t2 SET c='fifty thousand five hundred forty-nine' WHERE a=22742;\nUPDATE t2 SET c='two thousand four hundred two' WHERE a=22743;\nUPDATE t2 SET c='fifty-nine thousand seven hundred forty-three' WHERE a=22744;\nUPDATE t2 SET c='sixty-eight thousand six hundred thirty-four' WHERE a=22745;\nUPDATE t2 SET c='fifty-nine thousand seven hundred ninety-two' WHERE a=22746;\nUPDATE t2 SET c='twenty thousand six hundred six' WHERE a=22747;\nUPDATE t2 SET c='forty-three thousand six hundred seventy-seven' WHERE a=22748;\nUPDATE t2 SET c='ninety-four thousand three hundred twenty-seven' WHERE a=22749;\nUPDATE t2 SET c='fifty-nine thousand five hundred twenty-six' WHERE a=22750;\nUPDATE t2 SET c='sixty-nine thousand two hundred twenty-six' WHERE a=22751;\nUPDATE t2 SET c='eighty-six thousand three hundred eighty-six' WHERE a=22752;\nUPDATE t2 SET c='seventy-six thousand four hundred three' WHERE a=22753;\nUPDATE t2 SET c='four hundred twenty-five' WHERE a=22754;\nUPDATE t2 SET c='eighty thousand eight hundred eleven' WHERE a=22755;\nUPDATE t2 SET c='ninety-six thousand six hundred' WHERE a=22756;\nUPDATE t2 SET c='fifty thousand three hundred thirty-three' WHERE a=22757;\nUPDATE t2 SET c='thirty thousand three hundred twenty-nine' WHERE a=22758;\nUPDATE t2 SET c='seventy-eight thousand seven hundred seventeen' WHERE a=22759;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-eight' WHERE a=22760;\nUPDATE t2 SET c='fifty thousand three hundred fifty-eight' WHERE a=22761;\nUPDATE t2 SET c='sixty-eight thousand three hundred twenty-three' WHERE a=22762;\nUPDATE t2 SET c='fifty-four thousand six hundred sixty-nine' WHERE a=22763;\nUPDATE t2 SET c='forty-four thousand four hundred twenty-six' WHERE a=22764;\nUPDATE t2 SET c='thirty-five thousand four hundred fifty-seven' WHERE a=22765;\nUPDATE t2 SET c='ninety-four thousand three hundred fifty-one' WHERE a=22766;\nUPDATE t2 SET c='seventy thousand seven hundred three' WHERE a=22767;\nUPDATE t2 SET c='fifty-one thousand four hundred eighty-six' WHERE a=22768;\nUPDATE t2 SET c='twenty-one thousand four hundred sixteen' WHERE a=22769;\nUPDATE t2 SET c='fifty thousand six hundred twenty-two' WHERE a=22770;\nUPDATE t2 SET c='seventy-six thousand three hundred twenty-three' WHERE a=22771;\nUPDATE t2 SET c='fifty-two thousand one hundred thirty-two' WHERE a=22772;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-two' WHERE a=22773;\nUPDATE t2 SET c='ninety-nine thousand three hundred fifty-five' WHERE a=22774;\nUPDATE t2 SET c='seventy-three thousand six hundred two' WHERE a=22775;\nUPDATE t2 SET c='eighty-nine thousand four hundred eighty-eight' WHERE a=22776;\nUPDATE t2 SET c='seventy-four thousand six hundred fifteen' WHERE a=22777;\nUPDATE t2 SET c='twenty-nine thousand three hundred thirty-six' WHERE a=22778;\nUPDATE t2 SET c='seventeen thousand eight hundred forty-five' WHERE a=22779;\nUPDATE t2 SET c='thirty-nine thousand sixty-six' WHERE a=22780;\nUPDATE t2 SET c='fifty-three thousand one' WHERE a=22781;\nUPDATE t2 SET c='thirty-two thousand eight hundred ninety-two' WHERE a=22782;\nUPDATE t2 SET c='ninety-four thousand six hundred eighty-six' WHERE a=22783;\nUPDATE t2 SET c='seventy-three thousand two hundred one' WHERE a=22784;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty-three' WHERE a=22785;\nUPDATE t2 SET c='forty-six thousand nine hundred ninety-seven' WHERE a=22786;\nUPDATE t2 SET c='sixty-one thousand six hundred forty-seven' WHERE a=22787;\nUPDATE t2 SET c='seventy-two thousand five hundred seventy-eight' WHERE a=22788;\nUPDATE t2 SET c='fifty thousand three hundred sixty-three' WHERE a=22789;\nUPDATE t2 SET c='sixty-five thousand two hundred forty-six' WHERE a=22790;\nUPDATE t2 SET c='sixty-seven thousand one hundred twenty-nine' WHERE a=22791;\nUPDATE t2 SET c='ninety-four thousand three hundred forty-one' WHERE a=22792;\nUPDATE t2 SET c='ninety thousand eight hundred fifty-seven' WHERE a=22793;\nUPDATE t2 SET c='sixteen thousand five hundred six' WHERE a=22794;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirty-three' WHERE a=22795;\nUPDATE t2 SET c='forty-three thousand seven hundred eighty-three' WHERE a=22796;\nUPDATE t2 SET c='forty-six thousand eight hundred eleven' WHERE a=22797;\nUPDATE t2 SET c='seventy-seven thousand four hundred thirty-eight' WHERE a=22798;\nUPDATE t2 SET c='thirty-seven thousand four hundred three' WHERE a=22799;\nUPDATE t2 SET c='nine thousand six hundred sixty-five' WHERE a=22800;\nUPDATE t2 SET c='sixty-nine thousand five hundred fifty-one' WHERE a=22801;\nUPDATE t2 SET c='thirty thousand four hundred thirty-seven' WHERE a=22802;\nUPDATE t2 SET c='seventy-nine thousand seven hundred forty-seven' WHERE a=22803;\nUPDATE t2 SET c='fifty-one thousand one hundred eighty-seven' WHERE a=22804;\nUPDATE t2 SET c='twenty-seven thousand one hundred forty' WHERE a=22805;\nUPDATE t2 SET c='thirty-eight thousand four hundred fifty-five' WHERE a=22806;\nUPDATE t2 SET c='eighty-seven thousand nine hundred fifty' WHERE a=22807;\nUPDATE t2 SET c='ninety-four thousand six hundred forty-one' WHERE a=22808;\nUPDATE t2 SET c='fifty-six thousand eight hundred twenty-five' WHERE a=22809;\nUPDATE t2 SET c='forty-two thousand fifteen' WHERE a=22810;\nUPDATE t2 SET c='two thousand six hundred ten' WHERE a=22811;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy-six' WHERE a=22812;\nUPDATE t2 SET c='five thousand four' WHERE a=22813;\nUPDATE t2 SET c='thirty-five thousand six hundred seventy-four' WHERE a=22814;\nUPDATE t2 SET c='ninety-five thousand nine hundred twenty-one' WHERE a=22815;\nUPDATE t2 SET c='ninety-seven thousand two hundred sixty-two' WHERE a=22816;\nUPDATE t2 SET c='forty-two thousand seven hundred eighty-three' WHERE a=22817;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-three' WHERE a=22818;\nUPDATE t2 SET c='ninety-one thousand four hundred sixty-three' WHERE a=22819;\nUPDATE t2 SET c='seventy-four thousand six hundred sixteen' WHERE a=22820;\nUPDATE t2 SET c='thirty-eight thousand thirty' WHERE a=22821;\nUPDATE t2 SET c='fifty-one thousand eight hundred forty-six' WHERE a=22822;\nUPDATE t2 SET c='forty-nine thousand two hundred eighty-one' WHERE a=22823;\nUPDATE t2 SET c='sixty thousand five hundred fifty-one' WHERE a=22824;\nUPDATE t2 SET c='four thousand three hundred sixty-three' WHERE a=22825;\nUPDATE t2 SET c='fifty-six thousand three hundred fifty-five' WHERE a=22826;\nUPDATE t2 SET c='eighteen thousand four hundred' WHERE a=22827;\nUPDATE t2 SET c='thirty-eight thousand two hundred eighty-four' WHERE a=22828;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty-eight' WHERE a=22829;\nUPDATE t2 SET c='eight thousand thirteen' WHERE a=22830;\nUPDATE t2 SET c='thirteen thousand two hundred ninety' WHERE a=22831;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-five' WHERE a=22832;\nUPDATE t2 SET c='twenty-one thousand five hundred ninety-five' WHERE a=22833;\nUPDATE t2 SET c='sixty-eight thousand six hundred five' WHERE a=22834;\nUPDATE t2 SET c='forty-nine thousand one hundred sixty-four' WHERE a=22835;\nUPDATE t2 SET c='seventy-seven thousand seven hundred seventy-nine' WHERE a=22836;\nUPDATE t2 SET c='fifty-four thousand three hundred twenty' WHERE a=22837;\nUPDATE t2 SET c='seventy-one thousand four hundred five' WHERE a=22838;\nUPDATE t2 SET c='forty thousand nine hundred eighty-four' WHERE a=22839;\nUPDATE t2 SET c='seventy-nine thousand six hundred seventy-eight' WHERE a=22840;\nUPDATE t2 SET c='twenty-seven thousand seven hundred eighty-four' WHERE a=22841;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirty-four' WHERE a=22842;\nUPDATE t2 SET c='seventy-nine thousand three hundred ninety' WHERE a=22843;\nUPDATE t2 SET c='forty-five thousand five hundred twenty-six' WHERE a=22844;\nUPDATE t2 SET c='fifty-five thousand twenty-four' WHERE a=22845;\nUPDATE t2 SET c='seventy-four thousand three hundred sixty-eight' WHERE a=22846;\nUPDATE t2 SET c='eight hundred sixty' WHERE a=22847;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixty-four' WHERE a=22848;\nUPDATE t2 SET c='twenty-nine thousand two hundred fifteen' WHERE a=22849;\nUPDATE t2 SET c='thirty thousand five hundred thirty-one' WHERE a=22850;\nUPDATE t2 SET c='nineteen thousand four hundred twenty-eight' WHERE a=22851;\nUPDATE t2 SET c='forty-three thousand two hundred twenty-seven' WHERE a=22852;\nUPDATE t2 SET c='forty-four thousand six hundred ninety-eight' WHERE a=22853;\nUPDATE t2 SET c='eighty-eight thousand seven hundred ninety-six' WHERE a=22854;\nUPDATE t2 SET c='twelve thousand three hundred forty' WHERE a=22855;\nUPDATE t2 SET c='forty-two thousand three hundred ninety' WHERE a=22856;\nUPDATE t2 SET c='sixty-three thousand five hundred fifty-four' WHERE a=22857;\nUPDATE t2 SET c='forty-three thousand two hundred five' WHERE a=22858;\nUPDATE t2 SET c='fifty thousand seven hundred four' WHERE a=22859;\nUPDATE t2 SET c='fifty-seven thousand five hundred eighty-five' WHERE a=22860;\nUPDATE t2 SET c='forty-four thousand five hundred forty-three' WHERE a=22861;\nUPDATE t2 SET c='eighty-four thousand seven hundred twenty-six' WHERE a=22862;\nUPDATE t2 SET c='sixty-eight thousand five hundred ninety-seven' WHERE a=22863;\nUPDATE t2 SET c='ninety-seven thousand one hundred eighty-four' WHERE a=22864;\nUPDATE t2 SET c='ten thousand five hundred twenty-five' WHERE a=22865;\nUPDATE t2 SET c='forty-three thousand forty-four' WHERE a=22866;\nUPDATE t2 SET c='sixty-three thousand eight hundred eighty-nine' WHERE a=22867;\nUPDATE t2 SET c='eighteen thousand seven hundred fifteen' WHERE a=22868;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-five' WHERE a=22869;\nUPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=22870;\nUPDATE t2 SET c='seven thousand seventy' WHERE a=22871;\nUPDATE t2 SET c='ninety-three thousand five hundred ninety-three' WHERE a=22872;\nUPDATE t2 SET c='seven thousand one hundred forty-four' WHERE a=22873;\nUPDATE t2 SET c='thirty-six thousand five hundred fifty-three' WHERE a=22874;\nUPDATE t2 SET c='seventy-one thousand seven hundred twenty-eight' WHERE a=22875;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy-nine' WHERE a=22876;\nUPDATE t2 SET c='sixty-two thousand five hundred fifteen' WHERE a=22877;\nUPDATE t2 SET c='one thousand seven hundred sixty-three' WHERE a=22878;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy' WHERE a=22879;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-four' WHERE a=22880;\nUPDATE t2 SET c='sixty-two thousand nine hundred nine' WHERE a=22881;\nUPDATE t2 SET c='thirteen thousand six hundred seventy-one' WHERE a=22882;\nUPDATE t2 SET c='ninety-nine thousand four hundred sixty-nine' WHERE a=22883;\nUPDATE t2 SET c='thirty thousand seven hundred nine' WHERE a=22884;\nUPDATE t2 SET c='twelve thousand four hundred sixty-seven' WHERE a=22885;\nUPDATE t2 SET c='twenty-five thousand one hundred four' WHERE a=22886;\nUPDATE t2 SET c='thirty-eight thousand' WHERE a=22887;\nUPDATE t2 SET c='five thousand three hundred ninety-seven' WHERE a=22888;\nUPDATE t2 SET c='two thousand twenty-three' WHERE a=22889;\nUPDATE t2 SET c='fifty-eight thousand seven hundred seventy' WHERE a=22890;\nUPDATE t2 SET c='fifty-seven thousand five hundred thirty-one' WHERE a=22891;\nUPDATE t2 SET c='fifty-three thousand three hundred twenty-six' WHERE a=22892;\nUPDATE t2 SET c='eighty-two thousand eight hundred' WHERE a=22893;\nUPDATE t2 SET c='seventeen thousand seventy-nine' WHERE a=22894;\nUPDATE t2 SET c='seventy-seven thousand one hundred sixty-two' WHERE a=22895;\nUPDATE t2 SET c='ninety-six thousand eight hundred eighty-three' WHERE a=22896;\nUPDATE t2 SET c='sixty-nine thousand nine hundred sixty-nine' WHERE a=22897;\nUPDATE t2 SET c='ninety-two thousand nine hundred eleven' WHERE a=22898;\nUPDATE t2 SET c='twenty-seven thousand six hundred sixty-two' WHERE a=22899;\nUPDATE t2 SET c='ninety-two thousand eight hundred seventy-seven' WHERE a=22900;\nUPDATE t2 SET c='twenty-six thousand seven hundred seventy-nine' WHERE a=22901;\nUPDATE t2 SET c='twenty-one thousand forty-four' WHERE a=22902;\nUPDATE t2 SET c='twenty thousand seven hundred seventy-one' WHERE a=22903;\nUPDATE t2 SET c='fifty-one thousand five hundred eighty-nine' WHERE a=22904;\nUPDATE t2 SET c='twenty-nine thousand one hundred eighty-five' WHERE a=22905;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-six' WHERE a=22906;\nUPDATE t2 SET c='ten thousand two hundred six' WHERE a=22907;\nUPDATE t2 SET c='forty-five thousand ninety-two' WHERE a=22908;\nUPDATE t2 SET c='eighty-five thousand six hundred ninety-nine' WHERE a=22909;\nUPDATE t2 SET c='seventy-one thousand seven hundred eighty-two' WHERE a=22910;\nUPDATE t2 SET c='eighty-six thousand five hundred seven' WHERE a=22911;\nUPDATE t2 SET c='nineteen thousand seven hundred twenty-three' WHERE a=22912;\nUPDATE t2 SET c='five thousand seven hundred fifty-five' WHERE a=22913;\nUPDATE t2 SET c='ninety-three thousand nine hundred sixty-two' WHERE a=22914;\nUPDATE t2 SET c='ninety thousand four hundred forty-one' WHERE a=22915;\nUPDATE t2 SET c='eighty-six thousand one hundred eleven' WHERE a=22916;\nUPDATE t2 SET c='forty-six thousand four hundred eighty-nine' WHERE a=22917;\nUPDATE t2 SET c='two thousand three hundred fifty-one' WHERE a=22918;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-four' WHERE a=22919;\nUPDATE t2 SET c='six thousand five hundred fifty-seven' WHERE a=22920;\nUPDATE t2 SET c='thirty-eight thousand eight hundred nineteen' WHERE a=22921;\nUPDATE t2 SET c='fifty-six thousand two hundred twenty-eight' WHERE a=22922;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-six' WHERE a=22923;\nUPDATE t2 SET c='ninety-two thousand ten' WHERE a=22924;\nUPDATE t2 SET c='fifty-nine thousand one hundred thirty-eight' WHERE a=22925;\nUPDATE t2 SET c='ninety-three thousand six hundred twenty-one' WHERE a=22926;\nUPDATE t2 SET c='twenty-two thousand three hundred thirteen' WHERE a=22927;\nUPDATE t2 SET c='sixty-one thousand six hundred twenty-four' WHERE a=22928;\nUPDATE t2 SET c='eighty-six' WHERE a=22929;\nUPDATE t2 SET c='thirty-one thousand five hundred sixty-seven' WHERE a=22930;\nUPDATE t2 SET c='fifty thousand five hundred eighty-three' WHERE a=22931;\nUPDATE t2 SET c='sixty-four thousand seven hundred twenty-eight' WHERE a=22932;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-two' WHERE a=22933;\nUPDATE t2 SET c='ninety-four thousand six hundred seventy-three' WHERE a=22934;\nUPDATE t2 SET c='forty-one thousand nine hundred ninety-two' WHERE a=22935;\nUPDATE t2 SET c='fifty-two thousand three hundred ninety-eight' WHERE a=22936;\nUPDATE t2 SET c='sixty-one thousand six hundred thirty' WHERE a=22937;\nUPDATE t2 SET c='seven thousand ninety-one' WHERE a=22938;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-three' WHERE a=22939;\nUPDATE t2 SET c='three' WHERE a=22940;\nUPDATE t2 SET c='four thousand two hundred sixty-one' WHERE a=22941;\nUPDATE t2 SET c='ten thousand six hundred eight' WHERE a=22942;\nUPDATE t2 SET c='sixty-four thousand seven hundred ninety-one' WHERE a=22943;\nUPDATE t2 SET c='eleven thousand four hundred seventy-two' WHERE a=22944;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-five' WHERE a=22945;\nUPDATE t2 SET c='twenty-six thousand two hundred eighteen' WHERE a=22946;\nUPDATE t2 SET c='one thousand two hundred sixteen' WHERE a=22947;\nUPDATE t2 SET c='eighty-one thousand eight hundred five' WHERE a=22948;\nUPDATE t2 SET c='fifty-three thousand seven hundred eighty' WHERE a=22949;\nUPDATE t2 SET c='ninety-five thousand nine hundred eleven' WHERE a=22950;\nUPDATE t2 SET c='fifty-three thousand four hundred fifty' WHERE a=22951;\nUPDATE t2 SET c='seventy thousand two hundred twelve' WHERE a=22952;\nUPDATE t2 SET c='thirty-seven thousand seventy-eight' WHERE a=22953;\nUPDATE t2 SET c='sixty-three thousand one hundred forty-five' WHERE a=22954;\nUPDATE t2 SET c='seven thousand three hundred thirty-eight' WHERE a=22955;\nUPDATE t2 SET c='nine thousand four hundred ninety-three' WHERE a=22956;\nUPDATE t2 SET c='twenty-nine thousand five hundred seventy' WHERE a=22957;\nUPDATE t2 SET c='thirty-seven thousand five hundred forty-four' WHERE a=22958;\nUPDATE t2 SET c='eighty-seven thousand six hundred one' WHERE a=22959;\nUPDATE t2 SET c='ninety-one thousand eight hundred' WHERE a=22960;\nUPDATE t2 SET c='ninety-seven thousand six hundred fifteen' WHERE a=22961;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty-seven' WHERE a=22962;\nUPDATE t2 SET c='sixty-six thousand one hundred fifty-one' WHERE a=22963;\nUPDATE t2 SET c='sixteen thousand eight hundred ninety-two' WHERE a=22964;\nUPDATE t2 SET c='nine thousand nine hundred sixty-two' WHERE a=22965;\nUPDATE t2 SET c='forty-four thousand five hundred fifty' WHERE a=22966;\nUPDATE t2 SET c='seven thousand seven hundred twenty-seven' WHERE a=22967;\nUPDATE t2 SET c='fifty-three thousand five hundred seventy-four' WHERE a=22968;\nUPDATE t2 SET c='forty-five thousand nine hundred sixty-three' WHERE a=22969;\nUPDATE t2 SET c='eighty-four thousand fifty-eight' WHERE a=22970;\nUPDATE t2 SET c='fifty-four thousand seven hundred ninety-four' WHERE a=22971;\nUPDATE t2 SET c='forty-three thousand six hundred thirty-nine' WHERE a=22972;\nUPDATE t2 SET c='sixty-one thousand seven hundred one' WHERE a=22973;\nUPDATE t2 SET c='seventy-one thousand two hundred eighty-eight' WHERE a=22974;\nUPDATE t2 SET c='forty-eight thousand six hundred ten' WHERE a=22975;\nUPDATE t2 SET c='sixty-nine thousand six hundred nine' WHERE a=22976;\nUPDATE t2 SET c='fifty-eight thousand eight hundred one' WHERE a=22977;\nUPDATE t2 SET c='twenty-four thousand seven hundred four' WHERE a=22978;\nUPDATE t2 SET c='eighty-five thousand five hundred six' WHERE a=22979;\nUPDATE t2 SET c='twenty-six thousand two hundred fifty-four' WHERE a=22980;\nUPDATE t2 SET c='seventy-three thousand three hundred thirty-nine' WHERE a=22981;\nUPDATE t2 SET c='fifty thousand nine hundred sixty-one' WHERE a=22982;\nUPDATE t2 SET c='ninety-nine thousand six hundred ninety-eight' WHERE a=22983;\nUPDATE t2 SET c='thirty-eight thousand one hundred thirty-one' WHERE a=22984;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-six' WHERE a=22985;\nUPDATE t2 SET c='forty-nine thousand one hundred seventy-two' WHERE a=22986;\nUPDATE t2 SET c='twenty-one thousand four hundred twenty-eight' WHERE a=22987;\nUPDATE t2 SET c='nine thousand seven hundred twelve' WHERE a=22988;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty' WHERE a=22989;\nUPDATE t2 SET c='eighty-one thousand one hundred fifty-four' WHERE a=22990;\nUPDATE t2 SET c='seventy-three thousand seven hundred ninety-two' WHERE a=22991;\nUPDATE t2 SET c='fifty-six thousand four hundred sixty-eight' WHERE a=22992;\nUPDATE t2 SET c='seventy-six thousand three hundred thirty-two' WHERE a=22993;\nUPDATE t2 SET c='fifty-one thousand twenty' WHERE a=22994;\nUPDATE t2 SET c='seventy-nine thousand four hundred eight' WHERE a=22995;\nUPDATE t2 SET c='twenty-four thousand seven hundred seventy-eight' WHERE a=22996;\nUPDATE t2 SET c='twenty thousand seven hundred fifty-three' WHERE a=22997;\nUPDATE t2 SET c='ten thousand nine hundred forty-three' WHERE a=22998;\nUPDATE t2 SET c='seventeen thousand four hundred fifty-seven' WHERE a=22999;\nUPDATE t2 SET c='twenty-three thousand four hundred seven' WHERE a=23000;\nUPDATE t2 SET c='eleven thousand six hundred ninety-six' WHERE a=23001;\nUPDATE t2 SET c='twenty-six thousand two hundred forty-five' WHERE a=23002;\nUPDATE t2 SET c='ninety-five thousand four hundred seventy-six' WHERE a=23003;\nUPDATE t2 SET c='thirty-nine thousand three hundred sixty-six' WHERE a=23004;\nUPDATE t2 SET c='fifty-six thousand nine hundred ninety-nine' WHERE a=23005;\nUPDATE t2 SET c='seventy-eight thousand eight hundred seventy-five' WHERE a=23006;\nUPDATE t2 SET c='eighty-one thousand five hundred eighty-seven' WHERE a=23007;\nUPDATE t2 SET c='thirteen thousand three hundred twelve' WHERE a=23008;\nUPDATE t2 SET c='sixty thousand nine hundred ninety' WHERE a=23009;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-three' WHERE a=23010;\nUPDATE t2 SET c='seventy-nine thousand eight hundred ninety-seven' WHERE a=23011;\nUPDATE t2 SET c='ten thousand six hundred fifty-two' WHERE a=23012;\nUPDATE t2 SET c='seventy-three thousand four hundred eleven' WHERE a=23013;\nUPDATE t2 SET c='eighty-two thousand four hundred fifty' WHERE a=23014;\nUPDATE t2 SET c='twelve thousand six hundred thirty-one' WHERE a=23015;\nUPDATE t2 SET c='nineteen thousand one hundred fifty-one' WHERE a=23016;\nUPDATE t2 SET c='forty-two thousand seven hundred nine' WHERE a=23017;\nUPDATE t2 SET c='three thousand seven hundred twenty-one' WHERE a=23018;\nUPDATE t2 SET c='sixty-seven thousand six hundred ninety-three' WHERE a=23019;\nUPDATE t2 SET c='thirty-five thousand two hundred fifty-eight' WHERE a=23020;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty-six' WHERE a=23021;\nUPDATE t2 SET c='fifty-four thousand six hundred thirty-nine' WHERE a=23022;\nUPDATE t2 SET c='ninety-seven thousand six hundred thirteen' WHERE a=23023;\nUPDATE t2 SET c='twenty-seven thousand two hundred thirty-six' WHERE a=23024;\nUPDATE t2 SET c='forty-six thousand four hundred eleven' WHERE a=23025;\nUPDATE t2 SET c='six thousand five hundred twenty' WHERE a=23026;\nUPDATE t2 SET c='three thousand three hundred thirty-two' WHERE a=23027;\nUPDATE t2 SET c='ninety-two thousand forty-four' WHERE a=23028;\nUPDATE t2 SET c='thirty-one thousand sixty-seven' WHERE a=23029;\nUPDATE t2 SET c='fifty-five thousand one hundred seventy-one' WHERE a=23030;\nUPDATE t2 SET c='eighty-three thousand nine hundred' WHERE a=23031;\nUPDATE t2 SET c='forty-three thousand seven hundred sixty-nine' WHERE a=23032;\nUPDATE t2 SET c='seventy-four thousand three hundred six' WHERE a=23033;\nUPDATE t2 SET c='sixty-nine thousand eighty-five' WHERE a=23034;\nUPDATE t2 SET c='fifty thousand fifty-four' WHERE a=23035;\nUPDATE t2 SET c='eighty-five thousand two hundred thirty-six' WHERE a=23036;\nUPDATE t2 SET c='twenty-two thousand three hundred fifty-eight' WHERE a=23037;\nUPDATE t2 SET c='fifty-seven thousand nine hundred fifty-three' WHERE a=23038;\nUPDATE t2 SET c='sixty-eight thousand three hundred forty-two' WHERE a=23039;\nUPDATE t2 SET c='sixty-three thousand six hundred twenty-four' WHERE a=23040;\nUPDATE t2 SET c='fifty-two thousand one hundred ninety-one' WHERE a=23041;\nUPDATE t2 SET c='forty-five thousand seven hundred thirteen' WHERE a=23042;\nUPDATE t2 SET c='forty thousand fifteen' WHERE a=23043;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-two' WHERE a=23044;\nUPDATE t2 SET c='thirty-nine thousand eight hundred twenty-six' WHERE a=23045;\nUPDATE t2 SET c='fifty-eight thousand six hundred sixty-one' WHERE a=23046;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-two' WHERE a=23047;\nUPDATE t2 SET c='twenty-four thousand five hundred five' WHERE a=23048;\nUPDATE t2 SET c='fifty-four thousand one hundred twenty-nine' WHERE a=23049;\nUPDATE t2 SET c='sixty-eight thousand four hundred eighty' WHERE a=23050;\nUPDATE t2 SET c='twenty-nine thousand one hundred sixty-seven' WHERE a=23051;\nUPDATE t2 SET c='thirty-six thousand two hundred sixty-eight' WHERE a=23052;\nUPDATE t2 SET c='twenty-nine thousand seven hundred eight' WHERE a=23053;\nUPDATE t2 SET c='one thousand four hundred eleven' WHERE a=23054;\nUPDATE t2 SET c='seven thousand three hundred seventy-eight' WHERE a=23055;\nUPDATE t2 SET c='ninety-seven thousand two hundred two' WHERE a=23056;\nUPDATE t2 SET c='seventy-three thousand one hundred thirty-one' WHERE a=23057;\nUPDATE t2 SET c='sixty-two thousand three hundred forty-five' WHERE a=23058;\nUPDATE t2 SET c='sixty-five thousand eight hundred eight' WHERE a=23059;\nUPDATE t2 SET c='sixty-five thousand six hundred seventy-seven' WHERE a=23060;\nUPDATE t2 SET c='ninety-seven thousand five hundred six' WHERE a=23061;\nUPDATE t2 SET c='thirty-seven thousand one hundred nine' WHERE a=23062;\nUPDATE t2 SET c='ninety-nine thousand seven hundred six' WHERE a=23063;\nUPDATE t2 SET c='two thousand two hundred fifteen' WHERE a=23064;\nUPDATE t2 SET c='sixty thousand eight hundred ninety-five' WHERE a=23065;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty' WHERE a=23066;\nUPDATE t2 SET c='twenty-five thousand nine hundred ninety-one' WHERE a=23067;\nUPDATE t2 SET c='seventy-one thousand one hundred sixty-two' WHERE a=23068;\nUPDATE t2 SET c='nineteen thousand two hundred eighty-six' WHERE a=23069;\nUPDATE t2 SET c='thirty-two thousand three hundred ninety-six' WHERE a=23070;\nUPDATE t2 SET c='twenty-one thousand three hundred nineteen' WHERE a=23071;\nUPDATE t2 SET c='fifty-three thousand seven hundred ninety-nine' WHERE a=23072;\nUPDATE t2 SET c='ninety-two thousand five hundred sixty-four' WHERE a=23073;\nUPDATE t2 SET c='ninety-five thousand ninety-five' WHERE a=23074;\nUPDATE t2 SET c='seventy-three thousand three hundred seventy-three' WHERE a=23075;\nUPDATE t2 SET c='forty-eight thousand two hundred ninety-nine' WHERE a=23076;\nUPDATE t2 SET c='twenty-five thousand nine hundred sixty-four' WHERE a=23077;\nUPDATE t2 SET c='seventy-three thousand six hundred sixty' WHERE a=23078;\nUPDATE t2 SET c='thirty-six thousand seven hundred thirty-five' WHERE a=23079;\nUPDATE t2 SET c='seven thousand five hundred seventy' WHERE a=23080;\nUPDATE t2 SET c='seven thousand two hundred thirty' WHERE a=23081;\nUPDATE t2 SET c='sixty-one thousand four hundred sixty-five' WHERE a=23082;\nUPDATE t2 SET c='forty-five thousand eight hundred thirty-three' WHERE a=23083;\nUPDATE t2 SET c='eighty-five thousand ninety-four' WHERE a=23084;\nUPDATE t2 SET c='seventy-six thousand five hundred ninety-six' WHERE a=23085;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-seven' WHERE a=23086;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-five' WHERE a=23087;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-one' WHERE a=23088;\nUPDATE t2 SET c='thirty-eight thousand one hundred eighty-seven' WHERE a=23089;\nUPDATE t2 SET c='sixteen thousand seventeen' WHERE a=23090;\nUPDATE t2 SET c='sixty thousand one hundred eighty-six' WHERE a=23091;\nUPDATE t2 SET c='fifty-four thousand one hundred fifty-four' WHERE a=23092;\nUPDATE t2 SET c='forty-three thousand four hundred seventy' WHERE a=23093;\nUPDATE t2 SET c='forty-six thousand seven hundred thirty-three' WHERE a=23094;\nUPDATE t2 SET c='fifty-six thousand nine hundred thirty-eight' WHERE a=23095;\nUPDATE t2 SET c='thirteen thousand four hundred forty-three' WHERE a=23096;\nUPDATE t2 SET c='sixty-three thousand seven hundred forty-two' WHERE a=23097;\nUPDATE t2 SET c='five thousand three hundred five' WHERE a=23098;\nUPDATE t2 SET c='fifty-three thousand nine hundred seventy-four' WHERE a=23099;\nUPDATE t2 SET c='sixty-two thousand thirty-eight' WHERE a=23100;\nUPDATE t2 SET c='ninety-four thousand four' WHERE a=23101;\nUPDATE t2 SET c='sixty-four thousand three hundred ninety-five' WHERE a=23102;\nUPDATE t2 SET c='nine thousand three hundred ninety-five' WHERE a=23103;\nUPDATE t2 SET c='thirty-three thousand seven hundred eighty-eight' WHERE a=23104;\nUPDATE t2 SET c='twenty-three thousand sixty-six' WHERE a=23105;\nUPDATE t2 SET c='eighty-two thousand five hundred thirty-six' WHERE a=23106;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-seven' WHERE a=23107;\nUPDATE t2 SET c='seventy thousand five hundred seventy-six' WHERE a=23108;\nUPDATE t2 SET c='fifty-nine thousand nine hundred ninety-seven' WHERE a=23109;\nUPDATE t2 SET c='thirty-seven thousand six hundred sixty-three' WHERE a=23110;\nUPDATE t2 SET c='fifty-seven thousand sixty-six' WHERE a=23111;\nUPDATE t2 SET c='eleven thousand three hundred thirty' WHERE a=23112;\nUPDATE t2 SET c='seventy-two thousand three hundred sixty-nine' WHERE a=23113;\nUPDATE t2 SET c='eighty-two thousand one hundred thirty-nine' WHERE a=23114;\nUPDATE t2 SET c='eighty-three thousand nine hundred thirty-one' WHERE a=23115;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-six' WHERE a=23116;\nUPDATE t2 SET c='twenty-six thousand eight hundred twenty-six' WHERE a=23117;\nUPDATE t2 SET c='seventy-five thousand three hundred sixty-three' WHERE a=23118;\nUPDATE t2 SET c='thirty-four thousand two hundred seventy-five' WHERE a=23119;\nUPDATE t2 SET c='sixty-four thousand one hundred ninety-two' WHERE a=23120;\nUPDATE t2 SET c='twelve thousand three hundred twenty-six' WHERE a=23121;\nUPDATE t2 SET c='fifty-five thousand two hundred three' WHERE a=23122;\nUPDATE t2 SET c='sixty-three thousand four hundred ten' WHERE a=23123;\nUPDATE t2 SET c='seventeen thousand eight hundred fifty-one' WHERE a=23124;\nUPDATE t2 SET c='forty thousand eighty-one' WHERE a=23125;\nUPDATE t2 SET c='one thousand three hundred twenty-five' WHERE a=23126;\nUPDATE t2 SET c='forty-four thousand five hundred nineteen' WHERE a=23127;\nUPDATE t2 SET c='twenty-three thousand nine hundred fifty-nine' WHERE a=23128;\nUPDATE t2 SET c='ninety-nine thousand six hundred eleven' WHERE a=23129;\nUPDATE t2 SET c='forty-two thousand four hundred fifty-five' WHERE a=23130;\nUPDATE t2 SET c='seventy-two thousand five hundred ninety' WHERE a=23131;\nUPDATE t2 SET c='sixty-eight thousand nine hundred ninety-nine' WHERE a=23132;\nUPDATE t2 SET c='thirty-two thousand five hundred eight' WHERE a=23133;\nUPDATE t2 SET c='forty-one thousand one hundred one' WHERE a=23134;\nUPDATE t2 SET c='twenty-five thousand eight hundred twenty-six' WHERE a=23135;\nUPDATE t2 SET c='thirty-nine thousand five hundred seventy-six' WHERE a=23136;\nUPDATE t2 SET c='twenty-six thousand fifteen' WHERE a=23137;\nUPDATE t2 SET c='forty-seven thousand nine hundred nineteen' WHERE a=23138;\nUPDATE t2 SET c='ninety-nine thousand six hundred eleven' WHERE a=23139;\nUPDATE t2 SET c='forty thousand seven hundred thirty-two' WHERE a=23140;\nUPDATE t2 SET c='thirty-three thousand five hundred fifteen' WHERE a=23141;\nUPDATE t2 SET c='ninety-one thousand seventy-eight' WHERE a=23142;\nUPDATE t2 SET c='fifteen thousand six hundred seventy-five' WHERE a=23143;\nUPDATE t2 SET c='ninety-eight thousand seventy-one' WHERE a=23144;\nUPDATE t2 SET c='forty-one thousand two hundred twenty-six' WHERE a=23145;\nUPDATE t2 SET c='ninety-five thousand five hundred sixty-seven' WHERE a=23146;\nUPDATE t2 SET c='twenty-five thousand nine hundred forty-two' WHERE a=23147;\nUPDATE t2 SET c='forty-four thousand five hundred ten' WHERE a=23148;\nUPDATE t2 SET c='seventy-five thousand two hundred sixty-seven' WHERE a=23149;\nUPDATE t2 SET c='twenty-five thousand two hundred forty-two' WHERE a=23150;\nUPDATE t2 SET c='twenty-one thousand seven hundred forty' WHERE a=23151;\nUPDATE t2 SET c='four thousand five hundred forty-nine' WHERE a=23152;\nUPDATE t2 SET c='twenty-seven thousand eight hundred sixty-one' WHERE a=23153;\nUPDATE t2 SET c='twenty-one thousand seven hundred seventy-one' WHERE a=23154;\nUPDATE t2 SET c='eight thousand five hundred ninety-six' WHERE a=23155;\nUPDATE t2 SET c='forty-three thousand six hundred twenty-four' WHERE a=23156;\nUPDATE t2 SET c='nine thousand five hundred nine' WHERE a=23157;\nUPDATE t2 SET c='twenty-two thousand six hundred forty-nine' WHERE a=23158;\nUPDATE t2 SET c='eight thousand three hundred eighteen' WHERE a=23159;\nUPDATE t2 SET c='fifty-two thousand four hundred eighty-nine' WHERE a=23160;\nUPDATE t2 SET c='thirty-four thousand nine hundred seventy-four' WHERE a=23161;\nUPDATE t2 SET c='forty-five thousand five hundred forty-three' WHERE a=23162;\nUPDATE t2 SET c='thirty-two thousand six hundred forty-four' WHERE a=23163;\nUPDATE t2 SET c='eighty-two thousand three hundred twenty-six' WHERE a=23164;\nUPDATE t2 SET c='twenty-six thousand thirty-four' WHERE a=23165;\nUPDATE t2 SET c='two thousand seven hundred forty-five' WHERE a=23166;\nUPDATE t2 SET c='thirty-five thousand nine hundred six' WHERE a=23167;\nUPDATE t2 SET c='eighty thousand six hundred eighty-five' WHERE a=23168;\nUPDATE t2 SET c='seven thousand seven hundred eleven' WHERE a=23169;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seven' WHERE a=23170;\nUPDATE t2 SET c='eighty-five thousand two hundred forty-two' WHERE a=23171;\nUPDATE t2 SET c='forty-three thousand two hundred four' WHERE a=23172;\nUPDATE t2 SET c='twenty-one thousand two hundred eighty-nine' WHERE a=23173;\nUPDATE t2 SET c='ninety thousand six hundred sixteen' WHERE a=23174;\nUPDATE t2 SET c='ninety-eight thousand three hundred four' WHERE a=23175;\nUPDATE t2 SET c='twenty-four thousand seven hundred ninety-one' WHERE a=23176;\nUPDATE t2 SET c='four thousand two hundred sixty' WHERE a=23177;\nUPDATE t2 SET c='twenty-eight thousand three hundred forty-one' WHERE a=23178;\nUPDATE t2 SET c='two thousand eight hundred thirty-one' WHERE a=23179;\nUPDATE t2 SET c='ninety-five thousand thirty-five' WHERE a=23180;\nUPDATE t2 SET c='twenty-four thousand four hundred seventy-five' WHERE a=23181;\nUPDATE t2 SET c='eighty-six thousand six hundred one' WHERE a=23182;\nUPDATE t2 SET c='eight thousand six hundred eighty' WHERE a=23183;\nUPDATE t2 SET c='fifty-three thousand three hundred nineteen' WHERE a=23184;\nUPDATE t2 SET c='ninety-three thousand eight hundred twenty-three' WHERE a=23185;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-six' WHERE a=23186;\nUPDATE t2 SET c='fifty-five thousand nine hundred ninety-eight' WHERE a=23187;\nUPDATE t2 SET c='nine thousand five hundred fifty-five' WHERE a=23188;\nUPDATE t2 SET c='seventy-six thousand eight hundred thirty-seven' WHERE a=23189;\nUPDATE t2 SET c='sixty thousand four hundred thirty-one' WHERE a=23190;\nUPDATE t2 SET c='forty-five thousand forty-three' WHERE a=23191;\nUPDATE t2 SET c='seventy-seven thousand nine hundred eighty-two' WHERE a=23192;\nUPDATE t2 SET c='sixty-five thousand eight hundred eleven' WHERE a=23193;\nUPDATE t2 SET c='seventy-five thousand three hundred seventeen' WHERE a=23194;\nUPDATE t2 SET c='twenty-three thousand six hundred eight' WHERE a=23195;\nUPDATE t2 SET c='sixty-four thousand two hundred forty-one' WHERE a=23196;\nUPDATE t2 SET c='eighty-five thousand three hundred twenty-eight' WHERE a=23197;\nUPDATE t2 SET c='thirty-eight thousand eight hundred thirteen' WHERE a=23198;\nUPDATE t2 SET c='fifty-four thousand two' WHERE a=23199;\nUPDATE t2 SET c='thirty-nine thousand ninety-eight' WHERE a=23200;\nUPDATE t2 SET c='eighty-nine thousand six hundred thirty-seven' WHERE a=23201;\nUPDATE t2 SET c='forty-eight thousand one hundred sixty-one' WHERE a=23202;\nUPDATE t2 SET c='fifty-four thousand one hundred twenty-eight' WHERE a=23203;\nUPDATE t2 SET c='seventy-nine thousand four hundred forty-three' WHERE a=23204;\nUPDATE t2 SET c='forty-seven thousand six hundred ten' WHERE a=23205;\nUPDATE t2 SET c='forty-two thousand fifty-nine' WHERE a=23206;\nUPDATE t2 SET c='twenty-five thousand nine hundred sixty' WHERE a=23207;\nUPDATE t2 SET c='eighty-one thousand nine hundred eighty' WHERE a=23208;\nUPDATE t2 SET c='seventy-eight thousand two hundred six' WHERE a=23209;\nUPDATE t2 SET c='fifty-five thousand three hundred eighty-four' WHERE a=23210;\nUPDATE t2 SET c='nineteen thousand one' WHERE a=23211;\nUPDATE t2 SET c='thirty-three thousand eight hundred one' WHERE a=23212;\nUPDATE t2 SET c='ninety-five thousand nine hundred eight' WHERE a=23213;\nUPDATE t2 SET c='seventy-three thousand eight hundred seventy-five' WHERE a=23214;\nUPDATE t2 SET c='sixty thousand eight hundred twelve' WHERE a=23215;\nUPDATE t2 SET c='one hundred fifty-one' WHERE a=23216;\nUPDATE t2 SET c='ninety-five thousand four hundred ninety-eight' WHERE a=23217;\nUPDATE t2 SET c='eighty-seven thousand five hundred ninety-eight' WHERE a=23218;\nUPDATE t2 SET c='eighty-seven thousand four hundred twenty-nine' WHERE a=23219;\nUPDATE t2 SET c='thirty-eight thousand seven hundred five' WHERE a=23220;\nUPDATE t2 SET c='sixty-three thousand one hundred seventy-one' WHERE a=23221;\nUPDATE t2 SET c='twenty-six thousand eighty-one' WHERE a=23222;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-four' WHERE a=23223;\nUPDATE t2 SET c='eighty thousand five hundred forty-five' WHERE a=23224;\nUPDATE t2 SET c='ninety thousand seven' WHERE a=23225;\nUPDATE t2 SET c='eighty-five thousand eight hundred eighty-seven' WHERE a=23226;\nUPDATE t2 SET c='twenty-eight thousand four hundred forty-seven' WHERE a=23227;\nUPDATE t2 SET c='sixty-nine thousand seven hundred seventy-seven' WHERE a=23228;\nUPDATE t2 SET c='three thousand two hundred sixty-eight' WHERE a=23229;\nUPDATE t2 SET c='twenty-three thousand five hundred thirty-four' WHERE a=23230;\nUPDATE t2 SET c='ninety-one thousand one hundred nine' WHERE a=23231;\nUPDATE t2 SET c='ninety-four thousand three hundred thirty-four' WHERE a=23232;\nUPDATE t2 SET c='forty-seven thousand three hundred one' WHERE a=23233;\nUPDATE t2 SET c='seventeen thousand seventeen' WHERE a=23234;\nUPDATE t2 SET c='sixty-three thousand five hundred forty-nine' WHERE a=23235;\nUPDATE t2 SET c='sixty-seven thousand eight hundred fifty-three' WHERE a=23236;\nUPDATE t2 SET c='fifty-two thousand five' WHERE a=23237;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-one' WHERE a=23238;\nUPDATE t2 SET c='thirty-one thousand one hundred seventy-three' WHERE a=23239;\nUPDATE t2 SET c='ninety-one thousand five hundred sixty-two' WHERE a=23240;\nUPDATE t2 SET c='sixty-six thousand five hundred fifty-two' WHERE a=23241;\nUPDATE t2 SET c='sixteen thousand eight hundred ninety-seven' WHERE a=23242;\nUPDATE t2 SET c='ninety-four thousand forty-one' WHERE a=23243;\nUPDATE t2 SET c='ninety-five thousand three hundred ninety-one' WHERE a=23244;\nUPDATE t2 SET c='nineteen thousand one hundred seven' WHERE a=23245;\nUPDATE t2 SET c='nine thousand six hundred twenty-three' WHERE a=23246;\nUPDATE t2 SET c='thirty-seven thousand eight hundred ninety-four' WHERE a=23247;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-seven' WHERE a=23248;\nUPDATE t2 SET c='forty-four thousand nine hundred seventeen' WHERE a=23249;\nUPDATE t2 SET c='forty-three thousand seven hundred fifty-three' WHERE a=23250;\nUPDATE t2 SET c='fifty thousand one hundred thirty-seven' WHERE a=23251;\nUPDATE t2 SET c='seventy thousand five hundred forty-seven' WHERE a=23252;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-three' WHERE a=23253;\nUPDATE t2 SET c='sixty-one thousand two hundred twenty-five' WHERE a=23254;\nUPDATE t2 SET c='one thousand seven hundred sixteen' WHERE a=23255;\nUPDATE t2 SET c='fifty-three thousand four hundred forty' WHERE a=23256;\nUPDATE t2 SET c='eighty-five thousand four hundred eighty-two' WHERE a=23257;\nUPDATE t2 SET c='fourteen thousand five hundred seventy-one' WHERE a=23258;\nUPDATE t2 SET c='seventy-one thousand two hundred sixty-four' WHERE a=23259;\nUPDATE t2 SET c='eighty-nine thousand two hundred eighty-seven' WHERE a=23260;\nUPDATE t2 SET c='twenty-six thousand two hundred six' WHERE a=23261;\nUPDATE t2 SET c='thirty-eight thousand eight hundred ninety-four' WHERE a=23262;\nUPDATE t2 SET c='fifty-six thousand six hundred sixty' WHERE a=23263;\nUPDATE t2 SET c='twenty-six thousand five hundred ninety-six' WHERE a=23264;\nUPDATE t2 SET c='forty-four thousand four hundred seven' WHERE a=23265;\nUPDATE t2 SET c='fifty-four thousand four hundred thirty' WHERE a=23266;\nUPDATE t2 SET c='eighty-one thousand three hundred forty' WHERE a=23267;\nUPDATE t2 SET c='eleven thousand ninety-eight' WHERE a=23268;\nUPDATE t2 SET c='fifty-seven thousand eight hundred eighty-six' WHERE a=23269;\nUPDATE t2 SET c='four thousand six hundred forty-two' WHERE a=23270;\nUPDATE t2 SET c='forty-six thousand five hundred eighteen' WHERE a=23271;\nUPDATE t2 SET c='sixty-seven thousand two hundred twenty-seven' WHERE a=23272;\nUPDATE t2 SET c='seventy-six thousand three hundred sixteen' WHERE a=23273;\nUPDATE t2 SET c='sixty-nine thousand six hundred thirty-seven' WHERE a=23274;\nUPDATE t2 SET c='eight thousand three hundred forty-two' WHERE a=23275;\nUPDATE t2 SET c='eighty-nine thousand seven hundred twenty-three' WHERE a=23276;\nUPDATE t2 SET c='thirteen thousand two hundred seven' WHERE a=23277;\nUPDATE t2 SET c='ten thousand five hundred fifty-four' WHERE a=23278;\nUPDATE t2 SET c='ninety-seven thousand two hundred forty-eight' WHERE a=23279;\nUPDATE t2 SET c='two thousand three hundred ninety-three' WHERE a=23280;\nUPDATE t2 SET c='twenty-three thousand one hundred two' WHERE a=23281;\nUPDATE t2 SET c='sixty-nine thousand four hundred eighty-eight' WHERE a=23282;\nUPDATE t2 SET c='seventy-seven thousand five hundred forty-five' WHERE a=23283;\nUPDATE t2 SET c='seventy thousand six hundred sixteen' WHERE a=23284;\nUPDATE t2 SET c='fifty-seven thousand eighty-two' WHERE a=23285;\nUPDATE t2 SET c='six thousand eight hundred eighty-two' WHERE a=23286;\nUPDATE t2 SET c='twenty-one thousand seven hundred twenty-one' WHERE a=23287;\nUPDATE t2 SET c='thirty-three thousand six hundred forty-two' WHERE a=23288;\nUPDATE t2 SET c='seventy-one thousand four hundred eighty-nine' WHERE a=23289;\nUPDATE t2 SET c='sixty-seven thousand seven hundred thirty-five' WHERE a=23290;\nUPDATE t2 SET c='fifty-three thousand two hundred forty-five' WHERE a=23291;\nUPDATE t2 SET c='ninety-eight thousand fourteen' WHERE a=23292;\nUPDATE t2 SET c='fifty-one thousand five hundred thirty-eight' WHERE a=23293;\nUPDATE t2 SET c='eighty-four thousand nine hundred fifty-five' WHERE a=23294;\nUPDATE t2 SET c='six thousand four hundred three' WHERE a=23295;\nUPDATE t2 SET c='seventy-three thousand four hundred twenty-one' WHERE a=23296;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty-one' WHERE a=23297;\nUPDATE t2 SET c='seventy-two thousand five hundred fifty-eight' WHERE a=23298;\nUPDATE t2 SET c='seventy-nine thousand three hundred fifty-eight' WHERE a=23299;\nUPDATE t2 SET c='thirty-eight thousand five hundred eighty-seven' WHERE a=23300;\nUPDATE t2 SET c='seventy-eight thousand five hundred fifty-four' WHERE a=23301;\nUPDATE t2 SET c='eighty-six thousand six hundred twenty-six' WHERE a=23302;\nUPDATE t2 SET c='sixty-nine thousand two hundred thirty-seven' WHERE a=23303;\nUPDATE t2 SET c='fifty-two thousand two hundred ninety-eight' WHERE a=23304;\nUPDATE t2 SET c='three thousand eight hundred seven' WHERE a=23305;\nUPDATE t2 SET c='fifty thousand six hundred eighty-four' WHERE a=23306;\nUPDATE t2 SET c='eight hundred ninety-four' WHERE a=23307;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-seven' WHERE a=23308;\nUPDATE t2 SET c='seventy-one thousand one hundred twenty-six' WHERE a=23309;\nUPDATE t2 SET c='sixty-three thousand eighty-seven' WHERE a=23310;\nUPDATE t2 SET c='seventy-three thousand eight hundred sixteen' WHERE a=23311;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-eight' WHERE a=23312;\nUPDATE t2 SET c='eighty-seven thousand two hundred seventy' WHERE a=23313;\nUPDATE t2 SET c='sixty-four thousand six hundred ten' WHERE a=23314;\nUPDATE t2 SET c='twenty-nine thousand ten' WHERE a=23315;\nUPDATE t2 SET c='eighteen thousand one hundred thirty-two' WHERE a=23316;\nUPDATE t2 SET c='forty-one thousand two hundred eighty-three' WHERE a=23317;\nUPDATE t2 SET c='sixty-seven thousand one hundred fifty' WHERE a=23318;\nUPDATE t2 SET c='seventy-seven thousand nine hundred forty-nine' WHERE a=23319;\nUPDATE t2 SET c='twenty-one thousand nine hundred fourteen' WHERE a=23320;\nUPDATE t2 SET c='eighty-five thousand forty-one' WHERE a=23321;\nUPDATE t2 SET c='twenty-five thousand seven hundred thirty-nine' WHERE a=23322;\nUPDATE t2 SET c='twelve thousand ninety-five' WHERE a=23323;\nUPDATE t2 SET c='seventy-eight thousand two hundred eighty-two' WHERE a=23324;\nUPDATE t2 SET c='forty-seven thousand twenty-eight' WHERE a=23325;\nUPDATE t2 SET c='twenty-four thousand eight hundred twenty-five' WHERE a=23326;\nUPDATE t2 SET c='thirty thousand eight hundred eighteen' WHERE a=23327;\nUPDATE t2 SET c='seventy thousand eight hundred twenty-two' WHERE a=23328;\nUPDATE t2 SET c='nine thousand two hundred forty-one' WHERE a=23329;\nUPDATE t2 SET c='forty-four thousand four hundred forty-seven' WHERE a=23330;\nUPDATE t2 SET c='ninety-seven thousand four hundred sixteen' WHERE a=23331;\nUPDATE t2 SET c='forty-three thousand two hundred thirty' WHERE a=23332;\nUPDATE t2 SET c='sixty-seven thousand two hundred fifty-nine' WHERE a=23333;\nUPDATE t2 SET c='ninety-four thousand four hundred fourteen' WHERE a=23334;\nUPDATE t2 SET c='seventy-three thousand eight hundred twenty-eight' WHERE a=23335;\nUPDATE t2 SET c='seventy-six thousand three hundred fifty' WHERE a=23336;\nUPDATE t2 SET c='twenty-four thousand two hundred fifty-eight' WHERE a=23337;\nUPDATE t2 SET c='sixty-three thousand nine hundred sixty-four' WHERE a=23338;\nUPDATE t2 SET c='sixty-two thousand six hundred seventy-nine' WHERE a=23339;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-one' WHERE a=23340;\nUPDATE t2 SET c='forty-seven thousand four' WHERE a=23341;\nUPDATE t2 SET c='ninety-one thousand four hundred twelve' WHERE a=23342;\nUPDATE t2 SET c='thirty-three thousand four hundred twenty' WHERE a=23343;\nUPDATE t2 SET c='sixteen thousand five hundred eighty-eight' WHERE a=23344;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-three' WHERE a=23345;\nUPDATE t2 SET c='nine thousand one hundred seventy-four' WHERE a=23346;\nUPDATE t2 SET c='thirteen thousand sixty-two' WHERE a=23347;\nUPDATE t2 SET c='eighty-one thousand sixty-eight' WHERE a=23348;\nUPDATE t2 SET c='forty-nine thousand nine hundred twenty-seven' WHERE a=23349;\nUPDATE t2 SET c='thirty-five thousand twenty-four' WHERE a=23350;\nUPDATE t2 SET c='eighty-eight thousand three hundred' WHERE a=23351;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-nine' WHERE a=23352;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-one' WHERE a=23353;\nUPDATE t2 SET c='five thousand seven hundred nine' WHERE a=23354;\nUPDATE t2 SET c='seventy thousand seven hundred two' WHERE a=23355;\nUPDATE t2 SET c='seventy-seven thousand six hundred forty-two' WHERE a=23356;\nUPDATE t2 SET c='sixteen thousand ninety-eight' WHERE a=23357;\nUPDATE t2 SET c='twenty-seven thousand seven hundred twenty-seven' WHERE a=23358;\nUPDATE t2 SET c='eighteen thousand seven hundred sixty-five' WHERE a=23359;\nUPDATE t2 SET c='twenty thousand seven hundred sixty-five' WHERE a=23360;\nUPDATE t2 SET c='ninety-eight thousand seven hundred ninety-five' WHERE a=23361;\nUPDATE t2 SET c='eighty-four thousand eighty-six' WHERE a=23362;\nUPDATE t2 SET c='eighty-five thousand eight hundred twenty-two' WHERE a=23363;\nUPDATE t2 SET c='five thousand four hundred forty-eight' WHERE a=23364;\nUPDATE t2 SET c='fifty-eight thousand two hundred thirty' WHERE a=23365;\nUPDATE t2 SET c='thirty-six thousand eight hundred one' WHERE a=23366;\nUPDATE t2 SET c='twenty-two thousand six hundred seventy' WHERE a=23367;\nUPDATE t2 SET c='sixteen thousand three hundred seventy-seven' WHERE a=23368;\nUPDATE t2 SET c='thirty thousand one hundred seventy-three' WHERE a=23369;\nUPDATE t2 SET c='ninety-nine thousand four hundred seventy-seven' WHERE a=23370;\nUPDATE t2 SET c='forty-four thousand nine hundred sixty-one' WHERE a=23371;\nUPDATE t2 SET c='seventeen thousand eight hundred twenty-three' WHERE a=23372;\nUPDATE t2 SET c='sixty-one thousand eight hundred fifty-four' WHERE a=23373;\nUPDATE t2 SET c='fifty thousand eight hundred twenty-five' WHERE a=23374;\nUPDATE t2 SET c='forty-six thousand six hundred sixty-one' WHERE a=23375;\nUPDATE t2 SET c='eighty-one thousand forty-seven' WHERE a=23376;\nUPDATE t2 SET c='twenty-six thousand four hundred six' WHERE a=23377;\nUPDATE t2 SET c='sixty-nine thousand nine hundred fifty-one' WHERE a=23378;\nUPDATE t2 SET c='fifty-seven thousand four hundred four' WHERE a=23379;\nUPDATE t2 SET c='eighty-nine thousand one hundred sixty-four' WHERE a=23380;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-eight' WHERE a=23381;\nUPDATE t2 SET c='ninety-seven thousand six hundred eighty-eight' WHERE a=23382;\nUPDATE t2 SET c='forty thousand seven hundred sixty-five' WHERE a=23383;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-nine' WHERE a=23384;\nUPDATE t2 SET c='fifty-nine thousand one hundred seventy-seven' WHERE a=23385;\nUPDATE t2 SET c='seventy-one thousand one hundred fifty-seven' WHERE a=23386;\nUPDATE t2 SET c='forty-one thousand five hundred eighty-four' WHERE a=23387;\nUPDATE t2 SET c='ninety-two thousand nine hundred forty-eight' WHERE a=23388;\nUPDATE t2 SET c='forty-eight thousand fifty-three' WHERE a=23389;\nUPDATE t2 SET c='ninety-nine thousand seven hundred fourteen' WHERE a=23390;\nUPDATE t2 SET c='ninety-one thousand eight hundred fifty-three' WHERE a=23391;\nUPDATE t2 SET c='forty-one thousand two hundred ninety-five' WHERE a=23392;\nUPDATE t2 SET c='three thousand eight hundred fifty-five' WHERE a=23393;\nUPDATE t2 SET c='twenty-seven thousand six hundred ten' WHERE a=23394;\nUPDATE t2 SET c='thirty-seven thousand twenty-eight' WHERE a=23395;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-eight' WHERE a=23396;\nUPDATE t2 SET c='sixty-three thousand three hundred six' WHERE a=23397;\nUPDATE t2 SET c='fifty-six thousand five hundred thirty-two' WHERE a=23398;\nUPDATE t2 SET c='six thousand nine hundred thirty-four' WHERE a=23399;\nUPDATE t2 SET c='twenty-five thousand one hundred twenty-five' WHERE a=23400;\nUPDATE t2 SET c='forty-one thousand six hundred twenty-five' WHERE a=23401;\nUPDATE t2 SET c='ninety-nine thousand seven hundred twenty' WHERE a=23402;\nUPDATE t2 SET c='sixty-two thousand seven hundred twenty-six' WHERE a=23403;\nUPDATE t2 SET c='thirty-nine thousand two hundred twenty-two' WHERE a=23404;\nUPDATE t2 SET c='sixty-five thousand one hundred two' WHERE a=23405;\nUPDATE t2 SET c='three thousand five hundred seventy-seven' WHERE a=23406;\nUPDATE t2 SET c='thirty-seven thousand six hundred ninety-three' WHERE a=23407;\nUPDATE t2 SET c='thirty-seven thousand fifty-three' WHERE a=23408;\nUPDATE t2 SET c='six thousand five hundred forty-two' WHERE a=23409;\nUPDATE t2 SET c='ninety-five thousand seven hundred fifty-nine' WHERE a=23410;\nUPDATE t2 SET c='one thousand five hundred forty-eight' WHERE a=23411;\nUPDATE t2 SET c='seventy-four thousand nine hundred sixty-six' WHERE a=23412;\nUPDATE t2 SET c='thirty-nine thousand eight hundred eighty-one' WHERE a=23413;\nUPDATE t2 SET c='forty-five thousand six hundred seventy-one' WHERE a=23414;\nUPDATE t2 SET c='fifty-seven thousand one hundred twenty-one' WHERE a=23415;\nUPDATE t2 SET c='thirty thousand four hundred thirty-seven' WHERE a=23416;\nUPDATE t2 SET c='eight thousand eighteen' WHERE a=23417;\nUPDATE t2 SET c='fifty thousand three hundred seventy-four' WHERE a=23418;\nUPDATE t2 SET c='two thousand two hundred thirty-three' WHERE a=23419;\nUPDATE t2 SET c='twenty thousand forty-one' WHERE a=23420;\nUPDATE t2 SET c='fifty-two thousand one hundred sixty-six' WHERE a=23421;\nUPDATE t2 SET c='thirteen thousand two hundred seven' WHERE a=23422;\nUPDATE t2 SET c='seventy-nine thousand seven hundred seventy-nine' WHERE a=23423;\nUPDATE t2 SET c='thirty-five thousand eight hundred thirty-eight' WHERE a=23424;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-nine' WHERE a=23425;\nUPDATE t2 SET c='fifty-six thousand seven hundred twenty' WHERE a=23426;\nUPDATE t2 SET c='fifty-one thousand four hundred thirty-three' WHERE a=23427;\nUPDATE t2 SET c='twenty-six thousand three hundred eighty-two' WHERE a=23428;\nUPDATE t2 SET c='eighty-three thousand three hundred sixty-nine' WHERE a=23429;\nUPDATE t2 SET c='sixty-one thousand six hundred fifty-four' WHERE a=23430;\nUPDATE t2 SET c='forty-nine thousand three hundred eighty-nine' WHERE a=23431;\nUPDATE t2 SET c='four thousand seven hundred forty-four' WHERE a=23432;\nUPDATE t2 SET c='sixty thousand seven' WHERE a=23433;\nUPDATE t2 SET c='sixty-six thousand seven hundred ninety' WHERE a=23434;\nUPDATE t2 SET c='fifty-two thousand three hundred forty-one' WHERE a=23435;\nUPDATE t2 SET c='sixty-two thousand eight hundred ninety' WHERE a=23436;\nUPDATE t2 SET c='forty-seven thousand three hundred ninety-eight' WHERE a=23437;\nUPDATE t2 SET c='twenty thousand four hundred seventy-two' WHERE a=23438;\nUPDATE t2 SET c='seventy-two thousand one hundred thirteen' WHERE a=23439;\nUPDATE t2 SET c='nine hundred sixty-five' WHERE a=23440;\nUPDATE t2 SET c='seventy-five thousand four' WHERE a=23441;\nUPDATE t2 SET c='sixty-seven thousand one hundred fifty-four' WHERE a=23442;\nUPDATE t2 SET c='sixty thousand eight hundred eight' WHERE a=23443;\nUPDATE t2 SET c='fifty-eight thousand four hundred seventy-seven' WHERE a=23444;\nUPDATE t2 SET c='thirty-nine thousand eight hundred eighty-one' WHERE a=23445;\nUPDATE t2 SET c='twenty-two thousand nine hundred eighty-four' WHERE a=23446;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-seven' WHERE a=23447;\nUPDATE t2 SET c='two thousand five hundred sixty-one' WHERE a=23448;\nUPDATE t2 SET c='eighty-one thousand two hundred forty-one' WHERE a=23449;\nUPDATE t2 SET c='sixty-four thousand eight hundred forty-eight' WHERE a=23450;\nUPDATE t2 SET c='forty-eight thousand six hundred eleven' WHERE a=23451;\nUPDATE t2 SET c='twenty-eight thousand seven hundred fifty-one' WHERE a=23452;\nUPDATE t2 SET c='nineteen thousand five hundred fifty-nine' WHERE a=23453;\nUPDATE t2 SET c='forty-nine thousand three hundred sixty-six' WHERE a=23454;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-three' WHERE a=23455;\nUPDATE t2 SET c='fifty-six thousand three hundred thirty-nine' WHERE a=23456;\nUPDATE t2 SET c='thirty-four thousand seven hundred fifty' WHERE a=23457;\nUPDATE t2 SET c='nine thousand six hundred twenty-five' WHERE a=23458;\nUPDATE t2 SET c='eighty-two thousand six hundred ninety-eight' WHERE a=23459;\nUPDATE t2 SET c='thirty-two thousand one hundred thirty-one' WHERE a=23460;\nUPDATE t2 SET c='forty-one thousand nine hundred forty-three' WHERE a=23461;\nUPDATE t2 SET c='thirty-nine thousand four hundred fifty-five' WHERE a=23462;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty-five' WHERE a=23463;\nUPDATE t2 SET c='thirty-one thousand eight hundred twenty-three' WHERE a=23464;\nUPDATE t2 SET c='seventy-nine thousand four hundred thirteen' WHERE a=23465;\nUPDATE t2 SET c='ninety-nine thousand three hundred seventy-five' WHERE a=23466;\nUPDATE t2 SET c='ninety-four thousand seven hundred thirty-six' WHERE a=23467;\nUPDATE t2 SET c='four hundred sixty-nine' WHERE a=23468;\nUPDATE t2 SET c='seventy-two thousand twenty-one' WHERE a=23469;\nUPDATE t2 SET c='eighty-one thousand six hundred fifty-six' WHERE a=23470;\nUPDATE t2 SET c='ten thousand two hundred seventeen' WHERE a=23471;\nUPDATE t2 SET c='fifty-five thousand thirty-seven' WHERE a=23472;\nUPDATE t2 SET c='ninety thousand six hundred three' WHERE a=23473;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-three' WHERE a=23474;\nUPDATE t2 SET c='ninety-nine thousand eight' WHERE a=23475;\nUPDATE t2 SET c='eighty-seven thousand seven hundred sixty-eight' WHERE a=23476;\nUPDATE t2 SET c='fifty-two thousand four hundred thirty-five' WHERE a=23477;\nUPDATE t2 SET c='thirty-five thousand five hundred seventy-seven' WHERE a=23478;\nUPDATE t2 SET c='fifty-seven thousand one hundred two' WHERE a=23479;\nUPDATE t2 SET c='ninety-nine thousand six hundred seventy-seven' WHERE a=23480;\nUPDATE t2 SET c='three thousand two hundred three' WHERE a=23481;\nUPDATE t2 SET c='sixteen thousand six hundred fifty-three' WHERE a=23482;\nUPDATE t2 SET c='seventy thousand three hundred thirty-two' WHERE a=23483;\nUPDATE t2 SET c='twenty-three thousand two hundred' WHERE a=23484;\nUPDATE t2 SET c='eighty-four thousand eight hundred eighty-one' WHERE a=23485;\nUPDATE t2 SET c='fifty-nine thousand nine hundred eighty-three' WHERE a=23486;\nUPDATE t2 SET c='ninety thousand five hundred thirty-five' WHERE a=23487;\nUPDATE t2 SET c='twenty-six thousand nine hundred sixty-five' WHERE a=23488;\nUPDATE t2 SET c='sixty-eight thousand six hundred ninety-nine' WHERE a=23489;\nUPDATE t2 SET c='thirty-eight thousand three hundred eighty-six' WHERE a=23490;\nUPDATE t2 SET c='thirty-one thousand eight hundred thirty-nine' WHERE a=23491;\nUPDATE t2 SET c='eighty-three thousand eight hundred seventy-six' WHERE a=23492;\nUPDATE t2 SET c='forty-nine thousand six hundred fifty-three' WHERE a=23493;\nUPDATE t2 SET c='fifty thousand five hundred seventy-three' WHERE a=23494;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-seven' WHERE a=23495;\nUPDATE t2 SET c='sixteen thousand seven hundred twenty-five' WHERE a=23496;\nUPDATE t2 SET c='thirty-five thousand twenty-six' WHERE a=23497;\nUPDATE t2 SET c='eighty-six thousand five hundred eighty-six' WHERE a=23498;\nUPDATE t2 SET c='twenty-four thousand six hundred twenty-two' WHERE a=23499;\nUPDATE t2 SET c='two hundred fifty-five' WHERE a=23500;\nUPDATE t2 SET c='seventy-six thousand eight hundred seventy-six' WHERE a=23501;\nUPDATE t2 SET c='forty-five thousand two hundred two' WHERE a=23502;\nUPDATE t2 SET c='twenty thousand nine hundred fifteen' WHERE a=23503;\nUPDATE t2 SET c='six thousand six hundred ninety' WHERE a=23504;\nUPDATE t2 SET c='one thousand nine hundred fifty-three' WHERE a=23505;\nUPDATE t2 SET c='thirty-four thousand six hundred forty' WHERE a=23506;\nUPDATE t2 SET c='thirty-five thousand three hundred twenty-four' WHERE a=23507;\nUPDATE t2 SET c='eight thousand three hundred one' WHERE a=23508;\nUPDATE t2 SET c='eighty-four thousand fourteen' WHERE a=23509;\nUPDATE t2 SET c='eight thousand two hundred forty-five' WHERE a=23510;\nUPDATE t2 SET c='nineteen thousand six hundred ninety-two' WHERE a=23511;\nUPDATE t2 SET c='ninety-three thousand eight hundred nineteen' WHERE a=23512;\nUPDATE t2 SET c='seventy-six thousand seven hundred fifty-four' WHERE a=23513;\nUPDATE t2 SET c='ten thousand four hundred thirty-five' WHERE a=23514;\nUPDATE t2 SET c='fifty-seven thousand thirty-six' WHERE a=23515;\nUPDATE t2 SET c='eighty-nine thousand three hundred seventy-eight' WHERE a=23516;\nUPDATE t2 SET c='nine thousand nine hundred fifty-three' WHERE a=23517;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-two' WHERE a=23518;\nUPDATE t2 SET c='ninety thousand four hundred thirty-three' WHERE a=23519;\nUPDATE t2 SET c='one thousand two hundred twenty-one' WHERE a=23520;\nUPDATE t2 SET c='twenty-one thousand six hundred thirty-four' WHERE a=23521;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-six' WHERE a=23522;\nUPDATE t2 SET c='fifty-nine thousand four hundred thirty' WHERE a=23523;\nUPDATE t2 SET c='seventy thousand nine hundred four' WHERE a=23524;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-one' WHERE a=23525;\nUPDATE t2 SET c='thirty-eight thousand eighty-two' WHERE a=23526;\nUPDATE t2 SET c='forty-one thousand five hundred twenty-eight' WHERE a=23527;\nUPDATE t2 SET c='twenty-nine thousand five hundred sixty-six' WHERE a=23528;\nUPDATE t2 SET c='eighty-two thousand eight hundred forty-nine' WHERE a=23529;\nUPDATE t2 SET c='fifteen thousand seven hundred fifty-two' WHERE a=23530;\nUPDATE t2 SET c='twenty-one thousand three hundred fifteen' WHERE a=23531;\nUPDATE t2 SET c='eight thousand nine hundred seventy-one' WHERE a=23532;\nUPDATE t2 SET c='ninety-three thousand two hundred fifteen' WHERE a=23533;\nUPDATE t2 SET c='eighty-six thousand six hundred ninety-five' WHERE a=23534;\nUPDATE t2 SET c='twenty-six thousand two hundred ninety' WHERE a=23535;\nUPDATE t2 SET c='seven thousand five hundred forty-three' WHERE a=23536;\nUPDATE t2 SET c='ninety-five thousand two hundred ninety-one' WHERE a=23537;\nUPDATE t2 SET c='forty-two thousand forty-nine' WHERE a=23538;\nUPDATE t2 SET c='thirteen thousand eight hundred twenty-six' WHERE a=23539;\nUPDATE t2 SET c='thirty-three thousand two hundred seventeen' WHERE a=23540;\nUPDATE t2 SET c='seventy-six thousand seven hundred seventy-seven' WHERE a=23541;\nUPDATE t2 SET c='twenty-four thousand six hundred ninety-eight' WHERE a=23542;\nUPDATE t2 SET c='fifty-one thousand eight hundred ninety-one' WHERE a=23543;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-four' WHERE a=23544;\nUPDATE t2 SET c='three thousand seven hundred twenty-six' WHERE a=23545;\nUPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=23546;\nUPDATE t2 SET c='forty-eight thousand four hundred seventy-six' WHERE a=23547;\nUPDATE t2 SET c='seventy-four thousand two hundred forty-nine' WHERE a=23548;\nUPDATE t2 SET c='twenty-one thousand five hundred thirty-three' WHERE a=23549;\nUPDATE t2 SET c='fifty-two thousand nine hundred nineteen' WHERE a=23550;\nUPDATE t2 SET c='one thousand one hundred eighty-six' WHERE a=23551;\nUPDATE t2 SET c='seventeen thousand one hundred eighteen' WHERE a=23552;\nUPDATE t2 SET c='six thousand one hundred thirty-three' WHERE a=23553;\nUPDATE t2 SET c='three thousand six hundred twenty-one' WHERE a=23554;\nUPDATE t2 SET c='six thousand eight hundred sixty-one' WHERE a=23555;\nUPDATE t2 SET c='forty-five thousand five hundred forty-five' WHERE a=23556;\nUPDATE t2 SET c='eighty thousand two hundred forty-one' WHERE a=23557;\nUPDATE t2 SET c='seventy-eight thousand four hundred eighteen' WHERE a=23558;\nUPDATE t2 SET c='forty thousand nine hundred fifty-seven' WHERE a=23559;\nUPDATE t2 SET c='fourteen thousand four hundred two' WHERE a=23560;\nUPDATE t2 SET c='seventy-six thousand one hundred thirteen' WHERE a=23561;\nUPDATE t2 SET c='forty-four thousand nine hundred ninety-three' WHERE a=23562;\nUPDATE t2 SET c='thirty-eight thousand eight hundred fifty-three' WHERE a=23563;\nUPDATE t2 SET c='seventy-seven thousand seven hundred ninety-one' WHERE a=23564;\nUPDATE t2 SET c='seventy-seven thousand five hundred seventeen' WHERE a=23565;\nUPDATE t2 SET c='forty-seven thousand two hundred forty-four' WHERE a=23566;\nUPDATE t2 SET c='fifteen thousand nine hundred eighty-eight' WHERE a=23567;\nUPDATE t2 SET c='eighty-eight thousand forty-two' WHERE a=23568;\nUPDATE t2 SET c='sixty-five thousand seven hundred ninety' WHERE a=23569;\nUPDATE t2 SET c='seventy-two thousand seven hundred twenty-three' WHERE a=23570;\nUPDATE t2 SET c='ninety-four thousand seven hundred' WHERE a=23571;\nUPDATE t2 SET c='sixty-six thousand three hundred eighty' WHERE a=23572;\nUPDATE t2 SET c='twenty thousand nineteen' WHERE a=23573;\nUPDATE t2 SET c='six hundred seventy-one' WHERE a=23574;\nUPDATE t2 SET c='ninety thousand nine hundred eighty' WHERE a=23575;\nUPDATE t2 SET c='seventy-five thousand four hundred sixty-six' WHERE a=23576;\nUPDATE t2 SET c='forty thousand seven hundred sixty-four' WHERE a=23577;\nUPDATE t2 SET c='thirty-six thousand eight hundred forty-seven' WHERE a=23578;\nUPDATE t2 SET c='eighty-eight thousand four hundred sixty-three' WHERE a=23579;\nUPDATE t2 SET c='thirty-nine thousand five hundred ninety-seven' WHERE a=23580;\nUPDATE t2 SET c='five hundred ninety-nine' WHERE a=23581;\nUPDATE t2 SET c='six thousand thirty-five' WHERE a=23582;\nUPDATE t2 SET c='six thousand four hundred twenty-eight' WHERE a=23583;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-one' WHERE a=23584;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=23585;\nUPDATE t2 SET c='fifty-eight thousand four hundred forty-two' WHERE a=23586;\nUPDATE t2 SET c='fifty thousand seven hundred twenty-two' WHERE a=23587;\nUPDATE t2 SET c='sixty-five thousand nine hundred fifty' WHERE a=23588;\nUPDATE t2 SET c='sixty-six thousand nine hundred seventy-six' WHERE a=23589;\nUPDATE t2 SET c='thirty-eight thousand one hundred forty-nine' WHERE a=23590;\nUPDATE t2 SET c='thirty-eight thousand two hundred ninety-six' WHERE a=23591;\nUPDATE t2 SET c='seventy-one thousand three hundred nine' WHERE a=23592;\nUPDATE t2 SET c='sixty-one thousand seven hundred sixty-two' WHERE a=23593;\nUPDATE t2 SET c='forty-five thousand six hundred twenty-three' WHERE a=23594;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=23595;\nUPDATE t2 SET c='forty-one thousand two hundred forty-nine' WHERE a=23596;\nUPDATE t2 SET c='two thousand seven hundred eleven' WHERE a=23597;\nUPDATE t2 SET c='seventy-two thousand eight hundred sixty' WHERE a=23598;\nUPDATE t2 SET c='fourteen thousand five hundred thirty-one' WHERE a=23599;\nUPDATE t2 SET c='twenty thousand nine hundred fifty-nine' WHERE a=23600;\nUPDATE t2 SET c='eighty-nine thousand one hundred thirty-six' WHERE a=23601;\nUPDATE t2 SET c='forty-four thousand three hundred seventy-two' WHERE a=23602;\nUPDATE t2 SET c='sixty-six thousand nine hundred sixty-seven' WHERE a=23603;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-five' WHERE a=23604;\nUPDATE t2 SET c='eighty thousand forty-seven' WHERE a=23605;\nUPDATE t2 SET c='twenty-three thousand seven hundred fifty-five' WHERE a=23606;\nUPDATE t2 SET c='ninety-six thousand two hundred seventy-two' WHERE a=23607;\nUPDATE t2 SET c='six thousand four hundred fifteen' WHERE a=23608;\nUPDATE t2 SET c='sixty-three thousand four hundred' WHERE a=23609;\nUPDATE t2 SET c='eighty-eight thousand eight hundred fourteen' WHERE a=23610;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-two' WHERE a=23611;\nUPDATE t2 SET c='sixty-four thousand sixty-eight' WHERE a=23612;\nUPDATE t2 SET c='twenty-nine thousand three hundred ninety-two' WHERE a=23613;\nUPDATE t2 SET c='ninety-nine thousand sixty-five' WHERE a=23614;\nUPDATE t2 SET c='twenty-eight thousand six hundred six' WHERE a=23615;\nUPDATE t2 SET c='ninety thousand five hundred ninety-nine' WHERE a=23616;\nUPDATE t2 SET c='five thousand five hundred fifty-six' WHERE a=23617;\nUPDATE t2 SET c='sixty-two thousand ninety-seven' WHERE a=23618;\nUPDATE t2 SET c='sixty-five thousand seven hundred sixty-nine' WHERE a=23619;\nUPDATE t2 SET c='eighty-seven thousand four hundred sixty-four' WHERE a=23620;\nUPDATE t2 SET c='fifty-seven thousand eight hundred seventy-seven' WHERE a=23621;\nUPDATE t2 SET c='twenty-one thousand one hundred forty-six' WHERE a=23622;\nUPDATE t2 SET c='thirteen thousand three hundred four' WHERE a=23623;\nUPDATE t2 SET c='one thousand seven hundred eighteen' WHERE a=23624;\nUPDATE t2 SET c='forty-five thousand seven hundred sixty-two' WHERE a=23625;\nUPDATE t2 SET c='thirty-nine thousand one hundred eight' WHERE a=23626;\nUPDATE t2 SET c='nine thousand two hundred thirty' WHERE a=23627;\nUPDATE t2 SET c='forty-six thousand nine hundred one' WHERE a=23628;\nUPDATE t2 SET c='seventy thousand nine hundred forty' WHERE a=23629;\nUPDATE t2 SET c='eleven thousand eight hundred twenty-eight' WHERE a=23630;\nUPDATE t2 SET c='sixty-one thousand five hundred thirty-eight' WHERE a=23631;\nUPDATE t2 SET c='seventy thousand two hundred eighty-five' WHERE a=23632;\nUPDATE t2 SET c='forty-seven thousand three hundred eighty-eight' WHERE a=23633;\nUPDATE t2 SET c='sixteen thousand three hundred forty-one' WHERE a=23634;\nUPDATE t2 SET c='thirty thousand three hundred seventeen' WHERE a=23635;\nUPDATE t2 SET c='thirty thousand seven hundred fifty-two' WHERE a=23636;\nUPDATE t2 SET c='thirty thousand eight hundred forty-seven' WHERE a=23637;\nUPDATE t2 SET c='twelve thousand seven hundred seventy-five' WHERE a=23638;\nUPDATE t2 SET c='twelve thousand one hundred ninety-five' WHERE a=23639;\nUPDATE t2 SET c='sixty-seven thousand nine hundred sixty' WHERE a=23640;\nUPDATE t2 SET c='fifty-four thousand one hundred ninety-nine' WHERE a=23641;\nUPDATE t2 SET c='seventeen thousand twenty' WHERE a=23642;\nUPDATE t2 SET c='seventy-one thousand four hundred eight' WHERE a=23643;\nUPDATE t2 SET c='fifty-eight thousand one hundred twenty-one' WHERE a=23644;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty' WHERE a=23645;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-one' WHERE a=23646;\nUPDATE t2 SET c='fifty-one thousand two hundred sixty' WHERE a=23647;\nUPDATE t2 SET c='fifty-four thousand nine hundred thirty-six' WHERE a=23648;\nUPDATE t2 SET c='thirty thousand seven hundred fifty-four' WHERE a=23649;\nUPDATE t2 SET c='eighty-two thousand seven hundred nine' WHERE a=23650;\nUPDATE t2 SET c='thirty-five thousand ninety-six' WHERE a=23651;\nUPDATE t2 SET c='forty-four thousand one hundred sixty-one' WHERE a=23652;\nUPDATE t2 SET c='three thousand nine hundred thirty-seven' WHERE a=23653;\nUPDATE t2 SET c='thirty-seven thousand nine hundred fifty' WHERE a=23654;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-four' WHERE a=23655;\nUPDATE t2 SET c='four thousand two hundred two' WHERE a=23656;\nUPDATE t2 SET c='ninety-five thousand one hundred seventy-four' WHERE a=23657;\nUPDATE t2 SET c='ten thousand eighty-seven' WHERE a=23658;\nUPDATE t2 SET c='twenty-seven thousand three hundred six' WHERE a=23659;\nUPDATE t2 SET c='seven thousand seven hundred fifty-four' WHERE a=23660;\nUPDATE t2 SET c='forty-eight thousand two hundred eighty-four' WHERE a=23661;\nUPDATE t2 SET c='sixty-four thousand four hundred fifteen' WHERE a=23662;\nUPDATE t2 SET c='fifty-nine thousand seven hundred seventy-nine' WHERE a=23663;\nUPDATE t2 SET c='six hundred seventy-five' WHERE a=23664;\nUPDATE t2 SET c='sixty-one thousand nine hundred eighty-one' WHERE a=23665;\nUPDATE t2 SET c='eighty-three thousand six hundred nine' WHERE a=23666;\nUPDATE t2 SET c='forty-four thousand two hundred eighty-four' WHERE a=23667;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-eight' WHERE a=23668;\nUPDATE t2 SET c='eighty-four thousand three hundred' WHERE a=23669;\nUPDATE t2 SET c='forty-four thousand nine hundred fifty-six' WHERE a=23670;\nUPDATE t2 SET c='sixty-three thousand eight hundred twelve' WHERE a=23671;\nUPDATE t2 SET c='ninety thousand four hundred fifty' WHERE a=23672;\nUPDATE t2 SET c='seventy-two thousand six hundred seventy-four' WHERE a=23673;\nUPDATE t2 SET c='thirty-nine thousand ninety-two' WHERE a=23674;\nUPDATE t2 SET c='one thousand three hundred eighty-five' WHERE a=23675;\nUPDATE t2 SET c='fifty-seven thousand nine hundred forty-eight' WHERE a=23676;\nUPDATE t2 SET c='ten thousand eight hundred thirty-two' WHERE a=23677;\nUPDATE t2 SET c='twenty-two thousand nine hundred twenty-three' WHERE a=23678;\nUPDATE t2 SET c='sixty-three thousand eight hundred fifteen' WHERE a=23679;\nUPDATE t2 SET c='ninety-three thousand eight hundred thirty-two' WHERE a=23680;\nUPDATE t2 SET c='sixty thousand seven hundred seventy-four' WHERE a=23681;\nUPDATE t2 SET c='sixty-two thousand nineteen' WHERE a=23682;\nUPDATE t2 SET c='forty-eight thousand seven hundred eighty' WHERE a=23683;\nUPDATE t2 SET c='fifteen thousand nine hundred ten' WHERE a=23684;\nUPDATE t2 SET c='seventy-nine thousand fifty-one' WHERE a=23685;\nUPDATE t2 SET c='fifty-three thousand six hundred seventy-four' WHERE a=23686;\nUPDATE t2 SET c='twenty-five thousand five hundred ten' WHERE a=23687;\nUPDATE t2 SET c='five thousand twelve' WHERE a=23688;\nUPDATE t2 SET c='forty-four thousand six hundred seventy-four' WHERE a=23689;\nUPDATE t2 SET c='twenty thousand one hundred thirteen' WHERE a=23690;\nUPDATE t2 SET c='seventy-six thousand sixty-eight' WHERE a=23691;\nUPDATE t2 SET c='ninety-four thousand nine hundred forty-two' WHERE a=23692;\nUPDATE t2 SET c='thirteen thousand five hundred sixty-four' WHERE a=23693;\nUPDATE t2 SET c='eighty thousand four hundred forty-eight' WHERE a=23694;\nUPDATE t2 SET c='five thousand six hundred eighty-four' WHERE a=23695;\nUPDATE t2 SET c='thirty-four thousand four hundred thirty-two' WHERE a=23696;\nUPDATE t2 SET c='sixty-five thousand one hundred thirty' WHERE a=23697;\nUPDATE t2 SET c='sixty-eight thousand seven hundred thirty-nine' WHERE a=23698;\nUPDATE t2 SET c='seventy-one thousand eight hundred forty-six' WHERE a=23699;\nUPDATE t2 SET c='fifty-nine thousand three hundred twenty-three' WHERE a=23700;\nUPDATE t2 SET c='two thousand forty-eight' WHERE a=23701;\nUPDATE t2 SET c='thirty-nine thousand seven hundred sixty-eight' WHERE a=23702;\nUPDATE t2 SET c='eighty-four thousand fifty-eight' WHERE a=23703;\nUPDATE t2 SET c='thirty-four thousand seven hundred' WHERE a=23704;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-five' WHERE a=23705;\nUPDATE t2 SET c='eighty-eight thousand six hundred seventy-one' WHERE a=23706;\nUPDATE t2 SET c='twenty-two thousand nine hundred thirty-eight' WHERE a=23707;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-six' WHERE a=23708;\nUPDATE t2 SET c='nineteen thousand one hundred eighty-one' WHERE a=23709;\nUPDATE t2 SET c='sixty-nine thousand forty-nine' WHERE a=23710;\nUPDATE t2 SET c='seventy-one thousand ninety-seven' WHERE a=23711;\nUPDATE t2 SET c='three thousand two hundred thirty-four' WHERE a=23712;\nUPDATE t2 SET c='ninety-eight thousand eight hundred thirty-seven' WHERE a=23713;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-one' WHERE a=23714;\nUPDATE t2 SET c='eighteen thousand seven hundred forty-three' WHERE a=23715;\nUPDATE t2 SET c='fifty-two thousand six hundred fifty-five' WHERE a=23716;\nUPDATE t2 SET c='twenty-six thousand two hundred sixty-eight' WHERE a=23717;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-seven' WHERE a=23718;\nUPDATE t2 SET c='forty-one thousand five hundred two' WHERE a=23719;\nUPDATE t2 SET c='nine thousand thirty-one' WHERE a=23720;\nUPDATE t2 SET c='ninety-eight thousand four hundred twenty-three' WHERE a=23721;\nUPDATE t2 SET c='ninety-two thousand three hundred seventy-four' WHERE a=23722;\nUPDATE t2 SET c='seventy-two thousand four hundred twenty-three' WHERE a=23723;\nUPDATE t2 SET c='seventy-two thousand seventy-nine' WHERE a=23724;\nUPDATE t2 SET c='seventy-eight thousand one hundred eight' WHERE a=23725;\nUPDATE t2 SET c='sixty-four thousand five hundred seven' WHERE a=23726;\nUPDATE t2 SET c='sixty-six thousand seven hundred twenty-two' WHERE a=23727;\nUPDATE t2 SET c='one thousand seven hundred twelve' WHERE a=23728;\nUPDATE t2 SET c='twenty thousand seven hundred seventeen' WHERE a=23729;\nUPDATE t2 SET c='fifty-seven thousand nine hundred sixty-seven' WHERE a=23730;\nUPDATE t2 SET c='eighty-five thousand sixty' WHERE a=23731;\nUPDATE t2 SET c='forty-two thousand six hundred seven' WHERE a=23732;\nUPDATE t2 SET c='forty-nine thousand sixty-one' WHERE a=23733;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-two' WHERE a=23734;\nUPDATE t2 SET c='fifty-eight thousand nine hundred ninety-seven' WHERE a=23735;\nUPDATE t2 SET c='sixty-four thousand six hundred twelve' WHERE a=23736;\nUPDATE t2 SET c='fifty-four thousand seven hundred sixty-eight' WHERE a=23737;\nUPDATE t2 SET c='eighty-six thousand two hundred forty-five' WHERE a=23738;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixty-three' WHERE a=23739;\nUPDATE t2 SET c='eighty-six thousand eight hundred fifty-one' WHERE a=23740;\nUPDATE t2 SET c='forty thousand nine hundred sixty-five' WHERE a=23741;\nUPDATE t2 SET c='ninety-five thousand seven hundred ninety-eight' WHERE a=23742;\nUPDATE t2 SET c='fifteen thousand nine hundred four' WHERE a=23743;\nUPDATE t2 SET c='forty-three thousand eight hundred forty-nine' WHERE a=23744;\nUPDATE t2 SET c='fifty-four thousand three' WHERE a=23745;\nUPDATE t2 SET c='eighty thousand twenty-three' WHERE a=23746;\nUPDATE t2 SET c='twelve thousand three hundred ninety-six' WHERE a=23747;\nUPDATE t2 SET c='forty-four thousand four hundred forty-four' WHERE a=23748;\nUPDATE t2 SET c='fifty-nine thousand eight hundred forty-five' WHERE a=23749;\nUPDATE t2 SET c='ninety-one thousand four hundred fifty-seven' WHERE a=23750;\nUPDATE t2 SET c='eighty-two thousand three hundred eighty-one' WHERE a=23751;\nUPDATE t2 SET c='seventy-five thousand three hundred eleven' WHERE a=23752;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=23753;\nUPDATE t2 SET c='ninety-five thousand six hundred twenty-six' WHERE a=23754;\nUPDATE t2 SET c='sixty-five thousand nine hundred two' WHERE a=23755;\nUPDATE t2 SET c='seventeen thousand one hundred sixteen' WHERE a=23756;\nUPDATE t2 SET c='two hundred four' WHERE a=23757;\nUPDATE t2 SET c='sixty-one thousand nine hundred sixty' WHERE a=23758;\nUPDATE t2 SET c='forty-nine thousand four hundred sixty-nine' WHERE a=23759;\nUPDATE t2 SET c='twenty-two thousand two hundred forty' WHERE a=23760;\nUPDATE t2 SET c='thirty-six thousand three hundred sixty' WHERE a=23761;\nUPDATE t2 SET c='sixteen thousand eight hundred thirty' WHERE a=23762;\nUPDATE t2 SET c='nine hundred thirty-six' WHERE a=23763;\nUPDATE t2 SET c='fifty-eight thousand one hundred twenty-eight' WHERE a=23764;\nUPDATE t2 SET c='eighty-four thousand one hundred sixty-two' WHERE a=23765;\nUPDATE t2 SET c='seventy-one thousand two hundred fifty-two' WHERE a=23766;\nUPDATE t2 SET c='ninety-four thousand three hundred ninety-two' WHERE a=23767;\nUPDATE t2 SET c='eighty-two thousand twenty-seven' WHERE a=23768;\nUPDATE t2 SET c='twenty-seven thousand' WHERE a=23769;\nUPDATE t2 SET c='forty-nine thousand four' WHERE a=23770;\nUPDATE t2 SET c='sixty-six thousand fifty-two' WHERE a=23771;\nUPDATE t2 SET c='thirty-nine thousand nine hundred forty-one' WHERE a=23772;\nUPDATE t2 SET c='seven thousand six hundred eighty-six' WHERE a=23773;\nUPDATE t2 SET c='fifty thousand forty-four' WHERE a=23774;\nUPDATE t2 SET c='thirty-five thousand six hundred twenty' WHERE a=23775;\nUPDATE t2 SET c='eight thousand one hundred four' WHERE a=23776;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-three' WHERE a=23777;\nUPDATE t2 SET c='thirty-two thousand five hundred fifty-three' WHERE a=23778;\nUPDATE t2 SET c='ninety-four thousand six hundred ten' WHERE a=23779;\nUPDATE t2 SET c='eighty-five thousand seven hundred seventy-eight' WHERE a=23780;\nUPDATE t2 SET c='seventeen thousand four hundred forty-four' WHERE a=23781;\nUPDATE t2 SET c='twenty-eight thousand seven hundred sixty-five' WHERE a=23782;\nUPDATE t2 SET c='eighty-two thousand nine hundred seventy-six' WHERE a=23783;\nUPDATE t2 SET c='seventy-three thousand five' WHERE a=23784;\nUPDATE t2 SET c='eighty-five thousand six hundred sixty-six' WHERE a=23785;\nUPDATE t2 SET c='thirty thousand seven hundred two' WHERE a=23786;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-four' WHERE a=23787;\nUPDATE t2 SET c='ten thousand four hundred forty-two' WHERE a=23788;\nUPDATE t2 SET c='fifty-five thousand two hundred forty-six' WHERE a=23789;\nUPDATE t2 SET c='seventy-five thousand two hundred twenty-four' WHERE a=23790;\nUPDATE t2 SET c='ten thousand two hundred fifty-six' WHERE a=23791;\nUPDATE t2 SET c='ninety-four thousand two hundred ninety-nine' WHERE a=23792;\nUPDATE t2 SET c='fifty-eight thousand six hundred fifty-seven' WHERE a=23793;\nUPDATE t2 SET c='seventy-five thousand six hundred ninety-six' WHERE a=23794;\nUPDATE t2 SET c='fifty-one thousand five hundred ten' WHERE a=23795;\nUPDATE t2 SET c='sixty-seven thousand six hundred twenty-five' WHERE a=23796;\nUPDATE t2 SET c='thirty-nine thousand four hundred fifty-two' WHERE a=23797;\nUPDATE t2 SET c='four thousand six hundred seventeen' WHERE a=23798;\nUPDATE t2 SET c='ninety-six thousand eight hundred sixty-five' WHERE a=23799;\nUPDATE t2 SET c='nine thousand one hundred forty-seven' WHERE a=23800;\nUPDATE t2 SET c='ninety-seven thousand nine hundred thirty-nine' WHERE a=23801;\nUPDATE t2 SET c='twelve thousand nine hundred eighty-nine' WHERE a=23802;\nUPDATE t2 SET c='eighty-eight thousand six hundred sixty-six' WHERE a=23803;\nUPDATE t2 SET c='forty-eight thousand twenty-eight' WHERE a=23804;\nUPDATE t2 SET c='sixty-eight thousand seventy-three' WHERE a=23805;\nUPDATE t2 SET c='sixty-two thousand sixty-six' WHERE a=23806;\nUPDATE t2 SET c='nine thousand six hundred fourteen' WHERE a=23807;\nUPDATE t2 SET c='sixty-four thousand thirty-two' WHERE a=23808;\nUPDATE t2 SET c='thirty-two thousand six hundred eighty-one' WHERE a=23809;\nUPDATE t2 SET c='eighty-five thousand six hundred nineteen' WHERE a=23810;\nUPDATE t2 SET c='eighty-three thousand five hundred seventy-five' WHERE a=23811;\nUPDATE t2 SET c='eight thousand nine hundred twenty-seven' WHERE a=23812;\nUPDATE t2 SET c='two thousand one hundred forty-seven' WHERE a=23813;\nUPDATE t2 SET c='forty-eight thousand three hundred eighteen' WHERE a=23814;\nUPDATE t2 SET c='forty-six thousand five hundred five' WHERE a=23815;\nUPDATE t2 SET c='sixty-five thousand one hundred six' WHERE a=23816;\nUPDATE t2 SET c='fifty-eight thousand nine hundred fifteen' WHERE a=23817;\nUPDATE t2 SET c='fifty-eight thousand nine hundred seventy-four' WHERE a=23818;\nUPDATE t2 SET c='ten thousand six hundred fifteen' WHERE a=23819;\nUPDATE t2 SET c='twenty-three thousand eight hundred eighty-two' WHERE a=23820;\nUPDATE t2 SET c='forty-seven thousand thirty-one' WHERE a=23821;\nUPDATE t2 SET c='ninety-three thousand six' WHERE a=23822;\nUPDATE t2 SET c='forty-one thousand five hundred sixty-seven' WHERE a=23823;\nUPDATE t2 SET c='ninety-nine thousand four hundred eighty-one' WHERE a=23824;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-five' WHERE a=23825;\nUPDATE t2 SET c='fifty-three thousand one hundred seventy-five' WHERE a=23826;\nUPDATE t2 SET c='thirty-seven thousand one hundred eight' WHERE a=23827;\nUPDATE t2 SET c='six thousand nine hundred sixty-one' WHERE a=23828;\nUPDATE t2 SET c='eight thousand thirty' WHERE a=23829;\nUPDATE t2 SET c='sixty-three thousand eight hundred thirty-eight' WHERE a=23830;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty' WHERE a=23831;\nUPDATE t2 SET c='seventy-four thousand five hundred ninety-five' WHERE a=23832;\nUPDATE t2 SET c='nine thousand five hundred two' WHERE a=23833;\nUPDATE t2 SET c='sixty-seven thousand eighty-one' WHERE a=23834;\nUPDATE t2 SET c='fifty-one thousand nine hundred forty-two' WHERE a=23835;\nUPDATE t2 SET c='fifty-eight thousand six hundred' WHERE a=23836;\nUPDATE t2 SET c='seventy-two thousand two hundred forty-one' WHERE a=23837;\nUPDATE t2 SET c='nine thousand seven hundred fifteen' WHERE a=23838;\nUPDATE t2 SET c='thirty-one thousand four hundred fifty' WHERE a=23839;\nUPDATE t2 SET c='ten thousand forty-eight' WHERE a=23840;\nUPDATE t2 SET c='thirty-nine thousand eight hundred thirteen' WHERE a=23841;\nUPDATE t2 SET c='ninety-two thousand eleven' WHERE a=23842;\nUPDATE t2 SET c='fifteen thousand one hundred ninety-seven' WHERE a=23843;\nUPDATE t2 SET c='sixty-eight thousand five hundred eighty-four' WHERE a=23844;\nUPDATE t2 SET c='seventeen thousand two hundred twenty-seven' WHERE a=23845;\nUPDATE t2 SET c='four thousand nine hundred sixty-four' WHERE a=23846;\nUPDATE t2 SET c='ten thousand twenty-two' WHERE a=23847;\nUPDATE t2 SET c='fifty thousand three hundred fifty-eight' WHERE a=23848;\nUPDATE t2 SET c='seventeen thousand five hundred twenty-eight' WHERE a=23849;\nUPDATE t2 SET c='forty thousand eight hundred fifty-two' WHERE a=23850;\nUPDATE t2 SET c='five thousand three hundred twenty-one' WHERE a=23851;\nUPDATE t2 SET c='twenty-three thousand two hundred twenty-one' WHERE a=23852;\nUPDATE t2 SET c='thirty-one thousand one hundred fifty-eight' WHERE a=23853;\nUPDATE t2 SET c='two thousand six hundred seventy-three' WHERE a=23854;\nUPDATE t2 SET c='fifty-seven thousand six hundred seventeen' WHERE a=23855;\nUPDATE t2 SET c='ninety thousand nine hundred twenty-one' WHERE a=23856;\nUPDATE t2 SET c='forty-five thousand nine hundred fifty-five' WHERE a=23857;\nUPDATE t2 SET c='eighty-eight thousand three hundred fifty-three' WHERE a=23858;\nUPDATE t2 SET c='eighty-four thousand two hundred forty-two' WHERE a=23859;\nUPDATE t2 SET c='eighty-eight thousand five hundred four' WHERE a=23860;\nUPDATE t2 SET c='eighty-three thousand nine hundred nineteen' WHERE a=23861;\nUPDATE t2 SET c='thirty-three thousand two hundred twenty-nine' WHERE a=23862;\nUPDATE t2 SET c='twenty-nine thousand seven hundred thirty-two' WHERE a=23863;\nUPDATE t2 SET c='eighteen thousand six hundred ninety-two' WHERE a=23864;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-one' WHERE a=23865;\nUPDATE t2 SET c='fifty-three thousand four hundred sixty-one' WHERE a=23866;\nUPDATE t2 SET c='eighty thousand five hundred fifty-seven' WHERE a=23867;\nUPDATE t2 SET c='sixty-eight thousand eight hundred twenty-seven' WHERE a=23868;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-one' WHERE a=23869;\nUPDATE t2 SET c='ninety-two thousand six hundred ninety-eight' WHERE a=23870;\nUPDATE t2 SET c='fifty-four thousand three hundred twenty-two' WHERE a=23871;\nUPDATE t2 SET c='fifty-one thousand twenty-three' WHERE a=23872;\nUPDATE t2 SET c='ninety-seven thousand two hundred sixty-five' WHERE a=23873;\nUPDATE t2 SET c='twenty-three thousand three hundred forty-eight' WHERE a=23874;\nUPDATE t2 SET c='fourteen thousand six hundred thirty-six' WHERE a=23875;\nUPDATE t2 SET c='twenty-one thousand two hundred fifty-seven' WHERE a=23876;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy' WHERE a=23877;\nUPDATE t2 SET c='seventeen thousand seven hundred twenty-nine' WHERE a=23878;\nUPDATE t2 SET c='forty-three thousand seven hundred three' WHERE a=23879;\nUPDATE t2 SET c='sixty-seven thousand three hundred seventy-six' WHERE a=23880;\nUPDATE t2 SET c='eighty-four thousand nine hundred four' WHERE a=23881;\nUPDATE t2 SET c='two thousand eight hundred ninety-two' WHERE a=23882;\nUPDATE t2 SET c='nineteen thousand six hundred eight' WHERE a=23883;\nUPDATE t2 SET c='twenty-eight thousand one hundred seventy-six' WHERE a=23884;\nUPDATE t2 SET c='sixty-three thousand seven hundred seventy-five' WHERE a=23885;\nUPDATE t2 SET c='forty thousand six hundred twenty-three' WHERE a=23886;\nUPDATE t2 SET c='ten thousand seven hundred ninety-two' WHERE a=23887;\nUPDATE t2 SET c='sixty-nine thousand two hundred seventy-two' WHERE a=23888;\nUPDATE t2 SET c='thirty-nine thousand two hundred thirty-one' WHERE a=23889;\nUPDATE t2 SET c='ninety-five thousand five hundred twenty-five' WHERE a=23890;\nUPDATE t2 SET c='ninety-six thousand four hundred sixty-nine' WHERE a=23891;\nUPDATE t2 SET c='thirteen thousand seven hundred ninety-one' WHERE a=23892;\nUPDATE t2 SET c='twenty-eight thousand one hundred twenty-four' WHERE a=23893;\nUPDATE t2 SET c='sixty-four thousand three hundred thirty-five' WHERE a=23894;\nUPDATE t2 SET c='sixty-four thousand five hundred five' WHERE a=23895;\nUPDATE t2 SET c='eighty-eight thousand five hundred ninety-six' WHERE a=23896;\nUPDATE t2 SET c='seven hundred sixty-eight' WHERE a=23897;\nUPDATE t2 SET c='thirty-four thousand one hundred ninety-three' WHERE a=23898;\nUPDATE t2 SET c='thirty-seven thousand seven hundred one' WHERE a=23899;\nUPDATE t2 SET c='twenty-one thousand three hundred ten' WHERE a=23900;\nUPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=23901;\nUPDATE t2 SET c='sixty-seven thousand two hundred thirty-four' WHERE a=23902;\nUPDATE t2 SET c='sixty-eight thousand eight hundred sixty-four' WHERE a=23903;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-two' WHERE a=23904;\nUPDATE t2 SET c='eight thousand nine hundred seventy-four' WHERE a=23905;\nUPDATE t2 SET c='fifty-nine thousand one hundred ninety-one' WHERE a=23906;\nUPDATE t2 SET c='thirty-four thousand five hundred seventy-eight' WHERE a=23907;\nUPDATE t2 SET c='eighty-five thousand twenty-two' WHERE a=23908;\nUPDATE t2 SET c='sixty-nine thousand five hundred twenty-two' WHERE a=23909;\nUPDATE t2 SET c='ninety-three thousand sixty-eight' WHERE a=23910;\nUPDATE t2 SET c='eighty-six thousand three hundred twenty-three' WHERE a=23911;\nUPDATE t2 SET c='seventy-seven thousand five hundred eighty-four' WHERE a=23912;\nUPDATE t2 SET c='seven thousand thirty-six' WHERE a=23913;\nUPDATE t2 SET c='thirty-five thousand nine hundred sixty-nine' WHERE a=23914;\nUPDATE t2 SET c='twenty-two thousand seven hundred one' WHERE a=23915;\nUPDATE t2 SET c='twenty-three thousand nine hundred ninety-three' WHERE a=23916;\nUPDATE t2 SET c='three thousand three hundred eighty' WHERE a=23917;\nUPDATE t2 SET c='forty-five thousand sixty-eight' WHERE a=23918;\nUPDATE t2 SET c='nine thousand one hundred thirty-five' WHERE a=23919;\nUPDATE t2 SET c='nineteen thousand four hundred sixty-one' WHERE a=23920;\nUPDATE t2 SET c='fifty thousand four hundred seventy-eight' WHERE a=23921;\nUPDATE t2 SET c='eighty-two thousand one hundred fifty-four' WHERE a=23922;\nUPDATE t2 SET c='ninety-nine thousand five hundred forty-five' WHERE a=23923;\nUPDATE t2 SET c='seventy-five thousand eighty-eight' WHERE a=23924;\nUPDATE t2 SET c='sixteen thousand nine hundred fourteen' WHERE a=23925;\nUPDATE t2 SET c='nineteen thousand eight hundred seventy-nine' WHERE a=23926;\nUPDATE t2 SET c='eleven thousand seven hundred twelve' WHERE a=23927;\nUPDATE t2 SET c='ninety-four thousand eight hundred thirty-nine' WHERE a=23928;\nUPDATE t2 SET c='thirty-two thousand one hundred forty-two' WHERE a=23929;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-one' WHERE a=23930;\nUPDATE t2 SET c='forty thousand eight hundred fifty-eight' WHERE a=23931;\nUPDATE t2 SET c='seventy-one thousand eight hundred thirty' WHERE a=23932;\nUPDATE t2 SET c='seventy-five thousand five hundred ninety-two' WHERE a=23933;\nUPDATE t2 SET c='ninety-one thousand seven hundred three' WHERE a=23934;\nUPDATE t2 SET c='forty-one thousand nine hundred fourteen' WHERE a=23935;\nUPDATE t2 SET c='twelve thousand six hundred twenty-one' WHERE a=23936;\nUPDATE t2 SET c='forty-three thousand three hundred sixty-one' WHERE a=23937;\nUPDATE t2 SET c='forty-one thousand six hundred five' WHERE a=23938;\nUPDATE t2 SET c='seventy-six thousand nine hundred thirty-seven' WHERE a=23939;\nUPDATE t2 SET c='eighty-three thousand five hundred eighteen' WHERE a=23940;\nUPDATE t2 SET c='seventeen thousand eight hundred eighty-one' WHERE a=23941;\nUPDATE t2 SET c='twenty-eight thousand two hundred seventy-one' WHERE a=23942;\nUPDATE t2 SET c='three thousand seven hundred fifty-eight' WHERE a=23943;\nUPDATE t2 SET c='forty-three thousand four hundred twenty-five' WHERE a=23944;\nUPDATE t2 SET c='two thousand five hundred forty-three' WHERE a=23945;\nUPDATE t2 SET c='seventy-one thousand seven hundred forty-four' WHERE a=23946;\nUPDATE t2 SET c='thirteen thousand eight hundred seventy-nine' WHERE a=23947;\nUPDATE t2 SET c='forty-one thousand sixty-five' WHERE a=23948;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-one' WHERE a=23949;\nUPDATE t2 SET c='fifty-five thousand nine hundred nineteen' WHERE a=23950;\nUPDATE t2 SET c='ninety-one thousand six hundred twelve' WHERE a=23951;\nUPDATE t2 SET c='eighty-eight thousand seven hundred forty-three' WHERE a=23952;\nUPDATE t2 SET c='fifty-two thousand three hundred thirty-five' WHERE a=23953;\nUPDATE t2 SET c='forty-two thousand eighty-two' WHERE a=23954;\nUPDATE t2 SET c='thirty-seven thousand three hundred eighty-eight' WHERE a=23955;\nUPDATE t2 SET c='forty-eight thousand six hundred forty-one' WHERE a=23956;\nUPDATE t2 SET c='seven thousand six hundred fifty-six' WHERE a=23957;\nUPDATE t2 SET c='twenty-three thousand three hundred fifty-six' WHERE a=23958;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-seven' WHERE a=23959;\nUPDATE t2 SET c='thirty-two thousand four hundred eighty-five' WHERE a=23960;\nUPDATE t2 SET c='sixty-six thousand seven hundred sixty-four' WHERE a=23961;\nUPDATE t2 SET c='eighty-two thousand nine hundred seven' WHERE a=23962;\nUPDATE t2 SET c='sixty-three thousand six hundred ninety-three' WHERE a=23963;\nUPDATE t2 SET c='eighty-seven thousand eight hundred seventy-three' WHERE a=23964;\nUPDATE t2 SET c='eighty-eight thousand four hundred thirty-four' WHERE a=23965;\nUPDATE t2 SET c='sixty-four thousand two hundred' WHERE a=23966;\nUPDATE t2 SET c='forty-four thousand one hundred seventy-three' WHERE a=23967;\nUPDATE t2 SET c='forty-seven thousand seven hundred twenty-five' WHERE a=23968;\nUPDATE t2 SET c='ten thousand forty-two' WHERE a=23969;\nUPDATE t2 SET c='twenty-nine thousand seven hundred sixty-five' WHERE a=23970;\nUPDATE t2 SET c='six thousand nine hundred seventy-three' WHERE a=23971;\nUPDATE t2 SET c='ninety-two thousand twenty-five' WHERE a=23972;\nUPDATE t2 SET c='ninety-one thousand seven hundred eighty-one' WHERE a=23973;\nUPDATE t2 SET c='twenty-four thousand two hundred sixty-six' WHERE a=23974;\nUPDATE t2 SET c='eighty-six thousand seven hundred thirty-nine' WHERE a=23975;\nUPDATE t2 SET c='six thousand nine hundred forty-four' WHERE a=23976;\nUPDATE t2 SET c='sixty-eight thousand four hundred forty-six' WHERE a=23977;\nUPDATE t2 SET c='forty-six thousand three hundred sixty' WHERE a=23978;\nUPDATE t2 SET c='eighty-five thousand five hundred eighty-one' WHERE a=23979;\nUPDATE t2 SET c='forty-one thousand three hundred sixty-nine' WHERE a=23980;\nUPDATE t2 SET c='ninety-six thousand six hundred sixty-two' WHERE a=23981;\nUPDATE t2 SET c='fourteen thousand two hundred seventy-six' WHERE a=23982;\nUPDATE t2 SET c='sixty-one thousand four hundred eighty-nine' WHERE a=23983;\nUPDATE t2 SET c='ninety-six thousand five hundred five' WHERE a=23984;\nUPDATE t2 SET c='fifteen thousand three hundred fifty-six' WHERE a=23985;\nUPDATE t2 SET c='eighty-five thousand five hundred ninety-two' WHERE a=23986;\nUPDATE t2 SET c='forty-seven thousand seven hundred seventy-nine' WHERE a=23987;\nUPDATE t2 SET c='thirty-eight thousand sixty-one' WHERE a=23988;\nUPDATE t2 SET c='ninety-two thousand five hundred sixty-seven' WHERE a=23989;\nUPDATE t2 SET c='eighteen thousand three hundred eighteen' WHERE a=23990;\nUPDATE t2 SET c='thirteen thousand nine hundred thirty-nine' WHERE a=23991;\nUPDATE t2 SET c='seventy-three thousand nine hundred thirty-four' WHERE a=23992;\nUPDATE t2 SET c='seventy-six thousand two hundred sixty-three' WHERE a=23993;\nUPDATE t2 SET c='forty-one thousand two hundred twenty-one' WHERE a=23994;\nUPDATE t2 SET c='eighty thousand one hundred one' WHERE a=23995;\nUPDATE t2 SET c='forty-one thousand two hundred fifty-seven' WHERE a=23996;\nUPDATE t2 SET c='sixty-four thousand three hundred sixty-one' WHERE a=23997;\nUPDATE t2 SET c='eighteen thousand eight hundred thirty-nine' WHERE a=23998;\nUPDATE t2 SET c='eighty-six thousand one hundred thirty-three' WHERE a=23999;\nUPDATE t2 SET c='twenty-three thousand nine hundred thirty-three' WHERE a=24000;\nUPDATE t2 SET c='sixty thousand one hundred fifteen' WHERE a=24001;\nUPDATE t2 SET c='thirty thousand seven hundred forty-five' WHERE a=24002;\nUPDATE t2 SET c='seventy-one thousand nine hundred fifty-nine' WHERE a=24003;\nUPDATE t2 SET c='seventy-nine thousand five hundred fifty-seven' WHERE a=24004;\nUPDATE t2 SET c='twenty-five thousand one hundred thirty-one' WHERE a=24005;\nUPDATE t2 SET c='forty-five thousand one hundred twelve' WHERE a=24006;\nUPDATE t2 SET c='seventy-three thousand six' WHERE a=24007;\nUPDATE t2 SET c='twenty-nine thousand nine hundred thirty-eight' WHERE a=24008;\nUPDATE t2 SET c='ninety-eight thousand four hundred fifty-seven' WHERE a=24009;\nUPDATE t2 SET c='eighty thousand two hundred five' WHERE a=24010;\nUPDATE t2 SET c='twenty-five thousand six hundred ninety-five' WHERE a=24011;\nUPDATE t2 SET c='eighty-three thousand eight hundred twenty-five' WHERE a=24012;\nUPDATE t2 SET c='fifty thousand four hundred forty-eight' WHERE a=24013;\nUPDATE t2 SET c='fifteen thousand twenty-nine' WHERE a=24014;\nUPDATE t2 SET c='thirty-one thousand nine hundred nine' WHERE a=24015;\nUPDATE t2 SET c='sixty-eight thousand two hundred fifteen' WHERE a=24016;\nUPDATE t2 SET c='twenty-eight thousand seven hundred forty-one' WHERE a=24017;\nUPDATE t2 SET c='fifty-one thousand nine hundred twenty-eight' WHERE a=24018;\nUPDATE t2 SET c='sixty-eight thousand seventy-four' WHERE a=24019;\nUPDATE t2 SET c='sixty-nine thousand nine hundred seventy-six' WHERE a=24020;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy-six' WHERE a=24021;\nUPDATE t2 SET c='ninety-six thousand nine hundred seventy-five' WHERE a=24022;\nUPDATE t2 SET c='ninety-nine thousand six hundred forty-one' WHERE a=24023;\nUPDATE t2 SET c='fifty thousand three hundred thirty-five' WHERE a=24024;\nUPDATE t2 SET c='fifty-five thousand two hundred eighty-three' WHERE a=24025;\nUPDATE t2 SET c='fifty-eight thousand six hundred seventeen' WHERE a=24026;\nUPDATE t2 SET c='fifty-seven thousand four hundred fifty' WHERE a=24027;\nUPDATE t2 SET c='twenty-two thousand one hundred sixty-six' WHERE a=24028;\nUPDATE t2 SET c='three thousand seven hundred five' WHERE a=24029;\nUPDATE t2 SET c='sixteen thousand nine hundred sixteen' WHERE a=24030;\nUPDATE t2 SET c='ninety-seven thousand seven hundred seventy-seven' WHERE a=24031;\nUPDATE t2 SET c='fifty-seven thousand eight hundred three' WHERE a=24032;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixteen' WHERE a=24033;\nUPDATE t2 SET c='ninety-one thousand three hundred seventy-five' WHERE a=24034;\nUPDATE t2 SET c='five thousand six hundred sixty-three' WHERE a=24035;\nUPDATE t2 SET c='eighty-three thousand nine hundred forty-eight' WHERE a=24036;\nUPDATE t2 SET c='twelve thousand five hundred fifty-two' WHERE a=24037;\nUPDATE t2 SET c='twenty-nine thousand six hundred sixty-three' WHERE a=24038;\nUPDATE t2 SET c='eleven thousand seven hundred sixty-eight' WHERE a=24039;\nUPDATE t2 SET c='twenty-nine thousand three hundred fifty-nine' WHERE a=24040;\nUPDATE t2 SET c='seventy-six thousand five hundred seventy-three' WHERE a=24041;\nUPDATE t2 SET c='seventy-eight thousand two hundred twenty-five' WHERE a=24042;\nUPDATE t2 SET c='twenty-three thousand eight hundred forty-seven' WHERE a=24043;\nUPDATE t2 SET c='sixty-six thousand seven hundred thirteen' WHERE a=24044;\nUPDATE t2 SET c='sixty-five thousand one hundred fifty-three' WHERE a=24045;\nUPDATE t2 SET c='thirty-six thousand seven hundred forty-four' WHERE a=24046;\nUPDATE t2 SET c='fifty-four thousand five hundred sixty-five' WHERE a=24047;\nUPDATE t2 SET c='fifty-seven thousand four hundred seventy-eight' WHERE a=24048;\nUPDATE t2 SET c='thirty thousand seventeen' WHERE a=24049;\nUPDATE t2 SET c='eighty-four thousand six hundred ninety-three' WHERE a=24050;\nUPDATE t2 SET c='seventy-four thousand five hundred eighty-five' WHERE a=24051;\nUPDATE t2 SET c='thirty-seven thousand eighty-three' WHERE a=24052;\nUPDATE t2 SET c='seventy-four thousand seven hundred eighty-one' WHERE a=24053;\nUPDATE t2 SET c='ten thousand one hundred sixty-four' WHERE a=24054;\nUPDATE t2 SET c='twenty-three thousand one hundred forty-four' WHERE a=24055;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty' WHERE a=24056;\nUPDATE t2 SET c='seventy-nine thousand nine hundred thirty-six' WHERE a=24057;\nUPDATE t2 SET c='ninety-four thousand five hundred forty-seven' WHERE a=24058;\nUPDATE t2 SET c='fourteen thousand one hundred forty-six' WHERE a=24059;\nUPDATE t2 SET c='two thousand three hundred eighty-one' WHERE a=24060;\nUPDATE t2 SET c='six thousand eight hundred ninety-nine' WHERE a=24061;\nUPDATE t2 SET c='twenty-five thousand five hundred forty-six' WHERE a=24062;\nUPDATE t2 SET c='thirteen thousand forty-six' WHERE a=24063;\nUPDATE t2 SET c='eight thousand four hundred eighty-three' WHERE a=24064;\nUPDATE t2 SET c='nine thousand six hundred seventy' WHERE a=24065;\nUPDATE t2 SET c='ninety-one thousand three hundred ninety-seven' WHERE a=24066;\nUPDATE t2 SET c='forty-three thousand nine hundred eighty-six' WHERE a=24067;\nUPDATE t2 SET c='seventy thousand four hundred forty-three' WHERE a=24068;\nUPDATE t2 SET c='ninety-six thousand nine hundred thirty-five' WHERE a=24069;\nUPDATE t2 SET c='ten thousand two hundred fifty-three' WHERE a=24070;\nUPDATE t2 SET c='forty-three thousand one hundred eighty-five' WHERE a=24071;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-nine' WHERE a=24072;\nUPDATE t2 SET c='eight thousand three hundred ninety-one' WHERE a=24073;\nUPDATE t2 SET c='one thousand fourteen' WHERE a=24074;\nUPDATE t2 SET c='eighty-one thousand three' WHERE a=24075;\nUPDATE t2 SET c='thirty-six thousand five hundred twenty-nine' WHERE a=24076;\nUPDATE t2 SET c='sixty thousand six hundred twenty-nine' WHERE a=24077;\nUPDATE t2 SET c='thirty-seven thousand ninety-five' WHERE a=24078;\nUPDATE t2 SET c='eighty-three thousand seventy-seven' WHERE a=24079;\nUPDATE t2 SET c='fourteen thousand four hundred sixteen' WHERE a=24080;\nUPDATE t2 SET c='twenty-five thousand three hundred eighty-seven' WHERE a=24081;\nUPDATE t2 SET c='sixty-five thousand eight hundred nineteen' WHERE a=24082;\nUPDATE t2 SET c='thirty-five thousand eight hundred seventy-three' WHERE a=24083;\nUPDATE t2 SET c='thirty-five thousand three hundred seventy-two' WHERE a=24084;\nUPDATE t2 SET c='sixty-four thousand two hundred ninety-nine' WHERE a=24085;\nUPDATE t2 SET c='twenty-one thousand five hundred eighty-eight' WHERE a=24086;\nUPDATE t2 SET c='seventy-five thousand twelve' WHERE a=24087;\nUPDATE t2 SET c='eighty-three thousand three hundred twenty' WHERE a=24088;\nUPDATE t2 SET c='thirty-six thousand four hundred seventy-two' WHERE a=24089;\nUPDATE t2 SET c='eighty-three thousand five hundred nine' WHERE a=24090;\nUPDATE t2 SET c='twenty-four thousand seven hundred nineteen' WHERE a=24091;\nUPDATE t2 SET c='eighty-nine thousand three hundred twenty-eight' WHERE a=24092;\nUPDATE t2 SET c='thirty-nine thousand sixty-six' WHERE a=24093;\nUPDATE t2 SET c='sixty thousand one hundred twenty-seven' WHERE a=24094;\nUPDATE t2 SET c='thirteen thousand seven hundred twelve' WHERE a=24095;\nUPDATE t2 SET c='seventy-nine thousand four hundred seventy-four' WHERE a=24096;\nUPDATE t2 SET c='thirteen thousand one hundred forty-seven' WHERE a=24097;\nUPDATE t2 SET c='fifty-two thousand nine hundred twenty-three' WHERE a=24098;\nUPDATE t2 SET c='four thousand seven hundred sixty-two' WHERE a=24099;\nUPDATE t2 SET c='thirty-eight thousand seven hundred thirty' WHERE a=24100;\nUPDATE t2 SET c='seventy-nine thousand eight hundred eighty' WHERE a=24101;\nUPDATE t2 SET c='eleven thousand sixteen' WHERE a=24102;\nUPDATE t2 SET c='fifty-six thousand one hundred five' WHERE a=24103;\nUPDATE t2 SET c='seven thousand three hundred eighty-six' WHERE a=24104;\nUPDATE t2 SET c='forty thousand five hundred eighty-nine' WHERE a=24105;\nUPDATE t2 SET c='eighty-seven thousand two hundred fifty-one' WHERE a=24106;\nUPDATE t2 SET c='sixty thousand two hundred seventy-two' WHERE a=24107;\nUPDATE t2 SET c='forty-four thousand four hundred seventy-seven' WHERE a=24108;\nUPDATE t2 SET c='fifty-eight thousand four hundred three' WHERE a=24109;\nUPDATE t2 SET c='thirty-three thousand eight hundred ninety-seven' WHERE a=24110;\nUPDATE t2 SET c='ninety-six thousand six hundred thirty-six' WHERE a=24111;\nUPDATE t2 SET c='three thousand three hundred seventy-four' WHERE a=24112;\nUPDATE t2 SET c='forty-five thousand sixty-two' WHERE a=24113;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=24114;\nUPDATE t2 SET c='twenty-four thousand two hundred forty-six' WHERE a=24115;\nUPDATE t2 SET c='thirty-two thousand six hundred sixty-two' WHERE a=24116;\nUPDATE t2 SET c='seventy-six thousand five hundred sixty-nine' WHERE a=24117;\nUPDATE t2 SET c='ninety-six thousand eighty-one' WHERE a=24118;\nUPDATE t2 SET c='twenty-five thousand four hundred twelve' WHERE a=24119;\nUPDATE t2 SET c='seventy-six thousand thirty-eight' WHERE a=24120;\nUPDATE t2 SET c='fifty-two thousand five hundred eighty-three' WHERE a=24121;\nUPDATE t2 SET c='forty-three thousand thirty' WHERE a=24122;\nUPDATE t2 SET c='five thousand two hundred eighty-eight' WHERE a=24123;\nUPDATE t2 SET c='ninety-seven thousand eight hundred eighty-seven' WHERE a=24124;\nUPDATE t2 SET c='forty-seven thousand two hundred thirty-six' WHERE a=24125;\nUPDATE t2 SET c='ninety-nine thousand six hundred two' WHERE a=24126;\nUPDATE t2 SET c='eight thousand nine hundred seventy-four' WHERE a=24127;\nUPDATE t2 SET c='forty-nine thousand five hundred four' WHERE a=24128;\nUPDATE t2 SET c='seventy-eight thousand two hundred thirty-eight' WHERE a=24129;\nUPDATE t2 SET c='ninety-two thousand eight hundred seventy' WHERE a=24130;\nUPDATE t2 SET c='fifty-two thousand five hundred seventy-six' WHERE a=24131;\nUPDATE t2 SET c='fifty-five thousand three hundred fourteen' WHERE a=24132;\nUPDATE t2 SET c='sixty-seven thousand three hundred thirty-nine' WHERE a=24133;\nUPDATE t2 SET c='fifty-five thousand one hundred ten' WHERE a=24134;\nUPDATE t2 SET c='sixty-five thousand nine hundred nine' WHERE a=24135;\nUPDATE t2 SET c='nineteen thousand two hundred eighty-seven' WHERE a=24136;\nUPDATE t2 SET c='thirty-two thousand two hundred seventy' WHERE a=24137;\nUPDATE t2 SET c='eight thousand six' WHERE a=24138;\nUPDATE t2 SET c='thirty-seven thousand eight hundred thirty-four' WHERE a=24139;\nUPDATE t2 SET c='thirty-three thousand seven hundred sixty-six' WHERE a=24140;\nUPDATE t2 SET c='ninety-one thousand seven hundred twenty-three' WHERE a=24141;\nUPDATE t2 SET c='fifty-eight thousand eight hundred twenty-six' WHERE a=24142;\nUPDATE t2 SET c='seventy-nine thousand ninety' WHERE a=24143;\nUPDATE t2 SET c='twenty-eight thousand ninety-four' WHERE a=24144;\nUPDATE t2 SET c='eighty-five thousand ninety-three' WHERE a=24145;\nUPDATE t2 SET c='forty-two thousand eight hundred forty-three' WHERE a=24146;\nUPDATE t2 SET c='sixty-six thousand five hundred forty-two' WHERE a=24147;\nUPDATE t2 SET c='fifty-seven thousand four hundred sixty-five' WHERE a=24148;\nUPDATE t2 SET c='thirty-one thousand seven hundred forty-seven' WHERE a=24149;\nUPDATE t2 SET c='eighty-seven thousand two hundred eighteen' WHERE a=24150;\nUPDATE t2 SET c='thirty-nine thousand six hundred seventy-three' WHERE a=24151;\nUPDATE t2 SET c='thirty-seven thousand eight hundred eighty-eight' WHERE a=24152;\nUPDATE t2 SET c='twenty-nine thousand five hundred ninety-six' WHERE a=24153;\nUPDATE t2 SET c='eighty-one thousand eight hundred forty-seven' WHERE a=24154;\nUPDATE t2 SET c='fifty-two thousand four hundred sixty-nine' WHERE a=24155;\nUPDATE t2 SET c='twenty-four thousand seven hundred forty-seven' WHERE a=24156;\nUPDATE t2 SET c='ninety-five thousand two hundred eighty-eight' WHERE a=24157;\nUPDATE t2 SET c='fourteen thousand one hundred sixty-one' WHERE a=24158;\nUPDATE t2 SET c='fifty-four thousand nine hundred three' WHERE a=24159;\nUPDATE t2 SET c='forty-four thousand two hundred forty-five' WHERE a=24160;\nUPDATE t2 SET c='eighteen thousand five hundred ninety-three' WHERE a=24161;\nUPDATE t2 SET c='eighty-five thousand nine hundred eighty-nine' WHERE a=24162;\nUPDATE t2 SET c='seventy-one thousand five hundred seventy-two' WHERE a=24163;\nUPDATE t2 SET c='forty-three thousand five hundred thirty-five' WHERE a=24164;\nUPDATE t2 SET c='sixteen thousand nine hundred seventeen' WHERE a=24165;\nUPDATE t2 SET c='two thousand seven hundred thirty-four' WHERE a=24166;\nUPDATE t2 SET c='twenty-three thousand four hundred seventy-one' WHERE a=24167;\nUPDATE t2 SET c='four thousand five hundred sixty-one' WHERE a=24168;\nUPDATE t2 SET c='thirty-three thousand seventy-seven' WHERE a=24169;\nUPDATE t2 SET c='thirty-nine thousand six hundred seventy-eight' WHERE a=24170;\nUPDATE t2 SET c='thirty-one thousand one hundred forty' WHERE a=24171;\nUPDATE t2 SET c='seventy-two thousand four hundred thirty-eight' WHERE a=24172;\nUPDATE t2 SET c='thirteen thousand one hundred thirty-eight' WHERE a=24173;\nUPDATE t2 SET c='thirty-nine thousand three' WHERE a=24174;\nUPDATE t2 SET c='one thousand three hundred twenty-two' WHERE a=24175;\nUPDATE t2 SET c='four thousand seven hundred eleven' WHERE a=24176;\nUPDATE t2 SET c='five thousand two hundred ninety-eight' WHERE a=24177;\nUPDATE t2 SET c='eighty-nine thousand two hundred ten' WHERE a=24178;\nUPDATE t2 SET c='eighty-nine thousand three hundred ninety-eight' WHERE a=24179;\nUPDATE t2 SET c='twenty-six thousand six hundred seventy-nine' WHERE a=24180;\nUPDATE t2 SET c='twenty-five thousand seven hundred twenty-seven' WHERE a=24181;\nUPDATE t2 SET c='nineteen thousand five hundred fifty-five' WHERE a=24182;\nUPDATE t2 SET c='seventy-seven thousand three hundred ninety-nine' WHERE a=24183;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-eight' WHERE a=24184;\nUPDATE t2 SET c='eighty-one thousand three hundred ninety-nine' WHERE a=24185;\nUPDATE t2 SET c='fifty-one thousand two hundred forty-eight' WHERE a=24186;\nUPDATE t2 SET c='five thousand seven hundred sixty-nine' WHERE a=24187;\nUPDATE t2 SET c='forty-four thousand two hundred thirty-four' WHERE a=24188;\nUPDATE t2 SET c='twenty-eight thousand five hundred eighty-six' WHERE a=24189;\nUPDATE t2 SET c='eighty-nine thousand one hundred twenty-nine' WHERE a=24190;\nUPDATE t2 SET c='twenty-three thousand seven hundred twenty-four' WHERE a=24191;\nUPDATE t2 SET c='thirty-five thousand eight hundred seven' WHERE a=24192;\nUPDATE t2 SET c='seven thousand five hundred fifty-four' WHERE a=24193;\nUPDATE t2 SET c='twenty thousand eight hundred ninety-two' WHERE a=24194;\nUPDATE t2 SET c='sixty-one thousand nine hundred thirteen' WHERE a=24195;\nUPDATE t2 SET c='two thousand six hundred sixty-five' WHERE a=24196;\nUPDATE t2 SET c='seven thousand three hundred sixteen' WHERE a=24197;\nUPDATE t2 SET c='fifty-six thousand one hundred eleven' WHERE a=24198;\nUPDATE t2 SET c='twenty-one thousand seven hundred ninety' WHERE a=24199;\nUPDATE t2 SET c='fifty thousand two hundred five' WHERE a=24200;\nUPDATE t2 SET c='ninety-eight thousand four hundred' WHERE a=24201;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=24202;\nUPDATE t2 SET c='forty-seven thousand two hundred seventy-eight' WHERE a=24203;\nUPDATE t2 SET c='sixty-one thousand six hundred one' WHERE a=24204;\nUPDATE t2 SET c='sixty-three thousand eight hundred forty-six' WHERE a=24205;\nUPDATE t2 SET c='twenty-six thousand five hundred sixty-eight' WHERE a=24206;\nUPDATE t2 SET c='twenty-eight thousand ninety-two' WHERE a=24207;\nUPDATE t2 SET c='twenty-seven thousand five hundred forty-one' WHERE a=24208;\nUPDATE t2 SET c='seventy-eight thousand three hundred seventy-six' WHERE a=24209;\nUPDATE t2 SET c='three thousand eight hundred forty-nine' WHERE a=24210;\nUPDATE t2 SET c='eighty-nine thousand seven hundred five' WHERE a=24211;\nUPDATE t2 SET c='ninety-eight thousand one hundred sixty-one' WHERE a=24212;\nUPDATE t2 SET c='six thousand eighty-two' WHERE a=24213;\nUPDATE t2 SET c='twenty-nine thousand seven hundred seventy-seven' WHERE a=24214;\nUPDATE t2 SET c='twenty-two thousand one hundred fifty-six' WHERE a=24215;\nUPDATE t2 SET c='forty-seven thousand nine hundred fifty-three' WHERE a=24216;\nUPDATE t2 SET c='forty-seven thousand four hundred forty-five' WHERE a=24217;\nUPDATE t2 SET c='seventy-nine thousand three hundred ninety-nine' WHERE a=24218;\nUPDATE t2 SET c='fourteen thousand two hundred seventy-four' WHERE a=24219;\nUPDATE t2 SET c='ninety-four thousand eight hundred twenty-five' WHERE a=24220;\nUPDATE t2 SET c='forty-three thousand three hundred sixty-six' WHERE a=24221;\nUPDATE t2 SET c='forty-four thousand eight hundred fifty-seven' WHERE a=24222;\nUPDATE t2 SET c='fifty-seven thousand one hundred forty-five' WHERE a=24223;\nUPDATE t2 SET c='seven thousand six hundred twenty-three' WHERE a=24224;\nUPDATE t2 SET c='sixty-two thousand four hundred two' WHERE a=24225;\nUPDATE t2 SET c='sixty-one thousand four hundred ten' WHERE a=24226;\nUPDATE t2 SET c='forty thousand three hundred eighty-one' WHERE a=24227;\nUPDATE t2 SET c='eighty-one thousand three hundred forty-one' WHERE a=24228;\nUPDATE t2 SET c='twenty-four thousand seven hundred sixty-eight' WHERE a=24229;\nUPDATE t2 SET c='sixty-four thousand seven hundred forty-four' WHERE a=24230;\nUPDATE t2 SET c='forty-five thousand nine hundred eighty-five' WHERE a=24231;\nUPDATE t2 SET c='eighty-eight thousand two hundred eighty-three' WHERE a=24232;\nUPDATE t2 SET c='thirteen thousand nine hundred six' WHERE a=24233;\nUPDATE t2 SET c='three thousand four hundred fifty-five' WHERE a=24234;\nUPDATE t2 SET c='eighty thousand six hundred nine' WHERE a=24235;\nUPDATE t2 SET c='ninety-two thousand five hundred ninety-two' WHERE a=24236;\nUPDATE t2 SET c='forty-one thousand seven hundred fifty-four' WHERE a=24237;\nUPDATE t2 SET c='three hundred forty-two' WHERE a=24238;\nUPDATE t2 SET c='twenty-seven thousand two hundred sixty-six' WHERE a=24239;\nUPDATE t2 SET c='thirty-one thousand four hundred twenty-five' WHERE a=24240;\nUPDATE t2 SET c='eight thousand eight hundred seventy-four' WHERE a=24241;\nUPDATE t2 SET c='fifty-five thousand three hundred fifty-two' WHERE a=24242;\nUPDATE t2 SET c='twenty-five thousand two hundred seventy-four' WHERE a=24243;\nUPDATE t2 SET c='sixteen thousand eight hundred fifty-six' WHERE a=24244;\nUPDATE t2 SET c='eleven thousand nine hundred eighty-two' WHERE a=24245;\nUPDATE t2 SET c='five thousand eight hundred seventeen' WHERE a=24246;\nUPDATE t2 SET c='sixty-seven thousand five hundred' WHERE a=24247;\nUPDATE t2 SET c='twenty-seven thousand four hundred thirty-one' WHERE a=24248;\nUPDATE t2 SET c='ninety-three thousand nine hundred ninety-eight' WHERE a=24249;\nUPDATE t2 SET c='eighty-one thousand four hundred seventeen' WHERE a=24250;\nUPDATE t2 SET c='ninety-five thousand three hundred twelve' WHERE a=24251;\nUPDATE t2 SET c='forty-eight thousand seven' WHERE a=24252;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-four' WHERE a=24253;\nUPDATE t2 SET c='forty-two thousand three hundred thirty-eight' WHERE a=24254;\nUPDATE t2 SET c='eighty-seven thousand two hundred sixty-three' WHERE a=24255;\nUPDATE t2 SET c='forty-three thousand three hundred eleven' WHERE a=24256;\nUPDATE t2 SET c='thirty-nine thousand two hundred fifty-five' WHERE a=24257;\nUPDATE t2 SET c='twenty-nine thousand one hundred ninety-two' WHERE a=24258;\nUPDATE t2 SET c='fifty thousand two hundred ninety-seven' WHERE a=24259;\nUPDATE t2 SET c='five hundred twenty-six' WHERE a=24260;\nUPDATE t2 SET c='five thousand one hundred seventy-two' WHERE a=24261;\nUPDATE t2 SET c='two thousand seven hundred forty-two' WHERE a=24262;\nUPDATE t2 SET c='ninety-eight thousand five hundred twelve' WHERE a=24263;\nUPDATE t2 SET c='sixty thousand six hundred fifty-one' WHERE a=24264;\nUPDATE t2 SET c='ninety-six thousand seven hundred seventy-seven' WHERE a=24265;\nUPDATE t2 SET c='thirty-seven thousand six hundred fifty-two' WHERE a=24266;\nUPDATE t2 SET c='seventy thousand eight hundred forty-seven' WHERE a=24267;\nUPDATE t2 SET c='fifty-one thousand six hundred ninety-three' WHERE a=24268;\nUPDATE t2 SET c='eighty-one thousand one hundred eighty' WHERE a=24269;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-two' WHERE a=24270;\nUPDATE t2 SET c='sixty-seven thousand five hundred twelve' WHERE a=24271;\nUPDATE t2 SET c='fifty-four thousand two hundred eighteen' WHERE a=24272;\nUPDATE t2 SET c='ninety-eight thousand four hundred seventy-seven' WHERE a=24273;\nUPDATE t2 SET c='thirty-three thousand nine hundred four' WHERE a=24274;\nUPDATE t2 SET c='six thousand nine hundred fifty-eight' WHERE a=24275;\nUPDATE t2 SET c='ten thousand forty-eight' WHERE a=24276;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-seven' WHERE a=24277;\nUPDATE t2 SET c='ninety thousand two hundred sixty-eight' WHERE a=24278;\nUPDATE t2 SET c='twenty-seven thousand one hundred three' WHERE a=24279;\nUPDATE t2 SET c='ninety-six thousand six hundred seventy-four' WHERE a=24280;\nUPDATE t2 SET c='sixty-seven thousand ninety' WHERE a=24281;\nUPDATE t2 SET c='twenty thousand four hundred twenty-one' WHERE a=24282;\nUPDATE t2 SET c='seventy-five thousand eight hundred ninety-nine' WHERE a=24283;\nUPDATE t2 SET c='ninety-nine thousand three hundred sixty-four' WHERE a=24284;\nUPDATE t2 SET c='one thousand six hundred thirty-nine' WHERE a=24285;\nUPDATE t2 SET c='sixteen thousand nine hundred eighty-one' WHERE a=24286;\nUPDATE t2 SET c='thirty-six thousand one hundred eighty-nine' WHERE a=24287;\nUPDATE t2 SET c='seven thousand nine hundred eighty-six' WHERE a=24288;\nUPDATE t2 SET c='eighty-five thousand two hundred twenty-seven' WHERE a=24289;\nUPDATE t2 SET c='thirty-eight thousand nine hundred seventy-nine' WHERE a=24290;\nUPDATE t2 SET c='ninety-six thousand six hundred eight' WHERE a=24291;\nUPDATE t2 SET c='fifty-six thousand four hundred fifty-eight' WHERE a=24292;\nUPDATE t2 SET c='eighty-one thousand seven hundred seventy-five' WHERE a=24293;\nUPDATE t2 SET c='twenty thousand one hundred thirty-four' WHERE a=24294;\nUPDATE t2 SET c='ninety-six thousand four hundred fifty-four' WHERE a=24295;\nUPDATE t2 SET c='eighty-three thousand four hundred twenty-four' WHERE a=24296;\nUPDATE t2 SET c='ninety-nine thousand five hundred ninety-six' WHERE a=24297;\nUPDATE t2 SET c='thirty-four thousand two hundred fifty-seven' WHERE a=24298;\nUPDATE t2 SET c='ninety-five thousand six hundred seven' WHERE a=24299;\nUPDATE t2 SET c='eighteen thousand ninety-four' WHERE a=24300;\nUPDATE t2 SET c='sixty-eight thousand seven hundred ninety-five' WHERE a=24301;\nUPDATE t2 SET c='ninety-nine thousand one hundred eighty-six' WHERE a=24302;\nUPDATE t2 SET c='seventy-seven thousand three hundred sixty-eight' WHERE a=24303;\nUPDATE t2 SET c='eighty-three thousand four hundred thirty-seven' WHERE a=24304;\nUPDATE t2 SET c='forty-six thousand seven hundred twenty' WHERE a=24305;\nUPDATE t2 SET c='fifteen thousand nine hundred fifty-seven' WHERE a=24306;\nUPDATE t2 SET c='eighty-five thousand nine hundred ninety-nine' WHERE a=24307;\nUPDATE t2 SET c='nineteen thousand eight hundred ninety-four' WHERE a=24308;\nUPDATE t2 SET c='twelve thousand one hundred eighty-three' WHERE a=24309;\nUPDATE t2 SET c='thirty-two thousand four hundred ninety-eight' WHERE a=24310;\nUPDATE t2 SET c='seventy-eight thousand one hundred sixty' WHERE a=24311;\nUPDATE t2 SET c='seventy-three thousand two hundred forty' WHERE a=24312;\nUPDATE t2 SET c='forty-five thousand four hundred thirty-six' WHERE a=24313;\nUPDATE t2 SET c='thirty-three thousand nine hundred nineteen' WHERE a=24314;\nUPDATE t2 SET c='nineteen thousand four hundred eighty-four' WHERE a=24315;\nUPDATE t2 SET c='fifty-seven thousand one hundred sixty-eight' WHERE a=24316;\nUPDATE t2 SET c='thirty-three thousand seven hundred forty-one' WHERE a=24317;\nUPDATE t2 SET c='thirty-one thousand nine hundred twelve' WHERE a=24318;\nUPDATE t2 SET c='forty-nine thousand six hundred eighty-seven' WHERE a=24319;\nUPDATE t2 SET c='ninety-nine thousand nine hundred seventy-seven' WHERE a=24320;\nUPDATE t2 SET c='seventy thousand four hundred eighty-five' WHERE a=24321;\nUPDATE t2 SET c='seventy-nine thousand five hundred eighty-two' WHERE a=24322;\nUPDATE t2 SET c='sixteen thousand four hundred sixty-one' WHERE a=24323;\nUPDATE t2 SET c='fifty-seven thousand two hundred sixty-nine' WHERE a=24324;\nUPDATE t2 SET c='six thousand eighty-four' WHERE a=24325;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-nine' WHERE a=24326;\nUPDATE t2 SET c='seventeen thousand ninety-one' WHERE a=24327;\nUPDATE t2 SET c='seventy-eight thousand two hundred eighty-three' WHERE a=24328;\nUPDATE t2 SET c='fifty-four thousand nine hundred eleven' WHERE a=24329;\nUPDATE t2 SET c='seven thousand five hundred ninety-five' WHERE a=24330;\nUPDATE t2 SET c='sixty-seven thousand two hundred ninety-eight' WHERE a=24331;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-nine' WHERE a=24332;\nUPDATE t2 SET c='forty-seven thousand two hundred ninety-eight' WHERE a=24333;\nUPDATE t2 SET c='seventy thousand seven hundred seventeen' WHERE a=24334;\nUPDATE t2 SET c='nine thousand seven hundred thirty-one' WHERE a=24335;\nUPDATE t2 SET c='ninety-eight thousand five hundred thirty-four' WHERE a=24336;\nUPDATE t2 SET c='six thousand four hundred eighty-nine' WHERE a=24337;\nUPDATE t2 SET c='ninety-four thousand three hundred thirty-three' WHERE a=24338;\nUPDATE t2 SET c='thirty-nine thousand four hundred seven' WHERE a=24339;\nUPDATE t2 SET c='seventy-eight thousand one hundred twenty-two' WHERE a=24340;\nUPDATE t2 SET c='seventy thousand six hundred thirty-four' WHERE a=24341;\nUPDATE t2 SET c='thirty-two thousand nine hundred one' WHERE a=24342;\nUPDATE t2 SET c='eighty-six thousand ninety-eight' WHERE a=24343;\nUPDATE t2 SET c='sixty-two thousand five hundred eighty-seven' WHERE a=24344;\nUPDATE t2 SET c='sixty thousand seven hundred thirty-one' WHERE a=24345;\nUPDATE t2 SET c='eighteen thousand eight hundred forty-three' WHERE a=24346;\nUPDATE t2 SET c='forty-one thousand nine hundred thirty' WHERE a=24347;\nUPDATE t2 SET c='two thousand eight hundred fifty-four' WHERE a=24348;\nUPDATE t2 SET c='seventy-nine thousand five hundred nine' WHERE a=24349;\nUPDATE t2 SET c='thirty-six thousand four hundred thirty-six' WHERE a=24350;\nUPDATE t2 SET c='twenty-six thousand four hundred three' WHERE a=24351;\nUPDATE t2 SET c='one thousand five hundred twenty-one' WHERE a=24352;\nUPDATE t2 SET c='ninety-six thousand three hundred seventy-two' WHERE a=24353;\nUPDATE t2 SET c='fifty-four thousand three hundred ninety-five' WHERE a=24354;\nUPDATE t2 SET c='ninety thousand two hundred seventy-nine' WHERE a=24355;\nUPDATE t2 SET c='ninety-three thousand one hundred fifty-five' WHERE a=24356;\nUPDATE t2 SET c='ninety-four thousand three hundred two' WHERE a=24357;\nUPDATE t2 SET c='eleven thousand two hundred eighty-eight' WHERE a=24358;\nUPDATE t2 SET c='sixty-eight thousand four hundred forty-three' WHERE a=24359;\nUPDATE t2 SET c='fifty-one thousand nine hundred thirty-six' WHERE a=24360;\nUPDATE t2 SET c='fifty-nine thousand ninety' WHERE a=24361;\nUPDATE t2 SET c='fifty-four thousand five hundred ninety-five' WHERE a=24362;\nUPDATE t2 SET c='twenty-two thousand nine hundred eight' WHERE a=24363;\nUPDATE t2 SET c='twelve thousand eight hundred sixty-nine' WHERE a=24364;\nUPDATE t2 SET c='ninety-four thousand nine hundred seventy-nine' WHERE a=24365;\nUPDATE t2 SET c='fifty thousand four hundred six' WHERE a=24366;\nUPDATE t2 SET c='eighty-four thousand one hundred eighty-six' WHERE a=24367;\nUPDATE t2 SET c='thirteen thousand two hundred eighty-five' WHERE a=24368;\nUPDATE t2 SET c='seventy-one thousand six hundred fifty-three' WHERE a=24369;\nUPDATE t2 SET c='seventy thousand six hundred eighty-nine' WHERE a=24370;\nUPDATE t2 SET c='thirty-four thousand nine hundred ninety' WHERE a=24371;\nUPDATE t2 SET c='thirty-four thousand five hundred fifty-six' WHERE a=24372;\nUPDATE t2 SET c='ninety-four thousand four hundred five' WHERE a=24373;\nUPDATE t2 SET c='ninety-eight thousand eighteen' WHERE a=24374;\nUPDATE t2 SET c='thirty-seven thousand sixty-eight' WHERE a=24375;\nUPDATE t2 SET c='thirty-two thousand nine hundred eighty-five' WHERE a=24376;\nUPDATE t2 SET c='twenty-eight thousand eight hundred thirty-six' WHERE a=24377;\nUPDATE t2 SET c='fifty-two thousand six hundred forty-five' WHERE a=24378;\nUPDATE t2 SET c='eighty-one thousand four hundred ninety-six' WHERE a=24379;\nUPDATE t2 SET c='twenty-one thousand two hundred thirty-one' WHERE a=24380;\nUPDATE t2 SET c='twenty-two thousand one hundred sixty-six' WHERE a=24381;\nUPDATE t2 SET c='six hundred ninety' WHERE a=24382;\nUPDATE t2 SET c='forty-one thousand eight hundred eighty-four' WHERE a=24383;\nUPDATE t2 SET c='twenty-nine thousand one hundred forty-seven' WHERE a=24384;\nUPDATE t2 SET c='fifty-one thousand ten' WHERE a=24385;\nUPDATE t2 SET c='seventy thousand four hundred eighty-four' WHERE a=24386;\nUPDATE t2 SET c='ninety-two thousand four hundred twenty' WHERE a=24387;\nUPDATE t2 SET c='ninety-two thousand nine hundred eighty-six' WHERE a=24388;\nUPDATE t2 SET c='six thousand nine hundred twenty-two' WHERE a=24389;\nUPDATE t2 SET c='sixteen thousand two hundred fifty-two' WHERE a=24390;\nUPDATE t2 SET c='thirty thousand eight hundred ninety-one' WHERE a=24391;\nUPDATE t2 SET c='thirty thousand seven hundred eighty-one' WHERE a=24392;\nUPDATE t2 SET c='thirty-three thousand four hundred fifty-six' WHERE a=24393;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-four' WHERE a=24394;\nUPDATE t2 SET c='twenty-eight thousand three hundred ninety-two' WHERE a=24395;\nUPDATE t2 SET c='sixteen thousand three hundred thirty-four' WHERE a=24396;\nUPDATE t2 SET c='seventy-seven thousand one hundred seventy' WHERE a=24397;\nUPDATE t2 SET c='twenty-eight thousand four hundred twenty-five' WHERE a=24398;\nUPDATE t2 SET c='ninety-eight thousand sixty' WHERE a=24399;\nUPDATE t2 SET c='forty-four thousand four hundred sixty-nine' WHERE a=24400;\nUPDATE t2 SET c='eight thousand three hundred fifty-eight' WHERE a=24401;\nUPDATE t2 SET c='forty-eight thousand seven hundred thirty-five' WHERE a=24402;\nUPDATE t2 SET c='fifty-four thousand ninety-two' WHERE a=24403;\nUPDATE t2 SET c='three thousand four hundred thirty-five' WHERE a=24404;\nUPDATE t2 SET c='nine thousand six hundred eighty-seven' WHERE a=24405;\nUPDATE t2 SET c='twenty-five thousand nine hundred forty-nine' WHERE a=24406;\nUPDATE t2 SET c='ten thousand four hundred thirty-seven' WHERE a=24407;\nUPDATE t2 SET c='thirty-six thousand four hundred fifty' WHERE a=24408;\nUPDATE t2 SET c='seventy-eight thousand nine hundred thirty-four' WHERE a=24409;\nUPDATE t2 SET c='eighty-one thousand seven hundred five' WHERE a=24410;\nUPDATE t2 SET c='ninety-four thousand one hundred sixty' WHERE a=24411;\nUPDATE t2 SET c='eighty-one thousand five hundred eighty-seven' WHERE a=24412;\nUPDATE t2 SET c='sixty-three thousand two hundred eleven' WHERE a=24413;\nUPDATE t2 SET c='thirty-six thousand nine hundred twenty-one' WHERE a=24414;\nUPDATE t2 SET c='thirty-two thousand six hundred fifty-five' WHERE a=24415;\nUPDATE t2 SET c='twenty-nine thousand fifty' WHERE a=24416;\nUPDATE t2 SET c='forty-four thousand five hundred forty-five' WHERE a=24417;\nUPDATE t2 SET c='thirty-five thousand seven hundred forty-one' WHERE a=24418;\nUPDATE t2 SET c='forty-five thousand seven hundred seventy-five' WHERE a=24419;\nUPDATE t2 SET c='seventy thousand one hundred seventy-nine' WHERE a=24420;\nUPDATE t2 SET c='forty-five thousand sixty-six' WHERE a=24421;\nUPDATE t2 SET c='eighty-seven thousand one hundred four' WHERE a=24422;\nUPDATE t2 SET c='eighty-three thousand twenty-two' WHERE a=24423;\nUPDATE t2 SET c='twenty-four thousand eight hundred forty' WHERE a=24424;\nUPDATE t2 SET c='seventy thousand two hundred fifty-six' WHERE a=24425;\nUPDATE t2 SET c='thirty-one thousand six hundred ninety-seven' WHERE a=24426;\nUPDATE t2 SET c='twenty-six thousand three hundred twenty' WHERE a=24427;\nUPDATE t2 SET c='thirteen thousand seven hundred sixty-one' WHERE a=24428;\nUPDATE t2 SET c='two thousand eight hundred eighty-eight' WHERE a=24429;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-five' WHERE a=24430;\nUPDATE t2 SET c='eighty thousand nine hundred sixty-eight' WHERE a=24431;\nUPDATE t2 SET c='eighty-one thousand five hundred seventy-nine' WHERE a=24432;\nUPDATE t2 SET c='thirty-five thousand one hundred forty-one' WHERE a=24433;\nUPDATE t2 SET c='eighty-nine thousand one hundred ninety-eight' WHERE a=24434;\nUPDATE t2 SET c='forty-five thousand five hundred eighty-four' WHERE a=24435;\nUPDATE t2 SET c='fifty thousand four hundred sixty-five' WHERE a=24436;\nUPDATE t2 SET c='one hundred thirty-four' WHERE a=24437;\nUPDATE t2 SET c='seventeen thousand two hundred eight' WHERE a=24438;\nUPDATE t2 SET c='ninety-two thousand nine hundred ninety-three' WHERE a=24439;\nUPDATE t2 SET c='thirty-six thousand eighty-four' WHERE a=24440;\nUPDATE t2 SET c='thirteen thousand five hundred thirty-four' WHERE a=24441;\nUPDATE t2 SET c='twenty-eight thousand one hundred forty' WHERE a=24442;\nUPDATE t2 SET c='eighty-six thousand seven hundred sixty-five' WHERE a=24443;\nUPDATE t2 SET c='sixty-one thousand five hundred seventy-seven' WHERE a=24444;\nUPDATE t2 SET c='fifty-seven thousand four hundred seventy-six' WHERE a=24445;\nUPDATE t2 SET c='thirty thousand seven hundred thirty-six' WHERE a=24446;\nUPDATE t2 SET c='seventy-seven thousand three hundred eighty-three' WHERE a=24447;\nUPDATE t2 SET c='forty-six thousand seven hundred twenty-three' WHERE a=24448;\nUPDATE t2 SET c='thirty-two thousand three hundred forty-three' WHERE a=24449;\nUPDATE t2 SET c='seventeen thousand nine hundred sixty-four' WHERE a=24450;\nUPDATE t2 SET c='thirty-one thousand six' WHERE a=24451;\nUPDATE t2 SET c='thirty-nine thousand eight hundred five' WHERE a=24452;\nUPDATE t2 SET c='thirty-seven thousand six hundred seventy-one' WHERE a=24453;\nUPDATE t2 SET c='thirty-seven thousand one hundred twenty' WHERE a=24454;\nUPDATE t2 SET c='one thousand five hundred forty-three' WHERE a=24455;\nUPDATE t2 SET c='sixty-one thousand ninety' WHERE a=24456;\nUPDATE t2 SET c='ninety-one thousand eighty-six' WHERE a=24457;\nUPDATE t2 SET c='eighty-five thousand seventy-four' WHERE a=24458;\nUPDATE t2 SET c='eighty-seven thousand three hundred thirty-four' WHERE a=24459;\nUPDATE t2 SET c='twenty-eight thousand three hundred thirty-eight' WHERE a=24460;\nUPDATE t2 SET c='fifty-two thousand twenty-six' WHERE a=24461;\nUPDATE t2 SET c='seventy-three thousand nine hundred fifty-five' WHERE a=24462;\nUPDATE t2 SET c='seventy-one thousand thirteen' WHERE a=24463;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-two' WHERE a=24464;\nUPDATE t2 SET c='fifty-nine thousand six hundred eighteen' WHERE a=24465;\nUPDATE t2 SET c='twenty-one thousand two hundred twenty-seven' WHERE a=24466;\nUPDATE t2 SET c='thirty thousand two hundred sixty-four' WHERE a=24467;\nUPDATE t2 SET c='sixteen thousand one hundred eleven' WHERE a=24468;\nUPDATE t2 SET c='ninety-seven thousand forty-three' WHERE a=24469;\nUPDATE t2 SET c='sixty-one thousand four hundred seven' WHERE a=24470;\nUPDATE t2 SET c='forty-seven thousand eight hundred forty-six' WHERE a=24471;\nUPDATE t2 SET c='seventy-six thousand fifty-seven' WHERE a=24472;\nUPDATE t2 SET c='seventy-one thousand eight hundred fifteen' WHERE a=24473;\nUPDATE t2 SET c='twelve thousand eight hundred thirty-nine' WHERE a=24474;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-four' WHERE a=24475;\nUPDATE t2 SET c='sixty thousand one hundred fifty-seven' WHERE a=24476;\nUPDATE t2 SET c='eighty-four thousand seven hundred seventy-three' WHERE a=24477;\nUPDATE t2 SET c='forty-nine thousand four hundred thirty-two' WHERE a=24478;\nUPDATE t2 SET c='sixteen thousand thirty-two' WHERE a=24479;\nUPDATE t2 SET c='forty-six thousand five hundred eighty-six' WHERE a=24480;\nUPDATE t2 SET c='ninety-four thousand two hundred fifty-three' WHERE a=24481;\nUPDATE t2 SET c='eighty-eight thousand one hundred twenty-four' WHERE a=24482;\nUPDATE t2 SET c='ninety-five thousand eight hundred thirty-one' WHERE a=24483;\nUPDATE t2 SET c='thirty-four thousand four hundred sixty-eight' WHERE a=24484;\nUPDATE t2 SET c='forty-five thousand three hundred eighty-one' WHERE a=24485;\nUPDATE t2 SET c='six thousand seven hundred ninety-nine' WHERE a=24486;\nUPDATE t2 SET c='sixty-two thousand eight hundred forty-one' WHERE a=24487;\nUPDATE t2 SET c='twenty-two thousand six hundred eighteen' WHERE a=24488;\nUPDATE t2 SET c='sixty-four thousand eight hundred eighteen' WHERE a=24489;\nUPDATE t2 SET c='eighty-nine thousand three hundred fifty-three' WHERE a=24490;\nUPDATE t2 SET c='one thousand one hundred seventy-five' WHERE a=24491;\nUPDATE t2 SET c='fifty-five thousand three hundred thirty-six' WHERE a=24492;\nUPDATE t2 SET c='eighty-eight thousand eight hundred seventy-four' WHERE a=24493;\nUPDATE t2 SET c='thirty-five thousand one hundred thirty-nine' WHERE a=24494;\nUPDATE t2 SET c='ninety-eight thousand one hundred four' WHERE a=24495;\nUPDATE t2 SET c='ninety-five thousand four hundred fifty-six' WHERE a=24496;\nUPDATE t2 SET c='twenty-three thousand five hundred forty-seven' WHERE a=24497;\nUPDATE t2 SET c='fifty-three thousand four hundred ninety-nine' WHERE a=24498;\nUPDATE t2 SET c='eighty-four thousand three hundred forty-six' WHERE a=24499;\nUPDATE t2 SET c='sixty-nine thousand four hundred two' WHERE a=24500;\nUPDATE t2 SET c='thirty-one thousand six hundred seventy-six' WHERE a=24501;\nUPDATE t2 SET c='fifty-two thousand four hundred seventy-one' WHERE a=24502;\nUPDATE t2 SET c='ninety-four thousand one hundred twenty' WHERE a=24503;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty-five' WHERE a=24504;\nUPDATE t2 SET c='eight thousand six hundred nineteen' WHERE a=24505;\nUPDATE t2 SET c='sixty-six thousand one hundred thirty-eight' WHERE a=24506;\nUPDATE t2 SET c='fifty-four thousand nine hundred ninety-five' WHERE a=24507;\nUPDATE t2 SET c='eighty-one thousand four hundred seventy-two' WHERE a=24508;\nUPDATE t2 SET c='ninety thousand three hundred sixty-two' WHERE a=24509;\nUPDATE t2 SET c='nineteen thousand three hundred forty-five' WHERE a=24510;\nUPDATE t2 SET c='sixteen thousand three hundred fifty-nine' WHERE a=24511;\nUPDATE t2 SET c='fifty thousand nine hundred seventy-five' WHERE a=24512;\nUPDATE t2 SET c='sixty-nine thousand eight hundred sixty-seven' WHERE a=24513;\nUPDATE t2 SET c='twenty-six thousand three hundred thirty-seven' WHERE a=24514;\nUPDATE t2 SET c='eighty-nine thousand three hundred six' WHERE a=24515;\nUPDATE t2 SET c='ninety-six thousand three hundred eighty-two' WHERE a=24516;\nUPDATE t2 SET c='twenty-six thousand seven hundred five' WHERE a=24517;\nUPDATE t2 SET c='sixty-four thousand four hundred thirty-three' WHERE a=24518;\nUPDATE t2 SET c='ninety-two thousand five hundred seventy' WHERE a=24519;\nUPDATE t2 SET c='forty-six thousand fifty-six' WHERE a=24520;\nUPDATE t2 SET c='eighteen thousand two hundred eighty-six' WHERE a=24521;\nUPDATE t2 SET c='thirty-two thousand ninety-seven' WHERE a=24522;\nUPDATE t2 SET c='fifty thousand nine hundred eighty-five' WHERE a=24523;\nUPDATE t2 SET c='ninety-seven thousand eight hundred thirty' WHERE a=24524;\nUPDATE t2 SET c='eighty-six thousand five hundred eighty-three' WHERE a=24525;\nUPDATE t2 SET c='fifty-nine thousand nine hundred twenty-one' WHERE a=24526;\nUPDATE t2 SET c='twenty-five thousand five hundred thirteen' WHERE a=24527;\nUPDATE t2 SET c='seventy-seven thousand one hundred thirty-five' WHERE a=24528;\nUPDATE t2 SET c='ten thousand one hundred twenty-six' WHERE a=24529;\nUPDATE t2 SET c='fifty-one thousand five hundred sixty-nine' WHERE a=24530;\nUPDATE t2 SET c='eighty-eight thousand nine hundred fifty-one' WHERE a=24531;\nUPDATE t2 SET c='ninety-one thousand one hundred seventeen' WHERE a=24532;\nUPDATE t2 SET c='twenty-three thousand eight hundred seventy-one' WHERE a=24533;\nUPDATE t2 SET c='seventy-five thousand nine hundred seventy-four' WHERE a=24534;\nUPDATE t2 SET c='eighty-nine thousand nine hundred ninety-seven' WHERE a=24535;\nUPDATE t2 SET c='ninety thousand three hundred ninety-seven' WHERE a=24536;\nUPDATE t2 SET c='thirty-one thousand nine hundred thirty-nine' WHERE a=24537;\nUPDATE t2 SET c='fifty thousand five hundred twelve' WHERE a=24538;\nUPDATE t2 SET c='sixty-six thousand six hundred sixty-four' WHERE a=24539;\nUPDATE t2 SET c='fifty thousand two hundred sixteen' WHERE a=24540;\nUPDATE t2 SET c='seventy-nine thousand seven hundred eleven' WHERE a=24541;\nUPDATE t2 SET c='thirty-three thousand seven hundred twenty' WHERE a=24542;\nUPDATE t2 SET c='seventy-seven thousand nine hundred twenty-six' WHERE a=24543;\nUPDATE t2 SET c='eighteen thousand five hundred seventy' WHERE a=24544;\nUPDATE t2 SET c='eleven thousand nine hundred fifty-nine' WHERE a=24545;\nUPDATE t2 SET c='eight thousand six hundred twenty-six' WHERE a=24546;\nUPDATE t2 SET c='thirty-six thousand six hundred two' WHERE a=24547;\nUPDATE t2 SET c='thirty-nine thousand sixty' WHERE a=24548;\nUPDATE t2 SET c='ninety-six thousand seven hundred forty-nine' WHERE a=24549;\nUPDATE t2 SET c='eighty-seven thousand five hundred sixty-three' WHERE a=24550;\nUPDATE t2 SET c='sixty-eight thousand fifty-nine' WHERE a=24551;\nUPDATE t2 SET c='fifty-two thousand four hundred fifteen' WHERE a=24552;\nUPDATE t2 SET c='fifty thousand forty-one' WHERE a=24553;\nUPDATE t2 SET c='twenty-two thousand six hundred thirty-eight' WHERE a=24554;\nUPDATE t2 SET c='fifty-seven thousand four hundred six' WHERE a=24555;\nUPDATE t2 SET c='seven thousand seven hundred sixty-two' WHERE a=24556;\nUPDATE t2 SET c='fifty-eight thousand eight hundred fifty-eight' WHERE a=24557;\nUPDATE t2 SET c='fifty-nine thousand five hundred eighty-nine' WHERE a=24558;\nUPDATE t2 SET c='three thousand six hundred thirty-two' WHERE a=24559;\nUPDATE t2 SET c='sixty-nine thousand two hundred twenty-eight' WHERE a=24560;\nUPDATE t2 SET c='twelve thousand one hundred sixty-seven' WHERE a=24561;\nUPDATE t2 SET c='eighty-seven thousand three hundred two' WHERE a=24562;\nUPDATE t2 SET c='forty-six thousand seven hundred fifty-seven' WHERE a=24563;\nUPDATE t2 SET c='ninety-nine thousand eight hundred fifteen' WHERE a=24564;\nUPDATE t2 SET c='sixty-two thousand one hundred eighty-nine' WHERE a=24565;\nUPDATE t2 SET c='fifty-eight thousand forty-six' WHERE a=24566;\nUPDATE t2 SET c='thirty-five thousand two hundred seventy-three' WHERE a=24567;\nUPDATE t2 SET c='thirty-five thousand seven hundred fifty-three' WHERE a=24568;\nUPDATE t2 SET c='seventy-four thousand six hundred sixty-nine' WHERE a=24569;\nUPDATE t2 SET c='eighty-seven thousand four hundred ninety-nine' WHERE a=24570;\nUPDATE t2 SET c='thirty-six thousand fourteen' WHERE a=24571;\nUPDATE t2 SET c='eighty-four thousand eighty-one' WHERE a=24572;\nUPDATE t2 SET c='eighty thousand seven hundred eighty-eight' WHERE a=24573;\nUPDATE t2 SET c='thirty thousand eighty-five' WHERE a=24574;\nUPDATE t2 SET c='forty-two thousand one hundred five' WHERE a=24575;\nUPDATE t2 SET c='eight thousand nine' WHERE a=24576;\nUPDATE t2 SET c='sixty-one thousand five hundred seventy-five' WHERE a=24577;\nUPDATE t2 SET c='eight thousand twenty-four' WHERE a=24578;\nUPDATE t2 SET c='thirty-one thousand two hundred ninety-six' WHERE a=24579;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-eight' WHERE a=24580;\nUPDATE t2 SET c='seventy-nine thousand twenty-four' WHERE a=24581;\nUPDATE t2 SET c='twenty-two thousand nine hundred fifty-one' WHERE a=24582;\nUPDATE t2 SET c='five thousand nine hundred eighty-one' WHERE a=24583;\nUPDATE t2 SET c='sixty-seven thousand six hundred forty-nine' WHERE a=24584;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty-five' WHERE a=24585;\nUPDATE t2 SET c='sixty-nine thousand five hundred eighty-three' WHERE a=24586;\nUPDATE t2 SET c='two thousand seven hundred sixty-five' WHERE a=24587;\nUPDATE t2 SET c='eighty-three thousand two hundred twelve' WHERE a=24588;\nUPDATE t2 SET c='fifty-three thousand one hundred eighty-six' WHERE a=24589;\nUPDATE t2 SET c='fifty-five thousand seven hundred fifty-four' WHERE a=24590;\nUPDATE t2 SET c='seventy-seven thousand eight hundred forty-five' WHERE a=24591;\nUPDATE t2 SET c='eighty-eight thousand nine hundred fifty-eight' WHERE a=24592;\nUPDATE t2 SET c='fifty-four thousand two hundred fifty-three' WHERE a=24593;\nUPDATE t2 SET c='forty thousand thirty-four' WHERE a=24594;\nUPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=24595;\nUPDATE t2 SET c='thirty thousand eight hundred forty-two' WHERE a=24596;\nUPDATE t2 SET c='seventy-three thousand two hundred fifty-five' WHERE a=24597;\nUPDATE t2 SET c='five thousand three hundred thirty-three' WHERE a=24598;\nUPDATE t2 SET c='eighty-three thousand twenty-three' WHERE a=24599;\nUPDATE t2 SET c='sixty-nine thousand five hundred eleven' WHERE a=24600;\nUPDATE t2 SET c='forty thousand eight hundred twenty' WHERE a=24601;\nUPDATE t2 SET c='ninety-eight thousand sixty-one' WHERE a=24602;\nUPDATE t2 SET c='twenty-four thousand three hundred forty-one' WHERE a=24603;\nUPDATE t2 SET c='sixty-six thousand six hundred forty-four' WHERE a=24604;\nUPDATE t2 SET c='eighty-two thousand three hundred sixty-six' WHERE a=24605;\nUPDATE t2 SET c='sixty-four thousand four hundred twenty-eight' WHERE a=24606;\nUPDATE t2 SET c='eleven thousand two hundred fifty' WHERE a=24607;\nUPDATE t2 SET c='seventy-six thousand nine hundred sixty-four' WHERE a=24608;\nUPDATE t2 SET c='forty-four thousand' WHERE a=24609;\nUPDATE t2 SET c='ninety thousand one hundred two' WHERE a=24610;\nUPDATE t2 SET c='thirty-four thousand one hundred sixty-seven' WHERE a=24611;\nUPDATE t2 SET c='five thousand seven hundred two' WHERE a=24612;\nUPDATE t2 SET c='thirteen thousand nine hundred fifty-nine' WHERE a=24613;\nUPDATE t2 SET c='thirty-five thousand four hundred ten' WHERE a=24614;\nUPDATE t2 SET c='eighty-three thousand three hundred fifty' WHERE a=24615;\nUPDATE t2 SET c='sixty-six thousand eight hundred seventy-two' WHERE a=24616;\nUPDATE t2 SET c='seventy-six thousand two hundred fourteen' WHERE a=24617;\nUPDATE t2 SET c='twenty-five thousand ninety-five' WHERE a=24618;\nUPDATE t2 SET c='seventeen thousand one hundred thirty-five' WHERE a=24619;\nUPDATE t2 SET c='twenty-six thousand five hundred eighty-five' WHERE a=24620;\nUPDATE t2 SET c='nineteen thousand seven hundred eighteen' WHERE a=24621;\nUPDATE t2 SET c='eighty-five thousand four hundred sixty-six' WHERE a=24622;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty-three' WHERE a=24623;\nUPDATE t2 SET c='twenty-seven thousand two hundred nineteen' WHERE a=24624;\nUPDATE t2 SET c='eight thousand seventy-eight' WHERE a=24625;\nUPDATE t2 SET c='eight thousand three hundred sixty-five' WHERE a=24626;\nUPDATE t2 SET c='seventy-four thousand nine hundred twenty-eight' WHERE a=24627;\nUPDATE t2 SET c='seventy-eight thousand six hundred eight' WHERE a=24628;\nUPDATE t2 SET c='fifty-two thousand seventy-three' WHERE a=24629;\nUPDATE t2 SET c='thirty-six thousand three hundred seven' WHERE a=24630;\nUPDATE t2 SET c='sixty-one thousand eight hundred forty-four' WHERE a=24631;\nUPDATE t2 SET c='eighty-seven thousand seven hundred seventy-two' WHERE a=24632;\nUPDATE t2 SET c='twenty-five thousand three hundred sixty-two' WHERE a=24633;\nUPDATE t2 SET c='forty thousand three hundred fifteen' WHERE a=24634;\nUPDATE t2 SET c='ninety-three thousand two hundred forty-seven' WHERE a=24635;\nUPDATE t2 SET c='two thousand twenty-eight' WHERE a=24636;\nUPDATE t2 SET c='forty-two thousand six hundred thirty-eight' WHERE a=24637;\nUPDATE t2 SET c='sixty-four thousand five hundred one' WHERE a=24638;\nUPDATE t2 SET c='forty-two thousand four hundred twenty-four' WHERE a=24639;\nUPDATE t2 SET c='twenty-seven thousand three hundred ninety' WHERE a=24640;\nUPDATE t2 SET c='thirty-nine thousand seven hundred fifty-five' WHERE a=24641;\nUPDATE t2 SET c='thirty-seven thousand four hundred ten' WHERE a=24642;\nUPDATE t2 SET c='four thousand five hundred thirty-nine' WHERE a=24643;\nUPDATE t2 SET c='thirty-two thousand six hundred seventy-six' WHERE a=24644;\nUPDATE t2 SET c='eighty-eight thousand two hundred thirty' WHERE a=24645;\nUPDATE t2 SET c='fifty-two thousand seven hundred twenty-eight' WHERE a=24646;\nUPDATE t2 SET c='eighty-three thousand seven hundred eighty-four' WHERE a=24647;\nUPDATE t2 SET c='sixty-three thousand nine hundred eighty-six' WHERE a=24648;\nUPDATE t2 SET c='five thousand two' WHERE a=24649;\nUPDATE t2 SET c='sixty-one thousand three hundred thirty-two' WHERE a=24650;\nUPDATE t2 SET c='eighteen thousand five hundred fifty-eight' WHERE a=24651;\nUPDATE t2 SET c='sixty thousand seven hundred sixty-five' WHERE a=24652;\nUPDATE t2 SET c='nine thousand three hundred seventy-eight' WHERE a=24653;\nUPDATE t2 SET c='four thousand eight hundred fifty-six' WHERE a=24654;\nUPDATE t2 SET c='seventy thousand four hundred eighty-three' WHERE a=24655;\nUPDATE t2 SET c='fifty-three thousand two hundred seventy-seven' WHERE a=24656;\nUPDATE t2 SET c='sixty-eight thousand six hundred sixty-five' WHERE a=24657;\nUPDATE t2 SET c='eleven thousand three hundred seventeen' WHERE a=24658;\nUPDATE t2 SET c='seventy-one thousand one hundred forty-nine' WHERE a=24659;\nUPDATE t2 SET c='thirty-eight thousand two hundred sixty-seven' WHERE a=24660;\nUPDATE t2 SET c='fifty thousand one hundred thirty-three' WHERE a=24661;\nUPDATE t2 SET c='ninety-two thousand three hundred thirty-nine' WHERE a=24662;\nUPDATE t2 SET c='twenty-three thousand eight hundred sixty-eight' WHERE a=24663;\nUPDATE t2 SET c='two thousand five hundred eighty-six' WHERE a=24664;\nUPDATE t2 SET c='eight thousand six hundred ninety' WHERE a=24665;\nUPDATE t2 SET c='forty-seven thousand nine hundred ten' WHERE a=24666;\nUPDATE t2 SET c='eighty-six thousand six hundred sixty-one' WHERE a=24667;\nUPDATE t2 SET c='eighty-two thousand eight hundred fifty-nine' WHERE a=24668;\nUPDATE t2 SET c='ninety-five thousand three hundred ten' WHERE a=24669;\nUPDATE t2 SET c='seventy-four thousand one hundred fifty-two' WHERE a=24670;\nUPDATE t2 SET c='forty-six thousand seven hundred thirty-two' WHERE a=24671;\nUPDATE t2 SET c='twenty-two thousand eighty-five' WHERE a=24672;\nUPDATE t2 SET c='three hundred sixty-eight' WHERE a=24673;\nUPDATE t2 SET c='ninety thousand nine hundred sixty-eight' WHERE a=24674;\nUPDATE t2 SET c='eighty-four thousand two hundred seventeen' WHERE a=24675;\nUPDATE t2 SET c='nineteen thousand twenty-three' WHERE a=24676;\nUPDATE t2 SET c='fourteen thousand six hundred three' WHERE a=24677;\nUPDATE t2 SET c='seventy-four thousand seven hundred thirty-eight' WHERE a=24678;\nUPDATE t2 SET c='forty-seven thousand four hundred ninety-nine' WHERE a=24679;\nUPDATE t2 SET c='seventy-three thousand eight hundred ninety-eight' WHERE a=24680;\nUPDATE t2 SET c='sixty-four thousand nine hundred seventeen' WHERE a=24681;\nUPDATE t2 SET c='one thousand nine hundred eight' WHERE a=24682;\nUPDATE t2 SET c='fifty-five thousand two hundred twenty-nine' WHERE a=24683;\nUPDATE t2 SET c='ten thousand nine hundred thirty-two' WHERE a=24684;\nUPDATE t2 SET c='eighty-four thousand nine hundred six' WHERE a=24685;\nUPDATE t2 SET c='seventy-eight thousand four hundred two' WHERE a=24686;\nUPDATE t2 SET c='four thousand eight hundred fifteen' WHERE a=24687;\nUPDATE t2 SET c='twenty-three thousand four hundred seven' WHERE a=24688;\nUPDATE t2 SET c='seventy-six thousand nine hundred six' WHERE a=24689;\nUPDATE t2 SET c='seventy-four thousand seven hundred two' WHERE a=24690;\nUPDATE t2 SET c='eighty thousand nine hundred forty-four' WHERE a=24691;\nUPDATE t2 SET c='seventy-four thousand five hundred fifty-five' WHERE a=24692;\nUPDATE t2 SET c='seventy-one thousand two hundred twenty-seven' WHERE a=24693;\nUPDATE t2 SET c='twenty-seven thousand nine hundred sixty-four' WHERE a=24694;\nUPDATE t2 SET c='fifty-six thousand three hundred seventy-two' WHERE a=24695;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-eight' WHERE a=24696;\nUPDATE t2 SET c='seven thousand six hundred eighty-two' WHERE a=24697;\nUPDATE t2 SET c='seven thousand one hundred seventeen' WHERE a=24698;\nUPDATE t2 SET c='seventy-eight thousand two hundred forty-five' WHERE a=24699;\nUPDATE t2 SET c='sixty-nine thousand six hundred ninety' WHERE a=24700;\nUPDATE t2 SET c='twenty-nine thousand three hundred eighty-five' WHERE a=24701;\nUPDATE t2 SET c='ninety-three thousand seven hundred ninety-three' WHERE a=24702;\nUPDATE t2 SET c='eighty-nine thousand six hundred twenty-three' WHERE a=24703;\nUPDATE t2 SET c='thirty-eight thousand five hundred seventy-three' WHERE a=24704;\nUPDATE t2 SET c='seventy-three thousand seventy-five' WHERE a=24705;\nUPDATE t2 SET c='sixty-eight thousand twenty-six' WHERE a=24706;\nUPDATE t2 SET c='thirty-one thousand six hundred sixty-five' WHERE a=24707;\nUPDATE t2 SET c='eighty thousand three hundred ninety-nine' WHERE a=24708;\nUPDATE t2 SET c='forty-two thousand three hundred fifty-three' WHERE a=24709;\nUPDATE t2 SET c='four thousand three hundred thirty' WHERE a=24710;\nUPDATE t2 SET c='fourteen thousand eight hundred ninety-one' WHERE a=24711;\nUPDATE t2 SET c='thirty-six thousand one hundred forty-eight' WHERE a=24712;\nUPDATE t2 SET c='seventy-one thousand six hundred twelve' WHERE a=24713;\nUPDATE t2 SET c='eight thousand one hundred ninety-three' WHERE a=24714;\nUPDATE t2 SET c='fifty-three thousand six hundred seventy-six' WHERE a=24715;\nUPDATE t2 SET c='seventy-two thousand five hundred ninety-seven' WHERE a=24716;\nUPDATE t2 SET c='fifty-nine thousand two hundred twenty-seven' WHERE a=24717;\nUPDATE t2 SET c='sixty-eight thousand six hundred thirty-three' WHERE a=24718;\nUPDATE t2 SET c='thirty-eight thousand eight hundred sixty-two' WHERE a=24719;\nUPDATE t2 SET c='one thousand one hundred ninety-eight' WHERE a=24720;\nUPDATE t2 SET c='seventy-four thousand one hundred seventy-seven' WHERE a=24721;\nUPDATE t2 SET c='twenty-three thousand six hundred sixty-seven' WHERE a=24722;\nUPDATE t2 SET c='forty-seven thousand nine hundred sixty-eight' WHERE a=24723;\nUPDATE t2 SET c='sixty thousand five hundred thirty-four' WHERE a=24724;\nUPDATE t2 SET c='twenty-six thousand four hundred twenty-nine' WHERE a=24725;\nUPDATE t2 SET c='seventy-eight thousand six hundred twenty-nine' WHERE a=24726;\nUPDATE t2 SET c='forty-eight thousand six hundred ninety-three' WHERE a=24727;\nUPDATE t2 SET c='fifty-seven thousand one hundred seventy-five' WHERE a=24728;\nUPDATE t2 SET c='seventy-eight thousand one hundred forty-seven' WHERE a=24729;\nUPDATE t2 SET c='one thousand five hundred forty-seven' WHERE a=24730;\nUPDATE t2 SET c='ninety thousand nine hundred ninety-six' WHERE a=24731;\nUPDATE t2 SET c='thirty-seven thousand six hundred sixteen' WHERE a=24732;\nUPDATE t2 SET c='eighty-six thousand six' WHERE a=24733;\nUPDATE t2 SET c='ten thousand two hundred twenty-three' WHERE a=24734;\nUPDATE t2 SET c='fifty-three thousand five hundred two' WHERE a=24735;\nUPDATE t2 SET c='eighty-four thousand six hundred seven' WHERE a=24736;\nUPDATE t2 SET c='fifty-one thousand two hundred eighty' WHERE a=24737;\nUPDATE t2 SET c='thirty-six thousand four hundred twenty-seven' WHERE a=24738;\nUPDATE t2 SET c='forty-four thousand four hundred fourteen' WHERE a=24739;\nUPDATE t2 SET c='forty-seven thousand one hundred forty-six' WHERE a=24740;\nUPDATE t2 SET c='nine thousand seven hundred thirty-three' WHERE a=24741;\nUPDATE t2 SET c='forty-three thousand six hundred fifty-two' WHERE a=24742;\nUPDATE t2 SET c='ninety-seven thousand seven hundred ten' WHERE a=24743;\nUPDATE t2 SET c='sixty-nine thousand five hundred two' WHERE a=24744;\nUPDATE t2 SET c='thirty-four thousand seven hundred fifty-four' WHERE a=24745;\nUPDATE t2 SET c='seventy-four thousand two hundred fifty-one' WHERE a=24746;\nUPDATE t2 SET c='sixty-one thousand seven hundred nineteen' WHERE a=24747;\nUPDATE t2 SET c='forty-eight thousand eight hundred eighty-four' WHERE a=24748;\nUPDATE t2 SET c='twenty thousand fifty-three' WHERE a=24749;\nUPDATE t2 SET c='fifty-six thousand two hundred forty' WHERE a=24750;\nUPDATE t2 SET c='eighty-two thousand ninety-eight' WHERE a=24751;\nUPDATE t2 SET c='ninety thousand seven hundred sixty-eight' WHERE a=24752;\nUPDATE t2 SET c='twenty-eight thousand one hundred nineteen' WHERE a=24753;\nUPDATE t2 SET c='eighty-one thousand eighty-eight' WHERE a=24754;\nUPDATE t2 SET c='ninety-two thousand six hundred thirty-eight' WHERE a=24755;\nUPDATE t2 SET c='ninety-two thousand nine hundred thirty-two' WHERE a=24756;\nUPDATE t2 SET c='twenty-four thousand two hundred thirty-eight' WHERE a=24757;\nUPDATE t2 SET c='eighty-seven thousand four hundred thirty-eight' WHERE a=24758;\nUPDATE t2 SET c='sixty-eight thousand eight hundred seventy-four' WHERE a=24759;\nUPDATE t2 SET c='fifty-three thousand three hundred sixty-one' WHERE a=24760;\nUPDATE t2 SET c='fifty thousand one hundred sixty-nine' WHERE a=24761;\nUPDATE t2 SET c='thirty-five thousand nine hundred ninety-two' WHERE a=24762;\nUPDATE t2 SET c='thirty-six thousand twenty-four' WHERE a=24763;\nUPDATE t2 SET c='sixty-two thousand one hundred sixty-three' WHERE a=24764;\nUPDATE t2 SET c='fifty-three thousand seven hundred forty-one' WHERE a=24765;\nUPDATE t2 SET c='thirty-one thousand one hundred eighty-six' WHERE a=24766;\nUPDATE t2 SET c='fifty-seven thousand five hundred twenty-three' WHERE a=24767;\nUPDATE t2 SET c='thirty-nine thousand one hundred sixty-five' WHERE a=24768;\nUPDATE t2 SET c='forty-six thousand one hundred sixty' WHERE a=24769;\nUPDATE t2 SET c='fourteen thousand nine hundred seventy-four' WHERE a=24770;\nUPDATE t2 SET c='fifty-seven thousand one hundred thirty-six' WHERE a=24771;\nUPDATE t2 SET c='ninety-nine thousand two hundred six' WHERE a=24772;\nUPDATE t2 SET c='seventy thousand one hundred fourteen' WHERE a=24773;\nUPDATE t2 SET c='ninety-eight thousand nine hundred forty-three' WHERE a=24774;\nUPDATE t2 SET c='eighty thousand ninety-four' WHERE a=24775;\nUPDATE t2 SET c='eight thousand two hundred seventy-eight' WHERE a=24776;\nUPDATE t2 SET c='eighty-four thousand five hundred thirty-seven' WHERE a=24777;\nUPDATE t2 SET c='twenty-eight thousand eight hundred seventy-five' WHERE a=24778;\nUPDATE t2 SET c='seventy-eight thousand four hundred sixty-four' WHERE a=24779;\nUPDATE t2 SET c='nine thousand six hundred thirty' WHERE a=24780;\nUPDATE t2 SET c='thirty-four thousand nine hundred thirty' WHERE a=24781;\nUPDATE t2 SET c='sixty-eight' WHERE a=24782;\nUPDATE t2 SET c='thirty-eight thousand seventy-three' WHERE a=24783;\nUPDATE t2 SET c='seventy-six thousand sixty-six' WHERE a=24784;\nUPDATE t2 SET c='thirty-two thousand nine hundred sixty-three' WHERE a=24785;\nUPDATE t2 SET c='seven thousand two hundred eighty-five' WHERE a=24786;\nUPDATE t2 SET c='nine thousand nine hundred one' WHERE a=24787;\nUPDATE t2 SET c='twelve thousand seven hundred' WHERE a=24788;\nUPDATE t2 SET c='ninety-three thousand six hundred eighty-four' WHERE a=24789;\nUPDATE t2 SET c='nine thousand four hundred twenty-five' WHERE a=24790;\nUPDATE t2 SET c='sixty-three thousand two hundred thirty-two' WHERE a=24791;\nUPDATE t2 SET c='twenty-six thousand two hundred sixty-nine' WHERE a=24792;\nUPDATE t2 SET c='ninety-eight thousand four hundred ninety-eight' WHERE a=24793;\nUPDATE t2 SET c='sixteen thousand nine' WHERE a=24794;\nUPDATE t2 SET c='one thousand two hundred seventy-seven' WHERE a=24795;\nUPDATE t2 SET c='eighteen thousand four hundred ninety-seven' WHERE a=24796;\nUPDATE t2 SET c='eighty-eight thousand nine hundred eighty-eight' WHERE a=24797;\nUPDATE t2 SET c='forty-four thousand nine hundred fifty-five' WHERE a=24798;\nUPDATE t2 SET c='fifty-five thousand twenty-three' WHERE a=24799;\nUPDATE t2 SET c='ninety-two thousand five hundred nineteen' WHERE a=24800;\nUPDATE t2 SET c='eleven thousand one hundred thirty' WHERE a=24801;\nUPDATE t2 SET c='thirty-seven thousand five hundred fifty-nine' WHERE a=24802;\nUPDATE t2 SET c='thirteen thousand three hundred twelve' WHERE a=24803;\nUPDATE t2 SET c='nine hundred seventy' WHERE a=24804;\nUPDATE t2 SET c='twenty-eight thousand three hundred sixty-three' WHERE a=24805;\nUPDATE t2 SET c='ninety-four thousand three hundred seventy-three' WHERE a=24806;\nUPDATE t2 SET c='twenty-nine thousand seven hundred eighty-four' WHERE a=24807;\nUPDATE t2 SET c='twenty-one thousand eighty-nine' WHERE a=24808;\nUPDATE t2 SET c='one thousand two hundred thirty-three' WHERE a=24809;\nUPDATE t2 SET c='ninety-three thousand three hundred four' WHERE a=24810;\nUPDATE t2 SET c='forty-one thousand five hundred ninety-one' WHERE a=24811;\nUPDATE t2 SET c='seventy-eight thousand nine hundred sixty' WHERE a=24812;\nUPDATE t2 SET c='fourteen thousand three hundred seventy-two' WHERE a=24813;\nUPDATE t2 SET c='thirty thousand nine hundred sixty' WHERE a=24814;\nUPDATE t2 SET c='thirty-six thousand nine hundred forty-eight' WHERE a=24815;\nUPDATE t2 SET c='ninety thousand one hundred twenty-four' WHERE a=24816;\nUPDATE t2 SET c='five thousand six hundred thirteen' WHERE a=24817;\nUPDATE t2 SET c='sixty-two thousand six hundred thirteen' WHERE a=24818;\nUPDATE t2 SET c='thirty-two thousand two hundred sixty-six' WHERE a=24819;\nUPDATE t2 SET c='seventeen thousand forty-six' WHERE a=24820;\nUPDATE t2 SET c='fifty-five thousand three hundred four' WHERE a=24821;\nUPDATE t2 SET c='ninety thousand five hundred eighty-five' WHERE a=24822;\nUPDATE t2 SET c='twenty-eight thousand one hundred ten' WHERE a=24823;\nUPDATE t2 SET c='fifty-eight thousand four hundred ninety' WHERE a=24824;\nUPDATE t2 SET c='thirty-eight thousand nine hundred eighty-seven' WHERE a=24825;\nUPDATE t2 SET c='ninety-nine thousand one hundred seventy-six' WHERE a=24826;\nUPDATE t2 SET c='twenty-six thousand four hundred sixty-one' WHERE a=24827;\nUPDATE t2 SET c='eighty-seven thousand seven hundred twenty' WHERE a=24828;\nUPDATE t2 SET c='eighteen thousand eight hundred ninety-eight' WHERE a=24829;\nUPDATE t2 SET c='forty-six thousand six hundred thirty-one' WHERE a=24830;\nUPDATE t2 SET c='seventy-five thousand seven hundred fifty-six' WHERE a=24831;\nUPDATE t2 SET c='ninety-nine thousand six hundred seventy-eight' WHERE a=24832;\nUPDATE t2 SET c='fifty-nine thousand six hundred sixty-nine' WHERE a=24833;\nUPDATE t2 SET c='twenty-nine thousand eight hundred twenty-four' WHERE a=24834;\nUPDATE t2 SET c='eighty-five thousand nine hundred seventy-two' WHERE a=24835;\nUPDATE t2 SET c='twelve thousand two hundred forty-one' WHERE a=24836;\nUPDATE t2 SET c='twenty-seven thousand four hundred sixty-one' WHERE a=24837;\nUPDATE t2 SET c='one thousand eight hundred thirty-six' WHERE a=24838;\nUPDATE t2 SET c='sixty-one thousand seven hundred twenty-six' WHERE a=24839;\nUPDATE t2 SET c='fifty-six thousand seven hundred twenty-eight' WHERE a=24840;\nUPDATE t2 SET c='nineteen thousand nine hundred thirty-three' WHERE a=24841;\nUPDATE t2 SET c='twenty-nine thousand six hundred' WHERE a=24842;\nUPDATE t2 SET c='forty-five thousand nine hundred ten' WHERE a=24843;\nUPDATE t2 SET c='thirty-seven thousand nine hundred ninety-three' WHERE a=24844;\nUPDATE t2 SET c='twenty-five thousand sixty-eight' WHERE a=24845;\nUPDATE t2 SET c='ninety-two thousand seven hundred twenty-one' WHERE a=24846;\nUPDATE t2 SET c='forty thousand seven hundred twenty-one' WHERE a=24847;\nUPDATE t2 SET c='forty-nine thousand seven hundred eighty-two' WHERE a=24848;\nUPDATE t2 SET c='ninety-five thousand five hundred ninety-seven' WHERE a=24849;\nUPDATE t2 SET c='ninety-one thousand nine hundred twenty-three' WHERE a=24850;\nUPDATE t2 SET c='seventy-seven thousand four hundred fifty-four' WHERE a=24851;\nUPDATE t2 SET c='fifteen thousand four hundred fifty' WHERE a=24852;\nUPDATE t2 SET c='eight thousand three hundred thirty-six' WHERE a=24853;\nUPDATE t2 SET c='seven thousand eight hundred twenty-one' WHERE a=24854;\nUPDATE t2 SET c='ninety-six thousand two hundred forty-five' WHERE a=24855;\nUPDATE t2 SET c='eighty thousand seven hundred sixteen' WHERE a=24856;\nUPDATE t2 SET c='twenty-three thousand five hundred four' WHERE a=24857;\nUPDATE t2 SET c='fifty thousand eight hundred thirty-one' WHERE a=24858;\nUPDATE t2 SET c='sixty-eight thousand five hundred fifty-three' WHERE a=24859;\nUPDATE t2 SET c='fifteen thousand six hundred eighty-three' WHERE a=24860;\nUPDATE t2 SET c='sixty-nine thousand one hundred thirty-three' WHERE a=24861;\nUPDATE t2 SET c='eighty-six thousand five hundred twenty-four' WHERE a=24862;\nUPDATE t2 SET c='ninety-three thousand eight hundred forty-nine' WHERE a=24863;\nUPDATE t2 SET c='seventy thousand sixteen' WHERE a=24864;\nUPDATE t2 SET c='eighteen thousand six hundred fifty-nine' WHERE a=24865;\nUPDATE t2 SET c='eighty-eight thousand eighty-one' WHERE a=24866;\nUPDATE t2 SET c='fifty-one thousand one hundred forty-two' WHERE a=24867;\nUPDATE t2 SET c='sixty-nine thousand seventy' WHERE a=24868;\nUPDATE t2 SET c='ten thousand four hundred twenty-three' WHERE a=24869;\nUPDATE t2 SET c='sixty-one thousand eight hundred twenty-two' WHERE a=24870;\nUPDATE t2 SET c='eighty-nine thousand nine hundred eighty' WHERE a=24871;\nUPDATE t2 SET c='forty-seven thousand three hundred thirty' WHERE a=24872;\nUPDATE t2 SET c='seventy-eight thousand five hundred twenty-five' WHERE a=24873;\nUPDATE t2 SET c='twenty-seven thousand four hundred six' WHERE a=24874;\nUPDATE t2 SET c='forty thousand eight hundred fifty' WHERE a=24875;\nUPDATE t2 SET c='fifty-six thousand one hundred sixty' WHERE a=24876;\nUPDATE t2 SET c='sixteen thousand one hundred sixty-one' WHERE a=24877;\nUPDATE t2 SET c='sixty-one thousand two hundred fifty-seven' WHERE a=24878;\nUPDATE t2 SET c='ninety-eight thousand eight hundred six' WHERE a=24879;\nUPDATE t2 SET c='eighty-six thousand twenty-five' WHERE a=24880;\nUPDATE t2 SET c='thirty-nine thousand four hundred seventy-two' WHERE a=24881;\nUPDATE t2 SET c='eight hundred thirty-three' WHERE a=24882;\nUPDATE t2 SET c='six thousand eight hundred nine' WHERE a=24883;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventeen' WHERE a=24884;\nUPDATE t2 SET c='ninety-three thousand four hundred ninety-five' WHERE a=24885;\nUPDATE t2 SET c='twenty thousand two hundred twenty-four' WHERE a=24886;\nUPDATE t2 SET c='ninety-one thousand nine hundred thirty' WHERE a=24887;\nUPDATE t2 SET c='thirty-two thousand eight hundred seventy-three' WHERE a=24888;\nUPDATE t2 SET c='twenty-five thousand six hundred eighty-two' WHERE a=24889;\nUPDATE t2 SET c='fifty-eight thousand eight hundred thirty-three' WHERE a=24890;\nUPDATE t2 SET c='sixty-seven thousand four hundred eighty-six' WHERE a=24891;\nUPDATE t2 SET c='ninety-nine thousand seven hundred forty-nine' WHERE a=24892;\nUPDATE t2 SET c='forty-three thousand five hundred twenty-one' WHERE a=24893;\nUPDATE t2 SET c='twenty thousand five hundred seventy-five' WHERE a=24894;\nUPDATE t2 SET c='seven thousand one hundred sixteen' WHERE a=24895;\nUPDATE t2 SET c='four hundred sixty-six' WHERE a=24896;\nUPDATE t2 SET c='ninety-two thousand forty' WHERE a=24897;\nUPDATE t2 SET c='forty-six thousand two hundred seventy-four' WHERE a=24898;\nUPDATE t2 SET c='twenty-eight thousand five hundred seventy-three' WHERE a=24899;\nUPDATE t2 SET c='thirteen thousand three hundred eighty-nine' WHERE a=24900;\nUPDATE t2 SET c='thirty-four thousand six hundred forty-three' WHERE a=24901;\nUPDATE t2 SET c='fifty-five thousand seven hundred twenty' WHERE a=24902;\nUPDATE t2 SET c='eighty-two thousand six hundred sixty' WHERE a=24903;\nUPDATE t2 SET c='twelve thousand eight hundred thirty-eight' WHERE a=24904;\nUPDATE t2 SET c='eighty-seven thousand eight hundred forty-four' WHERE a=24905;\nUPDATE t2 SET c='seventy thousand nine hundred nineteen' WHERE a=24906;\nUPDATE t2 SET c='seventeen thousand eight hundred twelve' WHERE a=24907;\nUPDATE t2 SET c='ninety-eight thousand eight hundred seventy-four' WHERE a=24908;\nUPDATE t2 SET c='seventeen thousand one hundred eighty-two' WHERE a=24909;\nUPDATE t2 SET c='eighty-one thousand seven hundred eighty-seven' WHERE a=24910;\nUPDATE t2 SET c='eighty-six thousand eight hundred twenty-three' WHERE a=24911;\nUPDATE t2 SET c='forty-four thousand four hundred seventeen' WHERE a=24912;\nUPDATE t2 SET c='fifteen thousand six hundred seventeen' WHERE a=24913;\nUPDATE t2 SET c='ninety-four thousand ninety-seven' WHERE a=24914;\nUPDATE t2 SET c='ninety-four thousand five hundred twelve' WHERE a=24915;\nUPDATE t2 SET c='thirty-three thousand two hundred sixty-eight' WHERE a=24916;\nUPDATE t2 SET c='sixty-eight thousand three hundred four' WHERE a=24917;\nUPDATE t2 SET c='ninety-one thousand eight hundred sixty' WHERE a=24918;\nUPDATE t2 SET c='twenty-eight thousand seven hundred eighty-seven' WHERE a=24919;\nUPDATE t2 SET c='seventy-eight thousand five hundred eighty-nine' WHERE a=24920;\nUPDATE t2 SET c='ninety-six thousand three hundred thirty-one' WHERE a=24921;\nUPDATE t2 SET c='eighty thousand six hundred four' WHERE a=24922;\nUPDATE t2 SET c='eleven thousand seven hundred twenty-nine' WHERE a=24923;\nUPDATE t2 SET c='twenty-four thousand nine hundred forty-eight' WHERE a=24924;\nUPDATE t2 SET c='seventy-two thousand three hundred twenty-four' WHERE a=24925;\nUPDATE t2 SET c='forty-seven thousand one hundred one' WHERE a=24926;\nUPDATE t2 SET c='eleven thousand seven hundred fifty' WHERE a=24927;\nUPDATE t2 SET c='twenty-six thousand eight hundred thirty-eight' WHERE a=24928;\nUPDATE t2 SET c='eighty-five thousand sixty-five' WHERE a=24929;\nUPDATE t2 SET c='fifty-six thousand three hundred ninety-five' WHERE a=24930;\nUPDATE t2 SET c='sixty-four thousand eight hundred twenty-eight' WHERE a=24931;\nUPDATE t2 SET c='ninety-seven thousand three hundred twenty-five' WHERE a=24932;\nUPDATE t2 SET c='eighty-five thousand three hundred four' WHERE a=24933;\nUPDATE t2 SET c='seventy thousand three hundred forty-three' WHERE a=24934;\nUPDATE t2 SET c='eighty thousand three hundred four' WHERE a=24935;\nUPDATE t2 SET c='forty-three thousand four hundred forty-six' WHERE a=24936;\nUPDATE t2 SET c='eighty-one thousand six hundred twelve' WHERE a=24937;\nUPDATE t2 SET c='sixty-five thousand six hundred fifty-six' WHERE a=24938;\nUPDATE t2 SET c='eighty-seven thousand four hundred forty' WHERE a=24939;\nUPDATE t2 SET c='seventy-eight thousand eight hundred ninety-two' WHERE a=24940;\nUPDATE t2 SET c='fifty-six thousand three hundred six' WHERE a=24941;\nUPDATE t2 SET c='forty-five thousand seven hundred seven' WHERE a=24942;\nUPDATE t2 SET c='eighty-one thousand nine hundred seventy-three' WHERE a=24943;\nUPDATE t2 SET c='thirty-two thousand five hundred ninety-five' WHERE a=24944;\nUPDATE t2 SET c='forty-six thousand seven hundred ninety-five' WHERE a=24945;\nUPDATE t2 SET c='ninety-eight thousand two hundred fifty-one' WHERE a=24946;\nUPDATE t2 SET c='ninety thousand six hundred thirty-eight' WHERE a=24947;\nUPDATE t2 SET c='twenty thousand six hundred four' WHERE a=24948;\nUPDATE t2 SET c='ninety-two thousand seven hundred seventy' WHERE a=24949;\nUPDATE t2 SET c='sixty-one thousand eight hundred thirty-eight' WHERE a=24950;\nUPDATE t2 SET c='six thousand seven hundred sixty-three' WHERE a=24951;\nUPDATE t2 SET c='seventy-seven thousand two hundred sixty-eight' WHERE a=24952;\nUPDATE t2 SET c='sixty-four thousand nine hundred eighty-three' WHERE a=24953;\nUPDATE t2 SET c='seventeen thousand ninety' WHERE a=24954;\nUPDATE t2 SET c='six thousand two hundred fifty' WHERE a=24955;\nUPDATE t2 SET c='ninety-six thousand three hundred forty-six' WHERE a=24956;\nUPDATE t2 SET c='one thousand six hundred ninety-six' WHERE a=24957;\nUPDATE t2 SET c='sixty-nine thousand four hundred sixty-two' WHERE a=24958;\nUPDATE t2 SET c='three thousand five hundred fifty-two' WHERE a=24959;\nUPDATE t2 SET c='fifty-five thousand three hundred seventy-five' WHERE a=24960;\nUPDATE t2 SET c='seventy-seven thousand seven hundred forty-nine' WHERE a=24961;\nUPDATE t2 SET c='thirty thousand four hundred sixteen' WHERE a=24962;\nUPDATE t2 SET c='ninety-seven thousand four hundred fifty-four' WHERE a=24963;\nUPDATE t2 SET c='fifty-five thousand four hundred twelve' WHERE a=24964;\nUPDATE t2 SET c='seventy-three thousand six hundred fifty' WHERE a=24965;\nUPDATE t2 SET c='fifty-seven thousand fifty-eight' WHERE a=24966;\nUPDATE t2 SET c='forty-three thousand four hundred eighty' WHERE a=24967;\nUPDATE t2 SET c='six thousand nine hundred fifty-nine' WHERE a=24968;\nUPDATE t2 SET c='ninety-nine thousand four hundred twenty-four' WHERE a=24969;\nUPDATE t2 SET c='ninety-three thousand five hundred sixteen' WHERE a=24970;\nUPDATE t2 SET c='sixty-five thousand seven hundred thirty-one' WHERE a=24971;\nUPDATE t2 SET c='thirty-four thousand eight hundred' WHERE a=24972;\nUPDATE t2 SET c='forty-four thousand nine hundred sixty-two' WHERE a=24973;\nUPDATE t2 SET c='fifty thousand four hundred eighty-two' WHERE a=24974;\nUPDATE t2 SET c='twenty-six thousand four hundred twenty-one' WHERE a=24975;\nUPDATE t2 SET c='forty-six thousand three hundred one' WHERE a=24976;\nUPDATE t2 SET c='seventy-eight thousand five hundred seventy-seven' WHERE a=24977;\nUPDATE t2 SET c='fifty-two thousand five hundred forty-three' WHERE a=24978;\nUPDATE t2 SET c='eighteen thousand two hundred four' WHERE a=24979;\nUPDATE t2 SET c='seventy-six thousand one hundred seventy-four' WHERE a=24980;\nUPDATE t2 SET c='eight thousand six hundred twenty-four' WHERE a=24981;\nUPDATE t2 SET c='forty thousand nine hundred eighty-five' WHERE a=24982;\nUPDATE t2 SET c='seventy-seven thousand thirty-seven' WHERE a=24983;\nUPDATE t2 SET c='forty thousand seventy-eight' WHERE a=24984;\nUPDATE t2 SET c='thirty-eight thousand six hundred sixteen' WHERE a=24985;\nUPDATE t2 SET c='ninety-nine thousand five hundred seventy' WHERE a=24986;\nUPDATE t2 SET c='seventy-six thousand eight hundred sixty-six' WHERE a=24987;\nUPDATE t2 SET c='ninety-six thousand ninety-two' WHERE a=24988;\nUPDATE t2 SET c='one thousand seven hundred eighty-six' WHERE a=24989;\nUPDATE t2 SET c='eighty-six thousand eight hundred eighty' WHERE a=24990;\nUPDATE t2 SET c='fifty-four thousand one hundred thirty-three' WHERE a=24991;\nUPDATE t2 SET c='three thousand two hundred seventy-five' WHERE a=24992;\nUPDATE t2 SET c='eighty-five thousand five hundred forty-five' WHERE a=24993;\nUPDATE t2 SET c='forty-two thousand four hundred forty-nine' WHERE a=24994;\nUPDATE t2 SET c='thirty-three thousand eight hundred eighty-one' WHERE a=24995;\nUPDATE t2 SET c='ninety-seven thousand seven hundred sixty' WHERE a=24996;\nUPDATE t2 SET c='eighty-seven thousand nine hundred eighty-two' WHERE a=24997;\nUPDATE t2 SET c='twenty-six thousand nine hundred forty' WHERE a=24998;\nUPDATE t2 SET c='eighty-one thousand fifty-eight' WHERE a=24999;\nUPDATE t2 SET c='sixty-one thousand one hundred fifteen' WHERE a=25000;\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark11.sql",
    "content": "BEGIN;\nINSERT INTO t1 SELECT b,a,c FROM t2;\nINSERT INTO t2 SELECT b,a,c FROM t1;\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark12.sql",
    "content": "DELETE FROM t2 WHERE c LIKE '%fifty%';\n"
  },
  {
    "path": "packages/benchmark/src/benchmark13.sql",
    "content": "DELETE FROM t2 WHERE a>10 AND a<20000;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark14.sql",
    "content": "INSERT INTO t2 SELECT * FROM t1;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark15.sql",
    "content": "BEGIN;\nDELETE FROM t1;\nINSERT INTO t1 VALUES(1, 69001, 'sixty-nine thousand one');\nINSERT INTO t1 VALUES(2, 14653, 'fourteen thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3, 30574, 'thirty thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(4, 25718, 'twenty-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(5, 2863, 'two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(6, 72899, 'seventy-two thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(7, 66050, 'sixty-six thousand fifty');\nINSERT INTO t1 VALUES(8, 73320, 'seventy-three thousand three hundred twenty');\nINSERT INTO t1 VALUES(9, 17829, 'seventeen thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(10, 21838, 'twenty-one thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(11, 36089, 'thirty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(12, 54188, 'fifty-four thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(13, 90001, 'ninety thousand one');\nINSERT INTO t1 VALUES(14, 53754, 'fifty-three thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(15, 64370, 'sixty-four thousand three hundred seventy');\nINSERT INTO t1 VALUES(16, 12131, 'twelve thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(17, 946, 'nine hundred forty-six');\nINSERT INTO t1 VALUES(18, 62211, 'sixty-two thousand two hundred eleven');\nINSERT INTO t1 VALUES(19, 63063, 'sixty-three thousand sixty-three');\nINSERT INTO t1 VALUES(20, 30284, 'thirty thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(21, 5779, 'five thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(22, 53669, 'fifty-three thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(23, 11205, 'eleven thousand two hundred five');\nINSERT INTO t1 VALUES(24, 76512, 'seventy-six thousand five hundred twelve');\nINSERT INTO t1 VALUES(25, 45771, 'forty-five thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(26, 12290, 'twelve thousand two hundred ninety');\nINSERT INTO t1 VALUES(27, 15009, 'fifteen thousand nine');\nINSERT INTO t1 VALUES(28, 85391, 'eighty-five thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(29, 65676, 'sixty-five thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(30, 1170, 'one thousand one hundred seventy');\nINSERT INTO t1 VALUES(31, 45091, 'forty-five thousand ninety-one');\nINSERT INTO t1 VALUES(32, 13611, 'thirteen thousand six hundred eleven');\nINSERT INTO t1 VALUES(33, 46489, 'forty-six thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(34, 94980, 'ninety-four thousand nine hundred eighty');\nINSERT INTO t1 VALUES(35, 20777, 'twenty thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(36, 33664, 'thirty-three thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(37, 43647, 'forty-three thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(38, 73943, 'seventy-three thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(39, 56644, 'fifty-six thousand six hundred forty-four');\nINSERT INTO t1 VALUES(40, 5285, 'five thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(41, 88365, 'eighty-eight thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(42, 6335, 'six thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(43, 64757, 'sixty-four thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(44, 68039, 'sixty-eight thousand thirty-nine');\nINSERT INTO t1 VALUES(45, 12783, 'twelve thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(46, 95070, 'ninety-five thousand seventy');\nINSERT INTO t1 VALUES(47, 59393, 'fifty-nine thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(48, 26292, 'twenty-six thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(49, 66434, 'sixty-six thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(50, 32576, 'thirty-two thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(51, 15417, 'fifteen thousand four hundred seventeen');\nINSERT INTO t1 VALUES(52, 43974, 'forty-three thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(53, 81598, 'eighty-one thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(54, 78187, 'seventy-eight thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(55, 96628, 'ninety-six thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(56, 49006, 'forty-nine thousand six');\nINSERT INTO t1 VALUES(57, 12369, 'twelve thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(58, 64270, 'sixty-four thousand two hundred seventy');\nINSERT INTO t1 VALUES(59, 99754, 'ninety-nine thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(60, 94486, 'ninety-four thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(61, 58321, 'fifty-eight thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(62, 23071, 'twenty-three thousand seventy-one');\nINSERT INTO t1 VALUES(63, 42113, 'forty-two thousand one hundred thirteen');\nINSERT INTO t1 VALUES(64, 85726, 'eighty-five thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(65, 9111, 'nine thousand one hundred eleven');\nINSERT INTO t1 VALUES(66, 79820, 'seventy-nine thousand eight hundred twenty');\nINSERT INTO t1 VALUES(67, 84887, 'eighty-four thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(68, 86050, 'eighty-six thousand fifty');\nINSERT INTO t1 VALUES(69, 84385, 'eighty-four thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(70, 72979, 'seventy-two thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(71, 85471, 'eighty-five thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(72, 2460, 'two thousand four hundred sixty');\nINSERT INTO t1 VALUES(73, 50142, 'fifty thousand one hundred forty-two');\nINSERT INTO t1 VALUES(74, 41831, 'forty-one thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(75, 64085, 'sixty-four thousand eighty-five');\nINSERT INTO t1 VALUES(76, 50549, 'fifty thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(77, 8477, 'eight thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(78, 65346, 'sixty-five thousand three hundred forty-six');\nINSERT INTO t1 VALUES(79, 35600, 'thirty-five thousand six hundred');\nINSERT INTO t1 VALUES(80, 84509, 'eighty-four thousand five hundred nine');\nINSERT INTO t1 VALUES(81, 44272, 'forty-four thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(82, 40910, 'forty thousand nine hundred ten');\nINSERT INTO t1 VALUES(83, 68905, 'sixty-eight thousand nine hundred five');\nINSERT INTO t1 VALUES(84, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(85, 98614, 'ninety-eight thousand six hundred fourteen');\nINSERT INTO t1 VALUES(86, 66893, 'sixty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(87, 45259, 'forty-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(88, 45738, 'forty-five thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(89, 28790, 'twenty-eight thousand seven hundred ninety');\nINSERT INTO t1 VALUES(90, 15870, 'fifteen thousand eight hundred seventy');\nINSERT INTO t1 VALUES(91, 15553, 'fifteen thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(92, 18727, 'eighteen thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(93, 99780, 'ninety-nine thousand seven hundred eighty');\nINSERT INTO t1 VALUES(94, 20175, 'twenty thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(95, 37815, 'thirty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(96, 49076, 'forty-nine thousand seventy-six');\nINSERT INTO t1 VALUES(97, 91467, 'ninety-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(98, 12723, 'twelve thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(99, 20586, 'twenty thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(100, 98441, 'ninety-eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(101, 21269, 'twenty-one thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(102, 15851, 'fifteen thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(103, 23631, 'twenty-three thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(104, 37614, 'thirty-seven thousand six hundred fourteen');\nINSERT INTO t1 VALUES(105, 51841, 'fifty-one thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(106, 56415, 'fifty-six thousand four hundred fifteen');\nINSERT INTO t1 VALUES(107, 83629, 'eighty-three thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(108, 4149, 'four thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(109, 95878, 'ninety-five thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(110, 30052, 'thirty thousand fifty-two');\nINSERT INTO t1 VALUES(111, 42365, 'forty-two thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(112, 12243, 'twelve thousand two hundred forty-three');\nINSERT INTO t1 VALUES(113, 89704, 'eighty-nine thousand seven hundred four');\nINSERT INTO t1 VALUES(114, 15685, 'fifteen thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(115, 74876, 'seventy-four thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(116, 81982, 'eighty-one thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(117, 70408, 'seventy thousand four hundred eight');\nINSERT INTO t1 VALUES(118, 39118, 'thirty-nine thousand one hundred eighteen');\nINSERT INTO t1 VALUES(119, 7463, 'seven thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(120, 11126, 'eleven thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(121, 44536, 'forty-four thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(122, 23272, 'twenty-three thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(123, 62647, 'sixty-two thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(124, 77351, 'seventy-seven thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(125, 48704, 'forty-eight thousand seven hundred four');\nINSERT INTO t1 VALUES(126, 36835, 'thirty-six thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(127, 98373, 'ninety-eight thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(128, 40970, 'forty thousand nine hundred seventy');\nINSERT INTO t1 VALUES(129, 19215, 'nineteen thousand two hundred fifteen');\nINSERT INTO t1 VALUES(130, 82574, 'eighty-two thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(131, 71468, 'seventy-one thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(132, 48750, 'forty-eight thousand seven hundred fifty');\nINSERT INTO t1 VALUES(133, 53120, 'fifty-three thousand one hundred twenty');\nINSERT INTO t1 VALUES(134, 7206, 'seven thousand two hundred six');\nINSERT INTO t1 VALUES(135, 77245, 'seventy-seven thousand two hundred forty-five');\nINSERT INTO t1 VALUES(136, 27430, 'twenty-seven thousand four hundred thirty');\nINSERT INTO t1 VALUES(137, 38889, 'thirty-eight thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(138, 74000, 'seventy-four thousand');\nINSERT INTO t1 VALUES(139, 36740, 'thirty-six thousand seven hundred forty');\nINSERT INTO t1 VALUES(140, 66935, 'sixty-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(141, 37679, 'thirty-seven thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(142, 92517, 'ninety-two thousand five hundred seventeen');\nINSERT INTO t1 VALUES(143, 25292, 'twenty-five thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(144, 74710, 'seventy-four thousand seven hundred ten');\nINSERT INTO t1 VALUES(145, 88388, 'eighty-eight thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(146, 20074, 'twenty thousand seventy-four');\nINSERT INTO t1 VALUES(147, 17161, 'seventeen thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(148, 28976, 'twenty-eight thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(149, 52361, 'fifty-two thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(150, 25123, 'twenty-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(151, 40662, 'forty thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(152, 19958, 'nineteen thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(153, 14521, 'fourteen thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(154, 64516, 'sixty-four thousand five hundred sixteen');\nINSERT INTO t1 VALUES(155, 90893, 'ninety thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(156, 64617, 'sixty-four thousand six hundred seventeen');\nINSERT INTO t1 VALUES(157, 82000, 'eighty-two thousand');\nINSERT INTO t1 VALUES(158, 63053, 'sixty-three thousand fifty-three');\nINSERT INTO t1 VALUES(159, 23609, 'twenty-three thousand six hundred nine');\nINSERT INTO t1 VALUES(160, 37626, 'thirty-seven thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(161, 31628, 'thirty-one thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(162, 66488, 'sixty-six thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(163, 92157, 'ninety-two thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(164, 73816, 'seventy-three thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(165, 788, 'seven hundred eighty-eight');\nINSERT INTO t1 VALUES(166, 38704, 'thirty-eight thousand seven hundred four');\nINSERT INTO t1 VALUES(167, 13663, 'thirteen thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(168, 64363, 'sixty-four thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(169, 17421, 'seventeen thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(170, 24719, 'twenty-four thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(171, 74905, 'seventy-four thousand nine hundred five');\nINSERT INTO t1 VALUES(172, 57491, 'fifty-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(173, 83887, 'eighty-three thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(174, 53820, 'fifty-three thousand eight hundred twenty');\nINSERT INTO t1 VALUES(175, 99686, 'ninety-nine thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(176, 13566, 'thirteen thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(177, 84105, 'eighty-four thousand one hundred five');\nINSERT INTO t1 VALUES(178, 27865, 'twenty-seven thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(179, 65236, 'sixty-five thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(180, 68943, 'sixty-eight thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(181, 95512, 'ninety-five thousand five hundred twelve');\nINSERT INTO t1 VALUES(182, 37288, 'thirty-seven thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(183, 40598, 'forty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(184, 95736, 'ninety-five thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(185, 36298, 'thirty-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(186, 88598, 'eighty-eight thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(187, 43804, 'forty-three thousand eight hundred four');\nINSERT INTO t1 VALUES(188, 43530, 'forty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(189, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(190, 78630, 'seventy-eight thousand six hundred thirty');\nINSERT INTO t1 VALUES(191, 33724, 'thirty-three thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(192, 65897, 'sixty-five thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(193, 52823, 'fifty-two thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(194, 85968, 'eighty-five thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(195, 27380, 'twenty-seven thousand three hundred eighty');\nINSERT INTO t1 VALUES(196, 29347, 'twenty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(197, 40056, 'forty thousand fifty-six');\nINSERT INTO t1 VALUES(198, 95155, 'ninety-five thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(199, 5809, 'five thousand eight hundred nine');\nINSERT INTO t1 VALUES(200, 36227, 'thirty-six thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(201, 41328, 'forty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(202, 79952, 'seventy-nine thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(203, 4654, 'four thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(204, 72453, 'seventy-two thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(205, 50233, 'fifty thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(206, 40443, 'forty thousand four hundred forty-three');\nINSERT INTO t1 VALUES(207, 24410, 'twenty-four thousand four hundred ten');\nINSERT INTO t1 VALUES(208, 56928, 'fifty-six thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(209, 86493, 'eighty-six thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(210, 44012, 'forty-four thousand twelve');\nINSERT INTO t1 VALUES(211, 49968, 'forty-nine thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(212, 31076, 'thirty-one thousand seventy-six');\nINSERT INTO t1 VALUES(213, 11672, 'eleven thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(214, 49858, 'forty-nine thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(215, 91036, 'ninety-one thousand thirty-six');\nINSERT INTO t1 VALUES(216, 69225, 'sixty-nine thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(217, 72681, 'seventy-two thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(218, 88900, 'eighty-eight thousand nine hundred');\nINSERT INTO t1 VALUES(219, 23257, 'twenty-three thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(220, 69699, 'sixty-nine thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(221, 84544, 'eighty-four thousand five hundred forty-four');\nINSERT INTO t1 VALUES(222, 47903, 'forty-seven thousand nine hundred three');\nINSERT INTO t1 VALUES(223, 54368, 'fifty-four thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(224, 87640, 'eighty-seven thousand six hundred forty');\nINSERT INTO t1 VALUES(225, 85367, 'eighty-five thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(226, 26988, 'twenty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(227, 45133, 'forty-five thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(228, 37005, 'thirty-seven thousand five');\nINSERT INTO t1 VALUES(229, 95846, 'ninety-five thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(230, 53925, 'fifty-three thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(231, 70273, 'seventy thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(232, 75295, 'seventy-five thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(233, 43952, 'forty-three thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(234, 83266, 'eighty-three thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(235, 22861, 'twenty-two thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(236, 58701, 'fifty-eight thousand seven hundred one');\nINSERT INTO t1 VALUES(237, 81079, 'eighty-one thousand seventy-nine');\nINSERT INTO t1 VALUES(238, 58821, 'fifty-eight thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(239, 51566, 'fifty-one thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(240, 31581, 'thirty-one thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(241, 84682, 'eighty-four thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(242, 67541, 'sixty-seven thousand five hundred forty-one');\nINSERT INTO t1 VALUES(243, 98676, 'ninety-eight thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(244, 61174, 'sixty-one thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(245, 47444, 'forty-seven thousand four hundred forty-four');\nINSERT INTO t1 VALUES(246, 13077, 'thirteen thousand seventy-seven');\nINSERT INTO t1 VALUES(247, 33058, 'thirty-three thousand fifty-eight');\nINSERT INTO t1 VALUES(248, 18047, 'eighteen thousand forty-seven');\nINSERT INTO t1 VALUES(249, 24666, 'twenty-four thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(250, 85339, 'eighty-five thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(251, 27349, 'twenty-seven thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(252, 48646, 'forty-eight thousand six hundred forty-six');\nINSERT INTO t1 VALUES(253, 87697, 'eighty-seven thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(254, 59028, 'fifty-nine thousand twenty-eight');\nINSERT INTO t1 VALUES(255, 90200, 'ninety thousand two hundred');\nINSERT INTO t1 VALUES(256, 22076, 'twenty-two thousand seventy-six');\nINSERT INTO t1 VALUES(257, 96572, 'ninety-six thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(258, 81344, 'eighty-one thousand three hundred forty-four');\nINSERT INTO t1 VALUES(259, 60728, 'sixty thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(260, 42784, 'forty-two thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(261, 67944, 'sixty-seven thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(262, 89078, 'eighty-nine thousand seventy-eight');\nINSERT INTO t1 VALUES(263, 27721, 'twenty-seven thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(264, 30300, 'thirty thousand three hundred');\nINSERT INTO t1 VALUES(265, 86377, 'eighty-six thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(266, 2769, 'two thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(267, 348, 'three hundred forty-eight');\nINSERT INTO t1 VALUES(268, 15645, 'fifteen thousand six hundred forty-five');\nINSERT INTO t1 VALUES(269, 46745, 'forty-six thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(270, 98874, 'ninety-eight thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(271, 8959, 'eight thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(272, 4662, 'four thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(273, 3031, 'three thousand thirty-one');\nINSERT INTO t1 VALUES(274, 14795, 'fourteen thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(275, 89615, 'eighty-nine thousand six hundred fifteen');\nINSERT INTO t1 VALUES(276, 38151, 'thirty-eight thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(277, 9577, 'nine thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(278, 21690, 'twenty-one thousand six hundred ninety');\nINSERT INTO t1 VALUES(279, 95976, 'ninety-five thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(280, 13228, 'thirteen thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(281, 56557, 'fifty-six thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(282, 34745, 'thirty-four thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(283, 88947, 'eighty-eight thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(284, 53802, 'fifty-three thousand eight hundred two');\nINSERT INTO t1 VALUES(285, 99862, 'ninety-nine thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(286, 43756, 'forty-three thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(287, 45904, 'forty-five thousand nine hundred four');\nINSERT INTO t1 VALUES(288, 86592, 'eighty-six thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(289, 63957, 'sixty-three thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(290, 73086, 'seventy-three thousand eighty-six');\nINSERT INTO t1 VALUES(291, 64839, 'sixty-four thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(292, 85481, 'eighty-five thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(293, 60233, 'sixty thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(294, 77494, 'seventy-seven thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(295, 13588, 'thirteen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(296, 99448, 'ninety-nine thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(297, 12544, 'twelve thousand five hundred forty-four');\nINSERT INTO t1 VALUES(298, 86883, 'eighty-six thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(299, 25199, 'twenty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(300, 4490, 'four thousand four hundred ninety');\nINSERT INTO t1 VALUES(301, 80345, 'eighty thousand three hundred forty-five');\nINSERT INTO t1 VALUES(302, 26880, 'twenty-six thousand eight hundred eighty');\nINSERT INTO t1 VALUES(303, 78029, 'seventy-eight thousand twenty-nine');\nINSERT INTO t1 VALUES(304, 81387, 'eighty-one thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(305, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t1 VALUES(306, 97799, 'ninety-seven thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(307, 93677, 'ninety-three thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(308, 37416, 'thirty-seven thousand four hundred sixteen');\nINSERT INTO t1 VALUES(309, 86296, 'eighty-six thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(310, 73078, 'seventy-three thousand seventy-eight');\nINSERT INTO t1 VALUES(311, 16249, 'sixteen thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(312, 91237, 'ninety-one thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(313, 60649, 'sixty thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(314, 44095, 'forty-four thousand ninety-five');\nINSERT INTO t1 VALUES(315, 86807, 'eighty-six thousand eight hundred seven');\nINSERT INTO t1 VALUES(316, 39392, 'thirty-nine thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(317, 14697, 'fourteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(318, 12005, 'twelve thousand five');\nINSERT INTO t1 VALUES(319, 2472, 'two thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(320, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(321, 83552, 'eighty-three thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(322, 73455, 'seventy-three thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(323, 41303, 'forty-one thousand three hundred three');\nINSERT INTO t1 VALUES(324, 59226, 'fifty-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(325, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(326, 16794, 'sixteen thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(327, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(328, 16811, 'sixteen thousand eight hundred eleven');\nINSERT INTO t1 VALUES(329, 69921, 'sixty-nine thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(330, 2151, 'two thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(331, 60008, 'sixty thousand eight');\nINSERT INTO t1 VALUES(332, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t1 VALUES(333, 38119, 'thirty-eight thousand one hundred nineteen');\nINSERT INTO t1 VALUES(334, 93975, 'ninety-three thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(335, 50570, 'fifty thousand five hundred seventy');\nINSERT INTO t1 VALUES(336, 32897, 'thirty-two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(337, 89603, 'eighty-nine thousand six hundred three');\nINSERT INTO t1 VALUES(338, 63077, 'sixty-three thousand seventy-seven');\nINSERT INTO t1 VALUES(339, 54175, 'fifty-four thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(340, 76056, 'seventy-six thousand fifty-six');\nINSERT INTO t1 VALUES(341, 88771, 'eighty-eight thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(342, 82397, 'eighty-two thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(343, 68160, 'sixty-eight thousand one hundred sixty');\nINSERT INTO t1 VALUES(344, 73036, 'seventy-three thousand thirty-six');\nINSERT INTO t1 VALUES(345, 33628, 'thirty-three thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(346, 21487, 'twenty-one thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(347, 28885, 'twenty-eight thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(348, 15628, 'fifteen thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(349, 79726, 'seventy-nine thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(350, 58705, 'fifty-eight thousand seven hundred five');\nINSERT INTO t1 VALUES(351, 25717, 'twenty-five thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(352, 69374, 'sixty-nine thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(353, 2334, 'two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(354, 99223, 'ninety-nine thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(355, 80823, 'eighty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(356, 80820, 'eighty thousand eight hundred twenty');\nINSERT INTO t1 VALUES(357, 70859, 'seventy thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(358, 89991, 'eighty-nine thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(359, 35796, 'thirty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(360, 30262, 'thirty thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(361, 96721, 'ninety-six thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(362, 84626, 'eighty-four thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(363, 83672, 'eighty-three thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(364, 84842, 'eighty-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(365, 79746, 'seventy-nine thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(366, 30735, 'thirty thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(367, 39894, 'thirty-nine thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(368, 42943, 'forty-two thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(369, 78551, 'seventy-eight thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(370, 22890, 'twenty-two thousand eight hundred ninety');\nINSERT INTO t1 VALUES(371, 26704, 'twenty-six thousand seven hundred four');\nINSERT INTO t1 VALUES(372, 13502, 'thirteen thousand five hundred two');\nINSERT INTO t1 VALUES(373, 52651, 'fifty-two thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(374, 85254, 'eighty-five thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(375, 38872, 'thirty-eight thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(376, 47510, 'forty-seven thousand five hundred ten');\nINSERT INTO t1 VALUES(377, 60713, 'sixty thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(378, 22697, 'twenty-two thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(379, 16563, 'sixteen thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(380, 62479, 'sixty-two thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(381, 16641, 'sixteen thousand six hundred forty-one');\nINSERT INTO t1 VALUES(382, 26910, 'twenty-six thousand nine hundred ten');\nINSERT INTO t1 VALUES(383, 37857, 'thirty-seven thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(384, 26669, 'twenty-six thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(385, 30689, 'thirty thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(386, 85353, 'eighty-five thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(387, 35963, 'thirty-five thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(388, 33507, 'thirty-three thousand five hundred seven');\nINSERT INTO t1 VALUES(389, 17324, 'seventeen thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(390, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(391, 66620, 'sixty-six thousand six hundred twenty');\nINSERT INTO t1 VALUES(392, 76756, 'seventy-six thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(393, 55018, 'fifty-five thousand eighteen');\nINSERT INTO t1 VALUES(394, 51718, 'fifty-one thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(395, 51859, 'fifty-one thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(396, 3087, 'three thousand eighty-seven');\nINSERT INTO t1 VALUES(397, 79425, 'seventy-nine thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(398, 75402, 'seventy-five thousand four hundred two');\nINSERT INTO t1 VALUES(399, 60540, 'sixty thousand five hundred forty');\nINSERT INTO t1 VALUES(400, 39580, 'thirty-nine thousand five hundred eighty');\nINSERT INTO t1 VALUES(401, 25385, 'twenty-five thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(402, 54214, 'fifty-four thousand two hundred fourteen');\nINSERT INTO t1 VALUES(403, 97098, 'ninety-seven thousand ninety-eight');\nINSERT INTO t1 VALUES(404, 16077, 'sixteen thousand seventy-seven');\nINSERT INTO t1 VALUES(405, 58284, 'fifty-eight thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(406, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(407, 7212, 'seven thousand two hundred twelve');\nINSERT INTO t1 VALUES(408, 71834, 'seventy-one thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(409, 96037, 'ninety-six thousand thirty-seven');\nINSERT INTO t1 VALUES(410, 86119, 'eighty-six thousand one hundred nineteen');\nINSERT INTO t1 VALUES(411, 64344, 'sixty-four thousand three hundred forty-four');\nINSERT INTO t1 VALUES(412, 27415, 'twenty-seven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(413, 28712, 'twenty-eight thousand seven hundred twelve');\nINSERT INTO t1 VALUES(414, 76386, 'seventy-six thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(415, 60160, 'sixty thousand one hundred sixty');\nINSERT INTO t1 VALUES(416, 20616, 'twenty thousand six hundred sixteen');\nINSERT INTO t1 VALUES(417, 68129, 'sixty-eight thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(418, 39355, 'thirty-nine thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(419, 13220, 'thirteen thousand two hundred twenty');\nINSERT INTO t1 VALUES(420, 48729, 'forty-eight thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(421, 55172, 'fifty-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(422, 11682, 'eleven thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(423, 99481, 'ninety-nine thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(424, 15130, 'fifteen thousand one hundred thirty');\nINSERT INTO t1 VALUES(425, 45552, 'forty-five thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(426, 17206, 'seventeen thousand two hundred six');\nINSERT INTO t1 VALUES(427, 715, 'seven hundred fifteen');\nINSERT INTO t1 VALUES(428, 48541, 'forty-eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(429, 52774, 'fifty-two thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(430, 55686, 'fifty-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(431, 32891, 'thirty-two thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(432, 41219, 'forty-one thousand two hundred nineteen');\nINSERT INTO t1 VALUES(433, 8989, 'eight thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(434, 66011, 'sixty-six thousand eleven');\nINSERT INTO t1 VALUES(435, 81080, 'eighty-one thousand eighty');\nINSERT INTO t1 VALUES(436, 62563, 'sixty-two thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(437, 37710, 'thirty-seven thousand seven hundred ten');\nINSERT INTO t1 VALUES(438, 80535, 'eighty thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(439, 49267, 'forty-nine thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(440, 44842, 'forty-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(441, 63606, 'sixty-three thousand six hundred six');\nINSERT INTO t1 VALUES(442, 18279, 'eighteen thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(443, 94697, 'ninety-four thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(444, 38895, 'thirty-eight thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(445, 98821, 'ninety-eight thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(446, 10495, 'ten thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(447, 10575, 'ten thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(448, 43738, 'forty-three thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(449, 73200, 'seventy-three thousand two hundred');\nINSERT INTO t1 VALUES(450, 64676, 'sixty-four thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(451, 40917, 'forty thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(452, 68543, 'sixty-eight thousand five hundred forty-three');\nINSERT INTO t1 VALUES(453, 43751, 'forty-three thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(454, 31377, 'thirty-one thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(455, 31155, 'thirty-one thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(456, 4541, 'four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(457, 47686, 'forty-seven thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(458, 1589, 'one thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(459, 79872, 'seventy-nine thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(460, 72459, 'seventy-two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(461, 92986, 'ninety-two thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(462, 14387, 'fourteen thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(463, 76933, 'seventy-six thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(464, 75622, 'seventy-five thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(465, 80138, 'eighty thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(466, 91072, 'ninety-one thousand seventy-two');\nINSERT INTO t1 VALUES(467, 92256, 'ninety-two thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(468, 53384, 'fifty-three thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(469, 19663, 'nineteen thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(470, 55777, 'fifty-five thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(471, 19695, 'nineteen thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(472, 51634, 'fifty-one thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(473, 26528, 'twenty-six thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(474, 47875, 'forty-seven thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(475, 9239, 'nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(476, 47218, 'forty-seven thousand two hundred eighteen');\nINSERT INTO t1 VALUES(477, 93779, 'ninety-three thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(478, 2660, 'two thousand six hundred sixty');\nINSERT INTO t1 VALUES(479, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t1 VALUES(480, 70348, 'seventy thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(481, 66034, 'sixty-six thousand thirty-four');\nINSERT INTO t1 VALUES(482, 37544, 'thirty-seven thousand five hundred forty-four');\nINSERT INTO t1 VALUES(483, 34129, 'thirty-four thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(484, 9952, 'nine thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(485, 65654, 'sixty-five thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(486, 81512, 'eighty-one thousand five hundred twelve');\nINSERT INTO t1 VALUES(487, 54746, 'fifty-four thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(488, 64936, 'sixty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(489, 67581, 'sixty-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(490, 83118, 'eighty-three thousand one hundred eighteen');\nINSERT INTO t1 VALUES(491, 38823, 'thirty-eight thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(492, 7042, 'seven thousand forty-two');\nINSERT INTO t1 VALUES(493, 11522, 'eleven thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(494, 8441, 'eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(495, 5120, 'five thousand one hundred twenty');\nINSERT INTO t1 VALUES(496, 96272, 'ninety-six thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(497, 53513, 'fifty-three thousand five hundred thirteen');\nINSERT INTO t1 VALUES(498, 33940, 'thirty-three thousand nine hundred forty');\nINSERT INTO t1 VALUES(499, 73734, 'seventy-three thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(500, 16177, 'sixteen thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(501, 86036, 'eighty-six thousand thirty-six');\nINSERT INTO t1 VALUES(502, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t1 VALUES(503, 16316, 'sixteen thousand three hundred sixteen');\nINSERT INTO t1 VALUES(504, 28560, 'twenty-eight thousand five hundred sixty');\nINSERT INTO t1 VALUES(505, 85929, 'eighty-five thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(506, 18503, 'eighteen thousand five hundred three');\nINSERT INTO t1 VALUES(507, 72281, 'seventy-two thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(508, 58618, 'fifty-eight thousand six hundred eighteen');\nINSERT INTO t1 VALUES(509, 7853, 'seven thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(510, 29964, 'twenty-nine thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(511, 24561, 'twenty-four thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(512, 95025, 'ninety-five thousand twenty-five');\nINSERT INTO t1 VALUES(513, 28269, 'twenty-eight thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(514, 8823, 'eight thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(515, 50469, 'fifty thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(516, 13585, 'thirteen thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(517, 25357, 'twenty-five thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(518, 78916, 'seventy-eight thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(519, 16824, 'sixteen thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(520, 56142, 'fifty-six thousand one hundred forty-two');\nINSERT INTO t1 VALUES(521, 56019, 'fifty-six thousand nineteen');\nINSERT INTO t1 VALUES(522, 43, 'forty-three');\nINSERT INTO t1 VALUES(523, 2397, 'two thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(524, 74672, 'seventy-four thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(525, 23212, 'twenty-three thousand two hundred twelve');\nINSERT INTO t1 VALUES(526, 86249, 'eighty-six thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(527, 13881, 'thirteen thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(528, 82726, 'eighty-two thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(529, 52533, 'fifty-two thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(530, 54536, 'fifty-four thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(531, 56314, 'fifty-six thousand three hundred fourteen');\nINSERT INTO t1 VALUES(532, 26385, 'twenty-six thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(533, 13221, 'thirteen thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(534, 9924, 'nine thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(535, 17334, 'seventeen thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(536, 42403, 'forty-two thousand four hundred three');\nINSERT INTO t1 VALUES(537, 94782, 'ninety-four thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(538, 36047, 'thirty-six thousand forty-seven');\nINSERT INTO t1 VALUES(539, 91977, 'ninety-one thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(540, 85296, 'eighty-five thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(541, 36403, 'thirty-six thousand four hundred three');\nINSERT INTO t1 VALUES(542, 45820, 'forty-five thousand eight hundred twenty');\nINSERT INTO t1 VALUES(543, 53225, 'fifty-three thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(544, 30463, 'thirty thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(545, 44203, 'forty-four thousand two hundred three');\nINSERT INTO t1 VALUES(546, 20268, 'twenty thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(547, 32351, 'thirty-two thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(548, 2830, 'two thousand eight hundred thirty');\nINSERT INTO t1 VALUES(549, 50370, 'fifty thousand three hundred seventy');\nINSERT INTO t1 VALUES(550, 19133, 'nineteen thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(551, 38784, 'thirty-eight thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(552, 97703, 'ninety-seven thousand seven hundred three');\nINSERT INTO t1 VALUES(553, 51086, 'fifty-one thousand eighty-six');\nINSERT INTO t1 VALUES(554, 86768, 'eighty-six thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(555, 11300, 'eleven thousand three hundred');\nINSERT INTO t1 VALUES(556, 46246, 'forty-six thousand two hundred forty-six');\nINSERT INTO t1 VALUES(557, 61115, 'sixty-one thousand one hundred fifteen');\nINSERT INTO t1 VALUES(558, 83157, 'eighty-three thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(559, 6944, 'six thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(560, 44423, 'forty-four thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(561, 76382, 'seventy-six thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(562, 45914, 'forty-five thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(563, 31095, 'thirty-one thousand ninety-five');\nINSERT INTO t1 VALUES(564, 82598, 'eighty-two thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(565, 50503, 'fifty thousand five hundred three');\nINSERT INTO t1 VALUES(566, 73840, 'seventy-three thousand eight hundred forty');\nINSERT INTO t1 VALUES(567, 93509, 'ninety-three thousand five hundred nine');\nINSERT INTO t1 VALUES(568, 14384, 'fourteen thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(569, 78275, 'seventy-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(570, 41077, 'forty-one thousand seventy-seven');\nINSERT INTO t1 VALUES(571, 78723, 'seventy-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(572, 61236, 'sixty-one thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(573, 51876, 'fifty-one thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(574, 34937, 'thirty-four thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(575, 61033, 'sixty-one thousand thirty-three');\nINSERT INTO t1 VALUES(576, 99302, 'ninety-nine thousand three hundred two');\nINSERT INTO t1 VALUES(577, 38302, 'thirty-eight thousand three hundred two');\nINSERT INTO t1 VALUES(578, 72896, 'seventy-two thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(579, 36628, 'thirty-six thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(580, 42704, 'forty-two thousand seven hundred four');\nINSERT INTO t1 VALUES(581, 64936, 'sixty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(582, 89893, 'eighty-nine thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(583, 5897, 'five thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(584, 83645, 'eighty-three thousand six hundred forty-five');\nINSERT INTO t1 VALUES(585, 22698, 'twenty-two thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(586, 45782, 'forty-five thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(587, 69956, 'sixty-nine thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(588, 98635, 'ninety-eight thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(589, 91767, 'ninety-one thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(590, 43906, 'forty-three thousand nine hundred six');\nINSERT INTO t1 VALUES(591, 79011, 'seventy-nine thousand eleven');\nINSERT INTO t1 VALUES(592, 39700, 'thirty-nine thousand seven hundred');\nINSERT INTO t1 VALUES(593, 87166, 'eighty-seven thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(594, 48372, 'forty-eight thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(595, 8964, 'eight thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(596, 40048, 'forty thousand forty-eight');\nINSERT INTO t1 VALUES(597, 46283, 'forty-six thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(598, 40794, 'forty thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(599, 64970, 'sixty-four thousand nine hundred seventy');\nINSERT INTO t1 VALUES(600, 55199, 'fifty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(601, 30775, 'thirty thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(602, 25746, 'twenty-five thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(603, 85247, 'eighty-five thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(604, 38705, 'thirty-eight thousand seven hundred five');\nINSERT INTO t1 VALUES(605, 93520, 'ninety-three thousand five hundred twenty');\nINSERT INTO t1 VALUES(606, 49552, 'forty-nine thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(607, 36015, 'thirty-six thousand fifteen');\nINSERT INTO t1 VALUES(608, 68523, 'sixty-eight thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(609, 38011, 'thirty-eight thousand eleven');\nINSERT INTO t1 VALUES(610, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(611, 5878, 'five thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(612, 4661, 'four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(613, 93542, 'ninety-three thousand five hundred forty-two');\nINSERT INTO t1 VALUES(614, 98403, 'ninety-eight thousand four hundred three');\nINSERT INTO t1 VALUES(615, 72480, 'seventy-two thousand four hundred eighty');\nINSERT INTO t1 VALUES(616, 44651, 'forty-four thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(617, 86431, 'eighty-six thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(618, 64298, 'sixty-four thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(619, 25967, 'twenty-five thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(620, 69815, 'sixty-nine thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(621, 81744, 'eighty-one thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(622, 7391, 'seven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(623, 82812, 'eighty-two thousand eight hundred twelve');\nINSERT INTO t1 VALUES(624, 74354, 'seventy-four thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(625, 25717, 'twenty-five thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(626, 4708, 'four thousand seven hundred eight');\nINSERT INTO t1 VALUES(627, 68328, 'sixty-eight thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(628, 9503, 'nine thousand five hundred three');\nINSERT INTO t1 VALUES(629, 13169, 'thirteen thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(630, 45277, 'forty-five thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(631, 25998, 'twenty-five thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(632, 79413, 'seventy-nine thousand four hundred thirteen');\nINSERT INTO t1 VALUES(633, 48286, 'forty-eight thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(634, 51960, 'fifty-one thousand nine hundred sixty');\nINSERT INTO t1 VALUES(635, 85401, 'eighty-five thousand four hundred one');\nINSERT INTO t1 VALUES(636, 5474, 'five thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(637, 51779, 'fifty-one thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(638, 79740, 'seventy-nine thousand seven hundred forty');\nINSERT INTO t1 VALUES(639, 21339, 'twenty-one thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(640, 997, 'nine hundred ninety-seven');\nINSERT INTO t1 VALUES(641, 80349, 'eighty thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(642, 96611, 'ninety-six thousand six hundred eleven');\nINSERT INTO t1 VALUES(643, 43066, 'forty-three thousand sixty-six');\nINSERT INTO t1 VALUES(644, 22570, 'twenty-two thousand five hundred seventy');\nINSERT INTO t1 VALUES(645, 80297, 'eighty thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(646, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(647, 2557, 'two thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(648, 79141, 'seventy-nine thousand one hundred forty-one');\nINSERT INTO t1 VALUES(649, 78860, 'seventy-eight thousand eight hundred sixty');\nINSERT INTO t1 VALUES(650, 91460, 'ninety-one thousand four hundred sixty');\nINSERT INTO t1 VALUES(651, 83788, 'eighty-three thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(652, 52289, 'fifty-two thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(653, 59404, 'fifty-nine thousand four hundred four');\nINSERT INTO t1 VALUES(654, 71309, 'seventy-one thousand three hundred nine');\nINSERT INTO t1 VALUES(655, 50204, 'fifty thousand two hundred four');\nINSERT INTO t1 VALUES(656, 4763, 'four thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(657, 29232, 'twenty-nine thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(658, 89333, 'eighty-nine thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(659, 64784, 'sixty-four thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(660, 49553, 'forty-nine thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(661, 90976, 'ninety thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(662, 83265, 'eighty-three thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(663, 25572, 'twenty-five thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(664, 24938, 'twenty-four thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(665, 13432, 'thirteen thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(666, 34300, 'thirty-four thousand three hundred');\nINSERT INTO t1 VALUES(667, 33811, 'thirty-three thousand eight hundred eleven');\nINSERT INTO t1 VALUES(668, 50937, 'fifty thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(669, 74146, 'seventy-four thousand one hundred forty-six');\nINSERT INTO t1 VALUES(670, 69446, 'sixty-nine thousand four hundred forty-six');\nINSERT INTO t1 VALUES(671, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(672, 96777, 'ninety-six thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(673, 18023, 'eighteen thousand twenty-three');\nINSERT INTO t1 VALUES(674, 92904, 'ninety-two thousand nine hundred four');\nINSERT INTO t1 VALUES(675, 59712, 'fifty-nine thousand seven hundred twelve');\nINSERT INTO t1 VALUES(676, 36037, 'thirty-six thousand thirty-seven');\nINSERT INTO t1 VALUES(677, 48997, 'forty-eight thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(678, 60218, 'sixty thousand two hundred eighteen');\nINSERT INTO t1 VALUES(679, 82108, 'eighty-two thousand one hundred eight');\nINSERT INTO t1 VALUES(680, 69426, 'sixty-nine thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(681, 61325, 'sixty-one thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(682, 11668, 'eleven thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(683, 69572, 'sixty-nine thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(684, 8565, 'eight thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(685, 27600, 'twenty-seven thousand six hundred');\nINSERT INTO t1 VALUES(686, 45325, 'forty-five thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(687, 39031, 'thirty-nine thousand thirty-one');\nINSERT INTO t1 VALUES(688, 63396, 'sixty-three thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(689, 67243, 'sixty-seven thousand two hundred forty-three');\nINSERT INTO t1 VALUES(690, 64709, 'sixty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(691, 16998, 'sixteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(692, 8963, 'eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(693, 13668, 'thirteen thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(694, 67794, 'sixty-seven thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(695, 8764, 'eight thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(696, 13190, 'thirteen thousand one hundred ninety');\nINSERT INTO t1 VALUES(697, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(698, 51903, 'fifty-one thousand nine hundred three');\nINSERT INTO t1 VALUES(699, 36798, 'thirty-six thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(700, 72372, 'seventy-two thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(701, 14647, 'fourteen thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(702, 68723, 'sixty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(703, 35989, 'thirty-five thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(704, 90077, 'ninety thousand seventy-seven');\nINSERT INTO t1 VALUES(705, 38750, 'thirty-eight thousand seven hundred fifty');\nINSERT INTO t1 VALUES(706, 98516, 'ninety-eight thousand five hundred sixteen');\nINSERT INTO t1 VALUES(707, 57950, 'fifty-seven thousand nine hundred fifty');\nINSERT INTO t1 VALUES(708, 21024, 'twenty-one thousand twenty-four');\nINSERT INTO t1 VALUES(709, 86474, 'eighty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(710, 93968, 'ninety-three thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(711, 55883, 'fifty-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(712, 93848, 'ninety-three thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(713, 34206, 'thirty-four thousand two hundred six');\nINSERT INTO t1 VALUES(714, 46397, 'forty-six thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(715, 59959, 'fifty-nine thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(716, 12097, 'twelve thousand ninety-seven');\nINSERT INTO t1 VALUES(717, 7797, 'seven thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(718, 70674, 'seventy thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(719, 85402, 'eighty-five thousand four hundred two');\nINSERT INTO t1 VALUES(720, 96486, 'ninety-six thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(721, 32790, 'thirty-two thousand seven hundred ninety');\nINSERT INTO t1 VALUES(722, 98920, 'ninety-eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(723, 35357, 'thirty-five thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(724, 41402, 'forty-one thousand four hundred two');\nINSERT INTO t1 VALUES(725, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(726, 30762, 'thirty thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(727, 32850, 'thirty-two thousand eight hundred fifty');\nINSERT INTO t1 VALUES(728, 646, 'six hundred forty-six');\nINSERT INTO t1 VALUES(729, 13543, 'thirteen thousand five hundred forty-three');\nINSERT INTO t1 VALUES(730, 46958, 'forty-six thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(731, 33021, 'thirty-three thousand twenty-one');\nINSERT INTO t1 VALUES(732, 66196, 'sixty-six thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(733, 13354, 'thirteen thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(734, 10676, 'ten thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(735, 73514, 'seventy-three thousand five hundred fourteen');\nINSERT INTO t1 VALUES(736, 92566, 'ninety-two thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(737, 64703, 'sixty-four thousand seven hundred three');\nINSERT INTO t1 VALUES(738, 47991, 'forty-seven thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(739, 27244, 'twenty-seven thousand two hundred forty-four');\nINSERT INTO t1 VALUES(740, 64520, 'sixty-four thousand five hundred twenty');\nINSERT INTO t1 VALUES(741, 69103, 'sixty-nine thousand one hundred three');\nINSERT INTO t1 VALUES(742, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t1 VALUES(743, 16922, 'sixteen thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(744, 17346, 'seventeen thousand three hundred forty-six');\nINSERT INTO t1 VALUES(745, 71356, 'seventy-one thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(746, 13993, 'thirteen thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(747, 93096, 'ninety-three thousand ninety-six');\nINSERT INTO t1 VALUES(748, 83864, 'eighty-three thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(749, 56082, 'fifty-six thousand eighty-two');\nINSERT INTO t1 VALUES(750, 71357, 'seventy-one thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(751, 20820, 'twenty thousand eight hundred twenty');\nINSERT INTO t1 VALUES(752, 35212, 'thirty-five thousand two hundred twelve');\nINSERT INTO t1 VALUES(753, 36869, 'thirty-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(754, 98308, 'ninety-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(755, 28534, 'twenty-eight thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(756, 13449, 'thirteen thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(757, 50790, 'fifty thousand seven hundred ninety');\nINSERT INTO t1 VALUES(758, 72079, 'seventy-two thousand seventy-nine');\nINSERT INTO t1 VALUES(759, 50542, 'fifty thousand five hundred forty-two');\nINSERT INTO t1 VALUES(760, 93906, 'ninety-three thousand nine hundred six');\nINSERT INTO t1 VALUES(761, 40114, 'forty thousand one hundred fourteen');\nINSERT INTO t1 VALUES(762, 7438, 'seven thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(763, 35356, 'thirty-five thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(764, 5235, 'five thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(765, 89549, 'eighty-nine thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(766, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(767, 1744, 'one thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(768, 52593, 'fifty-two thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(769, 60964, 'sixty thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(770, 33872, 'thirty-three thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(771, 38564, 'thirty-eight thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(772, 51829, 'fifty-one thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(773, 45497, 'forty-five thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(774, 39019, 'thirty-nine thousand nineteen');\nINSERT INTO t1 VALUES(775, 70227, 'seventy thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(776, 60554, 'sixty thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(777, 61434, 'sixty-one thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(778, 73964, 'seventy-three thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(779, 97432, 'ninety-seven thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(780, 36245, 'thirty-six thousand two hundred forty-five');\nINSERT INTO t1 VALUES(781, 56133, 'fifty-six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(782, 92245, 'ninety-two thousand two hundred forty-five');\nINSERT INTO t1 VALUES(783, 53788, 'fifty-three thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(784, 50188, 'fifty thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(785, 56809, 'fifty-six thousand eight hundred nine');\nINSERT INTO t1 VALUES(786, 36260, 'thirty-six thousand two hundred sixty');\nINSERT INTO t1 VALUES(787, 95979, 'ninety-five thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(788, 9796, 'nine thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(789, 44337, 'forty-four thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(790, 66951, 'sixty-six thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(791, 65628, 'sixty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(792, 25087, 'twenty-five thousand eighty-seven');\nINSERT INTO t1 VALUES(793, 81266, 'eighty-one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(794, 39828, 'thirty-nine thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(795, 23770, 'twenty-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(796, 53435, 'fifty-three thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(797, 7766, 'seven thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(798, 32226, 'thirty-two thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(799, 974, 'nine hundred seventy-four');\nINSERT INTO t1 VALUES(800, 1063, 'one thousand sixty-three');\nINSERT INTO t1 VALUES(801, 9700, 'nine thousand seven hundred');\nINSERT INTO t1 VALUES(802, 49439, 'forty-nine thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(803, 6791, 'six thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(804, 17430, 'seventeen thousand four hundred thirty');\nINSERT INTO t1 VALUES(805, 19477, 'nineteen thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(806, 53160, 'fifty-three thousand one hundred sixty');\nINSERT INTO t1 VALUES(807, 73531, 'seventy-three thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(808, 41027, 'forty-one thousand twenty-seven');\nINSERT INTO t1 VALUES(809, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(810, 3779, 'three thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(811, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(812, 28200, 'twenty-eight thousand two hundred');\nINSERT INTO t1 VALUES(813, 34574, 'thirty-four thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(814, 21899, 'twenty-one thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(815, 26123, 'twenty-six thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(816, 54056, 'fifty-four thousand fifty-six');\nINSERT INTO t1 VALUES(817, 51709, 'fifty-one thousand seven hundred nine');\nINSERT INTO t1 VALUES(818, 83040, 'eighty-three thousand forty');\nINSERT INTO t1 VALUES(819, 51595, 'fifty-one thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(820, 47567, 'forty-seven thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(821, 79810, 'seventy-nine thousand eight hundred ten');\nINSERT INTO t1 VALUES(822, 95156, 'ninety-five thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(823, 21070, 'twenty-one thousand seventy');\nINSERT INTO t1 VALUES(824, 21005, 'twenty-one thousand five');\nINSERT INTO t1 VALUES(825, 62049, 'sixty-two thousand forty-nine');\nINSERT INTO t1 VALUES(826, 40500, 'forty thousand five hundred');\nINSERT INTO t1 VALUES(827, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(828, 97050, 'ninety-seven thousand fifty');\nINSERT INTO t1 VALUES(829, 1342, 'one thousand three hundred forty-two');\nINSERT INTO t1 VALUES(830, 70601, 'seventy thousand six hundred one');\nINSERT INTO t1 VALUES(831, 47967, 'forty-seven thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(832, 17857, 'seventeen thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(833, 29476, 'twenty-nine thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(834, 71793, 'seventy-one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(835, 90082, 'ninety thousand eighty-two');\nINSERT INTO t1 VALUES(836, 71437, 'seventy-one thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(837, 83075, 'eighty-three thousand seventy-five');\nINSERT INTO t1 VALUES(838, 76758, 'seventy-six thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(839, 64646, 'sixty-four thousand six hundred forty-six');\nINSERT INTO t1 VALUES(840, 3252, 'three thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(841, 40949, 'forty thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(842, 74652, 'seventy-four thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(843, 82824, 'eighty-two thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(844, 25339, 'twenty-five thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(845, 89079, 'eighty-nine thousand seventy-nine');\nINSERT INTO t1 VALUES(846, 31116, 'thirty-one thousand one hundred sixteen');\nINSERT INTO t1 VALUES(847, 60449, 'sixty thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(848, 54968, 'fifty-four thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(849, 82844, 'eighty-two thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(850, 51994, 'fifty-one thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(851, 92512, 'ninety-two thousand five hundred twelve');\nINSERT INTO t1 VALUES(852, 84151, 'eighty-four thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(853, 94764, 'ninety-four thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(854, 1566, 'one thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(855, 40287, 'forty thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(856, 87550, 'eighty-seven thousand five hundred fifty');\nINSERT INTO t1 VALUES(857, 85822, 'eighty-five thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(858, 50252, 'fifty thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(859, 26462, 'twenty-six thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(860, 43816, 'forty-three thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(861, 4236, 'four thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(862, 46969, 'forty-six thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(863, 10906, 'ten thousand nine hundred six');\nINSERT INTO t1 VALUES(864, 59491, 'fifty-nine thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(865, 41550, 'forty-one thousand five hundred fifty');\nINSERT INTO t1 VALUES(866, 6385, 'six thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(867, 45666, 'forty-five thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(868, 31625, 'thirty-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(869, 75575, 'seventy-five thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(870, 74483, 'seventy-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(871, 65764, 'sixty-five thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(872, 67932, 'sixty-seven thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(873, 48500, 'forty-eight thousand five hundred');\nINSERT INTO t1 VALUES(874, 79822, 'seventy-nine thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(875, 93046, 'ninety-three thousand forty-six');\nINSERT INTO t1 VALUES(876, 59820, 'fifty-nine thousand eight hundred twenty');\nINSERT INTO t1 VALUES(877, 95523, 'ninety-five thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(878, 87558, 'eighty-seven thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(879, 16264, 'sixteen thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(880, 82456, 'eighty-two thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(881, 32313, 'thirty-two thousand three hundred thirteen');\nINSERT INTO t1 VALUES(882, 43641, 'forty-three thousand six hundred forty-one');\nINSERT INTO t1 VALUES(883, 79366, 'seventy-nine thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(884, 414, 'four hundred fourteen');\nINSERT INTO t1 VALUES(885, 24604, 'twenty-four thousand six hundred four');\nINSERT INTO t1 VALUES(886, 58904, 'fifty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(887, 55867, 'fifty-five thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(888, 38123, 'thirty-eight thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(889, 69259, 'sixty-nine thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(890, 16693, 'sixteen thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(891, 41404, 'forty-one thousand four hundred four');\nINSERT INTO t1 VALUES(892, 51409, 'fifty-one thousand four hundred nine');\nINSERT INTO t1 VALUES(893, 48734, 'forty-eight thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(894, 14495, 'fourteen thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(895, 40190, 'forty thousand one hundred ninety');\nINSERT INTO t1 VALUES(896, 28596, 'twenty-eight thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(897, 75923, 'seventy-five thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(898, 40860, 'forty thousand eight hundred sixty');\nINSERT INTO t1 VALUES(899, 88234, 'eighty-eight thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(900, 9134, 'nine thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(901, 68814, 'sixty-eight thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(902, 57773, 'fifty-seven thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(903, 7138, 'seven thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(904, 98866, 'ninety-eight thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(905, 1995, 'one thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(906, 45812, 'forty-five thousand eight hundred twelve');\nINSERT INTO t1 VALUES(907, 89770, 'eighty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(908, 67915, 'sixty-seven thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(909, 84256, 'eighty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(910, 76864, 'seventy-six thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(911, 63411, 'sixty-three thousand four hundred eleven');\nINSERT INTO t1 VALUES(912, 23383, 'twenty-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(913, 7053, 'seven thousand fifty-three');\nINSERT INTO t1 VALUES(914, 9991, 'nine thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(915, 6123, 'six thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(916, 66232, 'sixty-six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(917, 82454, 'eighty-two thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(918, 34767, 'thirty-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(919, 56716, 'fifty-six thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(920, 7389, 'seven thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(921, 4115, 'four thousand one hundred fifteen');\nINSERT INTO t1 VALUES(922, 66506, 'sixty-six thousand five hundred six');\nINSERT INTO t1 VALUES(923, 13775, 'thirteen thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(924, 95452, 'ninety-five thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(925, 34817, 'thirty-four thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(926, 30686, 'thirty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(927, 84709, 'eighty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(928, 69884, 'sixty-nine thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(929, 71066, 'seventy-one thousand sixty-six');\nINSERT INTO t1 VALUES(930, 33781, 'thirty-three thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(931, 4034, 'four thousand thirty-four');\nINSERT INTO t1 VALUES(932, 95633, 'ninety-five thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(933, 62549, 'sixty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(934, 68079, 'sixty-eight thousand seventy-nine');\nINSERT INTO t1 VALUES(935, 65589, 'sixty-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(936, 80329, 'eighty thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(937, 20603, 'twenty thousand six hundred three');\nINSERT INTO t1 VALUES(938, 27765, 'twenty-seven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(939, 96323, 'ninety-six thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(940, 31742, 'thirty-one thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(941, 90777, 'ninety thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(942, 57423, 'fifty-seven thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(943, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(944, 47411, 'forty-seven thousand four hundred eleven');\nINSERT INTO t1 VALUES(945, 42419, 'forty-two thousand four hundred nineteen');\nINSERT INTO t1 VALUES(946, 57111, 'fifty-seven thousand one hundred eleven');\nINSERT INTO t1 VALUES(947, 27962, 'twenty-seven thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(948, 78437, 'seventy-eight thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(949, 40388, 'forty thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(950, 90827, 'ninety thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(951, 82664, 'eighty-two thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(952, 54684, 'fifty-four thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(953, 67228, 'sixty-seven thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(954, 1266, 'one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(955, 1305, 'one thousand three hundred five');\nINSERT INTO t1 VALUES(956, 61947, 'sixty-one thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(957, 69565, 'sixty-nine thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(958, 81703, 'eighty-one thousand seven hundred three');\nINSERT INTO t1 VALUES(959, 8201, 'eight thousand two hundred one');\nINSERT INTO t1 VALUES(960, 13521, 'thirteen thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(961, 10637, 'ten thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(962, 84495, 'eighty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(963, 72043, 'seventy-two thousand forty-three');\nINSERT INTO t1 VALUES(964, 10124, 'ten thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(965, 9875, 'nine thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(966, 49117, 'forty-nine thousand one hundred seventeen');\nINSERT INTO t1 VALUES(967, 59177, 'fifty-nine thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(968, 53854, 'fifty-three thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(969, 38398, 'thirty-eight thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(970, 32550, 'thirty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(971, 79118, 'seventy-nine thousand one hundred eighteen');\nINSERT INTO t1 VALUES(972, 76090, 'seventy-six thousand ninety');\nINSERT INTO t1 VALUES(973, 75142, 'seventy-five thousand one hundred forty-two');\nINSERT INTO t1 VALUES(974, 43773, 'forty-three thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(975, 66901, 'sixty-six thousand nine hundred one');\nINSERT INTO t1 VALUES(976, 94257, 'ninety-four thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(977, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(978, 77594, 'seventy-seven thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(979, 33525, 'thirty-three thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(980, 79212, 'seventy-nine thousand two hundred twelve');\nINSERT INTO t1 VALUES(981, 1805, 'one thousand eight hundred five');\nINSERT INTO t1 VALUES(982, 14938, 'fourteen thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(983, 57138, 'fifty-seven thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(984, 34579, 'thirty-four thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(985, 17027, 'seventeen thousand twenty-seven');\nINSERT INTO t1 VALUES(986, 22915, 'twenty-two thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(987, 97214, 'ninety-seven thousand two hundred fourteen');\nINSERT INTO t1 VALUES(988, 10395, 'ten thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(989, 98923, 'ninety-eight thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(990, 7613, 'seven thousand six hundred thirteen');\nINSERT INTO t1 VALUES(991, 99863, 'ninety-nine thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(992, 51952, 'fifty-one thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(993, 4740, 'four thousand seven hundred forty');\nINSERT INTO t1 VALUES(994, 67441, 'sixty-seven thousand four hundred forty-one');\nINSERT INTO t1 VALUES(995, 90701, 'ninety thousand seven hundred one');\nINSERT INTO t1 VALUES(996, 44195, 'forty-four thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(997, 84299, 'eighty-four thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(998, 53113, 'fifty-three thousand one hundred thirteen');\nINSERT INTO t1 VALUES(999, 89010, 'eighty-nine thousand ten');\nINSERT INTO t1 VALUES(1000, 93931, 'ninety-three thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(1001, 75968, 'seventy-five thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(1002, 5182, 'five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(1003, 3994, 'three thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(1004, 65305, 'sixty-five thousand three hundred five');\nINSERT INTO t1 VALUES(1005, 10401, 'ten thousand four hundred one');\nINSERT INTO t1 VALUES(1006, 60562, 'sixty thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(1007, 64022, 'sixty-four thousand twenty-two');\nINSERT INTO t1 VALUES(1008, 75893, 'seventy-five thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1009, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(1010, 31092, 'thirty-one thousand ninety-two');\nINSERT INTO t1 VALUES(1011, 80331, 'eighty thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(1012, 42566, 'forty-two thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(1013, 90884, 'ninety thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(1014, 82790, 'eighty-two thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1015, 5621, 'five thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(1016, 57010, 'fifty-seven thousand ten');\nINSERT INTO t1 VALUES(1017, 28824, 'twenty-eight thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(1018, 87748, 'eighty-seven thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(1019, 87131, 'eighty-seven thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(1020, 3287, 'three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(1021, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(1022, 29267, 'twenty-nine thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(1023, 15422, 'fifteen thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(1024, 22232, 'twenty-two thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(1025, 96723, 'ninety-six thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(1026, 17235, 'seventeen thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(1027, 12560, 'twelve thousand five hundred sixty');\nINSERT INTO t1 VALUES(1028, 21851, 'twenty-one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1029, 41401, 'forty-one thousand four hundred one');\nINSERT INTO t1 VALUES(1030, 67863, 'sixty-seven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(1031, 41683, 'forty-one thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(1032, 28988, 'twenty-eight thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(1033, 89966, 'eighty-nine thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(1034, 83669, 'eighty-three thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(1035, 70889, 'seventy thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(1036, 58793, 'fifty-eight thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(1037, 63210, 'sixty-three thousand two hundred ten');\nINSERT INTO t1 VALUES(1038, 77126, 'seventy-seven thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(1039, 91350, 'ninety-one thousand three hundred fifty');\nINSERT INTO t1 VALUES(1040, 28055, 'twenty-eight thousand fifty-five');\nINSERT INTO t1 VALUES(1041, 76934, 'seventy-six thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(1042, 38451, 'thirty-eight thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(1043, 83721, 'eighty-three thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(1044, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(1045, 12028, 'twelve thousand twenty-eight');\nINSERT INTO t1 VALUES(1046, 23245, 'twenty-three thousand two hundred forty-five');\nINSERT INTO t1 VALUES(1047, 95866, 'ninety-five thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(1048, 87645, 'eighty-seven thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1049, 64286, 'sixty-four thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(1050, 73068, 'seventy-three thousand sixty-eight');\nINSERT INTO t1 VALUES(1051, 55171, 'fifty-five thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(1052, 62047, 'sixty-two thousand forty-seven');\nINSERT INTO t1 VALUES(1053, 51973, 'fifty-one thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(1054, 76047, 'seventy-six thousand forty-seven');\nINSERT INTO t1 VALUES(1055, 65795, 'sixty-five thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(1056, 56032, 'fifty-six thousand thirty-two');\nINSERT INTO t1 VALUES(1057, 18604, 'eighteen thousand six hundred four');\nINSERT INTO t1 VALUES(1058, 10981, 'ten thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(1059, 83747, 'eighty-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(1060, 346, 'three hundred forty-six');\nINSERT INTO t1 VALUES(1061, 50469, 'fifty thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(1062, 99539, 'ninety-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1063, 18327, 'eighteen thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(1064, 349, 'three hundred forty-nine');\nINSERT INTO t1 VALUES(1065, 83768, 'eighty-three thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1066, 66974, 'sixty-six thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(1067, 38925, 'thirty-eight thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(1068, 98314, 'ninety-eight thousand three hundred fourteen');\nINSERT INTO t1 VALUES(1069, 34266, 'thirty-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(1070, 35612, 'thirty-five thousand six hundred twelve');\nINSERT INTO t1 VALUES(1071, 73180, 'seventy-three thousand one hundred eighty');\nINSERT INTO t1 VALUES(1072, 41930, 'forty-one thousand nine hundred thirty');\nINSERT INTO t1 VALUES(1073, 98465, 'ninety-eight thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(1074, 72506, 'seventy-two thousand five hundred six');\nINSERT INTO t1 VALUES(1075, 42168, 'forty-two thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1076, 75024, 'seventy-five thousand twenty-four');\nINSERT INTO t1 VALUES(1077, 50490, 'fifty thousand four hundred ninety');\nINSERT INTO t1 VALUES(1078, 23332, 'twenty-three thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(1079, 11046, 'eleven thousand forty-six');\nINSERT INTO t1 VALUES(1080, 95391, 'ninety-five thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(1081, 75055, 'seventy-five thousand fifty-five');\nINSERT INTO t1 VALUES(1082, 39666, 'thirty-nine thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(1083, 48828, 'forty-eight thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(1084, 77965, 'seventy-seven thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(1085, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(1086, 92539, 'ninety-two thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1087, 64635, 'sixty-four thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(1088, 47441, 'forty-seven thousand four hundred forty-one');\nINSERT INTO t1 VALUES(1089, 64320, 'sixty-four thousand three hundred twenty');\nINSERT INTO t1 VALUES(1090, 18676, 'eighteen thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(1091, 64990, 'sixty-four thousand nine hundred ninety');\nINSERT INTO t1 VALUES(1092, 289, 'two hundred eighty-nine');\nINSERT INTO t1 VALUES(1093, 54512, 'fifty-four thousand five hundred twelve');\nINSERT INTO t1 VALUES(1094, 63137, 'sixty-three thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(1095, 78129, 'seventy-eight thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(1096, 27982, 'twenty-seven thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(1097, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(1098, 9803, 'nine thousand eight hundred three');\nINSERT INTO t1 VALUES(1099, 68481, 'sixty-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(1100, 67614, 'sixty-seven thousand six hundred fourteen');\nINSERT INTO t1 VALUES(1101, 34307, 'thirty-four thousand three hundred seven');\nINSERT INTO t1 VALUES(1102, 64936, 'sixty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(1103, 82314, 'eighty-two thousand three hundred fourteen');\nINSERT INTO t1 VALUES(1104, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(1105, 64637, 'sixty-four thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(1106, 70711, 'seventy thousand seven hundred eleven');\nINSERT INTO t1 VALUES(1107, 86613, 'eighty-six thousand six hundred thirteen');\nINSERT INTO t1 VALUES(1108, 30688, 'thirty thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(1109, 21158, 'twenty-one thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(1110, 16295, 'sixteen thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(1111, 79161, 'seventy-nine thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(1112, 30757, 'thirty thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(1113, 53063, 'fifty-three thousand sixty-three');\nINSERT INTO t1 VALUES(1114, 78104, 'seventy-eight thousand one hundred four');\nINSERT INTO t1 VALUES(1115, 47919, 'forty-seven thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(1116, 17366, 'seventeen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(1117, 32565, 'thirty-two thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1118, 67647, 'sixty-seven thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(1119, 85455, 'eighty-five thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(1120, 54565, 'fifty-four thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1121, 45993, 'forty-five thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(1122, 71129, 'seventy-one thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(1123, 52005, 'fifty-two thousand five');\nINSERT INTO t1 VALUES(1124, 56636, 'fifty-six thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1125, 14262, 'fourteen thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(1126, 63328, 'sixty-three thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(1127, 39842, 'thirty-nine thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(1128, 30389, 'thirty thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(1129, 41368, 'forty-one thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(1130, 76613, 'seventy-six thousand six hundred thirteen');\nINSERT INTO t1 VALUES(1131, 16393, 'sixteen thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(1132, 87529, 'eighty-seven thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(1133, 727, 'seven hundred twenty-seven');\nINSERT INTO t1 VALUES(1134, 2055, 'two thousand fifty-five');\nINSERT INTO t1 VALUES(1135, 14036, 'fourteen thousand thirty-six');\nINSERT INTO t1 VALUES(1136, 69027, 'sixty-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(1137, 82423, 'eighty-two thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(1138, 25443, 'twenty-five thousand four hundred forty-three');\nINSERT INTO t1 VALUES(1139, 90311, 'ninety thousand three hundred eleven');\nINSERT INTO t1 VALUES(1140, 25146, 'twenty-five thousand one hundred forty-six');\nINSERT INTO t1 VALUES(1141, 33067, 'thirty-three thousand sixty-seven');\nINSERT INTO t1 VALUES(1142, 51121, 'fifty-one thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(1143, 63335, 'sixty-three thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(1144, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(1145, 54956, 'fifty-four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(1146, 7730, 'seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(1147, 85084, 'eighty-five thousand eighty-four');\nINSERT INTO t1 VALUES(1148, 86686, 'eighty-six thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(1149, 38280, 'thirty-eight thousand two hundred eighty');\nINSERT INTO t1 VALUES(1150, 56373, 'fifty-six thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(1151, 40082, 'forty thousand eighty-two');\nINSERT INTO t1 VALUES(1152, 6940, 'six thousand nine hundred forty');\nINSERT INTO t1 VALUES(1153, 223, 'two hundred twenty-three');\nINSERT INTO t1 VALUES(1154, 21513, 'twenty-one thousand five hundred thirteen');\nINSERT INTO t1 VALUES(1155, 15087, 'fifteen thousand eighty-seven');\nINSERT INTO t1 VALUES(1156, 8921, 'eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(1157, 46702, 'forty-six thousand seven hundred two');\nINSERT INTO t1 VALUES(1158, 48921, 'forty-eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(1159, 41111, 'forty-one thousand one hundred eleven');\nINSERT INTO t1 VALUES(1160, 74326, 'seventy-four thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(1161, 93401, 'ninety-three thousand four hundred one');\nINSERT INTO t1 VALUES(1162, 17272, 'seventeen thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(1163, 19175, 'nineteen thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(1164, 54120, 'fifty-four thousand one hundred twenty');\nINSERT INTO t1 VALUES(1165, 57677, 'fifty-seven thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(1166, 68915, 'sixty-eight thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(1167, 67434, 'sixty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(1168, 33753, 'thirty-three thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(1169, 35123, 'thirty-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(1170, 5643, 'five thousand six hundred forty-three');\nINSERT INTO t1 VALUES(1171, 27402, 'twenty-seven thousand four hundred two');\nINSERT INTO t1 VALUES(1172, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t1 VALUES(1173, 38809, 'thirty-eight thousand eight hundred nine');\nINSERT INTO t1 VALUES(1174, 20172, 'twenty thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(1175, 39854, 'thirty-nine thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(1176, 44163, 'forty-four thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(1177, 53204, 'fifty-three thousand two hundred four');\nINSERT INTO t1 VALUES(1178, 76636, 'seventy-six thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1179, 27192, 'twenty-seven thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(1180, 27381, 'twenty-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1181, 10210, 'ten thousand two hundred ten');\nINSERT INTO t1 VALUES(1182, 25796, 'twenty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(1183, 87185, 'eighty-seven thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(1184, 36170, 'thirty-six thousand one hundred seventy');\nINSERT INTO t1 VALUES(1185, 41295, 'forty-one thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(1186, 32682, 'thirty-two thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(1187, 25693, 'twenty-five thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(1188, 37767, 'thirty-seven thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(1189, 55266, 'fifty-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(1190, 24371, 'twenty-four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(1191, 53697, 'fifty-three thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(1192, 78967, 'seventy-eight thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(1193, 58686, 'fifty-eight thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(1194, 18073, 'eighteen thousand seventy-three');\nINSERT INTO t1 VALUES(1195, 89438, 'eighty-nine thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(1196, 92679, 'ninety-two thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(1197, 80583, 'eighty thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(1198, 80414, 'eighty thousand four hundred fourteen');\nINSERT INTO t1 VALUES(1199, 74413, 'seventy-four thousand four hundred thirteen');\nINSERT INTO t1 VALUES(1200, 20122, 'twenty thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(1201, 90855, 'ninety thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(1202, 63311, 'sixty-three thousand three hundred eleven');\nINSERT INTO t1 VALUES(1203, 81256, 'eighty-one thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(1204, 19169, 'nineteen thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(1205, 84675, 'eighty-four thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(1206, 58373, 'fifty-eight thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(1207, 98068, 'ninety-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(1208, 76448, 'seventy-six thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(1209, 32473, 'thirty-two thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(1210, 36681, 'thirty-six thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(1211, 26755, 'twenty-six thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(1212, 82448, 'eighty-two thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(1213, 76199, 'seventy-six thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(1214, 7197, 'seven thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(1215, 81504, 'eighty-one thousand five hundred four');\nINSERT INTO t1 VALUES(1216, 46182, 'forty-six thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(1217, 15628, 'fifteen thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(1218, 34195, 'thirty-four thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(1219, 5076, 'five thousand seventy-six');\nINSERT INTO t1 VALUES(1220, 57253, 'fifty-seven thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(1221, 59468, 'fifty-nine thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(1222, 78458, 'seventy-eight thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(1223, 73497, 'seventy-three thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(1224, 54924, 'fifty-four thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(1225, 74790, 'seventy-four thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1226, 63128, 'sixty-three thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(1227, 28389, 'twenty-eight thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(1228, 27746, 'twenty-seven thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(1229, 28365, 'twenty-eight thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(1230, 44899, 'forty-four thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(1231, 61726, 'sixty-one thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(1232, 37850, 'thirty-seven thousand eight hundred fifty');\nINSERT INTO t1 VALUES(1233, 56293, 'fifty-six thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(1234, 33646, 'thirty-three thousand six hundred forty-six');\nINSERT INTO t1 VALUES(1235, 98212, 'ninety-eight thousand two hundred twelve');\nINSERT INTO t1 VALUES(1236, 60961, 'sixty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(1237, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1238, 96187, 'ninety-six thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(1239, 65862, 'sixty-five thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(1240, 28055, 'twenty-eight thousand fifty-five');\nINSERT INTO t1 VALUES(1241, 23400, 'twenty-three thousand four hundred');\nINSERT INTO t1 VALUES(1242, 55366, 'fifty-five thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(1243, 88651, 'eighty-eight thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(1244, 32724, 'thirty-two thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(1245, 905, 'nine hundred five');\nINSERT INTO t1 VALUES(1246, 21749, 'twenty-one thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1247, 79024, 'seventy-nine thousand twenty-four');\nINSERT INTO t1 VALUES(1248, 33250, 'thirty-three thousand two hundred fifty');\nINSERT INTO t1 VALUES(1249, 71822, 'seventy-one thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(1250, 32012, 'thirty-two thousand twelve');\nINSERT INTO t1 VALUES(1251, 43030, 'forty-three thousand thirty');\nINSERT INTO t1 VALUES(1252, 84637, 'eighty-four thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(1253, 48203, 'forty-eight thousand two hundred three');\nINSERT INTO t1 VALUES(1254, 80495, 'eighty thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(1255, 45881, 'forty-five thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(1256, 23387, 'twenty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(1257, 63538, 'sixty-three thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(1258, 14902, 'fourteen thousand nine hundred two');\nINSERT INTO t1 VALUES(1259, 71635, 'seventy-one thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(1260, 47196, 'forty-seven thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1261, 31675, 'thirty-one thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(1262, 45972, 'forty-five thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(1263, 43248, 'forty-three thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(1264, 68219, 'sixty-eight thousand two hundred nineteen');\nINSERT INTO t1 VALUES(1265, 98494, 'ninety-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(1266, 2760, 'two thousand seven hundred sixty');\nINSERT INTO t1 VALUES(1267, 43973, 'forty-three thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(1268, 63102, 'sixty-three thousand one hundred two');\nINSERT INTO t1 VALUES(1269, 14851, 'fourteen thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1270, 32167, 'thirty-two thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(1271, 62848, 'sixty-two thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(1272, 40008, 'forty thousand eight');\nINSERT INTO t1 VALUES(1273, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(1274, 38094, 'thirty-eight thousand ninety-four');\nINSERT INTO t1 VALUES(1275, 59735, 'fifty-nine thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(1276, 52340, 'fifty-two thousand three hundred forty');\nINSERT INTO t1 VALUES(1277, 32041, 'thirty-two thousand forty-one');\nINSERT INTO t1 VALUES(1278, 44215, 'forty-four thousand two hundred fifteen');\nINSERT INTO t1 VALUES(1279, 95811, 'ninety-five thousand eight hundred eleven');\nINSERT INTO t1 VALUES(1280, 17929, 'seventeen thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(1281, 87600, 'eighty-seven thousand six hundred');\nINSERT INTO t1 VALUES(1282, 36214, 'thirty-six thousand two hundred fourteen');\nINSERT INTO t1 VALUES(1283, 22282, 'twenty-two thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(1284, 18276, 'eighteen thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(1285, 2567, 'two thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(1286, 62066, 'sixty-two thousand sixty-six');\nINSERT INTO t1 VALUES(1287, 82273, 'eighty-two thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(1288, 13998, 'thirteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(1289, 31280, 'thirty-one thousand two hundred eighty');\nINSERT INTO t1 VALUES(1290, 8891, 'eight thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(1291, 56928, 'fifty-six thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(1292, 97091, 'ninety-seven thousand ninety-one');\nINSERT INTO t1 VALUES(1293, 66935, 'sixty-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(1294, 178, 'one hundred seventy-eight');\nINSERT INTO t1 VALUES(1295, 9743, 'nine thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(1296, 16903, 'sixteen thousand nine hundred three');\nINSERT INTO t1 VALUES(1297, 83847, 'eighty-three thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(1298, 95790, 'ninety-five thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1299, 91305, 'ninety-one thousand three hundred five');\nINSERT INTO t1 VALUES(1300, 24392, 'twenty-four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(1301, 33704, 'thirty-three thousand seven hundred four');\nINSERT INTO t1 VALUES(1302, 39323, 'thirty-nine thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(1303, 74734, 'seventy-four thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(1304, 76309, 'seventy-six thousand three hundred nine');\nINSERT INTO t1 VALUES(1305, 45284, 'forty-five thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(1306, 24844, 'twenty-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(1307, 94274, 'ninety-four thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(1308, 19953, 'nineteen thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(1309, 61085, 'sixty-one thousand eighty-five');\nINSERT INTO t1 VALUES(1310, 76202, 'seventy-six thousand two hundred two');\nINSERT INTO t1 VALUES(1311, 40759, 'forty thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(1312, 77565, 'seventy-seven thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1313, 75589, 'seventy-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(1314, 86242, 'eighty-six thousand two hundred forty-two');\nINSERT INTO t1 VALUES(1315, 60704, 'sixty thousand seven hundred four');\nINSERT INTO t1 VALUES(1316, 27604, 'twenty-seven thousand six hundred four');\nINSERT INTO t1 VALUES(1317, 86116, 'eighty-six thousand one hundred sixteen');\nINSERT INTO t1 VALUES(1318, 45427, 'forty-five thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(1319, 40465, 'forty thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(1320, 64749, 'sixty-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1321, 95094, 'ninety-five thousand ninety-four');\nINSERT INTO t1 VALUES(1322, 51852, 'fifty-one thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(1323, 61326, 'sixty-one thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(1324, 69336, 'sixty-nine thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(1325, 20531, 'twenty thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(1326, 78258, 'seventy-eight thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(1327, 40848, 'forty thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(1328, 97949, 'ninety-seven thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(1329, 40361, 'forty thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(1330, 17811, 'seventeen thousand eight hundred eleven');\nINSERT INTO t1 VALUES(1331, 55027, 'fifty-five thousand twenty-seven');\nINSERT INTO t1 VALUES(1332, 81760, 'eighty-one thousand seven hundred sixty');\nINSERT INTO t1 VALUES(1333, 5234, 'five thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(1334, 35011, 'thirty-five thousand eleven');\nINSERT INTO t1 VALUES(1335, 78742, 'seventy-eight thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(1336, 42629, 'forty-two thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(1337, 89161, 'eighty-nine thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(1338, 62137, 'sixty-two thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(1339, 56304, 'fifty-six thousand three hundred four');\nINSERT INTO t1 VALUES(1340, 67110, 'sixty-seven thousand one hundred ten');\nINSERT INTO t1 VALUES(1341, 54915, 'fifty-four thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(1342, 91158, 'ninety-one thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(1343, 23487, 'twenty-three thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(1344, 29746, 'twenty-nine thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(1345, 97876, 'ninety-seven thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(1346, 45139, 'forty-five thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(1347, 14608, 'fourteen thousand six hundred eight');\nINSERT INTO t1 VALUES(1348, 81022, 'eighty-one thousand twenty-two');\nINSERT INTO t1 VALUES(1349, 74749, 'seventy-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1350, 60195, 'sixty thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(1351, 8196, 'eight thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1352, 36154, 'thirty-six thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(1353, 96873, 'ninety-six thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(1354, 1081, 'one thousand eighty-one');\nINSERT INTO t1 VALUES(1355, 5271, 'five thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(1356, 85257, 'eighty-five thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(1357, 88774, 'eighty-eight thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(1358, 89559, 'eighty-nine thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(1359, 90614, 'ninety thousand six hundred fourteen');\nINSERT INTO t1 VALUES(1360, 4820, 'four thousand eight hundred twenty');\nINSERT INTO t1 VALUES(1361, 88051, 'eighty-eight thousand fifty-one');\nINSERT INTO t1 VALUES(1362, 36491, 'thirty-six thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(1363, 40990, 'forty thousand nine hundred ninety');\nINSERT INTO t1 VALUES(1364, 85648, 'eighty-five thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(1365, 1656, 'one thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(1366, 47140, 'forty-seven thousand one hundred forty');\nINSERT INTO t1 VALUES(1367, 6461, 'six thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(1368, 45435, 'forty-five thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(1369, 61893, 'sixty-one thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1370, 342, 'three hundred forty-two');\nINSERT INTO t1 VALUES(1371, 41797, 'forty-one thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(1372, 65684, 'sixty-five thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(1373, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(1374, 83437, 'eighty-three thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(1375, 17605, 'seventeen thousand six hundred five');\nINSERT INTO t1 VALUES(1376, 95590, 'ninety-five thousand five hundred ninety');\nINSERT INTO t1 VALUES(1377, 97023, 'ninety-seven thousand twenty-three');\nINSERT INTO t1 VALUES(1378, 21381, 'twenty-one thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1379, 28901, 'twenty-eight thousand nine hundred one');\nINSERT INTO t1 VALUES(1380, 82225, 'eighty-two thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(1381, 16878, 'sixteen thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(1382, 82227, 'eighty-two thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(1383, 75157, 'seventy-five thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(1384, 4927, 'four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(1385, 28969, 'twenty-eight thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(1386, 14412, 'fourteen thousand four hundred twelve');\nINSERT INTO t1 VALUES(1387, 56796, 'fifty-six thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(1388, 48661, 'forty-eight thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(1389, 73412, 'seventy-three thousand four hundred twelve');\nINSERT INTO t1 VALUES(1390, 31185, 'thirty-one thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(1391, 29057, 'twenty-nine thousand fifty-seven');\nINSERT INTO t1 VALUES(1392, 10009, 'ten thousand nine');\nINSERT INTO t1 VALUES(1393, 48977, 'forty-eight thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(1394, 97505, 'ninety-seven thousand five hundred five');\nINSERT INTO t1 VALUES(1395, 9751, 'nine thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(1396, 49959, 'forty-nine thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(1397, 95747, 'ninety-five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(1398, 93785, 'ninety-three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(1399, 7378, 'seven thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(1400, 95521, 'ninety-five thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(1401, 70573, 'seventy thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(1402, 80074, 'eighty thousand seventy-four');\nINSERT INTO t1 VALUES(1403, 27728, 'twenty-seven thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(1404, 55773, 'fifty-five thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(1405, 15262, 'fifteen thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(1406, 82088, 'eighty-two thousand eighty-eight');\nINSERT INTO t1 VALUES(1407, 37928, 'thirty-seven thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(1408, 59951, 'fifty-nine thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(1409, 99327, 'ninety-nine thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(1410, 79202, 'seventy-nine thousand two hundred two');\nINSERT INTO t1 VALUES(1411, 11067, 'eleven thousand sixty-seven');\nINSERT INTO t1 VALUES(1412, 97937, 'ninety-seven thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(1413, 54568, 'fifty-four thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(1414, 58684, 'fifty-eight thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(1415, 41266, 'forty-one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(1416, 75078, 'seventy-five thousand seventy-eight');\nINSERT INTO t1 VALUES(1417, 27706, 'twenty-seven thousand seven hundred six');\nINSERT INTO t1 VALUES(1418, 39628, 'thirty-nine thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(1419, 76178, 'seventy-six thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(1420, 16385, 'sixteen thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(1421, 78470, 'seventy-eight thousand four hundred seventy');\nINSERT INTO t1 VALUES(1422, 38499, 'thirty-eight thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(1423, 63833, 'sixty-three thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(1424, 61168, 'sixty-one thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1425, 98593, 'ninety-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(1426, 53160, 'fifty-three thousand one hundred sixty');\nINSERT INTO t1 VALUES(1427, 91503, 'ninety-one thousand five hundred three');\nINSERT INTO t1 VALUES(1428, 55010, 'fifty-five thousand ten');\nINSERT INTO t1 VALUES(1429, 97440, 'ninety-seven thousand four hundred forty');\nINSERT INTO t1 VALUES(1430, 42636, 'forty-two thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1431, 45348, 'forty-five thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(1432, 32381, 'thirty-two thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1433, 38140, 'thirty-eight thousand one hundred forty');\nINSERT INTO t1 VALUES(1434, 50617, 'fifty thousand six hundred seventeen');\nINSERT INTO t1 VALUES(1435, 81603, 'eighty-one thousand six hundred three');\nINSERT INTO t1 VALUES(1436, 68985, 'sixty-eight thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(1437, 38963, 'thirty-eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(1438, 65324, 'sixty-five thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(1439, 94702, 'ninety-four thousand seven hundred two');\nINSERT INTO t1 VALUES(1440, 34503, 'thirty-four thousand five hundred three');\nINSERT INTO t1 VALUES(1441, 87332, 'eighty-seven thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(1442, 59926, 'fifty-nine thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(1443, 25393, 'twenty-five thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(1444, 4805, 'four thousand eight hundred five');\nINSERT INTO t1 VALUES(1445, 70875, 'seventy thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(1446, 23786, 'twenty-three thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(1447, 18319, 'eighteen thousand three hundred nineteen');\nINSERT INTO t1 VALUES(1448, 12002, 'twelve thousand two');\nINSERT INTO t1 VALUES(1449, 62715, 'sixty-two thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(1450, 72966, 'seventy-two thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(1451, 72896, 'seventy-two thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(1452, 69840, 'sixty-nine thousand eight hundred forty');\nINSERT INTO t1 VALUES(1453, 6858, 'six thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(1454, 83415, 'eighty-three thousand four hundred fifteen');\nINSERT INTO t1 VALUES(1455, 5825, 'five thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(1456, 46957, 'forty-six thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(1457, 9940, 'nine thousand nine hundred forty');\nINSERT INTO t1 VALUES(1458, 4625, 'four thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1459, 9148, 'nine thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(1460, 6165, 'six thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(1461, 73595, 'seventy-three thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(1462, 98558, 'ninety-eight thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(1463, 52901, 'fifty-two thousand nine hundred one');\nINSERT INTO t1 VALUES(1464, 9851, 'nine thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(1465, 39171, 'thirty-nine thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(1466, 34398, 'thirty-four thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(1467, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(1468, 19701, 'nineteen thousand seven hundred one');\nINSERT INTO t1 VALUES(1469, 36281, 'thirty-six thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(1470, 37750, 'thirty-seven thousand seven hundred fifty');\nINSERT INTO t1 VALUES(1471, 21601, 'twenty-one thousand six hundred one');\nINSERT INTO t1 VALUES(1472, 10590, 'ten thousand five hundred ninety');\nINSERT INTO t1 VALUES(1473, 5320, 'five thousand three hundred twenty');\nINSERT INTO t1 VALUES(1474, 59452, 'fifty-nine thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(1475, 10728, 'ten thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(1476, 51689, 'fifty-one thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(1477, 70680, 'seventy thousand six hundred eighty');\nINSERT INTO t1 VALUES(1478, 11635, 'eleven thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(1479, 68663, 'sixty-eight thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(1480, 42737, 'forty-two thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(1481, 37339, 'thirty-seven thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(1482, 73285, 'seventy-three thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(1483, 55449, 'fifty-five thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(1484, 74455, 'seventy-four thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(1485, 70586, 'seventy thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(1486, 25810, 'twenty-five thousand eight hundred ten');\nINSERT INTO t1 VALUES(1487, 77751, 'seventy-seven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(1488, 49211, 'forty-nine thousand two hundred eleven');\nINSERT INTO t1 VALUES(1489, 90234, 'ninety thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(1490, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(1491, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1492, 74535, 'seventy-four thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(1493, 81700, 'eighty-one thousand seven hundred');\nINSERT INTO t1 VALUES(1494, 84430, 'eighty-four thousand four hundred thirty');\nINSERT INTO t1 VALUES(1495, 48657, 'forty-eight thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(1496, 21472, 'twenty-one thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(1497, 35453, 'thirty-five thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(1498, 59208, 'fifty-nine thousand two hundred eight');\nINSERT INTO t1 VALUES(1499, 31814, 'thirty-one thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(1500, 57975, 'fifty-seven thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(1501, 61591, 'sixty-one thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(1502, 42695, 'forty-two thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(1503, 10375, 'ten thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(1504, 40087, 'forty thousand eighty-seven');\nINSERT INTO t1 VALUES(1505, 37360, 'thirty-seven thousand three hundred sixty');\nINSERT INTO t1 VALUES(1506, 68368, 'sixty-eight thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(1507, 13340, 'thirteen thousand three hundred forty');\nINSERT INTO t1 VALUES(1508, 59285, 'fifty-nine thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(1509, 26311, 'twenty-six thousand three hundred eleven');\nINSERT INTO t1 VALUES(1510, 28651, 'twenty-eight thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(1511, 82723, 'eighty-two thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(1512, 69236, 'sixty-nine thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(1513, 57600, 'fifty-seven thousand six hundred');\nINSERT INTO t1 VALUES(1514, 43613, 'forty-three thousand six hundred thirteen');\nINSERT INTO t1 VALUES(1515, 26671, 'twenty-six thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(1516, 48854, 'forty-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(1517, 85630, 'eighty-five thousand six hundred thirty');\nINSERT INTO t1 VALUES(1518, 86864, 'eighty-six thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(1519, 44087, 'forty-four thousand eighty-seven');\nINSERT INTO t1 VALUES(1520, 40044, 'forty thousand forty-four');\nINSERT INTO t1 VALUES(1521, 48950, 'forty-eight thousand nine hundred fifty');\nINSERT INTO t1 VALUES(1522, 12355, 'twelve thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(1523, 82602, 'eighty-two thousand six hundred two');\nINSERT INTO t1 VALUES(1524, 93060, 'ninety-three thousand sixty');\nINSERT INTO t1 VALUES(1525, 56443, 'fifty-six thousand four hundred forty-three');\nINSERT INTO t1 VALUES(1526, 69581, 'sixty-nine thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(1527, 71625, 'seventy-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1528, 92068, 'ninety-two thousand sixty-eight');\nINSERT INTO t1 VALUES(1529, 75395, 'seventy-five thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(1530, 7940, 'seven thousand nine hundred forty');\nINSERT INTO t1 VALUES(1531, 29719, 'twenty-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(1532, 35805, 'thirty-five thousand eight hundred five');\nINSERT INTO t1 VALUES(1533, 68117, 'sixty-eight thousand one hundred seventeen');\nINSERT INTO t1 VALUES(1534, 57168, 'fifty-seven thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(1535, 98358, 'ninety-eight thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(1536, 71532, 'seventy-one thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(1537, 48309, 'forty-eight thousand three hundred nine');\nINSERT INTO t1 VALUES(1538, 74722, 'seventy-four thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(1539, 17839, 'seventeen thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(1540, 12787, 'twelve thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(1541, 90045, 'ninety thousand forty-five');\nINSERT INTO t1 VALUES(1542, 9178, 'nine thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(1543, 9391, 'nine thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(1544, 58506, 'fifty-eight thousand five hundred six');\nINSERT INTO t1 VALUES(1545, 86190, 'eighty-six thousand one hundred ninety');\nINSERT INTO t1 VALUES(1546, 28223, 'twenty-eight thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(1547, 9528, 'nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(1548, 54651, 'fifty-four thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(1549, 10794, 'ten thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(1550, 72428, 'seventy-two thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(1551, 55768, 'fifty-five thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1552, 96914, 'ninety-six thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(1553, 16735, 'sixteen thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(1554, 431, 'four hundred thirty-one');\nINSERT INTO t1 VALUES(1555, 90512, 'ninety thousand five hundred twelve');\nINSERT INTO t1 VALUES(1556, 29474, 'twenty-nine thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(1557, 93569, 'ninety-three thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(1558, 32842, 'thirty-two thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(1559, 21793, 'twenty-one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(1560, 8455, 'eight thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(1561, 34655, 'thirty-four thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(1562, 14744, 'fourteen thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(1563, 46026, 'forty-six thousand twenty-six');\nINSERT INTO t1 VALUES(1564, 83991, 'eighty-three thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(1565, 43905, 'forty-three thousand nine hundred five');\nINSERT INTO t1 VALUES(1566, 65850, 'sixty-five thousand eight hundred fifty');\nINSERT INTO t1 VALUES(1567, 61725, 'sixty-one thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(1568, 7893, 'seven thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1569, 32559, 'thirty-two thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(1570, 73248, 'seventy-three thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(1571, 33498, 'thirty-three thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(1572, 62169, 'sixty-two thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(1573, 10144, 'ten thousand one hundred forty-four');\nINSERT INTO t1 VALUES(1574, 57479, 'fifty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(1575, 30830, 'thirty thousand eight hundred thirty');\nINSERT INTO t1 VALUES(1576, 4473, 'four thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(1577, 40152, 'forty thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(1578, 91680, 'ninety-one thousand six hundred eighty');\nINSERT INTO t1 VALUES(1579, 80625, 'eighty thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1580, 48508, 'forty-eight thousand five hundred eight');\nINSERT INTO t1 VALUES(1581, 84645, 'eighty-four thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1582, 38114, 'thirty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(1583, 5121, 'five thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(1584, 72895, 'seventy-two thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(1585, 58555, 'fifty-eight thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(1586, 16845, 'sixteen thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(1587, 48136, 'forty-eight thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(1588, 66489, 'sixty-six thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(1589, 91182, 'ninety-one thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(1590, 50703, 'fifty thousand seven hundred three');\nINSERT INTO t1 VALUES(1591, 39088, 'thirty-nine thousand eighty-eight');\nINSERT INTO t1 VALUES(1592, 47003, 'forty-seven thousand three');\nINSERT INTO t1 VALUES(1593, 1739, 'one thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(1594, 48712, 'forty-eight thousand seven hundred twelve');\nINSERT INTO t1 VALUES(1595, 17030, 'seventeen thousand thirty');\nINSERT INTO t1 VALUES(1596, 22062, 'twenty-two thousand sixty-two');\nINSERT INTO t1 VALUES(1597, 1578, 'one thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(1598, 65199, 'sixty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(1599, 95174, 'ninety-five thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(1600, 78596, 'seventy-eight thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(1601, 13062, 'thirteen thousand sixty-two');\nINSERT INTO t1 VALUES(1602, 26386, 'twenty-six thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(1603, 94073, 'ninety-four thousand seventy-three');\nINSERT INTO t1 VALUES(1604, 81970, 'eighty-one thousand nine hundred seventy');\nINSERT INTO t1 VALUES(1605, 34749, 'thirty-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(1606, 19997, 'nineteen thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(1607, 98468, 'ninety-eight thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(1608, 90078, 'ninety thousand seventy-eight');\nINSERT INTO t1 VALUES(1609, 60321, 'sixty thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(1610, 64275, 'sixty-four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(1611, 34209, 'thirty-four thousand two hundred nine');\nINSERT INTO t1 VALUES(1612, 82059, 'eighty-two thousand fifty-nine');\nINSERT INTO t1 VALUES(1613, 31226, 'thirty-one thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(1614, 31328, 'thirty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(1615, 37746, 'thirty-seven thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(1616, 46557, 'forty-six thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(1617, 63517, 'sixty-three thousand five hundred seventeen');\nINSERT INTO t1 VALUES(1618, 26815, 'twenty-six thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(1619, 78096, 'seventy-eight thousand ninety-six');\nINSERT INTO t1 VALUES(1620, 86941, 'eighty-six thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(1621, 42608, 'forty-two thousand six hundred eight');\nINSERT INTO t1 VALUES(1622, 3767, 'three thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(1623, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(1624, 62042, 'sixty-two thousand forty-two');\nINSERT INTO t1 VALUES(1625, 43107, 'forty-three thousand one hundred seven');\nINSERT INTO t1 VALUES(1626, 21740, 'twenty-one thousand seven hundred forty');\nINSERT INTO t1 VALUES(1627, 34872, 'thirty-four thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(1628, 40468, 'forty thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(1629, 9300, 'nine thousand three hundred');\nINSERT INTO t1 VALUES(1630, 2721, 'two thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(1631, 28527, 'twenty-eight thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(1632, 69303, 'sixty-nine thousand three hundred three');\nINSERT INTO t1 VALUES(1633, 46776, 'forty-six thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(1634, 55745, 'fifty-five thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(1635, 85356, 'eighty-five thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(1636, 46657, 'forty-six thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(1637, 61515, 'sixty-one thousand five hundred fifteen');\nINSERT INTO t1 VALUES(1638, 18104, 'eighteen thousand one hundred four');\nINSERT INTO t1 VALUES(1639, 28206, 'twenty-eight thousand two hundred six');\nINSERT INTO t1 VALUES(1640, 35172, 'thirty-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(1641, 10098, 'ten thousand ninety-eight');\nINSERT INTO t1 VALUES(1642, 6093, 'six thousand ninety-three');\nINSERT INTO t1 VALUES(1643, 74079, 'seventy-four thousand seventy-nine');\nINSERT INTO t1 VALUES(1644, 36008, 'thirty-six thousand eight');\nINSERT INTO t1 VALUES(1645, 88532, 'eighty-eight thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(1646, 30095, 'thirty thousand ninety-five');\nINSERT INTO t1 VALUES(1647, 85521, 'eighty-five thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(1648, 21414, 'twenty-one thousand four hundred fourteen');\nINSERT INTO t1 VALUES(1649, 84230, 'eighty-four thousand two hundred thirty');\nINSERT INTO t1 VALUES(1650, 70085, 'seventy thousand eighty-five');\nINSERT INTO t1 VALUES(1651, 6210, 'six thousand two hundred ten');\nINSERT INTO t1 VALUES(1652, 64104, 'sixty-four thousand one hundred four');\nINSERT INTO t1 VALUES(1653, 84896, 'eighty-four thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(1654, 65618, 'sixty-five thousand six hundred eighteen');\nINSERT INTO t1 VALUES(1655, 15320, 'fifteen thousand three hundred twenty');\nINSERT INTO t1 VALUES(1656, 79301, 'seventy-nine thousand three hundred one');\nINSERT INTO t1 VALUES(1657, 69641, 'sixty-nine thousand six hundred forty-one');\nINSERT INTO t1 VALUES(1658, 65595, 'sixty-five thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(1659, 99704, 'ninety-nine thousand seven hundred four');\nINSERT INTO t1 VALUES(1660, 94028, 'ninety-four thousand twenty-eight');\nINSERT INTO t1 VALUES(1661, 72689, 'seventy-two thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(1662, 29717, 'twenty-nine thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(1663, 78386, 'seventy-eight thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(1664, 2158, 'two thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(1665, 36050, 'thirty-six thousand fifty');\nINSERT INTO t1 VALUES(1666, 27600, 'twenty-seven thousand six hundred');\nINSERT INTO t1 VALUES(1667, 11202, 'eleven thousand two hundred two');\nINSERT INTO t1 VALUES(1668, 86246, 'eighty-six thousand two hundred forty-six');\nINSERT INTO t1 VALUES(1669, 5256, 'five thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(1670, 5150, 'five thousand one hundred fifty');\nINSERT INTO t1 VALUES(1671, 83778, 'eighty-three thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(1672, 97804, 'ninety-seven thousand eight hundred four');\nINSERT INTO t1 VALUES(1673, 64152, 'sixty-four thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(1674, 1627, 'one thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(1675, 81024, 'eighty-one thousand twenty-four');\nINSERT INTO t1 VALUES(1676, 67636, 'sixty-seven thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(1677, 33212, 'thirty-three thousand two hundred twelve');\nINSERT INTO t1 VALUES(1678, 53921, 'fifty-three thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(1679, 94767, 'ninety-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(1680, 5053, 'five thousand fifty-three');\nINSERT INTO t1 VALUES(1681, 58089, 'fifty-eight thousand eighty-nine');\nINSERT INTO t1 VALUES(1682, 11991, 'eleven thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(1683, 68740, 'sixty-eight thousand seven hundred forty');\nINSERT INTO t1 VALUES(1684, 78604, 'seventy-eight thousand six hundred four');\nINSERT INTO t1 VALUES(1685, 89361, 'eighty-nine thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(1686, 21448, 'twenty-one thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(1687, 74483, 'seventy-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(1688, 89243, 'eighty-nine thousand two hundred forty-three');\nINSERT INTO t1 VALUES(1689, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(1690, 6857, 'six thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(1691, 22570, 'twenty-two thousand five hundred seventy');\nINSERT INTO t1 VALUES(1692, 23883, 'twenty-three thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(1693, 72213, 'seventy-two thousand two hundred thirteen');\nINSERT INTO t1 VALUES(1694, 89863, 'eighty-nine thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(1695, 18748, 'eighteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(1696, 39371, 'thirty-nine thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(1697, 9109, 'nine thousand one hundred nine');\nINSERT INTO t1 VALUES(1698, 38787, 'thirty-eight thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(1699, 60954, 'sixty thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(1700, 8161, 'eight thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(1701, 47766, 'forty-seven thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(1702, 5225, 'five thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(1703, 75772, 'seventy-five thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(1704, 18269, 'eighteen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(1705, 31498, 'thirty-one thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(1706, 60137, 'sixty thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(1707, 27054, 'twenty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(1708, 94474, 'ninety-four thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(1709, 39799, 'thirty-nine thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(1710, 42212, 'forty-two thousand two hundred twelve');\nINSERT INTO t1 VALUES(1711, 26403, 'twenty-six thousand four hundred three');\nINSERT INTO t1 VALUES(1712, 62233, 'sixty-two thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(1713, 35236, 'thirty-five thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(1714, 80188, 'eighty thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(1715, 10229, 'ten thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(1716, 62085, 'sixty-two thousand eighty-five');\nINSERT INTO t1 VALUES(1717, 44713, 'forty-four thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(1718, 41726, 'forty-one thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(1719, 94768, 'ninety-four thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1720, 5591, 'five thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(1721, 14462, 'fourteen thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(1722, 8633, 'eight thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(1723, 57, 'fifty-seven');\nINSERT INTO t1 VALUES(1724, 36452, 'thirty-six thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(1725, 89036, 'eighty-nine thousand thirty-six');\nINSERT INTO t1 VALUES(1726, 89477, 'eighty-nine thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(1727, 68247, 'sixty-eight thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(1728, 89001, 'eighty-nine thousand one');\nINSERT INTO t1 VALUES(1729, 54145, 'fifty-four thousand one hundred forty-five');\nINSERT INTO t1 VALUES(1730, 77480, 'seventy-seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(1731, 50906, 'fifty thousand nine hundred six');\nINSERT INTO t1 VALUES(1732, 41648, 'forty-one thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(1733, 11316, 'eleven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(1734, 61340, 'sixty-one thousand three hundred forty');\nINSERT INTO t1 VALUES(1735, 20526, 'twenty thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(1736, 91134, 'ninety-one thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(1737, 20976, 'twenty thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(1738, 66519, 'sixty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(1739, 88318, 'eighty-eight thousand three hundred eighteen');\nINSERT INTO t1 VALUES(1740, 54108, 'fifty-four thousand one hundred eight');\nINSERT INTO t1 VALUES(1741, 54031, 'fifty-four thousand thirty-one');\nINSERT INTO t1 VALUES(1742, 77937, 'seventy-seven thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(1743, 10328, 'ten thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(1744, 80516, 'eighty thousand five hundred sixteen');\nINSERT INTO t1 VALUES(1745, 44261, 'forty-four thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(1746, 88250, 'eighty-eight thousand two hundred fifty');\nINSERT INTO t1 VALUES(1747, 52866, 'fifty-two thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(1748, 25892, 'twenty-five thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(1749, 98953, 'ninety-eight thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(1750, 12415, 'twelve thousand four hundred fifteen');\nINSERT INTO t1 VALUES(1751, 36805, 'thirty-six thousand eight hundred five');\nINSERT INTO t1 VALUES(1752, 58382, 'fifty-eight thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(1753, 84382, 'eighty-four thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(1754, 40274, 'forty thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(1755, 90010, 'ninety thousand ten');\nINSERT INTO t1 VALUES(1756, 10509, 'ten thousand five hundred nine');\nINSERT INTO t1 VALUES(1757, 5295, 'five thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(1758, 58724, 'fifty-eight thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(1759, 99125, 'ninety-nine thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(1760, 78321, 'seventy-eight thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(1761, 38452, 'thirty-eight thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(1762, 5918, 'five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(1763, 61900, 'sixty-one thousand nine hundred');\nINSERT INTO t1 VALUES(1764, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(1765, 73349, 'seventy-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(1766, 48571, 'forty-eight thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(1767, 49212, 'forty-nine thousand two hundred twelve');\nINSERT INTO t1 VALUES(1768, 65580, 'sixty-five thousand five hundred eighty');\nINSERT INTO t1 VALUES(1769, 39343, 'thirty-nine thousand three hundred forty-three');\nINSERT INTO t1 VALUES(1770, 37263, 'thirty-seven thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(1771, 33790, 'thirty-three thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1772, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(1773, 54691, 'fifty-four thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(1774, 40873, 'forty thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(1775, 40649, 'forty thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(1776, 28114, 'twenty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(1777, 5551, 'five thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(1778, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(1779, 94893, 'ninety-four thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(1780, 15957, 'fifteen thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(1781, 32194, 'thirty-two thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(1782, 57324, 'fifty-seven thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(1783, 73691, 'seventy-three thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(1784, 69747, 'sixty-nine thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(1785, 91679, 'ninety-one thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(1786, 12838, 'twelve thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(1787, 17389, 'seventeen thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(1788, 61883, 'sixty-one thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(1789, 85070, 'eighty-five thousand seventy');\nINSERT INTO t1 VALUES(1790, 13363, 'thirteen thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(1791, 39398, 'thirty-nine thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(1792, 53565, 'fifty-three thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1793, 69195, 'sixty-nine thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(1794, 50823, 'fifty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(1795, 15412, 'fifteen thousand four hundred twelve');\nINSERT INTO t1 VALUES(1796, 93980, 'ninety-three thousand nine hundred eighty');\nINSERT INTO t1 VALUES(1797, 30817, 'thirty thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(1798, 99528, 'ninety-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(1799, 57790, 'fifty-seven thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1800, 40668, 'forty thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(1801, 96517, 'ninety-six thousand five hundred seventeen');\nINSERT INTO t1 VALUES(1802, 72152, 'seventy-two thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(1803, 17814, 'seventeen thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(1804, 6834, 'six thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(1805, 15496, 'fifteen thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(1806, 64645, 'sixty-four thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1807, 40955, 'forty thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(1808, 29600, 'twenty-nine thousand six hundred');\nINSERT INTO t1 VALUES(1809, 93154, 'ninety-three thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(1810, 21117, 'twenty-one thousand one hundred seventeen');\nINSERT INTO t1 VALUES(1811, 25709, 'twenty-five thousand seven hundred nine');\nINSERT INTO t1 VALUES(1812, 8146, 'eight thousand one hundred forty-six');\nINSERT INTO t1 VALUES(1813, 63481, 'sixty-three thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(1814, 5127, 'five thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(1815, 34339, 'thirty-four thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(1816, 99471, 'ninety-nine thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(1817, 25571, 'twenty-five thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(1818, 95394, 'ninety-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(1819, 11895, 'eleven thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(1820, 53310, 'fifty-three thousand three hundred ten');\nINSERT INTO t1 VALUES(1821, 15409, 'fifteen thousand four hundred nine');\nINSERT INTO t1 VALUES(1822, 13068, 'thirteen thousand sixty-eight');\nINSERT INTO t1 VALUES(1823, 60977, 'sixty thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(1824, 85696, 'eighty-five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(1825, 75185, 'seventy-five thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(1826, 33008, 'thirty-three thousand eight');\nINSERT INTO t1 VALUES(1827, 35765, 'thirty-five thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(1828, 39078, 'thirty-nine thousand seventy-eight');\nINSERT INTO t1 VALUES(1829, 75754, 'seventy-five thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(1830, 66605, 'sixty-six thousand six hundred five');\nINSERT INTO t1 VALUES(1831, 50018, 'fifty thousand eighteen');\nINSERT INTO t1 VALUES(1832, 53, 'fifty-three');\nINSERT INTO t1 VALUES(1833, 36222, 'thirty-six thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(1834, 23617, 'twenty-three thousand six hundred seventeen');\nINSERT INTO t1 VALUES(1835, 65346, 'sixty-five thousand three hundred forty-six');\nINSERT INTO t1 VALUES(1836, 89373, 'eighty-nine thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(1837, 82247, 'eighty-two thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(1838, 56783, 'fifty-six thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(1839, 31699, 'thirty-one thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(1840, 90500, 'ninety thousand five hundred');\nINSERT INTO t1 VALUES(1841, 5814, 'five thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(1842, 70783, 'seventy thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(1843, 56289, 'fifty-six thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(1844, 54563, 'fifty-four thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(1845, 9581, 'nine thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(1846, 16333, 'sixteen thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(1847, 53931, 'fifty-three thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(1848, 42614, 'forty-two thousand six hundred fourteen');\nINSERT INTO t1 VALUES(1849, 33934, 'thirty-three thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(1850, 12692, 'twelve thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(1851, 99199, 'ninety-nine thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(1852, 55981, 'fifty-five thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(1853, 75956, 'seventy-five thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(1854, 58650, 'fifty-eight thousand six hundred fifty');\nINSERT INTO t1 VALUES(1855, 52334, 'fifty-two thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(1856, 38002, 'thirty-eight thousand two');\nINSERT INTO t1 VALUES(1857, 24622, 'twenty-four thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(1858, 44374, 'forty-four thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(1859, 58616, 'fifty-eight thousand six hundred sixteen');\nINSERT INTO t1 VALUES(1860, 71514, 'seventy-one thousand five hundred fourteen');\nINSERT INTO t1 VALUES(1861, 66250, 'sixty-six thousand two hundred fifty');\nINSERT INTO t1 VALUES(1862, 42565, 'forty-two thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1863, 99175, 'ninety-nine thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(1864, 35068, 'thirty-five thousand sixty-eight');\nINSERT INTO t1 VALUES(1865, 62625, 'sixty-two thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(1866, 68705, 'sixty-eight thousand seven hundred five');\nINSERT INTO t1 VALUES(1867, 23790, 'twenty-three thousand seven hundred ninety');\nINSERT INTO t1 VALUES(1868, 67381, 'sixty-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(1869, 37053, 'thirty-seven thousand fifty-three');\nINSERT INTO t1 VALUES(1870, 69299, 'sixty-nine thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(1871, 96784, 'ninety-six thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(1872, 6265, 'six thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(1873, 47283, 'forty-seven thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(1874, 69166, 'sixty-nine thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(1875, 92163, 'ninety-two thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(1876, 63622, 'sixty-three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(1877, 98593, 'ninety-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(1878, 15073, 'fifteen thousand seventy-three');\nINSERT INTO t1 VALUES(1879, 33287, 'thirty-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(1880, 26037, 'twenty-six thousand thirty-seven');\nINSERT INTO t1 VALUES(1881, 32387, 'thirty-two thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(1882, 53669, 'fifty-three thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(1883, 5823, 'five thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(1884, 95759, 'ninety-five thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(1885, 53420, 'fifty-three thousand four hundred twenty');\nINSERT INTO t1 VALUES(1886, 89223, 'eighty-nine thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(1887, 4678, 'four thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(1888, 75335, 'seventy-five thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(1889, 50793, 'fifty thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(1890, 74766, 'seventy-four thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(1891, 11605, 'eleven thousand six hundred five');\nINSERT INTO t1 VALUES(1892, 67438, 'sixty-seven thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(1893, 45553, 'forty-five thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(1894, 35335, 'thirty-five thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(1895, 61390, 'sixty-one thousand three hundred ninety');\nINSERT INTO t1 VALUES(1896, 94733, 'ninety-four thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(1897, 16900, 'sixteen thousand nine hundred');\nINSERT INTO t1 VALUES(1898, 35421, 'thirty-five thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(1899, 18961, 'eighteen thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(1900, 48884, 'forty-eight thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(1901, 28538, 'twenty-eight thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(1902, 94230, 'ninety-four thousand two hundred thirty');\nINSERT INTO t1 VALUES(1903, 46487, 'forty-six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(1904, 27449, 'twenty-seven thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(1905, 26838, 'twenty-six thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(1906, 49891, 'forty-nine thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(1907, 10235, 'ten thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(1908, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t1 VALUES(1909, 91019, 'ninety-one thousand nineteen');\nINSERT INTO t1 VALUES(1910, 65565, 'sixty-five thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(1911, 49051, 'forty-nine thousand fifty-one');\nINSERT INTO t1 VALUES(1912, 57788, 'fifty-seven thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(1913, 36436, 'thirty-six thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(1914, 64349, 'sixty-four thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(1915, 90040, 'ninety thousand forty');\nINSERT INTO t1 VALUES(1916, 50196, 'fifty thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1917, 97652, 'ninety-seven thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(1918, 73380, 'seventy-three thousand three hundred eighty');\nINSERT INTO t1 VALUES(1919, 2058, 'two thousand fifty-eight');\nINSERT INTO t1 VALUES(1920, 13469, 'thirteen thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(1921, 4344, 'four thousand three hundred forty-four');\nINSERT INTO t1 VALUES(1922, 27203, 'twenty-seven thousand two hundred three');\nINSERT INTO t1 VALUES(1923, 42999, 'forty-two thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(1924, 8211, 'eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(1925, 1322, 'one thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(1926, 39539, 'thirty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(1927, 86855, 'eighty-six thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(1928, 83286, 'eighty-three thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(1929, 24826, 'twenty-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(1930, 66020, 'sixty-six thousand twenty');\nINSERT INTO t1 VALUES(1931, 2534, 'two thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(1932, 9301, 'nine thousand three hundred one');\nINSERT INTO t1 VALUES(1933, 52233, 'fifty-two thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(1934, 41527, 'forty-one thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(1935, 57077, 'fifty-seven thousand seventy-seven');\nINSERT INTO t1 VALUES(1936, 23554, 'twenty-three thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(1937, 65439, 'sixty-five thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(1938, 98003, 'ninety-eight thousand three');\nINSERT INTO t1 VALUES(1939, 29890, 'twenty-nine thousand eight hundred ninety');\nINSERT INTO t1 VALUES(1940, 63910, 'sixty-three thousand nine hundred ten');\nINSERT INTO t1 VALUES(1941, 26234, 'twenty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(1942, 64618, 'sixty-four thousand six hundred eighteen');\nINSERT INTO t1 VALUES(1943, 74275, 'seventy-four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(1944, 54969, 'fifty-four thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(1945, 46927, 'forty-six thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(1946, 91259, 'ninety-one thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(1947, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t1 VALUES(1948, 70990, 'seventy thousand nine hundred ninety');\nINSERT INTO t1 VALUES(1949, 62246, 'sixty-two thousand two hundred forty-six');\nINSERT INTO t1 VALUES(1950, 78112, 'seventy-eight thousand one hundred twelve');\nINSERT INTO t1 VALUES(1951, 1090, 'one thousand ninety');\nINSERT INTO t1 VALUES(1952, 5196, 'five thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(1953, 53868, 'fifty-three thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(1954, 65249, 'sixty-five thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(1955, 18779, 'eighteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(1956, 1451, 'one thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(1957, 97039, 'ninety-seven thousand thirty-nine');\nINSERT INTO t1 VALUES(1958, 38436, 'thirty-eight thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(1959, 47354, 'forty-seven thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(1960, 73907, 'seventy-three thousand nine hundred seven');\nINSERT INTO t1 VALUES(1961, 38768, 'thirty-eight thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(1962, 81604, 'eighty-one thousand six hundred four');\nINSERT INTO t1 VALUES(1963, 39665, 'thirty-nine thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(1964, 14586, 'fourteen thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(1965, 94552, 'ninety-four thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(1966, 27538, 'twenty-seven thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(1967, 61650, 'sixty-one thousand six hundred fifty');\nINSERT INTO t1 VALUES(1968, 49645, 'forty-nine thousand six hundred forty-five');\nINSERT INTO t1 VALUES(1969, 90898, 'ninety thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(1970, 65710, 'sixty-five thousand seven hundred ten');\nINSERT INTO t1 VALUES(1971, 44712, 'forty-four thousand seven hundred twelve');\nINSERT INTO t1 VALUES(1972, 27578, 'twenty-seven thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(1973, 96240, 'ninety-six thousand two hundred forty');\nINSERT INTO t1 VALUES(1974, 77263, 'seventy-seven thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(1975, 75560, 'seventy-five thousand five hundred sixty');\nINSERT INTO t1 VALUES(1976, 26053, 'twenty-six thousand fifty-three');\nINSERT INTO t1 VALUES(1977, 62047, 'sixty-two thousand forty-seven');\nINSERT INTO t1 VALUES(1978, 71099, 'seventy-one thousand ninety-nine');\nINSERT INTO t1 VALUES(1979, 77506, 'seventy-seven thousand five hundred six');\nINSERT INTO t1 VALUES(1980, 15059, 'fifteen thousand fifty-nine');\nINSERT INTO t1 VALUES(1981, 21642, 'twenty-one thousand six hundred forty-two');\nINSERT INTO t1 VALUES(1982, 18236, 'eighteen thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(1983, 21430, 'twenty-one thousand four hundred thirty');\nINSERT INTO t1 VALUES(1984, 83281, 'eighty-three thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(1985, 65713, 'sixty-five thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(1986, 33900, 'thirty-three thousand nine hundred');\nINSERT INTO t1 VALUES(1987, 60594, 'sixty thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(1988, 19507, 'nineteen thousand five hundred seven');\nINSERT INTO t1 VALUES(1989, 11432, 'eleven thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(1990, 82606, 'eighty-two thousand six hundred six');\nINSERT INTO t1 VALUES(1991, 96461, 'ninety-six thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(1992, 81533, 'eighty-one thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(1993, 26143, 'twenty-six thousand one hundred forty-three');\nINSERT INTO t1 VALUES(1994, 38308, 'thirty-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(1995, 50209, 'fifty thousand two hundred nine');\nINSERT INTO t1 VALUES(1996, 67682, 'sixty-seven thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(1997, 22627, 'twenty-two thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(1998, 27213, 'twenty-seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(1999, 43147, 'forty-three thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(2000, 84338, 'eighty-four thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(2001, 32584, 'thirty-two thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(2002, 24006, 'twenty-four thousand six');\nINSERT INTO t1 VALUES(2003, 77889, 'seventy-seven thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2004, 2718, 'two thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(2005, 47237, 'forty-seven thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(2006, 49734, 'forty-nine thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(2007, 32911, 'thirty-two thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2008, 37698, 'thirty-seven thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(2009, 3983, 'three thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(2010, 58862, 'fifty-eight thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(2011, 97073, 'ninety-seven thousand seventy-three');\nINSERT INTO t1 VALUES(2012, 23589, 'twenty-three thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(2013, 57491, 'fifty-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(2014, 34374, 'thirty-four thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(2015, 42560, 'forty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(2016, 67335, 'sixty-seven thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(2017, 17451, 'seventeen thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(2018, 32142, 'thirty-two thousand one hundred forty-two');\nINSERT INTO t1 VALUES(2019, 67189, 'sixty-seven thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(2020, 1272, 'one thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(2021, 22322, 'twenty-two thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(2022, 30653, 'thirty thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(2023, 88768, 'eighty-eight thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(2024, 36977, 'thirty-six thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(2025, 12562, 'twelve thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(2026, 5519, 'five thousand five hundred nineteen');\nINSERT INTO t1 VALUES(2027, 28448, 'twenty-eight thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(2028, 6405, 'six thousand four hundred five');\nINSERT INTO t1 VALUES(2029, 13197, 'thirteen thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(2030, 82940, 'eighty-two thousand nine hundred forty');\nINSERT INTO t1 VALUES(2031, 62586, 'sixty-two thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(2032, 8333, 'eight thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(2033, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t1 VALUES(2034, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(2035, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(2036, 33700, 'thirty-three thousand seven hundred');\nINSERT INTO t1 VALUES(2037, 17884, 'seventeen thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(2038, 819, 'eight hundred nineteen');\nINSERT INTO t1 VALUES(2039, 50886, 'fifty thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(2040, 63433, 'sixty-three thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(2041, 31774, 'thirty-one thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(2042, 89091, 'eighty-nine thousand ninety-one');\nINSERT INTO t1 VALUES(2043, 47676, 'forty-seven thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(2044, 17505, 'seventeen thousand five hundred five');\nINSERT INTO t1 VALUES(2045, 14303, 'fourteen thousand three hundred three');\nINSERT INTO t1 VALUES(2046, 47820, 'forty-seven thousand eight hundred twenty');\nINSERT INTO t1 VALUES(2047, 34030, 'thirty-four thousand thirty');\nINSERT INTO t1 VALUES(2048, 53344, 'fifty-three thousand three hundred forty-four');\nINSERT INTO t1 VALUES(2049, 87145, 'eighty-seven thousand one hundred forty-five');\nINSERT INTO t1 VALUES(2050, 19823, 'nineteen thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(2051, 60898, 'sixty thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(2052, 1048, 'one thousand forty-eight');\nINSERT INTO t1 VALUES(2053, 14591, 'fourteen thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(2054, 72134, 'seventy-two thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(2055, 26114, 'twenty-six thousand one hundred fourteen');\nINSERT INTO t1 VALUES(2056, 16760, 'sixteen thousand seven hundred sixty');\nINSERT INTO t1 VALUES(2057, 33551, 'thirty-three thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(2058, 62061, 'sixty-two thousand sixty-one');\nINSERT INTO t1 VALUES(2059, 20614, 'twenty thousand six hundred fourteen');\nINSERT INTO t1 VALUES(2060, 29190, 'twenty-nine thousand one hundred ninety');\nINSERT INTO t1 VALUES(2061, 6402, 'six thousand four hundred two');\nINSERT INTO t1 VALUES(2062, 86573, 'eighty-six thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(2063, 72194, 'seventy-two thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(2064, 97366, 'ninety-seven thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(2065, 77278, 'seventy-seven thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(2066, 99389, 'ninety-nine thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(2067, 90879, 'ninety thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(2068, 12989, 'twelve thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(2069, 57347, 'fifty-seven thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(2070, 83419, 'eighty-three thousand four hundred nineteen');\nINSERT INTO t1 VALUES(2071, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(2072, 58171, 'fifty-eight thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(2073, 80507, 'eighty thousand five hundred seven');\nINSERT INTO t1 VALUES(2074, 85772, 'eighty-five thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(2075, 36005, 'thirty-six thousand five');\nINSERT INTO t1 VALUES(2076, 823, 'eight hundred twenty-three');\nINSERT INTO t1 VALUES(2077, 86932, 'eighty-six thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(2078, 45283, 'forty-five thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(2079, 90744, 'ninety thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2080, 93349, 'ninety-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(2081, 25191, 'twenty-five thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(2082, 7245, 'seven thousand two hundred forty-five');\nINSERT INTO t1 VALUES(2083, 69413, 'sixty-nine thousand four hundred thirteen');\nINSERT INTO t1 VALUES(2084, 59792, 'fifty-nine thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(2085, 29047, 'twenty-nine thousand forty-seven');\nINSERT INTO t1 VALUES(2086, 47074, 'forty-seven thousand seventy-four');\nINSERT INTO t1 VALUES(2087, 99312, 'ninety-nine thousand three hundred twelve');\nINSERT INTO t1 VALUES(2088, 8974, 'eight thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(2089, 8943, 'eight thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(2090, 9909, 'nine thousand nine hundred nine');\nINSERT INTO t1 VALUES(2091, 43966, 'forty-three thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(2092, 31968, 'thirty-one thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(2093, 13409, 'thirteen thousand four hundred nine');\nINSERT INTO t1 VALUES(2094, 92395, 'ninety-two thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(2095, 43059, 'forty-three thousand fifty-nine');\nINSERT INTO t1 VALUES(2096, 65877, 'sixty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(2097, 5618, 'five thousand six hundred eighteen');\nINSERT INTO t1 VALUES(2098, 92161, 'ninety-two thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(2099, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2100, 99492, 'ninety-nine thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(2101, 19443, 'nineteen thousand four hundred forty-three');\nINSERT INTO t1 VALUES(2102, 41080, 'forty-one thousand eighty');\nINSERT INTO t1 VALUES(2103, 93944, 'ninety-three thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(2104, 24834, 'twenty-four thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(2105, 47394, 'forty-seven thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(2106, 65459, 'sixty-five thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(2107, 16311, 'sixteen thousand three hundred eleven');\nINSERT INTO t1 VALUES(2108, 65066, 'sixty-five thousand sixty-six');\nINSERT INTO t1 VALUES(2109, 60027, 'sixty thousand twenty-seven');\nINSERT INTO t1 VALUES(2110, 94432, 'ninety-four thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(2111, 89314, 'eighty-nine thousand three hundred fourteen');\nINSERT INTO t1 VALUES(2112, 69025, 'sixty-nine thousand twenty-five');\nINSERT INTO t1 VALUES(2113, 19117, 'nineteen thousand one hundred seventeen');\nINSERT INTO t1 VALUES(2114, 43262, 'forty-three thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(2115, 17253, 'seventeen thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(2116, 12387, 'twelve thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(2117, 53532, 'fifty-three thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(2118, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(2119, 12697, 'twelve thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(2120, 52006, 'fifty-two thousand six');\nINSERT INTO t1 VALUES(2121, 71910, 'seventy-one thousand nine hundred ten');\nINSERT INTO t1 VALUES(2122, 94517, 'ninety-four thousand five hundred seventeen');\nINSERT INTO t1 VALUES(2123, 16697, 'sixteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(2124, 37519, 'thirty-seven thousand five hundred nineteen');\nINSERT INTO t1 VALUES(2125, 56287, 'fifty-six thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(2126, 40000, 'forty thousand');\nINSERT INTO t1 VALUES(2127, 47209, 'forty-seven thousand two hundred nine');\nINSERT INTO t1 VALUES(2128, 42196, 'forty-two thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(2129, 70059, 'seventy thousand fifty-nine');\nINSERT INTO t1 VALUES(2130, 72656, 'seventy-two thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(2131, 17395, 'seventeen thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(2132, 66416, 'sixty-six thousand four hundred sixteen');\nINSERT INTO t1 VALUES(2133, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t1 VALUES(2134, 51940, 'fifty-one thousand nine hundred forty');\nINSERT INTO t1 VALUES(2135, 60665, 'sixty thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(2136, 13269, 'thirteen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(2137, 60818, 'sixty thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(2138, 46280, 'forty-six thousand two hundred eighty');\nINSERT INTO t1 VALUES(2139, 42486, 'forty-two thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(2140, 95618, 'ninety-five thousand six hundred eighteen');\nINSERT INTO t1 VALUES(2141, 41888, 'forty-one thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(2142, 4821, 'four thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(2143, 95997, 'ninety-five thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2144, 13602, 'thirteen thousand six hundred two');\nINSERT INTO t1 VALUES(2145, 13524, 'thirteen thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(2146, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(2147, 87644, 'eighty-seven thousand six hundred forty-four');\nINSERT INTO t1 VALUES(2148, 61870, 'sixty-one thousand eight hundred seventy');\nINSERT INTO t1 VALUES(2149, 1495, 'one thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(2150, 33877, 'thirty-three thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(2151, 70578, 'seventy thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(2152, 40349, 'forty thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(2153, 30217, 'thirty thousand two hundred seventeen');\nINSERT INTO t1 VALUES(2154, 12710, 'twelve thousand seven hundred ten');\nINSERT INTO t1 VALUES(2155, 37047, 'thirty-seven thousand forty-seven');\nINSERT INTO t1 VALUES(2156, 92862, 'ninety-two thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(2157, 89794, 'eighty-nine thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(2158, 14549, 'fourteen thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2159, 3124, 'three thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(2160, 67600, 'sixty-seven thousand six hundred');\nINSERT INTO t1 VALUES(2161, 75734, 'seventy-five thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(2162, 61384, 'sixty-one thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(2163, 61911, 'sixty-one thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2164, 99488, 'ninety-nine thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(2165, 81318, 'eighty-one thousand three hundred eighteen');\nINSERT INTO t1 VALUES(2166, 90286, 'ninety thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(2167, 57603, 'fifty-seven thousand six hundred three');\nINSERT INTO t1 VALUES(2168, 79432, 'seventy-nine thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(2169, 88218, 'eighty-eight thousand two hundred eighteen');\nINSERT INTO t1 VALUES(2170, 54452, 'fifty-four thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(2171, 36526, 'thirty-six thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(2172, 66329, 'sixty-six thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(2173, 10991, 'ten thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(2174, 80541, 'eighty thousand five hundred forty-one');\nINSERT INTO t1 VALUES(2175, 20445, 'twenty thousand four hundred forty-five');\nINSERT INTO t1 VALUES(2176, 44857, 'forty-four thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(2177, 57780, 'fifty-seven thousand seven hundred eighty');\nINSERT INTO t1 VALUES(2178, 27865, 'twenty-seven thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(2179, 15842, 'fifteen thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(2180, 40558, 'forty thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(2181, 31458, 'thirty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(2182, 96974, 'ninety-six thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(2183, 83410, 'eighty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(2184, 94541, 'ninety-four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(2185, 24669, 'twenty-four thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(2186, 60160, 'sixty thousand one hundred sixty');\nINSERT INTO t1 VALUES(2187, 66278, 'sixty-six thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(2188, 56964, 'fifty-six thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2189, 16275, 'sixteen thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(2190, 88168, 'eighty-eight thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(2191, 98545, 'ninety-eight thousand five hundred forty-five');\nINSERT INTO t1 VALUES(2192, 79183, 'seventy-nine thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(2193, 81682, 'eighty-one thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(2194, 57766, 'fifty-seven thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(2195, 13950, 'thirteen thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2196, 87696, 'eighty-seven thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(2197, 86376, 'eighty-six thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(2198, 37683, 'thirty-seven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(2199, 74103, 'seventy-four thousand one hundred three');\nINSERT INTO t1 VALUES(2200, 10257, 'ten thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(2201, 28343, 'twenty-eight thousand three hundred forty-three');\nINSERT INTO t1 VALUES(2202, 60849, 'sixty thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(2203, 9361, 'nine thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(2204, 54976, 'fifty-four thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(2205, 7990, 'seven thousand nine hundred ninety');\nINSERT INTO t1 VALUES(2206, 53392, 'fifty-three thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2207, 90975, 'ninety thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(2208, 47139, 'forty-seven thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(2209, 89696, 'eighty-nine thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(2210, 58779, 'fifty-eight thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(2211, 64207, 'sixty-four thousand two hundred seven');\nINSERT INTO t1 VALUES(2212, 57842, 'fifty-seven thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(2213, 27915, 'twenty-seven thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(2214, 95494, 'ninety-five thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(2215, 42037, 'forty-two thousand thirty-seven');\nINSERT INTO t1 VALUES(2216, 15944, 'fifteen thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(2217, 26023, 'twenty-six thousand twenty-three');\nINSERT INTO t1 VALUES(2218, 19083, 'nineteen thousand eighty-three');\nINSERT INTO t1 VALUES(2219, 29411, 'twenty-nine thousand four hundred eleven');\nINSERT INTO t1 VALUES(2220, 20499, 'twenty thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(2221, 34570, 'thirty-four thousand five hundred seventy');\nINSERT INTO t1 VALUES(2222, 69873, 'sixty-nine thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(2223, 87765, 'eighty-seven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(2224, 10477, 'ten thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(2225, 32400, 'thirty-two thousand four hundred');\nINSERT INTO t1 VALUES(2226, 39016, 'thirty-nine thousand sixteen');\nINSERT INTO t1 VALUES(2227, 93999, 'ninety-three thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(2228, 97828, 'ninety-seven thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(2229, 65883, 'sixty-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(2230, 62744, 'sixty-two thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2231, 81946, 'eighty-one thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(2232, 12893, 'twelve thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(2233, 85908, 'eighty-five thousand nine hundred eight');\nINSERT INTO t1 VALUES(2234, 6408, 'six thousand four hundred eight');\nINSERT INTO t1 VALUES(2235, 79758, 'seventy-nine thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(2236, 41544, 'forty-one thousand five hundred forty-four');\nINSERT INTO t1 VALUES(2237, 58853, 'fifty-eight thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(2238, 55209, 'fifty-five thousand two hundred nine');\nINSERT INTO t1 VALUES(2239, 1465, 'one thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(2240, 84837, 'eighty-four thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(2241, 63355, 'sixty-three thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(2242, 19415, 'nineteen thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2243, 31516, 'thirty-one thousand five hundred sixteen');\nINSERT INTO t1 VALUES(2244, 33610, 'thirty-three thousand six hundred ten');\nINSERT INTO t1 VALUES(2245, 93950, 'ninety-three thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2246, 21999, 'twenty-one thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(2247, 8940, 'eight thousand nine hundred forty');\nINSERT INTO t1 VALUES(2248, 74503, 'seventy-four thousand five hundred three');\nINSERT INTO t1 VALUES(2249, 2932, 'two thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(2250, 70455, 'seventy thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(2251, 62804, 'sixty-two thousand eight hundred four');\nINSERT INTO t1 VALUES(2252, 16963, 'sixteen thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(2253, 1770, 'one thousand seven hundred seventy');\nINSERT INTO t1 VALUES(2254, 67716, 'sixty-seven thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(2255, 94196, 'ninety-four thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(2256, 68072, 'sixty-eight thousand seventy-two');\nINSERT INTO t1 VALUES(2257, 67302, 'sixty-seven thousand three hundred two');\nINSERT INTO t1 VALUES(2258, 97465, 'ninety-seven thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(2259, 45332, 'forty-five thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(2260, 65071, 'sixty-five thousand seventy-one');\nINSERT INTO t1 VALUES(2261, 69613, 'sixty-nine thousand six hundred thirteen');\nINSERT INTO t1 VALUES(2262, 37572, 'thirty-seven thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(2263, 2542, 'two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(2264, 61825, 'sixty-one thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(2265, 73221, 'seventy-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(2266, 22978, 'twenty-two thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(2267, 13086, 'thirteen thousand eighty-six');\nINSERT INTO t1 VALUES(2268, 20686, 'twenty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(2269, 8004, 'eight thousand four');\nINSERT INTO t1 VALUES(2270, 90431, 'ninety thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(2271, 58, 'fifty-eight');\nINSERT INTO t1 VALUES(2272, 20304, 'twenty thousand three hundred four');\nINSERT INTO t1 VALUES(2273, 22125, 'twenty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(2274, 94549, 'ninety-four thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2275, 97808, 'ninety-seven thousand eight hundred eight');\nINSERT INTO t1 VALUES(2276, 71594, 'seventy-one thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(2277, 43354, 'forty-three thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(2278, 49271, 'forty-nine thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(2279, 60907, 'sixty thousand nine hundred seven');\nINSERT INTO t1 VALUES(2280, 2904, 'two thousand nine hundred four');\nINSERT INTO t1 VALUES(2281, 97229, 'ninety-seven thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(2282, 14421, 'fourteen thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(2283, 55245, 'fifty-five thousand two hundred forty-five');\nINSERT INTO t1 VALUES(2284, 69892, 'sixty-nine thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(2285, 5737, 'five thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(2286, 25062, 'twenty-five thousand sixty-two');\nINSERT INTO t1 VALUES(2287, 50889, 'fifty thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2288, 28869, 'twenty-eight thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(2289, 82860, 'eighty-two thousand eight hundred sixty');\nINSERT INTO t1 VALUES(2290, 89283, 'eighty-nine thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(2291, 99621, 'ninety-nine thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(2292, 39946, 'thirty-nine thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(2293, 19391, 'nineteen thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(2294, 3698, 'three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(2295, 78749, 'seventy-eight thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(2296, 2650, 'two thousand six hundred fifty');\nINSERT INTO t1 VALUES(2297, 18805, 'eighteen thousand eight hundred five');\nINSERT INTO t1 VALUES(2298, 11225, 'eleven thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(2299, 17736, 'seventeen thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(2300, 73225, 'seventy-three thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(2301, 58326, 'fifty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(2302, 3980, 'three thousand nine hundred eighty');\nINSERT INTO t1 VALUES(2303, 57258, 'fifty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(2304, 52450, 'fifty-two thousand four hundred fifty');\nINSERT INTO t1 VALUES(2305, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t1 VALUES(2306, 13561, 'thirteen thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(2307, 62661, 'sixty-two thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(2308, 37651, 'thirty-seven thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(2309, 60017, 'sixty thousand seventeen');\nINSERT INTO t1 VALUES(2310, 17392, 'seventeen thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2311, 26290, 'twenty-six thousand two hundred ninety');\nINSERT INTO t1 VALUES(2312, 22235, 'twenty-two thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(2313, 66270, 'sixty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(2314, 20680, 'twenty thousand six hundred eighty');\nINSERT INTO t1 VALUES(2315, 10520, 'ten thousand five hundred twenty');\nINSERT INTO t1 VALUES(2316, 58415, 'fifty-eight thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2317, 82197, 'eighty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(2318, 29506, 'twenty-nine thousand five hundred six');\nINSERT INTO t1 VALUES(2319, 72964, 'seventy-two thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2320, 90567, 'ninety thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(2321, 45760, 'forty-five thousand seven hundred sixty');\nINSERT INTO t1 VALUES(2322, 71739, 'seventy-one thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(2323, 9592, 'nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(2324, 27415, 'twenty-seven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2325, 62337, 'sixty-two thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(2326, 81689, 'eighty-one thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(2327, 45573, 'forty-five thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(2328, 68144, 'sixty-eight thousand one hundred forty-four');\nINSERT INTO t1 VALUES(2329, 32860, 'thirty-two thousand eight hundred sixty');\nINSERT INTO t1 VALUES(2330, 56517, 'fifty-six thousand five hundred seventeen');\nINSERT INTO t1 VALUES(2331, 68861, 'sixty-eight thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(2332, 41858, 'forty-one thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(2333, 78410, 'seventy-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(2334, 28237, 'twenty-eight thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(2335, 8088, 'eight thousand eighty-eight');\nINSERT INTO t1 VALUES(2336, 42499, 'forty-two thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(2337, 7713, 'seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(2338, 20191, 'twenty thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(2339, 1775, 'one thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(2340, 7129, 'seven thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(2341, 11178, 'eleven thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(2342, 49892, 'forty-nine thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(2343, 33058, 'thirty-three thousand fifty-eight');\nINSERT INTO t1 VALUES(2344, 67220, 'sixty-seven thousand two hundred twenty');\nINSERT INTO t1 VALUES(2345, 58015, 'fifty-eight thousand fifteen');\nINSERT INTO t1 VALUES(2346, 38057, 'thirty-eight thousand fifty-seven');\nINSERT INTO t1 VALUES(2347, 4161, 'four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(2348, 25537, 'twenty-five thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(2349, 41878, 'forty-one thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(2350, 83886, 'eighty-three thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(2351, 98891, 'ninety-eight thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(2352, 47779, 'forty-seven thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(2353, 58461, 'fifty-eight thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(2354, 30455, 'thirty thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(2355, 27043, 'twenty-seven thousand forty-three');\nINSERT INTO t1 VALUES(2356, 59128, 'fifty-nine thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(2357, 97822, 'ninety-seven thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(2358, 77581, 'seventy-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(2359, 4331, 'four thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(2360, 8507, 'eight thousand five hundred seven');\nINSERT INTO t1 VALUES(2361, 99399, 'ninety-nine thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(2362, 51476, 'fifty-one thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(2363, 53200, 'fifty-three thousand two hundred');\nINSERT INTO t1 VALUES(2364, 13266, 'thirteen thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(2365, 15702, 'fifteen thousand seven hundred two');\nINSERT INTO t1 VALUES(2366, 11484, 'eleven thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(2367, 900, 'nine hundred');\nINSERT INTO t1 VALUES(2368, 16150, 'sixteen thousand one hundred fifty');\nINSERT INTO t1 VALUES(2369, 93615, 'ninety-three thousand six hundred fifteen');\nINSERT INTO t1 VALUES(2370, 1615, 'one thousand six hundred fifteen');\nINSERT INTO t1 VALUES(2371, 28996, 'twenty-eight thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(2372, 56584, 'fifty-six thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(2373, 11800, 'eleven thousand eight hundred');\nINSERT INTO t1 VALUES(2374, 37889, 'thirty-seven thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2375, 72762, 'seventy-two thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(2376, 7831, 'seven thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(2377, 35280, 'thirty-five thousand two hundred eighty');\nINSERT INTO t1 VALUES(2378, 50068, 'fifty thousand sixty-eight');\nINSERT INTO t1 VALUES(2379, 83693, 'eighty-three thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(2380, 59865, 'fifty-nine thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(2381, 10358, 'ten thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(2382, 16362, 'sixteen thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(2383, 84725, 'eighty-four thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(2384, 35300, 'thirty-five thousand three hundred');\nINSERT INTO t1 VALUES(2385, 74518, 'seventy-four thousand five hundred eighteen');\nINSERT INTO t1 VALUES(2386, 61006, 'sixty-one thousand six');\nINSERT INTO t1 VALUES(2387, 12851, 'twelve thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(2388, 24086, 'twenty-four thousand eighty-six');\nINSERT INTO t1 VALUES(2389, 22433, 'twenty-two thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(2390, 15308, 'fifteen thousand three hundred eight');\nINSERT INTO t1 VALUES(2391, 79011, 'seventy-nine thousand eleven');\nINSERT INTO t1 VALUES(2392, 10864, 'ten thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(2393, 18549, 'eighteen thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2394, 17322, 'seventeen thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(2395, 29213, 'twenty-nine thousand two hundred thirteen');\nINSERT INTO t1 VALUES(2396, 1653, 'one thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(2397, 95919, 'ninety-five thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(2398, 26201, 'twenty-six thousand two hundred one');\nINSERT INTO t1 VALUES(2399, 73906, 'seventy-three thousand nine hundred six');\nINSERT INTO t1 VALUES(2400, 15889, 'fifteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2401, 15530, 'fifteen thousand five hundred thirty');\nINSERT INTO t1 VALUES(2402, 34907, 'thirty-four thousand nine hundred seven');\nINSERT INTO t1 VALUES(2403, 22382, 'twenty-two thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(2404, 14112, 'fourteen thousand one hundred twelve');\nINSERT INTO t1 VALUES(2405, 64721, 'sixty-four thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(2406, 3153, 'three thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(2407, 3035, 'three thousand thirty-five');\nINSERT INTO t1 VALUES(2408, 55440, 'fifty-five thousand four hundred forty');\nINSERT INTO t1 VALUES(2409, 69326, 'sixty-nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(2410, 23841, 'twenty-three thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(2411, 15007, 'fifteen thousand seven');\nINSERT INTO t1 VALUES(2412, 19219, 'nineteen thousand two hundred nineteen');\nINSERT INTO t1 VALUES(2413, 51376, 'fifty-one thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(2414, 35692, 'thirty-five thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2415, 55305, 'fifty-five thousand three hundred five');\nINSERT INTO t1 VALUES(2416, 97024, 'ninety-seven thousand twenty-four');\nINSERT INTO t1 VALUES(2417, 12411, 'twelve thousand four hundred eleven');\nINSERT INTO t1 VALUES(2418, 39889, 'thirty-nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2419, 5699, 'five thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(2420, 84155, 'eighty-four thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(2421, 90607, 'ninety thousand six hundred seven');\nINSERT INTO t1 VALUES(2422, 69467, 'sixty-nine thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2423, 58013, 'fifty-eight thousand thirteen');\nINSERT INTO t1 VALUES(2424, 3519, 'three thousand five hundred nineteen');\nINSERT INTO t1 VALUES(2425, 96453, 'ninety-six thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(2426, 87649, 'eighty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(2427, 83414, 'eighty-three thousand four hundred fourteen');\nINSERT INTO t1 VALUES(2428, 92843, 'ninety-two thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(2429, 32042, 'thirty-two thousand forty-two');\nINSERT INTO t1 VALUES(2430, 12308, 'twelve thousand three hundred eight');\nINSERT INTO t1 VALUES(2431, 54515, 'fifty-four thousand five hundred fifteen');\nINSERT INTO t1 VALUES(2432, 2344, 'two thousand three hundred forty-four');\nINSERT INTO t1 VALUES(2433, 2867, 'two thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(2434, 96731, 'ninety-six thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(2435, 30907, 'thirty thousand nine hundred seven');\nINSERT INTO t1 VALUES(2436, 15286, 'fifteen thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(2437, 11164, 'eleven thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(2438, 31873, 'thirty-one thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(2439, 78681, 'seventy-eight thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(2440, 4509, 'four thousand five hundred nine');\nINSERT INTO t1 VALUES(2441, 45499, 'forty-five thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(2442, 49464, 'forty-nine thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(2443, 91260, 'ninety-one thousand two hundred sixty');\nINSERT INTO t1 VALUES(2444, 30905, 'thirty thousand nine hundred five');\nINSERT INTO t1 VALUES(2445, 86356, 'eighty-six thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(2446, 86433, 'eighty-six thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(2447, 48148, 'forty-eight thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(2448, 89993, 'eighty-nine thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(2449, 56655, 'fifty-six thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(2450, 81280, 'eighty-one thousand two hundred eighty');\nINSERT INTO t1 VALUES(2451, 79133, 'seventy-nine thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(2452, 75462, 'seventy-five thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(2453, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(2454, 23459, 'twenty-three thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(2455, 51911, 'fifty-one thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2456, 17794, 'seventeen thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(2457, 89526, 'eighty-nine thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(2458, 33314, 'thirty-three thousand three hundred fourteen');\nINSERT INTO t1 VALUES(2459, 52183, 'fifty-two thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(2460, 16504, 'sixteen thousand five hundred four');\nINSERT INTO t1 VALUES(2461, 70874, 'seventy thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2462, 96805, 'ninety-six thousand eight hundred five');\nINSERT INTO t1 VALUES(2463, 56528, 'fifty-six thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(2464, 85960, 'eighty-five thousand nine hundred sixty');\nINSERT INTO t1 VALUES(2465, 72538, 'seventy-two thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(2466, 62462, 'sixty-two thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(2467, 49864, 'forty-nine thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(2468, 61035, 'sixty-one thousand thirty-five');\nINSERT INTO t1 VALUES(2469, 49017, 'forty-nine thousand seventeen');\nINSERT INTO t1 VALUES(2470, 71323, 'seventy-one thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(2471, 55874, 'fifty-five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2472, 10485, 'ten thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(2473, 9879, 'nine thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(2474, 80428, 'eighty thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(2475, 14950, 'fourteen thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2476, 79110, 'seventy-nine thousand one hundred ten');\nINSERT INTO t1 VALUES(2477, 12431, 'twelve thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(2478, 7210, 'seven thousand two hundred ten');\nINSERT INTO t1 VALUES(2479, 54432, 'fifty-four thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(2480, 79469, 'seventy-nine thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(2481, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(2482, 66429, 'sixty-six thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(2483, 59248, 'fifty-nine thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(2484, 64539, 'sixty-four thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2485, 87603, 'eighty-seven thousand six hundred three');\nINSERT INTO t1 VALUES(2486, 27231, 'twenty-seven thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(2487, 59204, 'fifty-nine thousand two hundred four');\nINSERT INTO t1 VALUES(2488, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t1 VALUES(2489, 50385, 'fifty thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(2490, 62834, 'sixty-two thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(2491, 13068, 'thirteen thousand sixty-eight');\nINSERT INTO t1 VALUES(2492, 63254, 'sixty-three thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2493, 27861, 'twenty-seven thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(2494, 6889, 'six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(2495, 12416, 'twelve thousand four hundred sixteen');\nINSERT INTO t1 VALUES(2496, 48031, 'forty-eight thousand thirty-one');\nINSERT INTO t1 VALUES(2497, 19282, 'nineteen thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(2498, 16693, 'sixteen thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(2499, 74076, 'seventy-four thousand seventy-six');\nINSERT INTO t1 VALUES(2500, 88162, 'eighty-eight thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(2501, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t1 VALUES(2502, 81022, 'eighty-one thousand twenty-two');\nINSERT INTO t1 VALUES(2503, 99539, 'ninety-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2504, 9874, 'nine thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2505, 73968, 'seventy-three thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(2506, 13400, 'thirteen thousand four hundred');\nINSERT INTO t1 VALUES(2507, 66477, 'sixty-six thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(2508, 533, 'five hundred thirty-three');\nINSERT INTO t1 VALUES(2509, 48806, 'forty-eight thousand eight hundred six');\nINSERT INTO t1 VALUES(2510, 83847, 'eighty-three thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(2511, 54325, 'fifty-four thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(2512, 88430, 'eighty-eight thousand four hundred thirty');\nINSERT INTO t1 VALUES(2513, 12820, 'twelve thousand eight hundred twenty');\nINSERT INTO t1 VALUES(2514, 78692, 'seventy-eight thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2515, 80277, 'eighty thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(2516, 16435, 'sixteen thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2517, 48009, 'forty-eight thousand nine');\nINSERT INTO t1 VALUES(2518, 84351, 'eighty-four thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(2519, 86561, 'eighty-six thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(2520, 55963, 'fifty-five thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(2521, 78525, 'seventy-eight thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(2522, 80180, 'eighty thousand one hundred eighty');\nINSERT INTO t1 VALUES(2523, 55281, 'fifty-five thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(2524, 47920, 'forty-seven thousand nine hundred twenty');\nINSERT INTO t1 VALUES(2525, 71791, 'seventy-one thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(2526, 88415, 'eighty-eight thousand four hundred fifteen');\nINSERT INTO t1 VALUES(2527, 98768, 'ninety-eight thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(2528, 13409, 'thirteen thousand four hundred nine');\nINSERT INTO t1 VALUES(2529, 79920, 'seventy-nine thousand nine hundred twenty');\nINSERT INTO t1 VALUES(2530, 58758, 'fifty-eight thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(2531, 35392, 'thirty-five thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2532, 31261, 'thirty-one thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(2533, 78315, 'seventy-eight thousand three hundred fifteen');\nINSERT INTO t1 VALUES(2534, 7461, 'seven thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(2535, 33520, 'thirty-three thousand five hundred twenty');\nINSERT INTO t1 VALUES(2536, 49764, 'forty-nine thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(2537, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t1 VALUES(2538, 6997, 'six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2539, 81872, 'eighty-one thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(2540, 74836, 'seventy-four thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(2541, 92051, 'ninety-two thousand fifty-one');\nINSERT INTO t1 VALUES(2542, 40503, 'forty thousand five hundred three');\nINSERT INTO t1 VALUES(2543, 46298, 'forty-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(2544, 27617, 'twenty-seven thousand six hundred seventeen');\nINSERT INTO t1 VALUES(2545, 29551, 'twenty-nine thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(2546, 7529, 'seven thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(2547, 56522, 'fifty-six thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(2548, 5626, 'five thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(2549, 2254, 'two thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2550, 46069, 'forty-six thousand sixty-nine');\nINSERT INTO t1 VALUES(2551, 9090, 'nine thousand ninety');\nINSERT INTO t1 VALUES(2552, 86773, 'eighty-six thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2553, 99205, 'ninety-nine thousand two hundred five');\nINSERT INTO t1 VALUES(2554, 20579, 'twenty thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(2555, 64280, 'sixty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(2556, 87563, 'eighty-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(2557, 4312, 'four thousand three hundred twelve');\nINSERT INTO t1 VALUES(2558, 6025, 'six thousand twenty-five');\nINSERT INTO t1 VALUES(2559, 78763, 'seventy-eight thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(2560, 26154, 'twenty-six thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(2561, 72939, 'seventy-two thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(2562, 99853, 'ninety-nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(2563, 65317, 'sixty-five thousand three hundred seventeen');\nINSERT INTO t1 VALUES(2564, 57917, 'fifty-seven thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(2565, 77517, 'seventy-seven thousand five hundred seventeen');\nINSERT INTO t1 VALUES(2566, 73037, 'seventy-three thousand thirty-seven');\nINSERT INTO t1 VALUES(2567, 38481, 'thirty-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(2568, 22911, 'twenty-two thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2569, 63676, 'sixty-three thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(2570, 56928, 'fifty-six thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(2571, 36467, 'thirty-six thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2572, 44792, 'forty-four thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(2573, 92596, 'ninety-two thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(2574, 17935, 'seventeen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(2575, 97359, 'ninety-seven thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(2576, 91776, 'ninety-one thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(2577, 31009, 'thirty-one thousand nine');\nINSERT INTO t1 VALUES(2578, 72743, 'seventy-two thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(2579, 69918, 'sixty-nine thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(2580, 83414, 'eighty-three thousand four hundred fourteen');\nINSERT INTO t1 VALUES(2581, 92738, 'ninety-two thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(2582, 72964, 'seventy-two thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2583, 88476, 'eighty-eight thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(2584, 67391, 'sixty-seven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(2585, 56497, 'fifty-six thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(2586, 60464, 'sixty thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(2587, 37357, 'thirty-seven thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(2588, 41958, 'forty-one thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(2589, 25032, 'twenty-five thousand thirty-two');\nINSERT INTO t1 VALUES(2590, 83740, 'eighty-three thousand seven hundred forty');\nINSERT INTO t1 VALUES(2591, 53590, 'fifty-three thousand five hundred ninety');\nINSERT INTO t1 VALUES(2592, 71491, 'seventy-one thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(2593, 14785, 'fourteen thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(2594, 41600, 'forty-one thousand six hundred');\nINSERT INTO t1 VALUES(2595, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(2596, 71601, 'seventy-one thousand six hundred one');\nINSERT INTO t1 VALUES(2597, 96837, 'ninety-six thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(2598, 3363, 'three thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(2599, 64002, 'sixty-four thousand two');\nINSERT INTO t1 VALUES(2600, 89915, 'eighty-nine thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(2601, 95469, 'ninety-five thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(2602, 44288, 'forty-four thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(2603, 85965, 'eighty-five thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(2604, 91882, 'ninety-one thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(2605, 513, 'five hundred thirteen');\nINSERT INTO t1 VALUES(2606, 5732, 'five thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(2607, 96851, 'ninety-six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(2608, 91170, 'ninety-one thousand one hundred seventy');\nINSERT INTO t1 VALUES(2609, 1228, 'one thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(2610, 82357, 'eighty-two thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(2611, 6670, 'six thousand six hundred seventy');\nINSERT INTO t1 VALUES(2612, 26586, 'twenty-six thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(2613, 79482, 'seventy-nine thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(2614, 55343, 'fifty-five thousand three hundred forty-three');\nINSERT INTO t1 VALUES(2615, 20144, 'twenty thousand one hundred forty-four');\nINSERT INTO t1 VALUES(2616, 11751, 'eleven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(2617, 60610, 'sixty thousand six hundred ten');\nINSERT INTO t1 VALUES(2618, 56404, 'fifty-six thousand four hundred four');\nINSERT INTO t1 VALUES(2619, 80658, 'eighty thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(2620, 8435, 'eight thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2621, 46351, 'forty-six thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(2622, 99832, 'ninety-nine thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(2623, 6900, 'six thousand nine hundred');\nINSERT INTO t1 VALUES(2624, 7675, 'seven thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(2625, 55956, 'fifty-five thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(2626, 37113, 'thirty-seven thousand one hundred thirteen');\nINSERT INTO t1 VALUES(2627, 4972, 'four thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(2628, 18256, 'eighteen thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(2629, 40221, 'forty thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(2630, 95172, 'ninety-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(2631, 92335, 'ninety-two thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(2632, 84250, 'eighty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(2633, 62240, 'sixty-two thousand two hundred forty');\nINSERT INTO t1 VALUES(2634, 83961, 'eighty-three thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(2635, 43912, 'forty-three thousand nine hundred twelve');\nINSERT INTO t1 VALUES(2636, 7170, 'seven thousand one hundred seventy');\nINSERT INTO t1 VALUES(2637, 73714, 'seventy-three thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(2638, 53959, 'fifty-three thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(2639, 61730, 'sixty-one thousand seven hundred thirty');\nINSERT INTO t1 VALUES(2640, 39655, 'thirty-nine thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(2641, 93862, 'ninety-three thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(2642, 45652, 'forty-five thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(2643, 7056, 'seven thousand fifty-six');\nINSERT INTO t1 VALUES(2644, 1046, 'one thousand forty-six');\nINSERT INTO t1 VALUES(2645, 95743, 'ninety-five thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(2646, 70708, 'seventy thousand seven hundred eight');\nINSERT INTO t1 VALUES(2647, 76902, 'seventy-six thousand nine hundred two');\nINSERT INTO t1 VALUES(2648, 3525, 'three thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(2649, 65048, 'sixty-five thousand forty-eight');\nINSERT INTO t1 VALUES(2650, 91880, 'ninety-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(2651, 80301, 'eighty thousand three hundred one');\nINSERT INTO t1 VALUES(2652, 25464, 'twenty-five thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(2653, 90215, 'ninety thousand two hundred fifteen');\nINSERT INTO t1 VALUES(2654, 88511, 'eighty-eight thousand five hundred eleven');\nINSERT INTO t1 VALUES(2655, 55773, 'fifty-five thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2656, 29924, 'twenty-nine thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(2657, 53921, 'fifty-three thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(2658, 90428, 'ninety thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(2659, 88357, 'eighty-eight thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(2660, 59997, 'fifty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2661, 17591, 'seventeen thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(2662, 54844, 'fifty-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(2663, 35516, 'thirty-five thousand five hundred sixteen');\nINSERT INTO t1 VALUES(2664, 5025, 'five thousand twenty-five');\nINSERT INTO t1 VALUES(2665, 54406, 'fifty-four thousand four hundred six');\nINSERT INTO t1 VALUES(2666, 69939, 'sixty-nine thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(2667, 92861, 'ninety-two thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(2668, 11765, 'eleven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(2669, 59087, 'fifty-nine thousand eighty-seven');\nINSERT INTO t1 VALUES(2670, 70269, 'seventy thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(2671, 80231, 'eighty thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(2672, 35475, 'thirty-five thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(2673, 82681, 'eighty-two thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(2674, 2067, 'two thousand sixty-seven');\nINSERT INTO t1 VALUES(2675, 49348, 'forty-nine thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(2676, 36543, 'thirty-six thousand five hundred forty-three');\nINSERT INTO t1 VALUES(2677, 86308, 'eighty-six thousand three hundred eight');\nINSERT INTO t1 VALUES(2678, 43122, 'forty-three thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(2679, 81938, 'eighty-one thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(2680, 24728, 'twenty-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(2681, 91959, 'ninety-one thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(2682, 74241, 'seventy-four thousand two hundred forty-one');\nINSERT INTO t1 VALUES(2683, 48075, 'forty-eight thousand seventy-five');\nINSERT INTO t1 VALUES(2684, 72660, 'seventy-two thousand six hundred sixty');\nINSERT INTO t1 VALUES(2685, 33248, 'thirty-three thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(2686, 4872, 'four thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(2687, 31241, 'thirty-one thousand two hundred forty-one');\nINSERT INTO t1 VALUES(2688, 34133, 'thirty-four thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(2689, 60159, 'sixty thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(2690, 7162, 'seven thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(2691, 78309, 'seventy-eight thousand three hundred nine');\nINSERT INTO t1 VALUES(2692, 50699, 'fifty thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(2693, 6471, 'six thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(2694, 90614, 'ninety thousand six hundred fourteen');\nINSERT INTO t1 VALUES(2695, 82933, 'eighty-two thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(2696, 82273, 'eighty-two thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(2697, 25635, 'twenty-five thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(2698, 35610, 'thirty-five thousand six hundred ten');\nINSERT INTO t1 VALUES(2699, 98912, 'ninety-eight thousand nine hundred twelve');\nINSERT INTO t1 VALUES(2700, 91444, 'ninety-one thousand four hundred forty-four');\nINSERT INTO t1 VALUES(2701, 1914, 'one thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(2702, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(2703, 34346, 'thirty-four thousand three hundred forty-six');\nINSERT INTO t1 VALUES(2704, 7228, 'seven thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(2705, 1019, 'one thousand nineteen');\nINSERT INTO t1 VALUES(2706, 26110, 'twenty-six thousand one hundred ten');\nINSERT INTO t1 VALUES(2707, 97745, 'ninety-seven thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(2708, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(2709, 65242, 'sixty-five thousand two hundred forty-two');\nINSERT INTO t1 VALUES(2710, 65699, 'sixty-five thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(2711, 19845, 'nineteen thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(2712, 57512, 'fifty-seven thousand five hundred twelve');\nINSERT INTO t1 VALUES(2713, 14301, 'fourteen thousand three hundred one');\nINSERT INTO t1 VALUES(2714, 23734, 'twenty-three thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(2715, 14007, 'fourteen thousand seven');\nINSERT INTO t1 VALUES(2716, 70178, 'seventy thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(2717, 4880, 'four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(2718, 86278, 'eighty-six thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(2719, 53940, 'fifty-three thousand nine hundred forty');\nINSERT INTO t1 VALUES(2720, 18788, 'eighteen thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(2721, 90716, 'ninety thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(2722, 54836, 'fifty-four thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(2723, 11911, 'eleven thousand nine hundred eleven');\nINSERT INTO t1 VALUES(2724, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t1 VALUES(2725, 84291, 'eighty-four thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(2726, 72900, 'seventy-two thousand nine hundred');\nINSERT INTO t1 VALUES(2727, 27958, 'twenty-seven thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(2728, 54297, 'fifty-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(2729, 11001, 'eleven thousand one');\nINSERT INTO t1 VALUES(2730, 58346, 'fifty-eight thousand three hundred forty-six');\nINSERT INTO t1 VALUES(2731, 11777, 'eleven thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(2732, 46942, 'forty-six thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(2733, 54566, 'fifty-four thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(2734, 70837, 'seventy thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(2735, 63581, 'sixty-three thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(2736, 37599, 'thirty-seven thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(2737, 44741, 'forty-four thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(2738, 84546, 'eighty-four thousand five hundred forty-six');\nINSERT INTO t1 VALUES(2739, 23859, 'twenty-three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(2740, 85683, 'eighty-five thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(2741, 13524, 'thirteen thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(2742, 34650, 'thirty-four thousand six hundred fifty');\nINSERT INTO t1 VALUES(2743, 62314, 'sixty-two thousand three hundred fourteen');\nINSERT INTO t1 VALUES(2744, 91312, 'ninety-one thousand three hundred twelve');\nINSERT INTO t1 VALUES(2745, 64279, 'sixty-four thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(2746, 87514, 'eighty-seven thousand five hundred fourteen');\nINSERT INTO t1 VALUES(2747, 30318, 'thirty thousand three hundred eighteen');\nINSERT INTO t1 VALUES(2748, 22735, 'twenty-two thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(2749, 29545, 'twenty-nine thousand five hundred forty-five');\nINSERT INTO t1 VALUES(2750, 73394, 'seventy-three thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(2751, 80392, 'eighty thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(2752, 1304, 'one thousand three hundred four');\nINSERT INTO t1 VALUES(2753, 1972, 'one thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(2754, 33235, 'thirty-three thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(2755, 18744, 'eighteen thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2756, 77012, 'seventy-seven thousand twelve');\nINSERT INTO t1 VALUES(2757, 56610, 'fifty-six thousand six hundred ten');\nINSERT INTO t1 VALUES(2758, 58529, 'fifty-eight thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(2759, 57360, 'fifty-seven thousand three hundred sixty');\nINSERT INTO t1 VALUES(2760, 44061, 'forty-four thousand sixty-one');\nINSERT INTO t1 VALUES(2761, 66237, 'sixty-six thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(2762, 6784, 'six thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(2763, 61316, 'sixty-one thousand three hundred sixteen');\nINSERT INTO t1 VALUES(2764, 20221, 'twenty thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(2765, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2766, 64468, 'sixty-four thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(2767, 43869, 'forty-three thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(2768, 15308, 'fifteen thousand three hundred eight');\nINSERT INTO t1 VALUES(2769, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t1 VALUES(2770, 69527, 'sixty-nine thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(2771, 44500, 'forty-four thousand five hundred');\nINSERT INTO t1 VALUES(2772, 59079, 'fifty-nine thousand seventy-nine');\nINSERT INTO t1 VALUES(2773, 20781, 'twenty thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(2774, 68744, 'sixty-eight thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(2775, 10978, 'ten thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(2776, 8299, 'eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(2777, 91620, 'ninety-one thousand six hundred twenty');\nINSERT INTO t1 VALUES(2778, 41435, 'forty-one thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2779, 99436, 'ninety-nine thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(2780, 36081, 'thirty-six thousand eighty-one');\nINSERT INTO t1 VALUES(2781, 24092, 'twenty-four thousand ninety-two');\nINSERT INTO t1 VALUES(2782, 90655, 'ninety thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(2783, 28667, 'twenty-eight thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(2784, 81617, 'eighty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(2785, 28545, 'twenty-eight thousand five hundred forty-five');\nINSERT INTO t1 VALUES(2786, 47984, 'forty-seven thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(2787, 77335, 'seventy-seven thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(2788, 62412, 'sixty-two thousand four hundred twelve');\nINSERT INTO t1 VALUES(2789, 26254, 'twenty-six thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2790, 41027, 'forty-one thousand twenty-seven');\nINSERT INTO t1 VALUES(2791, 57068, 'fifty-seven thousand sixty-eight');\nINSERT INTO t1 VALUES(2792, 39997, 'thirty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2793, 70968, 'seventy thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(2794, 25796, 'twenty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(2795, 10287, 'ten thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(2796, 51979, 'fifty-one thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(2797, 68364, 'sixty-eight thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(2798, 48556, 'forty-eight thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(2799, 26209, 'twenty-six thousand two hundred nine');\nINSERT INTO t1 VALUES(2800, 93800, 'ninety-three thousand eight hundred');\nINSERT INTO t1 VALUES(2801, 73846, 'seventy-three thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(2802, 80377, 'eighty thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(2803, 61989, 'sixty-one thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(2804, 94283, 'ninety-four thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(2805, 88022, 'eighty-eight thousand twenty-two');\nINSERT INTO t1 VALUES(2806, 25041, 'twenty-five thousand forty-one');\nINSERT INTO t1 VALUES(2807, 83727, 'eighty-three thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(2808, 93859, 'ninety-three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(2809, 98330, 'ninety-eight thousand three hundred thirty');\nINSERT INTO t1 VALUES(2810, 37232, 'thirty-seven thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(2811, 20612, 'twenty thousand six hundred twelve');\nINSERT INTO t1 VALUES(2812, 35622, 'thirty-five thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(2813, 54498, 'fifty-four thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(2814, 56241, 'fifty-six thousand two hundred forty-one');\nINSERT INTO t1 VALUES(2815, 69539, 'sixty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2816, 34584, 'thirty-four thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(2817, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(2818, 81867, 'eighty-one thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(2819, 92549, 'ninety-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(2820, 34761, 'thirty-four thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(2821, 23623, 'twenty-three thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(2822, 54534, 'fifty-four thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(2823, 88209, 'eighty-eight thousand two hundred nine');\nINSERT INTO t1 VALUES(2824, 4275, 'four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(2825, 21697, 'twenty-one thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(2826, 44522, 'forty-four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(2827, 96997, 'ninety-six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(2828, 38797, 'thirty-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(2829, 13909, 'thirteen thousand nine hundred nine');\nINSERT INTO t1 VALUES(2830, 31124, 'thirty-one thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(2831, 47155, 'forty-seven thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(2832, 55159, 'fifty-five thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(2833, 30840, 'thirty thousand eight hundred forty');\nINSERT INTO t1 VALUES(2834, 14832, 'fourteen thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(2835, 33261, 'thirty-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(2836, 1953, 'one thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(2837, 47056, 'forty-seven thousand fifty-six');\nINSERT INTO t1 VALUES(2838, 39865, 'thirty-nine thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(2839, 67819, 'sixty-seven thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(2840, 83042, 'eighty-three thousand forty-two');\nINSERT INTO t1 VALUES(2841, 5950, 'five thousand nine hundred fifty');\nINSERT INTO t1 VALUES(2842, 46491, 'forty-six thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(2843, 44768, 'forty-four thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(2844, 32746, 'thirty-two thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(2845, 69329, 'sixty-nine thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(2846, 77198, 'seventy-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(2847, 30662, 'thirty thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(2848, 17307, 'seventeen thousand three hundred seven');\nINSERT INTO t1 VALUES(2849, 87105, 'eighty-seven thousand one hundred five');\nINSERT INTO t1 VALUES(2850, 87224, 'eighty-seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(2851, 61913, 'sixty-one thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(2852, 97151, 'ninety-seven thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(2853, 46319, 'forty-six thousand three hundred nineteen');\nINSERT INTO t1 VALUES(2854, 76826, 'seventy-six thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(2855, 32773, 'thirty-two thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2856, 96352, 'ninety-six thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(2857, 59592, 'fifty-nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(2858, 11789, 'eleven thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(2859, 87608, 'eighty-seven thousand six hundred eight');\nINSERT INTO t1 VALUES(2860, 32504, 'thirty-two thousand five hundred four');\nINSERT INTO t1 VALUES(2861, 52224, 'fifty-two thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(2862, 13033, 'thirteen thousand thirty-three');\nINSERT INTO t1 VALUES(2863, 18130, 'eighteen thousand one hundred thirty');\nINSERT INTO t1 VALUES(2864, 43981, 'forty-three thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(2865, 31694, 'thirty-one thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(2866, 27764, 'twenty-seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(2867, 25600, 'twenty-five thousand six hundred');\nINSERT INTO t1 VALUES(2868, 83350, 'eighty-three thousand three hundred fifty');\nINSERT INTO t1 VALUES(2869, 8467, 'eight thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2870, 22, 'twenty-two');\nINSERT INTO t1 VALUES(2871, 97092, 'ninety-seven thousand ninety-two');\nINSERT INTO t1 VALUES(2872, 92897, 'ninety-two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(2873, 24860, 'twenty-four thousand eight hundred sixty');\nINSERT INTO t1 VALUES(2874, 76684, 'seventy-six thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(2875, 14056, 'fourteen thousand fifty-six');\nINSERT INTO t1 VALUES(2876, 58288, 'fifty-eight thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(2877, 5310, 'five thousand three hundred ten');\nINSERT INTO t1 VALUES(2878, 72025, 'seventy-two thousand twenty-five');\nINSERT INTO t1 VALUES(2879, 19352, 'nineteen thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(2880, 47895, 'forty-seven thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(2881, 38089, 'thirty-eight thousand eighty-nine');\nINSERT INTO t1 VALUES(2882, 31143, 'thirty-one thousand one hundred forty-three');\nINSERT INTO t1 VALUES(2883, 98275, 'ninety-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(2884, 91614, 'ninety-one thousand six hundred fourteen');\nINSERT INTO t1 VALUES(2885, 82264, 'eighty-two thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(2886, 88966, 'eighty-eight thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(2887, 75719, 'seventy-five thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(2888, 53874, 'fifty-three thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(2889, 46067, 'forty-six thousand sixty-seven');\nINSERT INTO t1 VALUES(2890, 48904, 'forty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(2891, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(2892, 20560, 'twenty thousand five hundred sixty');\nINSERT INTO t1 VALUES(2893, 41420, 'forty-one thousand four hundred twenty');\nINSERT INTO t1 VALUES(2894, 97845, 'ninety-seven thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(2895, 54534, 'fifty-four thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(2896, 87467, 'eighty-seven thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(2897, 61667, 'sixty-one thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(2898, 56118, 'fifty-six thousand one hundred eighteen');\nINSERT INTO t1 VALUES(2899, 85435, 'eighty-five thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(2900, 80995, 'eighty thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(2901, 44896, 'forty-four thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(2902, 99980, 'ninety-nine thousand nine hundred eighty');\nINSERT INTO t1 VALUES(2903, 35394, 'thirty-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(2904, 1946, 'one thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(2905, 3588, 'three thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(2906, 27511, 'twenty-seven thousand five hundred eleven');\nINSERT INTO t1 VALUES(2907, 48663, 'forty-eight thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(2908, 17795, 'seventeen thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(2909, 85873, 'eighty-five thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(2910, 6776, 'six thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(2911, 46707, 'forty-six thousand seven hundred seven');\nINSERT INTO t1 VALUES(2912, 40473, 'forty thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(2913, 8859, 'eight thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(2914, 69505, 'sixty-nine thousand five hundred five');\nINSERT INTO t1 VALUES(2915, 74686, 'seventy-four thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(2916, 42648, 'forty-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(2917, 7773, 'seven thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(2918, 8441, 'eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(2919, 22345, 'twenty-two thousand three hundred forty-five');\nINSERT INTO t1 VALUES(2920, 53029, 'fifty-three thousand twenty-nine');\nINSERT INTO t1 VALUES(2921, 89687, 'eighty-nine thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(2922, 64761, 'sixty-four thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(2923, 56337, 'fifty-six thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(2924, 42688, 'forty-two thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(2925, 25035, 'twenty-five thousand thirty-five');\nINSERT INTO t1 VALUES(2926, 78707, 'seventy-eight thousand seven hundred seven');\nINSERT INTO t1 VALUES(2927, 38759, 'thirty-eight thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(2928, 14575, 'fourteen thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(2929, 91323, 'ninety-one thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(2930, 95449, 'ninety-five thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(2931, 76876, 'seventy-six thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(2932, 88156, 'eighty-eight thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(2933, 96638, 'ninety-six thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(2934, 25247, 'twenty-five thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(2935, 58527, 'fifty-eight thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(2936, 33099, 'thirty-three thousand ninety-nine');\nINSERT INTO t1 VALUES(2937, 74964, 'seventy-four thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(2938, 8084, 'eight thousand eighty-four');\nINSERT INTO t1 VALUES(2939, 39368, 'thirty-nine thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(2940, 40174, 'forty thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(2941, 80136, 'eighty thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(2942, 60471, 'sixty thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(2943, 26008, 'twenty-six thousand eight');\nINSERT INTO t1 VALUES(2944, 51248, 'fifty-one thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(2945, 66944, 'sixty-six thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(2946, 92287, 'ninety-two thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(2947, 82791, 'eighty-two thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(2948, 98422, 'ninety-eight thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(2949, 33222, 'thirty-three thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(2950, 14882, 'fourteen thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(2951, 21403, 'twenty-one thousand four hundred three');\nINSERT INTO t1 VALUES(2952, 63308, 'sixty-three thousand three hundred eight');\nINSERT INTO t1 VALUES(2953, 40656, 'forty thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(2954, 11428, 'eleven thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(2955, 83807, 'eighty-three thousand eight hundred seven');\nINSERT INTO t1 VALUES(2956, 60876, 'sixty thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(2957, 56542, 'fifty-six thousand five hundred forty-two');\nINSERT INTO t1 VALUES(2958, 71539, 'seventy-one thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(2959, 10641, 'ten thousand six hundred forty-one');\nINSERT INTO t1 VALUES(2960, 88819, 'eighty-eight thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(2961, 69239, 'sixty-nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(2962, 68126, 'sixty-eight thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(2963, 66820, 'sixty-six thousand eight hundred twenty');\nINSERT INTO t1 VALUES(2964, 64866, 'sixty-four thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(2965, 26325, 'twenty-six thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(2966, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(2967, 10420, 'ten thousand four hundred twenty');\nINSERT INTO t1 VALUES(2968, 9553, 'nine thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(2969, 21637, 'twenty-one thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(2970, 41903, 'forty-one thousand nine hundred three');\nINSERT INTO t1 VALUES(2971, 99962, 'ninety-nine thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(2972, 75769, 'seventy-five thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(2973, 60806, 'sixty thousand eight hundred six');\nINSERT INTO t1 VALUES(2974, 26107, 'twenty-six thousand one hundred seven');\nINSERT INTO t1 VALUES(2975, 29254, 'twenty-nine thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(2976, 17183, 'seventeen thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(2977, 47675, 'forty-seven thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(2978, 13767, 'thirteen thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(2979, 79748, 'seventy-nine thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(2980, 41941, 'forty-one thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(2981, 40239, 'forty thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(2982, 70511, 'seventy thousand five hundred eleven');\nINSERT INTO t1 VALUES(2983, 9352, 'nine thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(2984, 11430, 'eleven thousand four hundred thirty');\nINSERT INTO t1 VALUES(2985, 64300, 'sixty-four thousand three hundred');\nINSERT INTO t1 VALUES(2986, 95191, 'ninety-five thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(2987, 83780, 'eighty-three thousand seven hundred eighty');\nINSERT INTO t1 VALUES(2988, 55447, 'fifty-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(2989, 50702, 'fifty thousand seven hundred two');\nINSERT INTO t1 VALUES(2990, 84622, 'eighty-four thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(2991, 86558, 'eighty-six thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(2992, 52598, 'fifty-two thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(2993, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(2994, 35718, 'thirty-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(2995, 62553, 'sixty-two thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(2996, 19984, 'nineteen thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(2997, 41692, 'forty-one thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(2998, 84583, 'eighty-four thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(2999, 33234, 'thirty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(3000, 75997, 'seventy-five thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(3001, 47808, 'forty-seven thousand eight hundred eight');\nINSERT INTO t1 VALUES(3002, 32353, 'thirty-two thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(3003, 36056, 'thirty-six thousand fifty-six');\nINSERT INTO t1 VALUES(3004, 21900, 'twenty-one thousand nine hundred');\nINSERT INTO t1 VALUES(3005, 47434, 'forty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(3006, 68451, 'sixty-eight thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(3007, 17542, 'seventeen thousand five hundred forty-two');\nINSERT INTO t1 VALUES(3008, 93774, 'ninety-three thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(3009, 20947, 'twenty thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(3010, 43629, 'forty-three thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(3011, 52941, 'fifty-two thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(3012, 22904, 'twenty-two thousand nine hundred four');\nINSERT INTO t1 VALUES(3013, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t1 VALUES(3014, 10455, 'ten thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(3015, 61233, 'sixty-one thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(3016, 35715, 'thirty-five thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(3017, 99297, 'ninety-nine thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(3018, 82878, 'eighty-two thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(3019, 36965, 'thirty-six thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(3020, 84661, 'eighty-four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(3021, 90683, 'ninety thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(3022, 93476, 'ninety-three thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(3023, 66661, 'sixty-six thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(3024, 25817, 'twenty-five thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(3025, 67874, 'sixty-seven thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(3026, 85845, 'eighty-five thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(3027, 99071, 'ninety-nine thousand seventy-one');\nINSERT INTO t1 VALUES(3028, 82884, 'eighty-two thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3029, 14816, 'fourteen thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(3030, 96057, 'ninety-six thousand fifty-seven');\nINSERT INTO t1 VALUES(3031, 15376, 'fifteen thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(3032, 30500, 'thirty thousand five hundred');\nINSERT INTO t1 VALUES(3033, 75412, 'seventy-five thousand four hundred twelve');\nINSERT INTO t1 VALUES(3034, 67258, 'sixty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(3035, 49653, 'forty-nine thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3036, 28921, 'twenty-eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(3037, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t1 VALUES(3038, 63981, 'sixty-three thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(3039, 40320, 'forty thousand three hundred twenty');\nINSERT INTO t1 VALUES(3040, 6617, 'six thousand six hundred seventeen');\nINSERT INTO t1 VALUES(3041, 30613, 'thirty thousand six hundred thirteen');\nINSERT INTO t1 VALUES(3042, 40217, 'forty thousand two hundred seventeen');\nINSERT INTO t1 VALUES(3043, 56853, 'fifty-six thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(3044, 67935, 'sixty-seven thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(3045, 86914, 'eighty-six thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(3046, 60896, 'sixty thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(3047, 5764, 'five thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(3048, 50239, 'fifty thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(3049, 31528, 'thirty-one thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(3050, 91567, 'ninety-one thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3051, 53082, 'fifty-three thousand eighty-two');\nINSERT INTO t1 VALUES(3052, 42954, 'forty-two thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(3053, 90770, 'ninety thousand seven hundred seventy');\nINSERT INTO t1 VALUES(3054, 67266, 'sixty-seven thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3055, 86880, 'eighty-six thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3056, 66743, 'sixty-six thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(3057, 82115, 'eighty-two thousand one hundred fifteen');\nINSERT INTO t1 VALUES(3058, 59203, 'fifty-nine thousand two hundred three');\nINSERT INTO t1 VALUES(3059, 40400, 'forty thousand four hundred');\nINSERT INTO t1 VALUES(3060, 65877, 'sixty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(3061, 37296, 'thirty-seven thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(3062, 67067, 'sixty-seven thousand sixty-seven');\nINSERT INTO t1 VALUES(3063, 75397, 'seventy-five thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(3064, 33167, 'thirty-three thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(3065, 47408, 'forty-seven thousand four hundred eight');\nINSERT INTO t1 VALUES(3066, 89159, 'eighty-nine thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(3067, 12855, 'twelve thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(3068, 40880, 'forty thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3069, 2975, 'two thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3070, 14010, 'fourteen thousand ten');\nINSERT INTO t1 VALUES(3071, 82149, 'eighty-two thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(3072, 56607, 'fifty-six thousand six hundred seven');\nINSERT INTO t1 VALUES(3073, 41564, 'forty-one thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(3074, 8509, 'eight thousand five hundred nine');\nINSERT INTO t1 VALUES(3075, 6809, 'six thousand eight hundred nine');\nINSERT INTO t1 VALUES(3076, 15028, 'fifteen thousand twenty-eight');\nINSERT INTO t1 VALUES(3077, 48596, 'forty-eight thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(3078, 2828, 'two thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(3079, 60184, 'sixty thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(3080, 80079, 'eighty thousand seventy-nine');\nINSERT INTO t1 VALUES(3081, 48943, 'forty-eight thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(3082, 78677, 'seventy-eight thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(3083, 34640, 'thirty-four thousand six hundred forty');\nINSERT INTO t1 VALUES(3084, 46938, 'forty-six thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(3085, 88620, 'eighty-eight thousand six hundred twenty');\nINSERT INTO t1 VALUES(3086, 15941, 'fifteen thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(3087, 21580, 'twenty-one thousand five hundred eighty');\nINSERT INTO t1 VALUES(3088, 84194, 'eighty-four thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(3089, 62923, 'sixty-two thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(3090, 79482, 'seventy-nine thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(3091, 63100, 'sixty-three thousand one hundred');\nINSERT INTO t1 VALUES(3092, 57057, 'fifty-seven thousand fifty-seven');\nINSERT INTO t1 VALUES(3093, 31116, 'thirty-one thousand one hundred sixteen');\nINSERT INTO t1 VALUES(3094, 35886, 'thirty-five thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(3095, 24575, 'twenty-four thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(3096, 97873, 'ninety-seven thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(3097, 47151, 'forty-seven thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(3098, 30725, 'thirty thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(3099, 14514, 'fourteen thousand five hundred fourteen');\nINSERT INTO t1 VALUES(3100, 84870, 'eighty-four thousand eight hundred seventy');\nINSERT INTO t1 VALUES(3101, 10070, 'ten thousand seventy');\nINSERT INTO t1 VALUES(3102, 80557, 'eighty thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(3103, 24250, 'twenty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(3104, 93539, 'ninety-three thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(3105, 46195, 'forty-six thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(3106, 79024, 'seventy-nine thousand twenty-four');\nINSERT INTO t1 VALUES(3107, 22519, 'twenty-two thousand five hundred nineteen');\nINSERT INTO t1 VALUES(3108, 65780, 'sixty-five thousand seven hundred eighty');\nINSERT INTO t1 VALUES(3109, 74557, 'seventy-four thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(3110, 90927, 'ninety thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(3111, 64063, 'sixty-four thousand sixty-three');\nINSERT INTO t1 VALUES(3112, 46922, 'forty-six thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(3113, 35351, 'thirty-five thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(3114, 92382, 'ninety-two thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(3115, 85375, 'eighty-five thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(3116, 19029, 'nineteen thousand twenty-nine');\nINSERT INTO t1 VALUES(3117, 1584, 'one thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(3118, 3349, 'three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(3119, 25467, 'twenty-five thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3120, 96029, 'ninety-six thousand twenty-nine');\nINSERT INTO t1 VALUES(3121, 87012, 'eighty-seven thousand twelve');\nINSERT INTO t1 VALUES(3122, 98017, 'ninety-eight thousand seventeen');\nINSERT INTO t1 VALUES(3123, 48174, 'forty-eight thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(3124, 784, 'seven hundred eighty-four');\nINSERT INTO t1 VALUES(3125, 13437, 'thirteen thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(3126, 4802, 'four thousand eight hundred two');\nINSERT INTO t1 VALUES(3127, 47465, 'forty-seven thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(3128, 24874, 'twenty-four thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(3129, 97082, 'ninety-seven thousand eighty-two');\nINSERT INTO t1 VALUES(3130, 60764, 'sixty thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(3131, 93810, 'ninety-three thousand eight hundred ten');\nINSERT INTO t1 VALUES(3132, 30233, 'thirty thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(3133, 19698, 'nineteen thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(3134, 41100, 'forty-one thousand one hundred');\nINSERT INTO t1 VALUES(3135, 43118, 'forty-three thousand one hundred eighteen');\nINSERT INTO t1 VALUES(3136, 69106, 'sixty-nine thousand one hundred six');\nINSERT INTO t1 VALUES(3137, 86737, 'eighty-six thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(3138, 64907, 'sixty-four thousand nine hundred seven');\nINSERT INTO t1 VALUES(3139, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(3140, 88407, 'eighty-eight thousand four hundred seven');\nINSERT INTO t1 VALUES(3141, 65893, 'sixty-five thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3142, 19841, 'nineteen thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(3143, 83030, 'eighty-three thousand thirty');\nINSERT INTO t1 VALUES(3144, 24256, 'twenty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(3145, 75877, 'seventy-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(3146, 56330, 'fifty-six thousand three hundred thirty');\nINSERT INTO t1 VALUES(3147, 42869, 'forty-two thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3148, 10993, 'ten thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(3149, 84509, 'eighty-four thousand five hundred nine');\nINSERT INTO t1 VALUES(3150, 88843, 'eighty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(3151, 96659, 'ninety-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(3152, 65105, 'sixty-five thousand one hundred five');\nINSERT INTO t1 VALUES(3153, 84452, 'eighty-four thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(3154, 8090, 'eight thousand ninety');\nINSERT INTO t1 VALUES(3155, 28271, 'twenty-eight thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(3156, 93653, 'ninety-three thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3157, 9775, 'nine thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(3158, 54940, 'fifty-four thousand nine hundred forty');\nINSERT INTO t1 VALUES(3159, 34295, 'thirty-four thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(3160, 16142, 'sixteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(3161, 63747, 'sixty-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(3162, 82209, 'eighty-two thousand two hundred nine');\nINSERT INTO t1 VALUES(3163, 21817, 'twenty-one thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(3164, 77795, 'seventy-seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(3165, 16802, 'sixteen thousand eight hundred two');\nINSERT INTO t1 VALUES(3166, 42390, 'forty-two thousand three hundred ninety');\nINSERT INTO t1 VALUES(3167, 82059, 'eighty-two thousand fifty-nine');\nINSERT INTO t1 VALUES(3168, 23070, 'twenty-three thousand seventy');\nINSERT INTO t1 VALUES(3169, 15667, 'fifteen thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(3170, 96879, 'ninety-six thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3171, 28685, 'twenty-eight thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(3172, 82046, 'eighty-two thousand forty-six');\nINSERT INTO t1 VALUES(3173, 72871, 'seventy-two thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(3174, 73287, 'seventy-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(3175, 91098, 'ninety-one thousand ninety-eight');\nINSERT INTO t1 VALUES(3176, 43797, 'forty-three thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3177, 49050, 'forty-nine thousand fifty');\nINSERT INTO t1 VALUES(3178, 78068, 'seventy-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(3179, 73195, 'seventy-three thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(3180, 46730, 'forty-six thousand seven hundred thirty');\nINSERT INTO t1 VALUES(3181, 7481, 'seven thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(3182, 85843, 'eighty-five thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(3183, 86586, 'eighty-six thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(3184, 77436, 'seventy-seven thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(3185, 44135, 'forty-four thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(3186, 4301, 'four thousand three hundred one');\nINSERT INTO t1 VALUES(3187, 76236, 'seventy-six thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(3188, 10528, 'ten thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(3189, 74893, 'seventy-four thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3190, 19451, 'nineteen thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(3191, 27544, 'twenty-seven thousand five hundred forty-four');\nINSERT INTO t1 VALUES(3192, 25370, 'twenty-five thousand three hundred seventy');\nINSERT INTO t1 VALUES(3193, 43252, 'forty-three thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(3194, 85879, 'eighty-five thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3195, 67253, 'sixty-seven thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3196, 44421, 'forty-four thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(3197, 43665, 'forty-three thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(3198, 35270, 'thirty-five thousand two hundred seventy');\nINSERT INTO t1 VALUES(3199, 19089, 'nineteen thousand eighty-nine');\nINSERT INTO t1 VALUES(3200, 72370, 'seventy-two thousand three hundred seventy');\nINSERT INTO t1 VALUES(3201, 34666, 'thirty-four thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(3202, 66935, 'sixty-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(3203, 62881, 'sixty-two thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(3204, 538, 'five hundred thirty-eight');\nINSERT INTO t1 VALUES(3205, 49153, 'forty-nine thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(3206, 1871, 'one thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(3207, 37905, 'thirty-seven thousand nine hundred five');\nINSERT INTO t1 VALUES(3208, 42232, 'forty-two thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(3209, 76830, 'seventy-six thousand eight hundred thirty');\nINSERT INTO t1 VALUES(3210, 70467, 'seventy thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3211, 12588, 'twelve thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(3212, 11668, 'eleven thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(3213, 39713, 'thirty-nine thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(3214, 78721, 'seventy-eight thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(3215, 50068, 'fifty thousand sixty-eight');\nINSERT INTO t1 VALUES(3216, 3328, 'three thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(3217, 9160, 'nine thousand one hundred sixty');\nINSERT INTO t1 VALUES(3218, 74984, 'seventy-four thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(3219, 78278, 'seventy-eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(3220, 14282, 'fourteen thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(3221, 72683, 'seventy-two thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(3222, 2944, 'two thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(3223, 85336, 'eighty-five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3224, 57001, 'fifty-seven thousand one');\nINSERT INTO t1 VALUES(3225, 98301, 'ninety-eight thousand three hundred one');\nINSERT INTO t1 VALUES(3226, 34782, 'thirty-four thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(3227, 47155, 'forty-seven thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(3228, 31358, 'thirty-one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(3229, 5655, 'five thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(3230, 9677, 'nine thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(3231, 42393, 'forty-two thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(3232, 80760, 'eighty thousand seven hundred sixty');\nINSERT INTO t1 VALUES(3233, 81758, 'eighty-one thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3234, 17908, 'seventeen thousand nine hundred eight');\nINSERT INTO t1 VALUES(3235, 62863, 'sixty-two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(3236, 41218, 'forty-one thousand two hundred eighteen');\nINSERT INTO t1 VALUES(3237, 11342, 'eleven thousand three hundred forty-two');\nINSERT INTO t1 VALUES(3238, 178, 'one hundred seventy-eight');\nINSERT INTO t1 VALUES(3239, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(3240, 58424, 'fifty-eight thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(3241, 23585, 'twenty-three thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(3242, 94981, 'ninety-four thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(3243, 34880, 'thirty-four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3244, 19587, 'nineteen thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(3245, 72507, 'seventy-two thousand five hundred seven');\nINSERT INTO t1 VALUES(3246, 66336, 'sixty-six thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3247, 47506, 'forty-seven thousand five hundred six');\nINSERT INTO t1 VALUES(3248, 97686, 'ninety-seven thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3249, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t1 VALUES(3250, 43273, 'forty-three thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(3251, 97583, 'ninety-seven thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(3252, 10405, 'ten thousand four hundred five');\nINSERT INTO t1 VALUES(3253, 59441, 'fifty-nine thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3254, 83488, 'eighty-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(3255, 78494, 'seventy-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(3256, 78642, 'seventy-eight thousand six hundred forty-two');\nINSERT INTO t1 VALUES(3257, 74886, 'seventy-four thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(3258, 81862, 'eighty-one thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(3259, 6075, 'six thousand seventy-five');\nINSERT INTO t1 VALUES(3260, 58949, 'fifty-eight thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(3261, 41956, 'forty-one thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(3262, 42446, 'forty-two thousand four hundred forty-six');\nINSERT INTO t1 VALUES(3263, 16543, 'sixteen thousand five hundred forty-three');\nINSERT INTO t1 VALUES(3264, 28332, 'twenty-eight thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(3265, 75283, 'seventy-five thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(3266, 96124, 'ninety-six thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(3267, 55060, 'fifty-five thousand sixty');\nINSERT INTO t1 VALUES(3268, 12881, 'twelve thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(3269, 676, 'six hundred seventy-six');\nINSERT INTO t1 VALUES(3270, 1937, 'one thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(3271, 49105, 'forty-nine thousand one hundred five');\nINSERT INTO t1 VALUES(3272, 15200, 'fifteen thousand two hundred');\nINSERT INTO t1 VALUES(3273, 55309, 'fifty-five thousand three hundred nine');\nINSERT INTO t1 VALUES(3274, 12893, 'twelve thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3275, 41628, 'forty-one thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(3276, 92467, 'ninety-two thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3277, 19911, 'nineteen thousand nine hundred eleven');\nINSERT INTO t1 VALUES(3278, 78450, 'seventy-eight thousand four hundred fifty');\nINSERT INTO t1 VALUES(3279, 78134, 'seventy-eight thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(3280, 77976, 'seventy-seven thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(3281, 10489, 'ten thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(3282, 96844, 'ninety-six thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(3283, 65952, 'sixty-five thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(3284, 14191, 'fourteen thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(3285, 31821, 'thirty-one thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(3286, 3076, 'three thousand seventy-six');\nINSERT INTO t1 VALUES(3287, 48558, 'forty-eight thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(3288, 50251, 'fifty thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(3289, 83398, 'eighty-three thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(3290, 74889, 'seventy-four thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3291, 88662, 'eighty-eight thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(3292, 70299, 'seventy thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(3293, 40425, 'forty thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(3294, 79513, 'seventy-nine thousand five hundred thirteen');\nINSERT INTO t1 VALUES(3295, 65317, 'sixty-five thousand three hundred seventeen');\nINSERT INTO t1 VALUES(3296, 36912, 'thirty-six thousand nine hundred twelve');\nINSERT INTO t1 VALUES(3297, 72499, 'seventy-two thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(3298, 60991, 'sixty thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3299, 92861, 'ninety-two thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(3300, 61866, 'sixty-one thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(3301, 73770, 'seventy-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(3302, 61724, 'sixty-one thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(3303, 29578, 'twenty-nine thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(3304, 53689, 'fifty-three thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(3305, 99045, 'ninety-nine thousand forty-five');\nINSERT INTO t1 VALUES(3306, 79832, 'seventy-nine thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(3307, 38177, 'thirty-eight thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(3308, 31284, 'thirty-one thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(3309, 15936, 'fifteen thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(3310, 92342, 'ninety-two thousand three hundred forty-two');\nINSERT INTO t1 VALUES(3311, 4251, 'four thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(3312, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t1 VALUES(3313, 60521, 'sixty thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3314, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(3315, 45747, 'forty-five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(3316, 96996, 'ninety-six thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(3317, 58196, 'fifty-eight thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(3318, 98326, 'ninety-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(3319, 86788, 'eighty-six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(3320, 38114, 'thirty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3321, 14081, 'fourteen thousand eighty-one');\nINSERT INTO t1 VALUES(3322, 78028, 'seventy-eight thousand twenty-eight');\nINSERT INTO t1 VALUES(3323, 78248, 'seventy-eight thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(3324, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t1 VALUES(3325, 27411, 'twenty-seven thousand four hundred eleven');\nINSERT INTO t1 VALUES(3326, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(3327, 34767, 'thirty-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(3328, 45870, 'forty-five thousand eight hundred seventy');\nINSERT INTO t1 VALUES(3329, 68909, 'sixty-eight thousand nine hundred nine');\nINSERT INTO t1 VALUES(3330, 76696, 'seventy-six thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(3331, 66028, 'sixty-six thousand twenty-eight');\nINSERT INTO t1 VALUES(3332, 84600, 'eighty-four thousand six hundred');\nINSERT INTO t1 VALUES(3333, 61933, 'sixty-one thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(3334, 91441, 'ninety-one thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3335, 28191, 'twenty-eight thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(3336, 45747, 'forty-five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(3337, 31122, 'thirty-one thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(3338, 5654, 'five thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(3339, 88621, 'eighty-eight thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(3340, 28983, 'twenty-eight thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(3341, 50776, 'fifty thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(3342, 77415, 'seventy-seven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(3343, 25949, 'twenty-five thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(3344, 70884, 'seventy thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3345, 84768, 'eighty-four thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(3346, 30961, 'thirty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(3347, 16110, 'sixteen thousand one hundred ten');\nINSERT INTO t1 VALUES(3348, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(3349, 20752, 'twenty thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(3350, 3709, 'three thousand seven hundred nine');\nINSERT INTO t1 VALUES(3351, 30138, 'thirty thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(3352, 44341, 'forty-four thousand three hundred forty-one');\nINSERT INTO t1 VALUES(3353, 60236, 'sixty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(3354, 67050, 'sixty-seven thousand fifty');\nINSERT INTO t1 VALUES(3355, 56343, 'fifty-six thousand three hundred forty-three');\nINSERT INTO t1 VALUES(3356, 35298, 'thirty-five thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3357, 97323, 'ninety-seven thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(3358, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(3359, 90702, 'ninety thousand seven hundred two');\nINSERT INTO t1 VALUES(3360, 98797, 'ninety-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3361, 14239, 'fourteen thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(3362, 95991, 'ninety-five thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3363, 90933, 'ninety thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(3364, 30880, 'thirty thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3365, 5169, 'five thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(3366, 46161, 'forty-six thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(3367, 34495, 'thirty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(3368, 23645, 'twenty-three thousand six hundred forty-five');\nINSERT INTO t1 VALUES(3369, 83659, 'eighty-three thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(3370, 38991, 'thirty-eight thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3371, 58732, 'fifty-eight thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(3372, 30569, 'thirty thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(3373, 5543, 'five thousand five hundred forty-three');\nINSERT INTO t1 VALUES(3374, 67345, 'sixty-seven thousand three hundred forty-five');\nINSERT INTO t1 VALUES(3375, 35259, 'thirty-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(3376, 71009, 'seventy-one thousand nine');\nINSERT INTO t1 VALUES(3377, 37758, 'thirty-seven thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3378, 85733, 'eighty-five thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(3379, 25073, 'twenty-five thousand seventy-three');\nINSERT INTO t1 VALUES(3380, 93375, 'ninety-three thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(3381, 49302, 'forty-nine thousand three hundred two');\nINSERT INTO t1 VALUES(3382, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(3383, 93449, 'ninety-three thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(3384, 48289, 'forty-eight thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(3385, 80643, 'eighty thousand six hundred forty-three');\nINSERT INTO t1 VALUES(3386, 53697, 'fifty-three thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(3387, 98489, 'ninety-eight thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(3388, 88491, 'eighty-eight thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(3389, 82287, 'eighty-two thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(3390, 49530, 'forty-nine thousand five hundred thirty');\nINSERT INTO t1 VALUES(3391, 44003, 'forty-four thousand three');\nINSERT INTO t1 VALUES(3392, 8214, 'eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(3393, 40674, 'forty thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(3394, 85615, 'eighty-five thousand six hundred fifteen');\nINSERT INTO t1 VALUES(3395, 32567, 'thirty-two thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3396, 59596, 'fifty-nine thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(3397, 71633, 'seventy-one thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(3398, 6595, 'six thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(3399, 75459, 'seventy-five thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(3400, 72713, 'seventy-two thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(3401, 39477, 'thirty-nine thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(3402, 99563, 'ninety-nine thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(3403, 28812, 'twenty-eight thousand eight hundred twelve');\nINSERT INTO t1 VALUES(3404, 25089, 'twenty-five thousand eighty-nine');\nINSERT INTO t1 VALUES(3405, 92253, 'ninety-two thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3406, 81083, 'eighty-one thousand eighty-three');\nINSERT INTO t1 VALUES(3407, 31893, 'thirty-one thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3408, 84728, 'eighty-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(3409, 19163, 'nineteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(3410, 7230, 'seven thousand two hundred thirty');\nINSERT INTO t1 VALUES(3411, 49939, 'forty-nine thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(3412, 27860, 'twenty-seven thousand eight hundred sixty');\nINSERT INTO t1 VALUES(3413, 92447, 'ninety-two thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(3414, 84178, 'eighty-four thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(3415, 61754, 'sixty-one thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(3416, 78282, 'seventy-eight thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(3417, 63850, 'sixty-three thousand eight hundred fifty');\nINSERT INTO t1 VALUES(3418, 17253, 'seventeen thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3419, 87010, 'eighty-seven thousand ten');\nINSERT INTO t1 VALUES(3420, 74022, 'seventy-four thousand twenty-two');\nINSERT INTO t1 VALUES(3421, 44797, 'forty-four thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3422, 51804, 'fifty-one thousand eight hundred four');\nINSERT INTO t1 VALUES(3423, 85325, 'eighty-five thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(3424, 21189, 'twenty-one thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(3425, 27904, 'twenty-seven thousand nine hundred four');\nINSERT INTO t1 VALUES(3426, 55844, 'fifty-five thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(3427, 63648, 'sixty-three thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(3428, 4047, 'four thousand forty-seven');\nINSERT INTO t1 VALUES(3429, 72570, 'seventy-two thousand five hundred seventy');\nINSERT INTO t1 VALUES(3430, 45295, 'forty-five thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(3431, 61773, 'sixty-one thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(3432, 94199, 'ninety-four thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(3433, 29669, 'twenty-nine thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(3434, 82102, 'eighty-two thousand one hundred two');\nINSERT INTO t1 VALUES(3435, 94716, 'ninety-four thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(3436, 35673, 'thirty-five thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(3437, 85975, 'eighty-five thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3438, 69316, 'sixty-nine thousand three hundred sixteen');\nINSERT INTO t1 VALUES(3439, 9446, 'nine thousand four hundred forty-six');\nINSERT INTO t1 VALUES(3440, 9722, 'nine thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(3441, 69913, 'sixty-nine thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3442, 54317, 'fifty-four thousand three hundred seventeen');\nINSERT INTO t1 VALUES(3443, 58912, 'fifty-eight thousand nine hundred twelve');\nINSERT INTO t1 VALUES(3444, 79074, 'seventy-nine thousand seventy-four');\nINSERT INTO t1 VALUES(3445, 15186, 'fifteen thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(3446, 24757, 'twenty-four thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(3447, 94590, 'ninety-four thousand five hundred ninety');\nINSERT INTO t1 VALUES(3448, 276, 'two hundred seventy-six');\nINSERT INTO t1 VALUES(3449, 64879, 'sixty-four thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3450, 30214, 'thirty thousand two hundred fourteen');\nINSERT INTO t1 VALUES(3451, 85267, 'eighty-five thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(3452, 50211, 'fifty thousand two hundred eleven');\nINSERT INTO t1 VALUES(3453, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(3454, 70979, 'seventy thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(3455, 55887, 'fifty-five thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(3456, 83692, 'eighty-three thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(3457, 54229, 'fifty-four thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(3458, 54089, 'fifty-four thousand eighty-nine');\nINSERT INTO t1 VALUES(3459, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(3460, 48295, 'forty-eight thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(3461, 51031, 'fifty-one thousand thirty-one');\nINSERT INTO t1 VALUES(3462, 33872, 'thirty-three thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(3463, 67272, 'sixty-seven thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(3464, 70086, 'seventy thousand eighty-six');\nINSERT INTO t1 VALUES(3465, 63018, 'sixty-three thousand eighteen');\nINSERT INTO t1 VALUES(3466, 10581, 'ten thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(3467, 46454, 'forty-six thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(3468, 11132, 'eleven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(3469, 33111, 'thirty-three thousand one hundred eleven');\nINSERT INTO t1 VALUES(3470, 16668, 'sixteen thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(3471, 72521, 'seventy-two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3472, 43065, 'forty-three thousand sixty-five');\nINSERT INTO t1 VALUES(3473, 71537, 'seventy-one thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(3474, 51880, 'fifty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(3475, 68797, 'sixty-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3476, 57128, 'fifty-seven thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(3477, 54003, 'fifty-four thousand three');\nINSERT INTO t1 VALUES(3478, 49220, 'forty-nine thousand two hundred twenty');\nINSERT INTO t1 VALUES(3479, 89649, 'eighty-nine thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(3480, 17907, 'seventeen thousand nine hundred seven');\nINSERT INTO t1 VALUES(3481, 29451, 'twenty-nine thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(3482, 64727, 'sixty-four thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(3483, 10114, 'ten thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3484, 71567, 'seventy-one thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3485, 53170, 'fifty-three thousand one hundred seventy');\nINSERT INTO t1 VALUES(3486, 19336, 'nineteen thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3487, 40571, 'forty thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(3488, 88261, 'eighty-eight thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(3489, 68540, 'sixty-eight thousand five hundred forty');\nINSERT INTO t1 VALUES(3490, 18984, 'eighteen thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(3491, 22699, 'twenty-two thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(3492, 54484, 'fifty-four thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(3493, 66750, 'sixty-six thousand seven hundred fifty');\nINSERT INTO t1 VALUES(3494, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(3495, 93237, 'ninety-three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(3496, 39619, 'thirty-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(3497, 69475, 'sixty-nine thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(3498, 70653, 'seventy thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(3499, 5374, 'five thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(3500, 48200, 'forty-eight thousand two hundred');\nINSERT INTO t1 VALUES(3501, 44142, 'forty-four thousand one hundred forty-two');\nINSERT INTO t1 VALUES(3502, 10484, 'ten thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(3503, 83686, 'eighty-three thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3504, 7298, 'seven thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3505, 57358, 'fifty-seven thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(3506, 16449, 'sixteen thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(3507, 38249, 'thirty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(3508, 52669, 'fifty-two thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(3509, 19362, 'nineteen thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(3510, 87258, 'eighty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(3511, 74383, 'seventy-four thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(3512, 91323, 'ninety-one thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(3513, 86443, 'eighty-six thousand four hundred forty-three');\nINSERT INTO t1 VALUES(3514, 73229, 'seventy-three thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(3515, 66686, 'sixty-six thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3516, 40986, 'forty thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(3517, 16521, 'sixteen thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3518, 63887, 'sixty-three thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(3519, 85121, 'eighty-five thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(3520, 54691, 'fifty-four thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(3521, 85333, 'eighty-five thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(3522, 9057, 'nine thousand fifty-seven');\nINSERT INTO t1 VALUES(3523, 96869, 'ninety-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3524, 9075, 'nine thousand seventy-five');\nINSERT INTO t1 VALUES(3525, 69043, 'sixty-nine thousand forty-three');\nINSERT INTO t1 VALUES(3526, 51152, 'fifty-one thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(3527, 99884, 'ninety-nine thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3528, 53461, 'fifty-three thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(3529, 92518, 'ninety-two thousand five hundred eighteen');\nINSERT INTO t1 VALUES(3530, 62740, 'sixty-two thousand seven hundred forty');\nINSERT INTO t1 VALUES(3531, 71185, 'seventy-one thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(3532, 18628, 'eighteen thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(3533, 66515, 'sixty-six thousand five hundred fifteen');\nINSERT INTO t1 VALUES(3534, 74021, 'seventy-four thousand twenty-one');\nINSERT INTO t1 VALUES(3535, 75886, 'seventy-five thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(3536, 57132, 'fifty-seven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(3537, 6709, 'six thousand seven hundred nine');\nINSERT INTO t1 VALUES(3538, 55091, 'fifty-five thousand ninety-one');\nINSERT INTO t1 VALUES(3539, 61254, 'sixty-one thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(3540, 1136, 'one thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(3541, 86817, 'eighty-six thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(3542, 93826, 'ninety-three thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(3543, 88069, 'eighty-eight thousand sixty-nine');\nINSERT INTO t1 VALUES(3544, 94648, 'ninety-four thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(3545, 84084, 'eighty-four thousand eighty-four');\nINSERT INTO t1 VALUES(3546, 67524, 'sixty-seven thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(3547, 53417, 'fifty-three thousand four hundred seventeen');\nINSERT INTO t1 VALUES(3548, 46253, 'forty-six thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3549, 50763, 'fifty thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(3550, 5913, 'five thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3551, 26997, 'twenty-six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(3552, 35964, 'thirty-five thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(3553, 87707, 'eighty-seven thousand seven hundred seven');\nINSERT INTO t1 VALUES(3554, 80208, 'eighty thousand two hundred eight');\nINSERT INTO t1 VALUES(3555, 32626, 'thirty-two thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(3556, 52770, 'fifty-two thousand seven hundred seventy');\nINSERT INTO t1 VALUES(3557, 2305, 'two thousand three hundred five');\nINSERT INTO t1 VALUES(3558, 64429, 'sixty-four thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(3559, 71560, 'seventy-one thousand five hundred sixty');\nINSERT INTO t1 VALUES(3560, 65166, 'sixty-five thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(3561, 4812, 'four thousand eight hundred twelve');\nINSERT INTO t1 VALUES(3562, 58365, 'fifty-eight thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(3563, 3622, 'three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(3564, 58404, 'fifty-eight thousand four hundred four');\nINSERT INTO t1 VALUES(3565, 40019, 'forty thousand nineteen');\nINSERT INTO t1 VALUES(3566, 39745, 'thirty-nine thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(3567, 94936, 'ninety-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(3568, 60432, 'sixty thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(3569, 93294, 'ninety-three thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(3570, 5175, 'five thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(3571, 85802, 'eighty-five thousand eight hundred two');\nINSERT INTO t1 VALUES(3572, 71331, 'seventy-one thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(3573, 92447, 'ninety-two thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(3574, 72742, 'seventy-two thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(3575, 10050, 'ten thousand fifty');\nINSERT INTO t1 VALUES(3576, 38627, 'thirty-eight thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(3577, 25953, 'twenty-five thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(3578, 75038, 'seventy-five thousand thirty-eight');\nINSERT INTO t1 VALUES(3579, 97052, 'ninety-seven thousand fifty-two');\nINSERT INTO t1 VALUES(3580, 73930, 'seventy-three thousand nine hundred thirty');\nINSERT INTO t1 VALUES(3581, 98131, 'ninety-eight thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(3582, 72161, 'seventy-two thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(3583, 1978, 'one thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(3584, 7380, 'seven thousand three hundred eighty');\nINSERT INTO t1 VALUES(3585, 9198, 'nine thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(3586, 15560, 'fifteen thousand five hundred sixty');\nINSERT INTO t1 VALUES(3587, 46657, 'forty-six thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(3588, 68550, 'sixty-eight thousand five hundred fifty');\nINSERT INTO t1 VALUES(3589, 88762, 'eighty-eight thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(3590, 76341, 'seventy-six thousand three hundred forty-one');\nINSERT INTO t1 VALUES(3591, 40775, 'forty thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(3592, 18253, 'eighteen thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3593, 75507, 'seventy-five thousand five hundred seven');\nINSERT INTO t1 VALUES(3594, 87913, 'eighty-seven thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3595, 9442, 'nine thousand four hundred forty-two');\nINSERT INTO t1 VALUES(3596, 63377, 'sixty-three thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(3597, 12883, 'twelve thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(3598, 98246, 'ninety-eight thousand two hundred forty-six');\nINSERT INTO t1 VALUES(3599, 7995, 'seven thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(3600, 85017, 'eighty-five thousand seventeen');\nINSERT INTO t1 VALUES(3601, 10531, 'ten thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(3602, 20296, 'twenty thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(3603, 406, 'four hundred six');\nINSERT INTO t1 VALUES(3604, 16530, 'sixteen thousand five hundred thirty');\nINSERT INTO t1 VALUES(3605, 49126, 'forty-nine thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(3606, 57267, 'fifty-seven thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(3607, 16854, 'sixteen thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(3608, 8808, 'eight thousand eight hundred eight');\nINSERT INTO t1 VALUES(3609, 78634, 'seventy-eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(3610, 3456, 'three thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(3611, 97350, 'ninety-seven thousand three hundred fifty');\nINSERT INTO t1 VALUES(3612, 2076, 'two thousand seventy-six');\nINSERT INTO t1 VALUES(3613, 88430, 'eighty-eight thousand four hundred thirty');\nINSERT INTO t1 VALUES(3614, 26418, 'twenty-six thousand four hundred eighteen');\nINSERT INTO t1 VALUES(3615, 97082, 'ninety-seven thousand eighty-two');\nINSERT INTO t1 VALUES(3616, 16754, 'sixteen thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(3617, 22342, 'twenty-two thousand three hundred forty-two');\nINSERT INTO t1 VALUES(3618, 66168, 'sixty-six thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(3619, 79729, 'seventy-nine thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(3620, 34641, 'thirty-four thousand six hundred forty-one');\nINSERT INTO t1 VALUES(3621, 96338, 'ninety-six thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(3622, 10599, 'ten thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(3623, 92583, 'ninety-two thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(3624, 30460, 'thirty thousand four hundred sixty');\nINSERT INTO t1 VALUES(3625, 23825, 'twenty-three thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(3626, 99470, 'ninety-nine thousand four hundred seventy');\nINSERT INTO t1 VALUES(3627, 96190, 'ninety-six thousand one hundred ninety');\nINSERT INTO t1 VALUES(3628, 41373, 'forty-one thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(3629, 88482, 'eighty-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(3630, 11556, 'eleven thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(3631, 39384, 'thirty-nine thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(3632, 22015, 'twenty-two thousand fifteen');\nINSERT INTO t1 VALUES(3633, 96697, 'ninety-six thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(3634, 32796, 'thirty-two thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(3635, 5571, 'five thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(3636, 74100, 'seventy-four thousand one hundred');\nINSERT INTO t1 VALUES(3637, 89589, 'eighty-nine thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(3638, 99706, 'ninety-nine thousand seven hundred six');\nINSERT INTO t1 VALUES(3639, 81302, 'eighty-one thousand three hundred two');\nINSERT INTO t1 VALUES(3640, 35320, 'thirty-five thousand three hundred twenty');\nINSERT INTO t1 VALUES(3641, 47824, 'forty-seven thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(3642, 59349, 'fifty-nine thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(3643, 15570, 'fifteen thousand five hundred seventy');\nINSERT INTO t1 VALUES(3644, 19240, 'nineteen thousand two hundred forty');\nINSERT INTO t1 VALUES(3645, 47306, 'forty-seven thousand three hundred six');\nINSERT INTO t1 VALUES(3646, 68125, 'sixty-eight thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(3647, 88722, 'eighty-eight thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(3648, 4336, 'four thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(3649, 21975, 'twenty-one thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3650, 43104, 'forty-three thousand one hundred four');\nINSERT INTO t1 VALUES(3651, 84111, 'eighty-four thousand one hundred eleven');\nINSERT INTO t1 VALUES(3652, 75749, 'seventy-five thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(3653, 54822, 'fifty-four thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(3654, 61346, 'sixty-one thousand three hundred forty-six');\nINSERT INTO t1 VALUES(3655, 73400, 'seventy-three thousand four hundred');\nINSERT INTO t1 VALUES(3656, 7553, 'seven thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(3657, 35092, 'thirty-five thousand ninety-two');\nINSERT INTO t1 VALUES(3658, 85416, 'eighty-five thousand four hundred sixteen');\nINSERT INTO t1 VALUES(3659, 44519, 'forty-four thousand five hundred nineteen');\nINSERT INTO t1 VALUES(3660, 41417, 'forty-one thousand four hundred seventeen');\nINSERT INTO t1 VALUES(3661, 60587, 'sixty thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(3662, 13889, 'thirteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3663, 36758, 'thirty-six thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3664, 95910, 'ninety-five thousand nine hundred ten');\nINSERT INTO t1 VALUES(3665, 34885, 'thirty-four thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(3666, 5469, 'five thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(3667, 11637, 'eleven thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(3668, 76038, 'seventy-six thousand thirty-eight');\nINSERT INTO t1 VALUES(3669, 88486, 'eighty-eight thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(3670, 38987, 'thirty-eight thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(3671, 76626, 'seventy-six thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(3672, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t1 VALUES(3673, 24826, 'twenty-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(3674, 66373, 'sixty-six thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(3675, 43204, 'forty-three thousand two hundred four');\nINSERT INTO t1 VALUES(3676, 39931, 'thirty-nine thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(3677, 17375, 'seventeen thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(3678, 33980, 'thirty-three thousand nine hundred eighty');\nINSERT INTO t1 VALUES(3679, 34893, 'thirty-four thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(3680, 36865, 'thirty-six thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(3681, 96791, 'ninety-six thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(3682, 70551, 'seventy thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(3683, 76775, 'seventy-six thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(3684, 87909, 'eighty-seven thousand nine hundred nine');\nINSERT INTO t1 VALUES(3685, 14582, 'fourteen thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(3686, 28672, 'twenty-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(3687, 26989, 'twenty-six thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(3688, 6049, 'six thousand forty-nine');\nINSERT INTO t1 VALUES(3689, 244, 'two hundred forty-four');\nINSERT INTO t1 VALUES(3690, 50771, 'fifty thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(3691, 57169, 'fifty-seven thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(3692, 72147, 'seventy-two thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(3693, 48910, 'forty-eight thousand nine hundred ten');\nINSERT INTO t1 VALUES(3694, 83530, 'eighty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(3695, 45095, 'forty-five thousand ninety-five');\nINSERT INTO t1 VALUES(3696, 58276, 'fifty-eight thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(3697, 21972, 'twenty-one thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(3698, 45492, 'forty-five thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(3699, 45993, 'forty-five thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(3700, 90582, 'ninety thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(3701, 67204, 'sixty-seven thousand two hundred four');\nINSERT INTO t1 VALUES(3702, 27461, 'twenty-seven thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(3703, 61821, 'sixty-one thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(3704, 66373, 'sixty-six thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(3705, 76432, 'seventy-six thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(3706, 81453, 'eighty-one thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(3707, 71699, 'seventy-one thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(3708, 42182, 'forty-two thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(3709, 37730, 'thirty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(3710, 17144, 'seventeen thousand one hundred forty-four');\nINSERT INTO t1 VALUES(3711, 13889, 'thirteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3712, 55151, 'fifty-five thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(3713, 25628, 'twenty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(3714, 98841, 'ninety-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(3715, 87153, 'eighty-seven thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(3716, 33290, 'thirty-three thousand two hundred ninety');\nINSERT INTO t1 VALUES(3717, 18642, 'eighteen thousand six hundred forty-two');\nINSERT INTO t1 VALUES(3718, 18252, 'eighteen thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(3719, 4371, 'four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(3720, 79917, 'seventy-nine thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(3721, 40887, 'forty thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(3722, 34266, 'thirty-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3723, 29519, 'twenty-nine thousand five hundred nineteen');\nINSERT INTO t1 VALUES(3724, 20867, 'twenty thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(3725, 6934, 'six thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(3726, 33751, 'thirty-three thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(3727, 69072, 'sixty-nine thousand seventy-two');\nINSERT INTO t1 VALUES(3728, 19523, 'nineteen thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(3729, 82867, 'eighty-two thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(3730, 95105, 'ninety-five thousand one hundred five');\nINSERT INTO t1 VALUES(3731, 87187, 'eighty-seven thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(3732, 76611, 'seventy-six thousand six hundred eleven');\nINSERT INTO t1 VALUES(3733, 50749, 'fifty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(3734, 2472, 'two thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(3735, 40229, 'forty thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(3736, 65688, 'sixty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(3737, 83565, 'eighty-three thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(3738, 8275, 'eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(3739, 95541, 'ninety-five thousand five hundred forty-one');\nINSERT INTO t1 VALUES(3740, 1721, 'one thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(3741, 73048, 'seventy-three thousand forty-eight');\nINSERT INTO t1 VALUES(3742, 98700, 'ninety-eight thousand seven hundred');\nINSERT INTO t1 VALUES(3743, 98380, 'ninety-eight thousand three hundred eighty');\nINSERT INTO t1 VALUES(3744, 73366, 'seventy-three thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(3745, 97869, 'ninety-seven thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3746, 18618, 'eighteen thousand six hundred eighteen');\nINSERT INTO t1 VALUES(3747, 32492, 'thirty-two thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(3748, 33038, 'thirty-three thousand thirty-eight');\nINSERT INTO t1 VALUES(3749, 74261, 'seventy-four thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(3750, 10378, 'ten thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(3751, 32253, 'thirty-two thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(3752, 87863, 'eighty-seven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(3753, 77776, 'seventy-seven thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(3754, 96427, 'ninety-six thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(3755, 95686, 'ninety-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(3756, 65710, 'sixty-five thousand seven hundred ten');\nINSERT INTO t1 VALUES(3757, 40498, 'forty thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(3758, 2908, 'two thousand nine hundred eight');\nINSERT INTO t1 VALUES(3759, 43754, 'forty-three thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(3760, 24501, 'twenty-four thousand five hundred one');\nINSERT INTO t1 VALUES(3761, 77713, 'seventy-seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(3762, 7907, 'seven thousand nine hundred seven');\nINSERT INTO t1 VALUES(3763, 16321, 'sixteen thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(3764, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(3765, 71917, 'seventy-one thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(3766, 49197, 'forty-nine thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(3767, 44553, 'forty-four thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(3768, 84494, 'eighty-four thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(3769, 42371, 'forty-two thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(3770, 37592, 'thirty-seven thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(3771, 37682, 'thirty-seven thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(3772, 23114, 'twenty-three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3773, 96232, 'ninety-six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(3774, 95005, 'ninety-five thousand five');\nINSERT INTO t1 VALUES(3775, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(3776, 53204, 'fifty-three thousand two hundred four');\nINSERT INTO t1 VALUES(3777, 26821, 'twenty-six thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(3778, 64702, 'sixty-four thousand seven hundred two');\nINSERT INTO t1 VALUES(3779, 42833, 'forty-two thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(3780, 8734, 'eight thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(3781, 45818, 'forty-five thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(3782, 52254, 'fifty-two thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(3783, 46673, 'forty-six thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(3784, 50764, 'fifty thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(3785, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t1 VALUES(3786, 90642, 'ninety thousand six hundred forty-two');\nINSERT INTO t1 VALUES(3787, 26521, 'twenty-six thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(3788, 93096, 'ninety-three thousand ninety-six');\nINSERT INTO t1 VALUES(3789, 94350, 'ninety-four thousand three hundred fifty');\nINSERT INTO t1 VALUES(3790, 76050, 'seventy-six thousand fifty');\nINSERT INTO t1 VALUES(3791, 12200, 'twelve thousand two hundred');\nINSERT INTO t1 VALUES(3792, 67788, 'sixty-seven thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(3793, 45786, 'forty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(3794, 99042, 'ninety-nine thousand forty-two');\nINSERT INTO t1 VALUES(3795, 1102, 'one thousand one hundred two');\nINSERT INTO t1 VALUES(3796, 10317, 'ten thousand three hundred seventeen');\nINSERT INTO t1 VALUES(3797, 83766, 'eighty-three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(3798, 32196, 'thirty-two thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(3799, 11859, 'eleven thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(3800, 11220, 'eleven thousand two hundred twenty');\nINSERT INTO t1 VALUES(3801, 5435, 'five thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(3802, 79244, 'seventy-nine thousand two hundred forty-four');\nINSERT INTO t1 VALUES(3803, 86440, 'eighty-six thousand four hundred forty');\nINSERT INTO t1 VALUES(3804, 58007, 'fifty-eight thousand seven');\nINSERT INTO t1 VALUES(3805, 59879, 'fifty-nine thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(3806, 93073, 'ninety-three thousand seventy-three');\nINSERT INTO t1 VALUES(3807, 41395, 'forty-one thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(3808, 70064, 'seventy thousand sixty-four');\nINSERT INTO t1 VALUES(3809, 76480, 'seventy-six thousand four hundred eighty');\nINSERT INTO t1 VALUES(3810, 89053, 'eighty-nine thousand fifty-three');\nINSERT INTO t1 VALUES(3811, 61298, 'sixty-one thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3812, 62268, 'sixty-two thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(3813, 86474, 'eighty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(3814, 99767, 'ninety-nine thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(3815, 25087, 'twenty-five thousand eighty-seven');\nINSERT INTO t1 VALUES(3816, 89484, 'eighty-nine thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(3817, 28193, 'twenty-eight thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(3818, 88213, 'eighty-eight thousand two hundred thirteen');\nINSERT INTO t1 VALUES(3819, 69567, 'sixty-nine thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(3820, 61386, 'sixty-one thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(3821, 6122, 'six thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(3822, 29237, 'twenty-nine thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(3823, 34504, 'thirty-four thousand five hundred four');\nINSERT INTO t1 VALUES(3824, 2433, 'two thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(3825, 79539, 'seventy-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(3826, 11990, 'eleven thousand nine hundred ninety');\nINSERT INTO t1 VALUES(3827, 48797, 'forty-eight thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(3828, 1352, 'one thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(3829, 92368, 'ninety-two thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(3830, 98175, 'ninety-eight thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(3831, 23105, 'twenty-three thousand one hundred five');\nINSERT INTO t1 VALUES(3832, 6065, 'six thousand sixty-five');\nINSERT INTO t1 VALUES(3833, 75885, 'seventy-five thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(3834, 63862, 'sixty-three thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(3835, 78082, 'seventy-eight thousand eighty-two');\nINSERT INTO t1 VALUES(3836, 12056, 'twelve thousand fifty-six');\nINSERT INTO t1 VALUES(3837, 58543, 'fifty-eight thousand five hundred forty-three');\nINSERT INTO t1 VALUES(3838, 52812, 'fifty-two thousand eight hundred twelve');\nINSERT INTO t1 VALUES(3839, 38551, 'thirty-eight thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(3840, 61350, 'sixty-one thousand three hundred fifty');\nINSERT INTO t1 VALUES(3841, 30937, 'thirty thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(3842, 39616, 'thirty-nine thousand six hundred sixteen');\nINSERT INTO t1 VALUES(3843, 73450, 'seventy-three thousand four hundred fifty');\nINSERT INTO t1 VALUES(3844, 98408, 'ninety-eight thousand four hundred eight');\nINSERT INTO t1 VALUES(3845, 15848, 'fifteen thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(3846, 81390, 'eighty-one thousand three hundred ninety');\nINSERT INTO t1 VALUES(3847, 26513, 'twenty-six thousand five hundred thirteen');\nINSERT INTO t1 VALUES(3848, 93768, 'ninety-three thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(3849, 14302, 'fourteen thousand three hundred two');\nINSERT INTO t1 VALUES(3850, 11752, 'eleven thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(3851, 6683, 'six thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(3852, 31395, 'thirty-one thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(3853, 6996, 'six thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(3854, 87076, 'eighty-seven thousand seventy-six');\nINSERT INTO t1 VALUES(3855, 94709, 'ninety-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(3856, 45364, 'forty-five thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(3857, 40264, 'forty thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(3858, 19242, 'nineteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(3859, 45883, 'forty-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(3860, 23784, 'twenty-three thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(3861, 22366, 'twenty-two thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(3862, 38613, 'thirty-eight thousand six hundred thirteen');\nINSERT INTO t1 VALUES(3863, 54181, 'fifty-four thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(3864, 82679, 'eighty-two thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(3865, 93600, 'ninety-three thousand six hundred');\nINSERT INTO t1 VALUES(3866, 79423, 'seventy-nine thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(3867, 96218, 'ninety-six thousand two hundred eighteen');\nINSERT INTO t1 VALUES(3868, 16609, 'sixteen thousand six hundred nine');\nINSERT INTO t1 VALUES(3869, 13585, 'thirteen thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(3870, 74276, 'seventy-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(3871, 41745, 'forty-one thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(3872, 11664, 'eleven thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(3873, 46187, 'forty-six thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(3874, 6788, 'six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(3875, 10959, 'ten thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(3876, 3395, 'three thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(3877, 95884, 'ninety-five thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(3878, 10793, 'ten thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(3879, 82977, 'eighty-two thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(3880, 87467, 'eighty-seven thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(3881, 15275, 'fifteen thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(3882, 17124, 'seventeen thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(3883, 49913, 'forty-nine thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(3884, 47050, 'forty-seven thousand fifty');\nINSERT INTO t1 VALUES(3885, 32441, 'thirty-two thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3886, 93266, 'ninety-three thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3887, 91864, 'ninety-one thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(3888, 313, 'three hundred thirteen');\nINSERT INTO t1 VALUES(3889, 47011, 'forty-seven thousand eleven');\nINSERT INTO t1 VALUES(3890, 20944, 'twenty thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(3891, 23221, 'twenty-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(3892, 34869, 'thirty-four thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3893, 28664, 'twenty-eight thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(3894, 72174, 'seventy-two thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(3895, 58160, 'fifty-eight thousand one hundred sixty');\nINSERT INTO t1 VALUES(3896, 70441, 'seventy thousand four hundred forty-one');\nINSERT INTO t1 VALUES(3897, 41607, 'forty-one thousand six hundred seven');\nINSERT INTO t1 VALUES(3898, 97240, 'ninety-seven thousand two hundred forty');\nINSERT INTO t1 VALUES(3899, 17742, 'seventeen thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(3900, 79007, 'seventy-nine thousand seven');\nINSERT INTO t1 VALUES(3901, 20146, 'twenty thousand one hundred forty-six');\nINSERT INTO t1 VALUES(3902, 31531, 'thirty-one thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(3903, 8368, 'eight thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(3904, 61917, 'sixty-one thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(3905, 47507, 'forty-seven thousand five hundred seven');\nINSERT INTO t1 VALUES(3906, 37292, 'thirty-seven thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(3907, 80704, 'eighty thousand seven hundred four');\nINSERT INTO t1 VALUES(3908, 46364, 'forty-six thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(3909, 50174, 'fifty thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(3910, 48855, 'forty-eight thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(3911, 94444, 'ninety-four thousand four hundred forty-four');\nINSERT INTO t1 VALUES(3912, 15294, 'fifteen thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(3913, 36813, 'thirty-six thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(3914, 60220, 'sixty thousand two hundred twenty');\nINSERT INTO t1 VALUES(3915, 57386, 'fifty-seven thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(3916, 77141, 'seventy-seven thousand one hundred forty-one');\nINSERT INTO t1 VALUES(3917, 559, 'five hundred fifty-nine');\nINSERT INTO t1 VALUES(3918, 72758, 'seventy-two thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(3919, 55010, 'fifty-five thousand ten');\nINSERT INTO t1 VALUES(3920, 98236, 'ninety-eight thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(3921, 85551, 'eighty-five thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(3922, 27679, 'twenty-seven thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(3923, 52905, 'fifty-two thousand nine hundred five');\nINSERT INTO t1 VALUES(3924, 31239, 'thirty-one thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(3925, 21107, 'twenty-one thousand one hundred seven');\nINSERT INTO t1 VALUES(3926, 63530, 'sixty-three thousand five hundred thirty');\nINSERT INTO t1 VALUES(3927, 5246, 'five thousand two hundred forty-six');\nINSERT INTO t1 VALUES(3928, 56199, 'fifty-six thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(3929, 7548, 'seven thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(3930, 39631, 'thirty-nine thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(3931, 8389, 'eight thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(3932, 34049, 'thirty-four thousand forty-nine');\nINSERT INTO t1 VALUES(3933, 38445, 'thirty-eight thousand four hundred forty-five');\nINSERT INTO t1 VALUES(3934, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(3935, 9796, 'nine thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(3936, 44287, 'forty-four thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(3937, 35235, 'thirty-five thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(3938, 59785, 'fifty-nine thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(3939, 36910, 'thirty-six thousand nine hundred ten');\nINSERT INTO t1 VALUES(3940, 60146, 'sixty thousand one hundred forty-six');\nINSERT INTO t1 VALUES(3941, 92606, 'ninety-two thousand six hundred six');\nINSERT INTO t1 VALUES(3942, 76387, 'seventy-six thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(3943, 84524, 'eighty-four thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(3944, 11560, 'eleven thousand five hundred sixty');\nINSERT INTO t1 VALUES(3945, 67325, 'sixty-seven thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(3946, 28251, 'twenty-eight thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(3947, 61252, 'sixty-one thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(3948, 52744, 'fifty-two thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(3949, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(3950, 86414, 'eighty-six thousand four hundred fourteen');\nINSERT INTO t1 VALUES(3951, 1992, 'one thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(3952, 16743, 'sixteen thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(3953, 66188, 'sixty-six thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(3954, 72228, 'seventy-two thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(3955, 35606, 'thirty-five thousand six hundred six');\nINSERT INTO t1 VALUES(3956, 14231, 'fourteen thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(3957, 95307, 'ninety-five thousand three hundred seven');\nINSERT INTO t1 VALUES(3958, 9511, 'nine thousand five hundred eleven');\nINSERT INTO t1 VALUES(3959, 58014, 'fifty-eight thousand fourteen');\nINSERT INTO t1 VALUES(3960, 60048, 'sixty thousand forty-eight');\nINSERT INTO t1 VALUES(3961, 93098, 'ninety-three thousand ninety-eight');\nINSERT INTO t1 VALUES(3962, 52218, 'fifty-two thousand two hundred eighteen');\nINSERT INTO t1 VALUES(3963, 90026, 'ninety thousand twenty-six');\nINSERT INTO t1 VALUES(3964, 91869, 'ninety-one thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(3965, 52881, 'fifty-two thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(3966, 54067, 'fifty-four thousand sixty-seven');\nINSERT INTO t1 VALUES(3967, 51007, 'fifty-one thousand seven');\nINSERT INTO t1 VALUES(3968, 55328, 'fifty-five thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(3969, 39037, 'thirty-nine thousand thirty-seven');\nINSERT INTO t1 VALUES(3970, 80020, 'eighty thousand twenty');\nINSERT INTO t1 VALUES(3971, 61629, 'sixty-one thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(3972, 53503, 'fifty-three thousand five hundred three');\nINSERT INTO t1 VALUES(3973, 82824, 'eighty-two thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(3974, 86512, 'eighty-six thousand five hundred twelve');\nINSERT INTO t1 VALUES(3975, 40457, 'forty thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(3976, 56502, 'fifty-six thousand five hundred two');\nINSERT INTO t1 VALUES(3977, 43073, 'forty-three thousand seventy-three');\nINSERT INTO t1 VALUES(3978, 46270, 'forty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(3979, 10861, 'ten thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(3980, 33890, 'thirty-three thousand eight hundred ninety');\nINSERT INTO t1 VALUES(3981, 55937, 'fifty-five thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(3982, 68673, 'sixty-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(3983, 45273, 'forty-five thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(3984, 6645, 'six thousand six hundred forty-five');\nINSERT INTO t1 VALUES(3985, 70307, 'seventy thousand three hundred seven');\nINSERT INTO t1 VALUES(3986, 25268, 'twenty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(3987, 2266, 'two thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(3988, 28591, 'twenty-eight thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(3989, 29696, 'twenty-nine thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(3990, 44161, 'forty-four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(3991, 33114, 'thirty-three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(3992, 8356, 'eight thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(3993, 12246, 'twelve thousand two hundred forty-six');\nINSERT INTO t1 VALUES(3994, 30703, 'thirty thousand seven hundred three');\nINSERT INTO t1 VALUES(3995, 56298, 'fifty-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(3996, 5587, 'five thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(3997, 32706, 'thirty-two thousand seven hundred six');\nINSERT INTO t1 VALUES(3998, 90396, 'ninety thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(3999, 53049, 'fifty-three thousand forty-nine');\nINSERT INTO t1 VALUES(4000, 72794, 'seventy-two thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(4001, 19099, 'nineteen thousand ninety-nine');\nINSERT INTO t1 VALUES(4002, 64021, 'sixty-four thousand twenty-one');\nINSERT INTO t1 VALUES(4003, 45367, 'forty-five thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(4004, 43689, 'forty-three thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(4005, 17675, 'seventeen thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(4006, 89877, 'eighty-nine thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4007, 42947, 'forty-two thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(4008, 39770, 'thirty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(4009, 7643, 'seven thousand six hundred forty-three');\nINSERT INTO t1 VALUES(4010, 34297, 'thirty-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(4011, 99996, 'ninety-nine thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(4012, 68507, 'sixty-eight thousand five hundred seven');\nINSERT INTO t1 VALUES(4013, 64399, 'sixty-four thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(4014, 69246, 'sixty-nine thousand two hundred forty-six');\nINSERT INTO t1 VALUES(4015, 38551, 'thirty-eight thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(4016, 79503, 'seventy-nine thousand five hundred three');\nINSERT INTO t1 VALUES(4017, 66588, 'sixty-six thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(4018, 44339, 'forty-four thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(4019, 21838, 'twenty-one thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(4020, 6660, 'six thousand six hundred sixty');\nINSERT INTO t1 VALUES(4021, 53215, 'fifty-three thousand two hundred fifteen');\nINSERT INTO t1 VALUES(4022, 5994, 'five thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(4023, 64280, 'sixty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(4024, 63415, 'sixty-three thousand four hundred fifteen');\nINSERT INTO t1 VALUES(4025, 30487, 'thirty thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(4026, 483, 'four hundred eighty-three');\nINSERT INTO t1 VALUES(4027, 1493, 'one thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(4028, 35379, 'thirty-five thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(4029, 74311, 'seventy-four thousand three hundred eleven');\nINSERT INTO t1 VALUES(4030, 80133, 'eighty thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(4031, 36637, 'thirty-six thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(4032, 55419, 'fifty-five thousand four hundred nineteen');\nINSERT INTO t1 VALUES(4033, 68446, 'sixty-eight thousand four hundred forty-six');\nINSERT INTO t1 VALUES(4034, 38054, 'thirty-eight thousand fifty-four');\nINSERT INTO t1 VALUES(4035, 96766, 'ninety-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(4036, 91361, 'ninety-one thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(4037, 33672, 'thirty-three thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(4038, 91103, 'ninety-one thousand one hundred three');\nINSERT INTO t1 VALUES(4039, 93229, 'ninety-three thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(4040, 92728, 'ninety-two thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(4041, 85829, 'eighty-five thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(4042, 27828, 'twenty-seven thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(4043, 26112, 'twenty-six thousand one hundred twelve');\nINSERT INTO t1 VALUES(4044, 26029, 'twenty-six thousand twenty-nine');\nINSERT INTO t1 VALUES(4045, 53492, 'fifty-three thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(4046, 75896, 'seventy-five thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(4047, 64940, 'sixty-four thousand nine hundred forty');\nINSERT INTO t1 VALUES(4048, 34726, 'thirty-four thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4049, 89928, 'eighty-nine thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(4050, 80576, 'eighty thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(4051, 12355, 'twelve thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(4052, 56383, 'fifty-six thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4053, 6186, 'six thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(4054, 41800, 'forty-one thousand eight hundred');\nINSERT INTO t1 VALUES(4055, 90071, 'ninety thousand seventy-one');\nINSERT INTO t1 VALUES(4056, 58885, 'fifty-eight thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(4057, 1045, 'one thousand forty-five');\nINSERT INTO t1 VALUES(4058, 79904, 'seventy-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(4059, 95617, 'ninety-five thousand six hundred seventeen');\nINSERT INTO t1 VALUES(4060, 34976, 'thirty-four thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(4061, 19889, 'nineteen thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(4062, 4739, 'four thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(4063, 15935, 'fifteen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(4064, 13908, 'thirteen thousand nine hundred eight');\nINSERT INTO t1 VALUES(4065, 59215, 'fifty-nine thousand two hundred fifteen');\nINSERT INTO t1 VALUES(4066, 40588, 'forty thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(4067, 52777, 'fifty-two thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(4068, 59150, 'fifty-nine thousand one hundred fifty');\nINSERT INTO t1 VALUES(4069, 91694, 'ninety-one thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(4070, 33531, 'thirty-three thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(4071, 2505, 'two thousand five hundred five');\nINSERT INTO t1 VALUES(4072, 44276, 'forty-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4073, 6488, 'six thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(4074, 15160, 'fifteen thousand one hundred sixty');\nINSERT INTO t1 VALUES(4075, 30114, 'thirty thousand one hundred fourteen');\nINSERT INTO t1 VALUES(4076, 66501, 'sixty-six thousand five hundred one');\nINSERT INTO t1 VALUES(4077, 86192, 'eighty-six thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(4078, 65688, 'sixty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(4079, 96085, 'ninety-six thousand eighty-five');\nINSERT INTO t1 VALUES(4080, 71384, 'seventy-one thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(4081, 27124, 'twenty-seven thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(4082, 55394, 'fifty-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(4083, 24491, 'twenty-four thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(4084, 14783, 'fourteen thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(4085, 29011, 'twenty-nine thousand eleven');\nINSERT INTO t1 VALUES(4086, 88954, 'eighty-eight thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(4087, 44956, 'forty-four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(4088, 53429, 'fifty-three thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(4089, 74359, 'seventy-four thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(4090, 52001, 'fifty-two thousand one');\nINSERT INTO t1 VALUES(4091, 45565, 'forty-five thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(4092, 93628, 'ninety-three thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(4093, 94867, 'ninety-four thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(4094, 27584, 'twenty-seven thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(4095, 58674, 'fifty-eight thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(4096, 82871, 'eighty-two thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4097, 55035, 'fifty-five thousand thirty-five');\nINSERT INTO t1 VALUES(4098, 28628, 'twenty-eight thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(4099, 36986, 'thirty-six thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(4100, 32452, 'thirty-two thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(4101, 27003, 'twenty-seven thousand three');\nINSERT INTO t1 VALUES(4102, 22597, 'twenty-two thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(4103, 58324, 'fifty-eight thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(4104, 42426, 'forty-two thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(4105, 5336, 'five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(4106, 23093, 'twenty-three thousand ninety-three');\nINSERT INTO t1 VALUES(4107, 64670, 'sixty-four thousand six hundred seventy');\nINSERT INTO t1 VALUES(4108, 25965, 'twenty-five thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(4109, 29919, 'twenty-nine thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(4110, 25017, 'twenty-five thousand seventeen');\nINSERT INTO t1 VALUES(4111, 45366, 'forty-five thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(4112, 30028, 'thirty thousand twenty-eight');\nINSERT INTO t1 VALUES(4113, 50047, 'fifty thousand forty-seven');\nINSERT INTO t1 VALUES(4114, 58958, 'fifty-eight thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(4115, 14204, 'fourteen thousand two hundred four');\nINSERT INTO t1 VALUES(4116, 94989, 'ninety-four thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(4117, 21657, 'twenty-one thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(4118, 20769, 'twenty thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(4119, 56826, 'fifty-six thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(4120, 50027, 'fifty thousand twenty-seven');\nINSERT INTO t1 VALUES(4121, 47258, 'forty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(4122, 88219, 'eighty-eight thousand two hundred nineteen');\nINSERT INTO t1 VALUES(4123, 2329, 'two thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4124, 51963, 'fifty-one thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(4125, 98153, 'ninety-eight thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(4126, 82115, 'eighty-two thousand one hundred fifteen');\nINSERT INTO t1 VALUES(4127, 15846, 'fifteen thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(4128, 58304, 'fifty-eight thousand three hundred four');\nINSERT INTO t1 VALUES(4129, 9239, 'nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4130, 2227, 'two thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(4131, 59539, 'fifty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(4132, 8854, 'eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(4133, 55999, 'fifty-five thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(4134, 35504, 'thirty-five thousand five hundred four');\nINSERT INTO t1 VALUES(4135, 32550, 'thirty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(4136, 49099, 'forty-nine thousand ninety-nine');\nINSERT INTO t1 VALUES(4137, 36557, 'thirty-six thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(4138, 42436, 'forty-two thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(4139, 60640, 'sixty thousand six hundred forty');\nINSERT INTO t1 VALUES(4140, 31467, 'thirty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(4141, 40086, 'forty thousand eighty-six');\nINSERT INTO t1 VALUES(4142, 50544, 'fifty thousand five hundred forty-four');\nINSERT INTO t1 VALUES(4143, 6241, 'six thousand two hundred forty-one');\nINSERT INTO t1 VALUES(4144, 43125, 'forty-three thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(4145, 62070, 'sixty-two thousand seventy');\nINSERT INTO t1 VALUES(4146, 94535, 'ninety-four thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(4147, 17132, 'seventeen thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(4148, 28845, 'twenty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(4149, 69194, 'sixty-nine thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(4150, 82946, 'eighty-two thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(4151, 10326, 'ten thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(4152, 63692, 'sixty-three thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(4153, 50261, 'fifty thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(4154, 9239, 'nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4155, 29463, 'twenty-nine thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4156, 46890, 'forty-six thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4157, 62820, 'sixty-two thousand eight hundred twenty');\nINSERT INTO t1 VALUES(4158, 96262, 'ninety-six thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(4159, 85822, 'eighty-five thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4160, 94653, 'ninety-four thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(4161, 38565, 'thirty-eight thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(4162, 96935, 'ninety-six thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(4163, 81090, 'eighty-one thousand ninety');\nINSERT INTO t1 VALUES(4164, 33915, 'thirty-three thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(4165, 29239, 'twenty-nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4166, 93164, 'ninety-three thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(4167, 82025, 'eighty-two thousand twenty-five');\nINSERT INTO t1 VALUES(4168, 64441, 'sixty-four thousand four hundred forty-one');\nINSERT INTO t1 VALUES(4169, 81406, 'eighty-one thousand four hundred six');\nINSERT INTO t1 VALUES(4170, 7045, 'seven thousand forty-five');\nINSERT INTO t1 VALUES(4171, 59161, 'fifty-nine thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(4172, 86645, 'eighty-six thousand six hundred forty-five');\nINSERT INTO t1 VALUES(4173, 59085, 'fifty-nine thousand eighty-five');\nINSERT INTO t1 VALUES(4174, 53939, 'fifty-three thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(4175, 99922, 'ninety-nine thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(4176, 86029, 'eighty-six thousand twenty-nine');\nINSERT INTO t1 VALUES(4177, 17185, 'seventeen thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(4178, 29103, 'twenty-nine thousand one hundred three');\nINSERT INTO t1 VALUES(4179, 14187, 'fourteen thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(4180, 3859, 'three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(4181, 22155, 'twenty-two thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4182, 27042, 'twenty-seven thousand forty-two');\nINSERT INTO t1 VALUES(4183, 58539, 'fifty-eight thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(4184, 50035, 'fifty thousand thirty-five');\nINSERT INTO t1 VALUES(4185, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(4186, 28363, 'twenty-eight thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(4187, 68010, 'sixty-eight thousand ten');\nINSERT INTO t1 VALUES(4188, 42998, 'forty-two thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(4189, 80662, 'eighty thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(4190, 45700, 'forty-five thousand seven hundred');\nINSERT INTO t1 VALUES(4191, 27793, 'twenty-seven thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(4192, 33960, 'thirty-three thousand nine hundred sixty');\nINSERT INTO t1 VALUES(4193, 20549, 'twenty thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(4194, 89154, 'eighty-nine thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(4195, 48103, 'forty-eight thousand one hundred three');\nINSERT INTO t1 VALUES(4196, 46782, 'forty-six thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(4197, 72262, 'seventy-two thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(4198, 44155, 'forty-four thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4199, 2181, 'two thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(4200, 28457, 'twenty-eight thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(4201, 29236, 'twenty-nine thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(4202, 19784, 'nineteen thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(4203, 61641, 'sixty-one thousand six hundred forty-one');\nINSERT INTO t1 VALUES(4204, 55742, 'fifty-five thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(4205, 52304, 'fifty-two thousand three hundred four');\nINSERT INTO t1 VALUES(4206, 68541, 'sixty-eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(4207, 95835, 'ninety-five thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(4208, 79239, 'seventy-nine thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4209, 40946, 'forty thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(4210, 84513, 'eighty-four thousand five hundred thirteen');\nINSERT INTO t1 VALUES(4211, 85329, 'eighty-five thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4212, 30659, 'thirty thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(4213, 16052, 'sixteen thousand fifty-two');\nINSERT INTO t1 VALUES(4214, 19055, 'nineteen thousand fifty-five');\nINSERT INTO t1 VALUES(4215, 598, 'five hundred ninety-eight');\nINSERT INTO t1 VALUES(4216, 3169, 'three thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(4217, 13705, 'thirteen thousand seven hundred five');\nINSERT INTO t1 VALUES(4218, 95443, 'ninety-five thousand four hundred forty-three');\nINSERT INTO t1 VALUES(4219, 89960, 'eighty-nine thousand nine hundred sixty');\nINSERT INTO t1 VALUES(4220, 63568, 'sixty-three thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(4221, 46141, 'forty-six thousand one hundred forty-one');\nINSERT INTO t1 VALUES(4222, 82680, 'eighty-two thousand six hundred eighty');\nINSERT INTO t1 VALUES(4223, 82333, 'eighty-two thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(4224, 14323, 'fourteen thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(4225, 72289, 'seventy-two thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(4226, 86238, 'eighty-six thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(4227, 96415, 'ninety-six thousand four hundred fifteen');\nINSERT INTO t1 VALUES(4228, 38834, 'thirty-eight thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(4229, 98813, 'ninety-eight thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(4230, 20106, 'twenty thousand one hundred six');\nINSERT INTO t1 VALUES(4231, 22091, 'twenty-two thousand ninety-one');\nINSERT INTO t1 VALUES(4232, 26988, 'twenty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(4233, 38952, 'thirty-eight thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(4234, 5253, 'five thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(4235, 25050, 'twenty-five thousand fifty');\nINSERT INTO t1 VALUES(4236, 18805, 'eighteen thousand eight hundred five');\nINSERT INTO t1 VALUES(4237, 71255, 'seventy-one thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(4238, 85105, 'eighty-five thousand one hundred five');\nINSERT INTO t1 VALUES(4239, 74322, 'seventy-four thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(4240, 98482, 'ninety-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4241, 1166, 'one thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(4242, 36583, 'thirty-six thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(4243, 71721, 'seventy-one thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(4244, 29543, 'twenty-nine thousand five hundred forty-three');\nINSERT INTO t1 VALUES(4245, 63775, 'sixty-three thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(4246, 43592, 'forty-three thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(4247, 92237, 'ninety-two thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(4248, 38777, 'thirty-eight thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(4249, 67410, 'sixty-seven thousand four hundred ten');\nINSERT INTO t1 VALUES(4250, 36, 'thirty-six');\nINSERT INTO t1 VALUES(4251, 55098, 'fifty-five thousand ninety-eight');\nINSERT INTO t1 VALUES(4252, 34929, 'thirty-four thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(4253, 98308, 'ninety-eight thousand three hundred eight');\nINSERT INTO t1 VALUES(4254, 18340, 'eighteen thousand three hundred forty');\nINSERT INTO t1 VALUES(4255, 5189, 'five thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(4256, 2783, 'two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(4257, 80018, 'eighty thousand eighteen');\nINSERT INTO t1 VALUES(4258, 94190, 'ninety-four thousand one hundred ninety');\nINSERT INTO t1 VALUES(4259, 69253, 'sixty-nine thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(4260, 75187, 'seventy-five thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(4261, 90625, 'ninety thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(4262, 87388, 'eighty-seven thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(4263, 67421, 'sixty-seven thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(4264, 12501, 'twelve thousand five hundred one');\nINSERT INTO t1 VALUES(4265, 28907, 'twenty-eight thousand nine hundred seven');\nINSERT INTO t1 VALUES(4266, 77210, 'seventy-seven thousand two hundred ten');\nINSERT INTO t1 VALUES(4267, 23134, 'twenty-three thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(4268, 89194, 'eighty-nine thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(4269, 21975, 'twenty-one thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(4270, 95679, 'ninety-five thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(4271, 38493, 'thirty-eight thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(4272, 26446, 'twenty-six thousand four hundred forty-six');\nINSERT INTO t1 VALUES(4273, 36844, 'thirty-six thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(4274, 13726, 'thirteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4275, 53052, 'fifty-three thousand fifty-two');\nINSERT INTO t1 VALUES(4276, 52230, 'fifty-two thousand two hundred thirty');\nINSERT INTO t1 VALUES(4277, 34535, 'thirty-four thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(4278, 44100, 'forty-four thousand one hundred');\nINSERT INTO t1 VALUES(4279, 36111, 'thirty-six thousand one hundred eleven');\nINSERT INTO t1 VALUES(4280, 62595, 'sixty-two thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(4281, 5046, 'five thousand forty-six');\nINSERT INTO t1 VALUES(4282, 3729, 'three thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(4283, 66487, 'sixty-six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(4284, 82991, 'eighty-two thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(4285, 77239, 'seventy-seven thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(4286, 37550, 'thirty-seven thousand five hundred fifty');\nINSERT INTO t1 VALUES(4287, 38215, 'thirty-eight thousand two hundred fifteen');\nINSERT INTO t1 VALUES(4288, 28528, 'twenty-eight thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(4289, 83387, 'eighty-three thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(4290, 50686, 'fifty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(4291, 8811, 'eight thousand eight hundred eleven');\nINSERT INTO t1 VALUES(4292, 64877, 'sixty-four thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4293, 9235, 'nine thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(4294, 29722, 'twenty-nine thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(4295, 61695, 'sixty-one thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4296, 70822, 'seventy thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4297, 78917, 'seventy-eight thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(4298, 77630, 'seventy-seven thousand six hundred thirty');\nINSERT INTO t1 VALUES(4299, 8531, 'eight thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(4300, 16640, 'sixteen thousand six hundred forty');\nINSERT INTO t1 VALUES(4301, 12329, 'twelve thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4302, 44621, 'forty-four thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(4303, 96599, 'ninety-six thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(4304, 54798, 'fifty-four thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4305, 32616, 'thirty-two thousand six hundred sixteen');\nINSERT INTO t1 VALUES(4306, 83306, 'eighty-three thousand three hundred six');\nINSERT INTO t1 VALUES(4307, 34071, 'thirty-four thousand seventy-one');\nINSERT INTO t1 VALUES(4308, 32482, 'thirty-two thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4309, 81242, 'eighty-one thousand two hundred forty-two');\nINSERT INTO t1 VALUES(4310, 71814, 'seventy-one thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4311, 91235, 'ninety-one thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(4312, 92963, 'ninety-two thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(4313, 86072, 'eighty-six thousand seventy-two');\nINSERT INTO t1 VALUES(4314, 30940, 'thirty thousand nine hundred forty');\nINSERT INTO t1 VALUES(4315, 85638, 'eighty-five thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(4316, 81292, 'eighty-one thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4317, 13385, 'thirteen thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(4318, 438, 'four hundred thirty-eight');\nINSERT INTO t1 VALUES(4319, 24786, 'twenty-four thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(4320, 63989, 'sixty-three thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(4321, 69795, 'sixty-nine thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(4322, 52973, 'fifty-two thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(4323, 34977, 'thirty-four thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(4324, 61889, 'sixty-one thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(4325, 50111, 'fifty thousand one hundred eleven');\nINSERT INTO t1 VALUES(4326, 35659, 'thirty-five thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(4327, 99502, 'ninety-nine thousand five hundred two');\nINSERT INTO t1 VALUES(4328, 67187, 'sixty-seven thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(4329, 58822, 'fifty-eight thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4330, 76737, 'seventy-six thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(4331, 73627, 'seventy-three thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(4332, 52084, 'fifty-two thousand eighty-four');\nINSERT INTO t1 VALUES(4333, 88570, 'eighty-eight thousand five hundred seventy');\nINSERT INTO t1 VALUES(4334, 94844, 'ninety-four thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(4335, 8684, 'eight thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(4336, 34319, 'thirty-four thousand three hundred nineteen');\nINSERT INTO t1 VALUES(4337, 54419, 'fifty-four thousand four hundred nineteen');\nINSERT INTO t1 VALUES(4338, 35967, 'thirty-five thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(4339, 77660, 'seventy-seven thousand six hundred sixty');\nINSERT INTO t1 VALUES(4340, 19005, 'nineteen thousand five');\nINSERT INTO t1 VALUES(4341, 41393, 'forty-one thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(4342, 72678, 'seventy-two thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(4343, 34693, 'thirty-four thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(4344, 50871, 'fifty thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4345, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(4346, 86855, 'eighty-six thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(4347, 73145, 'seventy-three thousand one hundred forty-five');\nINSERT INTO t1 VALUES(4348, 2576, 'two thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(4349, 8295, 'eight thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(4350, 46147, 'forty-six thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(4351, 55977, 'fifty-five thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(4352, 3372, 'three thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(4353, 87364, 'eighty-seven thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(4354, 56269, 'fifty-six thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(4355, 48197, 'forty-eight thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(4356, 13313, 'thirteen thousand three hundred thirteen');\nINSERT INTO t1 VALUES(4357, 2170, 'two thousand one hundred seventy');\nINSERT INTO t1 VALUES(4358, 38951, 'thirty-eight thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(4359, 5197, 'five thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(4360, 76118, 'seventy-six thousand one hundred eighteen');\nINSERT INTO t1 VALUES(4361, 15494, 'fifteen thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(4362, 4522, 'four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(4363, 12091, 'twelve thousand ninety-one');\nINSERT INTO t1 VALUES(4364, 38854, 'thirty-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(4365, 90046, 'ninety thousand forty-six');\nINSERT INTO t1 VALUES(4366, 73735, 'seventy-three thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(4367, 39442, 'thirty-nine thousand four hundred forty-two');\nINSERT INTO t1 VALUES(4368, 36449, 'thirty-six thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(4369, 11302, 'eleven thousand three hundred two');\nINSERT INTO t1 VALUES(4370, 81366, 'eighty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(4371, 13594, 'thirteen thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(4372, 76789, 'seventy-six thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(4373, 71480, 'seventy-one thousand four hundred eighty');\nINSERT INTO t1 VALUES(4374, 21890, 'twenty-one thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4375, 90100, 'ninety thousand one hundred');\nINSERT INTO t1 VALUES(4376, 71914, 'seventy-one thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(4377, 34220, 'thirty-four thousand two hundred twenty');\nINSERT INTO t1 VALUES(4378, 16556, 'sixteen thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(4379, 13244, 'thirteen thousand two hundred forty-four');\nINSERT INTO t1 VALUES(4380, 84931, 'eighty-four thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(4381, 73567, 'seventy-three thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(4382, 40108, 'forty thousand one hundred eight');\nINSERT INTO t1 VALUES(4383, 47243, 'forty-seven thousand two hundred forty-three');\nINSERT INTO t1 VALUES(4384, 39816, 'thirty-nine thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(4385, 25208, 'twenty-five thousand two hundred eight');\nINSERT INTO t1 VALUES(4386, 93969, 'ninety-three thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(4387, 11719, 'eleven thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(4388, 52673, 'fifty-two thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(4389, 55600, 'fifty-five thousand six hundred');\nINSERT INTO t1 VALUES(4390, 47182, 'forty-seven thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4391, 60823, 'sixty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4392, 14800, 'fourteen thousand eight hundred');\nINSERT INTO t1 VALUES(4393, 77955, 'seventy-seven thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(4394, 85926, 'eighty-five thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(4395, 20814, 'twenty thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4396, 25011, 'twenty-five thousand eleven');\nINSERT INTO t1 VALUES(4397, 55664, 'fifty-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(4398, 81687, 'eighty-one thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(4399, 17646, 'seventeen thousand six hundred forty-six');\nINSERT INTO t1 VALUES(4400, 73010, 'seventy-three thousand ten');\nINSERT INTO t1 VALUES(4401, 63769, 'sixty-three thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(4402, 90297, 'ninety thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(4403, 13448, 'thirteen thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(4404, 42409, 'forty-two thousand four hundred nine');\nINSERT INTO t1 VALUES(4405, 81932, 'eighty-one thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(4406, 42948, 'forty-two thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(4407, 61673, 'sixty-one thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(4408, 38646, 'thirty-eight thousand six hundred forty-six');\nINSERT INTO t1 VALUES(4409, 16276, 'sixteen thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4410, 40691, 'forty thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(4411, 30221, 'thirty thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(4412, 21102, 'twenty-one thousand one hundred two');\nINSERT INTO t1 VALUES(4413, 97986, 'ninety-seven thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(4414, 82405, 'eighty-two thousand four hundred five');\nINSERT INTO t1 VALUES(4415, 78001, 'seventy-eight thousand one');\nINSERT INTO t1 VALUES(4416, 2903, 'two thousand nine hundred three');\nINSERT INTO t1 VALUES(4417, 78695, 'seventy-eight thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4418, 86867, 'eighty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(4419, 4375, 'four thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(4420, 79719, 'seventy-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(4421, 4516, 'four thousand five hundred sixteen');\nINSERT INTO t1 VALUES(4422, 35265, 'thirty-five thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(4423, 90507, 'ninety thousand five hundred seven');\nINSERT INTO t1 VALUES(4424, 84900, 'eighty-four thousand nine hundred');\nINSERT INTO t1 VALUES(4425, 64481, 'sixty-four thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(4426, 80870, 'eighty thousand eight hundred seventy');\nINSERT INTO t1 VALUES(4427, 91275, 'ninety-one thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(4428, 52462, 'fifty-two thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(4429, 70255, 'seventy thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(4430, 18420, 'eighteen thousand four hundred twenty');\nINSERT INTO t1 VALUES(4431, 33198, 'thirty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(4432, 92050, 'ninety-two thousand fifty');\nINSERT INTO t1 VALUES(4433, 23095, 'twenty-three thousand ninety-five');\nINSERT INTO t1 VALUES(4434, 72199, 'seventy-two thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(4435, 12190, 'twelve thousand one hundred ninety');\nINSERT INTO t1 VALUES(4436, 97464, 'ninety-seven thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(4437, 69, 'sixty-nine');\nINSERT INTO t1 VALUES(4438, 73361, 'seventy-three thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(4439, 16275, 'sixteen thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(4440, 89769, 'eighty-nine thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(4441, 89812, 'eighty-nine thousand eight hundred twelve');\nINSERT INTO t1 VALUES(4442, 73627, 'seventy-three thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(4443, 11675, 'eleven thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(4444, 32894, 'thirty-two thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(4445, 13355, 'thirteen thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(4446, 37206, 'thirty-seven thousand two hundred six');\nINSERT INTO t1 VALUES(4447, 61885, 'sixty-one thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(4448, 2590, 'two thousand five hundred ninety');\nINSERT INTO t1 VALUES(4449, 69986, 'sixty-nine thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(4450, 15123, 'fifteen thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(4451, 61831, 'sixty-one thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(4452, 4007, 'four thousand seven');\nINSERT INTO t1 VALUES(4453, 2412, 'two thousand four hundred twelve');\nINSERT INTO t1 VALUES(4454, 58568, 'fifty-eight thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(4455, 96392, 'ninety-six thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(4456, 59677, 'fifty-nine thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(4457, 24514, 'twenty-four thousand five hundred fourteen');\nINSERT INTO t1 VALUES(4458, 83574, 'eighty-three thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(4459, 74774, 'seventy-four thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(4460, 79095, 'seventy-nine thousand ninety-five');\nINSERT INTO t1 VALUES(4461, 77764, 'seventy-seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(4462, 23168, 'twenty-three thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(4463, 90361, 'ninety thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(4464, 81735, 'eighty-one thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(4465, 3721, 'three thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(4466, 62533, 'sixty-two thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(4467, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t1 VALUES(4468, 16354, 'sixteen thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(4469, 84543, 'eighty-four thousand five hundred forty-three');\nINSERT INTO t1 VALUES(4470, 21518, 'twenty-one thousand five hundred eighteen');\nINSERT INTO t1 VALUES(4471, 64956, 'sixty-four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(4472, 33205, 'thirty-three thousand two hundred five');\nINSERT INTO t1 VALUES(4473, 41371, 'forty-one thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(4474, 3890, 'three thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4475, 66162, 'sixty-six thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(4476, 57649, 'fifty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4477, 31883, 'thirty-one thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(4478, 89096, 'eighty-nine thousand ninety-six');\nINSERT INTO t1 VALUES(4479, 52144, 'fifty-two thousand one hundred forty-four');\nINSERT INTO t1 VALUES(4480, 62885, 'sixty-two thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(4481, 5440, 'five thousand four hundred forty');\nINSERT INTO t1 VALUES(4482, 72046, 'seventy-two thousand forty-six');\nINSERT INTO t1 VALUES(4483, 49796, 'forty-nine thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(4484, 16292, 'sixteen thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4485, 4381, 'four thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(4486, 16949, 'sixteen thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(4487, 58059, 'fifty-eight thousand fifty-nine');\nINSERT INTO t1 VALUES(4488, 37479, 'thirty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(4489, 83312, 'eighty-three thousand three hundred twelve');\nINSERT INTO t1 VALUES(4490, 73488, 'seventy-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(4491, 2998, 'two thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(4492, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(4493, 99338, 'ninety-nine thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(4494, 76682, 'seventy-six thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(4495, 50335, 'fifty thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(4496, 94127, 'ninety-four thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(4497, 23942, 'twenty-three thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(4498, 94934, 'ninety-four thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(4499, 17030, 'seventeen thousand thirty');\nINSERT INTO t1 VALUES(4500, 85613, 'eighty-five thousand six hundred thirteen');\nINSERT INTO t1 VALUES(4501, 42121, 'forty-two thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(4502, 25182, 'twenty-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4503, 62630, 'sixty-two thousand six hundred thirty');\nINSERT INTO t1 VALUES(4504, 32441, 'thirty-two thousand four hundred forty-one');\nINSERT INTO t1 VALUES(4505, 46001, 'forty-six thousand one');\nINSERT INTO t1 VALUES(4506, 50930, 'fifty thousand nine hundred thirty');\nINSERT INTO t1 VALUES(4507, 16463, 'sixteen thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4508, 37730, 'thirty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(4509, 30040, 'thirty thousand forty');\nINSERT INTO t1 VALUES(4510, 62319, 'sixty-two thousand three hundred nineteen');\nINSERT INTO t1 VALUES(4511, 85559, 'eighty-five thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(4512, 89263, 'eighty-nine thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(4513, 86400, 'eighty-six thousand four hundred');\nINSERT INTO t1 VALUES(4514, 37894, 'thirty-seven thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(4515, 88711, 'eighty-eight thousand seven hundred eleven');\nINSERT INTO t1 VALUES(4516, 81284, 'eighty-one thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(4517, 72256, 'seventy-two thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(4518, 29560, 'twenty-nine thousand five hundred sixty');\nINSERT INTO t1 VALUES(4519, 43800, 'forty-three thousand eight hundred');\nINSERT INTO t1 VALUES(4520, 32476, 'thirty-two thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(4521, 2745, 'two thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(4522, 7305, 'seven thousand three hundred five');\nINSERT INTO t1 VALUES(4523, 43356, 'forty-three thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(4524, 2617, 'two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(4525, 6228, 'six thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(4526, 22054, 'twenty-two thousand fifty-four');\nINSERT INTO t1 VALUES(4527, 57053, 'fifty-seven thousand fifty-three');\nINSERT INTO t1 VALUES(4528, 25028, 'twenty-five thousand twenty-eight');\nINSERT INTO t1 VALUES(4529, 82324, 'eighty-two thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(4530, 55502, 'fifty-five thousand five hundred two');\nINSERT INTO t1 VALUES(4531, 32469, 'thirty-two thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(4532, 14283, 'fourteen thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(4533, 27467, 'twenty-seven thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(4534, 79652, 'seventy-nine thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(4535, 45547, 'forty-five thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(4536, 26496, 'twenty-six thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(4537, 3460, 'three thousand four hundred sixty');\nINSERT INTO t1 VALUES(4538, 298, 'two hundred ninety-eight');\nINSERT INTO t1 VALUES(4539, 19180, 'nineteen thousand one hundred eighty');\nINSERT INTO t1 VALUES(4540, 96567, 'ninety-six thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(4541, 77127, 'seventy-seven thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(4542, 45628, 'forty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(4543, 48647, 'forty-eight thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(4544, 93104, 'ninety-three thousand one hundred four');\nINSERT INTO t1 VALUES(4545, 28688, 'twenty-eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(4546, 89201, 'eighty-nine thousand two hundred one');\nINSERT INTO t1 VALUES(4547, 96062, 'ninety-six thousand sixty-two');\nINSERT INTO t1 VALUES(4548, 49085, 'forty-nine thousand eighty-five');\nINSERT INTO t1 VALUES(4549, 24101, 'twenty-four thousand one hundred one');\nINSERT INTO t1 VALUES(4550, 74842, 'seventy-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(4551, 80749, 'eighty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(4552, 52575, 'fifty-two thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(4553, 34814, 'thirty-four thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4554, 63019, 'sixty-three thousand nineteen');\nINSERT INTO t1 VALUES(4555, 96764, 'ninety-six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(4556, 87075, 'eighty-seven thousand seventy-five');\nINSERT INTO t1 VALUES(4557, 72945, 'seventy-two thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(4558, 19887, 'nineteen thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(4559, 39030, 'thirty-nine thousand thirty');\nINSERT INTO t1 VALUES(4560, 80749, 'eighty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(4561, 96556, 'ninety-six thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(4562, 37537, 'thirty-seven thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(4563, 11115, 'eleven thousand one hundred fifteen');\nINSERT INTO t1 VALUES(4564, 20674, 'twenty thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(4565, 45543, 'forty-five thousand five hundred forty-three');\nINSERT INTO t1 VALUES(4566, 55336, 'fifty-five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(4567, 28075, 'twenty-eight thousand seventy-five');\nINSERT INTO t1 VALUES(4568, 45745, 'forty-five thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(4569, 46591, 'forty-six thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(4570, 19822, 'nineteen thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(4571, 72821, 'seventy-two thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(4572, 12415, 'twelve thousand four hundred fifteen');\nINSERT INTO t1 VALUES(4573, 44877, 'forty-four thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4574, 14748, 'fourteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(4575, 70451, 'seventy thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(4576, 81424, 'eighty-one thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(4577, 9178, 'nine thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(4578, 16823, 'sixteen thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4579, 86125, 'eighty-six thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(4580, 58448, 'fifty-eight thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(4581, 28433, 'twenty-eight thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(4582, 24244, 'twenty-four thousand two hundred forty-four');\nINSERT INTO t1 VALUES(4583, 8086, 'eight thousand eighty-six');\nINSERT INTO t1 VALUES(4584, 64280, 'sixty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(4585, 27482, 'twenty-seven thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4586, 77782, 'seventy-seven thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(4587, 38899, 'thirty-eight thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(4588, 36738, 'thirty-six thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(4589, 36054, 'thirty-six thousand fifty-four');\nINSERT INTO t1 VALUES(4590, 112, 'one hundred twelve');\nINSERT INTO t1 VALUES(4591, 17643, 'seventeen thousand six hundred forty-three');\nINSERT INTO t1 VALUES(4592, 45540, 'forty-five thousand five hundred forty');\nINSERT INTO t1 VALUES(4593, 29120, 'twenty-nine thousand one hundred twenty');\nINSERT INTO t1 VALUES(4594, 77869, 'seventy-seven thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(4595, 35860, 'thirty-five thousand eight hundred sixty');\nINSERT INTO t1 VALUES(4596, 33832, 'thirty-three thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4597, 56234, 'fifty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(4598, 22523, 'twenty-two thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(4599, 60255, 'sixty thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(4600, 61027, 'sixty-one thousand twenty-seven');\nINSERT INTO t1 VALUES(4601, 73489, 'seventy-three thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(4602, 16787, 'sixteen thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(4603, 3642, 'three thousand six hundred forty-two');\nINSERT INTO t1 VALUES(4604, 7213, 'seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(4605, 26343, 'twenty-six thousand three hundred forty-three');\nINSERT INTO t1 VALUES(4606, 63004, 'sixty-three thousand four');\nINSERT INTO t1 VALUES(4607, 15594, 'fifteen thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(4608, 98127, 'ninety-eight thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(4609, 18302, 'eighteen thousand three hundred two');\nINSERT INTO t1 VALUES(4610, 74228, 'seventy-four thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(4611, 11072, 'eleven thousand seventy-two');\nINSERT INTO t1 VALUES(4612, 24214, 'twenty-four thousand two hundred fourteen');\nINSERT INTO t1 VALUES(4613, 13481, 'thirteen thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(4614, 19585, 'nineteen thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(4615, 55560, 'fifty-five thousand five hundred sixty');\nINSERT INTO t1 VALUES(4616, 26028, 'twenty-six thousand twenty-eight');\nINSERT INTO t1 VALUES(4617, 26325, 'twenty-six thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(4618, 5183, 'five thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(4619, 12754, 'twelve thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(4620, 52704, 'fifty-two thousand seven hundred four');\nINSERT INTO t1 VALUES(4621, 20287, 'twenty thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(4622, 33712, 'thirty-three thousand seven hundred twelve');\nINSERT INTO t1 VALUES(4623, 15237, 'fifteen thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(4624, 63214, 'sixty-three thousand two hundred fourteen');\nINSERT INTO t1 VALUES(4625, 59761, 'fifty-nine thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(4626, 25881, 'twenty-five thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(4627, 26416, 'twenty-six thousand four hundred sixteen');\nINSERT INTO t1 VALUES(4628, 69923, 'sixty-nine thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(4629, 23787, 'twenty-three thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(4630, 30968, 'thirty thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(4631, 22540, 'twenty-two thousand five hundred forty');\nINSERT INTO t1 VALUES(4632, 95694, 'ninety-five thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(4633, 5333, 'five thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(4634, 38454, 'thirty-eight thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(4635, 71328, 'seventy-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(4636, 79506, 'seventy-nine thousand five hundred six');\nINSERT INTO t1 VALUES(4637, 43506, 'forty-three thousand five hundred six');\nINSERT INTO t1 VALUES(4638, 92516, 'ninety-two thousand five hundred sixteen');\nINSERT INTO t1 VALUES(4639, 34411, 'thirty-four thousand four hundred eleven');\nINSERT INTO t1 VALUES(4640, 17383, 'seventeen thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4641, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t1 VALUES(4642, 19688, 'nineteen thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(4643, 66823, 'sixty-six thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4644, 41191, 'forty-one thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(4645, 39651, 'thirty-nine thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(4646, 29956, 'twenty-nine thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(4647, 26691, 'twenty-six thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(4648, 60453, 'sixty thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(4649, 31389, 'thirty-one thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(4650, 71557, 'seventy-one thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(4651, 87148, 'eighty-seven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(4652, 47039, 'forty-seven thousand thirty-nine');\nINSERT INTO t1 VALUES(4653, 67529, 'sixty-seven thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(4654, 52880, 'fifty-two thousand eight hundred eighty');\nINSERT INTO t1 VALUES(4655, 2214, 'two thousand two hundred fourteen');\nINSERT INTO t1 VALUES(4656, 223, 'two hundred twenty-three');\nINSERT INTO t1 VALUES(4657, 46272, 'forty-six thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(4658, 62649, 'sixty-two thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4659, 3029, 'three thousand twenty-nine');\nINSERT INTO t1 VALUES(4660, 51517, 'fifty-one thousand five hundred seventeen');\nINSERT INTO t1 VALUES(4661, 50101, 'fifty thousand one hundred one');\nINSERT INTO t1 VALUES(4662, 82730, 'eighty-two thousand seven hundred thirty');\nINSERT INTO t1 VALUES(4663, 44195, 'forty-four thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(4664, 87695, 'eighty-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4665, 18000, 'eighteen thousand');\nINSERT INTO t1 VALUES(4666, 62865, 'sixty-two thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(4667, 81884, 'eighty-one thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(4668, 54719, 'fifty-four thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(4669, 48270, 'forty-eight thousand two hundred seventy');\nINSERT INTO t1 VALUES(4670, 29229, 'twenty-nine thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(4671, 41942, 'forty-one thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(4672, 19455, 'nineteen thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(4673, 12275, 'twelve thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(4674, 43812, 'forty-three thousand eight hundred twelve');\nINSERT INTO t1 VALUES(4675, 94906, 'ninety-four thousand nine hundred six');\nINSERT INTO t1 VALUES(4676, 28963, 'twenty-eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(4677, 97041, 'ninety-seven thousand forty-one');\nINSERT INTO t1 VALUES(4678, 51525, 'fifty-one thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(4679, 20175, 'twenty thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(4680, 54637, 'fifty-four thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(4681, 60318, 'sixty thousand three hundred eighteen');\nINSERT INTO t1 VALUES(4682, 83591, 'eighty-three thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(4683, 78304, 'seventy-eight thousand three hundred four');\nINSERT INTO t1 VALUES(4684, 87038, 'eighty-seven thousand thirty-eight');\nINSERT INTO t1 VALUES(4685, 93463, 'ninety-three thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4686, 57922, 'fifty-seven thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(4687, 90454, 'ninety thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(4688, 67887, 'sixty-seven thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(4689, 94992, 'ninety-four thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(4690, 30092, 'thirty thousand ninety-two');\nINSERT INTO t1 VALUES(4691, 39925, 'thirty-nine thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(4692, 98894, 'ninety-eight thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(4693, 22185, 'twenty-two thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(4694, 55467, 'fifty-five thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(4695, 30974, 'thirty thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(4696, 13329, 'thirteen thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4697, 42245, 'forty-two thousand two hundred forty-five');\nINSERT INTO t1 VALUES(4698, 73620, 'seventy-three thousand six hundred twenty');\nINSERT INTO t1 VALUES(4699, 55895, 'fifty-five thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(4700, 38992, 'thirty-eight thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(4701, 31429, 'thirty-one thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(4702, 78689, 'seventy-eight thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(4703, 7182, 'seven thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4704, 92551, 'ninety-two thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(4705, 8034, 'eight thousand thirty-four');\nINSERT INTO t1 VALUES(4706, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t1 VALUES(4707, 7982, 'seven thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(4708, 69649, 'sixty-nine thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4709, 24814, 'twenty-four thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(4710, 35534, 'thirty-five thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(4711, 65803, 'sixty-five thousand eight hundred three');\nINSERT INTO t1 VALUES(4712, 53290, 'fifty-three thousand two hundred ninety');\nINSERT INTO t1 VALUES(4713, 84382, 'eighty-four thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(4714, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(4715, 95052, 'ninety-five thousand fifty-two');\nINSERT INTO t1 VALUES(4716, 83463, 'eighty-three thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(4717, 45832, 'forty-five thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4718, 58904, 'fifty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(4719, 90946, 'ninety thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(4720, 5559, 'five thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(4721, 70094, 'seventy thousand ninety-four');\nINSERT INTO t1 VALUES(4722, 75315, 'seventy-five thousand three hundred fifteen');\nINSERT INTO t1 VALUES(4723, 95182, 'ninety-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(4724, 27181, 'twenty-seven thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(4725, 87266, 'eighty-seven thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(4726, 97152, 'ninety-seven thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(4727, 73108, 'seventy-three thousand one hundred eight');\nINSERT INTO t1 VALUES(4728, 81790, 'eighty-one thousand seven hundred ninety');\nINSERT INTO t1 VALUES(4729, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t1 VALUES(4730, 11411, 'eleven thousand four hundred eleven');\nINSERT INTO t1 VALUES(4731, 19269, 'nineteen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(4732, 88849, 'eighty-eight thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(4733, 89848, 'eighty-nine thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(4734, 57216, 'fifty-seven thousand two hundred sixteen');\nINSERT INTO t1 VALUES(4735, 99567, 'ninety-nine thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(4736, 60854, 'sixty thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(4737, 8480, 'eight thousand four hundred eighty');\nINSERT INTO t1 VALUES(4738, 62542, 'sixty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(4739, 53815, 'fifty-three thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(4740, 92189, 'ninety-two thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(4741, 33155, 'thirty-three thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4742, 29081, 'twenty-nine thousand eighty-one');\nINSERT INTO t1 VALUES(4743, 72184, 'seventy-two thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(4744, 87359, 'eighty-seven thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(4745, 60716, 'sixty thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(4746, 55877, 'fifty-five thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(4747, 98929, 'ninety-eight thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(4748, 76459, 'seventy-six thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(4749, 85503, 'eighty-five thousand five hundred three');\nINSERT INTO t1 VALUES(4750, 4674, 'four thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(4751, 52772, 'fifty-two thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(4752, 29261, 'twenty-nine thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(4753, 94405, 'ninety-four thousand four hundred five');\nINSERT INTO t1 VALUES(4754, 75367, 'seventy-five thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(4755, 63012, 'sixty-three thousand twelve');\nINSERT INTO t1 VALUES(4756, 76829, 'seventy-six thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(4757, 74750, 'seventy-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(4758, 58123, 'fifty-eight thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(4759, 99842, 'ninety-nine thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(4760, 3245, 'three thousand two hundred forty-five');\nINSERT INTO t1 VALUES(4761, 11922, 'eleven thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(4762, 74128, 'seventy-four thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(4763, 76166, 'seventy-six thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(4764, 81014, 'eighty-one thousand fourteen');\nINSERT INTO t1 VALUES(4765, 40155, 'forty thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4766, 73621, 'seventy-three thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(4767, 56684, 'fifty-six thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(4768, 16762, 'sixteen thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(4769, 70218, 'seventy thousand two hundred eighteen');\nINSERT INTO t1 VALUES(4770, 38033, 'thirty-eight thousand thirty-three');\nINSERT INTO t1 VALUES(4771, 54826, 'fifty-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(4772, 5337, 'five thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(4773, 42832, 'forty-two thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4774, 6213, 'six thousand two hundred thirteen');\nINSERT INTO t1 VALUES(4775, 79273, 'seventy-nine thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(4776, 86024, 'eighty-six thousand twenty-four');\nINSERT INTO t1 VALUES(4777, 39177, 'thirty-nine thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(4778, 4183, 'four thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(4779, 5785, 'five thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(4780, 86512, 'eighty-six thousand five hundred twelve');\nINSERT INTO t1 VALUES(4781, 74248, 'seventy-four thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(4782, 53540, 'fifty-three thousand five hundred forty');\nINSERT INTO t1 VALUES(4783, 55751, 'fifty-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(4784, 86292, 'eighty-six thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4785, 82125, 'eighty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(4786, 23481, 'twenty-three thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(4787, 1380, 'one thousand three hundred eighty');\nINSERT INTO t1 VALUES(4788, 43547, 'forty-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(4789, 12525, 'twelve thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(4790, 78352, 'seventy-eight thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(4791, 93662, 'ninety-three thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(4792, 45011, 'forty-five thousand eleven');\nINSERT INTO t1 VALUES(4793, 79472, 'seventy-nine thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(4794, 70947, 'seventy thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(4795, 99507, 'ninety-nine thousand five hundred seven');\nINSERT INTO t1 VALUES(4796, 95225, 'ninety-five thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(4797, 82065, 'eighty-two thousand sixty-five');\nINSERT INTO t1 VALUES(4798, 64953, 'sixty-four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(4799, 65642, 'sixty-five thousand six hundred forty-two');\nINSERT INTO t1 VALUES(4800, 23437, 'twenty-three thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(4801, 77763, 'seventy-seven thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(4802, 50917, 'fifty thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(4803, 34383, 'thirty-four thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4804, 94515, 'ninety-four thousand five hundred fifteen');\nINSERT INTO t1 VALUES(4805, 30107, 'thirty thousand one hundred seven');\nINSERT INTO t1 VALUES(4806, 64486, 'sixty-four thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(4807, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(4808, 79292, 'seventy-nine thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(4809, 62750, 'sixty-two thousand seven hundred fifty');\nINSERT INTO t1 VALUES(4810, 85780, 'eighty-five thousand seven hundred eighty');\nINSERT INTO t1 VALUES(4811, 17220, 'seventeen thousand two hundred twenty');\nINSERT INTO t1 VALUES(4812, 78299, 'seventy-eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(4813, 37094, 'thirty-seven thousand ninety-four');\nINSERT INTO t1 VALUES(4814, 50726, 'fifty thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4815, 22276, 'twenty-two thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4816, 65786, 'sixty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(4817, 63124, 'sixty-three thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(4818, 82648, 'eighty-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(4819, 22243, 'twenty-two thousand two hundred forty-three');\nINSERT INTO t1 VALUES(4820, 47823, 'forty-seven thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(4821, 14155, 'fourteen thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(4822, 14939, 'fourteen thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(4823, 24501, 'twenty-four thousand five hundred one');\nINSERT INTO t1 VALUES(4824, 96636, 'ninety-six thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(4825, 66089, 'sixty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(4826, 62383, 'sixty-two thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4827, 79947, 'seventy-nine thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(4828, 66649, 'sixty-six thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(4829, 34257, 'thirty-four thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(4830, 98383, 'ninety-eight thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(4831, 51891, 'fifty-one thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(4832, 33082, 'thirty-three thousand eighty-two');\nINSERT INTO t1 VALUES(4833, 76087, 'seventy-six thousand eighty-seven');\nINSERT INTO t1 VALUES(4834, 57695, 'fifty-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(4835, 2954, 'two thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(4836, 24087, 'twenty-four thousand eighty-seven');\nINSERT INTO t1 VALUES(4837, 15764, 'fifteen thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(4838, 11409, 'eleven thousand four hundred nine');\nINSERT INTO t1 VALUES(4839, 71831, 'seventy-one thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(4840, 98522, 'ninety-eight thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(4841, 60169, 'sixty thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(4842, 97832, 'ninety-seven thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(4843, 99592, 'ninety-nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(4844, 25798, 'twenty-five thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4845, 12152, 'twelve thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(4846, 78138, 'seventy-eight thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(4847, 25771, 'twenty-five thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(4848, 90210, 'ninety thousand two hundred ten');\nINSERT INTO t1 VALUES(4849, 37288, 'thirty-seven thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(4850, 92811, 'ninety-two thousand eight hundred eleven');\nINSERT INTO t1 VALUES(4851, 43802, 'forty-three thousand eight hundred two');\nINSERT INTO t1 VALUES(4852, 21473, 'twenty-one thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(4853, 62432, 'sixty-two thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(4854, 40722, 'forty thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(4855, 65167, 'sixty-five thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(4856, 17437, 'seventeen thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(4857, 36541, 'thirty-six thousand five hundred forty-one');\nINSERT INTO t1 VALUES(4858, 97480, 'ninety-seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(4859, 49377, 'forty-nine thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(4860, 28958, 'twenty-eight thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(4861, 43310, 'forty-three thousand three hundred ten');\nINSERT INTO t1 VALUES(4862, 16391, 'sixteen thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(4863, 67625, 'sixty-seven thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(4864, 34527, 'thirty-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(4865, 56647, 'fifty-six thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(4866, 73526, 'seventy-three thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(4867, 16145, 'sixteen thousand one hundred forty-five');\nINSERT INTO t1 VALUES(4868, 89559, 'eighty-nine thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(4869, 78318, 'seventy-eight thousand three hundred eighteen');\nINSERT INTO t1 VALUES(4870, 84615, 'eighty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(4871, 27418, 'twenty-seven thousand four hundred eighteen');\nINSERT INTO t1 VALUES(4872, 11750, 'eleven thousand seven hundred fifty');\nINSERT INTO t1 VALUES(4873, 84545, 'eighty-four thousand five hundred forty-five');\nINSERT INTO t1 VALUES(4874, 92760, 'ninety-two thousand seven hundred sixty');\nINSERT INTO t1 VALUES(4875, 3374, 'three thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(4876, 53723, 'fifty-three thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(4877, 39422, 'thirty-nine thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(4878, 95276, 'ninety-five thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(4879, 66620, 'sixty-six thousand six hundred twenty');\nINSERT INTO t1 VALUES(4880, 85432, 'eighty-five thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(4881, 6362, 'six thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(4882, 62071, 'sixty-two thousand seventy-one');\nINSERT INTO t1 VALUES(4883, 70669, 'seventy thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(4884, 56076, 'fifty-six thousand seventy-six');\nINSERT INTO t1 VALUES(4885, 36689, 'thirty-six thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(4886, 14768, 'fourteen thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(4887, 21692, 'twenty-one thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(4888, 14078, 'fourteen thousand seventy-eight');\nINSERT INTO t1 VALUES(4889, 60308, 'sixty thousand three hundred eight');\nINSERT INTO t1 VALUES(4890, 682, 'six hundred eighty-two');\nINSERT INTO t1 VALUES(4891, 11, 'eleven');\nINSERT INTO t1 VALUES(4892, 78599, 'seventy-eight thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(4893, 6511, 'six thousand five hundred eleven');\nINSERT INTO t1 VALUES(4894, 91329, 'ninety-one thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(4895, 49767, 'forty-nine thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(4896, 86325, 'eighty-six thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(4897, 42924, 'forty-two thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(4898, 65871, 'sixty-five thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4899, 34569, 'thirty-four thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(4900, 66317, 'sixty-six thousand three hundred seventeen');\nINSERT INTO t1 VALUES(4901, 1648, 'one thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(4902, 22486, 'twenty-two thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(4903, 12243, 'twelve thousand two hundred forty-three');\nINSERT INTO t1 VALUES(4904, 90102, 'ninety thousand one hundred two');\nINSERT INTO t1 VALUES(4905, 6406, 'six thousand four hundred six');\nINSERT INTO t1 VALUES(4906, 85824, 'eighty-five thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(4907, 55138, 'fifty-five thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(4908, 82534, 'eighty-two thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(4909, 3539, 'three thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(4910, 85659, 'eighty-five thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(4911, 35053, 'thirty-five thousand fifty-three');\nINSERT INTO t1 VALUES(4912, 98270, 'ninety-eight thousand two hundred seventy');\nINSERT INTO t1 VALUES(4913, 25920, 'twenty-five thousand nine hundred twenty');\nINSERT INTO t1 VALUES(4914, 65751, 'sixty-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(4915, 77804, 'seventy-seven thousand eight hundred four');\nINSERT INTO t1 VALUES(4916, 79740, 'seventy-nine thousand seven hundred forty');\nINSERT INTO t1 VALUES(4917, 88145, 'eighty-eight thousand one hundred forty-five');\nINSERT INTO t1 VALUES(4918, 14251, 'fourteen thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(4919, 3766, 'three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(4920, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(4921, 14671, 'fourteen thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(4922, 81320, 'eighty-one thousand three hundred twenty');\nINSERT INTO t1 VALUES(4923, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t1 VALUES(4924, 60393, 'sixty thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(4925, 44022, 'forty-four thousand twenty-two');\nINSERT INTO t1 VALUES(4926, 34718, 'thirty-four thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(4927, 80929, 'eighty thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(4928, 87547, 'eighty-seven thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(4929, 58435, 'fifty-eight thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(4930, 96859, 'ninety-six thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(4931, 76584, 'seventy-six thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(4932, 70798, 'seventy thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4933, 76727, 'seventy-six thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(4934, 10316, 'ten thousand three hundred sixteen');\nINSERT INTO t1 VALUES(4935, 58254, 'fifty-eight thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(4936, 74206, 'seventy-four thousand two hundred six');\nINSERT INTO t1 VALUES(4937, 72797, 'seventy-two thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(4938, 85501, 'eighty-five thousand five hundred one');\nINSERT INTO t1 VALUES(4939, 90040, 'ninety thousand forty');\nINSERT INTO t1 VALUES(4940, 69312, 'sixty-nine thousand three hundred twelve');\nINSERT INTO t1 VALUES(4941, 36159, 'thirty-six thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(4942, 41774, 'forty-one thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(4943, 89927, 'eighty-nine thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(4944, 13645, 'thirteen thousand six hundred forty-five');\nINSERT INTO t1 VALUES(4945, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(4946, 75441, 'seventy-five thousand four hundred forty-one');\nINSERT INTO t1 VALUES(4947, 25143, 'twenty-five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(4948, 80632, 'eighty thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(4949, 47896, 'forty-seven thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(4950, 43277, 'forty-three thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(4951, 88171, 'eighty-eight thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(4952, 85482, 'eighty-five thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(4953, 33910, 'thirty-three thousand nine hundred ten');\nINSERT INTO t1 VALUES(4954, 8168, 'eight thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(4955, 7870, 'seven thousand eight hundred seventy');\nINSERT INTO t1 VALUES(4956, 60041, 'sixty thousand forty-one');\nINSERT INTO t1 VALUES(4957, 70341, 'seventy thousand three hundred forty-one');\nINSERT INTO t1 VALUES(4958, 19890, 'nineteen thousand eight hundred ninety');\nINSERT INTO t1 VALUES(4959, 47365, 'forty-seven thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(4960, 28798, 'twenty-eight thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(4961, 9892, 'nine thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(4962, 67196, 'sixty-seven thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(4963, 16818, 'sixteen thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(4964, 49219, 'forty-nine thousand two hundred nineteen');\nINSERT INTO t1 VALUES(4965, 31667, 'thirty-one thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(4966, 44330, 'forty-four thousand three hundred thirty');\nINSERT INTO t1 VALUES(4967, 89853, 'eighty-nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(4968, 39582, 'thirty-nine thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(4969, 52560, 'fifty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(4970, 32308, 'thirty-two thousand three hundred eight');\nINSERT INTO t1 VALUES(4971, 34148, 'thirty-four thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(4972, 57437, 'fifty-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(4973, 62652, 'sixty-two thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(4974, 7403, 'seven thousand four hundred three');\nINSERT INTO t1 VALUES(4975, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(4976, 89152, 'eighty-nine thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(4977, 68671, 'sixty-eight thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(4978, 38004, 'thirty-eight thousand four');\nINSERT INTO t1 VALUES(4979, 61875, 'sixty-one thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(4980, 31952, 'thirty-one thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(4981, 12227, 'twelve thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(4982, 65683, 'sixty-five thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(4983, 2622, 'two thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(4984, 20773, 'twenty thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(4985, 23588, 'twenty-three thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(4986, 15388, 'fifteen thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(4987, 16975, 'sixteen thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(4988, 25573, 'twenty-five thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(4989, 9375, 'nine thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(4990, 54697, 'fifty-four thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(4991, 19726, 'nineteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(4992, 95603, 'ninety-five thousand six hundred three');\nINSERT INTO t1 VALUES(4993, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(4994, 12452, 'twelve thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(4995, 6133, 'six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(4996, 98070, 'ninety-eight thousand seventy');\nINSERT INTO t1 VALUES(4997, 32980, 'thirty-two thousand nine hundred eighty');\nINSERT INTO t1 VALUES(4998, 88641, 'eighty-eight thousand six hundred forty-one');\nINSERT INTO t1 VALUES(4999, 40778, 'forty thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(5000, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5001, 69865, 'sixty-nine thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(5002, 48774, 'forty-eight thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(5003, 95451, 'ninety-five thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(5004, 31998, 'thirty-one thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(5005, 86302, 'eighty-six thousand three hundred two');\nINSERT INTO t1 VALUES(5006, 4809, 'four thousand eight hundred nine');\nINSERT INTO t1 VALUES(5007, 14546, 'fourteen thousand five hundred forty-six');\nINSERT INTO t1 VALUES(5008, 4046, 'four thousand forty-six');\nINSERT INTO t1 VALUES(5009, 75233, 'seventy-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5010, 65068, 'sixty-five thousand sixty-eight');\nINSERT INTO t1 VALUES(5011, 29651, 'twenty-nine thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(5012, 8108, 'eight thousand one hundred eight');\nINSERT INTO t1 VALUES(5013, 60364, 'sixty thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(5014, 62997, 'sixty-two thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5015, 56287, 'fifty-six thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(5016, 17458, 'seventeen thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(5017, 88216, 'eighty-eight thousand two hundred sixteen');\nINSERT INTO t1 VALUES(5018, 58866, 'fifty-eight thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(5019, 2951, 'two thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(5020, 93139, 'ninety-three thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(5021, 40373, 'forty thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(5022, 84735, 'eighty-four thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(5023, 82945, 'eighty-two thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(5024, 6997, 'six thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5025, 38114, 'thirty-eight thousand one hundred fourteen');\nINSERT INTO t1 VALUES(5026, 65230, 'sixty-five thousand two hundred thirty');\nINSERT INTO t1 VALUES(5027, 51181, 'fifty-one thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(5028, 66602, 'sixty-six thousand six hundred two');\nINSERT INTO t1 VALUES(5029, 86067, 'eighty-six thousand sixty-seven');\nINSERT INTO t1 VALUES(5030, 83722, 'eighty-three thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(5031, 22709, 'twenty-two thousand seven hundred nine');\nINSERT INTO t1 VALUES(5032, 35923, 'thirty-five thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(5033, 49564, 'forty-nine thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(5034, 27234, 'twenty-seven thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5035, 84707, 'eighty-four thousand seven hundred seven');\nINSERT INTO t1 VALUES(5036, 99719, 'ninety-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(5037, 73704, 'seventy-three thousand seven hundred four');\nINSERT INTO t1 VALUES(5038, 71460, 'seventy-one thousand four hundred sixty');\nINSERT INTO t1 VALUES(5039, 59374, 'fifty-nine thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(5040, 71162, 'seventy-one thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(5041, 51665, 'fifty-one thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(5042, 27428, 'twenty-seven thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(5043, 658, 'six hundred fifty-eight');\nINSERT INTO t1 VALUES(5044, 78850, 'seventy-eight thousand eight hundred fifty');\nINSERT INTO t1 VALUES(5045, 66534, 'sixty-six thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(5046, 30081, 'thirty thousand eighty-one');\nINSERT INTO t1 VALUES(5047, 69557, 'sixty-nine thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(5048, 13266, 'thirteen thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(5049, 48059, 'forty-eight thousand fifty-nine');\nINSERT INTO t1 VALUES(5050, 62586, 'sixty-two thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(5051, 50146, 'fifty thousand one hundred forty-six');\nINSERT INTO t1 VALUES(5052, 9104, 'nine thousand one hundred four');\nINSERT INTO t1 VALUES(5053, 27503, 'twenty-seven thousand five hundred three');\nINSERT INTO t1 VALUES(5054, 20790, 'twenty thousand seven hundred ninety');\nINSERT INTO t1 VALUES(5055, 37953, 'thirty-seven thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(5056, 51305, 'fifty-one thousand three hundred five');\nINSERT INTO t1 VALUES(5057, 21697, 'twenty-one thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(5058, 9731, 'nine thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5059, 1057, 'one thousand fifty-seven');\nINSERT INTO t1 VALUES(5060, 34236, 'thirty-four thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(5061, 96761, 'ninety-six thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(5062, 7220, 'seven thousand two hundred twenty');\nINSERT INTO t1 VALUES(5063, 34744, 'thirty-four thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(5064, 79573, 'seventy-nine thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(5065, 51553, 'fifty-one thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(5066, 7497, 'seven thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(5067, 81295, 'eighty-one thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(5068, 83888, 'eighty-three thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(5069, 80030, 'eighty thousand thirty');\nINSERT INTO t1 VALUES(5070, 28902, 'twenty-eight thousand nine hundred two');\nINSERT INTO t1 VALUES(5071, 44805, 'forty-four thousand eight hundred five');\nINSERT INTO t1 VALUES(5072, 4211, 'four thousand two hundred eleven');\nINSERT INTO t1 VALUES(5073, 66600, 'sixty-six thousand six hundred');\nINSERT INTO t1 VALUES(5074, 78220, 'seventy-eight thousand two hundred twenty');\nINSERT INTO t1 VALUES(5075, 10624, 'ten thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(5076, 9604, 'nine thousand six hundred four');\nINSERT INTO t1 VALUES(5077, 40490, 'forty thousand four hundred ninety');\nINSERT INTO t1 VALUES(5078, 76195, 'seventy-six thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(5079, 56267, 'fifty-six thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(5080, 65411, 'sixty-five thousand four hundred eleven');\nINSERT INTO t1 VALUES(5081, 55363, 'fifty-five thousand three hundred sixty-three');\nINSERT INTO t1 VALUES(5082, 51661, 'fifty-one thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(5083, 52824, 'fifty-two thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(5084, 23877, 'twenty-three thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(5085, 7395, 'seven thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(5086, 25891, 'twenty-five thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(5087, 32062, 'thirty-two thousand sixty-two');\nINSERT INTO t1 VALUES(5088, 39662, 'thirty-nine thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(5089, 79311, 'seventy-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(5090, 88399, 'eighty-eight thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(5091, 14445, 'fourteen thousand four hundred forty-five');\nINSERT INTO t1 VALUES(5092, 18140, 'eighteen thousand one hundred forty');\nINSERT INTO t1 VALUES(5093, 2654, 'two thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(5094, 1396, 'one thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(5095, 83328, 'eighty-three thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(5096, 71659, 'seventy-one thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(5097, 84065, 'eighty-four thousand sixty-five');\nINSERT INTO t1 VALUES(5098, 78765, 'seventy-eight thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(5099, 47416, 'forty-seven thousand four hundred sixteen');\nINSERT INTO t1 VALUES(5100, 38247, 'thirty-eight thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(5101, 66326, 'sixty-six thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5102, 15537, 'fifteen thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(5103, 20176, 'twenty thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(5104, 8227, 'eight thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(5105, 68007, 'sixty-eight thousand seven');\nINSERT INTO t1 VALUES(5106, 83462, 'eighty-three thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(5107, 28891, 'twenty-eight thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(5108, 78083, 'seventy-eight thousand eighty-three');\nINSERT INTO t1 VALUES(5109, 13749, 'thirteen thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(5110, 17575, 'seventeen thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5111, 99771, 'ninety-nine thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(5112, 72786, 'seventy-two thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5113, 62452, 'sixty-two thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(5114, 24689, 'twenty-four thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(5115, 75122, 'seventy-five thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(5116, 55950, 'fifty-five thousand nine hundred fifty');\nINSERT INTO t1 VALUES(5117, 68275, 'sixty-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(5118, 96199, 'ninety-six thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(5119, 80579, 'eighty thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(5120, 60822, 'sixty thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(5121, 34086, 'thirty-four thousand eighty-six');\nINSERT INTO t1 VALUES(5122, 9588, 'nine thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5123, 45708, 'forty-five thousand seven hundred eight');\nINSERT INTO t1 VALUES(5124, 24138, 'twenty-four thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(5125, 20121, 'twenty thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(5126, 38219, 'thirty-eight thousand two hundred nineteen');\nINSERT INTO t1 VALUES(5127, 90510, 'ninety thousand five hundred ten');\nINSERT INTO t1 VALUES(5128, 34525, 'thirty-four thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(5129, 71507, 'seventy-one thousand five hundred seven');\nINSERT INTO t1 VALUES(5130, 10045, 'ten thousand forty-five');\nINSERT INTO t1 VALUES(5131, 22274, 'twenty-two thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(5132, 80483, 'eighty thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(5133, 98654, 'ninety-eight thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(5134, 46867, 'forty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(5135, 36598, 'thirty-six thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(5136, 57689, 'fifty-seven thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(5137, 87356, 'eighty-seven thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(5138, 71671, 'seventy-one thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(5139, 35453, 'thirty-five thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(5140, 23566, 'twenty-three thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(5141, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(5142, 74329, 'seventy-four thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(5143, 49253, 'forty-nine thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(5144, 80901, 'eighty thousand nine hundred one');\nINSERT INTO t1 VALUES(5145, 57262, 'fifty-seven thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(5146, 14743, 'fourteen thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(5147, 5143, 'five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(5148, 11346, 'eleven thousand three hundred forty-six');\nINSERT INTO t1 VALUES(5149, 17987, 'seventeen thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(5150, 66734, 'sixty-six thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(5151, 60407, 'sixty thousand four hundred seven');\nINSERT INTO t1 VALUES(5152, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(5153, 86109, 'eighty-six thousand one hundred nine');\nINSERT INTO t1 VALUES(5154, 19290, 'nineteen thousand two hundred ninety');\nINSERT INTO t1 VALUES(5155, 19630, 'nineteen thousand six hundred thirty');\nINSERT INTO t1 VALUES(5156, 38358, 'thirty-eight thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(5157, 57446, 'fifty-seven thousand four hundred forty-six');\nINSERT INTO t1 VALUES(5158, 88152, 'eighty-eight thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(5159, 86018, 'eighty-six thousand eighteen');\nINSERT INTO t1 VALUES(5160, 62771, 'sixty-two thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(5161, 12777, 'twelve thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(5162, 19538, 'nineteen thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(5163, 64507, 'sixty-four thousand five hundred seven');\nINSERT INTO t1 VALUES(5164, 244, 'two hundred forty-four');\nINSERT INTO t1 VALUES(5165, 30075, 'thirty thousand seventy-five');\nINSERT INTO t1 VALUES(5166, 8807, 'eight thousand eight hundred seven');\nINSERT INTO t1 VALUES(5167, 57832, 'fifty-seven thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(5168, 72229, 'seventy-two thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(5169, 99913, 'ninety-nine thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(5170, 40863, 'forty thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(5171, 70246, 'seventy thousand two hundred forty-six');\nINSERT INTO t1 VALUES(5172, 22588, 'twenty-two thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5173, 53832, 'fifty-three thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(5174, 48056, 'forty-eight thousand fifty-six');\nINSERT INTO t1 VALUES(5175, 11009, 'eleven thousand nine');\nINSERT INTO t1 VALUES(5176, 84965, 'eighty-four thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(5177, 21867, 'twenty-one thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(5178, 74869, 'seventy-four thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(5179, 60210, 'sixty thousand two hundred ten');\nINSERT INTO t1 VALUES(5180, 39054, 'thirty-nine thousand fifty-four');\nINSERT INTO t1 VALUES(5181, 38326, 'thirty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5182, 36443, 'thirty-six thousand four hundred forty-three');\nINSERT INTO t1 VALUES(5183, 48476, 'forty-eight thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(5184, 83269, 'eighty-three thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(5185, 97864, 'ninety-seven thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(5186, 51454, 'fifty-one thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(5187, 76008, 'seventy-six thousand eight');\nINSERT INTO t1 VALUES(5188, 7244, 'seven thousand two hundred forty-four');\nINSERT INTO t1 VALUES(5189, 23234, 'twenty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5190, 48739, 'forty-eight thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(5191, 40019, 'forty thousand nineteen');\nINSERT INTO t1 VALUES(5192, 14220, 'fourteen thousand two hundred twenty');\nINSERT INTO t1 VALUES(5193, 29048, 'twenty-nine thousand forty-eight');\nINSERT INTO t1 VALUES(5194, 19599, 'nineteen thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(5195, 24007, 'twenty-four thousand seven');\nINSERT INTO t1 VALUES(5196, 73456, 'seventy-three thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(5197, 97145, 'ninety-seven thousand one hundred forty-five');\nINSERT INTO t1 VALUES(5198, 10401, 'ten thousand four hundred one');\nINSERT INTO t1 VALUES(5199, 46511, 'forty-six thousand five hundred eleven');\nINSERT INTO t1 VALUES(5200, 17746, 'seventeen thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(5201, 89757, 'eighty-nine thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(5202, 63317, 'sixty-three thousand three hundred seventeen');\nINSERT INTO t1 VALUES(5203, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(5204, 49984, 'forty-nine thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(5205, 80772, 'eighty thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(5206, 97065, 'ninety-seven thousand sixty-five');\nINSERT INTO t1 VALUES(5207, 34855, 'thirty-four thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(5208, 48612, 'forty-eight thousand six hundred twelve');\nINSERT INTO t1 VALUES(5209, 81997, 'eighty-one thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5210, 28739, 'twenty-eight thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(5211, 49554, 'forty-nine thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(5212, 45237, 'forty-five thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(5213, 68553, 'sixty-eight thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(5214, 84721, 'eighty-four thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(5215, 92537, 'ninety-two thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(5216, 78187, 'seventy-eight thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(5217, 1787, 'one thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(5218, 1215, 'one thousand two hundred fifteen');\nINSERT INTO t1 VALUES(5219, 34684, 'thirty-four thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(5220, 40014, 'forty thousand fourteen');\nINSERT INTO t1 VALUES(5221, 63718, 'sixty-three thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(5222, 98041, 'ninety-eight thousand forty-one');\nINSERT INTO t1 VALUES(5223, 17058, 'seventeen thousand fifty-eight');\nINSERT INTO t1 VALUES(5224, 59580, 'fifty-nine thousand five hundred eighty');\nINSERT INTO t1 VALUES(5225, 16947, 'sixteen thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(5226, 37058, 'thirty-seven thousand fifty-eight');\nINSERT INTO t1 VALUES(5227, 17530, 'seventeen thousand five hundred thirty');\nINSERT INTO t1 VALUES(5228, 7657, 'seven thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(5229, 78127, 'seventy-eight thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(5230, 29000, 'twenty-nine thousand');\nINSERT INTO t1 VALUES(5231, 47986, 'forty-seven thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(5232, 853, 'eight hundred fifty-three');\nINSERT INTO t1 VALUES(5233, 10357, 'ten thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(5234, 38598, 'thirty-eight thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(5235, 43329, 'forty-three thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(5236, 70858, 'seventy thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(5237, 97113, 'ninety-seven thousand one hundred thirteen');\nINSERT INTO t1 VALUES(5238, 45132, 'forty-five thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(5239, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t1 VALUES(5240, 23955, 'twenty-three thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(5241, 90875, 'ninety thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(5242, 84505, 'eighty-four thousand five hundred five');\nINSERT INTO t1 VALUES(5243, 95529, 'ninety-five thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(5244, 43616, 'forty-three thousand six hundred sixteen');\nINSERT INTO t1 VALUES(5245, 2450, 'two thousand four hundred fifty');\nINSERT INTO t1 VALUES(5246, 48027, 'forty-eight thousand twenty-seven');\nINSERT INTO t1 VALUES(5247, 29365, 'twenty-nine thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(5248, 66737, 'sixty-six thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(5249, 1907, 'one thousand nine hundred seven');\nINSERT INTO t1 VALUES(5250, 6535, 'six thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5251, 8896, 'eight thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(5252, 51925, 'fifty-one thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(5253, 4490, 'four thousand four hundred ninety');\nINSERT INTO t1 VALUES(5254, 35342, 'thirty-five thousand three hundred forty-two');\nINSERT INTO t1 VALUES(5255, 71467, 'seventy-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5256, 72074, 'seventy-two thousand seventy-four');\nINSERT INTO t1 VALUES(5257, 33367, 'thirty-three thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(5258, 68786, 'sixty-eight thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5259, 49625, 'forty-nine thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(5260, 74418, 'seventy-four thousand four hundred eighteen');\nINSERT INTO t1 VALUES(5261, 74442, 'seventy-four thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5262, 22950, 'twenty-two thousand nine hundred fifty');\nINSERT INTO t1 VALUES(5263, 6802, 'six thousand eight hundred two');\nINSERT INTO t1 VALUES(5264, 87028, 'eighty-seven thousand twenty-eight');\nINSERT INTO t1 VALUES(5265, 10523, 'ten thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(5266, 64483, 'sixty-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(5267, 3044, 'three thousand forty-four');\nINSERT INTO t1 VALUES(5268, 76344, 'seventy-six thousand three hundred forty-four');\nINSERT INTO t1 VALUES(5269, 20726, 'twenty thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(5270, 20551, 'twenty thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(5271, 84525, 'eighty-four thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(5272, 16248, 'sixteen thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(5273, 95862, 'ninety-five thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(5274, 35622, 'thirty-five thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(5275, 46731, 'forty-six thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5276, 93383, 'ninety-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(5277, 1777, 'one thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(5278, 74638, 'seventy-four thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(5279, 74335, 'seventy-four thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(5280, 31913, 'thirty-one thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(5281, 34160, 'thirty-four thousand one hundred sixty');\nINSERT INTO t1 VALUES(5282, 31120, 'thirty-one thousand one hundred twenty');\nINSERT INTO t1 VALUES(5283, 83750, 'eighty-three thousand seven hundred fifty');\nINSERT INTO t1 VALUES(5284, 67754, 'sixty-seven thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(5285, 44313, 'forty-four thousand three hundred thirteen');\nINSERT INTO t1 VALUES(5286, 40435, 'forty thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(5287, 27914, 'twenty-seven thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(5288, 40734, 'forty thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(5289, 92944, 'ninety-two thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(5290, 26482, 'twenty-six thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(5291, 49816, 'forty-nine thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(5292, 12548, 'twelve thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(5293, 89241, 'eighty-nine thousand two hundred forty-one');\nINSERT INTO t1 VALUES(5294, 70605, 'seventy thousand six hundred five');\nINSERT INTO t1 VALUES(5295, 43728, 'forty-three thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5296, 94159, 'ninety-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5297, 25763, 'twenty-five thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(5298, 446, 'four hundred forty-six');\nINSERT INTO t1 VALUES(5299, 91250, 'ninety-one thousand two hundred fifty');\nINSERT INTO t1 VALUES(5300, 19711, 'nineteen thousand seven hundred eleven');\nINSERT INTO t1 VALUES(5301, 47149, 'forty-seven thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5302, 90439, 'ninety thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(5303, 80312, 'eighty thousand three hundred twelve');\nINSERT INTO t1 VALUES(5304, 90807, 'ninety thousand eight hundred seven');\nINSERT INTO t1 VALUES(5305, 97383, 'ninety-seven thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(5306, 80599, 'eighty thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(5307, 74922, 'seventy-four thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(5308, 98275, 'ninety-eight thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(5309, 97645, 'ninety-seven thousand six hundred forty-five');\nINSERT INTO t1 VALUES(5310, 26133, 'twenty-six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(5311, 25834, 'twenty-five thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(5312, 97280, 'ninety-seven thousand two hundred eighty');\nINSERT INTO t1 VALUES(5313, 38098, 'thirty-eight thousand ninety-eight');\nINSERT INTO t1 VALUES(5314, 29623, 'twenty-nine thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(5315, 28408, 'twenty-eight thousand four hundred eight');\nINSERT INTO t1 VALUES(5316, 93247, 'ninety-three thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(5317, 85070, 'eighty-five thousand seventy');\nINSERT INTO t1 VALUES(5318, 93212, 'ninety-three thousand two hundred twelve');\nINSERT INTO t1 VALUES(5319, 66169, 'sixty-six thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(5320, 65027, 'sixty-five thousand twenty-seven');\nINSERT INTO t1 VALUES(5321, 94772, 'ninety-four thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(5322, 49550, 'forty-nine thousand five hundred fifty');\nINSERT INTO t1 VALUES(5323, 15605, 'fifteen thousand six hundred five');\nINSERT INTO t1 VALUES(5324, 38278, 'thirty-eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(5325, 56156, 'fifty-six thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(5326, 45261, 'forty-five thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(5327, 19385, 'nineteen thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(5328, 25974, 'twenty-five thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(5329, 43346, 'forty-three thousand three hundred forty-six');\nINSERT INTO t1 VALUES(5330, 97638, 'ninety-seven thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(5331, 69588, 'sixty-nine thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5332, 21059, 'twenty-one thousand fifty-nine');\nINSERT INTO t1 VALUES(5333, 61640, 'sixty-one thousand six hundred forty');\nINSERT INTO t1 VALUES(5334, 9277, 'nine thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(5335, 85835, 'eighty-five thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(5336, 12179, 'twelve thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(5337, 74706, 'seventy-four thousand seven hundred six');\nINSERT INTO t1 VALUES(5338, 21378, 'twenty-one thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(5339, 41977, 'forty-one thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(5340, 77515, 'seventy-seven thousand five hundred fifteen');\nINSERT INTO t1 VALUES(5341, 15893, 'fifteen thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(5342, 95405, 'ninety-five thousand four hundred five');\nINSERT INTO t1 VALUES(5343, 44602, 'forty-four thousand six hundred two');\nINSERT INTO t1 VALUES(5344, 92597, 'ninety-two thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(5345, 19588, 'nineteen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(5346, 17296, 'seventeen thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(5347, 83249, 'eighty-three thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(5348, 32634, 'thirty-two thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(5349, 53609, 'fifty-three thousand six hundred nine');\nINSERT INTO t1 VALUES(5350, 88230, 'eighty-eight thousand two hundred thirty');\nINSERT INTO t1 VALUES(5351, 32442, 'thirty-two thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5352, 62650, 'sixty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(5353, 23287, 'twenty-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(5354, 10008, 'ten thousand eight');\nINSERT INTO t1 VALUES(5355, 80306, 'eighty thousand three hundred six');\nINSERT INTO t1 VALUES(5356, 96197, 'ninety-six thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(5357, 36652, 'thirty-six thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(5358, 80706, 'eighty thousand seven hundred six');\nINSERT INTO t1 VALUES(5359, 72088, 'seventy-two thousand eighty-eight');\nINSERT INTO t1 VALUES(5360, 95164, 'ninety-five thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(5361, 21307, 'twenty-one thousand three hundred seven');\nINSERT INTO t1 VALUES(5362, 35743, 'thirty-five thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(5363, 45921, 'forty-five thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(5364, 38737, 'thirty-eight thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(5365, 20446, 'twenty thousand four hundred forty-six');\nINSERT INTO t1 VALUES(5366, 19163, 'nineteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(5367, 11558, 'eleven thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(5368, 69518, 'sixty-nine thousand five hundred eighteen');\nINSERT INTO t1 VALUES(5369, 94315, 'ninety-four thousand three hundred fifteen');\nINSERT INTO t1 VALUES(5370, 70216, 'seventy thousand two hundred sixteen');\nINSERT INTO t1 VALUES(5371, 41896, 'forty-one thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(5372, 4615, 'four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(5373, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t1 VALUES(5374, 29464, 'twenty-nine thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(5375, 99238, 'ninety-nine thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(5376, 60681, 'sixty thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(5377, 28034, 'twenty-eight thousand thirty-four');\nINSERT INTO t1 VALUES(5378, 73955, 'seventy-three thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(5379, 88061, 'eighty-eight thousand sixty-one');\nINSERT INTO t1 VALUES(5380, 7109, 'seven thousand one hundred nine');\nINSERT INTO t1 VALUES(5381, 21191, 'twenty-one thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(5382, 3771, 'three thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(5383, 59023, 'fifty-nine thousand twenty-three');\nINSERT INTO t1 VALUES(5384, 87643, 'eighty-seven thousand six hundred forty-three');\nINSERT INTO t1 VALUES(5385, 52087, 'fifty-two thousand eighty-seven');\nINSERT INTO t1 VALUES(5386, 98301, 'ninety-eight thousand three hundred one');\nINSERT INTO t1 VALUES(5387, 55786, 'fifty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5388, 43939, 'forty-three thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(5389, 60657, 'sixty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(5390, 91684, 'ninety-one thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(5391, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(5392, 48410, 'forty-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(5393, 90888, 'ninety thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(5394, 81541, 'eighty-one thousand five hundred forty-one');\nINSERT INTO t1 VALUES(5395, 98466, 'ninety-eight thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(5396, 70817, 'seventy thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(5397, 97778, 'ninety-seven thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(5398, 45738, 'forty-five thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(5399, 49340, 'forty-nine thousand three hundred forty');\nINSERT INTO t1 VALUES(5400, 32693, 'thirty-two thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(5401, 82151, 'eighty-two thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(5402, 14495, 'fourteen thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(5403, 15433, 'fifteen thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(5404, 22016, 'twenty-two thousand sixteen');\nINSERT INTO t1 VALUES(5405, 97753, 'ninety-seven thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(5406, 49434, 'forty-nine thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(5407, 17703, 'seventeen thousand seven hundred three');\nINSERT INTO t1 VALUES(5408, 46359, 'forty-six thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(5409, 74868, 'seventy-four thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(5410, 69575, 'sixty-nine thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5411, 52337, 'fifty-two thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(5412, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5413, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(5414, 91107, 'ninety-one thousand one hundred seven');\nINSERT INTO t1 VALUES(5415, 14440, 'fourteen thousand four hundred forty');\nINSERT INTO t1 VALUES(5416, 71356, 'seventy-one thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(5417, 51475, 'fifty-one thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(5418, 11863, 'eleven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(5419, 66029, 'sixty-six thousand twenty-nine');\nINSERT INTO t1 VALUES(5420, 42354, 'forty-two thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(5421, 78716, 'seventy-eight thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(5422, 35345, 'thirty-five thousand three hundred forty-five');\nINSERT INTO t1 VALUES(5423, 37015, 'thirty-seven thousand fifteen');\nINSERT INTO t1 VALUES(5424, 16755, 'sixteen thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(5425, 30783, 'thirty thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(5426, 41601, 'forty-one thousand six hundred one');\nINSERT INTO t1 VALUES(5427, 11415, 'eleven thousand four hundred fifteen');\nINSERT INTO t1 VALUES(5428, 78800, 'seventy-eight thousand eight hundred');\nINSERT INTO t1 VALUES(5429, 60440, 'sixty thousand four hundred forty');\nINSERT INTO t1 VALUES(5430, 84845, 'eighty-four thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(5431, 74931, 'seventy-four thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(5432, 40451, 'forty thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(5433, 71845, 'seventy-one thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(5434, 205, 'two hundred five');\nINSERT INTO t1 VALUES(5435, 74773, 'seventy-four thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(5436, 19866, 'nineteen thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(5437, 78785, 'seventy-eight thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(5438, 54561, 'fifty-four thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(5439, 6605, 'six thousand six hundred five');\nINSERT INTO t1 VALUES(5440, 2759, 'two thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(5441, 81216, 'eighty-one thousand two hundred sixteen');\nINSERT INTO t1 VALUES(5442, 36985, 'thirty-six thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(5443, 88923, 'eighty-eight thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(5444, 42549, 'forty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(5445, 85077, 'eighty-five thousand seventy-seven');\nINSERT INTO t1 VALUES(5446, 18111, 'eighteen thousand one hundred eleven');\nINSERT INTO t1 VALUES(5447, 74463, 'seventy-four thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(5448, 31752, 'thirty-one thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(5449, 18366, 'eighteen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(5450, 38472, 'thirty-eight thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(5451, 29625, 'twenty-nine thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(5452, 41308, 'forty-one thousand three hundred eight');\nINSERT INTO t1 VALUES(5453, 2162, 'two thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(5454, 4085, 'four thousand eighty-five');\nINSERT INTO t1 VALUES(5455, 262, 'two hundred sixty-two');\nINSERT INTO t1 VALUES(5456, 10431, 'ten thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(5457, 43551, 'forty-three thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(5458, 17731, 'seventeen thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5459, 39632, 'thirty-nine thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(5460, 22502, 'twenty-two thousand five hundred two');\nINSERT INTO t1 VALUES(5461, 66542, 'sixty-six thousand five hundred forty-two');\nINSERT INTO t1 VALUES(5462, 80545, 'eighty thousand five hundred forty-five');\nINSERT INTO t1 VALUES(5463, 9167, 'nine thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(5464, 55918, 'fifty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(5465, 42421, 'forty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(5466, 20843, 'twenty thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(5467, 38356, 'thirty-eight thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(5468, 82527, 'eighty-two thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(5469, 2550, 'two thousand five hundred fifty');\nINSERT INTO t1 VALUES(5470, 48739, 'forty-eight thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(5471, 3237, 'three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(5472, 18202, 'eighteen thousand two hundred two');\nINSERT INTO t1 VALUES(5473, 94318, 'ninety-four thousand three hundred eighteen');\nINSERT INTO t1 VALUES(5474, 96206, 'ninety-six thousand two hundred six');\nINSERT INTO t1 VALUES(5475, 45664, 'forty-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(5476, 11775, 'eleven thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(5477, 513, 'five hundred thirteen');\nINSERT INTO t1 VALUES(5478, 6587, 'six thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(5479, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(5480, 73718, 'seventy-three thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(5481, 44291, 'forty-four thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(5482, 8929, 'eight thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(5483, 34821, 'thirty-four thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(5484, 64340, 'sixty-four thousand three hundred forty');\nINSERT INTO t1 VALUES(5485, 27786, 'twenty-seven thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(5486, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t1 VALUES(5487, 98214, 'ninety-eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(5488, 91978, 'ninety-one thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(5489, 43994, 'forty-three thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(5490, 34644, 'thirty-four thousand six hundred forty-four');\nINSERT INTO t1 VALUES(5491, 60642, 'sixty thousand six hundred forty-two');\nINSERT INTO t1 VALUES(5492, 66027, 'sixty-six thousand twenty-seven');\nINSERT INTO t1 VALUES(5493, 47118, 'forty-seven thousand one hundred eighteen');\nINSERT INTO t1 VALUES(5494, 24353, 'twenty-four thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(5495, 58211, 'fifty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(5496, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(5497, 98622, 'ninety-eight thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(5498, 77506, 'seventy-seven thousand five hundred six');\nINSERT INTO t1 VALUES(5499, 70878, 'seventy thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5500, 85655, 'eighty-five thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(5501, 83787, 'eighty-three thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(5502, 41741, 'forty-one thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(5503, 20399, 'twenty thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(5504, 15618, 'fifteen thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5505, 17350, 'seventeen thousand three hundred fifty');\nINSERT INTO t1 VALUES(5506, 64324, 'sixty-four thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(5507, 50256, 'fifty thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(5508, 89430, 'eighty-nine thousand four hundred thirty');\nINSERT INTO t1 VALUES(5509, 27599, 'twenty-seven thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(5510, 71573, 'seventy-one thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(5511, 74777, 'seventy-four thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(5512, 38648, 'thirty-eight thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(5513, 90731, 'ninety thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(5514, 53076, 'fifty-three thousand seventy-six');\nINSERT INTO t1 VALUES(5515, 17177, 'seventeen thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(5516, 96864, 'ninety-six thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(5517, 49187, 'forty-nine thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(5518, 68902, 'sixty-eight thousand nine hundred two');\nINSERT INTO t1 VALUES(5519, 40078, 'forty thousand seventy-eight');\nINSERT INTO t1 VALUES(5520, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(5521, 80415, 'eighty thousand four hundred fifteen');\nINSERT INTO t1 VALUES(5522, 3479, 'three thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(5523, 70323, 'seventy thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(5524, 85951, 'eighty-five thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(5525, 43709, 'forty-three thousand seven hundred nine');\nINSERT INTO t1 VALUES(5526, 31804, 'thirty-one thousand eight hundred four');\nINSERT INTO t1 VALUES(5527, 39015, 'thirty-nine thousand fifteen');\nINSERT INTO t1 VALUES(5528, 28670, 'twenty-eight thousand six hundred seventy');\nINSERT INTO t1 VALUES(5529, 73435, 'seventy-three thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(5530, 88947, 'eighty-eight thousand nine hundred forty-seven');\nINSERT INTO t1 VALUES(5531, 52100, 'fifty-two thousand one hundred');\nINSERT INTO t1 VALUES(5532, 76249, 'seventy-six thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(5533, 93671, 'ninety-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(5534, 49442, 'forty-nine thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5535, 95159, 'ninety-five thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5536, 84184, 'eighty-four thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(5537, 98817, 'ninety-eight thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(5538, 51111, 'fifty-one thousand one hundred eleven');\nINSERT INTO t1 VALUES(5539, 79618, 'seventy-nine thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5540, 64488, 'sixty-four thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(5541, 57074, 'fifty-seven thousand seventy-four');\nINSERT INTO t1 VALUES(5542, 21645, 'twenty-one thousand six hundred forty-five');\nINSERT INTO t1 VALUES(5543, 64044, 'sixty-four thousand forty-four');\nINSERT INTO t1 VALUES(5544, 8971, 'eight thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(5545, 29467, 'twenty-nine thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5546, 29207, 'twenty-nine thousand two hundred seven');\nINSERT INTO t1 VALUES(5547, 25192, 'twenty-five thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(5548, 8007, 'eight thousand seven');\nINSERT INTO t1 VALUES(5549, 42535, 'forty-two thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5550, 78341, 'seventy-eight thousand three hundred forty-one');\nINSERT INTO t1 VALUES(5551, 53104, 'fifty-three thousand one hundred four');\nINSERT INTO t1 VALUES(5552, 68496, 'sixty-eight thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(5553, 64745, 'sixty-four thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(5554, 4371, 'four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(5555, 57023, 'fifty-seven thousand twenty-three');\nINSERT INTO t1 VALUES(5556, 91674, 'ninety-one thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(5557, 78209, 'seventy-eight thousand two hundred nine');\nINSERT INTO t1 VALUES(5558, 97254, 'ninety-seven thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(5559, 52713, 'fifty-two thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(5560, 68183, 'sixty-eight thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(5561, 81237, 'eighty-one thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(5562, 16998, 'sixteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(5563, 14016, 'fourteen thousand sixteen');\nINSERT INTO t1 VALUES(5564, 35912, 'thirty-five thousand nine hundred twelve');\nINSERT INTO t1 VALUES(5565, 56794, 'fifty-six thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(5566, 98410, 'ninety-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(5567, 8257, 'eight thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(5568, 20988, 'twenty thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(5569, 74009, 'seventy-four thousand nine');\nINSERT INTO t1 VALUES(5570, 92863, 'ninety-two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(5571, 1337, 'one thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(5572, 76648, 'seventy-six thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(5573, 4084, 'four thousand eighty-four');\nINSERT INTO t1 VALUES(5574, 27799, 'twenty-seven thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(5575, 99326, 'ninety-nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5576, 68139, 'sixty-eight thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(5577, 75563, 'seventy-five thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(5578, 31575, 'thirty-one thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(5579, 22952, 'twenty-two thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(5580, 5128, 'five thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(5581, 45587, 'forty-five thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(5582, 94159, 'ninety-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5583, 77072, 'seventy-seven thousand seventy-two');\nINSERT INTO t1 VALUES(5584, 56548, 'fifty-six thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(5585, 76585, 'seventy-six thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(5586, 72619, 'seventy-two thousand six hundred nineteen');\nINSERT INTO t1 VALUES(5587, 40990, 'forty thousand nine hundred ninety');\nINSERT INTO t1 VALUES(5588, 97437, 'ninety-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(5589, 66076, 'sixty-six thousand seventy-six');\nINSERT INTO t1 VALUES(5590, 18241, 'eighteen thousand two hundred forty-one');\nINSERT INTO t1 VALUES(5591, 33531, 'thirty-three thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(5592, 88429, 'eighty-eight thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(5593, 66903, 'sixty-six thousand nine hundred three');\nINSERT INTO t1 VALUES(5594, 86467, 'eighty-six thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(5595, 23137, 'twenty-three thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(5596, 95197, 'ninety-five thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(5597, 68822, 'sixty-eight thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(5598, 32693, 'thirty-two thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(5599, 26893, 'twenty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(5600, 10034, 'ten thousand thirty-four');\nINSERT INTO t1 VALUES(5601, 98230, 'ninety-eight thousand two hundred thirty');\nINSERT INTO t1 VALUES(5602, 64757, 'sixty-four thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(5603, 26147, 'twenty-six thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(5604, 90889, 'ninety thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(5605, 80579, 'eighty thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(5606, 41960, 'forty-one thousand nine hundred sixty');\nINSERT INTO t1 VALUES(5607, 73136, 'seventy-three thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(5608, 95952, 'ninety-five thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(5609, 76791, 'seventy-six thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(5610, 18989, 'eighteen thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(5611, 94904, 'ninety-four thousand nine hundred four');\nINSERT INTO t1 VALUES(5612, 62297, 'sixty-two thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(5613, 30490, 'thirty thousand four hundred ninety');\nINSERT INTO t1 VALUES(5614, 30618, 'thirty thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5615, 68714, 'sixty-eight thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(5616, 41986, 'forty-one thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(5617, 99329, 'ninety-nine thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(5618, 98580, 'ninety-eight thousand five hundred eighty');\nINSERT INTO t1 VALUES(5619, 50725, 'fifty thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(5620, 34862, 'thirty-four thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(5621, 17047, 'seventeen thousand forty-seven');\nINSERT INTO t1 VALUES(5622, 84050, 'eighty-four thousand fifty');\nINSERT INTO t1 VALUES(5623, 53880, 'fifty-three thousand eight hundred eighty');\nINSERT INTO t1 VALUES(5624, 89549, 'eighty-nine thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(5625, 52214, 'fifty-two thousand two hundred fourteen');\nINSERT INTO t1 VALUES(5626, 32066, 'thirty-two thousand sixty-six');\nINSERT INTO t1 VALUES(5627, 60392, 'sixty thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(5628, 35454, 'thirty-five thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(5629, 58568, 'fifty-eight thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(5630, 44061, 'forty-four thousand sixty-one');\nINSERT INTO t1 VALUES(5631, 17614, 'seventeen thousand six hundred fourteen');\nINSERT INTO t1 VALUES(5632, 48854, 'forty-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(5633, 45106, 'forty-five thousand one hundred six');\nINSERT INTO t1 VALUES(5634, 93491, 'ninety-three thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(5635, 98583, 'ninety-eight thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(5636, 92492, 'ninety-two thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(5637, 70878, 'seventy thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5638, 47213, 'forty-seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(5639, 9911, 'nine thousand nine hundred eleven');\nINSERT INTO t1 VALUES(5640, 19737, 'nineteen thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(5641, 13554, 'thirteen thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(5642, 92538, 'ninety-two thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(5643, 74524, 'seventy-four thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(5644, 5987, 'five thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(5645, 80587, 'eighty thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(5646, 6999, 'six thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(5647, 80190, 'eighty thousand one hundred ninety');\nINSERT INTO t1 VALUES(5648, 53861, 'fifty-three thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(5649, 19438, 'nineteen thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(5650, 92963, 'ninety-two thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(5651, 76961, 'seventy-six thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(5652, 72169, 'seventy-two thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(5653, 87552, 'eighty-seven thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(5654, 21967, 'twenty-one thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(5655, 85454, 'eighty-five thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(5656, 73888, 'seventy-three thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(5657, 31784, 'thirty-one thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(5658, 17233, 'seventeen thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5659, 92596, 'ninety-two thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(5660, 94905, 'ninety-four thousand nine hundred five');\nINSERT INTO t1 VALUES(5661, 87031, 'eighty-seven thousand thirty-one');\nINSERT INTO t1 VALUES(5662, 79555, 'seventy-nine thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(5663, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t1 VALUES(5664, 72343, 'seventy-two thousand three hundred forty-three');\nINSERT INTO t1 VALUES(5665, 71650, 'seventy-one thousand six hundred fifty');\nINSERT INTO t1 VALUES(5666, 49455, 'forty-nine thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(5667, 87902, 'eighty-seven thousand nine hundred two');\nINSERT INTO t1 VALUES(5668, 27882, 'twenty-seven thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(5669, 4541, 'four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(5670, 75580, 'seventy-five thousand five hundred eighty');\nINSERT INTO t1 VALUES(5671, 17774, 'seventeen thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(5672, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(5673, 75315, 'seventy-five thousand three hundred fifteen');\nINSERT INTO t1 VALUES(5674, 16218, 'sixteen thousand two hundred eighteen');\nINSERT INTO t1 VALUES(5675, 47559, 'forty-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(5676, 94727, 'ninety-four thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(5677, 37362, 'thirty-seven thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(5678, 60104, 'sixty thousand one hundred four');\nINSERT INTO t1 VALUES(5679, 92402, 'ninety-two thousand four hundred two');\nINSERT INTO t1 VALUES(5680, 6270, 'six thousand two hundred seventy');\nINSERT INTO t1 VALUES(5681, 34485, 'thirty-four thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(5682, 92314, 'ninety-two thousand three hundred fourteen');\nINSERT INTO t1 VALUES(5683, 91176, 'ninety-one thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(5684, 67405, 'sixty-seven thousand four hundred five');\nINSERT INTO t1 VALUES(5685, 14482, 'fourteen thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(5686, 83107, 'eighty-three thousand one hundred seven');\nINSERT INTO t1 VALUES(5687, 38007, 'thirty-eight thousand seven');\nINSERT INTO t1 VALUES(5688, 98783, 'ninety-eight thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(5689, 67657, 'sixty-seven thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(5690, 74801, 'seventy-four thousand eight hundred one');\nINSERT INTO t1 VALUES(5691, 43063, 'forty-three thousand sixty-three');\nINSERT INTO t1 VALUES(5692, 11538, 'eleven thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(5693, 86556, 'eighty-six thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(5694, 65510, 'sixty-five thousand five hundred ten');\nINSERT INTO t1 VALUES(5695, 96911, 'ninety-six thousand nine hundred eleven');\nINSERT INTO t1 VALUES(5696, 27795, 'twenty-seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(5697, 7042, 'seven thousand forty-two');\nINSERT INTO t1 VALUES(5698, 99822, 'ninety-nine thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(5699, 87012, 'eighty-seven thousand twelve');\nINSERT INTO t1 VALUES(5700, 45290, 'forty-five thousand two hundred ninety');\nINSERT INTO t1 VALUES(5701, 83006, 'eighty-three thousand six');\nINSERT INTO t1 VALUES(5702, 10222, 'ten thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(5703, 6442, 'six thousand four hundred forty-two');\nINSERT INTO t1 VALUES(5704, 81649, 'eighty-one thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(5705, 57814, 'fifty-seven thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(5706, 53236, 'fifty-three thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(5707, 66815, 'sixty-six thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(5708, 88686, 'eighty-eight thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(5709, 42752, 'forty-two thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(5710, 9113, 'nine thousand one hundred thirteen');\nINSERT INTO t1 VALUES(5711, 59997, 'fifty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(5712, 33651, 'thirty-three thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(5713, 15618, 'fifteen thousand six hundred eighteen');\nINSERT INTO t1 VALUES(5714, 31107, 'thirty-one thousand one hundred seven');\nINSERT INTO t1 VALUES(5715, 79690, 'seventy-nine thousand six hundred ninety');\nINSERT INTO t1 VALUES(5716, 96344, 'ninety-six thousand three hundred forty-four');\nINSERT INTO t1 VALUES(5717, 99978, 'ninety-nine thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(5718, 37548, 'thirty-seven thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(5719, 60506, 'sixty thousand five hundred six');\nINSERT INTO t1 VALUES(5720, 58542, 'fifty-eight thousand five hundred forty-two');\nINSERT INTO t1 VALUES(5721, 87064, 'eighty-seven thousand sixty-four');\nINSERT INTO t1 VALUES(5722, 46094, 'forty-six thousand ninety-four');\nINSERT INTO t1 VALUES(5723, 40624, 'forty thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(5724, 28041, 'twenty-eight thousand forty-one');\nINSERT INTO t1 VALUES(5725, 42748, 'forty-two thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(5726, 15974, 'fifteen thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(5727, 39812, 'thirty-nine thousand eight hundred twelve');\nINSERT INTO t1 VALUES(5728, 32233, 'thirty-two thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5729, 83463, 'eighty-three thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(5730, 22463, 'twenty-two thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(5731, 71074, 'seventy-one thousand seventy-four');\nINSERT INTO t1 VALUES(5732, 40039, 'forty thousand thirty-nine');\nINSERT INTO t1 VALUES(5733, 92469, 'ninety-two thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(5734, 58535, 'fifty-eight thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5735, 2928, 'two thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(5736, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(5737, 32663, 'thirty-two thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(5738, 81166, 'eighty-one thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(5739, 1094, 'one thousand ninety-four');\nINSERT INTO t1 VALUES(5740, 58086, 'fifty-eight thousand eighty-six');\nINSERT INTO t1 VALUES(5741, 3272, 'three thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(5742, 8343, 'eight thousand three hundred forty-three');\nINSERT INTO t1 VALUES(5743, 85473, 'eighty-five thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(5744, 68499, 'sixty-eight thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(5745, 43043, 'forty-three thousand forty-three');\nINSERT INTO t1 VALUES(5746, 28723, 'twenty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(5747, 12120, 'twelve thousand one hundred twenty');\nINSERT INTO t1 VALUES(5748, 8850, 'eight thousand eight hundred fifty');\nINSERT INTO t1 VALUES(5749, 3675, 'three thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(5750, 81481, 'eighty-one thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(5751, 85136, 'eighty-five thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(5752, 6472, 'six thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(5753, 64652, 'sixty-four thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(5754, 81159, 'eighty-one thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(5755, 75610, 'seventy-five thousand six hundred ten');\nINSERT INTO t1 VALUES(5756, 67401, 'sixty-seven thousand four hundred one');\nINSERT INTO t1 VALUES(5757, 69523, 'sixty-nine thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(5758, 85736, 'eighty-five thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(5759, 53681, 'fifty-three thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(5760, 33289, 'thirty-three thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(5761, 40711, 'forty thousand seven hundred eleven');\nINSERT INTO t1 VALUES(5762, 20302, 'twenty thousand three hundred two');\nINSERT INTO t1 VALUES(5763, 30482, 'thirty thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(5764, 4800, 'four thousand eight hundred');\nINSERT INTO t1 VALUES(5765, 81936, 'eighty-one thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(5766, 71653, 'seventy-one thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(5767, 30258, 'thirty thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(5768, 85616, 'eighty-five thousand six hundred sixteen');\nINSERT INTO t1 VALUES(5769, 44991, 'forty-four thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(5770, 22149, 'twenty-two thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5771, 13754, 'thirteen thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(5772, 42754, 'forty-two thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(5773, 70601, 'seventy thousand six hundred one');\nINSERT INTO t1 VALUES(5774, 44493, 'forty-four thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(5775, 12271, 'twelve thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(5776, 26137, 'twenty-six thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(5777, 63221, 'sixty-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(5778, 7043, 'seven thousand forty-three');\nINSERT INTO t1 VALUES(5779, 83697, 'eighty-three thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(5780, 29932, 'twenty-nine thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(5781, 35298, 'thirty-five thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(5782, 55702, 'fifty-five thousand seven hundred two');\nINSERT INTO t1 VALUES(5783, 1258, 'one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(5784, 11842, 'eleven thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(5785, 49140, 'forty-nine thousand one hundred forty');\nINSERT INTO t1 VALUES(5786, 25541, 'twenty-five thousand five hundred forty-one');\nINSERT INTO t1 VALUES(5787, 27019, 'twenty-seven thousand nineteen');\nINSERT INTO t1 VALUES(5788, 14142, 'fourteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(5789, 91385, 'ninety-one thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(5790, 3933, 'three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(5791, 21359, 'twenty-one thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(5792, 53896, 'fifty-three thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(5793, 29044, 'twenty-nine thousand forty-four');\nINSERT INTO t1 VALUES(5794, 57830, 'fifty-seven thousand eight hundred thirty');\nINSERT INTO t1 VALUES(5795, 18193, 'eighteen thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(5796, 65368, 'sixty-five thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(5797, 27648, 'twenty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(5798, 734, 'seven hundred thirty-four');\nINSERT INTO t1 VALUES(5799, 20535, 'twenty thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(5800, 3805, 'three thousand eight hundred five');\nINSERT INTO t1 VALUES(5801, 31448, 'thirty-one thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(5802, 88702, 'eighty-eight thousand seven hundred two');\nINSERT INTO t1 VALUES(5803, 81491, 'eighty-one thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(5804, 46089, 'forty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(5805, 33040, 'thirty-three thousand forty');\nINSERT INTO t1 VALUES(5806, 94878, 'ninety-four thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5807, 2521, 'two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(5808, 87685, 'eighty-seven thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(5809, 41326, 'forty-one thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(5810, 77005, 'seventy-seven thousand five');\nINSERT INTO t1 VALUES(5811, 7252, 'seven thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(5812, 26851, 'twenty-six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(5813, 66603, 'sixty-six thousand six hundred three');\nINSERT INTO t1 VALUES(5814, 3236, 'three thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(5815, 59904, 'fifty-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(5816, 96659, 'ninety-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(5817, 61576, 'sixty-one thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(5818, 2728, 'two thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5819, 99234, 'ninety-nine thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5820, 61764, 'sixty-one thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(5821, 73233, 'seventy-three thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(5822, 81710, 'eighty-one thousand seven hundred ten');\nINSERT INTO t1 VALUES(5823, 10605, 'ten thousand six hundred five');\nINSERT INTO t1 VALUES(5824, 64995, 'sixty-four thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(5825, 71043, 'seventy-one thousand forty-three');\nINSERT INTO t1 VALUES(5826, 64243, 'sixty-four thousand two hundred forty-three');\nINSERT INTO t1 VALUES(5827, 34252, 'thirty-four thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(5828, 431, 'four hundred thirty-one');\nINSERT INTO t1 VALUES(5829, 50226, 'fifty thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(5830, 18354, 'eighteen thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(5831, 38039, 'thirty-eight thousand thirty-nine');\nINSERT INTO t1 VALUES(5832, 92518, 'ninety-two thousand five hundred eighteen');\nINSERT INTO t1 VALUES(5833, 39072, 'thirty-nine thousand seventy-two');\nINSERT INTO t1 VALUES(5834, 51273, 'fifty-one thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(5835, 97456, 'ninety-seven thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(5836, 72655, 'seventy-two thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(5837, 43573, 'forty-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(5838, 9227, 'nine thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(5839, 5296, 'five thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(5840, 19926, 'nineteen thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(5841, 40602, 'forty thousand six hundred two');\nINSERT INTO t1 VALUES(5842, 35750, 'thirty-five thousand seven hundred fifty');\nINSERT INTO t1 VALUES(5843, 1254, 'one thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(5844, 11105, 'eleven thousand one hundred five');\nINSERT INTO t1 VALUES(5845, 84522, 'eighty-four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(5846, 52503, 'fifty-two thousand five hundred three');\nINSERT INTO t1 VALUES(5847, 23768, 'twenty-three thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(5848, 44935, 'forty-four thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(5849, 58539, 'fifty-eight thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(5850, 63287, 'sixty-three thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(5851, 82201, 'eighty-two thousand two hundred one');\nINSERT INTO t1 VALUES(5852, 43953, 'forty-three thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(5853, 61674, 'sixty-one thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(5854, 16824, 'sixteen thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(5855, 90093, 'ninety thousand ninety-three');\nINSERT INTO t1 VALUES(5856, 77519, 'seventy-seven thousand five hundred nineteen');\nINSERT INTO t1 VALUES(5857, 32366, 'thirty-two thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(5858, 40815, 'forty thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(5859, 2676, 'two thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(5860, 35397, 'thirty-five thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(5861, 27085, 'twenty-seven thousand eighty-five');\nINSERT INTO t1 VALUES(5862, 66129, 'sixty-six thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(5863, 25262, 'twenty-five thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(5864, 39086, 'thirty-nine thousand eighty-six');\nINSERT INTO t1 VALUES(5865, 81046, 'eighty-one thousand forty-six');\nINSERT INTO t1 VALUES(5866, 99430, 'ninety-nine thousand four hundred thirty');\nINSERT INTO t1 VALUES(5867, 11568, 'eleven thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(5868, 73204, 'seventy-three thousand two hundred four');\nINSERT INTO t1 VALUES(5869, 69914, 'sixty-nine thousand nine hundred fourteen');\nINSERT INTO t1 VALUES(5870, 69845, 'sixty-nine thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(5871, 60839, 'sixty thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(5872, 28815, 'twenty-eight thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(5873, 50053, 'fifty thousand fifty-three');\nINSERT INTO t1 VALUES(5874, 30974, 'thirty thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(5875, 62048, 'sixty-two thousand forty-eight');\nINSERT INTO t1 VALUES(5876, 95174, 'ninety-five thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(5877, 64972, 'sixty-four thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(5878, 31425, 'thirty-one thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(5879, 73904, 'seventy-three thousand nine hundred four');\nINSERT INTO t1 VALUES(5880, 65827, 'sixty-five thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(5881, 37404, 'thirty-seven thousand four hundred four');\nINSERT INTO t1 VALUES(5882, 50319, 'fifty thousand three hundred nineteen');\nINSERT INTO t1 VALUES(5883, 4247, 'four thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(5884, 5747, 'five thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(5885, 29179, 'twenty-nine thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(5886, 14924, 'fourteen thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(5887, 11564, 'eleven thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(5888, 58511, 'fifty-eight thousand five hundred eleven');\nINSERT INTO t1 VALUES(5889, 5053, 'five thousand fifty-three');\nINSERT INTO t1 VALUES(5890, 3785, 'three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(5891, 5222, 'five thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(5892, 51671, 'fifty-one thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(5893, 24783, 'twenty-four thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(5894, 43234, 'forty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(5895, 15401, 'fifteen thousand four hundred one');\nINSERT INTO t1 VALUES(5896, 40933, 'forty thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(5897, 73857, 'seventy-three thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(5898, 98388, 'ninety-eight thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(5899, 71023, 'seventy-one thousand twenty-three');\nINSERT INTO t1 VALUES(5900, 79414, 'seventy-nine thousand four hundred fourteen');\nINSERT INTO t1 VALUES(5901, 71149, 'seventy-one thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5902, 89705, 'eighty-nine thousand seven hundred five');\nINSERT INTO t1 VALUES(5903, 73221, 'seventy-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(5904, 93693, 'ninety-three thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(5905, 72165, 'seventy-two thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(5906, 81222, 'eighty-one thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(5907, 82277, 'eighty-two thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(5908, 78684, 'seventy-eight thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(5909, 50509, 'fifty thousand five hundred nine');\nINSERT INTO t1 VALUES(5910, 9728, 'nine thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5911, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(5912, 3477, 'three thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(5913, 64149, 'sixty-four thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(5914, 20249, 'twenty thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(5915, 38612, 'thirty-eight thousand six hundred twelve');\nINSERT INTO t1 VALUES(5916, 56075, 'fifty-six thousand seventy-five');\nINSERT INTO t1 VALUES(5917, 96198, 'ninety-six thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(5918, 43894, 'forty-three thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(5919, 80481, 'eighty thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(5920, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(5921, 99175, 'ninety-nine thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(5922, 9165, 'nine thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(5923, 2694, 'two thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(5924, 3922, 'three thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(5925, 55446, 'fifty-five thousand four hundred forty-six');\nINSERT INTO t1 VALUES(5926, 72038, 'seventy-two thousand thirty-eight');\nINSERT INTO t1 VALUES(5927, 47878, 'forty-seven thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(5928, 21717, 'twenty-one thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(5929, 51243, 'fifty-one thousand two hundred forty-three');\nINSERT INTO t1 VALUES(5930, 27692, 'twenty-seven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(5931, 86212, 'eighty-six thousand two hundred twelve');\nINSERT INTO t1 VALUES(5932, 98678, 'ninety-eight thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(5933, 41784, 'forty-one thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(5934, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t1 VALUES(5935, 7330, 'seven thousand three hundred thirty');\nINSERT INTO t1 VALUES(5936, 51208, 'fifty-one thousand two hundred eight');\nINSERT INTO t1 VALUES(5937, 5709, 'five thousand seven hundred nine');\nINSERT INTO t1 VALUES(5938, 34464, 'thirty-four thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(5939, 29285, 'twenty-nine thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(5940, 45320, 'forty-five thousand three hundred twenty');\nINSERT INTO t1 VALUES(5941, 62972, 'sixty-two thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(5942, 30880, 'thirty thousand eight hundred eighty');\nINSERT INTO t1 VALUES(5943, 52617, 'fifty-two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(5944, 96712, 'ninety-six thousand seven hundred twelve');\nINSERT INTO t1 VALUES(5945, 14169, 'fourteen thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(5946, 89655, 'eighty-nine thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(5947, 27272, 'twenty-seven thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(5948, 14824, 'fourteen thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(5949, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(5950, 80379, 'eighty thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(5951, 58811, 'fifty-eight thousand eight hundred eleven');\nINSERT INTO t1 VALUES(5952, 97797, 'ninety-seven thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(5953, 40518, 'forty thousand five hundred eighteen');\nINSERT INTO t1 VALUES(5954, 26873, 'twenty-six thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(5955, 28708, 'twenty-eight thousand seven hundred eight');\nINSERT INTO t1 VALUES(5956, 80909, 'eighty thousand nine hundred nine');\nINSERT INTO t1 VALUES(5957, 22620, 'twenty-two thousand six hundred twenty');\nINSERT INTO t1 VALUES(5958, 41438, 'forty-one thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(5959, 75973, 'seventy-five thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(5960, 93302, 'ninety-three thousand three hundred two');\nINSERT INTO t1 VALUES(5961, 13520, 'thirteen thousand five hundred twenty');\nINSERT INTO t1 VALUES(5962, 86795, 'eighty-six thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(5963, 15084, 'fifteen thousand eighty-four');\nINSERT INTO t1 VALUES(5964, 61267, 'sixty-one thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(5965, 92818, 'ninety-two thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(5966, 31362, 'thirty-one thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(5967, 81944, 'eighty-one thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(5968, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(5969, 84910, 'eighty-four thousand nine hundred ten');\nINSERT INTO t1 VALUES(5970, 61059, 'sixty-one thousand fifty-nine');\nINSERT INTO t1 VALUES(5971, 32942, 'thirty-two thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(5972, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(5973, 86006, 'eighty-six thousand six');\nINSERT INTO t1 VALUES(5974, 105, 'one hundred five');\nINSERT INTO t1 VALUES(5975, 37199, 'thirty-seven thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(5976, 58310, 'fifty-eight thousand three hundred ten');\nINSERT INTO t1 VALUES(5977, 50047, 'fifty thousand forty-seven');\nINSERT INTO t1 VALUES(5978, 21168, 'twenty-one thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(5979, 78266, 'seventy-eight thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(5980, 67576, 'sixty-seven thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(5981, 20865, 'twenty thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(5982, 66162, 'sixty-six thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(5983, 72289, 'seventy-two thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(5984, 89728, 'eighty-nine thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(5985, 45418, 'forty-five thousand four hundred eighteen');\nINSERT INTO t1 VALUES(5986, 40699, 'forty thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(5987, 93583, 'ninety-three thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(5988, 80833, 'eighty thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(5989, 81458, 'eighty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(5990, 42151, 'forty-two thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(5991, 16424, 'sixteen thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(5992, 40866, 'forty thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(5993, 71944, 'seventy-one thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(5994, 80048, 'eighty thousand forty-eight');\nINSERT INTO t1 VALUES(5995, 66604, 'sixty-six thousand six hundred four');\nINSERT INTO t1 VALUES(5996, 5613, 'five thousand six hundred thirteen');\nINSERT INTO t1 VALUES(5997, 14891, 'fourteen thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(5998, 90251, 'ninety thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(5999, 54381, 'fifty-four thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(6000, 97762, 'ninety-seven thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(6001, 66556, 'sixty-six thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(6002, 16944, 'sixteen thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6003, 30116, 'thirty thousand one hundred sixteen');\nINSERT INTO t1 VALUES(6004, 97666, 'ninety-seven thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(6005, 67246, 'sixty-seven thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6006, 99417, 'ninety-nine thousand four hundred seventeen');\nINSERT INTO t1 VALUES(6007, 20018, 'twenty thousand eighteen');\nINSERT INTO t1 VALUES(6008, 34792, 'thirty-four thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(6009, 74569, 'seventy-four thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(6010, 60832, 'sixty thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(6011, 31523, 'thirty-one thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6012, 12575, 'twelve thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(6013, 66799, 'sixty-six thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(6014, 46037, 'forty-six thousand thirty-seven');\nINSERT INTO t1 VALUES(6015, 71299, 'seventy-one thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(6016, 89117, 'eighty-nine thousand one hundred seventeen');\nINSERT INTO t1 VALUES(6017, 31704, 'thirty-one thousand seven hundred four');\nINSERT INTO t1 VALUES(6018, 48649, 'forty-eight thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(6019, 32353, 'thirty-two thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(6020, 15818, 'fifteen thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(6021, 23521, 'twenty-three thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(6022, 1551, 'one thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(6023, 39528, 'thirty-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(6024, 88778, 'eighty-eight thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(6025, 16705, 'sixteen thousand seven hundred five');\nINSERT INTO t1 VALUES(6026, 45429, 'forty-five thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(6027, 81045, 'eighty-one thousand forty-five');\nINSERT INTO t1 VALUES(6028, 40213, 'forty thousand two hundred thirteen');\nINSERT INTO t1 VALUES(6029, 60661, 'sixty thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(6030, 19689, 'nineteen thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(6031, 9676, 'nine thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(6032, 44984, 'forty-four thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(6033, 34965, 'thirty-four thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(6034, 19035, 'nineteen thousand thirty-five');\nINSERT INTO t1 VALUES(6035, 42687, 'forty-two thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(6036, 68840, 'sixty-eight thousand eight hundred forty');\nINSERT INTO t1 VALUES(6037, 51366, 'fifty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(6038, 6740, 'six thousand seven hundred forty');\nINSERT INTO t1 VALUES(6039, 77008, 'seventy-seven thousand eight');\nINSERT INTO t1 VALUES(6040, 13699, 'thirteen thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(6041, 58893, 'fifty-eight thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(6042, 69989, 'sixty-nine thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6043, 86143, 'eighty-six thousand one hundred forty-three');\nINSERT INTO t1 VALUES(6044, 71431, 'seventy-one thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(6045, 6232, 'six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(6046, 43674, 'forty-three thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(6047, 68344, 'sixty-eight thousand three hundred forty-four');\nINSERT INTO t1 VALUES(6048, 53156, 'fifty-three thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(6049, 62021, 'sixty-two thousand twenty-one');\nINSERT INTO t1 VALUES(6050, 83692, 'eighty-three thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(6051, 52651, 'fifty-two thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(6052, 22981, 'twenty-two thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(6053, 5349, 'five thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(6054, 51710, 'fifty-one thousand seven hundred ten');\nINSERT INTO t1 VALUES(6055, 97423, 'ninety-seven thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(6056, 2635, 'two thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(6057, 50331, 'fifty thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(6058, 16875, 'sixteen thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(6059, 37338, 'thirty-seven thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(6060, 41883, 'forty-one thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(6061, 33015, 'thirty-three thousand fifteen');\nINSERT INTO t1 VALUES(6062, 54505, 'fifty-four thousand five hundred five');\nINSERT INTO t1 VALUES(6063, 92048, 'ninety-two thousand forty-eight');\nINSERT INTO t1 VALUES(6064, 82076, 'eighty-two thousand seventy-six');\nINSERT INTO t1 VALUES(6065, 29564, 'twenty-nine thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(6066, 68518, 'sixty-eight thousand five hundred eighteen');\nINSERT INTO t1 VALUES(6067, 64960, 'sixty-four thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6068, 23509, 'twenty-three thousand five hundred nine');\nINSERT INTO t1 VALUES(6069, 91806, 'ninety-one thousand eight hundred six');\nINSERT INTO t1 VALUES(6070, 64944, 'sixty-four thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6071, 31651, 'thirty-one thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(6072, 68832, 'sixty-eight thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(6073, 93102, 'ninety-three thousand one hundred two');\nINSERT INTO t1 VALUES(6074, 27179, 'twenty-seven thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6075, 19259, 'nineteen thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(6076, 21112, 'twenty-one thousand one hundred twelve');\nINSERT INTO t1 VALUES(6077, 26288, 'twenty-six thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(6078, 83736, 'eighty-three thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(6079, 53608, 'fifty-three thousand six hundred eight');\nINSERT INTO t1 VALUES(6080, 53383, 'fifty-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6081, 1086, 'one thousand eighty-six');\nINSERT INTO t1 VALUES(6082, 21942, 'twenty-one thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(6083, 27373, 'twenty-seven thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(6084, 96883, 'ninety-six thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(6085, 54164, 'fifty-four thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(6086, 34958, 'thirty-four thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(6087, 40300, 'forty thousand three hundred');\nINSERT INTO t1 VALUES(6088, 10401, 'ten thousand four hundred one');\nINSERT INTO t1 VALUES(6089, 47354, 'forty-seven thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(6090, 63759, 'sixty-three thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(6091, 75959, 'seventy-five thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(6092, 18867, 'eighteen thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(6093, 95507, 'ninety-five thousand five hundred seven');\nINSERT INTO t1 VALUES(6094, 50438, 'fifty thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6095, 54159, 'fifty-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(6096, 13209, 'thirteen thousand two hundred nine');\nINSERT INTO t1 VALUES(6097, 79747, 'seventy-nine thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(6098, 73853, 'seventy-three thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(6099, 21777, 'twenty-one thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(6100, 56092, 'fifty-six thousand ninety-two');\nINSERT INTO t1 VALUES(6101, 20085, 'twenty thousand eighty-five');\nINSERT INTO t1 VALUES(6102, 70417, 'seventy thousand four hundred seventeen');\nINSERT INTO t1 VALUES(6103, 59212, 'fifty-nine thousand two hundred twelve');\nINSERT INTO t1 VALUES(6104, 41400, 'forty-one thousand four hundred');\nINSERT INTO t1 VALUES(6105, 24815, 'twenty-four thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(6106, 86893, 'eighty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(6107, 96794, 'ninety-six thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(6108, 27929, 'twenty-seven thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(6109, 83698, 'eighty-three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(6110, 11692, 'eleven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(6111, 24572, 'twenty-four thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(6112, 73593, 'seventy-three thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(6113, 6989, 'six thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6114, 98645, 'ninety-eight thousand six hundred forty-five');\nINSERT INTO t1 VALUES(6115, 64270, 'sixty-four thousand two hundred seventy');\nINSERT INTO t1 VALUES(6116, 85749, 'eighty-five thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(6117, 22917, 'twenty-two thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(6118, 43775, 'forty-three thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(6119, 57312, 'fifty-seven thousand three hundred twelve');\nINSERT INTO t1 VALUES(6120, 16387, 'sixteen thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(6121, 84179, 'eighty-four thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6122, 11781, 'eleven thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(6123, 86140, 'eighty-six thousand one hundred forty');\nINSERT INTO t1 VALUES(6124, 71551, 'seventy-one thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(6125, 63201, 'sixty-three thousand two hundred one');\nINSERT INTO t1 VALUES(6126, 66011, 'sixty-six thousand eleven');\nINSERT INTO t1 VALUES(6127, 61103, 'sixty-one thousand one hundred three');\nINSERT INTO t1 VALUES(6128, 89958, 'eighty-nine thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(6129, 26686, 'twenty-six thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(6130, 12519, 'twelve thousand five hundred nineteen');\nINSERT INTO t1 VALUES(6131, 4787, 'four thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(6132, 96030, 'ninety-six thousand thirty');\nINSERT INTO t1 VALUES(6133, 73207, 'seventy-three thousand two hundred seven');\nINSERT INTO t1 VALUES(6134, 48277, 'forty-eight thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(6135, 96032, 'ninety-six thousand thirty-two');\nINSERT INTO t1 VALUES(6136, 63056, 'sixty-three thousand fifty-six');\nINSERT INTO t1 VALUES(6137, 42075, 'forty-two thousand seventy-five');\nINSERT INTO t1 VALUES(6138, 63940, 'sixty-three thousand nine hundred forty');\nINSERT INTO t1 VALUES(6139, 62171, 'sixty-two thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(6140, 26680, 'twenty-six thousand six hundred eighty');\nINSERT INTO t1 VALUES(6141, 75611, 'seventy-five thousand six hundred eleven');\nINSERT INTO t1 VALUES(6142, 93199, 'ninety-three thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(6143, 4280, 'four thousand two hundred eighty');\nINSERT INTO t1 VALUES(6144, 26074, 'twenty-six thousand seventy-four');\nINSERT INTO t1 VALUES(6145, 83317, 'eighty-three thousand three hundred seventeen');\nINSERT INTO t1 VALUES(6146, 12529, 'twelve thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(6147, 4828, 'four thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(6148, 79041, 'seventy-nine thousand forty-one');\nINSERT INTO t1 VALUES(6149, 83821, 'eighty-three thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(6150, 17753, 'seventeen thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(6151, 74826, 'seventy-four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(6152, 54661, 'fifty-four thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(6153, 6076, 'six thousand seventy-six');\nINSERT INTO t1 VALUES(6154, 89661, 'eighty-nine thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(6155, 21980, 'twenty-one thousand nine hundred eighty');\nINSERT INTO t1 VALUES(6156, 94673, 'ninety-four thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(6157, 33265, 'thirty-three thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(6158, 97246, 'ninety-seven thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6159, 35723, 'thirty-five thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(6160, 13267, 'thirteen thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(6161, 96071, 'ninety-six thousand seventy-one');\nINSERT INTO t1 VALUES(6162, 15046, 'fifteen thousand forty-six');\nINSERT INTO t1 VALUES(6163, 51026, 'fifty-one thousand twenty-six');\nINSERT INTO t1 VALUES(6164, 1256, 'one thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(6165, 48559, 'forty-eight thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(6166, 63589, 'sixty-three thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(6167, 1092, 'one thousand ninety-two');\nINSERT INTO t1 VALUES(6168, 83036, 'eighty-three thousand thirty-six');\nINSERT INTO t1 VALUES(6169, 77264, 'seventy-seven thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(6170, 98494, 'ninety-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(6171, 58314, 'fifty-eight thousand three hundred fourteen');\nINSERT INTO t1 VALUES(6172, 6026, 'six thousand twenty-six');\nINSERT INTO t1 VALUES(6173, 55715, 'fifty-five thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(6174, 84094, 'eighty-four thousand ninety-four');\nINSERT INTO t1 VALUES(6175, 90636, 'ninety thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(6176, 74295, 'seventy-four thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(6177, 44656, 'forty-four thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(6178, 54405, 'fifty-four thousand four hundred five');\nINSERT INTO t1 VALUES(6179, 99590, 'ninety-nine thousand five hundred ninety');\nINSERT INTO t1 VALUES(6180, 48529, 'forty-eight thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(6181, 21598, 'twenty-one thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(6182, 58610, 'fifty-eight thousand six hundred ten');\nINSERT INTO t1 VALUES(6183, 75107, 'seventy-five thousand one hundred seven');\nINSERT INTO t1 VALUES(6184, 781, 'seven hundred eighty-one');\nINSERT INTO t1 VALUES(6185, 68474, 'sixty-eight thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(6186, 92810, 'ninety-two thousand eight hundred ten');\nINSERT INTO t1 VALUES(6187, 81935, 'eighty-one thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(6188, 33035, 'thirty-three thousand thirty-five');\nINSERT INTO t1 VALUES(6189, 54285, 'fifty-four thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(6190, 63510, 'sixty-three thousand five hundred ten');\nINSERT INTO t1 VALUES(6191, 15595, 'fifteen thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(6192, 89303, 'eighty-nine thousand three hundred three');\nINSERT INTO t1 VALUES(6193, 53523, 'fifty-three thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6194, 31742, 'thirty-one thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(6195, 18746, 'eighteen thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(6196, 34052, 'thirty-four thousand fifty-two');\nINSERT INTO t1 VALUES(6197, 12911, 'twelve thousand nine hundred eleven');\nINSERT INTO t1 VALUES(6198, 44513, 'forty-four thousand five hundred thirteen');\nINSERT INTO t1 VALUES(6199, 42664, 'forty-two thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(6200, 82983, 'eighty-two thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(6201, 13599, 'thirteen thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(6202, 47210, 'forty-seven thousand two hundred ten');\nINSERT INTO t1 VALUES(6203, 68625, 'sixty-eight thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(6204, 75926, 'seventy-five thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(6205, 39770, 'thirty-nine thousand seven hundred seventy');\nINSERT INTO t1 VALUES(6206, 8537, 'eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(6207, 68772, 'sixty-eight thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(6208, 36439, 'thirty-six thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(6209, 41050, 'forty-one thousand fifty');\nINSERT INTO t1 VALUES(6210, 6853, 'six thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(6211, 89078, 'eighty-nine thousand seventy-eight');\nINSERT INTO t1 VALUES(6212, 23674, 'twenty-three thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(6213, 73817, 'seventy-three thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(6214, 71850, 'seventy-one thousand eight hundred fifty');\nINSERT INTO t1 VALUES(6215, 74717, 'seventy-four thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(6216, 73431, 'seventy-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(6217, 14021, 'fourteen thousand twenty-one');\nINSERT INTO t1 VALUES(6218, 3575, 'three thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(6219, 44774, 'forty-four thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(6220, 69778, 'sixty-nine thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(6221, 63566, 'sixty-three thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(6222, 80173, 'eighty thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(6223, 70378, 'seventy thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(6224, 47493, 'forty-seven thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(6225, 34644, 'thirty-four thousand six hundred forty-four');\nINSERT INTO t1 VALUES(6226, 27823, 'twenty-seven thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(6227, 3114, 'three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6228, 32122, 'thirty-two thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(6229, 97322, 'ninety-seven thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(6230, 97281, 'ninety-seven thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(6231, 75664, 'seventy-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(6232, 29293, 'twenty-nine thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(6233, 59723, 'fifty-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(6234, 80197, 'eighty thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(6235, 68278, 'sixty-eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(6236, 56468, 'fifty-six thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(6237, 5715, 'five thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(6238, 5624, 'five thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(6239, 88140, 'eighty-eight thousand one hundred forty');\nINSERT INTO t1 VALUES(6240, 74496, 'seventy-four thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(6241, 75097, 'seventy-five thousand ninety-seven');\nINSERT INTO t1 VALUES(6242, 34885, 'thirty-four thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(6243, 30664, 'thirty thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(6244, 84770, 'eighty-four thousand seven hundred seventy');\nINSERT INTO t1 VALUES(6245, 58350, 'fifty-eight thousand three hundred fifty');\nINSERT INTO t1 VALUES(6246, 56008, 'fifty-six thousand eight');\nINSERT INTO t1 VALUES(6247, 38588, 'thirty-eight thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(6248, 6611, 'six thousand six hundred eleven');\nINSERT INTO t1 VALUES(6249, 85751, 'eighty-five thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(6250, 64241, 'sixty-four thousand two hundred forty-one');\nINSERT INTO t1 VALUES(6251, 72257, 'seventy-two thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(6252, 69116, 'sixty-nine thousand one hundred sixteen');\nINSERT INTO t1 VALUES(6253, 80438, 'eighty thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6254, 20441, 'twenty thousand four hundred forty-one');\nINSERT INTO t1 VALUES(6255, 83620, 'eighty-three thousand six hundred twenty');\nINSERT INTO t1 VALUES(6256, 90621, 'ninety thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(6257, 39262, 'thirty-nine thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(6258, 74012, 'seventy-four thousand twelve');\nINSERT INTO t1 VALUES(6259, 78372, 'seventy-eight thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(6260, 37579, 'thirty-seven thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(6261, 83801, 'eighty-three thousand eight hundred one');\nINSERT INTO t1 VALUES(6262, 34122, 'thirty-four thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(6263, 34250, 'thirty-four thousand two hundred fifty');\nINSERT INTO t1 VALUES(6264, 54760, 'fifty-four thousand seven hundred sixty');\nINSERT INTO t1 VALUES(6265, 65580, 'sixty-five thousand five hundred eighty');\nINSERT INTO t1 VALUES(6266, 51092, 'fifty-one thousand ninety-two');\nINSERT INTO t1 VALUES(6267, 84895, 'eighty-four thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(6268, 5341, 'five thousand three hundred forty-one');\nINSERT INTO t1 VALUES(6269, 26667, 'twenty-six thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(6270, 83989, 'eighty-three thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6271, 78345, 'seventy-eight thousand three hundred forty-five');\nINSERT INTO t1 VALUES(6272, 91624, 'ninety-one thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(6273, 54510, 'fifty-four thousand five hundred ten');\nINSERT INTO t1 VALUES(6274, 2041, 'two thousand forty-one');\nINSERT INTO t1 VALUES(6275, 8249, 'eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(6276, 16815, 'sixteen thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(6277, 57435, 'fifty-seven thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(6278, 56575, 'fifty-six thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(6279, 90981, 'ninety thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(6280, 51459, 'fifty-one thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(6281, 62660, 'sixty-two thousand six hundred sixty');\nINSERT INTO t1 VALUES(6282, 3397, 'three thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(6283, 24584, 'twenty-four thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(6284, 41612, 'forty-one thousand six hundred twelve');\nINSERT INTO t1 VALUES(6285, 31556, 'thirty-one thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(6286, 96549, 'ninety-six thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(6287, 43389, 'forty-three thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(6288, 64564, 'sixty-four thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(6289, 77378, 'seventy-seven thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(6290, 36201, 'thirty-six thousand two hundred one');\nINSERT INTO t1 VALUES(6291, 89181, 'eighty-nine thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6292, 67644, 'sixty-seven thousand six hundred forty-four');\nINSERT INTO t1 VALUES(6293, 91084, 'ninety-one thousand eighty-four');\nINSERT INTO t1 VALUES(6294, 44396, 'forty-four thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(6295, 36642, 'thirty-six thousand six hundred forty-two');\nINSERT INTO t1 VALUES(6296, 50372, 'fifty thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(6297, 52752, 'fifty-two thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(6298, 46968, 'forty-six thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(6299, 78286, 'seventy-eight thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(6300, 65662, 'sixty-five thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6301, 9889, 'nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(6302, 25144, 'twenty-five thousand one hundred forty-four');\nINSERT INTO t1 VALUES(6303, 38696, 'thirty-eight thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(6304, 69362, 'sixty-nine thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(6305, 67404, 'sixty-seven thousand four hundred four');\nINSERT INTO t1 VALUES(6306, 40800, 'forty thousand eight hundred');\nINSERT INTO t1 VALUES(6307, 59099, 'fifty-nine thousand ninety-nine');\nINSERT INTO t1 VALUES(6308, 76688, 'seventy-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(6309, 26867, 'twenty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(6310, 76874, 'seventy-six thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(6311, 76946, 'seventy-six thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(6312, 76693, 'seventy-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(6313, 18074, 'eighteen thousand seventy-four');\nINSERT INTO t1 VALUES(6314, 91064, 'ninety-one thousand sixty-four');\nINSERT INTO t1 VALUES(6315, 28648, 'twenty-eight thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(6316, 38027, 'thirty-eight thousand twenty-seven');\nINSERT INTO t1 VALUES(6317, 63057, 'sixty-three thousand fifty-seven');\nINSERT INTO t1 VALUES(6318, 92263, 'ninety-two thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(6319, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(6320, 35529, 'thirty-five thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(6321, 75167, 'seventy-five thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(6322, 47213, 'forty-seven thousand two hundred thirteen');\nINSERT INTO t1 VALUES(6323, 78732, 'seventy-eight thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(6324, 19689, 'nineteen thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(6325, 22617, 'twenty-two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(6326, 69900, 'sixty-nine thousand nine hundred');\nINSERT INTO t1 VALUES(6327, 73652, 'seventy-three thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(6328, 76415, 'seventy-six thousand four hundred fifteen');\nINSERT INTO t1 VALUES(6329, 87877, 'eighty-seven thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(6330, 78207, 'seventy-eight thousand two hundred seven');\nINSERT INTO t1 VALUES(6331, 58335, 'fifty-eight thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(6332, 54124, 'fifty-four thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(6333, 22703, 'twenty-two thousand seven hundred three');\nINSERT INTO t1 VALUES(6334, 97491, 'ninety-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(6335, 11295, 'eleven thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(6336, 29256, 'twenty-nine thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(6337, 38698, 'thirty-eight thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(6338, 73044, 'seventy-three thousand forty-four');\nINSERT INTO t1 VALUES(6339, 99765, 'ninety-nine thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(6340, 88301, 'eighty-eight thousand three hundred one');\nINSERT INTO t1 VALUES(6341, 30244, 'thirty thousand two hundred forty-four');\nINSERT INTO t1 VALUES(6342, 79749, 'seventy-nine thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(6343, 71802, 'seventy-one thousand eight hundred two');\nINSERT INTO t1 VALUES(6344, 30418, 'thirty thousand four hundred eighteen');\nINSERT INTO t1 VALUES(6345, 49616, 'forty-nine thousand six hundred sixteen');\nINSERT INTO t1 VALUES(6346, 49300, 'forty-nine thousand three hundred');\nINSERT INTO t1 VALUES(6347, 44312, 'forty-four thousand three hundred twelve');\nINSERT INTO t1 VALUES(6348, 53302, 'fifty-three thousand three hundred two');\nINSERT INTO t1 VALUES(6349, 79200, 'seventy-nine thousand two hundred');\nINSERT INTO t1 VALUES(6350, 35702, 'thirty-five thousand seven hundred two');\nINSERT INTO t1 VALUES(6351, 99592, 'ninety-nine thousand five hundred ninety-two');\nINSERT INTO t1 VALUES(6352, 64522, 'sixty-four thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(6353, 86, 'eighty-six');\nINSERT INTO t1 VALUES(6354, 80876, 'eighty thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(6355, 99168, 'ninety-nine thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(6356, 46811, 'forty-six thousand eight hundred eleven');\nINSERT INTO t1 VALUES(6357, 1072, 'one thousand seventy-two');\nINSERT INTO t1 VALUES(6358, 8278, 'eight thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(6359, 55607, 'fifty-five thousand six hundred seven');\nINSERT INTO t1 VALUES(6360, 36504, 'thirty-six thousand five hundred four');\nINSERT INTO t1 VALUES(6361, 59909, 'fifty-nine thousand nine hundred nine');\nINSERT INTO t1 VALUES(6362, 57992, 'fifty-seven thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(6363, 23613, 'twenty-three thousand six hundred thirteen');\nINSERT INTO t1 VALUES(6364, 92633, 'ninety-two thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(6365, 72904, 'seventy-two thousand nine hundred four');\nINSERT INTO t1 VALUES(6366, 7705, 'seven thousand seven hundred five');\nINSERT INTO t1 VALUES(6367, 39207, 'thirty-nine thousand two hundred seven');\nINSERT INTO t1 VALUES(6368, 73654, 'seventy-three thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(6369, 90698, 'ninety thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(6370, 87976, 'eighty-seven thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(6371, 98859, 'ninety-eight thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(6372, 41861, 'forty-one thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(6373, 41215, 'forty-one thousand two hundred fifteen');\nINSERT INTO t1 VALUES(6374, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(6375, 44368, 'forty-four thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(6376, 62850, 'sixty-two thousand eight hundred fifty');\nINSERT INTO t1 VALUES(6377, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(6378, 86293, 'eighty-six thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(6379, 39747, 'thirty-nine thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(6380, 75183, 'seventy-five thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(6381, 60161, 'sixty thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(6382, 70506, 'seventy thousand five hundred six');\nINSERT INTO t1 VALUES(6383, 60941, 'sixty thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(6384, 39578, 'thirty-nine thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(6385, 70609, 'seventy thousand six hundred nine');\nINSERT INTO t1 VALUES(6386, 85484, 'eighty-five thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(6387, 47789, 'forty-seven thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(6388, 21144, 'twenty-one thousand one hundred forty-four');\nINSERT INTO t1 VALUES(6389, 78442, 'seventy-eight thousand four hundred forty-two');\nINSERT INTO t1 VALUES(6390, 85009, 'eighty-five thousand nine');\nINSERT INTO t1 VALUES(6391, 69987, 'sixty-nine thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(6392, 19247, 'nineteen thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(6393, 57089, 'fifty-seven thousand eighty-nine');\nINSERT INTO t1 VALUES(6394, 4956, 'four thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(6395, 25327, 'twenty-five thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(6396, 13866, 'thirteen thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(6397, 64720, 'sixty-four thousand seven hundred twenty');\nINSERT INTO t1 VALUES(6398, 30202, 'thirty thousand two hundred two');\nINSERT INTO t1 VALUES(6399, 87269, 'eighty-seven thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(6400, 19421, 'nineteen thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(6401, 62345, 'sixty-two thousand three hundred forty-five');\nINSERT INTO t1 VALUES(6402, 61738, 'sixty-one thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(6403, 25837, 'twenty-five thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(6404, 76888, 'seventy-six thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(6405, 77261, 'seventy-seven thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(6406, 77246, 'seventy-seven thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6407, 45044, 'forty-five thousand forty-four');\nINSERT INTO t1 VALUES(6408, 46395, 'forty-six thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(6409, 22073, 'twenty-two thousand seventy-three');\nINSERT INTO t1 VALUES(6410, 45647, 'forty-five thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(6411, 98782, 'ninety-eight thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(6412, 95995, 'ninety-five thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(6413, 90916, 'ninety thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(6414, 67805, 'sixty-seven thousand eight hundred five');\nINSERT INTO t1 VALUES(6415, 24900, 'twenty-four thousand nine hundred');\nINSERT INTO t1 VALUES(6416, 75181, 'seventy-five thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6417, 77366, 'seventy-seven thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(6418, 20206, 'twenty thousand two hundred six');\nINSERT INTO t1 VALUES(6419, 15870, 'fifteen thousand eight hundred seventy');\nINSERT INTO t1 VALUES(6420, 35851, 'thirty-five thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(6421, 22581, 'twenty-two thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(6422, 42718, 'forty-two thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(6423, 1868, 'one thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(6424, 93042, 'ninety-three thousand forty-two');\nINSERT INTO t1 VALUES(6425, 581, 'five hundred eighty-one');\nINSERT INTO t1 VALUES(6426, 45311, 'forty-five thousand three hundred eleven');\nINSERT INTO t1 VALUES(6427, 24105, 'twenty-four thousand one hundred five');\nINSERT INTO t1 VALUES(6428, 36553, 'thirty-six thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(6429, 3533, 'three thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(6430, 5500, 'five thousand five hundred');\nINSERT INTO t1 VALUES(6431, 88211, 'eighty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(6432, 86845, 'eighty-six thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(6433, 46179, 'forty-six thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6434, 89033, 'eighty-nine thousand thirty-three');\nINSERT INTO t1 VALUES(6435, 83573, 'eighty-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(6436, 97826, 'ninety-seven thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(6437, 75421, 'seventy-five thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(6438, 15705, 'fifteen thousand seven hundred five');\nINSERT INTO t1 VALUES(6439, 88535, 'eighty-eight thousand five hundred thirty-five');\nINSERT INTO t1 VALUES(6440, 40410, 'forty thousand four hundred ten');\nINSERT INTO t1 VALUES(6441, 849, 'eight hundred forty-nine');\nINSERT INTO t1 VALUES(6442, 95486, 'ninety-five thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(6443, 52442, 'fifty-two thousand four hundred forty-two');\nINSERT INTO t1 VALUES(6444, 40228, 'forty thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(6445, 37958, 'thirty-seven thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(6446, 43012, 'forty-three thousand twelve');\nINSERT INTO t1 VALUES(6447, 77587, 'seventy-seven thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(6448, 68786, 'sixty-eight thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(6449, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(6450, 28032, 'twenty-eight thousand thirty-two');\nINSERT INTO t1 VALUES(6451, 18697, 'eighteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(6452, 36216, 'thirty-six thousand two hundred sixteen');\nINSERT INTO t1 VALUES(6453, 26239, 'twenty-six thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(6454, 96458, 'ninety-six thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(6455, 46662, 'forty-six thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6456, 53114, 'fifty-three thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6457, 40794, 'forty thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(6458, 83221, 'eighty-three thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(6459, 80435, 'eighty thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(6460, 65039, 'sixty-five thousand thirty-nine');\nINSERT INTO t1 VALUES(6461, 7447, 'seven thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(6462, 49944, 'forty-nine thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6463, 92960, 'ninety-two thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6464, 47047, 'forty-seven thousand forty-seven');\nINSERT INTO t1 VALUES(6465, 6292, 'six thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(6466, 2166, 'two thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6467, 75009, 'seventy-five thousand nine');\nINSERT INTO t1 VALUES(6468, 35621, 'thirty-five thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(6469, 77908, 'seventy-seven thousand nine hundred eight');\nINSERT INTO t1 VALUES(6470, 35457, 'thirty-five thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(6471, 31798, 'thirty-one thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(6472, 23772, 'twenty-three thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(6473, 44888, 'forty-four thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(6474, 6788, 'six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(6475, 19365, 'nineteen thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(6476, 84668, 'eighty-four thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(6477, 95262, 'ninety-five thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(6478, 14317, 'fourteen thousand three hundred seventeen');\nINSERT INTO t1 VALUES(6479, 62977, 'sixty-two thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(6480, 36967, 'thirty-six thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(6481, 63706, 'sixty-three thousand seven hundred six');\nINSERT INTO t1 VALUES(6482, 58164, 'fifty-eight thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(6483, 31521, 'thirty-one thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(6484, 32644, 'thirty-two thousand six hundred forty-four');\nINSERT INTO t1 VALUES(6485, 60359, 'sixty thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(6486, 4826, 'four thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(6487, 18041, 'eighteen thousand forty-one');\nINSERT INTO t1 VALUES(6488, 17276, 'seventeen thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(6489, 11314, 'eleven thousand three hundred fourteen');\nINSERT INTO t1 VALUES(6490, 79672, 'seventy-nine thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(6491, 48971, 'forty-eight thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(6492, 9315, 'nine thousand three hundred fifteen');\nINSERT INTO t1 VALUES(6493, 54703, 'fifty-four thousand seven hundred three');\nINSERT INTO t1 VALUES(6494, 69359, 'sixty-nine thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(6495, 80707, 'eighty thousand seven hundred seven');\nINSERT INTO t1 VALUES(6496, 83672, 'eighty-three thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(6497, 15006, 'fifteen thousand six');\nINSERT INTO t1 VALUES(6498, 10292, 'ten thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(6499, 18836, 'eighteen thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(6500, 84300, 'eighty-four thousand three hundred');\nINSERT INTO t1 VALUES(6501, 59324, 'fifty-nine thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(6502, 45438, 'forty-five thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6503, 32454, 'thirty-two thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(6504, 26878, 'twenty-six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(6505, 28508, 'twenty-eight thousand five hundred eight');\nINSERT INTO t1 VALUES(6506, 65092, 'sixty-five thousand ninety-two');\nINSERT INTO t1 VALUES(6507, 71646, 'seventy-one thousand six hundred forty-six');\nINSERT INTO t1 VALUES(6508, 33868, 'thirty-three thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(6509, 19281, 'nineteen thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(6510, 297, 'two hundred ninety-seven');\nINSERT INTO t1 VALUES(6511, 43375, 'forty-three thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(6512, 87831, 'eighty-seven thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(6513, 70988, 'seventy thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(6514, 68450, 'sixty-eight thousand four hundred fifty');\nINSERT INTO t1 VALUES(6515, 45136, 'forty-five thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(6516, 1303, 'one thousand three hundred three');\nINSERT INTO t1 VALUES(6517, 33621, 'thirty-three thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(6518, 27665, 'twenty-seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(6519, 22898, 'twenty-two thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(6520, 74371, 'seventy-four thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(6521, 3596, 'three thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(6522, 74725, 'seventy-four thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(6523, 26039, 'twenty-six thousand thirty-nine');\nINSERT INTO t1 VALUES(6524, 97083, 'ninety-seven thousand eighty-three');\nINSERT INTO t1 VALUES(6525, 58167, 'fifty-eight thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(6526, 97469, 'ninety-seven thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(6527, 40010, 'forty thousand ten');\nINSERT INTO t1 VALUES(6528, 73913, 'seventy-three thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(6529, 23600, 'twenty-three thousand six hundred');\nINSERT INTO t1 VALUES(6530, 15064, 'fifteen thousand sixty-four');\nINSERT INTO t1 VALUES(6531, 90309, 'ninety thousand three hundred nine');\nINSERT INTO t1 VALUES(6532, 38533, 'thirty-eight thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(6533, 66822, 'sixty-six thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(6534, 80416, 'eighty thousand four hundred sixteen');\nINSERT INTO t1 VALUES(6535, 56181, 'fifty-six thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6536, 44722, 'forty-four thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(6537, 3306, 'three thousand three hundred six');\nINSERT INTO t1 VALUES(6538, 40989, 'forty thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(6539, 27387, 'twenty-seven thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(6540, 49399, 'forty-nine thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(6541, 24086, 'twenty-four thousand eighty-six');\nINSERT INTO t1 VALUES(6542, 7191, 'seven thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(6543, 97214, 'ninety-seven thousand two hundred fourteen');\nINSERT INTO t1 VALUES(6544, 99188, 'ninety-nine thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(6545, 85495, 'eighty-five thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(6546, 32045, 'thirty-two thousand forty-five');\nINSERT INTO t1 VALUES(6547, 1781, 'one thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(6548, 58101, 'fifty-eight thousand one hundred one');\nINSERT INTO t1 VALUES(6549, 25033, 'twenty-five thousand thirty-three');\nINSERT INTO t1 VALUES(6550, 80704, 'eighty thousand seven hundred four');\nINSERT INTO t1 VALUES(6551, 73679, 'seventy-three thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(6552, 28028, 'twenty-eight thousand twenty-eight');\nINSERT INTO t1 VALUES(6553, 51823, 'fifty-one thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(6554, 42387, 'forty-two thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(6555, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(6556, 16896, 'sixteen thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(6557, 77857, 'seventy-seven thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(6558, 83547, 'eighty-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(6559, 62749, 'sixty-two thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(6560, 99924, 'ninety-nine thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(6561, 82951, 'eighty-two thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(6562, 81022, 'eighty-one thousand twenty-two');\nINSERT INTO t1 VALUES(6563, 22793, 'twenty-two thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(6564, 63088, 'sixty-three thousand eighty-eight');\nINSERT INTO t1 VALUES(6565, 61980, 'sixty-one thousand nine hundred eighty');\nINSERT INTO t1 VALUES(6566, 96013, 'ninety-six thousand thirteen');\nINSERT INTO t1 VALUES(6567, 88398, 'eighty-eight thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(6568, 63388, 'sixty-three thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(6569, 9882, 'nine thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(6570, 41889, 'forty-one thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(6571, 59308, 'fifty-nine thousand three hundred eight');\nINSERT INTO t1 VALUES(6572, 27642, 'twenty-seven thousand six hundred forty-two');\nINSERT INTO t1 VALUES(6573, 26151, 'twenty-six thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(6574, 91991, 'ninety-one thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(6575, 95809, 'ninety-five thousand eight hundred nine');\nINSERT INTO t1 VALUES(6576, 75274, 'seventy-five thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(6577, 52402, 'fifty-two thousand four hundred two');\nINSERT INTO t1 VALUES(6578, 43439, 'forty-three thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(6579, 49921, 'forty-nine thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(6580, 93898, 'ninety-three thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(6581, 72237, 'seventy-two thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(6582, 38350, 'thirty-eight thousand three hundred fifty');\nINSERT INTO t1 VALUES(6583, 28211, 'twenty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(6584, 99818, 'ninety-nine thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(6585, 55546, 'fifty-five thousand five hundred forty-six');\nINSERT INTO t1 VALUES(6586, 27559, 'twenty-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(6587, 39119, 'thirty-nine thousand one hundred nineteen');\nINSERT INTO t1 VALUES(6588, 25306, 'twenty-five thousand three hundred six');\nINSERT INTO t1 VALUES(6589, 22652, 'twenty-two thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(6590, 15046, 'fifteen thousand forty-six');\nINSERT INTO t1 VALUES(6591, 93370, 'ninety-three thousand three hundred seventy');\nINSERT INTO t1 VALUES(6592, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(6593, 78790, 'seventy-eight thousand seven hundred ninety');\nINSERT INTO t1 VALUES(6594, 61837, 'sixty-one thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(6595, 38786, 'thirty-eight thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(6596, 7510, 'seven thousand five hundred ten');\nINSERT INTO t1 VALUES(6597, 60252, 'sixty thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(6598, 10062, 'ten thousand sixty-two');\nINSERT INTO t1 VALUES(6599, 81328, 'eighty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(6600, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(6601, 16956, 'sixteen thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(6602, 52383, 'fifty-two thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6603, 15488, 'fifteen thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(6604, 1589, 'one thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(6605, 43239, 'forty-three thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(6606, 87270, 'eighty-seven thousand two hundred seventy');\nINSERT INTO t1 VALUES(6607, 39605, 'thirty-nine thousand six hundred five');\nINSERT INTO t1 VALUES(6608, 1163, 'one thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(6609, 35468, 'thirty-five thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(6610, 43003, 'forty-three thousand three');\nINSERT INTO t1 VALUES(6611, 76320, 'seventy-six thousand three hundred twenty');\nINSERT INTO t1 VALUES(6612, 37563, 'thirty-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6613, 77687, 'seventy-seven thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(6614, 23590, 'twenty-three thousand five hundred ninety');\nINSERT INTO t1 VALUES(6615, 50736, 'fifty thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(6616, 2835, 'two thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(6617, 90042, 'ninety thousand forty-two');\nINSERT INTO t1 VALUES(6618, 40747, 'forty thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(6619, 70187, 'seventy thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(6620, 44024, 'forty-four thousand twenty-four');\nINSERT INTO t1 VALUES(6621, 64027, 'sixty-four thousand twenty-seven');\nINSERT INTO t1 VALUES(6622, 73420, 'seventy-three thousand four hundred twenty');\nINSERT INTO t1 VALUES(6623, 76138, 'seventy-six thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(6624, 26516, 'twenty-six thousand five hundred sixteen');\nINSERT INTO t1 VALUES(6625, 35069, 'thirty-five thousand sixty-nine');\nINSERT INTO t1 VALUES(6626, 54356, 'fifty-four thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(6627, 78623, 'seventy-eight thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(6628, 31258, 'thirty-one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(6629, 55607, 'fifty-five thousand six hundred seven');\nINSERT INTO t1 VALUES(6630, 42885, 'forty-two thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(6631, 80744, 'eighty thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(6632, 75472, 'seventy-five thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(6633, 4357, 'four thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(6634, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(6635, 2119, 'two thousand one hundred nineteen');\nINSERT INTO t1 VALUES(6636, 91843, 'ninety-one thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(6637, 77120, 'seventy-seven thousand one hundred twenty');\nINSERT INTO t1 VALUES(6638, 20656, 'twenty thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(6639, 83190, 'eighty-three thousand one hundred ninety');\nINSERT INTO t1 VALUES(6640, 58605, 'fifty-eight thousand six hundred five');\nINSERT INTO t1 VALUES(6641, 99800, 'ninety-nine thousand eight hundred');\nINSERT INTO t1 VALUES(6642, 22719, 'twenty-two thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(6643, 12605, 'twelve thousand six hundred five');\nINSERT INTO t1 VALUES(6644, 50509, 'fifty thousand five hundred nine');\nINSERT INTO t1 VALUES(6645, 59507, 'fifty-nine thousand five hundred seven');\nINSERT INTO t1 VALUES(6646, 12212, 'twelve thousand two hundred twelve');\nINSERT INTO t1 VALUES(6647, 95667, 'ninety-five thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(6648, 4977, 'four thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(6649, 84136, 'eighty-four thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(6650, 47118, 'forty-seven thousand one hundred eighteen');\nINSERT INTO t1 VALUES(6651, 8262, 'eight thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(6652, 94544, 'ninety-four thousand five hundred forty-four');\nINSERT INTO t1 VALUES(6653, 16261, 'sixteen thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(6654, 51769, 'fifty-one thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(6655, 94679, 'ninety-four thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(6656, 65739, 'sixty-five thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(6657, 29667, 'twenty-nine thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(6658, 76059, 'seventy-six thousand fifty-nine');\nINSERT INTO t1 VALUES(6659, 96960, 'ninety-six thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6660, 37265, 'thirty-seven thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(6661, 1375, 'one thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(6662, 47146, 'forty-seven thousand one hundred forty-six');\nINSERT INTO t1 VALUES(6663, 81358, 'eighty-one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(6664, 38558, 'thirty-eight thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(6665, 59850, 'fifty-nine thousand eight hundred fifty');\nINSERT INTO t1 VALUES(6666, 21563, 'twenty-one thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6667, 14524, 'fourteen thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(6668, 4709, 'four thousand seven hundred nine');\nINSERT INTO t1 VALUES(6669, 47618, 'forty-seven thousand six hundred eighteen');\nINSERT INTO t1 VALUES(6670, 85344, 'eighty-five thousand three hundred forty-four');\nINSERT INTO t1 VALUES(6671, 79383, 'seventy-nine thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6672, 13211, 'thirteen thousand two hundred eleven');\nINSERT INTO t1 VALUES(6673, 53671, 'fifty-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(6674, 97563, 'ninety-seven thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6675, 74112, 'seventy-four thousand one hundred twelve');\nINSERT INTO t1 VALUES(6676, 35578, 'thirty-five thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(6677, 24187, 'twenty-four thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(6678, 7024, 'seven thousand twenty-four');\nINSERT INTO t1 VALUES(6679, 7580, 'seven thousand five hundred eighty');\nINSERT INTO t1 VALUES(6680, 56577, 'fifty-six thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(6681, 71019, 'seventy-one thousand nineteen');\nINSERT INTO t1 VALUES(6682, 10817, 'ten thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(6683, 94962, 'ninety-four thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(6684, 27166, 'twenty-seven thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6685, 15055, 'fifteen thousand fifty-five');\nINSERT INTO t1 VALUES(6686, 46750, 'forty-six thousand seven hundred fifty');\nINSERT INTO t1 VALUES(6687, 90858, 'ninety thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(6688, 78813, 'seventy-eight thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(6689, 70094, 'seventy thousand ninety-four');\nINSERT INTO t1 VALUES(6690, 58568, 'fifty-eight thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(6691, 97629, 'ninety-seven thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(6692, 53349, 'fifty-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(6693, 43161, 'forty-three thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(6694, 80330, 'eighty thousand three hundred thirty');\nINSERT INTO t1 VALUES(6695, 58268, 'fifty-eight thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(6696, 53390, 'fifty-three thousand three hundred ninety');\nINSERT INTO t1 VALUES(6697, 75945, 'seventy-five thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(6698, 28482, 'twenty-eight thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(6699, 32204, 'thirty-two thousand two hundred four');\nINSERT INTO t1 VALUES(6700, 89729, 'eighty-nine thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(6701, 32177, 'thirty-two thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(6702, 58153, 'fifty-eight thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(6703, 10353, 'ten thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(6704, 1205, 'one thousand two hundred five');\nINSERT INTO t1 VALUES(6705, 24323, 'twenty-four thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(6706, 20289, 'twenty thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(6707, 19444, 'nineteen thousand four hundred forty-four');\nINSERT INTO t1 VALUES(6708, 54325, 'fifty-four thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(6709, 64779, 'sixty-four thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(6710, 43438, 'forty-three thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(6711, 91721, 'ninety-one thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(6712, 67641, 'sixty-seven thousand six hundred forty-one');\nINSERT INTO t1 VALUES(6713, 72716, 'seventy-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(6714, 22118, 'twenty-two thousand one hundred eighteen');\nINSERT INTO t1 VALUES(6715, 93224, 'ninety-three thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(6716, 13697, 'thirteen thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(6717, 54709, 'fifty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(6718, 82002, 'eighty-two thousand two');\nINSERT INTO t1 VALUES(6719, 30292, 'thirty thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(6720, 29501, 'twenty-nine thousand five hundred one');\nINSERT INTO t1 VALUES(6721, 44960, 'forty-four thousand nine hundred sixty');\nINSERT INTO t1 VALUES(6722, 51642, 'fifty-one thousand six hundred forty-two');\nINSERT INTO t1 VALUES(6723, 12618, 'twelve thousand six hundred eighteen');\nINSERT INTO t1 VALUES(6724, 6787, 'six thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(6725, 39158, 'thirty-nine thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(6726, 55538, 'fifty-five thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(6727, 30141, 'thirty thousand one hundred forty-one');\nINSERT INTO t1 VALUES(6728, 34252, 'thirty-four thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(6729, 24907, 'twenty-four thousand nine hundred seven');\nINSERT INTO t1 VALUES(6730, 49098, 'forty-nine thousand ninety-eight');\nINSERT INTO t1 VALUES(6731, 65423, 'sixty-five thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(6732, 78541, 'seventy-eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(6733, 17061, 'seventeen thousand sixty-one');\nINSERT INTO t1 VALUES(6734, 10479, 'ten thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(6735, 53892, 'fifty-three thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(6736, 72766, 'seventy-two thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(6737, 3554, 'three thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(6738, 69312, 'sixty-nine thousand three hundred twelve');\nINSERT INTO t1 VALUES(6739, 38210, 'thirty-eight thousand two hundred ten');\nINSERT INTO t1 VALUES(6740, 26569, 'twenty-six thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(6741, 31859, 'thirty-one thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(6742, 83701, 'eighty-three thousand seven hundred one');\nINSERT INTO t1 VALUES(6743, 37555, 'thirty-seven thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(6744, 29849, 'twenty-nine thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(6745, 23944, 'twenty-three thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(6746, 76995, 'seventy-six thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(6747, 99633, 'ninety-nine thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(6748, 30368, 'thirty thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(6749, 86748, 'eighty-six thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(6750, 98313, 'ninety-eight thousand three hundred thirteen');\nINSERT INTO t1 VALUES(6751, 68542, 'sixty-eight thousand five hundred forty-two');\nINSERT INTO t1 VALUES(6752, 72674, 'seventy-two thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(6753, 88948, 'eighty-eight thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(6754, 8125, 'eight thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(6755, 67538, 'sixty-seven thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(6756, 65630, 'sixty-five thousand six hundred thirty');\nINSERT INTO t1 VALUES(6757, 82634, 'eighty-two thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(6758, 22706, 'twenty-two thousand seven hundred six');\nINSERT INTO t1 VALUES(6759, 50630, 'fifty thousand six hundred thirty');\nINSERT INTO t1 VALUES(6760, 28110, 'twenty-eight thousand one hundred ten');\nINSERT INTO t1 VALUES(6761, 3211, 'three thousand two hundred eleven');\nINSERT INTO t1 VALUES(6762, 36122, 'thirty-six thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(6763, 71851, 'seventy-one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(6764, 35323, 'thirty-five thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(6765, 15588, 'fifteen thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(6766, 87098, 'eighty-seven thousand ninety-eight');\nINSERT INTO t1 VALUES(6767, 57819, 'fifty-seven thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(6768, 55472, 'fifty-five thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(6769, 31226, 'thirty-one thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(6770, 24937, 'twenty-four thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(6771, 64166, 'sixty-four thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6772, 7179, 'seven thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(6773, 96764, 'ninety-six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(6774, 65799, 'sixty-five thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(6775, 21617, 'twenty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(6776, 62459, 'sixty-two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(6777, 51876, 'fifty-one thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(6778, 63688, 'sixty-three thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(6779, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(6780, 25839, 'twenty-five thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(6781, 45071, 'forty-five thousand seventy-one');\nINSERT INTO t1 VALUES(6782, 45887, 'forty-five thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(6783, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(6784, 89372, 'eighty-nine thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(6785, 42549, 'forty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(6786, 95111, 'ninety-five thousand one hundred eleven');\nINSERT INTO t1 VALUES(6787, 46990, 'forty-six thousand nine hundred ninety');\nINSERT INTO t1 VALUES(6788, 64382, 'sixty-four thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(6789, 2110, 'two thousand one hundred ten');\nINSERT INTO t1 VALUES(6790, 821, 'eight hundred twenty-one');\nINSERT INTO t1 VALUES(6791, 12838, 'twelve thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(6792, 70215, 'seventy thousand two hundred fifteen');\nINSERT INTO t1 VALUES(6793, 37883, 'thirty-seven thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(6794, 36922, 'thirty-six thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(6795, 99574, 'ninety-nine thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(6796, 90968, 'ninety thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(6797, 89336, 'eighty-nine thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(6798, 87759, 'eighty-seven thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(6799, 78523, 'seventy-eight thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6800, 78593, 'seventy-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(6801, 17498, 'seventeen thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(6802, 61353, 'sixty-one thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(6803, 81414, 'eighty-one thousand four hundred fourteen');\nINSERT INTO t1 VALUES(6804, 22284, 'twenty-two thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(6805, 92279, 'ninety-two thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(6806, 85181, 'eighty-five thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6807, 67754, 'sixty-seven thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(6808, 57097, 'fifty-seven thousand ninety-seven');\nINSERT INTO t1 VALUES(6809, 93930, 'ninety-three thousand nine hundred thirty');\nINSERT INTO t1 VALUES(6810, 21190, 'twenty-one thousand one hundred ninety');\nINSERT INTO t1 VALUES(6811, 95057, 'ninety-five thousand fifty-seven');\nINSERT INTO t1 VALUES(6812, 44563, 'forty-four thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(6813, 19216, 'nineteen thousand two hundred sixteen');\nINSERT INTO t1 VALUES(6814, 36215, 'thirty-six thousand two hundred fifteen');\nINSERT INTO t1 VALUES(6815, 40643, 'forty thousand six hundred forty-three');\nINSERT INTO t1 VALUES(6816, 11662, 'eleven thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6817, 73384, 'seventy-three thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(6818, 92198, 'ninety-two thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(6819, 84971, 'eighty-four thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(6820, 48060, 'forty-eight thousand sixty');\nINSERT INTO t1 VALUES(6821, 49523, 'forty-nine thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(6822, 52716, 'fifty-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(6823, 59742, 'fifty-nine thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(6824, 39936, 'thirty-nine thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(6825, 28728, 'twenty-eight thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(6826, 87649, 'eighty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(6827, 32313, 'thirty-two thousand three hundred thirteen');\nINSERT INTO t1 VALUES(6828, 77819, 'seventy-seven thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(6829, 9094, 'nine thousand ninety-four');\nINSERT INTO t1 VALUES(6830, 78662, 'seventy-eight thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(6831, 6159, 'six thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(6832, 52796, 'fifty-two thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(6833, 12459, 'twelve thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(6834, 39884, 'thirty-nine thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(6835, 74910, 'seventy-four thousand nine hundred ten');\nINSERT INTO t1 VALUES(6836, 55808, 'fifty-five thousand eight hundred eight');\nINSERT INTO t1 VALUES(6837, 18408, 'eighteen thousand four hundred eight');\nINSERT INTO t1 VALUES(6838, 74842, 'seventy-four thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(6839, 73162, 'seventy-three thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(6840, 26433, 'twenty-six thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(6841, 630, 'six hundred thirty');\nINSERT INTO t1 VALUES(6842, 29287, 'twenty-nine thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(6843, 3033, 'three thousand thirty-three');\nINSERT INTO t1 VALUES(6844, 5537, 'five thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(6845, 11561, 'eleven thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(6846, 9436, 'nine thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(6847, 19405, 'nineteen thousand four hundred five');\nINSERT INTO t1 VALUES(6848, 85120, 'eighty-five thousand one hundred twenty');\nINSERT INTO t1 VALUES(6849, 6654, 'six thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(6850, 17880, 'seventeen thousand eight hundred eighty');\nINSERT INTO t1 VALUES(6851, 83326, 'eighty-three thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(6852, 58398, 'fifty-eight thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(6853, 71431, 'seventy-one thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(6854, 53333, 'fifty-three thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(6855, 8634, 'eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(6856, 50417, 'fifty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(6857, 70080, 'seventy thousand eighty');\nINSERT INTO t1 VALUES(6858, 75388, 'seventy-five thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(6859, 44879, 'forty-four thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(6860, 93071, 'ninety-three thousand seventy-one');\nINSERT INTO t1 VALUES(6861, 84253, 'eighty-four thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(6862, 49375, 'forty-nine thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(6863, 98533, 'ninety-eight thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(6864, 37207, 'thirty-seven thousand two hundred seven');\nINSERT INTO t1 VALUES(6865, 90814, 'ninety thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(6866, 43139, 'forty-three thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(6867, 57896, 'fifty-seven thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(6868, 57613, 'fifty-seven thousand six hundred thirteen');\nINSERT INTO t1 VALUES(6869, 28841, 'twenty-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(6870, 67039, 'sixty-seven thousand thirty-nine');\nINSERT INTO t1 VALUES(6871, 50296, 'fifty thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(6872, 51421, 'fifty-one thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(6873, 4360, 'four thousand three hundred sixty');\nINSERT INTO t1 VALUES(6874, 27162, 'twenty-seven thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(6875, 4951, 'four thousand nine hundred fifty-one');\nINSERT INTO t1 VALUES(6876, 66115, 'sixty-six thousand one hundred fifteen');\nINSERT INTO t1 VALUES(6877, 39134, 'thirty-nine thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(6878, 88194, 'eighty-eight thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(6879, 6052, 'six thousand fifty-two');\nINSERT INTO t1 VALUES(6880, 77924, 'seventy-seven thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(6881, 9569, 'nine thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(6882, 52064, 'fifty-two thousand sixty-four');\nINSERT INTO t1 VALUES(6883, 45777, 'forty-five thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(6884, 55166, 'fifty-five thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(6885, 72978, 'seventy-two thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(6886, 56114, 'fifty-six thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6887, 27004, 'twenty-seven thousand four');\nINSERT INTO t1 VALUES(6888, 78789, 'seventy-eight thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(6889, 95061, 'ninety-five thousand sixty-one');\nINSERT INTO t1 VALUES(6890, 60819, 'sixty thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(6891, 39046, 'thirty-nine thousand forty-six');\nINSERT INTO t1 VALUES(6892, 9837, 'nine thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(6893, 42409, 'forty-two thousand four hundred nine');\nINSERT INTO t1 VALUES(6894, 73726, 'seventy-three thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(6895, 90259, 'ninety thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(6896, 24288, 'twenty-four thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(6897, 79446, 'seventy-nine thousand four hundred forty-six');\nINSERT INTO t1 VALUES(6898, 10047, 'ten thousand forty-seven');\nINSERT INTO t1 VALUES(6899, 27702, 'twenty-seven thousand seven hundred two');\nINSERT INTO t1 VALUES(6900, 90746, 'ninety thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(6901, 74781, 'seventy-four thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(6902, 81133, 'eighty-one thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(6903, 94386, 'ninety-four thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(6904, 68842, 'sixty-eight thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(6905, 41623, 'forty-one thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(6906, 33473, 'thirty-three thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(6907, 52116, 'fifty-two thousand one hundred sixteen');\nINSERT INTO t1 VALUES(6908, 39270, 'thirty-nine thousand two hundred seventy');\nINSERT INTO t1 VALUES(6909, 74631, 'seventy-four thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(6910, 74800, 'seventy-four thousand eight hundred');\nINSERT INTO t1 VALUES(6911, 53573, 'fifty-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(6912, 38899, 'thirty-eight thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(6913, 91968, 'ninety-one thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(6914, 19260, 'nineteen thousand two hundred sixty');\nINSERT INTO t1 VALUES(6915, 95021, 'ninety-five thousand twenty-one');\nINSERT INTO t1 VALUES(6916, 92229, 'ninety-two thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(6917, 98586, 'ninety-eight thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(6918, 15114, 'fifteen thousand one hundred fourteen');\nINSERT INTO t1 VALUES(6919, 18424, 'eighteen thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(6920, 33115, 'thirty-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(6921, 79149, 'seventy-nine thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(6922, 35707, 'thirty-five thousand seven hundred seven');\nINSERT INTO t1 VALUES(6923, 53181, 'fifty-three thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(6924, 55152, 'fifty-five thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(6925, 59889, 'fifty-nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(6926, 36371, 'thirty-six thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(6927, 34855, 'thirty-four thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(6928, 45769, 'forty-five thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(6929, 12207, 'twelve thousand two hundred seven');\nINSERT INTO t1 VALUES(6930, 48313, 'forty-eight thousand three hundred thirteen');\nINSERT INTO t1 VALUES(6931, 47830, 'forty-seven thousand eight hundred thirty');\nINSERT INTO t1 VALUES(6932, 36390, 'thirty-six thousand three hundred ninety');\nINSERT INTO t1 VALUES(6933, 33510, 'thirty-three thousand five hundred ten');\nINSERT INTO t1 VALUES(6934, 38816, 'thirty-eight thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(6935, 7221, 'seven thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(6936, 34183, 'thirty-four thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(6937, 30500, 'thirty thousand five hundred');\nINSERT INTO t1 VALUES(6938, 86099, 'eighty-six thousand ninety-nine');\nINSERT INTO t1 VALUES(6939, 92760, 'ninety-two thousand seven hundred sixty');\nINSERT INTO t1 VALUES(6940, 54986, 'fifty-four thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(6941, 86065, 'eighty-six thousand sixty-five');\nINSERT INTO t1 VALUES(6942, 65675, 'sixty-five thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(6943, 47637, 'forty-seven thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(6944, 95916, 'ninety-five thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(6945, 82599, 'eighty-two thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(6946, 87124, 'eighty-seven thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(6947, 47867, 'forty-seven thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(6948, 68932, 'sixty-eight thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(6949, 99060, 'ninety-nine thousand sixty');\nINSERT INTO t1 VALUES(6950, 8079, 'eight thousand seventy-nine');\nINSERT INTO t1 VALUES(6951, 98688, 'ninety-eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(6952, 23264, 'twenty-three thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(6953, 21861, 'twenty-one thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(6954, 15723, 'fifteen thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(6955, 54246, 'fifty-four thousand two hundred forty-six');\nINSERT INTO t1 VALUES(6956, 4449, 'four thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(6957, 43330, 'forty-three thousand three hundred thirty');\nINSERT INTO t1 VALUES(6958, 55037, 'fifty-five thousand thirty-seven');\nINSERT INTO t1 VALUES(6959, 62970, 'sixty-two thousand nine hundred seventy');\nINSERT INTO t1 VALUES(6960, 18791, 'eighteen thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(6961, 90982, 'ninety thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(6962, 98414, 'ninety-eight thousand four hundred fourteen');\nINSERT INTO t1 VALUES(6963, 74839, 'seventy-four thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(6964, 25538, 'twenty-five thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(6965, 49139, 'forty-nine thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(6966, 61282, 'sixty-one thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(6967, 20645, 'twenty thousand six hundred forty-five');\nINSERT INTO t1 VALUES(6968, 68356, 'sixty-eight thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(6969, 46392, 'forty-six thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(6970, 4648, 'four thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(6971, 93824, 'ninety-three thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(6972, 95668, 'ninety-five thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(6973, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(6974, 82064, 'eighty-two thousand sixty-four');\nINSERT INTO t1 VALUES(6975, 37286, 'thirty-seven thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(6976, 121, 'one hundred twenty-one');\nINSERT INTO t1 VALUES(6977, 2019, 'two thousand nineteen');\nINSERT INTO t1 VALUES(6978, 42863, 'forty-two thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(6979, 71907, 'seventy-one thousand nine hundred seven');\nINSERT INTO t1 VALUES(6980, 19172, 'nineteen thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(6981, 7343, 'seven thousand three hundred forty-three');\nINSERT INTO t1 VALUES(6982, 85226, 'eighty-five thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(6983, 73500, 'seventy-three thousand five hundred');\nINSERT INTO t1 VALUES(6984, 18428, 'eighteen thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(6985, 88879, 'eighty-eight thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(6986, 28151, 'twenty-eight thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(6987, 55671, 'fifty-five thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(6988, 32604, 'thirty-two thousand six hundred four');\nINSERT INTO t1 VALUES(6989, 22021, 'twenty-two thousand twenty-one');\nINSERT INTO t1 VALUES(6990, 84456, 'eighty-four thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(6991, 88354, 'eighty-eight thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(6992, 41882, 'forty-one thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(6993, 55635, 'fifty-five thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(6994, 26020, 'twenty-six thousand twenty');\nINSERT INTO t1 VALUES(6995, 64164, 'sixty-four thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(6996, 9256, 'nine thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(6997, 26108, 'twenty-six thousand one hundred eight');\nINSERT INTO t1 VALUES(6998, 35526, 'thirty-five thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(6999, 23377, 'twenty-three thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(7000, 43242, 'forty-three thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7001, 89326, 'eighty-nine thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(7002, 15986, 'fifteen thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(7003, 39220, 'thirty-nine thousand two hundred twenty');\nINSERT INTO t1 VALUES(7004, 48765, 'forty-eight thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(7005, 61844, 'sixty-one thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(7006, 25492, 'twenty-five thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(7007, 10653, 'ten thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(7008, 15146, 'fifteen thousand one hundred forty-six');\nINSERT INTO t1 VALUES(7009, 71673, 'seventy-one thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7010, 43122, 'forty-three thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(7011, 69009, 'sixty-nine thousand nine');\nINSERT INTO t1 VALUES(7012, 45939, 'forty-five thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7013, 64018, 'sixty-four thousand eighteen');\nINSERT INTO t1 VALUES(7014, 52343, 'fifty-two thousand three hundred forty-three');\nINSERT INTO t1 VALUES(7015, 29574, 'twenty-nine thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(7016, 42764, 'forty-two thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(7017, 9496, 'nine thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(7018, 93770, 'ninety-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(7019, 99334, 'ninety-nine thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(7020, 45434, 'forty-five thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7021, 73681, 'seventy-three thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(7022, 40642, 'forty thousand six hundred forty-two');\nINSERT INTO t1 VALUES(7023, 73020, 'seventy-three thousand twenty');\nINSERT INTO t1 VALUES(7024, 79617, 'seventy-nine thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7025, 32215, 'thirty-two thousand two hundred fifteen');\nINSERT INTO t1 VALUES(7026, 74617, 'seventy-four thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7027, 12934, 'twelve thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(7028, 31779, 'thirty-one thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(7029, 46623, 'forty-six thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(7030, 3312, 'three thousand three hundred twelve');\nINSERT INTO t1 VALUES(7031, 79775, 'seventy-nine thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(7032, 84027, 'eighty-four thousand twenty-seven');\nINSERT INTO t1 VALUES(7033, 92004, 'ninety-two thousand four');\nINSERT INTO t1 VALUES(7034, 14671, 'fourteen thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(7035, 68045, 'sixty-eight thousand forty-five');\nINSERT INTO t1 VALUES(7036, 44043, 'forty-four thousand forty-three');\nINSERT INTO t1 VALUES(7037, 10474, 'ten thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(7038, 95447, 'ninety-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(7039, 28801, 'twenty-eight thousand eight hundred one');\nINSERT INTO t1 VALUES(7040, 179, 'one hundred seventy-nine');\nINSERT INTO t1 VALUES(7041, 67562, 'sixty-seven thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(7042, 80776, 'eighty thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(7043, 69712, 'sixty-nine thousand seven hundred twelve');\nINSERT INTO t1 VALUES(7044, 75407, 'seventy-five thousand four hundred seven');\nINSERT INTO t1 VALUES(7045, 46166, 'forty-six thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(7046, 58588, 'fifty-eight thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(7047, 43718, 'forty-three thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(7048, 30121, 'thirty thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(7049, 81710, 'eighty-one thousand seven hundred ten');\nINSERT INTO t1 VALUES(7050, 44905, 'forty-four thousand nine hundred five');\nINSERT INTO t1 VALUES(7051, 42136, 'forty-two thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7052, 68554, 'sixty-eight thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(7053, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(7054, 36953, 'thirty-six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(7055, 90564, 'ninety thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(7056, 43198, 'forty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(7057, 30675, 'thirty thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(7058, 60912, 'sixty thousand nine hundred twelve');\nINSERT INTO t1 VALUES(7059, 79521, 'seventy-nine thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(7060, 66485, 'sixty-six thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(7061, 50561, 'fifty thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(7062, 47433, 'forty-seven thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7063, 33569, 'thirty-three thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(7064, 19729, 'nineteen thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(7065, 27836, 'twenty-seven thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(7066, 94287, 'ninety-four thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(7067, 23115, 'twenty-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(7068, 87840, 'eighty-seven thousand eight hundred forty');\nINSERT INTO t1 VALUES(7069, 34100, 'thirty-four thousand one hundred');\nINSERT INTO t1 VALUES(7070, 34332, 'thirty-four thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(7071, 38941, 'thirty-eight thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(7072, 91367, 'ninety-one thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(7073, 53933, 'fifty-three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7074, 48223, 'forty-eight thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(7075, 55787, 'fifty-five thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(7076, 94453, 'ninety-four thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(7077, 82216, 'eighty-two thousand two hundred sixteen');\nINSERT INTO t1 VALUES(7078, 17912, 'seventeen thousand nine hundred twelve');\nINSERT INTO t1 VALUES(7079, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t1 VALUES(7080, 46718, 'forty-six thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(7081, 60695, 'sixty thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(7082, 26089, 'twenty-six thousand eighty-nine');\nINSERT INTO t1 VALUES(7083, 7672, 'seven thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(7084, 27994, 'twenty-seven thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(7085, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(7086, 60597, 'sixty thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(7087, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7088, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(7089, 13109, 'thirteen thousand one hundred nine');\nINSERT INTO t1 VALUES(7090, 16308, 'sixteen thousand three hundred eight');\nINSERT INTO t1 VALUES(7091, 73261, 'seventy-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(7092, 80907, 'eighty thousand nine hundred seven');\nINSERT INTO t1 VALUES(7093, 13550, 'thirteen thousand five hundred fifty');\nINSERT INTO t1 VALUES(7094, 73770, 'seventy-three thousand seven hundred seventy');\nINSERT INTO t1 VALUES(7095, 99471, 'ninety-nine thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(7096, 50033, 'fifty thousand thirty-three');\nINSERT INTO t1 VALUES(7097, 59912, 'fifty-nine thousand nine hundred twelve');\nINSERT INTO t1 VALUES(7098, 98932, 'ninety-eight thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(7099, 63933, 'sixty-three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7100, 26495, 'twenty-six thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(7101, 8686, 'eight thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(7102, 77159, 'seventy-seven thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7103, 79891, 'seventy-nine thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(7104, 79883, 'seventy-nine thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(7105, 56301, 'fifty-six thousand three hundred one');\nINSERT INTO t1 VALUES(7106, 18543, 'eighteen thousand five hundred forty-three');\nINSERT INTO t1 VALUES(7107, 76106, 'seventy-six thousand one hundred six');\nINSERT INTO t1 VALUES(7108, 8420, 'eight thousand four hundred twenty');\nINSERT INTO t1 VALUES(7109, 65310, 'sixty-five thousand three hundred ten');\nINSERT INTO t1 VALUES(7110, 86316, 'eighty-six thousand three hundred sixteen');\nINSERT INTO t1 VALUES(7111, 80414, 'eighty thousand four hundred fourteen');\nINSERT INTO t1 VALUES(7112, 5593, 'five thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(7113, 79955, 'seventy-nine thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(7114, 70454, 'seventy thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(7115, 31408, 'thirty-one thousand four hundred eight');\nINSERT INTO t1 VALUES(7116, 35948, 'thirty-five thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(7117, 62936, 'sixty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(7118, 17335, 'seventeen thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(7119, 11683, 'eleven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(7120, 66028, 'sixty-six thousand twenty-eight');\nINSERT INTO t1 VALUES(7121, 89986, 'eighty-nine thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(7122, 56224, 'fifty-six thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(7123, 73077, 'seventy-three thousand seventy-seven');\nINSERT INTO t1 VALUES(7124, 68408, 'sixty-eight thousand four hundred eight');\nINSERT INTO t1 VALUES(7125, 89996, 'eighty-nine thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(7126, 58081, 'fifty-eight thousand eighty-one');\nINSERT INTO t1 VALUES(7127, 29390, 'twenty-nine thousand three hundred ninety');\nINSERT INTO t1 VALUES(7128, 7504, 'seven thousand five hundred four');\nINSERT INTO t1 VALUES(7129, 62857, 'sixty-two thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(7130, 46988, 'forty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(7131, 86728, 'eighty-six thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(7132, 35805, 'thirty-five thousand eight hundred five');\nINSERT INTO t1 VALUES(7133, 11333, 'eleven thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(7134, 9987, 'nine thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(7135, 84633, 'eighty-four thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(7136, 50649, 'fifty thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(7137, 6508, 'six thousand five hundred eight');\nINSERT INTO t1 VALUES(7138, 2137, 'two thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(7139, 33917, 'thirty-three thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(7140, 38405, 'thirty-eight thousand four hundred five');\nINSERT INTO t1 VALUES(7141, 12813, 'twelve thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(7142, 76439, 'seventy-six thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(7143, 16410, 'sixteen thousand four hundred ten');\nINSERT INTO t1 VALUES(7144, 20476, 'twenty thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(7145, 71596, 'seventy-one thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(7146, 88474, 'eighty-eight thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(7147, 45988, 'forty-five thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(7148, 705, 'seven hundred five');\nINSERT INTO t1 VALUES(7149, 35623, 'thirty-five thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(7150, 18974, 'eighteen thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(7151, 31458, 'thirty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(7152, 14888, 'fourteen thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(7153, 17587, 'seventeen thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(7154, 27595, 'twenty-seven thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(7155, 8106, 'eight thousand one hundred six');\nINSERT INTO t1 VALUES(7156, 13240, 'thirteen thousand two hundred forty');\nINSERT INTO t1 VALUES(7157, 55504, 'fifty-five thousand five hundred four');\nINSERT INTO t1 VALUES(7158, 53717, 'fifty-three thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(7159, 74827, 'seventy-four thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(7160, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(7161, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(7162, 95068, 'ninety-five thousand sixty-eight');\nINSERT INTO t1 VALUES(7163, 14466, 'fourteen thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(7164, 65831, 'sixty-five thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(7165, 94966, 'ninety-four thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(7166, 47802, 'forty-seven thousand eight hundred two');\nINSERT INTO t1 VALUES(7167, 53228, 'fifty-three thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(7168, 81156, 'eighty-one thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(7169, 95883, 'ninety-five thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(7170, 26167, 'twenty-six thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(7171, 99575, 'ninety-nine thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(7172, 61617, 'sixty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7173, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(7174, 53907, 'fifty-three thousand nine hundred seven');\nINSERT INTO t1 VALUES(7175, 17209, 'seventeen thousand two hundred nine');\nINSERT INTO t1 VALUES(7176, 56077, 'fifty-six thousand seventy-seven');\nINSERT INTO t1 VALUES(7177, 41600, 'forty-one thousand six hundred');\nINSERT INTO t1 VALUES(7178, 74434, 'seventy-four thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7179, 74927, 'seventy-four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(7180, 23701, 'twenty-three thousand seven hundred one');\nINSERT INTO t1 VALUES(7181, 18960, 'eighteen thousand nine hundred sixty');\nINSERT INTO t1 VALUES(7182, 60417, 'sixty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(7183, 21258, 'twenty-one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(7184, 77405, 'seventy-seven thousand four hundred five');\nINSERT INTO t1 VALUES(7185, 93159, 'ninety-three thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7186, 6331, 'six thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(7187, 62302, 'sixty-two thousand three hundred two');\nINSERT INTO t1 VALUES(7188, 19954, 'nineteen thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(7189, 71974, 'seventy-one thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(7190, 5855, 'five thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(7191, 7850, 'seven thousand eight hundred fifty');\nINSERT INTO t1 VALUES(7192, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(7193, 83222, 'eighty-three thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(7194, 99708, 'ninety-nine thousand seven hundred eight');\nINSERT INTO t1 VALUES(7195, 79723, 'seventy-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(7196, 73922, 'seventy-three thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(7197, 81158, 'eighty-one thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(7198, 68513, 'sixty-eight thousand five hundred thirteen');\nINSERT INTO t1 VALUES(7199, 31779, 'thirty-one thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(7200, 62374, 'sixty-two thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(7201, 29750, 'twenty-nine thousand seven hundred fifty');\nINSERT INTO t1 VALUES(7202, 26112, 'twenty-six thousand one hundred twelve');\nINSERT INTO t1 VALUES(7203, 42054, 'forty-two thousand fifty-four');\nINSERT INTO t1 VALUES(7204, 49429, 'forty-nine thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(7205, 54725, 'fifty-four thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(7206, 62162, 'sixty-two thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(7207, 79014, 'seventy-nine thousand fourteen');\nINSERT INTO t1 VALUES(7208, 62519, 'sixty-two thousand five hundred nineteen');\nINSERT INTO t1 VALUES(7209, 55054, 'fifty-five thousand fifty-four');\nINSERT INTO t1 VALUES(7210, 45171, 'forty-five thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(7211, 18103, 'eighteen thousand one hundred three');\nINSERT INTO t1 VALUES(7212, 60978, 'sixty thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(7213, 41846, 'forty-one thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(7214, 62113, 'sixty-two thousand one hundred thirteen');\nINSERT INTO t1 VALUES(7215, 54430, 'fifty-four thousand four hundred thirty');\nINSERT INTO t1 VALUES(7216, 7644, 'seven thousand six hundred forty-four');\nINSERT INTO t1 VALUES(7217, 15536, 'fifteen thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(7218, 36538, 'thirty-six thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(7219, 16581, 'sixteen thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(7220, 49906, 'forty-nine thousand nine hundred six');\nINSERT INTO t1 VALUES(7221, 52131, 'fifty-two thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(7222, 7873, 'seven thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(7223, 25798, 'twenty-five thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(7224, 18312, 'eighteen thousand three hundred twelve');\nINSERT INTO t1 VALUES(7225, 21322, 'twenty-one thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(7226, 47391, 'forty-seven thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(7227, 8472, 'eight thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(7228, 2555, 'two thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(7229, 13930, 'thirteen thousand nine hundred thirty');\nINSERT INTO t1 VALUES(7230, 84289, 'eighty-four thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(7231, 83741, 'eighty-three thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(7232, 84653, 'eighty-four thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(7233, 42671, 'forty-two thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(7234, 672, 'six hundred seventy-two');\nINSERT INTO t1 VALUES(7235, 94579, 'ninety-four thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(7236, 69020, 'sixty-nine thousand twenty');\nINSERT INTO t1 VALUES(7237, 95586, 'ninety-five thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(7238, 6851, 'six thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7239, 30607, 'thirty thousand six hundred seven');\nINSERT INTO t1 VALUES(7240, 46380, 'forty-six thousand three hundred eighty');\nINSERT INTO t1 VALUES(7241, 50651, 'fifty thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(7242, 6083, 'six thousand eighty-three');\nINSERT INTO t1 VALUES(7243, 77603, 'seventy-seven thousand six hundred three');\nINSERT INTO t1 VALUES(7244, 76572, 'seventy-six thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(7245, 8688, 'eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(7246, 82117, 'eighty-two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(7247, 17768, 'seventeen thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(7248, 49806, 'forty-nine thousand eight hundred six');\nINSERT INTO t1 VALUES(7249, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(7250, 24773, 'twenty-four thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(7251, 57567, 'fifty-seven thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(7252, 70557, 'seventy thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(7253, 63932, 'sixty-three thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(7254, 51336, 'fifty-one thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(7255, 72683, 'seventy-two thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(7256, 1635, 'one thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(7257, 50423, 'fifty thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(7258, 80955, 'eighty thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(7259, 96432, 'ninety-six thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(7260, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(7261, 93594, 'ninety-three thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(7262, 58481, 'fifty-eight thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(7263, 1007, 'one thousand seven');\nINSERT INTO t1 VALUES(7264, 18550, 'eighteen thousand five hundred fifty');\nINSERT INTO t1 VALUES(7265, 87364, 'eighty-seven thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(7266, 35999, 'thirty-five thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(7267, 6634, 'six thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(7268, 56120, 'fifty-six thousand one hundred twenty');\nINSERT INTO t1 VALUES(7269, 79273, 'seventy-nine thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(7270, 56007, 'fifty-six thousand seven');\nINSERT INTO t1 VALUES(7271, 5408, 'five thousand four hundred eight');\nINSERT INTO t1 VALUES(7272, 84537, 'eighty-four thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(7273, 90179, 'ninety thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(7274, 85796, 'eighty-five thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(7275, 87525, 'eighty-seven thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(7276, 46263, 'forty-six thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(7277, 94421, 'ninety-four thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(7278, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t1 VALUES(7279, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(7280, 45198, 'forty-five thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(7281, 92526, 'ninety-two thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(7282, 28067, 'twenty-eight thousand sixty-seven');\nINSERT INTO t1 VALUES(7283, 30228, 'thirty thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(7284, 55532, 'fifty-five thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(7285, 48123, 'forty-eight thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(7286, 79431, 'seventy-nine thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(7287, 33769, 'thirty-three thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(7288, 77785, 'seventy-seven thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(7289, 23842, 'twenty-three thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(7290, 23223, 'twenty-three thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(7291, 33242, 'thirty-three thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7292, 17052, 'seventeen thousand fifty-two');\nINSERT INTO t1 VALUES(7293, 2660, 'two thousand six hundred sixty');\nINSERT INTO t1 VALUES(7294, 15976, 'fifteen thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(7295, 24588, 'twenty-four thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(7296, 75667, 'seventy-five thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(7297, 88516, 'eighty-eight thousand five hundred sixteen');\nINSERT INTO t1 VALUES(7298, 54849, 'fifty-four thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(7299, 84588, 'eighty-four thousand five hundred eighty-eight');\nINSERT INTO t1 VALUES(7300, 82111, 'eighty-two thousand one hundred eleven');\nINSERT INTO t1 VALUES(7301, 89035, 'eighty-nine thousand thirty-five');\nINSERT INTO t1 VALUES(7302, 17230, 'seventeen thousand two hundred thirty');\nINSERT INTO t1 VALUES(7303, 70949, 'seventy thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(7304, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t1 VALUES(7305, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7306, 60559, 'sixty thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(7307, 69191, 'sixty-nine thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(7308, 40483, 'forty thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(7309, 16053, 'sixteen thousand fifty-three');\nINSERT INTO t1 VALUES(7310, 85466, 'eighty-five thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(7311, 78546, 'seventy-eight thousand five hundred forty-six');\nINSERT INTO t1 VALUES(7312, 32731, 'thirty-two thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(7313, 25143, 'twenty-five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(7314, 17306, 'seventeen thousand three hundred six');\nINSERT INTO t1 VALUES(7315, 54136, 'fifty-four thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7316, 90275, 'ninety thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(7317, 4848, 'four thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(7318, 17630, 'seventeen thousand six hundred thirty');\nINSERT INTO t1 VALUES(7319, 56699, 'fifty-six thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(7320, 46570, 'forty-six thousand five hundred seventy');\nINSERT INTO t1 VALUES(7321, 53933, 'fifty-three thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7322, 32684, 'thirty-two thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(7323, 24280, 'twenty-four thousand two hundred eighty');\nINSERT INTO t1 VALUES(7324, 76206, 'seventy-six thousand two hundred six');\nINSERT INTO t1 VALUES(7325, 66327, 'sixty-six thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(7326, 64029, 'sixty-four thousand twenty-nine');\nINSERT INTO t1 VALUES(7327, 55156, 'fifty-five thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(7328, 43786, 'forty-three thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(7329, 44238, 'forty-four thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(7330, 48915, 'forty-eight thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(7331, 50677, 'fifty thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(7332, 87305, 'eighty-seven thousand three hundred five');\nINSERT INTO t1 VALUES(7333, 93253, 'ninety-three thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(7334, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t1 VALUES(7335, 38673, 'thirty-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7336, 61736, 'sixty-one thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(7337, 65243, 'sixty-five thousand two hundred forty-three');\nINSERT INTO t1 VALUES(7338, 32982, 'thirty-two thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(7339, 91285, 'ninety-one thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(7340, 50713, 'fifty thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(7341, 7280, 'seven thousand two hundred eighty');\nINSERT INTO t1 VALUES(7342, 99273, 'ninety-nine thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(7343, 6018, 'six thousand eighteen');\nINSERT INTO t1 VALUES(7344, 99, 'ninety-nine');\nINSERT INTO t1 VALUES(7345, 62094, 'sixty-two thousand ninety-four');\nINSERT INTO t1 VALUES(7346, 13079, 'thirteen thousand seventy-nine');\nINSERT INTO t1 VALUES(7347, 22284, 'twenty-two thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(7348, 42082, 'forty-two thousand eighty-two');\nINSERT INTO t1 VALUES(7349, 64061, 'sixty-four thousand sixty-one');\nINSERT INTO t1 VALUES(7350, 11897, 'eleven thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(7351, 35388, 'thirty-five thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(7352, 11829, 'eleven thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(7353, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t1 VALUES(7354, 65539, 'sixty-five thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7355, 79054, 'seventy-nine thousand fifty-four');\nINSERT INTO t1 VALUES(7356, 44317, 'forty-four thousand three hundred seventeen');\nINSERT INTO t1 VALUES(7357, 24825, 'twenty-four thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(7358, 62143, 'sixty-two thousand one hundred forty-three');\nINSERT INTO t1 VALUES(7359, 83150, 'eighty-three thousand one hundred fifty');\nINSERT INTO t1 VALUES(7360, 49689, 'forty-nine thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7361, 98022, 'ninety-eight thousand twenty-two');\nINSERT INTO t1 VALUES(7362, 6739, 'six thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(7363, 87872, 'eighty-seven thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(7364, 57346, 'fifty-seven thousand three hundred forty-six');\nINSERT INTO t1 VALUES(7365, 49761, 'forty-nine thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(7366, 62, 'sixty-two');\nINSERT INTO t1 VALUES(7367, 33337, 'thirty-three thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(7368, 99440, 'ninety-nine thousand four hundred forty');\nINSERT INTO t1 VALUES(7369, 65844, 'sixty-five thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(7370, 13449, 'thirteen thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(7371, 7289, 'seven thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(7372, 68549, 'sixty-eight thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(7373, 55423, 'fifty-five thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(7374, 17079, 'seventeen thousand seventy-nine');\nINSERT INTO t1 VALUES(7375, 68338, 'sixty-eight thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(7376, 71234, 'seventy-one thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(7377, 46659, 'forty-six thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(7378, 5933, 'five thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7379, 26086, 'twenty-six thousand eighty-six');\nINSERT INTO t1 VALUES(7380, 91029, 'ninety-one thousand twenty-nine');\nINSERT INTO t1 VALUES(7381, 24920, 'twenty-four thousand nine hundred twenty');\nINSERT INTO t1 VALUES(7382, 83583, 'eighty-three thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(7383, 38731, 'thirty-eight thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(7384, 30317, 'thirty thousand three hundred seventeen');\nINSERT INTO t1 VALUES(7385, 48466, 'forty-eight thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(7386, 80255, 'eighty thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(7387, 80871, 'eighty thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(7388, 50007, 'fifty thousand seven');\nINSERT INTO t1 VALUES(7389, 55429, 'fifty-five thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(7390, 21518, 'twenty-one thousand five hundred eighteen');\nINSERT INTO t1 VALUES(7391, 73480, 'seventy-three thousand four hundred eighty');\nINSERT INTO t1 VALUES(7392, 70286, 'seventy thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(7393, 22061, 'twenty-two thousand sixty-one');\nINSERT INTO t1 VALUES(7394, 75626, 'seventy-five thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(7395, 17842, 'seventeen thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(7396, 93107, 'ninety-three thousand one hundred seven');\nINSERT INTO t1 VALUES(7397, 93105, 'ninety-three thousand one hundred five');\nINSERT INTO t1 VALUES(7398, 79558, 'seventy-nine thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(7399, 17672, 'seventeen thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(7400, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(7401, 14871, 'fourteen thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(7402, 39590, 'thirty-nine thousand five hundred ninety');\nINSERT INTO t1 VALUES(7403, 40501, 'forty thousand five hundred one');\nINSERT INTO t1 VALUES(7404, 82286, 'eighty-two thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(7405, 47086, 'forty-seven thousand eighty-six');\nINSERT INTO t1 VALUES(7406, 85673, 'eighty-five thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7407, 50086, 'fifty thousand eighty-six');\nINSERT INTO t1 VALUES(7408, 76306, 'seventy-six thousand three hundred six');\nINSERT INTO t1 VALUES(7409, 98444, 'ninety-eight thousand four hundred forty-four');\nINSERT INTO t1 VALUES(7410, 85812, 'eighty-five thousand eight hundred twelve');\nINSERT INTO t1 VALUES(7411, 83769, 'eighty-three thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(7412, 54456, 'fifty-four thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(7413, 35560, 'thirty-five thousand five hundred sixty');\nINSERT INTO t1 VALUES(7414, 77697, 'seventy-seven thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(7415, 58966, 'fifty-eight thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(7416, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t1 VALUES(7417, 13976, 'thirteen thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(7418, 64392, 'sixty-four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(7419, 59241, 'fifty-nine thousand two hundred forty-one');\nINSERT INTO t1 VALUES(7420, 62010, 'sixty-two thousand ten');\nINSERT INTO t1 VALUES(7421, 44949, 'forty-four thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(7422, 76879, 'seventy-six thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(7423, 86988, 'eighty-six thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(7424, 64215, 'sixty-four thousand two hundred fifteen');\nINSERT INTO t1 VALUES(7425, 15242, 'fifteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7426, 25939, 'twenty-five thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7427, 66042, 'sixty-six thousand forty-two');\nINSERT INTO t1 VALUES(7428, 74761, 'seventy-four thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(7429, 69746, 'sixty-nine thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(7430, 28761, 'twenty-eight thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(7431, 11255, 'eleven thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(7432, 94283, 'ninety-four thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(7433, 10442, 'ten thousand four hundred forty-two');\nINSERT INTO t1 VALUES(7434, 44615, 'forty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(7435, 65623, 'sixty-five thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(7436, 72292, 'seventy-two thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(7437, 27106, 'twenty-seven thousand one hundred six');\nINSERT INTO t1 VALUES(7438, 35067, 'thirty-five thousand sixty-seven');\nINSERT INTO t1 VALUES(7439, 86790, 'eighty-six thousand seven hundred ninety');\nINSERT INTO t1 VALUES(7440, 19325, 'nineteen thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(7441, 97927, 'ninety-seven thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(7442, 62677, 'sixty-two thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(7443, 59657, 'fifty-nine thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(7444, 59713, 'fifty-nine thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(7445, 11810, 'eleven thousand eight hundred ten');\nINSERT INTO t1 VALUES(7446, 14985, 'fourteen thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(7447, 36893, 'thirty-six thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(7448, 4346, 'four thousand three hundred forty-six');\nINSERT INTO t1 VALUES(7449, 57859, 'fifty-seven thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(7450, 7536, 'seven thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(7451, 38671, 'thirty-eight thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(7452, 66160, 'sixty-six thousand one hundred sixty');\nINSERT INTO t1 VALUES(7453, 21122, 'twenty-one thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(7454, 35073, 'thirty-five thousand seventy-three');\nINSERT INTO t1 VALUES(7455, 5510, 'five thousand five hundred ten');\nINSERT INTO t1 VALUES(7456, 33410, 'thirty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(7457, 38101, 'thirty-eight thousand one hundred one');\nINSERT INTO t1 VALUES(7458, 311, 'three hundred eleven');\nINSERT INTO t1 VALUES(7459, 74692, 'seventy-four thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(7460, 45472, 'forty-five thousand four hundred seventy-two');\nINSERT INTO t1 VALUES(7461, 40478, 'forty thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(7462, 12615, 'twelve thousand six hundred fifteen');\nINSERT INTO t1 VALUES(7463, 82513, 'eighty-two thousand five hundred thirteen');\nINSERT INTO t1 VALUES(7464, 28187, 'twenty-eight thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(7465, 57512, 'fifty-seven thousand five hundred twelve');\nINSERT INTO t1 VALUES(7466, 67035, 'sixty-seven thousand thirty-five');\nINSERT INTO t1 VALUES(7467, 29218, 'twenty-nine thousand two hundred eighteen');\nINSERT INTO t1 VALUES(7468, 95584, 'ninety-five thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(7469, 90874, 'ninety thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(7470, 3045, 'three thousand forty-five');\nINSERT INTO t1 VALUES(7471, 57104, 'fifty-seven thousand one hundred four');\nINSERT INTO t1 VALUES(7472, 67212, 'sixty-seven thousand two hundred twelve');\nINSERT INTO t1 VALUES(7473, 50482, 'fifty thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(7474, 68746, 'sixty-eight thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(7475, 78221, 'seventy-eight thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(7476, 20660, 'twenty thousand six hundred sixty');\nINSERT INTO t1 VALUES(7477, 66091, 'sixty-six thousand ninety-one');\nINSERT INTO t1 VALUES(7478, 62771, 'sixty-two thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(7479, 38726, 'thirty-eight thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(7480, 30762, 'thirty thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(7481, 40890, 'forty thousand eight hundred ninety');\nINSERT INTO t1 VALUES(7482, 7002, 'seven thousand two');\nINSERT INTO t1 VALUES(7483, 5637, 'five thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(7484, 17241, 'seventeen thousand two hundred forty-one');\nINSERT INTO t1 VALUES(7485, 76364, 'seventy-six thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(7486, 85136, 'eighty-five thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7487, 58799, 'fifty-eight thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(7488, 39808, 'thirty-nine thousand eight hundred eight');\nINSERT INTO t1 VALUES(7489, 6252, 'six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(7490, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(7491, 72803, 'seventy-two thousand eight hundred three');\nINSERT INTO t1 VALUES(7492, 53538, 'fifty-three thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(7493, 25566, 'twenty-five thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(7494, 37120, 'thirty-seven thousand one hundred twenty');\nINSERT INTO t1 VALUES(7495, 5060, 'five thousand sixty');\nINSERT INTO t1 VALUES(7496, 73166, 'seventy-three thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(7497, 87501, 'eighty-seven thousand five hundred one');\nINSERT INTO t1 VALUES(7498, 90689, 'ninety thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7499, 78264, 'seventy-eight thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(7500, 4393, 'four thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(7501, 16035, 'sixteen thousand thirty-five');\nINSERT INTO t1 VALUES(7502, 22260, 'twenty-two thousand two hundred sixty');\nINSERT INTO t1 VALUES(7503, 91200, 'ninety-one thousand two hundred');\nINSERT INTO t1 VALUES(7504, 9628, 'nine thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(7505, 17438, 'seventeen thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(7506, 81612, 'eighty-one thousand six hundred twelve');\nINSERT INTO t1 VALUES(7507, 67205, 'sixty-seven thousand two hundred five');\nINSERT INTO t1 VALUES(7508, 91433, 'ninety-one thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7509, 63937, 'sixty-three thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(7510, 97400, 'ninety-seven thousand four hundred');\nINSERT INTO t1 VALUES(7511, 76842, 'seventy-six thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(7512, 50163, 'fifty thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(7513, 82125, 'eighty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(7514, 13242, 'thirteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7515, 89430, 'eighty-nine thousand four hundred thirty');\nINSERT INTO t1 VALUES(7516, 58578, 'fifty-eight thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(7517, 19159, 'nineteen thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7518, 58537, 'fifty-eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(7519, 33785, 'thirty-three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(7520, 38658, 'thirty-eight thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(7521, 24698, 'twenty-four thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(7522, 16935, 'sixteen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(7523, 44927, 'forty-four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(7524, 14910, 'fourteen thousand nine hundred ten');\nINSERT INTO t1 VALUES(7525, 43467, 'forty-three thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(7526, 66148, 'sixty-six thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(7527, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(7528, 68381, 'sixty-eight thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(7529, 79528, 'seventy-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(7530, 95498, 'ninety-five thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(7531, 86692, 'eighty-six thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(7532, 68567, 'sixty-eight thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(7533, 63261, 'sixty-three thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(7534, 67247, 'sixty-seven thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(7535, 24308, 'twenty-four thousand three hundred eight');\nINSERT INTO t1 VALUES(7536, 25766, 'twenty-five thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(7537, 16137, 'sixteen thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(7538, 50406, 'fifty thousand four hundred six');\nINSERT INTO t1 VALUES(7539, 97307, 'ninety-seven thousand three hundred seven');\nINSERT INTO t1 VALUES(7540, 34732, 'thirty-four thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(7541, 81656, 'eighty-one thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(7542, 17939, 'seventeen thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7543, 97271, 'ninety-seven thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(7544, 70735, 'seventy thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(7545, 73030, 'seventy-three thousand thirty');\nINSERT INTO t1 VALUES(7546, 60500, 'sixty thousand five hundred');\nINSERT INTO t1 VALUES(7547, 54813, 'fifty-four thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(7548, 25919, 'twenty-five thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(7549, 1925, 'one thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(7550, 15740, 'fifteen thousand seven hundred forty');\nINSERT INTO t1 VALUES(7551, 12760, 'twelve thousand seven hundred sixty');\nINSERT INTO t1 VALUES(7552, 79798, 'seventy-nine thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(7553, 64465, 'sixty-four thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(7554, 17188, 'seventeen thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(7555, 92463, 'ninety-two thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(7556, 58518, 'fifty-eight thousand five hundred eighteen');\nINSERT INTO t1 VALUES(7557, 76551, 'seventy-six thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(7558, 295, 'two hundred ninety-five');\nINSERT INTO t1 VALUES(7559, 46420, 'forty-six thousand four hundred twenty');\nINSERT INTO t1 VALUES(7560, 35756, 'thirty-five thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(7561, 6211, 'six thousand two hundred eleven');\nINSERT INTO t1 VALUES(7562, 68203, 'sixty-eight thousand two hundred three');\nINSERT INTO t1 VALUES(7563, 20461, 'twenty thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(7564, 664, 'six hundred sixty-four');\nINSERT INTO t1 VALUES(7565, 31162, 'thirty-one thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(7566, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(7567, 12640, 'twelve thousand six hundred forty');\nINSERT INTO t1 VALUES(7568, 87304, 'eighty-seven thousand three hundred four');\nINSERT INTO t1 VALUES(7569, 18407, 'eighteen thousand four hundred seven');\nINSERT INTO t1 VALUES(7570, 51897, 'fifty-one thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(7571, 98302, 'ninety-eight thousand three hundred two');\nINSERT INTO t1 VALUES(7572, 4087, 'four thousand eighty-seven');\nINSERT INTO t1 VALUES(7573, 85190, 'eighty-five thousand one hundred ninety');\nINSERT INTO t1 VALUES(7574, 30344, 'thirty thousand three hundred forty-four');\nINSERT INTO t1 VALUES(7575, 38656, 'thirty-eight thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(7576, 21238, 'twenty-one thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(7577, 71490, 'seventy-one thousand four hundred ninety');\nINSERT INTO t1 VALUES(7578, 69567, 'sixty-nine thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(7579, 35644, 'thirty-five thousand six hundred forty-four');\nINSERT INTO t1 VALUES(7580, 35508, 'thirty-five thousand five hundred eight');\nINSERT INTO t1 VALUES(7581, 49311, 'forty-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(7582, 70030, 'seventy thousand thirty');\nINSERT INTO t1 VALUES(7583, 29356, 'twenty-nine thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(7584, 12051, 'twelve thousand fifty-one');\nINSERT INTO t1 VALUES(7585, 82812, 'eighty-two thousand eight hundred twelve');\nINSERT INTO t1 VALUES(7586, 98539, 'ninety-eight thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7587, 87049, 'eighty-seven thousand forty-nine');\nINSERT INTO t1 VALUES(7588, 98444, 'ninety-eight thousand four hundred forty-four');\nINSERT INTO t1 VALUES(7589, 3381, 'three thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(7590, 58523, 'fifty-eight thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(7591, 57795, 'fifty-seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(7592, 70507, 'seventy thousand five hundred seven');\nINSERT INTO t1 VALUES(7593, 94728, 'ninety-four thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(7594, 29934, 'twenty-nine thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(7595, 18296, 'eighteen thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(7596, 99528, 'ninety-nine thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(7597, 87258, 'eighty-seven thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(7598, 51705, 'fifty-one thousand seven hundred five');\nINSERT INTO t1 VALUES(7599, 90329, 'ninety thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(7600, 60080, 'sixty thousand eighty');\nINSERT INTO t1 VALUES(7601, 75801, 'seventy-five thousand eight hundred one');\nINSERT INTO t1 VALUES(7602, 97316, 'ninety-seven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(7603, 55233, 'fifty-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(7604, 53382, 'fifty-three thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(7605, 31786, 'thirty-one thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(7606, 95515, 'ninety-five thousand five hundred fifteen');\nINSERT INTO t1 VALUES(7607, 68921, 'sixty-eight thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(7608, 99027, 'ninety-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(7609, 66252, 'sixty-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(7610, 95703, 'ninety-five thousand seven hundred three');\nINSERT INTO t1 VALUES(7611, 33353, 'thirty-three thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(7612, 2870, 'two thousand eight hundred seventy');\nINSERT INTO t1 VALUES(7613, 35153, 'thirty-five thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(7614, 79641, 'seventy-nine thousand six hundred forty-one');\nINSERT INTO t1 VALUES(7615, 73092, 'seventy-three thousand ninety-two');\nINSERT INTO t1 VALUES(7616, 74053, 'seventy-four thousand fifty-three');\nINSERT INTO t1 VALUES(7617, 40768, 'forty thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(7618, 79311, 'seventy-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(7619, 10853, 'ten thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(7620, 17438, 'seventeen thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(7621, 3937, 'three thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(7622, 96374, 'ninety-six thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(7623, 17645, 'seventeen thousand six hundred forty-five');\nINSERT INTO t1 VALUES(7624, 86127, 'eighty-six thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(7625, 21093, 'twenty-one thousand ninety-three');\nINSERT INTO t1 VALUES(7626, 504, 'five hundred four');\nINSERT INTO t1 VALUES(7627, 50083, 'fifty thousand eighty-three');\nINSERT INTO t1 VALUES(7628, 4942, 'four thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(7629, 76593, 'seventy-six thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(7630, 73431, 'seventy-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(7631, 89644, 'eighty-nine thousand six hundred forty-four');\nINSERT INTO t1 VALUES(7632, 63719, 'sixty-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7633, 53845, 'fifty-three thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(7634, 60793, 'sixty thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(7635, 26368, 'twenty-six thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(7636, 65016, 'sixty-five thousand sixteen');\nINSERT INTO t1 VALUES(7637, 18848, 'eighteen thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(7638, 35677, 'thirty-five thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(7639, 40292, 'forty thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(7640, 5875, 'five thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(7641, 64678, 'sixty-four thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(7642, 3133, 'three thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(7643, 39265, 'thirty-nine thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(7644, 14410, 'fourteen thousand four hundred ten');\nINSERT INTO t1 VALUES(7645, 93195, 'ninety-three thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(7646, 19384, 'nineteen thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(7647, 80017, 'eighty thousand seventeen');\nINSERT INTO t1 VALUES(7648, 82477, 'eighty-two thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(7649, 83457, 'eighty-three thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(7650, 97491, 'ninety-seven thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(7651, 29203, 'twenty-nine thousand two hundred three');\nINSERT INTO t1 VALUES(7652, 27307, 'twenty-seven thousand three hundred seven');\nINSERT INTO t1 VALUES(7653, 50170, 'fifty thousand one hundred seventy');\nINSERT INTO t1 VALUES(7654, 71793, 'seventy-one thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(7655, 21055, 'twenty-one thousand fifty-five');\nINSERT INTO t1 VALUES(7656, 44504, 'forty-four thousand five hundred four');\nINSERT INTO t1 VALUES(7657, 6462, 'six thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(7658, 82617, 'eighty-two thousand six hundred seventeen');\nINSERT INTO t1 VALUES(7659, 74690, 'seventy-four thousand six hundred ninety');\nINSERT INTO t1 VALUES(7660, 72421, 'seventy-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(7661, 5896, 'five thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(7662, 1054, 'one thousand fifty-four');\nINSERT INTO t1 VALUES(7663, 66433, 'sixty-six thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7664, 7665, 'seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(7665, 31581, 'thirty-one thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(7666, 87559, 'eighty-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(7667, 14011, 'fourteen thousand eleven');\nINSERT INTO t1 VALUES(7668, 12526, 'twelve thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(7669, 62648, 'sixty-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(7670, 65496, 'sixty-five thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(7671, 2328, 'two thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(7672, 53613, 'fifty-three thousand six hundred thirteen');\nINSERT INTO t1 VALUES(7673, 74137, 'seventy-four thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(7674, 76232, 'seventy-six thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(7675, 93851, 'ninety-three thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7676, 18011, 'eighteen thousand eleven');\nINSERT INTO t1 VALUES(7677, 20150, 'twenty thousand one hundred fifty');\nINSERT INTO t1 VALUES(7678, 18932, 'eighteen thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(7679, 3560, 'three thousand five hundred sixty');\nINSERT INTO t1 VALUES(7680, 43177, 'forty-three thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(7681, 61897, 'sixty-one thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(7682, 73001, 'seventy-three thousand one');\nINSERT INTO t1 VALUES(7683, 31468, 'thirty-one thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(7684, 14065, 'fourteen thousand sixty-five');\nINSERT INTO t1 VALUES(7685, 5212, 'five thousand two hundred twelve');\nINSERT INTO t1 VALUES(7686, 63061, 'sixty-three thousand sixty-one');\nINSERT INTO t1 VALUES(7687, 16719, 'sixteen thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7688, 77480, 'seventy-seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(7689, 15936, 'fifteen thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(7690, 35694, 'thirty-five thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(7691, 50114, 'fifty thousand one hundred fourteen');\nINSERT INTO t1 VALUES(7692, 64119, 'sixty-four thousand one hundred nineteen');\nINSERT INTO t1 VALUES(7693, 30243, 'thirty thousand two hundred forty-three');\nINSERT INTO t1 VALUES(7694, 59480, 'fifty-nine thousand four hundred eighty');\nINSERT INTO t1 VALUES(7695, 47054, 'forty-seven thousand fifty-four');\nINSERT INTO t1 VALUES(7696, 39344, 'thirty-nine thousand three hundred forty-four');\nINSERT INTO t1 VALUES(7697, 91877, 'ninety-one thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(7698, 87910, 'eighty-seven thousand nine hundred ten');\nINSERT INTO t1 VALUES(7699, 74942, 'seventy-four thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(7700, 13879, 'thirteen thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(7701, 90580, 'ninety thousand five hundred eighty');\nINSERT INTO t1 VALUES(7702, 35384, 'thirty-five thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(7703, 53967, 'fifty-three thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(7704, 9459, 'nine thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(7705, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t1 VALUES(7706, 96565, 'ninety-six thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(7707, 91890, 'ninety-one thousand eight hundred ninety');\nINSERT INTO t1 VALUES(7708, 87945, 'eighty-seven thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(7709, 71133, 'seventy-one thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(7710, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(7711, 36407, 'thirty-six thousand four hundred seven');\nINSERT INTO t1 VALUES(7712, 12856, 'twelve thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(7713, 48429, 'forty-eight thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(7714, 95661, 'ninety-five thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(7715, 52338, 'fifty-two thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(7716, 17316, 'seventeen thousand three hundred sixteen');\nINSERT INTO t1 VALUES(7717, 51407, 'fifty-one thousand four hundred seven');\nINSERT INTO t1 VALUES(7718, 2597, 'two thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(7719, 97643, 'ninety-seven thousand six hundred forty-three');\nINSERT INTO t1 VALUES(7720, 36752, 'thirty-six thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(7721, 13680, 'thirteen thousand six hundred eighty');\nINSERT INTO t1 VALUES(7722, 4909, 'four thousand nine hundred nine');\nINSERT INTO t1 VALUES(7723, 84796, 'eighty-four thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(7724, 73543, 'seventy-three thousand five hundred forty-three');\nINSERT INTO t1 VALUES(7725, 1916, 'one thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(7726, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(7727, 69357, 'sixty-nine thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(7728, 75427, 'seventy-five thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(7729, 51036, 'fifty-one thousand thirty-six');\nINSERT INTO t1 VALUES(7730, 93792, 'ninety-three thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(7731, 90679, 'ninety thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(7732, 9298, 'nine thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(7733, 29484, 'twenty-nine thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(7734, 54312, 'fifty-four thousand three hundred twelve');\nINSERT INTO t1 VALUES(7735, 87150, 'eighty-seven thousand one hundred fifty');\nINSERT INTO t1 VALUES(7736, 99157, 'ninety-nine thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(7737, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(7738, 91560, 'ninety-one thousand five hundred sixty');\nINSERT INTO t1 VALUES(7739, 18148, 'eighteen thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(7740, 8142, 'eight thousand one hundred forty-two');\nINSERT INTO t1 VALUES(7741, 73128, 'seventy-three thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(7742, 49695, 'forty-nine thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(7743, 89198, 'eighty-nine thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(7744, 71116, 'seventy-one thousand one hundred sixteen');\nINSERT INTO t1 VALUES(7745, 13461, 'thirteen thousand four hundred sixty-one');\nINSERT INTO t1 VALUES(7746, 83560, 'eighty-three thousand five hundred sixty');\nINSERT INTO t1 VALUES(7747, 67718, 'sixty-seven thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(7748, 35253, 'thirty-five thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(7749, 4621, 'four thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(7750, 16037, 'sixteen thousand thirty-seven');\nINSERT INTO t1 VALUES(7751, 5376, 'five thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(7752, 88995, 'eighty-eight thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(7753, 67791, 'sixty-seven thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(7754, 858, 'eight hundred fifty-eight');\nINSERT INTO t1 VALUES(7755, 98985, 'ninety-eight thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(7756, 52136, 'fifty-two thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(7757, 44069, 'forty-four thousand sixty-nine');\nINSERT INTO t1 VALUES(7758, 69723, 'sixty-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(7759, 23410, 'twenty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(7760, 55639, 'fifty-five thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(7761, 82748, 'eighty-two thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(7762, 87806, 'eighty-seven thousand eight hundred six');\nINSERT INTO t1 VALUES(7763, 1792, 'one thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(7764, 33515, 'thirty-three thousand five hundred fifteen');\nINSERT INTO t1 VALUES(7765, 656, 'six hundred fifty-six');\nINSERT INTO t1 VALUES(7766, 9853, 'nine thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(7767, 81056, 'eighty-one thousand fifty-six');\nINSERT INTO t1 VALUES(7768, 97223, 'ninety-seven thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(7769, 15290, 'fifteen thousand two hundred ninety');\nINSERT INTO t1 VALUES(7770, 37851, 'thirty-seven thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7771, 90678, 'ninety thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(7772, 47996, 'forty-seven thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(7773, 61678, 'sixty-one thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(7774, 21658, 'twenty-one thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(7775, 67975, 'sixty-seven thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(7776, 15683, 'fifteen thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(7777, 68528, 'sixty-eight thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(7778, 3643, 'three thousand six hundred forty-three');\nINSERT INTO t1 VALUES(7779, 16183, 'sixteen thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(7780, 83349, 'eighty-three thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(7781, 46050, 'forty-six thousand fifty');\nINSERT INTO t1 VALUES(7782, 72416, 'seventy-two thousand four hundred sixteen');\nINSERT INTO t1 VALUES(7783, 25081, 'twenty-five thousand eighty-one');\nINSERT INTO t1 VALUES(7784, 60598, 'sixty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(7785, 35348, 'thirty-five thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(7786, 67248, 'sixty-seven thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(7787, 36660, 'thirty-six thousand six hundred sixty');\nINSERT INTO t1 VALUES(7788, 80794, 'eighty thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(7789, 12586, 'twelve thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(7790, 1660, 'one thousand six hundred sixty');\nINSERT INTO t1 VALUES(7791, 31369, 'thirty-one thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(7792, 88500, 'eighty-eight thousand five hundred');\nINSERT INTO t1 VALUES(7793, 98688, 'ninety-eight thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(7794, 22037, 'twenty-two thousand thirty-seven');\nINSERT INTO t1 VALUES(7795, 96477, 'ninety-six thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(7796, 7480, 'seven thousand four hundred eighty');\nINSERT INTO t1 VALUES(7797, 35142, 'thirty-five thousand one hundred forty-two');\nINSERT INTO t1 VALUES(7798, 22661, 'twenty-two thousand six hundred sixty-one');\nINSERT INTO t1 VALUES(7799, 76209, 'seventy-six thousand two hundred nine');\nINSERT INTO t1 VALUES(7800, 81625, 'eighty-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(7801, 49886, 'forty-nine thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(7802, 99323, 'ninety-nine thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(7803, 96735, 'ninety-six thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(7804, 45311, 'forty-five thousand three hundred eleven');\nINSERT INTO t1 VALUES(7805, 263, 'two hundred sixty-three');\nINSERT INTO t1 VALUES(7806, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(7807, 80939, 'eighty thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(7808, 77349, 'seventy-seven thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(7809, 38321, 'thirty-eight thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(7810, 83634, 'eighty-three thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(7811, 28604, 'twenty-eight thousand six hundred four');\nINSERT INTO t1 VALUES(7812, 39822, 'thirty-nine thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(7813, 18580, 'eighteen thousand five hundred eighty');\nINSERT INTO t1 VALUES(7814, 56784, 'fifty-six thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(7815, 9627, 'nine thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(7816, 99774, 'ninety-nine thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(7817, 53956, 'fifty-three thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(7818, 87268, 'eighty-seven thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(7819, 20098, 'twenty thousand ninety-eight');\nINSERT INTO t1 VALUES(7820, 24106, 'twenty-four thousand one hundred six');\nINSERT INTO t1 VALUES(7821, 20464, 'twenty thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(7822, 90602, 'ninety thousand six hundred two');\nINSERT INTO t1 VALUES(7823, 97695, 'ninety-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(7824, 86171, 'eighty-six thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(7825, 97571, 'ninety-seven thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(7826, 8801, 'eight thousand eight hundred one');\nINSERT INTO t1 VALUES(7827, 5800, 'five thousand eight hundred');\nINSERT INTO t1 VALUES(7828, 28723, 'twenty-eight thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(7829, 52550, 'fifty-two thousand five hundred fifty');\nINSERT INTO t1 VALUES(7830, 16270, 'sixteen thousand two hundred seventy');\nINSERT INTO t1 VALUES(7831, 14306, 'fourteen thousand three hundred six');\nINSERT INTO t1 VALUES(7832, 94463, 'ninety-four thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(7833, 23441, 'twenty-three thousand four hundred forty-one');\nINSERT INTO t1 VALUES(7834, 41139, 'forty-one thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(7835, 25688, 'twenty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(7836, 47882, 'forty-seven thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(7837, 2242, 'two thousand two hundred forty-two');\nINSERT INTO t1 VALUES(7838, 74744, 'seventy-four thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(7839, 21882, 'twenty-one thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(7840, 5128, 'five thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(7841, 63, 'sixty-three');\nINSERT INTO t1 VALUES(7842, 43051, 'forty-three thousand fifty-one');\nINSERT INTO t1 VALUES(7843, 59497, 'fifty-nine thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(7844, 35250, 'thirty-five thousand two hundred fifty');\nINSERT INTO t1 VALUES(7845, 14067, 'fourteen thousand sixty-seven');\nINSERT INTO t1 VALUES(7846, 98471, 'ninety-eight thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(7847, 32404, 'thirty-two thousand four hundred four');\nINSERT INTO t1 VALUES(7848, 59310, 'fifty-nine thousand three hundred ten');\nINSERT INTO t1 VALUES(7849, 13532, 'thirteen thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(7850, 15986, 'fifteen thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(7851, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(7852, 89539, 'eighty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7853, 89694, 'eighty-nine thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(7854, 20933, 'twenty thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(7855, 73731, 'seventy-three thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(7856, 96558, 'ninety-six thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(7857, 19964, 'nineteen thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(7858, 8060, 'eight thousand sixty');\nINSERT INTO t1 VALUES(7859, 87017, 'eighty-seven thousand seventeen');\nINSERT INTO t1 VALUES(7860, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t1 VALUES(7861, 15159, 'fifteen thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(7862, 79783, 'seventy-nine thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(7863, 95370, 'ninety-five thousand three hundred seventy');\nINSERT INTO t1 VALUES(7864, 30656, 'thirty thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(7865, 66753, 'sixty-six thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(7866, 91805, 'ninety-one thousand eight hundred five');\nINSERT INTO t1 VALUES(7867, 83405, 'eighty-three thousand four hundred five');\nINSERT INTO t1 VALUES(7868, 83025, 'eighty-three thousand twenty-five');\nINSERT INTO t1 VALUES(7869, 2923, 'two thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(7870, 74455, 'seventy-four thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(7871, 43200, 'forty-three thousand two hundred');\nINSERT INTO t1 VALUES(7872, 31782, 'thirty-one thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(7873, 44085, 'forty-four thousand eighty-five');\nINSERT INTO t1 VALUES(7874, 15054, 'fifteen thousand fifty-four');\nINSERT INTO t1 VALUES(7875, 73665, 'seventy-three thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(7876, 56082, 'fifty-six thousand eighty-two');\nINSERT INTO t1 VALUES(7877, 23782, 'twenty-three thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(7878, 36310, 'thirty-six thousand three hundred ten');\nINSERT INTO t1 VALUES(7879, 83309, 'eighty-three thousand three hundred nine');\nINSERT INTO t1 VALUES(7880, 16310, 'sixteen thousand three hundred ten');\nINSERT INTO t1 VALUES(7881, 541, 'five hundred forty-one');\nINSERT INTO t1 VALUES(7882, 83512, 'eighty-three thousand five hundred twelve');\nINSERT INTO t1 VALUES(7883, 19515, 'nineteen thousand five hundred fifteen');\nINSERT INTO t1 VALUES(7884, 91044, 'ninety-one thousand forty-four');\nINSERT INTO t1 VALUES(7885, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(7886, 36995, 'thirty-six thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(7887, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(7888, 41269, 'forty-one thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(7889, 63071, 'sixty-three thousand seventy-one');\nINSERT INTO t1 VALUES(7890, 39034, 'thirty-nine thousand thirty-four');\nINSERT INTO t1 VALUES(7891, 45572, 'forty-five thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(7892, 49164, 'forty-nine thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(7893, 37147, 'thirty-seven thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(7894, 23657, 'twenty-three thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(7895, 78537, 'seventy-eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(7896, 52347, 'fifty-two thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(7897, 92819, 'ninety-two thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(7898, 31124, 'thirty-one thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(7899, 77575, 'seventy-seven thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(7900, 22526, 'twenty-two thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(7901, 90254, 'ninety thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(7902, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(7903, 69752, 'sixty-nine thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(7904, 96221, 'ninety-six thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(7905, 25934, 'twenty-five thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(7906, 39689, 'thirty-nine thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(7907, 59582, 'fifty-nine thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(7908, 94145, 'ninety-four thousand one hundred forty-five');\nINSERT INTO t1 VALUES(7909, 71324, 'seventy-one thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(7910, 79960, 'seventy-nine thousand nine hundred sixty');\nINSERT INTO t1 VALUES(7911, 77850, 'seventy-seven thousand eight hundred fifty');\nINSERT INTO t1 VALUES(7912, 48143, 'forty-eight thousand one hundred forty-three');\nINSERT INTO t1 VALUES(7913, 83930, 'eighty-three thousand nine hundred thirty');\nINSERT INTO t1 VALUES(7914, 77135, 'seventy-seven thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(7915, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(7916, 67434, 'sixty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7917, 74035, 'seventy-four thousand thirty-five');\nINSERT INTO t1 VALUES(7918, 36646, 'thirty-six thousand six hundred forty-six');\nINSERT INTO t1 VALUES(7919, 81402, 'eighty-one thousand four hundred two');\nINSERT INTO t1 VALUES(7920, 5874, 'five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(7921, 86496, 'eighty-six thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(7922, 63333, 'sixty-three thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(7923, 82408, 'eighty-two thousand four hundred eight');\nINSERT INTO t1 VALUES(7924, 88239, 'eighty-eight thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(7925, 14141, 'fourteen thousand one hundred forty-one');\nINSERT INTO t1 VALUES(7926, 60345, 'sixty thousand three hundred forty-five');\nINSERT INTO t1 VALUES(7927, 57719, 'fifty-seven thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7928, 20454, 'twenty thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(7929, 34861, 'thirty-four thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(7930, 14822, 'fourteen thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(7931, 27307, 'twenty-seven thousand three hundred seven');\nINSERT INTO t1 VALUES(7932, 1746, 'one thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(7933, 19942, 'nineteen thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(7934, 49539, 'forty-nine thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(7935, 87971, 'eighty-seven thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(7936, 56975, 'fifty-six thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(7937, 47733, 'forty-seven thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(7938, 29546, 'twenty-nine thousand five hundred forty-six');\nINSERT INTO t1 VALUES(7939, 94395, 'ninety-four thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(7940, 83058, 'eighty-three thousand fifty-eight');\nINSERT INTO t1 VALUES(7941, 80565, 'eighty thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(7942, 5824, 'five thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(7943, 56150, 'fifty-six thousand one hundred fifty');\nINSERT INTO t1 VALUES(7944, 88673, 'eighty-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(7945, 30043, 'thirty thousand forty-three');\nINSERT INTO t1 VALUES(7946, 84917, 'eighty-four thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(7947, 44179, 'forty-four thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(7948, 36742, 'thirty-six thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(7949, 49639, 'forty-nine thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(7950, 48249, 'forty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(7951, 49026, 'forty-nine thousand twenty-six');\nINSERT INTO t1 VALUES(7952, 66869, 'sixty-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(7953, 20582, 'twenty thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(7954, 42286, 'forty-two thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(7955, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t1 VALUES(7956, 97681, 'ninety-seven thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(7957, 15705, 'fifteen thousand seven hundred five');\nINSERT INTO t1 VALUES(7958, 76411, 'seventy-six thousand four hundred eleven');\nINSERT INTO t1 VALUES(7959, 14285, 'fourteen thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(7960, 3895, 'three thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(7961, 20176, 'twenty thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(7962, 77559, 'seventy-seven thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(7963, 42868, 'forty-two thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(7964, 50398, 'fifty thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(7965, 81553, 'eighty-one thousand five hundred fifty-three');\nINSERT INTO t1 VALUES(7966, 73859, 'seventy-three thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(7967, 15726, 'fifteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(7968, 47727, 'forty-seven thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(7969, 62444, 'sixty-two thousand four hundred forty-four');\nINSERT INTO t1 VALUES(7970, 55007, 'fifty-five thousand seven');\nINSERT INTO t1 VALUES(7971, 24046, 'twenty-four thousand forty-six');\nINSERT INTO t1 VALUES(7972, 95041, 'ninety-five thousand forty-one');\nINSERT INTO t1 VALUES(7973, 77834, 'seventy-seven thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(7974, 35735, 'thirty-five thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(7975, 3263, 'three thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(7976, 75482, 'seventy-five thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(7977, 70443, 'seventy thousand four hundred forty-three');\nINSERT INTO t1 VALUES(7978, 32993, 'thirty-two thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(7979, 59841, 'fifty-nine thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(7980, 41827, 'forty-one thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(7981, 60918, 'sixty thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(7982, 6281, 'six thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(7983, 4485, 'four thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(7984, 57724, 'fifty-seven thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(7985, 57353, 'fifty-seven thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(7986, 66186, 'sixty-six thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(7987, 82465, 'eighty-two thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(7988, 83719, 'eighty-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(7989, 70733, 'seventy thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(7990, 65495, 'sixty-five thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(7991, 35268, 'thirty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(7992, 21098, 'twenty-one thousand ninety-eight');\nINSERT INTO t1 VALUES(7993, 17625, 'seventeen thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(7994, 11433, 'eleven thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(7995, 26519, 'twenty-six thousand five hundred nineteen');\nINSERT INTO t1 VALUES(7996, 59470, 'fifty-nine thousand four hundred seventy');\nINSERT INTO t1 VALUES(7997, 36434, 'thirty-six thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(7998, 3032, 'three thousand thirty-two');\nINSERT INTO t1 VALUES(7999, 73646, 'seventy-three thousand six hundred forty-six');\nINSERT INTO t1 VALUES(8000, 25010, 'twenty-five thousand ten');\nINSERT INTO t1 VALUES(8001, 27479, 'twenty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(8002, 58626, 'fifty-eight thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(8003, 13285, 'thirteen thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8004, 20698, 'twenty thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(8005, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(8006, 59640, 'fifty-nine thousand six hundred forty');\nINSERT INTO t1 VALUES(8007, 18698, 'eighteen thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(8008, 73630, 'seventy-three thousand six hundred thirty');\nINSERT INTO t1 VALUES(8009, 55143, 'fifty-five thousand one hundred forty-three');\nINSERT INTO t1 VALUES(8010, 71496, 'seventy-one thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(8011, 84709, 'eighty-four thousand seven hundred nine');\nINSERT INTO t1 VALUES(8012, 93121, 'ninety-three thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(8013, 67089, 'sixty-seven thousand eighty-nine');\nINSERT INTO t1 VALUES(8014, 52407, 'fifty-two thousand four hundred seven');\nINSERT INTO t1 VALUES(8015, 2119, 'two thousand one hundred nineteen');\nINSERT INTO t1 VALUES(8016, 37773, 'thirty-seven thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(8017, 82286, 'eighty-two thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(8018, 39997, 'thirty-nine thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(8019, 63074, 'sixty-three thousand seventy-four');\nINSERT INTO t1 VALUES(8020, 24179, 'twenty-four thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(8021, 88468, 'eighty-eight thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(8022, 81676, 'eighty-one thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(8023, 93060, 'ninety-three thousand sixty');\nINSERT INTO t1 VALUES(8024, 6599, 'six thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(8025, 31521, 'thirty-one thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(8026, 80668, 'eighty thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(8027, 71713, 'seventy-one thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(8028, 71062, 'seventy-one thousand sixty-two');\nINSERT INTO t1 VALUES(8029, 49171, 'forty-nine thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(8030, 89752, 'eighty-nine thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(8031, 8361, 'eight thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(8032, 89016, 'eighty-nine thousand sixteen');\nINSERT INTO t1 VALUES(8033, 50123, 'fifty thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(8034, 93717, 'ninety-three thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(8035, 56769, 'fifty-six thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(8036, 53986, 'fifty-three thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(8037, 741, 'seven hundred forty-one');\nINSERT INTO t1 VALUES(8038, 43063, 'forty-three thousand sixty-three');\nINSERT INTO t1 VALUES(8039, 37717, 'thirty-seven thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(8040, 95326, 'ninety-five thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(8041, 87882, 'eighty-seven thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(8042, 30085, 'thirty thousand eighty-five');\nINSERT INTO t1 VALUES(8043, 2980, 'two thousand nine hundred eighty');\nINSERT INTO t1 VALUES(8044, 99031, 'ninety-nine thousand thirty-one');\nINSERT INTO t1 VALUES(8045, 1955, 'one thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(8046, 71800, 'seventy-one thousand eight hundred');\nINSERT INTO t1 VALUES(8047, 80845, 'eighty thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(8048, 3969, 'three thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(8049, 72095, 'seventy-two thousand ninety-five');\nINSERT INTO t1 VALUES(8050, 83061, 'eighty-three thousand sixty-one');\nINSERT INTO t1 VALUES(8051, 40526, 'forty thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(8052, 26143, 'twenty-six thousand one hundred forty-three');\nINSERT INTO t1 VALUES(8053, 62515, 'sixty-two thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8054, 13173, 'thirteen thousand one hundred seventy-three');\nINSERT INTO t1 VALUES(8055, 71132, 'seventy-one thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(8056, 86793, 'eighty-six thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(8057, 69009, 'sixty-nine thousand nine');\nINSERT INTO t1 VALUES(8058, 28250, 'twenty-eight thousand two hundred fifty');\nINSERT INTO t1 VALUES(8059, 79276, 'seventy-nine thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8060, 58463, 'fifty-eight thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(8061, 92913, 'ninety-two thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(8062, 49764, 'forty-nine thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8063, 5579, 'five thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(8064, 54549, 'fifty-four thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(8065, 1128, 'one thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(8066, 29276, 'twenty-nine thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8067, 57029, 'fifty-seven thousand twenty-nine');\nINSERT INTO t1 VALUES(8068, 3571, 'three thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(8069, 55778, 'fifty-five thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(8070, 48777, 'forty-eight thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(8071, 76438, 'seventy-six thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(8072, 78484, 'seventy-eight thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(8073, 99758, 'ninety-nine thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(8074, 2206, 'two thousand two hundred six');\nINSERT INTO t1 VALUES(8075, 19978, 'nineteen thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(8076, 1249, 'one thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(8077, 18160, 'eighteen thousand one hundred sixty');\nINSERT INTO t1 VALUES(8078, 18196, 'eighteen thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(8079, 80732, 'eighty thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(8080, 47100, 'forty-seven thousand one hundred');\nINSERT INTO t1 VALUES(8081, 9033, 'nine thousand thirty-three');\nINSERT INTO t1 VALUES(8082, 96273, 'ninety-six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(8083, 90507, 'ninety thousand five hundred seven');\nINSERT INTO t1 VALUES(8084, 13791, 'thirteen thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(8085, 16674, 'sixteen thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(8086, 30330, 'thirty thousand three hundred thirty');\nINSERT INTO t1 VALUES(8087, 42272, 'forty-two thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(8088, 98098, 'ninety-eight thousand ninety-eight');\nINSERT INTO t1 VALUES(8089, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(8090, 95718, 'ninety-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8091, 85629, 'eighty-five thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(8092, 41360, 'forty-one thousand three hundred sixty');\nINSERT INTO t1 VALUES(8093, 60360, 'sixty thousand three hundred sixty');\nINSERT INTO t1 VALUES(8094, 73361, 'seventy-three thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(8095, 59057, 'fifty-nine thousand fifty-seven');\nINSERT INTO t1 VALUES(8096, 35336, 'thirty-five thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(8097, 22816, 'twenty-two thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(8098, 36922, 'thirty-six thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(8099, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t1 VALUES(8100, 40915, 'forty thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(8101, 50961, 'fifty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(8102, 56267, 'fifty-six thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(8103, 50557, 'fifty thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(8104, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(8105, 69073, 'sixty-nine thousand seventy-three');\nINSERT INTO t1 VALUES(8106, 32107, 'thirty-two thousand one hundred seven');\nINSERT INTO t1 VALUES(8107, 18324, 'eighteen thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(8108, 78521, 'seventy-eight thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(8109, 64469, 'sixty-four thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(8110, 59797, 'fifty-nine thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(8111, 2652, 'two thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(8112, 59663, 'fifty-nine thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(8113, 18215, 'eighteen thousand two hundred fifteen');\nINSERT INTO t1 VALUES(8114, 13864, 'thirteen thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(8115, 64953, 'sixty-four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(8116, 12249, 'twelve thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(8117, 34458, 'thirty-four thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(8118, 11876, 'eleven thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(8119, 76788, 'seventy-six thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(8120, 80100, 'eighty thousand one hundred');\nINSERT INTO t1 VALUES(8121, 60522, 'sixty thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(8122, 69370, 'sixty-nine thousand three hundred seventy');\nINSERT INTO t1 VALUES(8123, 95232, 'ninety-five thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(8124, 59484, 'fifty-nine thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(8125, 52341, 'fifty-two thousand three hundred forty-one');\nINSERT INTO t1 VALUES(8126, 358, 'three hundred fifty-eight');\nINSERT INTO t1 VALUES(8127, 72762, 'seventy-two thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(8128, 99191, 'ninety-nine thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(8129, 77103, 'seventy-seven thousand one hundred three');\nINSERT INTO t1 VALUES(8130, 89140, 'eighty-nine thousand one hundred forty');\nINSERT INTO t1 VALUES(8131, 39047, 'thirty-nine thousand forty-seven');\nINSERT INTO t1 VALUES(8132, 29803, 'twenty-nine thousand eight hundred three');\nINSERT INTO t1 VALUES(8133, 53574, 'fifty-three thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(8134, 29183, 'twenty-nine thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(8135, 63237, 'sixty-three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(8136, 64365, 'sixty-four thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(8137, 98023, 'ninety-eight thousand twenty-three');\nINSERT INTO t1 VALUES(8138, 25085, 'twenty-five thousand eighty-five');\nINSERT INTO t1 VALUES(8139, 95610, 'ninety-five thousand six hundred ten');\nINSERT INTO t1 VALUES(8140, 67879, 'sixty-seven thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(8141, 1354, 'one thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(8142, 11017, 'eleven thousand seventeen');\nINSERT INTO t1 VALUES(8143, 45440, 'forty-five thousand four hundred forty');\nINSERT INTO t1 VALUES(8144, 97792, 'ninety-seven thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(8145, 39693, 'thirty-nine thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(8146, 58430, 'fifty-eight thousand four hundred thirty');\nINSERT INTO t1 VALUES(8147, 24424, 'twenty-four thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(8148, 88843, 'eighty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(8149, 32146, 'thirty-two thousand one hundred forty-six');\nINSERT INTO t1 VALUES(8150, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8151, 30705, 'thirty thousand seven hundred five');\nINSERT INTO t1 VALUES(8152, 28845, 'twenty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(8153, 9572, 'nine thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(8154, 37012, 'thirty-seven thousand twelve');\nINSERT INTO t1 VALUES(8155, 58391, 'fifty-eight thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(8156, 91537, 'ninety-one thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8157, 13257, 'thirteen thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(8158, 86861, 'eighty-six thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(8159, 48064, 'forty-eight thousand sixty-four');\nINSERT INTO t1 VALUES(8160, 12917, 'twelve thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(8161, 91388, 'ninety-one thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(8162, 30229, 'thirty thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(8163, 58201, 'fifty-eight thousand two hundred one');\nINSERT INTO t1 VALUES(8164, 22229, 'twenty-two thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(8165, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(8166, 32572, 'thirty-two thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(8167, 86147, 'eighty-six thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(8168, 49150, 'forty-nine thousand one hundred fifty');\nINSERT INTO t1 VALUES(8169, 80925, 'eighty thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(8170, 43991, 'forty-three thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(8171, 67285, 'sixty-seven thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8172, 56602, 'fifty-six thousand six hundred two');\nINSERT INTO t1 VALUES(8173, 33979, 'thirty-three thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(8174, 15087, 'fifteen thousand eighty-seven');\nINSERT INTO t1 VALUES(8175, 34198, 'thirty-four thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(8176, 82781, 'eighty-two thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(8177, 14971, 'fourteen thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(8178, 25257, 'twenty-five thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(8179, 71874, 'seventy-one thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(8180, 92105, 'ninety-two thousand one hundred five');\nINSERT INTO t1 VALUES(8181, 3233, 'three thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(8182, 48317, 'forty-eight thousand three hundred seventeen');\nINSERT INTO t1 VALUES(8183, 67485, 'sixty-seven thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(8184, 31547, 'thirty-one thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(8185, 20316, 'twenty thousand three hundred sixteen');\nINSERT INTO t1 VALUES(8186, 58491, 'fifty-eight thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(8187, 21100, 'twenty-one thousand one hundred');\nINSERT INTO t1 VALUES(8188, 51450, 'fifty-one thousand four hundred fifty');\nINSERT INTO t1 VALUES(8189, 98068, 'ninety-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(8190, 87771, 'eighty-seven thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(8191, 85224, 'eighty-five thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(8192, 63199, 'sixty-three thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(8193, 17141, 'seventeen thousand one hundred forty-one');\nINSERT INTO t1 VALUES(8194, 31880, 'thirty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(8195, 58125, 'fifty-eight thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(8196, 73194, 'seventy-three thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(8197, 90851, 'ninety thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(8198, 8138, 'eight thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(8199, 4316, 'four thousand three hundred sixteen');\nINSERT INTO t1 VALUES(8200, 87558, 'eighty-seven thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(8201, 95961, 'ninety-five thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(8202, 57143, 'fifty-seven thousand one hundred forty-three');\nINSERT INTO t1 VALUES(8203, 48156, 'forty-eight thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(8204, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(8205, 33609, 'thirty-three thousand six hundred nine');\nINSERT INTO t1 VALUES(8206, 12195, 'twelve thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(8207, 39055, 'thirty-nine thousand fifty-five');\nINSERT INTO t1 VALUES(8208, 11540, 'eleven thousand five hundred forty');\nINSERT INTO t1 VALUES(8209, 35532, 'thirty-five thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(8210, 39705, 'thirty-nine thousand seven hundred five');\nINSERT INTO t1 VALUES(8211, 89223, 'eighty-nine thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(8212, 14391, 'fourteen thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(8213, 60858, 'sixty thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(8214, 92117, 'ninety-two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(8215, 83752, 'eighty-three thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(8216, 35438, 'thirty-five thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(8217, 55024, 'fifty-five thousand twenty-four');\nINSERT INTO t1 VALUES(8218, 88639, 'eighty-eight thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(8219, 36972, 'thirty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(8220, 83163, 'eighty-three thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(8221, 40225, 'forty thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(8222, 89060, 'eighty-nine thousand sixty');\nINSERT INTO t1 VALUES(8223, 67419, 'sixty-seven thousand four hundred nineteen');\nINSERT INTO t1 VALUES(8224, 14016, 'fourteen thousand sixteen');\nINSERT INTO t1 VALUES(8225, 33963, 'thirty-three thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(8226, 42430, 'forty-two thousand four hundred thirty');\nINSERT INTO t1 VALUES(8227, 81366, 'eighty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(8228, 23719, 'twenty-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(8229, 41672, 'forty-one thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(8230, 50145, 'fifty thousand one hundred forty-five');\nINSERT INTO t1 VALUES(8231, 19515, 'nineteen thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8232, 53266, 'fifty-three thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(8233, 31624, 'thirty-one thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(8234, 5164, 'five thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(8235, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t1 VALUES(8236, 90694, 'ninety thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(8237, 62075, 'sixty-two thousand seventy-five');\nINSERT INTO t1 VALUES(8238, 53502, 'fifty-three thousand five hundred two');\nINSERT INTO t1 VALUES(8239, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(8240, 28967, 'twenty-eight thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(8241, 2530, 'two thousand five hundred thirty');\nINSERT INTO t1 VALUES(8242, 38201, 'thirty-eight thousand two hundred one');\nINSERT INTO t1 VALUES(8243, 43561, 'forty-three thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(8244, 45811, 'forty-five thousand eight hundred eleven');\nINSERT INTO t1 VALUES(8245, 54679, 'fifty-four thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(8246, 55199, 'fifty-five thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(8247, 94154, 'ninety-four thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(8248, 98890, 'ninety-eight thousand eight hundred ninety');\nINSERT INTO t1 VALUES(8249, 61816, 'sixty-one thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(8250, 32545, 'thirty-two thousand five hundred forty-five');\nINSERT INTO t1 VALUES(8251, 42024, 'forty-two thousand twenty-four');\nINSERT INTO t1 VALUES(8252, 43155, 'forty-three thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8253, 79995, 'seventy-nine thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(8254, 42594, 'forty-two thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(8255, 96849, 'ninety-six thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(8256, 66568, 'sixty-six thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(8257, 41343, 'forty-one thousand three hundred forty-three');\nINSERT INTO t1 VALUES(8258, 52623, 'fifty-two thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(8259, 33997, 'thirty-three thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(8260, 93000, 'ninety-three thousand');\nINSERT INTO t1 VALUES(8261, 36529, 'thirty-six thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(8262, 67420, 'sixty-seven thousand four hundred twenty');\nINSERT INTO t1 VALUES(8263, 74806, 'seventy-four thousand eight hundred six');\nINSERT INTO t1 VALUES(8264, 54750, 'fifty-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(8265, 13239, 'thirteen thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(8266, 83927, 'eighty-three thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(8267, 17761, 'seventeen thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(8268, 2368, 'two thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(8269, 7316, 'seven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(8270, 68027, 'sixty-eight thousand twenty-seven');\nINSERT INTO t1 VALUES(8271, 68207, 'sixty-eight thousand two hundred seven');\nINSERT INTO t1 VALUES(8272, 45245, 'forty-five thousand two hundred forty-five');\nINSERT INTO t1 VALUES(8273, 48436, 'forty-eight thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(8274, 32047, 'thirty-two thousand forty-seven');\nINSERT INTO t1 VALUES(8275, 85648, 'eighty-five thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(8276, 87489, 'eighty-seven thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(8277, 97079, 'ninety-seven thousand seventy-nine');\nINSERT INTO t1 VALUES(8278, 24294, 'twenty-four thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(8279, 1127, 'one thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(8280, 57911, 'fifty-seven thousand nine hundred eleven');\nINSERT INTO t1 VALUES(8281, 53131, 'fifty-three thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(8282, 15784, 'fifteen thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(8283, 6518, 'six thousand five hundred eighteen');\nINSERT INTO t1 VALUES(8284, 47301, 'forty-seven thousand three hundred one');\nINSERT INTO t1 VALUES(8285, 88470, 'eighty-eight thousand four hundred seventy');\nINSERT INTO t1 VALUES(8286, 96186, 'ninety-six thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(8287, 78511, 'seventy-eight thousand five hundred eleven');\nINSERT INTO t1 VALUES(8288, 52601, 'fifty-two thousand six hundred one');\nINSERT INTO t1 VALUES(8289, 39772, 'thirty-nine thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(8290, 86958, 'eighty-six thousand nine hundred fifty-eight');\nINSERT INTO t1 VALUES(8291, 62096, 'sixty-two thousand ninety-six');\nINSERT INTO t1 VALUES(8292, 46616, 'forty-six thousand six hundred sixteen');\nINSERT INTO t1 VALUES(8293, 16013, 'sixteen thousand thirteen');\nINSERT INTO t1 VALUES(8294, 57437, 'fifty-seven thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(8295, 52945, 'fifty-two thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(8296, 7504, 'seven thousand five hundred four');\nINSERT INTO t1 VALUES(8297, 66359, 'sixty-six thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(8298, 21848, 'twenty-one thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(8299, 9834, 'nine thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(8300, 19907, 'nineteen thousand nine hundred seven');\nINSERT INTO t1 VALUES(8301, 36662, 'thirty-six thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(8302, 20527, 'twenty thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(8303, 75486, 'seventy-five thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(8304, 99439, 'ninety-nine thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(8305, 5150, 'five thousand one hundred fifty');\nINSERT INTO t1 VALUES(8306, 7427, 'seven thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(8307, 6568, 'six thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(8308, 1671, 'one thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(8309, 91293, 'ninety-one thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(8310, 30754, 'thirty thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(8311, 17548, 'seventeen thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(8312, 32255, 'thirty-two thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(8313, 3009, 'three thousand nine');\nINSERT INTO t1 VALUES(8314, 19068, 'nineteen thousand sixty-eight');\nINSERT INTO t1 VALUES(8315, 98494, 'ninety-eight thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(8316, 3725, 'three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(8317, 506, 'five hundred six');\nINSERT INTO t1 VALUES(8318, 20558, 'twenty thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(8319, 9801, 'nine thousand eight hundred one');\nINSERT INTO t1 VALUES(8320, 94764, 'ninety-four thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8321, 83226, 'eighty-three thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(8322, 46633, 'forty-six thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(8323, 13944, 'thirteen thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(8324, 82733, 'eighty-two thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8325, 2155, 'two thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8326, 36675, 'thirty-six thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(8327, 56733, 'fifty-six thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8328, 73771, 'seventy-three thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(8329, 55822, 'fifty-five thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(8330, 84190, 'eighty-four thousand one hundred ninety');\nINSERT INTO t1 VALUES(8331, 10899, 'ten thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(8332, 74670, 'seventy-four thousand six hundred seventy');\nINSERT INTO t1 VALUES(8333, 41502, 'forty-one thousand five hundred two');\nINSERT INTO t1 VALUES(8334, 76649, 'seventy-six thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(8335, 60368, 'sixty thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(8336, 3265, 'three thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(8337, 86270, 'eighty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(8338, 15450, 'fifteen thousand four hundred fifty');\nINSERT INTO t1 VALUES(8339, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(8340, 94266, 'ninety-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(8341, 7172, 'seven thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(8342, 97104, 'ninety-seven thousand one hundred four');\nINSERT INTO t1 VALUES(8343, 96606, 'ninety-six thousand six hundred six');\nINSERT INTO t1 VALUES(8344, 35820, 'thirty-five thousand eight hundred twenty');\nINSERT INTO t1 VALUES(8345, 97848, 'ninety-seven thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(8346, 37904, 'thirty-seven thousand nine hundred four');\nINSERT INTO t1 VALUES(8347, 80083, 'eighty thousand eighty-three');\nINSERT INTO t1 VALUES(8348, 71444, 'seventy-one thousand four hundred forty-four');\nINSERT INTO t1 VALUES(8349, 11778, 'eleven thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(8350, 41361, 'forty-one thousand three hundred sixty-one');\nINSERT INTO t1 VALUES(8351, 51522, 'fifty-one thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(8352, 83954, 'eighty-three thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(8353, 4422, 'four thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(8354, 36420, 'thirty-six thousand four hundred twenty');\nINSERT INTO t1 VALUES(8355, 95149, 'ninety-five thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(8356, 782, 'seven hundred eighty-two');\nINSERT INTO t1 VALUES(8357, 88695, 'eighty-eight thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(8358, 99699, 'ninety-nine thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(8359, 86103, 'eighty-six thousand one hundred three');\nINSERT INTO t1 VALUES(8360, 6403, 'six thousand four hundred three');\nINSERT INTO t1 VALUES(8361, 13147, 'thirteen thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(8362, 48280, 'forty-eight thousand two hundred eighty');\nINSERT INTO t1 VALUES(8363, 90283, 'ninety thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(8364, 21126, 'twenty-one thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(8365, 51269, 'fifty-one thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(8366, 88061, 'eighty-eight thousand sixty-one');\nINSERT INTO t1 VALUES(8367, 38589, 'thirty-eight thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8368, 46768, 'forty-six thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(8369, 69339, 'sixty-nine thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(8370, 62819, 'sixty-two thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(8371, 39063, 'thirty-nine thousand sixty-three');\nINSERT INTO t1 VALUES(8372, 51602, 'fifty-one thousand six hundred two');\nINSERT INTO t1 VALUES(8373, 5882, 'five thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(8374, 99932, 'ninety-nine thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(8375, 11937, 'eleven thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(8376, 63343, 'sixty-three thousand three hundred forty-three');\nINSERT INTO t1 VALUES(8377, 38759, 'thirty-eight thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(8378, 93921, 'ninety-three thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(8379, 58802, 'fifty-eight thousand eight hundred two');\nINSERT INTO t1 VALUES(8380, 67137, 'sixty-seven thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(8381, 20290, 'twenty thousand two hundred ninety');\nINSERT INTO t1 VALUES(8382, 40506, 'forty thousand five hundred six');\nINSERT INTO t1 VALUES(8383, 36085, 'thirty-six thousand eighty-five');\nINSERT INTO t1 VALUES(8384, 10702, 'ten thousand seven hundred two');\nINSERT INTO t1 VALUES(8385, 7659, 'seven thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(8386, 92872, 'ninety-two thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(8387, 49744, 'forty-nine thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(8388, 29784, 'twenty-nine thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(8389, 45485, 'forty-five thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(8390, 68716, 'sixty-eight thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(8391, 19142, 'nineteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(8392, 78824, 'seventy-eight thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(8393, 29334, 'twenty-nine thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(8394, 20476, 'twenty thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(8395, 61604, 'sixty-one thousand six hundred four');\nINSERT INTO t1 VALUES(8396, 9696, 'nine thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(8397, 20637, 'twenty thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(8398, 55984, 'fifty-five thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(8399, 1593, 'one thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(8400, 65413, 'sixty-five thousand four hundred thirteen');\nINSERT INTO t1 VALUES(8401, 12533, 'twelve thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(8402, 73306, 'seventy-three thousand three hundred six');\nINSERT INTO t1 VALUES(8403, 11304, 'eleven thousand three hundred four');\nINSERT INTO t1 VALUES(8404, 56972, 'fifty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(8405, 84215, 'eighty-four thousand two hundred fifteen');\nINSERT INTO t1 VALUES(8406, 34196, 'thirty-four thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(8407, 25609, 'twenty-five thousand six hundred nine');\nINSERT INTO t1 VALUES(8408, 45688, 'forty-five thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(8409, 59901, 'fifty-nine thousand nine hundred one');\nINSERT INTO t1 VALUES(8410, 17081, 'seventeen thousand eighty-one');\nINSERT INTO t1 VALUES(8411, 36096, 'thirty-six thousand ninety-six');\nINSERT INTO t1 VALUES(8412, 35695, 'thirty-five thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(8413, 17152, 'seventeen thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(8414, 25704, 'twenty-five thousand seven hundred four');\nINSERT INTO t1 VALUES(8415, 42572, 'forty-two thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(8416, 27259, 'twenty-seven thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(8417, 90836, 'ninety thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(8418, 6939, 'six thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(8419, 38347, 'thirty-eight thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(8420, 73678, 'seventy-three thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(8421, 95019, 'ninety-five thousand nineteen');\nINSERT INTO t1 VALUES(8422, 47953, 'forty-seven thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(8423, 62524, 'sixty-two thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(8424, 82729, 'eighty-two thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(8425, 60257, 'sixty thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(8426, 81872, 'eighty-one thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(8427, 39926, 'thirty-nine thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(8428, 84094, 'eighty-four thousand ninety-four');\nINSERT INTO t1 VALUES(8429, 80123, 'eighty thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(8430, 16654, 'sixteen thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(8431, 38493, 'thirty-eight thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(8432, 98483, 'ninety-eight thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(8433, 84254, 'eighty-four thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(8434, 62035, 'sixty-two thousand thirty-five');\nINSERT INTO t1 VALUES(8435, 87616, 'eighty-seven thousand six hundred sixteen');\nINSERT INTO t1 VALUES(8436, 66715, 'sixty-six thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(8437, 10531, 'ten thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(8438, 42974, 'forty-two thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(8439, 1198, 'one thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(8440, 7613, 'seven thousand six hundred thirteen');\nINSERT INTO t1 VALUES(8441, 43155, 'forty-three thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8442, 5799, 'five thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(8443, 84987, 'eighty-four thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(8444, 76510, 'seventy-six thousand five hundred ten');\nINSERT INTO t1 VALUES(8445, 42076, 'forty-two thousand seventy-six');\nINSERT INTO t1 VALUES(8446, 4392, 'four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(8447, 55916, 'fifty-five thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(8448, 19890, 'nineteen thousand eight hundred ninety');\nINSERT INTO t1 VALUES(8449, 20145, 'twenty thousand one hundred forty-five');\nINSERT INTO t1 VALUES(8450, 58067, 'fifty-eight thousand sixty-seven');\nINSERT INTO t1 VALUES(8451, 38718, 'thirty-eight thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8452, 31072, 'thirty-one thousand seventy-two');\nINSERT INTO t1 VALUES(8453, 30400, 'thirty thousand four hundred');\nINSERT INTO t1 VALUES(8454, 80134, 'eighty thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(8455, 91973, 'ninety-one thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(8456, 25886, 'twenty-five thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(8457, 47270, 'forty-seven thousand two hundred seventy');\nINSERT INTO t1 VALUES(8458, 74943, 'seventy-four thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(8459, 78060, 'seventy-eight thousand sixty');\nINSERT INTO t1 VALUES(8460, 83421, 'eighty-three thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(8461, 37348, 'thirty-seven thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(8462, 15366, 'fifteen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(8463, 14315, 'fourteen thousand three hundred fifteen');\nINSERT INTO t1 VALUES(8464, 75937, 'seventy-five thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(8465, 12600, 'twelve thousand six hundred');\nINSERT INTO t1 VALUES(8466, 41227, 'forty-one thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(8467, 21381, 'twenty-one thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(8468, 1134, 'one thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(8469, 89927, 'eighty-nine thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(8470, 12476, 'twelve thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(8471, 78344, 'seventy-eight thousand three hundred forty-four');\nINSERT INTO t1 VALUES(8472, 64908, 'sixty-four thousand nine hundred eight');\nINSERT INTO t1 VALUES(8473, 52197, 'fifty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(8474, 39000, 'thirty-nine thousand');\nINSERT INTO t1 VALUES(8475, 70741, 'seventy thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(8476, 9345, 'nine thousand three hundred forty-five');\nINSERT INTO t1 VALUES(8477, 50062, 'fifty thousand sixty-two');\nINSERT INTO t1 VALUES(8478, 59347, 'fifty-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(8479, 31107, 'thirty-one thousand one hundred seven');\nINSERT INTO t1 VALUES(8480, 46342, 'forty-six thousand three hundred forty-two');\nINSERT INTO t1 VALUES(8481, 58200, 'fifty-eight thousand two hundred');\nINSERT INTO t1 VALUES(8482, 5517, 'five thousand five hundred seventeen');\nINSERT INTO t1 VALUES(8483, 31657, 'thirty-one thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(8484, 621, 'six hundred twenty-one');\nINSERT INTO t1 VALUES(8485, 71080, 'seventy-one thousand eighty');\nINSERT INTO t1 VALUES(8486, 65225, 'sixty-five thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(8487, 1599, 'one thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(8488, 95615, 'ninety-five thousand six hundred fifteen');\nINSERT INTO t1 VALUES(8489, 40631, 'forty thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(8490, 94073, 'ninety-four thousand seventy-three');\nINSERT INTO t1 VALUES(8491, 42794, 'forty-two thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(8492, 67162, 'sixty-seven thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(8493, 61880, 'sixty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(8494, 96308, 'ninety-six thousand three hundred eight');\nINSERT INTO t1 VALUES(8495, 64078, 'sixty-four thousand seventy-eight');\nINSERT INTO t1 VALUES(8496, 27669, 'twenty-seven thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(8497, 70764, 'seventy thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8498, 79881, 'seventy-nine thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(8499, 15720, 'fifteen thousand seven hundred twenty');\nINSERT INTO t1 VALUES(8500, 57996, 'fifty-seven thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(8501, 98998, 'ninety-eight thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(8502, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t1 VALUES(8503, 27060, 'twenty-seven thousand sixty');\nINSERT INTO t1 VALUES(8504, 70491, 'seventy thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(8505, 93371, 'ninety-three thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(8506, 65482, 'sixty-five thousand four hundred eighty-two');\nINSERT INTO t1 VALUES(8507, 32026, 'thirty-two thousand twenty-six');\nINSERT INTO t1 VALUES(8508, 6613, 'six thousand six hundred thirteen');\nINSERT INTO t1 VALUES(8509, 11039, 'eleven thousand thirty-nine');\nINSERT INTO t1 VALUES(8510, 65925, 'sixty-five thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(8511, 58508, 'fifty-eight thousand five hundred eight');\nINSERT INTO t1 VALUES(8512, 282, 'two hundred eighty-two');\nINSERT INTO t1 VALUES(8513, 27240, 'twenty-seven thousand two hundred forty');\nINSERT INTO t1 VALUES(8514, 26041, 'twenty-six thousand forty-one');\nINSERT INTO t1 VALUES(8515, 52351, 'fifty-two thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(8516, 73920, 'seventy-three thousand nine hundred twenty');\nINSERT INTO t1 VALUES(8517, 82633, 'eighty-two thousand six hundred thirty-three');\nINSERT INTO t1 VALUES(8518, 16675, 'sixteen thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(8519, 75676, 'seventy-five thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(8520, 80878, 'eighty thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8521, 72784, 'seventy-two thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(8522, 79174, 'seventy-nine thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(8523, 32684, 'thirty-two thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(8524, 2628, 'two thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(8525, 96878, 'ninety-six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8526, 4622, 'four thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(8527, 17707, 'seventeen thousand seven hundred seven');\nINSERT INTO t1 VALUES(8528, 35898, 'thirty-five thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(8529, 72117, 'seventy-two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(8530, 66538, 'sixty-six thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(8531, 71761, 'seventy-one thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(8532, 64682, 'sixty-four thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(8533, 76545, 'seventy-six thousand five hundred forty-five');\nINSERT INTO t1 VALUES(8534, 92698, 'ninety-two thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(8535, 67358, 'sixty-seven thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(8536, 38385, 'thirty-eight thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(8537, 93687, 'ninety-three thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(8538, 4009, 'four thousand nine');\nINSERT INTO t1 VALUES(8539, 61389, 'sixty-one thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(8540, 62311, 'sixty-two thousand three hundred eleven');\nINSERT INTO t1 VALUES(8541, 85369, 'eighty-five thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(8542, 1946, 'one thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(8543, 34446, 'thirty-four thousand four hundred forty-six');\nINSERT INTO t1 VALUES(8544, 14799, 'fourteen thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(8545, 68194, 'sixty-eight thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(8546, 83622, 'eighty-three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(8547, 93622, 'ninety-three thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(8548, 55555, 'fifty-five thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(8549, 9431, 'nine thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8550, 63543, 'sixty-three thousand five hundred forty-three');\nINSERT INTO t1 VALUES(8551, 91414, 'ninety-one thousand four hundred fourteen');\nINSERT INTO t1 VALUES(8552, 83234, 'eighty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(8553, 2897, 'two thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(8554, 49155, 'forty-nine thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8555, 3452, 'three thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(8556, 66640, 'sixty-six thousand six hundred forty');\nINSERT INTO t1 VALUES(8557, 1718, 'one thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8558, 16776, 'sixteen thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(8559, 25667, 'twenty-five thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(8560, 25612, 'twenty-five thousand six hundred twelve');\nINSERT INTO t1 VALUES(8561, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(8562, 904, 'nine hundred four');\nINSERT INTO t1 VALUES(8563, 26901, 'twenty-six thousand nine hundred one');\nINSERT INTO t1 VALUES(8564, 15031, 'fifteen thousand thirty-one');\nINSERT INTO t1 VALUES(8565, 64921, 'sixty-four thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(8566, 8664, 'eight thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(8567, 81842, 'eighty-one thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8568, 46878, 'forty-six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8569, 25906, 'twenty-five thousand nine hundred six');\nINSERT INTO t1 VALUES(8570, 8072, 'eight thousand seventy-two');\nINSERT INTO t1 VALUES(8571, 48290, 'forty-eight thousand two hundred ninety');\nINSERT INTO t1 VALUES(8572, 45233, 'forty-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(8573, 56852, 'fifty-six thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(8574, 61015, 'sixty-one thousand fifteen');\nINSERT INTO t1 VALUES(8575, 26241, 'twenty-six thousand two hundred forty-one');\nINSERT INTO t1 VALUES(8576, 16009, 'sixteen thousand nine');\nINSERT INTO t1 VALUES(8577, 49416, 'forty-nine thousand four hundred sixteen');\nINSERT INTO t1 VALUES(8578, 55326, 'fifty-five thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(8579, 19009, 'nineteen thousand nine');\nINSERT INTO t1 VALUES(8580, 40436, 'forty thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(8581, 75391, 'seventy-five thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(8582, 43693, 'forty-three thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(8583, 29349, 'twenty-nine thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(8584, 75536, 'seventy-five thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(8585, 13748, 'thirteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(8586, 37649, 'thirty-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(8587, 32811, 'thirty-two thousand eight hundred eleven');\nINSERT INTO t1 VALUES(8588, 89805, 'eighty-nine thousand eight hundred five');\nINSERT INTO t1 VALUES(8589, 10963, 'ten thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(8590, 83431, 'eighty-three thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8591, 83364, 'eighty-three thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(8592, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t1 VALUES(8593, 33225, 'thirty-three thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(8594, 30865, 'thirty thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(8595, 68031, 'sixty-eight thousand thirty-one');\nINSERT INTO t1 VALUES(8596, 40547, 'forty thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(8597, 41094, 'forty-one thousand ninety-four');\nINSERT INTO t1 VALUES(8598, 55991, 'fifty-five thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(8599, 70823, 'seventy thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(8600, 94694, 'ninety-four thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(8601, 76537, 'seventy-six thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8602, 73641, 'seventy-three thousand six hundred forty-one');\nINSERT INTO t1 VALUES(8603, 27127, 'twenty-seven thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(8604, 4127, 'four thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(8605, 53606, 'fifty-three thousand six hundred six');\nINSERT INTO t1 VALUES(8606, 80417, 'eighty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(8607, 15446, 'fifteen thousand four hundred forty-six');\nINSERT INTO t1 VALUES(8608, 73223, 'seventy-three thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(8609, 45691, 'forty-five thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(8610, 68767, 'sixty-eight thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(8611, 49386, 'forty-nine thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(8612, 26270, 'twenty-six thousand two hundred seventy');\nINSERT INTO t1 VALUES(8613, 86756, 'eighty-six thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(8614, 37418, 'thirty-seven thousand four hundred eighteen');\nINSERT INTO t1 VALUES(8615, 41824, 'forty-one thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(8616, 84530, 'eighty-four thousand five hundred thirty');\nINSERT INTO t1 VALUES(8617, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(8618, 32567, 'thirty-two thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(8619, 32515, 'thirty-two thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8620, 33600, 'thirty-three thousand six hundred');\nINSERT INTO t1 VALUES(8621, 73741, 'seventy-three thousand seven hundred forty-one');\nINSERT INTO t1 VALUES(8622, 26971, 'twenty-six thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(8623, 11610, 'eleven thousand six hundred ten');\nINSERT INTO t1 VALUES(8624, 61357, 'sixty-one thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(8625, 32783, 'thirty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(8626, 13960, 'thirteen thousand nine hundred sixty');\nINSERT INTO t1 VALUES(8627, 14267, 'fourteen thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(8628, 48587, 'forty-eight thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(8629, 34884, 'thirty-four thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(8630, 15222, 'fifteen thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(8631, 87880, 'eighty-seven thousand eight hundred eighty');\nINSERT INTO t1 VALUES(8632, 64396, 'sixty-four thousand three hundred ninety-six');\nINSERT INTO t1 VALUES(8633, 71618, 'seventy-one thousand six hundred eighteen');\nINSERT INTO t1 VALUES(8634, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t1 VALUES(8635, 19655, 'nineteen thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(8636, 31051, 'thirty-one thousand fifty-one');\nINSERT INTO t1 VALUES(8637, 48566, 'forty-eight thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(8638, 97369, 'ninety-seven thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(8639, 98382, 'ninety-eight thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(8640, 56524, 'fifty-six thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(8641, 92346, 'ninety-two thousand three hundred forty-six');\nINSERT INTO t1 VALUES(8642, 24398, 'twenty-four thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(8643, 62719, 'sixty-two thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(8644, 78673, 'seventy-eight thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(8645, 85012, 'eighty-five thousand twelve');\nINSERT INTO t1 VALUES(8646, 882, 'eight hundred eighty-two');\nINSERT INTO t1 VALUES(8647, 31729, 'thirty-one thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(8648, 81870, 'eighty-one thousand eight hundred seventy');\nINSERT INTO t1 VALUES(8649, 69970, 'sixty-nine thousand nine hundred seventy');\nINSERT INTO t1 VALUES(8650, 22099, 'twenty-two thousand ninety-nine');\nINSERT INTO t1 VALUES(8651, 72459, 'seventy-two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(8652, 7886, 'seven thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(8653, 47714, 'forty-seven thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(8654, 31019, 'thirty-one thousand nineteen');\nINSERT INTO t1 VALUES(8655, 85498, 'eighty-five thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(8656, 45376, 'forty-five thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(8657, 38233, 'thirty-eight thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(8658, 53408, 'fifty-three thousand four hundred eight');\nINSERT INTO t1 VALUES(8659, 57827, 'fifty-seven thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(8660, 80599, 'eighty thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(8661, 87019, 'eighty-seven thousand nineteen');\nINSERT INTO t1 VALUES(8662, 89214, 'eighty-nine thousand two hundred fourteen');\nINSERT INTO t1 VALUES(8663, 15743, 'fifteen thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(8664, 78152, 'seventy-eight thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(8665, 18657, 'eighteen thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(8666, 72702, 'seventy-two thousand seven hundred two');\nINSERT INTO t1 VALUES(8667, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t1 VALUES(8668, 20121, 'twenty thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(8669, 69314, 'sixty-nine thousand three hundred fourteen');\nINSERT INTO t1 VALUES(8670, 47219, 'forty-seven thousand two hundred nineteen');\nINSERT INTO t1 VALUES(8671, 25109, 'twenty-five thousand one hundred nine');\nINSERT INTO t1 VALUES(8672, 26825, 'twenty-six thousand eight hundred twenty-five');\nINSERT INTO t1 VALUES(8673, 70221, 'seventy thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(8674, 38936, 'thirty-eight thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(8675, 5865, 'five thousand eight hundred sixty-five');\nINSERT INTO t1 VALUES(8676, 85839, 'eighty-five thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(8677, 14046, 'fourteen thousand forty-six');\nINSERT INTO t1 VALUES(8678, 39217, 'thirty-nine thousand two hundred seventeen');\nINSERT INTO t1 VALUES(8679, 52099, 'fifty-two thousand ninety-nine');\nINSERT INTO t1 VALUES(8680, 82628, 'eighty-two thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(8681, 3573, 'three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(8682, 69047, 'sixty-nine thousand forty-seven');\nINSERT INTO t1 VALUES(8683, 45750, 'forty-five thousand seven hundred fifty');\nINSERT INTO t1 VALUES(8684, 69158, 'sixty-nine thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(8685, 79437, 'seventy-nine thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(8686, 75415, 'seventy-five thousand four hundred fifteen');\nINSERT INTO t1 VALUES(8687, 88418, 'eighty-eight thousand four hundred eighteen');\nINSERT INTO t1 VALUES(8688, 86518, 'eighty-six thousand five hundred eighteen');\nINSERT INTO t1 VALUES(8689, 86474, 'eighty-six thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(8690, 25703, 'twenty-five thousand seven hundred three');\nINSERT INTO t1 VALUES(8691, 57655, 'fifty-seven thousand six hundred fifty-five');\nINSERT INTO t1 VALUES(8692, 66491, 'sixty-six thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(8693, 96370, 'ninety-six thousand three hundred seventy');\nINSERT INTO t1 VALUES(8694, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8695, 63020, 'sixty-three thousand twenty');\nINSERT INTO t1 VALUES(8696, 57858, 'fifty-seven thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(8697, 11788, 'eleven thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(8698, 31690, 'thirty-one thousand six hundred ninety');\nINSERT INTO t1 VALUES(8699, 61600, 'sixty-one thousand six hundred');\nINSERT INTO t1 VALUES(8700, 48597, 'forty-eight thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(8701, 40679, 'forty thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(8702, 59265, 'fifty-nine thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(8703, 75873, 'seventy-five thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(8704, 44527, 'forty-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(8705, 69765, 'sixty-nine thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(8706, 96973, 'ninety-six thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(8707, 53747, 'fifty-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(8708, 54431, 'fifty-four thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8709, 10026, 'ten thousand twenty-six');\nINSERT INTO t1 VALUES(8710, 53208, 'fifty-three thousand two hundred eight');\nINSERT INTO t1 VALUES(8711, 10339, 'ten thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(8712, 14835, 'fourteen thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(8713, 68463, 'sixty-eight thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(8714, 83520, 'eighty-three thousand five hundred twenty');\nINSERT INTO t1 VALUES(8715, 95294, 'ninety-five thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(8716, 30982, 'thirty thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(8717, 9889, 'nine thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(8718, 61939, 'sixty-one thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(8719, 42544, 'forty-two thousand five hundred forty-four');\nINSERT INTO t1 VALUES(8720, 91852, 'ninety-one thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(8721, 65872, 'sixty-five thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(8722, 96842, 'ninety-six thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8723, 78749, 'seventy-eight thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(8724, 37733, 'thirty-seven thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8725, 57498, 'fifty-seven thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(8726, 94314, 'ninety-four thousand three hundred fourteen');\nINSERT INTO t1 VALUES(8727, 75159, 'seventy-five thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(8728, 50083, 'fifty thousand eighty-three');\nINSERT INTO t1 VALUES(8729, 34706, 'thirty-four thousand seven hundred six');\nINSERT INTO t1 VALUES(8730, 11032, 'eleven thousand thirty-two');\nINSERT INTO t1 VALUES(8731, 2999, 'two thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(8732, 92259, 'ninety-two thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(8733, 47808, 'forty-seven thousand eight hundred eight');\nINSERT INTO t1 VALUES(8734, 74638, 'seventy-four thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(8735, 47624, 'forty-seven thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(8736, 7692, 'seven thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(8737, 18359, 'eighteen thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(8738, 57751, 'fifty-seven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(8739, 40324, 'forty thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(8740, 26688, 'twenty-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(8741, 2184, 'two thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(8742, 87713, 'eighty-seven thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(8743, 98200, 'ninety-eight thousand two hundred');\nINSERT INTO t1 VALUES(8744, 62643, 'sixty-two thousand six hundred forty-three');\nINSERT INTO t1 VALUES(8745, 58770, 'fifty-eight thousand seven hundred seventy');\nINSERT INTO t1 VALUES(8746, 25753, 'twenty-five thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(8747, 4907, 'four thousand nine hundred seven');\nINSERT INTO t1 VALUES(8748, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t1 VALUES(8749, 11141, 'eleven thousand one hundred forty-one');\nINSERT INTO t1 VALUES(8750, 64256, 'sixty-four thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(8751, 42537, 'forty-two thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8752, 48904, 'forty-eight thousand nine hundred four');\nINSERT INTO t1 VALUES(8753, 68681, 'sixty-eight thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(8754, 94961, 'ninety-four thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(8755, 39700, 'thirty-nine thousand seven hundred');\nINSERT INTO t1 VALUES(8756, 20941, 'twenty thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(8757, 85464, 'eighty-five thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(8758, 85147, 'eighty-five thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(8759, 35672, 'thirty-five thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(8760, 68155, 'sixty-eight thousand one hundred fifty-five');\nINSERT INTO t1 VALUES(8761, 59749, 'fifty-nine thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(8762, 76977, 'seventy-six thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(8763, 33485, 'thirty-three thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(8764, 78253, 'seventy-eight thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(8765, 51673, 'fifty-one thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(8766, 28183, 'twenty-eight thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(8767, 33160, 'thirty-three thousand one hundred sixty');\nINSERT INTO t1 VALUES(8768, 90551, 'ninety thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(8769, 95160, 'ninety-five thousand one hundred sixty');\nINSERT INTO t1 VALUES(8770, 28305, 'twenty-eight thousand three hundred five');\nINSERT INTO t1 VALUES(8771, 76924, 'seventy-six thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(8772, 26574, 'twenty-six thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(8773, 4549, 'four thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(8774, 701, 'seven hundred one');\nINSERT INTO t1 VALUES(8775, 32740, 'thirty-two thousand seven hundred forty');\nINSERT INTO t1 VALUES(8776, 49294, 'forty-nine thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(8777, 85439, 'eighty-five thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(8778, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(8779, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t1 VALUES(8780, 51231, 'fifty-one thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(8781, 78981, 'seventy-eight thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(8782, 71960, 'seventy-one thousand nine hundred sixty');\nINSERT INTO t1 VALUES(8783, 80518, 'eighty thousand five hundred eighteen');\nINSERT INTO t1 VALUES(8784, 55691, 'fifty-five thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(8785, 24598, 'twenty-four thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(8786, 34686, 'thirty-four thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(8787, 91541, 'ninety-one thousand five hundred forty-one');\nINSERT INTO t1 VALUES(8788, 71566, 'seventy-one thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(8789, 94934, 'ninety-four thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(8790, 8406, 'eight thousand four hundred six');\nINSERT INTO t1 VALUES(8791, 10144, 'ten thousand one hundred forty-four');\nINSERT INTO t1 VALUES(8792, 64286, 'sixty-four thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(8793, 40614, 'forty thousand six hundred fourteen');\nINSERT INTO t1 VALUES(8794, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t1 VALUES(8795, 53610, 'fifty-three thousand six hundred ten');\nINSERT INTO t1 VALUES(8796, 11270, 'eleven thousand two hundred seventy');\nINSERT INTO t1 VALUES(8797, 12663, 'twelve thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(8798, 48236, 'forty-eight thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(8799, 19399, 'nineteen thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(8800, 71957, 'seventy-one thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(8801, 52223, 'fifty-two thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(8802, 44368, 'forty-four thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(8803, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(8804, 68326, 'sixty-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(8805, 1830, 'one thousand eight hundred thirty');\nINSERT INTO t1 VALUES(8806, 57308, 'fifty-seven thousand three hundred eight');\nINSERT INTO t1 VALUES(8807, 36276, 'thirty-six thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8808, 55631, 'fifty-five thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(8809, 9015, 'nine thousand fifteen');\nINSERT INTO t1 VALUES(8810, 72513, 'seventy-two thousand five hundred thirteen');\nINSERT INTO t1 VALUES(8811, 29675, 'twenty-nine thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(8812, 52515, 'fifty-two thousand five hundred fifteen');\nINSERT INTO t1 VALUES(8813, 22657, 'twenty-two thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(8814, 57285, 'fifty-seven thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8815, 53314, 'fifty-three thousand three hundred fourteen');\nINSERT INTO t1 VALUES(8816, 28590, 'twenty-eight thousand five hundred ninety');\nINSERT INTO t1 VALUES(8817, 20613, 'twenty thousand six hundred thirteen');\nINSERT INTO t1 VALUES(8818, 99497, 'ninety-nine thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(8819, 61554, 'sixty-one thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(8820, 34483, 'thirty-four thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(8821, 96089, 'ninety-six thousand eighty-nine');\nINSERT INTO t1 VALUES(8822, 37177, 'thirty-seven thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(8823, 880, 'eight hundred eighty');\nINSERT INTO t1 VALUES(8824, 18842, 'eighteen thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8825, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(8826, 14575, 'fourteen thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(8827, 68838, 'sixty-eight thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(8828, 7458, 'seven thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(8829, 58699, 'fifty-eight thousand six hundred ninety-nine');\nINSERT INTO t1 VALUES(8830, 88276, 'eighty-eight thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(8831, 93750, 'ninety-three thousand seven hundred fifty');\nINSERT INTO t1 VALUES(8832, 35251, 'thirty-five thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(8833, 210, 'two hundred ten');\nINSERT INTO t1 VALUES(8834, 78018, 'seventy-eight thousand eighteen');\nINSERT INTO t1 VALUES(8835, 6966, 'six thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(8836, 16429, 'sixteen thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(8837, 14358, 'fourteen thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(8838, 26015, 'twenty-six thousand fifteen');\nINSERT INTO t1 VALUES(8839, 39842, 'thirty-nine thousand eight hundred forty-two');\nINSERT INTO t1 VALUES(8840, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(8841, 80812, 'eighty thousand eight hundred twelve');\nINSERT INTO t1 VALUES(8842, 67240, 'sixty-seven thousand two hundred forty');\nINSERT INTO t1 VALUES(8843, 94285, 'ninety-four thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(8844, 55384, 'fifty-five thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(8845, 98392, 'ninety-eight thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(8846, 82299, 'eighty-two thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(8847, 35718, 'thirty-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(8848, 62221, 'sixty-two thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(8849, 19205, 'nineteen thousand two hundred five');\nINSERT INTO t1 VALUES(8850, 88084, 'eighty-eight thousand eighty-four');\nINSERT INTO t1 VALUES(8851, 74561, 'seventy-four thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(8852, 85752, 'eighty-five thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(8853, 56172, 'fifty-six thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(8854, 61917, 'sixty-one thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(8855, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(8856, 69536, 'sixty-nine thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(8857, 55579, 'fifty-five thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(8858, 66126, 'sixty-six thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(8859, 2556, 'two thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(8860, 89574, 'eighty-nine thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(8861, 88471, 'eighty-eight thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(8862, 36197, 'thirty-six thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(8863, 81733, 'eighty-one thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(8864, 34762, 'thirty-four thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(8865, 84358, 'eighty-four thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(8866, 69644, 'sixty-nine thousand six hundred forty-four');\nINSERT INTO t1 VALUES(8867, 6933, 'six thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(8868, 73878, 'seventy-three thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(8869, 22783, 'twenty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(8870, 90731, 'ninety thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(8871, 59474, 'fifty-nine thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(8872, 54650, 'fifty-four thousand six hundred fifty');\nINSERT INTO t1 VALUES(8873, 48841, 'forty-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(8874, 58843, 'fifty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(8875, 52220, 'fifty-two thousand two hundred twenty');\nINSERT INTO t1 VALUES(8876, 70624, 'seventy thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(8877, 20497, 'twenty thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(8878, 49487, 'forty-nine thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(8879, 51597, 'fifty-one thousand five hundred ninety-seven');\nINSERT INTO t1 VALUES(8880, 3604, 'three thousand six hundred four');\nINSERT INTO t1 VALUES(8881, 88484, 'eighty-eight thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(8882, 89301, 'eighty-nine thousand three hundred one');\nINSERT INTO t1 VALUES(8883, 82644, 'eighty-two thousand six hundred forty-four');\nINSERT INTO t1 VALUES(8884, 82481, 'eighty-two thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(8885, 31614, 'thirty-one thousand six hundred fourteen');\nINSERT INTO t1 VALUES(8886, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t1 VALUES(8887, 53165, 'fifty-three thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(8888, 58747, 'fifty-eight thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(8889, 94031, 'ninety-four thousand thirty-one');\nINSERT INTO t1 VALUES(8890, 83803, 'eighty-three thousand eight hundred three');\nINSERT INTO t1 VALUES(8891, 11730, 'eleven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(8892, 85537, 'eighty-five thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(8893, 99226, 'ninety-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(8894, 65156, 'sixty-five thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(8895, 30206, 'thirty thousand two hundred six');\nINSERT INTO t1 VALUES(8896, 39619, 'thirty-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(8897, 98731, 'ninety-eight thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(8898, 3652, 'three thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(8899, 43619, 'forty-three thousand six hundred nineteen');\nINSERT INTO t1 VALUES(8900, 34954, 'thirty-four thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(8901, 4934, 'four thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(8902, 3003, 'three thousand three');\nINSERT INTO t1 VALUES(8903, 37261, 'thirty-seven thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(8904, 98834, 'ninety-eight thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(8905, 90488, 'ninety thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(8906, 2589, 'two thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8907, 26091, 'twenty-six thousand ninety-one');\nINSERT INTO t1 VALUES(8908, 69473, 'sixty-nine thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(8909, 29453, 'twenty-nine thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(8910, 92714, 'ninety-two thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(8911, 88619, 'eighty-eight thousand six hundred nineteen');\nINSERT INTO t1 VALUES(8912, 47777, 'forty-seven thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(8913, 58762, 'fifty-eight thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(8914, 63883, 'sixty-three thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(8915, 47167, 'forty-seven thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(8916, 69351, 'sixty-nine thousand three hundred fifty-one');\nINSERT INTO t1 VALUES(8917, 425, 'four hundred twenty-five');\nINSERT INTO t1 VALUES(8918, 96008, 'ninety-six thousand eight');\nINSERT INTO t1 VALUES(8919, 53852, 'fifty-three thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(8920, 78781, 'seventy-eight thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(8921, 56693, 'fifty-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(8922, 17364, 'seventeen thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(8923, 9964, 'nine thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(8924, 48135, 'forty-eight thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(8925, 81819, 'eighty-one thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(8926, 96110, 'ninety-six thousand one hundred ten');\nINSERT INTO t1 VALUES(8927, 27779, 'twenty-seven thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(8928, 97967, 'ninety-seven thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(8929, 79495, 'seventy-nine thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(8930, 71892, 'seventy-one thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(8931, 12272, 'twelve thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(8932, 3993, 'three thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(8933, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(8934, 86994, 'eighty-six thousand nine hundred ninety-four');\nINSERT INTO t1 VALUES(8935, 42421, 'forty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(8936, 57377, 'fifty-seven thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(8937, 67224, 'sixty-seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(8938, 60444, 'sixty thousand four hundred forty-four');\nINSERT INTO t1 VALUES(8939, 3457, 'three thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(8940, 86250, 'eighty-six thousand two hundred fifty');\nINSERT INTO t1 VALUES(8941, 96085, 'ninety-six thousand eighty-five');\nINSERT INTO t1 VALUES(8942, 66866, 'sixty-six thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(8943, 55275, 'fifty-five thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(8944, 79807, 'seventy-nine thousand eight hundred seven');\nINSERT INTO t1 VALUES(8945, 37799, 'thirty-seven thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(8946, 77676, 'seventy-seven thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(8947, 61377, 'sixty-one thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(8948, 78452, 'seventy-eight thousand four hundred fifty-two');\nINSERT INTO t1 VALUES(8949, 77354, 'seventy-seven thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(8950, 23296, 'twenty-three thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(8951, 67611, 'sixty-seven thousand six hundred eleven');\nINSERT INTO t1 VALUES(8952, 8856, 'eight thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(8953, 85301, 'eighty-five thousand three hundred one');\nINSERT INTO t1 VALUES(8954, 45603, 'forty-five thousand six hundred three');\nINSERT INTO t1 VALUES(8955, 83552, 'eighty-three thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(8956, 67500, 'sixty-seven thousand five hundred');\nINSERT INTO t1 VALUES(8957, 70408, 'seventy thousand four hundred eight');\nINSERT INTO t1 VALUES(8958, 66487, 'sixty-six thousand four hundred eighty-seven');\nINSERT INTO t1 VALUES(8959, 89129, 'eighty-nine thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(8960, 52042, 'fifty-two thousand forty-two');\nINSERT INTO t1 VALUES(8961, 97591, 'ninety-seven thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(8962, 6453, 'six thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(8963, 87536, 'eighty-seven thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(8964, 74148, 'seventy-four thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(8965, 60595, 'sixty thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(8966, 50917, 'fifty thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(8967, 43198, 'forty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(8968, 28830, 'twenty-eight thousand eight hundred thirty');\nINSERT INTO t1 VALUES(8969, 95466, 'ninety-five thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(8970, 84053, 'eighty-four thousand fifty-three');\nINSERT INTO t1 VALUES(8971, 4692, 'four thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(8972, 49695, 'forty-nine thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(8973, 13298, 'thirteen thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(8974, 44981, 'forty-four thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(8975, 41475, 'forty-one thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(8976, 71260, 'seventy-one thousand two hundred sixty');\nINSERT INTO t1 VALUES(8977, 78493, 'seventy-eight thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(8978, 46212, 'forty-six thousand two hundred twelve');\nINSERT INTO t1 VALUES(8979, 48142, 'forty-eight thousand one hundred forty-two');\nINSERT INTO t1 VALUES(8980, 58211, 'fifty-eight thousand two hundred eleven');\nINSERT INTO t1 VALUES(8981, 13142, 'thirteen thousand one hundred forty-two');\nINSERT INTO t1 VALUES(8982, 93488, 'ninety-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(8983, 77180, 'seventy-seven thousand one hundred eighty');\nINSERT INTO t1 VALUES(8984, 99589, 'ninety-nine thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(8985, 4102, 'four thousand one hundred two');\nINSERT INTO t1 VALUES(8986, 99449, 'ninety-nine thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(8987, 29479, 'twenty-nine thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(8988, 10558, 'ten thousand five hundred fifty-eight');\nINSERT INTO t1 VALUES(8989, 1320, 'one thousand three hundred twenty');\nINSERT INTO t1 VALUES(8990, 92412, 'ninety-two thousand four hundred twelve');\nINSERT INTO t1 VALUES(8991, 90984, 'ninety thousand nine hundred eighty-four');\nINSERT INTO t1 VALUES(8992, 97962, 'ninety-seven thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(8993, 50, 'fifty');\nINSERT INTO t1 VALUES(8994, 56346, 'fifty-six thousand three hundred forty-six');\nINSERT INTO t1 VALUES(8995, 97462, 'ninety-seven thousand four hundred sixty-two');\nINSERT INTO t1 VALUES(8996, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(8997, 64431, 'sixty-four thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(8998, 91146, 'ninety-one thousand one hundred forty-six');\nINSERT INTO t1 VALUES(8999, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(9000, 25283, 'twenty-five thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(9001, 31615, 'thirty-one thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9002, 21853, 'twenty-one thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(9003, 95123, 'ninety-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(9004, 67677, 'sixty-seven thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(9005, 35087, 'thirty-five thousand eighty-seven');\nINSERT INTO t1 VALUES(9006, 79790, 'seventy-nine thousand seven hundred ninety');\nINSERT INTO t1 VALUES(9007, 24021, 'twenty-four thousand twenty-one');\nINSERT INTO t1 VALUES(9008, 46498, 'forty-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9009, 41891, 'forty-one thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(9010, 49721, 'forty-nine thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(9011, 55596, 'fifty-five thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(9012, 93659, 'ninety-three thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(9013, 80420, 'eighty thousand four hundred twenty');\nINSERT INTO t1 VALUES(9014, 29544, 'twenty-nine thousand five hundred forty-four');\nINSERT INTO t1 VALUES(9015, 63464, 'sixty-three thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(9016, 79533, 'seventy-nine thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(9017, 65348, 'sixty-five thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(9018, 66977, 'sixty-six thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(9019, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(9020, 91206, 'ninety-one thousand two hundred six');\nINSERT INTO t1 VALUES(9021, 49224, 'forty-nine thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(9022, 79543, 'seventy-nine thousand five hundred forty-three');\nINSERT INTO t1 VALUES(9023, 37417, 'thirty-seven thousand four hundred seventeen');\nINSERT INTO t1 VALUES(9024, 16324, 'sixteen thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(9025, 2763, 'two thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(9026, 75228, 'seventy-five thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(9027, 94151, 'ninety-four thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(9028, 60686, 'sixty thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(9029, 62740, 'sixty-two thousand seven hundred forty');\nINSERT INTO t1 VALUES(9030, 73968, 'seventy-three thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(9031, 54685, 'fifty-four thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(9032, 37135, 'thirty-seven thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(9033, 87186, 'eighty-seven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(9034, 10705, 'ten thousand seven hundred five');\nINSERT INTO t1 VALUES(9035, 11630, 'eleven thousand six hundred thirty');\nINSERT INTO t1 VALUES(9036, 52779, 'fifty-two thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(9037, 43195, 'forty-three thousand one hundred ninety-five');\nINSERT INTO t1 VALUES(9038, 21498, 'twenty-one thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9039, 81707, 'eighty-one thousand seven hundred seven');\nINSERT INTO t1 VALUES(9040, 61777, 'sixty-one thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(9041, 95233, 'ninety-five thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(9042, 72200, 'seventy-two thousand two hundred');\nINSERT INTO t1 VALUES(9043, 52924, 'fifty-two thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(9044, 33318, 'thirty-three thousand three hundred eighteen');\nINSERT INTO t1 VALUES(9045, 49694, 'forty-nine thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(9046, 6234, 'six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(9047, 50370, 'fifty thousand three hundred seventy');\nINSERT INTO t1 VALUES(9048, 65729, 'sixty-five thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(9049, 14306, 'fourteen thousand three hundred six');\nINSERT INTO t1 VALUES(9050, 8983, 'eight thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(9051, 21977, 'twenty-one thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(9052, 22754, 'twenty-two thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(9053, 64444, 'sixty-four thousand four hundred forty-four');\nINSERT INTO t1 VALUES(9054, 46440, 'forty-six thousand four hundred forty');\nINSERT INTO t1 VALUES(9055, 36223, 'thirty-six thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(9056, 8934, 'eight thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(9057, 7680, 'seven thousand six hundred eighty');\nINSERT INTO t1 VALUES(9058, 17683, 'seventeen thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(9059, 52572, 'fifty-two thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(9060, 87574, 'eighty-seven thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(9061, 34111, 'thirty-four thousand one hundred eleven');\nINSERT INTO t1 VALUES(9062, 18909, 'eighteen thousand nine hundred nine');\nINSERT INTO t1 VALUES(9063, 86215, 'eighty-six thousand two hundred fifteen');\nINSERT INTO t1 VALUES(9064, 84824, 'eighty-four thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(9065, 49276, 'forty-nine thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(9066, 26668, 'twenty-six thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(9067, 75857, 'seventy-five thousand eight hundred fifty-seven');\nINSERT INTO t1 VALUES(9068, 99456, 'ninety-nine thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9069, 57375, 'fifty-seven thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(9070, 26330, 'twenty-six thousand three hundred thirty');\nINSERT INTO t1 VALUES(9071, 26790, 'twenty-six thousand seven hundred ninety');\nINSERT INTO t1 VALUES(9072, 15334, 'fifteen thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(9073, 42690, 'forty-two thousand six hundred ninety');\nINSERT INTO t1 VALUES(9074, 26198, 'twenty-six thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(9075, 87505, 'eighty-seven thousand five hundred five');\nINSERT INTO t1 VALUES(9076, 6196, 'six thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9077, 75123, 'seventy-five thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(9078, 70223, 'seventy thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(9079, 40170, 'forty thousand one hundred seventy');\nINSERT INTO t1 VALUES(9080, 30460, 'thirty thousand four hundred sixty');\nINSERT INTO t1 VALUES(9081, 76895, 'seventy-six thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(9082, 33435, 'thirty-three thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(9083, 26389, 'twenty-six thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(9084, 60095, 'sixty thousand ninety-five');\nINSERT INTO t1 VALUES(9085, 58670, 'fifty-eight thousand six hundred seventy');\nINSERT INTO t1 VALUES(9086, 68817, 'sixty-eight thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(9087, 48188, 'forty-eight thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(9088, 28911, 'twenty-eight thousand nine hundred eleven');\nINSERT INTO t1 VALUES(9089, 67075, 'sixty-seven thousand seventy-five');\nINSERT INTO t1 VALUES(9090, 11433, 'eleven thousand four hundred thirty-three');\nINSERT INTO t1 VALUES(9091, 62938, 'sixty-two thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(9092, 54750, 'fifty-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(9093, 14236, 'fourteen thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(9094, 15781, 'fifteen thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(9095, 25575, 'twenty-five thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(9096, 28818, 'twenty-eight thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9097, 9151, 'nine thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(9098, 59512, 'fifty-nine thousand five hundred twelve');\nINSERT INTO t1 VALUES(9099, 74106, 'seventy-four thousand one hundred six');\nINSERT INTO t1 VALUES(9100, 82669, 'eighty-two thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(9101, 61015, 'sixty-one thousand fifteen');\nINSERT INTO t1 VALUES(9102, 28128, 'twenty-eight thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(9103, 75150, 'seventy-five thousand one hundred fifty');\nINSERT INTO t1 VALUES(9104, 9027, 'nine thousand twenty-seven');\nINSERT INTO t1 VALUES(9105, 23880, 'twenty-three thousand eight hundred eighty');\nINSERT INTO t1 VALUES(9106, 40274, 'forty thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(9107, 73115, 'seventy-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(9108, 61485, 'sixty-one thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(9109, 25420, 'twenty-five thousand four hundred twenty');\nINSERT INTO t1 VALUES(9110, 66954, 'sixty-six thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(9111, 34886, 'thirty-four thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(9112, 91315, 'ninety-one thousand three hundred fifteen');\nINSERT INTO t1 VALUES(9113, 71897, 'seventy-one thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(9114, 20908, 'twenty thousand nine hundred eight');\nINSERT INTO t1 VALUES(9115, 71760, 'seventy-one thousand seven hundred sixty');\nINSERT INTO t1 VALUES(9116, 91845, 'ninety-one thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(9117, 50211, 'fifty thousand two hundred eleven');\nINSERT INTO t1 VALUES(9118, 70079, 'seventy thousand seventy-nine');\nINSERT INTO t1 VALUES(9119, 10289, 'ten thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(9120, 51887, 'fifty-one thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(9121, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t1 VALUES(9122, 26234, 'twenty-six thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(9123, 20601, 'twenty thousand six hundred one');\nINSERT INTO t1 VALUES(9124, 30266, 'thirty thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(9125, 98571, 'ninety-eight thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(9126, 40822, 'forty thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(9127, 1802, 'one thousand eight hundred two');\nINSERT INTO t1 VALUES(9128, 89150, 'eighty-nine thousand one hundred fifty');\nINSERT INTO t1 VALUES(9129, 70715, 'seventy thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(9130, 43967, 'forty-three thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(9131, 88634, 'eighty-eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9132, 10904, 'ten thousand nine hundred four');\nINSERT INTO t1 VALUES(9133, 39091, 'thirty-nine thousand ninety-one');\nINSERT INTO t1 VALUES(9134, 9817, 'nine thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(9135, 99261, 'ninety-nine thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(9136, 22716, 'twenty-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(9137, 5329, 'five thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(9138, 94621, 'ninety-four thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(9139, 98860, 'ninety-eight thousand eight hundred sixty');\nINSERT INTO t1 VALUES(9140, 48049, 'forty-eight thousand forty-nine');\nINSERT INTO t1 VALUES(9141, 97811, 'ninety-seven thousand eight hundred eleven');\nINSERT INTO t1 VALUES(9142, 63630, 'sixty-three thousand six hundred thirty');\nINSERT INTO t1 VALUES(9143, 62542, 'sixty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(9144, 62895, 'sixty-two thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(9145, 93466, 'ninety-three thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(9146, 69876, 'sixty-nine thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(9147, 3926, 'three thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(9148, 7599, 'seven thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(9149, 10103, 'ten thousand one hundred three');\nINSERT INTO t1 VALUES(9150, 53163, 'fifty-three thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(9151, 2708, 'two thousand seven hundred eight');\nINSERT INTO t1 VALUES(9152, 78197, 'seventy-eight thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(9153, 91219, 'ninety-one thousand two hundred nineteen');\nINSERT INTO t1 VALUES(9154, 77660, 'seventy-seven thousand six hundred sixty');\nINSERT INTO t1 VALUES(9155, 28410, 'twenty-eight thousand four hundred ten');\nINSERT INTO t1 VALUES(9156, 28616, 'twenty-eight thousand six hundred sixteen');\nINSERT INTO t1 VALUES(9157, 74226, 'seventy-four thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(9158, 78214, 'seventy-eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(9159, 76972, 'seventy-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9160, 33301, 'thirty-three thousand three hundred one');\nINSERT INTO t1 VALUES(9161, 11350, 'eleven thousand three hundred fifty');\nINSERT INTO t1 VALUES(9162, 75938, 'seventy-five thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(9163, 38335, 'thirty-eight thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(9164, 25562, 'twenty-five thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(9165, 64909, 'sixty-four thousand nine hundred nine');\nINSERT INTO t1 VALUES(9166, 12391, 'twelve thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(9167, 9745, 'nine thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(9168, 85491, 'eighty-five thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(9169, 39665, 'thirty-nine thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(9170, 38121, 'thirty-eight thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(9171, 18911, 'eighteen thousand nine hundred eleven');\nINSERT INTO t1 VALUES(9172, 49948, 'forty-nine thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(9173, 34231, 'thirty-four thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(9174, 17303, 'seventeen thousand three hundred three');\nINSERT INTO t1 VALUES(9175, 92880, 'ninety-two thousand eight hundred eighty');\nINSERT INTO t1 VALUES(9176, 12373, 'twelve thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(9177, 42849, 'forty-two thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(9178, 65940, 'sixty-five thousand nine hundred forty');\nINSERT INTO t1 VALUES(9179, 25496, 'twenty-five thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(9180, 22427, 'twenty-two thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(9181, 62492, 'sixty-two thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(9182, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t1 VALUES(9183, 28441, 'twenty-eight thousand four hundred forty-one');\nINSERT INTO t1 VALUES(9184, 41392, 'forty-one thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(9185, 23998, 'twenty-three thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9186, 23465, 'twenty-three thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(9187, 86701, 'eighty-six thousand seven hundred one');\nINSERT INTO t1 VALUES(9188, 3386, 'three thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(9189, 18479, 'eighteen thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(9190, 41028, 'forty-one thousand twenty-eight');\nINSERT INTO t1 VALUES(9191, 43534, 'forty-three thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(9192, 56910, 'fifty-six thousand nine hundred ten');\nINSERT INTO t1 VALUES(9193, 50972, 'fifty thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9194, 52735, 'fifty-two thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(9195, 83260, 'eighty-three thousand two hundred sixty');\nINSERT INTO t1 VALUES(9196, 28559, 'twenty-eight thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(9197, 53247, 'fifty-three thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9198, 50403, 'fifty thousand four hundred three');\nINSERT INTO t1 VALUES(9199, 13782, 'thirteen thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(9200, 78983, 'seventy-eight thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(9201, 62662, 'sixty-two thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(9202, 56112, 'fifty-six thousand one hundred twelve');\nINSERT INTO t1 VALUES(9203, 53341, 'fifty-three thousand three hundred forty-one');\nINSERT INTO t1 VALUES(9204, 56046, 'fifty-six thousand forty-six');\nINSERT INTO t1 VALUES(9205, 39859, 'thirty-nine thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9206, 39345, 'thirty-nine thousand three hundred forty-five');\nINSERT INTO t1 VALUES(9207, 29125, 'twenty-nine thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(9208, 71383, 'seventy-one thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(9209, 21209, 'twenty-one thousand two hundred nine');\nINSERT INTO t1 VALUES(9210, 28644, 'twenty-eight thousand six hundred forty-four');\nINSERT INTO t1 VALUES(9211, 2056, 'two thousand fifty-six');\nINSERT INTO t1 VALUES(9212, 53504, 'fifty-three thousand five hundred four');\nINSERT INTO t1 VALUES(9213, 81688, 'eighty-one thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(9214, 13042, 'thirteen thousand forty-two');\nINSERT INTO t1 VALUES(9215, 74513, 'seventy-four thousand five hundred thirteen');\nINSERT INTO t1 VALUES(9216, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t1 VALUES(9217, 76992, 'seventy-six thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(9218, 91703, 'ninety-one thousand seven hundred three');\nINSERT INTO t1 VALUES(9219, 88015, 'eighty-eight thousand fifteen');\nINSERT INTO t1 VALUES(9220, 77106, 'seventy-seven thousand one hundred six');\nINSERT INTO t1 VALUES(9221, 86493, 'eighty-six thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(9222, 63645, 'sixty-three thousand six hundred forty-five');\nINSERT INTO t1 VALUES(9223, 86859, 'eighty-six thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9224, 10078, 'ten thousand seventy-eight');\nINSERT INTO t1 VALUES(9225, 43217, 'forty-three thousand two hundred seventeen');\nINSERT INTO t1 VALUES(9226, 76779, 'seventy-six thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(9227, 5600, 'five thousand six hundred');\nINSERT INTO t1 VALUES(9228, 55313, 'fifty-five thousand three hundred thirteen');\nINSERT INTO t1 VALUES(9229, 52936, 'fifty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(9230, 92046, 'ninety-two thousand forty-six');\nINSERT INTO t1 VALUES(9231, 79926, 'seventy-nine thousand nine hundred twenty-six');\nINSERT INTO t1 VALUES(9232, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(9233, 57064, 'fifty-seven thousand sixty-four');\nINSERT INTO t1 VALUES(9234, 90770, 'ninety thousand seven hundred seventy');\nINSERT INTO t1 VALUES(9235, 19694, 'nineteen thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(9236, 46097, 'forty-six thousand ninety-seven');\nINSERT INTO t1 VALUES(9237, 13161, 'thirteen thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(9238, 66883, 'sixty-six thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(9239, 50249, 'fifty thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(9240, 3271, 'three thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(9241, 77250, 'seventy-seven thousand two hundred fifty');\nINSERT INTO t1 VALUES(9242, 95729, 'ninety-five thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(9243, 24615, 'twenty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9244, 75406, 'seventy-five thousand four hundred six');\nINSERT INTO t1 VALUES(9245, 80657, 'eighty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(9246, 45909, 'forty-five thousand nine hundred nine');\nINSERT INTO t1 VALUES(9247, 51913, 'fifty-one thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(9248, 56399, 'fifty-six thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(9249, 40598, 'forty thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(9250, 2367, 'two thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(9251, 40913, 'forty thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(9252, 45408, 'forty-five thousand four hundred eight');\nINSERT INTO t1 VALUES(9253, 72276, 'seventy-two thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(9254, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t1 VALUES(9255, 92166, 'ninety-two thousand one hundred sixty-six');\nINSERT INTO t1 VALUES(9256, 96531, 'ninety-six thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(9257, 5978, 'five thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(9258, 12250, 'twelve thousand two hundred fifty');\nINSERT INTO t1 VALUES(9259, 35918, 'thirty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(9260, 13437, 'thirteen thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(9261, 90089, 'ninety thousand eighty-nine');\nINSERT INTO t1 VALUES(9262, 47178, 'forty-seven thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(9263, 55228, 'fifty-five thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(9264, 52049, 'fifty-two thousand forty-nine');\nINSERT INTO t1 VALUES(9265, 83196, 'eighty-three thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9266, 8132, 'eight thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(9267, 66328, 'sixty-six thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(9268, 30816, 'thirty thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(9269, 4207, 'four thousand two hundred seven');\nINSERT INTO t1 VALUES(9270, 66573, 'sixty-six thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(9271, 12247, 'twelve thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9272, 54159, 'fifty-four thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(9273, 82359, 'eighty-two thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(9274, 11625, 'eleven thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(9275, 30885, 'thirty thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(9276, 67427, 'sixty-seven thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(9277, 4007, 'four thousand seven');\nINSERT INTO t1 VALUES(9278, 97631, 'ninety-seven thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(9279, 44260, 'forty-four thousand two hundred sixty');\nINSERT INTO t1 VALUES(9280, 55135, 'fifty-five thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(9281, 81190, 'eighty-one thousand one hundred ninety');\nINSERT INTO t1 VALUES(9282, 66839, 'sixty-six thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(9283, 27934, 'twenty-seven thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(9284, 18731, 'eighteen thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(9285, 94208, 'ninety-four thousand two hundred eight');\nINSERT INTO t1 VALUES(9286, 52814, 'fifty-two thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(9287, 98644, 'ninety-eight thousand six hundred forty-four');\nINSERT INTO t1 VALUES(9288, 57381, 'fifty-seven thousand three hundred eighty-one');\nINSERT INTO t1 VALUES(9289, 17086, 'seventeen thousand eighty-six');\nINSERT INTO t1 VALUES(9290, 44729, 'forty-four thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(9291, 2639, 'two thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(9292, 50145, 'fifty thousand one hundred forty-five');\nINSERT INTO t1 VALUES(9293, 33091, 'thirty-three thousand ninety-one');\nINSERT INTO t1 VALUES(9294, 45556, 'forty-five thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(9295, 77650, 'seventy-seven thousand six hundred fifty');\nINSERT INTO t1 VALUES(9296, 47839, 'forty-seven thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(9297, 93115, 'ninety-three thousand one hundred fifteen');\nINSERT INTO t1 VALUES(9298, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(9299, 61641, 'sixty-one thousand six hundred forty-one');\nINSERT INTO t1 VALUES(9300, 85550, 'eighty-five thousand five hundred fifty');\nINSERT INTO t1 VALUES(9301, 83776, 'eighty-three thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(9302, 32505, 'thirty-two thousand five hundred five');\nINSERT INTO t1 VALUES(9303, 9765, 'nine thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(9304, 27872, 'twenty-seven thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(9305, 79922, 'seventy-nine thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(9306, 98100, 'ninety-eight thousand one hundred');\nINSERT INTO t1 VALUES(9307, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(9308, 95257, 'ninety-five thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(9309, 19705, 'nineteen thousand seven hundred five');\nINSERT INTO t1 VALUES(9310, 64997, 'sixty-four thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(9311, 9415, 'nine thousand four hundred fifteen');\nINSERT INTO t1 VALUES(9312, 71354, 'seventy-one thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(9313, 44233, 'forty-four thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(9314, 40455, 'forty thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(9315, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(9316, 6639, 'six thousand six hundred thirty-nine');\nINSERT INTO t1 VALUES(9317, 79675, 'seventy-nine thousand six hundred seventy-five');\nINSERT INTO t1 VALUES(9318, 59829, 'fifty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(9319, 16217, 'sixteen thousand two hundred seventeen');\nINSERT INTO t1 VALUES(9320, 42887, 'forty-two thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(9321, 34873, 'thirty-four thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(9322, 72473, 'seventy-two thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(9323, 63394, 'sixty-three thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(9324, 97477, 'ninety-seven thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(9325, 12286, 'twelve thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(9326, 99485, 'ninety-nine thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(9327, 39123, 'thirty-nine thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(9328, 68293, 'sixty-eight thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(9329, 43766, 'forty-three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(9330, 83239, 'eighty-three thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(9331, 97581, 'ninety-seven thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(9332, 43944, 'forty-three thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(9333, 93403, 'ninety-three thousand four hundred three');\nINSERT INTO t1 VALUES(9334, 45278, 'forty-five thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(9335, 19337, 'nineteen thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(9336, 31930, 'thirty-one thousand nine hundred thirty');\nINSERT INTO t1 VALUES(9337, 42437, 'forty-two thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(9338, 78536, 'seventy-eight thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(9339, 81281, 'eighty-one thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(9340, 80627, 'eighty thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(9341, 9316, 'nine thousand three hundred sixteen');\nINSERT INTO t1 VALUES(9342, 31067, 'thirty-one thousand sixty-seven');\nINSERT INTO t1 VALUES(9343, 78795, 'seventy-eight thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(9344, 48606, 'forty-eight thousand six hundred six');\nINSERT INTO t1 VALUES(9345, 45890, 'forty-five thousand eight hundred ninety');\nINSERT INTO t1 VALUES(9346, 67929, 'sixty-seven thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(9347, 65859, 'sixty-five thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9348, 14214, 'fourteen thousand two hundred fourteen');\nINSERT INTO t1 VALUES(9349, 33244, 'thirty-three thousand two hundred forty-four');\nINSERT INTO t1 VALUES(9350, 24156, 'twenty-four thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(9351, 66176, 'sixty-six thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(9352, 93753, 'ninety-three thousand seven hundred fifty-three');\nINSERT INTO t1 VALUES(9353, 94059, 'ninety-four thousand fifty-nine');\nINSERT INTO t1 VALUES(9354, 76543, 'seventy-six thousand five hundred forty-three');\nINSERT INTO t1 VALUES(9355, 34897, 'thirty-four thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(9356, 87700, 'eighty-seven thousand seven hundred');\nINSERT INTO t1 VALUES(9357, 89599, 'eighty-nine thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(9358, 69225, 'sixty-nine thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(9359, 54500, 'fifty-four thousand five hundred');\nINSERT INTO t1 VALUES(9360, 89860, 'eighty-nine thousand eight hundred sixty');\nINSERT INTO t1 VALUES(9361, 73904, 'seventy-three thousand nine hundred four');\nINSERT INTO t1 VALUES(9362, 41617, 'forty-one thousand six hundred seventeen');\nINSERT INTO t1 VALUES(9363, 63878, 'sixty-three thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(9364, 56104, 'fifty-six thousand one hundred four');\nINSERT INTO t1 VALUES(9365, 3965, 'three thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(9366, 56764, 'fifty-six thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(9367, 2117, 'two thousand one hundred seventeen');\nINSERT INTO t1 VALUES(9368, 23297, 'twenty-three thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(9369, 12023, 'twelve thousand twenty-three');\nINSERT INTO t1 VALUES(9370, 18963, 'eighteen thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(9371, 17062, 'seventeen thousand sixty-two');\nINSERT INTO t1 VALUES(9372, 49555, 'forty-nine thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(9373, 67359, 'sixty-seven thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(9374, 39756, 'thirty-nine thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(9375, 47012, 'forty-seven thousand twelve');\nINSERT INTO t1 VALUES(9376, 76255, 'seventy-six thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(9377, 40509, 'forty thousand five hundred nine');\nINSERT INTO t1 VALUES(9378, 74199, 'seventy-four thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(9379, 3703, 'three thousand seven hundred three');\nINSERT INTO t1 VALUES(9380, 11186, 'eleven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(9381, 86532, 'eighty-six thousand five hundred thirty-two');\nINSERT INTO t1 VALUES(9382, 8227, 'eight thousand two hundred twenty-seven');\nINSERT INTO t1 VALUES(9383, 73547, 'seventy-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(9384, 29366, 'twenty-nine thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(9385, 80713, 'eighty thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(9386, 49622, 'forty-nine thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(9387, 3727, 'three thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(9388, 98788, 'ninety-eight thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(9389, 27701, 'twenty-seven thousand seven hundred one');\nINSERT INTO t1 VALUES(9390, 86569, 'eighty-six thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(9391, 9451, 'nine thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(9392, 91019, 'ninety-one thousand nineteen');\nINSERT INTO t1 VALUES(9393, 78862, 'seventy-eight thousand eight hundred sixty-two');\nINSERT INTO t1 VALUES(9394, 35893, 'thirty-five thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(9395, 61336, 'sixty-one thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(9396, 7478, 'seven thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(9397, 19012, 'nineteen thousand twelve');\nINSERT INTO t1 VALUES(9398, 22175, 'twenty-two thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(9399, 6981, 'six thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(9400, 93561, 'ninety-three thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(9401, 75376, 'seventy-five thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(9402, 4840, 'four thousand eight hundred forty');\nINSERT INTO t1 VALUES(9403, 55815, 'fifty-five thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(9404, 50935, 'fifty thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(9405, 43307, 'forty-three thousand three hundred seven');\nINSERT INTO t1 VALUES(9406, 79838, 'seventy-nine thousand eight hundred thirty-eight');\nINSERT INTO t1 VALUES(9407, 30091, 'thirty thousand ninety-one');\nINSERT INTO t1 VALUES(9408, 5500, 'five thousand five hundred');\nINSERT INTO t1 VALUES(9409, 51471, 'fifty-one thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(9410, 66900, 'sixty-six thousand nine hundred');\nINSERT INTO t1 VALUES(9411, 77259, 'seventy-seven thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(9412, 49807, 'forty-nine thousand eight hundred seven');\nINSERT INTO t1 VALUES(9413, 75864, 'seventy-five thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(9414, 84536, 'eighty-four thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(9415, 44604, 'forty-four thousand six hundred four');\nINSERT INTO t1 VALUES(9416, 83410, 'eighty-three thousand four hundred ten');\nINSERT INTO t1 VALUES(9417, 23198, 'twenty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(9418, 19745, 'nineteen thousand seven hundred forty-five');\nINSERT INTO t1 VALUES(9419, 35586, 'thirty-five thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(9420, 1654, 'one thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(9421, 31246, 'thirty-one thousand two hundred forty-six');\nINSERT INTO t1 VALUES(9422, 22938, 'twenty-two thousand nine hundred thirty-eight');\nINSERT INTO t1 VALUES(9423, 69002, 'sixty-nine thousand two');\nINSERT INTO t1 VALUES(9424, 179, 'one hundred seventy-nine');\nINSERT INTO t1 VALUES(9425, 18497, 'eighteen thousand four hundred ninety-seven');\nINSERT INTO t1 VALUES(9426, 46079, 'forty-six thousand seventy-nine');\nINSERT INTO t1 VALUES(9427, 92223, 'ninety-two thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(9428, 49971, 'forty-nine thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(9429, 78232, 'seventy-eight thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9430, 94465, 'ninety-four thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(9431, 11170, 'eleven thousand one hundred seventy');\nINSERT INTO t1 VALUES(9432, 28811, 'twenty-eight thousand eight hundred eleven');\nINSERT INTO t1 VALUES(9433, 45681, 'forty-five thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(9434, 63206, 'sixty-three thousand two hundred six');\nINSERT INTO t1 VALUES(9435, 83758, 'eighty-three thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9436, 8232, 'eight thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9437, 99831, 'ninety-nine thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(9438, 55476, 'fifty-five thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(9439, 72280, 'seventy-two thousand two hundred eighty');\nINSERT INTO t1 VALUES(9440, 20748, 'twenty thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(9441, 18852, 'eighteen thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(9442, 30881, 'thirty thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(9443, 56045, 'fifty-six thousand forty-five');\nINSERT INTO t1 VALUES(9444, 13070, 'thirteen thousand seventy');\nINSERT INTO t1 VALUES(9445, 32560, 'thirty-two thousand five hundred sixty');\nINSERT INTO t1 VALUES(9446, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9447, 42040, 'forty-two thousand forty');\nINSERT INTO t1 VALUES(9448, 2284, 'two thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(9449, 50338, 'fifty thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(9450, 56849, 'fifty-six thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(9451, 30909, 'thirty thousand nine hundred nine');\nINSERT INTO t1 VALUES(9452, 4475, 'four thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(9453, 45276, 'forty-five thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(9454, 20354, 'twenty thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(9455, 47206, 'forty-seven thousand two hundred six');\nINSERT INTO t1 VALUES(9456, 69317, 'sixty-nine thousand three hundred seventeen');\nINSERT INTO t1 VALUES(9457, 50022, 'fifty thousand twenty-two');\nINSERT INTO t1 VALUES(9458, 69982, 'sixty-nine thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(9459, 53998, 'fifty-three thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9460, 79095, 'seventy-nine thousand ninety-five');\nINSERT INTO t1 VALUES(9461, 97331, 'ninety-seven thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(9462, 13043, 'thirteen thousand forty-three');\nINSERT INTO t1 VALUES(9463, 77188, 'seventy-seven thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(9464, 66309, 'sixty-six thousand three hundred nine');\nINSERT INTO t1 VALUES(9465, 95429, 'ninety-five thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(9466, 99073, 'ninety-nine thousand seventy-three');\nINSERT INTO t1 VALUES(9467, 63559, 'sixty-three thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(9468, 84590, 'eighty-four thousand five hundred ninety');\nINSERT INTO t1 VALUES(9469, 80002, 'eighty thousand two');\nINSERT INTO t1 VALUES(9470, 67501, 'sixty-seven thousand five hundred one');\nINSERT INTO t1 VALUES(9471, 88645, 'eighty-eight thousand six hundred forty-five');\nINSERT INTO t1 VALUES(9472, 96629, 'ninety-six thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(9473, 36165, 'thirty-six thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(9474, 58357, 'fifty-eight thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(9475, 5289, 'five thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(9476, 4103, 'four thousand one hundred three');\nINSERT INTO t1 VALUES(9477, 29215, 'twenty-nine thousand two hundred fifteen');\nINSERT INTO t1 VALUES(9478, 92987, 'ninety-two thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(9479, 71216, 'seventy-one thousand two hundred sixteen');\nINSERT INTO t1 VALUES(9480, 12373, 'twelve thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(9481, 3267, 'three thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(9482, 2509, 'two thousand five hundred nine');\nINSERT INTO t1 VALUES(9483, 83554, 'eighty-three thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(9484, 78637, 'seventy-eight thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(9485, 86912, 'eighty-six thousand nine hundred twelve');\nINSERT INTO t1 VALUES(9486, 89189, 'eighty-nine thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(9487, 28084, 'twenty-eight thousand eighty-four');\nINSERT INTO t1 VALUES(9488, 8057, 'eight thousand fifty-seven');\nINSERT INTO t1 VALUES(9489, 70881, 'seventy thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(9490, 21330, 'twenty-one thousand three hundred thirty');\nINSERT INTO t1 VALUES(9491, 46777, 'forty-six thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(9492, 34006, 'thirty-four thousand six');\nINSERT INTO t1 VALUES(9493, 50965, 'fifty thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(9494, 39325, 'thirty-nine thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(9495, 35847, 'thirty-five thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(9496, 41449, 'forty-one thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(9497, 69499, 'sixty-nine thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(9498, 52680, 'fifty-two thousand six hundred eighty');\nINSERT INTO t1 VALUES(9499, 64440, 'sixty-four thousand four hundred forty');\nINSERT INTO t1 VALUES(9500, 98200, 'ninety-eight thousand two hundred');\nINSERT INTO t1 VALUES(9501, 25818, 'twenty-five thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9502, 40038, 'forty thousand thirty-eight');\nINSERT INTO t1 VALUES(9503, 77465, 'seventy-seven thousand four hundred sixty-five');\nINSERT INTO t1 VALUES(9504, 70732, 'seventy thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(9505, 33742, 'thirty-three thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(9506, 90515, 'ninety thousand five hundred fifteen');\nINSERT INTO t1 VALUES(9507, 35282, 'thirty-five thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(9508, 83962, 'eighty-three thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(9509, 88228, 'eighty-eight thousand two hundred twenty-eight');\nINSERT INTO t1 VALUES(9510, 84681, 'eighty-four thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(9511, 35287, 'thirty-five thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(9512, 60247, 'sixty thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9513, 73962, 'seventy-three thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(9514, 40602, 'forty thousand six hundred two');\nINSERT INTO t1 VALUES(9515, 30809, 'thirty thousand eight hundred nine');\nINSERT INTO t1 VALUES(9516, 22403, 'twenty-two thousand four hundred three');\nINSERT INTO t1 VALUES(9517, 59752, 'fifty-nine thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(9518, 40996, 'forty thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(9519, 54891, 'fifty-four thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(9520, 60149, 'sixty thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(9521, 16348, 'sixteen thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(9522, 45748, 'forty-five thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(9523, 40, 'forty');\nINSERT INTO t1 VALUES(9524, 23659, 'twenty-three thousand six hundred fifty-nine');\nINSERT INTO t1 VALUES(9525, 91786, 'ninety-one thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(9526, 82075, 'eighty-two thousand seventy-five');\nINSERT INTO t1 VALUES(9527, 59704, 'fifty-nine thousand seven hundred four');\nINSERT INTO t1 VALUES(9528, 83616, 'eighty-three thousand six hundred sixteen');\nINSERT INTO t1 VALUES(9529, 17172, 'seventeen thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(9530, 4069, 'four thousand sixty-nine');\nINSERT INTO t1 VALUES(9531, 4280, 'four thousand two hundred eighty');\nINSERT INTO t1 VALUES(9532, 38503, 'thirty-eight thousand five hundred three');\nINSERT INTO t1 VALUES(9533, 9917, 'nine thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(9534, 4953, 'four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(9535, 83782, 'eighty-three thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(9536, 64900, 'sixty-four thousand nine hundred');\nINSERT INTO t1 VALUES(9537, 81295, 'eighty-one thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(9538, 7224, 'seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(9539, 418, 'four hundred eighteen');\nINSERT INTO t1 VALUES(9540, 5089, 'five thousand eighty-nine');\nINSERT INTO t1 VALUES(9541, 45905, 'forty-five thousand nine hundred five');\nINSERT INTO t1 VALUES(9542, 46698, 'forty-six thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(9543, 89483, 'eighty-nine thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(9544, 12059, 'twelve thousand fifty-nine');\nINSERT INTO t1 VALUES(9545, 98660, 'ninety-eight thousand six hundred sixty');\nINSERT INTO t1 VALUES(9546, 32101, 'thirty-two thousand one hundred one');\nINSERT INTO t1 VALUES(9547, 60349, 'sixty thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(9548, 39466, 'thirty-nine thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(9549, 16691, 'sixteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(9550, 38585, 'thirty-eight thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(9551, 42716, 'forty-two thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(9552, 84364, 'eighty-four thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(9553, 4876, 'four thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(9554, 62498, 'sixty-two thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9555, 21676, 'twenty-one thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(9556, 77154, 'seventy-seven thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(9557, 32940, 'thirty-two thousand nine hundred forty');\nINSERT INTO t1 VALUES(9558, 35425, 'thirty-five thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(9559, 53295, 'fifty-three thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(9560, 26035, 'twenty-six thousand thirty-five');\nINSERT INTO t1 VALUES(9561, 2130, 'two thousand one hundred thirty');\nINSERT INTO t1 VALUES(9562, 96029, 'ninety-six thousand twenty-nine');\nINSERT INTO t1 VALUES(9563, 29311, 'twenty-nine thousand three hundred eleven');\nINSERT INTO t1 VALUES(9564, 26191, 'twenty-six thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(9565, 20112, 'twenty thousand one hundred twelve');\nINSERT INTO t1 VALUES(9566, 38312, 'thirty-eight thousand three hundred twelve');\nINSERT INTO t1 VALUES(9567, 27868, 'twenty-seven thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(9568, 9459, 'nine thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9569, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t1 VALUES(9570, 57066, 'fifty-seven thousand sixty-six');\nINSERT INTO t1 VALUES(9571, 46196, 'forty-six thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9572, 14623, 'fourteen thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(9573, 29895, 'twenty-nine thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(9574, 10761, 'ten thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(9575, 72712, 'seventy-two thousand seven hundred twelve');\nINSERT INTO t1 VALUES(9576, 13899, 'thirteen thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(9577, 53440, 'fifty-three thousand four hundred forty');\nINSERT INTO t1 VALUES(9578, 2889, 'two thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(9579, 99221, 'ninety-nine thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(9580, 27159, 'twenty-seven thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(9581, 35291, 'thirty-five thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(9582, 90308, 'ninety thousand three hundred eight');\nINSERT INTO t1 VALUES(9583, 98736, 'ninety-eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(9584, 63442, 'sixty-three thousand four hundred forty-two');\nINSERT INTO t1 VALUES(9585, 39244, 'thirty-nine thousand two hundred forty-four');\nINSERT INTO t1 VALUES(9586, 64126, 'sixty-four thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(9587, 43618, 'forty-three thousand six hundred eighteen');\nINSERT INTO t1 VALUES(9588, 83054, 'eighty-three thousand fifty-four');\nINSERT INTO t1 VALUES(9589, 24785, 'twenty-four thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(9590, 83076, 'eighty-three thousand seventy-six');\nINSERT INTO t1 VALUES(9591, 99755, 'ninety-nine thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(9592, 50850, 'fifty thousand eight hundred fifty');\nINSERT INTO t1 VALUES(9593, 78176, 'seventy-eight thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(9594, 63792, 'sixty-three thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(9595, 79387, 'seventy-nine thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(9596, 80683, 'eighty thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(9597, 85036, 'eighty-five thousand thirty-six');\nINSERT INTO t1 VALUES(9598, 62907, 'sixty-two thousand nine hundred seven');\nINSERT INTO t1 VALUES(9599, 15119, 'fifteen thousand one hundred nineteen');\nINSERT INTO t1 VALUES(9600, 24617, 'twenty-four thousand six hundred seventeen');\nINSERT INTO t1 VALUES(9601, 34380, 'thirty-four thousand three hundred eighty');\nINSERT INTO t1 VALUES(9602, 52683, 'fifty-two thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(9603, 41957, 'forty-one thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(9604, 48936, 'forty-eight thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(9605, 78674, 'seventy-eight thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(9606, 39568, 'thirty-nine thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(9607, 43493, 'forty-three thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(9608, 28946, 'twenty-eight thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(9609, 37873, 'thirty-seven thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(9610, 24698, 'twenty-four thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(9611, 29593, 'twenty-nine thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(9612, 12105, 'twelve thousand one hundred five');\nINSERT INTO t1 VALUES(9613, 16413, 'sixteen thousand four hundred thirteen');\nINSERT INTO t1 VALUES(9614, 18037, 'eighteen thousand thirty-seven');\nINSERT INTO t1 VALUES(9615, 23957, 'twenty-three thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(9616, 54178, 'fifty-four thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(9617, 29512, 'twenty-nine thousand five hundred twelve');\nINSERT INTO t1 VALUES(9618, 7511, 'seven thousand five hundred eleven');\nINSERT INTO t1 VALUES(9619, 51463, 'fifty-one thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(9620, 77163, 'seventy-seven thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(9621, 46953, 'forty-six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(9622, 6980, 'six thousand nine hundred eighty');\nINSERT INTO t1 VALUES(9623, 76965, 'seventy-six thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(9624, 57666, 'fifty-seven thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(9625, 81270, 'eighty-one thousand two hundred seventy');\nINSERT INTO t1 VALUES(9626, 83196, 'eighty-three thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(9627, 88840, 'eighty-eight thousand eight hundred forty');\nINSERT INTO t1 VALUES(9628, 51684, 'fifty-one thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(9629, 88963, 'eighty-eight thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(9630, 16822, 'sixteen thousand eight hundred twenty-two');\nINSERT INTO t1 VALUES(9631, 67318, 'sixty-seven thousand three hundred eighteen');\nINSERT INTO t1 VALUES(9632, 3172, 'three thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(9633, 30177, 'thirty thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(9634, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t1 VALUES(9635, 36650, 'thirty-six thousand six hundred fifty');\nINSERT INTO t1 VALUES(9636, 99247, 'ninety-nine thousand two hundred forty-seven');\nINSERT INTO t1 VALUES(9637, 21878, 'twenty-one thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(9638, 32815, 'thirty-two thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(9639, 6953, 'six thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(9640, 86505, 'eighty-six thousand five hundred five');\nINSERT INTO t1 VALUES(9641, 16869, 'sixteen thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(9642, 88940, 'eighty-eight thousand nine hundred forty');\nINSERT INTO t1 VALUES(9643, 90919, 'ninety thousand nine hundred nineteen');\nINSERT INTO t1 VALUES(9644, 81340, 'eighty-one thousand three hundred forty');\nINSERT INTO t1 VALUES(9645, 65498, 'sixty-five thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9646, 25830, 'twenty-five thousand eight hundred thirty');\nINSERT INTO t1 VALUES(9647, 59027, 'fifty-nine thousand twenty-seven');\nINSERT INTO t1 VALUES(9648, 7665, 'seven thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(9649, 81972, 'eighty-one thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9650, 70908, 'seventy thousand nine hundred eight');\nINSERT INTO t1 VALUES(9651, 35813, 'thirty-five thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(9652, 80417, 'eighty thousand four hundred seventeen');\nINSERT INTO t1 VALUES(9653, 23801, 'twenty-three thousand eight hundred one');\nINSERT INTO t1 VALUES(9654, 3157, 'three thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(9655, 60192, 'sixty thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(9656, 95860, 'ninety-five thousand eight hundred sixty');\nINSERT INTO t1 VALUES(9657, 81153, 'eighty-one thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(9658, 37506, 'thirty-seven thousand five hundred six');\nINSERT INTO t1 VALUES(9659, 6260, 'six thousand two hundred sixty');\nINSERT INTO t1 VALUES(9660, 52240, 'fifty-two thousand two hundred forty');\nINSERT INTO t1 VALUES(9661, 37434, 'thirty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(9662, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9663, 96510, 'ninety-six thousand five hundred ten');\nINSERT INTO t1 VALUES(9664, 84615, 'eighty-four thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9665, 6534, 'six thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(9666, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(9667, 3422, 'three thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(9668, 30851, 'thirty thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(9669, 31767, 'thirty-one thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(9670, 2245, 'two thousand two hundred forty-five');\nINSERT INTO t1 VALUES(9671, 23508, 'twenty-three thousand five hundred eight');\nINSERT INTO t1 VALUES(9672, 45628, 'forty-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(9673, 93301, 'ninety-three thousand three hundred one');\nINSERT INTO t1 VALUES(9674, 70820, 'seventy thousand eight hundred twenty');\nINSERT INTO t1 VALUES(9675, 67353, 'sixty-seven thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(9676, 85377, 'eighty-five thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(9677, 80139, 'eighty thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(9678, 54208, 'fifty-four thousand two hundred eight');\nINSERT INTO t1 VALUES(9679, 4245, 'four thousand two hundred forty-five');\nINSERT INTO t1 VALUES(9680, 57834, 'fifty-seven thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(9681, 12863, 'twelve thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(9682, 9224, 'nine thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(9683, 91273, 'ninety-one thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(9684, 11757, 'eleven thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(9685, 22355, 'twenty-two thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(9686, 20892, 'twenty thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(9687, 84447, 'eighty-four thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(9688, 80503, 'eighty thousand five hundred three');\nINSERT INTO t1 VALUES(9689, 27445, 'twenty-seven thousand four hundred forty-five');\nINSERT INTO t1 VALUES(9690, 15732, 'fifteen thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(9691, 52647, 'fifty-two thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(9692, 41999, 'forty-one thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(9693, 32297, 'thirty-two thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(9694, 63352, 'sixty-three thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(9695, 36485, 'thirty-six thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(9696, 68776, 'sixty-eight thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(9697, 59569, 'fifty-nine thousand five hundred sixty-nine');\nINSERT INTO t1 VALUES(9698, 94210, 'ninety-four thousand two hundred ten');\nINSERT INTO t1 VALUES(9699, 11185, 'eleven thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(9700, 67635, 'sixty-seven thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(9701, 42891, 'forty-two thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(9702, 72127, 'seventy-two thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(9703, 21619, 'twenty-one thousand six hundred nineteen');\nINSERT INTO t1 VALUES(9704, 8748, 'eight thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(9705, 94983, 'ninety-four thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(9706, 66603, 'sixty-six thousand six hundred three');\nINSERT INTO t1 VALUES(9707, 2762, 'two thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(9708, 94945, 'ninety-four thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(9709, 85576, 'eighty-five thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(9710, 92871, 'ninety-two thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(9711, 51140, 'fifty-one thousand one hundred forty');\nINSERT INTO t1 VALUES(9712, 65691, 'sixty-five thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(9713, 72961, 'seventy-two thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(9714, 60063, 'sixty thousand sixty-three');\nINSERT INTO t1 VALUES(9715, 36331, 'thirty-six thousand three hundred thirty-one');\nINSERT INTO t1 VALUES(9716, 31518, 'thirty-one thousand five hundred eighteen');\nINSERT INTO t1 VALUES(9717, 11379, 'eleven thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(9718, 45798, 'forty-five thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(9719, 24758, 'twenty-four thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9720, 12686, 'twelve thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(9721, 94051, 'ninety-four thousand fifty-one');\nINSERT INTO t1 VALUES(9722, 58716, 'fifty-eight thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(9723, 4174, 'four thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(9724, 10796, 'ten thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(9725, 56663, 'fifty-six thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(9726, 83766, 'eighty-three thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(9727, 64225, 'sixty-four thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(9728, 67780, 'sixty-seven thousand seven hundred eighty');\nINSERT INTO t1 VALUES(9729, 38118, 'thirty-eight thousand one hundred eighteen');\nINSERT INTO t1 VALUES(9730, 97542, 'ninety-seven thousand five hundred forty-two');\nINSERT INTO t1 VALUES(9731, 37156, 'thirty-seven thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(9732, 17962, 'seventeen thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(9733, 77317, 'seventy-seven thousand three hundred seventeen');\nINSERT INTO t1 VALUES(9734, 89128, 'eighty-nine thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(9735, 55790, 'fifty-five thousand seven hundred ninety');\nINSERT INTO t1 VALUES(9736, 55634, 'fifty-five thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9737, 65786, 'sixty-five thousand seven hundred eighty-six');\nINSERT INTO t1 VALUES(9738, 87845, 'eighty-seven thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(9739, 80509, 'eighty thousand five hundred nine');\nINSERT INTO t1 VALUES(9740, 21447, 'twenty-one thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(9741, 45432, 'forty-five thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(9742, 14622, 'fourteen thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(9743, 23110, 'twenty-three thousand one hundred ten');\nINSERT INTO t1 VALUES(9744, 40920, 'forty thousand nine hundred twenty');\nINSERT INTO t1 VALUES(9745, 82340, 'eighty-two thousand three hundred forty');\nINSERT INTO t1 VALUES(9746, 92975, 'ninety-two thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(9747, 27087, 'twenty-seven thousand eighty-seven');\nINSERT INTO t1 VALUES(9748, 55368, 'fifty-five thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(9749, 36509, 'thirty-six thousand five hundred nine');\nINSERT INTO t1 VALUES(9750, 89587, 'eighty-nine thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(9751, 58998, 'fifty-eight thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9752, 54575, 'fifty-four thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(9753, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t1 VALUES(9754, 83243, 'eighty-three thousand two hundred forty-three');\nINSERT INTO t1 VALUES(9755, 54387, 'fifty-four thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(9756, 82971, 'eighty-two thousand nine hundred seventy-one');\nINSERT INTO t1 VALUES(9757, 42062, 'forty-two thousand sixty-two');\nINSERT INTO t1 VALUES(9758, 6269, 'six thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(9759, 39875, 'thirty-nine thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(9760, 73179, 'seventy-three thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(9761, 43935, 'forty-three thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(9762, 91571, 'ninety-one thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(9763, 41516, 'forty-one thousand five hundred sixteen');\nINSERT INTO t1 VALUES(9764, 73393, 'seventy-three thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(9765, 65174, 'sixty-five thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(9766, 67178, 'sixty-seven thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(9767, 37180, 'thirty-seven thousand one hundred eighty');\nINSERT INTO t1 VALUES(9768, 92776, 'ninety-two thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(9769, 31653, 'thirty-one thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(9770, 7795, 'seven thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(9771, 4060, 'four thousand sixty');\nINSERT INTO t1 VALUES(9772, 74872, 'seventy-four thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(9773, 26304, 'twenty-six thousand three hundred four');\nINSERT INTO t1 VALUES(9774, 43355, 'forty-three thousand three hundred fifty-five');\nINSERT INTO t1 VALUES(9775, 85353, 'eighty-five thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(9776, 56818, 'fifty-six thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9777, 33758, 'thirty-three thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9778, 89922, 'eighty-nine thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(9779, 24181, 'twenty-four thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(9780, 47551, 'forty-seven thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(9781, 20085, 'twenty thousand eighty-five');\nINSERT INTO t1 VALUES(9782, 21109, 'twenty-one thousand one hundred nine');\nINSERT INTO t1 VALUES(9783, 36703, 'thirty-six thousand seven hundred three');\nINSERT INTO t1 VALUES(9784, 61594, 'sixty-one thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(9785, 13773, 'thirteen thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(9786, 50366, 'fifty thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(9787, 5459, 'five thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9788, 21213, 'twenty-one thousand two hundred thirteen');\nINSERT INTO t1 VALUES(9789, 90704, 'ninety thousand seven hundred four');\nINSERT INTO t1 VALUES(9790, 49232, 'forty-nine thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9791, 59226, 'fifty-nine thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(9792, 38703, 'thirty-eight thousand seven hundred three');\nINSERT INTO t1 VALUES(9793, 96298, 'ninety-six thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(9794, 87642, 'eighty-seven thousand six hundred forty-two');\nINSERT INTO t1 VALUES(9795, 51473, 'fifty-one thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(9796, 51685, 'fifty-one thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(9797, 92066, 'ninety-two thousand sixty-six');\nINSERT INTO t1 VALUES(9798, 53985, 'fifty-three thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(9799, 93306, 'ninety-three thousand three hundred six');\nINSERT INTO t1 VALUES(9800, 77972, 'seventy-seven thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9801, 24531, 'twenty-four thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(9802, 86554, 'eighty-six thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(9803, 98112, 'ninety-eight thousand one hundred twelve');\nINSERT INTO t1 VALUES(9804, 54495, 'fifty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(9805, 29302, 'twenty-nine thousand three hundred two');\nINSERT INTO t1 VALUES(9806, 99772, 'ninety-nine thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(9807, 42232, 'forty-two thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(9808, 68349, 'sixty-eight thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(9809, 94392, 'ninety-four thousand three hundred ninety-two');\nINSERT INTO t1 VALUES(9810, 10157, 'ten thousand one hundred fifty-seven');\nINSERT INTO t1 VALUES(9811, 71080, 'seventy-one thousand eighty');\nINSERT INTO t1 VALUES(9812, 73226, 'seventy-three thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(9813, 60897, 'sixty thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(9814, 26393, 'twenty-six thousand three hundred ninety-three');\nINSERT INTO t1 VALUES(9815, 62913, 'sixty-two thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(9816, 89066, 'eighty-nine thousand sixty-six');\nINSERT INTO t1 VALUES(9817, 55629, 'fifty-five thousand six hundred twenty-nine');\nINSERT INTO t1 VALUES(9818, 27627, 'twenty-seven thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(9819, 22508, 'twenty-two thousand five hundred eight');\nINSERT INTO t1 VALUES(9820, 8964, 'eight thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(9821, 23513, 'twenty-three thousand five hundred thirteen');\nINSERT INTO t1 VALUES(9822, 38119, 'thirty-eight thousand one hundred nineteen');\nINSERT INTO t1 VALUES(9823, 92204, 'ninety-two thousand two hundred four');\nINSERT INTO t1 VALUES(9824, 1576, 'one thousand five hundred seventy-six');\nINSERT INTO t1 VALUES(9825, 19726, 'nineteen thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(9826, 6421, 'six thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(9827, 66726, 'sixty-six thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(9828, 26871, 'twenty-six thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(9829, 60610, 'sixty thousand six hundred ten');\nINSERT INTO t1 VALUES(9830, 89954, 'eighty-nine thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(9831, 39883, 'thirty-nine thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(9832, 85973, 'eighty-five thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(9833, 2859, 'two thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(9834, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9835, 72301, 'seventy-two thousand three hundred one');\nINSERT INTO t1 VALUES(9836, 15554, 'fifteen thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(9837, 12711, 'twelve thousand seven hundred eleven');\nINSERT INTO t1 VALUES(9838, 31616, 'thirty-one thousand six hundred sixteen');\nINSERT INTO t1 VALUES(9839, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t1 VALUES(9840, 82875, 'eighty-two thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(9841, 74579, 'seventy-four thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(9842, 68520, 'sixty-eight thousand five hundred twenty');\nINSERT INTO t1 VALUES(9843, 80651, 'eighty thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(9844, 55638, 'fifty-five thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(9845, 9277, 'nine thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(9846, 85684, 'eighty-five thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(9847, 10985, 'ten thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(9848, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t1 VALUES(9849, 6071, 'six thousand seventy-one');\nINSERT INTO t1 VALUES(9850, 24013, 'twenty-four thousand thirteen');\nINSERT INTO t1 VALUES(9851, 83606, 'eighty-three thousand six hundred six');\nINSERT INTO t1 VALUES(9852, 95176, 'ninety-five thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(9853, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(9854, 78615, 'seventy-eight thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9855, 94004, 'ninety-four thousand four');\nINSERT INTO t1 VALUES(9856, 66566, 'sixty-six thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(9857, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t1 VALUES(9858, 83027, 'eighty-three thousand twenty-seven');\nINSERT INTO t1 VALUES(9859, 23781, 'twenty-three thousand seven hundred eighty-one');\nINSERT INTO t1 VALUES(9860, 6072, 'six thousand seventy-two');\nINSERT INTO t1 VALUES(9861, 46327, 'forty-six thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(9862, 78566, 'seventy-eight thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(9863, 14342, 'fourteen thousand three hundred forty-two');\nINSERT INTO t1 VALUES(9864, 97233, 'ninety-seven thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(9865, 43141, 'forty-three thousand one hundred forty-one');\nINSERT INTO t1 VALUES(9866, 561, 'five hundred sixty-one');\nINSERT INTO t1 VALUES(9867, 75663, 'seventy-five thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(9868, 62005, 'sixty-two thousand five');\nINSERT INTO t1 VALUES(9869, 40615, 'forty thousand six hundred fifteen');\nINSERT INTO t1 VALUES(9870, 20206, 'twenty thousand two hundred six');\nINSERT INTO t1 VALUES(9871, 72940, 'seventy-two thousand nine hundred forty');\nINSERT INTO t1 VALUES(9872, 55737, 'fifty-five thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(9873, 69134, 'sixty-nine thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(9874, 41445, 'forty-one thousand four hundred forty-five');\nINSERT INTO t1 VALUES(9875, 14334, 'fourteen thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(9876, 10517, 'ten thousand five hundred seventeen');\nINSERT INTO t1 VALUES(9877, 63368, 'sixty-three thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(9878, 67356, 'sixty-seven thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(9879, 56581, 'fifty-six thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(9880, 47439, 'forty-seven thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(9881, 3819, 'three thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(9882, 704, 'seven hundred four');\nINSERT INTO t1 VALUES(9883, 83922, 'eighty-three thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(9884, 97132, 'ninety-seven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(9885, 91851, 'ninety-one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(9886, 76362, 'seventy-six thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(9887, 47556, 'forty-seven thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(9888, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(9889, 94199, 'ninety-four thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(9890, 54520, 'fifty-four thousand five hundred twenty');\nINSERT INTO t1 VALUES(9891, 70694, 'seventy thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(9892, 97316, 'ninety-seven thousand three hundred sixteen');\nINSERT INTO t1 VALUES(9893, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(9894, 8710, 'eight thousand seven hundred ten');\nINSERT INTO t1 VALUES(9895, 44463, 'forty-four thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(9896, 1275, 'one thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(9897, 27084, 'twenty-seven thousand eighty-four');\nINSERT INTO t1 VALUES(9898, 33785, 'thirty-three thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(9899, 30957, 'thirty thousand nine hundred fifty-seven');\nINSERT INTO t1 VALUES(9900, 88833, 'eighty-eight thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(9901, 14807, 'fourteen thousand eight hundred seven');\nINSERT INTO t1 VALUES(9902, 72700, 'seventy-two thousand seven hundred');\nINSERT INTO t1 VALUES(9903, 69743, 'sixty-nine thousand seven hundred forty-three');\nINSERT INTO t1 VALUES(9904, 2459, 'two thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9905, 54034, 'fifty-four thousand thirty-four');\nINSERT INTO t1 VALUES(9906, 58952, 'fifty-eight thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(9907, 46490, 'forty-six thousand four hundred ninety');\nINSERT INTO t1 VALUES(9908, 21880, 'twenty-one thousand eight hundred eighty');\nINSERT INTO t1 VALUES(9909, 7209, 'seven thousand two hundred nine');\nINSERT INTO t1 VALUES(9910, 65591, 'sixty-five thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(9911, 45763, 'forty-five thousand seven hundred sixty-three');\nINSERT INTO t1 VALUES(9912, 56739, 'fifty-six thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(9913, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t1 VALUES(9914, 40998, 'forty thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(9915, 22936, 'twenty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(9916, 46530, 'forty-six thousand five hundred thirty');\nINSERT INTO t1 VALUES(9917, 20329, 'twenty thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(9918, 91798, 'ninety-one thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(9919, 4067, 'four thousand sixty-seven');\nINSERT INTO t1 VALUES(9920, 74979, 'seventy-four thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(9921, 57275, 'fifty-seven thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(9922, 40818, 'forty thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(9923, 88264, 'eighty-eight thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(9924, 48362, 'forty-eight thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(9925, 47804, 'forty-seven thousand eight hundred four');\nINSERT INTO t1 VALUES(9926, 87158, 'eighty-seven thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(9927, 19450, 'nineteen thousand four hundred fifty');\nINSERT INTO t1 VALUES(9928, 51937, 'fifty-one thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(9929, 6451, 'six thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(9930, 62574, 'sixty-two thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(9931, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(9932, 58840, 'fifty-eight thousand eight hundred forty');\nINSERT INTO t1 VALUES(9933, 40333, 'forty thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(9934, 79142, 'seventy-nine thousand one hundred forty-two');\nINSERT INTO t1 VALUES(9935, 76413, 'seventy-six thousand four hundred thirteen');\nINSERT INTO t1 VALUES(9936, 57459, 'fifty-seven thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(9937, 12727, 'twelve thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(9938, 29379, 'twenty-nine thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(9939, 35456, 'thirty-five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(9940, 81209, 'eighty-one thousand two hundred nine');\nINSERT INTO t1 VALUES(9941, 6732, 'six thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(9942, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t1 VALUES(9943, 80148, 'eighty thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(9944, 56972, 'fifty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(9945, 76133, 'seventy-six thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(9946, 13135, 'thirteen thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(9947, 93395, 'ninety-three thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(9948, 44495, 'forty-four thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(9949, 59494, 'fifty-nine thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(9950, 13698, 'thirteen thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(9951, 69785, 'sixty-nine thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(9952, 50605, 'fifty thousand six hundred five');\nINSERT INTO t1 VALUES(9953, 84121, 'eighty-four thousand one hundred twenty-one');\nINSERT INTO t1 VALUES(9954, 76498, 'seventy-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(9955, 49555, 'forty-nine thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(9956, 2819, 'two thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(9957, 22093, 'twenty-two thousand ninety-three');\nINSERT INTO t1 VALUES(9958, 97649, 'ninety-seven thousand six hundred forty-nine');\nINSERT INTO t1 VALUES(9959, 18159, 'eighteen thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(9960, 96365, 'ninety-six thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(9961, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t1 VALUES(9962, 30445, 'thirty thousand four hundred forty-five');\nINSERT INTO t1 VALUES(9963, 36875, 'thirty-six thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(9964, 21519, 'twenty-one thousand five hundred nineteen');\nINSERT INTO t1 VALUES(9965, 40290, 'forty thousand two hundred ninety');\nINSERT INTO t1 VALUES(9966, 50321, 'fifty thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(9967, 8325, 'eight thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(9968, 1993, 'one thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(9969, 53468, 'fifty-three thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(9970, 59265, 'fifty-nine thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(9971, 2758, 'two thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(9972, 13146, 'thirteen thousand one hundred forty-six');\nINSERT INTO t1 VALUES(9973, 4252, 'four thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(9974, 76634, 'seventy-six thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(9975, 26490, 'twenty-six thousand four hundred ninety');\nINSERT INTO t1 VALUES(9976, 24384, 'twenty-four thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(9977, 60768, 'sixty thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(9978, 804, 'eight hundred four');\nINSERT INTO t1 VALUES(9979, 99231, 'ninety-nine thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(9980, 28841, 'twenty-eight thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(9981, 85216, 'eighty-five thousand two hundred sixteen');\nINSERT INTO t1 VALUES(9982, 12386, 'twelve thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(9983, 49354, 'forty-nine thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(9984, 23671, 'twenty-three thousand six hundred seventy-one');\nINSERT INTO t1 VALUES(9985, 5116, 'five thousand one hundred sixteen');\nINSERT INTO t1 VALUES(9986, 67851, 'sixty-seven thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(9987, 60562, 'sixty thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(9988, 81810, 'eighty-one thousand eight hundred ten');\nINSERT INTO t1 VALUES(9989, 40925, 'forty thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(9990, 59586, 'fifty-nine thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(9991, 63382, 'sixty-three thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(9992, 42021, 'forty-two thousand twenty-one');\nINSERT INTO t1 VALUES(9993, 47348, 'forty-seven thousand three hundred forty-eight');\nINSERT INTO t1 VALUES(9994, 57430, 'fifty-seven thousand four hundred thirty');\nINSERT INTO t1 VALUES(9995, 37541, 'thirty-seven thousand five hundred forty-one');\nINSERT INTO t1 VALUES(9996, 65272, 'sixty-five thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(9997, 39400, 'thirty-nine thousand four hundred');\nINSERT INTO t1 VALUES(9998, 72589, 'seventy-two thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(9999, 51694, 'fifty-one thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(10000, 57194, 'fifty-seven thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(10001, 28580, 'twenty-eight thousand five hundred eighty');\nINSERT INTO t1 VALUES(10002, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(10003, 46499, 'forty-six thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(10004, 63555, 'sixty-three thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(10005, 36291, 'thirty-six thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(10006, 80800, 'eighty thousand eight hundred');\nINSERT INTO t1 VALUES(10007, 24823, 'twenty-four thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(10008, 89003, 'eighty-nine thousand three');\nINSERT INTO t1 VALUES(10009, 82565, 'eighty-two thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(10010, 88536, 'eighty-eight thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(10011, 75442, 'seventy-five thousand four hundred forty-two');\nINSERT INTO t1 VALUES(10012, 20028, 'twenty thousand twenty-eight');\nINSERT INTO t1 VALUES(10013, 68276, 'sixty-eight thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(10014, 43001, 'forty-three thousand one');\nINSERT INTO t1 VALUES(10015, 45766, 'forty-five thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10016, 8541, 'eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(10017, 29296, 'twenty-nine thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(10018, 19756, 'nineteen thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(10019, 60176, 'sixty thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(10020, 56495, 'fifty-six thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(10021, 9153, 'nine thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(10022, 91011, 'ninety-one thousand eleven');\nINSERT INTO t1 VALUES(10023, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t1 VALUES(10024, 41320, 'forty-one thousand three hundred twenty');\nINSERT INTO t1 VALUES(10025, 50819, 'fifty thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(10026, 75447, 'seventy-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(10027, 77695, 'seventy-seven thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(10028, 52457, 'fifty-two thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(10029, 17090, 'seventeen thousand ninety');\nINSERT INTO t1 VALUES(10030, 81484, 'eighty-one thousand four hundred eighty-four');\nINSERT INTO t1 VALUES(10031, 2647, 'two thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(10032, 6892, 'six thousand eight hundred ninety-two');\nINSERT INTO t1 VALUES(10033, 55577, 'fifty-five thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(10034, 7455, 'seven thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(10035, 96193, 'ninety-six thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(10036, 26509, 'twenty-six thousand five hundred nine');\nINSERT INTO t1 VALUES(10037, 94776, 'ninety-four thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(10038, 21490, 'twenty-one thousand four hundred ninety');\nINSERT INTO t1 VALUES(10039, 73739, 'seventy-three thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(10040, 81806, 'eighty-one thousand eight hundred six');\nINSERT INTO t1 VALUES(10041, 32416, 'thirty-two thousand four hundred sixteen');\nINSERT INTO t1 VALUES(10042, 51042, 'fifty-one thousand forty-two');\nINSERT INTO t1 VALUES(10043, 88758, 'eighty-eight thousand seven hundred fifty-eight');\nINSERT INTO t1 VALUES(10044, 95855, 'ninety-five thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(10045, 15272, 'fifteen thousand two hundred seventy-two');\nINSERT INTO t1 VALUES(10046, 96757, 'ninety-six thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(10047, 55574, 'fifty-five thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(10048, 95823, 'ninety-five thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(10049, 3601, 'three thousand six hundred one');\nINSERT INTO t1 VALUES(10050, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t1 VALUES(10051, 73503, 'seventy-three thousand five hundred three');\nINSERT INTO t1 VALUES(10052, 91613, 'ninety-one thousand six hundred thirteen');\nINSERT INTO t1 VALUES(10053, 15043, 'fifteen thousand forty-three');\nINSERT INTO t1 VALUES(10054, 85894, 'eighty-five thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(10055, 89779, 'eighty-nine thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(10056, 77794, 'seventy-seven thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(10057, 61258, 'sixty-one thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(10058, 2541, 'two thousand five hundred forty-one');\nINSERT INTO t1 VALUES(10059, 58088, 'fifty-eight thousand eighty-eight');\nINSERT INTO t1 VALUES(10060, 51801, 'fifty-one thousand eight hundred one');\nINSERT INTO t1 VALUES(10061, 29904, 'twenty-nine thousand nine hundred four');\nINSERT INTO t1 VALUES(10062, 50362, 'fifty thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(10063, 76205, 'seventy-six thousand two hundred five');\nINSERT INTO t1 VALUES(10064, 63424, 'sixty-three thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(10065, 37718, 'thirty-seven thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(10066, 62795, 'sixty-two thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(10067, 76525, 'seventy-six thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(10068, 34600, 'thirty-four thousand six hundred');\nINSERT INTO t1 VALUES(10069, 39727, 'thirty-nine thousand seven hundred twenty-seven');\nINSERT INTO t1 VALUES(10070, 57148, 'fifty-seven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(10071, 78652, 'seventy-eight thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(10072, 46387, 'forty-six thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(10073, 59941, 'fifty-nine thousand nine hundred forty-one');\nINSERT INTO t1 VALUES(10074, 94266, 'ninety-four thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10075, 26744, 'twenty-six thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(10076, 8327, 'eight thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10077, 85602, 'eighty-five thousand six hundred two');\nINSERT INTO t1 VALUES(10078, 12122, 'twelve thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(10079, 69154, 'sixty-nine thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10080, 60199, 'sixty thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(10081, 75686, 'seventy-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(10082, 89254, 'eighty-nine thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(10083, 65182, 'sixty-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(10084, 23815, 'twenty-three thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10085, 3411, 'three thousand four hundred eleven');\nINSERT INTO t1 VALUES(10086, 3280, 'three thousand two hundred eighty');\nINSERT INTO t1 VALUES(10087, 20235, 'twenty thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(10088, 10895, 'ten thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(10089, 40300, 'forty thousand three hundred');\nINSERT INTO t1 VALUES(10090, 15307, 'fifteen thousand three hundred seven');\nINSERT INTO t1 VALUES(10091, 8064, 'eight thousand sixty-four');\nINSERT INTO t1 VALUES(10092, 23321, 'twenty-three thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(10093, 49406, 'forty-nine thousand four hundred six');\nINSERT INTO t1 VALUES(10094, 41423, 'forty-one thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(10095, 34449, 'thirty-four thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(10096, 91896, 'ninety-one thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(10097, 42891, 'forty-two thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(10098, 61229, 'sixty-one thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(10099, 15323, 'fifteen thousand three hundred twenty-three');\nINSERT INTO t1 VALUES(10100, 7543, 'seven thousand five hundred forty-three');\nINSERT INTO t1 VALUES(10101, 61801, 'sixty-one thousand eight hundred one');\nINSERT INTO t1 VALUES(10102, 57777, 'fifty-seven thousand seven hundred seventy-seven');\nINSERT INTO t1 VALUES(10103, 86290, 'eighty-six thousand two hundred ninety');\nINSERT INTO t1 VALUES(10104, 9823, 'nine thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(10105, 22520, 'twenty-two thousand five hundred twenty');\nINSERT INTO t1 VALUES(10106, 66775, 'sixty-six thousand seven hundred seventy-five');\nINSERT INTO t1 VALUES(10107, 25164, 'twenty-five thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(10108, 63767, 'sixty-three thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(10109, 36076, 'thirty-six thousand seventy-six');\nINSERT INTO t1 VALUES(10110, 94297, 'ninety-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(10111, 31929, 'thirty-one thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(10112, 90809, 'ninety thousand eight hundred nine');\nINSERT INTO t1 VALUES(10113, 39018, 'thirty-nine thousand eighteen');\nINSERT INTO t1 VALUES(10114, 19022, 'nineteen thousand twenty-two');\nINSERT INTO t1 VALUES(10115, 9128, 'nine thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(10116, 6236, 'six thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(10117, 52614, 'fifty-two thousand six hundred fourteen');\nINSERT INTO t1 VALUES(10118, 28249, 'twenty-eight thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(10119, 56973, 'fifty-six thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(10120, 93966, 'ninety-three thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(10121, 13506, 'thirteen thousand five hundred six');\nINSERT INTO t1 VALUES(10122, 5696, 'five thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(10123, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t1 VALUES(10124, 37897, 'thirty-seven thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(10125, 18930, 'eighteen thousand nine hundred thirty');\nINSERT INTO t1 VALUES(10126, 89104, 'eighty-nine thousand one hundred four');\nINSERT INTO t1 VALUES(10127, 59042, 'fifty-nine thousand forty-two');\nINSERT INTO t1 VALUES(10128, 64883, 'sixty-four thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(10129, 61154, 'sixty-one thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10130, 73956, 'seventy-three thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(10131, 52660, 'fifty-two thousand six hundred sixty');\nINSERT INTO t1 VALUES(10132, 64302, 'sixty-four thousand three hundred two');\nINSERT INTO t1 VALUES(10133, 92789, 'ninety-two thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(10134, 29706, 'twenty-nine thousand seven hundred six');\nINSERT INTO t1 VALUES(10135, 68090, 'sixty-eight thousand ninety');\nINSERT INTO t1 VALUES(10136, 11498, 'eleven thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(10137, 22801, 'twenty-two thousand eight hundred one');\nINSERT INTO t1 VALUES(10138, 63985, 'sixty-three thousand nine hundred eighty-five');\nINSERT INTO t1 VALUES(10139, 75713, 'seventy-five thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(10140, 9506, 'nine thousand five hundred six');\nINSERT INTO t1 VALUES(10141, 33583, 'thirty-three thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(10142, 93518, 'ninety-three thousand five hundred eighteen');\nINSERT INTO t1 VALUES(10143, 29463, 'twenty-nine thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(10144, 35445, 'thirty-five thousand four hundred forty-five');\nINSERT INTO t1 VALUES(10145, 49154, 'forty-nine thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10146, 38295, 'thirty-eight thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(10147, 2623, 'two thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(10148, 41012, 'forty-one thousand twelve');\nINSERT INTO t1 VALUES(10149, 83579, 'eighty-three thousand five hundred seventy-nine');\nINSERT INTO t1 VALUES(10150, 55163, 'fifty-five thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(10151, 76301, 'seventy-six thousand three hundred one');\nINSERT INTO t1 VALUES(10152, 76991, 'seventy-six thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(10153, 82057, 'eighty-two thousand fifty-seven');\nINSERT INTO t1 VALUES(10154, 91873, 'ninety-one thousand eight hundred seventy-three');\nINSERT INTO t1 VALUES(10155, 65795, 'sixty-five thousand seven hundred ninety-five');\nINSERT INTO t1 VALUES(10156, 20846, 'twenty thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10157, 17514, 'seventeen thousand five hundred fourteen');\nINSERT INTO t1 VALUES(10158, 31920, 'thirty-one thousand nine hundred twenty');\nINSERT INTO t1 VALUES(10159, 16528, 'sixteen thousand five hundred twenty-eight');\nINSERT INTO t1 VALUES(10160, 69793, 'sixty-nine thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(10161, 16046, 'sixteen thousand forty-six');\nINSERT INTO t1 VALUES(10162, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(10163, 71440, 'seventy-one thousand four hundred forty');\nINSERT INTO t1 VALUES(10164, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t1 VALUES(10165, 20327, 'twenty thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10166, 90374, 'ninety thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(10167, 2899, 'two thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(10168, 4924, 'four thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(10169, 74927, 'seventy-four thousand nine hundred twenty-seven');\nINSERT INTO t1 VALUES(10170, 89584, 'eighty-nine thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(10171, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(10172, 81725, 'eighty-one thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(10173, 88071, 'eighty-eight thousand seventy-one');\nINSERT INTO t1 VALUES(10174, 26424, 'twenty-six thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(10175, 53354, 'fifty-three thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(10176, 64200, 'sixty-four thousand two hundred');\nINSERT INTO t1 VALUES(10177, 80868, 'eighty thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(10178, 96766, 'ninety-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10179, 35539, 'thirty-five thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(10180, 33332, 'thirty-three thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10181, 85953, 'eighty-five thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(10182, 3624, 'three thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(10183, 35317, 'thirty-five thousand three hundred seventeen');\nINSERT INTO t1 VALUES(10184, 86568, 'eighty-six thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(10185, 45880, 'forty-five thousand eight hundred eighty');\nINSERT INTO t1 VALUES(10186, 94871, 'ninety-four thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(10187, 99046, 'ninety-nine thousand forty-six');\nINSERT INTO t1 VALUES(10188, 68161, 'sixty-eight thousand one hundred sixty-one');\nINSERT INTO t1 VALUES(10189, 43527, 'forty-three thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(10190, 81651, 'eighty-one thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(10191, 74527, 'seventy-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(10192, 48132, 'forty-eight thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(10193, 86688, 'eighty-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(10194, 91036, 'ninety-one thousand thirty-six');\nINSERT INTO t1 VALUES(10195, 76252, 'seventy-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(10196, 11262, 'eleven thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(10197, 8736, 'eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10198, 37044, 'thirty-seven thousand forty-four');\nINSERT INTO t1 VALUES(10199, 67075, 'sixty-seven thousand seventy-five');\nINSERT INTO t1 VALUES(10200, 85263, 'eighty-five thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(10201, 90863, 'ninety thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(10202, 55277, 'fifty-five thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(10203, 11663, 'eleven thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(10204, 5778, 'five thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(10205, 58214, 'fifty-eight thousand two hundred fourteen');\nINSERT INTO t1 VALUES(10206, 82653, 'eighty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(10207, 42029, 'forty-two thousand twenty-nine');\nINSERT INTO t1 VALUES(10208, 14646, 'fourteen thousand six hundred forty-six');\nINSERT INTO t1 VALUES(10209, 66993, 'sixty-six thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(10210, 26993, 'twenty-six thousand nine hundred ninety-three');\nINSERT INTO t1 VALUES(10211, 77946, 'seventy-seven thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(10212, 49080, 'forty-nine thousand eighty');\nINSERT INTO t1 VALUES(10213, 48901, 'forty-eight thousand nine hundred one');\nINSERT INTO t1 VALUES(10214, 59287, 'fifty-nine thousand two hundred eighty-seven');\nINSERT INTO t1 VALUES(10215, 53441, 'fifty-three thousand four hundred forty-one');\nINSERT INTO t1 VALUES(10216, 54853, 'fifty-four thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(10217, 43943, 'forty-three thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(10218, 69650, 'sixty-nine thousand six hundred fifty');\nINSERT INTO t1 VALUES(10219, 21502, 'twenty-one thousand five hundred two');\nINSERT INTO t1 VALUES(10220, 25604, 'twenty-five thousand six hundred four');\nINSERT INTO t1 VALUES(10221, 51366, 'fifty-one thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(10222, 1156, 'one thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(10223, 76665, 'seventy-six thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(10224, 18797, 'eighteen thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(10225, 52437, 'fifty-two thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(10226, 70485, 'seventy thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(10227, 64098, 'sixty-four thousand ninety-eight');\nINSERT INTO t1 VALUES(10228, 1107, 'one thousand one hundred seven');\nINSERT INTO t1 VALUES(10229, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t1 VALUES(10230, 79165, 'seventy-nine thousand one hundred sixty-five');\nINSERT INTO t1 VALUES(10231, 17260, 'seventeen thousand two hundred sixty');\nINSERT INTO t1 VALUES(10232, 35006, 'thirty-five thousand six');\nINSERT INTO t1 VALUES(10233, 38845, 'thirty-eight thousand eight hundred forty-five');\nINSERT INTO t1 VALUES(10234, 85912, 'eighty-five thousand nine hundred twelve');\nINSERT INTO t1 VALUES(10235, 1836, 'one thousand eight hundred thirty-six');\nINSERT INTO t1 VALUES(10236, 94516, 'ninety-four thousand five hundred sixteen');\nINSERT INTO t1 VALUES(10237, 4729, 'four thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(10238, 20651, 'twenty thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(10239, 38138, 'thirty-eight thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(10240, 97711, 'ninety-seven thousand seven hundred eleven');\nINSERT INTO t1 VALUES(10241, 16962, 'sixteen thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(10242, 54518, 'fifty-four thousand five hundred eighteen');\nINSERT INTO t1 VALUES(10243, 27963, 'twenty-seven thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(10244, 95447, 'ninety-five thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(10245, 66642, 'sixty-six thousand six hundred forty-two');\nINSERT INTO t1 VALUES(10246, 5530, 'five thousand five hundred thirty');\nINSERT INTO t1 VALUES(10247, 41723, 'forty-one thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(10248, 19708, 'nineteen thousand seven hundred eight');\nINSERT INTO t1 VALUES(10249, 62034, 'sixty-two thousand thirty-four');\nINSERT INTO t1 VALUES(10250, 4254, 'four thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(10251, 47412, 'forty-seven thousand four hundred twelve');\nINSERT INTO t1 VALUES(10252, 19453, 'nineteen thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10253, 98954, 'ninety-eight thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(10254, 64405, 'sixty-four thousand four hundred five');\nINSERT INTO t1 VALUES(10255, 25043, 'twenty-five thousand forty-three');\nINSERT INTO t1 VALUES(10256, 64360, 'sixty-four thousand three hundred sixty');\nINSERT INTO t1 VALUES(10257, 86126, 'eighty-six thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(10258, 23294, 'twenty-three thousand two hundred ninety-four');\nINSERT INTO t1 VALUES(10259, 37521, 'thirty-seven thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(10260, 25456, 'twenty-five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(10261, 84692, 'eighty-four thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(10262, 19737, 'nineteen thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(10263, 96108, 'ninety-six thousand one hundred eight');\nINSERT INTO t1 VALUES(10264, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(10265, 71731, 'seventy-one thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(10266, 25585, 'twenty-five thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(10267, 31239, 'thirty-one thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(10268, 67362, 'sixty-seven thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(10269, 30132, 'thirty thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(10270, 67831, 'sixty-seven thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(10271, 16107, 'sixteen thousand one hundred seven');\nINSERT INTO t1 VALUES(10272, 25975, 'twenty-five thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(10273, 43551, 'forty-three thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(10274, 91783, 'ninety-one thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10275, 41531, 'forty-one thousand five hundred thirty-one');\nINSERT INTO t1 VALUES(10276, 51106, 'fifty-one thousand one hundred six');\nINSERT INTO t1 VALUES(10277, 26828, 'twenty-six thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(10278, 31376, 'thirty-one thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(10279, 2328, 'two thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(10280, 51134, 'fifty-one thousand one hundred thirty-four');\nINSERT INTO t1 VALUES(10281, 75384, 'seventy-five thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(10282, 17388, 'seventeen thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(10283, 74997, 'seventy-four thousand nine hundred ninety-seven');\nINSERT INTO t1 VALUES(10284, 17623, 'seventeen thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(10285, 18840, 'eighteen thousand eight hundred forty');\nINSERT INTO t1 VALUES(10286, 79267, 'seventy-nine thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(10287, 28382, 'twenty-eight thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(10288, 16023, 'sixteen thousand twenty-three');\nINSERT INTO t1 VALUES(10289, 65091, 'sixty-five thousand ninety-one');\nINSERT INTO t1 VALUES(10290, 49944, 'forty-nine thousand nine hundred forty-four');\nINSERT INTO t1 VALUES(10291, 15680, 'fifteen thousand six hundred eighty');\nINSERT INTO t1 VALUES(10292, 60778, 'sixty thousand seven hundred seventy-eight');\nINSERT INTO t1 VALUES(10293, 15506, 'fifteen thousand five hundred six');\nINSERT INTO t1 VALUES(10294, 63423, 'sixty-three thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(10295, 85145, 'eighty-five thousand one hundred forty-five');\nINSERT INTO t1 VALUES(10296, 84967, 'eighty-four thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(10297, 60504, 'sixty thousand five hundred four');\nINSERT INTO t1 VALUES(10298, 43952, 'forty-three thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(10299, 23237, 'twenty-three thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(10300, 23794, 'twenty-three thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(10301, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t1 VALUES(10302, 16562, 'sixteen thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(10303, 65194, 'sixty-five thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(10304, 91698, 'ninety-one thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(10305, 36082, 'thirty-six thousand eighty-two');\nINSERT INTO t1 VALUES(10306, 44924, 'forty-four thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(10307, 94178, 'ninety-four thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(10308, 38496, 'thirty-eight thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(10309, 32508, 'thirty-two thousand five hundred eight');\nINSERT INTO t1 VALUES(10310, 54508, 'fifty-four thousand five hundred eight');\nINSERT INTO t1 VALUES(10311, 10640, 'ten thousand six hundred forty');\nINSERT INTO t1 VALUES(10312, 41328, 'forty-one thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(10313, 61921, 'sixty-one thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(10314, 47874, 'forty-seven thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(10315, 49153, 'forty-nine thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(10316, 51596, 'fifty-one thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(10317, 47376, 'forty-seven thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(10318, 83406, 'eighty-three thousand four hundred six');\nINSERT INTO t1 VALUES(10319, 27863, 'twenty-seven thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(10320, 97309, 'ninety-seven thousand three hundred nine');\nINSERT INTO t1 VALUES(10321, 77693, 'seventy-seven thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(10322, 28906, 'twenty-eight thousand nine hundred six');\nINSERT INTO t1 VALUES(10323, 47546, 'forty-seven thousand five hundred forty-six');\nINSERT INTO t1 VALUES(10324, 23817, 'twenty-three thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(10325, 12198, 'twelve thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(10326, 23143, 'twenty-three thousand one hundred forty-three');\nINSERT INTO t1 VALUES(10327, 25752, 'twenty-five thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(10328, 15647, 'fifteen thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(10329, 70968, 'seventy thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(10330, 45562, 'forty-five thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(10331, 37453, 'thirty-seven thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10332, 66900, 'sixty-six thousand nine hundred');\nINSERT INTO t1 VALUES(10333, 55870, 'fifty-five thousand eight hundred seventy');\nINSERT INTO t1 VALUES(10334, 73736, 'seventy-three thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10335, 77024, 'seventy-seven thousand twenty-four');\nINSERT INTO t1 VALUES(10336, 51343, 'fifty-one thousand three hundred forty-three');\nINSERT INTO t1 VALUES(10337, 82486, 'eighty-two thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(10338, 77619, 'seventy-seven thousand six hundred nineteen');\nINSERT INTO t1 VALUES(10339, 29365, 'twenty-nine thousand three hundred sixty-five');\nINSERT INTO t1 VALUES(10340, 86693, 'eighty-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(10341, 43691, 'forty-three thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(10342, 67516, 'sixty-seven thousand five hundred sixteen');\nINSERT INTO t1 VALUES(10343, 14068, 'fourteen thousand sixty-eight');\nINSERT INTO t1 VALUES(10344, 93200, 'ninety-three thousand two hundred');\nINSERT INTO t1 VALUES(10345, 2248, 'two thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(10346, 72332, 'seventy-two thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10347, 22141, 'twenty-two thousand one hundred forty-one');\nINSERT INTO t1 VALUES(10348, 14075, 'fourteen thousand seventy-five');\nINSERT INTO t1 VALUES(10349, 32936, 'thirty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(10350, 59309, 'fifty-nine thousand three hundred nine');\nINSERT INTO t1 VALUES(10351, 62421, 'sixty-two thousand four hundred twenty-one');\nINSERT INTO t1 VALUES(10352, 51537, 'fifty-one thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(10353, 28848, 'twenty-eight thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(10354, 84297, 'eighty-four thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(10355, 48595, 'forty-eight thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(10356, 45285, 'forty-five thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(10357, 97769, 'ninety-seven thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(10358, 37815, 'thirty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10359, 96884, 'ninety-six thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(10360, 15556, 'fifteen thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(10361, 63878, 'sixty-three thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(10362, 70839, 'seventy thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(10363, 7318, 'seven thousand three hundred eighteen');\nINSERT INTO t1 VALUES(10364, 50533, 'fifty thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(10365, 66235, 'sixty-six thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(10366, 60264, 'sixty thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(10367, 54821, 'fifty-four thousand eight hundred twenty-one');\nINSERT INTO t1 VALUES(10368, 67241, 'sixty-seven thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10369, 95206, 'ninety-five thousand two hundred six');\nINSERT INTO t1 VALUES(10370, 58735, 'fifty-eight thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(10371, 25093, 'twenty-five thousand ninety-three');\nINSERT INTO t1 VALUES(10372, 54443, 'fifty-four thousand four hundred forty-three');\nINSERT INTO t1 VALUES(10373, 11148, 'eleven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(10374, 14458, 'fourteen thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(10375, 96766, 'ninety-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10376, 62192, 'sixty-two thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(10377, 15384, 'fifteen thousand three hundred eighty-four');\nINSERT INTO t1 VALUES(10378, 10774, 'ten thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(10379, 43846, 'forty-three thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10380, 90408, 'ninety thousand four hundred eight');\nINSERT INTO t1 VALUES(10381, 34831, 'thirty-four thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(10382, 67463, 'sixty-seven thousand four hundred sixty-three');\nINSERT INTO t1 VALUES(10383, 9257, 'nine thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(10384, 37198, 'thirty-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(10385, 54097, 'fifty-four thousand ninety-seven');\nINSERT INTO t1 VALUES(10386, 39129, 'thirty-nine thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(10387, 25806, 'twenty-five thousand eight hundred six');\nINSERT INTO t1 VALUES(10388, 19522, 'nineteen thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(10389, 84394, 'eighty-four thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(10390, 13809, 'thirteen thousand eight hundred nine');\nINSERT INTO t1 VALUES(10391, 31225, 'thirty-one thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(10392, 19386, 'nineteen thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(10393, 61266, 'sixty-one thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10394, 55360, 'fifty-five thousand three hundred sixty');\nINSERT INTO t1 VALUES(10395, 62296, 'sixty-two thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(10396, 69554, 'sixty-nine thousand five hundred fifty-four');\nINSERT INTO t1 VALUES(10397, 30144, 'thirty thousand one hundred forty-four');\nINSERT INTO t1 VALUES(10398, 57621, 'fifty-seven thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(10399, 33877, 'thirty-three thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(10400, 32296, 'thirty-two thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(10401, 85369, 'eighty-five thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(10402, 24684, 'twenty-four thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(10403, 41318, 'forty-one thousand three hundred eighteen');\nINSERT INTO t1 VALUES(10404, 66252, 'sixty-six thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(10405, 54327, 'fifty-four thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10406, 93728, 'ninety-three thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(10407, 52451, 'fifty-two thousand four hundred fifty-one');\nINSERT INTO t1 VALUES(10408, 32252, 'thirty-two thousand two hundred fifty-two');\nINSERT INTO t1 VALUES(10409, 26802, 'twenty-six thousand eight hundred two');\nINSERT INTO t1 VALUES(10410, 35783, 'thirty-five thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10411, 42663, 'forty-two thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(10412, 89903, 'eighty-nine thousand nine hundred three');\nINSERT INTO t1 VALUES(10413, 56939, 'fifty-six thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(10414, 58108, 'fifty-eight thousand one hundred eight');\nINSERT INTO t1 VALUES(10415, 70713, 'seventy thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(10416, 28364, 'twenty-eight thousand three hundred sixty-four');\nINSERT INTO t1 VALUES(10417, 78343, 'seventy-eight thousand three hundred forty-three');\nINSERT INTO t1 VALUES(10418, 56858, 'fifty-six thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(10419, 28223, 'twenty-eight thousand two hundred twenty-three');\nINSERT INTO t1 VALUES(10420, 39344, 'thirty-nine thousand three hundred forty-four');\nINSERT INTO t1 VALUES(10421, 56000, 'fifty-six thousand');\nINSERT INTO t1 VALUES(10422, 57200, 'fifty-seven thousand two hundred');\nINSERT INTO t1 VALUES(10423, 54000, 'fifty-four thousand');\nINSERT INTO t1 VALUES(10424, 90374, 'ninety thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(10425, 87241, 'eighty-seven thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10426, 91041, 'ninety-one thousand forty-one');\nINSERT INTO t1 VALUES(10427, 20283, 'twenty thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(10428, 20709, 'twenty thousand seven hundred nine');\nINSERT INTO t1 VALUES(10429, 78829, 'seventy-eight thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(10430, 4372, 'four thousand three hundred seventy-two');\nINSERT INTO t1 VALUES(10431, 49099, 'forty-nine thousand ninety-nine');\nINSERT INTO t1 VALUES(10432, 93065, 'ninety-three thousand sixty-five');\nINSERT INTO t1 VALUES(10433, 71171, 'seventy-one thousand one hundred seventy-one');\nINSERT INTO t1 VALUES(10434, 42549, 'forty-two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(10435, 27017, 'twenty-seven thousand seventeen');\nINSERT INTO t1 VALUES(10436, 86751, 'eighty-six thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(10437, 27138, 'twenty-seven thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(10438, 82559, 'eighty-two thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(10439, 47489, 'forty-seven thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(10440, 84153, 'eighty-four thousand one hundred fifty-three');\nINSERT INTO t1 VALUES(10441, 39475, 'thirty-nine thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(10442, 91342, 'ninety-one thousand three hundred forty-two');\nINSERT INTO t1 VALUES(10443, 57742, 'fifty-seven thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(10444, 76093, 'seventy-six thousand ninety-three');\nINSERT INTO t1 VALUES(10445, 14533, 'fourteen thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(10446, 41692, 'forty-one thousand six hundred ninety-two');\nINSERT INTO t1 VALUES(10447, 76409, 'seventy-six thousand four hundred nine');\nINSERT INTO t1 VALUES(10448, 25259, 'twenty-five thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(10449, 28015, 'twenty-eight thousand fifteen');\nINSERT INTO t1 VALUES(10450, 46882, 'forty-six thousand eight hundred eighty-two');\nINSERT INTO t1 VALUES(10451, 62125, 'sixty-two thousand one hundred twenty-five');\nINSERT INTO t1 VALUES(10452, 39498, 'thirty-nine thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(10453, 16375, 'sixteen thousand three hundred seventy-five');\nINSERT INTO t1 VALUES(10454, 366, 'three hundred sixty-six');\nINSERT INTO t1 VALUES(10455, 49826, 'forty-nine thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(10456, 16615, 'sixteen thousand six hundred fifteen');\nINSERT INTO t1 VALUES(10457, 70810, 'seventy thousand eight hundred ten');\nINSERT INTO t1 VALUES(10458, 22783, 'twenty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10459, 81536, 'eighty-one thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(10460, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(10461, 81677, 'eighty-one thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(10462, 92648, 'ninety-two thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(10463, 16548, 'sixteen thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(10464, 91720, 'ninety-one thousand seven hundred twenty');\nINSERT INTO t1 VALUES(10465, 32478, 'thirty-two thousand four hundred seventy-eight');\nINSERT INTO t1 VALUES(10466, 51342, 'fifty-one thousand three hundred forty-two');\nINSERT INTO t1 VALUES(10467, 90295, 'ninety thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(10468, 91895, 'ninety-one thousand eight hundred ninety-five');\nINSERT INTO t1 VALUES(10469, 75656, 'seventy-five thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(10470, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(10471, 63427, 'sixty-three thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(10472, 4723, 'four thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(10473, 74548, 'seventy-four thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(10474, 49181, 'forty-nine thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(10475, 23757, 'twenty-three thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(10476, 97934, 'ninety-seven thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(10477, 26872, 'twenty-six thousand eight hundred seventy-two');\nINSERT INTO t1 VALUES(10478, 37034, 'thirty-seven thousand thirty-four');\nINSERT INTO t1 VALUES(10479, 53436, 'fifty-three thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(10480, 1302, 'one thousand three hundred two');\nINSERT INTO t1 VALUES(10481, 62290, 'sixty-two thousand two hundred ninety');\nINSERT INTO t1 VALUES(10482, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(10483, 65278, 'sixty-five thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(10484, 7980, 'seven thousand nine hundred eighty');\nINSERT INTO t1 VALUES(10485, 33790, 'thirty-three thousand seven hundred ninety');\nINSERT INTO t1 VALUES(10486, 32248, 'thirty-two thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(10487, 38282, 'thirty-eight thousand two hundred eighty-two');\nINSERT INTO t1 VALUES(10488, 6176, 'six thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(10489, 93747, 'ninety-three thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(10490, 56242, 'fifty-six thousand two hundred forty-two');\nINSERT INTO t1 VALUES(10491, 94295, 'ninety-four thousand two hundred ninety-five');\nINSERT INTO t1 VALUES(10492, 68486, 'sixty-eight thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(10493, 34229, 'thirty-four thousand two hundred twenty-nine');\nINSERT INTO t1 VALUES(10494, 3293, 'three thousand two hundred ninety-three');\nINSERT INTO t1 VALUES(10495, 4504, 'four thousand five hundred four');\nINSERT INTO t1 VALUES(10496, 28632, 'twenty-eight thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(10497, 38790, 'thirty-eight thousand seven hundred ninety');\nINSERT INTO t1 VALUES(10498, 87035, 'eighty-seven thousand thirty-five');\nINSERT INTO t1 VALUES(10499, 36651, 'thirty-six thousand six hundred fifty-one');\nINSERT INTO t1 VALUES(10500, 19730, 'nineteen thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10501, 16718, 'sixteen thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(10502, 78722, 'seventy-eight thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(10503, 83953, 'eighty-three thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(10504, 63382, 'sixty-three thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(10505, 25135, 'twenty-five thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(10506, 29109, 'twenty-nine thousand one hundred nine');\nINSERT INTO t1 VALUES(10507, 39209, 'thirty-nine thousand two hundred nine');\nINSERT INTO t1 VALUES(10508, 15915, 'fifteen thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(10509, 33403, 'thirty-three thousand four hundred three');\nINSERT INTO t1 VALUES(10510, 78326, 'seventy-eight thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(10511, 59390, 'fifty-nine thousand three hundred ninety');\nINSERT INTO t1 VALUES(10512, 13292, 'thirteen thousand two hundred ninety-two');\nINSERT INTO t1 VALUES(10513, 2416, 'two thousand four hundred sixteen');\nINSERT INTO t1 VALUES(10514, 10734, 'ten thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(10515, 69376, 'sixty-nine thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(10516, 33638, 'thirty-three thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(10517, 62176, 'sixty-two thousand one hundred seventy-six');\nINSERT INTO t1 VALUES(10518, 48737, 'forty-eight thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(10519, 6038, 'six thousand thirty-eight');\nINSERT INTO t1 VALUES(10520, 98846, 'ninety-eight thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10521, 67560, 'sixty-seven thousand five hundred sixty');\nINSERT INTO t1 VALUES(10522, 21302, 'twenty-one thousand three hundred two');\nINSERT INTO t1 VALUES(10523, 32884, 'thirty-two thousand eight hundred eighty-four');\nINSERT INTO t1 VALUES(10524, 83442, 'eighty-three thousand four hundred forty-two');\nINSERT INTO t1 VALUES(10525, 99394, 'ninety-nine thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(10526, 30752, 'thirty thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(10527, 24327, 'twenty-four thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(10528, 12300, 'twelve thousand three hundred');\nINSERT INTO t1 VALUES(10529, 7667, 'seven thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(10530, 75168, 'seventy-five thousand one hundred sixty-eight');\nINSERT INTO t1 VALUES(10531, 83186, 'eighty-three thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(10532, 55805, 'fifty-five thousand eight hundred five');\nINSERT INTO t1 VALUES(10533, 14512, 'fourteen thousand five hundred twelve');\nINSERT INTO t1 VALUES(10534, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t1 VALUES(10535, 17088, 'seventeen thousand eighty-eight');\nINSERT INTO t1 VALUES(10536, 29702, 'twenty-nine thousand seven hundred two');\nINSERT INTO t1 VALUES(10537, 33326, 'thirty-three thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(10538, 45640, 'forty-five thousand six hundred forty');\nINSERT INTO t1 VALUES(10539, 43281, 'forty-three thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(10540, 28638, 'twenty-eight thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(10541, 7248, 'seven thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(10542, 22783, 'twenty-two thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10543, 97585, 'ninety-seven thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(10544, 34460, 'thirty-four thousand four hundred sixty');\nINSERT INTO t1 VALUES(10545, 59723, 'fifty-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(10546, 98634, 'ninety-eight thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(10547, 87620, 'eighty-seven thousand six hundred twenty');\nINSERT INTO t1 VALUES(10548, 27883, 'twenty-seven thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(10549, 54861, 'fifty-four thousand eight hundred sixty-one');\nINSERT INTO t1 VALUES(10550, 32368, 'thirty-two thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(10551, 17685, 'seventeen thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(10552, 37192, 'thirty-seven thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(10553, 44316, 'forty-four thousand three hundred sixteen');\nINSERT INTO t1 VALUES(10554, 43834, 'forty-three thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(10555, 49891, 'forty-nine thousand eight hundred ninety-one');\nINSERT INTO t1 VALUES(10556, 78843, 'seventy-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(10557, 9979, 'nine thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(10558, 67425, 'sixty-seven thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(10559, 47584, 'forty-seven thousand five hundred eighty-four');\nINSERT INTO t1 VALUES(10560, 68505, 'sixty-eight thousand five hundred five');\nINSERT INTO t1 VALUES(10561, 75266, 'seventy-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10562, 45621, 'forty-five thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(10563, 55232, 'fifty-five thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(10564, 86211, 'eighty-six thousand two hundred eleven');\nINSERT INTO t1 VALUES(10565, 1088, 'one thousand eighty-eight');\nINSERT INTO t1 VALUES(10566, 32840, 'thirty-two thousand eight hundred forty');\nINSERT INTO t1 VALUES(10567, 5792, 'five thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(10568, 62030, 'sixty-two thousand thirty');\nINSERT INTO t1 VALUES(10569, 6802, 'six thousand eight hundred two');\nINSERT INTO t1 VALUES(10570, 46502, 'forty-six thousand five hundred two');\nINSERT INTO t1 VALUES(10571, 14090, 'fourteen thousand ninety');\nINSERT INTO t1 VALUES(10572, 95526, 'ninety-five thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(10573, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(10574, 23207, 'twenty-three thousand two hundred seven');\nINSERT INTO t1 VALUES(10575, 15063, 'fifteen thousand sixty-three');\nINSERT INTO t1 VALUES(10576, 90094, 'ninety thousand ninety-four');\nINSERT INTO t1 VALUES(10577, 85139, 'eighty-five thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(10578, 63464, 'sixty-three thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(10579, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(10580, 87721, 'eighty-seven thousand seven hundred twenty-one');\nINSERT INTO t1 VALUES(10581, 4356, 'four thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(10582, 24643, 'twenty-four thousand six hundred forty-three');\nINSERT INTO t1 VALUES(10583, 90945, 'ninety thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(10584, 69791, 'sixty-nine thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(10585, 2383, 'two thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(10586, 52937, 'fifty-two thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(10587, 91666, 'ninety-one thousand six hundred sixty-six');\nINSERT INTO t1 VALUES(10588, 54807, 'fifty-four thousand eight hundred seven');\nINSERT INTO t1 VALUES(10589, 32736, 'thirty-two thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10590, 72013, 'seventy-two thousand thirteen');\nINSERT INTO t1 VALUES(10591, 10578, 'ten thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(10592, 60126, 'sixty thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(10593, 50458, 'fifty thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(10594, 13667, 'thirteen thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(10595, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(10596, 30657, 'thirty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(10597, 42087, 'forty-two thousand eighty-seven');\nINSERT INTO t1 VALUES(10598, 53681, 'fifty-three thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(10599, 89124, 'eighty-nine thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(10600, 86320, 'eighty-six thousand three hundred twenty');\nINSERT INTO t1 VALUES(10601, 32275, 'thirty-two thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(10602, 57065, 'fifty-seven thousand sixty-five');\nINSERT INTO t1 VALUES(10603, 98090, 'ninety-eight thousand ninety');\nINSERT INTO t1 VALUES(10604, 43847, 'forty-three thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(10605, 29163, 'twenty-nine thousand one hundred sixty-three');\nINSERT INTO t1 VALUES(10606, 7137, 'seven thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(10607, 91483, 'ninety-one thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(10608, 3969, 'three thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(10609, 10768, 'ten thousand seven hundred sixty-eight');\nINSERT INTO t1 VALUES(10610, 81279, 'eighty-one thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(10611, 25460, 'twenty-five thousand four hundred sixty');\nINSERT INTO t1 VALUES(10612, 89829, 'eighty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(10613, 89214, 'eighty-nine thousand two hundred fourteen');\nINSERT INTO t1 VALUES(10614, 52349, 'fifty-two thousand three hundred forty-nine');\nINSERT INTO t1 VALUES(10615, 17904, 'seventeen thousand nine hundred four');\nINSERT INTO t1 VALUES(10616, 55110, 'fifty-five thousand one hundred ten');\nINSERT INTO t1 VALUES(10617, 81556, 'eighty-one thousand five hundred fifty-six');\nINSERT INTO t1 VALUES(10618, 15796, 'fifteen thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(10619, 3036, 'three thousand thirty-six');\nINSERT INTO t1 VALUES(10620, 80473, 'eighty thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(10621, 12116, 'twelve thousand one hundred sixteen');\nINSERT INTO t1 VALUES(10622, 4885, 'four thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(10623, 39420, 'thirty-nine thousand four hundred twenty');\nINSERT INTO t1 VALUES(10624, 26840, 'twenty-six thousand eight hundred forty');\nINSERT INTO t1 VALUES(10625, 41718, 'forty-one thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(10626, 64353, 'sixty-four thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(10627, 32877, 'thirty-two thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(10628, 18902, 'eighteen thousand nine hundred two');\nINSERT INTO t1 VALUES(10629, 64933, 'sixty-four thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(10630, 35253, 'thirty-five thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(10631, 39960, 'thirty-nine thousand nine hundred sixty');\nINSERT INTO t1 VALUES(10632, 69788, 'sixty-nine thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(10633, 82471, 'eighty-two thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(10634, 23299, 'twenty-three thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(10635, 44518, 'forty-four thousand five hundred eighteen');\nINSERT INTO t1 VALUES(10636, 83289, 'eighty-three thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(10637, 12959, 'twelve thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(10638, 62508, 'sixty-two thousand five hundred eight');\nINSERT INTO t1 VALUES(10639, 35183, 'thirty-five thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(10640, 69241, 'sixty-nine thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10641, 36152, 'thirty-six thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(10642, 52952, 'fifty-two thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(10643, 8415, 'eight thousand four hundred fifteen');\nINSERT INTO t1 VALUES(10644, 75389, 'seventy-five thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(10645, 3164, 'three thousand one hundred sixty-four');\nINSERT INTO t1 VALUES(10646, 63037, 'sixty-three thousand thirty-seven');\nINSERT INTO t1 VALUES(10647, 93929, 'ninety-three thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(10648, 81547, 'eighty-one thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(10649, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(10650, 82321, 'eighty-two thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(10651, 92415, 'ninety-two thousand four hundred fifteen');\nINSERT INTO t1 VALUES(10652, 54122, 'fifty-four thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(10653, 84559, 'eighty-four thousand five hundred fifty-nine');\nINSERT INTO t1 VALUES(10654, 77833, 'seventy-seven thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(10655, 96560, 'ninety-six thousand five hundred sixty');\nINSERT INTO t1 VALUES(10656, 34949, 'thirty-four thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(10657, 12036, 'twelve thousand thirty-six');\nINSERT INTO t1 VALUES(10658, 27239, 'twenty-seven thousand two hundred thirty-nine');\nINSERT INTO t1 VALUES(10659, 84824, 'eighty-four thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(10660, 77815, 'seventy-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10661, 31557, 'thirty-one thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(10662, 22811, 'twenty-two thousand eight hundred eleven');\nINSERT INTO t1 VALUES(10663, 9110, 'nine thousand one hundred ten');\nINSERT INTO t1 VALUES(10664, 95956, 'ninety-five thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(10665, 21138, 'twenty-one thousand one hundred thirty-eight');\nINSERT INTO t1 VALUES(10666, 94187, 'ninety-four thousand one hundred eighty-seven');\nINSERT INTO t1 VALUES(10667, 11080, 'eleven thousand eighty');\nINSERT INTO t1 VALUES(10668, 19071, 'nineteen thousand seventy-one');\nINSERT INTO t1 VALUES(10669, 95137, 'ninety-five thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(10670, 79742, 'seventy-nine thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(10671, 83178, 'eighty-three thousand one hundred seventy-eight');\nINSERT INTO t1 VALUES(10672, 92831, 'ninety-two thousand eight hundred thirty-one');\nINSERT INTO t1 VALUES(10673, 88885, 'eighty-eight thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(10674, 28689, 'twenty-eight thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(10675, 41738, 'forty-one thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(10676, 97645, 'ninety-seven thousand six hundred forty-five');\nINSERT INTO t1 VALUES(10677, 68315, 'sixty-eight thousand three hundred fifteen');\nINSERT INTO t1 VALUES(10678, 20855, 'twenty thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(10679, 95266, 'ninety-five thousand two hundred sixty-six');\nINSERT INTO t1 VALUES(10680, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(10681, 59085, 'fifty-nine thousand eighty-five');\nINSERT INTO t1 VALUES(10682, 27817, 'twenty-seven thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(10683, 99627, 'ninety-nine thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(10684, 25279, 'twenty-five thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(10685, 32212, 'thirty-two thousand two hundred twelve');\nINSERT INTO t1 VALUES(10686, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t1 VALUES(10687, 20739, 'twenty thousand seven hundred thirty-nine');\nINSERT INTO t1 VALUES(10688, 4313, 'four thousand three hundred thirteen');\nINSERT INTO t1 VALUES(10689, 53402, 'fifty-three thousand four hundred two');\nINSERT INTO t1 VALUES(10690, 59917, 'fifty-nine thousand nine hundred seventeen');\nINSERT INTO t1 VALUES(10691, 46716, 'forty-six thousand seven hundred sixteen');\nINSERT INTO t1 VALUES(10692, 41271, 'forty-one thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(10693, 13051, 'thirteen thousand fifty-one');\nINSERT INTO t1 VALUES(10694, 70878, 'seventy thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(10695, 73383, 'seventy-three thousand three hundred eighty-three');\nINSERT INTO t1 VALUES(10696, 26048, 'twenty-six thousand forty-eight');\nINSERT INTO t1 VALUES(10697, 18998, 'eighteen thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(10698, 10264, 'ten thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(10699, 62846, 'sixty-two thousand eight hundred forty-six');\nINSERT INTO t1 VALUES(10700, 14514, 'fourteen thousand five hundred fourteen');\nINSERT INTO t1 VALUES(10701, 22221, 'twenty-two thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(10702, 74900, 'seventy-four thousand nine hundred');\nINSERT INTO t1 VALUES(10703, 10563, 'ten thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(10704, 18949, 'eighteen thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(10705, 95105, 'ninety-five thousand one hundred five');\nINSERT INTO t1 VALUES(10706, 5983, 'five thousand nine hundred eighty-three');\nINSERT INTO t1 VALUES(10707, 24749, 'twenty-four thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(10708, 84493, 'eighty-four thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(10709, 86999, 'eighty-six thousand nine hundred ninety-nine');\nINSERT INTO t1 VALUES(10710, 53698, 'fifty-three thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(10711, 86644, 'eighty-six thousand six hundred forty-four');\nINSERT INTO t1 VALUES(10712, 57683, 'fifty-seven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(10713, 43516, 'forty-three thousand five hundred sixteen');\nINSERT INTO t1 VALUES(10714, 50879, 'fifty thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(10715, 1550, 'one thousand five hundred fifty');\nINSERT INTO t1 VALUES(10716, 37513, 'thirty-seven thousand five hundred thirteen');\nINSERT INTO t1 VALUES(10717, 51405, 'fifty-one thousand four hundred five');\nINSERT INTO t1 VALUES(10718, 12167, 'twelve thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(10719, 64332, 'sixty-four thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10720, 82332, 'eighty-two thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(10721, 51731, 'fifty-one thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(10722, 72888, 'seventy-two thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(10723, 20215, 'twenty thousand two hundred fifteen');\nINSERT INTO t1 VALUES(10724, 62782, 'sixty-two thousand seven hundred eighty-two');\nINSERT INTO t1 VALUES(10725, 16241, 'sixteen thousand two hundred forty-one');\nINSERT INTO t1 VALUES(10726, 96359, 'ninety-six thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(10727, 98429, 'ninety-eight thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(10728, 56311, 'fifty-six thousand three hundred eleven');\nINSERT INTO t1 VALUES(10729, 49114, 'forty-nine thousand one hundred fourteen');\nINSERT INTO t1 VALUES(10730, 99936, 'ninety-nine thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(10731, 32643, 'thirty-two thousand six hundred forty-three');\nINSERT INTO t1 VALUES(10732, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(10733, 74799, 'seventy-four thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(10734, 4500, 'four thousand five hundred');\nINSERT INTO t1 VALUES(10735, 15242, 'fifteen thousand two hundred forty-two');\nINSERT INTO t1 VALUES(10736, 42398, 'forty-two thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(10737, 76599, 'seventy-six thousand five hundred ninety-nine');\nINSERT INTO t1 VALUES(10738, 96217, 'ninety-six thousand two hundred seventeen');\nINSERT INTO t1 VALUES(10739, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t1 VALUES(10740, 15274, 'fifteen thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(10741, 90567, 'ninety thousand five hundred sixty-seven');\nINSERT INTO t1 VALUES(10742, 11330, 'eleven thousand three hundred thirty');\nINSERT INTO t1 VALUES(10743, 31315, 'thirty-one thousand three hundred fifteen');\nINSERT INTO t1 VALUES(10744, 45306, 'forty-five thousand three hundred six');\nINSERT INTO t1 VALUES(10745, 41262, 'forty-one thousand two hundred sixty-two');\nINSERT INTO t1 VALUES(10746, 57074, 'fifty-seven thousand seventy-four');\nINSERT INTO t1 VALUES(10747, 52000, 'fifty-two thousand');\nINSERT INTO t1 VALUES(10748, 61762, 'sixty-one thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(10749, 25799, 'twenty-five thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(10750, 70916, 'seventy thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(10751, 89090, 'eighty-nine thousand ninety');\nINSERT INTO t1 VALUES(10752, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t1 VALUES(10753, 60036, 'sixty thousand thirty-six');\nINSERT INTO t1 VALUES(10754, 49730, 'forty-nine thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10755, 59397, 'fifty-nine thousand three hundred ninety-seven');\nINSERT INTO t1 VALUES(10756, 66385, 'sixty-six thousand three hundred eighty-five');\nINSERT INTO t1 VALUES(10757, 59896, 'fifty-nine thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(10758, 87689, 'eighty-seven thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(10759, 71379, 'seventy-one thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(10760, 64816, 'sixty-four thousand eight hundred sixteen');\nINSERT INTO t1 VALUES(10761, 12503, 'twelve thousand five hundred three');\nINSERT INTO t1 VALUES(10762, 78389, 'seventy-eight thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(10763, 78353, 'seventy-eight thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(10764, 9354, 'nine thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(10765, 64345, 'sixty-four thousand three hundred forty-five');\nINSERT INTO t1 VALUES(10766, 11837, 'eleven thousand eight hundred thirty-seven');\nINSERT INTO t1 VALUES(10767, 21734, 'twenty-one thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(10768, 94695, 'ninety-four thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(10769, 48144, 'forty-eight thousand one hundred forty-four');\nINSERT INTO t1 VALUES(10770, 48526, 'forty-eight thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(10771, 9288, 'nine thousand two hundred eighty-eight');\nINSERT INTO t1 VALUES(10772, 29729, 'twenty-nine thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(10773, 23390, 'twenty-three thousand three hundred ninety');\nINSERT INTO t1 VALUES(10774, 96093, 'ninety-six thousand ninety-three');\nINSERT INTO t1 VALUES(10775, 96955, 'ninety-six thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(10776, 46608, 'forty-six thousand six hundred eight');\nINSERT INTO t1 VALUES(10777, 81580, 'eighty-one thousand five hundred eighty');\nINSERT INTO t1 VALUES(10778, 39547, 'thirty-nine thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(10779, 63311, 'sixty-three thousand three hundred eleven');\nINSERT INTO t1 VALUES(10780, 69091, 'sixty-nine thousand ninety-one');\nINSERT INTO t1 VALUES(10781, 14018, 'fourteen thousand eighteen');\nINSERT INTO t1 VALUES(10782, 8312, 'eight thousand three hundred twelve');\nINSERT INTO t1 VALUES(10783, 33064, 'thirty-three thousand sixty-four');\nINSERT INTO t1 VALUES(10784, 61080, 'sixty-one thousand eighty');\nINSERT INTO t1 VALUES(10785, 68978, 'sixty-eight thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(10786, 58771, 'fifty-eight thousand seven hundred seventy-one');\nINSERT INTO t1 VALUES(10787, 11867, 'eleven thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(10788, 2191, 'two thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(10789, 63469, 'sixty-three thousand four hundred sixty-nine');\nINSERT INTO t1 VALUES(10790, 96149, 'ninety-six thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(10791, 22426, 'twenty-two thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(10792, 66869, 'sixty-six thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(10793, 47522, 'forty-seven thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(10794, 62202, 'sixty-two thousand two hundred two');\nINSERT INTO t1 VALUES(10795, 22152, 'twenty-two thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(10796, 96885, 'ninety-six thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(10797, 88877, 'eighty-eight thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(10798, 33183, 'thirty-three thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(10799, 33194, 'thirty-three thousand one hundred ninety-four');\nINSERT INTO t1 VALUES(10800, 38503, 'thirty-eight thousand five hundred three');\nINSERT INTO t1 VALUES(10801, 23378, 'twenty-three thousand three hundred seventy-eight');\nINSERT INTO t1 VALUES(10802, 65338, 'sixty-five thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(10803, 49623, 'forty-nine thousand six hundred twenty-three');\nINSERT INTO t1 VALUES(10804, 53627, 'fifty-three thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(10805, 96028, 'ninety-six thousand twenty-eight');\nINSERT INTO t1 VALUES(10806, 12055, 'twelve thousand fifty-five');\nINSERT INTO t1 VALUES(10807, 23547, 'twenty-three thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(10808, 90071, 'ninety thousand seventy-one');\nINSERT INTO t1 VALUES(10809, 93342, 'ninety-three thousand three hundred forty-two');\nINSERT INTO t1 VALUES(10810, 20092, 'twenty thousand ninety-two');\nINSERT INTO t1 VALUES(10811, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t1 VALUES(10812, 11784, 'eleven thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(10813, 64869, 'sixty-four thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(10814, 33483, 'thirty-three thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(10815, 91058, 'ninety-one thousand fifty-eight');\nINSERT INTO t1 VALUES(10816, 32646, 'thirty-two thousand six hundred forty-six');\nINSERT INTO t1 VALUES(10817, 17269, 'seventeen thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(10818, 82328, 'eighty-two thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(10819, 9053, 'nine thousand fifty-three');\nINSERT INTO t1 VALUES(10820, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(10821, 76024, 'seventy-six thousand twenty-four');\nINSERT INTO t1 VALUES(10822, 45566, 'forty-five thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(10823, 7681, 'seven thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(10824, 75631, 'seventy-five thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(10825, 19416, 'nineteen thousand four hundred sixteen');\nINSERT INTO t1 VALUES(10826, 34508, 'thirty-four thousand five hundred eight');\nINSERT INTO t1 VALUES(10827, 86188, 'eighty-six thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(10828, 57730, 'fifty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10829, 78122, 'seventy-eight thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(10830, 57658, 'fifty-seven thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(10831, 23935, 'twenty-three thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(10832, 8509, 'eight thousand five hundred nine');\nINSERT INTO t1 VALUES(10833, 41998, 'forty-one thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(10834, 22443, 'twenty-two thousand four hundred forty-three');\nINSERT INTO t1 VALUES(10835, 34240, 'thirty-four thousand two hundred forty');\nINSERT INTO t1 VALUES(10836, 58526, 'fifty-eight thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(10837, 4787, 'four thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(10838, 67129, 'sixty-seven thousand one hundred twenty-nine');\nINSERT INTO t1 VALUES(10839, 62453, 'sixty-two thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10840, 79586, 'seventy-nine thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(10841, 7493, 'seven thousand four hundred ninety-three');\nINSERT INTO t1 VALUES(10842, 12259, 'twelve thousand two hundred fifty-nine');\nINSERT INTO t1 VALUES(10843, 52059, 'fifty-two thousand fifty-nine');\nINSERT INTO t1 VALUES(10844, 83337, 'eighty-three thousand three hundred thirty-seven');\nINSERT INTO t1 VALUES(10845, 32091, 'thirty-two thousand ninety-one');\nINSERT INTO t1 VALUES(10846, 11790, 'eleven thousand seven hundred ninety');\nINSERT INTO t1 VALUES(10847, 98420, 'ninety-eight thousand four hundred twenty');\nINSERT INTO t1 VALUES(10848, 45711, 'forty-five thousand seven hundred eleven');\nINSERT INTO t1 VALUES(10849, 51695, 'fifty-one thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(10850, 96850, 'ninety-six thousand eight hundred fifty');\nINSERT INTO t1 VALUES(10851, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(10852, 35011, 'thirty-five thousand eleven');\nINSERT INTO t1 VALUES(10853, 14683, 'fourteen thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(10854, 96888, 'ninety-six thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(10855, 82426, 'eighty-two thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(10856, 11234, 'eleven thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(10857, 85034, 'eighty-five thousand thirty-four');\nINSERT INTO t1 VALUES(10858, 81274, 'eighty-one thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(10859, 82230, 'eighty-two thousand two hundred thirty');\nINSERT INTO t1 VALUES(10860, 85989, 'eighty-five thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(10861, 66536, 'sixty-six thousand five hundred thirty-six');\nINSERT INTO t1 VALUES(10862, 33191, 'thirty-three thousand one hundred ninety-one');\nINSERT INTO t1 VALUES(10863, 23539, 'twenty-three thousand five hundred thirty-nine');\nINSERT INTO t1 VALUES(10864, 74767, 'seventy-four thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(10865, 88593, 'eighty-eight thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(10866, 93031, 'ninety-three thousand thirty-one');\nINSERT INTO t1 VALUES(10867, 67221, 'sixty-seven thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(10868, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t1 VALUES(10869, 79347, 'seventy-nine thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(10870, 27148, 'twenty-seven thousand one hundred forty-eight');\nINSERT INTO t1 VALUES(10871, 39436, 'thirty-nine thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(10872, 14979, 'fourteen thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(10873, 95073, 'ninety-five thousand seventy-three');\nINSERT INTO t1 VALUES(10874, 22359, 'twenty-two thousand three hundred fifty-nine');\nINSERT INTO t1 VALUES(10875, 65326, 'sixty-five thousand three hundred twenty-six');\nINSERT INTO t1 VALUES(10876, 38853, 'thirty-eight thousand eight hundred fifty-three');\nINSERT INTO t1 VALUES(10877, 40785, 'forty thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(10878, 76787, 'seventy-six thousand seven hundred eighty-seven');\nINSERT INTO t1 VALUES(10879, 23233, 'twenty-three thousand two hundred thirty-three');\nINSERT INTO t1 VALUES(10880, 88496, 'eighty-eight thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(10881, 96468, 'ninety-six thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(10882, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t1 VALUES(10883, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t1 VALUES(10884, 461, 'four hundred sixty-one');\nINSERT INTO t1 VALUES(10885, 51517, 'fifty-one thousand five hundred seventeen');\nINSERT INTO t1 VALUES(10886, 66530, 'sixty-six thousand five hundred thirty');\nINSERT INTO t1 VALUES(10887, 97728, 'ninety-seven thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(10888, 66902, 'sixty-six thousand nine hundred two');\nINSERT INTO t1 VALUES(10889, 85268, 'eighty-five thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(10890, 46403, 'forty-six thousand four hundred three');\nINSERT INTO t1 VALUES(10891, 252, 'two hundred fifty-two');\nINSERT INTO t1 VALUES(10892, 54126, 'fifty-four thousand one hundred twenty-six');\nINSERT INTO t1 VALUES(10893, 79876, 'seventy-nine thousand eight hundred seventy-six');\nINSERT INTO t1 VALUES(10894, 14464, 'fourteen thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(10895, 28362, 'twenty-eight thousand three hundred sixty-two');\nINSERT INTO t1 VALUES(10896, 19447, 'nineteen thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(10897, 13730, 'thirteen thousand seven hundred thirty');\nINSERT INTO t1 VALUES(10898, 97977, 'ninety-seven thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(10899, 59453, 'fifty-nine thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(10900, 27139, 'twenty-seven thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(10901, 17937, 'seventeen thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(10902, 51267, 'fifty-one thousand two hundred sixty-seven');\nINSERT INTO t1 VALUES(10903, 85070, 'eighty-five thousand seventy');\nINSERT INTO t1 VALUES(10904, 29780, 'twenty-nine thousand seven hundred eighty');\nINSERT INTO t1 VALUES(10905, 25436, 'twenty-five thousand four hundred thirty-six');\nINSERT INTO t1 VALUES(10906, 8806, 'eight thousand eight hundred six');\nINSERT INTO t1 VALUES(10907, 35180, 'thirty-five thousand one hundred eighty');\nINSERT INTO t1 VALUES(10908, 3701, 'three thousand seven hundred one');\nINSERT INTO t1 VALUES(10909, 97212, 'ninety-seven thousand two hundred twelve');\nINSERT INTO t1 VALUES(10910, 47810, 'forty-seven thousand eight hundred ten');\nINSERT INTO t1 VALUES(10911, 82542, 'eighty-two thousand five hundred forty-two');\nINSERT INTO t1 VALUES(10912, 76595, 'seventy-six thousand five hundred ninety-five');\nINSERT INTO t1 VALUES(10913, 50943, 'fifty thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(10914, 42271, 'forty-two thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(10915, 50961, 'fifty thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(10916, 5271, 'five thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(10917, 66449, 'sixty-six thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(10918, 24572, 'twenty-four thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(10919, 87200, 'eighty-seven thousand two hundred');\nINSERT INTO t1 VALUES(10920, 75613, 'seventy-five thousand six hundred thirteen');\nINSERT INTO t1 VALUES(10921, 48748, 'forty-eight thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(10922, 1894, 'one thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(10923, 61788, 'sixty-one thousand seven hundred eighty-eight');\nINSERT INTO t1 VALUES(10924, 12099, 'twelve thousand ninety-nine');\nINSERT INTO t1 VALUES(10925, 6783, 'six thousand seven hundred eighty-three');\nINSERT INTO t1 VALUES(10926, 87198, 'eighty-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(10927, 59719, 'fifty-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(10928, 66019, 'sixty-six thousand nineteen');\nINSERT INTO t1 VALUES(10929, 4352, 'four thousand three hundred fifty-two');\nINSERT INTO t1 VALUES(10930, 969, 'nine hundred sixty-nine');\nINSERT INTO t1 VALUES(10931, 54391, 'fifty-four thousand three hundred ninety-one');\nINSERT INTO t1 VALUES(10932, 94703, 'ninety-four thousand seven hundred three');\nINSERT INTO t1 VALUES(10933, 75766, 'seventy-five thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(10934, 55712, 'fifty-five thousand seven hundred twelve');\nINSERT INTO t1 VALUES(10935, 86909, 'eighty-six thousand nine hundred nine');\nINSERT INTO t1 VALUES(10936, 42893, 'forty-two thousand eight hundred ninety-three');\nINSERT INTO t1 VALUES(10937, 81367, 'eighty-one thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(10938, 37186, 'thirty-seven thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(10939, 34100, 'thirty-four thousand one hundred');\nINSERT INTO t1 VALUES(10940, 49485, 'forty-nine thousand four hundred eighty-five');\nINSERT INTO t1 VALUES(10941, 5064, 'five thousand sixty-four');\nINSERT INTO t1 VALUES(10942, 63099, 'sixty-three thousand ninety-nine');\nINSERT INTO t1 VALUES(10943, 13226, 'thirteen thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(10944, 38736, 'thirty-eight thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(10945, 45664, 'forty-five thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(10946, 16973, 'sixteen thousand nine hundred seventy-three');\nINSERT INTO t1 VALUES(10947, 79317, 'seventy-nine thousand three hundred seventeen');\nINSERT INTO t1 VALUES(10948, 63226, 'sixty-three thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(10949, 13040, 'thirteen thousand forty');\nINSERT INTO t1 VALUES(10950, 80284, 'eighty thousand two hundred eighty-four');\nINSERT INTO t1 VALUES(10951, 92496, 'ninety-two thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(10952, 58750, 'fifty-eight thousand seven hundred fifty');\nINSERT INTO t1 VALUES(10953, 27269, 'twenty-seven thousand two hundred sixty-nine');\nINSERT INTO t1 VALUES(10954, 49101, 'forty-nine thousand one hundred one');\nINSERT INTO t1 VALUES(10955, 79100, 'seventy-nine thousand one hundred');\nINSERT INTO t1 VALUES(10956, 48054, 'forty-eight thousand fifty-four');\nINSERT INTO t1 VALUES(10957, 99619, 'ninety-nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(10958, 57618, 'fifty-seven thousand six hundred eighteen');\nINSERT INTO t1 VALUES(10959, 48220, 'forty-eight thousand two hundred twenty');\nINSERT INTO t1 VALUES(10960, 63450, 'sixty-three thousand four hundred fifty');\nINSERT INTO t1 VALUES(10961, 76115, 'seventy-six thousand one hundred fifteen');\nINSERT INTO t1 VALUES(10962, 46025, 'forty-six thousand twenty-five');\nINSERT INTO t1 VALUES(10963, 12317, 'twelve thousand three hundred seventeen');\nINSERT INTO t1 VALUES(10964, 43814, 'forty-three thousand eight hundred fourteen');\nINSERT INTO t1 VALUES(10965, 62183, 'sixty-two thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(10966, 82202, 'eighty-two thousand two hundred two');\nINSERT INTO t1 VALUES(10967, 55776, 'fifty-five thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(10968, 19038, 'nineteen thousand thirty-eight');\nINSERT INTO t1 VALUES(10969, 22939, 'twenty-two thousand nine hundred thirty-nine');\nINSERT INTO t1 VALUES(10970, 35172, 'thirty-five thousand one hundred seventy-two');\nINSERT INTO t1 VALUES(10971, 54479, 'fifty-four thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(10972, 55441, 'fifty-five thousand four hundred forty-one');\nINSERT INTO t1 VALUES(10973, 60209, 'sixty thousand two hundred nine');\nINSERT INTO t1 VALUES(10974, 1515, 'one thousand five hundred fifteen');\nINSERT INTO t1 VALUES(10975, 41346, 'forty-one thousand three hundred forty-six');\nINSERT INTO t1 VALUES(10976, 92456, 'ninety-two thousand four hundred fifty-six');\nINSERT INTO t1 VALUES(10977, 27830, 'twenty-seven thousand eight hundred thirty');\nINSERT INTO t1 VALUES(10978, 94089, 'ninety-four thousand eighty-nine');\nINSERT INTO t1 VALUES(10979, 16491, 'sixteen thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(10980, 21499, 'twenty-one thousand four hundred ninety-nine');\nINSERT INTO t1 VALUES(10981, 60678, 'sixty thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(10982, 62826, 'sixty-two thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(10983, 98474, 'ninety-eight thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(10984, 28801, 'twenty-eight thousand eight hundred one');\nINSERT INTO t1 VALUES(10985, 30519, 'thirty thousand five hundred nineteen');\nINSERT INTO t1 VALUES(10986, 92445, 'ninety-two thousand four hundred forty-five');\nINSERT INTO t1 VALUES(10987, 7658, 'seven thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(10988, 12762, 'twelve thousand seven hundred sixty-two');\nINSERT INTO t1 VALUES(10989, 8920, 'eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(10990, 31854, 'thirty-one thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(10991, 36357, 'thirty-six thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(10992, 67440, 'sixty-seven thousand four hundred forty');\nINSERT INTO t1 VALUES(10993, 13413, 'thirteen thousand four hundred thirteen');\nINSERT INTO t1 VALUES(10994, 3276, 'three thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(10995, 48137, 'forty-eight thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(10996, 27490, 'twenty-seven thousand four hundred ninety');\nINSERT INTO t1 VALUES(10997, 94859, 'ninety-four thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(10998, 64664, 'sixty-four thousand six hundred sixty-four');\nINSERT INTO t1 VALUES(10999, 35550, 'thirty-five thousand five hundred fifty');\nINSERT INTO t1 VALUES(11000, 64527, 'sixty-four thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11001, 92779, 'ninety-two thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(11002, 38952, 'thirty-eight thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(11003, 27774, 'twenty-seven thousand seven hundred seventy-four');\nINSERT INTO t1 VALUES(11004, 9149, 'nine thousand one hundred forty-nine');\nINSERT INTO t1 VALUES(11005, 67899, 'sixty-seven thousand eight hundred ninety-nine');\nINSERT INTO t1 VALUES(11006, 27931, 'twenty-seven thousand nine hundred thirty-one');\nINSERT INTO t1 VALUES(11007, 25388, 'twenty-five thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(11008, 68080, 'sixty-eight thousand eighty');\nINSERT INTO t1 VALUES(11009, 95064, 'ninety-five thousand sixty-four');\nINSERT INTO t1 VALUES(11010, 32327, 'thirty-two thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(11011, 18776, 'eighteen thousand seven hundred seventy-six');\nINSERT INTO t1 VALUES(11012, 95096, 'ninety-five thousand ninety-six');\nINSERT INTO t1 VALUES(11013, 377, 'three hundred seventy-seven');\nINSERT INTO t1 VALUES(11014, 21544, 'twenty-one thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11015, 6459, 'six thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(11016, 81544, 'eighty-one thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11017, 48047, 'forty-eight thousand forty-seven');\nINSERT INTO t1 VALUES(11018, 113, 'one hundred thirteen');\nINSERT INTO t1 VALUES(11019, 27967, 'twenty-seven thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(11020, 26009, 'twenty-six thousand nine');\nINSERT INTO t1 VALUES(11021, 30205, 'thirty thousand two hundred five');\nINSERT INTO t1 VALUES(11022, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(11023, 53473, 'fifty-three thousand four hundred seventy-three');\nINSERT INTO t1 VALUES(11024, 58483, 'fifty-eight thousand four hundred eighty-three');\nINSERT INTO t1 VALUES(11025, 1061, 'one thousand sixty-one');\nINSERT INTO t1 VALUES(11026, 9042, 'nine thousand forty-two');\nINSERT INTO t1 VALUES(11027, 68476, 'sixty-eight thousand four hundred seventy-six');\nINSERT INTO t1 VALUES(11028, 95718, 'ninety-five thousand seven hundred eighteen');\nINSERT INTO t1 VALUES(11029, 14828, 'fourteen thousand eight hundred twenty-eight');\nINSERT INTO t1 VALUES(11030, 55449, 'fifty-five thousand four hundred forty-nine');\nINSERT INTO t1 VALUES(11031, 96586, 'ninety-six thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(11032, 55448, 'fifty-five thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(11033, 32906, 'thirty-two thousand nine hundred six');\nINSERT INTO t1 VALUES(11034, 88672, 'eighty-eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(11035, 80220, 'eighty thousand two hundred twenty');\nINSERT INTO t1 VALUES(11036, 33798, 'thirty-three thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(11037, 79217, 'seventy-nine thousand two hundred seventeen');\nINSERT INTO t1 VALUES(11038, 8086, 'eight thousand eighty-six');\nINSERT INTO t1 VALUES(11039, 19442, 'nineteen thousand four hundred forty-two');\nINSERT INTO t1 VALUES(11040, 9619, 'nine thousand six hundred nineteen');\nINSERT INTO t1 VALUES(11041, 7271, 'seven thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(11042, 3628, 'three thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11043, 47131, 'forty-seven thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(11044, 96042, 'ninety-six thousand forty-two');\nINSERT INTO t1 VALUES(11045, 52186, 'fifty-two thousand one hundred eighty-six');\nINSERT INTO t1 VALUES(11046, 93855, 'ninety-three thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(11047, 26403, 'twenty-six thousand four hundred three');\nINSERT INTO t1 VALUES(11048, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t1 VALUES(11049, 8047, 'eight thousand forty-seven');\nINSERT INTO t1 VALUES(11050, 35213, 'thirty-five thousand two hundred thirteen');\nINSERT INTO t1 VALUES(11051, 84534, 'eighty-four thousand five hundred thirty-four');\nINSERT INTO t1 VALUES(11052, 79475, 'seventy-nine thousand four hundred seventy-five');\nINSERT INTO t1 VALUES(11053, 80274, 'eighty thousand two hundred seventy-four');\nINSERT INTO t1 VALUES(11054, 80154, 'eighty thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(11055, 54022, 'fifty-four thousand twenty-two');\nINSERT INTO t1 VALUES(11056, 44275, 'forty-four thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(11057, 37656, 'thirty-seven thousand six hundred fifty-six');\nINSERT INTO t1 VALUES(11058, 53886, 'fifty-three thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(11059, 75561, 'seventy-five thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(11060, 47730, 'forty-seven thousand seven hundred thirty');\nINSERT INTO t1 VALUES(11061, 7811, 'seven thousand eight hundred eleven');\nINSERT INTO t1 VALUES(11062, 65177, 'sixty-five thousand one hundred seventy-seven');\nINSERT INTO t1 VALUES(11063, 86952, 'eighty-six thousand nine hundred fifty-two');\nINSERT INTO t1 VALUES(11064, 90950, 'ninety thousand nine hundred fifty');\nINSERT INTO t1 VALUES(11065, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(11066, 62714, 'sixty-two thousand seven hundred fourteen');\nINSERT INTO t1 VALUES(11067, 82637, 'eighty-two thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(11068, 84277, 'eighty-four thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(11069, 82932, 'eighty-two thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(11070, 4205, 'four thousand two hundred five');\nINSERT INTO t1 VALUES(11071, 90041, 'ninety thousand forty-one');\nINSERT INTO t1 VALUES(11072, 19620, 'nineteen thousand six hundred twenty');\nINSERT INTO t1 VALUES(11073, 94636, 'ninety-four thousand six hundred thirty-six');\nINSERT INTO t1 VALUES(11074, 70807, 'seventy thousand eight hundred seven');\nINSERT INTO t1 VALUES(11075, 53635, 'fifty-three thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(11076, 7729, 'seven thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(11077, 7132, 'seven thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11078, 11962, 'eleven thousand nine hundred sixty-two');\nINSERT INTO t1 VALUES(11079, 67382, 'sixty-seven thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(11080, 14206, 'fourteen thousand two hundred six');\nINSERT INTO t1 VALUES(11081, 85308, 'eighty-five thousand three hundred eight');\nINSERT INTO t1 VALUES(11082, 36767, 'thirty-six thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(11083, 13691, 'thirteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(11084, 34864, 'thirty-four thousand eight hundred sixty-four');\nINSERT INTO t1 VALUES(11085, 97248, 'ninety-seven thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(11086, 88400, 'eighty-eight thousand four hundred');\nINSERT INTO t1 VALUES(11087, 12959, 'twelve thousand nine hundred fifty-nine');\nINSERT INTO t1 VALUES(11088, 86057, 'eighty-six thousand fifty-seven');\nINSERT INTO t1 VALUES(11089, 99573, 'ninety-nine thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11090, 28867, 'twenty-eight thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11091, 77255, 'seventy-seven thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(11092, 99923, 'ninety-nine thousand nine hundred twenty-three');\nINSERT INTO t1 VALUES(11093, 17555, 'seventeen thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(11094, 24207, 'twenty-four thousand two hundred seven');\nINSERT INTO t1 VALUES(11095, 32197, 'thirty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(11096, 70874, 'seventy thousand eight hundred seventy-four');\nINSERT INTO t1 VALUES(11097, 91243, 'ninety-one thousand two hundred forty-three');\nINSERT INTO t1 VALUES(11098, 94226, 'ninety-four thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(11099, 41678, 'forty-one thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(11100, 32744, 'thirty-two thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(11101, 76940, 'seventy-six thousand nine hundred forty');\nINSERT INTO t1 VALUES(11102, 24246, 'twenty-four thousand two hundred forty-six');\nINSERT INTO t1 VALUES(11103, 24799, 'twenty-four thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(11104, 82278, 'eighty-two thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(11105, 8810, 'eight thousand eight hundred ten');\nINSERT INTO t1 VALUES(11106, 21033, 'twenty-one thousand thirty-three');\nINSERT INTO t1 VALUES(11107, 49279, 'forty-nine thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11108, 53894, 'fifty-three thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11109, 13935, 'thirteen thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(11110, 90779, 'ninety thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(11111, 49789, 'forty-nine thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(11112, 27533, 'twenty-seven thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(11113, 31991, 'thirty-one thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11114, 92086, 'ninety-two thousand eighty-six');\nINSERT INTO t1 VALUES(11115, 17907, 'seventeen thousand nine hundred seven');\nINSERT INTO t1 VALUES(11116, 40760, 'forty thousand seven hundred sixty');\nINSERT INTO t1 VALUES(11117, 46154, 'forty-six thousand one hundred fifty-four');\nINSERT INTO t1 VALUES(11118, 44028, 'forty-four thousand twenty-eight');\nINSERT INTO t1 VALUES(11119, 82322, 'eighty-two thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(11120, 7652, 'seven thousand six hundred fifty-two');\nINSERT INTO t1 VALUES(11121, 25012, 'twenty-five thousand twelve');\nINSERT INTO t1 VALUES(11122, 62346, 'sixty-two thousand three hundred forty-six');\nINSERT INTO t1 VALUES(11123, 18036, 'eighteen thousand thirty-six');\nINSERT INTO t1 VALUES(11124, 63989, 'sixty-three thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(11125, 25977, 'twenty-five thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(11126, 39881, 'thirty-nine thousand eight hundred eighty-one');\nINSERT INTO t1 VALUES(11127, 53450, 'fifty-three thousand four hundred fifty');\nINSERT INTO t1 VALUES(11128, 14366, 'fourteen thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11129, 45033, 'forty-five thousand thirty-three');\nINSERT INTO t1 VALUES(11130, 84124, 'eighty-four thousand one hundred twenty-four');\nINSERT INTO t1 VALUES(11131, 88830, 'eighty-eight thousand eight hundred thirty');\nINSERT INTO t1 VALUES(11132, 23251, 'twenty-three thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(11133, 60609, 'sixty thousand six hundred nine');\nINSERT INTO t1 VALUES(11134, 22197, 'twenty-two thousand one hundred ninety-seven');\nINSERT INTO t1 VALUES(11135, 88007, 'eighty-eight thousand seven');\nINSERT INTO t1 VALUES(11136, 9551, 'nine thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(11137, 974, 'nine hundred seventy-four');\nINSERT INTO t1 VALUES(11138, 26064, 'twenty-six thousand sixty-four');\nINSERT INTO t1 VALUES(11139, 58260, 'fifty-eight thousand two hundred sixty');\nINSERT INTO t1 VALUES(11140, 2924, 'two thousand nine hundred twenty-four');\nINSERT INTO t1 VALUES(11141, 18991, 'eighteen thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11142, 45192, 'forty-five thousand one hundred ninety-two');\nINSERT INTO t1 VALUES(11143, 56707, 'fifty-six thousand seven hundred seven');\nINSERT INTO t1 VALUES(11144, 47479, 'forty-seven thousand four hundred seventy-nine');\nINSERT INTO t1 VALUES(11145, 5210, 'five thousand two hundred ten');\nINSERT INTO t1 VALUES(11146, 67744, 'sixty-seven thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(11147, 25182, 'twenty-five thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(11148, 26254, 'twenty-six thousand two hundred fifty-four');\nINSERT INTO t1 VALUES(11149, 10598, 'ten thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(11150, 17093, 'seventeen thousand ninety-three');\nINSERT INTO t1 VALUES(11151, 57792, 'fifty-seven thousand seven hundred ninety-two');\nINSERT INTO t1 VALUES(11152, 44167, 'forty-four thousand one hundred sixty-seven');\nINSERT INTO t1 VALUES(11153, 39885, 'thirty-nine thousand eight hundred eighty-five');\nINSERT INTO t1 VALUES(11154, 95249, 'ninety-five thousand two hundred forty-nine');\nINSERT INTO t1 VALUES(11155, 58791, 'fifty-eight thousand seven hundred ninety-one');\nINSERT INTO t1 VALUES(11156, 88122, 'eighty-eight thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11157, 17152, 'seventeen thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(11158, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t1 VALUES(11159, 99723, 'ninety-nine thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(11160, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(11161, 2453, 'two thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(11162, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t1 VALUES(11163, 88041, 'eighty-eight thousand forty-one');\nINSERT INTO t1 VALUES(11164, 58299, 'fifty-eight thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(11165, 55464, 'fifty-five thousand four hundred sixty-four');\nINSERT INTO t1 VALUES(11166, 56279, 'fifty-six thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11167, 75704, 'seventy-five thousand seven hundred four');\nINSERT INTO t1 VALUES(11168, 67092, 'sixty-seven thousand ninety-two');\nINSERT INTO t1 VALUES(11169, 55477, 'fifty-five thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(11170, 40019, 'forty thousand nineteen');\nINSERT INTO t1 VALUES(11171, 20332, 'twenty thousand three hundred thirty-two');\nINSERT INTO t1 VALUES(11172, 59219, 'fifty-nine thousand two hundred nineteen');\nINSERT INTO t1 VALUES(11173, 56986, 'fifty-six thousand nine hundred eighty-six');\nINSERT INTO t1 VALUES(11174, 58139, 'fifty-eight thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(11175, 79036, 'seventy-nine thousand thirty-six');\nINSERT INTO t1 VALUES(11176, 68196, 'sixty-eight thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(11177, 84276, 'eighty-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(11178, 21341, 'twenty-one thousand three hundred forty-one');\nINSERT INTO t1 VALUES(11179, 8146, 'eight thousand one hundred forty-six');\nINSERT INTO t1 VALUES(11180, 69459, 'sixty-nine thousand four hundred fifty-nine');\nINSERT INTO t1 VALUES(11181, 41270, 'forty-one thousand two hundred seventy');\nINSERT INTO t1 VALUES(11182, 6734, 'six thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(11183, 76693, 'seventy-six thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(11184, 66688, 'sixty-six thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(11185, 22279, 'twenty-two thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11186, 69937, 'sixty-nine thousand nine hundred thirty-seven');\nINSERT INTO t1 VALUES(11187, 29281, 'twenty-nine thousand two hundred eighty-one');\nINSERT INTO t1 VALUES(11188, 28208, 'twenty-eight thousand two hundred eight');\nINSERT INTO t1 VALUES(11189, 50921, 'fifty thousand nine hundred twenty-one');\nINSERT INTO t1 VALUES(11190, 2817, 'two thousand eight hundred seventeen');\nINSERT INTO t1 VALUES(11191, 83555, 'eighty-three thousand five hundred fifty-five');\nINSERT INTO t1 VALUES(11192, 97852, 'ninety-seven thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(11193, 19221, 'nineteen thousand two hundred twenty-one');\nINSERT INTO t1 VALUES(11194, 88185, 'eighty-eight thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(11195, 81275, 'eighty-one thousand two hundred seventy-five');\nINSERT INTO t1 VALUES(11196, 21630, 'twenty-one thousand six hundred thirty');\nINSERT INTO t1 VALUES(11197, 30455, 'thirty thousand four hundred fifty-five');\nINSERT INTO t1 VALUES(11198, 33726, 'thirty-three thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(11199, 67058, 'sixty-seven thousand fifty-eight');\nINSERT INTO t1 VALUES(11200, 53257, 'fifty-three thousand two hundred fifty-seven');\nINSERT INTO t1 VALUES(11201, 87683, 'eighty-seven thousand six hundred eighty-three');\nINSERT INTO t1 VALUES(11202, 11480, 'eleven thousand four hundred eighty');\nINSERT INTO t1 VALUES(11203, 97866, 'ninety-seven thousand eight hundred sixty-six');\nINSERT INTO t1 VALUES(11204, 81268, 'eighty-one thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(11205, 56356, 'fifty-six thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(11206, 38733, 'thirty-eight thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(11207, 8611, 'eight thousand six hundred eleven');\nINSERT INTO t1 VALUES(11208, 67829, 'sixty-seven thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11209, 24565, 'twenty-four thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(11210, 26110, 'twenty-six thousand one hundred ten');\nINSERT INTO t1 VALUES(11211, 60827, 'sixty thousand eight hundred twenty-seven');\nINSERT INTO t1 VALUES(11212, 6979, 'six thousand nine hundred seventy-nine');\nINSERT INTO t1 VALUES(11213, 74898, 'seventy-four thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11214, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t1 VALUES(11215, 18131, 'eighteen thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(11216, 36306, 'thirty-six thousand three hundred six');\nINSERT INTO t1 VALUES(11217, 88068, 'eighty-eight thousand sixty-eight');\nINSERT INTO t1 VALUES(11218, 25037, 'twenty-five thousand thirty-seven');\nINSERT INTO t1 VALUES(11219, 58925, 'fifty-eight thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(11220, 14552, 'fourteen thousand five hundred fifty-two');\nINSERT INTO t1 VALUES(11221, 35686, 'thirty-five thousand six hundred eighty-six');\nINSERT INTO t1 VALUES(11222, 50496, 'fifty thousand four hundred ninety-six');\nINSERT INTO t1 VALUES(11223, 53685, 'fifty-three thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(11224, 916, 'nine hundred sixteen');\nINSERT INTO t1 VALUES(11225, 59429, 'fifty-nine thousand four hundred twenty-nine');\nINSERT INTO t1 VALUES(11226, 36731, 'thirty-six thousand seven hundred thirty-one');\nINSERT INTO t1 VALUES(11227, 77527, 'seventy-seven thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11228, 80800, 'eighty thousand eight hundred');\nINSERT INTO t1 VALUES(11229, 44052, 'forty-four thousand fifty-two');\nINSERT INTO t1 VALUES(11230, 46179, 'forty-six thousand one hundred seventy-nine');\nINSERT INTO t1 VALUES(11231, 94669, 'ninety-four thousand six hundred sixty-nine');\nINSERT INTO t1 VALUES(11232, 61298, 'sixty-one thousand two hundred ninety-eight');\nINSERT INTO t1 VALUES(11233, 63076, 'sixty-three thousand seventy-six');\nINSERT INTO t1 VALUES(11234, 57765, 'fifty-seven thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(11235, 86540, 'eighty-six thousand five hundred forty');\nINSERT INTO t1 VALUES(11236, 6967, 'six thousand nine hundred sixty-seven');\nINSERT INTO t1 VALUES(11237, 70697, 'seventy thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(11238, 44963, 'forty-four thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(11239, 22702, 'twenty-two thousand seven hundred two');\nINSERT INTO t1 VALUES(11240, 29578, 'twenty-nine thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(11241, 39063, 'thirty-nine thousand sixty-three');\nINSERT INTO t1 VALUES(11242, 69544, 'sixty-nine thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11243, 76435, 'seventy-six thousand four hundred thirty-five');\nINSERT INTO t1 VALUES(11244, 35693, 'thirty-five thousand six hundred ninety-three');\nINSERT INTO t1 VALUES(11245, 45797, 'forty-five thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(11246, 7289, 'seven thousand two hundred eighty-nine');\nINSERT INTO t1 VALUES(11247, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t1 VALUES(11248, 53234, 'fifty-three thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(11249, 26498, 'twenty-six thousand four hundred ninety-eight');\nINSERT INTO t1 VALUES(11250, 8314, 'eight thousand three hundred fourteen');\nINSERT INTO t1 VALUES(11251, 39494, 'thirty-nine thousand four hundred ninety-four');\nINSERT INTO t1 VALUES(11252, 9863, 'nine thousand eight hundred sixty-three');\nINSERT INTO t1 VALUES(11253, 86654, 'eighty-six thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(11254, 85632, 'eighty-five thousand six hundred thirty-two');\nINSERT INTO t1 VALUES(11255, 29995, 'twenty-nine thousand nine hundred ninety-five');\nINSERT INTO t1 VALUES(11256, 52106, 'fifty-two thousand one hundred six');\nINSERT INTO t1 VALUES(11257, 93719, 'ninety-three thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(11258, 18466, 'eighteen thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(11259, 50611, 'fifty thousand six hundred eleven');\nINSERT INTO t1 VALUES(11260, 72546, 'seventy-two thousand five hundred forty-six');\nINSERT INTO t1 VALUES(11261, 30987, 'thirty thousand nine hundred eighty-seven');\nINSERT INTO t1 VALUES(11262, 38773, 'thirty-eight thousand seven hundred seventy-three');\nINSERT INTO t1 VALUES(11263, 84911, 'eighty-four thousand nine hundred eleven');\nINSERT INTO t1 VALUES(11264, 66668, 'sixty-six thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(11265, 24231, 'twenty-four thousand two hundred thirty-one');\nINSERT INTO t1 VALUES(11266, 52248, 'fifty-two thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(11267, 96804, 'ninety-six thousand eight hundred four');\nINSERT INTO t1 VALUES(11268, 94729, 'ninety-four thousand seven hundred twenty-nine');\nINSERT INTO t1 VALUES(11269, 68182, 'sixty-eight thousand one hundred eighty-two');\nINSERT INTO t1 VALUES(11270, 90220, 'ninety thousand two hundred twenty');\nINSERT INTO t1 VALUES(11271, 54073, 'fifty-four thousand seventy-three');\nINSERT INTO t1 VALUES(11272, 38128, 'thirty-eight thousand one hundred twenty-eight');\nINSERT INTO t1 VALUES(11273, 24565, 'twenty-four thousand five hundred sixty-five');\nINSERT INTO t1 VALUES(11274, 41922, 'forty-one thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(11275, 29049, 'twenty-nine thousand forty-nine');\nINSERT INTO t1 VALUES(11276, 45803, 'forty-five thousand eight hundred three');\nINSERT INTO t1 VALUES(11277, 48136, 'forty-eight thousand one hundred thirty-six');\nINSERT INTO t1 VALUES(11278, 90524, 'ninety thousand five hundred twenty-four');\nINSERT INTO t1 VALUES(11279, 45114, 'forty-five thousand one hundred fourteen');\nINSERT INTO t1 VALUES(11280, 18867, 'eighteen thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11281, 122, 'one hundred twenty-two');\nINSERT INTO t1 VALUES(11282, 10418, 'ten thousand four hundred eighteen');\nINSERT INTO t1 VALUES(11283, 45662, 'forty-five thousand six hundred sixty-two');\nINSERT INTO t1 VALUES(11284, 50657, 'fifty thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(11285, 14268, 'fourteen thousand two hundred sixty-eight');\nINSERT INTO t1 VALUES(11286, 86030, 'eighty-six thousand thirty');\nINSERT INTO t1 VALUES(11287, 73389, 'seventy-three thousand three hundred eighty-nine');\nINSERT INTO t1 VALUES(11288, 532, 'five hundred thirty-two');\nINSERT INTO t1 VALUES(11289, 94098, 'ninety-four thousand ninety-eight');\nINSERT INTO t1 VALUES(11290, 46527, 'forty-six thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11291, 74486, 'seventy-four thousand four hundred eighty-six');\nINSERT INTO t1 VALUES(11292, 66766, 'sixty-six thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(11293, 39703, 'thirty-nine thousand seven hundred three');\nINSERT INTO t1 VALUES(11294, 39625, 'thirty-nine thousand six hundred twenty-five');\nINSERT INTO t1 VALUES(11295, 15673, 'fifteen thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(11296, 68759, 'sixty-eight thousand seven hundred fifty-nine');\nINSERT INTO t1 VALUES(11297, 49583, 'forty-nine thousand five hundred eighty-three');\nINSERT INTO t1 VALUES(11298, 35809, 'thirty-five thousand eight hundred nine');\nINSERT INTO t1 VALUES(11299, 14353, 'fourteen thousand three hundred fifty-three');\nINSERT INTO t1 VALUES(11300, 70960, 'seventy thousand nine hundred sixty');\nINSERT INTO t1 VALUES(11301, 99706, 'ninety-nine thousand seven hundred six');\nINSERT INTO t1 VALUES(11302, 83540, 'eighty-three thousand five hundred forty');\nINSERT INTO t1 VALUES(11303, 85107, 'eighty-five thousand one hundred seven');\nINSERT INTO t1 VALUES(11304, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t1 VALUES(11305, 27404, 'twenty-seven thousand four hundred four');\nINSERT INTO t1 VALUES(11306, 6878, 'six thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(11307, 6654, 'six thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(11308, 35232, 'thirty-five thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(11309, 71325, 'seventy-one thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(11310, 92010, 'ninety-two thousand ten');\nINSERT INTO t1 VALUES(11311, 10799, 'ten thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(11312, 37006, 'thirty-seven thousand six');\nINSERT INTO t1 VALUES(11313, 56285, 'fifty-six thousand two hundred eighty-five');\nINSERT INTO t1 VALUES(11314, 37034, 'thirty-seven thousand thirty-four');\nINSERT INTO t1 VALUES(11315, 70311, 'seventy thousand three hundred eleven');\nINSERT INTO t1 VALUES(11316, 57065, 'fifty-seven thousand sixty-five');\nINSERT INTO t1 VALUES(11317, 2826, 'two thousand eight hundred twenty-six');\nINSERT INTO t1 VALUES(11318, 30897, 'thirty thousand eight hundred ninety-seven');\nINSERT INTO t1 VALUES(11319, 26769, 'twenty-six thousand seven hundred sixty-nine');\nINSERT INTO t1 VALUES(11320, 56432, 'fifty-six thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(11321, 38457, 'thirty-eight thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(11322, 30443, 'thirty thousand four hundred forty-three');\nINSERT INTO t1 VALUES(11323, 78854, 'seventy-eight thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(11324, 59563, 'fifty-nine thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(11325, 14198, 'fourteen thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(11326, 8543, 'eight thousand five hundred forty-three');\nINSERT INTO t1 VALUES(11327, 69920, 'sixty-nine thousand nine hundred twenty');\nINSERT INTO t1 VALUES(11328, 23888, 'twenty-three thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(11329, 9638, 'nine thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(11330, 90132, 'ninety thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11331, 25419, 'twenty-five thousand four hundred nineteen');\nINSERT INTO t1 VALUES(11332, 53976, 'fifty-three thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(11333, 52034, 'fifty-two thousand thirty-four');\nINSERT INTO t1 VALUES(11334, 75859, 'seventy-five thousand eight hundred fifty-nine');\nINSERT INTO t1 VALUES(11335, 1936, 'one thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11336, 72251, 'seventy-two thousand two hundred fifty-one');\nINSERT INTO t1 VALUES(11337, 21530, 'twenty-one thousand five hundred thirty');\nINSERT INTO t1 VALUES(11338, 70530, 'seventy thousand five hundred thirty');\nINSERT INTO t1 VALUES(11339, 49688, 'forty-nine thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(11340, 1628, 'one thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11341, 64276, 'sixty-four thousand two hundred seventy-six');\nINSERT INTO t1 VALUES(11342, 51818, 'fifty-one thousand eight hundred eighteen');\nINSERT INTO t1 VALUES(11343, 48572, 'forty-eight thousand five hundred seventy-two');\nINSERT INTO t1 VALUES(11344, 14345, 'fourteen thousand three hundred forty-five');\nINSERT INTO t1 VALUES(11345, 4234, 'four thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(11346, 40658, 'forty thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(11347, 61932, 'sixty-one thousand nine hundred thirty-two');\nINSERT INTO t1 VALUES(11348, 74747, 'seventy-four thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(11349, 70021, 'seventy thousand twenty-one');\nINSERT INTO t1 VALUES(11350, 5594, 'five thousand five hundred ninety-four');\nINSERT INTO t1 VALUES(11351, 34113, 'thirty-four thousand one hundred thirteen');\nINSERT INTO t1 VALUES(11352, 39684, 'thirty-nine thousand six hundred eighty-four');\nINSERT INTO t1 VALUES(11353, 69685, 'sixty-nine thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(11354, 31765, 'thirty-one thousand seven hundred sixty-five');\nINSERT INTO t1 VALUES(11355, 91401, 'ninety-one thousand four hundred one');\nINSERT INTO t1 VALUES(11356, 48040, 'forty-eight thousand forty');\nINSERT INTO t1 VALUES(11357, 48058, 'forty-eight thousand fifty-eight');\nINSERT INTO t1 VALUES(11358, 87304, 'eighty-seven thousand three hundred four');\nINSERT INTO t1 VALUES(11359, 61471, 'sixty-one thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(11360, 20749, 'twenty thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(11361, 75116, 'seventy-five thousand one hundred sixteen');\nINSERT INTO t1 VALUES(11362, 94764, 'ninety-four thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(11363, 23688, 'twenty-three thousand six hundred eighty-eight');\nINSERT INTO t1 VALUES(11364, 82519, 'eighty-two thousand five hundred nineteen');\nINSERT INTO t1 VALUES(11365, 32313, 'thirty-two thousand three hundred thirteen');\nINSERT INTO t1 VALUES(11366, 37648, 'thirty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(11367, 37018, 'thirty-seven thousand eighteen');\nINSERT INTO t1 VALUES(11368, 75152, 'seventy-five thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(11369, 6854, 'six thousand eight hundred fifty-four');\nINSERT INTO t1 VALUES(11370, 23796, 'twenty-three thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(11371, 64460, 'sixty-four thousand four hundred sixty');\nINSERT INTO t1 VALUES(11372, 48082, 'forty-eight thousand eighty-two');\nINSERT INTO t1 VALUES(11373, 77255, 'seventy-seven thousand two hundred fifty-five');\nINSERT INTO t1 VALUES(11374, 33198, 'thirty-three thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(11375, 55713, 'fifty-five thousand seven hundred thirteen');\nINSERT INTO t1 VALUES(11376, 71965, 'seventy-one thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(11377, 13317, 'thirteen thousand three hundred seventeen');\nINSERT INTO t1 VALUES(11378, 38610, 'thirty-eight thousand six hundred ten');\nINSERT INTO t1 VALUES(11379, 49209, 'forty-nine thousand two hundred nine');\nINSERT INTO t1 VALUES(11380, 79296, 'seventy-nine thousand two hundred ninety-six');\nINSERT INTO t1 VALUES(11381, 1991, 'one thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11382, 45703, 'forty-five thousand seven hundred three');\nINSERT INTO t1 VALUES(11383, 35133, 'thirty-five thousand one hundred thirty-three');\nINSERT INTO t1 VALUES(11384, 13307, 'thirteen thousand three hundred seven');\nINSERT INTO t1 VALUES(11385, 19790, 'nineteen thousand seven hundred ninety');\nINSERT INTO t1 VALUES(11386, 23735, 'twenty-three thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(11387, 81734, 'eighty-one thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(11388, 4992, 'four thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(11389, 39340, 'thirty-nine thousand three hundred forty');\nINSERT INTO t1 VALUES(11390, 76767, 'seventy-six thousand seven hundred sixty-seven');\nINSERT INTO t1 VALUES(11391, 12744, 'twelve thousand seven hundred forty-four');\nINSERT INTO t1 VALUES(11392, 80887, 'eighty thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(11393, 39213, 'thirty-nine thousand two hundred thirteen');\nINSERT INTO t1 VALUES(11394, 82761, 'eighty-two thousand seven hundred sixty-one');\nINSERT INTO t1 VALUES(11395, 49998, 'forty-nine thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(11396, 26146, 'twenty-six thousand one hundred forty-six');\nINSERT INTO t1 VALUES(11397, 99544, 'ninety-nine thousand five hundred forty-four');\nINSERT INTO t1 VALUES(11398, 59132, 'fifty-nine thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11399, 87410, 'eighty-seven thousand four hundred ten');\nINSERT INTO t1 VALUES(11400, 7477, 'seven thousand four hundred seventy-seven');\nINSERT INTO t1 VALUES(11401, 32551, 'thirty-two thousand five hundred fifty-one');\nINSERT INTO t1 VALUES(11402, 24587, 'twenty-four thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11403, 23366, 'twenty-three thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11404, 6506, 'six thousand five hundred six');\nINSERT INTO t1 VALUES(11405, 17234, 'seventeen thousand two hundred thirty-four');\nINSERT INTO t1 VALUES(11406, 60802, 'sixty thousand eight hundred two');\nINSERT INTO t1 VALUES(11407, 8453, 'eight thousand four hundred fifty-three');\nINSERT INTO t1 VALUES(11408, 92668, 'ninety-two thousand six hundred sixty-eight');\nINSERT INTO t1 VALUES(11409, 13407, 'thirteen thousand four hundred seven');\nINSERT INTO t1 VALUES(11410, 49076, 'forty-nine thousand seventy-six');\nINSERT INTO t1 VALUES(11411, 44356, 'forty-four thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(11412, 67733, 'sixty-seven thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(11413, 5214, 'five thousand two hundred fourteen');\nINSERT INTO t1 VALUES(11414, 19748, 'nineteen thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(11415, 26896, 'twenty-six thousand eight hundred ninety-six');\nINSERT INTO t1 VALUES(11416, 80998, 'eighty thousand nine hundred ninety-eight');\nINSERT INTO t1 VALUES(11417, 73725, 'seventy-three thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(11418, 26, 'twenty-six');\nINSERT INTO t1 VALUES(11419, 81561, 'eighty-one thousand five hundred sixty-one');\nINSERT INTO t1 VALUES(11420, 55457, 'fifty-five thousand four hundred fifty-seven');\nINSERT INTO t1 VALUES(11421, 1432, 'one thousand four hundred thirty-two');\nINSERT INTO t1 VALUES(11422, 24299, 'twenty-four thousand two hundred ninety-nine');\nINSERT INTO t1 VALUES(11423, 86061, 'eighty-six thousand sixty-one');\nINSERT INTO t1 VALUES(11424, 6949, 'six thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(11425, 3537, 'three thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(11426, 71141, 'seventy-one thousand one hundred forty-one');\nINSERT INTO t1 VALUES(11427, 36650, 'thirty-six thousand six hundred fifty');\nINSERT INTO t1 VALUES(11428, 48794, 'forty-eight thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(11429, 81832, 'eighty-one thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11430, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(11431, 99742, 'ninety-nine thousand seven hundred forty-two');\nINSERT INTO t1 VALUES(11432, 31428, 'thirty-one thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(11433, 69500, 'sixty-nine thousand five hundred');\nINSERT INTO t1 VALUES(11434, 50474, 'fifty thousand four hundred seventy-four');\nINSERT INTO t1 VALUES(11435, 75871, 'seventy-five thousand eight hundred seventy-one');\nINSERT INTO t1 VALUES(11436, 98799, 'ninety-eight thousand seven hundred ninety-nine');\nINSERT INTO t1 VALUES(11437, 96598, 'ninety-six thousand five hundred ninety-eight');\nINSERT INTO t1 VALUES(11438, 70277, 'seventy thousand two hundred seventy-seven');\nINSERT INTO t1 VALUES(11439, 24196, 'twenty-four thousand one hundred ninety-six');\nINSERT INTO t1 VALUES(11440, 2448, 'two thousand four hundred forty-eight');\nINSERT INTO t1 VALUES(11441, 2189, 'two thousand one hundred eighty-nine');\nINSERT INTO t1 VALUES(11442, 77681, 'seventy-seven thousand six hundred eighty-one');\nINSERT INTO t1 VALUES(11443, 33368, 'thirty-three thousand three hundred sixty-eight');\nINSERT INTO t1 VALUES(11444, 89467, 'eighty-nine thousand four hundred sixty-seven');\nINSERT INTO t1 VALUES(11445, 66757, 'sixty-six thousand seven hundred fifty-seven');\nINSERT INTO t1 VALUES(11446, 68843, 'sixty-eight thousand eight hundred forty-three');\nINSERT INTO t1 VALUES(11447, 75712, 'seventy-five thousand seven hundred twelve');\nINSERT INTO t1 VALUES(11448, 93789, 'ninety-three thousand seven hundred eighty-nine');\nINSERT INTO t1 VALUES(11449, 91785, 'ninety-one thousand seven hundred eighty-five');\nINSERT INTO t1 VALUES(11450, 55437, 'fifty-five thousand four hundred thirty-seven');\nINSERT INTO t1 VALUES(11451, 64913, 'sixty-four thousand nine hundred thirteen');\nINSERT INTO t1 VALUES(11452, 61058, 'sixty-one thousand fifty-eight');\nINSERT INTO t1 VALUES(11453, 72586, 'seventy-two thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(11454, 54008, 'fifty-four thousand eight');\nINSERT INTO t1 VALUES(11455, 79964, 'seventy-nine thousand nine hundred sixty-four');\nINSERT INTO t1 VALUES(11456, 65329, 'sixty-five thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(11457, 11278, 'eleven thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(11458, 81079, 'eighty-one thousand seventy-nine');\nINSERT INTO t1 VALUES(11459, 11423, 'eleven thousand four hundred twenty-three');\nINSERT INTO t1 VALUES(11460, 78609, 'seventy-eight thousand six hundred nine');\nINSERT INTO t1 VALUES(11461, 81322, 'eighty-one thousand three hundred twenty-two');\nINSERT INTO t1 VALUES(11462, 83008, 'eighty-three thousand eight');\nINSERT INTO t1 VALUES(11463, 62030, 'sixty-two thousand thirty');\nINSERT INTO t1 VALUES(11464, 76211, 'seventy-six thousand two hundred eleven');\nINSERT INTO t1 VALUES(11465, 44940, 'forty-four thousand nine hundred forty');\nINSERT INTO t1 VALUES(11466, 31132, 'thirty-one thousand one hundred thirty-two');\nINSERT INTO t1 VALUES(11467, 451, 'four hundred fifty-one');\nINSERT INTO t1 VALUES(11468, 34813, 'thirty-four thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(11469, 51525, 'fifty-one thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(11470, 19797, 'nineteen thousand seven hundred ninety-seven');\nINSERT INTO t1 VALUES(11471, 30615, 'thirty thousand six hundred fifteen');\nINSERT INTO t1 VALUES(11472, 87043, 'eighty-seven thousand forty-three');\nINSERT INTO t1 VALUES(11473, 18596, 'eighteen thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(11474, 58507, 'fifty-eight thousand five hundred seven');\nINSERT INTO t1 VALUES(11475, 98613, 'ninety-eight thousand six hundred thirteen');\nINSERT INTO t1 VALUES(11476, 92373, 'ninety-two thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(11477, 11573, 'eleven thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11478, 83438, 'eighty-three thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(11479, 52226, 'fifty-two thousand two hundred twenty-six');\nINSERT INTO t1 VALUES(11480, 78213, 'seventy-eight thousand two hundred thirteen');\nINSERT INTO t1 VALUES(11481, 65564, 'sixty-five thousand five hundred sixty-four');\nINSERT INTO t1 VALUES(11482, 56712, 'fifty-six thousand seven hundred twelve');\nINSERT INTO t1 VALUES(11483, 9341, 'nine thousand three hundred forty-one');\nINSERT INTO t1 VALUES(11484, 8238, 'eight thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(11485, 34339, 'thirty-four thousand three hundred thirty-nine');\nINSERT INTO t1 VALUES(11486, 41117, 'forty-one thousand one hundred seventeen');\nINSERT INTO t1 VALUES(11487, 38491, 'thirty-eight thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(11488, 71427, 'seventy-one thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(11489, 12832, 'twelve thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11490, 69566, 'sixty-nine thousand five hundred sixty-six');\nINSERT INTO t1 VALUES(11491, 99369, 'ninety-nine thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(11492, 36972, 'thirty-six thousand nine hundred seventy-two');\nINSERT INTO t1 VALUES(11493, 13793, 'thirteen thousand seven hundred ninety-three');\nINSERT INTO t1 VALUES(11494, 67336, 'sixty-seven thousand three hundred thirty-six');\nINSERT INTO t1 VALUES(11495, 77008, 'seventy-seven thousand eight');\nINSERT INTO t1 VALUES(11496, 84880, 'eighty-four thousand eight hundred eighty');\nINSERT INTO t1 VALUES(11497, 67593, 'sixty-seven thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(11498, 96003, 'ninety-six thousand three');\nINSERT INTO t1 VALUES(11499, 22676, 'twenty-two thousand six hundred seventy-six');\nINSERT INTO t1 VALUES(11500, 45875, 'forty-five thousand eight hundred seventy-five');\nINSERT INTO t1 VALUES(11501, 29428, 'twenty-nine thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(11502, 71253, 'seventy-one thousand two hundred fifty-three');\nINSERT INTO t1 VALUES(11503, 92119, 'ninety-two thousand one hundred nineteen');\nINSERT INTO t1 VALUES(11504, 87647, 'eighty-seven thousand six hundred forty-seven');\nINSERT INTO t1 VALUES(11505, 64004, 'sixty-four thousand four');\nINSERT INTO t1 VALUES(11506, 22936, 'twenty-two thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11507, 86547, 'eighty-six thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(11508, 24638, 'twenty-four thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(11509, 14829, 'fourteen thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11510, 2581, 'two thousand five hundred eighty-one');\nINSERT INTO t1 VALUES(11511, 42525, 'forty-two thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(11512, 88603, 'eighty-eight thousand six hundred three');\nINSERT INTO t1 VALUES(11513, 83540, 'eighty-three thousand five hundred forty');\nINSERT INTO t1 VALUES(11514, 63643, 'sixty-three thousand six hundred forty-three');\nINSERT INTO t1 VALUES(11515, 68500, 'sixty-eight thousand five hundred');\nINSERT INTO t1 VALUES(11516, 20593, 'twenty thousand five hundred ninety-three');\nINSERT INTO t1 VALUES(11517, 46867, 'forty-six thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11518, 85328, 'eighty-five thousand three hundred twenty-eight');\nINSERT INTO t1 VALUES(11519, 70571, 'seventy thousand five hundred seventy-one');\nINSERT INTO t1 VALUES(11520, 86969, 'eighty-six thousand nine hundred sixty-nine');\nINSERT INTO t1 VALUES(11521, 59122, 'fifty-nine thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11522, 36888, 'thirty-six thousand eight hundred eighty-eight');\nINSERT INTO t1 VALUES(11523, 18246, 'eighteen thousand two hundred forty-six');\nINSERT INTO t1 VALUES(11524, 5735, 'five thousand seven hundred thirty-five');\nINSERT INTO t1 VALUES(11525, 46945, 'forty-six thousand nine hundred forty-five');\nINSERT INTO t1 VALUES(11526, 87180, 'eighty-seven thousand one hundred eighty');\nINSERT INTO t1 VALUES(11527, 63162, 'sixty-three thousand one hundred sixty-two');\nINSERT INTO t1 VALUES(11528, 3557, 'three thousand five hundred fifty-seven');\nINSERT INTO t1 VALUES(11529, 1143, 'one thousand one hundred forty-three');\nINSERT INTO t1 VALUES(11530, 80347, 'eighty thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(11531, 96489, 'ninety-six thousand four hundred eighty-nine');\nINSERT INTO t1 VALUES(11532, 13135, 'thirteen thousand one hundred thirty-five');\nINSERT INTO t1 VALUES(11533, 81471, 'eighty-one thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(11534, 36025, 'thirty-six thousand twenty-five');\nINSERT INTO t1 VALUES(11535, 36734, 'thirty-six thousand seven hundred thirty-four');\nINSERT INTO t1 VALUES(11536, 19779, 'nineteen thousand seven hundred seventy-nine');\nINSERT INTO t1 VALUES(11537, 91936, 'ninety-one thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11538, 64100, 'sixty-four thousand one hundred');\nINSERT INTO t1 VALUES(11539, 62978, 'sixty-two thousand nine hundred seventy-eight');\nINSERT INTO t1 VALUES(11540, 33214, 'thirty-three thousand two hundred fourteen');\nINSERT INTO t1 VALUES(11541, 8158, 'eight thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(11542, 60898, 'sixty thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11543, 96915, 'ninety-six thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(11544, 38058, 'thirty-eight thousand fifty-eight');\nINSERT INTO t1 VALUES(11545, 24141, 'twenty-four thousand one hundred forty-one');\nINSERT INTO t1 VALUES(11546, 51175, 'fifty-one thousand one hundred seventy-five');\nINSERT INTO t1 VALUES(11547, 79766, 'seventy-nine thousand seven hundred sixty-six');\nINSERT INTO t1 VALUES(11548, 52678, 'fifty-two thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(11549, 37936, 'thirty-seven thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11550, 67188, 'sixty-seven thousand one hundred eighty-eight');\nINSERT INTO t1 VALUES(11551, 44936, 'forty-four thousand nine hundred thirty-six');\nINSERT INTO t1 VALUES(11552, 12388, 'twelve thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(11553, 56516, 'fifty-six thousand five hundred sixteen');\nINSERT INTO t1 VALUES(11554, 88663, 'eighty-eight thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(11555, 91183, 'ninety-one thousand one hundred eighty-three');\nINSERT INTO t1 VALUES(11556, 95709, 'ninety-five thousand seven hundred nine');\nINSERT INTO t1 VALUES(11557, 92700, 'ninety-two thousand seven hundred');\nINSERT INTO t1 VALUES(11558, 74523, 'seventy-four thousand five hundred twenty-three');\nINSERT INTO t1 VALUES(11559, 67663, 'sixty-seven thousand six hundred sixty-three');\nINSERT INTO t1 VALUES(11560, 63533, 'sixty-three thousand five hundred thirty-three');\nINSERT INTO t1 VALUES(11561, 60725, 'sixty thousand seven hundred twenty-five');\nINSERT INTO t1 VALUES(11562, 41505, 'forty-one thousand five hundred five');\nINSERT INTO t1 VALUES(11563, 34241, 'thirty-four thousand two hundred forty-one');\nINSERT INTO t1 VALUES(11564, 49949, 'forty-nine thousand nine hundred forty-nine');\nINSERT INTO t1 VALUES(11565, 48754, 'forty-eight thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(11566, 35379, 'thirty-five thousand three hundred seventy-nine');\nINSERT INTO t1 VALUES(11567, 33976, 'thirty-three thousand nine hundred seventy-six');\nINSERT INTO t1 VALUES(11568, 89912, 'eighty-nine thousand nine hundred twelve');\nINSERT INTO t1 VALUES(11569, 99511, 'ninety-nine thousand five hundred eleven');\nINSERT INTO t1 VALUES(11570, 68737, 'sixty-eight thousand seven hundred thirty-seven');\nINSERT INTO t1 VALUES(11571, 31723, 'thirty-one thousand seven hundred twenty-three');\nINSERT INTO t1 VALUES(11572, 77376, 'seventy-seven thousand three hundred seventy-six');\nINSERT INTO t1 VALUES(11573, 74354, 'seventy-four thousand three hundred fifty-four');\nINSERT INTO t1 VALUES(11574, 30626, 'thirty thousand six hundred twenty-six');\nINSERT INTO t1 VALUES(11575, 90152, 'ninety thousand one hundred fifty-two');\nINSERT INTO t1 VALUES(11576, 66834, 'sixty-six thousand eight hundred thirty-four');\nINSERT INTO t1 VALUES(11577, 76481, 'seventy-six thousand four hundred eighty-one');\nINSERT INTO t1 VALUES(11578, 87749, 'eighty-seven thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(11579, 87278, 'eighty-seven thousand two hundred seventy-eight');\nINSERT INTO t1 VALUES(11580, 2521, 'two thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(11581, 73369, 'seventy-three thousand three hundred sixty-nine');\nINSERT INTO t1 VALUES(11582, 47184, 'forty-seven thousand one hundred eighty-four');\nINSERT INTO t1 VALUES(11583, 78645, 'seventy-eight thousand six hundred forty-five');\nINSERT INTO t1 VALUES(11584, 25019, 'twenty-five thousand nineteen');\nINSERT INTO t1 VALUES(11585, 9841, 'nine thousand eight hundred forty-one');\nINSERT INTO t1 VALUES(11586, 597, 'five hundred ninety-seven');\nINSERT INTO t1 VALUES(11587, 93004, 'ninety-three thousand four');\nINSERT INTO t1 VALUES(11588, 37139, 'thirty-seven thousand one hundred thirty-nine');\nINSERT INTO t1 VALUES(11589, 80086, 'eighty thousand eighty-six');\nINSERT INTO t1 VALUES(11590, 85399, 'eighty-five thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(11591, 80460, 'eighty thousand four hundred sixty');\nINSERT INTO t1 VALUES(11592, 11698, 'eleven thousand six hundred ninety-eight');\nINSERT INTO t1 VALUES(11593, 86908, 'eighty-six thousand nine hundred eight');\nINSERT INTO t1 VALUES(11594, 60824, 'sixty thousand eight hundred twenty-four');\nINSERT INTO t1 VALUES(11595, 46088, 'forty-six thousand eighty-eight');\nINSERT INTO t1 VALUES(11596, 64796, 'sixty-four thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(11597, 34624, 'thirty-four thousand six hundred twenty-four');\nINSERT INTO t1 VALUES(11598, 53869, 'fifty-three thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(11599, 79049, 'seventy-nine thousand forty-nine');\nINSERT INTO t1 VALUES(11600, 91212, 'ninety-one thousand two hundred twelve');\nINSERT INTO t1 VALUES(11601, 8297, 'eight thousand two hundred ninety-seven');\nINSERT INTO t1 VALUES(11602, 52256, 'fifty-two thousand two hundred fifty-six');\nINSERT INTO t1 VALUES(11603, 52650, 'fifty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(11604, 62546, 'sixty-two thousand five hundred forty-six');\nINSERT INTO t1 VALUES(11605, 80398, 'eighty thousand three hundred ninety-eight');\nINSERT INTO t1 VALUES(11606, 65382, 'sixty-five thousand three hundred eighty-two');\nINSERT INTO t1 VALUES(11607, 64578, 'sixty-four thousand five hundred seventy-eight');\nINSERT INTO t1 VALUES(11608, 58563, 'fifty-eight thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(11609, 74098, 'seventy-four thousand ninety-eight');\nINSERT INTO t1 VALUES(11610, 71064, 'seventy-one thousand sixty-four');\nINSERT INTO t1 VALUES(11611, 14240, 'fourteen thousand two hundred forty');\nINSERT INTO t1 VALUES(11612, 95356, 'ninety-five thousand three hundred fifty-six');\nINSERT INTO t1 VALUES(11613, 48377, 'forty-eight thousand three hundred seventy-seven');\nINSERT INTO t1 VALUES(11614, 66848, 'sixty-six thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(11615, 87064, 'eighty-seven thousand sixty-four');\nINSERT INTO t1 VALUES(11616, 44848, 'forty-four thousand eight hundred forty-eight');\nINSERT INTO t1 VALUES(11617, 56562, 'fifty-six thousand five hundred sixty-two');\nINSERT INTO t1 VALUES(11618, 5526, 'five thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(11619, 3169, 'three thousand one hundred sixty-nine');\nINSERT INTO t1 VALUES(11620, 37076, 'thirty-seven thousand seventy-six');\nINSERT INTO t1 VALUES(11621, 64712, 'sixty-four thousand seven hundred twelve');\nINSERT INTO t1 VALUES(11622, 34748, 'thirty-four thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(11623, 78880, 'seventy-eight thousand eight hundred eighty');\nINSERT INTO t1 VALUES(11624, 75589, 'seventy-five thousand five hundred eighty-nine');\nINSERT INTO t1 VALUES(11625, 68060, 'sixty-eight thousand sixty');\nINSERT INTO t1 VALUES(11626, 15868, 'fifteen thousand eight hundred sixty-eight');\nINSERT INTO t1 VALUES(11627, 91852, 'ninety-one thousand eight hundred fifty-two');\nINSERT INTO t1 VALUES(11628, 47224, 'forty-seven thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(11629, 550, 'five hundred fifty');\nINSERT INTO t1 VALUES(11630, 69950, 'sixty-nine thousand nine hundred fifty');\nINSERT INTO t1 VALUES(11631, 82055, 'eighty-two thousand fifty-five');\nINSERT INTO t1 VALUES(11632, 31665, 'thirty-one thousand six hundred sixty-five');\nINSERT INTO t1 VALUES(11633, 37940, 'thirty-seven thousand nine hundred forty');\nINSERT INTO t1 VALUES(11634, 39839, 'thirty-nine thousand eight hundred thirty-nine');\nINSERT INTO t1 VALUES(11635, 47627, 'forty-seven thousand six hundred twenty-seven');\nINSERT INTO t1 VALUES(11636, 8199, 'eight thousand one hundred ninety-nine');\nINSERT INTO t1 VALUES(11637, 98279, 'ninety-eight thousand two hundred seventy-nine');\nINSERT INTO t1 VALUES(11638, 21606, 'twenty-one thousand six hundred six');\nINSERT INTO t1 VALUES(11639, 47614, 'forty-seven thousand six hundred fourteen');\nINSERT INTO t1 VALUES(11640, 72258, 'seventy-two thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(11641, 78537, 'seventy-eight thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(11642, 77635, 'seventy-seven thousand six hundred thirty-five');\nINSERT INTO t1 VALUES(11643, 34736, 'thirty-four thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(11644, 42728, 'forty-two thousand seven hundred twenty-eight');\nINSERT INTO t1 VALUES(11645, 43965, 'forty-three thousand nine hundred sixty-five');\nINSERT INTO t1 VALUES(11646, 94366, 'ninety-four thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11647, 57106, 'fifty-seven thousand one hundred six');\nINSERT INTO t1 VALUES(11648, 14029, 'fourteen thousand twenty-nine');\nINSERT INTO t1 VALUES(11649, 27271, 'twenty-seven thousand two hundred seventy-one');\nINSERT INTO t1 VALUES(11650, 77395, 'seventy-seven thousand three hundred ninety-five');\nINSERT INTO t1 VALUES(11651, 27877, 'twenty-seven thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(11652, 36754, 'thirty-six thousand seven hundred fifty-four');\nINSERT INTO t1 VALUES(11653, 44673, 'forty-four thousand six hundred seventy-three');\nINSERT INTO t1 VALUES(11654, 13235, 'thirteen thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(11655, 22977, 'twenty-two thousand nine hundred seventy-seven');\nINSERT INTO t1 VALUES(11656, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11657, 72989, 'seventy-two thousand nine hundred eighty-nine');\nINSERT INTO t1 VALUES(11658, 8694, 'eight thousand six hundred ninety-four');\nINSERT INTO t1 VALUES(11659, 70089, 'seventy thousand eighty-nine');\nINSERT INTO t1 VALUES(11660, 95286, 'ninety-five thousand two hundred eighty-six');\nINSERT INTO t1 VALUES(11661, 41050, 'forty-one thousand fifty');\nINSERT INTO t1 VALUES(11662, 44886, 'forty-four thousand eight hundred eighty-six');\nINSERT INTO t1 VALUES(11663, 1543, 'one thousand five hundred forty-three');\nINSERT INTO t1 VALUES(11664, 99237, 'ninety-nine thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(11665, 26915, 'twenty-six thousand nine hundred fifteen');\nINSERT INTO t1 VALUES(11666, 6181, 'six thousand one hundred eighty-one');\nINSERT INTO t1 VALUES(11667, 95521, 'ninety-five thousand five hundred twenty-one');\nINSERT INTO t1 VALUES(11668, 25137, 'twenty-five thousand one hundred thirty-seven');\nINSERT INTO t1 VALUES(11669, 1596, 'one thousand five hundred ninety-six');\nINSERT INTO t1 VALUES(11670, 79320, 'seventy-nine thousand three hundred twenty');\nINSERT INTO t1 VALUES(11671, 4732, 'four thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(11672, 81621, 'eighty-one thousand six hundred twenty-one');\nINSERT INTO t1 VALUES(11673, 63022, 'sixty-three thousand twenty-two');\nINSERT INTO t1 VALUES(11674, 61122, 'sixty-one thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11675, 70956, 'seventy thousand nine hundred fifty-six');\nINSERT INTO t1 VALUES(11676, 8217, 'eight thousand two hundred seventeen');\nINSERT INTO t1 VALUES(11677, 10677, 'ten thousand six hundred seventy-seven');\nINSERT INTO t1 VALUES(11678, 574, 'five hundred seventy-four');\nINSERT INTO t1 VALUES(11679, 84658, 'eighty-four thousand six hundred fifty-eight');\nINSERT INTO t1 VALUES(11680, 84748, 'eighty-four thousand seven hundred forty-eight');\nINSERT INTO t1 VALUES(11681, 80802, 'eighty thousand eight hundred two');\nINSERT INTO t1 VALUES(11682, 2491, 'two thousand four hundred ninety-one');\nINSERT INTO t1 VALUES(11683, 68200, 'sixty-eight thousand two hundred');\nINSERT INTO t1 VALUES(11684, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t1 VALUES(11685, 84151, 'eighty-four thousand one hundred fifty-one');\nINSERT INTO t1 VALUES(11686, 47815, 'forty-seven thousand eight hundred fifteen');\nINSERT INTO t1 VALUES(11687, 56587, 'fifty-six thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11688, 56738, 'fifty-six thousand seven hundred thirty-eight');\nINSERT INTO t1 VALUES(11689, 23860, 'twenty-three thousand eight hundred sixty');\nINSERT INTO t1 VALUES(11690, 99587, 'ninety-nine thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11691, 52856, 'fifty-two thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(11692, 6717, 'six thousand seven hundred seventeen');\nINSERT INTO t1 VALUES(11693, 52258, 'fifty-two thousand two hundred fifty-eight');\nINSERT INTO t1 VALUES(11694, 64634, 'sixty-four thousand six hundred thirty-four');\nINSERT INTO t1 VALUES(11695, 46217, 'forty-six thousand two hundred seventeen');\nINSERT INTO t1 VALUES(11696, 50877, 'fifty thousand eight hundred seventy-seven');\nINSERT INTO t1 VALUES(11697, 1147, 'one thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(11698, 22156, 'twenty-two thousand one hundred fifty-six');\nINSERT INTO t1 VALUES(11699, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t1 VALUES(11700, 37198, 'thirty-seven thousand one hundred ninety-eight');\nINSERT INTO t1 VALUES(11701, 5749, 'five thousand seven hundred forty-nine');\nINSERT INTO t1 VALUES(11702, 42329, 'forty-two thousand three hundred twenty-nine');\nINSERT INTO t1 VALUES(11703, 27628, 'twenty-seven thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11704, 45001, 'forty-five thousand one');\nINSERT INTO t1 VALUES(11705, 48883, 'forty-eight thousand eight hundred eighty-three');\nINSERT INTO t1 VALUES(11706, 94320, 'ninety-four thousand three hundred twenty');\nINSERT INTO t1 VALUES(11707, 88991, 'eighty-eight thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11708, 74019, 'seventy-four thousand nineteen');\nINSERT INTO t1 VALUES(11709, 10346, 'ten thousand three hundred forty-six');\nINSERT INTO t1 VALUES(11710, 34424, 'thirty-four thousand four hundred twenty-four');\nINSERT INTO t1 VALUES(11711, 13089, 'thirteen thousand eighty-nine');\nINSERT INTO t1 VALUES(11712, 2674, 'two thousand six hundred seventy-four');\nINSERT INTO t1 VALUES(11713, 76123, 'seventy-six thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(11714, 51283, 'fifty-one thousand two hundred eighty-three');\nINSERT INTO t1 VALUES(11715, 3746, 'three thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(11716, 72574, 'seventy-two thousand five hundred seventy-four');\nINSERT INTO t1 VALUES(11717, 88798, 'eighty-eight thousand seven hundred ninety-eight');\nINSERT INTO t1 VALUES(11718, 73575, 'seventy-three thousand five hundred seventy-five');\nINSERT INTO t1 VALUES(11719, 92114, 'ninety-two thousand one hundred fourteen');\nINSERT INTO t1 VALUES(11720, 75394, 'seventy-five thousand three hundred ninety-four');\nINSERT INTO t1 VALUES(11721, 36040, 'thirty-six thousand forty');\nINSERT INTO t1 VALUES(11722, 71503, 'seventy-one thousand five hundred three');\nINSERT INTO t1 VALUES(11723, 2315, 'two thousand three hundred fifteen');\nINSERT INTO t1 VALUES(11724, 73894, 'seventy-three thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11725, 16991, 'sixteen thousand nine hundred ninety-one');\nINSERT INTO t1 VALUES(11726, 14695, 'fourteen thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(11727, 55954, 'fifty-five thousand nine hundred fifty-four');\nINSERT INTO t1 VALUES(11728, 14680, 'fourteen thousand six hundred eighty');\nINSERT INTO t1 VALUES(11729, 88922, 'eighty-eight thousand nine hundred twenty-two');\nINSERT INTO t1 VALUES(11730, 35046, 'thirty-five thousand forty-six');\nINSERT INTO t1 VALUES(11731, 94898, 'ninety-four thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11732, 18410, 'eighteen thousand four hundred ten');\nINSERT INTO t1 VALUES(11733, 34263, 'thirty-four thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(11734, 35943, 'thirty-five thousand nine hundred forty-three');\nINSERT INTO t1 VALUES(11735, 48366, 'forty-eight thousand three hundred sixty-six');\nINSERT INTO t1 VALUES(11736, 43585, 'forty-three thousand five hundred eighty-five');\nINSERT INTO t1 VALUES(11737, 26031, 'twenty-six thousand thirty-one');\nINSERT INTO t1 VALUES(11738, 94746, 'ninety-four thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(11739, 44929, 'forty-four thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(11740, 80619, 'eighty thousand six hundred nineteen');\nINSERT INTO t1 VALUES(11741, 664, 'six hundred sixty-four');\nINSERT INTO t1 VALUES(11742, 88235, 'eighty-eight thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(11743, 55894, 'fifty-five thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11744, 39705, 'thirty-nine thousand seven hundred five');\nINSERT INTO t1 VALUES(11745, 23060, 'twenty-three thousand sixty');\nINSERT INTO t1 VALUES(11746, 83123, 'eighty-three thousand one hundred twenty-three');\nINSERT INTO t1 VALUES(11747, 24248, 'twenty-four thousand two hundred forty-eight');\nINSERT INTO t1 VALUES(11748, 91878, 'ninety-one thousand eight hundred seventy-eight');\nINSERT INTO t1 VALUES(11749, 14082, 'fourteen thousand eighty-two');\nINSERT INTO t1 VALUES(11750, 41756, 'forty-one thousand seven hundred fifty-six');\nINSERT INTO t1 VALUES(11751, 71410, 'seventy-one thousand four hundred ten');\nINSERT INTO t1 VALUES(11752, 42801, 'forty-two thousand eight hundred one');\nINSERT INTO t1 VALUES(11753, 25844, 'twenty-five thousand eight hundred forty-four');\nINSERT INTO t1 VALUES(11754, 60856, 'sixty thousand eight hundred fifty-six');\nINSERT INTO t1 VALUES(11755, 187, 'one hundred eighty-seven');\nINSERT INTO t1 VALUES(11756, 59427, 'fifty-nine thousand four hundred twenty-seven');\nINSERT INTO t1 VALUES(11757, 90246, 'ninety thousand two hundred forty-six');\nINSERT INTO t1 VALUES(11758, 35185, 'thirty-five thousand one hundred eighty-five');\nINSERT INTO t1 VALUES(11759, 88747, 'eighty-eight thousand seven hundred forty-seven');\nINSERT INTO t1 VALUES(11760, 46324, 'forty-six thousand three hundred twenty-four');\nINSERT INTO t1 VALUES(11761, 17689, 'seventeen thousand six hundred eighty-nine');\nINSERT INTO t1 VALUES(11762, 89573, 'eighty-nine thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11763, 52264, 'fifty-two thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(11764, 71319, 'seventy-one thousand three hundred nineteen');\nINSERT INTO t1 VALUES(11765, 67934, 'sixty-seven thousand nine hundred thirty-four');\nINSERT INTO t1 VALUES(11766, 12071, 'twelve thousand seventy-one');\nINSERT INTO t1 VALUES(11767, 48225, 'forty-eight thousand two hundred twenty-five');\nINSERT INTO t1 VALUES(11768, 93426, 'ninety-three thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(11769, 8373, 'eight thousand three hundred seventy-three');\nINSERT INTO t1 VALUES(11770, 5961, 'five thousand nine hundred sixty-one');\nINSERT INTO t1 VALUES(11771, 45291, 'forty-five thousand two hundred ninety-one');\nINSERT INTO t1 VALUES(11772, 36412, 'thirty-six thousand four hundred twelve');\nINSERT INTO t1 VALUES(11773, 72929, 'seventy-two thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(11774, 47030, 'forty-seven thousand thirty');\nINSERT INTO t1 VALUES(11775, 95706, 'ninety-five thousand seven hundred six');\nINSERT INTO t1 VALUES(11776, 49847, 'forty-nine thousand eight hundred forty-seven');\nINSERT INTO t1 VALUES(11777, 96438, 'ninety-six thousand four hundred thirty-eight');\nINSERT INTO t1 VALUES(11778, 91216, 'ninety-one thousand two hundred sixteen');\nINSERT INTO t1 VALUES(11779, 97092, 'ninety-seven thousand ninety-two');\nINSERT INTO t1 VALUES(11780, 20907, 'twenty thousand nine hundred seven');\nINSERT INTO t1 VALUES(11781, 58401, 'fifty-eight thousand four hundred one');\nINSERT INTO t1 VALUES(11782, 78263, 'seventy-eight thousand two hundred sixty-three');\nINSERT INTO t1 VALUES(11783, 5241, 'five thousand two hundred forty-one');\nINSERT INTO t1 VALUES(11784, 61638, 'sixty-one thousand six hundred thirty-eight');\nINSERT INTO t1 VALUES(11785, 58920, 'fifty-eight thousand nine hundred twenty');\nINSERT INTO t1 VALUES(11786, 99261, 'ninety-nine thousand two hundred sixty-one');\nINSERT INTO t1 VALUES(11787, 84327, 'eighty-four thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(11788, 83127, 'eighty-three thousand one hundred twenty-seven');\nINSERT INTO t1 VALUES(11789, 75563, 'seventy-five thousand five hundred sixty-three');\nINSERT INTO t1 VALUES(11790, 3685, 'three thousand six hundred eighty-five');\nINSERT INTO t1 VALUES(11791, 24055, 'twenty-four thousand fifty-five');\nINSERT INTO t1 VALUES(11792, 85315, 'eighty-five thousand three hundred fifteen');\nINSERT INTO t1 VALUES(11793, 56755, 'fifty-six thousand seven hundred fifty-five');\nINSERT INTO t1 VALUES(11794, 62733, 'sixty-two thousand seven hundred thirty-three');\nINSERT INTO t1 VALUES(11795, 15894, 'fifteen thousand eight hundred ninety-four');\nINSERT INTO t1 VALUES(11796, 30237, 'thirty thousand two hundred thirty-seven');\nINSERT INTO t1 VALUES(11797, 68439, 'sixty-eight thousand four hundred thirty-nine');\nINSERT INTO t1 VALUES(11798, 34543, 'thirty-four thousand five hundred forty-three');\nINSERT INTO t1 VALUES(11799, 53488, 'fifty-three thousand four hundred eighty-eight');\nINSERT INTO t1 VALUES(11800, 5527, 'five thousand five hundred twenty-seven');\nINSERT INTO t1 VALUES(11801, 92320, 'ninety-two thousand three hundred twenty');\nINSERT INTO t1 VALUES(11802, 86043, 'eighty-six thousand forty-three');\nINSERT INTO t1 VALUES(11803, 52679, 'fifty-two thousand six hundred seventy-nine');\nINSERT INTO t1 VALUES(11804, 72616, 'seventy-two thousand six hundred sixteen');\nINSERT INTO t1 VALUES(11805, 4901, 'four thousand nine hundred one');\nINSERT INTO t1 VALUES(11806, 63430, 'sixty-three thousand four hundred thirty');\nINSERT INTO t1 VALUES(11807, 83548, 'eighty-three thousand five hundred forty-eight');\nINSERT INTO t1 VALUES(11808, 78796, 'seventy-eight thousand seven hundred ninety-six');\nINSERT INTO t1 VALUES(11809, 11955, 'eleven thousand nine hundred fifty-five');\nINSERT INTO t1 VALUES(11810, 13405, 'thirteen thousand four hundred five');\nINSERT INTO t1 VALUES(11811, 80790, 'eighty thousand seven hundred ninety');\nINSERT INTO t1 VALUES(11812, 94547, 'ninety-four thousand five hundred forty-seven');\nINSERT INTO t1 VALUES(11813, 76038, 'seventy-six thousand thirty-eight');\nINSERT INTO t1 VALUES(11814, 52697, 'fifty-two thousand six hundred ninety-seven');\nINSERT INTO t1 VALUES(11815, 63858, 'sixty-three thousand eight hundred fifty-eight');\nINSERT INTO t1 VALUES(11816, 42431, 'forty-two thousand four hundred thirty-one');\nINSERT INTO t1 VALUES(11817, 57930, 'fifty-seven thousand nine hundred thirty');\nINSERT INTO t1 VALUES(11818, 93806, 'ninety-three thousand eight hundred six');\nINSERT INTO t1 VALUES(11819, 39813, 'thirty-nine thousand eight hundred thirteen');\nINSERT INTO t1 VALUES(11820, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(11821, 29719, 'twenty-nine thousand seven hundred nineteen');\nINSERT INTO t1 VALUES(11822, 62650, 'sixty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(11823, 56982, 'fifty-six thousand nine hundred eighty-two');\nINSERT INTO t1 VALUES(11824, 54992, 'fifty-four thousand nine hundred ninety-two');\nINSERT INTO t1 VALUES(11825, 48327, 'forty-eight thousand three hundred twenty-seven');\nINSERT INTO t1 VALUES(11826, 30682, 'thirty thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(11827, 64819, 'sixty-four thousand eight hundred nineteen');\nINSERT INTO t1 VALUES(11828, 34732, 'thirty-four thousand seven hundred thirty-two');\nINSERT INTO t1 VALUES(11829, 53963, 'fifty-three thousand nine hundred sixty-three');\nINSERT INTO t1 VALUES(11830, 61752, 'sixty-one thousand seven hundred fifty-two');\nINSERT INTO t1 VALUES(11831, 30232, 'thirty thousand two hundred thirty-two');\nINSERT INTO t1 VALUES(11832, 82568, 'eighty-two thousand five hundred sixty-eight');\nINSERT INTO t1 VALUES(11833, 68428, 'sixty-eight thousand four hundred twenty-eight');\nINSERT INTO t1 VALUES(11834, 46637, 'forty-six thousand six hundred thirty-seven');\nINSERT INTO t1 VALUES(11835, 63321, 'sixty-three thousand three hundred twenty-one');\nINSERT INTO t1 VALUES(11836, 71764, 'seventy-one thousand seven hundred sixty-four');\nINSERT INTO t1 VALUES(11837, 62650, 'sixty-two thousand six hundred fifty');\nINSERT INTO t1 VALUES(11838, 78696, 'seventy-eight thousand six hundred ninety-six');\nINSERT INTO t1 VALUES(11839, 67760, 'sixty-seven thousand seven hundred sixty');\nINSERT INTO t1 VALUES(11840, 64832, 'sixty-four thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11841, 63525, 'sixty-three thousand five hundred twenty-five');\nINSERT INTO t1 VALUES(11842, 2622, 'two thousand six hundred twenty-two');\nINSERT INTO t1 VALUES(11843, 87122, 'eighty-seven thousand one hundred twenty-two');\nINSERT INTO t1 VALUES(11844, 27807, 'twenty-seven thousand eight hundred seven');\nINSERT INTO t1 VALUES(11845, 94541, 'ninety-four thousand five hundred forty-one');\nINSERT INTO t1 VALUES(11846, 7425, 'seven thousand four hundred twenty-five');\nINSERT INTO t1 VALUES(11847, 29537, 'twenty-nine thousand five hundred thirty-seven');\nINSERT INTO t1 VALUES(11848, 41706, 'forty-one thousand seven hundred six');\nINSERT INTO t1 VALUES(11849, 50695, 'fifty thousand six hundred ninety-five');\nINSERT INTO t1 VALUES(11850, 66898, 'sixty-six thousand eight hundred ninety-eight');\nINSERT INTO t1 VALUES(11851, 52966, 'fifty-two thousand nine hundred sixty-six');\nINSERT INTO t1 VALUES(11852, 29049, 'twenty-nine thousand forty-nine');\nINSERT INTO t1 VALUES(11853, 66466, 'sixty-six thousand four hundred sixty-six');\nINSERT INTO t1 VALUES(11854, 8541, 'eight thousand five hundred forty-one');\nINSERT INTO t1 VALUES(11855, 87335, 'eighty-seven thousand three hundred thirty-five');\nINSERT INTO t1 VALUES(11856, 1678, 'one thousand six hundred seventy-eight');\nINSERT INTO t1 VALUES(11857, 11325, 'eleven thousand three hundred twenty-five');\nINSERT INTO t1 VALUES(11858, 22612, 'twenty-two thousand six hundred twelve');\nINSERT INTO t1 VALUES(11859, 98720, 'ninety-eight thousand seven hundred twenty');\nINSERT INTO t1 VALUES(11860, 27605, 'twenty-seven thousand six hundred five');\nINSERT INTO t1 VALUES(11861, 83302, 'eighty-three thousand three hundred two');\nINSERT INTO t1 VALUES(11862, 84117, 'eighty-four thousand one hundred seventeen');\nINSERT INTO t1 VALUES(11863, 44386, 'forty-four thousand three hundred eighty-six');\nINSERT INTO t1 VALUES(11864, 32160, 'thirty-two thousand one hundred sixty');\nINSERT INTO t1 VALUES(11865, 57855, 'fifty-seven thousand eight hundred fifty-five');\nINSERT INTO t1 VALUES(11866, 37094, 'thirty-seven thousand ninety-four');\nINSERT INTO t1 VALUES(11867, 49387, 'forty-nine thousand three hundred eighty-seven');\nINSERT INTO t1 VALUES(11868, 10526, 'ten thousand five hundred twenty-six');\nINSERT INTO t1 VALUES(11869, 60399, 'sixty thousand three hundred ninety-nine');\nINSERT INTO t1 VALUES(11870, 89618, 'eighty-nine thousand six hundred eighteen');\nINSERT INTO t1 VALUES(11871, 51011, 'fifty-one thousand eleven');\nINSERT INTO t1 VALUES(11872, 72085, 'seventy-two thousand eighty-five');\nINSERT INTO t1 VALUES(11873, 17522, 'seventeen thousand five hundred twenty-two');\nINSERT INTO t1 VALUES(11874, 9794, 'nine thousand seven hundred ninety-four');\nINSERT INTO t1 VALUES(11875, 16657, 'sixteen thousand six hundred fifty-seven');\nINSERT INTO t1 VALUES(11876, 60667, 'sixty thousand six hundred sixty-seven');\nINSERT INTO t1 VALUES(11877, 81047, 'eighty-one thousand forty-seven');\nINSERT INTO t1 VALUES(11878, 44833, 'forty-four thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(11879, 24224, 'twenty-four thousand two hundred twenty-four');\nINSERT INTO t1 VALUES(11880, 5238, 'five thousand two hundred thirty-eight');\nINSERT INTO t1 VALUES(11881, 15933, 'fifteen thousand nine hundred thirty-three');\nINSERT INTO t1 VALUES(11882, 8026, 'eight thousand twenty-six');\nINSERT INTO t1 VALUES(11883, 2968, 'two thousand nine hundred sixty-eight');\nINSERT INTO t1 VALUES(11884, 51613, 'fifty-one thousand six hundred thirteen');\nINSERT INTO t1 VALUES(11885, 28550, 'twenty-eight thousand five hundred fifty');\nINSERT INTO t1 VALUES(11886, 87159, 'eighty-seven thousand one hundred fifty-nine');\nINSERT INTO t1 VALUES(11887, 47648, 'forty-seven thousand six hundred forty-eight');\nINSERT INTO t1 VALUES(11888, 8929, 'eight thousand nine hundred twenty-nine');\nINSERT INTO t1 VALUES(11889, 55313, 'fifty-five thousand three hundred thirteen');\nINSERT INTO t1 VALUES(11890, 95906, 'ninety-five thousand nine hundred six');\nINSERT INTO t1 VALUES(11891, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t1 VALUES(11892, 37587, 'thirty-seven thousand five hundred eighty-seven');\nINSERT INTO t1 VALUES(11893, 28542, 'twenty-eight thousand five hundred forty-two');\nINSERT INTO t1 VALUES(11894, 5310, 'five thousand three hundred ten');\nINSERT INTO t1 VALUES(11895, 72235, 'seventy-two thousand two hundred thirty-five');\nINSERT INTO t1 VALUES(11896, 18426, 'eighteen thousand four hundred twenty-six');\nINSERT INTO t1 VALUES(11897, 27889, 'twenty-seven thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(11898, 90495, 'ninety thousand four hundred ninety-five');\nINSERT INTO t1 VALUES(11899, 55942, 'fifty-five thousand nine hundred forty-two');\nINSERT INTO t1 VALUES(11900, 52916, 'fifty-two thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(11901, 60890, 'sixty thousand eight hundred ninety');\nINSERT INTO t1 VALUES(11902, 1851, 'one thousand eight hundred fifty-one');\nINSERT INTO t1 VALUES(11903, 51889, 'fifty-one thousand eight hundred eighty-nine');\nINSERT INTO t1 VALUES(11904, 89174, 'eighty-nine thousand one hundred seventy-four');\nINSERT INTO t1 VALUES(11905, 72454, 'seventy-two thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(11906, 126, 'one hundred twenty-six');\nINSERT INTO t1 VALUES(11907, 42333, 'forty-two thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(11908, 93471, 'ninety-three thousand four hundred seventy-one');\nINSERT INTO t1 VALUES(11909, 7928, 'seven thousand nine hundred twenty-eight');\nINSERT INTO t1 VALUES(11910, 56746, 'fifty-six thousand seven hundred forty-six');\nINSERT INTO t1 VALUES(11911, 69550, 'sixty-nine thousand five hundred fifty');\nINSERT INTO t1 VALUES(11912, 5707, 'five thousand seven hundred seven');\nINSERT INTO t1 VALUES(11913, 3704, 'three thousand seven hundred four');\nINSERT INTO t1 VALUES(11914, 98586, 'ninety-eight thousand five hundred eighty-six');\nINSERT INTO t1 VALUES(11915, 19052, 'nineteen thousand fifty-two');\nINSERT INTO t1 VALUES(11916, 75628, 'seventy-five thousand six hundred twenty-eight');\nINSERT INTO t1 VALUES(11917, 92925, 'ninety-two thousand nine hundred twenty-five');\nINSERT INTO t1 VALUES(11918, 67032, 'sixty-seven thousand thirty-two');\nINSERT INTO t1 VALUES(11919, 35948, 'thirty-five thousand nine hundred forty-eight');\nINSERT INTO t1 VALUES(11920, 67641, 'sixty-seven thousand six hundred forty-one');\nINSERT INTO t1 VALUES(11921, 33974, 'thirty-three thousand nine hundred seventy-four');\nINSERT INTO t1 VALUES(11922, 8672, 'eight thousand six hundred seventy-two');\nINSERT INTO t1 VALUES(11923, 28849, 'twenty-eight thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(11924, 33303, 'thirty-three thousand three hundred three');\nINSERT INTO t1 VALUES(11925, 4867, 'four thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11926, 804, 'eight hundred four');\nINSERT INTO t1 VALUES(11927, 45611, 'forty-five thousand six hundred eleven');\nINSERT INTO t1 VALUES(11928, 96447, 'ninety-six thousand four hundred forty-seven');\nINSERT INTO t1 VALUES(11929, 65358, 'sixty-five thousand three hundred fifty-eight');\nINSERT INTO t1 VALUES(11930, 95849, 'ninety-five thousand eight hundred forty-nine');\nINSERT INTO t1 VALUES(11931, 63071, 'sixty-three thousand seventy-one');\nINSERT INTO t1 VALUES(11932, 41250, 'forty-one thousand two hundred fifty');\nINSERT INTO t1 VALUES(11933, 90107, 'ninety thousand one hundred seven');\nINSERT INTO t1 VALUES(11934, 71830, 'seventy-one thousand eight hundred thirty');\nINSERT INTO t1 VALUES(11935, 19829, 'nineteen thousand eight hundred twenty-nine');\nINSERT INTO t1 VALUES(11936, 77454, 'seventy-seven thousand four hundred fifty-four');\nINSERT INTO t1 VALUES(11937, 87350, 'eighty-seven thousand three hundred fifty');\nINSERT INTO t1 VALUES(11938, 29357, 'twenty-nine thousand three hundred fifty-seven');\nINSERT INTO t1 VALUES(11939, 66264, 'sixty-six thousand two hundred sixty-four');\nINSERT INTO t1 VALUES(11940, 48050, 'forty-eight thousand fifty');\nINSERT INTO t1 VALUES(11941, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t1 VALUES(11942, 63347, 'sixty-three thousand three hundred forty-seven');\nINSERT INTO t1 VALUES(11943, 87374, 'eighty-seven thousand three hundred seventy-four');\nINSERT INTO t1 VALUES(11944, 52867, 'fifty-two thousand eight hundred sixty-seven');\nINSERT INTO t1 VALUES(11945, 26887, 'twenty-six thousand eight hundred eighty-seven');\nINSERT INTO t1 VALUES(11946, 33935, 'thirty-three thousand nine hundred thirty-five');\nINSERT INTO t1 VALUES(11947, 2726, 'two thousand seven hundred twenty-six');\nINSERT INTO t1 VALUES(11948, 1034, 'one thousand thirty-four');\nINSERT INTO t1 VALUES(11949, 19102, 'nineteen thousand one hundred two');\nINSERT INTO t1 VALUES(11950, 61401, 'sixty-one thousand four hundred one');\nINSERT INTO t1 VALUES(11951, 30823, 'thirty thousand eight hundred twenty-three');\nINSERT INTO t1 VALUES(11952, 71869, 'seventy-one thousand eight hundred sixty-nine');\nINSERT INTO t1 VALUES(11953, 58422, 'fifty-eight thousand four hundred twenty-two');\nINSERT INTO t1 VALUES(11954, 93573, 'ninety-three thousand five hundred seventy-three');\nINSERT INTO t1 VALUES(11955, 5147, 'five thousand one hundred forty-seven');\nINSERT INTO t1 VALUES(11956, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t1 VALUES(11957, 20946, 'twenty thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(11958, 61577, 'sixty-one thousand five hundred seventy-seven');\nINSERT INTO t1 VALUES(11959, 20631, 'twenty thousand six hundred thirty-one');\nINSERT INTO t1 VALUES(11960, 21317, 'twenty-one thousand three hundred seventeen');\nINSERT INTO t1 VALUES(11961, 19033, 'nineteen thousand thirty-three');\nINSERT INTO t1 VALUES(11962, 7981, 'seven thousand nine hundred eighty-one');\nINSERT INTO t1 VALUES(11963, 74832, 'seventy-four thousand eight hundred thirty-two');\nINSERT INTO t1 VALUES(11964, 14805, 'fourteen thousand eight hundred five');\nINSERT INTO t1 VALUES(11965, 77751, 'seventy-seven thousand seven hundred fifty-one');\nINSERT INTO t1 VALUES(11966, 35682, 'thirty-five thousand six hundred eighty-two');\nINSERT INTO t1 VALUES(11967, 89082, 'eighty-nine thousand eighty-two');\nINSERT INTO t1 VALUES(11968, 94988, 'ninety-four thousand nine hundred eighty-eight');\nINSERT INTO t1 VALUES(11969, 60020, 'sixty thousand twenty');\nINSERT INTO t1 VALUES(11970, 77027, 'seventy-seven thousand twenty-seven');\nINSERT INTO t1 VALUES(11971, 2549, 'two thousand five hundred forty-nine');\nINSERT INTO t1 VALUES(11972, 29916, 'twenty-nine thousand nine hundred sixteen');\nINSERT INTO t1 VALUES(11973, 40946, 'forty thousand nine hundred forty-six');\nINSERT INTO t1 VALUES(11974, 29975, 'twenty-nine thousand nine hundred seventy-five');\nINSERT INTO t1 VALUES(11975, 97687, 'ninety-seven thousand six hundred eighty-seven');\nINSERT INTO t1 VALUES(11976, 491, 'four hundred ninety-one');\nINSERT INTO t1 VALUES(11977, 13073, 'thirteen thousand seventy-three');\nINSERT INTO t1 VALUES(11978, 41042, 'forty-one thousand forty-two');\nINSERT INTO t1 VALUES(11979, 88538, 'eighty-eight thousand five hundred thirty-eight');\nINSERT INTO t1 VALUES(11980, 69388, 'sixty-nine thousand three hundred eighty-eight');\nINSERT INTO t1 VALUES(11981, 76158, 'seventy-six thousand one hundred fifty-eight');\nINSERT INTO t1 VALUES(11982, 22654, 'twenty-two thousand six hundred fifty-four');\nINSERT INTO t1 VALUES(11983, 31131, 'thirty-one thousand one hundred thirty-one');\nINSERT INTO t1 VALUES(11984, 70333, 'seventy thousand three hundred thirty-three');\nINSERT INTO t1 VALUES(11985, 76208, 'seventy-six thousand two hundred eight');\nINSERT INTO t1 VALUES(11986, 85041, 'eighty-five thousand forty-one');\nINSERT INTO t1 VALUES(11987, 53416, 'fifty-three thousand four hundred sixteen');\nINSERT INTO t1 VALUES(11988, 22833, 'twenty-two thousand eight hundred thirty-three');\nINSERT INTO t1 VALUES(11989, 72025, 'seventy-two thousand twenty-five');\nINSERT INTO t1 VALUES(11990, 374, 'three hundred seventy-four');\nINSERT INTO t1 VALUES(11991, 86772, 'eighty-six thousand seven hundred seventy-two');\nINSERT INTO t1 VALUES(11992, 79006, 'seventy-nine thousand six');\nINSERT INTO t1 VALUES(11993, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t1 VALUES(11994, 90790, 'ninety thousand seven hundred ninety');\nINSERT INTO t1 VALUES(11995, 31367, 'thirty-one thousand three hundred sixty-seven');\nINSERT INTO t1 VALUES(11996, 42736, 'forty-two thousand seven hundred thirty-six');\nINSERT INTO t1 VALUES(11997, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t1 VALUES(11998, 19835, 'nineteen thousand eight hundred thirty-five');\nINSERT INTO t1 VALUES(11999, 30334, 'thirty thousand three hundred thirty-four');\nINSERT INTO t1 VALUES(12000, 48086, 'forty-eight thousand eighty-six');\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark16.sql",
    "content": "DROP TABLE t1;\nDROP TABLE t2;\nDROP TABLE t3;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark2.1.sql",
    "content": "BEGIN;\nCREATE TABLE t2_1(a INTEGER, b INTEGER, c VARCHAR(100));\nINSERT INTO t2_1 VALUES\n(1, 90584, 'ninety thousand five hundred eighty-four'),\n(2, 42558, 'forty-two thousand five hundred fifty-eight'),\n(3, 5904, 'five thousand nine hundred four'),\n(4, 27011, 'twenty-seven thousand eleven'),\n(5, 97728, 'ninety-seven thousand seven hundred twenty-eight'),\n(6, 46615, 'forty-six thousand six hundred fifteen'),\n(7, 28853, 'twenty-eight thousand eight hundred fifty-three'),\n(8, 94539, 'ninety-four thousand five hundred thirty-nine'),\n(9, 84536, 'eighty-four thousand five hundred thirty-six'),\n(10, 72680, 'seventy-two thousand six hundred eighty'),\n(11, 93381, 'ninety-three thousand three hundred eighty-one'),\n(12, 17138, 'seventeen thousand one hundred thirty-eight'),\n(13, 29965, 'twenty-nine thousand nine hundred sixty-five'),\n(14, 69407, 'sixty-nine thousand four hundred seven'),\n(15, 61421, 'sixty-one thousand four hundred twenty-one'),\n(16, 81239, 'eighty-one thousand two hundred thirty-nine'),\n(17, 59865, 'fifty-nine thousand eight hundred sixty-five'),\n(18, 588, 'five hundred eighty-eight'),\n(19, 84152, 'eighty-four thousand one hundred fifty-two'),\n(20, 84124, 'eighty-four thousand one hundred twenty-four'),\n(21, 12969, 'twelve thousand nine hundred sixty-nine'),\n(22, 7253, 'seven thousand two hundred fifty-three'),\n(23, 42485, 'forty-two thousand four hundred eighty-five'),\n(24, 3762, 'three thousand seven hundred sixty-two'),\n(25, 78100, 'seventy-eight thousand one hundred'),\n(26, 84160, 'eighty-four thousand one hundred sixty'),\n(27, 43453, 'forty-three thousand four hundred fifty-three'),\n(28, 71890, 'seventy-one thousand eight hundred ninety'),\n(29, 33038, 'thirty-three thousand thirty-eight'),\n(30, 49437, 'forty-nine thousand four hundred thirty-seven'),\n(31, 96549, 'ninety-six thousand five hundred forty-nine'),\n(32, 23171, 'twenty-three thousand one hundred seventy-one'),\n(33, 62381, 'sixty-two thousand three hundred eighty-one'),\n(34, 90815, 'ninety thousand eight hundred fifteen'),\n(35, 26487, 'twenty-six thousand four hundred eighty-seven'),\n(36, 43321, 'forty-three thousand three hundred twenty-one'),\n(37, 89020, 'eighty-nine thousand twenty'),\n(38, 33474, 'thirty-three thousand four hundred seventy-four'),\n(39, 72198, 'seventy-two thousand one hundred ninety-eight'),\n(40, 71417, 'seventy-one thousand four hundred seventeen'),\n(41, 89777, 'eighty-nine thousand seven hundred seventy-seven'),\n(42, 97169, 'ninety-seven thousand one hundred sixty-nine'),\n(43, 55191, 'fifty-five thousand one hundred ninety-one'),\n(44, 73842, 'seventy-three thousand eight hundred forty-two'),\n(45, 70227, 'seventy thousand two hundred twenty-seven'),\n(46, 65573, 'sixty-five thousand five hundred seventy-three'),\n(47, 73518, 'seventy-three thousand five hundred eighteen'),\n(48, 68505, 'sixty-eight thousand five hundred five'),\n(49, 57185, 'fifty-seven thousand one hundred eighty-five'),\n(50, 23871, 'twenty-three thousand eight hundred seventy-one'),\n(51, 89925, 'eighty-nine thousand nine hundred twenty-five'),\n(52, 2387, 'two thousand three hundred eighty-seven'),\n(53, 17526, 'seventeen thousand five hundred twenty-six'),\n(54, 13016, 'thirteen thousand sixteen'),\n(55, 74881, 'seventy-four thousand eight hundred eighty-one'),\n(56, 59286, 'fifty-nine thousand two hundred eighty-six'),\n(57, 19244, 'nineteen thousand two hundred forty-four'),\n(58, 4267, 'four thousand two hundred sixty-seven'),\n(59, 94748, 'ninety-four thousand seven hundred forty-eight'),\n(60, 75557, 'seventy-five thousand five hundred fifty-seven'),\n(61, 48280, 'forty-eight thousand two hundred eighty'),\n(62, 42957, 'forty-two thousand nine hundred fifty-seven'),\n(63, 87398, 'eighty-seven thousand three hundred ninety-eight'),\n(64, 58372, 'fifty-eight thousand three hundred seventy-two'),\n(65, 53877, 'fifty-three thousand eight hundred seventy-seven'),\n(66, 37922, 'thirty-seven thousand nine hundred twenty-two'),\n(67, 19265, 'nineteen thousand two hundred sixty-five'),\n(68, 44548, 'forty-four thousand five hundred forty-eight'),\n(69, 90517, 'ninety thousand five hundred seventeen'),\n(70, 49280, 'forty-nine thousand two hundred eighty'),\n(71, 78587, 'seventy-eight thousand five hundred eighty-seven'),\n(72, 50027, 'fifty thousand twenty-seven'),\n(73, 17279, 'seventeen thousand two hundred seventy-nine'),\n(74, 81786, 'eighty-one thousand seven hundred eighty-six'),\n(75, 59408, 'fifty-nine thousand four hundred eight'),\n(76, 12302, 'twelve thousand three hundred two'),\n(77, 19245, 'nineteen thousand two hundred forty-five'),\n(78, 79712, 'seventy-nine thousand seven hundred twelve'),\n(79, 39038, 'thirty-nine thousand thirty-eight'),\n(80, 54293, 'fifty-four thousand two hundred ninety-three'),\n(81, 38489, 'thirty-eight thousand four hundred eighty-nine'),\n(82, 76089, 'seventy-six thousand eighty-nine'),\n(83, 77661, 'seventy-seven thousand six hundred sixty-one'),\n(84, 47148, 'forty-seven thousand one hundred forty-eight'),\n(85, 11042, 'eleven thousand forty-two'),\n(86, 56823, 'fifty-six thousand eight hundred twenty-three'),\n(87, 45667, 'forty-five thousand six hundred sixty-seven'),\n(88, 85403, 'eighty-five thousand four hundred three'),\n(89, 70399, 'seventy thousand three hundred ninety-nine'),\n(90, 70436, 'seventy thousand four hundred thirty-six'),\n(91, 83893, 'eighty-three thousand eight hundred ninety-three'),\n(92, 47320, 'forty-seven thousand three hundred twenty'),\n(93, 99216, 'ninety-nine thousand two hundred sixteen'),\n(94, 90347, 'ninety thousand three hundred forty-seven'),\n(95, 63626, 'sixty-three thousand six hundred twenty-six'),\n(96, 28133, 'twenty-eight thousand one hundred thirty-three'),\n(97, 10588, 'ten thousand five hundred eighty-eight'),\n(98, 93243, 'ninety-three thousand two hundred forty-three'),\n(99, 52352, 'fifty-two thousand three hundred fifty-two'),\n(100, 66472, 'sixty-six thousand four hundred seventy-two'),\n(101, 70637, 'seventy thousand six hundred thirty-seven'),\n(102, 99984, 'ninety-nine thousand nine hundred eighty-four'),\n(103, 55281, 'fifty-five thousand two hundred eighty-one'),\n(104, 57112, 'fifty-seven thousand one hundred twelve'),\n(105, 69335, 'sixty-nine thousand three hundred thirty-five'),\n(106, 76289, 'seventy-six thousand two hundred eighty-nine'),\n(107, 58904, 'fifty-eight thousand nine hundred four'),\n(108, 83931, 'eighty-three thousand nine hundred thirty-one'),\n(109, 96752, 'ninety-six thousand seven hundred fifty-two'),\n(110, 93887, 'ninety-three thousand eight hundred eighty-seven'),\n(111, 53694, 'fifty-three thousand six hundred ninety-four'),\n(112, 59470, 'fifty-nine thousand four hundred seventy'),\n(113, 72610, 'seventy-two thousand six hundred ten'),\n(114, 4752, 'four thousand seven hundred fifty-two'),\n(115, 79581, 'seventy-nine thousand five hundred eighty-one'),\n(116, 10668, 'ten thousand six hundred sixty-eight'),\n(117, 56097, 'fifty-six thousand ninety-seven'),\n(118, 97324, 'ninety-seven thousand three hundred twenty-four'),\n(119, 28333, 'twenty-eight thousand three hundred thirty-three'),\n(120, 79763, 'seventy-nine thousand seven hundred sixty-three'),\n(121, 73271, 'seventy-three thousand two hundred seventy-one'),\n(122, 19112, 'nineteen thousand one hundred twelve'),\n(123, 40795, 'forty thousand seven hundred ninety-five'),\n(124, 88896, 'eighty-eight thousand eight hundred ninety-six'),\n(125, 18106, 'eighteen thousand one hundred six'),\n(126, 35583, 'thirty-five thousand five hundred eighty-three'),\n(127, 74961, 'seventy-four thousand nine hundred sixty-one'),\n(128, 39442, 'thirty-nine thousand four hundred forty-two'),\n(129, 29082, 'twenty-nine thousand eighty-two'),\n(130, 91292, 'ninety-one thousand two hundred ninety-two'),\n(131, 99874, 'ninety-nine thousand eight hundred seventy-four'),\n(132, 21091, 'twenty-one thousand ninety-one'),\n(133, 38291, 'thirty-eight thousand two hundred ninety-one'),\n(134, 16583, 'sixteen thousand five hundred eighty-three'),\n(135, 28219, 'twenty-eight thousand two hundred nineteen'),\n(136, 26561, 'twenty-six thousand five hundred sixty-one'),\n(137, 96379, 'ninety-six thousand three hundred seventy-nine'),\n(138, 86575, 'eighty-six thousand five hundred seventy-five'),\n(139, 3153, 'three thousand one hundred fifty-three'),\n(140, 19351, 'nineteen thousand three hundred fifty-one'),\n(141, 27410, 'twenty-seven thousand four hundred ten'),\n(142, 48253, 'forty-eight thousand two hundred fifty-three'),\n(143, 73697, 'seventy-three thousand six hundred ninety-seven'),\n(144, 72343, 'seventy-two thousand three hundred forty-three'),\n(145, 36637, 'thirty-six thousand six hundred thirty-seven'),\n(146, 95428, 'ninety-five thousand four hundred twenty-eight'),\n(147, 82618, 'eighty-two thousand six hundred eighteen'),\n(148, 21906, 'twenty-one thousand nine hundred six'),\n(149, 42253, 'forty-two thousand two hundred fifty-three'),\n(150, 27764, 'twenty-seven thousand seven hundred sixty-four'),\n(151, 39773, 'thirty-nine thousand seven hundred seventy-three'),\n(152, 59859, 'fifty-nine thousand eight hundred fifty-nine'),\n(153, 53478, 'fifty-three thousand four hundred seventy-eight'),\n(154, 67737, 'sixty-seven thousand seven hundred thirty-seven'),\n(155, 11285, 'eleven thousand two hundred eighty-five'),\n(156, 16564, 'sixteen thousand five hundred sixty-four'),\n(157, 60721, 'sixty thousand seven hundred twenty-one'),\n(158, 41942, 'forty-one thousand nine hundred forty-two'),\n(159, 54386, 'fifty-four thousand three hundred eighty-six'),\n(160, 31102, 'thirty-one thousand one hundred two'),\n(161, 21277, 'twenty-one thousand two hundred seventy-seven'),\n(162, 13172, 'thirteen thousand one hundred seventy-two'),\n(163, 19591, 'nineteen thousand five hundred ninety-one'),\n(164, 14293, 'fourteen thousand two hundred ninety-three'),\n(165, 40877, 'forty thousand eight hundred seventy-seven'),\n(166, 79358, 'seventy-nine thousand three hundred fifty-eight'),\n(167, 20675, 'twenty thousand six hundred seventy-five'),\n(168, 1769, 'one thousand seven hundred sixty-nine'),\n(169, 1677, 'one thousand six hundred seventy-seven'),\n(170, 32205, 'thirty-two thousand two hundred five'),\n(171, 81540, 'eighty-one thousand five hundred forty'),\n(172, 5710, 'five thousand seven hundred ten'),\n(173, 62299, 'sixty-two thousand two hundred ninety-nine'),\n(174, 85032, 'eighty-five thousand thirty-two'),\n(175, 3662, 'three thousand six hundred sixty-two'),\n(176, 58615, 'fifty-eight thousand six hundred fifteen'),\n(177, 13614, 'thirteen thousand six hundred fourteen'),\n(178, 62699, 'sixty-two thousand six hundred ninety-nine'),\n(179, 71236, 'seventy-one thousand two hundred thirty-six'),\n(180, 88169, 'eighty-eight thousand one hundred sixty-nine'),\n(181, 65385, 'sixty-five thousand three hundred eighty-five'),\n(182, 99267, 'ninety-nine thousand two hundred sixty-seven'),\n(183, 12606, 'twelve thousand six hundred six'),\n(184, 30770, 'thirty thousand seven hundred seventy'),\n(185, 62402, 'sixty-two thousand four hundred two'),\n(186, 31565, 'thirty-one thousand five hundred sixty-five'),\n(187, 3692, 'three thousand six hundred ninety-two'),\n(188, 7186, 'seven thousand one hundred eighty-six'),\n(189, 99676, 'ninety-nine thousand six hundred seventy-six'),\n(190, 76164, 'seventy-six thousand one hundred sixty-four'),\n(191, 9515, 'nine thousand five hundred fifteen'),\n(192, 45987, 'forty-five thousand nine hundred eighty-seven'),\n(193, 82888, 'eighty-two thousand eight hundred eighty-eight'),\n(194, 6768, 'six thousand seven hundred sixty-eight'),\n(195, 40789, 'forty thousand seven hundred eighty-nine'),\n(196, 10644, 'ten thousand six hundred forty-four'),\n(197, 64882, 'sixty-four thousand eight hundred eighty-two'),\n(198, 89204, 'eighty-nine thousand two hundred four'),\n(199, 31531, 'thirty-one thousand five hundred thirty-one'),\n(200, 84135, 'eighty-four thousand one hundred thirty-five'),\n(201, 40452, 'forty thousand four hundred fifty-two'),\n(202, 65812, 'sixty-five thousand eight hundred twelve'),\n(203, 87428, 'eighty-seven thousand four hundred twenty-eight'),\n(204, 81611, 'eighty-one thousand six hundred eleven'),\n(205, 35606, 'thirty-five thousand six hundred six'),\n(206, 44800, 'forty-four thousand eight hundred'),\n(207, 90307, 'ninety thousand three hundred seven'),\n(208, 49767, 'forty-nine thousand seven hundred sixty-seven'),\n(209, 63135, 'sixty-three thousand one hundred thirty-five'),\n(210, 7874, 'seven thousand eight hundred seventy-four'),\n(211, 56052, 'fifty-six thousand fifty-two'),\n(212, 14101, 'fourteen thousand one hundred one'),\n(213, 73904, 'seventy-three thousand nine hundred four'),\n(214, 82013, 'eighty-two thousand thirteen'),\n(215, 30917, 'thirty thousand nine hundred seventeen'),\n(216, 43369, 'forty-three thousand three hundred sixty-nine'),\n(217, 85482, 'eighty-five thousand four hundred eighty-two'),\n(218, 74531, 'seventy-four thousand five hundred thirty-one'),\n(219, 68304, 'sixty-eight thousand three hundred four'),\n(220, 3826, 'three thousand eight hundred twenty-six'),\n(221, 47165, 'forty-seven thousand one hundred sixty-five'),\n(222, 92990, 'ninety-two thousand nine hundred ninety'),\n(223, 79000, 'seventy-nine thousand'),\n(224, 58652, 'fifty-eight thousand six hundred fifty-two'),\n(225, 48526, 'forty-eight thousand five hundred twenty-six'),\n(226, 43307, 'forty-three thousand three hundred seven'),\n(227, 23772, 'twenty-three thousand seven hundred seventy-two'),\n(228, 58846, 'fifty-eight thousand eight hundred forty-six'),\n(229, 87291, 'eighty-seven thousand two hundred ninety-one'),\n(230, 83004, 'eighty-three thousand four'),\n(231, 42004, 'forty-two thousand four'),\n(232, 49969, 'forty-nine thousand nine hundred sixty-nine'),\n(233, 23476, 'twenty-three thousand four hundred seventy-six'),\n(234, 79448, 'seventy-nine thousand four hundred forty-eight'),\n(235, 50218, 'fifty thousand two hundred eighteen'),\n(236, 77955, 'seventy-seven thousand nine hundred fifty-five'),\n(237, 38504, 'thirty-eight thousand five hundred four'),\n(238, 15753, 'fifteen thousand seven hundred fifty-three'),\n(239, 6575, 'six thousand five hundred seventy-five'),\n(240, 55802, 'fifty-five thousand eight hundred two'),\n(241, 80168, 'eighty thousand one hundred sixty-eight'),\n(242, 92770, 'ninety-two thousand seven hundred seventy'),\n(243, 55401, 'fifty-five thousand four hundred one'),\n(244, 78571, 'seventy-eight thousand five hundred seventy-one'),\n(245, 35837, 'thirty-five thousand eight hundred thirty-seven'),\n(246, 31224, 'thirty-one thousand two hundred twenty-four'),\n(247, 89769, 'eighty-nine thousand seven hundred sixty-nine'),\n(248, 20314, 'twenty thousand three hundred fourteen'),\n(249, 71697, 'seventy-one thousand six hundred ninety-seven'),\n(250, 22149, 'twenty-two thousand one hundred forty-nine'),\n(251, 23262, 'twenty-three thousand two hundred sixty-two'),\n(252, 7116, 'seven thousand one hundred sixteen'),\n(253, 25847, 'twenty-five thousand eight hundred forty-seven'),\n(254, 91292, 'ninety-one thousand two hundred ninety-two'),\n(255, 7915, 'seven thousand nine hundred fifteen'),\n(256, 85245, 'eighty-five thousand two hundred forty-five'),\n(257, 94332, 'ninety-four thousand three hundred thirty-two'),\n(258, 39481, 'thirty-nine thousand four hundred eighty-one'),\n(259, 5269, 'five thousand two hundred sixty-nine'),\n(260, 22338, 'twenty-two thousand three hundred thirty-eight'),\n(261, 74180, 'seventy-four thousand one hundred eighty'),\n(262, 49430, 'forty-nine thousand four hundred thirty'),\n(263, 51365, 'fifty-one thousand three hundred sixty-five'),\n(264, 54313, 'fifty-four thousand three hundred thirteen'),\n(265, 13136, 'thirteen thousand one hundred thirty-six'),\n(266, 83576, 'eighty-three thousand five hundred seventy-six'),\n(267, 78663, 'seventy-eight thousand six hundred sixty-three'),\n(268, 47700, 'forty-seven thousand seven hundred'),\n(269, 34175, 'thirty-four thousand one hundred seventy-five'),\n(270, 83792, 'eighty-three thousand seven hundred ninety-two'),\n(271, 24469, 'twenty-four thousand four hundred sixty-nine'),\n(272, 79780, 'seventy-nine thousand seven hundred eighty'),\n(273, 68160, 'sixty-eight thousand one hundred sixty'),\n(274, 24719, 'twenty-four thousand seven hundred nineteen'),\n(275, 90627, 'ninety thousand six hundred twenty-seven'),\n(276, 68384, 'sixty-eight thousand three hundred eighty-four'),\n(277, 2097, 'two thousand ninety-seven'),\n(278, 91419, 'ninety-one thousand four hundred nineteen'),\n(279, 490, 'four hundred ninety'),\n(280, 41320, 'forty-one thousand three hundred twenty'),\n(281, 85136, 'eighty-five thousand one hundred thirty-six'),\n(282, 58013, 'fifty-eight thousand thirteen'),\n(283, 64490, 'sixty-four thousand four hundred ninety'),\n(284, 14584, 'fourteen thousand five hundred eighty-four'),\n(285, 45558, 'forty-five thousand five hundred fifty-eight'),\n(286, 36464, 'thirty-six thousand four hundred sixty-four'),\n(287, 9044, 'nine thousand forty-four'),\n(288, 50280, 'fifty thousand two hundred eighty'),\n(289, 18306, 'eighteen thousand three hundred six'),\n(290, 78730, 'seventy-eight thousand seven hundred thirty'),\n(291, 44272, 'forty-four thousand two hundred seventy-two'),\n(292, 43960, 'forty-three thousand nine hundred sixty'),\n(293, 3488, 'three thousand four hundred eighty-eight'),\n(294, 80135, 'eighty thousand one hundred thirty-five'),\n(295, 74156, 'seventy-four thousand one hundred fifty-six'),\n(296, 2359, 'two thousand three hundred fifty-nine'),\n(297, 18621, 'eighteen thousand six hundred twenty-one'),\n(298, 93144, 'ninety-three thousand one hundred forty-four'),\n(299, 57458, 'fifty-seven thousand four hundred fifty-eight'),\n(300, 72223, 'seventy-two thousand two hundred twenty-three'),\n(301, 73494, 'seventy-three thousand four hundred ninety-four'),\n(302, 24982, 'twenty-four thousand nine hundred eighty-two'),\n(303, 17264, 'seventeen thousand two hundred sixty-four'),\n(304, 41967, 'forty-one thousand nine hundred sixty-seven'),\n(305, 97163, 'ninety-seven thousand one hundred sixty-three'),\n(306, 89452, 'eighty-nine thousand four hundred fifty-two'),\n(307, 20167, 'twenty thousand one hundred sixty-seven'),\n(308, 39685, 'thirty-nine thousand six hundred eighty-five'),\n(309, 93786, 'ninety-three thousand seven hundred eighty-six'),\n(310, 1083, 'one thousand eighty-three'),\n(311, 91893, 'ninety-one thousand eight hundred ninety-three'),\n(312, 73800, 'seventy-three thousand eight hundred'),\n(313, 24798, 'twenty-four thousand seven hundred ninety-eight'),\n(314, 48791, 'forty-eight thousand seven hundred ninety-one'),\n(315, 90826, 'ninety thousand eight hundred twenty-six'),\n(316, 99175, 'ninety-nine thousand one hundred seventy-five'),\n(317, 24893, 'twenty-four thousand eight hundred ninety-three'),\n(318, 43840, 'forty-three thousand eight hundred forty'),\n(319, 98875, 'ninety-eight thousand eight hundred seventy-five'),\n(320, 63936, 'sixty-three thousand nine hundred thirty-six'),\n(321, 42855, 'forty-two thousand eight hundred fifty-five'),\n(322, 47833, 'forty-seven thousand eight hundred thirty-three'),\n(323, 36163, 'thirty-six thousand one hundred sixty-three'),\n(324, 49870, 'forty-nine thousand eight hundred seventy'),\n(325, 81463, 'eighty-one thousand four hundred sixty-three'),\n(326, 29346, 'twenty-nine thousand three hundred forty-six'),\n(327, 66164, 'sixty-six thousand one hundred sixty-four'),\n(328, 13407, 'thirteen thousand four hundred seven'),\n(329, 3831, 'three thousand eight hundred thirty-one'),\n(330, 47325, 'forty-seven thousand three hundred twenty-five'),\n(331, 55698, 'fifty-five thousand six hundred ninety-eight'),\n(332, 78457, 'seventy-eight thousand four hundred fifty-seven'),\n(333, 42971, 'forty-two thousand nine hundred seventy-one'),\n(334, 23741, 'twenty-three thousand seven hundred forty-one'),\n(335, 5185, 'five thousand one hundred eighty-five'),\n(336, 5746, 'five thousand seven hundred forty-six'),\n(337, 25097, 'twenty-five thousand ninety-seven'),\n(338, 95283, 'ninety-five thousand two hundred eighty-three'),\n(339, 96875, 'ninety-six thousand eight hundred seventy-five'),\n(340, 98629, 'ninety-eight thousand six hundred twenty-nine'),\n(341, 41267, 'forty-one thousand two hundred sixty-seven'),\n(342, 98055, 'ninety-eight thousand fifty-five'),\n(343, 73830, 'seventy-three thousand eight hundred thirty'),\n(344, 34985, 'thirty-four thousand nine hundred eighty-five'),\n(345, 24661, 'twenty-four thousand six hundred sixty-one'),\n(346, 44424, 'forty-four thousand four hundred twenty-four'),\n(347, 74252, 'seventy-four thousand two hundred fifty-two'),\n(348, 9490, 'nine thousand four hundred ninety'),\n(349, 8125, 'eight thousand one hundred twenty-five'),\n(350, 39204, 'thirty-nine thousand two hundred four'),\n(351, 43098, 'forty-three thousand ninety-eight'),\n(352, 96899, 'ninety-six thousand eight hundred ninety-nine'),\n(353, 80442, 'eighty thousand four hundred forty-two'),\n(354, 7697, 'seven thousand six hundred ninety-seven'),\n(355, 92162, 'ninety-two thousand one hundred sixty-two'),\n(356, 79651, 'seventy-nine thousand six hundred fifty-one'),\n(357, 81206, 'eighty-one thousand two hundred six'),\n(358, 6508, 'six thousand five hundred eight'),\n(359, 3635, 'three thousand six hundred thirty-five'),\n(360, 66733, 'sixty-six thousand seven hundred thirty-three'),\n(361, 13695, 'thirteen thousand six hundred ninety-five'),\n(362, 17014, 'seventeen thousand fourteen'),\n(363, 57870, 'fifty-seven thousand eight hundred seventy'),\n(364, 23851, 'twenty-three thousand eight hundred fifty-one'),\n(365, 69139, 'sixty-nine thousand one hundred thirty-nine'),\n(366, 14381, 'fourteen thousand three hundred eighty-one'),\n(367, 39789, 'thirty-nine thousand seven hundred eighty-nine'),\n(368, 54204, 'fifty-four thousand two hundred four'),\n(369, 31110, 'thirty-one thousand one hundred ten'),\n(370, 30301, 'thirty thousand three hundred one'),\n(371, 96378, 'ninety-six thousand three hundred seventy-eight'),\n(372, 30520, 'thirty thousand five hundred twenty'),\n(373, 49432, 'forty-nine thousand four hundred thirty-two'),\n(374, 11167, 'eleven thousand one hundred sixty-seven'),\n(375, 23567, 'twenty-three thousand five hundred sixty-seven'),\n(376, 39142, 'thirty-nine thousand one hundred forty-two'),\n(377, 45535, 'forty-five thousand five hundred thirty-five'),\n(378, 60086, 'sixty thousand eighty-six'),\n(379, 96700, 'ninety-six thousand seven hundred'),\n(380, 51609, 'fifty-one thousand six hundred nine'),\n(381, 19465, 'nineteen thousand four hundred sixty-five'),\n(382, 97496, 'ninety-seven thousand four hundred ninety-six'),\n(383, 40693, 'forty thousand six hundred ninety-three'),\n(384, 90384, 'ninety thousand three hundred eighty-four'),\n(385, 37018, 'thirty-seven thousand eighteen'),\n(386, 33373, 'thirty-three thousand three hundred seventy-three'),\n(387, 18129, 'eighteen thousand one hundred twenty-nine'),\n(388, 87088, 'eighty-seven thousand eighty-eight'),\n(389, 38982, 'thirty-eight thousand nine hundred eighty-two'),\n(390, 68852, 'sixty-eight thousand eight hundred fifty-two'),\n(391, 67805, 'sixty-seven thousand eight hundred five'),\n(392, 85035, 'eighty-five thousand thirty-five'),\n(393, 83196, 'eighty-three thousand one hundred ninety-six'),\n(394, 66916, 'sixty-six thousand nine hundred sixteen'),\n(395, 62729, 'sixty-two thousand seven hundred twenty-nine'),\n(396, 40572, 'forty thousand five hundred seventy-two'),\n(397, 99281, 'ninety-nine thousand two hundred eighty-one'),\n(398, 13442, 'thirteen thousand four hundred forty-two'),\n(399, 62851, 'sixty-two thousand eight hundred fifty-one'),\n(400, 88668, 'eighty-eight thousand six hundred sixty-eight'),\n(401, 39319, 'thirty-nine thousand three hundred nineteen'),\n(402, 54573, 'fifty-four thousand five hundred seventy-three'),\n(403, 69094, 'sixty-nine thousand ninety-four'),\n(404, 22750, 'twenty-two thousand seven hundred fifty'),\n(405, 958, 'nine hundred fifty-eight'),\n(406, 37812, 'thirty-seven thousand eight hundred twelve'),\n(407, 27408, 'twenty-seven thousand four hundred eight'),\n(408, 102, 'one hundred two'),\n(409, 98842, 'ninety-eight thousand eight hundred forty-two'),\n(410, 46101, 'forty-six thousand one hundred one'),\n(411, 47116, 'forty-seven thousand one hundred sixteen'),\n(412, 83820, 'eighty-three thousand eight hundred twenty'),\n(413, 11037, 'eleven thousand thirty-seven'),\n(414, 63954, 'sixty-three thousand nine hundred fifty-four'),\n(415, 4143, 'four thousand one hundred forty-three'),\n(416, 92284, 'ninety-two thousand two hundred eighty-four'),\n(417, 13726, 'thirteen thousand seven hundred twenty-six'),\n(418, 19093, 'nineteen thousand ninety-three'),\n(419, 5647, 'five thousand six hundred forty-seven'),\n(420, 59306, 'fifty-nine thousand three hundred six'),\n(421, 74912, 'seventy-four thousand nine hundred twelve'),\n(422, 57291, 'fifty-seven thousand two hundred ninety-one'),\n(423, 88070, 'eighty-eight thousand seventy'),\n(424, 17250, 'seventeen thousand two hundred fifty'),\n(425, 33763, 'thirty-three thousand seven hundred sixty-three'),\n(426, 92165, 'ninety-two thousand one hundred sixty-five'),\n(427, 71691, 'seventy-one thousand six hundred ninety-one'),\n(428, 15409, 'fifteen thousand four hundred nine'),\n(429, 78545, 'seventy-eight thousand five hundred forty-five'),\n(430, 35754, 'thirty-five thousand seven hundred fifty-four'),\n(431, 11936, 'eleven thousand nine hundred thirty-six'),\n(432, 5900, 'five thousand nine hundred'),\n(433, 74035, 'seventy-four thousand thirty-five'),\n(434, 79581, 'seventy-nine thousand five hundred eighty-one'),\n(435, 75744, 'seventy-five thousand seven hundred forty-four'),\n(436, 63940, 'sixty-three thousand nine hundred forty'),\n(437, 23980, 'twenty-three thousand nine hundred eighty'),\n(438, 22051, 'twenty-two thousand fifty-one'),\n(439, 93445, 'ninety-three thousand four hundred forty-five'),\n(440, 34736, 'thirty-four thousand seven hundred thirty-six'),\n(441, 31454, 'thirty-one thousand four hundred fifty-four'),\n(442, 40844, 'forty thousand eight hundred forty-four'),\n(443, 70304, 'seventy thousand three hundred four'),\n(444, 10837, 'ten thousand eight hundred thirty-seven'),\n(445, 99631, 'ninety-nine thousand six hundred thirty-one'),\n(446, 72804, 'seventy-two thousand eight hundred four'),\n(447, 92850, 'ninety-two thousand eight hundred fifty'),\n(448, 63508, 'sixty-three thousand five hundred eight'),\n(449, 25706, 'twenty-five thousand seven hundred six'),\n(450, 87944, 'eighty-seven thousand nine hundred forty-four'),\n(451, 23517, 'twenty-three thousand five hundred seventeen'),\n(452, 68961, 'sixty-eight thousand nine hundred sixty-one'),\n(453, 74788, 'seventy-four thousand seven hundred eighty-eight'),\n(454, 16124, 'sixteen thousand one hundred twenty-four'),\n(455, 93887, 'ninety-three thousand eight hundred eighty-seven'),\n(456, 85421, 'eighty-five thousand four hundred twenty-one'),\n(457, 91515, 'ninety-one thousand five hundred fifteen'),\n(458, 15437, 'fifteen thousand four hundred thirty-seven'),\n(459, 37400, 'thirty-seven thousand four hundred'),\n(460, 5002, 'five thousand two'),\n(461, 79204, 'seventy-nine thousand two hundred four'),\n(462, 39588, 'thirty-nine thousand five hundred eighty-eight'),\n(463, 19821, 'nineteen thousand eight hundred twenty-one'),\n(464, 23933, 'twenty-three thousand nine hundred thirty-three'),\n(465, 17986, 'seventeen thousand nine hundred eighty-six'),\n(466, 34801, 'thirty-four thousand eight hundred one'),\n(467, 63154, 'sixty-three thousand one hundred fifty-four'),\n(468, 76240, 'seventy-six thousand two hundred forty'),\n(469, 92334, 'ninety-two thousand three hundred thirty-four'),\n(470, 32094, 'thirty-two thousand ninety-four'),\n(471, 52504, 'fifty-two thousand five hundred four'),\n(472, 89226, 'eighty-nine thousand two hundred twenty-six'),\n(473, 32433, 'thirty-two thousand four hundred thirty-three'),\n(474, 68219, 'sixty-eight thousand two hundred nineteen'),\n(475, 22845, 'twenty-two thousand eight hundred forty-five'),\n(476, 9138, 'nine thousand one hundred thirty-eight'),\n(477, 56540, 'fifty-six thousand five hundred forty'),\n(478, 60269, 'sixty thousand two hundred sixty-nine'),\n(479, 62693, 'sixty-two thousand six hundred ninety-three'),\n(480, 31550, 'thirty-one thousand five hundred fifty'),\n(481, 23224, 'twenty-three thousand two hundred twenty-four'),\n(482, 37671, 'thirty-seven thousand six hundred seventy-one'),\n(483, 60275, 'sixty thousand two hundred seventy-five'),\n(484, 89470, 'eighty-nine thousand four hundred seventy'),\n(485, 67806, 'sixty-seven thousand eight hundred six'),\n(486, 45933, 'forty-five thousand nine hundred thirty-three'),\n(487, 34486, 'thirty-four thousand four hundred eighty-six'),\n(488, 32311, 'thirty-two thousand three hundred eleven'),\n(489, 27956, 'twenty-seven thousand nine hundred fifty-six'),\n(490, 3525, 'three thousand five hundred twenty-five'),\n(491, 97535, 'ninety-seven thousand five hundred thirty-five'),\n(492, 25332, 'twenty-five thousand three hundred thirty-two'),\n(493, 32005, 'thirty-two thousand five'),\n(494, 62842, 'sixty-two thousand eight hundred forty-two'),\n(495, 97388, 'ninety-seven thousand three hundred eighty-eight'),\n(496, 9955, 'nine thousand nine hundred fifty-five'),\n(497, 16659, 'sixteen thousand six hundred fifty-nine'),\n(498, 36808, 'thirty-six thousand eight hundred eight'),\n(499, 96556, 'ninety-six thousand five hundred fifty-six'),\n(500, 97611, 'ninety-seven thousand six hundred eleven'),\n(501, 94797, 'ninety-four thousand seven hundred ninety-seven'),\n(502, 55526, 'fifty-five thousand five hundred twenty-six'),\n(503, 67993, 'sixty-seven thousand nine hundred ninety-three'),\n(504, 9578, 'nine thousand five hundred seventy-eight'),\n(505, 66639, 'sixty-six thousand six hundred thirty-nine'),\n(506, 34736, 'thirty-four thousand seven hundred thirty-six'),\n(507, 99062, 'ninety-nine thousand sixty-two'),\n(508, 34421, 'thirty-four thousand four hundred twenty-one'),\n(509, 2808, 'two thousand eight hundred eight'),\n(510, 95578, 'ninety-five thousand five hundred seventy-eight'),\n(511, 59698, 'fifty-nine thousand six hundred ninety-eight'),\n(512, 48398, 'forty-eight thousand three hundred ninety-eight'),\n(513, 70979, 'seventy thousand nine hundred seventy-nine'),\n(514, 78429, 'seventy-eight thousand four hundred twenty-nine'),\n(515, 54267, 'fifty-four thousand two hundred sixty-seven'),\n(516, 23592, 'twenty-three thousand five hundred ninety-two'),\n(517, 54855, 'fifty-four thousand eight hundred fifty-five'),\n(518, 84027, 'eighty-four thousand twenty-seven'),\n(519, 65748, 'sixty-five thousand seven hundred forty-eight'),\n(520, 41536, 'forty-one thousand five hundred thirty-six'),\n(521, 18689, 'eighteen thousand six hundred eighty-nine'),\n(522, 95009, 'ninety-five thousand nine'),\n(523, 67827, 'sixty-seven thousand eight hundred twenty-seven'),\n(524, 73315, 'seventy-three thousand three hundred fifteen'),\n(525, 69894, 'sixty-nine thousand eight hundred ninety-four'),\n(526, 31763, 'thirty-one thousand seven hundred sixty-three'),\n(527, 95172, 'ninety-five thousand one hundred seventy-two'),\n(528, 66494, 'sixty-six thousand four hundred ninety-four'),\n(529, 22046, 'twenty-two thousand forty-six'),\n(530, 88566, 'eighty-eight thousand five hundred sixty-six'),\n(531, 67887, 'sixty-seven thousand eight hundred eighty-seven'),\n(532, 40199, 'forty thousand one hundred ninety-nine'),\n(533, 59247, 'fifty-nine thousand two hundred forty-seven'),\n(534, 68531, 'sixty-eight thousand five hundred thirty-one'),\n(535, 28157, 'twenty-eight thousand one hundred fifty-seven'),\n(536, 40723, 'forty thousand seven hundred twenty-three'),\n(537, 99214, 'ninety-nine thousand two hundred fourteen'),\n(538, 3380, 'three thousand three hundred eighty'),\n(539, 71751, 'seventy-one thousand seven hundred fifty-one'),\n(540, 71340, 'seventy-one thousand three hundred forty'),\n(541, 96992, 'ninety-six thousand nine hundred ninety-two'),\n(542, 89052, 'eighty-nine thousand fifty-two'),\n(543, 60936, 'sixty thousand nine hundred thirty-six'),\n(544, 75893, 'seventy-five thousand eight hundred ninety-three'),\n(545, 48708, 'forty-eight thousand seven hundred eight'),\n(546, 14104, 'fourteen thousand one hundred four'),\n(547, 45315, 'forty-five thousand three hundred fifteen'),\n(548, 95566, 'ninety-five thousand five hundred sixty-six'),\n(549, 35437, 'thirty-five thousand four hundred thirty-seven'),\n(550, 25022, 'twenty-five thousand twenty-two'),\n(551, 79698, 'seventy-nine thousand six hundred ninety-eight'),\n(552, 35072, 'thirty-five thousand seventy-two'),\n(553, 45001, 'forty-five thousand one'),\n(554, 34803, 'thirty-four thousand eight hundred three'),\n(555, 26429, 'twenty-six thousand four hundred twenty-nine'),\n(556, 59919, 'fifty-nine thousand nine hundred nineteen'),\n(557, 74425, 'seventy-four thousand four hundred twenty-five'),\n(558, 71306, 'seventy-one thousand three hundred six'),\n(559, 70169, 'seventy thousand one hundred sixty-nine'),\n(560, 45716, 'forty-five thousand seven hundred sixteen'),\n(561, 47751, 'forty-seven thousand seven hundred fifty-one'),\n(562, 69698, 'sixty-nine thousand six hundred ninety-eight'),\n(563, 40521, 'forty thousand five hundred twenty-one'),\n(564, 73632, 'seventy-three thousand six hundred thirty-two'),\n(565, 31778, 'thirty-one thousand seven hundred seventy-eight'),\n(566, 78531, 'seventy-eight thousand five hundred thirty-one'),\n(567, 44561, 'forty-four thousand five hundred sixty-one'),\n(568, 60621, 'sixty thousand six hundred twenty-one'),\n(569, 34958, 'thirty-four thousand nine hundred fifty-eight'),\n(570, 12259, 'twelve thousand two hundred fifty-nine'),\n(571, 65727, 'sixty-five thousand seven hundred twenty-seven'),\n(572, 95688, 'ninety-five thousand six hundred eighty-eight'),\n(573, 81733, 'eighty-one thousand seven hundred thirty-three'),\n(574, 74957, 'seventy-four thousand nine hundred fifty-seven'),\n(575, 72542, 'seventy-two thousand five hundred forty-two'),\n(576, 89103, 'eighty-nine thousand one hundred three'),\n(577, 86180, 'eighty-six thousand one hundred eighty'),\n(578, 37290, 'thirty-seven thousand two hundred ninety'),\n(579, 21170, 'twenty-one thousand one hundred seventy'),\n(580, 82597, 'eighty-two thousand five hundred ninety-seven'),\n(581, 84482, 'eighty-four thousand four hundred eighty-two'),\n(582, 37952, 'thirty-seven thousand nine hundred fifty-two'),\n(583, 86729, 'eighty-six thousand seven hundred twenty-nine'),\n(584, 94676, 'ninety-four thousand six hundred seventy-six'),\n(585, 73021, 'seventy-three thousand twenty-one'),\n(586, 48024, 'forty-eight thousand twenty-four'),\n(587, 13143, 'thirteen thousand one hundred forty-three'),\n(588, 38531, 'thirty-eight thousand five hundred thirty-one'),\n(589, 2489, 'two thousand four hundred eighty-nine'),\n(590, 73416, 'seventy-three thousand four hundred sixteen'),\n(591, 73717, 'seventy-three thousand seven hundred seventeen'),\n(592, 34965, 'thirty-four thousand nine hundred sixty-five'),\n(593, 62107, 'sixty-two thousand one hundred seven'),\n(594, 56695, 'fifty-six thousand six hundred ninety-five'),\n(595, 9354, 'nine thousand three hundred fifty-four'),\n(596, 85230, 'eighty-five thousand two hundred thirty'),\n(597, 74110, 'seventy-four thousand one hundred ten'),\n(598, 11003, 'eleven thousand three'),\n(599, 78616, 'seventy-eight thousand six hundred sixteen'),\n(600, 94802, 'ninety-four thousand eight hundred two'),\n(601, 82730, 'eighty-two thousand seven hundred thirty'),\n(602, 8566, 'eight thousand five hundred sixty-six'),\n(603, 99148, 'ninety-nine thousand one hundred forty-eight'),\n(604, 3426, 'three thousand four hundred twenty-six'),\n(605, 18875, 'eighteen thousand eight hundred seventy-five'),\n(606, 60437, 'sixty thousand four hundred thirty-seven'),\n(607, 54616, 'fifty-four thousand six hundred sixteen'),\n(608, 9202, 'nine thousand two hundred two'),\n(609, 59573, 'fifty-nine thousand five hundred seventy-three'),\n(610, 89791, 'eighty-nine thousand seven hundred ninety-one'),\n(611, 55268, 'fifty-five thousand two hundred sixty-eight'),\n(612, 98308, 'ninety-eight thousand three hundred eight'),\n(613, 17680, 'seventeen thousand six hundred eighty'),\n(614, 55025, 'fifty-five thousand twenty-five'),\n(615, 77294, 'seventy-seven thousand two hundred ninety-four'),\n(616, 81062, 'eighty-one thousand sixty-two'),\n(617, 13052, 'thirteen thousand fifty-two'),\n(618, 91235, 'ninety-one thousand two hundred thirty-five'),\n(619, 66678, 'sixty-six thousand six hundred seventy-eight'),\n(620, 56918, 'fifty-six thousand nine hundred eighteen'),\n(621, 60166, 'sixty thousand one hundred sixty-six'),\n(622, 75728, 'seventy-five thousand seven hundred twenty-eight'),\n(623, 51475, 'fifty-one thousand four hundred seventy-five'),\n(624, 18607, 'eighteen thousand six hundred seven'),\n(625, 70530, 'seventy thousand five hundred thirty'),\n(626, 99088, 'ninety-nine thousand eighty-eight'),\n(627, 27360, 'twenty-seven thousand three hundred sixty'),\n(628, 14766, 'fourteen thousand seven hundred sixty-six'),\n(629, 38102, 'thirty-eight thousand one hundred two'),\n(630, 6368, 'six thousand three hundred sixty-eight'),\n(631, 44679, 'forty-four thousand six hundred seventy-nine'),\n(632, 83040, 'eighty-three thousand forty'),\n(633, 51321, 'fifty-one thousand three hundred twenty-one'),\n(634, 98071, 'ninety-eight thousand seventy-one'),\n(635, 90424, 'ninety thousand four hundred twenty-four'),\n(636, 70779, 'seventy thousand seven hundred seventy-nine'),\n(637, 30261, 'thirty thousand two hundred sixty-one'),\n(638, 96814, 'ninety-six thousand eight hundred fourteen'),\n(639, 64637, 'sixty-four thousand six hundred thirty-seven'),\n(640, 21467, 'twenty-one thousand four hundred sixty-seven'),\n(641, 49675, 'forty-nine thousand six hundred seventy-five'),\n(642, 49154, 'forty-nine thousand one hundred fifty-four'),\n(643, 31544, 'thirty-one thousand five hundred forty-four'),\n(644, 71290, 'seventy-one thousand two hundred ninety'),\n(645, 8215, 'eight thousand two hundred fifteen'),\n(646, 15898, 'fifteen thousand eight hundred ninety-eight'),\n(647, 42066, 'forty-two thousand sixty-six'),\n(648, 35652, 'thirty-five thousand six hundred fifty-two'),\n(649, 31326, 'thirty-one thousand three hundred twenty-six'),\n(650, 63793, 'sixty-three thousand seven hundred ninety-three'),\n(651, 67657, 'sixty-seven thousand six hundred fifty-seven'),\n(652, 39223, 'thirty-nine thousand two hundred twenty-three'),\n(653, 13251, 'thirteen thousand two hundred fifty-one'),\n(654, 21579, 'twenty-one thousand five hundred seventy-nine'),\n(655, 83396, 'eighty-three thousand three hundred ninety-six'),\n(656, 99715, 'ninety-nine thousand seven hundred fifteen'),\n(657, 16217, 'sixteen thousand two hundred seventeen'),\n(658, 66339, 'sixty-six thousand three hundred thirty-nine'),\n(659, 57575, 'fifty-seven thousand five hundred seventy-five'),\n(660, 70206, 'seventy thousand two hundred six'),\n(661, 87963, 'eighty-seven thousand nine hundred sixty-three'),\n(662, 17579, 'seventeen thousand five hundred seventy-nine'),\n(663, 87565, 'eighty-seven thousand five hundred sixty-five'),\n(664, 86056, 'eighty-six thousand fifty-six'),\n(665, 2494, 'two thousand four hundred ninety-four'),\n(666, 91906, 'ninety-one thousand nine hundred six'),\n(667, 89821, 'eighty-nine thousand eight hundred twenty-one'),\n(668, 30479, 'thirty thousand four hundred seventy-nine'),\n(669, 73187, 'seventy-three thousand one hundred eighty-seven'),\n(670, 16142, 'sixteen thousand one hundred forty-two'),\n(671, 81278, 'eighty-one thousand two hundred seventy-eight'),\n(672, 74626, 'seventy-four thousand six hundred twenty-six'),\n(673, 11136, 'eleven thousand one hundred thirty-six'),\n(674, 77760, 'seventy-seven thousand seven hundred sixty'),\n(675, 40761, 'forty thousand seven hundred sixty-one'),\n(676, 77786, 'seventy-seven thousand seven hundred eighty-six'),\n(677, 78878, 'seventy-eight thousand eight hundred seventy-eight'),\n(678, 82966, 'eighty-two thousand nine hundred sixty-six'),\n(679, 38243, 'thirty-eight thousand two hundred forty-three'),\n(680, 18097, 'eighteen thousand ninety-seven'),\n(681, 61339, 'sixty-one thousand three hundred thirty-nine'),\n(682, 27517, 'twenty-seven thousand five hundred seventeen'),\n(683, 40926, 'forty thousand nine hundred twenty-six'),\n(684, 90996, 'ninety thousand nine hundred ninety-six'),\n(685, 51691, 'fifty-one thousand six hundred ninety-one'),\n(686, 2081, 'two thousand eighty-one'),\n(687, 95518, 'ninety-five thousand five hundred eighteen'),\n(688, 84035, 'eighty-four thousand thirty-five'),\n(689, 61083, 'sixty-one thousand eighty-three'),\n(690, 66953, 'sixty-six thousand nine hundred fifty-three'),\n(691, 48888, 'forty-eight thousand eight hundred eighty-eight'),\n(692, 3728, 'three thousand seven hundred twenty-eight'),\n(693, 88539, 'eighty-eight thousand five hundred thirty-nine'),\n(694, 24939, 'twenty-four thousand nine hundred thirty-nine'),\n(695, 12290, 'twelve thousand two hundred ninety'),\n(696, 99242, 'ninety-nine thousand two hundred forty-two'),\n(697, 32165, 'thirty-two thousand one hundred sixty-five'),\n(698, 47862, 'forty-seven thousand eight hundred sixty-two'),\n(699, 64618, 'sixty-four thousand six hundred eighteen'),\n(700, 2534, 'two thousand five hundred thirty-four'),\n(701, 43705, 'forty-three thousand seven hundred five'),\n(702, 86086, 'eighty-six thousand eighty-six'),\n(703, 78321, 'seventy-eight thousand three hundred twenty-one'),\n(704, 30355, 'thirty thousand three hundred fifty-five'),\n(705, 78108, 'seventy-eight thousand one hundred eight'),\n(706, 32327, 'thirty-two thousand three hundred twenty-seven'),\n(707, 66279, 'sixty-six thousand two hundred seventy-nine'),\n(708, 99518, 'ninety-nine thousand five hundred eighteen'),\n(709, 70079, 'seventy thousand seventy-nine'),\n(710, 36441, 'thirty-six thousand four hundred forty-one'),\n(711, 2341, 'two thousand three hundred forty-one'),\n(712, 29186, 'twenty-nine thousand one hundred eighty-six'),\n(713, 43661, 'forty-three thousand six hundred sixty-one'),\n(714, 87058, 'eighty-seven thousand fifty-eight'),\n(715, 99743, 'ninety-nine thousand seven hundred forty-three'),\n(716, 89460, 'eighty-nine thousand four hundred sixty'),\n(717, 6777, 'six thousand seven hundred seventy-seven'),\n(718, 12820, 'twelve thousand eight hundred twenty'),\n(719, 1827, 'one thousand eight hundred twenty-seven'),\n(720, 5091, 'five thousand ninety-one'),\n(721, 78763, 'seventy-eight thousand seven hundred sixty-three'),\n(722, 56599, 'fifty-six thousand five hundred ninety-nine'),\n(723, 80592, 'eighty thousand five hundred ninety-two'),\n(724, 30909, 'thirty thousand nine hundred nine'),\n(725, 19797, 'nineteen thousand seven hundred ninety-seven'),\n(726, 62768, 'sixty-two thousand seven hundred sixty-eight'),\n(727, 94376, 'ninety-four thousand three hundred seventy-six'),\n(728, 83601, 'eighty-three thousand six hundred one'),\n(729, 42990, 'forty-two thousand nine hundred ninety'),\n(730, 7502, 'seven thousand five hundred two'),\n(731, 53674, 'fifty-three thousand six hundred seventy-four'),\n(732, 23843, 'twenty-three thousand eight hundred forty-three'),\n(733, 4838, 'four thousand eight hundred thirty-eight'),\n(734, 4619, 'four thousand six hundred nineteen'),\n(735, 59210, 'fifty-nine thousand two hundred ten'),\n(736, 66035, 'sixty-six thousand thirty-five'),\n(737, 45307, 'forty-five thousand three hundred seven'),\n(738, 3816, 'three thousand eight hundred sixteen'),\n(739, 57908, 'fifty-seven thousand nine hundred eight'),\n(740, 63148, 'sixty-three thousand one hundred forty-eight'),\n(741, 62717, 'sixty-two thousand seven hundred seventeen'),\n(742, 71595, 'seventy-one thousand five hundred ninety-five'),\n(743, 44054, 'forty-four thousand fifty-four'),\n(744, 69909, 'sixty-nine thousand nine hundred nine'),\n(745, 91551, 'ninety-one thousand five hundred fifty-one'),\n(746, 98216, 'ninety-eight thousand two hundred sixteen'),\n(747, 48437, 'forty-eight thousand four hundred thirty-seven'),\n(748, 15086, 'fifteen thousand eighty-six'),\n(749, 63624, 'sixty-three thousand six hundred twenty-four'),\n(750, 57772, 'fifty-seven thousand seven hundred seventy-two'),\n(751, 44176, 'forty-four thousand one hundred seventy-six'),\n(752, 45849, 'forty-five thousand eight hundred forty-nine'),\n(753, 99996, 'ninety-nine thousand nine hundred ninety-six'),\n(754, 95877, 'ninety-five thousand eight hundred seventy-seven'),\n(755, 2437, 'two thousand four hundred thirty-seven'),\n(756, 20052, 'twenty thousand fifty-two'),\n(757, 71853, 'seventy-one thousand eight hundred fifty-three'),\n(758, 29391, 'twenty-nine thousand three hundred ninety-one'),\n(759, 44050, 'forty-four thousand fifty'),\n(760, 99141, 'ninety-nine thousand one hundred forty-one'),\n(761, 23689, 'twenty-three thousand six hundred eighty-nine'),\n(762, 11569, 'eleven thousand five hundred sixty-nine'),\n(763, 24481, 'twenty-four thousand four hundred eighty-one'),\n(764, 78451, 'seventy-eight thousand four hundred fifty-one'),\n(765, 76265, 'seventy-six thousand two hundred sixty-five'),\n(766, 88798, 'eighty-eight thousand seven hundred ninety-eight'),\n(767, 88853, 'eighty-eight thousand eight hundred fifty-three'),\n(768, 38634, 'thirty-eight thousand six hundred thirty-four'),\n(769, 68397, 'sixty-eight thousand three hundred ninety-seven'),\n(770, 68598, 'sixty-eight thousand five hundred ninety-eight'),\n(771, 83836, 'eighty-three thousand eight hundred thirty-six'),\n(772, 40637, 'forty thousand six hundred thirty-seven'),\n(773, 19114, 'nineteen thousand one hundred fourteen'),\n(774, 37463, 'thirty-seven thousand four hundred sixty-three'),\n(775, 97655, 'ninety-seven thousand six hundred fifty-five'),\n(776, 95507, 'ninety-five thousand five hundred seven'),\n(777, 11003, 'eleven thousand three'),\n(778, 69608, 'sixty-nine thousand six hundred eight'),\n(779, 51461, 'fifty-one thousand four hundred sixty-one'),\n(780, 20959, 'twenty thousand nine hundred fifty-nine'),\n(781, 76235, 'seventy-six thousand two hundred thirty-five'),\n(782, 95620, 'ninety-five thousand six hundred twenty'),\n(783, 29170, 'twenty-nine thousand one hundred seventy'),\n(784, 22082, 'twenty-two thousand eighty-two'),\n(785, 68667, 'sixty-eight thousand six hundred sixty-seven'),\n(786, 33338, 'thirty-three thousand three hundred thirty-eight'),\n(787, 90234, 'ninety thousand two hundred thirty-four'),\n(788, 65669, 'sixty-five thousand six hundred sixty-nine'),\n(789, 38078, 'thirty-eight thousand seventy-eight'),\n(790, 87264, 'eighty-seven thousand two hundred sixty-four'),\n(791, 97614, 'ninety-seven thousand six hundred fourteen'),\n(792, 59817, 'fifty-nine thousand eight hundred seventeen'),\n(793, 5196, 'five thousand one hundred ninety-six'),\n(794, 42525, 'forty-two thousand five hundred twenty-five'),\n(795, 75267, 'seventy-five thousand two hundred sixty-seven'),\n(796, 59459, 'fifty-nine thousand four hundred fifty-nine'),\n(797, 17927, 'seventeen thousand nine hundred twenty-seven'),\n(798, 23710, 'twenty-three thousand seven hundred ten'),\n(799, 23131, 'twenty-three thousand one hundred thirty-one'),\n(800, 98268, 'ninety-eight thousand two hundred sixty-eight'),\n(801, 52084, 'fifty-two thousand eighty-four'),\n(802, 6664, 'six thousand six hundred sixty-four'),\n(803, 18164, 'eighteen thousand one hundred sixty-four'),\n(804, 15805, 'fifteen thousand eight hundred five'),\n(805, 60170, 'sixty thousand one hundred seventy'),\n(806, 38797, 'thirty-eight thousand seven hundred ninety-seven'),\n(807, 6962, 'six thousand nine hundred sixty-two'),\n(808, 54909, 'fifty-four thousand nine hundred nine'),\n(809, 81064, 'eighty-one thousand sixty-four'),\n(810, 75341, 'seventy-five thousand three hundred forty-one'),\n(811, 3138, 'three thousand one hundred thirty-eight'),\n(812, 37465, 'thirty-seven thousand four hundred sixty-five'),\n(813, 20556, 'twenty thousand five hundred fifty-six'),\n(814, 9894, 'nine thousand eight hundred ninety-four'),\n(815, 45227, 'forty-five thousand two hundred twenty-seven'),\n(816, 47065, 'forty-seven thousand sixty-five'),\n(817, 48475, 'forty-eight thousand four hundred seventy-five'),\n(818, 87766, 'eighty-seven thousand seven hundred sixty-six'),\n(819, 32488, 'thirty-two thousand four hundred eighty-eight'),\n(820, 80760, 'eighty thousand seven hundred sixty'),\n(821, 72788, 'seventy-two thousand seven hundred eighty-eight'),\n(822, 27462, 'twenty-seven thousand four hundred sixty-two'),\n(823, 95835, 'ninety-five thousand eight hundred thirty-five'),\n(824, 52238, 'fifty-two thousand two hundred thirty-eight'),\n(825, 83682, 'eighty-three thousand six hundred eighty-two'),\n(826, 71799, 'seventy-one thousand seven hundred ninety-nine'),\n(827, 2127, 'two thousand one hundred twenty-seven'),\n(828, 75416, 'seventy-five thousand four hundred sixteen'),\n(829, 76242, 'seventy-six thousand two hundred forty-two'),\n(830, 76930, 'seventy-six thousand nine hundred thirty'),\n(831, 46819, 'forty-six thousand eight hundred nineteen'),\n(832, 59100, 'fifty-nine thousand one hundred'),\n(833, 8369, 'eight thousand three hundred sixty-nine'),\n(834, 97501, 'ninety-seven thousand five hundred one'),\n(835, 47736, 'forty-seven thousand seven hundred thirty-six'),\n(836, 15478, 'fifteen thousand four hundred seventy-eight'),\n(837, 14813, 'fourteen thousand eight hundred thirteen'),\n(838, 94605, 'ninety-four thousand six hundred five'),\n(839, 13218, 'thirteen thousand two hundred eighteen'),\n(840, 41949, 'forty-one thousand nine hundred forty-nine'),\n(841, 21369, 'twenty-one thousand three hundred sixty-nine'),\n(842, 78744, 'seventy-eight thousand seven hundred forty-four'),\n(843, 8213, 'eight thousand two hundred thirteen'),\n(844, 8523, 'eight thousand five hundred twenty-three'),\n(845, 68301, 'sixty-eight thousand three hundred one'),\n(846, 9328, 'nine thousand three hundred twenty-eight'),\n(847, 25488, 'twenty-five thousand four hundred eighty-eight'),\n(848, 2392, 'two thousand three hundred ninety-two'),\n(849, 10572, 'ten thousand five hundred seventy-two'),\n(850, 93297, 'ninety-three thousand two hundred ninety-seven'),\n(851, 31561, 'thirty-one thousand five hundred sixty-one'),\n(852, 48403, 'forty-eight thousand four hundred three'),\n(853, 43405, 'forty-three thousand four hundred five'),\n(854, 52536, 'fifty-two thousand five hundred thirty-six'),\n(855, 99828, 'ninety-nine thousand eight hundred twenty-eight'),\n(856, 43458, 'forty-three thousand four hundred fifty-eight'),\n(857, 10517, 'ten thousand five hundred seventeen'),\n(858, 38607, 'thirty-eight thousand six hundred seven'),\n(859, 81719, 'eighty-one thousand seven hundred nineteen'),\n(860, 95780, 'ninety-five thousand seven hundred eighty'),\n(861, 1119, 'one thousand one hundred nineteen'),\n(862, 42558, 'forty-two thousand five hundred fifty-eight'),\n(863, 43669, 'forty-three thousand six hundred sixty-nine'),\n(864, 89209, 'eighty-nine thousand two hundred nine'),\n(865, 33358, 'thirty-three thousand three hundred fifty-eight'),\n(866, 59069, 'fifty-nine thousand sixty-nine'),\n(867, 13210, 'thirteen thousand two hundred ten'),\n(868, 72938, 'seventy-two thousand nine hundred thirty-eight'),\n(869, 99845, 'ninety-nine thousand eight hundred forty-five'),\n(870, 92956, 'ninety-two thousand nine hundred fifty-six'),\n(871, 54213, 'fifty-four thousand two hundred thirteen'),\n(872, 9395, 'nine thousand three hundred ninety-five'),\n(873, 80128, 'eighty thousand one hundred twenty-eight'),\n(874, 57995, 'fifty-seven thousand nine hundred ninety-five'),\n(875, 6483, 'six thousand four hundred eighty-three'),\n(876, 3506, 'three thousand five hundred six'),\n(877, 1641, 'one thousand six hundred forty-one'),\n(878, 13790, 'thirteen thousand seven hundred ninety'),\n(879, 18154, 'eighteen thousand one hundred fifty-four'),\n(880, 24625, 'twenty-four thousand six hundred twenty-five'),\n(881, 5708, 'five thousand seven hundred eight'),\n(882, 1038, 'one thousand thirty-eight'),\n(883, 33150, 'thirty-three thousand one hundred fifty'),\n(884, 43327, 'forty-three thousand three hundred twenty-seven'),\n(885, 53736, 'fifty-three thousand seven hundred thirty-six'),\n(886, 24084, 'twenty-four thousand eighty-four'),\n(887, 23309, 'twenty-three thousand three hundred nine'),\n(888, 85039, 'eighty-five thousand thirty-nine'),\n(889, 18294, 'eighteen thousand two hundred ninety-four'),\n(890, 79266, 'seventy-nine thousand two hundred sixty-six'),\n(891, 14951, 'fourteen thousand nine hundred fifty-one'),\n(892, 99565, 'ninety-nine thousand five hundred sixty-five'),\n(893, 45968, 'forty-five thousand nine hundred sixty-eight'),\n(894, 65624, 'sixty-five thousand six hundred twenty-four'),\n(895, 89551, 'eighty-nine thousand five hundred fifty-one'),\n(896, 25780, 'twenty-five thousand seven hundred eighty'),\n(897, 39132, 'thirty-nine thousand one hundred thirty-two'),\n(898, 82475, 'eighty-two thousand four hundred seventy-five'),\n(899, 44023, 'forty-four thousand twenty-three'),\n(900, 79229, 'seventy-nine thousand two hundred twenty-nine'),\n(901, 36320, 'thirty-six thousand three hundred twenty'),\n(902, 99536, 'ninety-nine thousand five hundred thirty-six'),\n(903, 92326, 'ninety-two thousand three hundred twenty-six'),\n(904, 53945, 'fifty-three thousand nine hundred forty-five'),\n(905, 84917, 'eighty-four thousand nine hundred seventeen'),\n(906, 53411, 'fifty-three thousand four hundred eleven'),\n(907, 67719, 'sixty-seven thousand seven hundred nineteen'),\n(908, 72065, 'seventy-two thousand sixty-five'),\n(909, 6847, 'six thousand eight hundred forty-seven'),\n(910, 48807, 'forty-eight thousand eight hundred seven'),\n(911, 478, 'four hundred seventy-eight'),\n(912, 90285, 'ninety thousand two hundred eighty-five'),\n(913, 60170, 'sixty thousand one hundred seventy'),\n(914, 64492, 'sixty-four thousand four hundred ninety-two'),\n(915, 21371, 'twenty-one thousand three hundred seventy-one'),\n(916, 77422, 'seventy-seven thousand four hundred twenty-two'),\n(917, 62537, 'sixty-two thousand five hundred thirty-seven'),\n(918, 82323, 'eighty-two thousand three hundred twenty-three'),\n(919, 79842, 'seventy-nine thousand eight hundred forty-two'),\n(920, 84346, 'eighty-four thousand three hundred forty-six'),\n(921, 43102, 'forty-three thousand one hundred two'),\n(922, 88617, 'eighty-eight thousand six hundred seventeen'),\n(923, 53762, 'fifty-three thousand seven hundred sixty-two'),\n(924, 46121, 'forty-six thousand one hundred twenty-one'),\n(925, 41029, 'forty-one thousand twenty-nine'),\n(926, 39186, 'thirty-nine thousand one hundred eighty-six'),\n(927, 50573, 'fifty thousand five hundred seventy-three'),\n(928, 13263, 'thirteen thousand two hundred sixty-three'),\n(929, 2703, 'two thousand seven hundred three'),\n(930, 34926, 'thirty-four thousand nine hundred twenty-six'),\n(931, 46293, 'forty-six thousand two hundred ninety-three'),\n(932, 64806, 'sixty-four thousand eight hundred six'),\n(933, 97369, 'ninety-seven thousand three hundred sixty-nine'),\n(934, 61719, 'sixty-one thousand seven hundred nineteen'),\n(935, 6760, 'six thousand seven hundred sixty'),\n(936, 77065, 'seventy-seven thousand sixty-five'),\n(937, 32514, 'thirty-two thousand five hundred fourteen'),\n(938, 33417, 'thirty-three thousand four hundred seventeen'),\n(939, 59607, 'fifty-nine thousand six hundred seven'),\n(940, 26987, 'twenty-six thousand nine hundred eighty-seven'),\n(941, 78753, 'seventy-eight thousand seven hundred fifty-three'),\n(942, 15316, 'fifteen thousand three hundred sixteen'),\n(943, 27249, 'twenty-seven thousand two hundred forty-nine'),\n(944, 33011, 'thirty-three thousand eleven'),\n(945, 30349, 'thirty thousand three hundred forty-nine'),\n(946, 16474, 'sixteen thousand four hundred seventy-four'),\n(947, 91550, 'ninety-one thousand five hundred fifty'),\n(948, 7229, 'seven thousand two hundred twenty-nine'),\n(949, 55591, 'fifty-five thousand five hundred ninety-one'),\n(950, 6494, 'six thousand four hundred ninety-four'),\n(951, 61726, 'sixty-one thousand seven hundred twenty-six'),\n(952, 43401, 'forty-three thousand four hundred one'),\n(953, 35417, 'thirty-five thousand four hundred seventeen'),\n(954, 81064, 'eighty-one thousand sixty-four'),\n(955, 98029, 'ninety-eight thousand twenty-nine'),\n(956, 99459, 'ninety-nine thousand four hundred fifty-nine'),\n(957, 47659, 'forty-seven thousand six hundred fifty-nine'),\n(958, 90562, 'ninety thousand five hundred sixty-two'),\n(959, 98996, 'ninety-eight thousand nine hundred ninety-six'),\n(960, 36814, 'thirty-six thousand eight hundred fourteen'),\n(961, 41743, 'forty-one thousand seven hundred forty-three'),\n(962, 49352, 'forty-nine thousand three hundred fifty-two'),\n(963, 2867, 'two thousand eight hundred sixty-seven'),\n(964, 77404, 'seventy-seven thousand four hundred four'),\n(965, 52039, 'fifty-two thousand thirty-nine'),\n(966, 50787, 'fifty thousand seven hundred eighty-seven'),\n(967, 72745, 'seventy-two thousand seven hundred forty-five'),\n(968, 38373, 'thirty-eight thousand three hundred seventy-three'),\n(969, 9880, 'nine thousand eight hundred eighty'),\n(970, 23368, 'twenty-three thousand three hundred sixty-eight'),\n(971, 21878, 'twenty-one thousand eight hundred seventy-eight'),\n(972, 24879, 'twenty-four thousand eight hundred seventy-nine'),\n(973, 85139, 'eighty-five thousand one hundred thirty-nine'),\n(974, 92663, 'ninety-two thousand six hundred sixty-three'),\n(975, 80314, 'eighty thousand three hundred fourteen'),\n(976, 68791, 'sixty-eight thousand seven hundred ninety-one'),\n(977, 86587, 'eighty-six thousand five hundred eighty-seven'),\n(978, 84276, 'eighty-four thousand two hundred seventy-six'),\n(979, 2611, 'two thousand six hundred eleven'),\n(980, 51394, 'fifty-one thousand three hundred ninety-four'),\n(981, 41718, 'forty-one thousand seven hundred eighteen'),\n(982, 74790, 'seventy-four thousand seven hundred ninety'),\n(983, 3722, 'three thousand seven hundred twenty-two'),\n(984, 51099, 'fifty-one thousand ninety-nine'),\n(985, 43465, 'forty-three thousand four hundred sixty-five'),\n(986, 80609, 'eighty thousand six hundred nine'),\n(987, 10740, 'ten thousand seven hundred forty'),\n(988, 46965, 'forty-six thousand nine hundred sixty-five'),\n(989, 69448, 'sixty-nine thousand four hundred forty-eight'),\n(990, 7629, 'seven thousand six hundred twenty-nine'),\n(991, 32001, 'thirty-two thousand one'),\n(992, 97403, 'ninety-seven thousand four hundred three'),\n(993, 38424, 'thirty-eight thousand four hundred twenty-four'),\n(994, 91197, 'ninety-one thousand one hundred ninety-seven'),\n(995, 18954, 'eighteen thousand nine hundred fifty-four'),\n(996, 63716, 'sixty-three thousand seven hundred sixteen'),\n(997, 47127, 'forty-seven thousand one hundred twenty-seven'),\n(998, 35979, 'thirty-five thousand nine hundred seventy-nine'),\n(999, 73385, 'seventy-three thousand three hundred eighty-five'),\n(1000, 22356, 'twenty-two thousand three hundred fifty-six'),\n(1001, 55538, 'fifty-five thousand five hundred thirty-eight'),\n(1002, 81376, 'eighty-one thousand three hundred seventy-six'),\n(1003, 86313, 'eighty-six thousand three hundred thirteen'),\n(1004, 49542, 'forty-nine thousand five hundred forty-two'),\n(1005, 74987, 'seventy-four thousand nine hundred eighty-seven'),\n(1006, 80722, 'eighty thousand seven hundred twenty-two'),\n(1007, 62298, 'sixty-two thousand two hundred ninety-eight'),\n(1008, 93119, 'ninety-three thousand one hundred nineteen'),\n(1009, 37378, 'thirty-seven thousand three hundred seventy-eight'),\n(1010, 80392, 'eighty thousand three hundred ninety-two'),\n(1011, 47524, 'forty-seven thousand five hundred twenty-four'),\n(1012, 68714, 'sixty-eight thousand seven hundred fourteen'),\n(1013, 95384, 'ninety-five thousand three hundred eighty-four'),\n(1014, 79821, 'seventy-nine thousand eight hundred twenty-one'),\n(1015, 65915, 'sixty-five thousand nine hundred fifteen'),\n(1016, 89567, 'eighty-nine thousand five hundred sixty-seven'),\n(1017, 6173, 'six thousand one hundred seventy-three'),\n(1018, 78190, 'seventy-eight thousand one hundred ninety'),\n(1019, 49620, 'forty-nine thousand six hundred twenty'),\n(1020, 314, 'three hundred fourteen'),\n(1021, 77071, 'seventy-seven thousand seventy-one'),\n(1022, 34897, 'thirty-four thousand eight hundred ninety-seven'),\n(1023, 50194, 'fifty thousand one hundred ninety-four'),\n(1024, 3962, 'three thousand nine hundred sixty-two'),\n(1025, 12995, 'twelve thousand nine hundred ninety-five'),\n(1026, 16574, 'sixteen thousand five hundred seventy-four'),\n(1027, 13011, 'thirteen thousand eleven'),\n(1028, 26129, 'twenty-six thousand one hundred twenty-nine'),\n(1029, 25946, 'twenty-five thousand nine hundred forty-six'),\n(1030, 48646, 'forty-eight thousand six hundred forty-six'),\n(1031, 12877, 'twelve thousand eight hundred seventy-seven'),\n(1032, 54792, 'fifty-four thousand seven hundred ninety-two'),\n(1033, 16323, 'sixteen thousand three hundred twenty-three'),\n(1034, 96597, 'ninety-six thousand five hundred ninety-seven'),\n(1035, 12817, 'twelve thousand eight hundred seventeen'),\n(1036, 17757, 'seventeen thousand seven hundred fifty-seven'),\n(1037, 20670, 'twenty thousand six hundred seventy'),\n(1038, 43032, 'forty-three thousand thirty-two'),\n(1039, 20753, 'twenty thousand seven hundred fifty-three'),\n(1040, 34704, 'thirty-four thousand seven hundred four'),\n(1041, 59068, 'fifty-nine thousand sixty-eight'),\n(1042, 92839, 'ninety-two thousand eight hundred thirty-nine'),\n(1043, 63337, 'sixty-three thousand three hundred thirty-seven'),\n(1044, 13702, 'thirteen thousand seven hundred two'),\n(1045, 8161, 'eight thousand one hundred sixty-one'),\n(1046, 36141, 'thirty-six thousand one hundred forty-one'),\n(1047, 74493, 'seventy-four thousand four hundred ninety-three'),\n(1048, 93265, 'ninety-three thousand two hundred sixty-five'),\n(1049, 40870, 'forty thousand eight hundred seventy'),\n(1050, 90720, 'ninety thousand seven hundred twenty'),\n(1051, 37822, 'thirty-seven thousand eight hundred twenty-two'),\n(1052, 37372, 'thirty-seven thousand three hundred seventy-two'),\n(1053, 83340, 'eighty-three thousand three hundred forty'),\n(1054, 65993, 'sixty-five thousand nine hundred ninety-three'),\n(1055, 63063, 'sixty-three thousand sixty-three'),\n(1056, 96964, 'ninety-six thousand nine hundred sixty-four'),\n(1057, 12363, 'twelve thousand three hundred sixty-three'),\n(1058, 76130, 'seventy-six thousand one hundred thirty'),\n(1059, 74871, 'seventy-four thousand eight hundred seventy-one'),\n(1060, 72127, 'seventy-two thousand one hundred twenty-seven'),\n(1061, 58419, 'fifty-eight thousand four hundred nineteen'),\n(1062, 55160, 'fifty-five thousand one hundred sixty'),\n(1063, 12066, 'twelve thousand sixty-six'),\n(1064, 60646, 'sixty thousand six hundred forty-six'),\n(1065, 38295, 'thirty-eight thousand two hundred ninety-five'),\n(1066, 89409, 'eighty-nine thousand four hundred nine'),\n(1067, 65373, 'sixty-five thousand three hundred seventy-three'),\n(1068, 30345, 'thirty thousand three hundred forty-five'),\n(1069, 2527, 'two thousand five hundred twenty-seven'),\n(1070, 19833, 'nineteen thousand eight hundred thirty-three'),\n(1071, 22166, 'twenty-two thousand one hundred sixty-six'),\n(1072, 45403, 'forty-five thousand four hundred three'),\n(1073, 13171, 'thirteen thousand one hundred seventy-one'),\n(1074, 36873, 'thirty-six thousand eight hundred seventy-three'),\n(1075, 50278, 'fifty thousand two hundred seventy-eight'),\n(1076, 61903, 'sixty-one thousand nine hundred three'),\n(1077, 9080, 'nine thousand eighty'),\n(1078, 27901, 'twenty-seven thousand nine hundred one'),\n(1079, 49117, 'forty-nine thousand one hundred seventeen'),\n(1080, 22201, 'twenty-two thousand two hundred one'),\n(1081, 32329, 'thirty-two thousand three hundred twenty-nine'),\n(1082, 54240, 'fifty-four thousand two hundred forty'),\n(1083, 86819, 'eighty-six thousand eight hundred nineteen'),\n(1084, 46365, 'forty-six thousand three hundred sixty-five'),\n(1085, 78771, 'seventy-eight thousand seven hundred seventy-one'),\n(1086, 17448, 'seventeen thousand four hundred forty-eight'),\n(1087, 31391, 'thirty-one thousand three hundred ninety-one'),\n(1088, 29459, 'twenty-nine thousand four hundred fifty-nine'),\n(1089, 71702, 'seventy-one thousand seven hundred two'),\n(1090, 61800, 'sixty-one thousand eight hundred'),\n(1091, 63785, 'sixty-three thousand seven hundred eighty-five'),\n(1092, 77760, 'seventy-seven thousand seven hundred sixty'),\n(1093, 41542, 'forty-one thousand five hundred forty-two'),\n(1094, 90620, 'ninety thousand six hundred twenty'),\n(1095, 28478, 'twenty-eight thousand four hundred seventy-eight'),\n(1096, 91651, 'ninety-one thousand six hundred fifty-one'),\n(1097, 65602, 'sixty-five thousand six hundred two'),\n(1098, 78515, 'seventy-eight thousand five hundred fifteen'),\n(1099, 88720, 'eighty-eight thousand seven hundred twenty'),\n(1100, 28984, 'twenty-eight thousand nine hundred eighty-four'),\n(1101, 1688, 'one thousand six hundred eighty-eight'),\n(1102, 12137, 'twelve thousand one hundred thirty-seven'),\n(1103, 5562, 'five thousand five hundred sixty-two'),\n(1104, 79483, 'seventy-nine thousand four hundred eighty-three'),\n(1105, 82573, 'eighty-two thousand five hundred seventy-three'),\n(1106, 9763, 'nine thousand seven hundred sixty-three'),\n(1107, 32211, 'thirty-two thousand two hundred eleven'),\n(1108, 4207, 'four thousand two hundred seven'),\n(1109, 81396, 'eighty-one thousand three hundred ninety-six'),\n(1110, 43204, 'forty-three thousand two hundred four'),\n(1111, 44071, 'forty-four thousand seventy-one'),\n(1112, 43680, 'forty-three thousand six hundred eighty'),\n(1113, 17553, 'seventeen thousand five hundred fifty-three'),\n(1114, 8265, 'eight thousand two hundred sixty-five'),\n(1115, 77411, 'seventy-seven thousand four hundred eleven'),\n(1116, 40530, 'forty thousand five hundred thirty'),\n(1117, 38298, 'thirty-eight thousand two hundred ninety-eight'),\n(1118, 77618, 'seventy-seven thousand six hundred eighteen'),\n(1119, 78116, 'seventy-eight thousand one hundred sixteen'),\n(1120, 71376, 'seventy-one thousand three hundred seventy-six'),\n(1121, 24103, 'twenty-four thousand one hundred three'),\n(1122, 54423, 'fifty-four thousand four hundred twenty-three'),\n(1123, 68801, 'sixty-eight thousand eight hundred one'),\n(1124, 15256, 'fifteen thousand two hundred fifty-six'),\n(1125, 20268, 'twenty thousand two hundred sixty-eight'),\n(1126, 16855, 'sixteen thousand eight hundred fifty-five'),\n(1127, 70035, 'seventy thousand thirty-five'),\n(1128, 89172, 'eighty-nine thousand one hundred seventy-two'),\n(1129, 98060, 'ninety-eight thousand sixty'),\n(1130, 54557, 'fifty-four thousand five hundred fifty-seven'),\n(1131, 68504, 'sixty-eight thousand five hundred four'),\n(1132, 55531, 'fifty-five thousand five hundred thirty-one'),\n(1133, 50161, 'fifty thousand one hundred sixty-one'),\n(1134, 97767, 'ninety-seven thousand seven hundred sixty-seven'),\n(1135, 35200, 'thirty-five thousand two hundred'),\n(1136, 43320, 'forty-three thousand three hundred twenty'),\n(1137, 49341, 'forty-nine thousand three hundred forty-one'),\n(1138, 97800, 'ninety-seven thousand eight hundred'),\n(1139, 12026, 'twelve thousand twenty-six'),\n(1140, 40365, 'forty thousand three hundred sixty-five'),\n(1141, 78130, 'seventy-eight thousand one hundred thirty'),\n(1142, 71407, 'seventy-one thousand four hundred seven'),\n(1143, 88110, 'eighty-eight thousand one hundred ten'),\n(1144, 70075, 'seventy thousand seventy-five'),\n(1145, 39803, 'thirty-nine thousand eight hundred three'),\n(1146, 36025, 'thirty-six thousand twenty-five'),\n(1147, 95120, 'ninety-five thousand one hundred twenty'),\n(1148, 61068, 'sixty-one thousand sixty-eight'),\n(1149, 96036, 'ninety-six thousand thirty-six'),\n(1150, 63963, 'sixty-three thousand nine hundred sixty-three'),\n(1151, 94898, 'ninety-four thousand eight hundred ninety-eight'),\n(1152, 49063, 'forty-nine thousand sixty-three'),\n(1153, 33733, 'thirty-three thousand seven hundred thirty-three'),\n(1154, 584, 'five hundred eighty-four'),\n(1155, 6973, 'six thousand nine hundred seventy-three'),\n(1156, 70539, 'seventy thousand five hundred thirty-nine'),\n(1157, 56452, 'fifty-six thousand four hundred fifty-two'),\n(1158, 5590, 'five thousand five hundred ninety'),\n(1159, 15730, 'fifteen thousand seven hundred thirty'),\n(1160, 77308, 'seventy-seven thousand three hundred eight'),\n(1161, 86753, 'eighty-six thousand seven hundred fifty-three'),\n(1162, 38210, 'thirty-eight thousand two hundred ten'),\n(1163, 77635, 'seventy-seven thousand six hundred thirty-five'),\n(1164, 14535, 'fourteen thousand five hundred thirty-five'),\n(1165, 68957, 'sixty-eight thousand nine hundred fifty-seven'),\n(1166, 19623, 'nineteen thousand six hundred twenty-three'),\n(1167, 5643, 'five thousand six hundred forty-three'),\n(1168, 77798, 'seventy-seven thousand seven hundred ninety-eight'),\n(1169, 69501, 'sixty-nine thousand five hundred one'),\n(1170, 61192, 'sixty-one thousand one hundred ninety-two'),\n(1171, 83736, 'eighty-three thousand seven hundred thirty-six'),\n(1172, 82633, 'eighty-two thousand six hundred thirty-three'),\n(1173, 50539, 'fifty thousand five hundred thirty-nine'),\n(1174, 87416, 'eighty-seven thousand four hundred sixteen'),\n(1175, 56737, 'fifty-six thousand seven hundred thirty-seven'),\n(1176, 33997, 'thirty-three thousand nine hundred ninety-seven'),\n(1177, 37921, 'thirty-seven thousand nine hundred twenty-one'),\n(1178, 10244, 'ten thousand two hundred forty-four'),\n(1179, 9407, 'nine thousand four hundred seven'),\n(1180, 70784, 'seventy thousand seven hundred eighty-four'),\n(1181, 47705, 'forty-seven thousand seven hundred five'),\n(1182, 20852, 'twenty thousand eight hundred fifty-two'),\n(1183, 78176, 'seventy-eight thousand one hundred seventy-six'),\n(1184, 32410, 'thirty-two thousand four hundred ten'),\n(1185, 39737, 'thirty-nine thousand seven hundred thirty-seven'),\n(1186, 5142, 'five thousand one hundred forty-two'),\n(1187, 35867, 'thirty-five thousand eight hundred sixty-seven'),\n(1188, 52773, 'fifty-two thousand seven hundred seventy-three'),\n(1189, 29699, 'twenty-nine thousand six hundred ninety-nine'),\n(1190, 38185, 'thirty-eight thousand one hundred eighty-five'),\n(1191, 17648, 'seventeen thousand six hundred forty-eight'),\n(1192, 31242, 'thirty-one thousand two hundred forty-two'),\n(1193, 61161, 'sixty-one thousand one hundred sixty-one'),\n(1194, 1135, 'one thousand one hundred thirty-five'),\n(1195, 61402, 'sixty-one thousand four hundred two'),\n(1196, 44607, 'forty-four thousand six hundred seven'),\n(1197, 66253, 'sixty-six thousand two hundred fifty-three'),\n(1198, 53684, 'fifty-three thousand six hundred eighty-four'),\n(1199, 81819, 'eighty-one thousand eight hundred nineteen'),\n(1200, 56896, 'fifty-six thousand eight hundred ninety-six'),\n(1201, 24164, 'twenty-four thousand one hundred sixty-four'),\n(1202, 15088, 'fifteen thousand eighty-eight'),\n(1203, 52962, 'fifty-two thousand nine hundred sixty-two'),\n(1204, 200, 'two hundred'),\n(1205, 26958, 'twenty-six thousand nine hundred fifty-eight'),\n(1206, 91112, 'ninety-one thousand one hundred twelve'),\n(1207, 48779, 'forty-eight thousand seven hundred seventy-nine'),\n(1208, 55622, 'fifty-five thousand six hundred twenty-two'),\n(1209, 34562, 'thirty-four thousand five hundred sixty-two'),\n(1210, 88798, 'eighty-eight thousand seven hundred ninety-eight'),\n(1211, 84915, 'eighty-four thousand nine hundred fifteen'),\n(1212, 33609, 'thirty-three thousand six hundred nine'),\n(1213, 37211, 'thirty-seven thousand two hundred eleven'),\n(1214, 55843, 'fifty-five thousand eight hundred forty-three'),\n(1215, 53764, 'fifty-three thousand seven hundred sixty-four'),\n(1216, 88733, 'eighty-eight thousand seven hundred thirty-three'),\n(1217, 5799, 'five thousand seven hundred ninety-nine'),\n(1218, 92517, 'ninety-two thousand five hundred seventeen'),\n(1219, 91708, 'ninety-one thousand seven hundred eight'),\n(1220, 19304, 'nineteen thousand three hundred four'),\n(1221, 5130, 'five thousand one hundred thirty'),\n(1222, 20649, 'twenty thousand six hundred forty-nine'),\n(1223, 56010, 'fifty-six thousand ten'),\n(1224, 61798, 'sixty-one thousand seven hundred ninety-eight'),\n(1225, 65913, 'sixty-five thousand nine hundred thirteen'),\n(1226, 81863, 'eighty-one thousand eight hundred sixty-three'),\n(1227, 43903, 'forty-three thousand nine hundred three'),\n(1228, 2201, 'two thousand two hundred one'),\n(1229, 74772, 'seventy-four thousand seven hundred seventy-two'),\n(1230, 60641, 'sixty thousand six hundred forty-one'),\n(1231, 59217, 'fifty-nine thousand two hundred seventeen'),\n(1232, 47443, 'forty-seven thousand four hundred forty-three'),\n(1233, 62292, 'sixty-two thousand two hundred ninety-two'),\n(1234, 51084, 'fifty-one thousand eighty-four'),\n(1235, 34890, 'thirty-four thousand eight hundred ninety'),\n(1236, 66948, 'sixty-six thousand nine hundred forty-eight'),\n(1237, 7314, 'seven thousand three hundred fourteen'),\n(1238, 7328, 'seven thousand three hundred twenty-eight'),\n(1239, 50586, 'fifty thousand five hundred eighty-six'),\n(1240, 81060, 'eighty-one thousand sixty'),\n(1241, 11213, 'eleven thousand two hundred thirteen'),\n(1242, 80152, 'eighty thousand one hundred fifty-two'),\n(1243, 89587, 'eighty-nine thousand five hundred eighty-seven'),\n(1244, 83826, 'eighty-three thousand eight hundred twenty-six'),\n(1245, 64098, 'sixty-four thousand ninety-eight'),\n(1246, 77926, 'seventy-seven thousand nine hundred twenty-six'),\n(1247, 47897, 'forty-seven thousand eight hundred ninety-seven'),\n(1248, 98123, 'ninety-eight thousand one hundred twenty-three'),\n(1249, 33848, 'thirty-three thousand eight hundred forty-eight'),\n(1250, 35650, 'thirty-five thousand six hundred fifty'),\n(1251, 3746, 'three thousand seven hundred forty-six'),\n(1252, 23209, 'twenty-three thousand two hundred nine'),\n(1253, 92159, 'ninety-two thousand one hundred fifty-nine'),\n(1254, 16517, 'sixteen thousand five hundred seventeen'),\n(1255, 51307, 'fifty-one thousand three hundred seven'),\n(1256, 52257, 'fifty-two thousand two hundred fifty-seven'),\n(1257, 35091, 'thirty-five thousand ninety-one'),\n(1258, 75176, 'seventy-five thousand one hundred seventy-six'),\n(1259, 13954, 'thirteen thousand nine hundred fifty-four'),\n(1260, 25101, 'twenty-five thousand one hundred one'),\n(1261, 36297, 'thirty-six thousand two hundred ninety-seven'),\n(1262, 6364, 'six thousand three hundred sixty-four'),\n(1263, 2388, 'two thousand three hundred eighty-eight'),\n(1264, 30295, 'thirty thousand two hundred ninety-five'),\n(1265, 42865, 'forty-two thousand eight hundred sixty-five'),\n(1266, 9279, 'nine thousand two hundred seventy-nine'),\n(1267, 60930, 'sixty thousand nine hundred thirty'),\n(1268, 36524, 'thirty-six thousand five hundred twenty-four'),\n(1269, 24362, 'twenty-four thousand three hundred sixty-two'),\n(1270, 17401, 'seventeen thousand four hundred one'),\n(1271, 71411, 'seventy-one thousand four hundred eleven'),\n(1272, 31655, 'thirty-one thousand six hundred fifty-five'),\n(1273, 5122, 'five thousand one hundred twenty-two'),\n(1274, 52284, 'fifty-two thousand two hundred eighty-four'),\n(1275, 19329, 'nineteen thousand three hundred twenty-nine'),\n(1276, 13660, 'thirteen thousand six hundred sixty'),\n(1277, 1131, 'one thousand one hundred thirty-one'),\n(1278, 25081, 'twenty-five thousand eighty-one'),\n(1279, 55153, 'fifty-five thousand one hundred fifty-three'),\n(1280, 8973, 'eight thousand nine hundred seventy-three'),\n(1281, 58069, 'fifty-eight thousand sixty-nine'),\n(1282, 79100, 'seventy-nine thousand one hundred'),\n(1283, 48768, 'forty-eight thousand seven hundred sixty-eight'),\n(1284, 60150, 'sixty thousand one hundred fifty'),\n(1285, 66552, 'sixty-six thousand five hundred fifty-two'),\n(1286, 23579, 'twenty-three thousand five hundred seventy-nine'),\n(1287, 18058, 'eighteen thousand fifty-eight'),\n(1288, 61810, 'sixty-one thousand eight hundred ten'),\n(1289, 75622, 'seventy-five thousand six hundred twenty-two'),\n(1290, 5557, 'five thousand five hundred fifty-seven'),\n(1291, 90854, 'ninety thousand eight hundred fifty-four'),\n(1292, 87039, 'eighty-seven thousand thirty-nine'),\n(1293, 8757, 'eight thousand seven hundred fifty-seven'),\n(1294, 76493, 'seventy-six thousand four hundred ninety-three'),\n(1295, 33508, 'thirty-three thousand five hundred eight'),\n(1296, 15425, 'fifteen thousand four hundred twenty-five'),\n(1297, 10447, 'ten thousand four hundred forty-seven'),\n(1298, 93718, 'ninety-three thousand seven hundred eighteen'),\n(1299, 60922, 'sixty thousand nine hundred twenty-two'),\n(1300, 11712, 'eleven thousand seven hundred twelve'),\n(1301, 56828, 'fifty-six thousand eight hundred twenty-eight'),\n(1302, 91211, 'ninety-one thousand two hundred eleven'),\n(1303, 3637, 'three thousand six hundred thirty-seven'),\n(1304, 8958, 'eight thousand nine hundred fifty-eight'),\n(1305, 88592, 'eighty-eight thousand five hundred ninety-two'),\n(1306, 7217, 'seven thousand two hundred seventeen'),\n(1307, 58735, 'fifty-eight thousand seven hundred thirty-five'),\n(1308, 95778, 'ninety-five thousand seven hundred seventy-eight'),\n(1309, 48851, 'forty-eight thousand eight hundred fifty-one'),\n(1310, 69104, 'sixty-nine thousand one hundred four'),\n(1311, 41151, 'forty-one thousand one hundred fifty-one'),\n(1312, 92769, 'ninety-two thousand seven hundred sixty-nine'),\n(1313, 23517, 'twenty-three thousand five hundred seventeen'),\n(1314, 3893, 'three thousand eight hundred ninety-three'),\n(1315, 60575, 'sixty thousand five hundred seventy-five'),\n(1316, 7296, 'seven thousand two hundred ninety-six'),\n(1317, 70279, 'seventy thousand two hundred seventy-nine'),\n(1318, 49134, 'forty-nine thousand one hundred thirty-four'),\n(1319, 72590, 'seventy-two thousand five hundred ninety'),\n(1320, 81718, 'eighty-one thousand seven hundred eighteen'),\n(1321, 94520, 'ninety-four thousand five hundred twenty'),\n(1322, 90116, 'ninety thousand one hundred sixteen'),\n(1323, 21056, 'twenty-one thousand fifty-six'),\n(1324, 97610, 'ninety-seven thousand six hundred ten'),\n(1325, 2826, 'two thousand eight hundred twenty-six'),\n(1326, 14063, 'fourteen thousand sixty-three'),\n(1327, 6031, 'six thousand thirty-one'),\n(1328, 65228, 'sixty-five thousand two hundred twenty-eight'),\n(1329, 83287, 'eighty-three thousand two hundred eighty-seven'),\n(1330, 11688, 'eleven thousand six hundred eighty-eight'),\n(1331, 75854, 'seventy-five thousand eight hundred fifty-four'),\n(1332, 4682, 'four thousand six hundred eighty-two'),\n(1333, 26055, 'twenty-six thousand fifty-five'),\n(1334, 73188, 'seventy-three thousand one hundred eighty-eight'),\n(1335, 92308, 'ninety-two thousand three hundred eight'),\n(1336, 21226, 'twenty-one thousand two hundred twenty-six'),\n(1337, 67369, 'sixty-seven thousand three hundred sixty-nine'),\n(1338, 59051, 'fifty-nine thousand fifty-one'),\n(1339, 69586, 'sixty-nine thousand five hundred eighty-six'),\n(1340, 74749, 'seventy-four thousand seven hundred forty-nine'),\n(1341, 93121, 'ninety-three thousand one hundred twenty-one'),\n(1342, 16000, 'sixteen thousand'),\n(1343, 44870, 'forty-four thousand eight hundred seventy'),\n(1344, 5040, 'five thousand forty'),\n(1345, 33434, 'thirty-three thousand four hundred thirty-four'),\n(1346, 47321, 'forty-seven thousand three hundred twenty-one'),\n(1347, 55639, 'fifty-five thousand six hundred thirty-nine'),\n(1348, 22157, 'twenty-two thousand one hundred fifty-seven'),\n(1349, 17189, 'seventeen thousand one hundred eighty-nine'),\n(1350, 77408, 'seventy-seven thousand four hundred eight'),\n(1351, 41344, 'forty-one thousand three hundred forty-four'),\n(1352, 67958, 'sixty-seven thousand nine hundred fifty-eight'),\n(1353, 48189, 'forty-eight thousand one hundred eighty-nine'),\n(1354, 6938, 'six thousand nine hundred thirty-eight'),\n(1355, 36616, 'thirty-six thousand six hundred sixteen'),\n(1356, 23947, 'twenty-three thousand nine hundred forty-seven'),\n(1357, 16580, 'sixteen thousand five hundred eighty'),\n(1358, 33653, 'thirty-three thousand six hundred fifty-three'),\n(1359, 86494, 'eighty-six thousand four hundred ninety-four'),\n(1360, 8035, 'eight thousand thirty-five'),\n(1361, 81163, 'eighty-one thousand one hundred sixty-three'),\n(1362, 39688, 'thirty-nine thousand six hundred eighty-eight'),\n(1363, 23191, 'twenty-three thousand one hundred ninety-one'),\n(1364, 30756, 'thirty thousand seven hundred fifty-six'),\n(1365, 60955, 'sixty thousand nine hundred fifty-five'),\n(1366, 37666, 'thirty-seven thousand six hundred sixty-six'),\n(1367, 32124, 'thirty-two thousand one hundred twenty-four'),\n(1368, 37601, 'thirty-seven thousand six hundred one'),\n(1369, 31697, 'thirty-one thousand six hundred ninety-seven'),\n(1370, 70414, 'seventy thousand four hundred fourteen'),\n(1371, 83186, 'eighty-three thousand one hundred eighty-six'),\n(1372, 43212, 'forty-three thousand two hundred twelve'),\n(1373, 43706, 'forty-three thousand seven hundred six'),\n(1374, 74425, 'seventy-four thousand four hundred twenty-five'),\n(1375, 30805, 'thirty thousand eight hundred five'),\n(1376, 50862, 'fifty thousand eight hundred sixty-two'),\n(1377, 78835, 'seventy-eight thousand eight hundred thirty-five'),\n(1378, 13974, 'thirteen thousand nine hundred seventy-four'),\n(1379, 9088, 'nine thousand eighty-eight'),\n(1380, 83685, 'eighty-three thousand six hundred eighty-five'),\n(1381, 42925, 'forty-two thousand nine hundred twenty-five'),\n(1382, 52684, 'fifty-two thousand six hundred eighty-four'),\n(1383, 51846, 'fifty-one thousand eight hundred forty-six'),\n(1384, 54278, 'fifty-four thousand two hundred seventy-eight'),\n(1385, 15094, 'fifteen thousand ninety-four'),\n(1386, 10119, 'ten thousand one hundred nineteen'),\n(1387, 65471, 'sixty-five thousand four hundred seventy-one'),\n(1388, 94045, 'ninety-four thousand forty-five'),\n(1389, 64522, 'sixty-four thousand five hundred twenty-two'),\n(1390, 16108, 'sixteen thousand one hundred eight'),\n(1391, 98475, 'ninety-eight thousand four hundred seventy-five'),\n(1392, 14889, 'fourteen thousand eight hundred eighty-nine'),\n(1393, 85081, 'eighty-five thousand eighty-one'),\n(1394, 18339, 'eighteen thousand three hundred thirty-nine'),\n(1395, 55412, 'fifty-five thousand four hundred twelve'),\n(1396, 67410, 'sixty-seven thousand four hundred ten'),\n(1397, 59049, 'fifty-nine thousand forty-nine'),\n(1398, 42667, 'forty-two thousand six hundred sixty-seven'),\n(1399, 81480, 'eighty-one thousand four hundred eighty'),\n(1400, 44376, 'forty-four thousand three hundred seventy-six'),\n(1401, 17086, 'seventeen thousand eighty-six'),\n(1402, 42743, 'forty-two thousand seven hundred forty-three'),\n(1403, 82977, 'eighty-two thousand nine hundred seventy-seven'),\n(1404, 89291, 'eighty-nine thousand two hundred ninety-one'),\n(1405, 91647, 'ninety-one thousand six hundred forty-seven'),\n(1406, 42961, 'forty-two thousand nine hundred sixty-one'),\n(1407, 93206, 'ninety-three thousand two hundred six'),\n(1408, 2809, 'two thousand eight hundred nine'),\n(1409, 33098, 'thirty-three thousand ninety-eight'),\n(1410, 4394, 'four thousand three hundred ninety-four'),\n(1411, 27538, 'twenty-seven thousand five hundred thirty-eight'),\n(1412, 70688, 'seventy thousand six hundred eighty-eight'),\n(1413, 1847, 'one thousand eight hundred forty-seven'),\n(1414, 64114, 'sixty-four thousand one hundred fourteen'),\n(1415, 23317, 'twenty-three thousand three hundred seventeen'),\n(1416, 74072, 'seventy-four thousand seventy-two'),\n(1417, 43940, 'forty-three thousand nine hundred forty'),\n(1418, 81265, 'eighty-one thousand two hundred sixty-five'),\n(1419, 23520, 'twenty-three thousand five hundred twenty'),\n(1420, 42393, 'forty-two thousand three hundred ninety-three'),\n(1421, 69297, 'sixty-nine thousand two hundred ninety-seven'),\n(1422, 30522, 'thirty thousand five hundred twenty-two'),\n(1423, 19990, 'nineteen thousand nine hundred ninety'),\n(1424, 21630, 'twenty-one thousand six hundred thirty'),\n(1425, 27250, 'twenty-seven thousand two hundred fifty'),\n(1426, 30634, 'thirty thousand six hundred thirty-four'),\n(1427, 40678, 'forty thousand six hundred seventy-eight'),\n(1428, 7137, 'seven thousand one hundred thirty-seven'),\n(1429, 31894, 'thirty-one thousand eight hundred ninety-four'),\n(1430, 33397, 'thirty-three thousand three hundred ninety-seven'),\n(1431, 82540, 'eighty-two thousand five hundred forty'),\n(1432, 58521, 'fifty-eight thousand five hundred twenty-one'),\n(1433, 86494, 'eighty-six thousand four hundred ninety-four'),\n(1434, 21138, 'twenty-one thousand one hundred thirty-eight'),\n(1435, 4279, 'four thousand two hundred seventy-nine'),\n(1436, 87476, 'eighty-seven thousand four hundred seventy-six'),\n(1437, 2346, 'two thousand three hundred forty-six'),\n(1438, 55613, 'fifty-five thousand six hundred thirteen'),\n(1439, 62273, 'sixty-two thousand two hundred seventy-three'),\n(1440, 89495, 'eighty-nine thousand four hundred ninety-five'),\n(1441, 36912, 'thirty-six thousand nine hundred twelve'),\n(1442, 97370, 'ninety-seven thousand three hundred seventy'),\n(1443, 99718, 'ninety-nine thousand seven hundred eighteen'),\n(1444, 22755, 'twenty-two thousand seven hundred fifty-five'),\n(1445, 25884, 'twenty-five thousand eight hundred eighty-four'),\n(1446, 60650, 'sixty thousand six hundred fifty'),\n(1447, 63431, 'sixty-three thousand four hundred thirty-one'),\n(1448, 99037, 'ninety-nine thousand thirty-seven'),\n(1449, 46683, 'forty-six thousand six hundred eighty-three'),\n(1450, 18230, 'eighteen thousand two hundred thirty'),\n(1451, 6169, 'six thousand one hundred sixty-nine'),\n(1452, 93756, 'ninety-three thousand seven hundred fifty-six'),\n(1453, 82602, 'eighty-two thousand six hundred two'),\n(1454, 91464, 'ninety-one thousand four hundred sixty-four'),\n(1455, 6999, 'six thousand nine hundred ninety-nine'),\n(1456, 62243, 'sixty-two thousand two hundred forty-three'),\n(1457, 76853, 'seventy-six thousand eight hundred fifty-three'),\n(1458, 34140, 'thirty-four thousand one hundred forty'),\n(1459, 66544, 'sixty-six thousand five hundred forty-four'),\n(1460, 28978, 'twenty-eight thousand nine hundred seventy-eight'),\n(1461, 60082, 'sixty thousand eighty-two'),\n(1462, 3594, 'three thousand five hundred ninety-four'),\n(1463, 98376, 'ninety-eight thousand three hundred seventy-six'),\n(1464, 74838, 'seventy-four thousand eight hundred thirty-eight'),\n(1465, 67943, 'sixty-seven thousand nine hundred forty-three'),\n(1466, 46797, 'forty-six thousand seven hundred ninety-seven'),\n(1467, 65802, 'sixty-five thousand eight hundred two'),\n(1468, 16924, 'sixteen thousand nine hundred twenty-four'),\n(1469, 20053, 'twenty thousand fifty-three'),\n(1470, 79931, 'seventy-nine thousand nine hundred thirty-one'),\n(1471, 49998, 'forty-nine thousand nine hundred ninety-eight'),\n(1472, 14258, 'fourteen thousand two hundred fifty-eight'),\n(1473, 51696, 'fifty-one thousand six hundred ninety-six'),\n(1474, 87223, 'eighty-seven thousand two hundred twenty-three'),\n(1475, 55248, 'fifty-five thousand two hundred forty-eight'),\n(1476, 40943, 'forty thousand nine hundred forty-three'),\n(1477, 70434, 'seventy thousand four hundred thirty-four'),\n(1478, 80312, 'eighty thousand three hundred twelve'),\n(1479, 69166, 'sixty-nine thousand one hundred sixty-six'),\n(1480, 30197, 'thirty thousand one hundred ninety-seven'),\n(1481, 25526, 'twenty-five thousand five hundred twenty-six'),\n(1482, 20189, 'twenty thousand one hundred eighty-nine'),\n(1483, 32036, 'thirty-two thousand thirty-six'),\n(1484, 86152, 'eighty-six thousand one hundred fifty-two'),\n(1485, 35840, 'thirty-five thousand eight hundred forty'),\n(1486, 3784, 'three thousand seven hundred eighty-four'),\n(1487, 30652, 'thirty thousand six hundred fifty-two'),\n(1488, 76979, 'seventy-six thousand nine hundred seventy-nine'),\n(1489, 51493, 'fifty-one thousand four hundred ninety-three'),\n(1490, 78349, 'seventy-eight thousand three hundred forty-nine'),\n(1491, 99378, 'ninety-nine thousand three hundred seventy-eight'),\n(1492, 9773, 'nine thousand seven hundred seventy-three'),\n(1493, 15186, 'fifteen thousand one hundred eighty-six'),\n(1494, 47773, 'forty-seven thousand seven hundred seventy-three'),\n(1495, 56151, 'fifty-six thousand one hundred fifty-one'),\n(1496, 15131, 'fifteen thousand one hundred thirty-one'),\n(1497, 84587, 'eighty-four thousand five hundred eighty-seven'),\n(1498, 66398, 'sixty-six thousand three hundred ninety-eight'),\n(1499, 32783, 'thirty-two thousand seven hundred eighty-three'),\n(1500, 52117, 'fifty-two thousand one hundred seventeen'),\n(1501, 72385, 'seventy-two thousand three hundred eighty-five'),\n(1502, 583, 'five hundred eighty-three'),\n(1503, 46991, 'forty-six thousand nine hundred ninety-one'),\n(1504, 70432, 'seventy thousand four hundred thirty-two'),\n(1505, 29874, 'twenty-nine thousand eight hundred seventy-four'),\n(1506, 80205, 'eighty thousand two hundred five'),\n(1507, 74951, 'seventy-four thousand nine hundred fifty-one'),\n(1508, 20681, 'twenty thousand six hundred eighty-one'),\n(1509, 8802, 'eight thousand eight hundred two'),\n(1510, 56901, 'fifty-six thousand nine hundred one'),\n(1511, 78776, 'seventy-eight thousand seven hundred seventy-six'),\n(1512, 61720, 'sixty-one thousand seven hundred twenty'),\n(1513, 46839, 'forty-six thousand eight hundred thirty-nine'),\n(1514, 60429, 'sixty thousand four hundred twenty-nine'),\n(1515, 6138, 'six thousand one hundred thirty-eight'),\n(1516, 2198, 'two thousand one hundred ninety-eight'),\n(1517, 14553, 'fourteen thousand five hundred fifty-three'),\n(1518, 9480, 'nine thousand four hundred eighty'),\n(1519, 22985, 'twenty-two thousand nine hundred eighty-five'),\n(1520, 66863, 'sixty-six thousand eight hundred sixty-three'),\n(1521, 22034, 'twenty-two thousand thirty-four'),\n(1522, 86911, 'eighty-six thousand nine hundred eleven'),\n(1523, 23221, 'twenty-three thousand two hundred twenty-one'),\n(1524, 96124, 'ninety-six thousand one hundred twenty-four'),\n(1525, 13993, 'thirteen thousand nine hundred ninety-three'),\n(1526, 97899, 'ninety-seven thousand eight hundred ninety-nine'),\n(1527, 15403, 'fifteen thousand four hundred three'),\n(1528, 36095, 'thirty-six thousand ninety-five'),\n(1529, 42817, 'forty-two thousand eight hundred seventeen'),\n(1530, 42984, 'forty-two thousand nine hundred eighty-four'),\n(1531, 68757, 'sixty-eight thousand seven hundred fifty-seven'),\n(1532, 55896, 'fifty-five thousand eight hundred ninety-six'),\n(1533, 53311, 'fifty-three thousand three hundred eleven'),\n(1534, 30057, 'thirty thousand fifty-seven'),\n(1535, 703, 'seven hundred three'),\n(1536, 70141, 'seventy thousand one hundred forty-one'),\n(1537, 3513, 'three thousand five hundred thirteen'),\n(1538, 96348, 'ninety-six thousand three hundred forty-eight'),\n(1539, 90443, 'ninety thousand four hundred forty-three'),\n(1540, 98539, 'ninety-eight thousand five hundred thirty-nine'),\n(1541, 34909, 'thirty-four thousand nine hundred nine'),\n(1542, 10888, 'ten thousand eight hundred eighty-eight'),\n(1543, 22597, 'twenty-two thousand five hundred ninety-seven'),\n(1544, 72622, 'seventy-two thousand six hundred twenty-two'),\n(1545, 8099, 'eight thousand ninety-nine'),\n(1546, 8945, 'eight thousand nine hundred forty-five'),\n(1547, 85120, 'eighty-five thousand one hundred twenty'),\n(1548, 3750, 'three thousand seven hundred fifty'),\n(1549, 98350, 'ninety-eight thousand three hundred fifty'),\n(1550, 50321, 'fifty thousand three hundred twenty-one'),\n(1551, 20989, 'twenty thousand nine hundred eighty-nine'),\n(1552, 74006, 'seventy-four thousand six'),\n(1553, 53809, 'fifty-three thousand eight hundred nine'),\n(1554, 95808, 'ninety-five thousand eight hundred eight'),\n(1555, 19023, 'nineteen thousand twenty-three'),\n(1556, 94637, 'ninety-four thousand six hundred thirty-seven'),\n(1557, 34282, 'thirty-four thousand two hundred eighty-two'),\n(1558, 76004, 'seventy-six thousand four'),\n(1559, 41024, 'forty-one thousand twenty-four'),\n(1560, 83730, 'eighty-three thousand seven hundred thirty'),\n(1561, 42788, 'forty-two thousand seven hundred eighty-eight'),\n(1562, 98008, 'ninety-eight thousand eight'),\n(1563, 81276, 'eighty-one thousand two hundred seventy-six'),\n(1564, 46661, 'forty-six thousand six hundred sixty-one'),\n(1565, 41606, 'forty-one thousand six hundred six'),\n(1566, 71937, 'seventy-one thousand nine hundred thirty-seven'),\n(1567, 64977, 'sixty-four thousand nine hundred seventy-seven'),\n(1568, 717, 'seven hundred seventeen'),\n(1569, 79266, 'seventy-nine thousand two hundred sixty-six'),\n(1570, 2784, 'two thousand seven hundred eighty-four'),\n(1571, 64149, 'sixty-four thousand one hundred forty-nine'),\n(1572, 46225, 'forty-six thousand two hundred twenty-five'),\n(1573, 54485, 'fifty-four thousand four hundred eighty-five'),\n(1574, 834, 'eight hundred thirty-four'),\n(1575, 87256, 'eighty-seven thousand two hundred fifty-six'),\n(1576, 50253, 'fifty thousand two hundred fifty-three'),\n(1577, 8079, 'eight thousand seventy-nine'),\n(1578, 13348, 'thirteen thousand three hundred forty-eight'),\n(1579, 96299, 'ninety-six thousand two hundred ninety-nine'),\n(1580, 11791, 'eleven thousand seven hundred ninety-one'),\n(1581, 52010, 'fifty-two thousand ten'),\n(1582, 75972, 'seventy-five thousand nine hundred seventy-two'),\n(1583, 48694, 'forty-eight thousand six hundred ninety-four'),\n(1584, 47825, 'forty-seven thousand eight hundred twenty-five'),\n(1585, 16316, 'sixteen thousand three hundred sixteen'),\n(1586, 36091, 'thirty-six thousand ninety-one'),\n(1587, 12935, 'twelve thousand nine hundred thirty-five'),\n(1588, 73502, 'seventy-three thousand five hundred two'),\n(1589, 95386, 'ninety-five thousand three hundred eighty-six'),\n(1590, 40717, 'forty thousand seven hundred seventeen'),\n(1591, 64368, 'sixty-four thousand three hundred sixty-eight'),\n(1592, 13031, 'thirteen thousand thirty-one'),\n(1593, 20833, 'twenty thousand eight hundred thirty-three'),\n(1594, 42830, 'forty-two thousand eight hundred thirty'),\n(1595, 48552, 'forty-eight thousand five hundred fifty-two'),\n(1596, 25080, 'twenty-five thousand eighty'),\n(1597, 82047, 'eighty-two thousand forty-seven'),\n(1598, 17153, 'seventeen thousand one hundred fifty-three'),\n(1599, 11760, 'eleven thousand seven hundred sixty'),\n(1600, 77741, 'seventy-seven thousand seven hundred forty-one'),\n(1601, 33160, 'thirty-three thousand one hundred sixty'),\n(1602, 59277, 'fifty-nine thousand two hundred seventy-seven'),\n(1603, 46466, 'forty-six thousand four hundred sixty-six'),\n(1604, 30377, 'thirty thousand three hundred seventy-seven'),\n(1605, 56, 'fifty-six'),\n(1606, 7002, 'seven thousand two'),\n(1607, 42546, 'forty-two thousand five hundred forty-six'),\n(1608, 74812, 'seventy-four thousand eight hundred twelve'),\n(1609, 34393, 'thirty-four thousand three hundred ninety-three'),\n(1610, 17906, 'seventeen thousand nine hundred six'),\n(1611, 88345, 'eighty-eight thousand three hundred forty-five'),\n(1612, 89151, 'eighty-nine thousand one hundred fifty-one'),\n(1613, 61801, 'sixty-one thousand eight hundred one'),\n(1614, 91028, 'ninety-one thousand twenty-eight'),\n(1615, 21377, 'twenty-one thousand three hundred seventy-seven'),\n(1616, 28960, 'twenty-eight thousand nine hundred sixty'),\n(1617, 19222, 'nineteen thousand two hundred twenty-two'),\n(1618, 57618, 'fifty-seven thousand six hundred eighteen'),\n(1619, 76240, 'seventy-six thousand two hundred forty'),\n(1620, 20780, 'twenty thousand seven hundred eighty'),\n(1621, 8716, 'eight thousand seven hundred sixteen'),\n(1622, 46543, 'forty-six thousand five hundred forty-three'),\n(1623, 10892, 'ten thousand eight hundred ninety-two'),\n(1624, 17440, 'seventeen thousand four hundred forty'),\n(1625, 56921, 'fifty-six thousand nine hundred twenty-one'),\n(1626, 1696, 'one thousand six hundred ninety-six'),\n(1627, 16761, 'sixteen thousand seven hundred sixty-one'),\n(1628, 37810, 'thirty-seven thousand eight hundred ten'),\n(1629, 44518, 'forty-four thousand five hundred eighteen'),\n(1630, 67520, 'sixty-seven thousand five hundred twenty'),\n(1631, 40923, 'forty thousand nine hundred twenty-three'),\n(1632, 18314, 'eighteen thousand three hundred fourteen'),\n(1633, 90127, 'ninety thousand one hundred twenty-seven'),\n(1634, 79059, 'seventy-nine thousand fifty-nine'),\n(1635, 626, 'six hundred twenty-six'),\n(1636, 80537, 'eighty thousand five hundred thirty-seven'),\n(1637, 83954, 'eighty-three thousand nine hundred fifty-four'),\n(1638, 17794, 'seventeen thousand seven hundred ninety-four'),\n(1639, 68525, 'sixty-eight thousand five hundred twenty-five'),\n(1640, 61471, 'sixty-one thousand four hundred seventy-one'),\n(1641, 39712, 'thirty-nine thousand seven hundred twelve'),\n(1642, 60313, 'sixty thousand three hundred thirteen'),\n(1643, 90492, 'ninety thousand four hundred ninety-two'),\n(1644, 1376, 'one thousand three hundred seventy-six'),\n(1645, 99046, 'ninety-nine thousand forty-six'),\n(1646, 50354, 'fifty thousand three hundred fifty-four'),\n(1647, 79651, 'seventy-nine thousand six hundred fifty-one'),\n(1648, 46094, 'forty-six thousand ninety-four'),\n(1649, 42593, 'forty-two thousand five hundred ninety-three'),\n(1650, 98973, 'ninety-eight thousand nine hundred seventy-three'),\n(1651, 53889, 'fifty-three thousand eight hundred eighty-nine'),\n(1652, 930, 'nine hundred thirty'),\n(1653, 49895, 'forty-nine thousand eight hundred ninety-five'),\n(1654, 82975, 'eighty-two thousand nine hundred seventy-five'),\n(1655, 7731, 'seven thousand seven hundred thirty-one'),\n(1656, 12858, 'twelve thousand eight hundred fifty-eight'),\n(1657, 26697, 'twenty-six thousand six hundred ninety-seven'),\n(1658, 86891, 'eighty-six thousand eight hundred ninety-one'),\n(1659, 19521, 'nineteen thousand five hundred twenty-one'),\n(1660, 95678, 'ninety-five thousand six hundred seventy-eight'),\n(1661, 59728, 'fifty-nine thousand seven hundred twenty-eight'),\n(1662, 68585, 'sixty-eight thousand five hundred eighty-five'),\n(1663, 75485, 'seventy-five thousand four hundred eighty-five'),\n(1664, 11566, 'eleven thousand five hundred sixty-six'),\n(1665, 23271, 'twenty-three thousand two hundred seventy-one'),\n(1666, 9462, 'nine thousand four hundred sixty-two'),\n(1667, 8978, 'eight thousand nine hundred seventy-eight'),\n(1668, 39776, 'thirty-nine thousand seven hundred seventy-six'),\n(1669, 19840, 'nineteen thousand eight hundred forty'),\n(1670, 50040, 'fifty thousand forty'),\n(1671, 81105, 'eighty-one thousand one hundred five'),\n(1672, 81690, 'eighty-one thousand six hundred ninety'),\n(1673, 47205, 'forty-seven thousand two hundred five'),\n(1674, 26859, 'twenty-six thousand eight hundred fifty-nine'),\n(1675, 27273, 'twenty-seven thousand two hundred seventy-three'),\n(1676, 3770, 'three thousand seven hundred seventy'),\n(1677, 57118, 'fifty-seven thousand one hundred eighteen'),\n(1678, 5830, 'five thousand eight hundred thirty'),\n(1679, 44010, 'forty-four thousand ten'),\n(1680, 107, 'one hundred seven'),\n(1681, 54866, 'fifty-four thousand eight hundred sixty-six'),\n(1682, 45623, 'forty-five thousand six hundred twenty-three'),\n(1683, 12938, 'twelve thousand nine hundred thirty-eight'),\n(1684, 84644, 'eighty-four thousand six hundred forty-four'),\n(1685, 81116, 'eighty-one thousand one hundred sixteen'),\n(1686, 6557, 'six thousand five hundred fifty-seven'),\n(1687, 504, 'five hundred four'),\n(1688, 41242, 'forty-one thousand two hundred forty-two'),\n(1689, 40898, 'forty thousand eight hundred ninety-eight'),\n(1690, 37987, 'thirty-seven thousand nine hundred eighty-seven'),\n(1691, 91906, 'ninety-one thousand nine hundred six'),\n(1692, 74068, 'seventy-four thousand sixty-eight'),\n(1693, 47393, 'forty-seven thousand three hundred ninety-three'),\n(1694, 70527, 'seventy thousand five hundred twenty-seven'),\n(1695, 91711, 'ninety-one thousand seven hundred eleven'),\n(1696, 85846, 'eighty-five thousand eight hundred forty-six'),\n(1697, 49866, 'forty-nine thousand eight hundred sixty-six'),\n(1698, 78048, 'seventy-eight thousand forty-eight'),\n(1699, 46897, 'forty-six thousand eight hundred ninety-seven'),\n(1700, 43123, 'forty-three thousand one hundred twenty-three'),\n(1701, 83377, 'eighty-three thousand three hundred seventy-seven'),\n(1702, 84298, 'eighty-four thousand two hundred ninety-eight'),\n(1703, 13970, 'thirteen thousand nine hundred seventy'),\n(1704, 57265, 'fifty-seven thousand two hundred sixty-five'),\n(1705, 67777, 'sixty-seven thousand seven hundred seventy-seven'),\n(1706, 616, 'six hundred sixteen'),\n(1707, 40764, 'forty thousand seven hundred sixty-four'),\n(1708, 85767, 'eighty-five thousand seven hundred sixty-seven'),\n(1709, 41836, 'forty-one thousand eight hundred thirty-six'),\n(1710, 79865, 'seventy-nine thousand eight hundred sixty-five'),\n(1711, 96742, 'ninety-six thousand seven hundred forty-two'),\n(1712, 80228, 'eighty thousand two hundred twenty-eight'),\n(1713, 44642, 'forty-four thousand six hundred forty-two'),\n(1714, 70499, 'seventy thousand four hundred ninety-nine'),\n(1715, 80722, 'eighty thousand seven hundred twenty-two'),\n(1716, 84267, 'eighty-four thousand two hundred sixty-seven'),\n(1717, 99256, 'ninety-nine thousand two hundred fifty-six'),\n(1718, 50812, 'fifty thousand eight hundred twelve'),\n(1719, 30175, 'thirty thousand one hundred seventy-five'),\n(1720, 94760, 'ninety-four thousand seven hundred sixty'),\n(1721, 43410, 'forty-three thousand four hundred ten'),\n(1722, 67951, 'sixty-seven thousand nine hundred fifty-one'),\n(1723, 46523, 'forty-six thousand five hundred twenty-three'),\n(1724, 23389, 'twenty-three thousand three hundred eighty-nine'),\n(1725, 14110, 'fourteen thousand one hundred ten'),\n(1726, 45909, 'forty-five thousand nine hundred nine'),\n(1727, 65009, 'sixty-five thousand nine'),\n(1728, 8080, 'eight thousand eighty'),\n(1729, 86931, 'eighty-six thousand nine hundred thirty-one'),\n(1730, 85738, 'eighty-five thousand seven hundred thirty-eight'),\n(1731, 16610, 'sixteen thousand six hundred ten'),\n(1732, 6929, 'six thousand nine hundred twenty-nine'),\n(1733, 47186, 'forty-seven thousand one hundred eighty-six'),\n(1734, 91792, 'ninety-one thousand seven hundred ninety-two'),\n(1735, 96935, 'ninety-six thousand nine hundred thirty-five'),\n(1736, 71196, 'seventy-one thousand one hundred ninety-six'),\n(1737, 23429, 'twenty-three thousand four hundred twenty-nine'),\n(1738, 72247, 'seventy-two thousand two hundred forty-seven'),\n(1739, 44134, 'forty-four thousand one hundred thirty-four'),\n(1740, 52925, 'fifty-two thousand nine hundred twenty-five'),\n(1741, 23227, 'twenty-three thousand two hundred twenty-seven'),\n(1742, 6111, 'six thousand one hundred eleven'),\n(1743, 51254, 'fifty-one thousand two hundred fifty-four'),\n(1744, 39973, 'thirty-nine thousand nine hundred seventy-three'),\n(1745, 46941, 'forty-six thousand nine hundred forty-one'),\n(1746, 82749, 'eighty-two thousand seven hundred forty-nine'),\n(1747, 27151, 'twenty-seven thousand one hundred fifty-one'),\n(1748, 51344, 'fifty-one thousand three hundred forty-four'),\n(1749, 62547, 'sixty-two thousand five hundred forty-seven'),\n(1750, 397, 'three hundred ninety-seven'),\n(1751, 65470, 'sixty-five thousand four hundred seventy'),\n(1752, 66363, 'sixty-six thousand three hundred sixty-three'),\n(1753, 40795, 'forty thousand seven hundred ninety-five'),\n(1754, 67431, 'sixty-seven thousand four hundred thirty-one'),\n(1755, 41954, 'forty-one thousand nine hundred fifty-four'),\n(1756, 39502, 'thirty-nine thousand five hundred two'),\n(1757, 39775, 'thirty-nine thousand seven hundred seventy-five'),\n(1758, 90717, 'ninety thousand seven hundred seventeen'),\n(1759, 35053, 'thirty-five thousand fifty-three'),\n(1760, 11842, 'eleven thousand eight hundred forty-two'),\n(1761, 81134, 'eighty-one thousand one hundred thirty-four'),\n(1762, 75647, 'seventy-five thousand six hundred forty-seven'),\n(1763, 48715, 'forty-eight thousand seven hundred fifteen'),\n(1764, 50246, 'fifty thousand two hundred forty-six'),\n(1765, 74361, 'seventy-four thousand three hundred sixty-one'),\n(1766, 26463, 'twenty-six thousand four hundred sixty-three'),\n(1767, 85668, 'eighty-five thousand six hundred sixty-eight'),\n(1768, 65693, 'sixty-five thousand six hundred ninety-three'),\n(1769, 62536, 'sixty-two thousand five hundred thirty-six'),\n(1770, 95905, 'ninety-five thousand nine hundred five'),\n(1771, 73166, 'seventy-three thousand one hundred sixty-six'),\n(1772, 59477, 'fifty-nine thousand four hundred seventy-seven'),\n(1773, 1476, 'one thousand four hundred seventy-six'),\n(1774, 66052, 'sixty-six thousand fifty-two'),\n(1775, 62223, 'sixty-two thousand two hundred twenty-three'),\n(1776, 22572, 'twenty-two thousand five hundred seventy-two'),\n(1777, 15621, 'fifteen thousand six hundred twenty-one'),\n(1778, 92966, 'ninety-two thousand nine hundred sixty-six'),\n(1779, 52093, 'fifty-two thousand ninety-three'),\n(1780, 5553, 'five thousand five hundred fifty-three'),\n(1781, 10448, 'ten thousand four hundred forty-eight'),\n(1782, 98571, 'ninety-eight thousand five hundred seventy-one'),\n(1783, 74699, 'seventy-four thousand six hundred ninety-nine'),\n(1784, 98871, 'ninety-eight thousand eight hundred seventy-one'),\n(1785, 94583, 'ninety-four thousand five hundred eighty-three'),\n(1786, 43498, 'forty-three thousand four hundred ninety-eight'),\n(1787, 23619, 'twenty-three thousand six hundred nineteen'),\n(1788, 54118, 'fifty-four thousand one hundred eighteen'),\n(1789, 16473, 'sixteen thousand four hundred seventy-three'),\n(1790, 50287, 'fifty thousand two hundred eighty-seven'),\n(1791, 31482, 'thirty-one thousand four hundred eighty-two'),\n(1792, 17518, 'seventeen thousand five hundred eighteen'),\n(1793, 67865, 'sixty-seven thousand eight hundred sixty-five'),\n(1794, 89160, 'eighty-nine thousand one hundred sixty'),\n(1795, 36122, 'thirty-six thousand one hundred twenty-two'),\n(1796, 93188, 'ninety-three thousand one hundred eighty-eight'),\n(1797, 44637, 'forty-four thousand six hundred thirty-seven'),\n(1798, 89043, 'eighty-nine thousand forty-three'),\n(1799, 6372, 'six thousand three hundred seventy-two'),\n(1800, 93720, 'ninety-three thousand seven hundred twenty'),\n(1801, 29153, 'twenty-nine thousand one hundred fifty-three'),\n(1802, 50586, 'fifty thousand five hundred eighty-six'),\n(1803, 92688, 'ninety-two thousand six hundred eighty-eight'),\n(1804, 56748, 'fifty-six thousand seven hundred forty-eight'),\n(1805, 50236, 'fifty thousand two hundred thirty-six'),\n(1806, 57142, 'fifty-seven thousand one hundred forty-two'),\n(1807, 37675, 'thirty-seven thousand six hundred seventy-five'),\n(1808, 84293, 'eighty-four thousand two hundred ninety-three'),\n(1809, 60980, 'sixty thousand nine hundred eighty'),\n(1810, 60251, 'sixty thousand two hundred fifty-one'),\n(1811, 59472, 'fifty-nine thousand four hundred seventy-two'),\n(1812, 64149, 'sixty-four thousand one hundred forty-nine'),\n(1813, 77768, 'seventy-seven thousand seven hundred sixty-eight'),\n(1814, 98618, 'ninety-eight thousand six hundred eighteen'),\n(1815, 56268, 'fifty-six thousand two hundred sixty-eight'),\n(1816, 62427, 'sixty-two thousand four hundred twenty-seven'),\n(1817, 28993, 'twenty-eight thousand nine hundred ninety-three'),\n(1818, 61428, 'sixty-one thousand four hundred twenty-eight'),\n(1819, 49443, 'forty-nine thousand four hundred forty-three'),\n(1820, 58730, 'fifty-eight thousand seven hundred thirty'),\n(1821, 40898, 'forty thousand eight hundred ninety-eight'),\n(1822, 12437, 'twelve thousand four hundred thirty-seven'),\n(1823, 72890, 'seventy-two thousand eight hundred ninety'),\n(1824, 8711, 'eight thousand seven hundred eleven'),\n(1825, 59677, 'fifty-nine thousand six hundred seventy-seven'),\n(1826, 80103, 'eighty thousand one hundred three'),\n(1827, 40508, 'forty thousand five hundred eight'),\n(1828, 97476, 'ninety-seven thousand four hundred seventy-six'),\n(1829, 43339, 'forty-three thousand three hundred thirty-nine'),\n(1830, 14865, 'fourteen thousand eight hundred sixty-five'),\n(1831, 81064, 'eighty-one thousand sixty-four'),\n(1832, 48666, 'forty-eight thousand six hundred sixty-six'),\n(1833, 81245, 'eighty-one thousand two hundred forty-five'),\n(1834, 74794, 'seventy-four thousand seven hundred ninety-four'),\n(1835, 31588, 'thirty-one thousand five hundred eighty-eight'),\n(1836, 22954, 'twenty-two thousand nine hundred fifty-four'),\n(1837, 39485, 'thirty-nine thousand four hundred eighty-five'),\n(1838, 51863, 'fifty-one thousand eight hundred sixty-three'),\n(1839, 6271, 'six thousand two hundred seventy-one'),\n(1840, 58099, 'fifty-eight thousand ninety-nine'),\n(1841, 47285, 'forty-seven thousand two hundred eighty-five'),\n(1842, 69965, 'sixty-nine thousand nine hundred sixty-five'),\n(1843, 69698, 'sixty-nine thousand six hundred ninety-eight'),\n(1844, 94547, 'ninety-four thousand five hundred forty-seven'),\n(1845, 4271, 'four thousand two hundred seventy-one'),\n(1846, 68855, 'sixty-eight thousand eight hundred fifty-five'),\n(1847, 66926, 'sixty-six thousand nine hundred twenty-six'),\n(1848, 36352, 'thirty-six thousand three hundred fifty-two'),\n(1849, 81428, 'eighty-one thousand four hundred twenty-eight'),\n(1850, 96278, 'ninety-six thousand two hundred seventy-eight'),\n(1851, 77034, 'seventy-seven thousand thirty-four'),\n(1852, 63118, 'sixty-three thousand one hundred eighteen'),\n(1853, 79693, 'seventy-nine thousand six hundred ninety-three'),\n(1854, 95874, 'ninety-five thousand eight hundred seventy-four'),\n(1855, 97169, 'ninety-seven thousand one hundred sixty-nine'),\n(1856, 81843, 'eighty-one thousand eight hundred forty-three'),\n(1857, 33201, 'thirty-three thousand two hundred one'),\n(1858, 88509, 'eighty-eight thousand five hundred nine'),\n(1859, 77410, 'seventy-seven thousand four hundred ten'),\n(1860, 52629, 'fifty-two thousand six hundred twenty-nine'),\n(1861, 57234, 'fifty-seven thousand two hundred thirty-four'),\n(1862, 11373, 'eleven thousand three hundred seventy-three'),\n(1863, 83775, 'eighty-three thousand seven hundred seventy-five'),\n(1864, 22455, 'twenty-two thousand four hundred fifty-five'),\n(1865, 99903, 'ninety-nine thousand nine hundred three'),\n(1866, 67182, 'sixty-seven thousand one hundred eighty-two'),\n(1867, 79194, 'seventy-nine thousand one hundred ninety-four'),\n(1868, 38445, 'thirty-eight thousand four hundred forty-five'),\n(1869, 3916, 'three thousand nine hundred sixteen'),\n(1870, 77123, 'seventy-seven thousand one hundred twenty-three'),\n(1871, 39560, 'thirty-nine thousand five hundred sixty'),\n(1872, 72667, 'seventy-two thousand six hundred sixty-seven'),\n(1873, 69460, 'sixty-nine thousand four hundred sixty'),\n(1874, 86336, 'eighty-six thousand three hundred thirty-six'),\n(1875, 54783, 'fifty-four thousand seven hundred eighty-three'),\n(1876, 34851, 'thirty-four thousand eight hundred fifty-one'),\n(1877, 12818, 'twelve thousand eight hundred eighteen'),\n(1878, 42534, 'forty-two thousand five hundred thirty-four'),\n(1879, 90531, 'ninety thousand five hundred thirty-one'),\n(1880, 83545, 'eighty-three thousand five hundred forty-five'),\n(1881, 41895, 'forty-one thousand eight hundred ninety-five'),\n(1882, 16357, 'sixteen thousand three hundred fifty-seven'),\n(1883, 48074, 'forty-eight thousand seventy-four'),\n(1884, 65554, 'sixty-five thousand five hundred fifty-four'),\n(1885, 19168, 'nineteen thousand one hundred sixty-eight'),\n(1886, 20457, 'twenty thousand four hundred fifty-seven'),\n(1887, 67074, 'sixty-seven thousand seventy-four'),\n(1888, 60826, 'sixty thousand eight hundred twenty-six'),\n(1889, 89749, 'eighty-nine thousand seven hundred forty-nine'),\n(1890, 87651, 'eighty-seven thousand six hundred fifty-one'),\n(1891, 53525, 'fifty-three thousand five hundred twenty-five'),\n(1892, 63667, 'sixty-three thousand six hundred sixty-seven'),\n(1893, 34728, 'thirty-four thousand seven hundred twenty-eight'),\n(1894, 30650, 'thirty thousand six hundred fifty'),\n(1895, 38017, 'thirty-eight thousand seventeen'),\n(1896, 15204, 'fifteen thousand two hundred four'),\n(1897, 89639, 'eighty-nine thousand six hundred thirty-nine'),\n(1898, 57891, 'fifty-seven thousand eight hundred ninety-one'),\n(1899, 47672, 'forty-seven thousand six hundred seventy-two'),\n(1900, 35597, 'thirty-five thousand five hundred ninety-seven'),\n(1901, 75875, 'seventy-five thousand eight hundred seventy-five'),\n(1902, 25536, 'twenty-five thousand five hundred thirty-six'),\n(1903, 39855, 'thirty-nine thousand eight hundred fifty-five'),\n(1904, 36141, 'thirty-six thousand one hundred forty-one'),\n(1905, 72263, 'seventy-two thousand two hundred sixty-three'),\n(1906, 61262, 'sixty-one thousand two hundred sixty-two'),\n(1907, 90989, 'ninety thousand nine hundred eighty-nine'),\n(1908, 7384, 'seven thousand three hundred eighty-four'),\n(1909, 97486, 'ninety-seven thousand four hundred eighty-six'),\n(1910, 63833, 'sixty-three thousand eight hundred thirty-three'),\n(1911, 84418, 'eighty-four thousand four hundred eighteen'),\n(1912, 1412, 'one thousand four hundred twelve'),\n(1913, 70670, 'seventy thousand six hundred seventy'),\n(1914, 69714, 'sixty-nine thousand seven hundred fourteen'),\n(1915, 9088, 'nine thousand eighty-eight'),\n(1916, 78087, 'seventy-eight thousand eighty-seven'),\n(1917, 63997, 'sixty-three thousand nine hundred ninety-seven'),\n(1918, 46926, 'forty-six thousand nine hundred twenty-six'),\n(1919, 20635, 'twenty thousand six hundred thirty-five'),\n(1920, 83870, 'eighty-three thousand eight hundred seventy'),\n(1921, 64450, 'sixty-four thousand four hundred fifty'),\n(1922, 52555, 'fifty-two thousand five hundred fifty-five'),\n(1923, 82175, 'eighty-two thousand one hundred seventy-five'),\n(1924, 55189, 'fifty-five thousand one hundred eighty-nine'),\n(1925, 76696, 'seventy-six thousand six hundred ninety-six'),\n(1926, 32209, 'thirty-two thousand two hundred nine'),\n(1927, 72411, 'seventy-two thousand four hundred eleven'),\n(1928, 70851, 'seventy thousand eight hundred fifty-one'),\n(1929, 60118, 'sixty thousand one hundred eighteen'),\n(1930, 2840, 'two thousand eight hundred forty'),\n(1931, 24262, 'twenty-four thousand two hundred sixty-two'),\n(1932, 79709, 'seventy-nine thousand seven hundred nine'),\n(1933, 80918, 'eighty thousand nine hundred eighteen'),\n(1934, 74325, 'seventy-four thousand three hundred twenty-five'),\n(1935, 80878, 'eighty thousand eight hundred seventy-eight'),\n(1936, 65269, 'sixty-five thousand two hundred sixty-nine'),\n(1937, 35093, 'thirty-five thousand ninety-three'),\n(1938, 75048, 'seventy-five thousand forty-eight'),\n(1939, 98306, 'ninety-eight thousand three hundred six'),\n(1940, 70784, 'seventy thousand seven hundred eighty-four'),\n(1941, 63270, 'sixty-three thousand two hundred seventy'),\n(1942, 30152, 'thirty thousand one hundred fifty-two'),\n(1943, 19394, 'nineteen thousand three hundred ninety-four'),\n(1944, 55571, 'fifty-five thousand five hundred seventy-one'),\n(1945, 73532, 'seventy-three thousand five hundred thirty-two'),\n(1946, 26695, 'twenty-six thousand six hundred ninety-five'),\n(1947, 51444, 'fifty-one thousand four hundred forty-four'),\n(1948, 90130, 'ninety thousand one hundred thirty'),\n(1949, 26980, 'twenty-six thousand nine hundred eighty'),\n(1950, 80759, 'eighty thousand seven hundred fifty-nine'),\n(1951, 35243, 'thirty-five thousand two hundred forty-three'),\n(1952, 40496, 'forty thousand four hundred ninety-six'),\n(1953, 13009, 'thirteen thousand nine'),\n(1954, 84010, 'eighty-four thousand ten'),\n(1955, 42338, 'forty-two thousand three hundred thirty-eight'),\n(1956, 74408, 'seventy-four thousand four hundred eight'),\n(1957, 7379, 'seven thousand three hundred seventy-nine'),\n(1958, 53430, 'fifty-three thousand four hundred thirty'),\n(1959, 12777, 'twelve thousand seven hundred seventy-seven'),\n(1960, 46692, 'forty-six thousand six hundred ninety-two'),\n(1961, 2252, 'two thousand two hundred fifty-two'),\n(1962, 53478, 'fifty-three thousand four hundred seventy-eight'),\n(1963, 36601, 'thirty-six thousand six hundred one'),\n(1964, 78479, 'seventy-eight thousand four hundred seventy-nine'),\n(1965, 95051, 'ninety-five thousand fifty-one'),\n(1966, 50334, 'fifty thousand three hundred thirty-four'),\n(1967, 11478, 'eleven thousand four hundred seventy-eight'),\n(1968, 6230, 'six thousand two hundred thirty'),\n(1969, 9474, 'nine thousand four hundred seventy-four'),\n(1970, 22551, 'twenty-two thousand five hundred fifty-one'),\n(1971, 18731, 'eighteen thousand seven hundred thirty-one'),\n(1972, 87356, 'eighty-seven thousand three hundred fifty-six'),\n(1973, 31204, 'thirty-one thousand two hundred four'),\n(1974, 70236, 'seventy thousand two hundred thirty-six'),\n(1975, 90756, 'ninety thousand seven hundred fifty-six'),\n(1976, 31003, 'thirty-one thousand three'),\n(1977, 72791, 'seventy-two thousand seven hundred ninety-one'),\n(1978, 71381, 'seventy-one thousand three hundred eighty-one'),\n(1979, 95904, 'ninety-five thousand nine hundred four'),\n(1980, 8694, 'eight thousand six hundred ninety-four'),\n(1981, 6275, 'six thousand two hundred seventy-five'),\n(1982, 59694, 'fifty-nine thousand six hundred ninety-four'),\n(1983, 47519, 'forty-seven thousand five hundred nineteen'),\n(1984, 94880, 'ninety-four thousand eight hundred eighty'),\n(1985, 40892, 'forty thousand eight hundred ninety-two'),\n(1986, 71479, 'seventy-one thousand four hundred seventy-nine'),\n(1987, 64232, 'sixty-four thousand two hundred thirty-two'),\n(1988, 32742, 'thirty-two thousand seven hundred forty-two'),\n(1989, 90228, 'ninety thousand two hundred twenty-eight'),\n(1990, 70201, 'seventy thousand two hundred one'),\n(1991, 6076, 'six thousand seventy-six'),\n(1992, 73314, 'seventy-three thousand three hundred fourteen'),\n(1993, 98832, 'ninety-eight thousand eight hundred thirty-two'),\n(1994, 71299, 'seventy-one thousand two hundred ninety-nine'),\n(1995, 53494, 'fifty-three thousand four hundred ninety-four'),\n(1996, 90494, 'ninety thousand four hundred ninety-four'),\n(1997, 20872, 'twenty thousand eight hundred seventy-two'),\n(1998, 57121, 'fifty-seven thousand one hundred twenty-one'),\n(1999, 69191, 'sixty-nine thousand one hundred ninety-one'),\n(2000, 86770, 'eighty-six thousand seven hundred seventy'),\n(2001, 3752, 'three thousand seven hundred fifty-two'),\n(2002, 96753, 'ninety-six thousand seven hundred fifty-three'),\n(2003, 89259, 'eighty-nine thousand two hundred fifty-nine'),\n(2004, 87880, 'eighty-seven thousand eight hundred eighty'),\n(2005, 3264, 'three thousand two hundred sixty-four'),\n(2006, 12245, 'twelve thousand two hundred forty-five'),\n(2007, 20809, 'twenty thousand eight hundred nine'),\n(2008, 90643, 'ninety thousand six hundred forty-three'),\n(2009, 27602, 'twenty-seven thousand six hundred two'),\n(2010, 44882, 'forty-four thousand eight hundred eighty-two'),\n(2011, 85915, 'eighty-five thousand nine hundred fifteen'),\n(2012, 4239, 'four thousand two hundred thirty-nine'),\n(2013, 23915, 'twenty-three thousand nine hundred fifteen'),\n(2014, 50728, 'fifty thousand seven hundred twenty-eight'),\n(2015, 56336, 'fifty-six thousand three hundred thirty-six'),\n(2016, 35419, 'thirty-five thousand four hundred nineteen'),\n(2017, 31335, 'thirty-one thousand three hundred thirty-five'),\n(2018, 44501, 'forty-four thousand five hundred one'),\n(2019, 85963, 'eighty-five thousand nine hundred sixty-three'),\n(2020, 32132, 'thirty-two thousand one hundred thirty-two'),\n(2021, 58756, 'fifty-eight thousand seven hundred fifty-six'),\n(2022, 72895, 'seventy-two thousand eight hundred ninety-five'),\n(2023, 61577, 'sixty-one thousand five hundred seventy-seven'),\n(2024, 60470, 'sixty thousand four hundred seventy'),\n(2025, 13247, 'thirteen thousand two hundred forty-seven'),\n(2026, 80738, 'eighty thousand seven hundred thirty-eight'),\n(2027, 47364, 'forty-seven thousand three hundred sixty-four'),\n(2028, 71398, 'seventy-one thousand three hundred ninety-eight'),\n(2029, 11309, 'eleven thousand three hundred nine'),\n(2030, 22150, 'twenty-two thousand one hundred fifty'),\n(2031, 32179, 'thirty-two thousand one hundred seventy-nine'),\n(2032, 56661, 'fifty-six thousand six hundred sixty-one'),\n(2033, 64991, 'sixty-four thousand nine hundred ninety-one'),\n(2034, 61813, 'sixty-one thousand eight hundred thirteen'),\n(2035, 58145, 'fifty-eight thousand one hundred forty-five'),\n(2036, 24919, 'twenty-four thousand nine hundred nineteen'),\n(2037, 88079, 'eighty-eight thousand seventy-nine'),\n(2038, 87582, 'eighty-seven thousand five hundred eighty-two'),\n(2039, 68372, 'sixty-eight thousand three hundred seventy-two'),\n(2040, 43188, 'forty-three thousand one hundred eighty-eight'),\n(2041, 9546, 'nine thousand five hundred forty-six'),\n(2042, 91577, 'ninety-one thousand five hundred seventy-seven'),\n(2043, 80437, 'eighty thousand four hundred thirty-seven'),\n(2044, 44514, 'forty-four thousand five hundred fourteen'),\n(2045, 64110, 'sixty-four thousand one hundred ten'),\n(2046, 66779, 'sixty-six thousand seven hundred seventy-nine'),\n(2047, 29449, 'twenty-nine thousand four hundred forty-nine'),\n(2048, 27665, 'twenty-seven thousand six hundred sixty-five'),\n(2049, 43531, 'forty-three thousand five hundred thirty-one'),\n(2050, 34298, 'thirty-four thousand two hundred ninety-eight'),\n(2051, 18662, 'eighteen thousand six hundred sixty-two'),\n(2052, 7015, 'seven thousand fifteen'),\n(2053, 20067, 'twenty thousand sixty-seven'),\n(2054, 55314, 'fifty-five thousand three hundred fourteen'),\n(2055, 39696, 'thirty-nine thousand six hundred ninety-six'),\n(2056, 63429, 'sixty-three thousand four hundred twenty-nine'),\n(2057, 38900, 'thirty-eight thousand nine hundred'),\n(2058, 30312, 'thirty thousand three hundred twelve'),\n(2059, 39502, 'thirty-nine thousand five hundred two'),\n(2060, 60364, 'sixty thousand three hundred sixty-four'),\n(2061, 51299, 'fifty-one thousand two hundred ninety-nine'),\n(2062, 37865, 'thirty-seven thousand eight hundred sixty-five'),\n(2063, 7407, 'seven thousand four hundred seven'),\n(2064, 9582, 'nine thousand five hundred eighty-two'),\n(2065, 58152, 'fifty-eight thousand one hundred fifty-two'),\n(2066, 79602, 'seventy-nine thousand six hundred two'),\n(2067, 90566, 'ninety thousand five hundred sixty-six'),\n(2068, 41424, 'forty-one thousand four hundred twenty-four'),\n(2069, 67171, 'sixty-seven thousand one hundred seventy-one'),\n(2070, 52445, 'fifty-two thousand four hundred forty-five'),\n(2071, 81457, 'eighty-one thousand four hundred fifty-seven'),\n(2072, 85944, 'eighty-five thousand nine hundred forty-four'),\n(2073, 99560, 'ninety-nine thousand five hundred sixty'),\n(2074, 1276, 'one thousand two hundred seventy-six'),\n(2075, 72906, 'seventy-two thousand nine hundred six'),\n(2076, 24124, 'twenty-four thousand one hundred twenty-four'),\n(2077, 14401, 'fourteen thousand four hundred one'),\n(2078, 18253, 'eighteen thousand two hundred fifty-three'),\n(2079, 35572, 'thirty-five thousand five hundred seventy-two'),\n(2080, 71690, 'seventy-one thousand six hundred ninety'),\n(2081, 39705, 'thirty-nine thousand seven hundred five'),\n(2082, 82133, 'eighty-two thousand one hundred thirty-three'),\n(2083, 86963, 'eighty-six thousand nine hundred sixty-three'),\n(2084, 42539, 'forty-two thousand five hundred thirty-nine'),\n(2085, 85308, 'eighty-five thousand three hundred eight'),\n(2086, 6880, 'six thousand eight hundred eighty'),\n(2087, 71638, 'seventy-one thousand six hundred thirty-eight'),\n(2088, 49157, 'forty-nine thousand one hundred fifty-seven'),\n(2089, 60099, 'sixty thousand ninety-nine'),\n(2090, 35743, 'thirty-five thousand seven hundred forty-three'),\n(2091, 45104, 'forty-five thousand one hundred four'),\n(2092, 77407, 'seventy-seven thousand four hundred seven'),\n(2093, 1195, 'one thousand one hundred ninety-five'),\n(2094, 26211, 'twenty-six thousand two hundred eleven'),\n(2095, 54913, 'fifty-four thousand nine hundred thirteen'),\n(2096, 3, 'three'),\n(2097, 18998, 'eighteen thousand nine hundred ninety-eight'),\n(2098, 20280, 'twenty thousand two hundred eighty'),\n(2099, 57239, 'fifty-seven thousand two hundred thirty-nine'),\n(2100, 90306, 'ninety thousand three hundred six'),\n(2101, 10035, 'ten thousand thirty-five'),\n(2102, 69872, 'sixty-nine thousand eight hundred seventy-two'),\n(2103, 88639, 'eighty-eight thousand six hundred thirty-nine'),\n(2104, 58066, 'fifty-eight thousand sixty-six'),\n(2105, 93758, 'ninety-three thousand seven hundred fifty-eight'),\n(2106, 87206, 'eighty-seven thousand two hundred six'),\n(2107, 24001, 'twenty-four thousand one'),\n(2108, 69318, 'sixty-nine thousand three hundred eighteen'),\n(2109, 67822, 'sixty-seven thousand eight hundred twenty-two'),\n(2110, 89055, 'eighty-nine thousand fifty-five'),\n(2111, 2312, 'two thousand three hundred twelve'),\n(2112, 67472, 'sixty-seven thousand four hundred seventy-two'),\n(2113, 2197, 'two thousand one hundred ninety-seven'),\n(2114, 51272, 'fifty-one thousand two hundred seventy-two'),\n(2115, 10536, 'ten thousand five hundred thirty-six'),\n(2116, 36248, 'thirty-six thousand two hundred forty-eight'),\n(2117, 74010, 'seventy-four thousand ten'),\n(2118, 67864, 'sixty-seven thousand eight hundred sixty-four'),\n(2119, 83737, 'eighty-three thousand seven hundred thirty-seven'),\n(2120, 47560, 'forty-seven thousand five hundred sixty'),\n(2121, 93387, 'ninety-three thousand three hundred eighty-seven'),\n(2122, 70188, 'seventy thousand one hundred eighty-eight'),\n(2123, 91976, 'ninety-one thousand nine hundred seventy-six'),\n(2124, 69804, 'sixty-nine thousand eight hundred four'),\n(2125, 6141, 'six thousand one hundred forty-one'),\n(2126, 41284, 'forty-one thousand two hundred eighty-four'),\n(2127, 89238, 'eighty-nine thousand two hundred thirty-eight'),\n(2128, 5069, 'five thousand sixty-nine'),\n(2129, 40242, 'forty thousand two hundred forty-two'),\n(2130, 82623, 'eighty-two thousand six hundred twenty-three'),\n(2131, 21387, 'twenty-one thousand three hundred eighty-seven'),\n(2132, 13746, 'thirteen thousand seven hundred forty-six'),\n(2133, 61939, 'sixty-one thousand nine hundred thirty-nine'),\n(2134, 64398, 'sixty-four thousand three hundred ninety-eight'),\n(2135, 21549, 'twenty-one thousand five hundred forty-nine'),\n(2136, 97911, 'ninety-seven thousand nine hundred eleven'),\n(2137, 35818, 'thirty-five thousand eight hundred eighteen'),\n(2138, 51233, 'fifty-one thousand two hundred thirty-three'),\n(2139, 33356, 'thirty-three thousand three hundred fifty-six'),\n(2140, 38959, 'thirty-eight thousand nine hundred fifty-nine'),\n(2141, 58251, 'fifty-eight thousand two hundred fifty-one'),\n(2142, 9259, 'nine thousand two hundred fifty-nine'),\n(2143, 53169, 'fifty-three thousand one hundred sixty-nine'),\n(2144, 49251, 'forty-nine thousand two hundred fifty-one'),\n(2145, 43461, 'forty-three thousand four hundred sixty-one'),\n(2146, 34150, 'thirty-four thousand one hundred fifty'),\n(2147, 55577, 'fifty-five thousand five hundred seventy-seven'),\n(2148, 63376, 'sixty-three thousand three hundred seventy-six'),\n(2149, 25029, 'twenty-five thousand twenty-nine'),\n(2150, 28149, 'twenty-eight thousand one hundred forty-nine'),\n(2151, 28311, 'twenty-eight thousand three hundred eleven'),\n(2152, 5249, 'five thousand two hundred forty-nine'),\n(2153, 85526, 'eighty-five thousand five hundred twenty-six'),\n(2154, 43414, 'forty-three thousand four hundred fourteen'),\n(2155, 47719, 'forty-seven thousand seven hundred nineteen'),\n(2156, 39694, 'thirty-nine thousand six hundred ninety-four'),\n(2157, 32096, 'thirty-two thousand ninety-six'),\n(2158, 27455, 'twenty-seven thousand four hundred fifty-five'),\n(2159, 61155, 'sixty-one thousand one hundred fifty-five'),\n(2160, 9475, 'nine thousand four hundred seventy-five'),\n(2161, 43672, 'forty-three thousand six hundred seventy-two'),\n(2162, 56556, 'fifty-six thousand five hundred fifty-six'),\n(2163, 36973, 'thirty-six thousand nine hundred seventy-three'),\n(2164, 85094, 'eighty-five thousand ninety-four'),\n(2165, 68290, 'sixty-eight thousand two hundred ninety'),\n(2166, 27193, 'twenty-seven thousand one hundred ninety-three'),\n(2167, 31592, 'thirty-one thousand five hundred ninety-two'),\n(2168, 51130, 'fifty-one thousand one hundred thirty'),\n(2169, 74563, 'seventy-four thousand five hundred sixty-three'),\n(2170, 15013, 'fifteen thousand thirteen'),\n(2171, 80523, 'eighty thousand five hundred twenty-three'),\n(2172, 22, 'twenty-two'),\n(2173, 95473, 'ninety-five thousand four hundred seventy-three'),\n(2174, 93807, 'ninety-three thousand eight hundred seven'),\n(2175, 42106, 'forty-two thousand one hundred six'),\n(2176, 78199, 'seventy-eight thousand one hundred ninety-nine'),\n(2177, 5356, 'five thousand three hundred fifty-six'),\n(2178, 19195, 'nineteen thousand one hundred ninety-five'),\n(2179, 80433, 'eighty thousand four hundred thirty-three'),\n(2180, 62456, 'sixty-two thousand four hundred fifty-six'),\n(2181, 85223, 'eighty-five thousand two hundred twenty-three'),\n(2182, 72599, 'seventy-two thousand five hundred ninety-nine'),\n(2183, 97420, 'ninety-seven thousand four hundred twenty'),\n(2184, 27856, 'twenty-seven thousand eight hundred fifty-six'),\n(2185, 95101, 'ninety-five thousand one hundred one'),\n(2186, 8371, 'eight thousand three hundred seventy-one'),\n(2187, 14046, 'fourteen thousand forty-six'),\n(2188, 6270, 'six thousand two hundred seventy'),\n(2189, 46201, 'forty-six thousand two hundred one'),\n(2190, 78681, 'seventy-eight thousand six hundred eighty-one'),\n(2191, 32539, 'thirty-two thousand five hundred thirty-nine'),\n(2192, 95630, 'ninety-five thousand six hundred thirty'),\n(2193, 99263, 'ninety-nine thousand two hundred sixty-three'),\n(2194, 80471, 'eighty thousand four hundred seventy-one'),\n(2195, 36378, 'thirty-six thousand three hundred seventy-eight'),\n(2196, 36099, 'thirty-six thousand ninety-nine'),\n(2197, 64056, 'sixty-four thousand fifty-six'),\n(2198, 7431, 'seven thousand four hundred thirty-one'),\n(2199, 48623, 'forty-eight thousand six hundred twenty-three'),\n(2200, 29058, 'twenty-nine thousand fifty-eight'),\n(2201, 24829, 'twenty-four thousand eight hundred twenty-nine'),\n(2202, 65681, 'sixty-five thousand six hundred eighty-one'),\n(2203, 33971, 'thirty-three thousand nine hundred seventy-one'),\n(2204, 57254, 'fifty-seven thousand two hundred fifty-four'),\n(2205, 96450, 'ninety-six thousand four hundred fifty'),\n(2206, 71274, 'seventy-one thousand two hundred seventy-four'),\n(2207, 61255, 'sixty-one thousand two hundred fifty-five'),\n(2208, 86567, 'eighty-six thousand five hundred sixty-seven'),\n(2209, 26341, 'twenty-six thousand three hundred forty-one'),\n(2210, 35651, 'thirty-five thousand six hundred fifty-one'),\n(2211, 29930, 'twenty-nine thousand nine hundred thirty'),\n(2212, 8986, 'eight thousand nine hundred eighty-six'),\n(2213, 70650, 'seventy thousand six hundred fifty'),\n(2214, 25365, 'twenty-five thousand three hundred sixty-five'),\n(2215, 50253, 'fifty thousand two hundred fifty-three'),\n(2216, 22647, 'twenty-two thousand six hundred forty-seven'),\n(2217, 5939, 'five thousand nine hundred thirty-nine'),\n(2218, 21467, 'twenty-one thousand four hundred sixty-seven'),\n(2219, 60173, 'sixty thousand one hundred seventy-three'),\n(2220, 65345, 'sixty-five thousand three hundred forty-five'),\n(2221, 17820, 'seventeen thousand eight hundred twenty'),\n(2222, 65933, 'sixty-five thousand nine hundred thirty-three'),\n(2223, 10228, 'ten thousand two hundred twenty-eight'),\n(2224, 32722, 'thirty-two thousand seven hundred twenty-two'),\n(2225, 19795, 'nineteen thousand seven hundred ninety-five'),\n(2226, 41464, 'forty-one thousand four hundred sixty-four'),\n(2227, 65388, 'sixty-five thousand three hundred eighty-eight'),\n(2228, 19735, 'nineteen thousand seven hundred thirty-five'),\n(2229, 45011, 'forty-five thousand eleven'),\n(2230, 37315, 'thirty-seven thousand three hundred fifteen'),\n(2231, 53420, 'fifty-three thousand four hundred twenty'),\n(2232, 13137, 'thirteen thousand one hundred thirty-seven'),\n(2233, 89350, 'eighty-nine thousand three hundred fifty'),\n(2234, 11233, 'eleven thousand two hundred thirty-three'),\n(2235, 64599, 'sixty-four thousand five hundred ninety-nine'),\n(2236, 22046, 'twenty-two thousand forty-six'),\n(2237, 98274, 'ninety-eight thousand two hundred seventy-four'),\n(2238, 72470, 'seventy-two thousand four hundred seventy'),\n(2239, 587, 'five hundred eighty-seven'),\n(2240, 75875, 'seventy-five thousand eight hundred seventy-five'),\n(2241, 29684, 'twenty-nine thousand six hundred eighty-four'),\n(2242, 89957, 'eighty-nine thousand nine hundred fifty-seven'),\n(2243, 37141, 'thirty-seven thousand one hundred forty-one'),\n(2244, 42203, 'forty-two thousand two hundred three'),\n(2245, 7109, 'seven thousand one hundred nine'),\n(2246, 3368, 'three thousand three hundred sixty-eight'),\n(2247, 12747, 'twelve thousand seven hundred forty-seven'),\n(2248, 3344, 'three thousand three hundred forty-four'),\n(2249, 70493, 'seventy thousand four hundred ninety-three'),\n(2250, 74214, 'seventy-four thousand two hundred fourteen'),\n(2251, 36198, 'thirty-six thousand one hundred ninety-eight'),\n(2252, 86536, 'eighty-six thousand five hundred thirty-six'),\n(2253, 15696, 'fifteen thousand six hundred ninety-six'),\n(2254, 35018, 'thirty-five thousand eighteen'),\n(2255, 67545, 'sixty-seven thousand five hundred forty-five'),\n(2256, 31493, 'thirty-one thousand four hundred ninety-three'),\n(2257, 98082, 'ninety-eight thousand eighty-two'),\n(2258, 19480, 'nineteen thousand four hundred eighty'),\n(2259, 64459, 'sixty-four thousand four hundred fifty-nine'),\n(2260, 56855, 'fifty-six thousand eight hundred fifty-five'),\n(2261, 90207, 'ninety thousand two hundred seven'),\n(2262, 33924, 'thirty-three thousand nine hundred twenty-four'),\n(2263, 97787, 'ninety-seven thousand seven hundred eighty-seven'),\n(2264, 9831, 'nine thousand eight hundred thirty-one'),\n(2265, 96341, 'ninety-six thousand three hundred forty-one'),\n(2266, 94285, 'ninety-four thousand two hundred eighty-five'),\n(2267, 38535, 'thirty-eight thousand five hundred thirty-five'),\n(2268, 18406, 'eighteen thousand four hundred six'),\n(2269, 41884, 'forty-one thousand eight hundred eighty-four'),\n(2270, 27215, 'twenty-seven thousand two hundred fifteen'),\n(2271, 78374, 'seventy-eight thousand three hundred seventy-four'),\n(2272, 70693, 'seventy thousand six hundred ninety-three'),\n(2273, 96026, 'ninety-six thousand twenty-six'),\n(2274, 87994, 'eighty-seven thousand nine hundred ninety-four'),\n(2275, 45819, 'forty-five thousand eight hundred nineteen'),\n(2276, 52336, 'fifty-two thousand three hundred thirty-six'),\n(2277, 37564, 'thirty-seven thousand five hundred sixty-four'),\n(2278, 90518, 'ninety thousand five hundred eighteen'),\n(2279, 6198, 'six thousand one hundred ninety-eight'),\n(2280, 64602, 'sixty-four thousand six hundred two'),\n(2281, 74861, 'seventy-four thousand eight hundred sixty-one'),\n(2282, 99850, 'ninety-nine thousand eight hundred fifty'),\n(2283, 93344, 'ninety-three thousand three hundred forty-four'),\n(2284, 83943, 'eighty-three thousand nine hundred forty-three'),\n(2285, 89998, 'eighty-nine thousand nine hundred ninety-eight'),\n(2286, 27925, 'twenty-seven thousand nine hundred twenty-five'),\n(2287, 78320, 'seventy-eight thousand three hundred twenty'),\n(2288, 6201, 'six thousand two hundred one'),\n(2289, 41579, 'forty-one thousand five hundred seventy-nine'),\n(2290, 70654, 'seventy thousand six hundred fifty-four'),\n(2291, 44328, 'forty-four thousand three hundred twenty-eight'),\n(2292, 70637, 'seventy thousand six hundred thirty-seven'),\n(2293, 51584, 'fifty-one thousand five hundred eighty-four'),\n(2294, 40019, 'forty thousand nineteen'),\n(2295, 4733, 'four thousand seven hundred thirty-three'),\n(2296, 63893, 'sixty-three thousand eight hundred ninety-three'),\n(2297, 21551, 'twenty-one thousand five hundred fifty-one'),\n(2298, 72776, 'seventy-two thousand seven hundred seventy-six'),\n(2299, 73771, 'seventy-three thousand seven hundred seventy-one'),\n(2300, 26461, 'twenty-six thousand four hundred sixty-one'),\n(2301, 51916, 'fifty-one thousand nine hundred sixteen'),\n(2302, 7470, 'seven thousand four hundred seventy'),\n(2303, 26176, 'twenty-six thousand one hundred seventy-six'),\n(2304, 28194, 'twenty-eight thousand one hundred ninety-four'),\n(2305, 71326, 'seventy-one thousand three hundred twenty-six'),\n(2306, 19033, 'nineteen thousand thirty-three'),\n(2307, 10179, 'ten thousand one hundred seventy-nine'),\n(2308, 51575, 'fifty-one thousand five hundred seventy-five'),\n(2309, 37690, 'thirty-seven thousand six hundred ninety'),\n(2310, 15021, 'fifteen thousand twenty-one'),\n(2311, 47954, 'forty-seven thousand nine hundred fifty-four'),\n(2312, 99373, 'ninety-nine thousand three hundred seventy-three'),\n(2313, 60636, 'sixty thousand six hundred thirty-six'),\n(2314, 40008, 'forty thousand eight'),\n(2315, 23115, 'twenty-three thousand one hundred fifteen'),\n(2316, 83784, 'eighty-three thousand seven hundred eighty-four'),\n(2317, 97564, 'ninety-seven thousand five hundred sixty-four'),\n(2318, 23192, 'twenty-three thousand one hundred ninety-two'),\n(2319, 35700, 'thirty-five thousand seven hundred'),\n(2320, 23968, 'twenty-three thousand nine hundred sixty-eight'),\n(2321, 30846, 'thirty thousand eight hundred forty-six'),\n(2322, 97968, 'ninety-seven thousand nine hundred sixty-eight'),\n(2323, 15842, 'fifteen thousand eight hundred forty-two'),\n(2324, 13572, 'thirteen thousand five hundred seventy-two'),\n(2325, 17630, 'seventeen thousand six hundred thirty'),\n(2326, 74055, 'seventy-four thousand fifty-five'),\n(2327, 25273, 'twenty-five thousand two hundred seventy-three'),\n(2328, 39041, 'thirty-nine thousand forty-one'),\n(2329, 11972, 'eleven thousand nine hundred seventy-two'),\n(2330, 33519, 'thirty-three thousand five hundred nineteen'),\n(2331, 35065, 'thirty-five thousand sixty-five'),\n(2332, 65148, 'sixty-five thousand one hundred forty-eight'),\n(2333, 60959, 'sixty thousand nine hundred fifty-nine'),\n(2334, 96394, 'ninety-six thousand three hundred ninety-four'),\n(2335, 64307, 'sixty-four thousand three hundred seven'),\n(2336, 45596, 'forty-five thousand five hundred ninety-six'),\n(2337, 94741, 'ninety-four thousand seven hundred forty-one'),\n(2338, 315, 'three hundred fifteen'),\n(2339, 92997, 'ninety-two thousand nine hundred ninety-seven'),\n(2340, 61307, 'sixty-one thousand three hundred seven'),\n(2341, 25247, 'twenty-five thousand two hundred forty-seven'),\n(2342, 43658, 'forty-three thousand six hundred fifty-eight'),\n(2343, 76134, 'seventy-six thousand one hundred thirty-four'),\n(2344, 8727, 'eight thousand seven hundred twenty-seven'),\n(2345, 82124, 'eighty-two thousand one hundred twenty-four'),\n(2346, 94208, 'ninety-four thousand two hundred eight'),\n(2347, 83546, 'eighty-three thousand five hundred forty-six'),\n(2348, 80575, 'eighty thousand five hundred seventy-five'),\n(2349, 96566, 'ninety-six thousand five hundred sixty-six'),\n(2350, 52045, 'fifty-two thousand forty-five'),\n(2351, 37304, 'thirty-seven thousand three hundred four'),\n(2352, 53861, 'fifty-three thousand eight hundred sixty-one'),\n(2353, 40200, 'forty thousand two hundred'),\n(2354, 67604, 'sixty-seven thousand six hundred four'),\n(2355, 72285, 'seventy-two thousand two hundred eighty-five'),\n(2356, 60117, 'sixty thousand one hundred seventeen'),\n(2357, 28125, 'twenty-eight thousand one hundred twenty-five'),\n(2358, 97088, 'ninety-seven thousand eighty-eight'),\n(2359, 73809, 'seventy-three thousand eight hundred nine'),\n(2360, 89593, 'eighty-nine thousand five hundred ninety-three'),\n(2361, 80981, 'eighty thousand nine hundred eighty-one'),\n(2362, 38214, 'thirty-eight thousand two hundred fourteen'),\n(2363, 63465, 'sixty-three thousand four hundred sixty-five'),\n(2364, 46151, 'forty-six thousand one hundred fifty-one'),\n(2365, 66353, 'sixty-six thousand three hundred fifty-three'),\n(2366, 27544, 'twenty-seven thousand five hundred forty-four'),\n(2367, 13517, 'thirteen thousand five hundred seventeen'),\n(2368, 43298, 'forty-three thousand two hundred ninety-eight'),\n(2369, 3013, 'three thousand thirteen'),\n(2370, 43673, 'forty-three thousand six hundred seventy-three'),\n(2371, 89406, 'eighty-nine thousand four hundred six'),\n(2372, 16649, 'sixteen thousand six hundred forty-nine'),\n(2373, 58159, 'fifty-eight thousand one hundred fifty-nine'),\n(2374, 72424, 'seventy-two thousand four hundred twenty-four'),\n(2375, 28780, 'twenty-eight thousand seven hundred eighty'),\n(2376, 15716, 'fifteen thousand seven hundred sixteen'),\n(2377, 91549, 'ninety-one thousand five hundred forty-nine'),\n(2378, 83986, 'eighty-three thousand nine hundred eighty-six'),\n(2379, 29747, 'twenty-nine thousand seven hundred forty-seven'),\n(2380, 82477, 'eighty-two thousand four hundred seventy-seven'),\n(2381, 80074, 'eighty thousand seventy-four'),\n(2382, 96058, 'ninety-six thousand fifty-eight'),\n(2383, 89571, 'eighty-nine thousand five hundred seventy-one'),\n(2384, 26561, 'twenty-six thousand five hundred sixty-one'),\n(2385, 32468, 'thirty-two thousand four hundred sixty-eight'),\n(2386, 16669, 'sixteen thousand six hundred sixty-nine'),\n(2387, 41302, 'forty-one thousand three hundred two'),\n(2388, 75807, 'seventy-five thousand eight hundred seven'),\n(2389, 28804, 'twenty-eight thousand eight hundred four'),\n(2390, 36879, 'thirty-six thousand eight hundred seventy-nine'),\n(2391, 96669, 'ninety-six thousand six hundred sixty-nine'),\n(2392, 90342, 'ninety thousand three hundred forty-two'),\n(2393, 7542, 'seven thousand five hundred forty-two'),\n(2394, 47970, 'forty-seven thousand nine hundred seventy'),\n(2395, 92076, 'ninety-two thousand seventy-six'),\n(2396, 39852, 'thirty-nine thousand eight hundred fifty-two'),\n(2397, 38803, 'thirty-eight thousand eight hundred three'),\n(2398, 19442, 'nineteen thousand four hundred forty-two'),\n(2399, 78578, 'seventy-eight thousand five hundred seventy-eight'),\n(2400, 74903, 'seventy-four thousand nine hundred three'),\n(2401, 87725, 'eighty-seven thousand seven hundred twenty-five'),\n(2402, 87059, 'eighty-seven thousand fifty-nine'),\n(2403, 15772, 'fifteen thousand seven hundred seventy-two'),\n(2404, 17631, 'seventeen thousand six hundred thirty-one'),\n(2405, 15798, 'fifteen thousand seven hundred ninety-eight'),\n(2406, 43104, 'forty-three thousand one hundred four'),\n(2407, 1195, 'one thousand one hundred ninety-five'),\n(2408, 43211, 'forty-three thousand two hundred eleven'),\n(2409, 73078, 'seventy-three thousand seventy-eight'),\n(2410, 23976, 'twenty-three thousand nine hundred seventy-six'),\n(2411, 63319, 'sixty-three thousand three hundred nineteen'),\n(2412, 89991, 'eighty-nine thousand nine hundred ninety-one'),\n(2413, 71907, 'seventy-one thousand nine hundred seven'),\n(2414, 45419, 'forty-five thousand four hundred nineteen'),\n(2415, 51615, 'fifty-one thousand six hundred fifteen'),\n(2416, 28240, 'twenty-eight thousand two hundred forty'),\n(2417, 55834, 'fifty-five thousand eight hundred thirty-four'),\n(2418, 77916, 'seventy-seven thousand nine hundred sixteen'),\n(2419, 81683, 'eighty-one thousand six hundred eighty-three'),\n(2420, 56127, 'fifty-six thousand one hundred twenty-seven'),\n(2421, 11304, 'eleven thousand three hundred four'),\n(2422, 48279, 'forty-eight thousand two hundred seventy-nine'),\n(2423, 93430, 'ninety-three thousand four hundred thirty'),\n(2424, 85293, 'eighty-five thousand two hundred ninety-three'),\n(2425, 71015, 'seventy-one thousand fifteen'),\n(2426, 69462, 'sixty-nine thousand four hundred sixty-two'),\n(2427, 27337, 'twenty-seven thousand three hundred thirty-seven'),\n(2428, 12663, 'twelve thousand six hundred sixty-three'),\n(2429, 20226, 'twenty thousand two hundred twenty-six'),\n(2430, 52823, 'fifty-two thousand eight hundred twenty-three'),\n(2431, 13894, 'thirteen thousand eight hundred ninety-four'),\n(2432, 15928, 'fifteen thousand nine hundred twenty-eight'),\n(2433, 98981, 'ninety-eight thousand nine hundred eighty-one'),\n(2434, 90676, 'ninety thousand six hundred seventy-six'),\n(2435, 42296, 'forty-two thousand two hundred ninety-six'),\n(2436, 22083, 'twenty-two thousand eighty-three'),\n(2437, 75853, 'seventy-five thousand eight hundred fifty-three'),\n(2438, 18942, 'eighteen thousand nine hundred forty-two'),\n(2439, 81482, 'eighty-one thousand four hundred eighty-two'),\n(2440, 1246, 'one thousand two hundred forty-six'),\n(2441, 61614, 'sixty-one thousand six hundred fourteen'),\n(2442, 31021, 'thirty-one thousand twenty-one'),\n(2443, 98151, 'ninety-eight thousand one hundred fifty-one'),\n(2444, 6676, 'six thousand six hundred seventy-six'),\n(2445, 45247, 'forty-five thousand two hundred forty-seven'),\n(2446, 54998, 'fifty-four thousand nine hundred ninety-eight'),\n(2447, 16592, 'sixteen thousand five hundred ninety-two'),\n(2448, 35662, 'thirty-five thousand six hundred sixty-two'),\n(2449, 76092, 'seventy-six thousand ninety-two'),\n(2450, 52, 'fifty-two'),\n(2451, 29506, 'twenty-nine thousand five hundred six'),\n(2452, 851, 'eight hundred fifty-one'),\n(2453, 40062, 'forty thousand sixty-two'),\n(2454, 28317, 'twenty-eight thousand three hundred seventeen'),\n(2455, 37254, 'thirty-seven thousand two hundred fifty-four'),\n(2456, 36890, 'thirty-six thousand eight hundred ninety'),\n(2457, 19283, 'nineteen thousand two hundred eighty-three'),\n(2458, 36251, 'thirty-six thousand two hundred fifty-one'),\n(2459, 67984, 'sixty-seven thousand nine hundred eighty-four'),\n(2460, 67460, 'sixty-seven thousand four hundred sixty'),\n(2461, 76465, 'seventy-six thousand four hundred sixty-five'),\n(2462, 50543, 'fifty thousand five hundred forty-three'),\n(2463, 51509, 'fifty-one thousand five hundred nine'),\n(2464, 98584, 'ninety-eight thousand five hundred eighty-four'),\n(2465, 4214, 'four thousand two hundred fourteen'),\n(2466, 93388, 'ninety-three thousand three hundred eighty-eight'),\n(2467, 62723, 'sixty-two thousand seven hundred twenty-three'),\n(2468, 59784, 'fifty-nine thousand seven hundred eighty-four'),\n(2469, 39638, 'thirty-nine thousand six hundred thirty-eight'),\n(2470, 15730, 'fifteen thousand seven hundred thirty'),\n(2471, 96301, 'ninety-six thousand three hundred one'),\n(2472, 22050, 'twenty-two thousand fifty'),\n(2473, 1017, 'one thousand seventeen'),\n(2474, 24030, 'twenty-four thousand thirty'),\n(2475, 38099, 'thirty-eight thousand ninety-nine'),\n(2476, 32218, 'thirty-two thousand two hundred eighteen'),\n(2477, 20023, 'twenty thousand twenty-three'),\n(2478, 44951, 'forty-four thousand nine hundred fifty-one'),\n(2479, 72567, 'seventy-two thousand five hundred sixty-seven'),\n(2480, 31626, 'thirty-one thousand six hundred twenty-six'),\n(2481, 72593, 'seventy-two thousand five hundred ninety-three'),\n(2482, 54291, 'fifty-four thousand two hundred ninety-one'),\n(2483, 83063, 'eighty-three thousand sixty-three'),\n(2484, 13836, 'thirteen thousand eight hundred thirty-six'),\n(2485, 41860, 'forty-one thousand eight hundred sixty'),\n(2486, 89723, 'eighty-nine thousand seven hundred twenty-three'),\n(2487, 14732, 'fourteen thousand seven hundred thirty-two'),\n(2488, 15002, 'fifteen thousand two'),\n(2489, 92065, 'ninety-two thousand sixty-five'),\n(2490, 40067, 'forty thousand sixty-seven'),\n(2491, 57828, 'fifty-seven thousand eight hundred twenty-eight'),\n(2492, 85335, 'eighty-five thousand three hundred thirty-five'),\n(2493, 10602, 'ten thousand six hundred two'),\n(2494, 1476, 'one thousand four hundred seventy-six'),\n(2495, 93934, 'ninety-three thousand nine hundred thirty-four'),\n(2496, 78768, 'seventy-eight thousand seven hundred sixty-eight'),\n(2497, 71835, 'seventy-one thousand eight hundred thirty-five'),\n(2498, 55943, 'fifty-five thousand nine hundred forty-three'),\n(2499, 33941, 'thirty-three thousand nine hundred forty-one'),\n(2500, 94279, 'ninety-four thousand two hundred seventy-nine'),\n(2501, 15291, 'fifteen thousand two hundred ninety-one'),\n(2502, 41682, 'forty-one thousand six hundred eighty-two'),\n(2503, 81048, 'eighty-one thousand forty-eight'),\n(2504, 87177, 'eighty-seven thousand one hundred seventy-seven'),\n(2505, 6726, 'six thousand seven hundred twenty-six'),\n(2506, 75433, 'seventy-five thousand four hundred thirty-three'),\n(2507, 50001, 'fifty thousand one'),\n(2508, 65321, 'sixty-five thousand three hundred twenty-one'),\n(2509, 95932, 'ninety-five thousand nine hundred thirty-two'),\n(2510, 50745, 'fifty thousand seven hundred forty-five'),\n(2511, 44178, 'forty-four thousand one hundred seventy-eight'),\n(2512, 4666, 'four thousand six hundred sixty-six'),\n(2513, 86217, 'eighty-six thousand two hundred seventeen'),\n(2514, 29911, 'twenty-nine thousand nine hundred eleven'),\n(2515, 32937, 'thirty-two thousand nine hundred thirty-seven'),\n(2516, 53630, 'fifty-three thousand six hundred thirty'),\n(2517, 2615, 'two thousand six hundred fifteen'),\n(2518, 2368, 'two thousand three hundred sixty-eight'),\n(2519, 29127, 'twenty-nine thousand one hundred twenty-seven'),\n(2520, 5200, 'five thousand two hundred'),\n(2521, 59612, 'fifty-nine thousand six hundred twelve'),\n(2522, 28958, 'twenty-eight thousand nine hundred fifty-eight'),\n(2523, 5703, 'five thousand seven hundred three'),\n(2524, 80642, 'eighty thousand six hundred forty-two'),\n(2525, 45690, 'forty-five thousand six hundred ninety'),\n(2526, 49569, 'forty-nine thousand five hundred sixty-nine'),\n(2527, 7904, 'seven thousand nine hundred four'),\n(2528, 11110, 'eleven thousand one hundred ten'),\n(2529, 98775, 'ninety-eight thousand seven hundred seventy-five'),\n(2530, 20170, 'twenty thousand one hundred seventy'),\n(2531, 17019, 'seventeen thousand nineteen'),\n(2532, 96331, 'ninety-six thousand three hundred thirty-one'),\n(2533, 65337, 'sixty-five thousand three hundred thirty-seven'),\n(2534, 38354, 'thirty-eight thousand three hundred fifty-four'),\n(2535, 60268, 'sixty thousand two hundred sixty-eight'),\n(2536, 30622, 'thirty thousand six hundred twenty-two'),\n(2537, 32805, 'thirty-two thousand eight hundred five'),\n(2538, 49165, 'forty-nine thousand one hundred sixty-five'),\n(2539, 84538, 'eighty-four thousand five hundred thirty-eight'),\n(2540, 32316, 'thirty-two thousand three hundred sixteen'),\n(2541, 57707, 'fifty-seven thousand seven hundred seven'),\n(2542, 95842, 'ninety-five thousand eight hundred forty-two'),\n(2543, 14067, 'fourteen thousand sixty-seven'),\n(2544, 45424, 'forty-five thousand four hundred twenty-four'),\n(2545, 13272, 'thirteen thousand two hundred seventy-two'),\n(2546, 94806, 'ninety-four thousand eight hundred six'),\n(2547, 56695, 'fifty-six thousand six hundred ninety-five'),\n(2548, 41079, 'forty-one thousand seventy-nine'),\n(2549, 73507, 'seventy-three thousand five hundred seven'),\n(2550, 49289, 'forty-nine thousand two hundred eighty-nine'),\n(2551, 16669, 'sixteen thousand six hundred sixty-nine'),\n(2552, 53495, 'fifty-three thousand four hundred ninety-five'),\n(2553, 33072, 'thirty-three thousand seventy-two'),\n(2554, 6951, 'six thousand nine hundred fifty-one'),\n(2555, 77249, 'seventy-seven thousand two hundred forty-nine'),\n(2556, 33756, 'thirty-three thousand seven hundred fifty-six'),\n(2557, 95757, 'ninety-five thousand seven hundred fifty-seven'),\n(2558, 60092, 'sixty thousand ninety-two'),\n(2559, 61249, 'sixty-one thousand two hundred forty-nine'),\n(2560, 34995, 'thirty-four thousand nine hundred ninety-five'),\n(2561, 83682, 'eighty-three thousand six hundred eighty-two'),\n(2562, 57389, 'fifty-seven thousand three hundred eighty-nine'),\n(2563, 12038, 'twelve thousand thirty-eight'),\n(2564, 25346, 'twenty-five thousand three hundred forty-six'),\n(2565, 21634, 'twenty-one thousand six hundred thirty-four'),\n(2566, 90352, 'ninety thousand three hundred fifty-two'),\n(2567, 908, 'nine hundred eight'),\n(2568, 29124, 'twenty-nine thousand one hundred twenty-four'),\n(2569, 13884, 'thirteen thousand eight hundred eighty-four'),\n(2570, 53757, 'fifty-three thousand seven hundred fifty-seven'),\n(2571, 76121, 'seventy-six thousand one hundred twenty-one'),\n(2572, 71727, 'seventy-one thousand seven hundred twenty-seven'),\n(2573, 45927, 'forty-five thousand nine hundred twenty-seven'),\n(2574, 28338, 'twenty-eight thousand three hundred thirty-eight'),\n(2575, 89504, 'eighty-nine thousand five hundred four'),\n(2576, 73450, 'seventy-three thousand four hundred fifty'),\n(2577, 19716, 'nineteen thousand seven hundred sixteen'),\n(2578, 99347, 'ninety-nine thousand three hundred forty-seven'),\n(2579, 22889, 'twenty-two thousand eight hundred eighty-nine'),\n(2580, 68280, 'sixty-eight thousand two hundred eighty'),\n(2581, 13069, 'thirteen thousand sixty-nine'),\n(2582, 13040, 'thirteen thousand forty'),\n(2583, 24883, 'twenty-four thousand eight hundred eighty-three'),\n(2584, 84595, 'eighty-four thousand five hundred ninety-five'),\n(2585, 42369, 'forty-two thousand three hundred sixty-nine'),\n(2586, 32863, 'thirty-two thousand eight hundred sixty-three'),\n(2587, 61898, 'sixty-one thousand eight hundred ninety-eight'),\n(2588, 80829, 'eighty thousand eight hundred twenty-nine'),\n(2589, 17682, 'seventeen thousand six hundred eighty-two'),\n(2590, 83951, 'eighty-three thousand nine hundred fifty-one'),\n(2591, 97139, 'ninety-seven thousand one hundred thirty-nine'),\n(2592, 62950, 'sixty-two thousand nine hundred fifty'),\n(2593, 39594, 'thirty-nine thousand five hundred ninety-four'),\n(2594, 64139, 'sixty-four thousand one hundred thirty-nine'),\n(2595, 8325, 'eight thousand three hundred twenty-five'),\n(2596, 71097, 'seventy-one thousand ninety-seven'),\n(2597, 49802, 'forty-nine thousand eight hundred two'),\n(2598, 23014, 'twenty-three thousand fourteen'),\n(2599, 39450, 'thirty-nine thousand four hundred fifty'),\n(2600, 23316, 'twenty-three thousand three hundred sixteen'),\n(2601, 44319, 'forty-four thousand three hundred nineteen'),\n(2602, 82480, 'eighty-two thousand four hundred eighty'),\n(2603, 35403, 'thirty-five thousand four hundred three'),\n(2604, 13285, 'thirteen thousand two hundred eighty-five'),\n(2605, 6978, 'six thousand nine hundred seventy-eight'),\n(2606, 85095, 'eighty-five thousand ninety-five'),\n(2607, 33866, 'thirty-three thousand eight hundred sixty-six'),\n(2608, 30115, 'thirty thousand one hundred fifteen'),\n(2609, 92129, 'ninety-two thousand one hundred twenty-nine'),\n(2610, 32864, 'thirty-two thousand eight hundred sixty-four'),\n(2611, 29670, 'twenty-nine thousand six hundred seventy'),\n(2612, 75952, 'seventy-five thousand nine hundred fifty-two'),\n(2613, 70948, 'seventy thousand nine hundred forty-eight'),\n(2614, 36324, 'thirty-six thousand three hundred twenty-four'),\n(2615, 61684, 'sixty-one thousand six hundred eighty-four'),\n(2616, 85960, 'eighty-five thousand nine hundred sixty'),\n(2617, 42441, 'forty-two thousand four hundred forty-one'),\n(2618, 87302, 'eighty-seven thousand three hundred two'),\n(2619, 72994, 'seventy-two thousand nine hundred ninety-four'),\n(2620, 86981, 'eighty-six thousand nine hundred eighty-one'),\n(2621, 67309, 'sixty-seven thousand three hundred nine'),\n(2622, 22682, 'twenty-two thousand six hundred eighty-two'),\n(2623, 91063, 'ninety-one thousand sixty-three'),\n(2624, 42158, 'forty-two thousand one hundred fifty-eight'),\n(2625, 6380, 'six thousand three hundred eighty'),\n(2626, 83922, 'eighty-three thousand nine hundred twenty-two'),\n(2627, 44702, 'forty-four thousand seven hundred two'),\n(2628, 45893, 'forty-five thousand eight hundred ninety-three'),\n(2629, 91811, 'ninety-one thousand eight hundred eleven'),\n(2630, 79655, 'seventy-nine thousand six hundred fifty-five'),\n(2631, 96322, 'ninety-six thousand three hundred twenty-two'),\n(2632, 48453, 'forty-eight thousand four hundred fifty-three'),\n(2633, 37766, 'thirty-seven thousand seven hundred sixty-six'),\n(2634, 66372, 'sixty-six thousand three hundred seventy-two'),\n(2635, 43911, 'forty-three thousand nine hundred eleven'),\n(2636, 82376, 'eighty-two thousand three hundred seventy-six'),\n(2637, 74097, 'seventy-four thousand ninety-seven'),\n(2638, 98451, 'ninety-eight thousand four hundred fifty-one'),\n(2639, 56275, 'fifty-six thousand two hundred seventy-five'),\n(2640, 58468, 'fifty-eight thousand four hundred sixty-eight'),\n(2641, 41716, 'forty-one thousand seven hundred sixteen'),\n(2642, 29306, 'twenty-nine thousand three hundred six'),\n(2643, 9307, 'nine thousand three hundred seven'),\n(2644, 96633, 'ninety-six thousand six hundred thirty-three'),\n(2645, 25678, 'twenty-five thousand six hundred seventy-eight'),\n(2646, 58125, 'fifty-eight thousand one hundred twenty-five'),\n(2647, 36684, 'thirty-six thousand six hundred eighty-four'),\n(2648, 63443, 'sixty-three thousand four hundred forty-three'),\n(2649, 95563, 'ninety-five thousand five hundred sixty-three'),\n(2650, 88490, 'eighty-eight thousand four hundred ninety'),\n(2651, 83347, 'eighty-three thousand three hundred forty-seven'),\n(2652, 18205, 'eighteen thousand two hundred five'),\n(2653, 86323, 'eighty-six thousand three hundred twenty-three'),\n(2654, 49008, 'forty-nine thousand eight'),\n(2655, 75828, 'seventy-five thousand eight hundred twenty-eight'),\n(2656, 92087, 'ninety-two thousand eighty-seven'),\n(2657, 91487, 'ninety-one thousand four hundred eighty-seven'),\n(2658, 19227, 'nineteen thousand two hundred twenty-seven'),\n(2659, 78893, 'seventy-eight thousand eight hundred ninety-three'),\n(2660, 89026, 'eighty-nine thousand twenty-six'),\n(2661, 21292, 'twenty-one thousand two hundred ninety-two'),\n(2662, 77487, 'seventy-seven thousand four hundred eighty-seven'),\n(2663, 30740, 'thirty thousand seven hundred forty'),\n(2664, 46554, 'forty-six thousand five hundred fifty-four'),\n(2665, 23977, 'twenty-three thousand nine hundred seventy-seven'),\n(2666, 41773, 'forty-one thousand seven hundred seventy-three'),\n(2667, 76832, 'seventy-six thousand eight hundred thirty-two'),\n(2668, 26031, 'twenty-six thousand thirty-one'),\n(2669, 9187, 'nine thousand one hundred eighty-seven'),\n(2670, 79422, 'seventy-nine thousand four hundred twenty-two'),\n(2671, 43130, 'forty-three thousand one hundred thirty'),\n(2672, 98721, 'ninety-eight thousand seven hundred twenty-one'),\n(2673, 43493, 'forty-three thousand four hundred ninety-three'),\n(2674, 59120, 'fifty-nine thousand one hundred twenty'),\n(2675, 34743, 'thirty-four thousand seven hundred forty-three'),\n(2676, 5477, 'five thousand four hundred seventy-seven'),\n(2677, 95338, 'ninety-five thousand three hundred thirty-eight'),\n(2678, 29313, 'twenty-nine thousand three hundred thirteen'),\n(2679, 25089, 'twenty-five thousand eighty-nine'),\n(2680, 97859, 'ninety-seven thousand eight hundred fifty-nine'),\n(2681, 54424, 'fifty-four thousand four hundred twenty-four'),\n(2682, 51457, 'fifty-one thousand four hundred fifty-seven'),\n(2683, 33256, 'thirty-three thousand two hundred fifty-six'),\n(2684, 801, 'eight hundred one'),\n(2685, 31887, 'thirty-one thousand eight hundred eighty-seven'),\n(2686, 69467, 'sixty-nine thousand four hundred sixty-seven'),\n(2687, 1670, 'one thousand six hundred seventy'),\n(2688, 52565, 'fifty-two thousand five hundred sixty-five'),\n(2689, 53710, 'fifty-three thousand seven hundred ten'),\n(2690, 59890, 'fifty-nine thousand eight hundred ninety'),\n(2691, 58219, 'fifty-eight thousand two hundred nineteen'),\n(2692, 32988, 'thirty-two thousand nine hundred eighty-eight'),\n(2693, 94147, 'ninety-four thousand one hundred forty-seven'),\n(2694, 12093, 'twelve thousand ninety-three'),\n(2695, 35191, 'thirty-five thousand one hundred ninety-one'),\n(2696, 99851, 'ninety-nine thousand eight hundred fifty-one'),\n(2697, 80461, 'eighty thousand four hundred sixty-one'),\n(2698, 16576, 'sixteen thousand five hundred seventy-six'),\n(2699, 41877, 'forty-one thousand eight hundred seventy-seven'),\n(2700, 2675, 'two thousand six hundred seventy-five'),\n(2701, 1536, 'one thousand five hundred thirty-six'),\n(2702, 37067, 'thirty-seven thousand sixty-seven'),\n(2703, 30725, 'thirty thousand seven hundred twenty-five'),\n(2704, 94221, 'ninety-four thousand two hundred twenty-one'),\n(2705, 88398, 'eighty-eight thousand three hundred ninety-eight'),\n(2706, 22793, 'twenty-two thousand seven hundred ninety-three'),\n(2707, 7612, 'seven thousand six hundred twelve'),\n(2708, 58746, 'fifty-eight thousand seven hundred forty-six'),\n(2709, 33773, 'thirty-three thousand seven hundred seventy-three'),\n(2710, 99090, 'ninety-nine thousand ninety'),\n(2711, 47291, 'forty-seven thousand two hundred ninety-one'),\n(2712, 883, 'eight hundred eighty-three'),\n(2713, 65894, 'sixty-five thousand eight hundred ninety-four'),\n(2714, 83157, 'eighty-three thousand one hundred fifty-seven'),\n(2715, 48742, 'forty-eight thousand seven hundred forty-two'),\n(2716, 49917, 'forty-nine thousand nine hundred seventeen'),\n(2717, 86447, 'eighty-six thousand four hundred forty-seven'),\n(2718, 65548, 'sixty-five thousand five hundred forty-eight'),\n(2719, 3034, 'three thousand thirty-four'),\n(2720, 6189, 'six thousand one hundred eighty-nine'),\n(2721, 57782, 'fifty-seven thousand seven hundred eighty-two'),\n(2722, 67960, 'sixty-seven thousand nine hundred sixty'),\n(2723, 10192, 'ten thousand one hundred ninety-two'),\n(2724, 56062, 'fifty-six thousand sixty-two'),\n(2725, 9848, 'nine thousand eight hundred forty-eight'),\n(2726, 64339, 'sixty-four thousand three hundred thirty-nine'),\n(2727, 50834, 'fifty thousand eight hundred thirty-four'),\n(2728, 14544, 'fourteen thousand five hundred forty-four'),\n(2729, 8374, 'eight thousand three hundred seventy-four'),\n(2730, 93240, 'ninety-three thousand two hundred forty'),\n(2731, 36156, 'thirty-six thousand one hundred fifty-six'),\n(2732, 41744, 'forty-one thousand seven hundred forty-four'),\n(2733, 94738, 'ninety-four thousand seven hundred thirty-eight'),\n(2734, 17004, 'seventeen thousand four'),\n(2735, 85268, 'eighty-five thousand two hundred sixty-eight'),\n(2736, 84170, 'eighty-four thousand one hundred seventy'),\n(2737, 45120, 'forty-five thousand one hundred twenty'),\n(2738, 92340, 'ninety-two thousand three hundred forty'),\n(2739, 47942, 'forty-seven thousand nine hundred forty-two'),\n(2740, 70442, 'seventy thousand four hundred forty-two'),\n(2741, 86519, 'eighty-six thousand five hundred nineteen'),\n(2742, 56135, 'fifty-six thousand one hundred thirty-five'),\n(2743, 12326, 'twelve thousand three hundred twenty-six'),\n(2744, 50839, 'fifty thousand eight hundred thirty-nine'),\n(2745, 43007, 'forty-three thousand seven'),\n(2746, 97445, 'ninety-seven thousand four hundred forty-five'),\n(2747, 29497, 'twenty-nine thousand four hundred ninety-seven'),\n(2748, 90283, 'ninety thousand two hundred eighty-three'),\n(2749, 62830, 'sixty-two thousand eight hundred thirty'),\n(2750, 12938, 'twelve thousand nine hundred thirty-eight'),\n(2751, 38030, 'thirty-eight thousand thirty'),\n(2752, 58329, 'fifty-eight thousand three hundred twenty-nine'),\n(2753, 62846, 'sixty-two thousand eight hundred forty-six'),\n(2754, 63402, 'sixty-three thousand four hundred two'),\n(2755, 61888, 'sixty-one thousand eight hundred eighty-eight'),\n(2756, 30259, 'thirty thousand two hundred fifty-nine'),\n(2757, 78508, 'seventy-eight thousand five hundred eight'),\n(2758, 19596, 'nineteen thousand five hundred ninety-six'),\n(2759, 95602, 'ninety-five thousand six hundred two'),\n(2760, 50707, 'fifty thousand seven hundred seven'),\n(2761, 20331, 'twenty thousand three hundred thirty-one'),\n(2762, 59725, 'fifty-nine thousand seven hundred twenty-five'),\n(2763, 84974, 'eighty-four thousand nine hundred seventy-four'),\n(2764, 83930, 'eighty-three thousand nine hundred thirty'),\n(2765, 2319, 'two thousand three hundred nineteen'),\n(2766, 35416, 'thirty-five thousand four hundred sixteen'),\n(2767, 79852, 'seventy-nine thousand eight hundred fifty-two'),\n(2768, 28726, 'twenty-eight thousand seven hundred twenty-six'),\n(2769, 82891, 'eighty-two thousand eight hundred ninety-one'),\n(2770, 56494, 'fifty-six thousand four hundred ninety-four'),\n(2771, 12517, 'twelve thousand five hundred seventeen'),\n(2772, 55267, 'fifty-five thousand two hundred sixty-seven'),\n(2773, 49822, 'forty-nine thousand eight hundred twenty-two'),\n(2774, 23222, 'twenty-three thousand two hundred twenty-two'),\n(2775, 62918, 'sixty-two thousand nine hundred eighteen'),\n(2776, 74851, 'seventy-four thousand eight hundred fifty-one'),\n(2777, 59567, 'fifty-nine thousand five hundred sixty-seven'),\n(2778, 63039, 'sixty-three thousand thirty-nine'),\n(2779, 20437, 'twenty thousand four hundred thirty-seven'),\n(2780, 28309, 'twenty-eight thousand three hundred nine'),\n(2781, 7846, 'seven thousand eight hundred forty-six'),\n(2782, 69927, 'sixty-nine thousand nine hundred twenty-seven'),\n(2783, 40390, 'forty thousand three hundred ninety'),\n(2784, 12522, 'twelve thousand five hundred twenty-two'),\n(2785, 26130, 'twenty-six thousand one hundred thirty'),\n(2786, 90941, 'ninety thousand nine hundred forty-one'),\n(2787, 84617, 'eighty-four thousand six hundred seventeen'),\n(2788, 74245, 'seventy-four thousand two hundred forty-five'),\n(2789, 71727, 'seventy-one thousand seven hundred twenty-seven'),\n(2790, 97787, 'ninety-seven thousand seven hundred eighty-seven'),\n(2791, 54779, 'fifty-four thousand seven hundred seventy-nine'),\n(2792, 5189, 'five thousand one hundred eighty-nine'),\n(2793, 79474, 'seventy-nine thousand four hundred seventy-four'),\n(2794, 39272, 'thirty-nine thousand two hundred seventy-two'),\n(2795, 98320, 'ninety-eight thousand three hundred twenty'),\n(2796, 82818, 'eighty-two thousand eight hundred eighteen'),\n(2797, 24549, 'twenty-four thousand five hundred forty-nine'),\n(2798, 11815, 'eleven thousand eight hundred fifteen'),\n(2799, 86821, 'eighty-six thousand eight hundred twenty-one'),\n(2800, 38136, 'thirty-eight thousand one hundred thirty-six'),\n(2801, 84869, 'eighty-four thousand eight hundred sixty-nine'),\n(2802, 59161, 'fifty-nine thousand one hundred sixty-one'),\n(2803, 41018, 'forty-one thousand eighteen'),\n(2804, 676, 'six hundred seventy-six'),\n(2805, 13822, 'thirteen thousand eight hundred twenty-two'),\n(2806, 58913, 'fifty-eight thousand nine hundred thirteen'),\n(2807, 74789, 'seventy-four thousand seven hundred eighty-nine'),\n(2808, 82984, 'eighty-two thousand nine hundred eighty-four'),\n(2809, 61949, 'sixty-one thousand nine hundred forty-nine'),\n(2810, 81568, 'eighty-one thousand five hundred sixty-eight'),\n(2811, 46679, 'forty-six thousand six hundred seventy-nine'),\n(2812, 95766, 'ninety-five thousand seven hundred sixty-six'),\n(2813, 86952, 'eighty-six thousand nine hundred fifty-two'),\n(2814, 87132, 'eighty-seven thousand one hundred thirty-two'),\n(2815, 36084, 'thirty-six thousand eighty-four'),\n(2816, 7501, 'seven thousand five hundred one'),\n(2817, 70059, 'seventy thousand fifty-nine'),\n(2818, 65378, 'sixty-five thousand three hundred seventy-eight'),\n(2819, 97106, 'ninety-seven thousand one hundred six'),\n(2820, 22396, 'twenty-two thousand three hundred ninety-six'),\n(2821, 61705, 'sixty-one thousand seven hundred five'),\n(2822, 75344, 'seventy-five thousand three hundred forty-four'),\n(2823, 89444, 'eighty-nine thousand four hundred forty-four'),\n(2824, 74330, 'seventy-four thousand three hundred thirty'),\n(2825, 22938, 'twenty-two thousand nine hundred thirty-eight'),\n(2826, 30324, 'thirty thousand three hundred twenty-four'),\n(2827, 53687, 'fifty-three thousand six hundred eighty-seven'),\n(2828, 26628, 'twenty-six thousand six hundred twenty-eight'),\n(2829, 62886, 'sixty-two thousand eight hundred eighty-six'),\n(2830, 4714, 'four thousand seven hundred fourteen'),\n(2831, 31562, 'thirty-one thousand five hundred sixty-two'),\n(2832, 75798, 'seventy-five thousand seven hundred ninety-eight'),\n(2833, 30888, 'thirty thousand eight hundred eighty-eight'),\n(2834, 27929, 'twenty-seven thousand nine hundred twenty-nine'),\n(2835, 76758, 'seventy-six thousand seven hundred fifty-eight'),\n(2836, 23586, 'twenty-three thousand five hundred eighty-six'),\n(2837, 22704, 'twenty-two thousand seven hundred four'),\n(2838, 88191, 'eighty-eight thousand one hundred ninety-one'),\n(2839, 96482, 'ninety-six thousand four hundred eighty-two'),\n(2840, 51547, 'fifty-one thousand five hundred forty-seven'),\n(2841, 95984, 'ninety-five thousand nine hundred eighty-four'),\n(2842, 64342, 'sixty-four thousand three hundred forty-two'),\n(2843, 89357, 'eighty-nine thousand three hundred fifty-seven'),\n(2844, 14916, 'fourteen thousand nine hundred sixteen'),\n(2845, 95624, 'ninety-five thousand six hundred twenty-four'),\n(2846, 54191, 'fifty-four thousand one hundred ninety-one'),\n(2847, 52927, 'fifty-two thousand nine hundred twenty-seven'),\n(2848, 13841, 'thirteen thousand eight hundred forty-one'),\n(2849, 63983, 'sixty-three thousand nine hundred eighty-three'),\n(2850, 49712, 'forty-nine thousand seven hundred twelve'),\n(2851, 40343, 'forty thousand three hundred forty-three'),\n(2852, 11081, 'eleven thousand eighty-one'),\n(2853, 70945, 'seventy thousand nine hundred forty-five'),\n(2854, 34152, 'thirty-four thousand one hundred fifty-two'),\n(2855, 25394, 'twenty-five thousand three hundred ninety-four'),\n(2856, 75268, 'seventy-five thousand two hundred sixty-eight'),\n(2857, 91244, 'ninety-one thousand two hundred forty-four'),\n(2858, 55951, 'fifty-five thousand nine hundred fifty-one'),\n(2859, 69088, 'sixty-nine thousand eighty-eight'),\n(2860, 56537, 'fifty-six thousand five hundred thirty-seven'),\n(2861, 30024, 'thirty thousand twenty-four'),\n(2862, 9283, 'nine thousand two hundred eighty-three'),\n(2863, 92553, 'ninety-two thousand five hundred fifty-three'),\n(2864, 59970, 'fifty-nine thousand nine hundred seventy'),\n(2865, 99232, 'ninety-nine thousand two hundred thirty-two'),\n(2866, 82397, 'eighty-two thousand three hundred ninety-seven'),\n(2867, 95482, 'ninety-five thousand four hundred eighty-two'),\n(2868, 10275, 'ten thousand two hundred seventy-five'),\n(2869, 36196, 'thirty-six thousand one hundred ninety-six'),\n(2870, 11444, 'eleven thousand four hundred forty-four'),\n(2871, 83835, 'eighty-three thousand eight hundred thirty-five'),\n(2872, 74554, 'seventy-four thousand five hundred fifty-four'),\n(2873, 64832, 'sixty-four thousand eight hundred thirty-two'),\n(2874, 17103, 'seventeen thousand one hundred three'),\n(2875, 69875, 'sixty-nine thousand eight hundred seventy-five'),\n(2876, 28025, 'twenty-eight thousand twenty-five'),\n(2877, 7865, 'seven thousand eight hundred sixty-five'),\n(2878, 65144, 'sixty-five thousand one hundred forty-four'),\n(2879, 87598, 'eighty-seven thousand five hundred ninety-eight'),\n(2880, 20568, 'twenty thousand five hundred sixty-eight'),\n(2881, 94521, 'ninety-four thousand five hundred twenty-one'),\n(2882, 64094, 'sixty-four thousand ninety-four'),\n(2883, 98433, 'ninety-eight thousand four hundred thirty-three'),\n(2884, 41316, 'forty-one thousand three hundred sixteen'),\n(2885, 7100, 'seven thousand one hundred'),\n(2886, 47901, 'forty-seven thousand nine hundred one'),\n(2887, 30308, 'thirty thousand three hundred eight'),\n(2888, 79929, 'seventy-nine thousand nine hundred twenty-nine'),\n(2889, 56038, 'fifty-six thousand thirty-eight'),\n(2890, 95473, 'ninety-five thousand four hundred seventy-three'),\n(2891, 45780, 'forty-five thousand seven hundred eighty'),\n(2892, 69065, 'sixty-nine thousand sixty-five'),\n(2893, 66273, 'sixty-six thousand two hundred seventy-three'),\n(2894, 44563, 'forty-four thousand five hundred sixty-three'),\n(2895, 58999, 'fifty-eight thousand nine hundred ninety-nine'),\n(2896, 5527, 'five thousand five hundred twenty-seven'),\n(2897, 45586, 'forty-five thousand five hundred eighty-six'),\n(2898, 89539, 'eighty-nine thousand five hundred thirty-nine'),\n(2899, 30454, 'thirty thousand four hundred fifty-four'),\n(2900, 6674, 'six thousand six hundred seventy-four'),\n(2901, 92605, 'ninety-two thousand six hundred five'),\n(2902, 55570, 'fifty-five thousand five hundred seventy'),\n(2903, 6162, 'six thousand one hundred sixty-two'),\n(2904, 10969, 'ten thousand nine hundred sixty-nine'),\n(2905, 89354, 'eighty-nine thousand three hundred fifty-four'),\n(2906, 25114, 'twenty-five thousand one hundred fourteen'),\n(2907, 69084, 'sixty-nine thousand eighty-four'),\n(2908, 56522, 'fifty-six thousand five hundred twenty-two'),\n(2909, 86596, 'eighty-six thousand five hundred ninety-six'),\n(2910, 26888, 'twenty-six thousand eight hundred eighty-eight'),\n(2911, 66491, 'sixty-six thousand four hundred ninety-one'),\n(2912, 92173, 'ninety-two thousand one hundred seventy-three'),\n(2913, 99166, 'ninety-nine thousand one hundred sixty-six'),\n(2914, 48223, 'forty-eight thousand two hundred twenty-three'),\n(2915, 79492, 'seventy-nine thousand four hundred ninety-two'),\n(2916, 86920, 'eighty-six thousand nine hundred twenty'),\n(2917, 19417, 'nineteen thousand four hundred seventeen'),\n(2918, 69327, 'sixty-nine thousand three hundred twenty-seven'),\n(2919, 93837, 'ninety-three thousand eight hundred thirty-seven'),\n(2920, 1199, 'one thousand one hundred ninety-nine'),\n(2921, 5761, 'five thousand seven hundred sixty-one'),\n(2922, 34693, 'thirty-four thousand six hundred ninety-three'),\n(2923, 88188, 'eighty-eight thousand one hundred eighty-eight'),\n(2924, 81504, 'eighty-one thousand five hundred four'),\n(2925, 15327, 'fifteen thousand three hundred twenty-seven'),\n(2926, 68540, 'sixty-eight thousand five hundred forty'),\n(2927, 41482, 'forty-one thousand four hundred eighty-two'),\n(2928, 82895, 'eighty-two thousand eight hundred ninety-five'),\n(2929, 7391, 'seven thousand three hundred ninety-one'),\n(2930, 47800, 'forty-seven thousand eight hundred'),\n(2931, 7269, 'seven thousand two hundred sixty-nine'),\n(2932, 3707, 'three thousand seven hundred seven'),\n(2933, 50181, 'fifty thousand one hundred eighty-one'),\n(2934, 52643, 'fifty-two thousand six hundred forty-three'),\n(2935, 9980, 'nine thousand nine hundred eighty'),\n(2936, 92621, 'ninety-two thousand six hundred twenty-one'),\n(2937, 26730, 'twenty-six thousand seven hundred thirty'),\n(2938, 12252, 'twelve thousand two hundred fifty-two'),\n(2939, 70921, 'seventy thousand nine hundred twenty-one'),\n(2940, 66155, 'sixty-six thousand one hundred fifty-five'),\n(2941, 89187, 'eighty-nine thousand one hundred eighty-seven'),\n(2942, 15042, 'fifteen thousand forty-two'),\n(2943, 1324, 'one thousand three hundred twenty-four'),\n(2944, 6341, 'six thousand three hundred forty-one'),\n(2945, 70686, 'seventy thousand six hundred eighty-six'),\n(2946, 84209, 'eighty-four thousand two hundred nine'),\n(2947, 62032, 'sixty-two thousand thirty-two'),\n(2948, 70316, 'seventy thousand three hundred sixteen'),\n(2949, 63932, 'sixty-three thousand nine hundred thirty-two'),\n(2950, 64623, 'sixty-four thousand six hundred twenty-three'),\n(2951, 30333, 'thirty thousand three hundred thirty-three'),\n(2952, 54556, 'fifty-four thousand five hundred fifty-six'),\n(2953, 64679, 'sixty-four thousand six hundred seventy-nine'),\n(2954, 73401, 'seventy-three thousand four hundred one'),\n(2955, 79027, 'seventy-nine thousand twenty-seven'),\n(2956, 53565, 'fifty-three thousand five hundred sixty-five'),\n(2957, 77525, 'seventy-seven thousand five hundred twenty-five'),\n(2958, 45042, 'forty-five thousand forty-two'),\n(2959, 440, 'four hundred forty'),\n(2960, 75038, 'seventy-five thousand thirty-eight'),\n(2961, 90967, 'ninety thousand nine hundred sixty-seven'),\n(2962, 69347, 'sixty-nine thousand three hundred forty-seven'),\n(2963, 59055, 'fifty-nine thousand fifty-five'),\n(2964, 40643, 'forty thousand six hundred forty-three'),\n(2965, 14252, 'fourteen thousand two hundred fifty-two'),\n(2966, 75808, 'seventy-five thousand eight hundred eight'),\n(2967, 85630, 'eighty-five thousand six hundred thirty'),\n(2968, 46255, 'forty-six thousand two hundred fifty-five'),\n(2969, 35625, 'thirty-five thousand six hundred twenty-five'),\n(2970, 89525, 'eighty-nine thousand five hundred twenty-five'),\n(2971, 44141, 'forty-four thousand one hundred forty-one'),\n(2972, 42816, 'forty-two thousand eight hundred sixteen'),\n(2973, 87184, 'eighty-seven thousand one hundred eighty-four'),\n(2974, 56002, 'fifty-six thousand two'),\n(2975, 68367, 'sixty-eight thousand three hundred sixty-seven'),\n(2976, 44941, 'forty-four thousand nine hundred forty-one'),\n(2977, 2644, 'two thousand six hundred forty-four'),\n(2978, 56330, 'fifty-six thousand three hundred thirty'),\n(2979, 5202, 'five thousand two hundred two'),\n(2980, 33139, 'thirty-three thousand one hundred thirty-nine'),\n(2981, 51009, 'fifty-one thousand nine'),\n(2982, 47630, 'forty-seven thousand six hundred thirty'),\n(2983, 7461, 'seven thousand four hundred sixty-one'),\n(2984, 22446, 'twenty-two thousand four hundred forty-six'),\n(2985, 18427, 'eighteen thousand four hundred twenty-seven'),\n(2986, 37025, 'thirty-seven thousand twenty-five'),\n(2987, 18904, 'eighteen thousand nine hundred four'),\n(2988, 44794, 'forty-four thousand seven hundred ninety-four'),\n(2989, 88618, 'eighty-eight thousand six hundred eighteen'),\n(2990, 88401, 'eighty-eight thousand four hundred one'),\n(2991, 30781, 'thirty thousand seven hundred eighty-one'),\n(2992, 92289, 'ninety-two thousand two hundred eighty-nine'),\n(2993, 58959, 'fifty-eight thousand nine hundred fifty-nine'),\n(2994, 69620, 'sixty-nine thousand six hundred twenty'),\n(2995, 29403, 'twenty-nine thousand four hundred three'),\n(2996, 41951, 'forty-one thousand nine hundred fifty-one'),\n(2997, 60509, 'sixty thousand five hundred nine'),\n(2998, 73380, 'seventy-three thousand three hundred eighty'),\n(2999, 99343, 'ninety-nine thousand three hundred forty-three'),\n(3000, 75507, 'seventy-five thousand five hundred seven'),\n(3001, 84133, 'eighty-four thousand one hundred thirty-three'),\n(3002, 32238, 'thirty-two thousand two hundred thirty-eight'),\n(3003, 30080, 'thirty thousand eighty'),\n(3004, 57926, 'fifty-seven thousand nine hundred twenty-six'),\n(3005, 65770, 'sixty-five thousand seven hundred seventy'),\n(3006, 53641, 'fifty-three thousand six hundred forty-one'),\n(3007, 17279, 'seventeen thousand two hundred seventy-nine'),\n(3008, 69016, 'sixty-nine thousand sixteen'),\n(3009, 16784, 'sixteen thousand seven hundred eighty-four'),\n(3010, 22297, 'twenty-two thousand two hundred ninety-seven'),\n(3011, 5860, 'five thousand eight hundred sixty'),\n(3012, 26805, 'twenty-six thousand eight hundred five'),\n(3013, 98280, 'ninety-eight thousand two hundred eighty'),\n(3014, 78983, 'seventy-eight thousand nine hundred eighty-three'),\n(3015, 92493, 'ninety-two thousand four hundred ninety-three'),\n(3016, 26180, 'twenty-six thousand one hundred eighty'),\n(3017, 17372, 'seventeen thousand three hundred seventy-two'),\n(3018, 70053, 'seventy thousand fifty-three'),\n(3019, 28581, 'twenty-eight thousand five hundred eighty-one'),\n(3020, 72946, 'seventy-two thousand nine hundred forty-six'),\n(3021, 89803, 'eighty-nine thousand eight hundred three'),\n(3022, 31505, 'thirty-one thousand five hundred five'),\n(3023, 98659, 'ninety-eight thousand six hundred fifty-nine'),\n(3024, 63328, 'sixty-three thousand three hundred twenty-eight'),\n(3025, 94483, 'ninety-four thousand four hundred eighty-three'),\n(3026, 40984, 'forty thousand nine hundred eighty-four'),\n(3027, 38871, 'thirty-eight thousand eight hundred seventy-one'),\n(3028, 44975, 'forty-four thousand nine hundred seventy-five'),\n(3029, 51287, 'fifty-one thousand two hundred eighty-seven'),\n(3030, 37854, 'thirty-seven thousand eight hundred fifty-four'),\n(3031, 47663, 'forty-seven thousand six hundred sixty-three'),\n(3032, 42409, 'forty-two thousand four hundred nine'),\n(3033, 1586, 'one thousand five hundred eighty-six'),\n(3034, 35078, 'thirty-five thousand seventy-eight'),\n(3035, 83651, 'eighty-three thousand six hundred fifty-one'),\n(3036, 92991, 'ninety-two thousand nine hundred ninety-one'),\n(3037, 26555, 'twenty-six thousand five hundred fifty-five'),\n(3038, 93330, 'ninety-three thousand three hundred thirty'),\n(3039, 46824, 'forty-six thousand eight hundred twenty-four'),\n(3040, 99657, 'ninety-nine thousand six hundred fifty-seven'),\n(3041, 72179, 'seventy-two thousand one hundred seventy-nine'),\n(3042, 80628, 'eighty thousand six hundred twenty-eight'),\n(3043, 86982, 'eighty-six thousand nine hundred eighty-two'),\n(3044, 12544, 'twelve thousand five hundred forty-four'),\n(3045, 10801, 'ten thousand eight hundred one'),\n(3046, 98160, 'ninety-eight thousand one hundred sixty'),\n(3047, 3930, 'three thousand nine hundred thirty'),\n(3048, 61187, 'sixty-one thousand one hundred eighty-seven'),\n(3049, 27569, 'twenty-seven thousand five hundred sixty-nine'),\n(3050, 39982, 'thirty-nine thousand nine hundred eighty-two'),\n(3051, 97139, 'ninety-seven thousand one hundred thirty-nine'),\n(3052, 70663, 'seventy thousand six hundred sixty-three'),\n(3053, 53889, 'fifty-three thousand eight hundred eighty-nine'),\n(3054, 3199, 'three thousand one hundred ninety-nine'),\n(3055, 52922, 'fifty-two thousand nine hundred twenty-two'),\n(3056, 96163, 'ninety-six thousand one hundred sixty-three'),\n(3057, 40751, 'forty thousand seven hundred fifty-one'),\n(3058, 77300, 'seventy-seven thousand three hundred'),\n(3059, 80671, 'eighty thousand six hundred seventy-one'),\n(3060, 78230, 'seventy-eight thousand two hundred thirty'),\n(3061, 76552, 'seventy-six thousand five hundred fifty-two'),\n(3062, 25175, 'twenty-five thousand one hundred seventy-five'),\n(3063, 5669, 'five thousand six hundred sixty-nine'),\n(3064, 11043, 'eleven thousand forty-three'),\n(3065, 87093, 'eighty-seven thousand ninety-three'),\n(3066, 30506, 'thirty thousand five hundred six'),\n(3067, 59005, 'fifty-nine thousand five'),\n(3068, 18562, 'eighteen thousand five hundred sixty-two'),\n(3069, 52926, 'fifty-two thousand nine hundred twenty-six'),\n(3070, 6, 'six'),\n(3071, 77330, 'seventy-seven thousand three hundred thirty'),\n(3072, 37520, 'thirty-seven thousand five hundred twenty'),\n(3073, 36346, 'thirty-six thousand three hundred forty-six'),\n(3074, 18466, 'eighteen thousand four hundred sixty-six'),\n(3075, 69047, 'sixty-nine thousand forty-seven'),\n(3076, 34696, 'thirty-four thousand six hundred ninety-six'),\n(3077, 40382, 'forty thousand three hundred eighty-two'),\n(3078, 2283, 'two thousand two hundred eighty-three'),\n(3079, 19846, 'nineteen thousand eight hundred forty-six'),\n(3080, 44554, 'forty-four thousand five hundred fifty-four'),\n(3081, 34252, 'thirty-four thousand two hundred fifty-two'),\n(3082, 56518, 'fifty-six thousand five hundred eighteen'),\n(3083, 22294, 'twenty-two thousand two hundred ninety-four'),\n(3084, 38897, 'thirty-eight thousand eight hundred ninety-seven'),\n(3085, 85535, 'eighty-five thousand five hundred thirty-five'),\n(3086, 14707, 'fourteen thousand seven hundred seven'),\n(3087, 54579, 'fifty-four thousand five hundred seventy-nine'),\n(3088, 12030, 'twelve thousand thirty'),\n(3089, 38198, 'thirty-eight thousand one hundred ninety-eight'),\n(3090, 75697, 'seventy-five thousand six hundred ninety-seven'),\n(3091, 15160, 'fifteen thousand one hundred sixty'),\n(3092, 33849, 'thirty-three thousand eight hundred forty-nine'),\n(3093, 84634, 'eighty-four thousand six hundred thirty-four'),\n(3094, 83961, 'eighty-three thousand nine hundred sixty-one'),\n(3095, 14431, 'fourteen thousand four hundred thirty-one'),\n(3096, 69460, 'sixty-nine thousand four hundred sixty'),\n(3097, 35173, 'thirty-five thousand one hundred seventy-three'),\n(3098, 23838, 'twenty-three thousand eight hundred thirty-eight'),\n(3099, 64731, 'sixty-four thousand seven hundred thirty-one'),\n(3100, 42935, 'forty-two thousand nine hundred thirty-five'),\n(3101, 5462, 'five thousand four hundred sixty-two'),\n(3102, 15907, 'fifteen thousand nine hundred seven'),\n(3103, 83848, 'eighty-three thousand eight hundred forty-eight'),\n(3104, 55149, 'fifty-five thousand one hundred forty-nine'),\n(3105, 61711, 'sixty-one thousand seven hundred eleven'),\n(3106, 10361, 'ten thousand three hundred sixty-one'),\n(3107, 85958, 'eighty-five thousand nine hundred fifty-eight'),\n(3108, 4348, 'four thousand three hundred forty-eight'),\n(3109, 20926, 'twenty thousand nine hundred twenty-six'),\n(3110, 2992, 'two thousand nine hundred ninety-two'),\n(3111, 90897, 'ninety thousand eight hundred ninety-seven'),\n(3112, 77547, 'seventy-seven thousand five hundred forty-seven'),\n(3113, 74027, 'seventy-four thousand twenty-seven'),\n(3114, 97541, 'ninety-seven thousand five hundred forty-one'),\n(3115, 25939, 'twenty-five thousand nine hundred thirty-nine'),\n(3116, 83636, 'eighty-three thousand six hundred thirty-six'),\n(3117, 82314, 'eighty-two thousand three hundred fourteen'),\n(3118, 20680, 'twenty thousand six hundred eighty'),\n(3119, 64535, 'sixty-four thousand five hundred thirty-five'),\n(3120, 21480, 'twenty-one thousand four hundred eighty'),\n(3121, 31413, 'thirty-one thousand four hundred thirteen'),\n(3122, 71463, 'seventy-one thousand four hundred sixty-three'),\n(3123, 93353, 'ninety-three thousand three hundred fifty-three'),\n(3124, 42717, 'forty-two thousand seven hundred seventeen'),\n(3125, 42315, 'forty-two thousand three hundred fifteen'),\n(3126, 65749, 'sixty-five thousand seven hundred forty-nine'),\n(3127, 50512, 'fifty thousand five hundred twelve'),\n(3128, 49159, 'forty-nine thousand one hundred fifty-nine'),\n(3129, 5456, 'five thousand four hundred fifty-six'),\n(3130, 44222, 'forty-four thousand two hundred twenty-two'),\n(3131, 52032, 'fifty-two thousand thirty-two'),\n(3132, 46042, 'forty-six thousand forty-two'),\n(3133, 33728, 'thirty-three thousand seven hundred twenty-eight'),\n(3134, 74991, 'seventy-four thousand nine hundred ninety-one'),\n(3135, 38135, 'thirty-eight thousand one hundred thirty-five'),\n(3136, 28199, 'twenty-eight thousand one hundred ninety-nine'),\n(3137, 79806, 'seventy-nine thousand eight hundred six'),\n(3138, 22552, 'twenty-two thousand five hundred fifty-two'),\n(3139, 20039, 'twenty thousand thirty-nine'),\n(3140, 70719, 'seventy thousand seven hundred nineteen'),\n(3141, 43840, 'forty-three thousand eight hundred forty'),\n(3142, 49135, 'forty-nine thousand one hundred thirty-five'),\n(3143, 24607, 'twenty-four thousand six hundred seven'),\n(3144, 40095, 'forty thousand ninety-five'),\n(3145, 8362, 'eight thousand three hundred sixty-two'),\n(3146, 69275, 'sixty-nine thousand two hundred seventy-five'),\n(3147, 58609, 'fifty-eight thousand six hundred nine'),\n(3148, 96202, 'ninety-six thousand two hundred two'),\n(3149, 59445, 'fifty-nine thousand four hundred forty-five'),\n(3150, 4348, 'four thousand three hundred forty-eight'),\n(3151, 87408, 'eighty-seven thousand four hundred eight'),\n(3152, 11956, 'eleven thousand nine hundred fifty-six'),\n(3153, 14715, 'fourteen thousand seven hundred fifteen'),\n(3154, 22321, 'twenty-two thousand three hundred twenty-one'),\n(3155, 29757, 'twenty-nine thousand seven hundred fifty-seven'),\n(3156, 91314, 'ninety-one thousand three hundred fourteen'),\n(3157, 332, 'three hundred thirty-two'),\n(3158, 54578, 'fifty-four thousand five hundred seventy-eight'),\n(3159, 58943, 'fifty-eight thousand nine hundred forty-three'),\n(3160, 87984, 'eighty-seven thousand nine hundred eighty-four'),\n(3161, 92178, 'ninety-two thousand one hundred seventy-eight'),\n(3162, 70526, 'seventy thousand five hundred twenty-six'),\n(3163, 25602, 'twenty-five thousand six hundred two'),\n(3164, 54693, 'fifty-four thousand six hundred ninety-three'),\n(3165, 56334, 'fifty-six thousand three hundred thirty-four'),\n(3166, 6777, 'six thousand seven hundred seventy-seven'),\n(3167, 91040, 'ninety-one thousand forty'),\n(3168, 84644, 'eighty-four thousand six hundred forty-four'),\n(3169, 25150, 'twenty-five thousand one hundred fifty'),\n(3170, 81363, 'eighty-one thousand three hundred sixty-three'),\n(3171, 4907, 'four thousand nine hundred seven'),\n(3172, 94868, 'ninety-four thousand eight hundred sixty-eight'),\n(3173, 68858, 'sixty-eight thousand eight hundred fifty-eight'),\n(3174, 64623, 'sixty-four thousand six hundred twenty-three'),\n(3175, 64151, 'sixty-four thousand one hundred fifty-one'),\n(3176, 32160, 'thirty-two thousand one hundred sixty'),\n(3177, 8549, 'eight thousand five hundred forty-nine'),\n(3178, 53017, 'fifty-three thousand seventeen'),\n(3179, 86194, 'eighty-six thousand one hundred ninety-four'),\n(3180, 74458, 'seventy-four thousand four hundred fifty-eight'),\n(3181, 69101, 'sixty-nine thousand one hundred one'),\n(3182, 13817, 'thirteen thousand eight hundred seventeen'),\n(3183, 64824, 'sixty-four thousand eight hundred twenty-four'),\n(3184, 91744, 'ninety-one thousand seven hundred forty-four'),\n(3185, 35990, 'thirty-five thousand nine hundred ninety'),\n(3186, 1836, 'one thousand eight hundred thirty-six'),\n(3187, 25180, 'twenty-five thousand one hundred eighty'),\n(3188, 78297, 'seventy-eight thousand two hundred ninety-seven'),\n(3189, 82526, 'eighty-two thousand five hundred twenty-six'),\n(3190, 76726, 'seventy-six thousand seven hundred twenty-six'),\n(3191, 18740, 'eighteen thousand seven hundred forty'),\n(3192, 7650, 'seven thousand six hundred fifty'),\n(3193, 76060, 'seventy-six thousand sixty'),\n(3194, 79196, 'seventy-nine thousand one hundred ninety-six'),\n(3195, 8022, 'eight thousand twenty-two'),\n(3196, 78197, 'seventy-eight thousand one hundred ninety-seven'),\n(3197, 32855, 'thirty-two thousand eight hundred fifty-five'),\n(3198, 80157, 'eighty thousand one hundred fifty-seven'),\n(3199, 75220, 'seventy-five thousand two hundred twenty'),\n(3200, 18488, 'eighteen thousand four hundred eighty-eight'),\n(3201, 52992, 'fifty-two thousand nine hundred ninety-two'),\n(3202, 58682, 'fifty-eight thousand six hundred eighty-two'),\n(3203, 14531, 'fourteen thousand five hundred thirty-one'),\n(3204, 95036, 'ninety-five thousand thirty-six'),\n(3205, 42685, 'forty-two thousand six hundred eighty-five'),\n(3206, 64953, 'sixty-four thousand nine hundred fifty-three'),\n(3207, 80737, 'eighty thousand seven hundred thirty-seven'),\n(3208, 85672, 'eighty-five thousand six hundred seventy-two'),\n(3209, 93810, 'ninety-three thousand eight hundred ten'),\n(3210, 74829, 'seventy-four thousand eight hundred twenty-nine'),\n(3211, 12889, 'twelve thousand eight hundred eighty-nine'),\n(3212, 65140, 'sixty-five thousand one hundred forty'),\n(3213, 17447, 'seventeen thousand four hundred forty-seven'),\n(3214, 90925, 'ninety thousand nine hundred twenty-five'),\n(3215, 53014, 'fifty-three thousand fourteen'),\n(3216, 10052, 'ten thousand fifty-two'),\n(3217, 14944, 'fourteen thousand nine hundred forty-four'),\n(3218, 36298, 'thirty-six thousand two hundred ninety-eight'),\n(3219, 40955, 'forty thousand nine hundred fifty-five'),\n(3220, 13435, 'thirteen thousand four hundred thirty-five'),\n(3221, 91099, 'ninety-one thousand ninety-nine'),\n(3222, 18679, 'eighteen thousand six hundred seventy-nine'),\n(3223, 87088, 'eighty-seven thousand eighty-eight'),\n(3224, 17448, 'seventeen thousand four hundred forty-eight'),\n(3225, 19020, 'nineteen thousand twenty'),\n(3226, 94901, 'ninety-four thousand nine hundred one'),\n(3227, 22106, 'twenty-two thousand one hundred six'),\n(3228, 10683, 'ten thousand six hundred eighty-three'),\n(3229, 51197, 'fifty-one thousand one hundred ninety-seven'),\n(3230, 70796, 'seventy thousand seven hundred ninety-six'),\n(3231, 11292, 'eleven thousand two hundred ninety-two'),\n(3232, 53471, 'fifty-three thousand four hundred seventy-one'),\n(3233, 47398, 'forty-seven thousand three hundred ninety-eight'),\n(3234, 70134, 'seventy thousand one hundred thirty-four'),\n(3235, 294, 'two hundred ninety-four'),\n(3236, 90271, 'ninety thousand two hundred seventy-one'),\n(3237, 58215, 'fifty-eight thousand two hundred fifteen'),\n(3238, 17441, 'seventeen thousand four hundred forty-one'),\n(3239, 6216, 'six thousand two hundred sixteen'),\n(3240, 88339, 'eighty-eight thousand three hundred thirty-nine'),\n(3241, 75132, 'seventy-five thousand one hundred thirty-two'),\n(3242, 44848, 'forty-four thousand eight hundred forty-eight'),\n(3243, 95979, 'ninety-five thousand nine hundred seventy-nine'),\n(3244, 43187, 'forty-three thousand one hundred eighty-seven'),\n(3245, 39437, 'thirty-nine thousand four hundred thirty-seven'),\n(3246, 59833, 'fifty-nine thousand eight hundred thirty-three'),\n(3247, 72946, 'seventy-two thousand nine hundred forty-six'),\n(3248, 76610, 'seventy-six thousand six hundred ten'),\n(3249, 81396, 'eighty-one thousand three hundred ninety-six'),\n(3250, 29025, 'twenty-nine thousand twenty-five'),\n(3251, 10017, 'ten thousand seventeen'),\n(3252, 34055, 'thirty-four thousand fifty-five'),\n(3253, 55077, 'fifty-five thousand seventy-seven'),\n(3254, 49354, 'forty-nine thousand three hundred fifty-four'),\n(3255, 71539, 'seventy-one thousand five hundred thirty-nine'),\n(3256, 24996, 'twenty-four thousand nine hundred ninety-six'),\n(3257, 6157, 'six thousand one hundred fifty-seven'),\n(3258, 99514, 'ninety-nine thousand five hundred fourteen'),\n(3259, 22638, 'twenty-two thousand six hundred thirty-eight'),\n(3260, 56997, 'fifty-six thousand nine hundred ninety-seven'),\n(3261, 58242, 'fifty-eight thousand two hundred forty-two'),\n(3262, 70538, 'seventy thousand five hundred thirty-eight'),\n(3263, 93371, 'ninety-three thousand three hundred seventy-one'),\n(3264, 22382, 'twenty-two thousand three hundred eighty-two'),\n(3265, 6486, 'six thousand four hundred eighty-six'),\n(3266, 15838, 'fifteen thousand eight hundred thirty-eight'),\n(3267, 87220, 'eighty-seven thousand two hundred twenty'),\n(3268, 99892, 'ninety-nine thousand eight hundred ninety-two'),\n(3269, 77807, 'seventy-seven thousand eight hundred seven'),\n(3270, 14234, 'fourteen thousand two hundred thirty-four'),\n(3271, 21101, 'twenty-one thousand one hundred one'),\n(3272, 78289, 'seventy-eight thousand two hundred eighty-nine'),\n(3273, 823, 'eight hundred twenty-three'),\n(3274, 73770, 'seventy-three thousand seven hundred seventy'),\n(3275, 93721, 'ninety-three thousand seven hundred twenty-one'),\n(3276, 18846, 'eighteen thousand eight hundred forty-six'),\n(3277, 56669, 'fifty-six thousand six hundred sixty-nine'),\n(3278, 62504, 'sixty-two thousand five hundred four'),\n(3279, 69776, 'sixty-nine thousand seven hundred seventy-six'),\n(3280, 97518, 'ninety-seven thousand five hundred eighteen'),\n(3281, 64344, 'sixty-four thousand three hundred forty-four'),\n(3282, 99638, 'ninety-nine thousand six hundred thirty-eight'),\n(3283, 7818, 'seven thousand eight hundred eighteen'),\n(3284, 80077, 'eighty thousand seventy-seven'),\n(3285, 94195, 'ninety-four thousand one hundred ninety-five'),\n(3286, 47036, 'forty-seven thousand thirty-six'),\n(3287, 33729, 'thirty-three thousand seven hundred twenty-nine'),\n(3288, 29939, 'twenty-nine thousand nine hundred thirty-nine'),\n(3289, 9016, 'nine thousand sixteen'),\n(3290, 1702, 'one thousand seven hundred two'),\n(3291, 71645, 'seventy-one thousand six hundred forty-five'),\n(3292, 64433, 'sixty-four thousand four hundred thirty-three'),\n(3293, 37502, 'thirty-seven thousand five hundred two'),\n(3294, 44939, 'forty-four thousand nine hundred thirty-nine'),\n(3295, 68966, 'sixty-eight thousand nine hundred sixty-six'),\n(3296, 72482, 'seventy-two thousand four hundred eighty-two'),\n(3297, 56929, 'fifty-six thousand nine hundred twenty-nine'),\n(3298, 97779, 'ninety-seven thousand seven hundred seventy-nine'),\n(3299, 73940, 'seventy-three thousand nine hundred forty'),\n(3300, 31320, 'thirty-one thousand three hundred twenty'),\n(3301, 15230, 'fifteen thousand two hundred thirty'),\n(3302, 63929, 'sixty-three thousand nine hundred twenty-nine'),\n(3303, 66155, 'sixty-six thousand one hundred fifty-five'),\n(3304, 3099, 'three thousand ninety-nine'),\n(3305, 71533, 'seventy-one thousand five hundred thirty-three'),\n(3306, 34756, 'thirty-four thousand seven hundred fifty-six'),\n(3307, 15255, 'fifteen thousand two hundred fifty-five'),\n(3308, 11272, 'eleven thousand two hundred seventy-two'),\n(3309, 54549, 'fifty-four thousand five hundred forty-nine'),\n(3310, 28813, 'twenty-eight thousand eight hundred thirteen'),\n(3311, 94288, 'ninety-four thousand two hundred eighty-eight'),\n(3312, 92516, 'ninety-two thousand five hundred sixteen'),\n(3313, 70699, 'seventy thousand six hundred ninety-nine'),\n(3314, 46623, 'forty-six thousand six hundred twenty-three'),\n(3315, 67829, 'sixty-seven thousand eight hundred twenty-nine'),\n(3316, 45110, 'forty-five thousand one hundred ten'),\n(3317, 58246, 'fifty-eight thousand two hundred forty-six'),\n(3318, 6254, 'six thousand two hundred fifty-four'),\n(3319, 17050, 'seventeen thousand fifty'),\n(3320, 20710, 'twenty thousand seven hundred ten'),\n(3321, 23871, 'twenty-three thousand eight hundred seventy-one'),\n(3322, 98969, 'ninety-eight thousand nine hundred sixty-nine'),\n(3323, 25440, 'twenty-five thousand four hundred forty'),\n(3324, 56060, 'fifty-six thousand sixty'),\n(3325, 59720, 'fifty-nine thousand seven hundred twenty'),\n(3326, 87148, 'eighty-seven thousand one hundred forty-eight'),\n(3327, 60483, 'sixty thousand four hundred eighty-three'),\n(3328, 21966, 'twenty-one thousand nine hundred sixty-six'),\n(3329, 84787, 'eighty-four thousand seven hundred eighty-seven'),\n(3330, 79780, 'seventy-nine thousand seven hundred eighty'),\n(3331, 96765, 'ninety-six thousand seven hundred sixty-five'),\n(3332, 22987, 'twenty-two thousand nine hundred eighty-seven'),\n(3333, 53518, 'fifty-three thousand five hundred eighteen'),\n(3334, 62843, 'sixty-two thousand eight hundred forty-three'),\n(3335, 25933, 'twenty-five thousand nine hundred thirty-three'),\n(3336, 41646, 'forty-one thousand six hundred forty-six'),\n(3337, 45237, 'forty-five thousand two hundred thirty-seven'),\n(3338, 54961, 'fifty-four thousand nine hundred sixty-one'),\n(3339, 85423, 'eighty-five thousand four hundred twenty-three'),\n(3340, 68927, 'sixty-eight thousand nine hundred twenty-seven'),\n(3341, 64734, 'sixty-four thousand seven hundred thirty-four'),\n(3342, 92499, 'ninety-two thousand four hundred ninety-nine'),\n(3343, 26274, 'twenty-six thousand two hundred seventy-four'),\n(3344, 58419, 'fifty-eight thousand four hundred nineteen'),\n(3345, 36959, 'thirty-six thousand nine hundred fifty-nine'),\n(3346, 72623, 'seventy-two thousand six hundred twenty-three'),\n(3347, 98876, 'ninety-eight thousand eight hundred seventy-six'),\n(3348, 94411, 'ninety-four thousand four hundred eleven'),\n(3349, 69304, 'sixty-nine thousand three hundred four'),\n(3350, 13652, 'thirteen thousand six hundred fifty-two'),\n(3351, 39250, 'thirty-nine thousand two hundred fifty'),\n(3352, 19459, 'nineteen thousand four hundred fifty-nine'),\n(3353, 66835, 'sixty-six thousand eight hundred thirty-five'),\n(3354, 95903, 'ninety-five thousand nine hundred three'),\n(3355, 70163, 'seventy thousand one hundred sixty-three'),\n(3356, 44244, 'forty-four thousand two hundred forty-four'),\n(3357, 3362, 'three thousand three hundred sixty-two'),\n(3358, 738, 'seven hundred thirty-eight'),\n(3359, 51169, 'fifty-one thousand one hundred sixty-nine'),\n(3360, 28504, 'twenty-eight thousand five hundred four'),\n(3361, 67979, 'sixty-seven thousand nine hundred seventy-nine'),\n(3362, 99613, 'ninety-nine thousand six hundred thirteen'),\n(3363, 36511, 'thirty-six thousand five hundred eleven'),\n(3364, 68904, 'sixty-eight thousand nine hundred four'),\n(3365, 95165, 'ninety-five thousand one hundred sixty-five'),\n(3366, 86502, 'eighty-six thousand five hundred two'),\n(3367, 55373, 'fifty-five thousand three hundred seventy-three'),\n(3368, 12702, 'twelve thousand seven hundred two'),\n(3369, 51094, 'fifty-one thousand ninety-four'),\n(3370, 50423, 'fifty thousand four hundred twenty-three'),\n(3371, 41766, 'forty-one thousand seven hundred sixty-six'),\n(3372, 25246, 'twenty-five thousand two hundred forty-six'),\n(3373, 40366, 'forty thousand three hundred sixty-six'),\n(3374, 29845, 'twenty-nine thousand eight hundred forty-five'),\n(3375, 32808, 'thirty-two thousand eight hundred eight'),\n(3376, 52345, 'fifty-two thousand three hundred forty-five'),\n(3377, 54055, 'fifty-four thousand fifty-five'),\n(3378, 97214, 'ninety-seven thousand two hundred fourteen'),\n(3379, 81031, 'eighty-one thousand thirty-one'),\n(3380, 78559, 'seventy-eight thousand five hundred fifty-nine'),\n(3381, 28423, 'twenty-eight thousand four hundred twenty-three'),\n(3382, 47909, 'forty-seven thousand nine hundred nine'),\n(3383, 31237, 'thirty-one thousand two hundred thirty-seven'),\n(3384, 56385, 'fifty-six thousand three hundred eighty-five'),\n(3385, 74721, 'seventy-four thousand seven hundred twenty-one'),\n(3386, 82882, 'eighty-two thousand eight hundred eighty-two'),\n(3387, 99646, 'ninety-nine thousand six hundred forty-six'),\n(3388, 96020, 'ninety-six thousand twenty'),\n(3389, 59349, 'fifty-nine thousand three hundred forty-nine'),\n(3390, 46739, 'forty-six thousand seven hundred thirty-nine'),\n(3391, 91953, 'ninety-one thousand nine hundred fifty-three'),\n(3392, 33637, 'thirty-three thousand six hundred thirty-seven'),\n(3393, 10572, 'ten thousand five hundred seventy-two'),\n(3394, 53714, 'fifty-three thousand seven hundred fourteen'),\n(3395, 99581, 'ninety-nine thousand five hundred eighty-one'),\n(3396, 6327, 'six thousand three hundred twenty-seven'),\n(3397, 79238, 'seventy-nine thousand two hundred thirty-eight'),\n(3398, 38798, 'thirty-eight thousand seven hundred ninety-eight'),\n(3399, 4125, 'four thousand one hundred twenty-five'),\n(3400, 20030, 'twenty thousand thirty'),\n(3401, 31162, 'thirty-one thousand one hundred sixty-two'),\n(3402, 47698, 'forty-seven thousand six hundred ninety-eight'),\n(3403, 77363, 'seventy-seven thousand three hundred sixty-three'),\n(3404, 76115, 'seventy-six thousand one hundred fifteen'),\n(3405, 9146, 'nine thousand one hundred forty-six'),\n(3406, 36983, 'thirty-six thousand nine hundred eighty-three'),\n(3407, 52519, 'fifty-two thousand five hundred nineteen'),\n(3408, 7031, 'seven thousand thirty-one'),\n(3409, 80875, 'eighty thousand eight hundred seventy-five'),\n(3410, 16111, 'sixteen thousand one hundred eleven'),\n(3411, 47006, 'forty-seven thousand six'),\n(3412, 14351, 'fourteen thousand three hundred fifty-one'),\n(3413, 16713, 'sixteen thousand seven hundred thirteen'),\n(3414, 23506, 'twenty-three thousand five hundred six'),\n(3415, 22926, 'twenty-two thousand nine hundred twenty-six'),\n(3416, 21751, 'twenty-one thousand seven hundred fifty-one'),\n(3417, 79164, 'seventy-nine thousand one hundred sixty-four'),\n(3418, 79122, 'seventy-nine thousand one hundred twenty-two'),\n(3419, 29793, 'twenty-nine thousand seven hundred ninety-three'),\n(3420, 70882, 'seventy thousand eight hundred eighty-two'),\n(3421, 58331, 'fifty-eight thousand three hundred thirty-one'),\n(3422, 77125, 'seventy-seven thousand one hundred twenty-five'),\n(3423, 57176, 'fifty-seven thousand one hundred seventy-six'),\n(3424, 55246, 'fifty-five thousand two hundred forty-six'),\n(3425, 42733, 'forty-two thousand seven hundred thirty-three'),\n(3426, 43354, 'forty-three thousand three hundred fifty-four'),\n(3427, 66353, 'sixty-six thousand three hundred fifty-three'),\n(3428, 61320, 'sixty-one thousand three hundred twenty'),\n(3429, 17328, 'seventeen thousand three hundred twenty-eight'),\n(3430, 59504, 'fifty-nine thousand five hundred four'),\n(3431, 77446, 'seventy-seven thousand four hundred forty-six'),\n(3432, 78882, 'seventy-eight thousand eight hundred eighty-two'),\n(3433, 19092, 'nineteen thousand ninety-two'),\n(3434, 29837, 'twenty-nine thousand eight hundred thirty-seven'),\n(3435, 97048, 'ninety-seven thousand forty-eight'),\n(3436, 3261, 'three thousand two hundred sixty-one'),\n(3437, 93304, 'ninety-three thousand three hundred four'),\n(3438, 39311, 'thirty-nine thousand three hundred eleven'),\n(3439, 51098, 'fifty-one thousand ninety-eight'),\n(3440, 59576, 'fifty-nine thousand five hundred seventy-six'),\n(3441, 71061, 'seventy-one thousand sixty-one'),\n(3442, 70141, 'seventy thousand one hundred forty-one'),\n(3443, 80022, 'eighty thousand twenty-two'),\n(3444, 18465, 'eighteen thousand four hundred sixty-five'),\n(3445, 96572, 'ninety-six thousand five hundred seventy-two'),\n(3446, 40804, 'forty thousand eight hundred four'),\n(3447, 37781, 'thirty-seven thousand seven hundred eighty-one'),\n(3448, 48292, 'forty-eight thousand two hundred ninety-two'),\n(3449, 8752, 'eight thousand seven hundred fifty-two'),\n(3450, 92676, 'ninety-two thousand six hundred seventy-six'),\n(3451, 43207, 'forty-three thousand two hundred seven'),\n(3452, 613, 'six hundred thirteen'),\n(3453, 67358, 'sixty-seven thousand three hundred fifty-eight'),\n(3454, 57843, 'fifty-seven thousand eight hundred forty-three'),\n(3455, 65505, 'sixty-five thousand five hundred five'),\n(3456, 40131, 'forty thousand one hundred thirty-one'),\n(3457, 23259, 'twenty-three thousand two hundred fifty-nine'),\n(3458, 59068, 'fifty-nine thousand sixty-eight'),\n(3459, 18623, 'eighteen thousand six hundred twenty-three'),\n(3460, 39532, 'thirty-nine thousand five hundred thirty-two'),\n(3461, 56300, 'fifty-six thousand three hundred'),\n(3462, 16806, 'sixteen thousand eight hundred six'),\n(3463, 79329, 'seventy-nine thousand three hundred twenty-nine'),\n(3464, 80980, 'eighty thousand nine hundred eighty'),\n(3465, 33166, 'thirty-three thousand one hundred sixty-six'),\n(3466, 63230, 'sixty-three thousand two hundred thirty'),\n(3467, 77583, 'seventy-seven thousand five hundred eighty-three'),\n(3468, 94025, 'ninety-four thousand twenty-five'),\n(3469, 89483, 'eighty-nine thousand four hundred eighty-three'),\n(3470, 91304, 'ninety-one thousand three hundred four'),\n(3471, 18692, 'eighteen thousand six hundred ninety-two'),\n(3472, 67993, 'sixty-seven thousand nine hundred ninety-three'),\n(3473, 19362, 'nineteen thousand three hundred sixty-two'),\n(3474, 64142, 'sixty-four thousand one hundred forty-two'),\n(3475, 31830, 'thirty-one thousand eight hundred thirty'),\n(3476, 89311, 'eighty-nine thousand three hundred eleven'),\n(3477, 17025, 'seventeen thousand twenty-five'),\n(3478, 91668, 'ninety-one thousand six hundred sixty-eight'),\n(3479, 18688, 'eighteen thousand six hundred eighty-eight'),\n(3480, 4247, 'four thousand two hundred forty-seven'),\n(3481, 50185, 'fifty thousand one hundred eighty-five'),\n(3482, 52285, 'fifty-two thousand two hundred eighty-five'),\n(3483, 3777, 'three thousand seven hundred seventy-seven'),\n(3484, 80295, 'eighty thousand two hundred ninety-five'),\n(3485, 90562, 'ninety thousand five hundred sixty-two'),\n(3486, 10098, 'ten thousand ninety-eight'),\n(3487, 40706, 'forty thousand seven hundred six'),\n(3488, 39369, 'thirty-nine thousand three hundred sixty-nine'),\n(3489, 4547, 'four thousand five hundred forty-seven'),\n(3490, 10985, 'ten thousand nine hundred eighty-five'),\n(3491, 47247, 'forty-seven thousand two hundred forty-seven'),\n(3492, 36993, 'thirty-six thousand nine hundred ninety-three'),\n(3493, 60076, 'sixty thousand seventy-six'),\n(3494, 59469, 'fifty-nine thousand four hundred sixty-nine'),\n(3495, 31562, 'thirty-one thousand five hundred sixty-two'),\n(3496, 61847, 'sixty-one thousand eight hundred forty-seven'),\n(3497, 37215, 'thirty-seven thousand two hundred fifteen'),\n(3498, 76642, 'seventy-six thousand six hundred forty-two'),\n(3499, 92402, 'ninety-two thousand four hundred two'),\n(3500, 41986, 'forty-one thousand nine hundred eighty-six'),\n(3501, 2680, 'two thousand six hundred eighty'),\n(3502, 72800, 'seventy-two thousand eight hundred'),\n(3503, 98335, 'ninety-eight thousand three hundred thirty-five'),\n(3504, 71051, 'seventy-one thousand fifty-one'),\n(3505, 46202, 'forty-six thousand two hundred two'),\n(3506, 63475, 'sixty-three thousand four hundred seventy-five'),\n(3507, 71129, 'seventy-one thousand one hundred twenty-nine'),\n(3508, 7246, 'seven thousand two hundred forty-six'),\n(3509, 64159, 'sixty-four thousand one hundred fifty-nine'),\n(3510, 73764, 'seventy-three thousand seven hundred sixty-four'),\n(3511, 13414, 'thirteen thousand four hundred fourteen'),\n(3512, 94177, 'ninety-four thousand one hundred seventy-seven'),\n(3513, 56445, 'fifty-six thousand four hundred forty-five'),\n(3514, 11530, 'eleven thousand five hundred thirty'),\n(3515, 39867, 'thirty-nine thousand eight hundred sixty-seven'),\n(3516, 37914, 'thirty-seven thousand nine hundred fourteen'),\n(3517, 62936, 'sixty-two thousand nine hundred thirty-six'),\n(3518, 83949, 'eighty-three thousand nine hundred forty-nine'),\n(3519, 12285, 'twelve thousand two hundred eighty-five'),\n(3520, 84970, 'eighty-four thousand nine hundred seventy'),\n(3521, 94285, 'ninety-four thousand two hundred eighty-five'),\n(3522, 94582, 'ninety-four thousand five hundred eighty-two'),\n(3523, 77138, 'seventy-seven thousand one hundred thirty-eight'),\n(3524, 96699, 'ninety-six thousand six hundred ninety-nine'),\n(3525, 92895, 'ninety-two thousand eight hundred ninety-five'),\n(3526, 46923, 'forty-six thousand nine hundred twenty-three'),\n(3527, 45937, 'forty-five thousand nine hundred thirty-seven'),\n(3528, 72410, 'seventy-two thousand four hundred ten'),\n(3529, 6020, 'six thousand twenty'),\n(3530, 954, 'nine hundred fifty-four'),\n(3531, 62276, 'sixty-two thousand two hundred seventy-six'),\n(3532, 30830, 'thirty thousand eight hundred thirty'),\n(3533, 15042, 'fifteen thousand forty-two'),\n(3534, 95069, 'ninety-five thousand sixty-nine'),\n(3535, 55683, 'fifty-five thousand six hundred eighty-three'),\n(3536, 55488, 'fifty-five thousand four hundred eighty-eight'),\n(3537, 64828, 'sixty-four thousand eight hundred twenty-eight'),\n(3538, 24790, 'twenty-four thousand seven hundred ninety'),\n(3539, 19429, 'nineteen thousand four hundred twenty-nine'),\n(3540, 34785, 'thirty-four thousand seven hundred eighty-five'),\n(3541, 21011, 'twenty-one thousand eleven'),\n(3542, 30700, 'thirty thousand seven hundred'),\n(3543, 75483, 'seventy-five thousand four hundred eighty-three'),\n(3544, 52547, 'fifty-two thousand five hundred forty-seven'),\n(3545, 31185, 'thirty-one thousand one hundred eighty-five'),\n(3546, 70808, 'seventy thousand eight hundred eight'),\n(3547, 30730, 'thirty thousand seven hundred thirty'),\n(3548, 81751, 'eighty-one thousand seven hundred fifty-one'),\n(3549, 59115, 'fifty-nine thousand one hundred fifteen'),\n(3550, 5455, 'five thousand four hundred fifty-five'),\n(3551, 75921, 'seventy-five thousand nine hundred twenty-one'),\n(3552, 58632, 'fifty-eight thousand six hundred thirty-two'),\n(3553, 7828, 'seven thousand eight hundred twenty-eight'),\n(3554, 15520, 'fifteen thousand five hundred twenty'),\n(3555, 1749, 'one thousand seven hundred forty-nine'),\n(3556, 4642, 'four thousand six hundred forty-two'),\n(3557, 4770, 'four thousand seven hundred seventy'),\n(3558, 54431, 'fifty-four thousand four hundred thirty-one'),\n(3559, 20855, 'twenty thousand eight hundred fifty-five'),\n(3560, 69105, 'sixty-nine thousand one hundred five'),\n(3561, 40008, 'forty thousand eight'),\n(3562, 95681, 'ninety-five thousand six hundred eighty-one'),\n(3563, 75699, 'seventy-five thousand six hundred ninety-nine'),\n(3564, 43610, 'forty-three thousand six hundred ten'),\n(3565, 55614, 'fifty-five thousand six hundred fourteen'),\n(3566, 34354, 'thirty-four thousand three hundred fifty-four'),\n(3567, 920, 'nine hundred twenty'),\n(3568, 47582, 'forty-seven thousand five hundred eighty-two'),\n(3569, 1028, 'one thousand twenty-eight'),\n(3570, 30341, 'thirty thousand three hundred forty-one'),\n(3571, 29131, 'twenty-nine thousand one hundred thirty-one'),\n(3572, 97796, 'ninety-seven thousand seven hundred ninety-six'),\n(3573, 86793, 'eighty-six thousand seven hundred ninety-three'),\n(3574, 5320, 'five thousand three hundred twenty'),\n(3575, 94072, 'ninety-four thousand seventy-two'),\n(3576, 24303, 'twenty-four thousand three hundred three'),\n(3577, 93820, 'ninety-three thousand eight hundred twenty'),\n(3578, 62865, 'sixty-two thousand eight hundred sixty-five'),\n(3579, 38733, 'thirty-eight thousand seven hundred thirty-three'),\n(3580, 42334, 'forty-two thousand three hundred thirty-four'),\n(3581, 79400, 'seventy-nine thousand four hundred'),\n(3582, 40253, 'forty thousand two hundred fifty-three'),\n(3583, 69136, 'sixty-nine thousand one hundred thirty-six'),\n(3584, 54164, 'fifty-four thousand one hundred sixty-four'),\n(3585, 62394, 'sixty-two thousand three hundred ninety-four'),\n(3586, 68173, 'sixty-eight thousand one hundred seventy-three'),\n(3587, 70208, 'seventy thousand two hundred eight'),\n(3588, 88806, 'eighty-eight thousand eight hundred six'),\n(3589, 3430, 'three thousand four hundred thirty'),\n(3590, 91534, 'ninety-one thousand five hundred thirty-four'),\n(3591, 7192, 'seven thousand one hundred ninety-two'),\n(3592, 44758, 'forty-four thousand seven hundred fifty-eight'),\n(3593, 57347, 'fifty-seven thousand three hundred forty-seven'),\n(3594, 72945, 'seventy-two thousand nine hundred forty-five'),\n(3595, 8275, 'eight thousand two hundred seventy-five'),\n(3596, 35801, 'thirty-five thousand eight hundred one'),\n(3597, 38557, 'thirty-eight thousand five hundred fifty-seven'),\n(3598, 49555, 'forty-nine thousand five hundred fifty-five'),\n(3599, 14262, 'fourteen thousand two hundred sixty-two'),\n(3600, 43515, 'forty-three thousand five hundred fifteen'),\n(3601, 71059, 'seventy-one thousand fifty-nine'),\n(3602, 3819, 'three thousand eight hundred nineteen'),\n(3603, 19583, 'nineteen thousand five hundred eighty-three'),\n(3604, 34751, 'thirty-four thousand seven hundred fifty-one'),\n(3605, 34237, 'thirty-four thousand two hundred thirty-seven'),\n(3606, 33187, 'thirty-three thousand one hundred eighty-seven'),\n(3607, 8186, 'eight thousand one hundred eighty-six'),\n(3608, 68143, 'sixty-eight thousand one hundred forty-three'),\n(3609, 92843, 'ninety-two thousand eight hundred forty-three'),\n(3610, 82475, 'eighty-two thousand four hundred seventy-five'),\n(3611, 51131, 'fifty-one thousand one hundred thirty-one'),\n(3612, 62839, 'sixty-two thousand eight hundred thirty-nine'),\n(3613, 65849, 'sixty-five thousand eight hundred forty-nine'),\n(3614, 69164, 'sixty-nine thousand one hundred sixty-four'),\n(3615, 90354, 'ninety thousand three hundred fifty-four'),\n(3616, 35248, 'thirty-five thousand two hundred forty-eight'),\n(3617, 8706, 'eight thousand seven hundred six'),\n(3618, 53867, 'fifty-three thousand eight hundred sixty-seven'),\n(3619, 28201, 'twenty-eight thousand two hundred one'),\n(3620, 38230, 'thirty-eight thousand two hundred thirty'),\n(3621, 96085, 'ninety-six thousand eighty-five'),\n(3622, 22493, 'twenty-two thousand four hundred ninety-three'),\n(3623, 11328, 'eleven thousand three hundred twenty-eight'),\n(3624, 78635, 'seventy-eight thousand six hundred thirty-five'),\n(3625, 17955, 'seventeen thousand nine hundred fifty-five'),\n(3626, 62422, 'sixty-two thousand four hundred twenty-two'),\n(3627, 39236, 'thirty-nine thousand two hundred thirty-six'),\n(3628, 1788, 'one thousand seven hundred eighty-eight'),\n(3629, 71202, 'seventy-one thousand two hundred two'),\n(3630, 33719, 'thirty-three thousand seven hundred nineteen'),\n(3631, 66093, 'sixty-six thousand ninety-three'),\n(3632, 69927, 'sixty-nine thousand nine hundred twenty-seven'),\n(3633, 46523, 'forty-six thousand five hundred twenty-three'),\n(3634, 19984, 'nineteen thousand nine hundred eighty-four'),\n(3635, 19454, 'nineteen thousand four hundred fifty-four'),\n(3636, 47699, 'forty-seven thousand six hundred ninety-nine'),\n(3637, 45834, 'forty-five thousand eight hundred thirty-four'),\n(3638, 14846, 'fourteen thousand eight hundred forty-six'),\n(3639, 20487, 'twenty thousand four hundred eighty-seven'),\n(3640, 57392, 'fifty-seven thousand three hundred ninety-two'),\n(3641, 88772, 'eighty-eight thousand seven hundred seventy-two'),\n(3642, 73118, 'seventy-three thousand one hundred eighteen'),\n(3643, 29918, 'twenty-nine thousand nine hundred eighteen'),\n(3644, 82863, 'eighty-two thousand eight hundred sixty-three'),\n(3645, 5393, 'five thousand three hundred ninety-three'),\n(3646, 30713, 'thirty thousand seven hundred thirteen'),\n(3647, 19325, 'nineteen thousand three hundred twenty-five'),\n(3648, 11926, 'eleven thousand nine hundred twenty-six'),\n(3649, 28917, 'twenty-eight thousand nine hundred seventeen'),\n(3650, 63194, 'sixty-three thousand one hundred ninety-four'),\n(3651, 94885, 'ninety-four thousand eight hundred eighty-five'),\n(3652, 26602, 'twenty-six thousand six hundred two'),\n(3653, 40673, 'forty thousand six hundred seventy-three'),\n(3654, 70009, 'seventy thousand nine'),\n(3655, 12997, 'twelve thousand nine hundred ninety-seven'),\n(3656, 79751, 'seventy-nine thousand seven hundred fifty-one'),\n(3657, 55886, 'fifty-five thousand eight hundred eighty-six'),\n(3658, 25845, 'twenty-five thousand eight hundred forty-five'),\n(3659, 23357, 'twenty-three thousand three hundred fifty-seven'),\n(3660, 76086, 'seventy-six thousand eighty-six'),\n(3661, 48247, 'forty-eight thousand two hundred forty-seven'),\n(3662, 61115, 'sixty-one thousand one hundred fifteen'),\n(3663, 77283, 'seventy-seven thousand two hundred eighty-three'),\n(3664, 4435, 'four thousand four hundred thirty-five'),\n(3665, 96617, 'ninety-six thousand six hundred seventeen'),\n(3666, 8807, 'eight thousand eight hundred seven'),\n(3667, 90492, 'ninety thousand four hundred ninety-two'),\n(3668, 27321, 'twenty-seven thousand three hundred twenty-one'),\n(3669, 73247, 'seventy-three thousand two hundred forty-seven'),\n(3670, 44684, 'forty-four thousand six hundred eighty-four'),\n(3671, 59641, 'fifty-nine thousand six hundred forty-one'),\n(3672, 32592, 'thirty-two thousand five hundred ninety-two'),\n(3673, 90266, 'ninety thousand two hundred sixty-six'),\n(3674, 15418, 'fifteen thousand four hundred eighteen'),\n(3675, 5464, 'five thousand four hundred sixty-four'),\n(3676, 19066, 'nineteen thousand sixty-six'),\n(3677, 70762, 'seventy thousand seven hundred sixty-two'),\n(3678, 7286, 'seven thousand two hundred eighty-six'),\n(3679, 54476, 'fifty-four thousand four hundred seventy-six'),\n(3680, 87819, 'eighty-seven thousand eight hundred nineteen'),\n(3681, 13560, 'thirteen thousand five hundred sixty'),\n(3682, 2906, 'two thousand nine hundred six'),\n(3683, 35785, 'thirty-five thousand seven hundred eighty-five'),\n(3684, 46144, 'forty-six thousand one hundred forty-four'),\n(3685, 83097, 'eighty-three thousand ninety-seven'),\n(3686, 61297, 'sixty-one thousand two hundred ninety-seven'),\n(3687, 38225, 'thirty-eight thousand two hundred twenty-five'),\n(3688, 72518, 'seventy-two thousand five hundred eighteen'),\n(3689, 81165, 'eighty-one thousand one hundred sixty-five'),\n(3690, 93299, 'ninety-three thousand two hundred ninety-nine'),\n(3691, 67364, 'sixty-seven thousand three hundred sixty-four'),\n(3692, 43724, 'forty-three thousand seven hundred twenty-four'),\n(3693, 64556, 'sixty-four thousand five hundred fifty-six'),\n(3694, 91597, 'ninety-one thousand five hundred ninety-seven'),\n(3695, 5257, 'five thousand two hundred fifty-seven'),\n(3696, 67126, 'sixty-seven thousand one hundred twenty-six'),\n(3697, 53896, 'fifty-three thousand eight hundred ninety-six'),\n(3698, 99048, 'ninety-nine thousand forty-eight'),\n(3699, 29883, 'twenty-nine thousand eight hundred eighty-three'),\n(3700, 41000, 'forty-one thousand'),\n(3701, 98635, 'ninety-eight thousand six hundred thirty-five'),\n(3702, 29392, 'twenty-nine thousand three hundred ninety-two'),\n(3703, 10692, 'ten thousand six hundred ninety-two'),\n(3704, 94217, 'ninety-four thousand two hundred seventeen'),\n(3705, 75692, 'seventy-five thousand six hundred ninety-two'),\n(3706, 86601, 'eighty-six thousand six hundred one'),\n(3707, 73873, 'seventy-three thousand eight hundred seventy-three'),\n(3708, 54818, 'fifty-four thousand eight hundred eighteen'),\n(3709, 25877, 'twenty-five thousand eight hundred seventy-seven'),\n(3710, 16828, 'sixteen thousand eight hundred twenty-eight'),\n(3711, 8547, 'eight thousand five hundred forty-seven'),\n(3712, 53747, 'fifty-three thousand seven hundred forty-seven'),\n(3713, 17889, 'seventeen thousand eight hundred eighty-nine'),\n(3714, 73856, 'seventy-three thousand eight hundred fifty-six'),\n(3715, 85289, 'eighty-five thousand two hundred eighty-nine'),\n(3716, 15643, 'fifteen thousand six hundred forty-three'),\n(3717, 8609, 'eight thousand six hundred nine'),\n(3718, 48670, 'forty-eight thousand six hundred seventy'),\n(3719, 54886, 'fifty-four thousand eight hundred eighty-six'),\n(3720, 87184, 'eighty-seven thousand one hundred eighty-four'),\n(3721, 44125, 'forty-four thousand one hundred twenty-five'),\n(3722, 81507, 'eighty-one thousand five hundred seven'),\n(3723, 93093, 'ninety-three thousand ninety-three'),\n(3724, 88383, 'eighty-eight thousand three hundred eighty-three'),\n(3725, 69022, 'sixty-nine thousand twenty-two'),\n(3726, 65629, 'sixty-five thousand six hundred twenty-nine'),\n(3727, 67196, 'sixty-seven thousand one hundred ninety-six'),\n(3728, 84243, 'eighty-four thousand two hundred forty-three'),\n(3729, 42058, 'forty-two thousand fifty-eight'),\n(3730, 63197, 'sixty-three thousand one hundred ninety-seven'),\n(3731, 22264, 'twenty-two thousand two hundred sixty-four'),\n(3732, 58744, 'fifty-eight thousand seven hundred forty-four'),\n(3733, 61203, 'sixty-one thousand two hundred three'),\n(3734, 57984, 'fifty-seven thousand nine hundred eighty-four'),\n(3735, 26082, 'twenty-six thousand eighty-two'),\n(3736, 80371, 'eighty thousand three hundred seventy-one'),\n(3737, 63320, 'sixty-three thousand three hundred twenty'),\n(3738, 62875, 'sixty-two thousand eight hundred seventy-five'),\n(3739, 49996, 'forty-nine thousand nine hundred ninety-six'),\n(3740, 14711, 'fourteen thousand seven hundred eleven'),\n(3741, 69546, 'sixty-nine thousand five hundred forty-six'),\n(3742, 55878, 'fifty-five thousand eight hundred seventy-eight'),\n(3743, 32801, 'thirty-two thousand eight hundred one'),\n(3744, 67356, 'sixty-seven thousand three hundred fifty-six'),\n(3745, 86036, 'eighty-six thousand thirty-six'),\n(3746, 24650, 'twenty-four thousand six hundred fifty'),\n(3747, 83466, 'eighty-three thousand four hundred sixty-six'),\n(3748, 56492, 'fifty-six thousand four hundred ninety-two'),\n(3749, 36693, 'thirty-six thousand six hundred ninety-three'),\n(3750, 66565, 'sixty-six thousand five hundred sixty-five'),\n(3751, 34868, 'thirty-four thousand eight hundred sixty-eight'),\n(3752, 8102, 'eight thousand one hundred two'),\n(3753, 40664, 'forty thousand six hundred sixty-four'),\n(3754, 36053, 'thirty-six thousand fifty-three'),\n(3755, 13391, 'thirteen thousand three hundred ninety-one'),\n(3756, 58838, 'fifty-eight thousand eight hundred thirty-eight'),\n(3757, 11765, 'eleven thousand seven hundred sixty-five'),\n(3758, 56726, 'fifty-six thousand seven hundred twenty-six'),\n(3759, 94366, 'ninety-four thousand three hundred sixty-six'),\n(3760, 74777, 'seventy-four thousand seven hundred seventy-seven'),\n(3761, 63537, 'sixty-three thousand five hundred thirty-seven'),\n(3762, 82316, 'eighty-two thousand three hundred sixteen'),\n(3763, 23294, 'twenty-three thousand two hundred ninety-four'),\n(3764, 68941, 'sixty-eight thousand nine hundred forty-one'),\n(3765, 81687, 'eighty-one thousand six hundred eighty-seven'),\n(3766, 95960, 'ninety-five thousand nine hundred sixty'),\n(3767, 89093, 'eighty-nine thousand ninety-three'),\n(3768, 71373, 'seventy-one thousand three hundred seventy-three'),\n(3769, 67005, 'sixty-seven thousand five'),\n(3770, 16053, 'sixteen thousand fifty-three'),\n(3771, 80585, 'eighty thousand five hundred eighty-five'),\n(3772, 35969, 'thirty-five thousand nine hundred sixty-nine'),\n(3773, 38560, 'thirty-eight thousand five hundred sixty'),\n(3774, 47373, 'forty-seven thousand three hundred seventy-three'),\n(3775, 45263, 'forty-five thousand two hundred sixty-three'),\n(3776, 46904, 'forty-six thousand nine hundred four'),\n(3777, 11243, 'eleven thousand two hundred forty-three'),\n(3778, 51491, 'fifty-one thousand four hundred ninety-one'),\n(3779, 68380, 'sixty-eight thousand three hundred eighty'),\n(3780, 93130, 'ninety-three thousand one hundred thirty'),\n(3781, 58991, 'fifty-eight thousand nine hundred ninety-one'),\n(3782, 95778, 'ninety-five thousand seven hundred seventy-eight'),\n(3783, 97498, 'ninety-seven thousand four hundred ninety-eight'),\n(3784, 60503, 'sixty thousand five hundred three'),\n(3785, 4096, 'four thousand ninety-six'),\n(3786, 66463, 'sixty-six thousand four hundred sixty-three'),\n(3787, 22228, 'twenty-two thousand two hundred twenty-eight'),\n(3788, 33099, 'thirty-three thousand ninety-nine'),\n(3789, 39462, 'thirty-nine thousand four hundred sixty-two'),\n(3790, 76850, 'seventy-six thousand eight hundred fifty'),\n(3791, 62149, 'sixty-two thousand one hundred forty-nine'),\n(3792, 85451, 'eighty-five thousand four hundred fifty-one'),\n(3793, 62002, 'sixty-two thousand two'),\n(3794, 21938, 'twenty-one thousand nine hundred thirty-eight'),\n(3795, 11246, 'eleven thousand two hundred forty-six'),\n(3796, 43544, 'forty-three thousand five hundred forty-four'),\n(3797, 60711, 'sixty thousand seven hundred eleven'),\n(3798, 10079, 'ten thousand seventy-nine'),\n(3799, 48214, 'forty-eight thousand two hundred fourteen'),\n(3800, 99392, 'ninety-nine thousand three hundred ninety-two'),\n(3801, 35166, 'thirty-five thousand one hundred sixty-six'),\n(3802, 9562, 'nine thousand five hundred sixty-two'),\n(3803, 46966, 'forty-six thousand nine hundred sixty-six'),\n(3804, 55642, 'fifty-five thousand six hundred forty-two'),\n(3805, 55483, 'fifty-five thousand four hundred eighty-three'),\n(3806, 17111, 'seventeen thousand one hundred eleven'),\n(3807, 27591, 'twenty-seven thousand five hundred ninety-one'),\n(3808, 87309, 'eighty-seven thousand three hundred nine'),\n(3809, 34334, 'thirty-four thousand three hundred thirty-four'),\n(3810, 60029, 'sixty thousand twenty-nine'),\n(3811, 52959, 'fifty-two thousand nine hundred fifty-nine'),\n(3812, 79293, 'seventy-nine thousand two hundred ninety-three'),\n(3813, 6312, 'six thousand three hundred twelve'),\n(3814, 85613, 'eighty-five thousand six hundred thirteen'),\n(3815, 26533, 'twenty-six thousand five hundred thirty-three'),\n(3816, 67859, 'sixty-seven thousand eight hundred fifty-nine'),\n(3817, 34969, 'thirty-four thousand nine hundred sixty-nine'),\n(3818, 84178, 'eighty-four thousand one hundred seventy-eight'),\n(3819, 63392, 'sixty-three thousand three hundred ninety-two'),\n(3820, 17888, 'seventeen thousand eight hundred eighty-eight'),\n(3821, 63319, 'sixty-three thousand three hundred nineteen'),\n(3822, 22573, 'twenty-two thousand five hundred seventy-three'),\n(3823, 40494, 'forty thousand four hundred ninety-four'),\n(3824, 87258, 'eighty-seven thousand two hundred fifty-eight'),\n(3825, 41353, 'forty-one thousand three hundred fifty-three'),\n(3826, 16221, 'sixteen thousand two hundred twenty-one'),\n(3827, 47954, 'forty-seven thousand nine hundred fifty-four'),\n(3828, 67341, 'sixty-seven thousand three hundred forty-one'),\n(3829, 42031, 'forty-two thousand thirty-one'),\n(3830, 91612, 'ninety-one thousand six hundred twelve'),\n(3831, 1916, 'one thousand nine hundred sixteen'),\n(3832, 67772, 'sixty-seven thousand seven hundred seventy-two'),\n(3833, 71298, 'seventy-one thousand two hundred ninety-eight'),\n(3834, 45935, 'forty-five thousand nine hundred thirty-five'),\n(3835, 46271, 'forty-six thousand two hundred seventy-one'),\n(3836, 44317, 'forty-four thousand three hundred seventeen'),\n(3837, 19746, 'nineteen thousand seven hundred forty-six'),\n(3838, 63509, 'sixty-three thousand five hundred nine'),\n(3839, 75428, 'seventy-five thousand four hundred twenty-eight'),\n(3840, 65418, 'sixty-five thousand four hundred eighteen'),\n(3841, 99711, 'ninety-nine thousand seven hundred eleven'),\n(3842, 84912, 'eighty-four thousand nine hundred twelve'),\n(3843, 91437, 'ninety-one thousand four hundred thirty-seven'),\n(3844, 94740, 'ninety-four thousand seven hundred forty'),\n(3845, 90516, 'ninety thousand five hundred sixteen'),\n(3846, 67898, 'sixty-seven thousand eight hundred ninety-eight'),\n(3847, 85588, 'eighty-five thousand five hundred eighty-eight'),\n(3848, 32780, 'thirty-two thousand seven hundred eighty'),\n(3849, 58006, 'fifty-eight thousand six'),\n(3850, 75005, 'seventy-five thousand five'),\n(3851, 75615, 'seventy-five thousand six hundred fifteen'),\n(3852, 76377, 'seventy-six thousand three hundred seventy-seven'),\n(3853, 968, 'nine hundred sixty-eight'),\n(3854, 9238, 'nine thousand two hundred thirty-eight'),\n(3855, 49070, 'forty-nine thousand seventy'),\n(3856, 96741, 'ninety-six thousand seven hundred forty-one'),\n(3857, 86333, 'eighty-six thousand three hundred thirty-three'),\n(3858, 95337, 'ninety-five thousand three hundred thirty-seven'),\n(3859, 52917, 'fifty-two thousand nine hundred seventeen'),\n(3860, 54334, 'fifty-four thousand three hundred thirty-four'),\n(3861, 56139, 'fifty-six thousand one hundred thirty-nine'),\n(3862, 93200, 'ninety-three thousand two hundred'),\n(3863, 19690, 'nineteen thousand six hundred ninety'),\n(3864, 52828, 'fifty-two thousand eight hundred twenty-eight'),\n(3865, 98402, 'ninety-eight thousand four hundred two'),\n(3866, 2100, 'two thousand one hundred'),\n(3867, 43675, 'forty-three thousand six hundred seventy-five'),\n(3868, 10024, 'ten thousand twenty-four'),\n(3869, 31538, 'thirty-one thousand five hundred thirty-eight'),\n(3870, 21797, 'twenty-one thousand seven hundred ninety-seven'),\n(3871, 4973, 'four thousand nine hundred seventy-three'),\n(3872, 61882, 'sixty-one thousand eight hundred eighty-two'),\n(3873, 65290, 'sixty-five thousand two hundred ninety'),\n(3874, 1100, 'one thousand one hundred'),\n(3875, 71229, 'seventy-one thousand two hundred twenty-nine'),\n(3876, 40275, 'forty thousand two hundred seventy-five'),\n(3877, 55184, 'fifty-five thousand one hundred eighty-four'),\n(3878, 99269, 'ninety-nine thousand two hundred sixty-nine'),\n(3879, 12733, 'twelve thousand seven hundred thirty-three'),\n(3880, 62441, 'sixty-two thousand four hundred forty-one'),\n(3881, 40129, 'forty thousand one hundred twenty-nine'),\n(3882, 83255, 'eighty-three thousand two hundred fifty-five'),\n(3883, 27820, 'twenty-seven thousand eight hundred twenty'),\n(3884, 79113, 'seventy-nine thousand one hundred thirteen'),\n(3885, 14528, 'fourteen thousand five hundred twenty-eight'),\n(3886, 20056, 'twenty thousand fifty-six'),\n(3887, 18646, 'eighteen thousand six hundred forty-six'),\n(3888, 87438, 'eighty-seven thousand four hundred thirty-eight'),\n(3889, 9494, 'nine thousand four hundred ninety-four'),\n(3890, 50518, 'fifty thousand five hundred eighteen'),\n(3891, 86714, 'eighty-six thousand seven hundred fourteen'),\n(3892, 36556, 'thirty-six thousand five hundred fifty-six'),\n(3893, 75431, 'seventy-five thousand four hundred thirty-one'),\n(3894, 55646, 'fifty-five thousand six hundred forty-six'),\n(3895, 37113, 'thirty-seven thousand one hundred thirteen'),\n(3896, 23366, 'twenty-three thousand three hundred sixty-six'),\n(3897, 61458, 'sixty-one thousand four hundred fifty-eight'),\n(3898, 94562, 'ninety-four thousand five hundred sixty-two'),\n(3899, 37519, 'thirty-seven thousand five hundred nineteen'),\n(3900, 17632, 'seventeen thousand six hundred thirty-two'),\n(3901, 38403, 'thirty-eight thousand four hundred three'),\n(3902, 94568, 'ninety-four thousand five hundred sixty-eight'),\n(3903, 45163, 'forty-five thousand one hundred sixty-three'),\n(3904, 43773, 'forty-three thousand seven hundred seventy-three'),\n(3905, 48630, 'forty-eight thousand six hundred thirty'),\n(3906, 22134, 'twenty-two thousand one hundred thirty-four'),\n(3907, 95176, 'ninety-five thousand one hundred seventy-six'),\n(3908, 87972, 'eighty-seven thousand nine hundred seventy-two'),\n(3909, 71001, 'seventy-one thousand one'),\n(3910, 52710, 'fifty-two thousand seven hundred ten'),\n(3911, 40332, 'forty thousand three hundred thirty-two'),\n(3912, 75461, 'seventy-five thousand four hundred sixty-one'),\n(3913, 69119, 'sixty-nine thousand one hundred nineteen'),\n(3914, 3350, 'three thousand three hundred fifty'),\n(3915, 15054, 'fifteen thousand fifty-four'),\n(3916, 34744, 'thirty-four thousand seven hundred forty-four'),\n(3917, 17681, 'seventeen thousand six hundred eighty-one'),\n(3918, 6707, 'six thousand seven hundred seven'),\n(3919, 39451, 'thirty-nine thousand four hundred fifty-one'),\n(3920, 18487, 'eighteen thousand four hundred eighty-seven'),\n(3921, 70543, 'seventy thousand five hundred forty-three'),\n(3922, 12007, 'twelve thousand seven'),\n(3923, 96737, 'ninety-six thousand seven hundred thirty-seven'),\n(3924, 12895, 'twelve thousand eight hundred ninety-five'),\n(3925, 96657, 'ninety-six thousand six hundred fifty-seven'),\n(3926, 38542, 'thirty-eight thousand five hundred forty-two'),\n(3927, 51115, 'fifty-one thousand one hundred fifteen'),\n(3928, 81595, 'eighty-one thousand five hundred ninety-five'),\n(3929, 12185, 'twelve thousand one hundred eighty-five'),\n(3930, 4835, 'four thousand eight hundred thirty-five'),\n(3931, 61419, 'sixty-one thousand four hundred nineteen'),\n(3932, 91269, 'ninety-one thousand two hundred sixty-nine'),\n(3933, 52630, 'fifty-two thousand six hundred thirty'),\n(3934, 93973, 'ninety-three thousand nine hundred seventy-three'),\n(3935, 44786, 'forty-four thousand seven hundred eighty-six'),\n(3936, 27317, 'twenty-seven thousand three hundred seventeen'),\n(3937, 91548, 'ninety-one thousand five hundred forty-eight'),\n(3938, 1328, 'one thousand three hundred twenty-eight'),\n(3939, 71652, 'seventy-one thousand six hundred fifty-two'),\n(3940, 80418, 'eighty thousand four hundred eighteen'),\n(3941, 23967, 'twenty-three thousand nine hundred sixty-seven'),\n(3942, 9332, 'nine thousand three hundred thirty-two'),\n(3943, 75044, 'seventy-five thousand forty-four'),\n(3944, 64751, 'sixty-four thousand seven hundred fifty-one'),\n(3945, 77527, 'seventy-seven thousand five hundred twenty-seven'),\n(3946, 7631, 'seven thousand six hundred thirty-one'),\n(3947, 96320, 'ninety-six thousand three hundred twenty'),\n(3948, 30337, 'thirty thousand three hundred thirty-seven'),\n(3949, 22733, 'twenty-two thousand seven hundred thirty-three'),\n(3950, 20506, 'twenty thousand five hundred six'),\n(3951, 83774, 'eighty-three thousand seven hundred seventy-four'),\n(3952, 80109, 'eighty thousand one hundred nine'),\n(3953, 5008, 'five thousand eight'),\n(3954, 3949, 'three thousand nine hundred forty-nine'),\n(3955, 62418, 'sixty-two thousand four hundred eighteen'),\n(3956, 54088, 'fifty-four thousand eighty-eight'),\n(3957, 36788, 'thirty-six thousand seven hundred eighty-eight'),\n(3958, 24950, 'twenty-four thousand nine hundred fifty'),\n(3959, 37859, 'thirty-seven thousand eight hundred fifty-nine'),\n(3960, 67928, 'sixty-seven thousand nine hundred twenty-eight'),\n(3961, 65292, 'sixty-five thousand two hundred ninety-two'),\n(3962, 40668, 'forty thousand six hundred sixty-eight'),\n(3963, 46409, 'forty-six thousand four hundred nine'),\n(3964, 111, 'one hundred eleven'),\n(3965, 64791, 'sixty-four thousand seven hundred ninety-one'),\n(3966, 84418, 'eighty-four thousand four hundred eighteen'),\n(3967, 29140, 'twenty-nine thousand one hundred forty'),\n(3968, 48763, 'forty-eight thousand seven hundred sixty-three'),\n(3969, 32590, 'thirty-two thousand five hundred ninety'),\n(3970, 31298, 'thirty-one thousand two hundred ninety-eight'),\n(3971, 76630, 'seventy-six thousand six hundred thirty'),\n(3972, 32916, 'thirty-two thousand nine hundred sixteen'),\n(3973, 23346, 'twenty-three thousand three hundred forty-six'),\n(3974, 80830, 'eighty thousand eight hundred thirty'),\n(3975, 84532, 'eighty-four thousand five hundred thirty-two'),\n(3976, 59437, 'fifty-nine thousand four hundred thirty-seven'),\n(3977, 69224, 'sixty-nine thousand two hundred twenty-four'),\n(3978, 69787, 'sixty-nine thousand seven hundred eighty-seven'),\n(3979, 85294, 'eighty-five thousand two hundred ninety-four'),\n(3980, 28056, 'twenty-eight thousand fifty-six'),\n(3981, 45672, 'forty-five thousand six hundred seventy-two'),\n(3982, 57591, 'fifty-seven thousand five hundred ninety-one'),\n(3983, 15427, 'fifteen thousand four hundred twenty-seven'),\n(3984, 79946, 'seventy-nine thousand nine hundred forty-six'),\n(3985, 9897, 'nine thousand eight hundred ninety-seven'),\n(3986, 10501, 'ten thousand five hundred one'),\n(3987, 36033, 'thirty-six thousand thirty-three'),\n(3988, 62130, 'sixty-two thousand one hundred thirty'),\n(3989, 9579, 'nine thousand five hundred seventy-nine'),\n(3990, 20713, 'twenty thousand seven hundred thirteen'),\n(3991, 59247, 'fifty-nine thousand two hundred forty-seven'),\n(3992, 36997, 'thirty-six thousand nine hundred ninety-seven'),\n(3993, 69292, 'sixty-nine thousand two hundred ninety-two'),\n(3994, 36219, 'thirty-six thousand two hundred nineteen'),\n(3995, 20939, 'twenty thousand nine hundred thirty-nine'),\n(3996, 17032, 'seventeen thousand thirty-two'),\n(3997, 6416, 'six thousand four hundred sixteen'),\n(3998, 97039, 'ninety-seven thousand thirty-nine'),\n(3999, 28349, 'twenty-eight thousand three hundred forty-nine'),\n(4000, 85245, 'eighty-five thousand two hundred forty-five'),\n(4001, 83826, 'eighty-three thousand eight hundred twenty-six'),\n(4002, 94231, 'ninety-four thousand two hundred thirty-one'),\n(4003, 58912, 'fifty-eight thousand nine hundred twelve'),\n(4004, 781, 'seven hundred eighty-one'),\n(4005, 13913, 'thirteen thousand nine hundred thirteen'),\n(4006, 27851, 'twenty-seven thousand eight hundred fifty-one'),\n(4007, 19911, 'nineteen thousand nine hundred eleven'),\n(4008, 48974, 'forty-eight thousand nine hundred seventy-four'),\n(4009, 70757, 'seventy thousand seven hundred fifty-seven'),\n(4010, 87343, 'eighty-seven thousand three hundred forty-three'),\n(4011, 23398, 'twenty-three thousand three hundred ninety-eight'),\n(4012, 70196, 'seventy thousand one hundred ninety-six'),\n(4013, 49130, 'forty-nine thousand one hundred thirty'),\n(4014, 96997, 'ninety-six thousand nine hundred ninety-seven'),\n(4015, 72451, 'seventy-two thousand four hundred fifty-one'),\n(4016, 32489, 'thirty-two thousand four hundred eighty-nine'),\n(4017, 68117, 'sixty-eight thousand one hundred seventeen'),\n(4018, 6930, 'six thousand nine hundred thirty'),\n(4019, 48308, 'forty-eight thousand three hundred eight'),\n(4020, 82773, 'eighty-two thousand seven hundred seventy-three'),\n(4021, 67732, 'sixty-seven thousand seven hundred thirty-two'),\n(4022, 44346, 'forty-four thousand three hundred forty-six'),\n(4023, 70109, 'seventy thousand one hundred nine'),\n(4024, 46332, 'forty-six thousand three hundred thirty-two'),\n(4025, 19376, 'nineteen thousand three hundred seventy-six'),\n(4026, 72044, 'seventy-two thousand forty-four'),\n(4027, 91391, 'ninety-one thousand three hundred ninety-one'),\n(4028, 89435, 'eighty-nine thousand four hundred thirty-five'),\n(4029, 61157, 'sixty-one thousand one hundred fifty-seven'),\n(4030, 67596, 'sixty-seven thousand five hundred ninety-six'),\n(4031, 29183, 'twenty-nine thousand one hundred eighty-three'),\n(4032, 73872, 'seventy-three thousand eight hundred seventy-two'),\n(4033, 19767, 'nineteen thousand seven hundred sixty-seven'),\n(4034, 55028, 'fifty-five thousand twenty-eight'),\n(4035, 70173, 'seventy thousand one hundred seventy-three'),\n(4036, 91983, 'ninety-one thousand nine hundred eighty-three'),\n(4037, 77067, 'seventy-seven thousand sixty-seven'),\n(4038, 63202, 'sixty-three thousand two hundred two'),\n(4039, 80705, 'eighty thousand seven hundred five'),\n(4040, 18086, 'eighteen thousand eighty-six'),\n(4041, 85624, 'eighty-five thousand six hundred twenty-four'),\n(4042, 1454, 'one thousand four hundred fifty-four'),\n(4043, 71581, 'seventy-one thousand five hundred eighty-one'),\n(4044, 32723, 'thirty-two thousand seven hundred twenty-three'),\n(4045, 39370, 'thirty-nine thousand three hundred seventy'),\n(4046, 46108, 'forty-six thousand one hundred eight'),\n(4047, 97070, 'ninety-seven thousand seventy'),\n(4048, 49315, 'forty-nine thousand three hundred fifteen'),\n(4049, 31128, 'thirty-one thousand one hundred twenty-eight'),\n(4050, 39050, 'thirty-nine thousand fifty'),\n(4051, 3030, 'three thousand thirty'),\n(4052, 85921, 'eighty-five thousand nine hundred twenty-one'),\n(4053, 81196, 'eighty-one thousand one hundred ninety-six'),\n(4054, 25754, 'twenty-five thousand seven hundred fifty-four'),\n(4055, 4502, 'four thousand five hundred two'),\n(4056, 57215, 'fifty-seven thousand two hundred fifteen'),\n(4057, 1265, 'one thousand two hundred sixty-five'),\n(4058, 32390, 'thirty-two thousand three hundred ninety'),\n(4059, 78528, 'seventy-eight thousand five hundred twenty-eight'),\n(4060, 17892, 'seventeen thousand eight hundred ninety-two'),\n(4061, 73434, 'seventy-three thousand four hundred thirty-four'),\n(4062, 89191, 'eighty-nine thousand one hundred ninety-one'),\n(4063, 75876, 'seventy-five thousand eight hundred seventy-six'),\n(4064, 6388, 'six thousand three hundred eighty-eight'),\n(4065, 74466, 'seventy-four thousand four hundred sixty-six'),\n(4066, 32602, 'thirty-two thousand six hundred two'),\n(4067, 67555, 'sixty-seven thousand five hundred fifty-five'),\n(4068, 42344, 'forty-two thousand three hundred forty-four'),\n(4069, 41226, 'forty-one thousand two hundred twenty-six'),\n(4070, 19032, 'nineteen thousand thirty-two'),\n(4071, 63846, 'sixty-three thousand eight hundred forty-six'),\n(4072, 11858, 'eleven thousand eight hundred fifty-eight'),\n(4073, 27380, 'twenty-seven thousand three hundred eighty'),\n(4074, 79446, 'seventy-nine thousand four hundred forty-six'),\n(4075, 90992, 'ninety thousand nine hundred ninety-two'),\n(4076, 56203, 'fifty-six thousand two hundred three'),\n(4077, 82096, 'eighty-two thousand ninety-six'),\n(4078, 13686, 'thirteen thousand six hundred eighty-six'),\n(4079, 88216, 'eighty-eight thousand two hundred sixteen'),\n(4080, 59528, 'fifty-nine thousand five hundred twenty-eight'),\n(4081, 26392, 'twenty-six thousand three hundred ninety-two'),\n(4082, 16413, 'sixteen thousand four hundred thirteen'),\n(4083, 89480, 'eighty-nine thousand four hundred eighty'),\n(4084, 98345, 'ninety-eight thousand three hundred forty-five'),\n(4085, 43473, 'forty-three thousand four hundred seventy-three'),\n(4086, 72370, 'seventy-two thousand three hundred seventy'),\n(4087, 619, 'six hundred nineteen'),\n(4088, 87026, 'eighty-seven thousand twenty-six'),\n(4089, 17928, 'seventeen thousand nine hundred twenty-eight'),\n(4090, 34135, 'thirty-four thousand one hundred thirty-five'),\n(4091, 19336, 'nineteen thousand three hundred thirty-six'),\n(4092, 2809, 'two thousand eight hundred nine'),\n(4093, 40999, 'forty thousand nine hundred ninety-nine'),\n(4094, 50937, 'fifty thousand nine hundred thirty-seven'),\n(4095, 83436, 'eighty-three thousand four hundred thirty-six'),\n(4096, 32871, 'thirty-two thousand eight hundred seventy-one'),\n(4097, 13520, 'thirteen thousand five hundred twenty'),\n(4098, 43081, 'forty-three thousand eighty-one'),\n(4099, 59338, 'fifty-nine thousand three hundred thirty-eight'),\n(4100, 26710, 'twenty-six thousand seven hundred ten'),\n(4101, 65518, 'sixty-five thousand five hundred eighteen'),\n(4102, 44580, 'forty-four thousand five hundred eighty'),\n(4103, 89932, 'eighty-nine thousand nine hundred thirty-two'),\n(4104, 75034, 'seventy-five thousand thirty-four'),\n(4105, 79956, 'seventy-nine thousand nine hundred fifty-six'),\n(4106, 13335, 'thirteen thousand three hundred thirty-five'),\n(4107, 69733, 'sixty-nine thousand seven hundred thirty-three'),\n(4108, 54576, 'fifty-four thousand five hundred seventy-six'),\n(4109, 43262, 'forty-three thousand two hundred sixty-two'),\n(4110, 37057, 'thirty-seven thousand fifty-seven'),\n(4111, 41140, 'forty-one thousand one hundred forty'),\n(4112, 193, 'one hundred ninety-three'),\n(4113, 96651, 'ninety-six thousand six hundred fifty-one'),\n(4114, 82748, 'eighty-two thousand seven hundred forty-eight'),\n(4115, 40507, 'forty thousand five hundred seven'),\n(4116, 30983, 'thirty thousand nine hundred eighty-three'),\n(4117, 91685, 'ninety-one thousand six hundred eighty-five'),\n(4118, 82567, 'eighty-two thousand five hundred sixty-seven'),\n(4119, 95834, 'ninety-five thousand eight hundred thirty-four'),\n(4120, 90247, 'ninety thousand two hundred forty-seven'),\n(4121, 95929, 'ninety-five thousand nine hundred twenty-nine'),\n(4122, 65483, 'sixty-five thousand four hundred eighty-three'),\n(4123, 40857, 'forty thousand eight hundred fifty-seven'),\n(4124, 311, 'three hundred eleven'),\n(4125, 94631, 'ninety-four thousand six hundred thirty-one'),\n(4126, 43534, 'forty-three thousand five hundred thirty-four'),\n(4127, 61926, 'sixty-one thousand nine hundred twenty-six'),\n(4128, 89554, 'eighty-nine thousand five hundred fifty-four'),\n(4129, 96150, 'ninety-six thousand one hundred fifty'),\n(4130, 22874, 'twenty-two thousand eight hundred seventy-four'),\n(4131, 83759, 'eighty-three thousand seven hundred fifty-nine'),\n(4132, 21142, 'twenty-one thousand one hundred forty-two'),\n(4133, 39229, 'thirty-nine thousand two hundred twenty-nine'),\n(4134, 69965, 'sixty-nine thousand nine hundred sixty-five'),\n(4135, 55660, 'fifty-five thousand six hundred sixty'),\n(4136, 64609, 'sixty-four thousand six hundred nine'),\n(4137, 18269, 'eighteen thousand two hundred sixty-nine'),\n(4138, 39081, 'thirty-nine thousand eighty-one'),\n(4139, 19721, 'nineteen thousand seven hundred twenty-one'),\n(4140, 46810, 'forty-six thousand eight hundred ten'),\n(4141, 86435, 'eighty-six thousand four hundred thirty-five'),\n(4142, 48824, 'forty-eight thousand eight hundred twenty-four'),\n(4143, 70499, 'seventy thousand four hundred ninety-nine'),\n(4144, 5703, 'five thousand seven hundred three'),\n(4145, 89264, 'eighty-nine thousand two hundred sixty-four'),\n(4146, 97829, 'ninety-seven thousand eight hundred twenty-nine'),\n(4147, 32185, 'thirty-two thousand one hundred eighty-five'),\n(4148, 29858, 'twenty-nine thousand eight hundred fifty-eight'),\n(4149, 23594, 'twenty-three thousand five hundred ninety-four'),\n(4150, 41353, 'forty-one thousand three hundred fifty-three'),\n(4151, 80253, 'eighty thousand two hundred fifty-three'),\n(4152, 54283, 'fifty-four thousand two hundred eighty-three'),\n(4153, 7819, 'seven thousand eight hundred nineteen'),\n(4154, 45330, 'forty-five thousand three hundred thirty'),\n(4155, 28019, 'twenty-eight thousand nineteen'),\n(4156, 88974, 'eighty-eight thousand nine hundred seventy-four'),\n(4157, 14929, 'fourteen thousand nine hundred twenty-nine'),\n(4158, 32563, 'thirty-two thousand five hundred sixty-three'),\n(4159, 23270, 'twenty-three thousand two hundred seventy'),\n(4160, 94515, 'ninety-four thousand five hundred fifteen'),\n(4161, 10611, 'ten thousand six hundred eleven'),\n(4162, 64006, 'sixty-four thousand six'),\n(4163, 54926, 'fifty-four thousand nine hundred twenty-six'),\n(4164, 4946, 'four thousand nine hundred forty-six'),\n(4165, 97283, 'ninety-seven thousand two hundred eighty-three'),\n(4166, 82690, 'eighty-two thousand six hundred ninety'),\n(4167, 22634, 'twenty-two thousand six hundred thirty-four'),\n(4168, 36046, 'thirty-six thousand forty-six'),\n(4169, 10869, 'ten thousand eight hundred sixty-nine'),\n(4170, 78937, 'seventy-eight thousand nine hundred thirty-seven'),\n(4171, 11669, 'eleven thousand six hundred sixty-nine'),\n(4172, 73633, 'seventy-three thousand six hundred thirty-three'),\n(4173, 79652, 'seventy-nine thousand six hundred fifty-two'),\n(4174, 50908, 'fifty thousand nine hundred eight'),\n(4175, 64444, 'sixty-four thousand four hundred forty-four'),\n(4176, 93448, 'ninety-three thousand four hundred forty-eight'),\n(4177, 59940, 'fifty-nine thousand nine hundred forty'),\n(4178, 40447, 'forty thousand four hundred forty-seven'),\n(4179, 15826, 'fifteen thousand eight hundred twenty-six'),\n(4180, 91633, 'ninety-one thousand six hundred thirty-three'),\n(4181, 47018, 'forty-seven thousand eighteen'),\n(4182, 5185, 'five thousand one hundred eighty-five'),\n(4183, 21179, 'twenty-one thousand one hundred seventy-nine'),\n(4184, 68871, 'sixty-eight thousand eight hundred seventy-one'),\n(4185, 27139, 'twenty-seven thousand one hundred thirty-nine'),\n(4186, 86825, 'eighty-six thousand eight hundred twenty-five'),\n(4187, 92794, 'ninety-two thousand seven hundred ninety-four'),\n(4188, 60662, 'sixty thousand six hundred sixty-two'),\n(4189, 81598, 'eighty-one thousand five hundred ninety-eight'),\n(4190, 41653, 'forty-one thousand six hundred fifty-three'),\n(4191, 17355, 'seventeen thousand three hundred fifty-five'),\n(4192, 44720, 'forty-four thousand seven hundred twenty'),\n(4193, 62909, 'sixty-two thousand nine hundred nine'),\n(4194, 31575, 'thirty-one thousand five hundred seventy-five'),\n(4195, 14296, 'fourteen thousand two hundred ninety-six'),\n(4196, 4185, 'four thousand one hundred eighty-five'),\n(4197, 45823, 'forty-five thousand eight hundred twenty-three'),\n(4198, 28534, 'twenty-eight thousand five hundred thirty-four'),\n(4199, 3434, 'three thousand four hundred thirty-four'),\n(4200, 37538, 'thirty-seven thousand five hundred thirty-eight'),\n(4201, 26790, 'twenty-six thousand seven hundred ninety'),\n(4202, 26480, 'twenty-six thousand four hundred eighty'),\n(4203, 36255, 'thirty-six thousand two hundred fifty-five'),\n(4204, 85790, 'eighty-five thousand seven hundred ninety'),\n(4205, 11435, 'eleven thousand four hundred thirty-five'),\n(4206, 86740, 'eighty-six thousand seven hundred forty'),\n(4207, 56856, 'fifty-six thousand eight hundred fifty-six'),\n(4208, 88237, 'eighty-eight thousand two hundred thirty-seven'),\n(4209, 99331, 'ninety-nine thousand three hundred thirty-one'),\n(4210, 66586, 'sixty-six thousand five hundred eighty-six'),\n(4211, 62160, 'sixty-two thousand one hundred sixty'),\n(4212, 37501, 'thirty-seven thousand five hundred one'),\n(4213, 77064, 'seventy-seven thousand sixty-four'),\n(4214, 7117, 'seven thousand one hundred seventeen'),\n(4215, 40749, 'forty thousand seven hundred forty-nine'),\n(4216, 78269, 'seventy-eight thousand two hundred sixty-nine'),\n(4217, 96591, 'ninety-six thousand five hundred ninety-one'),\n(4218, 41621, 'forty-one thousand six hundred twenty-one'),\n(4219, 30701, 'thirty thousand seven hundred one'),\n(4220, 18857, 'eighteen thousand eight hundred fifty-seven'),\n(4221, 33627, 'thirty-three thousand six hundred twenty-seven'),\n(4222, 6785, 'six thousand seven hundred eighty-five'),\n(4223, 35737, 'thirty-five thousand seven hundred thirty-seven'),\n(4224, 95335, 'ninety-five thousand three hundred thirty-five'),\n(4225, 27708, 'twenty-seven thousand seven hundred eight'),\n(4226, 53785, 'fifty-three thousand seven hundred eighty-five'),\n(4227, 80291, 'eighty thousand two hundred ninety-one'),\n(4228, 24737, 'twenty-four thousand seven hundred thirty-seven'),\n(4229, 34695, 'thirty-four thousand six hundred ninety-five'),\n(4230, 73582, 'seventy-three thousand five hundred eighty-two'),\n(4231, 62687, 'sixty-two thousand six hundred eighty-seven'),\n(4232, 88414, 'eighty-eight thousand four hundred fourteen'),\n(4233, 2739, 'two thousand seven hundred thirty-nine'),\n(4234, 35654, 'thirty-five thousand six hundred fifty-four'),\n(4235, 20842, 'twenty thousand eight hundred forty-two'),\n(4236, 71388, 'seventy-one thousand three hundred eighty-eight'),\n(4237, 86025, 'eighty-six thousand twenty-five'),\n(4238, 12725, 'twelve thousand seven hundred twenty-five'),\n(4239, 81079, 'eighty-one thousand seventy-nine'),\n(4240, 22652, 'twenty-two thousand six hundred fifty-two'),\n(4241, 66224, 'sixty-six thousand two hundred twenty-four'),\n(4242, 94099, 'ninety-four thousand ninety-nine'),\n(4243, 42084, 'forty-two thousand eighty-four'),\n(4244, 52525, 'fifty-two thousand five hundred twenty-five'),\n(4245, 11860, 'eleven thousand eight hundred sixty'),\n(4246, 58446, 'fifty-eight thousand four hundred forty-six'),\n(4247, 93814, 'ninety-three thousand eight hundred fourteen'),\n(4248, 77379, 'seventy-seven thousand three hundred seventy-nine'),\n(4249, 84313, 'eighty-four thousand three hundred thirteen'),\n(4250, 27472, 'twenty-seven thousand four hundred seventy-two'),\n(4251, 79639, 'seventy-nine thousand six hundred thirty-nine'),\n(4252, 62504, 'sixty-two thousand five hundred four'),\n(4253, 86553, 'eighty-six thousand five hundred fifty-three'),\n(4254, 59234, 'fifty-nine thousand two hundred thirty-four'),\n(4255, 22433, 'twenty-two thousand four hundred thirty-three'),\n(4256, 99964, 'ninety-nine thousand nine hundred sixty-four'),\n(4257, 19492, 'nineteen thousand four hundred ninety-two'),\n(4258, 44370, 'forty-four thousand three hundred seventy'),\n(4259, 39734, 'thirty-nine thousand seven hundred thirty-four'),\n(4260, 21789, 'twenty-one thousand seven hundred eighty-nine'),\n(4261, 3396, 'three thousand three hundred ninety-six'),\n(4262, 76944, 'seventy-six thousand nine hundred forty-four'),\n(4263, 65316, 'sixty-five thousand three hundred sixteen'),\n(4264, 33849, 'thirty-three thousand eight hundred forty-nine'),\n(4265, 96104, 'ninety-six thousand one hundred four'),\n(4266, 57630, 'fifty-seven thousand six hundred thirty'),\n(4267, 70522, 'seventy thousand five hundred twenty-two'),\n(4268, 42601, 'forty-two thousand six hundred one'),\n(4269, 92053, 'ninety-two thousand fifty-three'),\n(4270, 45183, 'forty-five thousand one hundred eighty-three'),\n(4271, 57170, 'fifty-seven thousand one hundred seventy'),\n(4272, 15831, 'fifteen thousand eight hundred thirty-one'),\n(4273, 38588, 'thirty-eight thousand five hundred eighty-eight'),\n(4274, 80470, 'eighty thousand four hundred seventy'),\n(4275, 25962, 'twenty-five thousand nine hundred sixty-two'),\n(4276, 42779, 'forty-two thousand seven hundred seventy-nine'),\n(4277, 11918, 'eleven thousand nine hundred eighteen'),\n(4278, 56420, 'fifty-six thousand four hundred twenty'),\n(4279, 74416, 'seventy-four thousand four hundred sixteen'),\n(4280, 58235, 'fifty-eight thousand two hundred thirty-five'),\n(4281, 87856, 'eighty-seven thousand eight hundred fifty-six'),\n(4282, 13448, 'thirteen thousand four hundred forty-eight'),\n(4283, 28916, 'twenty-eight thousand nine hundred sixteen'),\n(4284, 27490, 'twenty-seven thousand four hundred ninety'),\n(4285, 83616, 'eighty-three thousand six hundred sixteen'),\n(4286, 82299, 'eighty-two thousand two hundred ninety-nine'),\n(4287, 83745, 'eighty-three thousand seven hundred forty-five'),\n(4288, 58854, 'fifty-eight thousand eight hundred fifty-four'),\n(4289, 712, 'seven hundred twelve'),\n(4290, 7943, 'seven thousand nine hundred forty-three'),\n(4291, 80867, 'eighty thousand eight hundred sixty-seven'),\n(4292, 61075, 'sixty-one thousand seventy-five'),\n(4293, 19266, 'nineteen thousand two hundred sixty-six'),\n(4294, 87747, 'eighty-seven thousand seven hundred forty-seven'),\n(4295, 59620, 'fifty-nine thousand six hundred twenty'),\n(4296, 85069, 'eighty-five thousand sixty-nine'),\n(4297, 3023, 'three thousand twenty-three'),\n(4298, 3285, 'three thousand two hundred eighty-five'),\n(4299, 52482, 'fifty-two thousand four hundred eighty-two'),\n(4300, 28307, 'twenty-eight thousand three hundred seven'),\n(4301, 6063, 'six thousand sixty-three'),\n(4302, 29100, 'twenty-nine thousand one hundred'),\n(4303, 24071, 'twenty-four thousand seventy-one'),\n(4304, 7781, 'seven thousand seven hundred eighty-one'),\n(4305, 91968, 'ninety-one thousand nine hundred sixty-eight'),\n(4306, 83326, 'eighty-three thousand three hundred twenty-six'),\n(4307, 77121, 'seventy-seven thousand one hundred twenty-one'),\n(4308, 11898, 'eleven thousand eight hundred ninety-eight'),\n(4309, 16455, 'sixteen thousand four hundred fifty-five'),\n(4310, 21402, 'twenty-one thousand four hundred two'),\n(4311, 92170, 'ninety-two thousand one hundred seventy'),\n(4312, 25538, 'twenty-five thousand five hundred thirty-eight'),\n(4313, 57641, 'fifty-seven thousand six hundred forty-one'),\n(4314, 20659, 'twenty thousand six hundred fifty-nine'),\n(4315, 49460, 'forty-nine thousand four hundred sixty'),\n(4316, 52615, 'fifty-two thousand six hundred fifteen'),\n(4317, 29520, 'twenty-nine thousand five hundred twenty'),\n(4318, 44000, 'forty-four thousand'),\n(4319, 31006, 'thirty-one thousand six'),\n(4320, 75457, 'seventy-five thousand four hundred fifty-seven'),\n(4321, 19739, 'nineteen thousand seven hundred thirty-nine'),\n(4322, 46344, 'forty-six thousand three hundred forty-four'),\n(4323, 83965, 'eighty-three thousand nine hundred sixty-five'),\n(4324, 19996, 'nineteen thousand nine hundred ninety-six'),\n(4325, 452, 'four hundred fifty-two'),\n(4326, 13382, 'thirteen thousand three hundred eighty-two'),\n(4327, 14471, 'fourteen thousand four hundred seventy-one'),\n(4328, 79069, 'seventy-nine thousand sixty-nine'),\n(4329, 16526, 'sixteen thousand five hundred twenty-six'),\n(4330, 29052, 'twenty-nine thousand fifty-two'),\n(4331, 46977, 'forty-six thousand nine hundred seventy-seven'),\n(4332, 73327, 'seventy-three thousand three hundred twenty-seven'),\n(4333, 44419, 'forty-four thousand four hundred nineteen'),\n(4334, 4944, 'four thousand nine hundred forty-four'),\n(4335, 22380, 'twenty-two thousand three hundred eighty'),\n(4336, 25638, 'twenty-five thousand six hundred thirty-eight'),\n(4337, 7784, 'seven thousand seven hundred eighty-four'),\n(4338, 65425, 'sixty-five thousand four hundred twenty-five'),\n(4339, 90983, 'ninety thousand nine hundred eighty-three'),\n(4340, 58570, 'fifty-eight thousand five hundred seventy'),\n(4341, 2038, 'two thousand thirty-eight'),\n(4342, 63935, 'sixty-three thousand nine hundred thirty-five'),\n(4343, 17875, 'seventeen thousand eight hundred seventy-five'),\n(4344, 15919, 'fifteen thousand nine hundred nineteen'),\n(4345, 96091, 'ninety-six thousand ninety-one'),\n(4346, 80985, 'eighty thousand nine hundred eighty-five'),\n(4347, 72594, 'seventy-two thousand five hundred ninety-four'),\n(4348, 7545, 'seven thousand five hundred forty-five'),\n(4349, 96620, 'ninety-six thousand six hundred twenty'),\n(4350, 29074, 'twenty-nine thousand seventy-four'),\n(4351, 86868, 'eighty-six thousand eight hundred sixty-eight'),\n(4352, 32658, 'thirty-two thousand six hundred fifty-eight'),\n(4353, 87750, 'eighty-seven thousand seven hundred fifty'),\n(4354, 57784, 'fifty-seven thousand seven hundred eighty-four'),\n(4355, 77227, 'seventy-seven thousand two hundred twenty-seven'),\n(4356, 56270, 'fifty-six thousand two hundred seventy'),\n(4357, 78163, 'seventy-eight thousand one hundred sixty-three'),\n(4358, 35, 'thirty-five'),\n(4359, 99191, 'ninety-nine thousand one hundred ninety-one'),\n(4360, 72811, 'seventy-two thousand eight hundred eleven'),\n(4361, 56053, 'fifty-six thousand fifty-three'),\n(4362, 74813, 'seventy-four thousand eight hundred thirteen'),\n(4363, 83316, 'eighty-three thousand three hundred sixteen'),\n(4364, 98263, 'ninety-eight thousand two hundred sixty-three'),\n(4365, 65848, 'sixty-five thousand eight hundred forty-eight'),\n(4366, 10213, 'ten thousand two hundred thirteen'),\n(4367, 98246, 'ninety-eight thousand two hundred forty-six'),\n(4368, 62245, 'sixty-two thousand two hundred forty-five'),\n(4369, 93505, 'ninety-three thousand five hundred five'),\n(4370, 8959, 'eight thousand nine hundred fifty-nine'),\n(4371, 37532, 'thirty-seven thousand five hundred thirty-two'),\n(4372, 5761, 'five thousand seven hundred sixty-one'),\n(4373, 74102, 'seventy-four thousand one hundred two'),\n(4374, 34528, 'thirty-four thousand five hundred twenty-eight'),\n(4375, 98738, 'ninety-eight thousand seven hundred thirty-eight'),\n(4376, 55141, 'fifty-five thousand one hundred forty-one'),\n(4377, 72199, 'seventy-two thousand one hundred ninety-nine'),\n(4378, 89523, 'eighty-nine thousand five hundred twenty-three'),\n(4379, 80123, 'eighty thousand one hundred twenty-three'),\n(4380, 50641, 'fifty thousand six hundred forty-one'),\n(4381, 48796, 'forty-eight thousand seven hundred ninety-six'),\n(4382, 95851, 'ninety-five thousand eight hundred fifty-one'),\n(4383, 10712, 'ten thousand seven hundred twelve'),\n(4384, 40887, 'forty thousand eight hundred eighty-seven'),\n(4385, 99523, 'ninety-nine thousand five hundred twenty-three'),\n(4386, 70303, 'seventy thousand three hundred three'),\n(4387, 32752, 'thirty-two thousand seven hundred fifty-two'),\n(4388, 31712, 'thirty-one thousand seven hundred twelve'),\n(4389, 60206, 'sixty thousand two hundred six'),\n(4390, 9127, 'nine thousand one hundred twenty-seven'),\n(4391, 23416, 'twenty-three thousand four hundred sixteen'),\n(4392, 91711, 'ninety-one thousand seven hundred eleven'),\n(4393, 77730, 'seventy-seven thousand seven hundred thirty'),\n(4394, 7848, 'seven thousand eight hundred forty-eight'),\n(4395, 99348, 'ninety-nine thousand three hundred forty-eight'),\n(4396, 8076, 'eight thousand seventy-six'),\n(4397, 66494, 'sixty-six thousand four hundred ninety-four'),\n(4398, 27738, 'twenty-seven thousand seven hundred thirty-eight'),\n(4399, 41187, 'forty-one thousand one hundred eighty-seven'),\n(4400, 28345, 'twenty-eight thousand three hundred forty-five'),\n(4401, 63280, 'sixty-three thousand two hundred eighty'),\n(4402, 67785, 'sixty-seven thousand seven hundred eighty-five'),\n(4403, 94473, 'ninety-four thousand four hundred seventy-three'),\n(4404, 94817, 'ninety-four thousand eight hundred seventeen'),\n(4405, 12443, 'twelve thousand four hundred forty-three'),\n(4406, 2285, 'two thousand two hundred eighty-five'),\n(4407, 51400, 'fifty-one thousand four hundred'),\n(4408, 74752, 'seventy-four thousand seven hundred fifty-two'),\n(4409, 75142, 'seventy-five thousand one hundred forty-two'),\n(4410, 800, 'eight hundred'),\n(4411, 43478, 'forty-three thousand four hundred seventy-eight'),\n(4412, 49832, 'forty-nine thousand eight hundred thirty-two'),\n(4413, 11799, 'eleven thousand seven hundred ninety-nine'),\n(4414, 82029, 'eighty-two thousand twenty-nine'),\n(4415, 15467, 'fifteen thousand four hundred sixty-seven'),\n(4416, 81691, 'eighty-one thousand six hundred ninety-one'),\n(4417, 98280, 'ninety-eight thousand two hundred eighty'),\n(4418, 47788, 'forty-seven thousand seven hundred eighty-eight'),\n(4419, 71283, 'seventy-one thousand two hundred eighty-three'),\n(4420, 37584, 'thirty-seven thousand five hundred eighty-four'),\n(4421, 9510, 'nine thousand five hundred ten'),\n(4422, 85829, 'eighty-five thousand eight hundred twenty-nine'),\n(4423, 61528, 'sixty-one thousand five hundred twenty-eight'),\n(4424, 17006, 'seventeen thousand six'),\n(4425, 7205, 'seven thousand two hundred five'),\n(4426, 18266, 'eighteen thousand two hundred sixty-six'),\n(4427, 10165, 'ten thousand one hundred sixty-five'),\n(4428, 96592, 'ninety-six thousand five hundred ninety-two'),\n(4429, 52225, 'fifty-two thousand two hundred twenty-five'),\n(4430, 18297, 'eighteen thousand two hundred ninety-seven'),\n(4431, 80152, 'eighty thousand one hundred fifty-two'),\n(4432, 54747, 'fifty-four thousand seven hundred forty-seven'),\n(4433, 7097, 'seven thousand ninety-seven'),\n(4434, 72780, 'seventy-two thousand seven hundred eighty'),\n(4435, 3665, 'three thousand six hundred sixty-five'),\n(4436, 63624, 'sixty-three thousand six hundred twenty-four'),\n(4437, 88424, 'eighty-eight thousand four hundred twenty-four'),\n(4438, 18709, 'eighteen thousand seven hundred nine'),\n(4439, 14555, 'fourteen thousand five hundred fifty-five'),\n(4440, 95879, 'ninety-five thousand eight hundred seventy-nine'),\n(4441, 61798, 'sixty-one thousand seven hundred ninety-eight'),\n(4442, 49075, 'forty-nine thousand seventy-five'),\n(4443, 76517, 'seventy-six thousand five hundred seventeen'),\n(4444, 71524, 'seventy-one thousand five hundred twenty-four'),\n(4445, 79718, 'seventy-nine thousand seven hundred eighteen'),\n(4446, 35387, 'thirty-five thousand three hundred eighty-seven'),\n(4447, 2913, 'two thousand nine hundred thirteen'),\n(4448, 15569, 'fifteen thousand five hundred sixty-nine'),\n(4449, 10143, 'ten thousand one hundred forty-three'),\n(4450, 3681, 'three thousand six hundred eighty-one'),\n(4451, 62628, 'sixty-two thousand six hundred twenty-eight'),\n(4452, 55345, 'fifty-five thousand three hundred forty-five'),\n(4453, 74335, 'seventy-four thousand three hundred thirty-five'),\n(4454, 87541, 'eighty-seven thousand five hundred forty-one'),\n(4455, 79989, 'seventy-nine thousand nine hundred eighty-nine'),\n(4456, 15788, 'fifteen thousand seven hundred eighty-eight'),\n(4457, 45203, 'forty-five thousand two hundred three'),\n(4458, 15077, 'fifteen thousand seventy-seven'),\n(4459, 95049, 'ninety-five thousand forty-nine'),\n(4460, 61922, 'sixty-one thousand nine hundred twenty-two'),\n(4461, 75353, 'seventy-five thousand three hundred fifty-three'),\n(4462, 90282, 'ninety thousand two hundred eighty-two'),\n(4463, 86563, 'eighty-six thousand five hundred sixty-three'),\n(4464, 9224, 'nine thousand two hundred twenty-four'),\n(4465, 33026, 'thirty-three thousand twenty-six'),\n(4466, 30553, 'thirty thousand five hundred fifty-three'),\n(4467, 61393, 'sixty-one thousand three hundred ninety-three'),\n(4468, 90975, 'ninety thousand nine hundred seventy-five'),\n(4469, 61005, 'sixty-one thousand five'),\n(4470, 6497, 'six thousand four hundred ninety-seven'),\n(4471, 66224, 'sixty-six thousand two hundred twenty-four'),\n(4472, 798, 'seven hundred ninety-eight'),\n(4473, 41513, 'forty-one thousand five hundred thirteen'),\n(4474, 69469, 'sixty-nine thousand four hundred sixty-nine'),\n(4475, 21, 'twenty-one'),\n(4476, 88103, 'eighty-eight thousand one hundred three'),\n(4477, 75495, 'seventy-five thousand four hundred ninety-five'),\n(4478, 98801, 'ninety-eight thousand eight hundred one'),\n(4479, 67165, 'sixty-seven thousand one hundred sixty-five'),\n(4480, 9413, 'nine thousand four hundred thirteen'),\n(4481, 50214, 'fifty thousand two hundred fourteen'),\n(4482, 37033, 'thirty-seven thousand thirty-three'),\n(4483, 25036, 'twenty-five thousand thirty-six'),\n(4484, 56330, 'fifty-six thousand three hundred thirty'),\n(4485, 81512, 'eighty-one thousand five hundred twelve'),\n(4486, 75582, 'seventy-five thousand five hundred eighty-two'),\n(4487, 86710, 'eighty-six thousand seven hundred ten'),\n(4488, 76854, 'seventy-six thousand eight hundred fifty-four'),\n(4489, 27538, 'twenty-seven thousand five hundred thirty-eight'),\n(4490, 38898, 'thirty-eight thousand eight hundred ninety-eight'),\n(4491, 82087, 'eighty-two thousand eighty-seven'),\n(4492, 91525, 'ninety-one thousand five hundred twenty-five'),\n(4493, 69575, 'sixty-nine thousand five hundred seventy-five'),\n(4494, 46944, 'forty-six thousand nine hundred forty-four'),\n(4495, 770, 'seven hundred seventy'),\n(4496, 77589, 'seventy-seven thousand five hundred eighty-nine'),\n(4497, 46484, 'forty-six thousand four hundred eighty-four'),\n(4498, 26049, 'twenty-six thousand forty-nine'),\n(4499, 48002, 'forty-eight thousand two'),\n(4500, 81084, 'eighty-one thousand eighty-four'),\n(4501, 1240, 'one thousand two hundred forty'),\n(4502, 2925, 'two thousand nine hundred twenty-five'),\n(4503, 24746, 'twenty-four thousand seven hundred forty-six'),\n(4504, 81521, 'eighty-one thousand five hundred twenty-one'),\n(4505, 16707, 'sixteen thousand seven hundred seven'),\n(4506, 96559, 'ninety-six thousand five hundred fifty-nine'),\n(4507, 36314, 'thirty-six thousand three hundred fourteen'),\n(4508, 84985, 'eighty-four thousand nine hundred eighty-five'),\n(4509, 41122, 'forty-one thousand one hundred twenty-two'),\n(4510, 54909, 'fifty-four thousand nine hundred nine'),\n(4511, 25504, 'twenty-five thousand five hundred four'),\n(4512, 11813, 'eleven thousand eight hundred thirteen'),\n(4513, 51895, 'fifty-one thousand eight hundred ninety-five'),\n(4514, 93965, 'ninety-three thousand nine hundred sixty-five'),\n(4515, 33573, 'thirty-three thousand five hundred seventy-three'),\n(4516, 77515, 'seventy-seven thousand five hundred fifteen'),\n(4517, 35612, 'thirty-five thousand six hundred twelve'),\n(4518, 93610, 'ninety-three thousand six hundred ten'),\n(4519, 75004, 'seventy-five thousand four'),\n(4520, 97891, 'ninety-seven thousand eight hundred ninety-one'),\n(4521, 14779, 'fourteen thousand seven hundred seventy-nine'),\n(4522, 32754, 'thirty-two thousand seven hundred fifty-four'),\n(4523, 86256, 'eighty-six thousand two hundred fifty-six'),\n(4524, 90436, 'ninety thousand four hundred thirty-six'),\n(4525, 38187, 'thirty-eight thousand one hundred eighty-seven'),\n(4526, 50949, 'fifty thousand nine hundred forty-nine'),\n(4527, 18355, 'eighteen thousand three hundred fifty-five'),\n(4528, 63070, 'sixty-three thousand seventy'),\n(4529, 59655, 'fifty-nine thousand six hundred fifty-five'),\n(4530, 33976, 'thirty-three thousand nine hundred seventy-six'),\n(4531, 29394, 'twenty-nine thousand three hundred ninety-four'),\n(4532, 3645, 'three thousand six hundred forty-five'),\n(4533, 21838, 'twenty-one thousand eight hundred thirty-eight'),\n(4534, 95695, 'ninety-five thousand six hundred ninety-five'),\n(4535, 87327, 'eighty-seven thousand three hundred twenty-seven'),\n(4536, 54228, 'fifty-four thousand two hundred twenty-eight'),\n(4537, 3927, 'three thousand nine hundred twenty-seven'),\n(4538, 93132, 'ninety-three thousand one hundred thirty-two'),\n(4539, 39703, 'thirty-nine thousand seven hundred three'),\n(4540, 36547, 'thirty-six thousand five hundred forty-seven'),\n(4541, 69841, 'sixty-nine thousand eight hundred forty-one'),\n(4542, 29401, 'twenty-nine thousand four hundred one'),\n(4543, 73235, 'seventy-three thousand two hundred thirty-five'),\n(4544, 25054, 'twenty-five thousand fifty-four'),\n(4545, 93813, 'ninety-three thousand eight hundred thirteen'),\n(4546, 50627, 'fifty thousand six hundred twenty-seven'),\n(4547, 69063, 'sixty-nine thousand sixty-three'),\n(4548, 34191, 'thirty-four thousand one hundred ninety-one'),\n(4549, 81898, 'eighty-one thousand eight hundred ninety-eight'),\n(4550, 53809, 'fifty-three thousand eight hundred nine'),\n(4551, 40278, 'forty thousand two hundred seventy-eight'),\n(4552, 25498, 'twenty-five thousand four hundred ninety-eight'),\n(4553, 85055, 'eighty-five thousand fifty-five'),\n(4554, 35845, 'thirty-five thousand eight hundred forty-five'),\n(4555, 64533, 'sixty-four thousand five hundred thirty-three'),\n(4556, 28673, 'twenty-eight thousand six hundred seventy-three'),\n(4557, 13782, 'thirteen thousand seven hundred eighty-two'),\n(4558, 35281, 'thirty-five thousand two hundred eighty-one'),\n(4559, 28515, 'twenty-eight thousand five hundred fifteen'),\n(4560, 87363, 'eighty-seven thousand three hundred sixty-three'),\n(4561, 83666, 'eighty-three thousand six hundred sixty-six'),\n(4562, 11621, 'eleven thousand six hundred twenty-one'),\n(4563, 3641, 'three thousand six hundred forty-one'),\n(4564, 16857, 'sixteen thousand eight hundred fifty-seven'),\n(4565, 5991, 'five thousand nine hundred ninety-one'),\n(4566, 3074, 'three thousand seventy-four'),\n(4567, 24474, 'twenty-four thousand four hundred seventy-four'),\n(4568, 75954, 'seventy-five thousand nine hundred fifty-four'),\n(4569, 88426, 'eighty-eight thousand four hundred twenty-six'),\n(4570, 79581, 'seventy-nine thousand five hundred eighty-one'),\n(4571, 56822, 'fifty-six thousand eight hundred twenty-two'),\n(4572, 61539, 'sixty-one thousand five hundred thirty-nine'),\n(4573, 55173, 'fifty-five thousand one hundred seventy-three'),\n(4574, 46823, 'forty-six thousand eight hundred twenty-three'),\n(4575, 57063, 'fifty-seven thousand sixty-three'),\n(4576, 61109, 'sixty-one thousand one hundred nine'),\n(4577, 85461, 'eighty-five thousand four hundred sixty-one'),\n(4578, 84474, 'eighty-four thousand four hundred seventy-four'),\n(4579, 67682, 'sixty-seven thousand six hundred eighty-two'),\n(4580, 93659, 'ninety-three thousand six hundred fifty-nine'),\n(4581, 1504, 'one thousand five hundred four'),\n(4582, 58717, 'fifty-eight thousand seven hundred seventeen'),\n(4583, 35761, 'thirty-five thousand seven hundred sixty-one'),\n(4584, 66392, 'sixty-six thousand three hundred ninety-two'),\n(4585, 5477, 'five thousand four hundred seventy-seven'),\n(4586, 77005, 'seventy-seven thousand five'),\n(4587, 66107, 'sixty-six thousand one hundred seven'),\n(4588, 25747, 'twenty-five thousand seven hundred forty-seven'),\n(4589, 62765, 'sixty-two thousand seven hundred sixty-five'),\n(4590, 83802, 'eighty-three thousand eight hundred two'),\n(4591, 14872, 'fourteen thousand eight hundred seventy-two'),\n(4592, 75654, 'seventy-five thousand six hundred fifty-four'),\n(4593, 6280, 'six thousand two hundred eighty'),\n(4594, 25753, 'twenty-five thousand seven hundred fifty-three'),\n(4595, 14555, 'fourteen thousand five hundred fifty-five'),\n(4596, 76324, 'seventy-six thousand three hundred twenty-four'),\n(4597, 94278, 'ninety-four thousand two hundred seventy-eight'),\n(4598, 45729, 'forty-five thousand seven hundred twenty-nine'),\n(4599, 49554, 'forty-nine thousand five hundred fifty-four'),\n(4600, 57459, 'fifty-seven thousand four hundred fifty-nine'),\n(4601, 90993, 'ninety thousand nine hundred ninety-three'),\n(4602, 46528, 'forty-six thousand five hundred twenty-eight'),\n(4603, 31265, 'thirty-one thousand two hundred sixty-five'),\n(4604, 90098, 'ninety thousand ninety-eight'),\n(4605, 26781, 'twenty-six thousand seven hundred eighty-one'),\n(4606, 49781, 'forty-nine thousand seven hundred eighty-one'),\n(4607, 4595, 'four thousand five hundred ninety-five'),\n(4608, 89477, 'eighty-nine thousand four hundred seventy-seven'),\n(4609, 96900, 'ninety-six thousand nine hundred'),\n(4610, 60656, 'sixty thousand six hundred fifty-six'),\n(4611, 54272, 'fifty-four thousand two hundred seventy-two'),\n(4612, 41189, 'forty-one thousand one hundred eighty-nine'),\n(4613, 56243, 'fifty-six thousand two hundred forty-three'),\n(4614, 52142, 'fifty-two thousand one hundred forty-two'),\n(4615, 24729, 'twenty-four thousand seven hundred twenty-nine'),\n(4616, 31438, 'thirty-one thousand four hundred thirty-eight'),\n(4617, 89875, 'eighty-nine thousand eight hundred seventy-five'),\n(4618, 75762, 'seventy-five thousand seven hundred sixty-two'),\n(4619, 22397, 'twenty-two thousand three hundred ninety-seven'),\n(4620, 49736, 'forty-nine thousand seven hundred thirty-six'),\n(4621, 69296, 'sixty-nine thousand two hundred ninety-six'),\n(4622, 25552, 'twenty-five thousand five hundred fifty-two'),\n(4623, 21628, 'twenty-one thousand six hundred twenty-eight'),\n(4624, 52433, 'fifty-two thousand four hundred thirty-three'),\n(4625, 85636, 'eighty-five thousand six hundred thirty-six'),\n(4626, 61410, 'sixty-one thousand four hundred ten'),\n(4627, 80073, 'eighty thousand seventy-three'),\n(4628, 82404, 'eighty-two thousand four hundred four'),\n(4629, 82304, 'eighty-two thousand three hundred four'),\n(4630, 29735, 'twenty-nine thousand seven hundred thirty-five'),\n(4631, 48451, 'forty-eight thousand four hundred fifty-one'),\n(4632, 62223, 'sixty-two thousand two hundred twenty-three'),\n(4633, 147, 'one hundred forty-seven'),\n(4634, 6878, 'six thousand eight hundred seventy-eight'),\n(4635, 52925, 'fifty-two thousand nine hundred twenty-five'),\n(4636, 56386, 'fifty-six thousand three hundred eighty-six'),\n(4637, 86400, 'eighty-six thousand four hundred'),\n(4638, 86982, 'eighty-six thousand nine hundred eighty-two'),\n(4639, 67607, 'sixty-seven thousand six hundred seven'),\n(4640, 2173, 'two thousand one hundred seventy-three'),\n(4641, 21617, 'twenty-one thousand six hundred seventeen'),\n(4642, 41225, 'forty-one thousand two hundred twenty-five'),\n(4643, 34699, 'thirty-four thousand six hundred ninety-nine'),\n(4644, 2195, 'two thousand one hundred ninety-five'),\n(4645, 80084, 'eighty thousand eighty-four'),\n(4646, 43347, 'forty-three thousand three hundred forty-seven'),\n(4647, 41637, 'forty-one thousand six hundred thirty-seven'),\n(4648, 6485, 'six thousand four hundred eighty-five'),\n(4649, 34080, 'thirty-four thousand eighty'),\n(4650, 64636, 'sixty-four thousand six hundred thirty-six'),\n(4651, 54189, 'fifty-four thousand one hundred eighty-nine'),\n(4652, 16087, 'sixteen thousand eighty-seven'),\n(4653, 69549, 'sixty-nine thousand five hundred forty-nine'),\n(4654, 14602, 'fourteen thousand six hundred two'),\n(4655, 30139, 'thirty thousand one hundred thirty-nine'),\n(4656, 10911, 'ten thousand nine hundred eleven'),\n(4657, 57195, 'fifty-seven thousand one hundred ninety-five'),\n(4658, 84212, 'eighty-four thousand two hundred twelve'),\n(4659, 87960, 'eighty-seven thousand nine hundred sixty'),\n(4660, 72679, 'seventy-two thousand six hundred seventy-nine'),\n(4661, 48629, 'forty-eight thousand six hundred twenty-nine'),\n(4662, 74208, 'seventy-four thousand two hundred eight'),\n(4663, 34809, 'thirty-four thousand eight hundred nine'),\n(4664, 25138, 'twenty-five thousand one hundred thirty-eight'),\n(4665, 88467, 'eighty-eight thousand four hundred sixty-seven'),\n(4666, 37859, 'thirty-seven thousand eight hundred fifty-nine'),\n(4667, 86442, 'eighty-six thousand four hundred forty-two'),\n(4668, 47276, 'forty-seven thousand two hundred seventy-six'),\n(4669, 91827, 'ninety-one thousand eight hundred twenty-seven'),\n(4670, 97530, 'ninety-seven thousand five hundred thirty'),\n(4671, 81356, 'eighty-one thousand three hundred fifty-six'),\n(4672, 12399, 'twelve thousand three hundred ninety-nine'),\n(4673, 48910, 'forty-eight thousand nine hundred ten'),\n(4674, 55625, 'fifty-five thousand six hundred twenty-five'),\n(4675, 63024, 'sixty-three thousand twenty-four'),\n(4676, 46165, 'forty-six thousand one hundred sixty-five'),\n(4677, 7778, 'seven thousand seven hundred seventy-eight'),\n(4678, 27255, 'twenty-seven thousand two hundred fifty-five'),\n(4679, 31664, 'thirty-one thousand six hundred sixty-four'),\n(4680, 59626, 'fifty-nine thousand six hundred twenty-six'),\n(4681, 35045, 'thirty-five thousand forty-five'),\n(4682, 58962, 'fifty-eight thousand nine hundred sixty-two'),\n(4683, 79613, 'seventy-nine thousand six hundred thirteen'),\n(4684, 85752, 'eighty-five thousand seven hundred fifty-two'),\n(4685, 15033, 'fifteen thousand thirty-three'),\n(4686, 96883, 'ninety-six thousand eight hundred eighty-three'),\n(4687, 21002, 'twenty-one thousand two'),\n(4688, 37469, 'thirty-seven thousand four hundred sixty-nine'),\n(4689, 16726, 'sixteen thousand seven hundred twenty-six'),\n(4690, 70997, 'seventy thousand nine hundred ninety-seven'),\n(4691, 82097, 'eighty-two thousand ninety-seven'),\n(4692, 6697, 'six thousand six hundred ninety-seven'),\n(4693, 16948, 'sixteen thousand nine hundred forty-eight'),\n(4694, 11934, 'eleven thousand nine hundred thirty-four'),\n(4695, 53419, 'fifty-three thousand four hundred nineteen'),\n(4696, 75955, 'seventy-five thousand nine hundred fifty-five'),\n(4697, 14845, 'fourteen thousand eight hundred forty-five'),\n(4698, 15826, 'fifteen thousand eight hundred twenty-six'),\n(4699, 61614, 'sixty-one thousand six hundred fourteen'),\n(4700, 70358, 'seventy thousand three hundred fifty-eight'),\n(4701, 7950, 'seven thousand nine hundred fifty'),\n(4702, 72071, 'seventy-two thousand seventy-one'),\n(4703, 41427, 'forty-one thousand four hundred twenty-seven'),\n(4704, 5793, 'five thousand seven hundred ninety-three'),\n(4705, 99509, 'ninety-nine thousand five hundred nine'),\n(4706, 66725, 'sixty-six thousand seven hundred twenty-five'),\n(4707, 80187, 'eighty thousand one hundred eighty-seven'),\n(4708, 87891, 'eighty-seven thousand eight hundred ninety-one'),\n(4709, 56902, 'fifty-six thousand nine hundred two'),\n(4710, 7062, 'seven thousand sixty-two'),\n(4711, 55492, 'fifty-five thousand four hundred ninety-two'),\n(4712, 81473, 'eighty-one thousand four hundred seventy-three'),\n(4713, 58945, 'fifty-eight thousand nine hundred forty-five'),\n(4714, 37392, 'thirty-seven thousand three hundred ninety-two'),\n(4715, 52085, 'fifty-two thousand eighty-five'),\n(4716, 77280, 'seventy-seven thousand two hundred eighty'),\n(4717, 12164, 'twelve thousand one hundred sixty-four'),\n(4718, 39604, 'thirty-nine thousand six hundred four'),\n(4719, 56620, 'fifty-six thousand six hundred twenty'),\n(4720, 80749, 'eighty thousand seven hundred forty-nine'),\n(4721, 29119, 'twenty-nine thousand one hundred nineteen'),\n(4722, 8157, 'eight thousand one hundred fifty-seven'),\n(4723, 72769, 'seventy-two thousand seven hundred sixty-nine'),\n(4724, 91723, 'ninety-one thousand seven hundred twenty-three'),\n(4725, 91965, 'ninety-one thousand nine hundred sixty-five'),\n(4726, 52001, 'fifty-two thousand one'),\n(4727, 42827, 'forty-two thousand eight hundred twenty-seven'),\n(4728, 17563, 'seventeen thousand five hundred sixty-three'),\n(4729, 28505, 'twenty-eight thousand five hundred five'),\n(4730, 69035, 'sixty-nine thousand thirty-five'),\n(4731, 7523, 'seven thousand five hundred twenty-three'),\n(4732, 61903, 'sixty-one thousand nine hundred three'),\n(4733, 82398, 'eighty-two thousand three hundred ninety-eight'),\n(4734, 85492, 'eighty-five thousand four hundred ninety-two'),\n(4735, 2186, 'two thousand one hundred eighty-six'),\n(4736, 99572, 'ninety-nine thousand five hundred seventy-two'),\n(4737, 29294, 'twenty-nine thousand two hundred ninety-four'),\n(4738, 3750, 'three thousand seven hundred fifty'),\n(4739, 56326, 'fifty-six thousand three hundred twenty-six'),\n(4740, 52409, 'fifty-two thousand four hundred nine'),\n(4741, 19675, 'nineteen thousand six hundred seventy-five'),\n(4742, 47832, 'forty-seven thousand eight hundred thirty-two'),\n(4743, 82499, 'eighty-two thousand four hundred ninety-nine'),\n(4744, 48009, 'forty-eight thousand nine'),\n(4745, 9329, 'nine thousand three hundred twenty-nine'),\n(4746, 32273, 'thirty-two thousand two hundred seventy-three'),\n(4747, 24342, 'twenty-four thousand three hundred forty-two'),\n(4748, 53164, 'fifty-three thousand one hundred sixty-four'),\n(4749, 38214, 'thirty-eight thousand two hundred fourteen'),\n(4750, 24790, 'twenty-four thousand seven hundred ninety'),\n(4751, 51209, 'fifty-one thousand two hundred nine'),\n(4752, 31913, 'thirty-one thousand nine hundred thirteen'),\n(4753, 5221, 'five thousand two hundred twenty-one'),\n(4754, 24833, 'twenty-four thousand eight hundred thirty-three'),\n(4755, 63212, 'sixty-three thousand two hundred twelve'),\n(4756, 86686, 'eighty-six thousand six hundred eighty-six'),\n(4757, 49829, 'forty-nine thousand eight hundred twenty-nine'),\n(4758, 45560, 'forty-five thousand five hundred sixty'),\n(4759, 83083, 'eighty-three thousand eighty-three'),\n(4760, 30804, 'thirty thousand eight hundred four'),\n(4761, 83416, 'eighty-three thousand four hundred sixteen'),\n(4762, 13225, 'thirteen thousand two hundred twenty-five'),\n(4763, 78037, 'seventy-eight thousand thirty-seven'),\n(4764, 91227, 'ninety-one thousand two hundred twenty-seven'),\n(4765, 51755, 'fifty-one thousand seven hundred fifty-five'),\n(4766, 22163, 'twenty-two thousand one hundred sixty-three'),\n(4767, 70509, 'seventy thousand five hundred nine'),\n(4768, 79537, 'seventy-nine thousand five hundred thirty-seven'),\n(4769, 44627, 'forty-four thousand six hundred twenty-seven'),\n(4770, 92844, 'ninety-two thousand eight hundred forty-four'),\n(4771, 20804, 'twenty thousand eight hundred four'),\n(4772, 53296, 'fifty-three thousand two hundred ninety-six'),\n(4773, 98831, 'ninety-eight thousand eight hundred thirty-one'),\n(4774, 22003, 'twenty-two thousand three'),\n(4775, 17198, 'seventeen thousand one hundred ninety-eight'),\n(4776, 48790, 'forty-eight thousand seven hundred ninety'),\n(4777, 10162, 'ten thousand one hundred sixty-two'),\n(4778, 77362, 'seventy-seven thousand three hundred sixty-two'),\n(4779, 4143, 'four thousand one hundred forty-three'),\n(4780, 42531, 'forty-two thousand five hundred thirty-one'),\n(4781, 33238, 'thirty-three thousand two hundred thirty-eight'),\n(4782, 65677, 'sixty-five thousand six hundred seventy-seven'),\n(4783, 94766, 'ninety-four thousand seven hundred sixty-six'),\n(4784, 85655, 'eighty-five thousand six hundred fifty-five'),\n(4785, 72849, 'seventy-two thousand eight hundred forty-nine'),\n(4786, 59333, 'fifty-nine thousand three hundred thirty-three'),\n(4787, 84413, 'eighty-four thousand four hundred thirteen'),\n(4788, 60015, 'sixty thousand fifteen'),\n(4789, 77987, 'seventy-seven thousand nine hundred eighty-seven'),\n(4790, 49079, 'forty-nine thousand seventy-nine'),\n(4791, 16080, 'sixteen thousand eighty'),\n(4792, 64104, 'sixty-four thousand one hundred four'),\n(4793, 93471, 'ninety-three thousand four hundred seventy-one'),\n(4794, 38891, 'thirty-eight thousand eight hundred ninety-one'),\n(4795, 91732, 'ninety-one thousand seven hundred thirty-two'),\n(4796, 37815, 'thirty-seven thousand eight hundred fifteen'),\n(4797, 62190, 'sixty-two thousand one hundred ninety'),\n(4798, 48543, 'forty-eight thousand five hundred forty-three'),\n(4799, 97640, 'ninety-seven thousand six hundred forty'),\n(4800, 28116, 'twenty-eight thousand one hundred sixteen'),\n(4801, 58220, 'fifty-eight thousand two hundred twenty'),\n(4802, 55682, 'fifty-five thousand six hundred eighty-two'),\n(4803, 79669, 'seventy-nine thousand six hundred sixty-nine'),\n(4804, 875, 'eight hundred seventy-five'),\n(4805, 37484, 'thirty-seven thousand four hundred eighty-four'),\n(4806, 60499, 'sixty thousand four hundred ninety-nine'),\n(4807, 39708, 'thirty-nine thousand seven hundred eight'),\n(4808, 42126, 'forty-two thousand one hundred twenty-six'),\n(4809, 44099, 'forty-four thousand ninety-nine'),\n(4810, 22129, 'twenty-two thousand one hundred twenty-nine'),\n(4811, 28170, 'twenty-eight thousand one hundred seventy'),\n(4812, 44039, 'forty-four thousand thirty-nine'),\n(4813, 15200, 'fifteen thousand two hundred'),\n(4814, 76217, 'seventy-six thousand two hundred seventeen'),\n(4815, 1680, 'one thousand six hundred eighty'),\n(4816, 24500, 'twenty-four thousand five hundred'),\n(4817, 41140, 'forty-one thousand one hundred forty'),\n(4818, 26863, 'twenty-six thousand eight hundred sixty-three'),\n(4819, 97029, 'ninety-seven thousand twenty-nine'),\n(4820, 10602, 'ten thousand six hundred two'),\n(4821, 42379, 'forty-two thousand three hundred seventy-nine'),\n(4822, 14969, 'fourteen thousand nine hundred sixty-nine'),\n(4823, 76245, 'seventy-six thousand two hundred forty-five'),\n(4824, 66360, 'sixty-six thousand three hundred sixty'),\n(4825, 75475, 'seventy-five thousand four hundred seventy-five'),\n(4826, 34858, 'thirty-four thousand eight hundred fifty-eight'),\n(4827, 74993, 'seventy-four thousand nine hundred ninety-three'),\n(4828, 19014, 'nineteen thousand fourteen'),\n(4829, 80289, 'eighty thousand two hundred eighty-nine'),\n(4830, 23267, 'twenty-three thousand two hundred sixty-seven'),\n(4831, 3825, 'three thousand eight hundred twenty-five'),\n(4832, 52691, 'fifty-two thousand six hundred ninety-one'),\n(4833, 94716, 'ninety-four thousand seven hundred sixteen'),\n(4834, 37475, 'thirty-seven thousand four hundred seventy-five'),\n(4835, 10097, 'ten thousand ninety-seven'),\n(4836, 34612, 'thirty-four thousand six hundred twelve'),\n(4837, 6177, 'six thousand one hundred seventy-seven'),\n(4838, 79949, 'seventy-nine thousand nine hundred forty-nine'),\n(4839, 2101, 'two thousand one hundred one'),\n(4840, 92602, 'ninety-two thousand six hundred two'),\n(4841, 86662, 'eighty-six thousand six hundred sixty-two'),\n(4842, 4550, 'four thousand five hundred fifty'),\n(4843, 19952, 'nineteen thousand nine hundred fifty-two'),\n(4844, 85057, 'eighty-five thousand fifty-seven'),\n(4845, 89932, 'eighty-nine thousand nine hundred thirty-two'),\n(4846, 88702, 'eighty-eight thousand seven hundred two'),\n(4847, 6053, 'six thousand fifty-three'),\n(4848, 14956, 'fourteen thousand nine hundred fifty-six'),\n(4849, 82044, 'eighty-two thousand forty-four'),\n(4850, 40502, 'forty thousand five hundred two'),\n(4851, 66270, 'sixty-six thousand two hundred seventy'),\n(4852, 67502, 'sixty-seven thousand five hundred two'),\n(4853, 16700, 'sixteen thousand seven hundred'),\n(4854, 3480, 'three thousand four hundred eighty'),\n(4855, 54407, 'fifty-four thousand four hundred seven'),\n(4856, 17013, 'seventeen thousand thirteen'),\n(4857, 58564, 'fifty-eight thousand five hundred sixty-four'),\n(4858, 12000, 'twelve thousand'),\n(4859, 80035, 'eighty thousand thirty-five'),\n(4860, 49411, 'forty-nine thousand four hundred eleven'),\n(4861, 6612, 'six thousand six hundred twelve'),\n(4862, 35349, 'thirty-five thousand three hundred forty-nine'),\n(4863, 78876, 'seventy-eight thousand eight hundred seventy-six'),\n(4864, 15385, 'fifteen thousand three hundred eighty-five'),\n(4865, 67216, 'sixty-seven thousand two hundred sixteen'),\n(4866, 20820, 'twenty thousand eight hundred twenty'),\n(4867, 57372, 'fifty-seven thousand three hundred seventy-two'),\n(4868, 92182, 'ninety-two thousand one hundred eighty-two'),\n(4869, 11215, 'eleven thousand two hundred fifteen'),\n(4870, 71712, 'seventy-one thousand seven hundred twelve'),\n(4871, 96324, 'ninety-six thousand three hundred twenty-four'),\n(4872, 59297, 'fifty-nine thousand two hundred ninety-seven'),\n(4873, 41951, 'forty-one thousand nine hundred fifty-one'),\n(4874, 94949, 'ninety-four thousand nine hundred forty-nine'),\n(4875, 89547, 'eighty-nine thousand five hundred forty-seven'),\n(4876, 62632, 'sixty-two thousand six hundred thirty-two'),\n(4877, 73077, 'seventy-three thousand seventy-seven'),\n(4878, 92981, 'ninety-two thousand nine hundred eighty-one'),\n(4879, 6659, 'six thousand six hundred fifty-nine'),\n(4880, 70080, 'seventy thousand eighty'),\n(4881, 46383, 'forty-six thousand three hundred eighty-three'),\n(4882, 46585, 'forty-six thousand five hundred eighty-five'),\n(4883, 18286, 'eighteen thousand two hundred eighty-six'),\n(4884, 54538, 'fifty-four thousand five hundred thirty-eight'),\n(4885, 36581, 'thirty-six thousand five hundred eighty-one'),\n(4886, 98167, 'ninety-eight thousand one hundred sixty-seven'),\n(4887, 88869, 'eighty-eight thousand eight hundred sixty-nine'),\n(4888, 25749, 'twenty-five thousand seven hundred forty-nine'),\n(4889, 63033, 'sixty-three thousand thirty-three'),\n(4890, 35900, 'thirty-five thousand nine hundred'),\n(4891, 7486, 'seven thousand four hundred eighty-six'),\n(4892, 94932, 'ninety-four thousand nine hundred thirty-two'),\n(4893, 3554, 'three thousand five hundred fifty-four'),\n(4894, 30294, 'thirty thousand two hundred ninety-four'),\n(4895, 83844, 'eighty-three thousand eight hundred forty-four'),\n(4896, 38278, 'thirty-eight thousand two hundred seventy-eight'),\n(4897, 39034, 'thirty-nine thousand thirty-four'),\n(4898, 27746, 'twenty-seven thousand seven hundred forty-six'),\n(4899, 43092, 'forty-three thousand ninety-two'),\n(4900, 21265, 'twenty-one thousand two hundred sixty-five'),\n(4901, 63625, 'sixty-three thousand six hundred twenty-five'),\n(4902, 5078, 'five thousand seventy-eight'),\n(4903, 52275, 'fifty-two thousand two hundred seventy-five'),\n(4904, 46559, 'forty-six thousand five hundred fifty-nine'),\n(4905, 96165, 'ninety-six thousand one hundred sixty-five'),\n(4906, 64208, 'sixty-four thousand two hundred eight'),\n(4907, 92308, 'ninety-two thousand three hundred eight'),\n(4908, 12430, 'twelve thousand four hundred thirty'),\n(4909, 15531, 'fifteen thousand five hundred thirty-one'),\n(4910, 24735, 'twenty-four thousand seven hundred thirty-five'),\n(4911, 67909, 'sixty-seven thousand nine hundred nine'),\n(4912, 82301, 'eighty-two thousand three hundred one'),\n(4913, 92672, 'ninety-two thousand six hundred seventy-two'),\n(4914, 85586, 'eighty-five thousand five hundred eighty-six'),\n(4915, 28340, 'twenty-eight thousand three hundred forty'),\n(4916, 61592, 'sixty-one thousand five hundred ninety-two'),\n(4917, 19250, 'nineteen thousand two hundred fifty'),\n(4918, 23888, 'twenty-three thousand eight hundred eighty-eight'),\n(4919, 2292, 'two thousand two hundred ninety-two'),\n(4920, 95415, 'ninety-five thousand four hundred fifteen'),\n(4921, 41490, 'forty-one thousand four hundred ninety'),\n(4922, 68044, 'sixty-eight thousand forty-four'),\n(4923, 71962, 'seventy-one thousand nine hundred sixty-two'),\n(4924, 26763, 'twenty-six thousand seven hundred sixty-three'),\n(4925, 99728, 'ninety-nine thousand seven hundred twenty-eight'),\n(4926, 61207, 'sixty-one thousand two hundred seven'),\n(4927, 45953, 'forty-five thousand nine hundred fifty-three'),\n(4928, 99391, 'ninety-nine thousand three hundred ninety-one'),\n(4929, 9812, 'nine thousand eight hundred twelve'),\n(4930, 17705, 'seventeen thousand seven hundred five'),\n(4931, 27902, 'twenty-seven thousand nine hundred two'),\n(4932, 95210, 'ninety-five thousand two hundred ten'),\n(4933, 49364, 'forty-nine thousand three hundred sixty-four'),\n(4934, 52670, 'fifty-two thousand six hundred seventy'),\n(4935, 92511, 'ninety-two thousand five hundred eleven'),\n(4936, 97673, 'ninety-seven thousand six hundred seventy-three'),\n(4937, 54223, 'fifty-four thousand two hundred twenty-three'),\n(4938, 79805, 'seventy-nine thousand eight hundred five'),\n(4939, 21130, 'twenty-one thousand one hundred thirty'),\n(4940, 35937, 'thirty-five thousand nine hundred thirty-seven'),\n(4941, 77114, 'seventy-seven thousand one hundred fourteen'),\n(4942, 67387, 'sixty-seven thousand three hundred eighty-seven'),\n(4943, 37801, 'thirty-seven thousand eight hundred one'),\n(4944, 77073, 'seventy-seven thousand seventy-three'),\n(4945, 30190, 'thirty thousand one hundred ninety'),\n(4946, 95547, 'ninety-five thousand five hundred forty-seven'),\n(4947, 38975, 'thirty-eight thousand nine hundred seventy-five'),\n(4948, 68527, 'sixty-eight thousand five hundred twenty-seven'),\n(4949, 20626, 'twenty thousand six hundred twenty-six'),\n(4950, 2671, 'two thousand six hundred seventy-one'),\n(4951, 46834, 'forty-six thousand eight hundred thirty-four'),\n(4952, 70999, 'seventy thousand nine hundred ninety-nine'),\n(4953, 39790, 'thirty-nine thousand seven hundred ninety'),\n(4954, 25000, 'twenty-five thousand'),\n(4955, 1183, 'one thousand one hundred eighty-three'),\n(4956, 68473, 'sixty-eight thousand four hundred seventy-three'),\n(4957, 7251, 'seven thousand two hundred fifty-one'),\n(4958, 43609, 'forty-three thousand six hundred nine'),\n(4959, 5859, 'five thousand eight hundred fifty-nine'),\n(4960, 48938, 'forty-eight thousand nine hundred thirty-eight'),\n(4961, 70491, 'seventy thousand four hundred ninety-one'),\n(4962, 36344, 'thirty-six thousand three hundred forty-four'),\n(4963, 25136, 'twenty-five thousand one hundred thirty-six'),\n(4964, 5483, 'five thousand four hundred eighty-three'),\n(4965, 59782, 'fifty-nine thousand seven hundred eighty-two'),\n(4966, 83360, 'eighty-three thousand three hundred sixty'),\n(4967, 23464, 'twenty-three thousand four hundred sixty-four'),\n(4968, 44027, 'forty-four thousand twenty-seven'),\n(4969, 43114, 'forty-three thousand one hundred fourteen'),\n(4970, 21173, 'twenty-one thousand one hundred seventy-three'),\n(4971, 73577, 'seventy-three thousand five hundred seventy-seven'),\n(4972, 25946, 'twenty-five thousand nine hundred forty-six'),\n(4973, 80055, 'eighty thousand fifty-five'),\n(4974, 74693, 'seventy-four thousand six hundred ninety-three'),\n(4975, 72656, 'seventy-two thousand six hundred fifty-six'),\n(4976, 10775, 'ten thousand seven hundred seventy-five'),\n(4977, 50830, 'fifty thousand eight hundred thirty'),\n(4978, 22257, 'twenty-two thousand two hundred fifty-seven'),\n(4979, 22434, 'twenty-two thousand four hundred thirty-four'),\n(4980, 44815, 'forty-four thousand eight hundred fifteen'),\n(4981, 74790, 'seventy-four thousand seven hundred ninety'),\n(4982, 26020, 'twenty-six thousand twenty'),\n(4983, 74226, 'seventy-four thousand two hundred twenty-six'),\n(4984, 4612, 'four thousand six hundred twelve'),\n(4985, 15622, 'fifteen thousand six hundred twenty-two'),\n(4986, 40404, 'forty thousand four hundred four'),\n(4987, 57422, 'fifty-seven thousand four hundred twenty-two'),\n(4988, 29900, 'twenty-nine thousand nine hundred'),\n(4989, 76359, 'seventy-six thousand three hundred fifty-nine'),\n(4990, 55289, 'fifty-five thousand two hundred eighty-nine'),\n(4991, 47993, 'forty-seven thousand nine hundred ninety-three'),\n(4992, 66117, 'sixty-six thousand one hundred seventeen'),\n(4993, 54833, 'fifty-four thousand eight hundred thirty-three'),\n(4994, 54347, 'fifty-four thousand three hundred forty-seven'),\n(4995, 48578, 'forty-eight thousand five hundred seventy-eight'),\n(4996, 21743, 'twenty-one thousand seven hundred forty-three'),\n(4997, 65712, 'sixty-five thousand seven hundred twelve'),\n(4998, 99309, 'ninety-nine thousand three hundred nine'),\n(4999, 56777, 'fifty-six thousand seven hundred seventy-seven'),\n(5000, 76006, 'seventy-six thousand six'),\n(5001, 54584, 'fifty-four thousand five hundred eighty-four'),\n(5002, 39790, 'thirty-nine thousand seven hundred ninety'),\n(5003, 76793, 'seventy-six thousand seven hundred ninety-three'),\n(5004, 38354, 'thirty-eight thousand three hundred fifty-four'),\n(5005, 17321, 'seventeen thousand three hundred twenty-one'),\n(5006, 35674, 'thirty-five thousand six hundred seventy-four'),\n(5007, 69052, 'sixty-nine thousand fifty-two'),\n(5008, 37592, 'thirty-seven thousand five hundred ninety-two'),\n(5009, 19592, 'nineteen thousand five hundred ninety-two'),\n(5010, 41696, 'forty-one thousand six hundred ninety-six'),\n(5011, 46847, 'forty-six thousand eight hundred forty-seven'),\n(5012, 5559, 'five thousand five hundred fifty-nine'),\n(5013, 13973, 'thirteen thousand nine hundred seventy-three'),\n(5014, 85494, 'eighty-five thousand four hundred ninety-four'),\n(5015, 10036, 'ten thousand thirty-six'),\n(5016, 3631, 'three thousand six hundred thirty-one'),\n(5017, 4271, 'four thousand two hundred seventy-one'),\n(5018, 15463, 'fifteen thousand four hundred sixty-three'),\n(5019, 90687, 'ninety thousand six hundred eighty-seven'),\n(5020, 84615, 'eighty-four thousand six hundred fifteen'),\n(5021, 13213, 'thirteen thousand two hundred thirteen'),\n(5022, 71979, 'seventy-one thousand nine hundred seventy-nine'),\n(5023, 20880, 'twenty thousand eight hundred eighty'),\n(5024, 33689, 'thirty-three thousand six hundred eighty-nine'),\n(5025, 2246, 'two thousand two hundred forty-six'),\n(5026, 53994, 'fifty-three thousand nine hundred ninety-four'),\n(5027, 5916, 'five thousand nine hundred sixteen'),\n(5028, 43769, 'forty-three thousand seven hundred sixty-nine'),\n(5029, 23461, 'twenty-three thousand four hundred sixty-one'),\n(5030, 29527, 'twenty-nine thousand five hundred twenty-seven'),\n(5031, 25637, 'twenty-five thousand six hundred thirty-seven'),\n(5032, 23596, 'twenty-three thousand five hundred ninety-six'),\n(5033, 58673, 'fifty-eight thousand six hundred seventy-three'),\n(5034, 56218, 'fifty-six thousand two hundred eighteen'),\n(5035, 15854, 'fifteen thousand eight hundred fifty-four'),\n(5036, 13049, 'thirteen thousand forty-nine'),\n(5037, 11890, 'eleven thousand eight hundred ninety'),\n(5038, 90603, 'ninety thousand six hundred three'),\n(5039, 7377, 'seven thousand three hundred seventy-seven'),\n(5040, 81798, 'eighty-one thousand seven hundred ninety-eight'),\n(5041, 45721, 'forty-five thousand seven hundred twenty-one'),\n(5042, 76444, 'seventy-six thousand four hundred forty-four'),\n(5043, 59561, 'fifty-nine thousand five hundred sixty-one'),\n(5044, 56704, 'fifty-six thousand seven hundred four'),\n(5045, 23426, 'twenty-three thousand four hundred twenty-six'),\n(5046, 83766, 'eighty-three thousand seven hundred sixty-six'),\n(5047, 85627, 'eighty-five thousand six hundred twenty-seven'),\n(5048, 89080, 'eighty-nine thousand eighty'),\n(5049, 78973, 'seventy-eight thousand nine hundred seventy-three'),\n(5050, 83165, 'eighty-three thousand one hundred sixty-five'),\n(5051, 69505, 'sixty-nine thousand five hundred five'),\n(5052, 10825, 'ten thousand eight hundred twenty-five'),\n(5053, 84581, 'eighty-four thousand five hundred eighty-one'),\n(5054, 60573, 'sixty thousand five hundred seventy-three'),\n(5055, 66580, 'sixty-six thousand five hundred eighty'),\n(5056, 21178, 'twenty-one thousand one hundred seventy-eight'),\n(5057, 55881, 'fifty-five thousand eight hundred eighty-one'),\n(5058, 65284, 'sixty-five thousand two hundred eighty-four'),\n(5059, 75245, 'seventy-five thousand two hundred forty-five'),\n(5060, 97129, 'ninety-seven thousand one hundred twenty-nine'),\n(5061, 51314, 'fifty-one thousand three hundred fourteen'),\n(5062, 56590, 'fifty-six thousand five hundred ninety'),\n(5063, 80409, 'eighty thousand four hundred nine'),\n(5064, 90545, 'ninety thousand five hundred forty-five'),\n(5065, 11948, 'eleven thousand nine hundred forty-eight'),\n(5066, 75688, 'seventy-five thousand six hundred eighty-eight'),\n(5067, 42655, 'forty-two thousand six hundred fifty-five'),\n(5068, 48614, 'forty-eight thousand six hundred fourteen'),\n(5069, 86866, 'eighty-six thousand eight hundred sixty-six'),\n(5070, 17972, 'seventeen thousand nine hundred seventy-two'),\n(5071, 92293, 'ninety-two thousand two hundred ninety-three'),\n(5072, 26566, 'twenty-six thousand five hundred sixty-six'),\n(5073, 67710, 'sixty-seven thousand seven hundred ten'),\n(5074, 40950, 'forty thousand nine hundred fifty'),\n(5075, 67035, 'sixty-seven thousand thirty-five'),\n(5076, 30157, 'thirty thousand one hundred fifty-seven'),\n(5077, 90995, 'ninety thousand nine hundred ninety-five'),\n(5078, 23306, 'twenty-three thousand three hundred six'),\n(5079, 23727, 'twenty-three thousand seven hundred twenty-seven'),\n(5080, 28854, 'twenty-eight thousand eight hundred fifty-four'),\n(5081, 5609, 'five thousand six hundred nine'),\n(5082, 69635, 'sixty-nine thousand six hundred thirty-five'),\n(5083, 75082, 'seventy-five thousand eighty-two'),\n(5084, 61201, 'sixty-one thousand two hundred one'),\n(5085, 64915, 'sixty-four thousand nine hundred fifteen'),\n(5086, 34554, 'thirty-four thousand five hundred fifty-four'),\n(5087, 39827, 'thirty-nine thousand eight hundred twenty-seven'),\n(5088, 36853, 'thirty-six thousand eight hundred fifty-three'),\n(5089, 25298, 'twenty-five thousand two hundred ninety-eight'),\n(5090, 47949, 'forty-seven thousand nine hundred forty-nine'),\n(5091, 55069, 'fifty-five thousand sixty-nine'),\n(5092, 41503, 'forty-one thousand five hundred three'),\n(5093, 561, 'five hundred sixty-one'),\n(5094, 13146, 'thirteen thousand one hundred forty-six'),\n(5095, 51192, 'fifty-one thousand one hundred ninety-two'),\n(5096, 19, 'nineteen'),\n(5097, 23490, 'twenty-three thousand four hundred ninety'),\n(5098, 18597, 'eighteen thousand five hundred ninety-seven'),\n(5099, 53051, 'fifty-three thousand fifty-one'),\n(5100, 97504, 'ninety-seven thousand five hundred four'),\n(5101, 53810, 'fifty-three thousand eight hundred ten'),\n(5102, 38016, 'thirty-eight thousand sixteen'),\n(5103, 94589, 'ninety-four thousand five hundred eighty-nine'),\n(5104, 64425, 'sixty-four thousand four hundred twenty-five'),\n(5105, 77528, 'seventy-seven thousand five hundred twenty-eight'),\n(5106, 97225, 'ninety-seven thousand two hundred twenty-five'),\n(5107, 98349, 'ninety-eight thousand three hundred forty-nine'),\n(5108, 80922, 'eighty thousand nine hundred twenty-two'),\n(5109, 17451, 'seventeen thousand four hundred fifty-one'),\n(5110, 70869, 'seventy thousand eight hundred sixty-nine'),\n(5111, 41319, 'forty-one thousand three hundred nineteen'),\n(5112, 31242, 'thirty-one thousand two hundred forty-two'),\n(5113, 31776, 'thirty-one thousand seven hundred seventy-six'),\n(5114, 93588, 'ninety-three thousand five hundred eighty-eight'),\n(5115, 67748, 'sixty-seven thousand seven hundred forty-eight'),\n(5116, 84330, 'eighty-four thousand three hundred thirty'),\n(5117, 80165, 'eighty thousand one hundred sixty-five'),\n(5118, 83666, 'eighty-three thousand six hundred sixty-six'),\n(5119, 62516, 'sixty-two thousand five hundred sixteen'),\n(5120, 24093, 'twenty-four thousand ninety-three'),\n(5121, 33489, 'thirty-three thousand four hundred eighty-nine'),\n(5122, 38940, 'thirty-eight thousand nine hundred forty'),\n(5123, 36679, 'thirty-six thousand six hundred seventy-nine'),\n(5124, 42106, 'forty-two thousand one hundred six'),\n(5125, 51646, 'fifty-one thousand six hundred forty-six'),\n(5126, 91814, 'ninety-one thousand eight hundred fourteen'),\n(5127, 59360, 'fifty-nine thousand three hundred sixty'),\n(5128, 17219, 'seventeen thousand two hundred nineteen'),\n(5129, 54693, 'fifty-four thousand six hundred ninety-three'),\n(5130, 88067, 'eighty-eight thousand sixty-seven'),\n(5131, 78746, 'seventy-eight thousand seven hundred forty-six'),\n(5132, 40542, 'forty thousand five hundred forty-two'),\n(5133, 82944, 'eighty-two thousand nine hundred forty-four'),\n(5134, 36885, 'thirty-six thousand eight hundred eighty-five'),\n(5135, 6810, 'six thousand eight hundred ten'),\n(5136, 2586, 'two thousand five hundred eighty-six'),\n(5137, 26637, 'twenty-six thousand six hundred thirty-seven'),\n(5138, 27621, 'twenty-seven thousand six hundred twenty-one'),\n(5139, 8355, 'eight thousand three hundred fifty-five'),\n(5140, 84173, 'eighty-four thousand one hundred seventy-three'),\n(5141, 36366, 'thirty-six thousand three hundred sixty-six'),\n(5142, 91644, 'ninety-one thousand six hundred forty-four'),\n(5143, 87484, 'eighty-seven thousand four hundred eighty-four'),\n(5144, 46132, 'forty-six thousand one hundred thirty-two'),\n(5145, 60494, 'sixty thousand four hundred ninety-four'),\n(5146, 76727, 'seventy-six thousand seven hundred twenty-seven'),\n(5147, 50231, 'fifty thousand two hundred thirty-one'),\n(5148, 58520, 'fifty-eight thousand five hundred twenty'),\n(5149, 87954, 'eighty-seven thousand nine hundred fifty-four'),\n(5150, 79266, 'seventy-nine thousand two hundred sixty-six'),\n(5151, 79677, 'seventy-nine thousand six hundred seventy-seven'),\n(5152, 93605, 'ninety-three thousand six hundred five'),\n(5153, 56204, 'fifty-six thousand two hundred four'),\n(5154, 21078, 'twenty-one thousand seventy-eight'),\n(5155, 73086, 'seventy-three thousand eighty-six'),\n(5156, 78933, 'seventy-eight thousand nine hundred thirty-three'),\n(5157, 79104, 'seventy-nine thousand one hundred four'),\n(5158, 9544, 'nine thousand five hundred forty-four'),\n(5159, 49912, 'forty-nine thousand nine hundred twelve'),\n(5160, 93064, 'ninety-three thousand sixty-four'),\n(5161, 35041, 'thirty-five thousand forty-one'),\n(5162, 5671, 'five thousand six hundred seventy-one'),\n(5163, 52072, 'fifty-two thousand seventy-two'),\n(5164, 6455, 'six thousand four hundred fifty-five'),\n(5165, 42472, 'forty-two thousand four hundred seventy-two'),\n(5166, 47328, 'forty-seven thousand three hundred twenty-eight'),\n(5167, 69741, 'sixty-nine thousand seven hundred forty-one'),\n(5168, 83016, 'eighty-three thousand sixteen'),\n(5169, 74810, 'seventy-four thousand eight hundred ten'),\n(5170, 18469, 'eighteen thousand four hundred sixty-nine'),\n(5171, 32678, 'thirty-two thousand six hundred seventy-eight'),\n(5172, 87525, 'eighty-seven thousand five hundred twenty-five'),\n(5173, 17571, 'seventeen thousand five hundred seventy-one'),\n(5174, 81233, 'eighty-one thousand two hundred thirty-three'),\n(5175, 92721, 'ninety-two thousand seven hundred twenty-one'),\n(5176, 89026, 'eighty-nine thousand twenty-six'),\n(5177, 77797, 'seventy-seven thousand seven hundred ninety-seven'),\n(5178, 38063, 'thirty-eight thousand sixty-three'),\n(5179, 5244, 'five thousand two hundred forty-four'),\n(5180, 67173, 'sixty-seven thousand one hundred seventy-three'),\n(5181, 65154, 'sixty-five thousand one hundred fifty-four'),\n(5182, 79458, 'seventy-nine thousand four hundred fifty-eight'),\n(5183, 24147, 'twenty-four thousand one hundred forty-seven'),\n(5184, 8676, 'eight thousand six hundred seventy-six'),\n(5185, 73329, 'seventy-three thousand three hundred twenty-nine'),\n(5186, 2066, 'two thousand sixty-six'),\n(5187, 76724, 'seventy-six thousand seven hundred twenty-four'),\n(5188, 44702, 'forty-four thousand seven hundred two'),\n(5189, 41851, 'forty-one thousand eight hundred fifty-one'),\n(5190, 48920, 'forty-eight thousand nine hundred twenty'),\n(5191, 15050, 'fifteen thousand fifty'),\n(5192, 54443, 'fifty-four thousand four hundred forty-three'),\n(5193, 53268, 'fifty-three thousand two hundred sixty-eight'),\n(5194, 8007, 'eight thousand seven'),\n(5195, 28339, 'twenty-eight thousand three hundred thirty-nine'),\n(5196, 10340, 'ten thousand three hundred forty'),\n(5197, 84652, 'eighty-four thousand six hundred fifty-two'),\n(5198, 86770, 'eighty-six thousand seven hundred seventy'),\n(5199, 71747, 'seventy-one thousand seven hundred forty-seven'),\n(5200, 35653, 'thirty-five thousand six hundred fifty-three'),\n(5201, 97934, 'ninety-seven thousand nine hundred thirty-four'),\n(5202, 76458, 'seventy-six thousand four hundred fifty-eight'),\n(5203, 61364, 'sixty-one thousand three hundred sixty-four'),\n(5204, 39435, 'thirty-nine thousand four hundred thirty-five'),\n(5205, 9286, 'nine thousand two hundred eighty-six'),\n(5206, 32518, 'thirty-two thousand five hundred eighteen'),\n(5207, 88687, 'eighty-eight thousand six hundred eighty-seven'),\n(5208, 13900, 'thirteen thousand nine hundred'),\n(5209, 87256, 'eighty-seven thousand two hundred fifty-six'),\n(5210, 31493, 'thirty-one thousand four hundred ninety-three'),\n(5211, 28515, 'twenty-eight thousand five hundred fifteen'),\n(5212, 13386, 'thirteen thousand three hundred eighty-six'),\n(5213, 81764, 'eighty-one thousand seven hundred sixty-four'),\n(5214, 32266, 'thirty-two thousand two hundred sixty-six'),\n(5215, 51612, 'fifty-one thousand six hundred twelve'),\n(5216, 89157, 'eighty-nine thousand one hundred fifty-seven'),\n(5217, 55315, 'fifty-five thousand three hundred fifteen'),\n(5218, 92005, 'ninety-two thousand five'),\n(5219, 27552, 'twenty-seven thousand five hundred fifty-two'),\n(5220, 92540, 'ninety-two thousand five hundred forty'),\n(5221, 70516, 'seventy thousand five hundred sixteen'),\n(5222, 85849, 'eighty-five thousand eight hundred forty-nine'),\n(5223, 97216, 'ninety-seven thousand two hundred sixteen'),\n(5224, 30165, 'thirty thousand one hundred sixty-five'),\n(5225, 40762, 'forty thousand seven hundred sixty-two'),\n(5226, 56910, 'fifty-six thousand nine hundred ten'),\n(5227, 54585, 'fifty-four thousand five hundred eighty-five'),\n(5228, 13498, 'thirteen thousand four hundred ninety-eight'),\n(5229, 97417, 'ninety-seven thousand four hundred seventeen'),\n(5230, 42402, 'forty-two thousand four hundred two'),\n(5231, 18751, 'eighteen thousand seven hundred fifty-one'),\n(5232, 42342, 'forty-two thousand three hundred forty-two'),\n(5233, 86201, 'eighty-six thousand two hundred one'),\n(5234, 10814, 'ten thousand eight hundred fourteen'),\n(5235, 72891, 'seventy-two thousand eight hundred ninety-one'),\n(5236, 86595, 'eighty-six thousand five hundred ninety-five'),\n(5237, 2117, 'two thousand one hundred seventeen'),\n(5238, 80556, 'eighty thousand five hundred fifty-six'),\n(5239, 16822, 'sixteen thousand eight hundred twenty-two'),\n(5240, 28227, 'twenty-eight thousand two hundred twenty-seven'),\n(5241, 86732, 'eighty-six thousand seven hundred thirty-two'),\n(5242, 27483, 'twenty-seven thousand four hundred eighty-three'),\n(5243, 90741, 'ninety thousand seven hundred forty-one'),\n(5244, 76751, 'seventy-six thousand seven hundred fifty-one'),\n(5245, 51783, 'fifty-one thousand seven hundred eighty-three'),\n(5246, 71838, 'seventy-one thousand eight hundred thirty-eight'),\n(5247, 38091, 'thirty-eight thousand ninety-one'),\n(5248, 17093, 'seventeen thousand ninety-three'),\n(5249, 93920, 'ninety-three thousand nine hundred twenty'),\n(5250, 52613, 'fifty-two thousand six hundred thirteen'),\n(5251, 86579, 'eighty-six thousand five hundred seventy-nine'),\n(5252, 56256, 'fifty-six thousand two hundred fifty-six'),\n(5253, 98577, 'ninety-eight thousand five hundred seventy-seven'),\n(5254, 89371, 'eighty-nine thousand three hundred seventy-one'),\n(5255, 24810, 'twenty-four thousand eight hundred ten'),\n(5256, 6151, 'six thousand one hundred fifty-one'),\n(5257, 75612, 'seventy-five thousand six hundred twelve'),\n(5258, 85805, 'eighty-five thousand eight hundred five'),\n(5259, 56894, 'fifty-six thousand eight hundred ninety-four'),\n(5260, 35404, 'thirty-five thousand four hundred four'),\n(5261, 88306, 'eighty-eight thousand three hundred six'),\n(5262, 15494, 'fifteen thousand four hundred ninety-four'),\n(5263, 74473, 'seventy-four thousand four hundred seventy-three'),\n(5264, 12515, 'twelve thousand five hundred fifteen'),\n(5265, 52947, 'fifty-two thousand nine hundred forty-seven'),\n(5266, 15232, 'fifteen thousand two hundred thirty-two'),\n(5267, 49211, 'forty-nine thousand two hundred eleven'),\n(5268, 56245, 'fifty-six thousand two hundred forty-five'),\n(5269, 17399, 'seventeen thousand three hundred ninety-nine'),\n(5270, 91665, 'ninety-one thousand six hundred sixty-five'),\n(5271, 25665, 'twenty-five thousand six hundred sixty-five'),\n(5272, 13642, 'thirteen thousand six hundred forty-two'),\n(5273, 48906, 'forty-eight thousand nine hundred six'),\n(5274, 98863, 'ninety-eight thousand eight hundred sixty-three'),\n(5275, 70699, 'seventy thousand six hundred ninety-nine'),\n(5276, 95159, 'ninety-five thousand one hundred fifty-nine'),\n(5277, 46816, 'forty-six thousand eight hundred sixteen'),\n(5278, 29965, 'twenty-nine thousand nine hundred sixty-five'),\n(5279, 38079, 'thirty-eight thousand seventy-nine'),\n(5280, 78684, 'seventy-eight thousand six hundred eighty-four'),\n(5281, 98015, 'ninety-eight thousand fifteen'),\n(5282, 84140, 'eighty-four thousand one hundred forty'),\n(5283, 67008, 'sixty-seven thousand eight'),\n(5284, 31002, 'thirty-one thousand two'),\n(5285, 46896, 'forty-six thousand eight hundred ninety-six'),\n(5286, 36661, 'thirty-six thousand six hundred sixty-one'),\n(5287, 20725, 'twenty thousand seven hundred twenty-five'),\n(5288, 71532, 'seventy-one thousand five hundred thirty-two'),\n(5289, 3593, 'three thousand five hundred ninety-three'),\n(5290, 50285, 'fifty thousand two hundred eighty-five'),\n(5291, 58550, 'fifty-eight thousand five hundred fifty'),\n(5292, 71421, 'seventy-one thousand four hundred twenty-one'),\n(5293, 96097, 'ninety-six thousand ninety-seven'),\n(5294, 4435, 'four thousand four hundred thirty-five'),\n(5295, 3892, 'three thousand eight hundred ninety-two'),\n(5296, 51210, 'fifty-one thousand two hundred ten'),\n(5297, 53839, 'fifty-three thousand eight hundred thirty-nine'),\n(5298, 87236, 'eighty-seven thousand two hundred thirty-six'),\n(5299, 16280, 'sixteen thousand two hundred eighty'),\n(5300, 52159, 'fifty-two thousand one hundred fifty-nine'),\n(5301, 82213, 'eighty-two thousand two hundred thirteen'),\n(5302, 26845, 'twenty-six thousand eight hundred forty-five'),\n(5303, 61810, 'sixty-one thousand eight hundred ten'),\n(5304, 9123, 'nine thousand one hundred twenty-three'),\n(5305, 81912, 'eighty-one thousand nine hundred twelve'),\n(5306, 76933, 'seventy-six thousand nine hundred thirty-three'),\n(5307, 59179, 'fifty-nine thousand one hundred seventy-nine'),\n(5308, 5154, 'five thousand one hundred fifty-four'),\n(5309, 15991, 'fifteen thousand nine hundred ninety-one'),\n(5310, 26294, 'twenty-six thousand two hundred ninety-four'),\n(5311, 63443, 'sixty-three thousand four hundred forty-three'),\n(5312, 66173, 'sixty-six thousand one hundred seventy-three'),\n(5313, 92104, 'ninety-two thousand one hundred four'),\n(5314, 10510, 'ten thousand five hundred ten'),\n(5315, 16649, 'sixteen thousand six hundred forty-nine'),\n(5316, 43854, 'forty-three thousand eight hundred fifty-four'),\n(5317, 19392, 'nineteen thousand three hundred ninety-two'),\n(5318, 21171, 'twenty-one thousand one hundred seventy-one'),\n(5319, 25855, 'twenty-five thousand eight hundred fifty-five'),\n(5320, 95460, 'ninety-five thousand four hundred sixty'),\n(5321, 47633, 'forty-seven thousand six hundred thirty-three'),\n(5322, 18779, 'eighteen thousand seven hundred seventy-nine'),\n(5323, 84801, 'eighty-four thousand eight hundred one'),\n(5324, 22188, 'twenty-two thousand one hundred eighty-eight'),\n(5325, 6775, 'six thousand seven hundred seventy-five'),\n(5326, 81569, 'eighty-one thousand five hundred sixty-nine'),\n(5327, 6448, 'six thousand four hundred forty-eight'),\n(5328, 48952, 'forty-eight thousand nine hundred fifty-two'),\n(5329, 46673, 'forty-six thousand six hundred seventy-three'),\n(5330, 89818, 'eighty-nine thousand eight hundred eighteen'),\n(5331, 26596, 'twenty-six thousand five hundred ninety-six'),\n(5332, 75812, 'seventy-five thousand eight hundred twelve'),\n(5333, 10302, 'ten thousand three hundred two'),\n(5334, 10591, 'ten thousand five hundred ninety-one'),\n(5335, 61893, 'sixty-one thousand eight hundred ninety-three'),\n(5336, 38316, 'thirty-eight thousand three hundred sixteen'),\n(5337, 61177, 'sixty-one thousand one hundred seventy-seven'),\n(5338, 10551, 'ten thousand five hundred fifty-one'),\n(5339, 42025, 'forty-two thousand twenty-five'),\n(5340, 87494, 'eighty-seven thousand four hundred ninety-four'),\n(5341, 4547, 'four thousand five hundred forty-seven'),\n(5342, 46428, 'forty-six thousand four hundred twenty-eight'),\n(5343, 79016, 'seventy-nine thousand sixteen'),\n(5344, 92130, 'ninety-two thousand one hundred thirty'),\n(5345, 79710, 'seventy-nine thousand seven hundred ten'),\n(5346, 22620, 'twenty-two thousand six hundred twenty'),\n(5347, 27008, 'twenty-seven thousand eight'),\n(5348, 57971, 'fifty-seven thousand nine hundred seventy-one'),\n(5349, 80720, 'eighty thousand seven hundred twenty'),\n(5350, 70781, 'seventy thousand seven hundred eighty-one'),\n(5351, 75601, 'seventy-five thousand six hundred one'),\n(5352, 53397, 'fifty-three thousand three hundred ninety-seven'),\n(5353, 88942, 'eighty-eight thousand nine hundred forty-two'),\n(5354, 94640, 'ninety-four thousand six hundred forty'),\n(5355, 11939, 'eleven thousand nine hundred thirty-nine'),\n(5356, 40217, 'forty thousand two hundred seventeen'),\n(5357, 6737, 'six thousand seven hundred thirty-seven'),\n(5358, 4726, 'four thousand seven hundred twenty-six'),\n(5359, 81980, 'eighty-one thousand nine hundred eighty'),\n(5360, 60457, 'sixty thousand four hundred fifty-seven'),\n(5361, 18045, 'eighteen thousand forty-five'),\n(5362, 29445, 'twenty-nine thousand four hundred forty-five'),\n(5363, 91888, 'ninety-one thousand eight hundred eighty-eight'),\n(5364, 88004, 'eighty-eight thousand four'),\n(5365, 57146, 'fifty-seven thousand one hundred forty-six'),\n(5366, 37922, 'thirty-seven thousand nine hundred twenty-two'),\n(5367, 88257, 'eighty-eight thousand two hundred fifty-seven'),\n(5368, 30211, 'thirty thousand two hundred eleven'),\n(5369, 10159, 'ten thousand one hundred fifty-nine'),\n(5370, 4876, 'four thousand eight hundred seventy-six'),\n(5371, 43935, 'forty-three thousand nine hundred thirty-five'),\n(5372, 12446, 'twelve thousand four hundred forty-six'),\n(5373, 64890, 'sixty-four thousand eight hundred ninety'),\n(5374, 80042, 'eighty thousand forty-two'),\n(5375, 14013, 'fourteen thousand thirteen'),\n(5376, 29042, 'twenty-nine thousand forty-two'),\n(5377, 29986, 'twenty-nine thousand nine hundred eighty-six'),\n(5378, 84562, 'eighty-four thousand five hundred sixty-two'),\n(5379, 82043, 'eighty-two thousand forty-three'),\n(5380, 31130, 'thirty-one thousand one hundred thirty'),\n(5381, 13528, 'thirteen thousand five hundred twenty-eight'),\n(5382, 14565, 'fourteen thousand five hundred sixty-five'),\n(5383, 6903, 'six thousand nine hundred three'),\n(5384, 93742, 'ninety-three thousand seven hundred forty-two'),\n(5385, 11882, 'eleven thousand eight hundred eighty-two'),\n(5386, 21475, 'twenty-one thousand four hundred seventy-five'),\n(5387, 49950, 'forty-nine thousand nine hundred fifty'),\n(5388, 57661, 'fifty-seven thousand six hundred sixty-one'),\n(5389, 7120, 'seven thousand one hundred twenty'),\n(5390, 43494, 'forty-three thousand four hundred ninety-four'),\n(5391, 18687, 'eighteen thousand six hundred eighty-seven'),\n(5392, 44254, 'forty-four thousand two hundred fifty-four'),\n(5393, 65021, 'sixty-five thousand twenty-one'),\n(5394, 94232, 'ninety-four thousand two hundred thirty-two'),\n(5395, 94726, 'ninety-four thousand seven hundred twenty-six'),\n(5396, 60279, 'sixty thousand two hundred seventy-nine'),\n(5397, 21576, 'twenty-one thousand five hundred seventy-six'),\n(5398, 52825, 'fifty-two thousand eight hundred twenty-five'),\n(5399, 79015, 'seventy-nine thousand fifteen'),\n(5400, 66967, 'sixty-six thousand nine hundred sixty-seven'),\n(5401, 24511, 'twenty-four thousand five hundred eleven'),\n(5402, 48642, 'forty-eight thousand six hundred forty-two'),\n(5403, 53963, 'fifty-three thousand nine hundred sixty-three'),\n(5404, 87270, 'eighty-seven thousand two hundred seventy'),\n(5405, 58494, 'fifty-eight thousand four hundred ninety-four'),\n(5406, 19483, 'nineteen thousand four hundred eighty-three'),\n(5407, 72540, 'seventy-two thousand five hundred forty'),\n(5408, 11120, 'eleven thousand one hundred twenty'),\n(5409, 13105, 'thirteen thousand one hundred five'),\n(5410, 57833, 'fifty-seven thousand eight hundred thirty-three'),\n(5411, 62579, 'sixty-two thousand five hundred seventy-nine'),\n(5412, 58150, 'fifty-eight thousand one hundred fifty'),\n(5413, 48699, 'forty-eight thousand six hundred ninety-nine'),\n(5414, 51358, 'fifty-one thousand three hundred fifty-eight'),\n(5415, 64428, 'sixty-four thousand four hundred twenty-eight'),\n(5416, 66843, 'sixty-six thousand eight hundred forty-three'),\n(5417, 78413, 'seventy-eight thousand four hundred thirteen'),\n(5418, 11829, 'eleven thousand eight hundred twenty-nine'),\n(5419, 15371, 'fifteen thousand three hundred seventy-one'),\n(5420, 15426, 'fifteen thousand four hundred twenty-six'),\n(5421, 31964, 'thirty-one thousand nine hundred sixty-four'),\n(5422, 48974, 'forty-eight thousand nine hundred seventy-four'),\n(5423, 62210, 'sixty-two thousand two hundred ten'),\n(5424, 65849, 'sixty-five thousand eight hundred forty-nine'),\n(5425, 50671, 'fifty thousand six hundred seventy-one'),\n(5426, 3958, 'three thousand nine hundred fifty-eight'),\n(5427, 86753, 'eighty-six thousand seven hundred fifty-three'),\n(5428, 2371, 'two thousand three hundred seventy-one'),\n(5429, 40468, 'forty thousand four hundred sixty-eight'),\n(5430, 58504, 'fifty-eight thousand five hundred four'),\n(5431, 57238, 'fifty-seven thousand two hundred thirty-eight'),\n(5432, 31687, 'thirty-one thousand six hundred eighty-seven'),\n(5433, 24129, 'twenty-four thousand one hundred twenty-nine'),\n(5434, 64691, 'sixty-four thousand six hundred ninety-one'),\n(5435, 18869, 'eighteen thousand eight hundred sixty-nine'),\n(5436, 26724, 'twenty-six thousand seven hundred twenty-four'),\n(5437, 36431, 'thirty-six thousand four hundred thirty-one'),\n(5438, 42625, 'forty-two thousand six hundred twenty-five'),\n(5439, 57801, 'fifty-seven thousand eight hundred one'),\n(5440, 99459, 'ninety-nine thousand four hundred fifty-nine'),\n(5441, 49376, 'forty-nine thousand three hundred seventy-six'),\n(5442, 96477, 'ninety-six thousand four hundred seventy-seven'),\n(5443, 77880, 'seventy-seven thousand eight hundred eighty'),\n(5444, 86640, 'eighty-six thousand six hundred forty'),\n(5445, 73522, 'seventy-three thousand five hundred twenty-two'),\n(5446, 42879, 'forty-two thousand eight hundred seventy-nine'),\n(5447, 68835, 'sixty-eight thousand eight hundred thirty-five'),\n(5448, 88990, 'eighty-eight thousand nine hundred ninety'),\n(5449, 63962, 'sixty-three thousand nine hundred sixty-two'),\n(5450, 55163, 'fifty-five thousand one hundred sixty-three'),\n(5451, 87425, 'eighty-seven thousand four hundred twenty-five'),\n(5452, 29853, 'twenty-nine thousand eight hundred fifty-three'),\n(5453, 37715, 'thirty-seven thousand seven hundred fifteen'),\n(5454, 44952, 'forty-four thousand nine hundred fifty-two'),\n(5455, 65607, 'sixty-five thousand six hundred seven'),\n(5456, 6073, 'six thousand seventy-three'),\n(5457, 9230, 'nine thousand two hundred thirty'),\n(5458, 46462, 'forty-six thousand four hundred sixty-two'),\n(5459, 59262, 'fifty-nine thousand two hundred sixty-two'),\n(5460, 94289, 'ninety-four thousand two hundred eighty-nine'),\n(5461, 98634, 'ninety-eight thousand six hundred thirty-four'),\n(5462, 23407, 'twenty-three thousand four hundred seven'),\n(5463, 40593, 'forty thousand five hundred ninety-three'),\n(5464, 20043, 'twenty thousand forty-three'),\n(5465, 49286, 'forty-nine thousand two hundred eighty-six'),\n(5466, 95838, 'ninety-five thousand eight hundred thirty-eight'),\n(5467, 54130, 'fifty-four thousand one hundred thirty'),\n(5468, 48392, 'forty-eight thousand three hundred ninety-two'),\n(5469, 20104, 'twenty thousand one hundred four'),\n(5470, 30773, 'thirty thousand seven hundred seventy-three'),\n(5471, 4376, 'four thousand three hundred seventy-six'),\n(5472, 77786, 'seventy-seven thousand seven hundred eighty-six'),\n(5473, 76515, 'seventy-six thousand five hundred fifteen'),\n(5474, 68599, 'sixty-eight thousand five hundred ninety-nine'),\n(5475, 63128, 'sixty-three thousand one hundred twenty-eight'),\n(5476, 90837, 'ninety thousand eight hundred thirty-seven'),\n(5477, 88521, 'eighty-eight thousand five hundred twenty-one'),\n(5478, 87382, 'eighty-seven thousand three hundred eighty-two'),\n(5479, 70390, 'seventy thousand three hundred ninety'),\n(5480, 36387, 'thirty-six thousand three hundred eighty-seven'),\n(5481, 59666, 'fifty-nine thousand six hundred sixty-six'),\n(5482, 47147, 'forty-seven thousand one hundred forty-seven'),\n(5483, 19549, 'nineteen thousand five hundred forty-nine'),\n(5484, 95069, 'ninety-five thousand sixty-nine'),\n(5485, 17021, 'seventeen thousand twenty-one'),\n(5486, 77406, 'seventy-seven thousand four hundred six'),\n(5487, 73802, 'seventy-three thousand eight hundred two'),\n(5488, 14418, 'fourteen thousand four hundred eighteen'),\n(5489, 88608, 'eighty-eight thousand six hundred eight'),\n(5490, 29278, 'twenty-nine thousand two hundred seventy-eight'),\n(5491, 88753, 'eighty-eight thousand seven hundred fifty-three'),\n(5492, 50061, 'fifty thousand sixty-one'),\n(5493, 17050, 'seventeen thousand fifty'),\n(5494, 95011, 'ninety-five thousand eleven'),\n(5495, 51750, 'fifty-one thousand seven hundred fifty'),\n(5496, 80705, 'eighty thousand seven hundred five'),\n(5497, 44345, 'forty-four thousand three hundred forty-five'),\n(5498, 38521, 'thirty-eight thousand five hundred twenty-one'),\n(5499, 72242, 'seventy-two thousand two hundred forty-two'),\n(5500, 3791, 'three thousand seven hundred ninety-one'),\n(5501, 79979, 'seventy-nine thousand nine hundred seventy-nine'),\n(5502, 34828, 'thirty-four thousand eight hundred twenty-eight'),\n(5503, 59868, 'fifty-nine thousand eight hundred sixty-eight'),\n(5504, 71739, 'seventy-one thousand seven hundred thirty-nine'),\n(5505, 15740, 'fifteen thousand seven hundred forty'),\n(5506, 76279, 'seventy-six thousand two hundred seventy-nine'),\n(5507, 31368, 'thirty-one thousand three hundred sixty-eight'),\n(5508, 81182, 'eighty-one thousand one hundred eighty-two'),\n(5509, 84862, 'eighty-four thousand eight hundred sixty-two'),\n(5510, 46421, 'forty-six thousand four hundred twenty-one'),\n(5511, 74788, 'seventy-four thousand seven hundred eighty-eight'),\n(5512, 84992, 'eighty-four thousand nine hundred ninety-two'),\n(5513, 88537, 'eighty-eight thousand five hundred thirty-seven'),\n(5514, 2609, 'two thousand six hundred nine'),\n(5515, 34928, 'thirty-four thousand nine hundred twenty-eight'),\n(5516, 82221, 'eighty-two thousand two hundred twenty-one'),\n(5517, 52138, 'fifty-two thousand one hundred thirty-eight'),\n(5518, 73310, 'seventy-three thousand three hundred ten'),\n(5519, 89282, 'eighty-nine thousand two hundred eighty-two'),\n(5520, 33292, 'thirty-three thousand two hundred ninety-two'),\n(5521, 88606, 'eighty-eight thousand six hundred six'),\n(5522, 35217, 'thirty-five thousand two hundred seventeen'),\n(5523, 18997, 'eighteen thousand nine hundred ninety-seven'),\n(5524, 53975, 'fifty-three thousand nine hundred seventy-five'),\n(5525, 66917, 'sixty-six thousand nine hundred seventeen'),\n(5526, 11438, 'eleven thousand four hundred thirty-eight'),\n(5527, 94326, 'ninety-four thousand three hundred twenty-six'),\n(5528, 62255, 'sixty-two thousand two hundred fifty-five'),\n(5529, 21, 'twenty-one'),\n(5530, 38807, 'thirty-eight thousand eight hundred seven'),\n(5531, 96504, 'ninety-six thousand five hundred four'),\n(5532, 30282, 'thirty thousand two hundred eighty-two'),\n(5533, 38200, 'thirty-eight thousand two hundred'),\n(5534, 75241, 'seventy-five thousand two hundred forty-one'),\n(5535, 12441, 'twelve thousand four hundred forty-one'),\n(5536, 7669, 'seven thousand six hundred sixty-nine'),\n(5537, 54797, 'fifty-four thousand seven hundred ninety-seven'),\n(5538, 97746, 'ninety-seven thousand seven hundred forty-six'),\n(5539, 3746, 'three thousand seven hundred forty-six'),\n(5540, 83599, 'eighty-three thousand five hundred ninety-nine'),\n(5541, 85428, 'eighty-five thousand four hundred twenty-eight'),\n(5542, 30066, 'thirty thousand sixty-six'),\n(5543, 17243, 'seventeen thousand two hundred forty-three'),\n(5544, 75160, 'seventy-five thousand one hundred sixty'),\n(5545, 55203, 'fifty-five thousand two hundred three'),\n(5546, 42604, 'forty-two thousand six hundred four'),\n(5547, 47921, 'forty-seven thousand nine hundred twenty-one'),\n(5548, 16561, 'sixteen thousand five hundred sixty-one'),\n(5549, 35959, 'thirty-five thousand nine hundred fifty-nine'),\n(5550, 82256, 'eighty-two thousand two hundred fifty-six'),\n(5551, 32316, 'thirty-two thousand three hundred sixteen'),\n(5552, 48684, 'forty-eight thousand six hundred eighty-four'),\n(5553, 94375, 'ninety-four thousand three hundred seventy-five'),\n(5554, 2530, 'two thousand five hundred thirty'),\n(5555, 34569, 'thirty-four thousand five hundred sixty-nine'),\n(5556, 69306, 'sixty-nine thousand three hundred six'),\n(5557, 76109, 'seventy-six thousand one hundred nine'),\n(5558, 34619, 'thirty-four thousand six hundred nineteen'),\n(5559, 55537, 'fifty-five thousand five hundred thirty-seven'),\n(5560, 9274, 'nine thousand two hundred seventy-four'),\n(5561, 80654, 'eighty thousand six hundred fifty-four'),\n(5562, 88660, 'eighty-eight thousand six hundred sixty'),\n(5563, 86713, 'eighty-six thousand seven hundred thirteen'),\n(5564, 26428, 'twenty-six thousand four hundred twenty-eight'),\n(5565, 30644, 'thirty thousand six hundred forty-four'),\n(5566, 79211, 'seventy-nine thousand two hundred eleven'),\n(5567, 2184, 'two thousand one hundred eighty-four'),\n(5568, 13264, 'thirteen thousand two hundred sixty-four'),\n(5569, 21110, 'twenty-one thousand one hundred ten'),\n(5570, 30463, 'thirty thousand four hundred sixty-three'),\n(5571, 43812, 'forty-three thousand eight hundred twelve'),\n(5572, 74889, 'seventy-four thousand eight hundred eighty-nine'),\n(5573, 77347, 'seventy-seven thousand three hundred forty-seven'),\n(5574, 75806, 'seventy-five thousand eight hundred six'),\n(5575, 35751, 'thirty-five thousand seven hundred fifty-one'),\n(5576, 98489, 'ninety-eight thousand four hundred eighty-nine'),\n(5577, 20337, 'twenty thousand three hundred thirty-seven'),\n(5578, 59570, 'fifty-nine thousand five hundred seventy'),\n(5579, 67132, 'sixty-seven thousand one hundred thirty-two'),\n(5580, 64587, 'sixty-four thousand five hundred eighty-seven'),\n(5581, 57435, 'fifty-seven thousand four hundred thirty-five'),\n(5582, 52733, 'fifty-two thousand seven hundred thirty-three'),\n(5583, 10025, 'ten thousand twenty-five'),\n(5584, 14289, 'fourteen thousand two hundred eighty-nine'),\n(5585, 25234, 'twenty-five thousand two hundred thirty-four'),\n(5586, 47838, 'forty-seven thousand eight hundred thirty-eight'),\n(5587, 6962, 'six thousand nine hundred sixty-two'),\n(5588, 64479, 'sixty-four thousand four hundred seventy-nine'),\n(5589, 92528, 'ninety-two thousand five hundred twenty-eight'),\n(5590, 21696, 'twenty-one thousand six hundred ninety-six'),\n(5591, 48013, 'forty-eight thousand thirteen'),\n(5592, 14313, 'fourteen thousand three hundred thirteen'),\n(5593, 62297, 'sixty-two thousand two hundred ninety-seven'),\n(5594, 19885, 'nineteen thousand eight hundred eighty-five'),\n(5595, 17912, 'seventeen thousand nine hundred twelve'),\n(5596, 72982, 'seventy-two thousand nine hundred eighty-two'),\n(5597, 64728, 'sixty-four thousand seven hundred twenty-eight'),\n(5598, 42807, 'forty-two thousand eight hundred seven'),\n(5599, 6279, 'six thousand two hundred seventy-nine'),\n(5600, 83004, 'eighty-three thousand four'),\n(5601, 94580, 'ninety-four thousand five hundred eighty'),\n(5602, 2075, 'two thousand seventy-five'),\n(5603, 86052, 'eighty-six thousand fifty-two'),\n(5604, 88043, 'eighty-eight thousand forty-three'),\n(5605, 61411, 'sixty-one thousand four hundred eleven'),\n(5606, 39811, 'thirty-nine thousand eight hundred eleven'),\n(5607, 1233, 'one thousand two hundred thirty-three'),\n(5608, 51964, 'fifty-one thousand nine hundred sixty-four'),\n(5609, 27144, 'twenty-seven thousand one hundred forty-four'),\n(5610, 84692, 'eighty-four thousand six hundred ninety-two'),\n(5611, 71114, 'seventy-one thousand one hundred fourteen'),\n(5612, 72220, 'seventy-two thousand two hundred twenty'),\n(5613, 8548, 'eight thousand five hundred forty-eight'),\n(5614, 52494, 'fifty-two thousand four hundred ninety-four'),\n(5615, 73369, 'seventy-three thousand three hundred sixty-nine'),\n(5616, 50877, 'fifty thousand eight hundred seventy-seven'),\n(5617, 26020, 'twenty-six thousand twenty'),\n(5618, 35550, 'thirty-five thousand five hundred fifty'),\n(5619, 75390, 'seventy-five thousand three hundred ninety'),\n(5620, 89370, 'eighty-nine thousand three hundred seventy'),\n(5621, 51799, 'fifty-one thousand seven hundred ninety-nine'),\n(5622, 27167, 'twenty-seven thousand one hundred sixty-seven'),\n(5623, 5311, 'five thousand three hundred eleven'),\n(5624, 82590, 'eighty-two thousand five hundred ninety'),\n(5625, 92976, 'ninety-two thousand nine hundred seventy-six'),\n(5626, 29196, 'twenty-nine thousand one hundred ninety-six'),\n(5627, 90019, 'ninety thousand nineteen'),\n(5628, 62474, 'sixty-two thousand four hundred seventy-four'),\n(5629, 47399, 'forty-seven thousand three hundred ninety-nine'),\n(5630, 37931, 'thirty-seven thousand nine hundred thirty-one'),\n(5631, 28533, 'twenty-eight thousand five hundred thirty-three'),\n(5632, 12769, 'twelve thousand seven hundred sixty-nine'),\n(5633, 28849, 'twenty-eight thousand eight hundred forty-nine'),\n(5634, 91354, 'ninety-one thousand three hundred fifty-four'),\n(5635, 91866, 'ninety-one thousand eight hundred sixty-six'),\n(5636, 56549, 'fifty-six thousand five hundred forty-nine'),\n(5637, 5482, 'five thousand four hundred eighty-two'),\n(5638, 40913, 'forty thousand nine hundred thirteen'),\n(5639, 47215, 'forty-seven thousand two hundred fifteen'),\n(5640, 94146, 'ninety-four thousand one hundred forty-six'),\n(5641, 13639, 'thirteen thousand six hundred thirty-nine'),\n(5642, 62598, 'sixty-two thousand five hundred ninety-eight'),\n(5643, 94310, 'ninety-four thousand three hundred ten'),\n(5644, 94628, 'ninety-four thousand six hundred twenty-eight'),\n(5645, 15036, 'fifteen thousand thirty-six'),\n(5646, 42773, 'forty-two thousand seven hundred seventy-three'),\n(5647, 7253, 'seven thousand two hundred fifty-three'),\n(5648, 39697, 'thirty-nine thousand six hundred ninety-seven'),\n(5649, 9149, 'nine thousand one hundred forty-nine'),\n(5650, 76585, 'seventy-six thousand five hundred eighty-five'),\n(5651, 82012, 'eighty-two thousand twelve'),\n(5652, 70626, 'seventy thousand six hundred twenty-six'),\n(5653, 54755, 'fifty-four thousand seven hundred fifty-five'),\n(5654, 61226, 'sixty-one thousand two hundred twenty-six'),\n(5655, 87628, 'eighty-seven thousand six hundred twenty-eight'),\n(5656, 29111, 'twenty-nine thousand one hundred eleven'),\n(5657, 64680, 'sixty-four thousand six hundred eighty'),\n(5658, 51856, 'fifty-one thousand eight hundred fifty-six'),\n(5659, 9707, 'nine thousand seven hundred seven'),\n(5660, 19498, 'nineteen thousand four hundred ninety-eight'),\n(5661, 50049, 'fifty thousand forty-nine'),\n(5662, 49736, 'forty-nine thousand seven hundred thirty-six'),\n(5663, 51997, 'fifty-one thousand nine hundred ninety-seven'),\n(5664, 8382, 'eight thousand three hundred eighty-two'),\n(5665, 90227, 'ninety thousand two hundred twenty-seven'),\n(5666, 42003, 'forty-two thousand three'),\n(5667, 19768, 'nineteen thousand seven hundred sixty-eight'),\n(5668, 82300, 'eighty-two thousand three hundred'),\n(5669, 88870, 'eighty-eight thousand eight hundred seventy'),\n(5670, 8585, 'eight thousand five hundred eighty-five'),\n(5671, 17982, 'seventeen thousand nine hundred eighty-two'),\n(5672, 10390, 'ten thousand three hundred ninety'),\n(5673, 19909, 'nineteen thousand nine hundred nine'),\n(5674, 13185, 'thirteen thousand one hundred eighty-five'),\n(5675, 83473, 'eighty-three thousand four hundred seventy-three'),\n(5676, 59359, 'fifty-nine thousand three hundred fifty-nine'),\n(5677, 17032, 'seventeen thousand thirty-two'),\n(5678, 41473, 'forty-one thousand four hundred seventy-three'),\n(5679, 23169, 'twenty-three thousand one hundred sixty-nine'),\n(5680, 10812, 'ten thousand eight hundred twelve'),\n(5681, 70626, 'seventy thousand six hundred twenty-six'),\n(5682, 7388, 'seven thousand three hundred eighty-eight'),\n(5683, 47260, 'forty-seven thousand two hundred sixty'),\n(5684, 51023, 'fifty-one thousand twenty-three'),\n(5685, 42904, 'forty-two thousand nine hundred four'),\n(5686, 10625, 'ten thousand six hundred twenty-five'),\n(5687, 36720, 'thirty-six thousand seven hundred twenty'),\n(5688, 87672, 'eighty-seven thousand six hundred seventy-two'),\n(5689, 14110, 'fourteen thousand one hundred ten'),\n(5690, 10534, 'ten thousand five hundred thirty-four'),\n(5691, 73056, 'seventy-three thousand fifty-six'),\n(5692, 58175, 'fifty-eight thousand one hundred seventy-five'),\n(5693, 12859, 'twelve thousand eight hundred fifty-nine'),\n(5694, 48898, 'forty-eight thousand eight hundred ninety-eight'),\n(5695, 86126, 'eighty-six thousand one hundred twenty-six'),\n(5696, 23356, 'twenty-three thousand three hundred fifty-six'),\n(5697, 51453, 'fifty-one thousand four hundred fifty-three'),\n(5698, 59643, 'fifty-nine thousand six hundred forty-three'),\n(5699, 27465, 'twenty-seven thousand four hundred sixty-five'),\n(5700, 19676, 'nineteen thousand six hundred seventy-six'),\n(5701, 31987, 'thirty-one thousand nine hundred eighty-seven'),\n(5702, 27708, 'twenty-seven thousand seven hundred eight'),\n(5703, 10652, 'ten thousand six hundred fifty-two'),\n(5704, 16723, 'sixteen thousand seven hundred twenty-three'),\n(5705, 14371, 'fourteen thousand three hundred seventy-one'),\n(5706, 50190, 'fifty thousand one hundred ninety'),\n(5707, 9026, 'nine thousand twenty-six'),\n(5708, 941, 'nine hundred forty-one'),\n(5709, 41496, 'forty-one thousand four hundred ninety-six'),\n(5710, 52655, 'fifty-two thousand six hundred fifty-five'),\n(5711, 2334, 'two thousand three hundred thirty-four'),\n(5712, 80961, 'eighty thousand nine hundred sixty-one'),\n(5713, 96316, 'ninety-six thousand three hundred sixteen'),\n(5714, 1632, 'one thousand six hundred thirty-two'),\n(5715, 71922, 'seventy-one thousand nine hundred twenty-two'),\n(5716, 1507, 'one thousand five hundred seven'),\n(5717, 22565, 'twenty-two thousand five hundred sixty-five'),\n(5718, 67371, 'sixty-seven thousand three hundred seventy-one'),\n(5719, 84523, 'eighty-four thousand five hundred twenty-three'),\n(5720, 29016, 'twenty-nine thousand sixteen'),\n(5721, 81168, 'eighty-one thousand one hundred sixty-eight'),\n(5722, 49427, 'forty-nine thousand four hundred twenty-seven'),\n(5723, 53836, 'fifty-three thousand eight hundred thirty-six'),\n(5724, 84933, 'eighty-four thousand nine hundred thirty-three'),\n(5725, 63137, 'sixty-three thousand one hundred thirty-seven'),\n(5726, 7373, 'seven thousand three hundred seventy-three'),\n(5727, 79127, 'seventy-nine thousand one hundred twenty-seven'),\n(5728, 39734, 'thirty-nine thousand seven hundred thirty-four'),\n(5729, 10029, 'ten thousand twenty-nine'),\n(5730, 78553, 'seventy-eight thousand five hundred fifty-three'),\n(5731, 70221, 'seventy thousand two hundred twenty-one'),\n(5732, 63243, 'sixty-three thousand two hundred forty-three'),\n(5733, 52157, 'fifty-two thousand one hundred fifty-seven'),\n(5734, 3629, 'three thousand six hundred twenty-nine'),\n(5735, 31609, 'thirty-one thousand six hundred nine'),\n(5736, 69956, 'sixty-nine thousand nine hundred fifty-six'),\n(5737, 97363, 'ninety-seven thousand three hundred sixty-three'),\n(5738, 59052, 'fifty-nine thousand fifty-two'),\n(5739, 46851, 'forty-six thousand eight hundred fifty-one'),\n(5740, 14338, 'fourteen thousand three hundred thirty-eight'),\n(5741, 82874, 'eighty-two thousand eight hundred seventy-four'),\n(5742, 91348, 'ninety-one thousand three hundred forty-eight'),\n(5743, 27262, 'twenty-seven thousand two hundred sixty-two'),\n(5744, 68926, 'sixty-eight thousand nine hundred twenty-six'),\n(5745, 36886, 'thirty-six thousand eight hundred eighty-six'),\n(5746, 97824, 'ninety-seven thousand eight hundred twenty-four'),\n(5747, 85933, 'eighty-five thousand nine hundred thirty-three'),\n(5748, 40448, 'forty thousand four hundred forty-eight'),\n(5749, 846, 'eight hundred forty-six'),\n(5750, 67578, 'sixty-seven thousand five hundred seventy-eight'),\n(5751, 15841, 'fifteen thousand eight hundred forty-one'),\n(5752, 57787, 'fifty-seven thousand seven hundred eighty-seven'),\n(5753, 44717, 'forty-four thousand seven hundred seventeen'),\n(5754, 51403, 'fifty-one thousand four hundred three'),\n(5755, 13002, 'thirteen thousand two'),\n(5756, 44434, 'forty-four thousand four hundred thirty-four'),\n(5757, 69179, 'sixty-nine thousand one hundred seventy-nine'),\n(5758, 77078, 'seventy-seven thousand seventy-eight'),\n(5759, 82419, 'eighty-two thousand four hundred nineteen'),\n(5760, 46290, 'forty-six thousand two hundred ninety'),\n(5761, 60816, 'sixty thousand eight hundred sixteen'),\n(5762, 99965, 'ninety-nine thousand nine hundred sixty-five'),\n(5763, 74132, 'seventy-four thousand one hundred thirty-two'),\n(5764, 33057, 'thirty-three thousand fifty-seven'),\n(5765, 45990, 'forty-five thousand nine hundred ninety'),\n(5766, 26984, 'twenty-six thousand nine hundred eighty-four'),\n(5767, 81966, 'eighty-one thousand nine hundred sixty-six'),\n(5768, 45035, 'forty-five thousand thirty-five'),\n(5769, 86738, 'eighty-six thousand seven hundred thirty-eight'),\n(5770, 63919, 'sixty-three thousand nine hundred nineteen'),\n(5771, 42917, 'forty-two thousand nine hundred seventeen'),\n(5772, 27805, 'twenty-seven thousand eight hundred five'),\n(5773, 86436, 'eighty-six thousand four hundred thirty-six'),\n(5774, 32285, 'thirty-two thousand two hundred eighty-five'),\n(5775, 36315, 'thirty-six thousand three hundred fifteen'),\n(5776, 90019, 'ninety thousand nineteen'),\n(5777, 98523, 'ninety-eight thousand five hundred twenty-three'),\n(5778, 56126, 'fifty-six thousand one hundred twenty-six'),\n(5779, 78930, 'seventy-eight thousand nine hundred thirty'),\n(5780, 75669, 'seventy-five thousand six hundred sixty-nine'),\n(5781, 4198, 'four thousand one hundred ninety-eight'),\n(5782, 72105, 'seventy-two thousand one hundred five'),\n(5783, 39464, 'thirty-nine thousand four hundred sixty-four'),\n(5784, 28769, 'twenty-eight thousand seven hundred sixty-nine'),\n(5785, 7472, 'seven thousand four hundred seventy-two'),\n(5786, 60441, 'sixty thousand four hundred forty-one'),\n(5787, 24585, 'twenty-four thousand five hundred eighty-five'),\n(5788, 31623, 'thirty-one thousand six hundred twenty-three'),\n(5789, 85058, 'eighty-five thousand fifty-eight'),\n(5790, 85102, 'eighty-five thousand one hundred two'),\n(5791, 97914, 'ninety-seven thousand nine hundred fourteen'),\n(5792, 90224, 'ninety thousand two hundred twenty-four'),\n(5793, 79027, 'seventy-nine thousand twenty-seven'),\n(5794, 30402, 'thirty thousand four hundred two'),\n(5795, 11111, 'eleven thousand one hundred eleven'),\n(5796, 99857, 'ninety-nine thousand eight hundred fifty-seven'),\n(5797, 48669, 'forty-eight thousand six hundred sixty-nine'),\n(5798, 36480, 'thirty-six thousand four hundred eighty'),\n(5799, 30138, 'thirty thousand one hundred thirty-eight'),\n(5800, 872, 'eight hundred seventy-two'),\n(5801, 89029, 'eighty-nine thousand twenty-nine'),\n(5802, 76871, 'seventy-six thousand eight hundred seventy-one'),\n(5803, 80311, 'eighty thousand three hundred eleven'),\n(5804, 98490, 'ninety-eight thousand four hundred ninety'),\n(5805, 73212, 'seventy-three thousand two hundred twelve'),\n(5806, 64838, 'sixty-four thousand eight hundred thirty-eight'),\n(5807, 45609, 'forty-five thousand six hundred nine'),\n(5808, 65790, 'sixty-five thousand seven hundred ninety'),\n(5809, 83912, 'eighty-three thousand nine hundred twelve'),\n(5810, 32688, 'thirty-two thousand six hundred eighty-eight'),\n(5811, 22842, 'twenty-two thousand eight hundred forty-two'),\n(5812, 26301, 'twenty-six thousand three hundred one'),\n(5813, 22177, 'twenty-two thousand one hundred seventy-seven'),\n(5814, 45336, 'forty-five thousand three hundred thirty-six'),\n(5815, 29344, 'twenty-nine thousand three hundred forty-four'),\n(5816, 70758, 'seventy thousand seven hundred fifty-eight'),\n(5817, 84901, 'eighty-four thousand nine hundred one'),\n(5818, 5045, 'five thousand forty-five'),\n(5819, 56709, 'fifty-six thousand seven hundred nine'),\n(5820, 99891, 'ninety-nine thousand eight hundred ninety-one'),\n(5821, 31764, 'thirty-one thousand seven hundred sixty-four'),\n(5822, 11183, 'eleven thousand one hundred eighty-three'),\n(5823, 56719, 'fifty-six thousand seven hundred nineteen'),\n(5824, 62526, 'sixty-two thousand five hundred twenty-six'),\n(5825, 54338, 'fifty-four thousand three hundred thirty-eight'),\n(5826, 14141, 'fourteen thousand one hundred forty-one'),\n(5827, 51837, 'fifty-one thousand eight hundred thirty-seven'),\n(5828, 94641, 'ninety-four thousand six hundred forty-one'),\n(5829, 87078, 'eighty-seven thousand seventy-eight'),\n(5830, 99739, 'ninety-nine thousand seven hundred thirty-nine'),\n(5831, 71819, 'seventy-one thousand eight hundred nineteen'),\n(5832, 74240, 'seventy-four thousand two hundred forty'),\n(5833, 94852, 'ninety-four thousand eight hundred fifty-two'),\n(5834, 33726, 'thirty-three thousand seven hundred twenty-six'),\n(5835, 44672, 'forty-four thousand six hundred seventy-two'),\n(5836, 11904, 'eleven thousand nine hundred four'),\n(5837, 89703, 'eighty-nine thousand seven hundred three'),\n(5838, 16338, 'sixteen thousand three hundred thirty-eight'),\n(5839, 41804, 'forty-one thousand eight hundred four'),\n(5840, 40911, 'forty thousand nine hundred eleven'),\n(5841, 15050, 'fifteen thousand fifty'),\n(5842, 85635, 'eighty-five thousand six hundred thirty-five'),\n(5843, 35557, 'thirty-five thousand five hundred fifty-seven'),\n(5844, 65950, 'sixty-five thousand nine hundred fifty'),\n(5845, 56027, 'fifty-six thousand twenty-seven'),\n(5846, 68922, 'sixty-eight thousand nine hundred twenty-two'),\n(5847, 30224, 'thirty thousand two hundred twenty-four'),\n(5848, 98817, 'ninety-eight thousand eight hundred seventeen'),\n(5849, 19188, 'nineteen thousand one hundred eighty-eight'),\n(5850, 931, 'nine hundred thirty-one'),\n(5851, 12938, 'twelve thousand nine hundred thirty-eight'),\n(5852, 23261, 'twenty-three thousand two hundred sixty-one'),\n(5853, 28415, 'twenty-eight thousand four hundred fifteen'),\n(5854, 64072, 'sixty-four thousand seventy-two'),\n(5855, 89865, 'eighty-nine thousand eight hundred sixty-five'),\n(5856, 73778, 'seventy-three thousand seven hundred seventy-eight'),\n(5857, 60778, 'sixty thousand seven hundred seventy-eight'),\n(5858, 57636, 'fifty-seven thousand six hundred thirty-six'),\n(5859, 42387, 'forty-two thousand three hundred eighty-seven'),\n(5860, 66398, 'sixty-six thousand three hundred ninety-eight'),\n(5861, 69836, 'sixty-nine thousand eight hundred thirty-six'),\n(5862, 37132, 'thirty-seven thousand one hundred thirty-two'),\n(5863, 17041, 'seventeen thousand forty-one'),\n(5864, 77915, 'seventy-seven thousand nine hundred fifteen'),\n(5865, 52053, 'fifty-two thousand fifty-three'),\n(5866, 66430, 'sixty-six thousand four hundred thirty'),\n(5867, 15972, 'fifteen thousand nine hundred seventy-two'),\n(5868, 90493, 'ninety thousand four hundred ninety-three'),\n(5869, 23068, 'twenty-three thousand sixty-eight'),\n(5870, 18255, 'eighteen thousand two hundred fifty-five'),\n(5871, 81621, 'eighty-one thousand six hundred twenty-one'),\n(5872, 31045, 'thirty-one thousand forty-five'),\n(5873, 8164, 'eight thousand one hundred sixty-four'),\n(5874, 41047, 'forty-one thousand forty-seven'),\n(5875, 348, 'three hundred forty-eight'),\n(5876, 34285, 'thirty-four thousand two hundred eighty-five'),\n(5877, 77993, 'seventy-seven thousand nine hundred ninety-three'),\n(5878, 68007, 'sixty-eight thousand seven'),\n(5879, 35477, 'thirty-five thousand four hundred seventy-seven'),\n(5880, 70752, 'seventy thousand seven hundred fifty-two'),\n(5881, 88070, 'eighty-eight thousand seventy'),\n(5882, 24859, 'twenty-four thousand eight hundred fifty-nine'),\n(5883, 50863, 'fifty thousand eight hundred sixty-three'),\n(5884, 48723, 'forty-eight thousand seven hundred twenty-three'),\n(5885, 27659, 'twenty-seven thousand six hundred fifty-nine'),\n(5886, 76093, 'seventy-six thousand ninety-three'),\n(5887, 78651, 'seventy-eight thousand six hundred fifty-one'),\n(5888, 2010, 'two thousand ten'),\n(5889, 84802, 'eighty-four thousand eight hundred two'),\n(5890, 72872, 'seventy-two thousand eight hundred seventy-two'),\n(5891, 20255, 'twenty thousand two hundred fifty-five'),\n(5892, 40719, 'forty thousand seven hundred nineteen'),\n(5893, 21383, 'twenty-one thousand three hundred eighty-three'),\n(5894, 32610, 'thirty-two thousand six hundred ten'),\n(5895, 77054, 'seventy-seven thousand fifty-four'),\n(5896, 14270, 'fourteen thousand two hundred seventy'),\n(5897, 4693, 'four thousand six hundred ninety-three'),\n(5898, 14193, 'fourteen thousand one hundred ninety-three'),\n(5899, 51630, 'fifty-one thousand six hundred thirty'),\n(5900, 55445, 'fifty-five thousand four hundred forty-five'),\n(5901, 25083, 'twenty-five thousand eighty-three'),\n(5902, 77234, 'seventy-seven thousand two hundred thirty-four'),\n(5903, 55286, 'fifty-five thousand two hundred eighty-six'),\n(5904, 78967, 'seventy-eight thousand nine hundred sixty-seven'),\n(5905, 47180, 'forty-seven thousand one hundred eighty'),\n(5906, 10379, 'ten thousand three hundred seventy-nine'),\n(5907, 25455, 'twenty-five thousand four hundred fifty-five'),\n(5908, 83985, 'eighty-three thousand nine hundred eighty-five'),\n(5909, 94826, 'ninety-four thousand eight hundred twenty-six'),\n(5910, 28744, 'twenty-eight thousand seven hundred forty-four'),\n(5911, 75957, 'seventy-five thousand nine hundred fifty-seven'),\n(5912, 67724, 'sixty-seven thousand seven hundred twenty-four'),\n(5913, 29467, 'twenty-nine thousand four hundred sixty-seven'),\n(5914, 66281, 'sixty-six thousand two hundred eighty-one'),\n(5915, 68890, 'sixty-eight thousand eight hundred ninety'),\n(5916, 49025, 'forty-nine thousand twenty-five'),\n(5917, 82293, 'eighty-two thousand two hundred ninety-three'),\n(5918, 39840, 'thirty-nine thousand eight hundred forty'),\n(5919, 66006, 'sixty-six thousand six'),\n(5920, 61281, 'sixty-one thousand two hundred eighty-one'),\n(5921, 84817, 'eighty-four thousand eight hundred seventeen'),\n(5922, 89674, 'eighty-nine thousand six hundred seventy-four'),\n(5923, 69492, 'sixty-nine thousand four hundred ninety-two'),\n(5924, 7219, 'seven thousand two hundred nineteen'),\n(5925, 68104, 'sixty-eight thousand one hundred four'),\n(5926, 34043, 'thirty-four thousand forty-three'),\n(5927, 13408, 'thirteen thousand four hundred eight'),\n(5928, 23392, 'twenty-three thousand three hundred ninety-two'),\n(5929, 67417, 'sixty-seven thousand four hundred seventeen'),\n(5930, 46930, 'forty-six thousand nine hundred thirty'),\n(5931, 20384, 'twenty thousand three hundred eighty-four'),\n(5932, 61278, 'sixty-one thousand two hundred seventy-eight'),\n(5933, 6445, 'six thousand four hundred forty-five'),\n(5934, 56211, 'fifty-six thousand two hundred eleven'),\n(5935, 66186, 'sixty-six thousand one hundred eighty-six'),\n(5936, 31908, 'thirty-one thousand nine hundred eight'),\n(5937, 95878, 'ninety-five thousand eight hundred seventy-eight'),\n(5938, 72616, 'seventy-two thousand six hundred sixteen'),\n(5939, 96212, 'ninety-six thousand two hundred twelve'),\n(5940, 28866, 'twenty-eight thousand eight hundred sixty-six'),\n(5941, 26146, 'twenty-six thousand one hundred forty-six'),\n(5942, 95562, 'ninety-five thousand five hundred sixty-two'),\n(5943, 11929, 'eleven thousand nine hundred twenty-nine'),\n(5944, 59658, 'fifty-nine thousand six hundred fifty-eight'),\n(5945, 83779, 'eighty-three thousand seven hundred seventy-nine'),\n(5946, 16381, 'sixteen thousand three hundred eighty-one'),\n(5947, 29106, 'twenty-nine thousand one hundred six'),\n(5948, 65974, 'sixty-five thousand nine hundred seventy-four'),\n(5949, 99460, 'ninety-nine thousand four hundred sixty'),\n(5950, 15546, 'fifteen thousand five hundred forty-six'),\n(5951, 41211, 'forty-one thousand two hundred eleven'),\n(5952, 74537, 'seventy-four thousand five hundred thirty-seven'),\n(5953, 63166, 'sixty-three thousand one hundred sixty-six'),\n(5954, 82473, 'eighty-two thousand four hundred seventy-three'),\n(5955, 48878, 'forty-eight thousand eight hundred seventy-eight'),\n(5956, 45189, 'forty-five thousand one hundred eighty-nine'),\n(5957, 77752, 'seventy-seven thousand seven hundred fifty-two'),\n(5958, 87932, 'eighty-seven thousand nine hundred thirty-two'),\n(5959, 86277, 'eighty-six thousand two hundred seventy-seven'),\n(5960, 20980, 'twenty thousand nine hundred eighty'),\n(5961, 37265, 'thirty-seven thousand two hundred sixty-five'),\n(5962, 81942, 'eighty-one thousand nine hundred forty-two'),\n(5963, 4031, 'four thousand thirty-one'),\n(5964, 86426, 'eighty-six thousand four hundred twenty-six'),\n(5965, 80515, 'eighty thousand five hundred fifteen'),\n(5966, 73665, 'seventy-three thousand six hundred sixty-five'),\n(5967, 85035, 'eighty-five thousand thirty-five'),\n(5968, 26935, 'twenty-six thousand nine hundred thirty-five'),\n(5969, 9950, 'nine thousand nine hundred fifty'),\n(5970, 42306, 'forty-two thousand three hundred six'),\n(5971, 45431, 'forty-five thousand four hundred thirty-one'),\n(5972, 79241, 'seventy-nine thousand two hundred forty-one'),\n(5973, 87674, 'eighty-seven thousand six hundred seventy-four'),\n(5974, 70856, 'seventy thousand eight hundred fifty-six'),\n(5975, 56129, 'fifty-six thousand one hundred twenty-nine'),\n(5976, 85673, 'eighty-five thousand six hundred seventy-three'),\n(5977, 91795, 'ninety-one thousand seven hundred ninety-five'),\n(5978, 67317, 'sixty-seven thousand three hundred seventeen'),\n(5979, 22747, 'twenty-two thousand seven hundred forty-seven'),\n(5980, 96091, 'ninety-six thousand ninety-one'),\n(5981, 61118, 'sixty-one thousand one hundred eighteen'),\n(5982, 84339, 'eighty-four thousand three hundred thirty-nine'),\n(5983, 99440, 'ninety-nine thousand four hundred forty'),\n(5984, 98795, 'ninety-eight thousand seven hundred ninety-five'),\n(5985, 62418, 'sixty-two thousand four hundred eighteen'),\n(5986, 99509, 'ninety-nine thousand five hundred nine'),\n(5987, 23436, 'twenty-three thousand four hundred thirty-six'),\n(5988, 27488, 'twenty-seven thousand four hundred eighty-eight'),\n(5989, 96075, 'ninety-six thousand seventy-five'),\n(5990, 28324, 'twenty-eight thousand three hundred twenty-four'),\n(5991, 28772, 'twenty-eight thousand seven hundred seventy-two'),\n(5992, 20689, 'twenty thousand six hundred eighty-nine'),\n(5993, 81518, 'eighty-one thousand five hundred eighteen'),\n(5994, 34810, 'thirty-four thousand eight hundred ten'),\n(5995, 39866, 'thirty-nine thousand eight hundred sixty-six'),\n(5996, 68643, 'sixty-eight thousand six hundred forty-three'),\n(5997, 99629, 'ninety-nine thousand six hundred twenty-nine'),\n(5998, 43539, 'forty-three thousand five hundred thirty-nine'),\n(5999, 14163, 'fourteen thousand one hundred sixty-three'),\n(6000, 24293, 'twenty-four thousand two hundred ninety-three'),\n(6001, 9911, 'nine thousand nine hundred eleven'),\n(6002, 32820, 'thirty-two thousand eight hundred twenty'),\n(6003, 33855, 'thirty-three thousand eight hundred fifty-five'),\n(6004, 32863, 'thirty-two thousand eight hundred sixty-three'),\n(6005, 10257, 'ten thousand two hundred fifty-seven'),\n(6006, 17293, 'seventeen thousand two hundred ninety-three'),\n(6007, 25948, 'twenty-five thousand nine hundred forty-eight'),\n(6008, 76148, 'seventy-six thousand one hundred forty-eight'),\n(6009, 80989, 'eighty thousand nine hundred eighty-nine'),\n(6010, 13138, 'thirteen thousand one hundred thirty-eight'),\n(6011, 18117, 'eighteen thousand one hundred seventeen'),\n(6012, 37625, 'thirty-seven thousand six hundred twenty-five'),\n(6013, 11651, 'eleven thousand six hundred fifty-one'),\n(6014, 4414, 'four thousand four hundred fourteen'),\n(6015, 96168, 'ninety-six thousand one hundred sixty-eight'),\n(6016, 30176, 'thirty thousand one hundred seventy-six'),\n(6017, 16592, 'sixteen thousand five hundred ninety-two'),\n(6018, 19934, 'nineteen thousand nine hundred thirty-four'),\n(6019, 61088, 'sixty-one thousand eighty-eight'),\n(6020, 41073, 'forty-one thousand seventy-three'),\n(6021, 10321, 'ten thousand three hundred twenty-one'),\n(6022, 42882, 'forty-two thousand eight hundred eighty-two'),\n(6023, 38439, 'thirty-eight thousand four hundred thirty-nine'),\n(6024, 67141, 'sixty-seven thousand one hundred forty-one'),\n(6025, 29710, 'twenty-nine thousand seven hundred ten'),\n(6026, 7026, 'seven thousand twenty-six'),\n(6027, 64730, 'sixty-four thousand seven hundred thirty'),\n(6028, 982, 'nine hundred eighty-two'),\n(6029, 54154, 'fifty-four thousand one hundred fifty-four'),\n(6030, 79999, 'seventy-nine thousand nine hundred ninety-nine'),\n(6031, 20139, 'twenty thousand one hundred thirty-nine'),\n(6032, 20049, 'twenty thousand forty-nine'),\n(6033, 61382, 'sixty-one thousand three hundred eighty-two'),\n(6034, 27733, 'twenty-seven thousand seven hundred thirty-three'),\n(6035, 30448, 'thirty thousand four hundred forty-eight'),\n(6036, 85772, 'eighty-five thousand seven hundred seventy-two'),\n(6037, 84090, 'eighty-four thousand ninety'),\n(6038, 64591, 'sixty-four thousand five hundred ninety-one'),\n(6039, 95903, 'ninety-five thousand nine hundred three'),\n(6040, 31880, 'thirty-one thousand eight hundred eighty'),\n(6041, 81271, 'eighty-one thousand two hundred seventy-one'),\n(6042, 38059, 'thirty-eight thousand fifty-nine'),\n(6043, 31397, 'thirty-one thousand three hundred ninety-seven'),\n(6044, 32793, 'thirty-two thousand seven hundred ninety-three'),\n(6045, 72215, 'seventy-two thousand two hundred fifteen'),\n(6046, 79398, 'seventy-nine thousand three hundred ninety-eight'),\n(6047, 53081, 'fifty-three thousand eighty-one'),\n(6048, 43060, 'forty-three thousand sixty'),\n(6049, 71821, 'seventy-one thousand eight hundred twenty-one'),\n(6050, 70482, 'seventy thousand four hundred eighty-two'),\n(6051, 84735, 'eighty-four thousand seven hundred thirty-five'),\n(6052, 98167, 'ninety-eight thousand one hundred sixty-seven'),\n(6053, 5447, 'five thousand four hundred forty-seven'),\n(6054, 18422, 'eighteen thousand four hundred twenty-two'),\n(6055, 806, 'eight hundred six'),\n(6056, 65999, 'sixty-five thousand nine hundred ninety-nine'),\n(6057, 71788, 'seventy-one thousand seven hundred eighty-eight'),\n(6058, 45743, 'forty-five thousand seven hundred forty-three'),\n(6059, 26377, 'twenty-six thousand three hundred seventy-seven'),\n(6060, 34155, 'thirty-four thousand one hundred fifty-five'),\n(6061, 11997, 'eleven thousand nine hundred ninety-seven'),\n(6062, 88909, 'eighty-eight thousand nine hundred nine'),\n(6063, 39965, 'thirty-nine thousand nine hundred sixty-five'),\n(6064, 39701, 'thirty-nine thousand seven hundred one'),\n(6065, 7664, 'seven thousand six hundred sixty-four'),\n(6066, 11472, 'eleven thousand four hundred seventy-two'),\n(6067, 17373, 'seventeen thousand three hundred seventy-three'),\n(6068, 91597, 'ninety-one thousand five hundred ninety-seven'),\n(6069, 43682, 'forty-three thousand six hundred eighty-two'),\n(6070, 40818, 'forty thousand eight hundred eighteen'),\n(6071, 8498, 'eight thousand four hundred ninety-eight'),\n(6072, 6551, 'six thousand five hundred fifty-one'),\n(6073, 99301, 'ninety-nine thousand three hundred one'),\n(6074, 75171, 'seventy-five thousand one hundred seventy-one'),\n(6075, 58286, 'fifty-eight thousand two hundred eighty-six'),\n(6076, 33634, 'thirty-three thousand six hundred thirty-four'),\n(6077, 50119, 'fifty thousand one hundred nineteen'),\n(6078, 20595, 'twenty thousand five hundred ninety-five'),\n(6079, 91569, 'ninety-one thousand five hundred sixty-nine'),\n(6080, 30325, 'thirty thousand three hundred twenty-five'),\n(6081, 14633, 'fourteen thousand six hundred thirty-three'),\n(6082, 95828, 'ninety-five thousand eight hundred twenty-eight'),\n(6083, 12233, 'twelve thousand two hundred thirty-three'),\n(6084, 56433, 'fifty-six thousand four hundred thirty-three'),\n(6085, 94134, 'ninety-four thousand one hundred thirty-four'),\n(6086, 63406, 'sixty-three thousand four hundred six'),\n(6087, 9358, 'nine thousand three hundred fifty-eight'),\n(6088, 88736, 'eighty-eight thousand seven hundred thirty-six'),\n(6089, 37829, 'thirty-seven thousand eight hundred twenty-nine'),\n(6090, 58055, 'fifty-eight thousand fifty-five'),\n(6091, 19211, 'nineteen thousand two hundred eleven'),\n(6092, 9621, 'nine thousand six hundred twenty-one'),\n(6093, 43331, 'forty-three thousand three hundred thirty-one'),\n(6094, 3025, 'three thousand twenty-five'),\n(6095, 65156, 'sixty-five thousand one hundred fifty-six'),\n(6096, 89529, 'eighty-nine thousand five hundred twenty-nine'),\n(6097, 44712, 'forty-four thousand seven hundred twelve'),\n(6098, 60314, 'sixty thousand three hundred fourteen'),\n(6099, 98299, 'ninety-eight thousand two hundred ninety-nine'),\n(6100, 84243, 'eighty-four thousand two hundred forty-three'),\n(6101, 74533, 'seventy-four thousand five hundred thirty-three'),\n(6102, 10785, 'ten thousand seven hundred eighty-five'),\n(6103, 74129, 'seventy-four thousand one hundred twenty-nine'),\n(6104, 8076, 'eight thousand seventy-six'),\n(6105, 16801, 'sixteen thousand eight hundred one'),\n(6106, 11420, 'eleven thousand four hundred twenty'),\n(6107, 62746, 'sixty-two thousand seven hundred forty-six'),\n(6108, 47304, 'forty-seven thousand three hundred four'),\n(6109, 11714, 'eleven thousand seven hundred fourteen'),\n(6110, 97748, 'ninety-seven thousand seven hundred forty-eight'),\n(6111, 82057, 'eighty-two thousand fifty-seven'),\n(6112, 44645, 'forty-four thousand six hundred forty-five'),\n(6113, 49904, 'forty-nine thousand nine hundred four'),\n(6114, 17530, 'seventeen thousand five hundred thirty'),\n(6115, 12746, 'twelve thousand seven hundred forty-six'),\n(6116, 27698, 'twenty-seven thousand six hundred ninety-eight'),\n(6117, 1333, 'one thousand three hundred thirty-three'),\n(6118, 93574, 'ninety-three thousand five hundred seventy-four'),\n(6119, 81450, 'eighty-one thousand four hundred fifty'),\n(6120, 75877, 'seventy-five thousand eight hundred seventy-seven'),\n(6121, 60516, 'sixty thousand five hundred sixteen'),\n(6122, 30442, 'thirty thousand four hundred forty-two'),\n(6123, 27029, 'twenty-seven thousand twenty-nine'),\n(6124, 12630, 'twelve thousand six hundred thirty'),\n(6125, 3017, 'three thousand seventeen'),\n(6126, 12658, 'twelve thousand six hundred fifty-eight'),\n(6127, 96183, 'ninety-six thousand one hundred eighty-three'),\n(6128, 99065, 'ninety-nine thousand sixty-five'),\n(6129, 66995, 'sixty-six thousand nine hundred ninety-five'),\n(6130, 5298, 'five thousand two hundred ninety-eight'),\n(6131, 64425, 'sixty-four thousand four hundred twenty-five'),\n(6132, 844, 'eight hundred forty-four'),\n(6133, 21930, 'twenty-one thousand nine hundred thirty'),\n(6134, 23684, 'twenty-three thousand six hundred eighty-four'),\n(6135, 35982, 'thirty-five thousand nine hundred eighty-two'),\n(6136, 11008, 'eleven thousand eight'),\n(6137, 19763, 'nineteen thousand seven hundred sixty-three'),\n(6138, 60512, 'sixty thousand five hundred twelve'),\n(6139, 21885, 'twenty-one thousand eight hundred eighty-five'),\n(6140, 83640, 'eighty-three thousand six hundred forty'),\n(6141, 94539, 'ninety-four thousand five hundred thirty-nine'),\n(6142, 52823, 'fifty-two thousand eight hundred twenty-three'),\n(6143, 6389, 'six thousand three hundred eighty-nine'),\n(6144, 19177, 'nineteen thousand one hundred seventy-seven'),\n(6145, 89475, 'eighty-nine thousand four hundred seventy-five'),\n(6146, 20380, 'twenty thousand three hundred eighty'),\n(6147, 87303, 'eighty-seven thousand three hundred three'),\n(6148, 52516, 'fifty-two thousand five hundred sixteen'),\n(6149, 14393, 'fourteen thousand three hundred ninety-three'),\n(6150, 68834, 'sixty-eight thousand eight hundred thirty-four'),\n(6151, 85944, 'eighty-five thousand nine hundred forty-four'),\n(6152, 78341, 'seventy-eight thousand three hundred forty-one'),\n(6153, 82521, 'eighty-two thousand five hundred twenty-one'),\n(6154, 48666, 'forty-eight thousand six hundred sixty-six'),\n(6155, 57268, 'fifty-seven thousand two hundred sixty-eight'),\n(6156, 29428, 'twenty-nine thousand four hundred twenty-eight'),\n(6157, 91941, 'ninety-one thousand nine hundred forty-one'),\n(6158, 55696, 'fifty-five thousand six hundred ninety-six'),\n(6159, 10591, 'ten thousand five hundred ninety-one'),\n(6160, 73189, 'seventy-three thousand one hundred eighty-nine'),\n(6161, 5545, 'five thousand five hundred forty-five'),\n(6162, 71766, 'seventy-one thousand seven hundred sixty-six'),\n(6163, 60261, 'sixty thousand two hundred sixty-one'),\n(6164, 6771, 'six thousand seven hundred seventy-one'),\n(6165, 61833, 'sixty-one thousand eight hundred thirty-three'),\n(6166, 42807, 'forty-two thousand eight hundred seven'),\n(6167, 12021, 'twelve thousand twenty-one'),\n(6168, 47884, 'forty-seven thousand eight hundred eighty-four'),\n(6169, 24662, 'twenty-four thousand six hundred sixty-two'),\n(6170, 98069, 'ninety-eight thousand sixty-nine'),\n(6171, 2270, 'two thousand two hundred seventy'),\n(6172, 26039, 'twenty-six thousand thirty-nine'),\n(6173, 65640, 'sixty-five thousand six hundred forty'),\n(6174, 46988, 'forty-six thousand nine hundred eighty-eight'),\n(6175, 88153, 'eighty-eight thousand one hundred fifty-three'),\n(6176, 89564, 'eighty-nine thousand five hundred sixty-four'),\n(6177, 25319, 'twenty-five thousand three hundred nineteen'),\n(6178, 12171, 'twelve thousand one hundred seventy-one'),\n(6179, 27465, 'twenty-seven thousand four hundred sixty-five'),\n(6180, 36456, 'thirty-six thousand four hundred fifty-six'),\n(6181, 70611, 'seventy thousand six hundred eleven'),\n(6182, 43880, 'forty-three thousand eight hundred eighty'),\n(6183, 62758, 'sixty-two thousand seven hundred fifty-eight'),\n(6184, 38437, 'thirty-eight thousand four hundred thirty-seven'),\n(6185, 43518, 'forty-three thousand five hundred eighteen'),\n(6186, 44228, 'forty-four thousand two hundred twenty-eight'),\n(6187, 17698, 'seventeen thousand six hundred ninety-eight'),\n(6188, 77514, 'seventy-seven thousand five hundred fourteen'),\n(6189, 32407, 'thirty-two thousand four hundred seven'),\n(6190, 19508, 'nineteen thousand five hundred eight'),\n(6191, 25144, 'twenty-five thousand one hundred forty-four'),\n(6192, 40712, 'forty thousand seven hundred twelve'),\n(6193, 80425, 'eighty thousand four hundred twenty-five'),\n(6194, 11179, 'eleven thousand one hundred seventy-nine'),\n(6195, 27124, 'twenty-seven thousand one hundred twenty-four'),\n(6196, 15279, 'fifteen thousand two hundred seventy-nine'),\n(6197, 42399, 'forty-two thousand three hundred ninety-nine'),\n(6198, 726, 'seven hundred twenty-six'),\n(6199, 80053, 'eighty thousand fifty-three'),\n(6200, 37164, 'thirty-seven thousand one hundred sixty-four'),\n(6201, 1416, 'one thousand four hundred sixteen'),\n(6202, 86978, 'eighty-six thousand nine hundred seventy-eight'),\n(6203, 74014, 'seventy-four thousand fourteen'),\n(6204, 88463, 'eighty-eight thousand four hundred sixty-three'),\n(6205, 45408, 'forty-five thousand four hundred eight'),\n(6206, 92533, 'ninety-two thousand five hundred thirty-three'),\n(6207, 83478, 'eighty-three thousand four hundred seventy-eight'),\n(6208, 53937, 'fifty-three thousand nine hundred thirty-seven'),\n(6209, 79527, 'seventy-nine thousand five hundred twenty-seven'),\n(6210, 70018, 'seventy thousand eighteen'),\n(6211, 55734, 'fifty-five thousand seven hundred thirty-four'),\n(6212, 45979, 'forty-five thousand nine hundred seventy-nine'),\n(6213, 35933, 'thirty-five thousand nine hundred thirty-three'),\n(6214, 32057, 'thirty-two thousand fifty-seven'),\n(6215, 81084, 'eighty-one thousand eighty-four'),\n(6216, 48355, 'forty-eight thousand three hundred fifty-five'),\n(6217, 95606, 'ninety-five thousand six hundred six'),\n(6218, 81945, 'eighty-one thousand nine hundred forty-five'),\n(6219, 84258, 'eighty-four thousand two hundred fifty-eight'),\n(6220, 40989, 'forty thousand nine hundred eighty-nine'),\n(6221, 54235, 'fifty-four thousand two hundred thirty-five'),\n(6222, 28354, 'twenty-eight thousand three hundred fifty-four'),\n(6223, 23029, 'twenty-three thousand twenty-nine'),\n(6224, 28527, 'twenty-eight thousand five hundred twenty-seven'),\n(6225, 54782, 'fifty-four thousand seven hundred eighty-two'),\n(6226, 63834, 'sixty-three thousand eight hundred thirty-four'),\n(6227, 31714, 'thirty-one thousand seven hundred fourteen'),\n(6228, 1076, 'one thousand seventy-six'),\n(6229, 72732, 'seventy-two thousand seven hundred thirty-two'),\n(6230, 98839, 'ninety-eight thousand eight hundred thirty-nine'),\n(6231, 87124, 'eighty-seven thousand one hundred twenty-four'),\n(6232, 66213, 'sixty-six thousand two hundred thirteen'),\n(6233, 23091, 'twenty-three thousand ninety-one'),\n(6234, 43627, 'forty-three thousand six hundred twenty-seven'),\n(6235, 76741, 'seventy-six thousand seven hundred forty-one'),\n(6236, 86983, 'eighty-six thousand nine hundred eighty-three'),\n(6237, 66646, 'sixty-six thousand six hundred forty-six'),\n(6238, 4490, 'four thousand four hundred ninety'),\n(6239, 72257, 'seventy-two thousand two hundred fifty-seven'),\n(6240, 89622, 'eighty-nine thousand six hundred twenty-two'),\n(6241, 13763, 'thirteen thousand seven hundred sixty-three'),\n(6242, 65227, 'sixty-five thousand two hundred twenty-seven'),\n(6243, 25420, 'twenty-five thousand four hundred twenty'),\n(6244, 32765, 'thirty-two thousand seven hundred sixty-five'),\n(6245, 87872, 'eighty-seven thousand eight hundred seventy-two'),\n(6246, 33704, 'thirty-three thousand seven hundred four'),\n(6247, 92939, 'ninety-two thousand nine hundred thirty-nine'),\n(6248, 5830, 'five thousand eight hundred thirty'),\n(6249, 12851, 'twelve thousand eight hundred fifty-one'),\n(6250, 42166, 'forty-two thousand one hundred sixty-six'),\n(6251, 55694, 'fifty-five thousand six hundred ninety-four'),\n(6252, 14530, 'fourteen thousand five hundred thirty'),\n(6253, 56005, 'fifty-six thousand five'),\n(6254, 76667, 'seventy-six thousand six hundred sixty-seven'),\n(6255, 47309, 'forty-seven thousand three hundred nine'),\n(6256, 60041, 'sixty thousand forty-one'),\n(6257, 98988, 'ninety-eight thousand nine hundred eighty-eight'),\n(6258, 87103, 'eighty-seven thousand one hundred three'),\n(6259, 43646, 'forty-three thousand six hundred forty-six'),\n(6260, 58177, 'fifty-eight thousand one hundred seventy-seven'),\n(6261, 10901, 'ten thousand nine hundred one'),\n(6262, 97988, 'ninety-seven thousand nine hundred eighty-eight'),\n(6263, 15056, 'fifteen thousand fifty-six'),\n(6264, 57504, 'fifty-seven thousand five hundred four'),\n(6265, 49228, 'forty-nine thousand two hundred twenty-eight'),\n(6266, 13081, 'thirteen thousand eighty-one'),\n(6267, 42925, 'forty-two thousand nine hundred twenty-five'),\n(6268, 89450, 'eighty-nine thousand four hundred fifty'),\n(6269, 28088, 'twenty-eight thousand eighty-eight'),\n(6270, 13883, 'thirteen thousand eight hundred eighty-three'),\n(6271, 62491, 'sixty-two thousand four hundred ninety-one'),\n(6272, 54510, 'fifty-four thousand five hundred ten'),\n(6273, 25477, 'twenty-five thousand four hundred seventy-seven'),\n(6274, 36892, 'thirty-six thousand eight hundred ninety-two'),\n(6275, 44686, 'forty-four thousand six hundred eighty-six'),\n(6276, 623, 'six hundred twenty-three'),\n(6277, 74026, 'seventy-four thousand twenty-six'),\n(6278, 6620, 'six thousand six hundred twenty'),\n(6279, 97614, 'ninety-seven thousand six hundred fourteen'),\n(6280, 87690, 'eighty-seven thousand six hundred ninety'),\n(6281, 37529, 'thirty-seven thousand five hundred twenty-nine'),\n(6282, 61052, 'sixty-one thousand fifty-two'),\n(6283, 33322, 'thirty-three thousand three hundred twenty-two'),\n(6284, 14694, 'fourteen thousand six hundred ninety-four'),\n(6285, 68015, 'sixty-eight thousand fifteen'),\n(6286, 247, 'two hundred forty-seven'),\n(6287, 33736, 'thirty-three thousand seven hundred thirty-six'),\n(6288, 86318, 'eighty-six thousand three hundred eighteen'),\n(6289, 67992, 'sixty-seven thousand nine hundred ninety-two'),\n(6290, 2689, 'two thousand six hundred eighty-nine'),\n(6291, 73700, 'seventy-three thousand seven hundred'),\n(6292, 50034, 'fifty thousand thirty-four'),\n(6293, 26225, 'twenty-six thousand two hundred twenty-five'),\n(6294, 3238, 'three thousand two hundred thirty-eight'),\n(6295, 82917, 'eighty-two thousand nine hundred seventeen'),\n(6296, 88035, 'eighty-eight thousand thirty-five'),\n(6297, 31791, 'thirty-one thousand seven hundred ninety-one'),\n(6298, 90092, 'ninety thousand ninety-two'),\n(6299, 80174, 'eighty thousand one hundred seventy-four'),\n(6300, 4836, 'four thousand eight hundred thirty-six'),\n(6301, 53563, 'fifty-three thousand five hundred sixty-three'),\n(6302, 39432, 'thirty-nine thousand four hundred thirty-two'),\n(6303, 29551, 'twenty-nine thousand five hundred fifty-one'),\n(6304, 75845, 'seventy-five thousand eight hundred forty-five'),\n(6305, 38821, 'thirty-eight thousand eight hundred twenty-one'),\n(6306, 56215, 'fifty-six thousand two hundred fifteen'),\n(6307, 59089, 'fifty-nine thousand eighty-nine'),\n(6308, 96917, 'ninety-six thousand nine hundred seventeen'),\n(6309, 28136, 'twenty-eight thousand one hundred thirty-six'),\n(6310, 62247, 'sixty-two thousand two hundred forty-seven'),\n(6311, 92031, 'ninety-two thousand thirty-one'),\n(6312, 22252, 'twenty-two thousand two hundred fifty-two'),\n(6313, 14414, 'fourteen thousand four hundred fourteen'),\n(6314, 88576, 'eighty-eight thousand five hundred seventy-six'),\n(6315, 42941, 'forty-two thousand nine hundred forty-one'),\n(6316, 80753, 'eighty thousand seven hundred fifty-three'),\n(6317, 63991, 'sixty-three thousand nine hundred ninety-one'),\n(6318, 81264, 'eighty-one thousand two hundred sixty-four'),\n(6319, 21916, 'twenty-one thousand nine hundred sixteen'),\n(6320, 78785, 'seventy-eight thousand seven hundred eighty-five'),\n(6321, 9211, 'nine thousand two hundred eleven'),\n(6322, 60477, 'sixty thousand four hundred seventy-seven'),\n(6323, 11677, 'eleven thousand six hundred seventy-seven'),\n(6324, 99402, 'ninety-nine thousand four hundred two'),\n(6325, 45164, 'forty-five thousand one hundred sixty-four'),\n(6326, 2457, 'two thousand four hundred fifty-seven'),\n(6327, 4987, 'four thousand nine hundred eighty-seven'),\n(6328, 99422, 'ninety-nine thousand four hundred twenty-two'),\n(6329, 84484, 'eighty-four thousand four hundred eighty-four'),\n(6330, 96512, 'ninety-six thousand five hundred twelve'),\n(6331, 74147, 'seventy-four thousand one hundred forty-seven'),\n(6332, 46153, 'forty-six thousand one hundred fifty-three'),\n(6333, 48853, 'forty-eight thousand eight hundred fifty-three'),\n(6334, 65540, 'sixty-five thousand five hundred forty'),\n(6335, 28107, 'twenty-eight thousand one hundred seven'),\n(6336, 29441, 'twenty-nine thousand four hundred forty-one'),\n(6337, 53313, 'fifty-three thousand three hundred thirteen'),\n(6338, 79738, 'seventy-nine thousand seven hundred thirty-eight'),\n(6339, 69030, 'sixty-nine thousand thirty'),\n(6340, 95058, 'ninety-five thousand fifty-eight'),\n(6341, 40977, 'forty thousand nine hundred seventy-seven'),\n(6342, 93352, 'ninety-three thousand three hundred fifty-two'),\n(6343, 59833, 'fifty-nine thousand eight hundred thirty-three'),\n(6344, 45957, 'forty-five thousand nine hundred fifty-seven'),\n(6345, 96727, 'ninety-six thousand seven hundred twenty-seven'),\n(6346, 34117, 'thirty-four thousand one hundred seventeen'),\n(6347, 99900, 'ninety-nine thousand nine hundred'),\n(6348, 22656, 'twenty-two thousand six hundred fifty-six'),\n(6349, 36404, 'thirty-six thousand four hundred four'),\n(6350, 80787, 'eighty thousand seven hundred eighty-seven'),\n(6351, 96035, 'ninety-six thousand thirty-five'),\n(6352, 697, 'six hundred ninety-seven'),\n(6353, 7210, 'seven thousand two hundred ten'),\n(6354, 14584, 'fourteen thousand five hundred eighty-four'),\n(6355, 15248, 'fifteen thousand two hundred forty-eight'),\n(6356, 159, 'one hundred fifty-nine'),\n(6357, 39531, 'thirty-nine thousand five hundred thirty-one'),\n(6358, 29322, 'twenty-nine thousand three hundred twenty-two'),\n(6359, 52603, 'fifty-two thousand six hundred three'),\n(6360, 16485, 'sixteen thousand four hundred eighty-five'),\n(6361, 51069, 'fifty-one thousand sixty-nine'),\n(6362, 86442, 'eighty-six thousand four hundred forty-two'),\n(6363, 40547, 'forty thousand five hundred forty-seven'),\n(6364, 8011, 'eight thousand eleven'),\n(6365, 15798, 'fifteen thousand seven hundred ninety-eight'),\n(6366, 8431, 'eight thousand four hundred thirty-one'),\n(6367, 54606, 'fifty-four thousand six hundred six'),\n(6368, 6730, 'six thousand seven hundred thirty'),\n(6369, 74250, 'seventy-four thousand two hundred fifty'),\n(6370, 98563, 'ninety-eight thousand five hundred sixty-three'),\n(6371, 23258, 'twenty-three thousand two hundred fifty-eight'),\n(6372, 79820, 'seventy-nine thousand eight hundred twenty'),\n(6373, 66722, 'sixty-six thousand seven hundred twenty-two'),\n(6374, 32083, 'thirty-two thousand eighty-three'),\n(6375, 38101, 'thirty-eight thousand one hundred one'),\n(6376, 97170, 'ninety-seven thousand one hundred seventy'),\n(6377, 62549, 'sixty-two thousand five hundred forty-nine'),\n(6378, 10450, 'ten thousand four hundred fifty'),\n(6379, 2058, 'two thousand fifty-eight'),\n(6380, 63483, 'sixty-three thousand four hundred eighty-three'),\n(6381, 76032, 'seventy-six thousand thirty-two'),\n(6382, 65603, 'sixty-five thousand six hundred three'),\n(6383, 32631, 'thirty-two thousand six hundred thirty-one'),\n(6384, 86527, 'eighty-six thousand five hundred twenty-seven'),\n(6385, 42345, 'forty-two thousand three hundred forty-five'),\n(6386, 76644, 'seventy-six thousand six hundred forty-four'),\n(6387, 8509, 'eight thousand five hundred nine'),\n(6388, 48035, 'forty-eight thousand thirty-five'),\n(6389, 40802, 'forty thousand eight hundred two'),\n(6390, 2238, 'two thousand two hundred thirty-eight'),\n(6391, 66518, 'sixty-six thousand five hundred eighteen'),\n(6392, 42723, 'forty-two thousand seven hundred twenty-three'),\n(6393, 411, 'four hundred eleven'),\n(6394, 71064, 'seventy-one thousand sixty-four'),\n(6395, 75111, 'seventy-five thousand one hundred eleven'),\n(6396, 29646, 'twenty-nine thousand six hundred forty-six'),\n(6397, 25777, 'twenty-five thousand seven hundred seventy-seven'),\n(6398, 95760, 'ninety-five thousand seven hundred sixty'),\n(6399, 26311, 'twenty-six thousand three hundred eleven'),\n(6400, 68057, 'sixty-eight thousand fifty-seven'),\n(6401, 86442, 'eighty-six thousand four hundred forty-two'),\n(6402, 56758, 'fifty-six thousand seven hundred fifty-eight'),\n(6403, 98766, 'ninety-eight thousand seven hundred sixty-six'),\n(6404, 85045, 'eighty-five thousand forty-five'),\n(6405, 38693, 'thirty-eight thousand six hundred ninety-three'),\n(6406, 88482, 'eighty-eight thousand four hundred eighty-two'),\n(6407, 27747, 'twenty-seven thousand seven hundred forty-seven'),\n(6408, 85182, 'eighty-five thousand one hundred eighty-two'),\n(6409, 32398, 'thirty-two thousand three hundred ninety-eight'),\n(6410, 55913, 'fifty-five thousand nine hundred thirteen'),\n(6411, 31702, 'thirty-one thousand seven hundred two'),\n(6412, 98943, 'ninety-eight thousand nine hundred forty-three'),\n(6413, 70579, 'seventy thousand five hundred seventy-nine'),\n(6414, 90523, 'ninety thousand five hundred twenty-three'),\n(6415, 81321, 'eighty-one thousand three hundred twenty-one'),\n(6416, 93603, 'ninety-three thousand six hundred three'),\n(6417, 84198, 'eighty-four thousand one hundred ninety-eight'),\n(6418, 19537, 'nineteen thousand five hundred thirty-seven'),\n(6419, 72503, 'seventy-two thousand five hundred three'),\n(6420, 91695, 'ninety-one thousand six hundred ninety-five'),\n(6421, 70579, 'seventy thousand five hundred seventy-nine'),\n(6422, 14607, 'fourteen thousand six hundred seven'),\n(6423, 22638, 'twenty-two thousand six hundred thirty-eight'),\n(6424, 70894, 'seventy thousand eight hundred ninety-four'),\n(6425, 87045, 'eighty-seven thousand forty-five'),\n(6426, 90446, 'ninety thousand four hundred forty-six'),\n(6427, 9012, 'nine thousand twelve'),\n(6428, 32693, 'thirty-two thousand six hundred ninety-three'),\n(6429, 16281, 'sixteen thousand two hundred eighty-one'),\n(6430, 86034, 'eighty-six thousand thirty-four'),\n(6431, 81060, 'eighty-one thousand sixty'),\n(6432, 81880, 'eighty-one thousand eight hundred eighty'),\n(6433, 69098, 'sixty-nine thousand ninety-eight'),\n(6434, 96616, 'ninety-six thousand six hundred sixteen'),\n(6435, 17714, 'seventeen thousand seven hundred fourteen'),\n(6436, 96329, 'ninety-six thousand three hundred twenty-nine'),\n(6437, 21702, 'twenty-one thousand seven hundred two'),\n(6438, 65357, 'sixty-five thousand three hundred fifty-seven'),\n(6439, 53554, 'fifty-three thousand five hundred fifty-four'),\n(6440, 84396, 'eighty-four thousand three hundred ninety-six'),\n(6441, 98027, 'ninety-eight thousand twenty-seven'),\n(6442, 58883, 'fifty-eight thousand eight hundred eighty-three'),\n(6443, 86208, 'eighty-six thousand two hundred eight'),\n(6444, 10831, 'ten thousand eight hundred thirty-one'),\n(6445, 22454, 'twenty-two thousand four hundred fifty-four'),\n(6446, 24336, 'twenty-four thousand three hundred thirty-six'),\n(6447, 94127, 'ninety-four thousand one hundred twenty-seven'),\n(6448, 77752, 'seventy-seven thousand seven hundred fifty-two'),\n(6449, 30211, 'thirty thousand two hundred eleven'),\n(6450, 72104, 'seventy-two thousand one hundred four'),\n(6451, 14312, 'fourteen thousand three hundred twelve'),\n(6452, 30821, 'thirty thousand eight hundred twenty-one'),\n(6453, 88440, 'eighty-eight thousand four hundred forty'),\n(6454, 80336, 'eighty thousand three hundred thirty-six'),\n(6455, 17921, 'seventeen thousand nine hundred twenty-one'),\n(6456, 72075, 'seventy-two thousand seventy-five'),\n(6457, 68952, 'sixty-eight thousand nine hundred fifty-two'),\n(6458, 50976, 'fifty thousand nine hundred seventy-six'),\n(6459, 17339, 'seventeen thousand three hundred thirty-nine'),\n(6460, 76275, 'seventy-six thousand two hundred seventy-five'),\n(6461, 5063, 'five thousand sixty-three'),\n(6462, 56282, 'fifty-six thousand two hundred eighty-two'),\n(6463, 58924, 'fifty-eight thousand nine hundred twenty-four'),\n(6464, 61997, 'sixty-one thousand nine hundred ninety-seven'),\n(6465, 6748, 'six thousand seven hundred forty-eight'),\n(6466, 2445, 'two thousand four hundred forty-five'),\n(6467, 95279, 'ninety-five thousand two hundred seventy-nine'),\n(6468, 58370, 'fifty-eight thousand three hundred seventy'),\n(6469, 79648, 'seventy-nine thousand six hundred forty-eight'),\n(6470, 19836, 'nineteen thousand eight hundred thirty-six'),\n(6471, 26488, 'twenty-six thousand four hundred eighty-eight'),\n(6472, 46300, 'forty-six thousand three hundred'),\n(6473, 59242, 'fifty-nine thousand two hundred forty-two'),\n(6474, 94537, 'ninety-four thousand five hundred thirty-seven'),\n(6475, 48770, 'forty-eight thousand seven hundred seventy'),\n(6476, 73293, 'seventy-three thousand two hundred ninety-three'),\n(6477, 71587, 'seventy-one thousand five hundred eighty-seven'),\n(6478, 34578, 'thirty-four thousand five hundred seventy-eight'),\n(6479, 395, 'three hundred ninety-five'),\n(6480, 49738, 'forty-nine thousand seven hundred thirty-eight'),\n(6481, 39372, 'thirty-nine thousand three hundred seventy-two'),\n(6482, 58806, 'fifty-eight thousand eight hundred six'),\n(6483, 81494, 'eighty-one thousand four hundred ninety-four'),\n(6484, 50298, 'fifty thousand two hundred ninety-eight'),\n(6485, 91193, 'ninety-one thousand one hundred ninety-three'),\n(6486, 84418, 'eighty-four thousand four hundred eighteen'),\n(6487, 43246, 'forty-three thousand two hundred forty-six'),\n(6488, 99111, 'ninety-nine thousand one hundred eleven'),\n(6489, 87337, 'eighty-seven thousand three hundred thirty-seven'),\n(6490, 353, 'three hundred fifty-three'),\n(6491, 20434, 'twenty thousand four hundred thirty-four'),\n(6492, 63428, 'sixty-three thousand four hundred twenty-eight'),\n(6493, 33969, 'thirty-three thousand nine hundred sixty-nine'),\n(6494, 3224, 'three thousand two hundred twenty-four'),\n(6495, 64553, 'sixty-four thousand five hundred fifty-three'),\n(6496, 950, 'nine hundred fifty'),\n(6497, 47927, 'forty-seven thousand nine hundred twenty-seven'),\n(6498, 5149, 'five thousand one hundred forty-nine'),\n(6499, 30719, 'thirty thousand seven hundred nineteen'),\n(6500, 50162, 'fifty thousand one hundred sixty-two'),\n(6501, 76386, 'seventy-six thousand three hundred eighty-six'),\n(6502, 5514, 'five thousand five hundred fourteen'),\n(6503, 98674, 'ninety-eight thousand six hundred seventy-four'),\n(6504, 7134, 'seven thousand one hundred thirty-four'),\n(6505, 43648, 'forty-three thousand six hundred forty-eight'),\n(6506, 63879, 'sixty-three thousand eight hundred seventy-nine'),\n(6507, 5557, 'five thousand five hundred fifty-seven'),\n(6508, 48890, 'forty-eight thousand eight hundred ninety'),\n(6509, 18033, 'eighteen thousand thirty-three'),\n(6510, 72800, 'seventy-two thousand eight hundred'),\n(6511, 45062, 'forty-five thousand sixty-two'),\n(6512, 89541, 'eighty-nine thousand five hundred forty-one'),\n(6513, 337, 'three hundred thirty-seven'),\n(6514, 42970, 'forty-two thousand nine hundred seventy'),\n(6515, 5347, 'five thousand three hundred forty-seven'),\n(6516, 13576, 'thirteen thousand five hundred seventy-six'),\n(6517, 69606, 'sixty-nine thousand six hundred six'),\n(6518, 52446, 'fifty-two thousand four hundred forty-six'),\n(6519, 36405, 'thirty-six thousand four hundred five'),\n(6520, 35661, 'thirty-five thousand six hundred sixty-one'),\n(6521, 46459, 'forty-six thousand four hundred fifty-nine'),\n(6522, 77111, 'seventy-seven thousand one hundred eleven'),\n(6523, 12640, 'twelve thousand six hundred forty'),\n(6524, 90869, 'ninety thousand eight hundred sixty-nine'),\n(6525, 71557, 'seventy-one thousand five hundred fifty-seven'),\n(6526, 714, 'seven hundred fourteen'),\n(6527, 95355, 'ninety-five thousand three hundred fifty-five'),\n(6528, 10730, 'ten thousand seven hundred thirty'),\n(6529, 6696, 'six thousand six hundred ninety-six'),\n(6530, 96869, 'ninety-six thousand eight hundred sixty-nine'),\n(6531, 68136, 'sixty-eight thousand one hundred thirty-six'),\n(6532, 67764, 'sixty-seven thousand seven hundred sixty-four'),\n(6533, 12977, 'twelve thousand nine hundred seventy-seven'),\n(6534, 64121, 'sixty-four thousand one hundred twenty-one'),\n(6535, 29262, 'twenty-nine thousand two hundred sixty-two'),\n(6536, 8828, 'eight thousand eight hundred twenty-eight'),\n(6537, 11408, 'eleven thousand four hundred eight'),\n(6538, 98612, 'ninety-eight thousand six hundred twelve'),\n(6539, 42095, 'forty-two thousand ninety-five'),\n(6540, 58308, 'fifty-eight thousand three hundred eight'),\n(6541, 17618, 'seventeen thousand six hundred eighteen'),\n(6542, 91229, 'ninety-one thousand two hundred twenty-nine'),\n(6543, 93349, 'ninety-three thousand three hundred forty-nine'),\n(6544, 40588, 'forty thousand five hundred eighty-eight'),\n(6545, 93831, 'ninety-three thousand eight hundred thirty-one'),\n(6546, 83235, 'eighty-three thousand two hundred thirty-five'),\n(6547, 98016, 'ninety-eight thousand sixteen'),\n(6548, 78127, 'seventy-eight thousand one hundred twenty-seven'),\n(6549, 65915, 'sixty-five thousand nine hundred fifteen'),\n(6550, 35927, 'thirty-five thousand nine hundred twenty-seven'),\n(6551, 81793, 'eighty-one thousand seven hundred ninety-three'),\n(6552, 4105, 'four thousand one hundred five'),\n(6553, 98613, 'ninety-eight thousand six hundred thirteen'),\n(6554, 31952, 'thirty-one thousand nine hundred fifty-two'),\n(6555, 18668, 'eighteen thousand six hundred sixty-eight'),\n(6556, 70762, 'seventy thousand seven hundred sixty-two'),\n(6557, 37556, 'thirty-seven thousand five hundred fifty-six'),\n(6558, 64423, 'sixty-four thousand four hundred twenty-three'),\n(6559, 61176, 'sixty-one thousand one hundred seventy-six'),\n(6560, 27820, 'twenty-seven thousand eight hundred twenty'),\n(6561, 29432, 'twenty-nine thousand four hundred thirty-two'),\n(6562, 67897, 'sixty-seven thousand eight hundred ninety-seven'),\n(6563, 75938, 'seventy-five thousand nine hundred thirty-eight'),\n(6564, 35003, 'thirty-five thousand three'),\n(6565, 21286, 'twenty-one thousand two hundred eighty-six'),\n(6566, 12470, 'twelve thousand four hundred seventy'),\n(6567, 71891, 'seventy-one thousand eight hundred ninety-one'),\n(6568, 2784, 'two thousand seven hundred eighty-four'),\n(6569, 22162, 'twenty-two thousand one hundred sixty-two'),\n(6570, 52367, 'fifty-two thousand three hundred sixty-seven'),\n(6571, 50157, 'fifty thousand one hundred fifty-seven'),\n(6572, 20175, 'twenty thousand one hundred seventy-five'),\n(6573, 25136, 'twenty-five thousand one hundred thirty-six'),\n(6574, 67773, 'sixty-seven thousand seven hundred seventy-three'),\n(6575, 22905, 'twenty-two thousand nine hundred five'),\n(6576, 7527, 'seven thousand five hundred twenty-seven'),\n(6577, 99972, 'ninety-nine thousand nine hundred seventy-two'),\n(6578, 26244, 'twenty-six thousand two hundred forty-four'),\n(6579, 3988, 'three thousand nine hundred eighty-eight'),\n(6580, 78093, 'seventy-eight thousand ninety-three'),\n(6581, 51433, 'fifty-one thousand four hundred thirty-three'),\n(6582, 46328, 'forty-six thousand three hundred twenty-eight'),\n(6583, 86139, 'eighty-six thousand one hundred thirty-nine'),\n(6584, 4370, 'four thousand three hundred seventy'),\n(6585, 6155, 'six thousand one hundred fifty-five'),\n(6586, 44537, 'forty-four thousand five hundred thirty-seven'),\n(6587, 61247, 'sixty-one thousand two hundred forty-seven'),\n(6588, 81676, 'eighty-one thousand six hundred seventy-six'),\n(6589, 82034, 'eighty-two thousand thirty-four'),\n(6590, 51474, 'fifty-one thousand four hundred seventy-four'),\n(6591, 57140, 'fifty-seven thousand one hundred forty'),\n(6592, 77032, 'seventy-seven thousand thirty-two'),\n(6593, 85202, 'eighty-five thousand two hundred two'),\n(6594, 97387, 'ninety-seven thousand three hundred eighty-seven'),\n(6595, 36699, 'thirty-six thousand six hundred ninety-nine'),\n(6596, 95494, 'ninety-five thousand four hundred ninety-four'),\n(6597, 60862, 'sixty thousand eight hundred sixty-two'),\n(6598, 12721, 'twelve thousand seven hundred twenty-one'),\n(6599, 46185, 'forty-six thousand one hundred eighty-five'),\n(6600, 5960, 'five thousand nine hundred sixty'),\n(6601, 59841, 'fifty-nine thousand eight hundred forty-one'),\n(6602, 20040, 'twenty thousand forty'),\n(6603, 52851, 'fifty-two thousand eight hundred fifty-one'),\n(6604, 98369, 'ninety-eight thousand three hundred sixty-nine'),\n(6605, 47209, 'forty-seven thousand two hundred nine'),\n(6606, 1166, 'one thousand one hundred sixty-six'),\n(6607, 94770, 'ninety-four thousand seven hundred seventy'),\n(6608, 89349, 'eighty-nine thousand three hundred forty-nine'),\n(6609, 7611, 'seven thousand six hundred eleven'),\n(6610, 12467, 'twelve thousand four hundred sixty-seven'),\n(6611, 93893, 'ninety-three thousand eight hundred ninety-three'),\n(6612, 59941, 'fifty-nine thousand nine hundred forty-one'),\n(6613, 42902, 'forty-two thousand nine hundred two'),\n(6614, 57172, 'fifty-seven thousand one hundred seventy-two'),\n(6615, 61256, 'sixty-one thousand two hundred fifty-six'),\n(6616, 38110, 'thirty-eight thousand one hundred ten'),\n(6617, 35078, 'thirty-five thousand seventy-eight'),\n(6618, 57155, 'fifty-seven thousand one hundred fifty-five'),\n(6619, 29333, 'twenty-nine thousand three hundred thirty-three'),\n(6620, 3543, 'three thousand five hundred forty-three'),\n(6621, 55935, 'fifty-five thousand nine hundred thirty-five'),\n(6622, 28858, 'twenty-eight thousand eight hundred fifty-eight'),\n(6623, 94101, 'ninety-four thousand one hundred one'),\n(6624, 91360, 'ninety-one thousand three hundred sixty'),\n(6625, 79815, 'seventy-nine thousand eight hundred fifteen'),\n(6626, 14822, 'fourteen thousand eight hundred twenty-two'),\n(6627, 23427, 'twenty-three thousand four hundred twenty-seven'),\n(6628, 51242, 'fifty-one thousand two hundred forty-two'),\n(6629, 7058, 'seven thousand fifty-eight'),\n(6630, 89467, 'eighty-nine thousand four hundred sixty-seven'),\n(6631, 79717, 'seventy-nine thousand seven hundred seventeen'),\n(6632, 16821, 'sixteen thousand eight hundred twenty-one'),\n(6633, 33223, 'thirty-three thousand two hundred twenty-three'),\n(6634, 96635, 'ninety-six thousand six hundred thirty-five'),\n(6635, 19409, 'nineteen thousand four hundred nine'),\n(6636, 45622, 'forty-five thousand six hundred twenty-two'),\n(6637, 70150, 'seventy thousand one hundred fifty'),\n(6638, 17916, 'seventeen thousand nine hundred sixteen'),\n(6639, 84015, 'eighty-four thousand fifteen'),\n(6640, 52708, 'fifty-two thousand seven hundred eight'),\n(6641, 79712, 'seventy-nine thousand seven hundred twelve'),\n(6642, 52733, 'fifty-two thousand seven hundred thirty-three'),\n(6643, 10721, 'ten thousand seven hundred twenty-one'),\n(6644, 63701, 'sixty-three thousand seven hundred one'),\n(6645, 71130, 'seventy-one thousand one hundred thirty'),\n(6646, 99480, 'ninety-nine thousand four hundred eighty'),\n(6647, 92378, 'ninety-two thousand three hundred seventy-eight'),\n(6648, 26104, 'twenty-six thousand one hundred four'),\n(6649, 9611, 'nine thousand six hundred eleven'),\n(6650, 55174, 'fifty-five thousand one hundred seventy-four'),\n(6651, 5313, 'five thousand three hundred thirteen'),\n(6652, 73525, 'seventy-three thousand five hundred twenty-five'),\n(6653, 76530, 'seventy-six thousand five hundred thirty'),\n(6654, 39395, 'thirty-nine thousand three hundred ninety-five'),\n(6655, 21956, 'twenty-one thousand nine hundred fifty-six'),\n(6656, 78486, 'seventy-eight thousand four hundred eighty-six'),\n(6657, 14857, 'fourteen thousand eight hundred fifty-seven'),\n(6658, 53768, 'fifty-three thousand seven hundred sixty-eight'),\n(6659, 39320, 'thirty-nine thousand three hundred twenty'),\n(6660, 15883, 'fifteen thousand eight hundred eighty-three'),\n(6661, 4770, 'four thousand seven hundred seventy'),\n(6662, 72020, 'seventy-two thousand twenty'),\n(6663, 26000, 'twenty-six thousand'),\n(6664, 95474, 'ninety-five thousand four hundred seventy-four'),\n(6665, 95154, 'ninety-five thousand one hundred fifty-four'),\n(6666, 53852, 'fifty-three thousand eight hundred fifty-two'),\n(6667, 53561, 'fifty-three thousand five hundred sixty-one'),\n(6668, 76098, 'seventy-six thousand ninety-eight'),\n(6669, 19230, 'nineteen thousand two hundred thirty'),\n(6670, 2424, 'two thousand four hundred twenty-four'),\n(6671, 33583, 'thirty-three thousand five hundred eighty-three'),\n(6672, 30537, 'thirty thousand five hundred thirty-seven'),\n(6673, 95682, 'ninety-five thousand six hundred eighty-two'),\n(6674, 89282, 'eighty-nine thousand two hundred eighty-two'),\n(6675, 57914, 'fifty-seven thousand nine hundred fourteen'),\n(6676, 19324, 'nineteen thousand three hundred twenty-four'),\n(6677, 38619, 'thirty-eight thousand six hundred nineteen'),\n(6678, 4945, 'four thousand nine hundred forty-five'),\n(6679, 10780, 'ten thousand seven hundred eighty'),\n(6680, 4347, 'four thousand three hundred forty-seven'),\n(6681, 24282, 'twenty-four thousand two hundred eighty-two'),\n(6682, 7485, 'seven thousand four hundred eighty-five'),\n(6683, 58345, 'fifty-eight thousand three hundred forty-five'),\n(6684, 68449, 'sixty-eight thousand four hundred forty-nine'),\n(6685, 28984, 'twenty-eight thousand nine hundred eighty-four'),\n(6686, 91546, 'ninety-one thousand five hundred forty-six'),\n(6687, 61582, 'sixty-one thousand five hundred eighty-two'),\n(6688, 30617, 'thirty thousand six hundred seventeen'),\n(6689, 23961, 'twenty-three thousand nine hundred sixty-one'),\n(6690, 52806, 'fifty-two thousand eight hundred six'),\n(6691, 96082, 'ninety-six thousand eighty-two'),\n(6692, 56194, 'fifty-six thousand one hundred ninety-four'),\n(6693, 22806, 'twenty-two thousand eight hundred six'),\n(6694, 46566, 'forty-six thousand five hundred sixty-six'),\n(6695, 3627, 'three thousand six hundred twenty-seven'),\n(6696, 14933, 'fourteen thousand nine hundred thirty-three'),\n(6697, 37558, 'thirty-seven thousand five hundred fifty-eight'),\n(6698, 33543, 'thirty-three thousand five hundred forty-three'),\n(6699, 13103, 'thirteen thousand one hundred three'),\n(6700, 86573, 'eighty-six thousand five hundred seventy-three'),\n(6701, 1830, 'one thousand eight hundred thirty'),\n(6702, 89933, 'eighty-nine thousand nine hundred thirty-three'),\n(6703, 26476, 'twenty-six thousand four hundred seventy-six'),\n(6704, 32688, 'thirty-two thousand six hundred eighty-eight'),\n(6705, 79443, 'seventy-nine thousand four hundred forty-three'),\n(6706, 51404, 'fifty-one thousand four hundred four'),\n(6707, 92220, 'ninety-two thousand two hundred twenty'),\n(6708, 19932, 'nineteen thousand nine hundred thirty-two'),\n(6709, 77340, 'seventy-seven thousand three hundred forty'),\n(6710, 78238, 'seventy-eight thousand two hundred thirty-eight'),\n(6711, 54462, 'fifty-four thousand four hundred sixty-two'),\n(6712, 69871, 'sixty-nine thousand eight hundred seventy-one'),\n(6713, 70202, 'seventy thousand two hundred two'),\n(6714, 77044, 'seventy-seven thousand forty-four'),\n(6715, 8101, 'eight thousand one hundred one'),\n(6716, 50150, 'fifty thousand one hundred fifty'),\n(6717, 53488, 'fifty-three thousand four hundred eighty-eight'),\n(6718, 82723, 'eighty-two thousand seven hundred twenty-three'),\n(6719, 38840, 'thirty-eight thousand eight hundred forty'),\n(6720, 36854, 'thirty-six thousand eight hundred fifty-four'),\n(6721, 73289, 'seventy-three thousand two hundred eighty-nine'),\n(6722, 5460, 'five thousand four hundred sixty'),\n(6723, 86116, 'eighty-six thousand one hundred sixteen'),\n(6724, 91671, 'ninety-one thousand six hundred seventy-one'),\n(6725, 25718, 'twenty-five thousand seven hundred eighteen'),\n(6726, 49405, 'forty-nine thousand four hundred five'),\n(6727, 2805, 'two thousand eight hundred five'),\n(6728, 63907, 'sixty-three thousand nine hundred seven'),\n(6729, 44633, 'forty-four thousand six hundred thirty-three'),\n(6730, 83729, 'eighty-three thousand seven hundred twenty-nine'),\n(6731, 98111, 'ninety-eight thousand one hundred eleven'),\n(6732, 84927, 'eighty-four thousand nine hundred twenty-seven'),\n(6733, 27815, 'twenty-seven thousand eight hundred fifteen'),\n(6734, 65523, 'sixty-five thousand five hundred twenty-three'),\n(6735, 39927, 'thirty-nine thousand nine hundred twenty-seven'),\n(6736, 26574, 'twenty-six thousand five hundred seventy-four'),\n(6737, 95730, 'ninety-five thousand seven hundred thirty'),\n(6738, 77103, 'seventy-seven thousand one hundred three'),\n(6739, 94895, 'ninety-four thousand eight hundred ninety-five'),\n(6740, 12374, 'twelve thousand three hundred seventy-four'),\n(6741, 84618, 'eighty-four thousand six hundred eighteen'),\n(6742, 70940, 'seventy thousand nine hundred forty'),\n(6743, 95197, 'ninety-five thousand one hundred ninety-seven'),\n(6744, 8114, 'eight thousand one hundred fourteen'),\n(6745, 48574, 'forty-eight thousand five hundred seventy-four'),\n(6746, 41804, 'forty-one thousand eight hundred four'),\n(6747, 18518, 'eighteen thousand five hundred eighteen'),\n(6748, 39717, 'thirty-nine thousand seven hundred seventeen'),\n(6749, 54606, 'fifty-four thousand six hundred six'),\n(6750, 75763, 'seventy-five thousand seven hundred sixty-three'),\n(6751, 8546, 'eight thousand five hundred forty-six'),\n(6752, 37046, 'thirty-seven thousand forty-six'),\n(6753, 76160, 'seventy-six thousand one hundred sixty'),\n(6754, 79606, 'seventy-nine thousand six hundred six'),\n(6755, 77839, 'seventy-seven thousand eight hundred thirty-nine'),\n(6756, 20977, 'twenty thousand nine hundred seventy-seven'),\n(6757, 5614, 'five thousand six hundred fourteen'),\n(6758, 45285, 'forty-five thousand two hundred eighty-five'),\n(6759, 75021, 'seventy-five thousand twenty-one'),\n(6760, 75872, 'seventy-five thousand eight hundred seventy-two'),\n(6761, 40849, 'forty thousand eight hundred forty-nine'),\n(6762, 24484, 'twenty-four thousand four hundred eighty-four'),\n(6763, 27909, 'twenty-seven thousand nine hundred nine'),\n(6764, 78913, 'seventy-eight thousand nine hundred thirteen'),\n(6765, 88805, 'eighty-eight thousand eight hundred five'),\n(6766, 63580, 'sixty-three thousand five hundred eighty'),\n(6767, 7919, 'seven thousand nine hundred nineteen'),\n(6768, 93222, 'ninety-three thousand two hundred twenty-two'),\n(6769, 24430, 'twenty-four thousand four hundred thirty'),\n(6770, 43950, 'forty-three thousand nine hundred fifty'),\n(6771, 1310, 'one thousand three hundred ten'),\n(6772, 70080, 'seventy thousand eighty'),\n(6773, 81148, 'eighty-one thousand one hundred forty-eight'),\n(6774, 62541, 'sixty-two thousand five hundred forty-one'),\n(6775, 19398, 'nineteen thousand three hundred ninety-eight'),\n(6776, 97179, 'ninety-seven thousand one hundred seventy-nine'),\n(6777, 34684, 'thirty-four thousand six hundred eighty-four'),\n(6778, 88874, 'eighty-eight thousand eight hundred seventy-four'),\n(6779, 57409, 'fifty-seven thousand four hundred nine'),\n(6780, 49870, 'forty-nine thousand eight hundred seventy'),\n(6781, 35463, 'thirty-five thousand four hundred sixty-three'),\n(6782, 36057, 'thirty-six thousand fifty-seven'),\n(6783, 65851, 'sixty-five thousand eight hundred fifty-one'),\n(6784, 13579, 'thirteen thousand five hundred seventy-nine'),\n(6785, 47773, 'forty-seven thousand seven hundred seventy-three'),\n(6786, 32848, 'thirty-two thousand eight hundred forty-eight'),\n(6787, 79542, 'seventy-nine thousand five hundred forty-two'),\n(6788, 90578, 'ninety thousand five hundred seventy-eight'),\n(6789, 35204, 'thirty-five thousand two hundred four'),\n(6790, 95491, 'ninety-five thousand four hundred ninety-one'),\n(6791, 7086, 'seven thousand eighty-six'),\n(6792, 70457, 'seventy thousand four hundred fifty-seven'),\n(6793, 34926, 'thirty-four thousand nine hundred twenty-six'),\n(6794, 36612, 'thirty-six thousand six hundred twelve'),\n(6795, 99637, 'ninety-nine thousand six hundred thirty-seven'),\n(6796, 82112, 'eighty-two thousand one hundred twelve'),\n(6797, 15285, 'fifteen thousand two hundred eighty-five'),\n(6798, 90602, 'ninety thousand six hundred two'),\n(6799, 79256, 'seventy-nine thousand two hundred fifty-six'),\n(6800, 35128, 'thirty-five thousand one hundred twenty-eight'),\n(6801, 12135, 'twelve thousand one hundred thirty-five'),\n(6802, 4111, 'four thousand one hundred eleven'),\n(6803, 66888, 'sixty-six thousand eight hundred eighty-eight'),\n(6804, 13525, 'thirteen thousand five hundred twenty-five'),\n(6805, 6429, 'six thousand four hundred twenty-nine'),\n(6806, 9298, 'nine thousand two hundred ninety-eight'),\n(6807, 69879, 'sixty-nine thousand eight hundred seventy-nine'),\n(6808, 95797, 'ninety-five thousand seven hundred ninety-seven'),\n(6809, 1046, 'one thousand forty-six'),\n(6810, 44336, 'forty-four thousand three hundred thirty-six'),\n(6811, 48541, 'forty-eight thousand five hundred forty-one'),\n(6812, 17256, 'seventeen thousand two hundred fifty-six'),\n(6813, 23456, 'twenty-three thousand four hundred fifty-six'),\n(6814, 32192, 'thirty-two thousand one hundred ninety-two'),\n(6815, 78220, 'seventy-eight thousand two hundred twenty'),\n(6816, 78461, 'seventy-eight thousand four hundred sixty-one'),\n(6817, 87653, 'eighty-seven thousand six hundred fifty-three'),\n(6818, 45130, 'forty-five thousand one hundred thirty'),\n(6819, 80243, 'eighty thousand two hundred forty-three'),\n(6820, 46284, 'forty-six thousand two hundred eighty-four'),\n(6821, 75250, 'seventy-five thousand two hundred fifty'),\n(6822, 66744, 'sixty-six thousand seven hundred forty-four'),\n(6823, 37184, 'thirty-seven thousand one hundred eighty-four'),\n(6824, 58755, 'fifty-eight thousand seven hundred fifty-five'),\n(6825, 63300, 'sixty-three thousand three hundred'),\n(6826, 62363, 'sixty-two thousand three hundred sixty-three'),\n(6827, 8186, 'eight thousand one hundred eighty-six'),\n(6828, 50989, 'fifty thousand nine hundred eighty-nine'),\n(6829, 30688, 'thirty thousand six hundred eighty-eight'),\n(6830, 72070, 'seventy-two thousand seventy'),\n(6831, 87929, 'eighty-seven thousand nine hundred twenty-nine'),\n(6832, 81492, 'eighty-one thousand four hundred ninety-two'),\n(6833, 90838, 'ninety thousand eight hundred thirty-eight'),\n(6834, 3276, 'three thousand two hundred seventy-six'),\n(6835, 74391, 'seventy-four thousand three hundred ninety-one'),\n(6836, 47180, 'forty-seven thousand one hundred eighty'),\n(6837, 16898, 'sixteen thousand eight hundred ninety-eight'),\n(6838, 42432, 'forty-two thousand four hundred thirty-two'),\n(6839, 61035, 'sixty-one thousand thirty-five'),\n(6840, 17760, 'seventeen thousand seven hundred sixty'),\n(6841, 12117, 'twelve thousand one hundred seventeen'),\n(6842, 65747, 'sixty-five thousand seven hundred forty-seven'),\n(6843, 32344, 'thirty-two thousand three hundred forty-four'),\n(6844, 73543, 'seventy-three thousand five hundred forty-three'),\n(6845, 51745, 'fifty-one thousand seven hundred forty-five'),\n(6846, 5895, 'five thousand eight hundred ninety-five'),\n(6847, 85829, 'eighty-five thousand eight hundred twenty-nine'),\n(6848, 9788, 'nine thousand seven hundred eighty-eight'),\n(6849, 22687, 'twenty-two thousand six hundred eighty-seven'),\n(6850, 21778, 'twenty-one thousand seven hundred seventy-eight'),\n(6851, 98821, 'ninety-eight thousand eight hundred twenty-one'),\n(6852, 27493, 'twenty-seven thousand four hundred ninety-three'),\n(6853, 49087, 'forty-nine thousand eighty-seven'),\n(6854, 20492, 'twenty thousand four hundred ninety-two'),\n(6855, 34648, 'thirty-four thousand six hundred forty-eight'),\n(6856, 63848, 'sixty-three thousand eight hundred forty-eight'),\n(6857, 10977, 'ten thousand nine hundred seventy-seven'),\n(6858, 39101, 'thirty-nine thousand one hundred one'),\n(6859, 56572, 'fifty-six thousand five hundred seventy-two'),\n(6860, 16325, 'sixteen thousand three hundred twenty-five'),\n(6861, 34890, 'thirty-four thousand eight hundred ninety'),\n(6862, 8901, 'eight thousand nine hundred one'),\n(6863, 58120, 'fifty-eight thousand one hundred twenty'),\n(6864, 9539, 'nine thousand five hundred thirty-nine'),\n(6865, 18936, 'eighteen thousand nine hundred thirty-six'),\n(6866, 67666, 'sixty-seven thousand six hundred sixty-six'),\n(6867, 43303, 'forty-three thousand three hundred three'),\n(6868, 67804, 'sixty-seven thousand eight hundred four'),\n(6869, 33925, 'thirty-three thousand nine hundred twenty-five'),\n(6870, 86284, 'eighty-six thousand two hundred eighty-four'),\n(6871, 582, 'five hundred eighty-two'),\n(6872, 48012, 'forty-eight thousand twelve'),\n(6873, 56226, 'fifty-six thousand two hundred twenty-six'),\n(6874, 83017, 'eighty-three thousand seventeen'),\n(6875, 52765, 'fifty-two thousand seven hundred sixty-five'),\n(6876, 9757, 'nine thousand seven hundred fifty-seven'),\n(6877, 95014, 'ninety-five thousand fourteen'),\n(6878, 8705, 'eight thousand seven hundred five'),\n(6879, 99481, 'ninety-nine thousand four hundred eighty-one'),\n(6880, 26805, 'twenty-six thousand eight hundred five'),\n(6881, 54671, 'fifty-four thousand six hundred seventy-one'),\n(6882, 77647, 'seventy-seven thousand six hundred forty-seven'),\n(6883, 47193, 'forty-seven thousand one hundred ninety-three'),\n(6884, 17244, 'seventeen thousand two hundred forty-four'),\n(6885, 76324, 'seventy-six thousand three hundred twenty-four'),\n(6886, 35193, 'thirty-five thousand one hundred ninety-three'),\n(6887, 28642, 'twenty-eight thousand six hundred forty-two'),\n(6888, 53149, 'fifty-three thousand one hundred forty-nine'),\n(6889, 53230, 'fifty-three thousand two hundred thirty'),\n(6890, 448, 'four hundred forty-eight'),\n(6891, 81316, 'eighty-one thousand three hundred sixteen'),\n(6892, 89411, 'eighty-nine thousand four hundred eleven'),\n(6893, 90177, 'ninety thousand one hundred seventy-seven'),\n(6894, 60157, 'sixty thousand one hundred fifty-seven'),\n(6895, 52740, 'fifty-two thousand seven hundred forty'),\n(6896, 12324, 'twelve thousand three hundred twenty-four'),\n(6897, 90240, 'ninety thousand two hundred forty'),\n(6898, 46272, 'forty-six thousand two hundred seventy-two'),\n(6899, 3926, 'three thousand nine hundred twenty-six'),\n(6900, 66331, 'sixty-six thousand three hundred thirty-one'),\n(6901, 39669, 'thirty-nine thousand six hundred sixty-nine'),\n(6902, 96184, 'ninety-six thousand one hundred eighty-four'),\n(6903, 8073, 'eight thousand seventy-three'),\n(6904, 28504, 'twenty-eight thousand five hundred four'),\n(6905, 39372, 'thirty-nine thousand three hundred seventy-two'),\n(6906, 14669, 'fourteen thousand six hundred sixty-nine'),\n(6907, 59393, 'fifty-nine thousand three hundred ninety-three'),\n(6908, 36396, 'thirty-six thousand three hundred ninety-six'),\n(6909, 99219, 'ninety-nine thousand two hundred nineteen'),\n(6910, 31371, 'thirty-one thousand three hundred seventy-one'),\n(6911, 35693, 'thirty-five thousand six hundred ninety-three'),\n(6912, 58788, 'fifty-eight thousand seven hundred eighty-eight'),\n(6913, 41832, 'forty-one thousand eight hundred thirty-two'),\n(6914, 75661, 'seventy-five thousand six hundred sixty-one'),\n(6915, 47359, 'forty-seven thousand three hundred fifty-nine'),\n(6916, 73195, 'seventy-three thousand one hundred ninety-five'),\n(6917, 80499, 'eighty thousand four hundred ninety-nine'),\n(6918, 5963, 'five thousand nine hundred sixty-three'),\n(6919, 27733, 'twenty-seven thousand seven hundred thirty-three'),\n(6920, 86525, 'eighty-six thousand five hundred twenty-five'),\n(6921, 44667, 'forty-four thousand six hundred sixty-seven'),\n(6922, 23624, 'twenty-three thousand six hundred twenty-four'),\n(6923, 49974, 'forty-nine thousand nine hundred seventy-four'),\n(6924, 30988, 'thirty thousand nine hundred eighty-eight'),\n(6925, 52525, 'fifty-two thousand five hundred twenty-five'),\n(6926, 7567, 'seven thousand five hundred sixty-seven'),\n(6927, 29063, 'twenty-nine thousand sixty-three'),\n(6928, 59760, 'fifty-nine thousand seven hundred sixty'),\n(6929, 64774, 'sixty-four thousand seven hundred seventy-four'),\n(6930, 56241, 'fifty-six thousand two hundred forty-one'),\n(6931, 21318, 'twenty-one thousand three hundred eighteen'),\n(6932, 29993, 'twenty-nine thousand nine hundred ninety-three'),\n(6933, 13052, 'thirteen thousand fifty-two'),\n(6934, 63940, 'sixty-three thousand nine hundred forty'),\n(6935, 10944, 'ten thousand nine hundred forty-four'),\n(6936, 53517, 'fifty-three thousand five hundred seventeen'),\n(6937, 3365, 'three thousand three hundred sixty-five'),\n(6938, 78936, 'seventy-eight thousand nine hundred thirty-six'),\n(6939, 19479, 'nineteen thousand four hundred seventy-nine'),\n(6940, 75930, 'seventy-five thousand nine hundred thirty'),\n(6941, 37705, 'thirty-seven thousand seven hundred five'),\n(6942, 69175, 'sixty-nine thousand one hundred seventy-five'),\n(6943, 22232, 'twenty-two thousand two hundred thirty-two'),\n(6944, 28248, 'twenty-eight thousand two hundred forty-eight'),\n(6945, 25273, 'twenty-five thousand two hundred seventy-three'),\n(6946, 63132, 'sixty-three thousand one hundred thirty-two'),\n(6947, 65891, 'sixty-five thousand eight hundred ninety-one'),\n(6948, 38574, 'thirty-eight thousand five hundred seventy-four'),\n(6949, 68375, 'sixty-eight thousand three hundred seventy-five'),\n(6950, 22814, 'twenty-two thousand eight hundred fourteen'),\n(6951, 12251, 'twelve thousand two hundred fifty-one'),\n(6952, 67307, 'sixty-seven thousand three hundred seven'),\n(6953, 91833, 'ninety-one thousand eight hundred thirty-three'),\n(6954, 89215, 'eighty-nine thousand two hundred fifteen'),\n(6955, 9285, 'nine thousand two hundred eighty-five'),\n(6956, 84710, 'eighty-four thousand seven hundred ten'),\n(6957, 14144, 'fourteen thousand one hundred forty-four'),\n(6958, 45960, 'forty-five thousand nine hundred sixty'),\n(6959, 9668, 'nine thousand six hundred sixty-eight'),\n(6960, 52309, 'fifty-two thousand three hundred nine'),\n(6961, 79198, 'seventy-nine thousand one hundred ninety-eight'),\n(6962, 8711, 'eight thousand seven hundred eleven'),\n(6963, 31513, 'thirty-one thousand five hundred thirteen'),\n(6964, 68737, 'sixty-eight thousand seven hundred thirty-seven'),\n(6965, 7604, 'seven thousand six hundred four'),\n(6966, 51620, 'fifty-one thousand six hundred twenty'),\n(6967, 10426, 'ten thousand four hundred twenty-six'),\n(6968, 17702, 'seventeen thousand seven hundred two'),\n(6969, 42070, 'forty-two thousand seventy'),\n(6970, 10874, 'ten thousand eight hundred seventy-four'),\n(6971, 25463, 'twenty-five thousand four hundred sixty-three'),\n(6972, 43564, 'forty-three thousand five hundred sixty-four'),\n(6973, 91781, 'ninety-one thousand seven hundred eighty-one'),\n(6974, 5253, 'five thousand two hundred fifty-three'),\n(6975, 4171, 'four thousand one hundred seventy-one'),\n(6976, 26368, 'twenty-six thousand three hundred sixty-eight'),\n(6977, 32680, 'thirty-two thousand six hundred eighty'),\n(6978, 74249, 'seventy-four thousand two hundred forty-nine'),\n(6979, 61362, 'sixty-one thousand three hundred sixty-two'),\n(6980, 65168, 'sixty-five thousand one hundred sixty-eight'),\n(6981, 4076, 'four thousand seventy-six'),\n(6982, 64368, 'sixty-four thousand three hundred sixty-eight'),\n(6983, 71973, 'seventy-one thousand nine hundred seventy-three'),\n(6984, 36830, 'thirty-six thousand eight hundred thirty'),\n(6985, 91370, 'ninety-one thousand three hundred seventy'),\n(6986, 64732, 'sixty-four thousand seven hundred thirty-two'),\n(6987, 14905, 'fourteen thousand nine hundred five'),\n(6988, 35130, 'thirty-five thousand one hundred thirty'),\n(6989, 41914, 'forty-one thousand nine hundred fourteen'),\n(6990, 51521, 'fifty-one thousand five hundred twenty-one'),\n(6991, 58490, 'fifty-eight thousand four hundred ninety'),\n(6992, 49421, 'forty-nine thousand four hundred twenty-one'),\n(6993, 98396, 'ninety-eight thousand three hundred ninety-six'),\n(6994, 50358, 'fifty thousand three hundred fifty-eight'),\n(6995, 57482, 'fifty-seven thousand four hundred eighty-two'),\n(6996, 46105, 'forty-six thousand one hundred five'),\n(6997, 847, 'eight hundred forty-seven'),\n(6998, 40844, 'forty thousand eight hundred forty-four'),\n(6999, 87739, 'eighty-seven thousand seven hundred thirty-nine'),\n(7000, 37428, 'thirty-seven thousand four hundred twenty-eight'),\n(7001, 49604, 'forty-nine thousand six hundred four'),\n(7002, 78936, 'seventy-eight thousand nine hundred thirty-six'),\n(7003, 89645, 'eighty-nine thousand six hundred forty-five'),\n(7004, 86177, 'eighty-six thousand one hundred seventy-seven'),\n(7005, 17366, 'seventeen thousand three hundred sixty-six'),\n(7006, 31491, 'thirty-one thousand four hundred ninety-one'),\n(7007, 41212, 'forty-one thousand two hundred twelve'),\n(7008, 43175, 'forty-three thousand one hundred seventy-five'),\n(7009, 2477, 'two thousand four hundred seventy-seven'),\n(7010, 6010, 'six thousand ten'),\n(7011, 69722, 'sixty-nine thousand seven hundred twenty-two'),\n(7012, 27385, 'twenty-seven thousand three hundred eighty-five'),\n(7013, 45249, 'forty-five thousand two hundred forty-nine'),\n(7014, 28782, 'twenty-eight thousand seven hundred eighty-two'),\n(7015, 141, 'one hundred forty-one'),\n(7016, 80806, 'eighty thousand eight hundred six'),\n(7017, 84533, 'eighty-four thousand five hundred thirty-three'),\n(7018, 12518, 'twelve thousand five hundred eighteen'),\n(7019, 91872, 'ninety-one thousand eight hundred seventy-two'),\n(7020, 72529, 'seventy-two thousand five hundred twenty-nine'),\n(7021, 21474, 'twenty-one thousand four hundred seventy-four'),\n(7022, 23707, 'twenty-three thousand seven hundred seven'),\n(7023, 52041, 'fifty-two thousand forty-one'),\n(7024, 36648, 'thirty-six thousand six hundred forty-eight'),\n(7025, 39847, 'thirty-nine thousand eight hundred forty-seven'),\n(7026, 53629, 'fifty-three thousand six hundred twenty-nine'),\n(7027, 7427, 'seven thousand four hundred twenty-seven'),\n(7028, 75143, 'seventy-five thousand one hundred forty-three'),\n(7029, 54824, 'fifty-four thousand eight hundred twenty-four'),\n(7030, 36351, 'thirty-six thousand three hundred fifty-one'),\n(7031, 93789, 'ninety-three thousand seven hundred eighty-nine'),\n(7032, 95852, 'ninety-five thousand eight hundred fifty-two'),\n(7033, 32725, 'thirty-two thousand seven hundred twenty-five'),\n(7034, 48260, 'forty-eight thousand two hundred sixty'),\n(7035, 68480, 'sixty-eight thousand four hundred eighty'),\n(7036, 33039, 'thirty-three thousand thirty-nine'),\n(7037, 50746, 'fifty thousand seven hundred forty-six'),\n(7038, 62754, 'sixty-two thousand seven hundred fifty-four'),\n(7039, 26859, 'twenty-six thousand eight hundred fifty-nine'),\n(7040, 32622, 'thirty-two thousand six hundred twenty-two'),\n(7041, 1123, 'one thousand one hundred twenty-three'),\n(7042, 73551, 'seventy-three thousand five hundred fifty-one'),\n(7043, 87616, 'eighty-seven thousand six hundred sixteen'),\n(7044, 78741, 'seventy-eight thousand seven hundred forty-one'),\n(7045, 15746, 'fifteen thousand seven hundred forty-six'),\n(7046, 75876, 'seventy-five thousand eight hundred seventy-six'),\n(7047, 47990, 'forty-seven thousand nine hundred ninety'),\n(7048, 15987, 'fifteen thousand nine hundred eighty-seven'),\n(7049, 13907, 'thirteen thousand nine hundred seven'),\n(7050, 7052, 'seven thousand fifty-two'),\n(7051, 73916, 'seventy-three thousand nine hundred sixteen'),\n(7052, 4671, 'four thousand six hundred seventy-one'),\n(7053, 72315, 'seventy-two thousand three hundred fifteen'),\n(7054, 74506, 'seventy-four thousand five hundred six'),\n(7055, 11918, 'eleven thousand nine hundred eighteen'),\n(7056, 57309, 'fifty-seven thousand three hundred nine'),\n(7057, 13626, 'thirteen thousand six hundred twenty-six'),\n(7058, 48392, 'forty-eight thousand three hundred ninety-two'),\n(7059, 47636, 'forty-seven thousand six hundred thirty-six'),\n(7060, 18743, 'eighteen thousand seven hundred forty-three'),\n(7061, 38692, 'thirty-eight thousand six hundred ninety-two'),\n(7062, 70530, 'seventy thousand five hundred thirty'),\n(7063, 62964, 'sixty-two thousand nine hundred sixty-four'),\n(7064, 73613, 'seventy-three thousand six hundred thirteen'),\n(7065, 59421, 'fifty-nine thousand four hundred twenty-one'),\n(7066, 5700, 'five thousand seven hundred'),\n(7067, 27176, 'twenty-seven thousand one hundred seventy-six'),\n(7068, 48998, 'forty-eight thousand nine hundred ninety-eight'),\n(7069, 79311, 'seventy-nine thousand three hundred eleven'),\n(7070, 73508, 'seventy-three thousand five hundred eight'),\n(7071, 2711, 'two thousand seven hundred eleven'),\n(7072, 25577, 'twenty-five thousand five hundred seventy-seven'),\n(7073, 61225, 'sixty-one thousand two hundred twenty-five'),\n(7074, 64789, 'sixty-four thousand seven hundred eighty-nine'),\n(7075, 74509, 'seventy-four thousand five hundred nine'),\n(7076, 29661, 'twenty-nine thousand six hundred sixty-one'),\n(7077, 82521, 'eighty-two thousand five hundred twenty-one'),\n(7078, 83901, 'eighty-three thousand nine hundred one'),\n(7079, 82200, 'eighty-two thousand two hundred'),\n(7080, 81811, 'eighty-one thousand eight hundred eleven'),\n(7081, 41680, 'forty-one thousand six hundred eighty'),\n(7082, 83328, 'eighty-three thousand three hundred twenty-eight'),\n(7083, 15653, 'fifteen thousand six hundred fifty-three'),\n(7084, 56438, 'fifty-six thousand four hundred thirty-eight'),\n(7085, 58737, 'fifty-eight thousand seven hundred thirty-seven'),\n(7086, 41835, 'forty-one thousand eight hundred thirty-five'),\n(7087, 28160, 'twenty-eight thousand one hundred sixty'),\n(7088, 65510, 'sixty-five thousand five hundred ten'),\n(7089, 56165, 'fifty-six thousand one hundred sixty-five'),\n(7090, 25838, 'twenty-five thousand eight hundred thirty-eight'),\n(7091, 61693, 'sixty-one thousand six hundred ninety-three'),\n(7092, 36263, 'thirty-six thousand two hundred sixty-three'),\n(7093, 24346, 'twenty-four thousand three hundred forty-six'),\n(7094, 97724, 'ninety-seven thousand seven hundred twenty-four'),\n(7095, 47865, 'forty-seven thousand eight hundred sixty-five'),\n(7096, 80729, 'eighty thousand seven hundred twenty-nine'),\n(7097, 60014, 'sixty thousand fourteen'),\n(7098, 33462, 'thirty-three thousand four hundred sixty-two'),\n(7099, 60569, 'sixty thousand five hundred sixty-nine'),\n(7100, 55267, 'fifty-five thousand two hundred sixty-seven'),\n(7101, 96726, 'ninety-six thousand seven hundred twenty-six'),\n(7102, 11627, 'eleven thousand six hundred twenty-seven'),\n(7103, 95666, 'ninety-five thousand six hundred sixty-six'),\n(7104, 90785, 'ninety thousand seven hundred eighty-five'),\n(7105, 46858, 'forty-six thousand eight hundred fifty-eight'),\n(7106, 23384, 'twenty-three thousand three hundred eighty-four'),\n(7107, 97789, 'ninety-seven thousand seven hundred eighty-nine'),\n(7108, 59434, 'fifty-nine thousand four hundred thirty-four'),\n(7109, 79464, 'seventy-nine thousand four hundred sixty-four'),\n(7110, 76330, 'seventy-six thousand three hundred thirty'),\n(7111, 53787, 'fifty-three thousand seven hundred eighty-seven'),\n(7112, 69766, 'sixty-nine thousand seven hundred sixty-six'),\n(7113, 52806, 'fifty-two thousand eight hundred six'),\n(7114, 45628, 'forty-five thousand six hundred twenty-eight'),\n(7115, 3361, 'three thousand three hundred sixty-one'),\n(7116, 75441, 'seventy-five thousand four hundred forty-one'),\n(7117, 75175, 'seventy-five thousand one hundred seventy-five'),\n(7118, 74744, 'seventy-four thousand seven hundred forty-four'),\n(7119, 54538, 'fifty-four thousand five hundred thirty-eight'),\n(7120, 76323, 'seventy-six thousand three hundred twenty-three'),\n(7121, 72204, 'seventy-two thousand two hundred four'),\n(7122, 86654, 'eighty-six thousand six hundred fifty-four'),\n(7123, 28364, 'twenty-eight thousand three hundred sixty-four'),\n(7124, 32182, 'thirty-two thousand one hundred eighty-two'),\n(7125, 71417, 'seventy-one thousand four hundred seventeen'),\n(7126, 48162, 'forty-eight thousand one hundred sixty-two'),\n(7127, 5968, 'five thousand nine hundred sixty-eight'),\n(7128, 11580, 'eleven thousand five hundred eighty'),\n(7129, 30605, 'thirty thousand six hundred five'),\n(7130, 71480, 'seventy-one thousand four hundred eighty'),\n(7131, 98055, 'ninety-eight thousand fifty-five'),\n(7132, 53802, 'fifty-three thousand eight hundred two'),\n(7133, 78630, 'seventy-eight thousand six hundred thirty'),\n(7134, 77822, 'seventy-seven thousand eight hundred twenty-two'),\n(7135, 61816, 'sixty-one thousand eight hundred sixteen'),\n(7136, 41188, 'forty-one thousand one hundred eighty-eight'),\n(7137, 96746, 'ninety-six thousand seven hundred forty-six'),\n(7138, 57021, 'fifty-seven thousand twenty-one'),\n(7139, 74719, 'seventy-four thousand seven hundred nineteen'),\n(7140, 21455, 'twenty-one thousand four hundred fifty-five'),\n(7141, 21564, 'twenty-one thousand five hundred sixty-four'),\n(7142, 58682, 'fifty-eight thousand six hundred eighty-two'),\n(7143, 98656, 'ninety-eight thousand six hundred fifty-six'),\n(7144, 95290, 'ninety-five thousand two hundred ninety'),\n(7145, 59429, 'fifty-nine thousand four hundred twenty-nine'),\n(7146, 52039, 'fifty-two thousand thirty-nine'),\n(7147, 26126, 'twenty-six thousand one hundred twenty-six'),\n(7148, 76788, 'seventy-six thousand seven hundred eighty-eight'),\n(7149, 54726, 'fifty-four thousand seven hundred twenty-six'),\n(7150, 87468, 'eighty-seven thousand four hundred sixty-eight'),\n(7151, 96623, 'ninety-six thousand six hundred twenty-three'),\n(7152, 52206, 'fifty-two thousand two hundred six'),\n(7153, 90161, 'ninety thousand one hundred sixty-one'),\n(7154, 28158, 'twenty-eight thousand one hundred fifty-eight'),\n(7155, 72176, 'seventy-two thousand one hundred seventy-six'),\n(7156, 5698, 'five thousand six hundred ninety-eight'),\n(7157, 8426, 'eight thousand four hundred twenty-six'),\n(7158, 92481, 'ninety-two thousand four hundred eighty-one'),\n(7159, 2162, 'two thousand one hundred sixty-two'),\n(7160, 19418, 'nineteen thousand four hundred eighteen'),\n(7161, 83044, 'eighty-three thousand forty-four'),\n(7162, 83576, 'eighty-three thousand five hundred seventy-six'),\n(7163, 1767, 'one thousand seven hundred sixty-seven'),\n(7164, 96772, 'ninety-six thousand seven hundred seventy-two'),\n(7165, 22264, 'twenty-two thousand two hundred sixty-four'),\n(7166, 77369, 'seventy-seven thousand three hundred sixty-nine'),\n(7167, 15079, 'fifteen thousand seventy-nine'),\n(7168, 60060, 'sixty thousand sixty'),\n(7169, 35293, 'thirty-five thousand two hundred ninety-three'),\n(7170, 18806, 'eighteen thousand eight hundred six'),\n(7171, 2635, 'two thousand six hundred thirty-five'),\n(7172, 68586, 'sixty-eight thousand five hundred eighty-six'),\n(7173, 90063, 'ninety thousand sixty-three'),\n(7174, 27121, 'twenty-seven thousand one hundred twenty-one'),\n(7175, 23663, 'twenty-three thousand six hundred sixty-three'),\n(7176, 12320, 'twelve thousand three hundred twenty'),\n(7177, 47548, 'forty-seven thousand five hundred forty-eight'),\n(7178, 73974, 'seventy-three thousand nine hundred seventy-four'),\n(7179, 72131, 'seventy-two thousand one hundred thirty-one'),\n(7180, 63094, 'sixty-three thousand ninety-four'),\n(7181, 70707, 'seventy thousand seven hundred seven'),\n(7182, 83552, 'eighty-three thousand five hundred fifty-two'),\n(7183, 1399, 'one thousand three hundred ninety-nine'),\n(7184, 17442, 'seventeen thousand four hundred forty-two'),\n(7185, 48623, 'forty-eight thousand six hundred twenty-three'),\n(7186, 23729, 'twenty-three thousand seven hundred twenty-nine'),\n(7187, 72285, 'seventy-two thousand two hundred eighty-five'),\n(7188, 39670, 'thirty-nine thousand six hundred seventy'),\n(7189, 60904, 'sixty thousand nine hundred four'),\n(7190, 1785, 'one thousand seven hundred eighty-five'),\n(7191, 84436, 'eighty-four thousand four hundred thirty-six'),\n(7192, 70556, 'seventy thousand five hundred fifty-six'),\n(7193, 32525, 'thirty-two thousand five hundred twenty-five'),\n(7194, 41107, 'forty-one thousand one hundred seven'),\n(7195, 71807, 'seventy-one thousand eight hundred seven'),\n(7196, 22727, 'twenty-two thousand seven hundred twenty-seven'),\n(7197, 70424, 'seventy thousand four hundred twenty-four'),\n(7198, 92449, 'ninety-two thousand four hundred forty-nine'),\n(7199, 52643, 'fifty-two thousand six hundred forty-three'),\n(7200, 16081, 'sixteen thousand eighty-one'),\n(7201, 60250, 'sixty thousand two hundred fifty'),\n(7202, 94701, 'ninety-four thousand seven hundred one'),\n(7203, 90475, 'ninety thousand four hundred seventy-five'),\n(7204, 12219, 'twelve thousand two hundred nineteen'),\n(7205, 36279, 'thirty-six thousand two hundred seventy-nine'),\n(7206, 43716, 'forty-three thousand seven hundred sixteen'),\n(7207, 52901, 'fifty-two thousand nine hundred one'),\n(7208, 78651, 'seventy-eight thousand six hundred fifty-one'),\n(7209, 48687, 'forty-eight thousand six hundred eighty-seven'),\n(7210, 28557, 'twenty-eight thousand five hundred fifty-seven'),\n(7211, 90629, 'ninety thousand six hundred twenty-nine'),\n(7212, 27021, 'twenty-seven thousand twenty-one'),\n(7213, 31323, 'thirty-one thousand three hundred twenty-three'),\n(7214, 47663, 'forty-seven thousand six hundred sixty-three'),\n(7215, 8334, 'eight thousand three hundred thirty-four'),\n(7216, 59740, 'fifty-nine thousand seven hundred forty'),\n(7217, 42329, 'forty-two thousand three hundred twenty-nine'),\n(7218, 52985, 'fifty-two thousand nine hundred eighty-five'),\n(7219, 22678, 'twenty-two thousand six hundred seventy-eight'),\n(7220, 53115, 'fifty-three thousand one hundred fifteen'),\n(7221, 85625, 'eighty-five thousand six hundred twenty-five'),\n(7222, 44904, 'forty-four thousand nine hundred four'),\n(7223, 57919, 'fifty-seven thousand nine hundred nineteen'),\n(7224, 81652, 'eighty-one thousand six hundred fifty-two'),\n(7225, 29091, 'twenty-nine thousand ninety-one'),\n(7226, 35671, 'thirty-five thousand six hundred seventy-one'),\n(7227, 8807, 'eight thousand eight hundred seven'),\n(7228, 56823, 'fifty-six thousand eight hundred twenty-three'),\n(7229, 39061, 'thirty-nine thousand sixty-one'),\n(7230, 52089, 'fifty-two thousand eighty-nine'),\n(7231, 25385, 'twenty-five thousand three hundred eighty-five'),\n(7232, 56523, 'fifty-six thousand five hundred twenty-three'),\n(7233, 1270, 'one thousand two hundred seventy'),\n(7234, 69681, 'sixty-nine thousand six hundred eighty-one'),\n(7235, 34725, 'thirty-four thousand seven hundred twenty-five'),\n(7236, 14204, 'fourteen thousand two hundred four'),\n(7237, 31187, 'thirty-one thousand one hundred eighty-seven'),\n(7238, 3064, 'three thousand sixty-four'),\n(7239, 41116, 'forty-one thousand one hundred sixteen'),\n(7240, 32053, 'thirty-two thousand fifty-three'),\n(7241, 37747, 'thirty-seven thousand seven hundred forty-seven'),\n(7242, 51524, 'fifty-one thousand five hundred twenty-four'),\n(7243, 70906, 'seventy thousand nine hundred six'),\n(7244, 57027, 'fifty-seven thousand twenty-seven'),\n(7245, 12947, 'twelve thousand nine hundred forty-seven'),\n(7246, 15873, 'fifteen thousand eight hundred seventy-three'),\n(7247, 14092, 'fourteen thousand ninety-two'),\n(7248, 28021, 'twenty-eight thousand twenty-one'),\n(7249, 68997, 'sixty-eight thousand nine hundred ninety-seven'),\n(7250, 60229, 'sixty thousand two hundred twenty-nine'),\n(7251, 23600, 'twenty-three thousand six hundred'),\n(7252, 21443, 'twenty-one thousand four hundred forty-three'),\n(7253, 88451, 'eighty-eight thousand four hundred fifty-one'),\n(7254, 22689, 'twenty-two thousand six hundred eighty-nine'),\n(7255, 85222, 'eighty-five thousand two hundred twenty-two'),\n(7256, 39886, 'thirty-nine thousand eight hundred eighty-six'),\n(7257, 9680, 'nine thousand six hundred eighty'),\n(7258, 50619, 'fifty thousand six hundred nineteen'),\n(7259, 73014, 'seventy-three thousand fourteen'),\n(7260, 10557, 'ten thousand five hundred fifty-seven'),\n(7261, 23929, 'twenty-three thousand nine hundred twenty-nine'),\n(7262, 75594, 'seventy-five thousand five hundred ninety-four'),\n(7263, 70513, 'seventy thousand five hundred thirteen'),\n(7264, 31217, 'thirty-one thousand two hundred seventeen'),\n(7265, 24165, 'twenty-four thousand one hundred sixty-five'),\n(7266, 74008, 'seventy-four thousand eight'),\n(7267, 69773, 'sixty-nine thousand seven hundred seventy-three'),\n(7268, 326, 'three hundred twenty-six'),\n(7269, 94924, 'ninety-four thousand nine hundred twenty-four'),\n(7270, 79707, 'seventy-nine thousand seven hundred seven'),\n(7271, 51429, 'fifty-one thousand four hundred twenty-nine'),\n(7272, 22659, 'twenty-two thousand six hundred fifty-nine'),\n(7273, 87289, 'eighty-seven thousand two hundred eighty-nine'),\n(7274, 90894, 'ninety thousand eight hundred ninety-four'),\n(7275, 74629, 'seventy-four thousand six hundred twenty-nine'),\n(7276, 57761, 'fifty-seven thousand seven hundred sixty-one'),\n(7277, 95848, 'ninety-five thousand eight hundred forty-eight'),\n(7278, 58163, 'fifty-eight thousand one hundred sixty-three'),\n(7279, 50309, 'fifty thousand three hundred nine'),\n(7280, 20537, 'twenty thousand five hundred thirty-seven'),\n(7281, 28395, 'twenty-eight thousand three hundred ninety-five'),\n(7282, 53961, 'fifty-three thousand nine hundred sixty-one'),\n(7283, 47561, 'forty-seven thousand five hundred sixty-one'),\n(7284, 28769, 'twenty-eight thousand seven hundred sixty-nine'),\n(7285, 86346, 'eighty-six thousand three hundred forty-six'),\n(7286, 6277, 'six thousand two hundred seventy-seven'),\n(7287, 49920, 'forty-nine thousand nine hundred twenty'),\n(7288, 43192, 'forty-three thousand one hundred ninety-two'),\n(7289, 24672, 'twenty-four thousand six hundred seventy-two'),\n(7290, 31494, 'thirty-one thousand four hundred ninety-four'),\n(7291, 55066, 'fifty-five thousand sixty-six'),\n(7292, 96699, 'ninety-six thousand six hundred ninety-nine'),\n(7293, 79530, 'seventy-nine thousand five hundred thirty'),\n(7294, 43758, 'forty-three thousand seven hundred fifty-eight'),\n(7295, 67039, 'sixty-seven thousand thirty-nine'),\n(7296, 48547, 'forty-eight thousand five hundred forty-seven'),\n(7297, 50040, 'fifty thousand forty'),\n(7298, 66898, 'sixty-six thousand eight hundred ninety-eight'),\n(7299, 58823, 'fifty-eight thousand eight hundred twenty-three'),\n(7300, 85770, 'eighty-five thousand seven hundred seventy'),\n(7301, 44663, 'forty-four thousand six hundred sixty-three'),\n(7302, 18667, 'eighteen thousand six hundred sixty-seven'),\n(7303, 29835, 'twenty-nine thousand eight hundred thirty-five'),\n(7304, 56850, 'fifty-six thousand eight hundred fifty'),\n(7305, 62411, 'sixty-two thousand four hundred eleven'),\n(7306, 33775, 'thirty-three thousand seven hundred seventy-five'),\n(7307, 90386, 'ninety thousand three hundred eighty-six'),\n(7308, 70117, 'seventy thousand one hundred seventeen'),\n(7309, 74740, 'seventy-four thousand seven hundred forty'),\n(7310, 6417, 'six thousand four hundred seventeen'),\n(7311, 32319, 'thirty-two thousand three hundred nineteen'),\n(7312, 50577, 'fifty thousand five hundred seventy-seven'),\n(7313, 2107, 'two thousand one hundred seven'),\n(7314, 75768, 'seventy-five thousand seven hundred sixty-eight'),\n(7315, 12697, 'twelve thousand six hundred ninety-seven'),\n(7316, 38568, 'thirty-eight thousand five hundred sixty-eight'),\n(7317, 34363, 'thirty-four thousand three hundred sixty-three'),\n(7318, 27633, 'twenty-seven thousand six hundred thirty-three'),\n(7319, 25184, 'twenty-five thousand one hundred eighty-four'),\n(7320, 90043, 'ninety thousand forty-three'),\n(7321, 15466, 'fifteen thousand four hundred sixty-six'),\n(7322, 98395, 'ninety-eight thousand three hundred ninety-five'),\n(7323, 86939, 'eighty-six thousand nine hundred thirty-nine'),\n(7324, 71406, 'seventy-one thousand four hundred six'),\n(7325, 34343, 'thirty-four thousand three hundred forty-three'),\n(7326, 69196, 'sixty-nine thousand one hundred ninety-six'),\n(7327, 28252, 'twenty-eight thousand two hundred fifty-two'),\n(7328, 38711, 'thirty-eight thousand seven hundred eleven'),\n(7329, 60611, 'sixty thousand six hundred eleven'),\n(7330, 31187, 'thirty-one thousand one hundred eighty-seven'),\n(7331, 73989, 'seventy-three thousand nine hundred eighty-nine'),\n(7332, 12806, 'twelve thousand eight hundred six'),\n(7333, 4428, 'four thousand four hundred twenty-eight'),\n(7334, 52658, 'fifty-two thousand six hundred fifty-eight'),\n(7335, 26588, 'twenty-six thousand five hundred eighty-eight'),\n(7336, 93535, 'ninety-three thousand five hundred thirty-five'),\n(7337, 65359, 'sixty-five thousand three hundred fifty-nine'),\n(7338, 66113, 'sixty-six thousand one hundred thirteen'),\n(7339, 39558, 'thirty-nine thousand five hundred fifty-eight'),\n(7340, 11391, 'eleven thousand three hundred ninety-one'),\n(7341, 57170, 'fifty-seven thousand one hundred seventy'),\n(7342, 3581, 'three thousand five hundred eighty-one'),\n(7343, 69696, 'sixty-nine thousand six hundred ninety-six'),\n(7344, 81121, 'eighty-one thousand one hundred twenty-one'),\n(7345, 21914, 'twenty-one thousand nine hundred fourteen'),\n(7346, 74050, 'seventy-four thousand fifty'),\n(7347, 60829, 'sixty thousand eight hundred twenty-nine'),\n(7348, 6834, 'six thousand eight hundred thirty-four'),\n(7349, 64576, 'sixty-four thousand five hundred seventy-six'),\n(7350, 13583, 'thirteen thousand five hundred eighty-three'),\n(7351, 56388, 'fifty-six thousand three hundred eighty-eight'),\n(7352, 62811, 'sixty-two thousand eight hundred eleven'),\n(7353, 37727, 'thirty-seven thousand seven hundred twenty-seven'),\n(7354, 4532, 'four thousand five hundred thirty-two'),\n(7355, 14187, 'fourteen thousand one hundred eighty-seven'),\n(7356, 69094, 'sixty-nine thousand ninety-four'),\n(7357, 31945, 'thirty-one thousand nine hundred forty-five'),\n(7358, 2093, 'two thousand ninety-three'),\n(7359, 3369, 'three thousand three hundred sixty-nine'),\n(7360, 18640, 'eighteen thousand six hundred forty'),\n(7361, 25004, 'twenty-five thousand four'),\n(7362, 12074, 'twelve thousand seventy-four'),\n(7363, 34016, 'thirty-four thousand sixteen'),\n(7364, 40014, 'forty thousand fourteen'),\n(7365, 64857, 'sixty-four thousand eight hundred fifty-seven'),\n(7366, 51079, 'fifty-one thousand seventy-nine'),\n(7367, 88576, 'eighty-eight thousand five hundred seventy-six'),\n(7368, 9726, 'nine thousand seven hundred twenty-six'),\n(7369, 8822, 'eight thousand eight hundred twenty-two'),\n(7370, 34811, 'thirty-four thousand eight hundred eleven'),\n(7371, 80758, 'eighty thousand seven hundred fifty-eight'),\n(7372, 54617, 'fifty-four thousand six hundred seventeen'),\n(7373, 42541, 'forty-two thousand five hundred forty-one'),\n(7374, 3815, 'three thousand eight hundred fifteen'),\n(7375, 42879, 'forty-two thousand eight hundred seventy-nine'),\n(7376, 5202, 'five thousand two hundred two'),\n(7377, 50572, 'fifty thousand five hundred seventy-two'),\n(7378, 65409, 'sixty-five thousand four hundred nine'),\n(7379, 70497, 'seventy thousand four hundred ninety-seven'),\n(7380, 96842, 'ninety-six thousand eight hundred forty-two'),\n(7381, 46539, 'forty-six thousand five hundred thirty-nine'),\n(7382, 1095, 'one thousand ninety-five'),\n(7383, 97422, 'ninety-seven thousand four hundred twenty-two'),\n(7384, 88070, 'eighty-eight thousand seventy'),\n(7385, 13150, 'thirteen thousand one hundred fifty'),\n(7386, 52772, 'fifty-two thousand seven hundred seventy-two'),\n(7387, 37085, 'thirty-seven thousand eighty-five'),\n(7388, 1011, 'one thousand eleven'),\n(7389, 15563, 'fifteen thousand five hundred sixty-three'),\n(7390, 38544, 'thirty-eight thousand five hundred forty-four'),\n(7391, 55831, 'fifty-five thousand eight hundred thirty-one'),\n(7392, 27070, 'twenty-seven thousand seventy'),\n(7393, 15441, 'fifteen thousand four hundred forty-one'),\n(7394, 70654, 'seventy thousand six hundred fifty-four'),\n(7395, 52382, 'fifty-two thousand three hundred eighty-two'),\n(7396, 54344, 'fifty-four thousand three hundred forty-four'),\n(7397, 17325, 'seventeen thousand three hundred twenty-five'),\n(7398, 58157, 'fifty-eight thousand one hundred fifty-seven'),\n(7399, 47176, 'forty-seven thousand one hundred seventy-six'),\n(7400, 55736, 'fifty-five thousand seven hundred thirty-six'),\n(7401, 26334, 'twenty-six thousand three hundred thirty-four'),\n(7402, 99781, 'ninety-nine thousand seven hundred eighty-one'),\n(7403, 57477, 'fifty-seven thousand four hundred seventy-seven'),\n(7404, 29110, 'twenty-nine thousand one hundred ten'),\n(7405, 21429, 'twenty-one thousand four hundred twenty-nine'),\n(7406, 76884, 'seventy-six thousand eight hundred eighty-four'),\n(7407, 47046, 'forty-seven thousand forty-six'),\n(7408, 48753, 'forty-eight thousand seven hundred fifty-three'),\n(7409, 63093, 'sixty-three thousand ninety-three'),\n(7410, 69577, 'sixty-nine thousand five hundred seventy-seven'),\n(7411, 48992, 'forty-eight thousand nine hundred ninety-two'),\n(7412, 43715, 'forty-three thousand seven hundred fifteen'),\n(7413, 82980, 'eighty-two thousand nine hundred eighty'),\n(7414, 89305, 'eighty-nine thousand three hundred five'),\n(7415, 66707, 'sixty-six thousand seven hundred seven'),\n(7416, 67756, 'sixty-seven thousand seven hundred fifty-six'),\n(7417, 47398, 'forty-seven thousand three hundred ninety-eight'),\n(7418, 72037, 'seventy-two thousand thirty-seven'),\n(7419, 50845, 'fifty thousand eight hundred forty-five'),\n(7420, 9216, 'nine thousand two hundred sixteen'),\n(7421, 18579, 'eighteen thousand five hundred seventy-nine'),\n(7422, 38300, 'thirty-eight thousand three hundred'),\n(7423, 17222, 'seventeen thousand two hundred twenty-two'),\n(7424, 49143, 'forty-nine thousand one hundred forty-three'),\n(7425, 87515, 'eighty-seven thousand five hundred fifteen'),\n(7426, 73305, 'seventy-three thousand three hundred five'),\n(7427, 53735, 'fifty-three thousand seven hundred thirty-five'),\n(7428, 95473, 'ninety-five thousand four hundred seventy-three'),\n(7429, 50421, 'fifty thousand four hundred twenty-one'),\n(7430, 2980, 'two thousand nine hundred eighty'),\n(7431, 50521, 'fifty thousand five hundred twenty-one'),\n(7432, 5811, 'five thousand eight hundred eleven'),\n(7433, 78960, 'seventy-eight thousand nine hundred sixty'),\n(7434, 72439, 'seventy-two thousand four hundred thirty-nine'),\n(7435, 76914, 'seventy-six thousand nine hundred fourteen'),\n(7436, 41540, 'forty-one thousand five hundred forty'),\n(7437, 43029, 'forty-three thousand twenty-nine'),\n(7438, 24933, 'twenty-four thousand nine hundred thirty-three'),\n(7439, 49859, 'forty-nine thousand eight hundred fifty-nine'),\n(7440, 8913, 'eight thousand nine hundred thirteen'),\n(7441, 30415, 'thirty thousand four hundred fifteen'),\n(7442, 41776, 'forty-one thousand seven hundred seventy-six'),\n(7443, 20000, 'twenty thousand'),\n(7444, 34964, 'thirty-four thousand nine hundred sixty-four'),\n(7445, 51821, 'fifty-one thousand eight hundred twenty-one'),\n(7446, 40249, 'forty thousand two hundred forty-nine'),\n(7447, 47510, 'forty-seven thousand five hundred ten'),\n(7448, 95059, 'ninety-five thousand fifty-nine'),\n(7449, 84450, 'eighty-four thousand four hundred fifty'),\n(7450, 72587, 'seventy-two thousand five hundred eighty-seven'),\n(7451, 21355, 'twenty-one thousand three hundred fifty-five'),\n(7452, 87515, 'eighty-seven thousand five hundred fifteen'),\n(7453, 23870, 'twenty-three thousand eight hundred seventy'),\n(7454, 21133, 'twenty-one thousand one hundred thirty-three'),\n(7455, 15582, 'fifteen thousand five hundred eighty-two'),\n(7456, 81860, 'eighty-one thousand eight hundred sixty'),\n(7457, 48135, 'forty-eight thousand one hundred thirty-five'),\n(7458, 47787, 'forty-seven thousand seven hundred eighty-seven'),\n(7459, 30531, 'thirty thousand five hundred thirty-one'),\n(7460, 97144, 'ninety-seven thousand one hundred forty-four'),\n(7461, 66513, 'sixty-six thousand five hundred thirteen'),\n(7462, 96659, 'ninety-six thousand six hundred fifty-nine'),\n(7463, 45617, 'forty-five thousand six hundred seventeen'),\n(7464, 43237, 'forty-three thousand two hundred thirty-seven'),\n(7465, 2471, 'two thousand four hundred seventy-one'),\n(7466, 82236, 'eighty-two thousand two hundred thirty-six'),\n(7467, 62891, 'sixty-two thousand eight hundred ninety-one'),\n(7468, 15829, 'fifteen thousand eight hundred twenty-nine'),\n(7469, 57841, 'fifty-seven thousand eight hundred forty-one'),\n(7470, 21213, 'twenty-one thousand two hundred thirteen'),\n(7471, 76853, 'seventy-six thousand eight hundred fifty-three'),\n(7472, 25941, 'twenty-five thousand nine hundred forty-one'),\n(7473, 82358, 'eighty-two thousand three hundred fifty-eight'),\n(7474, 63626, 'sixty-three thousand six hundred twenty-six'),\n(7475, 73642, 'seventy-three thousand six hundred forty-two'),\n(7476, 69275, 'sixty-nine thousand two hundred seventy-five'),\n(7477, 23645, 'twenty-three thousand six hundred forty-five'),\n(7478, 23681, 'twenty-three thousand six hundred eighty-one'),\n(7479, 14696, 'fourteen thousand six hundred ninety-six'),\n(7480, 27515, 'twenty-seven thousand five hundred fifteen'),\n(7481, 62466, 'sixty-two thousand four hundred sixty-six'),\n(7482, 75667, 'seventy-five thousand six hundred sixty-seven'),\n(7483, 81874, 'eighty-one thousand eight hundred seventy-four'),\n(7484, 95866, 'ninety-five thousand eight hundred sixty-six'),\n(7485, 36386, 'thirty-six thousand three hundred eighty-six'),\n(7486, 64485, 'sixty-four thousand four hundred eighty-five'),\n(7487, 90022, 'ninety thousand twenty-two'),\n(7488, 51619, 'fifty-one thousand six hundred nineteen'),\n(7489, 27169, 'twenty-seven thousand one hundred sixty-nine'),\n(7490, 17655, 'seventeen thousand six hundred fifty-five'),\n(7491, 67188, 'sixty-seven thousand one hundred eighty-eight'),\n(7492, 17321, 'seventeen thousand three hundred twenty-one'),\n(7493, 95245, 'ninety-five thousand two hundred forty-five'),\n(7494, 48780, 'forty-eight thousand seven hundred eighty'),\n(7495, 33982, 'thirty-three thousand nine hundred eighty-two'),\n(7496, 61939, 'sixty-one thousand nine hundred thirty-nine'),\n(7497, 69069, 'sixty-nine thousand sixty-nine'),\n(7498, 62713, 'sixty-two thousand seven hundred thirteen'),\n(7499, 43685, 'forty-three thousand six hundred eighty-five'),\n(7500, 57927, 'fifty-seven thousand nine hundred twenty-seven'),\n(7501, 96470, 'ninety-six thousand four hundred seventy'),\n(7502, 35948, 'thirty-five thousand nine hundred forty-eight'),\n(7503, 63060, 'sixty-three thousand sixty'),\n(7504, 44399, 'forty-four thousand three hundred ninety-nine'),\n(7505, 97397, 'ninety-seven thousand three hundred ninety-seven'),\n(7506, 89584, 'eighty-nine thousand five hundred eighty-four'),\n(7507, 58673, 'fifty-eight thousand six hundred seventy-three'),\n(7508, 89552, 'eighty-nine thousand five hundred fifty-two'),\n(7509, 53729, 'fifty-three thousand seven hundred twenty-nine'),\n(7510, 16507, 'sixteen thousand five hundred seven'),\n(7511, 68717, 'sixty-eight thousand seven hundred seventeen'),\n(7512, 80771, 'eighty thousand seven hundred seventy-one'),\n(7513, 41974, 'forty-one thousand nine hundred seventy-four'),\n(7514, 52507, 'fifty-two thousand five hundred seven'),\n(7515, 22505, 'twenty-two thousand five hundred five'),\n(7516, 28179, 'twenty-eight thousand one hundred seventy-nine'),\n(7517, 42313, 'forty-two thousand three hundred thirteen'),\n(7518, 73205, 'seventy-three thousand two hundred five'),\n(7519, 35773, 'thirty-five thousand seven hundred seventy-three'),\n(7520, 3191, 'three thousand one hundred ninety-one'),\n(7521, 99153, 'ninety-nine thousand one hundred fifty-three'),\n(7522, 36884, 'thirty-six thousand eight hundred eighty-four'),\n(7523, 33393, 'thirty-three thousand three hundred ninety-three'),\n(7524, 78679, 'seventy-eight thousand six hundred seventy-nine'),\n(7525, 33427, 'thirty-three thousand four hundred twenty-seven'),\n(7526, 92166, 'ninety-two thousand one hundred sixty-six'),\n(7527, 57863, 'fifty-seven thousand eight hundred sixty-three'),\n(7528, 48513, 'forty-eight thousand five hundred thirteen'),\n(7529, 64604, 'sixty-four thousand six hundred four'),\n(7530, 42568, 'forty-two thousand five hundred sixty-eight'),\n(7531, 40599, 'forty thousand five hundred ninety-nine'),\n(7532, 26112, 'twenty-six thousand one hundred twelve'),\n(7533, 64220, 'sixty-four thousand two hundred twenty'),\n(7534, 15706, 'fifteen thousand seven hundred six'),\n(7535, 40185, 'forty thousand one hundred eighty-five'),\n(7536, 1528, 'one thousand five hundred twenty-eight'),\n(7537, 42906, 'forty-two thousand nine hundred six'),\n(7538, 33416, 'thirty-three thousand four hundred sixteen'),\n(7539, 12521, 'twelve thousand five hundred twenty-one'),\n(7540, 10976, 'ten thousand nine hundred seventy-six'),\n(7541, 31686, 'thirty-one thousand six hundred eighty-six'),\n(7542, 53218, 'fifty-three thousand two hundred eighteen'),\n(7543, 49056, 'forty-nine thousand fifty-six'),\n(7544, 61375, 'sixty-one thousand three hundred seventy-five'),\n(7545, 70557, 'seventy thousand five hundred fifty-seven'),\n(7546, 41451, 'forty-one thousand four hundred fifty-one'),\n(7547, 67002, 'sixty-seven thousand two'),\n(7548, 78676, 'seventy-eight thousand six hundred seventy-six'),\n(7549, 34278, 'thirty-four thousand two hundred seventy-eight'),\n(7550, 92849, 'ninety-two thousand eight hundred forty-nine'),\n(7551, 10020, 'ten thousand twenty'),\n(7552, 66557, 'sixty-six thousand five hundred fifty-seven'),\n(7553, 58425, 'fifty-eight thousand four hundred twenty-five'),\n(7554, 31844, 'thirty-one thousand eight hundred forty-four'),\n(7555, 38934, 'thirty-eight thousand nine hundred thirty-four'),\n(7556, 3768, 'three thousand seven hundred sixty-eight'),\n(7557, 11387, 'eleven thousand three hundred eighty-seven'),\n(7558, 51096, 'fifty-one thousand ninety-six'),\n(7559, 2040, 'two thousand forty'),\n(7560, 73370, 'seventy-three thousand three hundred seventy'),\n(7561, 63765, 'sixty-three thousand seven hundred sixty-five'),\n(7562, 5630, 'five thousand six hundred thirty'),\n(7563, 48149, 'forty-eight thousand one hundred forty-nine'),\n(7564, 65940, 'sixty-five thousand nine hundred forty'),\n(7565, 14696, 'fourteen thousand six hundred ninety-six'),\n(7566, 84264, 'eighty-four thousand two hundred sixty-four'),\n(7567, 28148, 'twenty-eight thousand one hundred forty-eight'),\n(7568, 56964, 'fifty-six thousand nine hundred sixty-four'),\n(7569, 77611, 'seventy-seven thousand six hundred eleven'),\n(7570, 38955, 'thirty-eight thousand nine hundred fifty-five'),\n(7571, 42357, 'forty-two thousand three hundred fifty-seven'),\n(7572, 68317, 'sixty-eight thousand three hundred seventeen'),\n(7573, 9676, 'nine thousand six hundred seventy-six'),\n(7574, 97886, 'ninety-seven thousand eight hundred eighty-six'),\n(7575, 5372, 'five thousand three hundred seventy-two'),\n(7576, 65924, 'sixty-five thousand nine hundred twenty-four'),\n(7577, 33045, 'thirty-three thousand forty-five'),\n(7578, 49238, 'forty-nine thousand two hundred thirty-eight'),\n(7579, 2480, 'two thousand four hundred eighty'),\n(7580, 39492, 'thirty-nine thousand four hundred ninety-two'),\n(7581, 91785, 'ninety-one thousand seven hundred eighty-five'),\n(7582, 50532, 'fifty thousand five hundred thirty-two'),\n(7583, 57073, 'fifty-seven thousand seventy-three'),\n(7584, 37226, 'thirty-seven thousand two hundred twenty-six'),\n(7585, 44803, 'forty-four thousand eight hundred three'),\n(7586, 81713, 'eighty-one thousand seven hundred thirteen'),\n(7587, 85593, 'eighty-five thousand five hundred ninety-three'),\n(7588, 9911, 'nine thousand nine hundred eleven'),\n(7589, 81534, 'eighty-one thousand five hundred thirty-four'),\n(7590, 48184, 'forty-eight thousand one hundred eighty-four'),\n(7591, 8434, 'eight thousand four hundred thirty-four'),\n(7592, 97111, 'ninety-seven thousand one hundred eleven'),\n(7593, 81993, 'eighty-one thousand nine hundred ninety-three'),\n(7594, 6325, 'six thousand three hundred twenty-five'),\n(7595, 3988, 'three thousand nine hundred eighty-eight'),\n(7596, 95168, 'ninety-five thousand one hundred sixty-eight'),\n(7597, 92244, 'ninety-two thousand two hundred forty-four'),\n(7598, 14998, 'fourteen thousand nine hundred ninety-eight'),\n(7599, 26106, 'twenty-six thousand one hundred six'),\n(7600, 89553, 'eighty-nine thousand five hundred fifty-three'),\n(7601, 88785, 'eighty-eight thousand seven hundred eighty-five'),\n(7602, 37747, 'thirty-seven thousand seven hundred forty-seven'),\n(7603, 28314, 'twenty-eight thousand three hundred fourteen'),\n(7604, 94690, 'ninety-four thousand six hundred ninety'),\n(7605, 85341, 'eighty-five thousand three hundred forty-one'),\n(7606, 71559, 'seventy-one thousand five hundred fifty-nine'),\n(7607, 44200, 'forty-four thousand two hundred'),\n(7608, 27012, 'twenty-seven thousand twelve'),\n(7609, 85555, 'eighty-five thousand five hundred fifty-five'),\n(7610, 66236, 'sixty-six thousand two hundred thirty-six'),\n(7611, 50861, 'fifty thousand eight hundred sixty-one'),\n(7612, 58399, 'fifty-eight thousand three hundred ninety-nine'),\n(7613, 88626, 'eighty-eight thousand six hundred twenty-six'),\n(7614, 2970, 'two thousand nine hundred seventy'),\n(7615, 45944, 'forty-five thousand nine hundred forty-four'),\n(7616, 97327, 'ninety-seven thousand three hundred twenty-seven'),\n(7617, 51299, 'fifty-one thousand two hundred ninety-nine'),\n(7618, 65136, 'sixty-five thousand one hundred thirty-six'),\n(7619, 41212, 'forty-one thousand two hundred twelve'),\n(7620, 24046, 'twenty-four thousand forty-six'),\n(7621, 34768, 'thirty-four thousand seven hundred sixty-eight'),\n(7622, 43164, 'forty-three thousand one hundred sixty-four'),\n(7623, 46960, 'forty-six thousand nine hundred sixty'),\n(7624, 93105, 'ninety-three thousand one hundred five'),\n(7625, 59291, 'fifty-nine thousand two hundred ninety-one'),\n(7626, 94936, 'ninety-four thousand nine hundred thirty-six'),\n(7627, 33012, 'thirty-three thousand twelve'),\n(7628, 57210, 'fifty-seven thousand two hundred ten'),\n(7629, 89151, 'eighty-nine thousand one hundred fifty-one'),\n(7630, 37067, 'thirty-seven thousand sixty-seven'),\n(7631, 83823, 'eighty-three thousand eight hundred twenty-three'),\n(7632, 43281, 'forty-three thousand two hundred eighty-one'),\n(7633, 43502, 'forty-three thousand five hundred two'),\n(7634, 88432, 'eighty-eight thousand four hundred thirty-two'),\n(7635, 96282, 'ninety-six thousand two hundred eighty-two'),\n(7636, 22310, 'twenty-two thousand three hundred ten'),\n(7637, 63184, 'sixty-three thousand one hundred eighty-four'),\n(7638, 38854, 'thirty-eight thousand eight hundred fifty-four'),\n(7639, 32014, 'thirty-two thousand fourteen'),\n(7640, 47591, 'forty-seven thousand five hundred ninety-one'),\n(7641, 66203, 'sixty-six thousand two hundred three'),\n(7642, 10901, 'ten thousand nine hundred one'),\n(7643, 63363, 'sixty-three thousand three hundred sixty-three'),\n(7644, 40060, 'forty thousand sixty'),\n(7645, 89536, 'eighty-nine thousand five hundred thirty-six'),\n(7646, 13, 'thirteen'),\n(7647, 52827, 'fifty-two thousand eight hundred twenty-seven'),\n(7648, 76482, 'seventy-six thousand four hundred eighty-two'),\n(7649, 48210, 'forty-eight thousand two hundred ten'),\n(7650, 52849, 'fifty-two thousand eight hundred forty-nine'),\n(7651, 33200, 'thirty-three thousand two hundred'),\n(7652, 58898, 'fifty-eight thousand eight hundred ninety-eight'),\n(7653, 24149, 'twenty-four thousand one hundred forty-nine'),\n(7654, 81107, 'eighty-one thousand one hundred seven'),\n(7655, 35910, 'thirty-five thousand nine hundred ten'),\n(7656, 38307, 'thirty-eight thousand three hundred seven'),\n(7657, 54300, 'fifty-four thousand three hundred'),\n(7658, 31626, 'thirty-one thousand six hundred twenty-six'),\n(7659, 4551, 'four thousand five hundred fifty-one'),\n(7660, 5962, 'five thousand nine hundred sixty-two'),\n(7661, 2501, 'two thousand five hundred one'),\n(7662, 96696, 'ninety-six thousand six hundred ninety-six'),\n(7663, 88731, 'eighty-eight thousand seven hundred thirty-one'),\n(7664, 74200, 'seventy-four thousand two hundred'),\n(7665, 17154, 'seventeen thousand one hundred fifty-four'),\n(7666, 13238, 'thirteen thousand two hundred thirty-eight'),\n(7667, 48064, 'forty-eight thousand sixty-four'),\n(7668, 7940, 'seven thousand nine hundred forty'),\n(7669, 14029, 'fourteen thousand twenty-nine'),\n(7670, 40366, 'forty thousand three hundred sixty-six'),\n(7671, 39973, 'thirty-nine thousand nine hundred seventy-three'),\n(7672, 57265, 'fifty-seven thousand two hundred sixty-five'),\n(7673, 39000, 'thirty-nine thousand'),\n(7674, 39485, 'thirty-nine thousand four hundred eighty-five'),\n(7675, 84542, 'eighty-four thousand five hundred forty-two'),\n(7676, 61773, 'sixty-one thousand seven hundred seventy-three'),\n(7677, 41641, 'forty-one thousand six hundred forty-one'),\n(7678, 7886, 'seven thousand eight hundred eighty-six'),\n(7679, 30700, 'thirty thousand seven hundred'),\n(7680, 95970, 'ninety-five thousand nine hundred seventy'),\n(7681, 64922, 'sixty-four thousand nine hundred twenty-two'),\n(7682, 14021, 'fourteen thousand twenty-one'),\n(7683, 99256, 'ninety-nine thousand two hundred fifty-six'),\n(7684, 91940, 'ninety-one thousand nine hundred forty'),\n(7685, 27372, 'twenty-seven thousand three hundred seventy-two'),\n(7686, 57008, 'fifty-seven thousand eight'),\n(7687, 69222, 'sixty-nine thousand two hundred twenty-two'),\n(7688, 7614, 'seven thousand six hundred fourteen'),\n(7689, 69469, 'sixty-nine thousand four hundred sixty-nine'),\n(7690, 60236, 'sixty thousand two hundred thirty-six'),\n(7691, 95005, 'ninety-five thousand five'),\n(7692, 70671, 'seventy thousand six hundred seventy-one'),\n(7693, 18886, 'eighteen thousand eight hundred eighty-six'),\n(7694, 80435, 'eighty thousand four hundred thirty-five'),\n(7695, 77160, 'seventy-seven thousand one hundred sixty'),\n(7696, 29415, 'twenty-nine thousand four hundred fifteen'),\n(7697, 72605, 'seventy-two thousand six hundred five'),\n(7698, 64737, 'sixty-four thousand seven hundred thirty-seven'),\n(7699, 46033, 'forty-six thousand thirty-three'),\n(7700, 1345, 'one thousand three hundred forty-five'),\n(7701, 76566, 'seventy-six thousand five hundred sixty-six'),\n(7702, 24009, 'twenty-four thousand nine'),\n(7703, 748, 'seven hundred forty-eight'),\n(7704, 6824, 'six thousand eight hundred twenty-four'),\n(7705, 41462, 'forty-one thousand four hundred sixty-two'),\n(7706, 25743, 'twenty-five thousand seven hundred forty-three'),\n(7707, 11884, 'eleven thousand eight hundred eighty-four'),\n(7708, 48287, 'forty-eight thousand two hundred eighty-seven'),\n(7709, 12828, 'twelve thousand eight hundred twenty-eight'),\n(7710, 55232, 'fifty-five thousand two hundred thirty-two'),\n(7711, 7121, 'seven thousand one hundred twenty-one'),\n(7712, 64242, 'sixty-four thousand two hundred forty-two'),\n(7713, 24992, 'twenty-four thousand nine hundred ninety-two'),\n(7714, 34382, 'thirty-four thousand three hundred eighty-two'),\n(7715, 70019, 'seventy thousand nineteen'),\n(7716, 96928, 'ninety-six thousand nine hundred twenty-eight'),\n(7717, 99259, 'ninety-nine thousand two hundred fifty-nine'),\n(7718, 74890, 'seventy-four thousand eight hundred ninety'),\n(7719, 31251, 'thirty-one thousand two hundred fifty-one'),\n(7720, 53203, 'fifty-three thousand two hundred three'),\n(7721, 80806, 'eighty thousand eight hundred six'),\n(7722, 15184, 'fifteen thousand one hundred eighty-four'),\n(7723, 83156, 'eighty-three thousand one hundred fifty-six'),\n(7724, 46068, 'forty-six thousand sixty-eight'),\n(7725, 54273, 'fifty-four thousand two hundred seventy-three'),\n(7726, 33264, 'thirty-three thousand two hundred sixty-four'),\n(7727, 91237, 'ninety-one thousand two hundred thirty-seven'),\n(7728, 50759, 'fifty thousand seven hundred fifty-nine'),\n(7729, 59848, 'fifty-nine thousand eight hundred forty-eight'),\n(7730, 46658, 'forty-six thousand six hundred fifty-eight'),\n(7731, 23471, 'twenty-three thousand four hundred seventy-one'),\n(7732, 99924, 'ninety-nine thousand nine hundred twenty-four'),\n(7733, 84228, 'eighty-four thousand two hundred twenty-eight'),\n(7734, 64993, 'sixty-four thousand nine hundred ninety-three'),\n(7735, 35824, 'thirty-five thousand eight hundred twenty-four'),\n(7736, 86124, 'eighty-six thousand one hundred twenty-four'),\n(7737, 1997, 'one thousand nine hundred ninety-seven'),\n(7738, 30925, 'thirty thousand nine hundred twenty-five'),\n(7739, 9794, 'nine thousand seven hundred ninety-four'),\n(7740, 21703, 'twenty-one thousand seven hundred three'),\n(7741, 47667, 'forty-seven thousand six hundred sixty-seven'),\n(7742, 78875, 'seventy-eight thousand eight hundred seventy-five'),\n(7743, 68845, 'sixty-eight thousand eight hundred forty-five'),\n(7744, 75832, 'seventy-five thousand eight hundred thirty-two'),\n(7745, 4127, 'four thousand one hundred twenty-seven'),\n(7746, 92351, 'ninety-two thousand three hundred fifty-one'),\n(7747, 36960, 'thirty-six thousand nine hundred sixty'),\n(7748, 53797, 'fifty-three thousand seven hundred ninety-seven'),\n(7749, 22166, 'twenty-two thousand one hundred sixty-six'),\n(7750, 39652, 'thirty-nine thousand six hundred fifty-two'),\n(7751, 30846, 'thirty thousand eight hundred forty-six'),\n(7752, 30187, 'thirty thousand one hundred eighty-seven'),\n(7753, 68871, 'sixty-eight thousand eight hundred seventy-one'),\n(7754, 16967, 'sixteen thousand nine hundred sixty-seven'),\n(7755, 89961, 'eighty-nine thousand nine hundred sixty-one'),\n(7756, 13958, 'thirteen thousand nine hundred fifty-eight'),\n(7757, 86908, 'eighty-six thousand nine hundred eight'),\n(7758, 78938, 'seventy-eight thousand nine hundred thirty-eight'),\n(7759, 81787, 'eighty-one thousand seven hundred eighty-seven'),\n(7760, 73914, 'seventy-three thousand nine hundred fourteen'),\n(7761, 81978, 'eighty-one thousand nine hundred seventy-eight'),\n(7762, 76608, 'seventy-six thousand six hundred eight'),\n(7763, 40940, 'forty thousand nine hundred forty'),\n(7764, 21769, 'twenty-one thousand seven hundred sixty-nine'),\n(7765, 64411, 'sixty-four thousand four hundred eleven'),\n(7766, 12013, 'twelve thousand thirteen'),\n(7767, 44515, 'forty-four thousand five hundred fifteen'),\n(7768, 64042, 'sixty-four thousand forty-two'),\n(7769, 95415, 'ninety-five thousand four hundred fifteen'),\n(7770, 46241, 'forty-six thousand two hundred forty-one'),\n(7771, 38038, 'thirty-eight thousand thirty-eight'),\n(7772, 29915, 'twenty-nine thousand nine hundred fifteen'),\n(7773, 47079, 'forty-seven thousand seventy-nine'),\n(7774, 40975, 'forty thousand nine hundred seventy-five'),\n(7775, 25189, 'twenty-five thousand one hundred eighty-nine'),\n(7776, 84219, 'eighty-four thousand two hundred nineteen'),\n(7777, 65775, 'sixty-five thousand seven hundred seventy-five'),\n(7778, 83133, 'eighty-three thousand one hundred thirty-three'),\n(7779, 18759, 'eighteen thousand seven hundred fifty-nine'),\n(7780, 24673, 'twenty-four thousand six hundred seventy-three'),\n(7781, 89363, 'eighty-nine thousand three hundred sixty-three'),\n(7782, 94126, 'ninety-four thousand one hundred twenty-six'),\n(7783, 736, 'seven hundred thirty-six'),\n(7784, 67024, 'sixty-seven thousand twenty-four'),\n(7785, 7486, 'seven thousand four hundred eighty-six'),\n(7786, 67916, 'sixty-seven thousand nine hundred sixteen'),\n(7787, 17289, 'seventeen thousand two hundred eighty-nine'),\n(7788, 47031, 'forty-seven thousand thirty-one'),\n(7789, 22555, 'twenty-two thousand five hundred fifty-five'),\n(7790, 55086, 'fifty-five thousand eighty-six'),\n(7791, 47896, 'forty-seven thousand eight hundred ninety-six'),\n(7792, 24885, 'twenty-four thousand eight hundred eighty-five'),\n(7793, 12920, 'twelve thousand nine hundred twenty'),\n(7794, 749, 'seven hundred forty-nine'),\n(7795, 55204, 'fifty-five thousand two hundred four'),\n(7796, 5101, 'five thousand one hundred one'),\n(7797, 70030, 'seventy thousand thirty'),\n(7798, 7459, 'seven thousand four hundred fifty-nine'),\n(7799, 48899, 'forty-eight thousand eight hundred ninety-nine'),\n(7800, 93683, 'ninety-three thousand six hundred eighty-three'),\n(7801, 16451, 'sixteen thousand four hundred fifty-one'),\n(7802, 25104, 'twenty-five thousand one hundred four'),\n(7803, 9893, 'nine thousand eight hundred ninety-three'),\n(7804, 14245, 'fourteen thousand two hundred forty-five'),\n(7805, 5970, 'five thousand nine hundred seventy'),\n(7806, 34885, 'thirty-four thousand eight hundred eighty-five'),\n(7807, 16332, 'sixteen thousand three hundred thirty-two'),\n(7808, 54012, 'fifty-four thousand twelve'),\n(7809, 11996, 'eleven thousand nine hundred ninety-six'),\n(7810, 21344, 'twenty-one thousand three hundred forty-four'),\n(7811, 35258, 'thirty-five thousand two hundred fifty-eight'),\n(7812, 9275, 'nine thousand two hundred seventy-five'),\n(7813, 85031, 'eighty-five thousand thirty-one'),\n(7814, 29581, 'twenty-nine thousand five hundred eighty-one'),\n(7815, 37798, 'thirty-seven thousand seven hundred ninety-eight'),\n(7816, 43311, 'forty-three thousand three hundred eleven'),\n(7817, 26374, 'twenty-six thousand three hundred seventy-four'),\n(7818, 44818, 'forty-four thousand eight hundred eighteen'),\n(7819, 44149, 'forty-four thousand one hundred forty-nine'),\n(7820, 54167, 'fifty-four thousand one hundred sixty-seven'),\n(7821, 80354, 'eighty thousand three hundred fifty-four'),\n(7822, 72843, 'seventy-two thousand eight hundred forty-three'),\n(7823, 3938, 'three thousand nine hundred thirty-eight'),\n(7824, 67512, 'sixty-seven thousand five hundred twelve'),\n(7825, 54793, 'fifty-four thousand seven hundred ninety-three'),\n(7826, 78915, 'seventy-eight thousand nine hundred fifteen'),\n(7827, 87426, 'eighty-seven thousand four hundred twenty-six'),\n(7828, 76112, 'seventy-six thousand one hundred twelve'),\n(7829, 46418, 'forty-six thousand four hundred eighteen'),\n(7830, 63056, 'sixty-three thousand fifty-six'),\n(7831, 18738, 'eighteen thousand seven hundred thirty-eight'),\n(7832, 71922, 'seventy-one thousand nine hundred twenty-two'),\n(7833, 10485, 'ten thousand four hundred eighty-five'),\n(7834, 30335, 'thirty thousand three hundred thirty-five'),\n(7835, 68428, 'sixty-eight thousand four hundred twenty-eight'),\n(7836, 28843, 'twenty-eight thousand eight hundred forty-three'),\n(7837, 11189, 'eleven thousand one hundred eighty-nine'),\n(7838, 27674, 'twenty-seven thousand six hundred seventy-four'),\n(7839, 8179, 'eight thousand one hundred seventy-nine'),\n(7840, 62895, 'sixty-two thousand eight hundred ninety-five'),\n(7841, 37338, 'thirty-seven thousand three hundred thirty-eight'),\n(7842, 31953, 'thirty-one thousand nine hundred fifty-three'),\n(7843, 32622, 'thirty-two thousand six hundred twenty-two'),\n(7844, 76187, 'seventy-six thousand one hundred eighty-seven'),\n(7845, 43656, 'forty-three thousand six hundred fifty-six'),\n(7846, 87332, 'eighty-seven thousand three hundred thirty-two'),\n(7847, 92268, 'ninety-two thousand two hundred sixty-eight'),\n(7848, 95283, 'ninety-five thousand two hundred eighty-three'),\n(7849, 50468, 'fifty thousand four hundred sixty-eight'),\n(7850, 91856, 'ninety-one thousand eight hundred fifty-six'),\n(7851, 69233, 'sixty-nine thousand two hundred thirty-three'),\n(7852, 17016, 'seventeen thousand sixteen'),\n(7853, 96332, 'ninety-six thousand three hundred thirty-two'),\n(7854, 76291, 'seventy-six thousand two hundred ninety-one'),\n(7855, 34565, 'thirty-four thousand five hundred sixty-five'),\n(7856, 39586, 'thirty-nine thousand five hundred eighty-six'),\n(7857, 61213, 'sixty-one thousand two hundred thirteen'),\n(7858, 18928, 'eighteen thousand nine hundred twenty-eight'),\n(7859, 21888, 'twenty-one thousand eight hundred eighty-eight'),\n(7860, 51536, 'fifty-one thousand five hundred thirty-six'),\n(7861, 81074, 'eighty-one thousand seventy-four'),\n(7862, 21568, 'twenty-one thousand five hundred sixty-eight'),\n(7863, 48621, 'forty-eight thousand six hundred twenty-one'),\n(7864, 90284, 'ninety thousand two hundred eighty-four'),\n(7865, 6140, 'six thousand one hundred forty'),\n(7866, 3388, 'three thousand three hundred eighty-eight'),\n(7867, 54350, 'fifty-four thousand three hundred fifty'),\n(7868, 88335, 'eighty-eight thousand three hundred thirty-five'),\n(7869, 55056, 'fifty-five thousand fifty-six'),\n(7870, 80523, 'eighty thousand five hundred twenty-three'),\n(7871, 36453, 'thirty-six thousand four hundred fifty-three'),\n(7872, 637, 'six hundred thirty-seven'),\n(7873, 46560, 'forty-six thousand five hundred sixty'),\n(7874, 64868, 'sixty-four thousand eight hundred sixty-eight'),\n(7875, 80928, 'eighty thousand nine hundred twenty-eight'),\n(7876, 73574, 'seventy-three thousand five hundred seventy-four'),\n(7877, 17541, 'seventeen thousand five hundred forty-one'),\n(7878, 94826, 'ninety-four thousand eight hundred twenty-six'),\n(7879, 65383, 'sixty-five thousand three hundred eighty-three'),\n(7880, 82342, 'eighty-two thousand three hundred forty-two'),\n(7881, 37458, 'thirty-seven thousand four hundred fifty-eight'),\n(7882, 99149, 'ninety-nine thousand one hundred forty-nine'),\n(7883, 71689, 'seventy-one thousand six hundred eighty-nine'),\n(7884, 78085, 'seventy-eight thousand eighty-five'),\n(7885, 57552, 'fifty-seven thousand five hundred fifty-two'),\n(7886, 2761, 'two thousand seven hundred sixty-one'),\n(7887, 45520, 'forty-five thousand five hundred twenty'),\n(7888, 45625, 'forty-five thousand six hundred twenty-five'),\n(7889, 4598, 'four thousand five hundred ninety-eight'),\n(7890, 55, 'fifty-five'),\n(7891, 35004, 'thirty-five thousand four'),\n(7892, 55327, 'fifty-five thousand three hundred twenty-seven'),\n(7893, 11166, 'eleven thousand one hundred sixty-six'),\n(7894, 26140, 'twenty-six thousand one hundred forty'),\n(7895, 91477, 'ninety-one thousand four hundred seventy-seven'),\n(7896, 42203, 'forty-two thousand two hundred three'),\n(7897, 84780, 'eighty-four thousand seven hundred eighty'),\n(7898, 67536, 'sixty-seven thousand five hundred thirty-six'),\n(7899, 19055, 'nineteen thousand fifty-five'),\n(7900, 59432, 'fifty-nine thousand four hundred thirty-two'),\n(7901, 21613, 'twenty-one thousand six hundred thirteen'),\n(7902, 61666, 'sixty-one thousand six hundred sixty-six'),\n(7903, 77311, 'seventy-seven thousand three hundred eleven'),\n(7904, 27206, 'twenty-seven thousand two hundred six'),\n(7905, 92854, 'ninety-two thousand eight hundred fifty-four'),\n(7906, 35248, 'thirty-five thousand two hundred forty-eight'),\n(7907, 61592, 'sixty-one thousand five hundred ninety-two'),\n(7908, 98527, 'ninety-eight thousand five hundred twenty-seven'),\n(7909, 48236, 'forty-eight thousand two hundred thirty-six'),\n(7910, 9447, 'nine thousand four hundred forty-seven'),\n(7911, 30822, 'thirty thousand eight hundred twenty-two'),\n(7912, 14984, 'fourteen thousand nine hundred eighty-four'),\n(7913, 31991, 'thirty-one thousand nine hundred ninety-one'),\n(7914, 54422, 'fifty-four thousand four hundred twenty-two'),\n(7915, 79383, 'seventy-nine thousand three hundred eighty-three'),\n(7916, 73590, 'seventy-three thousand five hundred ninety'),\n(7917, 95713, 'ninety-five thousand seven hundred thirteen'),\n(7918, 18969, 'eighteen thousand nine hundred sixty-nine'),\n(7919, 14662, 'fourteen thousand six hundred sixty-two'),\n(7920, 45256, 'forty-five thousand two hundred fifty-six'),\n(7921, 37455, 'thirty-seven thousand four hundred fifty-five'),\n(7922, 10143, 'ten thousand one hundred forty-three'),\n(7923, 97947, 'ninety-seven thousand nine hundred forty-seven'),\n(7924, 48008, 'forty-eight thousand eight'),\n(7925, 62549, 'sixty-two thousand five hundred forty-nine'),\n(7926, 45256, 'forty-five thousand two hundred fifty-six'),\n(7927, 40634, 'forty thousand six hundred thirty-four'),\n(7928, 10988, 'ten thousand nine hundred eighty-eight'),\n(7929, 33825, 'thirty-three thousand eight hundred twenty-five'),\n(7930, 96608, 'ninety-six thousand six hundred eight'),\n(7931, 5533, 'five thousand five hundred thirty-three'),\n(7932, 26864, 'twenty-six thousand eight hundred sixty-four'),\n(7933, 85451, 'eighty-five thousand four hundred fifty-one'),\n(7934, 26640, 'twenty-six thousand six hundred forty'),\n(7935, 51622, 'fifty-one thousand six hundred twenty-two'),\n(7936, 14219, 'fourteen thousand two hundred nineteen'),\n(7937, 6403, 'six thousand four hundred three'),\n(7938, 38686, 'thirty-eight thousand six hundred eighty-six'),\n(7939, 57470, 'fifty-seven thousand four hundred seventy'),\n(7940, 70153, 'seventy thousand one hundred fifty-three'),\n(7941, 84092, 'eighty-four thousand ninety-two'),\n(7942, 40361, 'forty thousand three hundred sixty-one'),\n(7943, 55743, 'fifty-five thousand seven hundred forty-three'),\n(7944, 98943, 'ninety-eight thousand nine hundred forty-three'),\n(7945, 44077, 'forty-four thousand seventy-seven'),\n(7946, 15704, 'fifteen thousand seven hundred four'),\n(7947, 33561, 'thirty-three thousand five hundred sixty-one'),\n(7948, 19774, 'nineteen thousand seven hundred seventy-four'),\n(7949, 41637, 'forty-one thousand six hundred thirty-seven'),\n(7950, 66247, 'sixty-six thousand two hundred forty-seven'),\n(7951, 49218, 'forty-nine thousand two hundred eighteen'),\n(7952, 36083, 'thirty-six thousand eighty-three'),\n(7953, 95461, 'ninety-five thousand four hundred sixty-one'),\n(7954, 72804, 'seventy-two thousand eight hundred four'),\n(7955, 9216, 'nine thousand two hundred sixteen'),\n(7956, 73606, 'seventy-three thousand six hundred six'),\n(7957, 93155, 'ninety-three thousand one hundred fifty-five'),\n(7958, 55561, 'fifty-five thousand five hundred sixty-one'),\n(7959, 89373, 'eighty-nine thousand three hundred seventy-three'),\n(7960, 7478, 'seven thousand four hundred seventy-eight'),\n(7961, 32969, 'thirty-two thousand nine hundred sixty-nine'),\n(7962, 16085, 'sixteen thousand eighty-five'),\n(7963, 24821, 'twenty-four thousand eight hundred twenty-one'),\n(7964, 17232, 'seventeen thousand two hundred thirty-two'),\n(7965, 37906, 'thirty-seven thousand nine hundred six'),\n(7966, 1280, 'one thousand two hundred eighty'),\n(7967, 93357, 'ninety-three thousand three hundred fifty-seven'),\n(7968, 62662, 'sixty-two thousand six hundred sixty-two'),\n(7969, 69554, 'sixty-nine thousand five hundred fifty-four'),\n(7970, 68837, 'sixty-eight thousand eight hundred thirty-seven'),\n(7971, 49333, 'forty-nine thousand three hundred thirty-three'),\n(7972, 61065, 'sixty-one thousand sixty-five'),\n(7973, 45391, 'forty-five thousand three hundred ninety-one'),\n(7974, 12556, 'twelve thousand five hundred fifty-six'),\n(7975, 5031, 'five thousand thirty-one'),\n(7976, 62986, 'sixty-two thousand nine hundred eighty-six'),\n(7977, 25975, 'twenty-five thousand nine hundred seventy-five'),\n(7978, 33655, 'thirty-three thousand six hundred fifty-five'),\n(7979, 6028, 'six thousand twenty-eight'),\n(7980, 36020, 'thirty-six thousand twenty'),\n(7981, 41558, 'forty-one thousand five hundred fifty-eight'),\n(7982, 87946, 'eighty-seven thousand nine hundred forty-six'),\n(7983, 21756, 'twenty-one thousand seven hundred fifty-six'),\n(7984, 44874, 'forty-four thousand eight hundred seventy-four'),\n(7985, 7220, 'seven thousand two hundred twenty'),\n(7986, 94122, 'ninety-four thousand one hundred twenty-two'),\n(7987, 43802, 'forty-three thousand eight hundred two'),\n(7988, 36249, 'thirty-six thousand two hundred forty-nine'),\n(7989, 39796, 'thirty-nine thousand seven hundred ninety-six'),\n(7990, 54710, 'fifty-four thousand seven hundred ten'),\n(7991, 71277, 'seventy-one thousand two hundred seventy-seven'),\n(7992, 8893, 'eight thousand eight hundred ninety-three'),\n(7993, 12683, 'twelve thousand six hundred eighty-three'),\n(7994, 3436, 'three thousand four hundred thirty-six'),\n(7995, 5482, 'five thousand four hundred eighty-two'),\n(7996, 16251, 'sixteen thousand two hundred fifty-one'),\n(7997, 33887, 'thirty-three thousand eight hundred eighty-seven'),\n(7998, 49286, 'forty-nine thousand two hundred eighty-six'),\n(7999, 16522, 'sixteen thousand five hundred twenty-two'),\n(8000, 89509, 'eighty-nine thousand five hundred nine'),\n(8001, 84684, 'eighty-four thousand six hundred eighty-four'),\n(8002, 81188, 'eighty-one thousand one hundred eighty-eight'),\n(8003, 14015, 'fourteen thousand fifteen'),\n(8004, 34039, 'thirty-four thousand thirty-nine'),\n(8005, 49709, 'forty-nine thousand seven hundred nine'),\n(8006, 39236, 'thirty-nine thousand two hundred thirty-six'),\n(8007, 59391, 'fifty-nine thousand three hundred ninety-one'),\n(8008, 76537, 'seventy-six thousand five hundred thirty-seven'),\n(8009, 85992, 'eighty-five thousand nine hundred ninety-two'),\n(8010, 8549, 'eight thousand five hundred forty-nine'),\n(8011, 66771, 'sixty-six thousand seven hundred seventy-one'),\n(8012, 88442, 'eighty-eight thousand four hundred forty-two'),\n(8013, 9094, 'nine thousand ninety-four'),\n(8014, 90515, 'ninety thousand five hundred fifteen'),\n(8015, 8703, 'eight thousand seven hundred three'),\n(8016, 21314, 'twenty-one thousand three hundred fourteen'),\n(8017, 98166, 'ninety-eight thousand one hundred sixty-six'),\n(8018, 5343, 'five thousand three hundred forty-three'),\n(8019, 24040, 'twenty-four thousand forty'),\n(8020, 70025, 'seventy thousand twenty-five'),\n(8021, 57450, 'fifty-seven thousand four hundred fifty'),\n(8022, 91323, 'ninety-one thousand three hundred twenty-three'),\n(8023, 67726, 'sixty-seven thousand seven hundred twenty-six'),\n(8024, 33298, 'thirty-three thousand two hundred ninety-eight'),\n(8025, 8794, 'eight thousand seven hundred ninety-four'),\n(8026, 57450, 'fifty-seven thousand four hundred fifty'),\n(8027, 16655, 'sixteen thousand six hundred fifty-five'),\n(8028, 84049, 'eighty-four thousand forty-nine'),\n(8029, 49266, 'forty-nine thousand two hundred sixty-six'),\n(8030, 31481, 'thirty-one thousand four hundred eighty-one'),\n(8031, 30149, 'thirty thousand one hundred forty-nine'),\n(8032, 45816, 'forty-five thousand eight hundred sixteen'),\n(8033, 59526, 'fifty-nine thousand five hundred twenty-six'),\n(8034, 79025, 'seventy-nine thousand twenty-five'),\n(8035, 53187, 'fifty-three thousand one hundred eighty-seven'),\n(8036, 75727, 'seventy-five thousand seven hundred twenty-seven'),\n(8037, 37740, 'thirty-seven thousand seven hundred forty'),\n(8038, 69474, 'sixty-nine thousand four hundred seventy-four'),\n(8039, 51373, 'fifty-one thousand three hundred seventy-three'),\n(8040, 17139, 'seventeen thousand one hundred thirty-nine'),\n(8041, 40365, 'forty thousand three hundred sixty-five'),\n(8042, 4212, 'four thousand two hundred twelve'),\n(8043, 49019, 'forty-nine thousand nineteen'),\n(8044, 11575, 'eleven thousand five hundred seventy-five'),\n(8045, 28312, 'twenty-eight thousand three hundred twelve'),\n(8046, 84096, 'eighty-four thousand ninety-six'),\n(8047, 65289, 'sixty-five thousand two hundred eighty-nine'),\n(8048, 5827, 'five thousand eight hundred twenty-seven'),\n(8049, 51448, 'fifty-one thousand four hundred forty-eight'),\n(8050, 67755, 'sixty-seven thousand seven hundred fifty-five'),\n(8051, 27094, 'twenty-seven thousand ninety-four'),\n(8052, 7500, 'seven thousand five hundred'),\n(8053, 70116, 'seventy thousand one hundred sixteen'),\n(8054, 16929, 'sixteen thousand nine hundred twenty-nine'),\n(8055, 11348, 'eleven thousand three hundred forty-eight'),\n(8056, 98296, 'ninety-eight thousand two hundred ninety-six'),\n(8057, 6597, 'six thousand five hundred ninety-seven'),\n(8058, 93592, 'ninety-three thousand five hundred ninety-two'),\n(8059, 44437, 'forty-four thousand four hundred thirty-seven'),\n(8060, 27975, 'twenty-seven thousand nine hundred seventy-five'),\n(8061, 72177, 'seventy-two thousand one hundred seventy-seven'),\n(8062, 29195, 'twenty-nine thousand one hundred ninety-five'),\n(8063, 24306, 'twenty-four thousand three hundred six'),\n(8064, 75219, 'seventy-five thousand two hundred nineteen'),\n(8065, 35188, 'thirty-five thousand one hundred eighty-eight'),\n(8066, 22006, 'twenty-two thousand six'),\n(8067, 90157, 'ninety thousand one hundred fifty-seven'),\n(8068, 13172, 'thirteen thousand one hundred seventy-two'),\n(8069, 74536, 'seventy-four thousand five hundred thirty-six'),\n(8070, 87353, 'eighty-seven thousand three hundred fifty-three'),\n(8071, 9950, 'nine thousand nine hundred fifty'),\n(8072, 22537, 'twenty-two thousand five hundred thirty-seven'),\n(8073, 10732, 'ten thousand seven hundred thirty-two'),\n(8074, 10571, 'ten thousand five hundred seventy-one'),\n(8075, 98607, 'ninety-eight thousand six hundred seven'),\n(8076, 53888, 'fifty-three thousand eight hundred eighty-eight'),\n(8077, 3175, 'three thousand one hundred seventy-five'),\n(8078, 12578, 'twelve thousand five hundred seventy-eight'),\n(8079, 93344, 'ninety-three thousand three hundred forty-four'),\n(8080, 87802, 'eighty-seven thousand eight hundred two'),\n(8081, 60090, 'sixty thousand ninety'),\n(8082, 59423, 'fifty-nine thousand four hundred twenty-three'),\n(8083, 47984, 'forty-seven thousand nine hundred eighty-four'),\n(8084, 56162, 'fifty-six thousand one hundred sixty-two'),\n(8085, 23863, 'twenty-three thousand eight hundred sixty-three'),\n(8086, 4487, 'four thousand four hundred eighty-seven'),\n(8087, 97406, 'ninety-seven thousand four hundred six'),\n(8088, 86519, 'eighty-six thousand five hundred nineteen'),\n(8089, 71098, 'seventy-one thousand ninety-eight'),\n(8090, 28632, 'twenty-eight thousand six hundred thirty-two'),\n(8091, 93932, 'ninety-three thousand nine hundred thirty-two'),\n(8092, 20421, 'twenty thousand four hundred twenty-one'),\n(8093, 29267, 'twenty-nine thousand two hundred sixty-seven'),\n(8094, 74567, 'seventy-four thousand five hundred sixty-seven'),\n(8095, 99457, 'ninety-nine thousand four hundred fifty-seven'),\n(8096, 59667, 'fifty-nine thousand six hundred sixty-seven'),\n(8097, 60872, 'sixty thousand eight hundred seventy-two'),\n(8098, 53594, 'fifty-three thousand five hundred ninety-four'),\n(8099, 66800, 'sixty-six thousand eight hundred'),\n(8100, 81708, 'eighty-one thousand seven hundred eight'),\n(8101, 82388, 'eighty-two thousand three hundred eighty-eight'),\n(8102, 31922, 'thirty-one thousand nine hundred twenty-two'),\n(8103, 28907, 'twenty-eight thousand nine hundred seven'),\n(8104, 33393, 'thirty-three thousand three hundred ninety-three'),\n(8105, 82827, 'eighty-two thousand eight hundred twenty-seven'),\n(8106, 16882, 'sixteen thousand eight hundred eighty-two'),\n(8107, 61644, 'sixty-one thousand six hundred forty-four'),\n(8108, 71826, 'seventy-one thousand eight hundred twenty-six'),\n(8109, 19410, 'nineteen thousand four hundred ten'),\n(8110, 81318, 'eighty-one thousand three hundred eighteen'),\n(8111, 65374, 'sixty-five thousand three hundred seventy-four'),\n(8112, 66995, 'sixty-six thousand nine hundred ninety-five'),\n(8113, 94637, 'ninety-four thousand six hundred thirty-seven'),\n(8114, 78707, 'seventy-eight thousand seven hundred seven'),\n(8115, 98440, 'ninety-eight thousand four hundred forty'),\n(8116, 60845, 'sixty thousand eight hundred forty-five'),\n(8117, 36430, 'thirty-six thousand four hundred thirty'),\n(8118, 74905, 'seventy-four thousand nine hundred five'),\n(8119, 5597, 'five thousand five hundred ninety-seven'),\n(8120, 26767, 'twenty-six thousand seven hundred sixty-seven'),\n(8121, 83070, 'eighty-three thousand seventy'),\n(8122, 67202, 'sixty-seven thousand two hundred two'),\n(8123, 86283, 'eighty-six thousand two hundred eighty-three'),\n(8124, 96463, 'ninety-six thousand four hundred sixty-three'),\n(8125, 14179, 'fourteen thousand one hundred seventy-nine'),\n(8126, 64056, 'sixty-four thousand fifty-six'),\n(8127, 58519, 'fifty-eight thousand five hundred nineteen'),\n(8128, 18920, 'eighteen thousand nine hundred twenty'),\n(8129, 69584, 'sixty-nine thousand five hundred eighty-four'),\n(8130, 27796, 'twenty-seven thousand seven hundred ninety-six'),\n(8131, 45307, 'forty-five thousand three hundred seven'),\n(8132, 28813, 'twenty-eight thousand eight hundred thirteen'),\n(8133, 99647, 'ninety-nine thousand six hundred forty-seven'),\n(8134, 16545, 'sixteen thousand five hundred forty-five'),\n(8135, 74537, 'seventy-four thousand five hundred thirty-seven'),\n(8136, 90134, 'ninety thousand one hundred thirty-four'),\n(8137, 45851, 'forty-five thousand eight hundred fifty-one'),\n(8138, 38243, 'thirty-eight thousand two hundred forty-three'),\n(8139, 31534, 'thirty-one thousand five hundred thirty-four'),\n(8140, 1804, 'one thousand eight hundred four'),\n(8141, 71584, 'seventy-one thousand five hundred eighty-four'),\n(8142, 44572, 'forty-four thousand five hundred seventy-two'),\n(8143, 27202, 'twenty-seven thousand two hundred two'),\n(8144, 70639, 'seventy thousand six hundred thirty-nine'),\n(8145, 42204, 'forty-two thousand two hundred four'),\n(8146, 76588, 'seventy-six thousand five hundred eighty-eight'),\n(8147, 79050, 'seventy-nine thousand fifty'),\n(8148, 55518, 'fifty-five thousand five hundred eighteen'),\n(8149, 26840, 'twenty-six thousand eight hundred forty'),\n(8150, 25692, 'twenty-five thousand six hundred ninety-two'),\n(8151, 28384, 'twenty-eight thousand three hundred eighty-four'),\n(8152, 24195, 'twenty-four thousand one hundred ninety-five'),\n(8153, 81289, 'eighty-one thousand two hundred eighty-nine'),\n(8154, 56024, 'fifty-six thousand twenty-four'),\n(8155, 91563, 'ninety-one thousand five hundred sixty-three'),\n(8156, 55950, 'fifty-five thousand nine hundred fifty'),\n(8157, 28486, 'twenty-eight thousand four hundred eighty-six'),\n(8158, 98589, 'ninety-eight thousand five hundred eighty-nine'),\n(8159, 9670, 'nine thousand six hundred seventy'),\n(8160, 37363, 'thirty-seven thousand three hundred sixty-three'),\n(8161, 50339, 'fifty thousand three hundred thirty-nine'),\n(8162, 19513, 'nineteen thousand five hundred thirteen'),\n(8163, 22954, 'twenty-two thousand nine hundred fifty-four'),\n(8164, 96959, 'ninety-six thousand nine hundred fifty-nine'),\n(8165, 28263, 'twenty-eight thousand two hundred sixty-three'),\n(8166, 88725, 'eighty-eight thousand seven hundred twenty-five'),\n(8167, 19414, 'nineteen thousand four hundred fourteen'),\n(8168, 83966, 'eighty-three thousand nine hundred sixty-six'),\n(8169, 46804, 'forty-six thousand eight hundred four'),\n(8170, 72825, 'seventy-two thousand eight hundred twenty-five'),\n(8171, 49946, 'forty-nine thousand nine hundred forty-six'),\n(8172, 1105, 'one thousand one hundred five'),\n(8173, 32495, 'thirty-two thousand four hundred ninety-five'),\n(8174, 62329, 'sixty-two thousand three hundred twenty-nine'),\n(8175, 43010, 'forty-three thousand ten'),\n(8176, 94084, 'ninety-four thousand eighty-four'),\n(8177, 59631, 'fifty-nine thousand six hundred thirty-one'),\n(8178, 6291, 'six thousand two hundred ninety-one'),\n(8179, 24610, 'twenty-four thousand six hundred ten'),\n(8180, 7376, 'seven thousand three hundred seventy-six'),\n(8181, 75663, 'seventy-five thousand six hundred sixty-three'),\n(8182, 20917, 'twenty thousand nine hundred seventeen'),\n(8183, 90871, 'ninety thousand eight hundred seventy-one'),\n(8184, 84249, 'eighty-four thousand two hundred forty-nine'),\n(8185, 11208, 'eleven thousand two hundred eight'),\n(8186, 16820, 'sixteen thousand eight hundred twenty'),\n(8187, 87115, 'eighty-seven thousand one hundred fifteen'),\n(8188, 14205, 'fourteen thousand two hundred five'),\n(8189, 49986, 'forty-nine thousand nine hundred eighty-six'),\n(8190, 32588, 'thirty-two thousand five hundred eighty-eight'),\n(8191, 77871, 'seventy-seven thousand eight hundred seventy-one'),\n(8192, 88917, 'eighty-eight thousand nine hundred seventeen'),\n(8193, 73062, 'seventy-three thousand sixty-two'),\n(8194, 69440, 'sixty-nine thousand four hundred forty'),\n(8195, 90830, 'ninety thousand eight hundred thirty'),\n(8196, 38787, 'thirty-eight thousand seven hundred eighty-seven'),\n(8197, 32760, 'thirty-two thousand seven hundred sixty'),\n(8198, 22170, 'twenty-two thousand one hundred seventy'),\n(8199, 83455, 'eighty-three thousand four hundred fifty-five'),\n(8200, 73609, 'seventy-three thousand six hundred nine'),\n(8201, 8014, 'eight thousand fourteen'),\n(8202, 57772, 'fifty-seven thousand seven hundred seventy-two'),\n(8203, 29503, 'twenty-nine thousand five hundred three'),\n(8204, 27966, 'twenty-seven thousand nine hundred sixty-six'),\n(8205, 95704, 'ninety-five thousand seven hundred four'),\n(8206, 95989, 'ninety-five thousand nine hundred eighty-nine'),\n(8207, 53489, 'fifty-three thousand four hundred eighty-nine'),\n(8208, 8600, 'eight thousand six hundred'),\n(8209, 46229, 'forty-six thousand two hundred twenty-nine'),\n(8210, 69907, 'sixty-nine thousand nine hundred seven'),\n(8211, 93903, 'ninety-three thousand nine hundred three'),\n(8212, 96791, 'ninety-six thousand seven hundred ninety-one'),\n(8213, 8081, 'eight thousand eighty-one'),\n(8214, 84716, 'eighty-four thousand seven hundred sixteen'),\n(8215, 61370, 'sixty-one thousand three hundred seventy'),\n(8216, 26047, 'twenty-six thousand forty-seven'),\n(8217, 80025, 'eighty thousand twenty-five'),\n(8218, 73171, 'seventy-three thousand one hundred seventy-one'),\n(8219, 39985, 'thirty-nine thousand nine hundred eighty-five'),\n(8220, 98244, 'ninety-eight thousand two hundred forty-four'),\n(8221, 33072, 'thirty-three thousand seventy-two'),\n(8222, 95789, 'ninety-five thousand seven hundred eighty-nine'),\n(8223, 10495, 'ten thousand four hundred ninety-five'),\n(8224, 51058, 'fifty-one thousand fifty-eight'),\n(8225, 77375, 'seventy-seven thousand three hundred seventy-five'),\n(8226, 46019, 'forty-six thousand nineteen'),\n(8227, 15747, 'fifteen thousand seven hundred forty-seven'),\n(8228, 81964, 'eighty-one thousand nine hundred sixty-four'),\n(8229, 24858, 'twenty-four thousand eight hundred fifty-eight'),\n(8230, 23459, 'twenty-three thousand four hundred fifty-nine'),\n(8231, 79754, 'seventy-nine thousand seven hundred fifty-four'),\n(8232, 54760, 'fifty-four thousand seven hundred sixty'),\n(8233, 95811, 'ninety-five thousand eight hundred eleven'),\n(8234, 5062, 'five thousand sixty-two'),\n(8235, 7109, 'seven thousand one hundred nine'),\n(8236, 51387, 'fifty-one thousand three hundred eighty-seven'),\n(8237, 71637, 'seventy-one thousand six hundred thirty-seven'),\n(8238, 73206, 'seventy-three thousand two hundred six'),\n(8239, 46295, 'forty-six thousand two hundred ninety-five'),\n(8240, 13009, 'thirteen thousand nine'),\n(8241, 60087, 'sixty thousand eighty-seven'),\n(8242, 25923, 'twenty-five thousand nine hundred twenty-three'),\n(8243, 9805, 'nine thousand eight hundred five'),\n(8244, 30861, 'thirty thousand eight hundred sixty-one'),\n(8245, 32953, 'thirty-two thousand nine hundred fifty-three'),\n(8246, 67589, 'sixty-seven thousand five hundred eighty-nine'),\n(8247, 27326, 'twenty-seven thousand three hundred twenty-six'),\n(8248, 69656, 'sixty-nine thousand six hundred fifty-six'),\n(8249, 16501, 'sixteen thousand five hundred one'),\n(8250, 37315, 'thirty-seven thousand three hundred fifteen'),\n(8251, 89883, 'eighty-nine thousand eight hundred eighty-three'),\n(8252, 36652, 'thirty-six thousand six hundred fifty-two'),\n(8253, 31530, 'thirty-one thousand five hundred thirty'),\n(8254, 86312, 'eighty-six thousand three hundred twelve'),\n(8255, 95217, 'ninety-five thousand two hundred seventeen'),\n(8256, 62570, 'sixty-two thousand five hundred seventy'),\n(8257, 62573, 'sixty-two thousand five hundred seventy-three'),\n(8258, 97, 'ninety-seven'),\n(8259, 8161, 'eight thousand one hundred sixty-one'),\n(8260, 78891, 'seventy-eight thousand eight hundred ninety-one'),\n(8261, 23796, 'twenty-three thousand seven hundred ninety-six'),\n(8262, 86320, 'eighty-six thousand three hundred twenty'),\n(8263, 15800, 'fifteen thousand eight hundred'),\n(8264, 39336, 'thirty-nine thousand three hundred thirty-six'),\n(8265, 8304, 'eight thousand three hundred four'),\n(8266, 85651, 'eighty-five thousand six hundred fifty-one'),\n(8267, 28403, 'twenty-eight thousand four hundred three'),\n(8268, 1622, 'one thousand six hundred twenty-two'),\n(8269, 38657, 'thirty-eight thousand six hundred fifty-seven'),\n(8270, 81801, 'eighty-one thousand eight hundred one'),\n(8271, 78027, 'seventy-eight thousand twenty-seven'),\n(8272, 55338, 'fifty-five thousand three hundred thirty-eight'),\n(8273, 66066, 'sixty-six thousand sixty-six'),\n(8274, 48209, 'forty-eight thousand two hundred nine'),\n(8275, 51056, 'fifty-one thousand fifty-six'),\n(8276, 17367, 'seventeen thousand three hundred sixty-seven'),\n(8277, 42270, 'forty-two thousand two hundred seventy'),\n(8278, 69366, 'sixty-nine thousand three hundred sixty-six'),\n(8279, 24319, 'twenty-four thousand three hundred nineteen'),\n(8280, 85464, 'eighty-five thousand four hundred sixty-four'),\n(8281, 25889, 'twenty-five thousand eight hundred eighty-nine'),\n(8282, 74094, 'seventy-four thousand ninety-four'),\n(8283, 47837, 'forty-seven thousand eight hundred thirty-seven'),\n(8284, 38957, 'thirty-eight thousand nine hundred fifty-seven'),\n(8285, 7458, 'seven thousand four hundred fifty-eight'),\n(8286, 95300, 'ninety-five thousand three hundred'),\n(8287, 29642, 'twenty-nine thousand six hundred forty-two'),\n(8288, 14033, 'fourteen thousand thirty-three'),\n(8289, 37044, 'thirty-seven thousand forty-four'),\n(8290, 26910, 'twenty-six thousand nine hundred ten'),\n(8291, 87193, 'eighty-seven thousand one hundred ninety-three'),\n(8292, 32544, 'thirty-two thousand five hundred forty-four'),\n(8293, 56606, 'fifty-six thousand six hundred six'),\n(8294, 5305, 'five thousand three hundred five'),\n(8295, 99438, 'ninety-nine thousand four hundred thirty-eight'),\n(8296, 90665, 'ninety thousand six hundred sixty-five'),\n(8297, 38974, 'thirty-eight thousand nine hundred seventy-four'),\n(8298, 68109, 'sixty-eight thousand one hundred nine'),\n(8299, 15877, 'fifteen thousand eight hundred seventy-seven'),\n(8300, 52230, 'fifty-two thousand two hundred thirty'),\n(8301, 47332, 'forty-seven thousand three hundred thirty-two'),\n(8302, 48457, 'forty-eight thousand four hundred fifty-seven'),\n(8303, 34780, 'thirty-four thousand seven hundred eighty'),\n(8304, 14553, 'fourteen thousand five hundred fifty-three'),\n(8305, 59943, 'fifty-nine thousand nine hundred forty-three'),\n(8306, 1094, 'one thousand ninety-four'),\n(8307, 92145, 'ninety-two thousand one hundred forty-five'),\n(8308, 74060, 'seventy-four thousand sixty'),\n(8309, 38193, 'thirty-eight thousand one hundred ninety-three'),\n(8310, 20192, 'twenty thousand one hundred ninety-two'),\n(8311, 45702, 'forty-five thousand seven hundred two'),\n(8312, 97277, 'ninety-seven thousand two hundred seventy-seven'),\n(8313, 43935, 'forty-three thousand nine hundred thirty-five'),\n(8314, 32421, 'thirty-two thousand four hundred twenty-one'),\n(8315, 59341, 'fifty-nine thousand three hundred forty-one'),\n(8316, 73382, 'seventy-three thousand three hundred eighty-two'),\n(8317, 10733, 'ten thousand seven hundred thirty-three'),\n(8318, 97129, 'ninety-seven thousand one hundred twenty-nine'),\n(8319, 54919, 'fifty-four thousand nine hundred nineteen'),\n(8320, 10259, 'ten thousand two hundred fifty-nine'),\n(8321, 39614, 'thirty-nine thousand six hundred fourteen'),\n(8322, 27633, 'twenty-seven thousand six hundred thirty-three'),\n(8323, 69950, 'sixty-nine thousand nine hundred fifty'),\n(8324, 8919, 'eight thousand nine hundred nineteen'),\n(8325, 28733, 'twenty-eight thousand seven hundred thirty-three'),\n(8326, 20390, 'twenty thousand three hundred ninety'),\n(8327, 77228, 'seventy-seven thousand two hundred twenty-eight'),\n(8328, 35351, 'thirty-five thousand three hundred fifty-one'),\n(8329, 13857, 'thirteen thousand eight hundred fifty-seven'),\n(8330, 42468, 'forty-two thousand four hundred sixty-eight'),\n(8331, 84999, 'eighty-four thousand nine hundred ninety-nine'),\n(8332, 72470, 'seventy-two thousand four hundred seventy'),\n(8333, 72452, 'seventy-two thousand four hundred fifty-two'),\n(8334, 94155, 'ninety-four thousand one hundred fifty-five'),\n(8335, 6664, 'six thousand six hundred sixty-four'),\n(8336, 18849, 'eighteen thousand eight hundred forty-nine'),\n(8337, 68314, 'sixty-eight thousand three hundred fourteen'),\n(8338, 94744, 'ninety-four thousand seven hundred forty-four'),\n(8339, 92363, 'ninety-two thousand three hundred sixty-three'),\n(8340, 93019, 'ninety-three thousand nineteen'),\n(8341, 78500, 'seventy-eight thousand five hundred'),\n(8342, 44088, 'forty-four thousand eighty-eight'),\n(8343, 75584, 'seventy-five thousand five hundred eighty-four'),\n(8344, 84360, 'eighty-four thousand three hundred sixty'),\n(8345, 70735, 'seventy thousand seven hundred thirty-five'),\n(8346, 12457, 'twelve thousand four hundred fifty-seven'),\n(8347, 92143, 'ninety-two thousand one hundred forty-three'),\n(8348, 1204, 'one thousand two hundred four'),\n(8349, 80695, 'eighty thousand six hundred ninety-five'),\n(8350, 62627, 'sixty-two thousand six hundred twenty-seven'),\n(8351, 21967, 'twenty-one thousand nine hundred sixty-seven'),\n(8352, 45548, 'forty-five thousand five hundred forty-eight'),\n(8353, 33384, 'thirty-three thousand three hundred eighty-four'),\n(8354, 23888, 'twenty-three thousand eight hundred eighty-eight'),\n(8355, 90151, 'ninety thousand one hundred fifty-one'),\n(8356, 97427, 'ninety-seven thousand four hundred twenty-seven'),\n(8357, 51779, 'fifty-one thousand seven hundred seventy-nine'),\n(8358, 86397, 'eighty-six thousand three hundred ninety-seven'),\n(8359, 59564, 'fifty-nine thousand five hundred sixty-four'),\n(8360, 38636, 'thirty-eight thousand six hundred thirty-six'),\n(8361, 64780, 'sixty-four thousand seven hundred eighty'),\n(8362, 37535, 'thirty-seven thousand five hundred thirty-five'),\n(8363, 78783, 'seventy-eight thousand seven hundred eighty-three'),\n(8364, 4100, 'four thousand one hundred'),\n(8365, 30252, 'thirty thousand two hundred fifty-two'),\n(8366, 84723, 'eighty-four thousand seven hundred twenty-three'),\n(8367, 20077, 'twenty thousand seventy-seven'),\n(8368, 34092, 'thirty-four thousand ninety-two'),\n(8369, 35114, 'thirty-five thousand one hundred fourteen'),\n(8370, 86839, 'eighty-six thousand eight hundred thirty-nine'),\n(8371, 95103, 'ninety-five thousand one hundred three'),\n(8372, 36892, 'thirty-six thousand eight hundred ninety-two'),\n(8373, 99387, 'ninety-nine thousand three hundred eighty-seven'),\n(8374, 88180, 'eighty-eight thousand one hundred eighty'),\n(8375, 75130, 'seventy-five thousand one hundred thirty'),\n(8376, 72000, 'seventy-two thousand'),\n(8377, 52097, 'fifty-two thousand ninety-seven'),\n(8378, 93419, 'ninety-three thousand four hundred nineteen'),\n(8379, 55083, 'fifty-five thousand eighty-three'),\n(8380, 55503, 'fifty-five thousand five hundred three'),\n(8381, 81232, 'eighty-one thousand two hundred thirty-two'),\n(8382, 95887, 'ninety-five thousand eight hundred eighty-seven'),\n(8383, 32005, 'thirty-two thousand five'),\n(8384, 5590, 'five thousand five hundred ninety'),\n(8385, 53004, 'fifty-three thousand four'),\n(8386, 60414, 'sixty thousand four hundred fourteen'),\n(8387, 39286, 'thirty-nine thousand two hundred eighty-six'),\n(8388, 61723, 'sixty-one thousand seven hundred twenty-three'),\n(8389, 28696, 'twenty-eight thousand six hundred ninety-six'),\n(8390, 30502, 'thirty thousand five hundred two'),\n(8391, 40868, 'forty thousand eight hundred sixty-eight'),\n(8392, 56747, 'fifty-six thousand seven hundred forty-seven'),\n(8393, 72695, 'seventy-two thousand six hundred ninety-five'),\n(8394, 90719, 'ninety thousand seven hundred nineteen'),\n(8395, 22263, 'twenty-two thousand two hundred sixty-three'),\n(8396, 10971, 'ten thousand nine hundred seventy-one'),\n(8397, 67956, 'sixty-seven thousand nine hundred fifty-six'),\n(8398, 5266, 'five thousand two hundred sixty-six'),\n(8399, 65629, 'sixty-five thousand six hundred twenty-nine'),\n(8400, 60456, 'sixty thousand four hundred fifty-six'),\n(8401, 52701, 'fifty-two thousand seven hundred one'),\n(8402, 11101, 'eleven thousand one hundred one'),\n(8403, 31802, 'thirty-one thousand eight hundred two'),\n(8404, 57050, 'fifty-seven thousand fifty'),\n(8405, 57178, 'fifty-seven thousand one hundred seventy-eight'),\n(8406, 43050, 'forty-three thousand fifty'),\n(8407, 54219, 'fifty-four thousand two hundred nineteen'),\n(8408, 30077, 'thirty thousand seventy-seven'),\n(8409, 26188, 'twenty-six thousand one hundred eighty-eight'),\n(8410, 86172, 'eighty-six thousand one hundred seventy-two'),\n(8411, 50520, 'fifty thousand five hundred twenty'),\n(8412, 71227, 'seventy-one thousand two hundred twenty-seven'),\n(8413, 9944, 'nine thousand nine hundred forty-four'),\n(8414, 24896, 'twenty-four thousand eight hundred ninety-six'),\n(8415, 98924, 'ninety-eight thousand nine hundred twenty-four'),\n(8416, 23715, 'twenty-three thousand seven hundred fifteen'),\n(8417, 85708, 'eighty-five thousand seven hundred eight'),\n(8418, 65832, 'sixty-five thousand eight hundred thirty-two'),\n(8419, 71091, 'seventy-one thousand ninety-one'),\n(8420, 45450, 'forty-five thousand four hundred fifty'),\n(8421, 72707, 'seventy-two thousand seven hundred seven'),\n(8422, 4941, 'four thousand nine hundred forty-one'),\n(8423, 59988, 'fifty-nine thousand nine hundred eighty-eight'),\n(8424, 74020, 'seventy-four thousand twenty'),\n(8425, 47480, 'forty-seven thousand four hundred eighty'),\n(8426, 29522, 'twenty-nine thousand five hundred twenty-two'),\n(8427, 28655, 'twenty-eight thousand six hundred fifty-five'),\n(8428, 50172, 'fifty thousand one hundred seventy-two'),\n(8429, 91225, 'ninety-one thousand two hundred twenty-five'),\n(8430, 51844, 'fifty-one thousand eight hundred forty-four'),\n(8431, 40306, 'forty thousand three hundred six'),\n(8432, 42886, 'forty-two thousand eight hundred eighty-six'),\n(8433, 96895, 'ninety-six thousand eight hundred ninety-five'),\n(8434, 75928, 'seventy-five thousand nine hundred twenty-eight'),\n(8435, 30316, 'thirty thousand three hundred sixteen'),\n(8436, 83563, 'eighty-three thousand five hundred sixty-three'),\n(8437, 82660, 'eighty-two thousand six hundred sixty'),\n(8438, 85621, 'eighty-five thousand six hundred twenty-one'),\n(8439, 42335, 'forty-two thousand three hundred thirty-five'),\n(8440, 79863, 'seventy-nine thousand eight hundred sixty-three'),\n(8441, 3905, 'three thousand nine hundred five'),\n(8442, 93351, 'ninety-three thousand three hundred fifty-one'),\n(8443, 14415, 'fourteen thousand four hundred fifteen'),\n(8444, 38678, 'thirty-eight thousand six hundred seventy-eight'),\n(8445, 51745, 'fifty-one thousand seven hundred forty-five'),\n(8446, 86197, 'eighty-six thousand one hundred ninety-seven'),\n(8447, 358, 'three hundred fifty-eight'),\n(8448, 87031, 'eighty-seven thousand thirty-one'),\n(8449, 83811, 'eighty-three thousand eight hundred eleven'),\n(8450, 11528, 'eleven thousand five hundred twenty-eight'),\n(8451, 54017, 'fifty-four thousand seventeen'),\n(8452, 17978, 'seventeen thousand nine hundred seventy-eight'),\n(8453, 22946, 'twenty-two thousand nine hundred forty-six'),\n(8454, 52647, 'fifty-two thousand six hundred forty-seven'),\n(8455, 62893, 'sixty-two thousand eight hundred ninety-three'),\n(8456, 45727, 'forty-five thousand seven hundred twenty-seven'),\n(8457, 27751, 'twenty-seven thousand seven hundred fifty-one'),\n(8458, 9583, 'nine thousand five hundred eighty-three'),\n(8459, 74362, 'seventy-four thousand three hundred sixty-two'),\n(8460, 18952, 'eighteen thousand nine hundred fifty-two'),\n(8461, 78973, 'seventy-eight thousand nine hundred seventy-three'),\n(8462, 84630, 'eighty-four thousand six hundred thirty'),\n(8463, 90779, 'ninety thousand seven hundred seventy-nine'),\n(8464, 40841, 'forty thousand eight hundred forty-one'),\n(8465, 17142, 'seventeen thousand one hundred forty-two'),\n(8466, 92416, 'ninety-two thousand four hundred sixteen'),\n(8467, 72365, 'seventy-two thousand three hundred sixty-five'),\n(8468, 33423, 'thirty-three thousand four hundred twenty-three'),\n(8469, 336, 'three hundred thirty-six'),\n(8470, 99184, 'ninety-nine thousand one hundred eighty-four'),\n(8471, 59078, 'fifty-nine thousand seventy-eight'),\n(8472, 49452, 'forty-nine thousand four hundred fifty-two'),\n(8473, 95896, 'ninety-five thousand eight hundred ninety-six'),\n(8474, 51552, 'fifty-one thousand five hundred fifty-two'),\n(8475, 69558, 'sixty-nine thousand five hundred fifty-eight'),\n(8476, 12738, 'twelve thousand seven hundred thirty-eight'),\n(8477, 19046, 'nineteen thousand forty-six'),\n(8478, 76213, 'seventy-six thousand two hundred thirteen'),\n(8479, 48274, 'forty-eight thousand two hundred seventy-four'),\n(8480, 15545, 'fifteen thousand five hundred forty-five'),\n(8481, 61304, 'sixty-one thousand three hundred four'),\n(8482, 94968, 'ninety-four thousand nine hundred sixty-eight'),\n(8483, 19481, 'nineteen thousand four hundred eighty-one'),\n(8484, 93482, 'ninety-three thousand four hundred eighty-two'),\n(8485, 6179, 'six thousand one hundred seventy-nine'),\n(8486, 43347, 'forty-three thousand three hundred forty-seven'),\n(8487, 77653, 'seventy-seven thousand six hundred fifty-three'),\n(8488, 20406, 'twenty thousand four hundred six'),\n(8489, 62035, 'sixty-two thousand thirty-five'),\n(8490, 90587, 'ninety thousand five hundred eighty-seven'),\n(8491, 2946, 'two thousand nine hundred forty-six'),\n(8492, 53306, 'fifty-three thousand three hundred six'),\n(8493, 10132, 'ten thousand one hundred thirty-two'),\n(8494, 77462, 'seventy-seven thousand four hundred sixty-two'),\n(8495, 58595, 'fifty-eight thousand five hundred ninety-five'),\n(8496, 79911, 'seventy-nine thousand nine hundred eleven'),\n(8497, 25078, 'twenty-five thousand seventy-eight'),\n(8498, 9200, 'nine thousand two hundred'),\n(8499, 60512, 'sixty thousand five hundred twelve'),\n(8500, 96701, 'ninety-six thousand seven hundred one'),\n(8501, 72934, 'seventy-two thousand nine hundred thirty-four'),\n(8502, 34124, 'thirty-four thousand one hundred twenty-four'),\n(8503, 95356, 'ninety-five thousand three hundred fifty-six'),\n(8504, 69879, 'sixty-nine thousand eight hundred seventy-nine'),\n(8505, 71591, 'seventy-one thousand five hundred ninety-one'),\n(8506, 44776, 'forty-four thousand seven hundred seventy-six'),\n(8507, 6508, 'six thousand five hundred eight'),\n(8508, 36488, 'thirty-six thousand four hundred eighty-eight'),\n(8509, 12847, 'twelve thousand eight hundred forty-seven'),\n(8510, 74853, 'seventy-four thousand eight hundred fifty-three'),\n(8511, 84745, 'eighty-four thousand seven hundred forty-five'),\n(8512, 80531, 'eighty thousand five hundred thirty-one'),\n(8513, 94078, 'ninety-four thousand seventy-eight'),\n(8514, 93822, 'ninety-three thousand eight hundred twenty-two'),\n(8515, 88476, 'eighty-eight thousand four hundred seventy-six'),\n(8516, 84245, 'eighty-four thousand two hundred forty-five'),\n(8517, 84395, 'eighty-four thousand three hundred ninety-five'),\n(8518, 2007, 'two thousand seven'),\n(8519, 70123, 'seventy thousand one hundred twenty-three'),\n(8520, 3056, 'three thousand fifty-six'),\n(8521, 10942, 'ten thousand nine hundred forty-two'),\n(8522, 10013, 'ten thousand thirteen'),\n(8523, 61214, 'sixty-one thousand two hundred fourteen'),\n(8524, 54374, 'fifty-four thousand three hundred seventy-four'),\n(8525, 43644, 'forty-three thousand six hundred forty-four'),\n(8526, 69136, 'sixty-nine thousand one hundred thirty-six'),\n(8527, 26273, 'twenty-six thousand two hundred seventy-three'),\n(8528, 40148, 'forty thousand one hundred forty-eight'),\n(8529, 67790, 'sixty-seven thousand seven hundred ninety'),\n(8530, 91834, 'ninety-one thousand eight hundred thirty-four'),\n(8531, 35669, 'thirty-five thousand six hundred sixty-nine'),\n(8532, 35187, 'thirty-five thousand one hundred eighty-seven'),\n(8533, 2047, 'two thousand forty-seven'),\n(8534, 10640, 'ten thousand six hundred forty'),\n(8535, 92444, 'ninety-two thousand four hundred forty-four'),\n(8536, 5582, 'five thousand five hundred eighty-two'),\n(8537, 25235, 'twenty-five thousand two hundred thirty-five'),\n(8538, 51952, 'fifty-one thousand nine hundred fifty-two'),\n(8539, 17616, 'seventeen thousand six hundred sixteen'),\n(8540, 71144, 'seventy-one thousand one hundred forty-four'),\n(8541, 16618, 'sixteen thousand six hundred eighteen'),\n(8542, 18205, 'eighteen thousand two hundred five'),\n(8543, 80186, 'eighty thousand one hundred eighty-six'),\n(8544, 61942, 'sixty-one thousand nine hundred forty-two'),\n(8545, 61044, 'sixty-one thousand forty-four'),\n(8546, 27629, 'twenty-seven thousand six hundred twenty-nine'),\n(8547, 21920, 'twenty-one thousand nine hundred twenty'),\n(8548, 18074, 'eighteen thousand seventy-four'),\n(8549, 77500, 'seventy-seven thousand five hundred'),\n(8550, 7506, 'seven thousand five hundred six'),\n(8551, 1172, 'one thousand one hundred seventy-two'),\n(8552, 82477, 'eighty-two thousand four hundred seventy-seven'),\n(8553, 53691, 'fifty-three thousand six hundred ninety-one'),\n(8554, 72027, 'seventy-two thousand twenty-seven'),\n(8555, 31763, 'thirty-one thousand seven hundred sixty-three'),\n(8556, 35087, 'thirty-five thousand eighty-seven'),\n(8557, 58296, 'fifty-eight thousand two hundred ninety-six'),\n(8558, 78481, 'seventy-eight thousand four hundred eighty-one'),\n(8559, 16043, 'sixteen thousand forty-three'),\n(8560, 76737, 'seventy-six thousand seven hundred thirty-seven'),\n(8561, 75570, 'seventy-five thousand five hundred seventy'),\n(8562, 95820, 'ninety-five thousand eight hundred twenty'),\n(8563, 45974, 'forty-five thousand nine hundred seventy-four'),\n(8564, 56270, 'fifty-six thousand two hundred seventy'),\n(8565, 97244, 'ninety-seven thousand two hundred forty-four'),\n(8566, 85545, 'eighty-five thousand five hundred forty-five'),\n(8567, 14500, 'fourteen thousand five hundred'),\n(8568, 53416, 'fifty-three thousand four hundred sixteen'),\n(8569, 81913, 'eighty-one thousand nine hundred thirteen'),\n(8570, 82487, 'eighty-two thousand four hundred eighty-seven'),\n(8571, 50845, 'fifty thousand eight hundred forty-five'),\n(8572, 57160, 'fifty-seven thousand one hundred sixty'),\n(8573, 29717, 'twenty-nine thousand seven hundred seventeen'),\n(8574, 76, 'seventy-six'),\n(8575, 55307, 'fifty-five thousand three hundred seven'),\n(8576, 48259, 'forty-eight thousand two hundred fifty-nine'),\n(8577, 17068, 'seventeen thousand sixty-eight'),\n(8578, 50442, 'fifty thousand four hundred forty-two'),\n(8579, 48056, 'forty-eight thousand fifty-six'),\n(8580, 99483, 'ninety-nine thousand four hundred eighty-three'),\n(8581, 233, 'two hundred thirty-three'),\n(8582, 24262, 'twenty-four thousand two hundred sixty-two'),\n(8583, 7703, 'seven thousand seven hundred three'),\n(8584, 48131, 'forty-eight thousand one hundred thirty-one'),\n(8585, 76997, 'seventy-six thousand nine hundred ninety-seven'),\n(8586, 25102, 'twenty-five thousand one hundred two'),\n(8587, 74011, 'seventy-four thousand eleven'),\n(8588, 29487, 'twenty-nine thousand four hundred eighty-seven'),\n(8589, 54798, 'fifty-four thousand seven hundred ninety-eight'),\n(8590, 42449, 'forty-two thousand four hundred forty-nine'),\n(8591, 49835, 'forty-nine thousand eight hundred thirty-five'),\n(8592, 48213, 'forty-eight thousand two hundred thirteen'),\n(8593, 70699, 'seventy thousand six hundred ninety-nine'),\n(8594, 77261, 'seventy-seven thousand two hundred sixty-one'),\n(8595, 28770, 'twenty-eight thousand seven hundred seventy'),\n(8596, 78418, 'seventy-eight thousand four hundred eighteen'),\n(8597, 1713, 'one thousand seven hundred thirteen'),\n(8598, 18612, 'eighteen thousand six hundred twelve'),\n(8599, 86638, 'eighty-six thousand six hundred thirty-eight'),\n(8600, 45093, 'forty-five thousand ninety-three'),\n(8601, 47829, 'forty-seven thousand eight hundred twenty-nine'),\n(8602, 95589, 'ninety-five thousand five hundred eighty-nine'),\n(8603, 13318, 'thirteen thousand three hundred eighteen'),\n(8604, 96785, 'ninety-six thousand seven hundred eighty-five'),\n(8605, 2152, 'two thousand one hundred fifty-two'),\n(8606, 45752, 'forty-five thousand seven hundred fifty-two'),\n(8607, 12506, 'twelve thousand five hundred six'),\n(8608, 47588, 'forty-seven thousand five hundred eighty-eight'),\n(8609, 62692, 'sixty-two thousand six hundred ninety-two'),\n(8610, 26224, 'twenty-six thousand two hundred twenty-four'),\n(8611, 44256, 'forty-four thousand two hundred fifty-six'),\n(8612, 57118, 'fifty-seven thousand one hundred eighteen'),\n(8613, 84336, 'eighty-four thousand three hundred thirty-six'),\n(8614, 96929, 'ninety-six thousand nine hundred twenty-nine'),\n(8615, 49830, 'forty-nine thousand eight hundred thirty'),\n(8616, 21745, 'twenty-one thousand seven hundred forty-five'),\n(8617, 79088, 'seventy-nine thousand eighty-eight'),\n(8618, 76255, 'seventy-six thousand two hundred fifty-five'),\n(8619, 61846, 'sixty-one thousand eight hundred forty-six'),\n(8620, 84031, 'eighty-four thousand thirty-one'),\n(8621, 45812, 'forty-five thousand eight hundred twelve'),\n(8622, 62552, 'sixty-two thousand five hundred fifty-two'),\n(8623, 2926, 'two thousand nine hundred twenty-six'),\n(8624, 50694, 'fifty thousand six hundred ninety-four'),\n(8625, 16077, 'sixteen thousand seventy-seven'),\n(8626, 46748, 'forty-six thousand seven hundred forty-eight'),\n(8627, 30989, 'thirty thousand nine hundred eighty-nine'),\n(8628, 63812, 'sixty-three thousand eight hundred twelve'),\n(8629, 89220, 'eighty-nine thousand two hundred twenty'),\n(8630, 48440, 'forty-eight thousand four hundred forty'),\n(8631, 37696, 'thirty-seven thousand six hundred ninety-six'),\n(8632, 55331, 'fifty-five thousand three hundred thirty-one'),\n(8633, 26063, 'twenty-six thousand sixty-three'),\n(8634, 26615, 'twenty-six thousand six hundred fifteen'),\n(8635, 7384, 'seven thousand three hundred eighty-four'),\n(8636, 77258, 'seventy-seven thousand two hundred fifty-eight'),\n(8637, 95407, 'ninety-five thousand four hundred seven'),\n(8638, 68228, 'sixty-eight thousand two hundred twenty-eight'),\n(8639, 34816, 'thirty-four thousand eight hundred sixteen'),\n(8640, 89065, 'eighty-nine thousand sixty-five'),\n(8641, 45247, 'forty-five thousand two hundred forty-seven'),\n(8642, 92187, 'ninety-two thousand one hundred eighty-seven'),\n(8643, 27567, 'twenty-seven thousand five hundred sixty-seven'),\n(8644, 16730, 'sixteen thousand seven hundred thirty'),\n(8645, 13930, 'thirteen thousand nine hundred thirty'),\n(8646, 23266, 'twenty-three thousand two hundred sixty-six'),\n(8647, 56009, 'fifty-six thousand nine'),\n(8648, 34112, 'thirty-four thousand one hundred twelve'),\n(8649, 83188, 'eighty-three thousand one hundred eighty-eight'),\n(8650, 72338, 'seventy-two thousand three hundred thirty-eight'),\n(8651, 17468, 'seventeen thousand four hundred sixty-eight'),\n(8652, 45092, 'forty-five thousand ninety-two'),\n(8653, 94057, 'ninety-four thousand fifty-seven'),\n(8654, 83202, 'eighty-three thousand two hundred two'),\n(8655, 92984, 'ninety-two thousand nine hundred eighty-four'),\n(8656, 77442, 'seventy-seven thousand four hundred forty-two'),\n(8657, 22530, 'twenty-two thousand five hundred thirty'),\n(8658, 90172, 'ninety thousand one hundred seventy-two'),\n(8659, 58338, 'fifty-eight thousand three hundred thirty-eight'),\n(8660, 80604, 'eighty thousand six hundred four'),\n(8661, 89556, 'eighty-nine thousand five hundred fifty-six'),\n(8662, 17999, 'seventeen thousand nine hundred ninety-nine'),\n(8663, 45559, 'forty-five thousand five hundred fifty-nine'),\n(8664, 11687, 'eleven thousand six hundred eighty-seven'),\n(8665, 36697, 'thirty-six thousand six hundred ninety-seven'),\n(8666, 33682, 'thirty-three thousand six hundred eighty-two'),\n(8667, 13180, 'thirteen thousand one hundred eighty'),\n(8668, 34928, 'thirty-four thousand nine hundred twenty-eight'),\n(8669, 17627, 'seventeen thousand six hundred twenty-seven'),\n(8670, 20085, 'twenty thousand eighty-five'),\n(8671, 86689, 'eighty-six thousand six hundred eighty-nine'),\n(8672, 17955, 'seventeen thousand nine hundred fifty-five'),\n(8673, 19842, 'nineteen thousand eight hundred forty-two'),\n(8674, 74782, 'seventy-four thousand seven hundred eighty-two'),\n(8675, 53152, 'fifty-three thousand one hundred fifty-two'),\n(8676, 81107, 'eighty-one thousand one hundred seven'),\n(8677, 35428, 'thirty-five thousand four hundred twenty-eight'),\n(8678, 72530, 'seventy-two thousand five hundred thirty'),\n(8679, 43305, 'forty-three thousand three hundred five'),\n(8680, 2974, 'two thousand nine hundred seventy-four'),\n(8681, 48008, 'forty-eight thousand eight'),\n(8682, 6103, 'six thousand one hundred three'),\n(8683, 59783, 'fifty-nine thousand seven hundred eighty-three'),\n(8684, 15411, 'fifteen thousand four hundred eleven'),\n(8685, 2820, 'two thousand eight hundred twenty'),\n(8686, 83120, 'eighty-three thousand one hundred twenty'),\n(8687, 6211, 'six thousand two hundred eleven'),\n(8688, 92685, 'ninety-two thousand six hundred eighty-five'),\n(8689, 17114, 'seventeen thousand one hundred fourteen'),\n(8690, 71302, 'seventy-one thousand three hundred two'),\n(8691, 6916, 'six thousand nine hundred sixteen'),\n(8692, 70097, 'seventy thousand ninety-seven'),\n(8693, 10476, 'ten thousand four hundred seventy-six'),\n(8694, 94509, 'ninety-four thousand five hundred nine'),\n(8695, 19795, 'nineteen thousand seven hundred ninety-five'),\n(8696, 56289, 'fifty-six thousand two hundred eighty-nine'),\n(8697, 28884, 'twenty-eight thousand eight hundred eighty-four'),\n(8698, 22976, 'twenty-two thousand nine hundred seventy-six'),\n(8699, 32841, 'thirty-two thousand eight hundred forty-one'),\n(8700, 21053, 'twenty-one thousand fifty-three'),\n(8701, 30033, 'thirty thousand thirty-three'),\n(8702, 54554, 'fifty-four thousand five hundred fifty-four'),\n(8703, 56229, 'fifty-six thousand two hundred twenty-nine'),\n(8704, 45239, 'forty-five thousand two hundred thirty-nine'),\n(8705, 54039, 'fifty-four thousand thirty-nine'),\n(8706, 45041, 'forty-five thousand forty-one'),\n(8707, 28822, 'twenty-eight thousand eight hundred twenty-two'),\n(8708, 94080, 'ninety-four thousand eighty'),\n(8709, 91265, 'ninety-one thousand two hundred sixty-five'),\n(8710, 94998, 'ninety-four thousand nine hundred ninety-eight'),\n(8711, 64507, 'sixty-four thousand five hundred seven'),\n(8712, 25414, 'twenty-five thousand four hundred fourteen'),\n(8713, 50479, 'fifty thousand four hundred seventy-nine'),\n(8714, 55078, 'fifty-five thousand seventy-eight'),\n(8715, 21183, 'twenty-one thousand one hundred eighty-three'),\n(8716, 83990, 'eighty-three thousand nine hundred ninety'),\n(8717, 68150, 'sixty-eight thousand one hundred fifty'),\n(8718, 87764, 'eighty-seven thousand seven hundred sixty-four'),\n(8719, 16736, 'sixteen thousand seven hundred thirty-six'),\n(8720, 95461, 'ninety-five thousand four hundred sixty-one'),\n(8721, 81193, 'eighty-one thousand one hundred ninety-three'),\n(8722, 17999, 'seventeen thousand nine hundred ninety-nine'),\n(8723, 44183, 'forty-four thousand one hundred eighty-three'),\n(8724, 35526, 'thirty-five thousand five hundred twenty-six'),\n(8725, 20312, 'twenty thousand three hundred twelve'),\n(8726, 56297, 'fifty-six thousand two hundred ninety-seven'),\n(8727, 35769, 'thirty-five thousand seven hundred sixty-nine'),\n(8728, 48461, 'forty-eight thousand four hundred sixty-one'),\n(8729, 23810, 'twenty-three thousand eight hundred ten'),\n(8730, 74838, 'seventy-four thousand eight hundred thirty-eight'),\n(8731, 77600, 'seventy-seven thousand six hundred'),\n(8732, 85446, 'eighty-five thousand four hundred forty-six'),\n(8733, 1154, 'one thousand one hundred fifty-four'),\n(8734, 18177, 'eighteen thousand one hundred seventy-seven'),\n(8735, 3336, 'three thousand three hundred thirty-six'),\n(8736, 56829, 'fifty-six thousand eight hundred twenty-nine'),\n(8737, 24010, 'twenty-four thousand ten'),\n(8738, 42910, 'forty-two thousand nine hundred ten'),\n(8739, 8378, 'eight thousand three hundred seventy-eight'),\n(8740, 59197, 'fifty-nine thousand one hundred ninety-seven'),\n(8741, 91327, 'ninety-one thousand three hundred twenty-seven'),\n(8742, 76659, 'seventy-six thousand six hundred fifty-nine'),\n(8743, 36896, 'thirty-six thousand eight hundred ninety-six'),\n(8744, 87615, 'eighty-seven thousand six hundred fifteen'),\n(8745, 11755, 'eleven thousand seven hundred fifty-five'),\n(8746, 79658, 'seventy-nine thousand six hundred fifty-eight'),\n(8747, 56728, 'fifty-six thousand seven hundred twenty-eight'),\n(8748, 32266, 'thirty-two thousand two hundred sixty-six'),\n(8749, 6088, 'six thousand eighty-eight'),\n(8750, 35046, 'thirty-five thousand forty-six'),\n(8751, 19133, 'nineteen thousand one hundred thirty-three'),\n(8752, 81608, 'eighty-one thousand six hundred eight'),\n(8753, 8352, 'eight thousand three hundred fifty-two'),\n(8754, 97987, 'ninety-seven thousand nine hundred eighty-seven'),\n(8755, 12939, 'twelve thousand nine hundred thirty-nine'),\n(8756, 36514, 'thirty-six thousand five hundred fourteen'),\n(8757, 41168, 'forty-one thousand one hundred sixty-eight'),\n(8758, 39249, 'thirty-nine thousand two hundred forty-nine'),\n(8759, 98313, 'ninety-eight thousand three hundred thirteen'),\n(8760, 46874, 'forty-six thousand eight hundred seventy-four'),\n(8761, 80452, 'eighty thousand four hundred fifty-two'),\n(8762, 3514, 'three thousand five hundred fourteen'),\n(8763, 31558, 'thirty-one thousand five hundred fifty-eight'),\n(8764, 20051, 'twenty thousand fifty-one'),\n(8765, 174, 'one hundred seventy-four'),\n(8766, 26461, 'twenty-six thousand four hundred sixty-one'),\n(8767, 68367, 'sixty-eight thousand three hundred sixty-seven'),\n(8768, 98050, 'ninety-eight thousand fifty'),\n(8769, 96396, 'ninety-six thousand three hundred ninety-six'),\n(8770, 87274, 'eighty-seven thousand two hundred seventy-four'),\n(8771, 85993, 'eighty-five thousand nine hundred ninety-three'),\n(8772, 29446, 'twenty-nine thousand four hundred forty-six'),\n(8773, 53555, 'fifty-three thousand five hundred fifty-five'),\n(8774, 43621, 'forty-three thousand six hundred twenty-one'),\n(8775, 16216, 'sixteen thousand two hundred sixteen'),\n(8776, 4240, 'four thousand two hundred forty'),\n(8777, 95429, 'ninety-five thousand four hundred twenty-nine'),\n(8778, 36099, 'thirty-six thousand ninety-nine'),\n(8779, 22866, 'twenty-two thousand eight hundred sixty-six'),\n(8780, 26070, 'twenty-six thousand seventy'),\n(8781, 15960, 'fifteen thousand nine hundred sixty'),\n(8782, 31071, 'thirty-one thousand seventy-one'),\n(8783, 69365, 'sixty-nine thousand three hundred sixty-five'),\n(8784, 6348, 'six thousand three hundred forty-eight'),\n(8785, 7231, 'seven thousand two hundred thirty-one'),\n(8786, 80596, 'eighty thousand five hundred ninety-six'),\n(8787, 62860, 'sixty-two thousand eight hundred sixty'),\n(8788, 21329, 'twenty-one thousand three hundred twenty-nine'),\n(8789, 80341, 'eighty thousand three hundred forty-one'),\n(8790, 39607, 'thirty-nine thousand six hundred seven'),\n(8791, 33663, 'thirty-three thousand six hundred sixty-three'),\n(8792, 68265, 'sixty-eight thousand two hundred sixty-five'),\n(8793, 48596, 'forty-eight thousand five hundred ninety-six'),\n(8794, 93676, 'ninety-three thousand six hundred seventy-six'),\n(8795, 64289, 'sixty-four thousand two hundred eighty-nine'),\n(8796, 54742, 'fifty-four thousand seven hundred forty-two'),\n(8797, 25770, 'twenty-five thousand seven hundred seventy'),\n(8798, 77514, 'seventy-seven thousand five hundred fourteen'),\n(8799, 24809, 'twenty-four thousand eight hundred nine'),\n(8800, 47728, 'forty-seven thousand seven hundred twenty-eight'),\n(8801, 69116, 'sixty-nine thousand one hundred sixteen'),\n(8802, 2508, 'two thousand five hundred eight'),\n(8803, 94461, 'ninety-four thousand four hundred sixty-one'),\n(8804, 43526, 'forty-three thousand five hundred twenty-six'),\n(8805, 85148, 'eighty-five thousand one hundred forty-eight'),\n(8806, 68809, 'sixty-eight thousand eight hundred nine'),\n(8807, 21229, 'twenty-one thousand two hundred twenty-nine'),\n(8808, 20926, 'twenty thousand nine hundred twenty-six'),\n(8809, 95358, 'ninety-five thousand three hundred fifty-eight'),\n(8810, 24603, 'twenty-four thousand six hundred three'),\n(8811, 20601, 'twenty thousand six hundred one'),\n(8812, 21149, 'twenty-one thousand one hundred forty-nine'),\n(8813, 16401, 'sixteen thousand four hundred one'),\n(8814, 36559, 'thirty-six thousand five hundred fifty-nine'),\n(8815, 61493, 'sixty-one thousand four hundred ninety-three'),\n(8816, 92910, 'ninety-two thousand nine hundred ten'),\n(8817, 47394, 'forty-seven thousand three hundred ninety-four'),\n(8818, 7008, 'seven thousand eight'),\n(8819, 6667, 'six thousand six hundred sixty-seven'),\n(8820, 51875, 'fifty-one thousand eight hundred seventy-five'),\n(8821, 98458, 'ninety-eight thousand four hundred fifty-eight'),\n(8822, 1291, 'one thousand two hundred ninety-one'),\n(8823, 92609, 'ninety-two thousand six hundred nine'),\n(8824, 49897, 'forty-nine thousand eight hundred ninety-seven'),\n(8825, 19672, 'nineteen thousand six hundred seventy-two'),\n(8826, 33905, 'thirty-three thousand nine hundred five'),\n(8827, 25063, 'twenty-five thousand sixty-three'),\n(8828, 26354, 'twenty-six thousand three hundred fifty-four'),\n(8829, 62055, 'sixty-two thousand fifty-five'),\n(8830, 48191, 'forty-eight thousand one hundred ninety-one'),\n(8831, 2531, 'two thousand five hundred thirty-one'),\n(8832, 97209, 'ninety-seven thousand two hundred nine'),\n(8833, 83353, 'eighty-three thousand three hundred fifty-three'),\n(8834, 21619, 'twenty-one thousand six hundred nineteen'),\n(8835, 81317, 'eighty-one thousand three hundred seventeen'),\n(8836, 45325, 'forty-five thousand three hundred twenty-five'),\n(8837, 83136, 'eighty-three thousand one hundred thirty-six'),\n(8838, 89377, 'eighty-nine thousand three hundred seventy-seven'),\n(8839, 47721, 'forty-seven thousand seven hundred twenty-one'),\n(8840, 6441, 'six thousand four hundred forty-one'),\n(8841, 92087, 'ninety-two thousand eighty-seven'),\n(8842, 10737, 'ten thousand seven hundred thirty-seven'),\n(8843, 97666, 'ninety-seven thousand six hundred sixty-six'),\n(8844, 75539, 'seventy-five thousand five hundred thirty-nine'),\n(8845, 65961, 'sixty-five thousand nine hundred sixty-one'),\n(8846, 7786, 'seven thousand seven hundred eighty-six'),\n(8847, 66364, 'sixty-six thousand three hundred sixty-four'),\n(8848, 96654, 'ninety-six thousand six hundred fifty-four'),\n(8849, 11049, 'eleven thousand forty-nine'),\n(8850, 11569, 'eleven thousand five hundred sixty-nine'),\n(8851, 55142, 'fifty-five thousand one hundred forty-two'),\n(8852, 85985, 'eighty-five thousand nine hundred eighty-five'),\n(8853, 82146, 'eighty-two thousand one hundred forty-six'),\n(8854, 13656, 'thirteen thousand six hundred fifty-six'),\n(8855, 10304, 'ten thousand three hundred four'),\n(8856, 49971, 'forty-nine thousand nine hundred seventy-one'),\n(8857, 47467, 'forty-seven thousand four hundred sixty-seven'),\n(8858, 44903, 'forty-four thousand nine hundred three'),\n(8859, 70403, 'seventy thousand four hundred three'),\n(8860, 96926, 'ninety-six thousand nine hundred twenty-six'),\n(8861, 44974, 'forty-four thousand nine hundred seventy-four'),\n(8862, 51428, 'fifty-one thousand four hundred twenty-eight'),\n(8863, 77303, 'seventy-seven thousand three hundred three'),\n(8864, 64539, 'sixty-four thousand five hundred thirty-nine'),\n(8865, 8197, 'eight thousand one hundred ninety-seven'),\n(8866, 46172, 'forty-six thousand one hundred seventy-two'),\n(8867, 55154, 'fifty-five thousand one hundred fifty-four'),\n(8868, 96213, 'ninety-six thousand two hundred thirteen'),\n(8869, 78942, 'seventy-eight thousand nine hundred forty-two'),\n(8870, 50775, 'fifty thousand seven hundred seventy-five'),\n(8871, 59875, 'fifty-nine thousand eight hundred seventy-five'),\n(8872, 25186, 'twenty-five thousand one hundred eighty-six'),\n(8873, 62320, 'sixty-two thousand three hundred twenty'),\n(8874, 51320, 'fifty-one thousand three hundred twenty'),\n(8875, 65552, 'sixty-five thousand five hundred fifty-two'),\n(8876, 80498, 'eighty thousand four hundred ninety-eight'),\n(8877, 6865, 'six thousand eight hundred sixty-five'),\n(8878, 39692, 'thirty-nine thousand six hundred ninety-two'),\n(8879, 65024, 'sixty-five thousand twenty-four'),\n(8880, 39564, 'thirty-nine thousand five hundred sixty-four'),\n(8881, 88474, 'eighty-eight thousand four hundred seventy-four'),\n(8882, 79744, 'seventy-nine thousand seven hundred forty-four'),\n(8883, 76880, 'seventy-six thousand eight hundred eighty'),\n(8884, 36549, 'thirty-six thousand five hundred forty-nine'),\n(8885, 13497, 'thirteen thousand four hundred ninety-seven'),\n(8886, 68912, 'sixty-eight thousand nine hundred twelve'),\n(8887, 58536, 'fifty-eight thousand five hundred thirty-six'),\n(8888, 49032, 'forty-nine thousand thirty-two'),\n(8889, 91048, 'ninety-one thousand forty-eight'),\n(8890, 27109, 'twenty-seven thousand one hundred nine'),\n(8891, 62303, 'sixty-two thousand three hundred three'),\n(8892, 46713, 'forty-six thousand seven hundred thirteen'),\n(8893, 29509, 'twenty-nine thousand five hundred nine'),\n(8894, 97802, 'ninety-seven thousand eight hundred two'),\n(8895, 44556, 'forty-four thousand five hundred fifty-six'),\n(8896, 5497, 'five thousand four hundred ninety-seven'),\n(8897, 25520, 'twenty-five thousand five hundred twenty'),\n(8898, 59553, 'fifty-nine thousand five hundred fifty-three'),\n(8899, 47547, 'forty-seven thousand five hundred forty-seven'),\n(8900, 98328, 'ninety-eight thousand three hundred twenty-eight'),\n(8901, 43350, 'forty-three thousand three hundred fifty'),\n(8902, 70041, 'seventy thousand forty-one'),\n(8903, 46790, 'forty-six thousand seven hundred ninety'),\n(8904, 63700, 'sixty-three thousand seven hundred'),\n(8905, 1874, 'one thousand eight hundred seventy-four'),\n(8906, 76509, 'seventy-six thousand five hundred nine'),\n(8907, 11677, 'eleven thousand six hundred seventy-seven'),\n(8908, 9172, 'nine thousand one hundred seventy-two'),\n(8909, 97636, 'ninety-seven thousand six hundred thirty-six'),\n(8910, 43749, 'forty-three thousand seven hundred forty-nine'),\n(8911, 40142, 'forty thousand one hundred forty-two'),\n(8912, 84893, 'eighty-four thousand eight hundred ninety-three'),\n(8913, 69096, 'sixty-nine thousand ninety-six'),\n(8914, 21742, 'twenty-one thousand seven hundred forty-two'),\n(8915, 2143, 'two thousand one hundred forty-three'),\n(8916, 5636, 'five thousand six hundred thirty-six'),\n(8917, 35218, 'thirty-five thousand two hundred eighteen'),\n(8918, 54891, 'fifty-four thousand eight hundred ninety-one'),\n(8919, 84106, 'eighty-four thousand one hundred six'),\n(8920, 10062, 'ten thousand sixty-two'),\n(8921, 53287, 'fifty-three thousand two hundred eighty-seven'),\n(8922, 29599, 'twenty-nine thousand five hundred ninety-nine'),\n(8923, 28047, 'twenty-eight thousand forty-seven'),\n(8924, 72747, 'seventy-two thousand seven hundred forty-seven'),\n(8925, 94010, 'ninety-four thousand ten'),\n(8926, 71607, 'seventy-one thousand six hundred seven'),\n(8927, 58411, 'fifty-eight thousand four hundred eleven'),\n(8928, 29394, 'twenty-nine thousand three hundred ninety-four'),\n(8929, 2245, 'two thousand two hundred forty-five'),\n(8930, 94946, 'ninety-four thousand nine hundred forty-six'),\n(8931, 72192, 'seventy-two thousand one hundred ninety-two'),\n(8932, 74118, 'seventy-four thousand one hundred eighteen'),\n(8933, 18975, 'eighteen thousand nine hundred seventy-five'),\n(8934, 19624, 'nineteen thousand six hundred twenty-four'),\n(8935, 27786, 'twenty-seven thousand seven hundred eighty-six'),\n(8936, 66755, 'sixty-six thousand seven hundred fifty-five'),\n(8937, 75729, 'seventy-five thousand seven hundred twenty-nine'),\n(8938, 16637, 'sixteen thousand six hundred thirty-seven'),\n(8939, 8952, 'eight thousand nine hundred fifty-two'),\n(8940, 50266, 'fifty thousand two hundred sixty-six'),\n(8941, 39453, 'thirty-nine thousand four hundred fifty-three'),\n(8942, 98307, 'ninety-eight thousand three hundred seven'),\n(8943, 52979, 'fifty-two thousand nine hundred seventy-nine'),\n(8944, 1207, 'one thousand two hundred seven'),\n(8945, 41546, 'forty-one thousand five hundred forty-six'),\n(8946, 45453, 'forty-five thousand four hundred fifty-three'),\n(8947, 59251, 'fifty-nine thousand two hundred fifty-one'),\n(8948, 6339, 'six thousand three hundred thirty-nine'),\n(8949, 13732, 'thirteen thousand seven hundred thirty-two'),\n(8950, 71798, 'seventy-one thousand seven hundred ninety-eight'),\n(8951, 14864, 'fourteen thousand eight hundred sixty-four'),\n(8952, 56612, 'fifty-six thousand six hundred twelve'),\n(8953, 78046, 'seventy-eight thousand forty-six'),\n(8954, 18800, 'eighteen thousand eight hundred'),\n(8955, 22659, 'twenty-two thousand six hundred fifty-nine'),\n(8956, 33144, 'thirty-three thousand one hundred forty-four'),\n(8957, 64103, 'sixty-four thousand one hundred three'),\n(8958, 96543, 'ninety-six thousand five hundred forty-three'),\n(8959, 79466, 'seventy-nine thousand four hundred sixty-six'),\n(8960, 64542, 'sixty-four thousand five hundred forty-two'),\n(8961, 67406, 'sixty-seven thousand four hundred six'),\n(8962, 92088, 'ninety-two thousand eighty-eight'),\n(8963, 87731, 'eighty-seven thousand seven hundred thirty-one'),\n(8964, 10933, 'ten thousand nine hundred thirty-three'),\n(8965, 79658, 'seventy-nine thousand six hundred fifty-eight'),\n(8966, 39486, 'thirty-nine thousand four hundred eighty-six'),\n(8967, 27642, 'twenty-seven thousand six hundred forty-two'),\n(8968, 18531, 'eighteen thousand five hundred thirty-one'),\n(8969, 65412, 'sixty-five thousand four hundred twelve'),\n(8970, 43478, 'forty-three thousand four hundred seventy-eight'),\n(8971, 50522, 'fifty thousand five hundred twenty-two'),\n(8972, 74117, 'seventy-four thousand one hundred seventeen'),\n(8973, 90745, 'ninety thousand seven hundred forty-five'),\n(8974, 23237, 'twenty-three thousand two hundred thirty-seven'),\n(8975, 57047, 'fifty-seven thousand forty-seven'),\n(8976, 1198, 'one thousand one hundred ninety-eight'),\n(8977, 13445, 'thirteen thousand four hundred forty-five'),\n(8978, 21928, 'twenty-one thousand nine hundred twenty-eight'),\n(8979, 65524, 'sixty-five thousand five hundred twenty-four'),\n(8980, 76433, 'seventy-six thousand four hundred thirty-three'),\n(8981, 27187, 'twenty-seven thousand one hundred eighty-seven'),\n(8982, 1220, 'one thousand two hundred twenty'),\n(8983, 65201, 'sixty-five thousand two hundred one'),\n(8984, 33508, 'thirty-three thousand five hundred eight'),\n(8985, 79567, 'seventy-nine thousand five hundred sixty-seven'),\n(8986, 57891, 'fifty-seven thousand eight hundred ninety-one'),\n(8987, 88043, 'eighty-eight thousand forty-three'),\n(8988, 67273, 'sixty-seven thousand two hundred seventy-three'),\n(8989, 59250, 'fifty-nine thousand two hundred fifty'),\n(8990, 16652, 'sixteen thousand six hundred fifty-two'),\n(8991, 8824, 'eight thousand eight hundred twenty-four'),\n(8992, 71409, 'seventy-one thousand four hundred nine'),\n(8993, 26349, 'twenty-six thousand three hundred forty-nine'),\n(8994, 70580, 'seventy thousand five hundred eighty'),\n(8995, 42193, 'forty-two thousand one hundred ninety-three'),\n(8996, 18168, 'eighteen thousand one hundred sixty-eight'),\n(8997, 2223, 'two thousand two hundred twenty-three'),\n(8998, 42209, 'forty-two thousand two hundred nine'),\n(8999, 41704, 'forty-one thousand seven hundred four'),\n(9000, 47265, 'forty-seven thousand two hundred sixty-five'),\n(9001, 72545, 'seventy-two thousand five hundred forty-five'),\n(9002, 44849, 'forty-four thousand eight hundred forty-nine'),\n(9003, 30204, 'thirty thousand two hundred four'),\n(9004, 8644, 'eight thousand six hundred forty-four'),\n(9005, 98294, 'ninety-eight thousand two hundred ninety-four'),\n(9006, 72624, 'seventy-two thousand six hundred twenty-four'),\n(9007, 24537, 'twenty-four thousand five hundred thirty-seven'),\n(9008, 82120, 'eighty-two thousand one hundred twenty'),\n(9009, 77601, 'seventy-seven thousand six hundred one'),\n(9010, 75426, 'seventy-five thousand four hundred twenty-six'),\n(9011, 13571, 'thirteen thousand five hundred seventy-one'),\n(9012, 15433, 'fifteen thousand four hundred thirty-three'),\n(9013, 87400, 'eighty-seven thousand four hundred'),\n(9014, 70696, 'seventy thousand six hundred ninety-six'),\n(9015, 64448, 'sixty-four thousand four hundred forty-eight'),\n(9016, 5710, 'five thousand seven hundred ten'),\n(9017, 77765, 'seventy-seven thousand seven hundred sixty-five'),\n(9018, 14911, 'fourteen thousand nine hundred eleven'),\n(9019, 95192, 'ninety-five thousand one hundred ninety-two'),\n(9020, 12800, 'twelve thousand eight hundred'),\n(9021, 11553, 'eleven thousand five hundred fifty-three'),\n(9022, 20986, 'twenty thousand nine hundred eighty-six'),\n(9023, 45636, 'forty-five thousand six hundred thirty-six'),\n(9024, 15259, 'fifteen thousand two hundred fifty-nine'),\n(9025, 85665, 'eighty-five thousand six hundred sixty-five'),\n(9026, 94631, 'ninety-four thousand six hundred thirty-one'),\n(9027, 18275, 'eighteen thousand two hundred seventy-five'),\n(9028, 17479, 'seventeen thousand four hundred seventy-nine'),\n(9029, 29074, 'twenty-nine thousand seventy-four'),\n(9030, 36288, 'thirty-six thousand two hundred eighty-eight'),\n(9031, 38724, 'thirty-eight thousand seven hundred twenty-four'),\n(9032, 36917, 'thirty-six thousand nine hundred seventeen'),\n(9033, 50959, 'fifty thousand nine hundred fifty-nine'),\n(9034, 40294, 'forty thousand two hundred ninety-four'),\n(9035, 13877, 'thirteen thousand eight hundred seventy-seven'),\n(9036, 21680, 'twenty-one thousand six hundred eighty'),\n(9037, 47588, 'forty-seven thousand five hundred eighty-eight'),\n(9038, 68859, 'sixty-eight thousand eight hundred fifty-nine'),\n(9039, 1388, 'one thousand three hundred eighty-eight'),\n(9040, 39594, 'thirty-nine thousand five hundred ninety-four'),\n(9041, 34961, 'thirty-four thousand nine hundred sixty-one'),\n(9042, 58399, 'fifty-eight thousand three hundred ninety-nine'),\n(9043, 60409, 'sixty thousand four hundred nine'),\n(9044, 92031, 'ninety-two thousand thirty-one'),\n(9045, 81569, 'eighty-one thousand five hundred sixty-nine'),\n(9046, 69272, 'sixty-nine thousand two hundred seventy-two'),\n(9047, 63080, 'sixty-three thousand eighty'),\n(9048, 72366, 'seventy-two thousand three hundred sixty-six'),\n(9049, 78403, 'seventy-eight thousand four hundred three'),\n(9050, 74272, 'seventy-four thousand two hundred seventy-two'),\n(9051, 92504, 'ninety-two thousand five hundred four'),\n(9052, 52040, 'fifty-two thousand forty'),\n(9053, 16682, 'sixteen thousand six hundred eighty-two'),\n(9054, 84420, 'eighty-four thousand four hundred twenty'),\n(9055, 22051, 'twenty-two thousand fifty-one'),\n(9056, 25728, 'twenty-five thousand seven hundred twenty-eight'),\n(9057, 9062, 'nine thousand sixty-two'),\n(9058, 83578, 'eighty-three thousand five hundred seventy-eight'),\n(9059, 16698, 'sixteen thousand six hundred ninety-eight'),\n(9060, 90904, 'ninety thousand nine hundred four'),\n(9061, 92143, 'ninety-two thousand one hundred forty-three'),\n(9062, 41489, 'forty-one thousand four hundred eighty-nine'),\n(9063, 41463, 'forty-one thousand four hundred sixty-three'),\n(9064, 56285, 'fifty-six thousand two hundred eighty-five'),\n(9065, 9501, 'nine thousand five hundred one'),\n(9066, 8798, 'eight thousand seven hundred ninety-eight'),\n(9067, 52952, 'fifty-two thousand nine hundred fifty-two'),\n(9068, 19648, 'nineteen thousand six hundred forty-eight'),\n(9069, 46538, 'forty-six thousand five hundred thirty-eight'),\n(9070, 84859, 'eighty-four thousand eight hundred fifty-nine'),\n(9071, 89801, 'eighty-nine thousand eight hundred one'),\n(9072, 83337, 'eighty-three thousand three hundred thirty-seven'),\n(9073, 18314, 'eighteen thousand three hundred fourteen'),\n(9074, 41944, 'forty-one thousand nine hundred forty-four'),\n(9075, 28894, 'twenty-eight thousand eight hundred ninety-four'),\n(9076, 11182, 'eleven thousand one hundred eighty-two'),\n(9077, 4470, 'four thousand four hundred seventy'),\n(9078, 6545, 'six thousand five hundred forty-five'),\n(9079, 18450, 'eighteen thousand four hundred fifty'),\n(9080, 59891, 'fifty-nine thousand eight hundred ninety-one'),\n(9081, 14079, 'fourteen thousand seventy-nine'),\n(9082, 493, 'four hundred ninety-three'),\n(9083, 51059, 'fifty-one thousand fifty-nine'),\n(9084, 69569, 'sixty-nine thousand five hundred sixty-nine'),\n(9085, 48058, 'forty-eight thousand fifty-eight'),\n(9086, 93376, 'ninety-three thousand three hundred seventy-six'),\n(9087, 3512, 'three thousand five hundred twelve'),\n(9088, 34603, 'thirty-four thousand six hundred three'),\n(9089, 37577, 'thirty-seven thousand five hundred seventy-seven'),\n(9090, 96520, 'ninety-six thousand five hundred twenty'),\n(9091, 94347, 'ninety-four thousand three hundred forty-seven'),\n(9092, 36664, 'thirty-six thousand six hundred sixty-four'),\n(9093, 66240, 'sixty-six thousand two hundred forty'),\n(9094, 98725, 'ninety-eight thousand seven hundred twenty-five'),\n(9095, 53715, 'fifty-three thousand seven hundred fifteen'),\n(9096, 3137, 'three thousand one hundred thirty-seven'),\n(9097, 44103, 'forty-four thousand one hundred three'),\n(9098, 87368, 'eighty-seven thousand three hundred sixty-eight'),\n(9099, 57042, 'fifty-seven thousand forty-two'),\n(9100, 29761, 'twenty-nine thousand seven hundred sixty-one'),\n(9101, 87985, 'eighty-seven thousand nine hundred eighty-five'),\n(9102, 63277, 'sixty-three thousand two hundred seventy-seven'),\n(9103, 84961, 'eighty-four thousand nine hundred sixty-one'),\n(9104, 75307, 'seventy-five thousand three hundred seven'),\n(9105, 42729, 'forty-two thousand seven hundred twenty-nine'),\n(9106, 85873, 'eighty-five thousand eight hundred seventy-three'),\n(9107, 3983, 'three thousand nine hundred eighty-three'),\n(9108, 36607, 'thirty-six thousand six hundred seven'),\n(9109, 55814, 'fifty-five thousand eight hundred fourteen'),\n(9110, 18117, 'eighteen thousand one hundred seventeen'),\n(9111, 12887, 'twelve thousand eight hundred eighty-seven'),\n(9112, 30494, 'thirty thousand four hundred ninety-four'),\n(9113, 52338, 'fifty-two thousand three hundred thirty-eight'),\n(9114, 80206, 'eighty thousand two hundred six'),\n(9115, 24533, 'twenty-four thousand five hundred thirty-three'),\n(9116, 44832, 'forty-four thousand eight hundred thirty-two'),\n(9117, 47489, 'forty-seven thousand four hundred eighty-nine'),\n(9118, 8504, 'eight thousand five hundred four'),\n(9119, 47621, 'forty-seven thousand six hundred twenty-one'),\n(9120, 10406, 'ten thousand four hundred six'),\n(9121, 38895, 'thirty-eight thousand eight hundred ninety-five'),\n(9122, 15264, 'fifteen thousand two hundred sixty-four'),\n(9123, 35635, 'thirty-five thousand six hundred thirty-five'),\n(9124, 18576, 'eighteen thousand five hundred seventy-six'),\n(9125, 81105, 'eighty-one thousand one hundred five'),\n(9126, 66310, 'sixty-six thousand three hundred ten'),\n(9127, 55519, 'fifty-five thousand five hundred nineteen'),\n(9128, 75799, 'seventy-five thousand seven hundred ninety-nine'),\n(9129, 97585, 'ninety-seven thousand five hundred eighty-five'),\n(9130, 4743, 'four thousand seven hundred forty-three'),\n(9131, 19892, 'nineteen thousand eight hundred ninety-two'),\n(9132, 36848, 'thirty-six thousand eight hundred forty-eight'),\n(9133, 58513, 'fifty-eight thousand five hundred thirteen'),\n(9134, 34212, 'thirty-four thousand two hundred twelve'),\n(9135, 66454, 'sixty-six thousand four hundred fifty-four'),\n(9136, 32685, 'thirty-two thousand six hundred eighty-five'),\n(9137, 29310, 'twenty-nine thousand three hundred ten'),\n(9138, 87268, 'eighty-seven thousand two hundred sixty-eight'),\n(9139, 45023, 'forty-five thousand twenty-three'),\n(9140, 71538, 'seventy-one thousand five hundred thirty-eight'),\n(9141, 96983, 'ninety-six thousand nine hundred eighty-three'),\n(9142, 70920, 'seventy thousand nine hundred twenty'),\n(9143, 15194, 'fifteen thousand one hundred ninety-four'),\n(9144, 31297, 'thirty-one thousand two hundred ninety-seven'),\n(9145, 96061, 'ninety-six thousand sixty-one'),\n(9146, 45673, 'forty-five thousand six hundred seventy-three'),\n(9147, 13200, 'thirteen thousand two hundred'),\n(9148, 37673, 'thirty-seven thousand six hundred seventy-three'),\n(9149, 21236, 'twenty-one thousand two hundred thirty-six'),\n(9150, 80021, 'eighty thousand twenty-one'),\n(9151, 70383, 'seventy thousand three hundred eighty-three'),\n(9152, 24400, 'twenty-four thousand four hundred'),\n(9153, 4740, 'four thousand seven hundred forty'),\n(9154, 68401, 'sixty-eight thousand four hundred one'),\n(9155, 63470, 'sixty-three thousand four hundred seventy'),\n(9156, 13977, 'thirteen thousand nine hundred seventy-seven'),\n(9157, 14138, 'fourteen thousand one hundred thirty-eight'),\n(9158, 30075, 'thirty thousand seventy-five'),\n(9159, 7684, 'seven thousand six hundred eighty-four'),\n(9160, 37382, 'thirty-seven thousand three hundred eighty-two'),\n(9161, 51074, 'fifty-one thousand seventy-four'),\n(9162, 32413, 'thirty-two thousand four hundred thirteen'),\n(9163, 95519, 'ninety-five thousand five hundred nineteen'),\n(9164, 81342, 'eighty-one thousand three hundred forty-two'),\n(9165, 83870, 'eighty-three thousand eight hundred seventy'),\n(9166, 97186, 'ninety-seven thousand one hundred eighty-six'),\n(9167, 28563, 'twenty-eight thousand five hundred sixty-three'),\n(9168, 55274, 'fifty-five thousand two hundred seventy-four'),\n(9169, 66171, 'sixty-six thousand one hundred seventy-one'),\n(9170, 51477, 'fifty-one thousand four hundred seventy-seven'),\n(9171, 85345, 'eighty-five thousand three hundred forty-five'),\n(9172, 17918, 'seventeen thousand nine hundred eighteen'),\n(9173, 3711, 'three thousand seven hundred eleven'),\n(9174, 65063, 'sixty-five thousand sixty-three'),\n(9175, 77979, 'seventy-seven thousand nine hundred seventy-nine'),\n(9176, 74922, 'seventy-four thousand nine hundred twenty-two'),\n(9177, 35549, 'thirty-five thousand five hundred forty-nine'),\n(9178, 17908, 'seventeen thousand nine hundred eight'),\n(9179, 40312, 'forty thousand three hundred twelve'),\n(9180, 57888, 'fifty-seven thousand eight hundred eighty-eight'),\n(9181, 94800, 'ninety-four thousand eight hundred'),\n(9182, 88574, 'eighty-eight thousand five hundred seventy-four'),\n(9183, 49016, 'forty-nine thousand sixteen'),\n(9184, 23742, 'twenty-three thousand seven hundred forty-two'),\n(9185, 86656, 'eighty-six thousand six hundred fifty-six'),\n(9186, 50749, 'fifty thousand seven hundred forty-nine'),\n(9187, 12446, 'twelve thousand four hundred forty-six'),\n(9188, 98024, 'ninety-eight thousand twenty-four'),\n(9189, 57253, 'fifty-seven thousand two hundred fifty-three'),\n(9190, 69315, 'sixty-nine thousand three hundred fifteen'),\n(9191, 92635, 'ninety-two thousand six hundred thirty-five'),\n(9192, 19044, 'nineteen thousand forty-four'),\n(9193, 50229, 'fifty thousand two hundred twenty-nine'),\n(9194, 7691, 'seven thousand six hundred ninety-one'),\n(9195, 31349, 'thirty-one thousand three hundred forty-nine'),\n(9196, 21118, 'twenty-one thousand one hundred eighteen'),\n(9197, 97045, 'ninety-seven thousand forty-five'),\n(9198, 5454, 'five thousand four hundred fifty-four'),\n(9199, 68766, 'sixty-eight thousand seven hundred sixty-six'),\n(9200, 50406, 'fifty thousand four hundred six'),\n(9201, 92867, 'ninety-two thousand eight hundred sixty-seven'),\n(9202, 18343, 'eighteen thousand three hundred forty-three'),\n(9203, 39347, 'thirty-nine thousand three hundred forty-seven'),\n(9204, 39519, 'thirty-nine thousand five hundred nineteen'),\n(9205, 91687, 'ninety-one thousand six hundred eighty-seven'),\n(9206, 30626, 'thirty thousand six hundred twenty-six'),\n(9207, 77896, 'seventy-seven thousand eight hundred ninety-six'),\n(9208, 5713, 'five thousand seven hundred thirteen'),\n(9209, 70211, 'seventy thousand two hundred eleven'),\n(9210, 52132, 'fifty-two thousand one hundred thirty-two'),\n(9211, 71921, 'seventy-one thousand nine hundred twenty-one'),\n(9212, 85753, 'eighty-five thousand seven hundred fifty-three'),\n(9213, 22211, 'twenty-two thousand two hundred eleven'),\n(9214, 14714, 'fourteen thousand seven hundred fourteen'),\n(9215, 47957, 'forty-seven thousand nine hundred fifty-seven'),\n(9216, 67867, 'sixty-seven thousand eight hundred sixty-seven'),\n(9217, 4372, 'four thousand three hundred seventy-two'),\n(9218, 3134, 'three thousand one hundred thirty-four'),\n(9219, 38687, 'thirty-eight thousand six hundred eighty-seven'),\n(9220, 4799, 'four thousand seven hundred ninety-nine'),\n(9221, 38295, 'thirty-eight thousand two hundred ninety-five'),\n(9222, 70443, 'seventy thousand four hundred forty-three'),\n(9223, 33871, 'thirty-three thousand eight hundred seventy-one'),\n(9224, 45367, 'forty-five thousand three hundred sixty-seven'),\n(9225, 81287, 'eighty-one thousand two hundred eighty-seven'),\n(9226, 73414, 'seventy-three thousand four hundred fourteen'),\n(9227, 73746, 'seventy-three thousand seven hundred forty-six'),\n(9228, 7579, 'seven thousand five hundred seventy-nine'),\n(9229, 42253, 'forty-two thousand two hundred fifty-three'),\n(9230, 19213, 'nineteen thousand two hundred thirteen'),\n(9231, 79120, 'seventy-nine thousand one hundred twenty'),\n(9232, 17001, 'seventeen thousand one'),\n(9233, 82992, 'eighty-two thousand nine hundred ninety-two'),\n(9234, 39801, 'thirty-nine thousand eight hundred one'),\n(9235, 39907, 'thirty-nine thousand nine hundred seven'),\n(9236, 97892, 'ninety-seven thousand eight hundred ninety-two'),\n(9237, 51197, 'fifty-one thousand one hundred ninety-seven'),\n(9238, 48630, 'forty-eight thousand six hundred thirty'),\n(9239, 87649, 'eighty-seven thousand six hundred forty-nine'),\n(9240, 90576, 'ninety thousand five hundred seventy-six'),\n(9241, 26048, 'twenty-six thousand forty-eight'),\n(9242, 76114, 'seventy-six thousand one hundred fourteen'),\n(9243, 58204, 'fifty-eight thousand two hundred four'),\n(9244, 98612, 'ninety-eight thousand six hundred twelve'),\n(9245, 86470, 'eighty-six thousand four hundred seventy'),\n(9246, 78258, 'seventy-eight thousand two hundred fifty-eight'),\n(9247, 11347, 'eleven thousand three hundred forty-seven'),\n(9248, 26374, 'twenty-six thousand three hundred seventy-four'),\n(9249, 96647, 'ninety-six thousand six hundred forty-seven'),\n(9250, 95816, 'ninety-five thousand eight hundred sixteen'),\n(9251, 27239, 'twenty-seven thousand two hundred thirty-nine'),\n(9252, 22610, 'twenty-two thousand six hundred ten'),\n(9253, 44620, 'forty-four thousand six hundred twenty'),\n(9254, 26021, 'twenty-six thousand twenty-one'),\n(9255, 24197, 'twenty-four thousand one hundred ninety-seven'),\n(9256, 42183, 'forty-two thousand one hundred eighty-three'),\n(9257, 72526, 'seventy-two thousand five hundred twenty-six'),\n(9258, 35207, 'thirty-five thousand two hundred seven'),\n(9259, 92524, 'ninety-two thousand five hundred twenty-four'),\n(9260, 95185, 'ninety-five thousand one hundred eighty-five'),\n(9261, 38071, 'thirty-eight thousand seventy-one'),\n(9262, 9049, 'nine thousand forty-nine'),\n(9263, 47693, 'forty-seven thousand six hundred ninety-three'),\n(9264, 83846, 'eighty-three thousand eight hundred forty-six'),\n(9265, 11549, 'eleven thousand five hundred forty-nine'),\n(9266, 36414, 'thirty-six thousand four hundred fourteen'),\n(9267, 78632, 'seventy-eight thousand six hundred thirty-two'),\n(9268, 33438, 'thirty-three thousand four hundred thirty-eight'),\n(9269, 50465, 'fifty thousand four hundred sixty-five'),\n(9270, 64075, 'sixty-four thousand seventy-five'),\n(9271, 99695, 'ninety-nine thousand six hundred ninety-five'),\n(9272, 83342, 'eighty-three thousand three hundred forty-two'),\n(9273, 6498, 'six thousand four hundred ninety-eight'),\n(9274, 25008, 'twenty-five thousand eight'),\n(9275, 56233, 'fifty-six thousand two hundred thirty-three'),\n(9276, 61233, 'sixty-one thousand two hundred thirty-three'),\n(9277, 52338, 'fifty-two thousand three hundred thirty-eight'),\n(9278, 65044, 'sixty-five thousand forty-four'),\n(9279, 13969, 'thirteen thousand nine hundred sixty-nine'),\n(9280, 98431, 'ninety-eight thousand four hundred thirty-one'),\n(9281, 60655, 'sixty thousand six hundred fifty-five'),\n(9282, 78662, 'seventy-eight thousand six hundred sixty-two'),\n(9283, 19926, 'nineteen thousand nine hundred twenty-six'),\n(9284, 40295, 'forty thousand two hundred ninety-five'),\n(9285, 73494, 'seventy-three thousand four hundred ninety-four'),\n(9286, 47895, 'forty-seven thousand eight hundred ninety-five'),\n(9287, 74753, 'seventy-four thousand seven hundred fifty-three'),\n(9288, 44197, 'forty-four thousand one hundred ninety-seven'),\n(9289, 15540, 'fifteen thousand five hundred forty'),\n(9290, 62565, 'sixty-two thousand five hundred sixty-five'),\n(9291, 67677, 'sixty-seven thousand six hundred seventy-seven'),\n(9292, 78102, 'seventy-eight thousand one hundred two'),\n(9293, 11197, 'eleven thousand one hundred ninety-seven'),\n(9294, 35893, 'thirty-five thousand eight hundred ninety-three'),\n(9295, 7969, 'seven thousand nine hundred sixty-nine'),\n(9296, 24802, 'twenty-four thousand eight hundred two'),\n(9297, 48936, 'forty-eight thousand nine hundred thirty-six'),\n(9298, 5711, 'five thousand seven hundred eleven'),\n(9299, 63335, 'sixty-three thousand three hundred thirty-five'),\n(9300, 92230, 'ninety-two thousand two hundred thirty'),\n(9301, 71216, 'seventy-one thousand two hundred sixteen'),\n(9302, 40874, 'forty thousand eight hundred seventy-four'),\n(9303, 4409, 'four thousand four hundred nine'),\n(9304, 1767, 'one thousand seven hundred sixty-seven'),\n(9305, 25589, 'twenty-five thousand five hundred eighty-nine'),\n(9306, 33929, 'thirty-three thousand nine hundred twenty-nine'),\n(9307, 12472, 'twelve thousand four hundred seventy-two'),\n(9308, 80058, 'eighty thousand fifty-eight'),\n(9309, 21499, 'twenty-one thousand four hundred ninety-nine'),\n(9310, 34393, 'thirty-four thousand three hundred ninety-three'),\n(9311, 98529, 'ninety-eight thousand five hundred twenty-nine'),\n(9312, 27375, 'twenty-seven thousand three hundred seventy-five'),\n(9313, 83557, 'eighty-three thousand five hundred fifty-seven'),\n(9314, 33473, 'thirty-three thousand four hundred seventy-three'),\n(9315, 10352, 'ten thousand three hundred fifty-two'),\n(9316, 34182, 'thirty-four thousand one hundred eighty-two'),\n(9317, 10750, 'ten thousand seven hundred fifty'),\n(9318, 42903, 'forty-two thousand nine hundred three'),\n(9319, 60628, 'sixty thousand six hundred twenty-eight'),\n(9320, 82460, 'eighty-two thousand four hundred sixty'),\n(9321, 41144, 'forty-one thousand one hundred forty-four'),\n(9322, 80916, 'eighty thousand nine hundred sixteen'),\n(9323, 39817, 'thirty-nine thousand eight hundred seventeen'),\n(9324, 10338, 'ten thousand three hundred thirty-eight'),\n(9325, 68058, 'sixty-eight thousand fifty-eight'),\n(9326, 23224, 'twenty-three thousand two hundred twenty-four'),\n(9327, 6304, 'six thousand three hundred four'),\n(9328, 31083, 'thirty-one thousand eighty-three'),\n(9329, 87939, 'eighty-seven thousand nine hundred thirty-nine'),\n(9330, 38949, 'thirty-eight thousand nine hundred forty-nine'),\n(9331, 26294, 'twenty-six thousand two hundred ninety-four'),\n(9332, 34191, 'thirty-four thousand one hundred ninety-one'),\n(9333, 80000, 'eighty thousand'),\n(9334, 16885, 'sixteen thousand eight hundred eighty-five'),\n(9335, 96173, 'ninety-six thousand one hundred seventy-three'),\n(9336, 68596, 'sixty-eight thousand five hundred ninety-six'),\n(9337, 72711, 'seventy-two thousand seven hundred eleven'),\n(9338, 71545, 'seventy-one thousand five hundred forty-five'),\n(9339, 61996, 'sixty-one thousand nine hundred ninety-six'),\n(9340, 68801, 'sixty-eight thousand eight hundred one'),\n(9341, 26792, 'twenty-six thousand seven hundred ninety-two'),\n(9342, 73947, 'seventy-three thousand nine hundred forty-seven'),\n(9343, 14713, 'fourteen thousand seven hundred thirteen'),\n(9344, 79149, 'seventy-nine thousand one hundred forty-nine'),\n(9345, 10711, 'ten thousand seven hundred eleven'),\n(9346, 42410, 'forty-two thousand four hundred ten'),\n(9347, 27736, 'twenty-seven thousand seven hundred thirty-six'),\n(9348, 48017, 'forty-eight thousand seventeen'),\n(9349, 14655, 'fourteen thousand six hundred fifty-five'),\n(9350, 37513, 'thirty-seven thousand five hundred thirteen'),\n(9351, 56325, 'fifty-six thousand three hundred twenty-five'),\n(9352, 36251, 'thirty-six thousand two hundred fifty-one'),\n(9353, 84050, 'eighty-four thousand fifty'),\n(9354, 99886, 'ninety-nine thousand eight hundred eighty-six'),\n(9355, 36997, 'thirty-six thousand nine hundred ninety-seven'),\n(9356, 47435, 'forty-seven thousand four hundred thirty-five'),\n(9357, 99736, 'ninety-nine thousand seven hundred thirty-six'),\n(9358, 20499, 'twenty thousand four hundred ninety-nine'),\n(9359, 70636, 'seventy thousand six hundred thirty-six'),\n(9360, 55045, 'fifty-five thousand forty-five'),\n(9361, 83284, 'eighty-three thousand two hundred eighty-four'),\n(9362, 95381, 'ninety-five thousand three hundred eighty-one'),\n(9363, 44975, 'forty-four thousand nine hundred seventy-five'),\n(9364, 35334, 'thirty-five thousand three hundred thirty-four'),\n(9365, 98581, 'ninety-eight thousand five hundred eighty-one'),\n(9366, 74836, 'seventy-four thousand eight hundred thirty-six'),\n(9367, 31911, 'thirty-one thousand nine hundred eleven'),\n(9368, 83550, 'eighty-three thousand five hundred fifty'),\n(9369, 59749, 'fifty-nine thousand seven hundred forty-nine'),\n(9370, 22048, 'twenty-two thousand forty-eight'),\n(9371, 77168, 'seventy-seven thousand one hundred sixty-eight'),\n(9372, 34265, 'thirty-four thousand two hundred sixty-five'),\n(9373, 64598, 'sixty-four thousand five hundred ninety-eight'),\n(9374, 56825, 'fifty-six thousand eight hundred twenty-five'),\n(9375, 6105, 'six thousand one hundred five'),\n(9376, 50099, 'fifty thousand ninety-nine'),\n(9377, 7719, 'seven thousand seven hundred nineteen'),\n(9378, 78128, 'seventy-eight thousand one hundred twenty-eight'),\n(9379, 29798, 'twenty-nine thousand seven hundred ninety-eight'),\n(9380, 29342, 'twenty-nine thousand three hundred forty-two'),\n(9381, 929, 'nine hundred twenty-nine'),\n(9382, 75085, 'seventy-five thousand eighty-five'),\n(9383, 14889, 'fourteen thousand eight hundred eighty-nine'),\n(9384, 42080, 'forty-two thousand eighty'),\n(9385, 96706, 'ninety-six thousand seven hundred six'),\n(9386, 63983, 'sixty-three thousand nine hundred eighty-three'),\n(9387, 56614, 'fifty-six thousand six hundred fourteen'),\n(9388, 8128, 'eight thousand one hundred twenty-eight'),\n(9389, 47893, 'forty-seven thousand eight hundred ninety-three'),\n(9390, 21491, 'twenty-one thousand four hundred ninety-one'),\n(9391, 98349, 'ninety-eight thousand three hundred forty-nine'),\n(9392, 2600, 'two thousand six hundred'),\n(9393, 62776, 'sixty-two thousand seven hundred seventy-six'),\n(9394, 235, 'two hundred thirty-five'),\n(9395, 24642, 'twenty-four thousand six hundred forty-two'),\n(9396, 8573, 'eight thousand five hundred seventy-three'),\n(9397, 4973, 'four thousand nine hundred seventy-three'),\n(9398, 10118, 'ten thousand one hundred eighteen'),\n(9399, 68282, 'sixty-eight thousand two hundred eighty-two'),\n(9400, 25461, 'twenty-five thousand four hundred sixty-one'),\n(9401, 88512, 'eighty-eight thousand five hundred twelve'),\n(9402, 57955, 'fifty-seven thousand nine hundred fifty-five'),\n(9403, 29978, 'twenty-nine thousand nine hundred seventy-eight'),\n(9404, 4266, 'four thousand two hundred sixty-six'),\n(9405, 81952, 'eighty-one thousand nine hundred fifty-two'),\n(9406, 80372, 'eighty thousand three hundred seventy-two'),\n(9407, 41591, 'forty-one thousand five hundred ninety-one'),\n(9408, 32117, 'thirty-two thousand one hundred seventeen'),\n(9409, 8638, 'eight thousand six hundred thirty-eight'),\n(9410, 3751, 'three thousand seven hundred fifty-one'),\n(9411, 96206, 'ninety-six thousand two hundred six'),\n(9412, 12973, 'twelve thousand nine hundred seventy-three'),\n(9413, 26453, 'twenty-six thousand four hundred fifty-three'),\n(9414, 77494, 'seventy-seven thousand four hundred ninety-four'),\n(9415, 55029, 'fifty-five thousand twenty-nine'),\n(9416, 14160, 'fourteen thousand one hundred sixty'),\n(9417, 64801, 'sixty-four thousand eight hundred one'),\n(9418, 31111, 'thirty-one thousand one hundred eleven'),\n(9419, 13869, 'thirteen thousand eight hundred sixty-nine'),\n(9420, 59804, 'fifty-nine thousand eight hundred four'),\n(9421, 99583, 'ninety-nine thousand five hundred eighty-three'),\n(9422, 94327, 'ninety-four thousand three hundred twenty-seven'),\n(9423, 88312, 'eighty-eight thousand three hundred twelve'),\n(9424, 75793, 'seventy-five thousand seven hundred ninety-three'),\n(9425, 98157, 'ninety-eight thousand one hundred fifty-seven'),\n(9426, 65820, 'sixty-five thousand eight hundred twenty'),\n(9427, 92481, 'ninety-two thousand four hundred eighty-one'),\n(9428, 76234, 'seventy-six thousand two hundred thirty-four'),\n(9429, 96895, 'ninety-six thousand eight hundred ninety-five'),\n(9430, 81425, 'eighty-one thousand four hundred twenty-five'),\n(9431, 62758, 'sixty-two thousand seven hundred fifty-eight'),\n(9432, 37220, 'thirty-seven thousand two hundred twenty'),\n(9433, 26325, 'twenty-six thousand three hundred twenty-five'),\n(9434, 8769, 'eight thousand seven hundred sixty-nine'),\n(9435, 46716, 'forty-six thousand seven hundred sixteen'),\n(9436, 6459, 'six thousand four hundred fifty-nine'),\n(9437, 21174, 'twenty-one thousand one hundred seventy-four'),\n(9438, 92097, 'ninety-two thousand ninety-seven'),\n(9439, 16150, 'sixteen thousand one hundred fifty'),\n(9440, 59341, 'fifty-nine thousand three hundred forty-one'),\n(9441, 71836, 'seventy-one thousand eight hundred thirty-six'),\n(9442, 65805, 'sixty-five thousand eight hundred five'),\n(9443, 84411, 'eighty-four thousand four hundred eleven'),\n(9444, 97540, 'ninety-seven thousand five hundred forty'),\n(9445, 74195, 'seventy-four thousand one hundred ninety-five'),\n(9446, 52156, 'fifty-two thousand one hundred fifty-six'),\n(9447, 35694, 'thirty-five thousand six hundred ninety-four'),\n(9448, 51467, 'fifty-one thousand four hundred sixty-seven'),\n(9449, 34703, 'thirty-four thousand seven hundred three'),\n(9450, 13358, 'thirteen thousand three hundred fifty-eight'),\n(9451, 82038, 'eighty-two thousand thirty-eight'),\n(9452, 38386, 'thirty-eight thousand three hundred eighty-six'),\n(9453, 3177, 'three thousand one hundred seventy-seven'),\n(9454, 43645, 'forty-three thousand six hundred forty-five'),\n(9455, 99522, 'ninety-nine thousand five hundred twenty-two'),\n(9456, 20315, 'twenty thousand three hundred fifteen'),\n(9457, 1802, 'one thousand eight hundred two'),\n(9458, 49795, 'forty-nine thousand seven hundred ninety-five'),\n(9459, 35616, 'thirty-five thousand six hundred sixteen'),\n(9460, 71746, 'seventy-one thousand seven hundred forty-six'),\n(9461, 74082, 'seventy-four thousand eighty-two'),\n(9462, 41226, 'forty-one thousand two hundred twenty-six'),\n(9463, 63345, 'sixty-three thousand three hundred forty-five'),\n(9464, 44605, 'forty-four thousand six hundred five'),\n(9465, 8098, 'eight thousand ninety-eight'),\n(9466, 41926, 'forty-one thousand nine hundred twenty-six'),\n(9467, 37074, 'thirty-seven thousand seventy-four'),\n(9468, 70002, 'seventy thousand two'),\n(9469, 17521, 'seventeen thousand five hundred twenty-one'),\n(9470, 58169, 'fifty-eight thousand one hundred sixty-nine'),\n(9471, 83810, 'eighty-three thousand eight hundred ten'),\n(9472, 89578, 'eighty-nine thousand five hundred seventy-eight'),\n(9473, 71207, 'seventy-one thousand two hundred seven'),\n(9474, 97719, 'ninety-seven thousand seven hundred nineteen'),\n(9475, 17989, 'seventeen thousand nine hundred eighty-nine'),\n(9476, 39086, 'thirty-nine thousand eighty-six'),\n(9477, 17877, 'seventeen thousand eight hundred seventy-seven'),\n(9478, 38203, 'thirty-eight thousand two hundred three'),\n(9479, 19397, 'nineteen thousand three hundred ninety-seven'),\n(9480, 20033, 'twenty thousand thirty-three'),\n(9481, 71427, 'seventy-one thousand four hundred twenty-seven'),\n(9482, 25944, 'twenty-five thousand nine hundred forty-four'),\n(9483, 54851, 'fifty-four thousand eight hundred fifty-one'),\n(9484, 37141, 'thirty-seven thousand one hundred forty-one'),\n(9485, 29557, 'twenty-nine thousand five hundred fifty-seven'),\n(9486, 11738, 'eleven thousand seven hundred thirty-eight'),\n(9487, 85734, 'eighty-five thousand seven hundred thirty-four'),\n(9488, 63877, 'sixty-three thousand eight hundred seventy-seven'),\n(9489, 58775, 'fifty-eight thousand seven hundred seventy-five'),\n(9490, 30173, 'thirty thousand one hundred seventy-three'),\n(9491, 49119, 'forty-nine thousand one hundred nineteen'),\n(9492, 33005, 'thirty-three thousand five'),\n(9493, 83050, 'eighty-three thousand fifty'),\n(9494, 47003, 'forty-seven thousand three'),\n(9495, 58182, 'fifty-eight thousand one hundred eighty-two'),\n(9496, 21381, 'twenty-one thousand three hundred eighty-one'),\n(9497, 45927, 'forty-five thousand nine hundred twenty-seven'),\n(9498, 43288, 'forty-three thousand two hundred eighty-eight'),\n(9499, 40391, 'forty thousand three hundred ninety-one'),\n(9500, 72427, 'seventy-two thousand four hundred twenty-seven'),\n(9501, 30415, 'thirty thousand four hundred fifteen'),\n(9502, 30057, 'thirty thousand fifty-seven'),\n(9503, 47369, 'forty-seven thousand three hundred sixty-nine'),\n(9504, 32613, 'thirty-two thousand six hundred thirteen'),\n(9505, 27530, 'twenty-seven thousand five hundred thirty'),\n(9506, 93003, 'ninety-three thousand three'),\n(9507, 51684, 'fifty-one thousand six hundred eighty-four'),\n(9508, 82316, 'eighty-two thousand three hundred sixteen'),\n(9509, 30442, 'thirty thousand four hundred forty-two'),\n(9510, 8476, 'eight thousand four hundred seventy-six'),\n(9511, 74375, 'seventy-four thousand three hundred seventy-five'),\n(9512, 42314, 'forty-two thousand three hundred fourteen'),\n(9513, 79144, 'seventy-nine thousand one hundred forty-four'),\n(9514, 78205, 'seventy-eight thousand two hundred five'),\n(9515, 44246, 'forty-four thousand two hundred forty-six'),\n(9516, 13712, 'thirteen thousand seven hundred twelve'),\n(9517, 71308, 'seventy-one thousand three hundred eight'),\n(9518, 85869, 'eighty-five thousand eight hundred sixty-nine'),\n(9519, 94064, 'ninety-four thousand sixty-four'),\n(9520, 36711, 'thirty-six thousand seven hundred eleven'),\n(9521, 9489, 'nine thousand four hundred eighty-nine'),\n(9522, 21369, 'twenty-one thousand three hundred sixty-nine'),\n(9523, 18452, 'eighteen thousand four hundred fifty-two'),\n(9524, 74370, 'seventy-four thousand three hundred seventy'),\n(9525, 58042, 'fifty-eight thousand forty-two'),\n(9526, 63639, 'sixty-three thousand six hundred thirty-nine'),\n(9527, 1474, 'one thousand four hundred seventy-four'),\n(9528, 32040, 'thirty-two thousand forty'),\n(9529, 72021, 'seventy-two thousand twenty-one'),\n(9530, 54244, 'fifty-four thousand two hundred forty-four'),\n(9531, 81954, 'eighty-one thousand nine hundred fifty-four'),\n(9532, 42751, 'forty-two thousand seven hundred fifty-one'),\n(9533, 23841, 'twenty-three thousand eight hundred forty-one'),\n(9534, 47028, 'forty-seven thousand twenty-eight'),\n(9535, 39364, 'thirty-nine thousand three hundred sixty-four'),\n(9536, 16957, 'sixteen thousand nine hundred fifty-seven'),\n(9537, 26435, 'twenty-six thousand four hundred thirty-five'),\n(9538, 57264, 'fifty-seven thousand two hundred sixty-four'),\n(9539, 15807, 'fifteen thousand eight hundred seven'),\n(9540, 88338, 'eighty-eight thousand three hundred thirty-eight'),\n(9541, 79107, 'seventy-nine thousand one hundred seven'),\n(9542, 10166, 'ten thousand one hundred sixty-six'),\n(9543, 18201, 'eighteen thousand two hundred one'),\n(9544, 68522, 'sixty-eight thousand five hundred twenty-two'),\n(9545, 2822, 'two thousand eight hundred twenty-two'),\n(9546, 5756, 'five thousand seven hundred fifty-six'),\n(9547, 71527, 'seventy-one thousand five hundred twenty-seven'),\n(9548, 82622, 'eighty-two thousand six hundred twenty-two'),\n(9549, 82385, 'eighty-two thousand three hundred eighty-five'),\n(9550, 95123, 'ninety-five thousand one hundred twenty-three'),\n(9551, 28331, 'twenty-eight thousand three hundred thirty-one'),\n(9552, 21298, 'twenty-one thousand two hundred ninety-eight'),\n(9553, 63107, 'sixty-three thousand one hundred seven'),\n(9554, 89693, 'eighty-nine thousand six hundred ninety-three'),\n(9555, 63053, 'sixty-three thousand fifty-three'),\n(9556, 77658, 'seventy-seven thousand six hundred fifty-eight'),\n(9557, 14497, 'fourteen thousand four hundred ninety-seven'),\n(9558, 7231, 'seven thousand two hundred thirty-one'),\n(9559, 97234, 'ninety-seven thousand two hundred thirty-four'),\n(9560, 61062, 'sixty-one thousand sixty-two'),\n(9561, 78573, 'seventy-eight thousand five hundred seventy-three'),\n(9562, 44875, 'forty-four thousand eight hundred seventy-five'),\n(9563, 4498, 'four thousand four hundred ninety-eight'),\n(9564, 63052, 'sixty-three thousand fifty-two'),\n(9565, 31595, 'thirty-one thousand five hundred ninety-five'),\n(9566, 18072, 'eighteen thousand seventy-two'),\n(9567, 64680, 'sixty-four thousand six hundred eighty'),\n(9568, 19117, 'nineteen thousand one hundred seventeen'),\n(9569, 80586, 'eighty thousand five hundred eighty-six'),\n(9570, 28520, 'twenty-eight thousand five hundred twenty'),\n(9571, 83391, 'eighty-three thousand three hundred ninety-one'),\n(9572, 74098, 'seventy-four thousand ninety-eight'),\n(9573, 69761, 'sixty-nine thousand seven hundred sixty-one'),\n(9574, 93558, 'ninety-three thousand five hundred fifty-eight'),\n(9575, 43576, 'forty-three thousand five hundred seventy-six'),\n(9576, 71034, 'seventy-one thousand thirty-four'),\n(9577, 4764, 'four thousand seven hundred sixty-four'),\n(9578, 19011, 'nineteen thousand eleven'),\n(9579, 18241, 'eighteen thousand two hundred forty-one'),\n(9580, 53064, 'fifty-three thousand sixty-four'),\n(9581, 97427, 'ninety-seven thousand four hundred twenty-seven'),\n(9582, 38042, 'thirty-eight thousand forty-two'),\n(9583, 18513, 'eighteen thousand five hundred thirteen'),\n(9584, 76654, 'seventy-six thousand six hundred fifty-four'),\n(9585, 2036, 'two thousand thirty-six'),\n(9586, 36887, 'thirty-six thousand eight hundred eighty-seven'),\n(9587, 11745, 'eleven thousand seven hundred forty-five'),\n(9588, 19822, 'nineteen thousand eight hundred twenty-two'),\n(9589, 38271, 'thirty-eight thousand two hundred seventy-one'),\n(9590, 62637, 'sixty-two thousand six hundred thirty-seven'),\n(9591, 45137, 'forty-five thousand one hundred thirty-seven'),\n(9592, 11251, 'eleven thousand two hundred fifty-one'),\n(9593, 49827, 'forty-nine thousand eight hundred twenty-seven'),\n(9594, 34370, 'thirty-four thousand three hundred seventy'),\n(9595, 5848, 'five thousand eight hundred forty-eight'),\n(9596, 42684, 'forty-two thousand six hundred eighty-four'),\n(9597, 55186, 'fifty-five thousand one hundred eighty-six'),\n(9598, 76470, 'seventy-six thousand four hundred seventy'),\n(9599, 71701, 'seventy-one thousand seven hundred one'),\n(9600, 37517, 'thirty-seven thousand five hundred seventeen'),\n(9601, 6431, 'six thousand four hundred thirty-one'),\n(9602, 9515, 'nine thousand five hundred fifteen'),\n(9603, 65573, 'sixty-five thousand five hundred seventy-three'),\n(9604, 38146, 'thirty-eight thousand one hundred forty-six'),\n(9605, 36234, 'thirty-six thousand two hundred thirty-four'),\n(9606, 58725, 'fifty-eight thousand seven hundred twenty-five'),\n(9607, 79791, 'seventy-nine thousand seven hundred ninety-one'),\n(9608, 93627, 'ninety-three thousand six hundred twenty-seven'),\n(9609, 47049, 'forty-seven thousand forty-nine'),\n(9610, 68872, 'sixty-eight thousand eight hundred seventy-two'),\n(9611, 83787, 'eighty-three thousand seven hundred eighty-seven'),\n(9612, 91188, 'ninety-one thousand one hundred eighty-eight'),\n(9613, 2014, 'two thousand fourteen'),\n(9614, 44487, 'forty-four thousand four hundred eighty-seven'),\n(9615, 56038, 'fifty-six thousand thirty-eight'),\n(9616, 82029, 'eighty-two thousand twenty-nine'),\n(9617, 4887, 'four thousand eight hundred eighty-seven'),\n(9618, 31410, 'thirty-one thousand four hundred ten'),\n(9619, 19337, 'nineteen thousand three hundred thirty-seven'),\n(9620, 4546, 'four thousand five hundred forty-six'),\n(9621, 83168, 'eighty-three thousand one hundred sixty-eight'),\n(9622, 58470, 'fifty-eight thousand four hundred seventy'),\n(9623, 16420, 'sixteen thousand four hundred twenty'),\n(9624, 5149, 'five thousand one hundred forty-nine'),\n(9625, 55887, 'fifty-five thousand eight hundred eighty-seven'),\n(9626, 76622, 'seventy-six thousand six hundred twenty-two'),\n(9627, 13516, 'thirteen thousand five hundred sixteen'),\n(9628, 16472, 'sixteen thousand four hundred seventy-two'),\n(9629, 23940, 'twenty-three thousand nine hundred forty'),\n(9630, 44666, 'forty-four thousand six hundred sixty-six'),\n(9631, 74694, 'seventy-four thousand six hundred ninety-four'),\n(9632, 57541, 'fifty-seven thousand five hundred forty-one'),\n(9633, 84917, 'eighty-four thousand nine hundred seventeen'),\n(9634, 65400, 'sixty-five thousand four hundred'),\n(9635, 40485, 'forty thousand four hundred eighty-five'),\n(9636, 57426, 'fifty-seven thousand four hundred twenty-six'),\n(9637, 36843, 'thirty-six thousand eight hundred forty-three'),\n(9638, 54970, 'fifty-four thousand nine hundred seventy'),\n(9639, 505, 'five hundred five'),\n(9640, 99275, 'ninety-nine thousand two hundred seventy-five'),\n(9641, 81986, 'eighty-one thousand nine hundred eighty-six'),\n(9642, 4001, 'four thousand one'),\n(9643, 72323, 'seventy-two thousand three hundred twenty-three'),\n(9644, 8637, 'eight thousand six hundred thirty-seven'),\n(9645, 38278, 'thirty-eight thousand two hundred seventy-eight'),\n(9646, 34157, 'thirty-four thousand one hundred fifty-seven'),\n(9647, 82456, 'eighty-two thousand four hundred fifty-six'),\n(9648, 75899, 'seventy-five thousand eight hundred ninety-nine'),\n(9649, 69900, 'sixty-nine thousand nine hundred'),\n(9650, 28219, 'twenty-eight thousand two hundred nineteen'),\n(9651, 39732, 'thirty-nine thousand seven hundred thirty-two'),\n(9652, 44157, 'forty-four thousand one hundred fifty-seven'),\n(9653, 88485, 'eighty-eight thousand four hundred eighty-five'),\n(9654, 28815, 'twenty-eight thousand eight hundred fifteen'),\n(9655, 55922, 'fifty-five thousand nine hundred twenty-two'),\n(9656, 16694, 'sixteen thousand six hundred ninety-four'),\n(9657, 85307, 'eighty-five thousand three hundred seven'),\n(9658, 69030, 'sixty-nine thousand thirty'),\n(9659, 35486, 'thirty-five thousand four hundred eighty-six'),\n(9660, 8239, 'eight thousand two hundred thirty-nine'),\n(9661, 45034, 'forty-five thousand thirty-four'),\n(9662, 50057, 'fifty thousand fifty-seven'),\n(9663, 97937, 'ninety-seven thousand nine hundred thirty-seven'),\n(9664, 52222, 'fifty-two thousand two hundred twenty-two'),\n(9665, 78106, 'seventy-eight thousand one hundred six'),\n(9666, 5327, 'five thousand three hundred twenty-seven'),\n(9667, 76445, 'seventy-six thousand four hundred forty-five'),\n(9668, 37700, 'thirty-seven thousand seven hundred'),\n(9669, 74825, 'seventy-four thousand eight hundred twenty-five'),\n(9670, 28573, 'twenty-eight thousand five hundred seventy-three'),\n(9671, 35683, 'thirty-five thousand six hundred eighty-three'),\n(9672, 28758, 'twenty-eight thousand seven hundred fifty-eight'),\n(9673, 78116, 'seventy-eight thousand one hundred sixteen'),\n(9674, 79955, 'seventy-nine thousand nine hundred fifty-five'),\n(9675, 78044, 'seventy-eight thousand forty-four'),\n(9676, 675, 'six hundred seventy-five'),\n(9677, 1789, 'one thousand seven hundred eighty-nine'),\n(9678, 92206, 'ninety-two thousand two hundred six'),\n(9679, 68014, 'sixty-eight thousand fourteen'),\n(9680, 30145, 'thirty thousand one hundred forty-five'),\n(9681, 45648, 'forty-five thousand six hundred forty-eight'),\n(9682, 60284, 'sixty thousand two hundred eighty-four'),\n(9683, 28878, 'twenty-eight thousand eight hundred seventy-eight'),\n(9684, 28138, 'twenty-eight thousand one hundred thirty-eight'),\n(9685, 61885, 'sixty-one thousand eight hundred eighty-five'),\n(9686, 94810, 'ninety-four thousand eight hundred ten'),\n(9687, 65845, 'sixty-five thousand eight hundred forty-five'),\n(9688, 61143, 'sixty-one thousand one hundred forty-three'),\n(9689, 9851, 'nine thousand eight hundred fifty-one'),\n(9690, 42245, 'forty-two thousand two hundred forty-five'),\n(9691, 10692, 'ten thousand six hundred ninety-two'),\n(9692, 22345, 'twenty-two thousand three hundred forty-five'),\n(9693, 75615, 'seventy-five thousand six hundred fifteen'),\n(9694, 79866, 'seventy-nine thousand eight hundred sixty-six'),\n(9695, 12699, 'twelve thousand six hundred ninety-nine'),\n(9696, 58122, 'fifty-eight thousand one hundred twenty-two'),\n(9697, 11746, 'eleven thousand seven hundred forty-six'),\n(9698, 50624, 'fifty thousand six hundred twenty-four'),\n(9699, 40387, 'forty thousand three hundred eighty-seven'),\n(9700, 85919, 'eighty-five thousand nine hundred nineteen'),\n(9701, 8174, 'eight thousand one hundred seventy-four'),\n(9702, 55142, 'fifty-five thousand one hundred forty-two'),\n(9703, 68303, 'sixty-eight thousand three hundred three'),\n(9704, 17335, 'seventeen thousand three hundred thirty-five'),\n(9705, 78513, 'seventy-eight thousand five hundred thirteen'),\n(9706, 29582, 'twenty-nine thousand five hundred eighty-two'),\n(9707, 49634, 'forty-nine thousand six hundred thirty-four'),\n(9708, 34458, 'thirty-four thousand four hundred fifty-eight'),\n(9709, 10180, 'ten thousand one hundred eighty'),\n(9710, 88642, 'eighty-eight thousand six hundred forty-two'),\n(9711, 2390, 'two thousand three hundred ninety'),\n(9712, 51507, 'fifty-one thousand five hundred seven'),\n(9713, 7460, 'seven thousand four hundred sixty'),\n(9714, 35102, 'thirty-five thousand one hundred two'),\n(9715, 32204, 'thirty-two thousand two hundred four'),\n(9716, 76392, 'seventy-six thousand three hundred ninety-two'),\n(9717, 70336, 'seventy thousand three hundred thirty-six'),\n(9718, 50161, 'fifty thousand one hundred sixty-one'),\n(9719, 30585, 'thirty thousand five hundred eighty-five'),\n(9720, 35284, 'thirty-five thousand two hundred eighty-four'),\n(9721, 23587, 'twenty-three thousand five hundred eighty-seven'),\n(9722, 78092, 'seventy-eight thousand ninety-two'),\n(9723, 8243, 'eight thousand two hundred forty-three'),\n(9724, 54607, 'fifty-four thousand six hundred seven'),\n(9725, 36361, 'thirty-six thousand three hundred sixty-one'),\n(9726, 88933, 'eighty-eight thousand nine hundred thirty-three'),\n(9727, 78190, 'seventy-eight thousand one hundred ninety'),\n(9728, 96301, 'ninety-six thousand three hundred one'),\n(9729, 44856, 'forty-four thousand eight hundred fifty-six'),\n(9730, 43572, 'forty-three thousand five hundred seventy-two'),\n(9731, 32711, 'thirty-two thousand seven hundred eleven'),\n(9732, 28725, 'twenty-eight thousand seven hundred twenty-five'),\n(9733, 55115, 'fifty-five thousand one hundred fifteen'),\n(9734, 88085, 'eighty-eight thousand eighty-five'),\n(9735, 68574, 'sixty-eight thousand five hundred seventy-four'),\n(9736, 95856, 'ninety-five thousand eight hundred fifty-six'),\n(9737, 81099, 'eighty-one thousand ninety-nine'),\n(9738, 42379, 'forty-two thousand three hundred seventy-nine'),\n(9739, 99904, 'ninety-nine thousand nine hundred four'),\n(9740, 16858, 'sixteen thousand eight hundred fifty-eight'),\n(9741, 49841, 'forty-nine thousand eight hundred forty-one'),\n(9742, 93672, 'ninety-three thousand six hundred seventy-two'),\n(9743, 92965, 'ninety-two thousand nine hundred sixty-five'),\n(9744, 50582, 'fifty thousand five hundred eighty-two'),\n(9745, 71144, 'seventy-one thousand one hundred forty-four'),\n(9746, 71120, 'seventy-one thousand one hundred twenty'),\n(9747, 57022, 'fifty-seven thousand twenty-two'),\n(9748, 10747, 'ten thousand seven hundred forty-seven'),\n(9749, 63470, 'sixty-three thousand four hundred seventy'),\n(9750, 20061, 'twenty thousand sixty-one'),\n(9751, 98579, 'ninety-eight thousand five hundred seventy-nine'),\n(9752, 76644, 'seventy-six thousand six hundred forty-four'),\n(9753, 82180, 'eighty-two thousand one hundred eighty'),\n(9754, 71048, 'seventy-one thousand forty-eight'),\n(9755, 19490, 'nineteen thousand four hundred ninety'),\n(9756, 447, 'four hundred forty-seven'),\n(9757, 54146, 'fifty-four thousand one hundred forty-six'),\n(9758, 73685, 'seventy-three thousand six hundred eighty-five'),\n(9759, 4764, 'four thousand seven hundred sixty-four'),\n(9760, 91378, 'ninety-one thousand three hundred seventy-eight'),\n(9761, 40529, 'forty thousand five hundred twenty-nine'),\n(9762, 55119, 'fifty-five thousand one hundred nineteen'),\n(9763, 14168, 'fourteen thousand one hundred sixty-eight'),\n(9764, 75876, 'seventy-five thousand eight hundred seventy-six'),\n(9765, 50908, 'fifty thousand nine hundred eight'),\n(9766, 42444, 'forty-two thousand four hundred forty-four'),\n(9767, 62467, 'sixty-two thousand four hundred sixty-seven'),\n(9768, 79928, 'seventy-nine thousand nine hundred twenty-eight'),\n(9769, 65733, 'sixty-five thousand seven hundred thirty-three'),\n(9770, 90346, 'ninety thousand three hundred forty-six'),\n(9771, 72647, 'seventy-two thousand six hundred forty-seven'),\n(9772, 99071, 'ninety-nine thousand seventy-one'),\n(9773, 99461, 'ninety-nine thousand four hundred sixty-one'),\n(9774, 77471, 'seventy-seven thousand four hundred seventy-one'),\n(9775, 44708, 'forty-four thousand seven hundred eight'),\n(9776, 88340, 'eighty-eight thousand three hundred forty'),\n(9777, 12533, 'twelve thousand five hundred thirty-three'),\n(9778, 88424, 'eighty-eight thousand four hundred twenty-four'),\n(9779, 80718, 'eighty thousand seven hundred eighteen'),\n(9780, 3636, 'three thousand six hundred thirty-six'),\n(9781, 86715, 'eighty-six thousand seven hundred fifteen'),\n(9782, 70985, 'seventy thousand nine hundred eighty-five'),\n(9783, 89054, 'eighty-nine thousand fifty-four'),\n(9784, 55579, 'fifty-five thousand five hundred seventy-nine'),\n(9785, 26745, 'twenty-six thousand seven hundred forty-five'),\n(9786, 67271, 'sixty-seven thousand two hundred seventy-one'),\n(9787, 24548, 'twenty-four thousand five hundred forty-eight'),\n(9788, 32762, 'thirty-two thousand seven hundred sixty-two'),\n(9789, 23787, 'twenty-three thousand seven hundred eighty-seven'),\n(9790, 52358, 'fifty-two thousand three hundred fifty-eight'),\n(9791, 64224, 'sixty-four thousand two hundred twenty-four'),\n(9792, 88096, 'eighty-eight thousand ninety-six'),\n(9793, 45220, 'forty-five thousand two hundred twenty'),\n(9794, 68875, 'sixty-eight thousand eight hundred seventy-five'),\n(9795, 6662, 'six thousand six hundred sixty-two'),\n(9796, 16645, 'sixteen thousand six hundred forty-five'),\n(9797, 63361, 'sixty-three thousand three hundred sixty-one'),\n(9798, 8274, 'eight thousand two hundred seventy-four'),\n(9799, 6532, 'six thousand five hundred thirty-two'),\n(9800, 19965, 'nineteen thousand nine hundred sixty-five'),\n(9801, 80285, 'eighty thousand two hundred eighty-five'),\n(9802, 60856, 'sixty thousand eight hundred fifty-six'),\n(9803, 67409, 'sixty-seven thousand four hundred nine'),\n(9804, 20871, 'twenty thousand eight hundred seventy-one'),\n(9805, 72000, 'seventy-two thousand'),\n(9806, 15279, 'fifteen thousand two hundred seventy-nine'),\n(9807, 42589, 'forty-two thousand five hundred eighty-nine'),\n(9808, 42872, 'forty-two thousand eight hundred seventy-two'),\n(9809, 8091, 'eight thousand ninety-one'),\n(9810, 40812, 'forty thousand eight hundred twelve'),\n(9811, 74285, 'seventy-four thousand two hundred eighty-five'),\n(9812, 3039, 'three thousand thirty-nine'),\n(9813, 91575, 'ninety-one thousand five hundred seventy-five'),\n(9814, 69928, 'sixty-nine thousand nine hundred twenty-eight'),\n(9815, 11574, 'eleven thousand five hundred seventy-four'),\n(9816, 87237, 'eighty-seven thousand two hundred thirty-seven'),\n(9817, 85439, 'eighty-five thousand four hundred thirty-nine'),\n(9818, 78822, 'seventy-eight thousand eight hundred twenty-two'),\n(9819, 30048, 'thirty thousand forty-eight'),\n(9820, 79138, 'seventy-nine thousand one hundred thirty-eight'),\n(9821, 9060, 'nine thousand sixty'),\n(9822, 5465, 'five thousand four hundred sixty-five'),\n(9823, 26276, 'twenty-six thousand two hundred seventy-six'),\n(9824, 85783, 'eighty-five thousand seven hundred eighty-three'),\n(9825, 80145, 'eighty thousand one hundred forty-five'),\n(9826, 41733, 'forty-one thousand seven hundred thirty-three'),\n(9827, 88913, 'eighty-eight thousand nine hundred thirteen'),\n(9828, 10742, 'ten thousand seven hundred forty-two'),\n(9829, 6810, 'six thousand eight hundred ten'),\n(9830, 69735, 'sixty-nine thousand seven hundred thirty-five'),\n(9831, 98911, 'ninety-eight thousand nine hundred eleven'),\n(9832, 37083, 'thirty-seven thousand eighty-three'),\n(9833, 72333, 'seventy-two thousand three hundred thirty-three'),\n(9834, 19909, 'nineteen thousand nine hundred nine'),\n(9835, 15371, 'fifteen thousand three hundred seventy-one'),\n(9836, 33627, 'thirty-three thousand six hundred twenty-seven'),\n(9837, 79364, 'seventy-nine thousand three hundred sixty-four'),\n(9838, 17020, 'seventeen thousand twenty'),\n(9839, 2514, 'two thousand five hundred fourteen'),\n(9840, 220, 'two hundred twenty'),\n(9841, 85011, 'eighty-five thousand eleven'),\n(9842, 86302, 'eighty-six thousand three hundred two'),\n(9843, 36977, 'thirty-six thousand nine hundred seventy-seven'),\n(9844, 33081, 'thirty-three thousand eighty-one'),\n(9845, 18211, 'eighteen thousand two hundred eleven'),\n(9846, 30006, 'thirty thousand six'),\n(9847, 47967, 'forty-seven thousand nine hundred sixty-seven'),\n(9848, 44090, 'forty-four thousand ninety'),\n(9849, 88043, 'eighty-eight thousand forty-three'),\n(9850, 63998, 'sixty-three thousand nine hundred ninety-eight'),\n(9851, 67265, 'sixty-seven thousand two hundred sixty-five'),\n(9852, 78154, 'seventy-eight thousand one hundred fifty-four'),\n(9853, 27541, 'twenty-seven thousand five hundred forty-one'),\n(9854, 16935, 'sixteen thousand nine hundred thirty-five'),\n(9855, 75241, 'seventy-five thousand two hundred forty-one'),\n(9856, 12951, 'twelve thousand nine hundred fifty-one'),\n(9857, 39670, 'thirty-nine thousand six hundred seventy'),\n(9858, 93047, 'ninety-three thousand forty-seven'),\n(9859, 78639, 'seventy-eight thousand six hundred thirty-nine'),\n(9860, 5202, 'five thousand two hundred two'),\n(9861, 17204, 'seventeen thousand two hundred four'),\n(9862, 39432, 'thirty-nine thousand four hundred thirty-two'),\n(9863, 44518, 'forty-four thousand five hundred eighteen'),\n(9864, 91369, 'ninety-one thousand three hundred sixty-nine'),\n(9865, 40140, 'forty thousand one hundred forty'),\n(9866, 19559, 'nineteen thousand five hundred fifty-nine'),\n(9867, 26216, 'twenty-six thousand two hundred sixteen'),\n(9868, 8647, 'eight thousand six hundred forty-seven'),\n(9869, 28889, 'twenty-eight thousand eight hundred eighty-nine'),\n(9870, 46851, 'forty-six thousand eight hundred fifty-one'),\n(9871, 13014, 'thirteen thousand fourteen'),\n(9872, 77239, 'seventy-seven thousand two hundred thirty-nine'),\n(9873, 41515, 'forty-one thousand five hundred fifteen'),\n(9874, 25126, 'twenty-five thousand one hundred twenty-six'),\n(9875, 24678, 'twenty-four thousand six hundred seventy-eight'),\n(9876, 22524, 'twenty-two thousand five hundred twenty-four'),\n(9877, 36719, 'thirty-six thousand seven hundred nineteen'),\n(9878, 90976, 'ninety thousand nine hundred seventy-six'),\n(9879, 45387, 'forty-five thousand three hundred eighty-seven'),\n(9880, 25918, 'twenty-five thousand nine hundred eighteen'),\n(9881, 4799, 'four thousand seven hundred ninety-nine'),\n(9882, 90468, 'ninety thousand four hundred sixty-eight'),\n(9883, 35652, 'thirty-five thousand six hundred fifty-two'),\n(9884, 84626, 'eighty-four thousand six hundred twenty-six'),\n(9885, 73446, 'seventy-three thousand four hundred forty-six'),\n(9886, 18877, 'eighteen thousand eight hundred seventy-seven'),\n(9887, 2012, 'two thousand twelve'),\n(9888, 38502, 'thirty-eight thousand five hundred two'),\n(9889, 2784, 'two thousand seven hundred eighty-four'),\n(9890, 11098, 'eleven thousand ninety-eight'),\n(9891, 96913, 'ninety-six thousand nine hundred thirteen'),\n(9892, 65007, 'sixty-five thousand seven'),\n(9893, 4446, 'four thousand four hundred forty-six'),\n(9894, 13760, 'thirteen thousand seven hundred sixty'),\n(9895, 15589, 'fifteen thousand five hundred eighty-nine'),\n(9896, 13053, 'thirteen thousand fifty-three'),\n(9897, 46297, 'forty-six thousand two hundred ninety-seven'),\n(9898, 32446, 'thirty-two thousand four hundred forty-six'),\n(9899, 46298, 'forty-six thousand two hundred ninety-eight'),\n(9900, 31498, 'thirty-one thousand four hundred ninety-eight'),\n(9901, 53844, 'fifty-three thousand eight hundred forty-four'),\n(9902, 22677, 'twenty-two thousand six hundred seventy-seven'),\n(9903, 32112, 'thirty-two thousand one hundred twelve'),\n(9904, 78055, 'seventy-eight thousand fifty-five'),\n(9905, 37196, 'thirty-seven thousand one hundred ninety-six'),\n(9906, 17198, 'seventeen thousand one hundred ninety-eight'),\n(9907, 26387, 'twenty-six thousand three hundred eighty-seven'),\n(9908, 66172, 'sixty-six thousand one hundred seventy-two'),\n(9909, 2890, 'two thousand eight hundred ninety'),\n(9910, 78349, 'seventy-eight thousand three hundred forty-nine'),\n(9911, 73305, 'seventy-three thousand three hundred five'),\n(9912, 46865, 'forty-six thousand eight hundred sixty-five'),\n(9913, 51014, 'fifty-one thousand fourteen'),\n(9914, 57484, 'fifty-seven thousand four hundred eighty-four'),\n(9915, 95182, 'ninety-five thousand one hundred eighty-two'),\n(9916, 47178, 'forty-seven thousand one hundred seventy-eight'),\n(9917, 61210, 'sixty-one thousand two hundred ten'),\n(9918, 2861, 'two thousand eight hundred sixty-one'),\n(9919, 42747, 'forty-two thousand seven hundred forty-seven'),\n(9920, 2524, 'two thousand five hundred twenty-four'),\n(9921, 33984, 'thirty-three thousand nine hundred eighty-four'),\n(9922, 70995, 'seventy thousand nine hundred ninety-five'),\n(9923, 2751, 'two thousand seven hundred fifty-one'),\n(9924, 17949, 'seventeen thousand nine hundred forty-nine'),\n(9925, 83674, 'eighty-three thousand six hundred seventy-four'),\n(9926, 62038, 'sixty-two thousand thirty-eight'),\n(9927, 91191, 'ninety-one thousand one hundred ninety-one'),\n(9928, 62705, 'sixty-two thousand seven hundred five'),\n(9929, 15215, 'fifteen thousand two hundred fifteen'),\n(9930, 11635, 'eleven thousand six hundred thirty-five'),\n(9931, 83994, 'eighty-three thousand nine hundred ninety-four'),\n(9932, 76669, 'seventy-six thousand six hundred sixty-nine'),\n(9933, 7591, 'seven thousand five hundred ninety-one'),\n(9934, 58851, 'fifty-eight thousand eight hundred fifty-one'),\n(9935, 86336, 'eighty-six thousand three hundred thirty-six'),\n(9936, 74312, 'seventy-four thousand three hundred twelve'),\n(9937, 29583, 'twenty-nine thousand five hundred eighty-three'),\n(9938, 98197, 'ninety-eight thousand one hundred ninety-seven'),\n(9939, 65908, 'sixty-five thousand nine hundred eight'),\n(9940, 87238, 'eighty-seven thousand two hundred thirty-eight'),\n(9941, 54069, 'fifty-four thousand sixty-nine'),\n(9942, 23443, 'twenty-three thousand four hundred forty-three'),\n(9943, 10265, 'ten thousand two hundred sixty-five'),\n(9944, 94297, 'ninety-four thousand two hundred ninety-seven'),\n(9945, 54499, 'fifty-four thousand four hundred ninety-nine'),\n(9946, 10995, 'ten thousand nine hundred ninety-five'),\n(9947, 16429, 'sixteen thousand four hundred twenty-nine'),\n(9948, 45090, 'forty-five thousand ninety'),\n(9949, 2196, 'two thousand one hundred ninety-six'),\n(9950, 15974, 'fifteen thousand nine hundred seventy-four'),\n(9951, 72950, 'seventy-two thousand nine hundred fifty'),\n(9952, 86199, 'eighty-six thousand one hundred ninety-nine'),\n(9953, 8768, 'eight thousand seven hundred sixty-eight'),\n(9954, 94335, 'ninety-four thousand three hundred thirty-five'),\n(9955, 73289, 'seventy-three thousand two hundred eighty-nine'),\n(9956, 8369, 'eight thousand three hundred sixty-nine'),\n(9957, 20192, 'twenty thousand one hundred ninety-two'),\n(9958, 70239, 'seventy thousand two hundred thirty-nine'),\n(9959, 52640, 'fifty-two thousand six hundred forty'),\n(9960, 42186, 'forty-two thousand one hundred eighty-six'),\n(9961, 94872, 'ninety-four thousand eight hundred seventy-two'),\n(9962, 63106, 'sixty-three thousand one hundred six'),\n(9963, 92597, 'ninety-two thousand five hundred ninety-seven'),\n(9964, 98430, 'ninety-eight thousand four hundred thirty'),\n(9965, 33505, 'thirty-three thousand five hundred five'),\n(9966, 10796, 'ten thousand seven hundred ninety-six'),\n(9967, 45097, 'forty-five thousand ninety-seven'),\n(9968, 60873, 'sixty thousand eight hundred seventy-three'),\n(9969, 72539, 'seventy-two thousand five hundred thirty-nine'),\n(9970, 74421, 'seventy-four thousand four hundred twenty-one'),\n(9971, 11566, 'eleven thousand five hundred sixty-six'),\n(9972, 45366, 'forty-five thousand three hundred sixty-six'),\n(9973, 10507, 'ten thousand five hundred seven'),\n(9974, 40969, 'forty thousand nine hundred sixty-nine'),\n(9975, 26089, 'twenty-six thousand eighty-nine'),\n(9976, 94907, 'ninety-four thousand nine hundred seven'),\n(9977, 67663, 'sixty-seven thousand six hundred sixty-three'),\n(9978, 59388, 'fifty-nine thousand three hundred eighty-eight'),\n(9979, 67936, 'sixty-seven thousand nine hundred thirty-six'),\n(9980, 1514, 'one thousand five hundred fourteen'),\n(9981, 83008, 'eighty-three thousand eight'),\n(9982, 52449, 'fifty-two thousand four hundred forty-nine'),\n(9983, 35805, 'thirty-five thousand eight hundred five'),\n(9984, 89354, 'eighty-nine thousand three hundred fifty-four'),\n(9985, 28275, 'twenty-eight thousand two hundred seventy-five'),\n(9986, 86168, 'eighty-six thousand one hundred sixty-eight'),\n(9987, 70733, 'seventy thousand seven hundred thirty-three'),\n(9988, 1525, 'one thousand five hundred twenty-five'),\n(9989, 88430, 'eighty-eight thousand four hundred thirty'),\n(9990, 93781, 'ninety-three thousand seven hundred eighty-one'),\n(9991, 83529, 'eighty-three thousand five hundred twenty-nine'),\n(9992, 15257, 'fifteen thousand two hundred fifty-seven'),\n(9993, 66222, 'sixty-six thousand two hundred twenty-two'),\n(9994, 12762, 'twelve thousand seven hundred sixty-two'),\n(9995, 32485, 'thirty-two thousand four hundred eighty-five'),\n(9996, 25438, 'twenty-five thousand four hundred thirty-eight'),\n(9997, 7362, 'seven thousand three hundred sixty-two'),\n(9998, 9721, 'nine thousand seven hundred twenty-one'),\n(9999, 44707, 'forty-four thousand seven hundred seven'),\n(10000, 43668, 'forty-three thousand six hundred sixty-eight'),\n(10001, 93422, 'ninety-three thousand four hundred twenty-two'),\n(10002, 78511, 'seventy-eight thousand five hundred eleven'),\n(10003, 79651, 'seventy-nine thousand six hundred fifty-one'),\n(10004, 37643, 'thirty-seven thousand six hundred forty-three'),\n(10005, 78783, 'seventy-eight thousand seven hundred eighty-three'),\n(10006, 18116, 'eighteen thousand one hundred sixteen'),\n(10007, 71239, 'seventy-one thousand two hundred thirty-nine'),\n(10008, 18194, 'eighteen thousand one hundred ninety-four'),\n(10009, 51355, 'fifty-one thousand three hundred fifty-five'),\n(10010, 98261, 'ninety-eight thousand two hundred sixty-one'),\n(10011, 83984, 'eighty-three thousand nine hundred eighty-four'),\n(10012, 44407, 'forty-four thousand four hundred seven'),\n(10013, 19078, 'nineteen thousand seventy-eight'),\n(10014, 70902, 'seventy thousand nine hundred two'),\n(10015, 16982, 'sixteen thousand nine hundred eighty-two'),\n(10016, 95419, 'ninety-five thousand four hundred nineteen'),\n(10017, 33354, 'thirty-three thousand three hundred fifty-four'),\n(10018, 50334, 'fifty thousand three hundred thirty-four'),\n(10019, 82156, 'eighty-two thousand one hundred fifty-six'),\n(10020, 89745, 'eighty-nine thousand seven hundred forty-five'),\n(10021, 20522, 'twenty thousand five hundred twenty-two'),\n(10022, 63411, 'sixty-three thousand four hundred eleven'),\n(10023, 54961, 'fifty-four thousand nine hundred sixty-one'),\n(10024, 40258, 'forty thousand two hundred fifty-eight'),\n(10025, 46240, 'forty-six thousand two hundred forty'),\n(10026, 24737, 'twenty-four thousand seven hundred thirty-seven'),\n(10027, 45625, 'forty-five thousand six hundred twenty-five'),\n(10028, 88518, 'eighty-eight thousand five hundred eighteen'),\n(10029, 37460, 'thirty-seven thousand four hundred sixty'),\n(10030, 94325, 'ninety-four thousand three hundred twenty-five'),\n(10031, 37456, 'thirty-seven thousand four hundred fifty-six'),\n(10032, 40991, 'forty thousand nine hundred ninety-one'),\n(10033, 96882, 'ninety-six thousand eight hundred eighty-two'),\n(10034, 96794, 'ninety-six thousand seven hundred ninety-four'),\n(10035, 10767, 'ten thousand seven hundred sixty-seven'),\n(10036, 29290, 'twenty-nine thousand two hundred ninety'),\n(10037, 85526, 'eighty-five thousand five hundred twenty-six'),\n(10038, 77321, 'seventy-seven thousand three hundred twenty-one'),\n(10039, 22133, 'twenty-two thousand one hundred thirty-three'),\n(10040, 40317, 'forty thousand three hundred seventeen'),\n(10041, 60739, 'sixty thousand seven hundred thirty-nine'),\n(10042, 51801, 'fifty-one thousand eight hundred one'),\n(10043, 69537, 'sixty-nine thousand five hundred thirty-seven'),\n(10044, 31020, 'thirty-one thousand twenty'),\n(10045, 7191, 'seven thousand one hundred ninety-one'),\n(10046, 14202, 'fourteen thousand two hundred two'),\n(10047, 27420, 'twenty-seven thousand four hundred twenty'),\n(10048, 59056, 'fifty-nine thousand fifty-six'),\n(10049, 13581, 'thirteen thousand five hundred eighty-one'),\n(10050, 43958, 'forty-three thousand nine hundred fifty-eight'),\n(10051, 95227, 'ninety-five thousand two hundred twenty-seven'),\n(10052, 29350, 'twenty-nine thousand three hundred fifty'),\n(10053, 5887, 'five thousand eight hundred eighty-seven'),\n(10054, 2986, 'two thousand nine hundred eighty-six'),\n(10055, 95791, 'ninety-five thousand seven hundred ninety-one'),\n(10056, 35488, 'thirty-five thousand four hundred eighty-eight'),\n(10057, 65926, 'sixty-five thousand nine hundred twenty-six'),\n(10058, 26652, 'twenty-six thousand six hundred fifty-two'),\n(10059, 75019, 'seventy-five thousand nineteen'),\n(10060, 48662, 'forty-eight thousand six hundred sixty-two'),\n(10061, 25582, 'twenty-five thousand five hundred eighty-two'),\n(10062, 62775, 'sixty-two thousand seven hundred seventy-five'),\n(10063, 82872, 'eighty-two thousand eight hundred seventy-two'),\n(10064, 87807, 'eighty-seven thousand eight hundred seven'),\n(10065, 82316, 'eighty-two thousand three hundred sixteen'),\n(10066, 36033, 'thirty-six thousand thirty-three'),\n(10067, 64136, 'sixty-four thousand one hundred thirty-six'),\n(10068, 36927, 'thirty-six thousand nine hundred twenty-seven'),\n(10069, 27451, 'twenty-seven thousand four hundred fifty-one'),\n(10070, 18288, 'eighteen thousand two hundred eighty-eight'),\n(10071, 70862, 'seventy thousand eight hundred sixty-two'),\n(10072, 58332, 'fifty-eight thousand three hundred thirty-two'),\n(10073, 67341, 'sixty-seven thousand three hundred forty-one'),\n(10074, 14209, 'fourteen thousand two hundred nine'),\n(10075, 11369, 'eleven thousand three hundred sixty-nine'),\n(10076, 90453, 'ninety thousand four hundred fifty-three'),\n(10077, 89961, 'eighty-nine thousand nine hundred sixty-one'),\n(10078, 29873, 'twenty-nine thousand eight hundred seventy-three'),\n(10079, 95342, 'ninety-five thousand three hundred forty-two'),\n(10080, 28876, 'twenty-eight thousand eight hundred seventy-six'),\n(10081, 38591, 'thirty-eight thousand five hundred ninety-one'),\n(10082, 22255, 'twenty-two thousand two hundred fifty-five'),\n(10083, 32250, 'thirty-two thousand two hundred fifty'),\n(10084, 60760, 'sixty thousand seven hundred sixty'),\n(10085, 60606, 'sixty thousand six hundred six'),\n(10086, 28914, 'twenty-eight thousand nine hundred fourteen'),\n(10087, 48145, 'forty-eight thousand one hundred forty-five'),\n(10088, 67051, 'sixty-seven thousand fifty-one'),\n(10089, 80224, 'eighty thousand two hundred twenty-four'),\n(10090, 67729, 'sixty-seven thousand seven hundred twenty-nine'),\n(10091, 91224, 'ninety-one thousand two hundred twenty-four'),\n(10092, 25412, 'twenty-five thousand four hundred twelve'),\n(10093, 21678, 'twenty-one thousand six hundred seventy-eight'),\n(10094, 85068, 'eighty-five thousand sixty-eight'),\n(10095, 40462, 'forty thousand four hundred sixty-two'),\n(10096, 6854, 'six thousand eight hundred fifty-four'),\n(10097, 31721, 'thirty-one thousand seven hundred twenty-one'),\n(10098, 12954, 'twelve thousand nine hundred fifty-four'),\n(10099, 22132, 'twenty-two thousand one hundred thirty-two'),\n(10100, 11088, 'eleven thousand eighty-eight'),\n(10101, 56936, 'fifty-six thousand nine hundred thirty-six'),\n(10102, 4088, 'four thousand eighty-eight'),\n(10103, 71434, 'seventy-one thousand four hundred thirty-four'),\n(10104, 30525, 'thirty thousand five hundred twenty-five'),\n(10105, 10768, 'ten thousand seven hundred sixty-eight'),\n(10106, 59864, 'fifty-nine thousand eight hundred sixty-four'),\n(10107, 86995, 'eighty-six thousand nine hundred ninety-five'),\n(10108, 46828, 'forty-six thousand eight hundred twenty-eight'),\n(10109, 92437, 'ninety-two thousand four hundred thirty-seven'),\n(10110, 67956, 'sixty-seven thousand nine hundred fifty-six'),\n(10111, 3135, 'three thousand one hundred thirty-five'),\n(10112, 17166, 'seventeen thousand one hundred sixty-six'),\n(10113, 95375, 'ninety-five thousand three hundred seventy-five'),\n(10114, 10317, 'ten thousand three hundred seventeen'),\n(10115, 92095, 'ninety-two thousand ninety-five'),\n(10116, 15089, 'fifteen thousand eighty-nine'),\n(10117, 22295, 'twenty-two thousand two hundred ninety-five'),\n(10118, 69161, 'sixty-nine thousand one hundred sixty-one'),\n(10119, 6487, 'six thousand four hundred eighty-seven'),\n(10120, 10844, 'ten thousand eight hundred forty-four'),\n(10121, 96110, 'ninety-six thousand one hundred ten'),\n(10122, 18819, 'eighteen thousand eight hundred nineteen'),\n(10123, 10972, 'ten thousand nine hundred seventy-two'),\n(10124, 33732, 'thirty-three thousand seven hundred thirty-two'),\n(10125, 52138, 'fifty-two thousand one hundred thirty-eight'),\n(10126, 48624, 'forty-eight thousand six hundred twenty-four'),\n(10127, 94840, 'ninety-four thousand eight hundred forty'),\n(10128, 42108, 'forty-two thousand one hundred eight'),\n(10129, 41793, 'forty-one thousand seven hundred ninety-three'),\n(10130, 64579, 'sixty-four thousand five hundred seventy-nine'),\n(10131, 41902, 'forty-one thousand nine hundred two'),\n(10132, 9141, 'nine thousand one hundred forty-one'),\n(10133, 69247, 'sixty-nine thousand two hundred forty-seven'),\n(10134, 64837, 'sixty-four thousand eight hundred thirty-seven'),\n(10135, 44654, 'forty-four thousand six hundred fifty-four'),\n(10136, 17940, 'seventeen thousand nine hundred forty'),\n(10137, 67097, 'sixty-seven thousand ninety-seven'),\n(10138, 94388, 'ninety-four thousand three hundred eighty-eight'),\n(10139, 97454, 'ninety-seven thousand four hundred fifty-four'),\n(10140, 49395, 'forty-nine thousand three hundred ninety-five'),\n(10141, 28209, 'twenty-eight thousand two hundred nine'),\n(10142, 94587, 'ninety-four thousand five hundred eighty-seven'),\n(10143, 76900, 'seventy-six thousand nine hundred'),\n(10144, 50976, 'fifty thousand nine hundred seventy-six'),\n(10145, 42009, 'forty-two thousand nine'),\n(10146, 55337, 'fifty-five thousand three hundred thirty-seven'),\n(10147, 43386, 'forty-three thousand three hundred eighty-six'),\n(10148, 71133, 'seventy-one thousand one hundred thirty-three'),\n(10149, 18762, 'eighteen thousand seven hundred sixty-two'),\n(10150, 83631, 'eighty-three thousand six hundred thirty-one'),\n(10151, 48583, 'forty-eight thousand five hundred eighty-three'),\n(10152, 37275, 'thirty-seven thousand two hundred seventy-five'),\n(10153, 74334, 'seventy-four thousand three hundred thirty-four'),\n(10154, 2982, 'two thousand nine hundred eighty-two'),\n(10155, 6976, 'six thousand nine hundred seventy-six'),\n(10156, 39273, 'thirty-nine thousand two hundred seventy-three'),\n(10157, 27624, 'twenty-seven thousand six hundred twenty-four'),\n(10158, 98848, 'ninety-eight thousand eight hundred forty-eight'),\n(10159, 27469, 'twenty-seven thousand four hundred sixty-nine'),\n(10160, 84326, 'eighty-four thousand three hundred twenty-six'),\n(10161, 63020, 'sixty-three thousand twenty'),\n(10162, 75022, 'seventy-five thousand twenty-two'),\n(10163, 27420, 'twenty-seven thousand four hundred twenty'),\n(10164, 41052, 'forty-one thousand fifty-two'),\n(10165, 21534, 'twenty-one thousand five hundred thirty-four'),\n(10166, 71154, 'seventy-one thousand one hundred fifty-four'),\n(10167, 98187, 'ninety-eight thousand one hundred eighty-seven'),\n(10168, 67507, 'sixty-seven thousand five hundred seven'),\n(10169, 29966, 'twenty-nine thousand nine hundred sixty-six'),\n(10170, 25408, 'twenty-five thousand four hundred eight'),\n(10171, 18694, 'eighteen thousand six hundred ninety-four'),\n(10172, 44142, 'forty-four thousand one hundred forty-two'),\n(10173, 89828, 'eighty-nine thousand eight hundred twenty-eight'),\n(10174, 42489, 'forty-two thousand four hundred eighty-nine'),\n(10175, 56553, 'fifty-six thousand five hundred fifty-three'),\n(10176, 21233, 'twenty-one thousand two hundred thirty-three'),\n(10177, 71442, 'seventy-one thousand four hundred forty-two'),\n(10178, 94227, 'ninety-four thousand two hundred twenty-seven'),\n(10179, 31597, 'thirty-one thousand five hundred ninety-seven'),\n(10180, 93967, 'ninety-three thousand nine hundred sixty-seven'),\n(10181, 60897, 'sixty thousand eight hundred ninety-seven'),\n(10182, 43723, 'forty-three thousand seven hundred twenty-three'),\n(10183, 82011, 'eighty-two thousand eleven'),\n(10184, 86358, 'eighty-six thousand three hundred fifty-eight'),\n(10185, 78704, 'seventy-eight thousand seven hundred four'),\n(10186, 51381, 'fifty-one thousand three hundred eighty-one'),\n(10187, 9489, 'nine thousand four hundred eighty-nine'),\n(10188, 32395, 'thirty-two thousand three hundred ninety-five'),\n(10189, 66736, 'sixty-six thousand seven hundred thirty-six'),\n(10190, 72421, 'seventy-two thousand four hundred twenty-one'),\n(10191, 20505, 'twenty thousand five hundred five'),\n(10192, 60892, 'sixty thousand eight hundred ninety-two'),\n(10193, 86125, 'eighty-six thousand one hundred twenty-five'),\n(10194, 16480, 'sixteen thousand four hundred eighty'),\n(10195, 67149, 'sixty-seven thousand one hundred forty-nine'),\n(10196, 49960, 'forty-nine thousand nine hundred sixty'),\n(10197, 43029, 'forty-three thousand twenty-nine'),\n(10198, 5057, 'five thousand fifty-seven'),\n(10199, 29649, 'twenty-nine thousand six hundred forty-nine'),\n(10200, 62197, 'sixty-two thousand one hundred ninety-seven'),\n(10201, 98587, 'ninety-eight thousand five hundred eighty-seven'),\n(10202, 32622, 'thirty-two thousand six hundred twenty-two'),\n(10203, 31145, 'thirty-one thousand one hundred forty-five'),\n(10204, 56582, 'fifty-six thousand five hundred eighty-two'),\n(10205, 8708, 'eight thousand seven hundred eight'),\n(10206, 80782, 'eighty thousand seven hundred eighty-two'),\n(10207, 1834, 'one thousand eight hundred thirty-four'),\n(10208, 21888, 'twenty-one thousand eight hundred eighty-eight'),\n(10209, 52793, 'fifty-two thousand seven hundred ninety-three'),\n(10210, 98913, 'ninety-eight thousand nine hundred thirteen'),\n(10211, 788, 'seven hundred eighty-eight'),\n(10212, 78848, 'seventy-eight thousand eight hundred forty-eight'),\n(10213, 43230, 'forty-three thousand two hundred thirty'),\n(10214, 8799, 'eight thousand seven hundred ninety-nine'),\n(10215, 54038, 'fifty-four thousand thirty-eight'),\n(10216, 92344, 'ninety-two thousand three hundred forty-four'),\n(10217, 19882, 'nineteen thousand eight hundred eighty-two'),\n(10218, 66941, 'sixty-six thousand nine hundred forty-one'),\n(10219, 90274, 'ninety thousand two hundred seventy-four'),\n(10220, 70729, 'seventy thousand seven hundred twenty-nine'),\n(10221, 41013, 'forty-one thousand thirteen'),\n(10222, 65717, 'sixty-five thousand seven hundred seventeen'),\n(10223, 6157, 'six thousand one hundred fifty-seven'),\n(10224, 52191, 'fifty-two thousand one hundred ninety-one'),\n(10225, 77086, 'seventy-seven thousand eighty-six'),\n(10226, 92092, 'ninety-two thousand ninety-two'),\n(10227, 98823, 'ninety-eight thousand eight hundred twenty-three'),\n(10228, 19498, 'nineteen thousand four hundred ninety-eight'),\n(10229, 14181, 'fourteen thousand one hundred eighty-one'),\n(10230, 53665, 'fifty-three thousand six hundred sixty-five'),\n(10231, 38861, 'thirty-eight thousand eight hundred sixty-one'),\n(10232, 512, 'five hundred twelve'),\n(10233, 99022, 'ninety-nine thousand twenty-two'),\n(10234, 77947, 'seventy-seven thousand nine hundred forty-seven'),\n(10235, 45582, 'forty-five thousand five hundred eighty-two'),\n(10236, 17177, 'seventeen thousand one hundred seventy-seven'),\n(10237, 83840, 'eighty-three thousand eight hundred forty'),\n(10238, 92528, 'ninety-two thousand five hundred twenty-eight'),\n(10239, 22333, 'twenty-two thousand three hundred thirty-three'),\n(10240, 80183, 'eighty thousand one hundred eighty-three'),\n(10241, 91124, 'ninety-one thousand one hundred twenty-four'),\n(10242, 50219, 'fifty thousand two hundred nineteen'),\n(10243, 86522, 'eighty-six thousand five hundred twenty-two'),\n(10244, 91434, 'ninety-one thousand four hundred thirty-four'),\n(10245, 43887, 'forty-three thousand eight hundred eighty-seven'),\n(10246, 33478, 'thirty-three thousand four hundred seventy-eight'),\n(10247, 62924, 'sixty-two thousand nine hundred twenty-four'),\n(10248, 89057, 'eighty-nine thousand fifty-seven'),\n(10249, 46407, 'forty-six thousand four hundred seven'),\n(10250, 90629, 'ninety thousand six hundred twenty-nine'),\n(10251, 63581, 'sixty-three thousand five hundred eighty-one'),\n(10252, 5364, 'five thousand three hundred sixty-four'),\n(10253, 22919, 'twenty-two thousand nine hundred nineteen'),\n(10254, 93301, 'ninety-three thousand three hundred one'),\n(10255, 47925, 'forty-seven thousand nine hundred twenty-five'),\n(10256, 62950, 'sixty-two thousand nine hundred fifty'),\n(10257, 72924, 'seventy-two thousand nine hundred twenty-four'),\n(10258, 55715, 'fifty-five thousand seven hundred fifteen'),\n(10259, 29794, 'twenty-nine thousand seven hundred ninety-four'),\n(10260, 87159, 'eighty-seven thousand one hundred fifty-nine'),\n(10261, 35726, 'thirty-five thousand seven hundred twenty-six'),\n(10262, 25290, 'twenty-five thousand two hundred ninety'),\n(10263, 71038, 'seventy-one thousand thirty-eight'),\n(10264, 27862, 'twenty-seven thousand eight hundred sixty-two'),\n(10265, 23841, 'twenty-three thousand eight hundred forty-one'),\n(10266, 60438, 'sixty thousand four hundred thirty-eight'),\n(10267, 83993, 'eighty-three thousand nine hundred ninety-three'),\n(10268, 62405, 'sixty-two thousand four hundred five'),\n(10269, 24054, 'twenty-four thousand fifty-four'),\n(10270, 57272, 'fifty-seven thousand two hundred seventy-two'),\n(10271, 11856, 'eleven thousand eight hundred fifty-six'),\n(10272, 57422, 'fifty-seven thousand four hundred twenty-two'),\n(10273, 11750, 'eleven thousand seven hundred fifty'),\n(10274, 73859, 'seventy-three thousand eight hundred fifty-nine'),\n(10275, 68654, 'sixty-eight thousand six hundred fifty-four'),\n(10276, 20089, 'twenty thousand eighty-nine'),\n(10277, 59911, 'fifty-nine thousand nine hundred eleven'),\n(10278, 49931, 'forty-nine thousand nine hundred thirty-one'),\n(10279, 54876, 'fifty-four thousand eight hundred seventy-six'),\n(10280, 46280, 'forty-six thousand two hundred eighty'),\n(10281, 24422, 'twenty-four thousand four hundred twenty-two'),\n(10282, 48733, 'forty-eight thousand seven hundred thirty-three'),\n(10283, 13374, 'thirteen thousand three hundred seventy-four'),\n(10284, 57736, 'fifty-seven thousand seven hundred thirty-six'),\n(10285, 37380, 'thirty-seven thousand three hundred eighty'),\n(10286, 96731, 'ninety-six thousand seven hundred thirty-one'),\n(10287, 97572, 'ninety-seven thousand five hundred seventy-two'),\n(10288, 72194, 'seventy-two thousand one hundred ninety-four'),\n(10289, 44460, 'forty-four thousand four hundred sixty'),\n(10290, 53187, 'fifty-three thousand one hundred eighty-seven'),\n(10291, 8786, 'eight thousand seven hundred eighty-six'),\n(10292, 4737, 'four thousand seven hundred thirty-seven'),\n(10293, 68178, 'sixty-eight thousand one hundred seventy-eight'),\n(10294, 37344, 'thirty-seven thousand three hundred forty-four'),\n(10295, 49195, 'forty-nine thousand one hundred ninety-five'),\n(10296, 81421, 'eighty-one thousand four hundred twenty-one'),\n(10297, 97365, 'ninety-seven thousand three hundred sixty-five'),\n(10298, 87319, 'eighty-seven thousand three hundred nineteen'),\n(10299, 30615, 'thirty thousand six hundred fifteen'),\n(10300, 86579, 'eighty-six thousand five hundred seventy-nine'),\n(10301, 40921, 'forty thousand nine hundred twenty-one'),\n(10302, 89272, 'eighty-nine thousand two hundred seventy-two'),\n(10303, 50023, 'fifty thousand twenty-three'),\n(10304, 95552, 'ninety-five thousand five hundred fifty-two'),\n(10305, 77200, 'seventy-seven thousand two hundred'),\n(10306, 80643, 'eighty thousand six hundred forty-three'),\n(10307, 88530, 'eighty-eight thousand five hundred thirty'),\n(10308, 52392, 'fifty-two thousand three hundred ninety-two'),\n(10309, 88186, 'eighty-eight thousand one hundred eighty-six'),\n(10310, 35070, 'thirty-five thousand seventy'),\n(10311, 72151, 'seventy-two thousand one hundred fifty-one'),\n(10312, 88942, 'eighty-eight thousand nine hundred forty-two'),\n(10313, 84646, 'eighty-four thousand six hundred forty-six'),\n(10314, 3944, 'three thousand nine hundred forty-four'),\n(10315, 20533, 'twenty thousand five hundred thirty-three'),\n(10316, 28512, 'twenty-eight thousand five hundred twelve'),\n(10317, 79617, 'seventy-nine thousand six hundred seventeen'),\n(10318, 345, 'three hundred forty-five'),\n(10319, 48197, 'forty-eight thousand one hundred ninety-seven'),\n(10320, 73820, 'seventy-three thousand eight hundred twenty'),\n(10321, 73203, 'seventy-three thousand two hundred three'),\n(10322, 79567, 'seventy-nine thousand five hundred sixty-seven'),\n(10323, 7196, 'seven thousand one hundred ninety-six'),\n(10324, 46206, 'forty-six thousand two hundred six'),\n(10325, 44181, 'forty-four thousand one hundred eighty-one'),\n(10326, 11792, 'eleven thousand seven hundred ninety-two'),\n(10327, 12881, 'twelve thousand eight hundred eighty-one'),\n(10328, 95524, 'ninety-five thousand five hundred twenty-four'),\n(10329, 72593, 'seventy-two thousand five hundred ninety-three'),\n(10330, 80211, 'eighty thousand two hundred eleven'),\n(10331, 48611, 'forty-eight thousand six hundred eleven'),\n(10332, 82047, 'eighty-two thousand forty-seven'),\n(10333, 77177, 'seventy-seven thousand one hundred seventy-seven'),\n(10334, 257, 'two hundred fifty-seven'),\n(10335, 36466, 'thirty-six thousand four hundred sixty-six'),\n(10336, 14574, 'fourteen thousand five hundred seventy-four'),\n(10337, 45098, 'forty-five thousand ninety-eight'),\n(10338, 77630, 'seventy-seven thousand six hundred thirty'),\n(10339, 71570, 'seventy-one thousand five hundred seventy'),\n(10340, 97718, 'ninety-seven thousand seven hundred eighteen'),\n(10341, 47146, 'forty-seven thousand one hundred forty-six'),\n(10342, 29410, 'twenty-nine thousand four hundred ten'),\n(10343, 4725, 'four thousand seven hundred twenty-five'),\n(10344, 61692, 'sixty-one thousand six hundred ninety-two'),\n(10345, 91558, 'ninety-one thousand five hundred fifty-eight'),\n(10346, 77971, 'seventy-seven thousand nine hundred seventy-one'),\n(10347, 35749, 'thirty-five thousand seven hundred forty-nine'),\n(10348, 58875, 'fifty-eight thousand eight hundred seventy-five'),\n(10349, 22918, 'twenty-two thousand nine hundred eighteen'),\n(10350, 86802, 'eighty-six thousand eight hundred two'),\n(10351, 87662, 'eighty-seven thousand six hundred sixty-two'),\n(10352, 76394, 'seventy-six thousand three hundred ninety-four'),\n(10353, 2366, 'two thousand three hundred sixty-six'),\n(10354, 69310, 'sixty-nine thousand three hundred ten'),\n(10355, 14691, 'fourteen thousand six hundred ninety-one'),\n(10356, 39756, 'thirty-nine thousand seven hundred fifty-six'),\n(10357, 58155, 'fifty-eight thousand one hundred fifty-five'),\n(10358, 70934, 'seventy thousand nine hundred thirty-four'),\n(10359, 24249, 'twenty-four thousand two hundred forty-nine'),\n(10360, 67762, 'sixty-seven thousand seven hundred sixty-two'),\n(10361, 22437, 'twenty-two thousand four hundred thirty-seven'),\n(10362, 81112, 'eighty-one thousand one hundred twelve'),\n(10363, 51440, 'fifty-one thousand four hundred forty'),\n(10364, 94451, 'ninety-four thousand four hundred fifty-one'),\n(10365, 23046, 'twenty-three thousand forty-six'),\n(10366, 36970, 'thirty-six thousand nine hundred seventy'),\n(10367, 26965, 'twenty-six thousand nine hundred sixty-five'),\n(10368, 71037, 'seventy-one thousand thirty-seven'),\n(10369, 85529, 'eighty-five thousand five hundred twenty-nine'),\n(10370, 57720, 'fifty-seven thousand seven hundred twenty'),\n(10371, 68703, 'sixty-eight thousand seven hundred three'),\n(10372, 48093, 'forty-eight thousand ninety-three'),\n(10373, 32222, 'thirty-two thousand two hundred twenty-two'),\n(10374, 24780, 'twenty-four thousand seven hundred eighty'),\n(10375, 98605, 'ninety-eight thousand six hundred five'),\n(10376, 80788, 'eighty thousand seven hundred eighty-eight'),\n(10377, 78338, 'seventy-eight thousand three hundred thirty-eight'),\n(10378, 2806, 'two thousand eight hundred six'),\n(10379, 80487, 'eighty thousand four hundred eighty-seven'),\n(10380, 512, 'five hundred twelve'),\n(10381, 86173, 'eighty-six thousand one hundred seventy-three'),\n(10382, 82160, 'eighty-two thousand one hundred sixty'),\n(10383, 77475, 'seventy-seven thousand four hundred seventy-five'),\n(10384, 17441, 'seventeen thousand four hundred forty-one'),\n(10385, 9143, 'nine thousand one hundred forty-three'),\n(10386, 47682, 'forty-seven thousand six hundred eighty-two'),\n(10387, 45608, 'forty-five thousand six hundred eight'),\n(10388, 25793, 'twenty-five thousand seven hundred ninety-three'),\n(10389, 97514, 'ninety-seven thousand five hundred fourteen'),\n(10390, 68165, 'sixty-eight thousand one hundred sixty-five'),\n(10391, 69801, 'sixty-nine thousand eight hundred one'),\n(10392, 41587, 'forty-one thousand five hundred eighty-seven'),\n(10393, 13432, 'thirteen thousand four hundred thirty-two'),\n(10394, 89619, 'eighty-nine thousand six hundred nineteen'),\n(10395, 41244, 'forty-one thousand two hundred forty-four'),\n(10396, 83446, 'eighty-three thousand four hundred forty-six'),\n(10397, 30914, 'thirty thousand nine hundred fourteen'),\n(10398, 45369, 'forty-five thousand three hundred sixty-nine'),\n(10399, 81742, 'eighty-one thousand seven hundred forty-two'),\n(10400, 76009, 'seventy-six thousand nine'),\n(10401, 38569, 'thirty-eight thousand five hundred sixty-nine'),\n(10402, 13362, 'thirteen thousand three hundred sixty-two'),\n(10403, 84025, 'eighty-four thousand twenty-five'),\n(10404, 56985, 'fifty-six thousand nine hundred eighty-five'),\n(10405, 11889, 'eleven thousand eight hundred eighty-nine'),\n(10406, 74233, 'seventy-four thousand two hundred thirty-three'),\n(10407, 6279, 'six thousand two hundred seventy-nine'),\n(10408, 10398, 'ten thousand three hundred ninety-eight'),\n(10409, 54466, 'fifty-four thousand four hundred sixty-six'),\n(10410, 83572, 'eighty-three thousand five hundred seventy-two'),\n(10411, 68894, 'sixty-eight thousand eight hundred ninety-four'),\n(10412, 49574, 'forty-nine thousand five hundred seventy-four'),\n(10413, 32964, 'thirty-two thousand nine hundred sixty-four'),\n(10414, 55112, 'fifty-five thousand one hundred twelve'),\n(10415, 57379, 'fifty-seven thousand three hundred seventy-nine'),\n(10416, 56799, 'fifty-six thousand seven hundred ninety-nine'),\n(10417, 59788, 'fifty-nine thousand seven hundred eighty-eight'),\n(10418, 40118, 'forty thousand one hundred eighteen'),\n(10419, 9262, 'nine thousand two hundred sixty-two'),\n(10420, 91864, 'ninety-one thousand eight hundred sixty-four'),\n(10421, 83889, 'eighty-three thousand eight hundred eighty-nine'),\n(10422, 64947, 'sixty-four thousand nine hundred forty-seven'),\n(10423, 40464, 'forty thousand four hundred sixty-four'),\n(10424, 65685, 'sixty-five thousand six hundred eighty-five'),\n(10425, 1184, 'one thousand one hundred eighty-four'),\n(10426, 73744, 'seventy-three thousand seven hundred forty-four'),\n(10427, 43448, 'forty-three thousand four hundred forty-eight'),\n(10428, 9633, 'nine thousand six hundred thirty-three'),\n(10429, 82246, 'eighty-two thousand two hundred forty-six'),\n(10430, 44276, 'forty-four thousand two hundred seventy-six'),\n(10431, 98338, 'ninety-eight thousand three hundred thirty-eight'),\n(10432, 35746, 'thirty-five thousand seven hundred forty-six'),\n(10433, 34509, 'thirty-four thousand five hundred nine'),\n(10434, 50233, 'fifty thousand two hundred thirty-three'),\n(10435, 3988, 'three thousand nine hundred eighty-eight'),\n(10436, 62096, 'sixty-two thousand ninety-six'),\n(10437, 45120, 'forty-five thousand one hundred twenty'),\n(10438, 10384, 'ten thousand three hundred eighty-four'),\n(10439, 58412, 'fifty-eight thousand four hundred twelve'),\n(10440, 6210, 'six thousand two hundred ten'),\n(10441, 92060, 'ninety-two thousand sixty'),\n(10442, 22549, 'twenty-two thousand five hundred forty-nine'),\n(10443, 14654, 'fourteen thousand six hundred fifty-four'),\n(10444, 79862, 'seventy-nine thousand eight hundred sixty-two'),\n(10445, 13827, 'thirteen thousand eight hundred twenty-seven'),\n(10446, 70994, 'seventy thousand nine hundred ninety-four'),\n(10447, 29434, 'twenty-nine thousand four hundred thirty-four'),\n(10448, 27259, 'twenty-seven thousand two hundred fifty-nine'),\n(10449, 99804, 'ninety-nine thousand eight hundred four'),\n(10450, 45028, 'forty-five thousand twenty-eight'),\n(10451, 11398, 'eleven thousand three hundred ninety-eight'),\n(10452, 55444, 'fifty-five thousand four hundred forty-four'),\n(10453, 99800, 'ninety-nine thousand eight hundred'),\n(10454, 58161, 'fifty-eight thousand one hundred sixty-one'),\n(10455, 40784, 'forty thousand seven hundred eighty-four'),\n(10456, 95158, 'ninety-five thousand one hundred fifty-eight'),\n(10457, 82507, 'eighty-two thousand five hundred seven'),\n(10458, 61525, 'sixty-one thousand five hundred twenty-five'),\n(10459, 98305, 'ninety-eight thousand three hundred five'),\n(10460, 78610, 'seventy-eight thousand six hundred ten'),\n(10461, 887, 'eight hundred eighty-seven'),\n(10462, 30663, 'thirty thousand six hundred sixty-three'),\n(10463, 24156, 'twenty-four thousand one hundred fifty-six'),\n(10464, 89993, 'eighty-nine thousand nine hundred ninety-three'),\n(10465, 62451, 'sixty-two thousand four hundred fifty-one'),\n(10466, 32897, 'thirty-two thousand eight hundred ninety-seven'),\n(10467, 72206, 'seventy-two thousand two hundred six'),\n(10468, 85870, 'eighty-five thousand eight hundred seventy'),\n(10469, 10562, 'ten thousand five hundred sixty-two'),\n(10470, 90397, 'ninety thousand three hundred ninety-seven'),\n(10471, 40363, 'forty thousand three hundred sixty-three'),\n(10472, 43581, 'forty-three thousand five hundred eighty-one'),\n(10473, 63066, 'sixty-three thousand sixty-six'),\n(10474, 63630, 'sixty-three thousand six hundred thirty'),\n(10475, 59944, 'fifty-nine thousand nine hundred forty-four'),\n(10476, 79379, 'seventy-nine thousand three hundred seventy-nine'),\n(10477, 56319, 'fifty-six thousand three hundred nineteen'),\n(10478, 25832, 'twenty-five thousand eight hundred thirty-two'),\n(10479, 69714, 'sixty-nine thousand seven hundred fourteen'),\n(10480, 72589, 'seventy-two thousand five hundred eighty-nine'),\n(10481, 64426, 'sixty-four thousand four hundred twenty-six'),\n(10482, 15595, 'fifteen thousand five hundred ninety-five'),\n(10483, 94937, 'ninety-four thousand nine hundred thirty-seven'),\n(10484, 20544, 'twenty thousand five hundred forty-four'),\n(10485, 73212, 'seventy-three thousand two hundred twelve'),\n(10486, 78272, 'seventy-eight thousand two hundred seventy-two'),\n(10487, 96263, 'ninety-six thousand two hundred sixty-three'),\n(10488, 57888, 'fifty-seven thousand eight hundred eighty-eight'),\n(10489, 6577, 'six thousand five hundred seventy-seven'),\n(10490, 87243, 'eighty-seven thousand two hundred forty-three'),\n(10491, 45050, 'forty-five thousand fifty'),\n(10492, 47420, 'forty-seven thousand four hundred twenty'),\n(10493, 22551, 'twenty-two thousand five hundred fifty-one'),\n(10494, 79991, 'seventy-nine thousand nine hundred ninety-one'),\n(10495, 57365, 'fifty-seven thousand three hundred sixty-five'),\n(10496, 70310, 'seventy thousand three hundred ten'),\n(10497, 7280, 'seven thousand two hundred eighty'),\n(10498, 92371, 'ninety-two thousand three hundred seventy-one'),\n(10499, 94230, 'ninety-four thousand two hundred thirty'),\n(10500, 92527, 'ninety-two thousand five hundred twenty-seven'),\n(10501, 47272, 'forty-seven thousand two hundred seventy-two'),\n(10502, 3044, 'three thousand forty-four'),\n(10503, 36605, 'thirty-six thousand six hundred five'),\n(10504, 6326, 'six thousand three hundred twenty-six'),\n(10505, 46589, 'forty-six thousand five hundred eighty-nine'),\n(10506, 4232, 'four thousand two hundred thirty-two'),\n(10507, 13303, 'thirteen thousand three hundred three'),\n(10508, 18564, 'eighteen thousand five hundred sixty-four'),\n(10509, 35064, 'thirty-five thousand sixty-four'),\n(10510, 16968, 'sixteen thousand nine hundred sixty-eight'),\n(10511, 20300, 'twenty thousand three hundred'),\n(10512, 31944, 'thirty-one thousand nine hundred forty-four'),\n(10513, 15710, 'fifteen thousand seven hundred ten'),\n(10514, 99425, 'ninety-nine thousand four hundred twenty-five'),\n(10515, 57071, 'fifty-seven thousand seventy-one'),\n(10516, 42888, 'forty-two thousand eight hundred eighty-eight'),\n(10517, 90675, 'ninety thousand six hundred seventy-five'),\n(10518, 13798, 'thirteen thousand seven hundred ninety-eight'),\n(10519, 72321, 'seventy-two thousand three hundred twenty-one'),\n(10520, 70031, 'seventy thousand thirty-one'),\n(10521, 38013, 'thirty-eight thousand thirteen'),\n(10522, 29874, 'twenty-nine thousand eight hundred seventy-four'),\n(10523, 96220, 'ninety-six thousand two hundred twenty'),\n(10524, 21856, 'twenty-one thousand eight hundred fifty-six'),\n(10525, 28721, 'twenty-eight thousand seven hundred twenty-one'),\n(10526, 11024, 'eleven thousand twenty-four'),\n(10527, 26017, 'twenty-six thousand seventeen'),\n(10528, 2275, 'two thousand two hundred seventy-five'),\n(10529, 29804, 'twenty-nine thousand eight hundred four'),\n(10530, 41864, 'forty-one thousand eight hundred sixty-four'),\n(10531, 77439, 'seventy-seven thousand four hundred thirty-nine'),\n(10532, 37600, 'thirty-seven thousand six hundred'),\n(10533, 88606, 'eighty-eight thousand six hundred six'),\n(10534, 57478, 'fifty-seven thousand four hundred seventy-eight'),\n(10535, 96296, 'ninety-six thousand two hundred ninety-six'),\n(10536, 96516, 'ninety-six thousand five hundred sixteen'),\n(10537, 59728, 'fifty-nine thousand seven hundred twenty-eight'),\n(10538, 47356, 'forty-seven thousand three hundred fifty-six'),\n(10539, 22521, 'twenty-two thousand five hundred twenty-one'),\n(10540, 41674, 'forty-one thousand six hundred seventy-four'),\n(10541, 16290, 'sixteen thousand two hundred ninety'),\n(10542, 41543, 'forty-one thousand five hundred forty-three'),\n(10543, 44586, 'forty-four thousand five hundred eighty-six'),\n(10544, 90745, 'ninety thousand seven hundred forty-five'),\n(10545, 35670, 'thirty-five thousand six hundred seventy'),\n(10546, 67549, 'sixty-seven thousand five hundred forty-nine'),\n(10547, 730, 'seven hundred thirty'),\n(10548, 59043, 'fifty-nine thousand forty-three'),\n(10549, 73793, 'seventy-three thousand seven hundred ninety-three'),\n(10550, 98827, 'ninety-eight thousand eight hundred twenty-seven'),\n(10551, 71793, 'seventy-one thousand seven hundred ninety-three'),\n(10552, 29182, 'twenty-nine thousand one hundred eighty-two'),\n(10553, 176, 'one hundred seventy-six'),\n(10554, 21840, 'twenty-one thousand eight hundred forty'),\n(10555, 28531, 'twenty-eight thousand five hundred thirty-one'),\n(10556, 22179, 'twenty-two thousand one hundred seventy-nine'),\n(10557, 16960, 'sixteen thousand nine hundred sixty'),\n(10558, 64718, 'sixty-four thousand seven hundred eighteen'),\n(10559, 84285, 'eighty-four thousand two hundred eighty-five'),\n(10560, 73736, 'seventy-three thousand seven hundred thirty-six'),\n(10561, 3162, 'three thousand one hundred sixty-two'),\n(10562, 19906, 'nineteen thousand nine hundred six'),\n(10563, 82494, 'eighty-two thousand four hundred ninety-four'),\n(10564, 13709, 'thirteen thousand seven hundred nine'),\n(10565, 85142, 'eighty-five thousand one hundred forty-two'),\n(10566, 17599, 'seventeen thousand five hundred ninety-nine'),\n(10567, 58182, 'fifty-eight thousand one hundred eighty-two'),\n(10568, 97223, 'ninety-seven thousand two hundred twenty-three'),\n(10569, 43151, 'forty-three thousand one hundred fifty-one'),\n(10570, 92278, 'ninety-two thousand two hundred seventy-eight'),\n(10571, 15314, 'fifteen thousand three hundred fourteen'),\n(10572, 8992, 'eight thousand nine hundred ninety-two'),\n(10573, 49577, 'forty-nine thousand five hundred seventy-seven'),\n(10574, 84386, 'eighty-four thousand three hundred eighty-six'),\n(10575, 28630, 'twenty-eight thousand six hundred thirty'),\n(10576, 99953, 'ninety-nine thousand nine hundred fifty-three'),\n(10577, 80631, 'eighty thousand six hundred thirty-one'),\n(10578, 38218, 'thirty-eight thousand two hundred eighteen'),\n(10579, 39377, 'thirty-nine thousand three hundred seventy-seven'),\n(10580, 40538, 'forty thousand five hundred thirty-eight'),\n(10581, 20431, 'twenty thousand four hundred thirty-one'),\n(10582, 69201, 'sixty-nine thousand two hundred one'),\n(10583, 78909, 'seventy-eight thousand nine hundred nine'),\n(10584, 28408, 'twenty-eight thousand four hundred eight'),\n(10585, 59650, 'fifty-nine thousand six hundred fifty'),\n(10586, 79370, 'seventy-nine thousand three hundred seventy'),\n(10587, 89798, 'eighty-nine thousand seven hundred ninety-eight'),\n(10588, 53262, 'fifty-three thousand two hundred sixty-two'),\n(10589, 27597, 'twenty-seven thousand five hundred ninety-seven'),\n(10590, 66559, 'sixty-six thousand five hundred fifty-nine'),\n(10591, 67211, 'sixty-seven thousand two hundred eleven'),\n(10592, 7642, 'seven thousand six hundred forty-two'),\n(10593, 47231, 'forty-seven thousand two hundred thirty-one'),\n(10594, 18254, 'eighteen thousand two hundred fifty-four'),\n(10595, 41055, 'forty-one thousand fifty-five'),\n(10596, 28738, 'twenty-eight thousand seven hundred thirty-eight'),\n(10597, 44634, 'forty-four thousand six hundred thirty-four'),\n(10598, 31702, 'thirty-one thousand seven hundred two'),\n(10599, 97882, 'ninety-seven thousand eight hundred eighty-two'),\n(10600, 71255, 'seventy-one thousand two hundred fifty-five'),\n(10601, 69403, 'sixty-nine thousand four hundred three'),\n(10602, 72524, 'seventy-two thousand five hundred twenty-four'),\n(10603, 11006, 'eleven thousand six'),\n(10604, 77631, 'seventy-seven thousand six hundred thirty-one'),\n(10605, 56710, 'fifty-six thousand seven hundred ten'),\n(10606, 56683, 'fifty-six thousand six hundred eighty-three'),\n(10607, 7541, 'seven thousand five hundred forty-one'),\n(10608, 25996, 'twenty-five thousand nine hundred ninety-six'),\n(10609, 45750, 'forty-five thousand seven hundred fifty'),\n(10610, 77245, 'seventy-seven thousand two hundred forty-five'),\n(10611, 15069, 'fifteen thousand sixty-nine'),\n(10612, 40452, 'forty thousand four hundred fifty-two'),\n(10613, 11630, 'eleven thousand six hundred thirty'),\n(10614, 68728, 'sixty-eight thousand seven hundred twenty-eight'),\n(10615, 11092, 'eleven thousand ninety-two'),\n(10616, 67431, 'sixty-seven thousand four hundred thirty-one'),\n(10617, 58899, 'fifty-eight thousand eight hundred ninety-nine'),\n(10618, 92849, 'ninety-two thousand eight hundred forty-nine'),\n(10619, 68706, 'sixty-eight thousand seven hundred six'),\n(10620, 21084, 'twenty-one thousand eighty-four'),\n(10621, 48157, 'forty-eight thousand one hundred fifty-seven'),\n(10622, 69309, 'sixty-nine thousand three hundred nine'),\n(10623, 6823, 'six thousand eight hundred twenty-three'),\n(10624, 47851, 'forty-seven thousand eight hundred fifty-one'),\n(10625, 61922, 'sixty-one thousand nine hundred twenty-two'),\n(10626, 39528, 'thirty-nine thousand five hundred twenty-eight'),\n(10627, 83483, 'eighty-three thousand four hundred eighty-three'),\n(10628, 18146, 'eighteen thousand one hundred forty-six'),\n(10629, 28857, 'twenty-eight thousand eight hundred fifty-seven'),\n(10630, 60797, 'sixty thousand seven hundred ninety-seven'),\n(10631, 34235, 'thirty-four thousand two hundred thirty-five'),\n(10632, 7846, 'seven thousand eight hundred forty-six'),\n(10633, 82029, 'eighty-two thousand twenty-nine'),\n(10634, 34976, 'thirty-four thousand nine hundred seventy-six'),\n(10635, 64398, 'sixty-four thousand three hundred ninety-eight'),\n(10636, 89786, 'eighty-nine thousand seven hundred eighty-six'),\n(10637, 55503, 'fifty-five thousand five hundred three'),\n(10638, 9319, 'nine thousand three hundred nineteen'),\n(10639, 94828, 'ninety-four thousand eight hundred twenty-eight'),\n(10640, 37753, 'thirty-seven thousand seven hundred fifty-three'),\n(10641, 38692, 'thirty-eight thousand six hundred ninety-two'),\n(10642, 64692, 'sixty-four thousand six hundred ninety-two'),\n(10643, 74697, 'seventy-four thousand six hundred ninety-seven'),\n(10644, 17303, 'seventeen thousand three hundred three'),\n(10645, 63072, 'sixty-three thousand seventy-two'),\n(10646, 11344, 'eleven thousand three hundred forty-four'),\n(10647, 74468, 'seventy-four thousand four hundred sixty-eight'),\n(10648, 89290, 'eighty-nine thousand two hundred ninety'),\n(10649, 4172, 'four thousand one hundred seventy-two'),\n(10650, 60904, 'sixty thousand nine hundred four'),\n(10651, 14303, 'fourteen thousand three hundred three'),\n(10652, 77367, 'seventy-seven thousand three hundred sixty-seven'),\n(10653, 27700, 'twenty-seven thousand seven hundred'),\n(10654, 29665, 'twenty-nine thousand six hundred sixty-five'),\n(10655, 1738, 'one thousand seven hundred thirty-eight'),\n(10656, 32214, 'thirty-two thousand two hundred fourteen'),\n(10657, 72124, 'seventy-two thousand one hundred twenty-four'),\n(10658, 88569, 'eighty-eight thousand five hundred sixty-nine'),\n(10659, 75708, 'seventy-five thousand seven hundred eight'),\n(10660, 38860, 'thirty-eight thousand eight hundred sixty'),\n(10661, 59928, 'fifty-nine thousand nine hundred twenty-eight'),\n(10662, 37915, 'thirty-seven thousand nine hundred fifteen'),\n(10663, 83641, 'eighty-three thousand six hundred forty-one'),\n(10664, 92471, 'ninety-two thousand four hundred seventy-one'),\n(10665, 49483, 'forty-nine thousand four hundred eighty-three'),\n(10666, 43960, 'forty-three thousand nine hundred sixty'),\n(10667, 4448, 'four thousand four hundred forty-eight'),\n(10668, 69225, 'sixty-nine thousand two hundred twenty-five'),\n(10669, 59130, 'fifty-nine thousand one hundred thirty'),\n(10670, 72997, 'seventy-two thousand nine hundred ninety-seven'),\n(10671, 83128, 'eighty-three thousand one hundred twenty-eight'),\n(10672, 69655, 'sixty-nine thousand six hundred fifty-five'),\n(10673, 88838, 'eighty-eight thousand eight hundred thirty-eight'),\n(10674, 55192, 'fifty-five thousand one hundred ninety-two'),\n(10675, 38515, 'thirty-eight thousand five hundred fifteen'),\n(10676, 56034, 'fifty-six thousand thirty-four'),\n(10677, 65644, 'sixty-five thousand six hundred forty-four'),\n(10678, 89931, 'eighty-nine thousand nine hundred thirty-one'),\n(10679, 37174, 'thirty-seven thousand one hundred seventy-four'),\n(10680, 71928, 'seventy-one thousand nine hundred twenty-eight'),\n(10681, 26192, 'twenty-six thousand one hundred ninety-two'),\n(10682, 89994, 'eighty-nine thousand nine hundred ninety-four'),\n(10683, 24821, 'twenty-four thousand eight hundred twenty-one'),\n(10684, 52649, 'fifty-two thousand six hundred forty-nine'),\n(10685, 25694, 'twenty-five thousand six hundred ninety-four'),\n(10686, 72433, 'seventy-two thousand four hundred thirty-three'),\n(10687, 87725, 'eighty-seven thousand seven hundred twenty-five'),\n(10688, 13395, 'thirteen thousand three hundred ninety-five'),\n(10689, 25126, 'twenty-five thousand one hundred twenty-six'),\n(10690, 88564, 'eighty-eight thousand five hundred sixty-four'),\n(10691, 47447, 'forty-seven thousand four hundred forty-seven'),\n(10692, 50203, 'fifty thousand two hundred three'),\n(10693, 93609, 'ninety-three thousand six hundred nine'),\n(10694, 28282, 'twenty-eight thousand two hundred eighty-two'),\n(10695, 340, 'three hundred forty'),\n(10696, 56672, 'fifty-six thousand six hundred seventy-two'),\n(10697, 54043, 'fifty-four thousand forty-three'),\n(10698, 60470, 'sixty thousand four hundred seventy'),\n(10699, 36094, 'thirty-six thousand ninety-four'),\n(10700, 67389, 'sixty-seven thousand three hundred eighty-nine'),\n(10701, 63320, 'sixty-three thousand three hundred twenty'),\n(10702, 65356, 'sixty-five thousand three hundred fifty-six'),\n(10703, 76204, 'seventy-six thousand two hundred four'),\n(10704, 58666, 'fifty-eight thousand six hundred sixty-six'),\n(10705, 36466, 'thirty-six thousand four hundred sixty-six'),\n(10706, 4679, 'four thousand six hundred seventy-nine'),\n(10707, 27467, 'twenty-seven thousand four hundred sixty-seven'),\n(10708, 28724, 'twenty-eight thousand seven hundred twenty-four'),\n(10709, 27094, 'twenty-seven thousand ninety-four'),\n(10710, 59500, 'fifty-nine thousand five hundred'),\n(10711, 26473, 'twenty-six thousand four hundred seventy-three'),\n(10712, 14153, 'fourteen thousand one hundred fifty-three'),\n(10713, 88585, 'eighty-eight thousand five hundred eighty-five'),\n(10714, 97716, 'ninety-seven thousand seven hundred sixteen'),\n(10715, 48671, 'forty-eight thousand six hundred seventy-one'),\n(10716, 79805, 'seventy-nine thousand eight hundred five'),\n(10717, 56084, 'fifty-six thousand eighty-four'),\n(10718, 11175, 'eleven thousand one hundred seventy-five'),\n(10719, 23375, 'twenty-three thousand three hundred seventy-five'),\n(10720, 58311, 'fifty-eight thousand three hundred eleven'),\n(10721, 51404, 'fifty-one thousand four hundred four'),\n(10722, 67711, 'sixty-seven thousand seven hundred eleven'),\n(10723, 12209, 'twelve thousand two hundred nine'),\n(10724, 39613, 'thirty-nine thousand six hundred thirteen'),\n(10725, 87999, 'eighty-seven thousand nine hundred ninety-nine'),\n(10726, 3514, 'three thousand five hundred fourteen'),\n(10727, 18092, 'eighteen thousand ninety-two'),\n(10728, 43583, 'forty-three thousand five hundred eighty-three'),\n(10729, 23103, 'twenty-three thousand one hundred three'),\n(10730, 81384, 'eighty-one thousand three hundred eighty-four'),\n(10731, 26286, 'twenty-six thousand two hundred eighty-six'),\n(10732, 94855, 'ninety-four thousand eight hundred fifty-five'),\n(10733, 75849, 'seventy-five thousand eight hundred forty-nine'),\n(10734, 18198, 'eighteen thousand one hundred ninety-eight'),\n(10735, 92810, 'ninety-two thousand eight hundred ten'),\n(10736, 7140, 'seven thousand one hundred forty'),\n(10737, 75210, 'seventy-five thousand two hundred ten'),\n(10738, 10530, 'ten thousand five hundred thirty'),\n(10739, 24349, 'twenty-four thousand three hundred forty-nine'),\n(10740, 18551, 'eighteen thousand five hundred fifty-one'),\n(10741, 35815, 'thirty-five thousand eight hundred fifteen'),\n(10742, 55969, 'fifty-five thousand nine hundred sixty-nine'),\n(10743, 34475, 'thirty-four thousand four hundred seventy-five'),\n(10744, 52758, 'fifty-two thousand seven hundred fifty-eight'),\n(10745, 14418, 'fourteen thousand four hundred eighteen'),\n(10746, 84544, 'eighty-four thousand five hundred forty-four'),\n(10747, 92836, 'ninety-two thousand eight hundred thirty-six'),\n(10748, 19636, 'nineteen thousand six hundred thirty-six'),\n(10749, 63412, 'sixty-three thousand four hundred twelve'),\n(10750, 28284, 'twenty-eight thousand two hundred eighty-four'),\n(10751, 79234, 'seventy-nine thousand two hundred thirty-four'),\n(10752, 8164, 'eight thousand one hundred sixty-four'),\n(10753, 74914, 'seventy-four thousand nine hundred fourteen'),\n(10754, 31733, 'thirty-one thousand seven hundred thirty-three'),\n(10755, 69954, 'sixty-nine thousand nine hundred fifty-four'),\n(10756, 44118, 'forty-four thousand one hundred eighteen'),\n(10757, 73454, 'seventy-three thousand four hundred fifty-four'),\n(10758, 38685, 'thirty-eight thousand six hundred eighty-five'),\n(10759, 61503, 'sixty-one thousand five hundred three'),\n(10760, 6231, 'six thousand two hundred thirty-one'),\n(10761, 60366, 'sixty thousand three hundred sixty-six'),\n(10762, 50989, 'fifty thousand nine hundred eighty-nine'),\n(10763, 21423, 'twenty-one thousand four hundred twenty-three'),\n(10764, 78163, 'seventy-eight thousand one hundred sixty-three'),\n(10765, 4930, 'four thousand nine hundred thirty'),\n(10766, 68137, 'sixty-eight thousand one hundred thirty-seven'),\n(10767, 70190, 'seventy thousand one hundred ninety'),\n(10768, 24999, 'twenty-four thousand nine hundred ninety-nine'),\n(10769, 26462, 'twenty-six thousand four hundred sixty-two'),\n(10770, 22526, 'twenty-two thousand five hundred twenty-six'),\n(10771, 98808, 'ninety-eight thousand eight hundred eight'),\n(10772, 87470, 'eighty-seven thousand four hundred seventy'),\n(10773, 6252, 'six thousand two hundred fifty-two'),\n(10774, 37938, 'thirty-seven thousand nine hundred thirty-eight'),\n(10775, 88639, 'eighty-eight thousand six hundred thirty-nine'),\n(10776, 57730, 'fifty-seven thousand seven hundred thirty'),\n(10777, 28511, 'twenty-eight thousand five hundred eleven'),\n(10778, 66067, 'sixty-six thousand sixty-seven'),\n(10779, 18084, 'eighteen thousand eighty-four'),\n(10780, 67669, 'sixty-seven thousand six hundred sixty-nine'),\n(10781, 6972, 'six thousand nine hundred seventy-two'),\n(10782, 34181, 'thirty-four thousand one hundred eighty-one'),\n(10783, 89491, 'eighty-nine thousand four hundred ninety-one'),\n(10784, 99624, 'ninety-nine thousand six hundred twenty-four'),\n(10785, 72356, 'seventy-two thousand three hundred fifty-six'),\n(10786, 79924, 'seventy-nine thousand nine hundred twenty-four'),\n(10787, 23567, 'twenty-three thousand five hundred sixty-seven'),\n(10788, 83639, 'eighty-three thousand six hundred thirty-nine'),\n(10789, 89510, 'eighty-nine thousand five hundred ten'),\n(10790, 13745, 'thirteen thousand seven hundred forty-five'),\n(10791, 31065, 'thirty-one thousand sixty-five'),\n(10792, 30323, 'thirty thousand three hundred twenty-three'),\n(10793, 5997, 'five thousand nine hundred ninety-seven'),\n(10794, 55682, 'fifty-five thousand six hundred eighty-two'),\n(10795, 14852, 'fourteen thousand eight hundred fifty-two'),\n(10796, 31681, 'thirty-one thousand six hundred eighty-one'),\n(10797, 62939, 'sixty-two thousand nine hundred thirty-nine'),\n(10798, 12121, 'twelve thousand one hundred twenty-one'),\n(10799, 94852, 'ninety-four thousand eight hundred fifty-two'),\n(10800, 99297, 'ninety-nine thousand two hundred ninety-seven'),\n(10801, 34861, 'thirty-four thousand eight hundred sixty-one'),\n(10802, 79531, 'seventy-nine thousand five hundred thirty-one'),\n(10803, 89549, 'eighty-nine thousand five hundred forty-nine'),\n(10804, 43943, 'forty-three thousand nine hundred forty-three'),\n(10805, 42746, 'forty-two thousand seven hundred forty-six'),\n(10806, 41285, 'forty-one thousand two hundred eighty-five'),\n(10807, 92272, 'ninety-two thousand two hundred seventy-two'),\n(10808, 1800, 'one thousand eight hundred'),\n(10809, 99991, 'ninety-nine thousand nine hundred ninety-one'),\n(10810, 21516, 'twenty-one thousand five hundred sixteen'),\n(10811, 36026, 'thirty-six thousand twenty-six'),\n(10812, 21447, 'twenty-one thousand four hundred forty-seven'),\n(10813, 50457, 'fifty thousand four hundred fifty-seven'),\n(10814, 3694, 'three thousand six hundred ninety-four'),\n(10815, 82787, 'eighty-two thousand seven hundred eighty-seven'),\n(10816, 54403, 'fifty-four thousand four hundred three'),\n(10817, 84102, 'eighty-four thousand one hundred two'),\n(10818, 38996, 'thirty-eight thousand nine hundred ninety-six'),\n(10819, 15596, 'fifteen thousand five hundred ninety-six'),\n(10820, 43086, 'forty-three thousand eighty-six'),\n(10821, 50109, 'fifty thousand one hundred nine'),\n(10822, 79831, 'seventy-nine thousand eight hundred thirty-one'),\n(10823, 96309, 'ninety-six thousand three hundred nine'),\n(10824, 86256, 'eighty-six thousand two hundred fifty-six'),\n(10825, 3893, 'three thousand eight hundred ninety-three'),\n(10826, 79264, 'seventy-nine thousand two hundred sixty-four'),\n(10827, 76783, 'seventy-six thousand seven hundred eighty-three'),\n(10828, 19945, 'nineteen thousand nine hundred forty-five'),\n(10829, 77444, 'seventy-seven thousand four hundred forty-four'),\n(10830, 77707, 'seventy-seven thousand seven hundred seven'),\n(10831, 22474, 'twenty-two thousand four hundred seventy-four'),\n(10832, 69607, 'sixty-nine thousand six hundred seven'),\n(10833, 13592, 'thirteen thousand five hundred ninety-two'),\n(10834, 63966, 'sixty-three thousand nine hundred sixty-six'),\n(10835, 99606, 'ninety-nine thousand six hundred six'),\n(10836, 76777, 'seventy-six thousand seven hundred seventy-seven'),\n(10837, 60483, 'sixty thousand four hundred eighty-three'),\n(10838, 83488, 'eighty-three thousand four hundred eighty-eight'),\n(10839, 16832, 'sixteen thousand eight hundred thirty-two'),\n(10840, 95683, 'ninety-five thousand six hundred eighty-three'),\n(10841, 92213, 'ninety-two thousand two hundred thirteen'),\n(10842, 52507, 'fifty-two thousand five hundred seven'),\n(10843, 72085, 'seventy-two thousand eighty-five'),\n(10844, 86689, 'eighty-six thousand six hundred eighty-nine'),\n(10845, 48476, 'forty-eight thousand four hundred seventy-six'),\n(10846, 53168, 'fifty-three thousand one hundred sixty-eight'),\n(10847, 27474, 'twenty-seven thousand four hundred seventy-four'),\n(10848, 42524, 'forty-two thousand five hundred twenty-four'),\n(10849, 23269, 'twenty-three thousand two hundred sixty-nine'),\n(10850, 79452, 'seventy-nine thousand four hundred fifty-two'),\n(10851, 69910, 'sixty-nine thousand nine hundred ten'),\n(10852, 16739, 'sixteen thousand seven hundred thirty-nine'),\n(10853, 48765, 'forty-eight thousand seven hundred sixty-five'),\n(10854, 66684, 'sixty-six thousand six hundred eighty-four'),\n(10855, 83353, 'eighty-three thousand three hundred fifty-three'),\n(10856, 18824, 'eighteen thousand eight hundred twenty-four'),\n(10857, 64499, 'sixty-four thousand four hundred ninety-nine'),\n(10858, 1897, 'one thousand eight hundred ninety-seven'),\n(10859, 24645, 'twenty-four thousand six hundred forty-five'),\n(10860, 84415, 'eighty-four thousand four hundred fifteen'),\n(10861, 80293, 'eighty thousand two hundred ninety-three'),\n(10862, 83655, 'eighty-three thousand six hundred fifty-five'),\n(10863, 77079, 'seventy-seven thousand seventy-nine'),\n(10864, 87494, 'eighty-seven thousand four hundred ninety-four'),\n(10865, 20426, 'twenty thousand four hundred twenty-six'),\n(10866, 25450, 'twenty-five thousand four hundred fifty'),\n(10867, 46757, 'forty-six thousand seven hundred fifty-seven'),\n(10868, 6326, 'six thousand three hundred twenty-six'),\n(10869, 76854, 'seventy-six thousand eight hundred fifty-four'),\n(10870, 42256, 'forty-two thousand two hundred fifty-six'),\n(10871, 28333, 'twenty-eight thousand three hundred thirty-three'),\n(10872, 76827, 'seventy-six thousand eight hundred twenty-seven'),\n(10873, 56774, 'fifty-six thousand seven hundred seventy-four'),\n(10874, 20271, 'twenty thousand two hundred seventy-one'),\n(10875, 33737, 'thirty-three thousand seven hundred thirty-seven'),\n(10876, 49849, 'forty-nine thousand eight hundred forty-nine'),\n(10877, 71387, 'seventy-one thousand three hundred eighty-seven'),\n(10878, 84244, 'eighty-four thousand two hundred forty-four'),\n(10879, 23404, 'twenty-three thousand four hundred four'),\n(10880, 57105, 'fifty-seven thousand one hundred five'),\n(10881, 10308, 'ten thousand three hundred eight'),\n(10882, 53225, 'fifty-three thousand two hundred twenty-five'),\n(10883, 22316, 'twenty-two thousand three hundred sixteen'),\n(10884, 55519, 'fifty-five thousand five hundred nineteen'),\n(10885, 62031, 'sixty-two thousand thirty-one'),\n(10886, 98416, 'ninety-eight thousand four hundred sixteen'),\n(10887, 78805, 'seventy-eight thousand eight hundred five'),\n(10888, 91010, 'ninety-one thousand ten'),\n(10889, 91909, 'ninety-one thousand nine hundred nine'),\n(10890, 24768, 'twenty-four thousand seven hundred sixty-eight'),\n(10891, 7446, 'seven thousand four hundred forty-six'),\n(10892, 68281, 'sixty-eight thousand two hundred eighty-one'),\n(10893, 56866, 'fifty-six thousand eight hundred sixty-six'),\n(10894, 87152, 'eighty-seven thousand one hundred fifty-two'),\n(10895, 27620, 'twenty-seven thousand six hundred twenty'),\n(10896, 97035, 'ninety-seven thousand thirty-five'),\n(10897, 60815, 'sixty thousand eight hundred fifteen'),\n(10898, 6009, 'six thousand nine'),\n(10899, 14173, 'fourteen thousand one hundred seventy-three'),\n(10900, 29077, 'twenty-nine thousand seventy-seven'),\n(10901, 12808, 'twelve thousand eight hundred eight'),\n(10902, 39829, 'thirty-nine thousand eight hundred twenty-nine'),\n(10903, 97966, 'ninety-seven thousand nine hundred sixty-six'),\n(10904, 687, 'six hundred eighty-seven'),\n(10905, 16722, 'sixteen thousand seven hundred twenty-two'),\n(10906, 52339, 'fifty-two thousand three hundred thirty-nine'),\n(10907, 11129, 'eleven thousand one hundred twenty-nine'),\n(10908, 12667, 'twelve thousand six hundred sixty-seven'),\n(10909, 76205, 'seventy-six thousand two hundred five'),\n(10910, 95793, 'ninety-five thousand seven hundred ninety-three'),\n(10911, 24445, 'twenty-four thousand four hundred forty-five'),\n(10912, 5669, 'five thousand six hundred sixty-nine'),\n(10913, 50407, 'fifty thousand four hundred seven'),\n(10914, 22850, 'twenty-two thousand eight hundred fifty'),\n(10915, 20959, 'twenty thousand nine hundred fifty-nine'),\n(10916, 36678, 'thirty-six thousand six hundred seventy-eight'),\n(10917, 31718, 'thirty-one thousand seven hundred eighteen'),\n(10918, 77318, 'seventy-seven thousand three hundred eighteen'),\n(10919, 30829, 'thirty thousand eight hundred twenty-nine'),\n(10920, 21796, 'twenty-one thousand seven hundred ninety-six'),\n(10921, 43332, 'forty-three thousand three hundred thirty-two'),\n(10922, 85776, 'eighty-five thousand seven hundred seventy-six'),\n(10923, 88671, 'eighty-eight thousand six hundred seventy-one'),\n(10924, 13810, 'thirteen thousand eight hundred ten'),\n(10925, 45766, 'forty-five thousand seven hundred sixty-six'),\n(10926, 13213, 'thirteen thousand two hundred thirteen'),\n(10927, 46815, 'forty-six thousand eight hundred fifteen'),\n(10928, 17776, 'seventeen thousand seven hundred seventy-six'),\n(10929, 79604, 'seventy-nine thousand six hundred four'),\n(10930, 56394, 'fifty-six thousand three hundred ninety-four'),\n(10931, 97400, 'ninety-seven thousand four hundred'),\n(10932, 88192, 'eighty-eight thousand one hundred ninety-two'),\n(10933, 73944, 'seventy-three thousand nine hundred forty-four'),\n(10934, 19323, 'nineteen thousand three hundred twenty-three'),\n(10935, 48364, 'forty-eight thousand three hundred sixty-four'),\n(10936, 68051, 'sixty-eight thousand fifty-one'),\n(10937, 69280, 'sixty-nine thousand two hundred eighty'),\n(10938, 25227, 'twenty-five thousand two hundred twenty-seven'),\n(10939, 20913, 'twenty thousand nine hundred thirteen'),\n(10940, 95092, 'ninety-five thousand ninety-two'),\n(10941, 97423, 'ninety-seven thousand four hundred twenty-three'),\n(10942, 86661, 'eighty-six thousand six hundred sixty-one'),\n(10943, 81235, 'eighty-one thousand two hundred thirty-five'),\n(10944, 74133, 'seventy-four thousand one hundred thirty-three'),\n(10945, 66947, 'sixty-six thousand nine hundred forty-seven'),\n(10946, 59842, 'fifty-nine thousand eight hundred forty-two'),\n(10947, 28041, 'twenty-eight thousand forty-one'),\n(10948, 71678, 'seventy-one thousand six hundred seventy-eight'),\n(10949, 17366, 'seventeen thousand three hundred sixty-six'),\n(10950, 69829, 'sixty-nine thousand eight hundred twenty-nine'),\n(10951, 79703, 'seventy-nine thousand seven hundred three'),\n(10952, 88285, 'eighty-eight thousand two hundred eighty-five'),\n(10953, 12128, 'twelve thousand one hundred twenty-eight'),\n(10954, 61107, 'sixty-one thousand one hundred seven'),\n(10955, 46535, 'forty-six thousand five hundred thirty-five'),\n(10956, 50874, 'fifty thousand eight hundred seventy-four'),\n(10957, 31829, 'thirty-one thousand eight hundred twenty-nine'),\n(10958, 25709, 'twenty-five thousand seven hundred nine'),\n(10959, 98403, 'ninety-eight thousand four hundred three'),\n(10960, 18546, 'eighteen thousand five hundred forty-six'),\n(10961, 96806, 'ninety-six thousand eight hundred six'),\n(10962, 51320, 'fifty-one thousand three hundred twenty'),\n(10963, 68888, 'sixty-eight thousand eight hundred eighty-eight'),\n(10964, 29801, 'twenty-nine thousand eight hundred one'),\n(10965, 82083, 'eighty-two thousand eighty-three'),\n(10966, 80826, 'eighty thousand eight hundred twenty-six'),\n(10967, 25599, 'twenty-five thousand five hundred ninety-nine'),\n(10968, 99441, 'ninety-nine thousand four hundred forty-one'),\n(10969, 67990, 'sixty-seven thousand nine hundred ninety'),\n(10970, 86872, 'eighty-six thousand eight hundred seventy-two'),\n(10971, 38112, 'thirty-eight thousand one hundred twelve'),\n(10972, 83330, 'eighty-three thousand three hundred thirty'),\n(10973, 23907, 'twenty-three thousand nine hundred seven'),\n(10974, 92240, 'ninety-two thousand two hundred forty'),\n(10975, 87860, 'eighty-seven thousand eight hundred sixty'),\n(10976, 80781, 'eighty thousand seven hundred eighty-one'),\n(10977, 33514, 'thirty-three thousand five hundred fourteen'),\n(10978, 89202, 'eighty-nine thousand two hundred two'),\n(10979, 51134, 'fifty-one thousand one hundred thirty-four'),\n(10980, 13255, 'thirteen thousand two hundred fifty-five'),\n(10981, 48732, 'forty-eight thousand seven hundred thirty-two'),\n(10982, 71919, 'seventy-one thousand nine hundred nineteen'),\n(10983, 83827, 'eighty-three thousand eight hundred twenty-seven'),\n(10984, 17450, 'seventeen thousand four hundred fifty'),\n(10985, 16502, 'sixteen thousand five hundred two'),\n(10986, 71914, 'seventy-one thousand nine hundred fourteen'),\n(10987, 77896, 'seventy-seven thousand eight hundred ninety-six'),\n(10988, 52849, 'fifty-two thousand eight hundred forty-nine'),\n(10989, 76570, 'seventy-six thousand five hundred seventy'),\n(10990, 27514, 'twenty-seven thousand five hundred fourteen'),\n(10991, 50267, 'fifty thousand two hundred sixty-seven'),\n(10992, 70041, 'seventy thousand forty-one'),\n(10993, 70264, 'seventy thousand two hundred sixty-four'),\n(10994, 17474, 'seventeen thousand four hundred seventy-four'),\n(10995, 71737, 'seventy-one thousand seven hundred thirty-seven'),\n(10996, 51956, 'fifty-one thousand nine hundred fifty-six'),\n(10997, 30555, 'thirty thousand five hundred fifty-five'),\n(10998, 51404, 'fifty-one thousand four hundred four'),\n(10999, 65603, 'sixty-five thousand six hundred three'),\n(11000, 89946, 'eighty-nine thousand nine hundred forty-six'),\n(11001, 95690, 'ninety-five thousand six hundred ninety'),\n(11002, 44375, 'forty-four thousand three hundred seventy-five'),\n(11003, 80579, 'eighty thousand five hundred seventy-nine'),\n(11004, 55264, 'fifty-five thousand two hundred sixty-four'),\n(11005, 5664, 'five thousand six hundred sixty-four'),\n(11006, 71180, 'seventy-one thousand one hundred eighty'),\n(11007, 29479, 'twenty-nine thousand four hundred seventy-nine'),\n(11008, 81332, 'eighty-one thousand three hundred thirty-two'),\n(11009, 74558, 'seventy-four thousand five hundred fifty-eight'),\n(11010, 30712, 'thirty thousand seven hundred twelve'),\n(11011, 25073, 'twenty-five thousand seventy-three'),\n(11012, 99322, 'ninety-nine thousand three hundred twenty-two'),\n(11013, 10091, 'ten thousand ninety-one'),\n(11014, 54073, 'fifty-four thousand seventy-three'),\n(11015, 35525, 'thirty-five thousand five hundred twenty-five'),\n(11016, 38115, 'thirty-eight thousand one hundred fifteen'),\n(11017, 53515, 'fifty-three thousand five hundred fifteen'),\n(11018, 54383, 'fifty-four thousand three hundred eighty-three'),\n(11019, 78708, 'seventy-eight thousand seven hundred eight'),\n(11020, 70507, 'seventy thousand five hundred seven'),\n(11021, 86465, 'eighty-six thousand four hundred sixty-five'),\n(11022, 53726, 'fifty-three thousand seven hundred twenty-six'),\n(11023, 83728, 'eighty-three thousand seven hundred twenty-eight'),\n(11024, 98432, 'ninety-eight thousand four hundred thirty-two'),\n(11025, 72654, 'seventy-two thousand six hundred fifty-four'),\n(11026, 17398, 'seventeen thousand three hundred ninety-eight'),\n(11027, 93682, 'ninety-three thousand six hundred eighty-two'),\n(11028, 17142, 'seventeen thousand one hundred forty-two'),\n(11029, 90899, 'ninety thousand eight hundred ninety-nine'),\n(11030, 88618, 'eighty-eight thousand six hundred eighteen'),\n(11031, 10818, 'ten thousand eight hundred eighteen'),\n(11032, 11278, 'eleven thousand two hundred seventy-eight'),\n(11033, 49406, 'forty-nine thousand four hundred six'),\n(11034, 25370, 'twenty-five thousand three hundred seventy'),\n(11035, 60755, 'sixty thousand seven hundred fifty-five'),\n(11036, 9455, 'nine thousand four hundred fifty-five'),\n(11037, 52054, 'fifty-two thousand fifty-four'),\n(11038, 29373, 'twenty-nine thousand three hundred seventy-three'),\n(11039, 81464, 'eighty-one thousand four hundred sixty-four'),\n(11040, 78036, 'seventy-eight thousand thirty-six'),\n(11041, 86589, 'eighty-six thousand five hundred eighty-nine'),\n(11042, 92884, 'ninety-two thousand eight hundred eighty-four'),\n(11043, 20886, 'twenty thousand eight hundred eighty-six'),\n(11044, 45433, 'forty-five thousand four hundred thirty-three'),\n(11045, 46926, 'forty-six thousand nine hundred twenty-six'),\n(11046, 97624, 'ninety-seven thousand six hundred twenty-four'),\n(11047, 35001, 'thirty-five thousand one'),\n(11048, 2896, 'two thousand eight hundred ninety-six'),\n(11049, 2623, 'two thousand six hundred twenty-three'),\n(11050, 48313, 'forty-eight thousand three hundred thirteen'),\n(11051, 19472, 'nineteen thousand four hundred seventy-two'),\n(11052, 65149, 'sixty-five thousand one hundred forty-nine'),\n(11053, 63538, 'sixty-three thousand five hundred thirty-eight'),\n(11054, 68727, 'sixty-eight thousand seven hundred twenty-seven'),\n(11055, 78802, 'seventy-eight thousand eight hundred two'),\n(11056, 64430, 'sixty-four thousand four hundred thirty'),\n(11057, 93158, 'ninety-three thousand one hundred fifty-eight'),\n(11058, 77277, 'seventy-seven thousand two hundred seventy-seven'),\n(11059, 30571, 'thirty thousand five hundred seventy-one'),\n(11060, 6045, 'six thousand forty-five'),\n(11061, 94702, 'ninety-four thousand seven hundred two'),\n(11062, 49535, 'forty-nine thousand five hundred thirty-five'),\n(11063, 35387, 'thirty-five thousand three hundred eighty-seven'),\n(11064, 57822, 'fifty-seven thousand eight hundred twenty-two'),\n(11065, 57331, 'fifty-seven thousand three hundred thirty-one'),\n(11066, 26207, 'twenty-six thousand two hundred seven'),\n(11067, 98731, 'ninety-eight thousand seven hundred thirty-one'),\n(11068, 19871, 'nineteen thousand eight hundred seventy-one'),\n(11069, 80542, 'eighty thousand five hundred forty-two'),\n(11070, 93010, 'ninety-three thousand ten'),\n(11071, 65983, 'sixty-five thousand nine hundred eighty-three'),\n(11072, 98626, 'ninety-eight thousand six hundred twenty-six'),\n(11073, 44205, 'forty-four thousand two hundred five'),\n(11074, 73955, 'seventy-three thousand nine hundred fifty-five'),\n(11075, 68851, 'sixty-eight thousand eight hundred fifty-one'),\n(11076, 83412, 'eighty-three thousand four hundred twelve'),\n(11077, 65024, 'sixty-five thousand twenty-four'),\n(11078, 56643, 'fifty-six thousand six hundred forty-three'),\n(11079, 8944, 'eight thousand nine hundred forty-four'),\n(11080, 81046, 'eighty-one thousand forty-six'),\n(11081, 31978, 'thirty-one thousand nine hundred seventy-eight'),\n(11082, 26444, 'twenty-six thousand four hundred forty-four'),\n(11083, 37187, 'thirty-seven thousand one hundred eighty-seven'),\n(11084, 29012, 'twenty-nine thousand twelve'),\n(11085, 63489, 'sixty-three thousand four hundred eighty-nine'),\n(11086, 25285, 'twenty-five thousand two hundred eighty-five'),\n(11087, 69593, 'sixty-nine thousand five hundred ninety-three'),\n(11088, 73612, 'seventy-three thousand six hundred twelve'),\n(11089, 80948, 'eighty thousand nine hundred forty-eight'),\n(11090, 1773, 'one thousand seven hundred seventy-three'),\n(11091, 21454, 'twenty-one thousand four hundred fifty-four'),\n(11092, 94047, 'ninety-four thousand forty-seven'),\n(11093, 82533, 'eighty-two thousand five hundred thirty-three'),\n(11094, 94783, 'ninety-four thousand seven hundred eighty-three'),\n(11095, 10226, 'ten thousand two hundred twenty-six'),\n(11096, 26287, 'twenty-six thousand two hundred eighty-seven'),\n(11097, 13571, 'thirteen thousand five hundred seventy-one'),\n(11098, 84086, 'eighty-four thousand eighty-six'),\n(11099, 29013, 'twenty-nine thousand thirteen'),\n(11100, 37013, 'thirty-seven thousand thirteen'),\n(11101, 2412, 'two thousand four hundred twelve'),\n(11102, 70505, 'seventy thousand five hundred five'),\n(11103, 92981, 'ninety-two thousand nine hundred eighty-one'),\n(11104, 655, 'six hundred fifty-five'),\n(11105, 24216, 'twenty-four thousand two hundred sixteen'),\n(11106, 72354, 'seventy-two thousand three hundred fifty-four'),\n(11107, 66760, 'sixty-six thousand seven hundred sixty'),\n(11108, 73648, 'seventy-three thousand six hundred forty-eight'),\n(11109, 66951, 'sixty-six thousand nine hundred fifty-one'),\n(11110, 82632, 'eighty-two thousand six hundred thirty-two'),\n(11111, 14724, 'fourteen thousand seven hundred twenty-four'),\n(11112, 4917, 'four thousand nine hundred seventeen'),\n(11113, 62041, 'sixty-two thousand forty-one'),\n(11114, 42471, 'forty-two thousand four hundred seventy-one'),\n(11115, 14534, 'fourteen thousand five hundred thirty-four'),\n(11116, 58190, 'fifty-eight thousand one hundred ninety'),\n(11117, 49776, 'forty-nine thousand seven hundred seventy-six'),\n(11118, 94313, 'ninety-four thousand three hundred thirteen'),\n(11119, 84177, 'eighty-four thousand one hundred seventy-seven'),\n(11120, 30738, 'thirty thousand seven hundred thirty-eight'),\n(11121, 57318, 'fifty-seven thousand three hundred eighteen'),\n(11122, 95043, 'ninety-five thousand forty-three'),\n(11123, 58830, 'fifty-eight thousand eight hundred thirty'),\n(11124, 24284, 'twenty-four thousand two hundred eighty-four'),\n(11125, 98477, 'ninety-eight thousand four hundred seventy-seven'),\n(11126, 12613, 'twelve thousand six hundred thirteen'),\n(11127, 37619, 'thirty-seven thousand six hundred nineteen'),\n(11128, 11500, 'eleven thousand five hundred'),\n(11129, 55604, 'fifty-five thousand six hundred four'),\n(11130, 22877, 'twenty-two thousand eight hundred seventy-seven'),\n(11131, 16749, 'sixteen thousand seven hundred forty-nine'),\n(11132, 18828, 'eighteen thousand eight hundred twenty-eight'),\n(11133, 60940, 'sixty thousand nine hundred forty'),\n(11134, 48183, 'forty-eight thousand one hundred eighty-three'),\n(11135, 58944, 'fifty-eight thousand nine hundred forty-four'),\n(11136, 15084, 'fifteen thousand eighty-four'),\n(11137, 44036, 'forty-four thousand thirty-six'),\n(11138, 42693, 'forty-two thousand six hundred ninety-three'),\n(11139, 54940, 'fifty-four thousand nine hundred forty'),\n(11140, 23992, 'twenty-three thousand nine hundred ninety-two'),\n(11141, 1492, 'one thousand four hundred ninety-two'),\n(11142, 31980, 'thirty-one thousand nine hundred eighty'),\n(11143, 83912, 'eighty-three thousand nine hundred twelve'),\n(11144, 77782, 'seventy-seven thousand seven hundred eighty-two'),\n(11145, 27882, 'twenty-seven thousand eight hundred eighty-two'),\n(11146, 93825, 'ninety-three thousand eight hundred twenty-five'),\n(11147, 37891, 'thirty-seven thousand eight hundred ninety-one'),\n(11148, 72808, 'seventy-two thousand eight hundred eight'),\n(11149, 8201, 'eight thousand two hundred one'),\n(11150, 73251, 'seventy-three thousand two hundred fifty-one'),\n(11151, 51390, 'fifty-one thousand three hundred ninety'),\n(11152, 3938, 'three thousand nine hundred thirty-eight'),\n(11153, 57, 'fifty-seven'),\n(11154, 63034, 'sixty-three thousand thirty-four'),\n(11155, 57609, 'fifty-seven thousand six hundred nine'),\n(11156, 59675, 'fifty-nine thousand six hundred seventy-five'),\n(11157, 34098, 'thirty-four thousand ninety-eight'),\n(11158, 57002, 'fifty-seven thousand two'),\n(11159, 11066, 'eleven thousand sixty-six'),\n(11160, 39384, 'thirty-nine thousand three hundred eighty-four'),\n(11161, 68040, 'sixty-eight thousand forty'),\n(11162, 35644, 'thirty-five thousand six hundred forty-four'),\n(11163, 39798, 'thirty-nine thousand seven hundred ninety-eight'),\n(11164, 87549, 'eighty-seven thousand five hundred forty-nine'),\n(11165, 1478, 'one thousand four hundred seventy-eight'),\n(11166, 91272, 'ninety-one thousand two hundred seventy-two'),\n(11167, 59416, 'fifty-nine thousand four hundred sixteen'),\n(11168, 66762, 'sixty-six thousand seven hundred sixty-two'),\n(11169, 53341, 'fifty-three thousand three hundred forty-one'),\n(11170, 38118, 'thirty-eight thousand one hundred eighteen'),\n(11171, 99703, 'ninety-nine thousand seven hundred three'),\n(11172, 95658, 'ninety-five thousand six hundred fifty-eight'),\n(11173, 42111, 'forty-two thousand one hundred eleven'),\n(11174, 37474, 'thirty-seven thousand four hundred seventy-four'),\n(11175, 5121, 'five thousand one hundred twenty-one'),\n(11176, 3951, 'three thousand nine hundred fifty-one'),\n(11177, 60485, 'sixty thousand four hundred eighty-five'),\n(11178, 47007, 'forty-seven thousand seven'),\n(11179, 19326, 'nineteen thousand three hundred twenty-six'),\n(11180, 73597, 'seventy-three thousand five hundred ninety-seven'),\n(11181, 3136, 'three thousand one hundred thirty-six'),\n(11182, 34164, 'thirty-four thousand one hundred sixty-four'),\n(11183, 40361, 'forty thousand three hundred sixty-one'),\n(11184, 91454, 'ninety-one thousand four hundred fifty-four'),\n(11185, 91800, 'ninety-one thousand eight hundred'),\n(11186, 49879, 'forty-nine thousand eight hundred seventy-nine'),\n(11187, 97187, 'ninety-seven thousand one hundred eighty-seven'),\n(11188, 53084, 'fifty-three thousand eighty-four'),\n(11189, 44839, 'forty-four thousand eight hundred thirty-nine'),\n(11190, 8010, 'eight thousand ten'),\n(11191, 88273, 'eighty-eight thousand two hundred seventy-three'),\n(11192, 82247, 'eighty-two thousand two hundred forty-seven'),\n(11193, 38086, 'thirty-eight thousand eighty-six'),\n(11194, 78740, 'seventy-eight thousand seven hundred forty'),\n(11195, 80562, 'eighty thousand five hundred sixty-two'),\n(11196, 17653, 'seventeen thousand six hundred fifty-three'),\n(11197, 84794, 'eighty-four thousand seven hundred ninety-four'),\n(11198, 19449, 'nineteen thousand four hundred forty-nine'),\n(11199, 82418, 'eighty-two thousand four hundred eighteen'),\n(11200, 50280, 'fifty thousand two hundred eighty'),\n(11201, 44819, 'forty-four thousand eight hundred nineteen'),\n(11202, 44731, 'forty-four thousand seven hundred thirty-one'),\n(11203, 45659, 'forty-five thousand six hundred fifty-nine'),\n(11204, 88278, 'eighty-eight thousand two hundred seventy-eight'),\n(11205, 62226, 'sixty-two thousand two hundred twenty-six'),\n(11206, 67097, 'sixty-seven thousand ninety-seven'),\n(11207, 56630, 'fifty-six thousand six hundred thirty'),\n(11208, 98209, 'ninety-eight thousand two hundred nine'),\n(11209, 4773, 'four thousand seven hundred seventy-three'),\n(11210, 78222, 'seventy-eight thousand two hundred twenty-two'),\n(11211, 65454, 'sixty-five thousand four hundred fifty-four'),\n(11212, 16231, 'sixteen thousand two hundred thirty-one'),\n(11213, 98520, 'ninety-eight thousand five hundred twenty'),\n(11214, 45929, 'forty-five thousand nine hundred twenty-nine'),\n(11215, 71350, 'seventy-one thousand three hundred fifty'),\n(11216, 91623, 'ninety-one thousand six hundred twenty-three'),\n(11217, 69422, 'sixty-nine thousand four hundred twenty-two'),\n(11218, 45140, 'forty-five thousand one hundred forty'),\n(11219, 9926, 'nine thousand nine hundred twenty-six'),\n(11220, 25606, 'twenty-five thousand six hundred six'),\n(11221, 67415, 'sixty-seven thousand four hundred fifteen'),\n(11222, 4901, 'four thousand nine hundred one'),\n(11223, 54286, 'fifty-four thousand two hundred eighty-six'),\n(11224, 43243, 'forty-three thousand two hundred forty-three'),\n(11225, 97005, 'ninety-seven thousand five'),\n(11226, 58465, 'fifty-eight thousand four hundred sixty-five'),\n(11227, 23787, 'twenty-three thousand seven hundred eighty-seven'),\n(11228, 44946, 'forty-four thousand nine hundred forty-six'),\n(11229, 13309, 'thirteen thousand three hundred nine'),\n(11230, 79963, 'seventy-nine thousand nine hundred sixty-three'),\n(11231, 96714, 'ninety-six thousand seven hundred fourteen'),\n(11232, 12624, 'twelve thousand six hundred twenty-four'),\n(11233, 24612, 'twenty-four thousand six hundred twelve'),\n(11234, 54446, 'fifty-four thousand four hundred forty-six'),\n(11235, 50194, 'fifty thousand one hundred ninety-four'),\n(11236, 70959, 'seventy thousand nine hundred fifty-nine'),\n(11237, 8674, 'eight thousand six hundred seventy-four'),\n(11238, 32088, 'thirty-two thousand eighty-eight'),\n(11239, 22540, 'twenty-two thousand five hundred forty'),\n(11240, 74948, 'seventy-four thousand nine hundred forty-eight'),\n(11241, 52210, 'fifty-two thousand two hundred ten'),\n(11242, 97912, 'ninety-seven thousand nine hundred twelve'),\n(11243, 36294, 'thirty-six thousand two hundred ninety-four'),\n(11244, 9121, 'nine thousand one hundred twenty-one'),\n(11245, 8471, 'eight thousand four hundred seventy-one'),\n(11246, 40388, 'forty thousand three hundred eighty-eight'),\n(11247, 27986, 'twenty-seven thousand nine hundred eighty-six'),\n(11248, 81506, 'eighty-one thousand five hundred six'),\n(11249, 4755, 'four thousand seven hundred fifty-five'),\n(11250, 2410, 'two thousand four hundred ten'),\n(11251, 77363, 'seventy-seven thousand three hundred sixty-three'),\n(11252, 96853, 'ninety-six thousand eight hundred fifty-three'),\n(11253, 34296, 'thirty-four thousand two hundred ninety-six'),\n(11254, 65621, 'sixty-five thousand six hundred twenty-one'),\n(11255, 70002, 'seventy thousand two'),\n(11256, 53791, 'fifty-three thousand seven hundred ninety-one'),\n(11257, 82414, 'eighty-two thousand four hundred fourteen'),\n(11258, 5405, 'five thousand four hundred five'),\n(11259, 87720, 'eighty-seven thousand seven hundred twenty'),\n(11260, 63913, 'sixty-three thousand nine hundred thirteen'),\n(11261, 77891, 'seventy-seven thousand eight hundred ninety-one'),\n(11262, 94606, 'ninety-four thousand six hundred six'),\n(11263, 85213, 'eighty-five thousand two hundred thirteen'),\n(11264, 38974, 'thirty-eight thousand nine hundred seventy-four'),\n(11265, 99226, 'ninety-nine thousand two hundred twenty-six'),\n(11266, 9572, 'nine thousand five hundred seventy-two'),\n(11267, 57776, 'fifty-seven thousand seven hundred seventy-six'),\n(11268, 51724, 'fifty-one thousand seven hundred twenty-four'),\n(11269, 16859, 'sixteen thousand eight hundred fifty-nine'),\n(11270, 18462, 'eighteen thousand four hundred sixty-two'),\n(11271, 12263, 'twelve thousand two hundred sixty-three'),\n(11272, 3997, 'three thousand nine hundred ninety-seven'),\n(11273, 79652, 'seventy-nine thousand six hundred fifty-two'),\n(11274, 43995, 'forty-three thousand nine hundred ninety-five'),\n(11275, 11411, 'eleven thousand four hundred eleven'),\n(11276, 39174, 'thirty-nine thousand one hundred seventy-four'),\n(11277, 46702, 'forty-six thousand seven hundred two'),\n(11278, 79103, 'seventy-nine thousand one hundred three'),\n(11279, 49238, 'forty-nine thousand two hundred thirty-eight'),\n(11280, 55764, 'fifty-five thousand seven hundred sixty-four'),\n(11281, 86412, 'eighty-six thousand four hundred twelve'),\n(11282, 21709, 'twenty-one thousand seven hundred nine'),\n(11283, 70217, 'seventy thousand two hundred seventeen'),\n(11284, 64361, 'sixty-four thousand three hundred sixty-one'),\n(11285, 51986, 'fifty-one thousand nine hundred eighty-six'),\n(11286, 68338, 'sixty-eight thousand three hundred thirty-eight'),\n(11287, 76554, 'seventy-six thousand five hundred fifty-four'),\n(11288, 49223, 'forty-nine thousand two hundred twenty-three'),\n(11289, 66987, 'sixty-six thousand nine hundred eighty-seven'),\n(11290, 56180, 'fifty-six thousand one hundred eighty'),\n(11291, 12501, 'twelve thousand five hundred one'),\n(11292, 18213, 'eighteen thousand two hundred thirteen'),\n(11293, 4998, 'four thousand nine hundred ninety-eight'),\n(11294, 71028, 'seventy-one thousand twenty-eight'),\n(11295, 682, 'six hundred eighty-two'),\n(11296, 69445, 'sixty-nine thousand four hundred forty-five'),\n(11297, 96604, 'ninety-six thousand six hundred four'),\n(11298, 72066, 'seventy-two thousand sixty-six'),\n(11299, 41132, 'forty-one thousand one hundred thirty-two'),\n(11300, 97323, 'ninety-seven thousand three hundred twenty-three'),\n(11301, 17820, 'seventeen thousand eight hundred twenty'),\n(11302, 26196, 'twenty-six thousand one hundred ninety-six'),\n(11303, 1358, 'one thousand three hundred fifty-eight'),\n(11304, 49685, 'forty-nine thousand six hundred eighty-five'),\n(11305, 81597, 'eighty-one thousand five hundred ninety-seven'),\n(11306, 48301, 'forty-eight thousand three hundred one'),\n(11307, 99068, 'ninety-nine thousand sixty-eight'),\n(11308, 55647, 'fifty-five thousand six hundred forty-seven'),\n(11309, 95134, 'ninety-five thousand one hundred thirty-four'),\n(11310, 58462, 'fifty-eight thousand four hundred sixty-two'),\n(11311, 60162, 'sixty thousand one hundred sixty-two'),\n(11312, 37805, 'thirty-seven thousand eight hundred five'),\n(11313, 87966, 'eighty-seven thousand nine hundred sixty-six'),\n(11314, 19272, 'nineteen thousand two hundred seventy-two'),\n(11315, 5036, 'five thousand thirty-six'),\n(11316, 25234, 'twenty-five thousand two hundred thirty-four'),\n(11317, 99980, 'ninety-nine thousand nine hundred eighty'),\n(11318, 18415, 'eighteen thousand four hundred fifteen'),\n(11319, 99659, 'ninety-nine thousand six hundred fifty-nine'),\n(11320, 8262, 'eight thousand two hundred sixty-two'),\n(11321, 63517, 'sixty-three thousand five hundred seventeen'),\n(11322, 93941, 'ninety-three thousand nine hundred forty-one'),\n(11323, 41639, 'forty-one thousand six hundred thirty-nine'),\n(11324, 58264, 'fifty-eight thousand two hundred sixty-four'),\n(11325, 43052, 'forty-three thousand fifty-two'),\n(11326, 17263, 'seventeen thousand two hundred sixty-three'),\n(11327, 84864, 'eighty-four thousand eight hundred sixty-four'),\n(11328, 95325, 'ninety-five thousand three hundred twenty-five'),\n(11329, 39384, 'thirty-nine thousand three hundred eighty-four'),\n(11330, 86682, 'eighty-six thousand six hundred eighty-two'),\n(11331, 94815, 'ninety-four thousand eight hundred fifteen'),\n(11332, 34357, 'thirty-four thousand three hundred fifty-seven'),\n(11333, 18962, 'eighteen thousand nine hundred sixty-two'),\n(11334, 92813, 'ninety-two thousand eight hundred thirteen'),\n(11335, 20683, 'twenty thousand six hundred eighty-three'),\n(11336, 67774, 'sixty-seven thousand seven hundred seventy-four'),\n(11337, 2195, 'two thousand one hundred ninety-five'),\n(11338, 44505, 'forty-four thousand five hundred five'),\n(11339, 32619, 'thirty-two thousand six hundred nineteen'),\n(11340, 97144, 'ninety-seven thousand one hundred forty-four'),\n(11341, 65466, 'sixty-five thousand four hundred sixty-six'),\n(11342, 93088, 'ninety-three thousand eighty-eight'),\n(11343, 82054, 'eighty-two thousand fifty-four'),\n(11344, 44290, 'forty-four thousand two hundred ninety'),\n(11345, 90710, 'ninety thousand seven hundred ten'),\n(11346, 78039, 'seventy-eight thousand thirty-nine'),\n(11347, 97936, 'ninety-seven thousand nine hundred thirty-six'),\n(11348, 84543, 'eighty-four thousand five hundred forty-three'),\n(11349, 4454, 'four thousand four hundred fifty-four'),\n(11350, 64766, 'sixty-four thousand seven hundred sixty-six'),\n(11351, 98230, 'ninety-eight thousand two hundred thirty'),\n(11352, 80456, 'eighty thousand four hundred fifty-six'),\n(11353, 97469, 'ninety-seven thousand four hundred sixty-nine'),\n(11354, 29708, 'twenty-nine thousand seven hundred eight'),\n(11355, 72899, 'seventy-two thousand eight hundred ninety-nine'),\n(11356, 84166, 'eighty-four thousand one hundred sixty-six'),\n(11357, 44137, 'forty-four thousand one hundred thirty-seven'),\n(11358, 90092, 'ninety thousand ninety-two'),\n(11359, 25981, 'twenty-five thousand nine hundred eighty-one'),\n(11360, 54521, 'fifty-four thousand five hundred twenty-one'),\n(11361, 10960, 'ten thousand nine hundred sixty'),\n(11362, 97533, 'ninety-seven thousand five hundred thirty-three'),\n(11363, 38415, 'thirty-eight thousand four hundred fifteen'),\n(11364, 82531, 'eighty-two thousand five hundred thirty-one'),\n(11365, 25737, 'twenty-five thousand seven hundred thirty-seven'),\n(11366, 72723, 'seventy-two thousand seven hundred twenty-three'),\n(11367, 11245, 'eleven thousand two hundred forty-five'),\n(11368, 72638, 'seventy-two thousand six hundred thirty-eight'),\n(11369, 35158, 'thirty-five thousand one hundred fifty-eight'),\n(11370, 10151, 'ten thousand one hundred fifty-one'),\n(11371, 98778, 'ninety-eight thousand seven hundred seventy-eight'),\n(11372, 64933, 'sixty-four thousand nine hundred thirty-three'),\n(11373, 5031, 'five thousand thirty-one'),\n(11374, 57671, 'fifty-seven thousand six hundred seventy-one'),\n(11375, 89451, 'eighty-nine thousand four hundred fifty-one'),\n(11376, 97789, 'ninety-seven thousand seven hundred eighty-nine'),\n(11377, 22269, 'twenty-two thousand two hundred sixty-nine'),\n(11378, 28418, 'twenty-eight thousand four hundred eighteen'),\n(11379, 79055, 'seventy-nine thousand fifty-five'),\n(11380, 53497, 'fifty-three thousand four hundred ninety-seven'),\n(11381, 73553, 'seventy-three thousand five hundred fifty-three'),\n(11382, 28232, 'twenty-eight thousand two hundred thirty-two'),\n(11383, 44596, 'forty-four thousand five hundred ninety-six'),\n(11384, 32902, 'thirty-two thousand nine hundred two'),\n(11385, 75976, 'seventy-five thousand nine hundred seventy-six'),\n(11386, 24375, 'twenty-four thousand three hundred seventy-five'),\n(11387, 19413, 'nineteen thousand four hundred thirteen'),\n(11388, 30768, 'thirty thousand seven hundred sixty-eight'),\n(11389, 54280, 'fifty-four thousand two hundred eighty'),\n(11390, 92101, 'ninety-two thousand one hundred one'),\n(11391, 63374, 'sixty-three thousand three hundred seventy-four'),\n(11392, 46798, 'forty-six thousand seven hundred ninety-eight'),\n(11393, 67780, 'sixty-seven thousand seven hundred eighty'),\n(11394, 91916, 'ninety-one thousand nine hundred sixteen'),\n(11395, 15311, 'fifteen thousand three hundred eleven'),\n(11396, 36292, 'thirty-six thousand two hundred ninety-two'),\n(11397, 1411, 'one thousand four hundred eleven'),\n(11398, 48828, 'forty-eight thousand eight hundred twenty-eight'),\n(11399, 74199, 'seventy-four thousand one hundred ninety-nine'),\n(11400, 38939, 'thirty-eight thousand nine hundred thirty-nine'),\n(11401, 8412, 'eight thousand four hundred twelve'),\n(11402, 64788, 'sixty-four thousand seven hundred eighty-eight'),\n(11403, 27639, 'twenty-seven thousand six hundred thirty-nine'),\n(11404, 2082, 'two thousand eighty-two'),\n(11405, 60516, 'sixty thousand five hundred sixteen'),\n(11406, 41992, 'forty-one thousand nine hundred ninety-two'),\n(11407, 63459, 'sixty-three thousand four hundred fifty-nine'),\n(11408, 22722, 'twenty-two thousand seven hundred twenty-two'),\n(11409, 5917, 'five thousand nine hundred seventeen'),\n(11410, 19909, 'nineteen thousand nine hundred nine'),\n(11411, 30427, 'thirty thousand four hundred twenty-seven'),\n(11412, 96446, 'ninety-six thousand four hundred forty-six'),\n(11413, 18572, 'eighteen thousand five hundred seventy-two'),\n(11414, 15934, 'fifteen thousand nine hundred thirty-four'),\n(11415, 50971, 'fifty thousand nine hundred seventy-one'),\n(11416, 11234, 'eleven thousand two hundred thirty-four'),\n(11417, 70857, 'seventy thousand eight hundred fifty-seven'),\n(11418, 47694, 'forty-seven thousand six hundred ninety-four'),\n(11419, 69520, 'sixty-nine thousand five hundred twenty'),\n(11420, 35356, 'thirty-five thousand three hundred fifty-six'),\n(11421, 33500, 'thirty-three thousand five hundred'),\n(11422, 58444, 'fifty-eight thousand four hundred forty-four'),\n(11423, 77609, 'seventy-seven thousand six hundred nine'),\n(11424, 69195, 'sixty-nine thousand one hundred ninety-five'),\n(11425, 26739, 'twenty-six thousand seven hundred thirty-nine'),\n(11426, 83383, 'eighty-three thousand three hundred eighty-three'),\n(11427, 78422, 'seventy-eight thousand four hundred twenty-two'),\n(11428, 84205, 'eighty-four thousand two hundred five'),\n(11429, 66904, 'sixty-six thousand nine hundred four'),\n(11430, 39264, 'thirty-nine thousand two hundred sixty-four'),\n(11431, 28084, 'twenty-eight thousand eighty-four'),\n(11432, 82944, 'eighty-two thousand nine hundred forty-four'),\n(11433, 83718, 'eighty-three thousand seven hundred eighteen'),\n(11434, 89759, 'eighty-nine thousand seven hundred fifty-nine'),\n(11435, 91386, 'ninety-one thousand three hundred eighty-six'),\n(11436, 10329, 'ten thousand three hundred twenty-nine'),\n(11437, 55462, 'fifty-five thousand four hundred sixty-two'),\n(11438, 58996, 'fifty-eight thousand nine hundred ninety-six'),\n(11439, 26648, 'twenty-six thousand six hundred forty-eight'),\n(11440, 29325, 'twenty-nine thousand three hundred twenty-five'),\n(11441, 72918, 'seventy-two thousand nine hundred eighteen'),\n(11442, 14732, 'fourteen thousand seven hundred thirty-two'),\n(11443, 3321, 'three thousand three hundred twenty-one'),\n(11444, 47202, 'forty-seven thousand two hundred two'),\n(11445, 37812, 'thirty-seven thousand eight hundred twelve'),\n(11446, 21032, 'twenty-one thousand thirty-two'),\n(11447, 81871, 'eighty-one thousand eight hundred seventy-one'),\n(11448, 50975, 'fifty thousand nine hundred seventy-five'),\n(11449, 57084, 'fifty-seven thousand eighty-four'),\n(11450, 33860, 'thirty-three thousand eight hundred sixty'),\n(11451, 8294, 'eight thousand two hundred ninety-four'),\n(11452, 50084, 'fifty thousand eighty-four'),\n(11453, 21911, 'twenty-one thousand nine hundred eleven'),\n(11454, 36990, 'thirty-six thousand nine hundred ninety'),\n(11455, 94253, 'ninety-four thousand two hundred fifty-three'),\n(11456, 11338, 'eleven thousand three hundred thirty-eight'),\n(11457, 92754, 'ninety-two thousand seven hundred fifty-four'),\n(11458, 98163, 'ninety-eight thousand one hundred sixty-three'),\n(11459, 27244, 'twenty-seven thousand two hundred forty-four'),\n(11460, 24958, 'twenty-four thousand nine hundred fifty-eight'),\n(11461, 40685, 'forty thousand six hundred eighty-five'),\n(11462, 52858, 'fifty-two thousand eight hundred fifty-eight'),\n(11463, 18989, 'eighteen thousand nine hundred eighty-nine'),\n(11464, 49621, 'forty-nine thousand six hundred twenty-one'),\n(11465, 3621, 'three thousand six hundred twenty-one'),\n(11466, 17378, 'seventeen thousand three hundred seventy-eight'),\n(11467, 15046, 'fifteen thousand forty-six'),\n(11468, 41537, 'forty-one thousand five hundred thirty-seven'),\n(11469, 4487, 'four thousand four hundred eighty-seven'),\n(11470, 28446, 'twenty-eight thousand four hundred forty-six'),\n(11471, 87330, 'eighty-seven thousand three hundred thirty'),\n(11472, 9864, 'nine thousand eight hundred sixty-four'),\n(11473, 78678, 'seventy-eight thousand six hundred seventy-eight'),\n(11474, 61738, 'sixty-one thousand seven hundred thirty-eight'),\n(11475, 32515, 'thirty-two thousand five hundred fifteen'),\n(11476, 54501, 'fifty-four thousand five hundred one'),\n(11477, 28080, 'twenty-eight thousand eighty'),\n(11478, 80667, 'eighty thousand six hundred sixty-seven'),\n(11479, 41590, 'forty-one thousand five hundred ninety'),\n(11480, 59287, 'fifty-nine thousand two hundred eighty-seven'),\n(11481, 29845, 'twenty-nine thousand eight hundred forty-five'),\n(11482, 19612, 'nineteen thousand six hundred twelve'),\n(11483, 56760, 'fifty-six thousand seven hundred sixty'),\n(11484, 59205, 'fifty-nine thousand two hundred five'),\n(11485, 3400, 'three thousand four hundred'),\n(11486, 6700, 'six thousand seven hundred'),\n(11487, 25784, 'twenty-five thousand seven hundred eighty-four'),\n(11488, 19886, 'nineteen thousand eight hundred eighty-six'),\n(11489, 74984, 'seventy-four thousand nine hundred eighty-four'),\n(11490, 3878, 'three thousand eight hundred seventy-eight'),\n(11491, 93780, 'ninety-three thousand seven hundred eighty'),\n(11492, 76292, 'seventy-six thousand two hundred ninety-two'),\n(11493, 57769, 'fifty-seven thousand seven hundred sixty-nine'),\n(11494, 11048, 'eleven thousand forty-eight'),\n(11495, 87273, 'eighty-seven thousand two hundred seventy-three'),\n(11496, 82585, 'eighty-two thousand five hundred eighty-five'),\n(11497, 40590, 'forty thousand five hundred ninety'),\n(11498, 86326, 'eighty-six thousand three hundred twenty-six'),\n(11499, 71296, 'seventy-one thousand two hundred ninety-six'),\n(11500, 75529, 'seventy-five thousand five hundred twenty-nine'),\n(11501, 22983, 'twenty-two thousand nine hundred eighty-three'),\n(11502, 75241, 'seventy-five thousand two hundred forty-one'),\n(11503, 22661, 'twenty-two thousand six hundred sixty-one'),\n(11504, 15292, 'fifteen thousand two hundred ninety-two'),\n(11505, 33737, 'thirty-three thousand seven hundred thirty-seven'),\n(11506, 86442, 'eighty-six thousand four hundred forty-two'),\n(11507, 38103, 'thirty-eight thousand one hundred three'),\n(11508, 12856, 'twelve thousand eight hundred fifty-six'),\n(11509, 91418, 'ninety-one thousand four hundred eighteen'),\n(11510, 41216, 'forty-one thousand two hundred sixteen'),\n(11511, 88053, 'eighty-eight thousand fifty-three'),\n(11512, 16632, 'sixteen thousand six hundred thirty-two'),\n(11513, 3301, 'three thousand three hundred one'),\n(11514, 40509, 'forty thousand five hundred nine'),\n(11515, 55230, 'fifty-five thousand two hundred thirty'),\n(11516, 48768, 'forty-eight thousand seven hundred sixty-eight'),\n(11517, 25557, 'twenty-five thousand five hundred fifty-seven'),\n(11518, 99963, 'ninety-nine thousand nine hundred sixty-three'),\n(11519, 87785, 'eighty-seven thousand seven hundred eighty-five'),\n(11520, 22195, 'twenty-two thousand one hundred ninety-five'),\n(11521, 22650, 'twenty-two thousand six hundred fifty'),\n(11522, 78557, 'seventy-eight thousand five hundred fifty-seven'),\n(11523, 27753, 'twenty-seven thousand seven hundred fifty-three'),\n(11524, 13636, 'thirteen thousand six hundred thirty-six'),\n(11525, 78658, 'seventy-eight thousand six hundred fifty-eight'),\n(11526, 11699, 'eleven thousand six hundred ninety-nine'),\n(11527, 28448, 'twenty-eight thousand four hundred forty-eight'),\n(11528, 55043, 'fifty-five thousand forty-three'),\n(11529, 99425, 'ninety-nine thousand four hundred twenty-five'),\n(11530, 39744, 'thirty-nine thousand seven hundred forty-four'),\n(11531, 50342, 'fifty thousand three hundred forty-two'),\n(11532, 77911, 'seventy-seven thousand nine hundred eleven'),\n(11533, 88221, 'eighty-eight thousand two hundred twenty-one'),\n(11534, 81782, 'eighty-one thousand seven hundred eighty-two'),\n(11535, 40313, 'forty thousand three hundred thirteen'),\n(11536, 30474, 'thirty thousand four hundred seventy-four'),\n(11537, 81654, 'eighty-one thousand six hundred fifty-four'),\n(11538, 46081, 'forty-six thousand eighty-one'),\n(11539, 55466, 'fifty-five thousand four hundred sixty-six'),\n(11540, 48454, 'forty-eight thousand four hundred fifty-four'),\n(11541, 66152, 'sixty-six thousand one hundred fifty-two'),\n(11542, 27506, 'twenty-seven thousand five hundred six'),\n(11543, 95044, 'ninety-five thousand forty-four'),\n(11544, 94203, 'ninety-four thousand two hundred three'),\n(11545, 78778, 'seventy-eight thousand seven hundred seventy-eight'),\n(11546, 45039, 'forty-five thousand thirty-nine'),\n(11547, 39406, 'thirty-nine thousand four hundred six'),\n(11548, 86168, 'eighty-six thousand one hundred sixty-eight'),\n(11549, 43540, 'forty-three thousand five hundred forty'),\n(11550, 27572, 'twenty-seven thousand five hundred seventy-two'),\n(11551, 73728, 'seventy-three thousand seven hundred twenty-eight'),\n(11552, 25816, 'twenty-five thousand eight hundred sixteen'),\n(11553, 36768, 'thirty-six thousand seven hundred sixty-eight'),\n(11554, 34951, 'thirty-four thousand nine hundred fifty-one'),\n(11555, 95059, 'ninety-five thousand fifty-nine'),\n(11556, 30835, 'thirty thousand eight hundred thirty-five'),\n(11557, 60341, 'sixty thousand three hundred forty-one'),\n(11558, 82900, 'eighty-two thousand nine hundred'),\n(11559, 81691, 'eighty-one thousand six hundred ninety-one'),\n(11560, 25799, 'twenty-five thousand seven hundred ninety-nine'),\n(11561, 94758, 'ninety-four thousand seven hundred fifty-eight'),\n(11562, 69261, 'sixty-nine thousand two hundred sixty-one'),\n(11563, 29110, 'twenty-nine thousand one hundred ten'),\n(11564, 65144, 'sixty-five thousand one hundred forty-four'),\n(11565, 74266, 'seventy-four thousand two hundred sixty-six'),\n(11566, 94472, 'ninety-four thousand four hundred seventy-two'),\n(11567, 58557, 'fifty-eight thousand five hundred fifty-seven'),\n(11568, 915, 'nine hundred fifteen'),\n(11569, 70276, 'seventy thousand two hundred seventy-six'),\n(11570, 24671, 'twenty-four thousand six hundred seventy-one'),\n(11571, 53119, 'fifty-three thousand one hundred nineteen'),\n(11572, 37604, 'thirty-seven thousand six hundred four'),\n(11573, 55582, 'fifty-five thousand five hundred eighty-two'),\n(11574, 77352, 'seventy-seven thousand three hundred fifty-two'),\n(11575, 21073, 'twenty-one thousand seventy-three'),\n(11576, 2906, 'two thousand nine hundred six'),\n(11577, 25103, 'twenty-five thousand one hundred three'),\n(11578, 78848, 'seventy-eight thousand eight hundred forty-eight'),\n(11579, 93961, 'ninety-three thousand nine hundred sixty-one'),\n(11580, 24452, 'twenty-four thousand four hundred fifty-two'),\n(11581, 655, 'six hundred fifty-five'),\n(11582, 23581, 'twenty-three thousand five hundred eighty-one'),\n(11583, 11271, 'eleven thousand two hundred seventy-one'),\n(11584, 3988, 'three thousand nine hundred eighty-eight'),\n(11585, 47170, 'forty-seven thousand one hundred seventy'),\n(11586, 7551, 'seven thousand five hundred fifty-one'),\n(11587, 89706, 'eighty-nine thousand seven hundred six'),\n(11588, 2722, 'two thousand seven hundred twenty-two'),\n(11589, 5827, 'five thousand eight hundred twenty-seven'),\n(11590, 37014, 'thirty-seven thousand fourteen'),\n(11591, 80512, 'eighty thousand five hundred twelve'),\n(11592, 86931, 'eighty-six thousand nine hundred thirty-one'),\n(11593, 3692, 'three thousand six hundred ninety-two'),\n(11594, 35041, 'thirty-five thousand forty-one'),\n(11595, 79204, 'seventy-nine thousand two hundred four'),\n(11596, 90127, 'ninety thousand one hundred twenty-seven'),\n(11597, 93917, 'ninety-three thousand nine hundred seventeen'),\n(11598, 17719, 'seventeen thousand seven hundred nineteen'),\n(11599, 38939, 'thirty-eight thousand nine hundred thirty-nine'),\n(11600, 65091, 'sixty-five thousand ninety-one'),\n(11601, 88889, 'eighty-eight thousand eight hundred eighty-nine'),\n(11602, 90521, 'ninety thousand five hundred twenty-one'),\n(11603, 9186, 'nine thousand one hundred eighty-six'),\n(11604, 99879, 'ninety-nine thousand eight hundred seventy-nine'),\n(11605, 19362, 'nineteen thousand three hundred sixty-two'),\n(11606, 39854, 'thirty-nine thousand eight hundred fifty-four'),\n(11607, 35175, 'thirty-five thousand one hundred seventy-five'),\n(11608, 80696, 'eighty thousand six hundred ninety-six'),\n(11609, 82112, 'eighty-two thousand one hundred twelve'),\n(11610, 62532, 'sixty-two thousand five hundred thirty-two'),\n(11611, 86508, 'eighty-six thousand five hundred eight'),\n(11612, 22622, 'twenty-two thousand six hundred twenty-two'),\n(11613, 53400, 'fifty-three thousand four hundred'),\n(11614, 97074, 'ninety-seven thousand seventy-four'),\n(11615, 7015, 'seven thousand fifteen'),\n(11616, 96968, 'ninety-six thousand nine hundred sixty-eight'),\n(11617, 50906, 'fifty thousand nine hundred six'),\n(11618, 43056, 'forty-three thousand fifty-six'),\n(11619, 88245, 'eighty-eight thousand two hundred forty-five'),\n(11620, 94630, 'ninety-four thousand six hundred thirty'),\n(11621, 19938, 'nineteen thousand nine hundred thirty-eight'),\n(11622, 58807, 'fifty-eight thousand eight hundred seven'),\n(11623, 3789, 'three thousand seven hundred eighty-nine'),\n(11624, 51857, 'fifty-one thousand eight hundred fifty-seven'),\n(11625, 5078, 'five thousand seventy-eight'),\n(11626, 97253, 'ninety-seven thousand two hundred fifty-three'),\n(11627, 12749, 'twelve thousand seven hundred forty-nine'),\n(11628, 59149, 'fifty-nine thousand one hundred forty-nine'),\n(11629, 1930, 'one thousand nine hundred thirty'),\n(11630, 11491, 'eleven thousand four hundred ninety-one'),\n(11631, 92160, 'ninety-two thousand one hundred sixty'),\n(11632, 78798, 'seventy-eight thousand seven hundred ninety-eight'),\n(11633, 99457, 'ninety-nine thousand four hundred fifty-seven'),\n(11634, 88198, 'eighty-eight thousand one hundred ninety-eight'),\n(11635, 83208, 'eighty-three thousand two hundred eight'),\n(11636, 55187, 'fifty-five thousand one hundred eighty-seven'),\n(11637, 14457, 'fourteen thousand four hundred fifty-seven'),\n(11638, 36275, 'thirty-six thousand two hundred seventy-five'),\n(11639, 19125, 'nineteen thousand one hundred twenty-five'),\n(11640, 57261, 'fifty-seven thousand two hundred sixty-one'),\n(11641, 79264, 'seventy-nine thousand two hundred sixty-four'),\n(11642, 27963, 'twenty-seven thousand nine hundred sixty-three'),\n(11643, 97746, 'ninety-seven thousand seven hundred forty-six'),\n(11644, 59654, 'fifty-nine thousand six hundred fifty-four'),\n(11645, 85754, 'eighty-five thousand seven hundred fifty-four'),\n(11646, 95921, 'ninety-five thousand nine hundred twenty-one'),\n(11647, 63436, 'sixty-three thousand four hundred thirty-six'),\n(11648, 14110, 'fourteen thousand one hundred ten'),\n(11649, 61418, 'sixty-one thousand four hundred eighteen'),\n(11650, 31755, 'thirty-one thousand seven hundred fifty-five'),\n(11651, 67385, 'sixty-seven thousand three hundred eighty-five'),\n(11652, 20453, 'twenty thousand four hundred fifty-three'),\n(11653, 69497, 'sixty-nine thousand four hundred ninety-seven'),\n(11654, 74906, 'seventy-four thousand nine hundred six'),\n(11655, 79118, 'seventy-nine thousand one hundred eighteen'),\n(11656, 80095, 'eighty thousand ninety-five'),\n(11657, 51949, 'fifty-one thousand nine hundred forty-nine'),\n(11658, 42010, 'forty-two thousand ten'),\n(11659, 97668, 'ninety-seven thousand six hundred sixty-eight'),\n(11660, 11900, 'eleven thousand nine hundred'),\n(11661, 79948, 'seventy-nine thousand nine hundred forty-eight'),\n(11662, 27477, 'twenty-seven thousand four hundred seventy-seven'),\n(11663, 84663, 'eighty-four thousand six hundred sixty-three'),\n(11664, 12813, 'twelve thousand eight hundred thirteen'),\n(11665, 14113, 'fourteen thousand one hundred thirteen'),\n(11666, 78422, 'seventy-eight thousand four hundred twenty-two'),\n(11667, 62573, 'sixty-two thousand five hundred seventy-three'),\n(11668, 93457, 'ninety-three thousand four hundred fifty-seven'),\n(11669, 3905, 'three thousand nine hundred five'),\n(11670, 96751, 'ninety-six thousand seven hundred fifty-one'),\n(11671, 27515, 'twenty-seven thousand five hundred fifteen'),\n(11672, 89238, 'eighty-nine thousand two hundred thirty-eight'),\n(11673, 79207, 'seventy-nine thousand two hundred seven'),\n(11674, 52155, 'fifty-two thousand one hundred fifty-five'),\n(11675, 66379, 'sixty-six thousand three hundred seventy-nine'),\n(11676, 82828, 'eighty-two thousand eight hundred twenty-eight'),\n(11677, 28213, 'twenty-eight thousand two hundred thirteen'),\n(11678, 14871, 'fourteen thousand eight hundred seventy-one'),\n(11679, 56550, 'fifty-six thousand five hundred fifty'),\n(11680, 52816, 'fifty-two thousand eight hundred sixteen'),\n(11681, 18178, 'eighteen thousand one hundred seventy-eight'),\n(11682, 69353, 'sixty-nine thousand three hundred fifty-three'),\n(11683, 59914, 'fifty-nine thousand nine hundred fourteen'),\n(11684, 562, 'five hundred sixty-two'),\n(11685, 45702, 'forty-five thousand seven hundred two'),\n(11686, 82182, 'eighty-two thousand one hundred eighty-two'),\n(11687, 13595, 'thirteen thousand five hundred ninety-five'),\n(11688, 24475, 'twenty-four thousand four hundred seventy-five'),\n(11689, 59214, 'fifty-nine thousand two hundred fourteen'),\n(11690, 10141, 'ten thousand one hundred forty-one'),\n(11691, 75815, 'seventy-five thousand eight hundred fifteen'),\n(11692, 34818, 'thirty-four thousand eight hundred eighteen'),\n(11693, 33234, 'thirty-three thousand two hundred thirty-four'),\n(11694, 44507, 'forty-four thousand five hundred seven'),\n(11695, 38488, 'thirty-eight thousand four hundred eighty-eight'),\n(11696, 14629, 'fourteen thousand six hundred twenty-nine'),\n(11697, 39234, 'thirty-nine thousand two hundred thirty-four'),\n(11698, 44093, 'forty-four thousand ninety-three'),\n(11699, 64442, 'sixty-four thousand four hundred forty-two'),\n(11700, 33592, 'thirty-three thousand five hundred ninety-two'),\n(11701, 92143, 'ninety-two thousand one hundred forty-three'),\n(11702, 91737, 'ninety-one thousand seven hundred thirty-seven'),\n(11703, 13863, 'thirteen thousand eight hundred sixty-three'),\n(11704, 89828, 'eighty-nine thousand eight hundred twenty-eight'),\n(11705, 75670, 'seventy-five thousand six hundred seventy'),\n(11706, 26145, 'twenty-six thousand one hundred forty-five'),\n(11707, 79179, 'seventy-nine thousand one hundred seventy-nine'),\n(11708, 56352, 'fifty-six thousand three hundred fifty-two'),\n(11709, 31213, 'thirty-one thousand two hundred thirteen'),\n(11710, 31000, 'thirty-one thousand'),\n(11711, 13600, 'thirteen thousand six hundred'),\n(11712, 2726, 'two thousand seven hundred twenty-six'),\n(11713, 11741, 'eleven thousand seven hundred forty-one'),\n(11714, 33712, 'thirty-three thousand seven hundred twelve'),\n(11715, 8952, 'eight thousand nine hundred fifty-two'),\n(11716, 48531, 'forty-eight thousand five hundred thirty-one'),\n(11717, 17784, 'seventeen thousand seven hundred eighty-four'),\n(11718, 42203, 'forty-two thousand two hundred three'),\n(11719, 40299, 'forty thousand two hundred ninety-nine'),\n(11720, 11575, 'eleven thousand five hundred seventy-five'),\n(11721, 70826, 'seventy thousand eight hundred twenty-six'),\n(11722, 39325, 'thirty-nine thousand three hundred twenty-five'),\n(11723, 12430, 'twelve thousand four hundred thirty'),\n(11724, 20568, 'twenty thousand five hundred sixty-eight'),\n(11725, 46411, 'forty-six thousand four hundred eleven'),\n(11726, 43225, 'forty-three thousand two hundred twenty-five'),\n(11727, 74946, 'seventy-four thousand nine hundred forty-six'),\n(11728, 38168, 'thirty-eight thousand one hundred sixty-eight'),\n(11729, 97285, 'ninety-seven thousand two hundred eighty-five'),\n(11730, 25114, 'twenty-five thousand one hundred fourteen'),\n(11731, 97553, 'ninety-seven thousand five hundred fifty-three'),\n(11732, 55344, 'fifty-five thousand three hundred forty-four'),\n(11733, 46716, 'forty-six thousand seven hundred sixteen'),\n(11734, 1349, 'one thousand three hundred forty-nine'),\n(11735, 18571, 'eighteen thousand five hundred seventy-one'),\n(11736, 81118, 'eighty-one thousand one hundred eighteen'),\n(11737, 2245, 'two thousand two hundred forty-five'),\n(11738, 43621, 'forty-three thousand six hundred twenty-one'),\n(11739, 53745, 'fifty-three thousand seven hundred forty-five'),\n(11740, 19570, 'nineteen thousand five hundred seventy'),\n(11741, 95121, 'ninety-five thousand one hundred twenty-one'),\n(11742, 41019, 'forty-one thousand nineteen'),\n(11743, 84235, 'eighty-four thousand two hundred thirty-five'),\n(11744, 62069, 'sixty-two thousand sixty-nine'),\n(11745, 12518, 'twelve thousand five hundred eighteen'),\n(11746, 32230, 'thirty-two thousand two hundred thirty'),\n(11747, 47606, 'forty-seven thousand six hundred six'),\n(11748, 36829, 'thirty-six thousand eight hundred twenty-nine'),\n(11749, 53947, 'fifty-three thousand nine hundred forty-seven'),\n(11750, 76149, 'seventy-six thousand one hundred forty-nine'),\n(11751, 62405, 'sixty-two thousand four hundred five'),\n(11752, 69111, 'sixty-nine thousand one hundred eleven'),\n(11753, 1164, 'one thousand one hundred sixty-four'),\n(11754, 11790, 'eleven thousand seven hundred ninety'),\n(11755, 31454, 'thirty-one thousand four hundred fifty-four'),\n(11756, 76515, 'seventy-six thousand five hundred fifteen'),\n(11757, 91747, 'ninety-one thousand seven hundred forty-seven'),\n(11758, 49758, 'forty-nine thousand seven hundred fifty-eight'),\n(11759, 49956, 'forty-nine thousand nine hundred fifty-six'),\n(11760, 16991, 'sixteen thousand nine hundred ninety-one'),\n(11761, 32057, 'thirty-two thousand fifty-seven'),\n(11762, 97275, 'ninety-seven thousand two hundred seventy-five'),\n(11763, 9684, 'nine thousand six hundred eighty-four'),\n(11764, 75187, 'seventy-five thousand one hundred eighty-seven'),\n(11765, 58824, 'fifty-eight thousand eight hundred twenty-four'),\n(11766, 37976, 'thirty-seven thousand nine hundred seventy-six'),\n(11767, 95642, 'ninety-five thousand six hundred forty-two'),\n(11768, 15224, 'fifteen thousand two hundred twenty-four'),\n(11769, 81348, 'eighty-one thousand three hundred forty-eight'),\n(11770, 53234, 'fifty-three thousand two hundred thirty-four'),\n(11771, 86414, 'eighty-six thousand four hundred fourteen'),\n(11772, 8898, 'eight thousand eight hundred ninety-eight'),\n(11773, 64085, 'sixty-four thousand eighty-five'),\n(11774, 97702, 'ninety-seven thousand seven hundred two'),\n(11775, 966, 'nine hundred sixty-six'),\n(11776, 84065, 'eighty-four thousand sixty-five'),\n(11777, 70166, 'seventy thousand one hundred sixty-six'),\n(11778, 41677, 'forty-one thousand six hundred seventy-seven'),\n(11779, 88721, 'eighty-eight thousand seven hundred twenty-one'),\n(11780, 92083, 'ninety-two thousand eighty-three'),\n(11781, 24249, 'twenty-four thousand two hundred forty-nine'),\n(11782, 32369, 'thirty-two thousand three hundred sixty-nine'),\n(11783, 67490, 'sixty-seven thousand four hundred ninety'),\n(11784, 92358, 'ninety-two thousand three hundred fifty-eight'),\n(11785, 97952, 'ninety-seven thousand nine hundred fifty-two'),\n(11786, 8684, 'eight thousand six hundred eighty-four'),\n(11787, 96902, 'ninety-six thousand nine hundred two'),\n(11788, 25621, 'twenty-five thousand six hundred twenty-one'),\n(11789, 94190, 'ninety-four thousand one hundred ninety'),\n(11790, 79891, 'seventy-nine thousand eight hundred ninety-one'),\n(11791, 18128, 'eighteen thousand one hundred twenty-eight'),\n(11792, 57520, 'fifty-seven thousand five hundred twenty'),\n(11793, 31279, 'thirty-one thousand two hundred seventy-nine'),\n(11794, 24861, 'twenty-four thousand eight hundred sixty-one'),\n(11795, 41493, 'forty-one thousand four hundred ninety-three'),\n(11796, 70009, 'seventy thousand nine'),\n(11797, 84847, 'eighty-four thousand eight hundred forty-seven'),\n(11798, 49539, 'forty-nine thousand five hundred thirty-nine'),\n(11799, 39700, 'thirty-nine thousand seven hundred'),\n(11800, 69440, 'sixty-nine thousand four hundred forty'),\n(11801, 47244, 'forty-seven thousand two hundred forty-four'),\n(11802, 16192, 'sixteen thousand one hundred ninety-two'),\n(11803, 99894, 'ninety-nine thousand eight hundred ninety-four'),\n(11804, 71204, 'seventy-one thousand two hundred four'),\n(11805, 36631, 'thirty-six thousand six hundred thirty-one'),\n(11806, 99249, 'ninety-nine thousand two hundred forty-nine'),\n(11807, 23762, 'twenty-three thousand seven hundred sixty-two'),\n(11808, 84769, 'eighty-four thousand seven hundred sixty-nine'),\n(11809, 26880, 'twenty-six thousand eight hundred eighty'),\n(11810, 49808, 'forty-nine thousand eight hundred eight'),\n(11811, 84554, 'eighty-four thousand five hundred fifty-four'),\n(11812, 77249, 'seventy-seven thousand two hundred forty-nine'),\n(11813, 71398, 'seventy-one thousand three hundred ninety-eight'),\n(11814, 52325, 'fifty-two thousand three hundred twenty-five'),\n(11815, 59096, 'fifty-nine thousand ninety-six'),\n(11816, 10416, 'ten thousand four hundred sixteen'),\n(11817, 63116, 'sixty-three thousand one hundred sixteen'),\n(11818, 35076, 'thirty-five thousand seventy-six'),\n(11819, 47678, 'forty-seven thousand six hundred seventy-eight'),\n(11820, 5183, 'five thousand one hundred eighty-three'),\n(11821, 45622, 'forty-five thousand six hundred twenty-two'),\n(11822, 17876, 'seventeen thousand eight hundred seventy-six'),\n(11823, 31904, 'thirty-one thousand nine hundred four'),\n(11824, 31790, 'thirty-one thousand seven hundred ninety'),\n(11825, 30066, 'thirty thousand sixty-six'),\n(11826, 64004, 'sixty-four thousand four'),\n(11827, 67585, 'sixty-seven thousand five hundred eighty-five'),\n(11828, 15185, 'fifteen thousand one hundred eighty-five'),\n(11829, 52327, 'fifty-two thousand three hundred twenty-seven'),\n(11830, 82876, 'eighty-two thousand eight hundred seventy-six'),\n(11831, 54559, 'fifty-four thousand five hundred fifty-nine'),\n(11832, 9727, 'nine thousand seven hundred twenty-seven'),\n(11833, 20149, 'twenty thousand one hundred forty-nine'),\n(11834, 25430, 'twenty-five thousand four hundred thirty'),\n(11835, 19266, 'nineteen thousand two hundred sixty-six'),\n(11836, 33438, 'thirty-three thousand four hundred thirty-eight'),\n(11837, 41013, 'forty-one thousand thirteen'),\n(11838, 98248, 'ninety-eight thousand two hundred forty-eight'),\n(11839, 18937, 'eighteen thousand nine hundred thirty-seven'),\n(11840, 47637, 'forty-seven thousand six hundred thirty-seven'),\n(11841, 9573, 'nine thousand five hundred seventy-three'),\n(11842, 31136, 'thirty-one thousand one hundred thirty-six'),\n(11843, 52945, 'fifty-two thousand nine hundred forty-five'),\n(11844, 32821, 'thirty-two thousand eight hundred twenty-one'),\n(11845, 4434, 'four thousand four hundred thirty-four'),\n(11846, 96124, 'ninety-six thousand one hundred twenty-four'),\n(11847, 99069, 'ninety-nine thousand sixty-nine'),\n(11848, 31254, 'thirty-one thousand two hundred fifty-four'),\n(11849, 98873, 'ninety-eight thousand eight hundred seventy-three'),\n(11850, 38549, 'thirty-eight thousand five hundred forty-nine'),\n(11851, 49908, 'forty-nine thousand nine hundred eight'),\n(11852, 45663, 'forty-five thousand six hundred sixty-three'),\n(11853, 2026, 'two thousand twenty-six'),\n(11854, 14456, 'fourteen thousand four hundred fifty-six'),\n(11855, 77276, 'seventy-seven thousand two hundred seventy-six'),\n(11856, 53456, 'fifty-three thousand four hundred fifty-six'),\n(11857, 57725, 'fifty-seven thousand seven hundred twenty-five'),\n(11858, 76567, 'seventy-six thousand five hundred sixty-seven'),\n(11859, 8924, 'eight thousand nine hundred twenty-four'),\n(11860, 29174, 'twenty-nine thousand one hundred seventy-four'),\n(11861, 23749, 'twenty-three thousand seven hundred forty-nine'),\n(11862, 8948, 'eight thousand nine hundred forty-eight'),\n(11863, 47281, 'forty-seven thousand two hundred eighty-one'),\n(11864, 97353, 'ninety-seven thousand three hundred fifty-three'),\n(11865, 95489, 'ninety-five thousand four hundred eighty-nine'),\n(11866, 22196, 'twenty-two thousand one hundred ninety-six'),\n(11867, 35474, 'thirty-five thousand four hundred seventy-four'),\n(11868, 58670, 'fifty-eight thousand six hundred seventy'),\n(11869, 11890, 'eleven thousand eight hundred ninety'),\n(11870, 17015, 'seventeen thousand fifteen'),\n(11871, 6450, 'six thousand four hundred fifty'),\n(11872, 43611, 'forty-three thousand six hundred eleven'),\n(11873, 45989, 'forty-five thousand nine hundred eighty-nine'),\n(11874, 76160, 'seventy-six thousand one hundred sixty'),\n(11875, 12144, 'twelve thousand one hundred forty-four'),\n(11876, 27854, 'twenty-seven thousand eight hundred fifty-four'),\n(11877, 64368, 'sixty-four thousand three hundred sixty-eight'),\n(11878, 75500, 'seventy-five thousand five hundred'),\n(11879, 31444, 'thirty-one thousand four hundred forty-four'),\n(11880, 71191, 'seventy-one thousand one hundred ninety-one'),\n(11881, 72558, 'seventy-two thousand five hundred fifty-eight'),\n(11882, 14077, 'fourteen thousand seventy-seven'),\n(11883, 69105, 'sixty-nine thousand one hundred five'),\n(11884, 30009, 'thirty thousand nine'),\n(11885, 40839, 'forty thousand eight hundred thirty-nine'),\n(11886, 46701, 'forty-six thousand seven hundred one'),\n(11887, 97943, 'ninety-seven thousand nine hundred forty-three'),\n(11888, 98288, 'ninety-eight thousand two hundred eighty-eight'),\n(11889, 28912, 'twenty-eight thousand nine hundred twelve'),\n(11890, 86088, 'eighty-six thousand eighty-eight'),\n(11891, 43432, 'forty-three thousand four hundred thirty-two'),\n(11892, 141, 'one hundred forty-one'),\n(11893, 16512, 'sixteen thousand five hundred twelve'),\n(11894, 61314, 'sixty-one thousand three hundred fourteen'),\n(11895, 31222, 'thirty-one thousand two hundred twenty-two'),\n(11896, 25684, 'twenty-five thousand six hundred eighty-four'),\n(11897, 54535, 'fifty-four thousand five hundred thirty-five'),\n(11898, 71056, 'seventy-one thousand fifty-six'),\n(11899, 9672, 'nine thousand six hundred seventy-two'),\n(11900, 57088, 'fifty-seven thousand eighty-eight'),\n(11901, 54500, 'fifty-four thousand five hundred'),\n(11902, 53216, 'fifty-three thousand two hundred sixteen'),\n(11903, 66047, 'sixty-six thousand forty-seven'),\n(11904, 43537, 'forty-three thousand five hundred thirty-seven'),\n(11905, 79581, 'seventy-nine thousand five hundred eighty-one'),\n(11906, 55622, 'fifty-five thousand six hundred twenty-two'),\n(11907, 31563, 'thirty-one thousand five hundred sixty-three'),\n(11908, 40715, 'forty thousand seven hundred fifteen'),\n(11909, 25270, 'twenty-five thousand two hundred seventy'),\n(11910, 71683, 'seventy-one thousand six hundred eighty-three'),\n(11911, 46112, 'forty-six thousand one hundred twelve'),\n(11912, 69541, 'sixty-nine thousand five hundred forty-one'),\n(11913, 39070, 'thirty-nine thousand seventy'),\n(11914, 92860, 'ninety-two thousand eight hundred sixty'),\n(11915, 51286, 'fifty-one thousand two hundred eighty-six'),\n(11916, 89662, 'eighty-nine thousand six hundred sixty-two'),\n(11917, 63997, 'sixty-three thousand nine hundred ninety-seven'),\n(11918, 61622, 'sixty-one thousand six hundred twenty-two'),\n(11919, 71599, 'seventy-one thousand five hundred ninety-nine'),\n(11920, 66126, 'sixty-six thousand one hundred twenty-six'),\n(11921, 17672, 'seventeen thousand six hundred seventy-two'),\n(11922, 63136, 'sixty-three thousand one hundred thirty-six'),\n(11923, 30246, 'thirty thousand two hundred forty-six'),\n(11924, 652, 'six hundred fifty-two'),\n(11925, 68252, 'sixty-eight thousand two hundred fifty-two'),\n(11926, 98243, 'ninety-eight thousand two hundred forty-three'),\n(11927, 1528, 'one thousand five hundred twenty-eight'),\n(11928, 46700, 'forty-six thousand seven hundred'),\n(11929, 20258, 'twenty thousand two hundred fifty-eight'),\n(11930, 28333, 'twenty-eight thousand three hundred thirty-three'),\n(11931, 74623, 'seventy-four thousand six hundred twenty-three'),\n(11932, 73797, 'seventy-three thousand seven hundred ninety-seven'),\n(11933, 44919, 'forty-four thousand nine hundred nineteen'),\n(11934, 45484, 'forty-five thousand four hundred eighty-four'),\n(11935, 74024, 'seventy-four thousand twenty-four'),\n(11936, 23851, 'twenty-three thousand eight hundred fifty-one'),\n(11937, 34416, 'thirty-four thousand four hundred sixteen'),\n(11938, 18345, 'eighteen thousand three hundred forty-five'),\n(11939, 74186, 'seventy-four thousand one hundred eighty-six'),\n(11940, 15208, 'fifteen thousand two hundred eight'),\n(11941, 88294, 'eighty-eight thousand two hundred ninety-four'),\n(11942, 45589, 'forty-five thousand five hundred eighty-nine'),\n(11943, 85941, 'eighty-five thousand nine hundred forty-one'),\n(11944, 72767, 'seventy-two thousand seven hundred sixty-seven'),\n(11945, 82383, 'eighty-two thousand three hundred eighty-three'),\n(11946, 13687, 'thirteen thousand six hundred eighty-seven'),\n(11947, 61670, 'sixty-one thousand six hundred seventy'),\n(11948, 27324, 'twenty-seven thousand three hundred twenty-four'),\n(11949, 94486, 'ninety-four thousand four hundred eighty-six'),\n(11950, 60133, 'sixty thousand one hundred thirty-three'),\n(11951, 33852, 'thirty-three thousand eight hundred fifty-two'),\n(11952, 40356, 'forty thousand three hundred fifty-six'),\n(11953, 36392, 'thirty-six thousand three hundred ninety-two'),\n(11954, 45489, 'forty-five thousand four hundred eighty-nine'),\n(11955, 59903, 'fifty-nine thousand nine hundred three'),\n(11956, 36891, 'thirty-six thousand eight hundred ninety-one'),\n(11957, 59980, 'fifty-nine thousand nine hundred eighty'),\n(11958, 30197, 'thirty thousand one hundred ninety-seven'),\n(11959, 74634, 'seventy-four thousand six hundred thirty-four'),\n(11960, 85306, 'eighty-five thousand three hundred six'),\n(11961, 80605, 'eighty thousand six hundred five'),\n(11962, 61051, 'sixty-one thousand fifty-one'),\n(11963, 90780, 'ninety thousand seven hundred eighty'),\n(11964, 80431, 'eighty thousand four hundred thirty-one'),\n(11965, 85074, 'eighty-five thousand seventy-four'),\n(11966, 7006, 'seven thousand six'),\n(11967, 22805, 'twenty-two thousand eight hundred five'),\n(11968, 12958, 'twelve thousand nine hundred fifty-eight'),\n(11969, 89558, 'eighty-nine thousand five hundred fifty-eight'),\n(11970, 54607, 'fifty-four thousand six hundred seven'),\n(11971, 79718, 'seventy-nine thousand seven hundred eighteen'),\n(11972, 2951, 'two thousand nine hundred fifty-one'),\n(11973, 81787, 'eighty-one thousand seven hundred eighty-seven'),\n(11974, 93892, 'ninety-three thousand eight hundred ninety-two'),\n(11975, 54587, 'fifty-four thousand five hundred eighty-seven'),\n(11976, 61550, 'sixty-one thousand five hundred fifty'),\n(11977, 8255, 'eight thousand two hundred fifty-five'),\n(11978, 32437, 'thirty-two thousand four hundred thirty-seven'),\n(11979, 31627, 'thirty-one thousand six hundred twenty-seven'),\n(11980, 51876, 'fifty-one thousand eight hundred seventy-six'),\n(11981, 76292, 'seventy-six thousand two hundred ninety-two'),\n(11982, 84070, 'eighty-four thousand seventy'),\n(11983, 77462, 'seventy-seven thousand four hundred sixty-two'),\n(11984, 93584, 'ninety-three thousand five hundred eighty-four'),\n(11985, 9629, 'nine thousand six hundred twenty-nine'),\n(11986, 86058, 'eighty-six thousand fifty-eight'),\n(11987, 27023, 'twenty-seven thousand twenty-three'),\n(11988, 96387, 'ninety-six thousand three hundred eighty-seven'),\n(11989, 57237, 'fifty-seven thousand two hundred thirty-seven'),\n(11990, 77443, 'seventy-seven thousand four hundred forty-three'),\n(11991, 13032, 'thirteen thousand thirty-two'),\n(11992, 75312, 'seventy-five thousand three hundred twelve'),\n(11993, 74218, 'seventy-four thousand two hundred eighteen'),\n(11994, 52174, 'fifty-two thousand one hundred seventy-four'),\n(11995, 82639, 'eighty-two thousand six hundred thirty-nine'),\n(11996, 64422, 'sixty-four thousand four hundred twenty-two'),\n(11997, 98138, 'ninety-eight thousand one hundred thirty-eight'),\n(11998, 96761, 'ninety-six thousand seven hundred sixty-one'),\n(11999, 4582, 'four thousand five hundred eighty-two'),\n(12000, 6209, 'six thousand two hundred nine'),\n(12001, 78080, 'seventy-eight thousand eighty'),\n(12002, 35352, 'thirty-five thousand three hundred fifty-two'),\n(12003, 78899, 'seventy-eight thousand eight hundred ninety-nine'),\n(12004, 17227, 'seventeen thousand two hundred twenty-seven'),\n(12005, 4726, 'four thousand seven hundred twenty-six'),\n(12006, 74902, 'seventy-four thousand nine hundred two'),\n(12007, 75582, 'seventy-five thousand five hundred eighty-two'),\n(12008, 3597, 'three thousand five hundred ninety-seven'),\n(12009, 23732, 'twenty-three thousand seven hundred thirty-two'),\n(12010, 21848, 'twenty-one thousand eight hundred forty-eight'),\n(12011, 1842, 'one thousand eight hundred forty-two'),\n(12012, 62225, 'sixty-two thousand two hundred twenty-five'),\n(12013, 98303, 'ninety-eight thousand three hundred three'),\n(12014, 67860, 'sixty-seven thousand eight hundred sixty'),\n(12015, 87733, 'eighty-seven thousand seven hundred thirty-three'),\n(12016, 44193, 'forty-four thousand one hundred ninety-three'),\n(12017, 5024, 'five thousand twenty-four'),\n(12018, 80503, 'eighty thousand five hundred three'),\n(12019, 44968, 'forty-four thousand nine hundred sixty-eight'),\n(12020, 1775, 'one thousand seven hundred seventy-five'),\n(12021, 90687, 'ninety thousand six hundred eighty-seven'),\n(12022, 32791, 'thirty-two thousand seven hundred ninety-one'),\n(12023, 88837, 'eighty-eight thousand eight hundred thirty-seven'),\n(12024, 66802, 'sixty-six thousand eight hundred two'),\n(12025, 93401, 'ninety-three thousand four hundred one'),\n(12026, 56424, 'fifty-six thousand four hundred twenty-four'),\n(12027, 34182, 'thirty-four thousand one hundred eighty-two'),\n(12028, 95190, 'ninety-five thousand one hundred ninety'),\n(12029, 55994, 'fifty-five thousand nine hundred ninety-four'),\n(12030, 21357, 'twenty-one thousand three hundred fifty-seven'),\n(12031, 71324, 'seventy-one thousand three hundred twenty-four'),\n(12032, 92769, 'ninety-two thousand seven hundred sixty-nine'),\n(12033, 19257, 'nineteen thousand two hundred fifty-seven'),\n(12034, 28154, 'twenty-eight thousand one hundred fifty-four'),\n(12035, 79926, 'seventy-nine thousand nine hundred twenty-six'),\n(12036, 3807, 'three thousand eight hundred seven'),\n(12037, 92542, 'ninety-two thousand five hundred forty-two'),\n(12038, 41857, 'forty-one thousand eight hundred fifty-seven'),\n(12039, 99224, 'ninety-nine thousand two hundred twenty-four'),\n(12040, 28124, 'twenty-eight thousand one hundred twenty-four'),\n(12041, 24823, 'twenty-four thousand eight hundred twenty-three'),\n(12042, 39786, 'thirty-nine thousand seven hundred eighty-six'),\n(12043, 30406, 'thirty thousand four hundred six'),\n(12044, 95118, 'ninety-five thousand one hundred eighteen'),\n(12045, 94458, 'ninety-four thousand four hundred fifty-eight'),\n(12046, 23326, 'twenty-three thousand three hundred twenty-six'),\n(12047, 81287, 'eighty-one thousand two hundred eighty-seven'),\n(12048, 35749, 'thirty-five thousand seven hundred forty-nine'),\n(12049, 13223, 'thirteen thousand two hundred twenty-three'),\n(12050, 28907, 'twenty-eight thousand nine hundred seven'),\n(12051, 27947, 'twenty-seven thousand nine hundred forty-seven'),\n(12052, 58608, 'fifty-eight thousand six hundred eight'),\n(12053, 92961, 'ninety-two thousand nine hundred sixty-one'),\n(12054, 69605, 'sixty-nine thousand six hundred five'),\n(12055, 52464, 'fifty-two thousand four hundred sixty-four'),\n(12056, 93458, 'ninety-three thousand four hundred fifty-eight'),\n(12057, 70854, 'seventy thousand eight hundred fifty-four'),\n(12058, 13130, 'thirteen thousand one hundred thirty'),\n(12059, 41633, 'forty-one thousand six hundred thirty-three'),\n(12060, 18300, 'eighteen thousand three hundred'),\n(12061, 52547, 'fifty-two thousand five hundred forty-seven'),\n(12062, 13523, 'thirteen thousand five hundred twenty-three'),\n(12063, 84997, 'eighty-four thousand nine hundred ninety-seven'),\n(12064, 64646, 'sixty-four thousand six hundred forty-six'),\n(12065, 11803, 'eleven thousand eight hundred three'),\n(12066, 53679, 'fifty-three thousand six hundred seventy-nine'),\n(12067, 29379, 'twenty-nine thousand three hundred seventy-nine'),\n(12068, 59549, 'fifty-nine thousand five hundred forty-nine'),\n(12069, 96219, 'ninety-six thousand two hundred nineteen'),\n(12070, 56954, 'fifty-six thousand nine hundred fifty-four'),\n(12071, 79549, 'seventy-nine thousand five hundred forty-nine'),\n(12072, 77960, 'seventy-seven thousand nine hundred sixty'),\n(12073, 62591, 'sixty-two thousand five hundred ninety-one'),\n(12074, 72297, 'seventy-two thousand two hundred ninety-seven'),\n(12075, 1606, 'one thousand six hundred six'),\n(12076, 36496, 'thirty-six thousand four hundred ninety-six'),\n(12077, 52053, 'fifty-two thousand fifty-three'),\n(12078, 85304, 'eighty-five thousand three hundred four'),\n(12079, 2493, 'two thousand four hundred ninety-three'),\n(12080, 47966, 'forty-seven thousand nine hundred sixty-six'),\n(12081, 35092, 'thirty-five thousand ninety-two'),\n(12082, 74571, 'seventy-four thousand five hundred seventy-one'),\n(12083, 85359, 'eighty-five thousand three hundred fifty-nine'),\n(12084, 30082, 'thirty thousand eighty-two'),\n(12085, 14735, 'fourteen thousand seven hundred thirty-five'),\n(12086, 93257, 'ninety-three thousand two hundred fifty-seven'),\n(12087, 53666, 'fifty-three thousand six hundred sixty-six'),\n(12088, 74083, 'seventy-four thousand eighty-three'),\n(12089, 86892, 'eighty-six thousand eight hundred ninety-two'),\n(12090, 91726, 'ninety-one thousand seven hundred twenty-six'),\n(12091, 28735, 'twenty-eight thousand seven hundred thirty-five'),\n(12092, 39033, 'thirty-nine thousand thirty-three'),\n(12093, 21608, 'twenty-one thousand six hundred eight'),\n(12094, 30588, 'thirty thousand five hundred eighty-eight'),\n(12095, 36846, 'thirty-six thousand eight hundred forty-six'),\n(12096, 92425, 'ninety-two thousand four hundred twenty-five'),\n(12097, 55883, 'fifty-five thousand eight hundred eighty-three'),\n(12098, 22250, 'twenty-two thousand two hundred fifty'),\n(12099, 45860, 'forty-five thousand eight hundred sixty'),\n(12100, 30744, 'thirty thousand seven hundred forty-four'),\n(12101, 34829, 'thirty-four thousand eight hundred twenty-nine'),\n(12102, 96978, 'ninety-six thousand nine hundred seventy-eight'),\n(12103, 24470, 'twenty-four thousand four hundred seventy'),\n(12104, 33096, 'thirty-three thousand ninety-six'),\n(12105, 49415, 'forty-nine thousand four hundred fifteen'),\n(12106, 5216, 'five thousand two hundred sixteen'),\n(12107, 9347, 'nine thousand three hundred forty-seven'),\n(12108, 9865, 'nine thousand eight hundred sixty-five'),\n(12109, 93190, 'ninety-three thousand one hundred ninety'),\n(12110, 63217, 'sixty-three thousand two hundred seventeen'),\n(12111, 36516, 'thirty-six thousand five hundred sixteen'),\n(12112, 62330, 'sixty-two thousand three hundred thirty'),\n(12113, 786, 'seven hundred eighty-six'),\n(12114, 99356, 'ninety-nine thousand three hundred fifty-six'),\n(12115, 54332, 'fifty-four thousand three hundred thirty-two'),\n(12116, 71533, 'seventy-one thousand five hundred thirty-three'),\n(12117, 68263, 'sixty-eight thousand two hundred sixty-three'),\n(12118, 86100, 'eighty-six thousand one hundred'),\n(12119, 16879, 'sixteen thousand eight hundred seventy-nine'),\n(12120, 72121, 'seventy-two thousand one hundred twenty-one'),\n(12121, 54512, 'fifty-four thousand five hundred twelve'),\n(12122, 25791, 'twenty-five thousand seven hundred ninety-one'),\n(12123, 8576, 'eight thousand five hundred seventy-six'),\n(12124, 64064, 'sixty-four thousand sixty-four'),\n(12125, 83319, 'eighty-three thousand three hundred nineteen'),\n(12126, 88386, 'eighty-eight thousand three hundred eighty-six'),\n(12127, 33513, 'thirty-three thousand five hundred thirteen'),\n(12128, 88564, 'eighty-eight thousand five hundred sixty-four'),\n(12129, 65299, 'sixty-five thousand two hundred ninety-nine'),\n(12130, 52720, 'fifty-two thousand seven hundred twenty'),\n(12131, 23604, 'twenty-three thousand six hundred four'),\n(12132, 42959, 'forty-two thousand nine hundred fifty-nine'),\n(12133, 26637, 'twenty-six thousand six hundred thirty-seven'),\n(12134, 90758, 'ninety thousand seven hundred fifty-eight'),\n(12135, 39463, 'thirty-nine thousand four hundred sixty-three'),\n(12136, 67973, 'sixty-seven thousand nine hundred seventy-three'),\n(12137, 35897, 'thirty-five thousand eight hundred ninety-seven'),\n(12138, 25051, 'twenty-five thousand fifty-one'),\n(12139, 92027, 'ninety-two thousand twenty-seven'),\n(12140, 76551, 'seventy-six thousand five hundred fifty-one'),\n(12141, 67406, 'sixty-seven thousand four hundred six'),\n(12142, 78730, 'seventy-eight thousand seven hundred thirty'),\n(12143, 2327, 'two thousand three hundred twenty-seven'),\n(12144, 49857, 'forty-nine thousand eight hundred fifty-seven'),\n(12145, 71071, 'seventy-one thousand seventy-one'),\n(12146, 62878, 'sixty-two thousand eight hundred seventy-eight'),\n(12147, 64558, 'sixty-four thousand five hundred fifty-eight'),\n(12148, 97507, 'ninety-seven thousand five hundred seven'),\n(12149, 1813, 'one thousand eight hundred thirteen'),\n(12150, 6176, 'six thousand one hundred seventy-six'),\n(12151, 24817, 'twenty-four thousand eight hundred seventeen'),\n(12152, 50946, 'fifty thousand nine hundred forty-six'),\n(12153, 55529, 'fifty-five thousand five hundred twenty-nine'),\n(12154, 8122, 'eight thousand one hundred twenty-two'),\n(12155, 80826, 'eighty thousand eight hundred twenty-six'),\n(12156, 47924, 'forty-seven thousand nine hundred twenty-four'),\n(12157, 44175, 'forty-four thousand one hundred seventy-five'),\n(12158, 45190, 'forty-five thousand one hundred ninety'),\n(12159, 73238, 'seventy-three thousand two hundred thirty-eight'),\n(12160, 7085, 'seven thousand eighty-five'),\n(12161, 3607, 'three thousand six hundred seven'),\n(12162, 2122, 'two thousand one hundred twenty-two'),\n(12163, 58362, 'fifty-eight thousand three hundred sixty-two'),\n(12164, 60497, 'sixty thousand four hundred ninety-seven'),\n(12165, 70062, 'seventy thousand sixty-two'),\n(12166, 60827, 'sixty thousand eight hundred twenty-seven'),\n(12167, 18172, 'eighteen thousand one hundred seventy-two'),\n(12168, 74207, 'seventy-four thousand two hundred seven'),\n(12169, 71080, 'seventy-one thousand eighty'),\n(12170, 13839, 'thirteen thousand eight hundred thirty-nine'),\n(12171, 89290, 'eighty-nine thousand two hundred ninety'),\n(12172, 39482, 'thirty-nine thousand four hundred eighty-two'),\n(12173, 67801, 'sixty-seven thousand eight hundred one'),\n(12174, 25226, 'twenty-five thousand two hundred twenty-six'),\n(12175, 19676, 'nineteen thousand six hundred seventy-six'),\n(12176, 72848, 'seventy-two thousand eight hundred forty-eight'),\n(12177, 28054, 'twenty-eight thousand fifty-four'),\n(12178, 76639, 'seventy-six thousand six hundred thirty-nine'),\n(12179, 42445, 'forty-two thousand four hundred forty-five'),\n(12180, 30299, 'thirty thousand two hundred ninety-nine'),\n(12181, 55329, 'fifty-five thousand three hundred twenty-nine'),\n(12182, 40899, 'forty thousand eight hundred ninety-nine'),\n(12183, 29180, 'twenty-nine thousand one hundred eighty'),\n(12184, 52892, 'fifty-two thousand eight hundred ninety-two'),\n(12185, 52002, 'fifty-two thousand two'),\n(12186, 84816, 'eighty-four thousand eight hundred sixteen'),\n(12187, 29265, 'twenty-nine thousand two hundred sixty-five'),\n(12188, 43137, 'forty-three thousand one hundred thirty-seven'),\n(12189, 96602, 'ninety-six thousand six hundred two'),\n(12190, 19642, 'nineteen thousand six hundred forty-two'),\n(12191, 30171, 'thirty thousand one hundred seventy-one'),\n(12192, 23830, 'twenty-three thousand eight hundred thirty'),\n(12193, 30552, 'thirty thousand five hundred fifty-two'),\n(12194, 25989, 'twenty-five thousand nine hundred eighty-nine'),\n(12195, 71307, 'seventy-one thousand three hundred seven'),\n(12196, 73492, 'seventy-three thousand four hundred ninety-two'),\n(12197, 56640, 'fifty-six thousand six hundred forty'),\n(12198, 75755, 'seventy-five thousand seven hundred fifty-five'),\n(12199, 91713, 'ninety-one thousand seven hundred thirteen'),\n(12200, 83528, 'eighty-three thousand five hundred twenty-eight'),\n(12201, 52843, 'fifty-two thousand eight hundred forty-three'),\n(12202, 1420, 'one thousand four hundred twenty'),\n(12203, 48160, 'forty-eight thousand one hundred sixty'),\n(12204, 48789, 'forty-eight thousand seven hundred eighty-nine'),\n(12205, 80881, 'eighty thousand eight hundred eighty-one'),\n(12206, 86454, 'eighty-six thousand four hundred fifty-four'),\n(12207, 55861, 'fifty-five thousand eight hundred sixty-one'),\n(12208, 73894, 'seventy-three thousand eight hundred ninety-four'),\n(12209, 25268, 'twenty-five thousand two hundred sixty-eight'),\n(12210, 63367, 'sixty-three thousand three hundred sixty-seven'),\n(12211, 6405, 'six thousand four hundred five'),\n(12212, 19080, 'nineteen thousand eighty'),\n(12213, 33111, 'thirty-three thousand one hundred eleven'),\n(12214, 41973, 'forty-one thousand nine hundred seventy-three'),\n(12215, 75260, 'seventy-five thousand two hundred sixty'),\n(12216, 5754, 'five thousand seven hundred fifty-four'),\n(12217, 84202, 'eighty-four thousand two hundred two'),\n(12218, 91018, 'ninety-one thousand eighteen'),\n(12219, 22588, 'twenty-two thousand five hundred eighty-eight'),\n(12220, 63973, 'sixty-three thousand nine hundred seventy-three'),\n(12221, 19906, 'nineteen thousand nine hundred six'),\n(12222, 98196, 'ninety-eight thousand one hundred ninety-six'),\n(12223, 14860, 'fourteen thousand eight hundred sixty'),\n(12224, 51848, 'fifty-one thousand eight hundred forty-eight'),\n(12225, 34090, 'thirty-four thousand ninety'),\n(12226, 11671, 'eleven thousand six hundred seventy-one'),\n(12227, 6585, 'six thousand five hundred eighty-five'),\n(12228, 40686, 'forty thousand six hundred eighty-six'),\n(12229, 84118, 'eighty-four thousand one hundred eighteen'),\n(12230, 58590, 'fifty-eight thousand five hundred ninety'),\n(12231, 98857, 'ninety-eight thousand eight hundred fifty-seven'),\n(12232, 89544, 'eighty-nine thousand five hundred forty-four'),\n(12233, 53821, 'fifty-three thousand eight hundred twenty-one'),\n(12234, 33318, 'thirty-three thousand three hundred eighteen'),\n(12235, 26043, 'twenty-six thousand forty-three'),\n(12236, 48281, 'forty-eight thousand two hundred eighty-one'),\n(12237, 29938, 'twenty-nine thousand nine hundred thirty-eight'),\n(12238, 6697, 'six thousand six hundred ninety-seven'),\n(12239, 62781, 'sixty-two thousand seven hundred eighty-one'),\n(12240, 54537, 'fifty-four thousand five hundred thirty-seven'),\n(12241, 51026, 'fifty-one thousand twenty-six'),\n(12242, 31972, 'thirty-one thousand nine hundred seventy-two'),\n(12243, 82938, 'eighty-two thousand nine hundred thirty-eight'),\n(12244, 9145, 'nine thousand one hundred forty-five'),\n(12245, 37567, 'thirty-seven thousand five hundred sixty-seven'),\n(12246, 30936, 'thirty thousand nine hundred thirty-six'),\n(12247, 10344, 'ten thousand three hundred forty-four'),\n(12248, 8213, 'eight thousand two hundred thirteen'),\n(12249, 28529, 'twenty-eight thousand five hundred twenty-nine'),\n(12250, 41079, 'forty-one thousand seventy-nine'),\n(12251, 53803, 'fifty-three thousand eight hundred three'),\n(12252, 42259, 'forty-two thousand two hundred fifty-nine'),\n(12253, 41989, 'forty-one thousand nine hundred eighty-nine'),\n(12254, 70215, 'seventy thousand two hundred fifteen'),\n(12255, 11850, 'eleven thousand eight hundred fifty'),\n(12256, 13274, 'thirteen thousand two hundred seventy-four'),\n(12257, 29394, 'twenty-nine thousand three hundred ninety-four'),\n(12258, 99859, 'ninety-nine thousand eight hundred fifty-nine'),\n(12259, 75423, 'seventy-five thousand four hundred twenty-three'),\n(12260, 52447, 'fifty-two thousand four hundred forty-seven'),\n(12261, 63383, 'sixty-three thousand three hundred eighty-three'),\n(12262, 79578, 'seventy-nine thousand five hundred seventy-eight'),\n(12263, 31439, 'thirty-one thousand four hundred thirty-nine'),\n(12264, 54486, 'fifty-four thousand four hundred eighty-six'),\n(12265, 86599, 'eighty-six thousand five hundred ninety-nine'),\n(12266, 10536, 'ten thousand five hundred thirty-six'),\n(12267, 52046, 'fifty-two thousand forty-six'),\n(12268, 3438, 'three thousand four hundred thirty-eight'),\n(12269, 78848, 'seventy-eight thousand eight hundred forty-eight'),\n(12270, 25318, 'twenty-five thousand three hundred eighteen'),\n(12271, 25220, 'twenty-five thousand two hundred twenty'),\n(12272, 82668, 'eighty-two thousand six hundred sixty-eight'),\n(12273, 10255, 'ten thousand two hundred fifty-five'),\n(12274, 53838, 'fifty-three thousand eight hundred thirty-eight'),\n(12275, 58037, 'fifty-eight thousand thirty-seven'),\n(12276, 12809, 'twelve thousand eight hundred nine'),\n(12277, 89671, 'eighty-nine thousand six hundred seventy-one'),\n(12278, 96811, 'ninety-six thousand eight hundred eleven'),\n(12279, 69244, 'sixty-nine thousand two hundred forty-four'),\n(12280, 35057, 'thirty-five thousand fifty-seven'),\n(12281, 71045, 'seventy-one thousand forty-five'),\n(12282, 82984, 'eighty-two thousand nine hundred eighty-four'),\n(12283, 95160, 'ninety-five thousand one hundred sixty'),\n(12284, 7287, 'seven thousand two hundred eighty-seven'),\n(12285, 51887, 'fifty-one thousand eight hundred eighty-seven'),\n(12286, 20786, 'twenty thousand seven hundred eighty-six'),\n(12287, 69513, 'sixty-nine thousand five hundred thirteen'),\n(12288, 57050, 'fifty-seven thousand fifty'),\n(12289, 85885, 'eighty-five thousand eight hundred eighty-five'),\n(12290, 7933, 'seven thousand nine hundred thirty-three'),\n(12291, 49332, 'forty-nine thousand three hundred thirty-two'),\n(12292, 25889, 'twenty-five thousand eight hundred eighty-nine'),\n(12293, 18142, 'eighteen thousand one hundred forty-two'),\n(12294, 15069, 'fifteen thousand sixty-nine'),\n(12295, 76497, 'seventy-six thousand four hundred ninety-seven'),\n(12296, 6859, 'six thousand eight hundred fifty-nine'),\n(12297, 51426, 'fifty-one thousand four hundred twenty-six'),\n(12298, 54449, 'fifty-four thousand four hundred forty-nine'),\n(12299, 39365, 'thirty-nine thousand three hundred sixty-five'),\n(12300, 80565, 'eighty thousand five hundred sixty-five'),\n(12301, 84310, 'eighty-four thousand three hundred ten'),\n(12302, 81282, 'eighty-one thousand two hundred eighty-two'),\n(12303, 47045, 'forty-seven thousand forty-five'),\n(12304, 25644, 'twenty-five thousand six hundred forty-four'),\n(12305, 54249, 'fifty-four thousand two hundred forty-nine'),\n(12306, 78917, 'seventy-eight thousand nine hundred seventeen'),\n(12307, 24516, 'twenty-four thousand five hundred sixteen'),\n(12308, 56776, 'fifty-six thousand seven hundred seventy-six'),\n(12309, 59310, 'fifty-nine thousand three hundred ten'),\n(12310, 6642, 'six thousand six hundred forty-two'),\n(12311, 92751, 'ninety-two thousand seven hundred fifty-one'),\n(12312, 43548, 'forty-three thousand five hundred forty-eight'),\n(12313, 10328, 'ten thousand three hundred twenty-eight'),\n(12314, 4504, 'four thousand five hundred four'),\n(12315, 34368, 'thirty-four thousand three hundred sixty-eight'),\n(12316, 5429, 'five thousand four hundred twenty-nine'),\n(12317, 11693, 'eleven thousand six hundred ninety-three'),\n(12318, 58070, 'fifty-eight thousand seventy'),\n(12319, 5743, 'five thousand seven hundred forty-three'),\n(12320, 33981, 'thirty-three thousand nine hundred eighty-one'),\n(12321, 81115, 'eighty-one thousand one hundred fifteen'),\n(12322, 66923, 'sixty-six thousand nine hundred twenty-three'),\n(12323, 85256, 'eighty-five thousand two hundred fifty-six'),\n(12324, 17389, 'seventeen thousand three hundred eighty-nine'),\n(12325, 51630, 'fifty-one thousand six hundred thirty'),\n(12326, 2347, 'two thousand three hundred forty-seven'),\n(12327, 10001, 'ten thousand one'),\n(12328, 13498, 'thirteen thousand four hundred ninety-eight'),\n(12329, 90259, 'ninety thousand two hundred fifty-nine'),\n(12330, 77607, 'seventy-seven thousand six hundred seven'),\n(12331, 83392, 'eighty-three thousand three hundred ninety-two'),\n(12332, 8612, 'eight thousand six hundred twelve'),\n(12333, 87856, 'eighty-seven thousand eight hundred fifty-six'),\n(12334, 79804, 'seventy-nine thousand eight hundred four'),\n(12335, 79144, 'seventy-nine thousand one hundred forty-four'),\n(12336, 99885, 'ninety-nine thousand eight hundred eighty-five'),\n(12337, 89617, 'eighty-nine thousand six hundred seventeen'),\n(12338, 72743, 'seventy-two thousand seven hundred forty-three'),\n(12339, 29473, 'twenty-nine thousand four hundred seventy-three'),\n(12340, 65606, 'sixty-five thousand six hundred six'),\n(12341, 82093, 'eighty-two thousand ninety-three'),\n(12342, 75704, 'seventy-five thousand seven hundred four'),\n(12343, 51583, 'fifty-one thousand five hundred eighty-three'),\n(12344, 87750, 'eighty-seven thousand seven hundred fifty'),\n(12345, 30807, 'thirty thousand eight hundred seven'),\n(12346, 43634, 'forty-three thousand six hundred thirty-four'),\n(12347, 63906, 'sixty-three thousand nine hundred six'),\n(12348, 48042, 'forty-eight thousand forty-two'),\n(12349, 13080, 'thirteen thousand eighty'),\n(12350, 46924, 'forty-six thousand nine hundred twenty-four'),\n(12351, 4705, 'four thousand seven hundred five'),\n(12352, 24807, 'twenty-four thousand eight hundred seven'),\n(12353, 15508, 'fifteen thousand five hundred eight'),\n(12354, 78974, 'seventy-eight thousand nine hundred seventy-four'),\n(12355, 67963, 'sixty-seven thousand nine hundred sixty-three'),\n(12356, 9967, 'nine thousand nine hundred sixty-seven'),\n(12357, 29620, 'twenty-nine thousand six hundred twenty'),\n(12358, 97574, 'ninety-seven thousand five hundred seventy-four'),\n(12359, 46898, 'forty-six thousand eight hundred ninety-eight'),\n(12360, 91949, 'ninety-one thousand nine hundred forty-nine'),\n(12361, 24001, 'twenty-four thousand one'),\n(12362, 37340, 'thirty-seven thousand three hundred forty'),\n(12363, 74190, 'seventy-four thousand one hundred ninety'),\n(12364, 90123, 'ninety thousand one hundred twenty-three'),\n(12365, 74066, 'seventy-four thousand sixty-six'),\n(12366, 53244, 'fifty-three thousand two hundred forty-four'),\n(12367, 78664, 'seventy-eight thousand six hundred sixty-four'),\n(12368, 5096, 'five thousand ninety-six'),\n(12369, 84981, 'eighty-four thousand nine hundred eighty-one'),\n(12370, 78508, 'seventy-eight thousand five hundred eight'),\n(12371, 56274, 'fifty-six thousand two hundred seventy-four'),\n(12372, 11935, 'eleven thousand nine hundred thirty-five'),\n(12373, 47434, 'forty-seven thousand four hundred thirty-four'),\n(12374, 5929, 'five thousand nine hundred twenty-nine'),\n(12375, 49918, 'forty-nine thousand nine hundred eighteen'),\n(12376, 55855, 'fifty-five thousand eight hundred fifty-five'),\n(12377, 79168, 'seventy-nine thousand one hundred sixty-eight'),\n(12378, 48938, 'forty-eight thousand nine hundred thirty-eight'),\n(12379, 55363, 'fifty-five thousand three hundred sixty-three'),\n(12380, 87819, 'eighty-seven thousand eight hundred nineteen'),\n(12381, 53080, 'fifty-three thousand eighty'),\n(12382, 14882, 'fourteen thousand eight hundred eighty-two'),\n(12383, 6312, 'six thousand three hundred twelve'),\n(12384, 79339, 'seventy-nine thousand three hundred thirty-nine'),\n(12385, 6538, 'six thousand five hundred thirty-eight'),\n(12386, 43578, 'forty-three thousand five hundred seventy-eight'),\n(12387, 18912, 'eighteen thousand nine hundred twelve'),\n(12388, 37735, 'thirty-seven thousand seven hundred thirty-five'),\n(12389, 22348, 'twenty-two thousand three hundred forty-eight'),\n(12390, 96195, 'ninety-six thousand one hundred ninety-five'),\n(12391, 98151, 'ninety-eight thousand one hundred fifty-one'),\n(12392, 43135, 'forty-three thousand one hundred thirty-five'),\n(12393, 16904, 'sixteen thousand nine hundred four'),\n(12394, 27160, 'twenty-seven thousand one hundred sixty'),\n(12395, 71701, 'seventy-one thousand seven hundred one'),\n(12396, 46695, 'forty-six thousand six hundred ninety-five'),\n(12397, 37360, 'thirty-seven thousand three hundred sixty'),\n(12398, 72023, 'seventy-two thousand twenty-three'),\n(12399, 99512, 'ninety-nine thousand five hundred twelve'),\n(12400, 59230, 'fifty-nine thousand two hundred thirty'),\n(12401, 89088, 'eighty-nine thousand eighty-eight'),\n(12402, 5179, 'five thousand one hundred seventy-nine'),\n(12403, 22065, 'twenty-two thousand sixty-five'),\n(12404, 83182, 'eighty-three thousand one hundred eighty-two'),\n(12405, 44080, 'forty-four thousand eighty'),\n(12406, 87365, 'eighty-seven thousand three hundred sixty-five'),\n(12407, 21815, 'twenty-one thousand eight hundred fifteen'),\n(12408, 48128, 'forty-eight thousand one hundred twenty-eight'),\n(12409, 11797, 'eleven thousand seven hundred ninety-seven'),\n(12410, 34523, 'thirty-four thousand five hundred twenty-three'),\n(12411, 43112, 'forty-three thousand one hundred twelve'),\n(12412, 7165, 'seven thousand one hundred sixty-five'),\n(12413, 57265, 'fifty-seven thousand two hundred sixty-five'),\n(12414, 85802, 'eighty-five thousand eight hundred two'),\n(12415, 8449, 'eight thousand four hundred forty-nine'),\n(12416, 44829, 'forty-four thousand eight hundred twenty-nine'),\n(12417, 76544, 'seventy-six thousand five hundred forty-four'),\n(12418, 36108, 'thirty-six thousand one hundred eight'),\n(12419, 58122, 'fifty-eight thousand one hundred twenty-two'),\n(12420, 94531, 'ninety-four thousand five hundred thirty-one'),\n(12421, 79127, 'seventy-nine thousand one hundred twenty-seven'),\n(12422, 81039, 'eighty-one thousand thirty-nine'),\n(12423, 54386, 'fifty-four thousand three hundred eighty-six'),\n(12424, 96969, 'ninety-six thousand nine hundred sixty-nine'),\n(12425, 65374, 'sixty-five thousand three hundred seventy-four'),\n(12426, 57434, 'fifty-seven thousand four hundred thirty-four'),\n(12427, 57308, 'fifty-seven thousand three hundred eight'),\n(12428, 87415, 'eighty-seven thousand four hundred fifteen'),\n(12429, 47818, 'forty-seven thousand eight hundred eighteen'),\n(12430, 88685, 'eighty-eight thousand six hundred eighty-five'),\n(12431, 75500, 'seventy-five thousand five hundred'),\n(12432, 88831, 'eighty-eight thousand eight hundred thirty-one'),\n(12433, 99896, 'ninety-nine thousand eight hundred ninety-six'),\n(12434, 4614, 'four thousand six hundred fourteen'),\n(12435, 16059, 'sixteen thousand fifty-nine'),\n(12436, 21699, 'twenty-one thousand six hundred ninety-nine'),\n(12437, 76496, 'seventy-six thousand four hundred ninety-six'),\n(12438, 54927, 'fifty-four thousand nine hundred twenty-seven'),\n(12439, 57888, 'fifty-seven thousand eight hundred eighty-eight'),\n(12440, 98713, 'ninety-eight thousand seven hundred thirteen'),\n(12441, 10039, 'ten thousand thirty-nine'),\n(12442, 74768, 'seventy-four thousand seven hundred sixty-eight'),\n(12443, 31123, 'thirty-one thousand one hundred twenty-three'),\n(12444, 3117, 'three thousand one hundred seventeen'),\n(12445, 71809, 'seventy-one thousand eight hundred nine'),\n(12446, 20612, 'twenty thousand six hundred twelve'),\n(12447, 33991, 'thirty-three thousand nine hundred ninety-one'),\n(12448, 17885, 'seventeen thousand eight hundred eighty-five'),\n(12449, 55950, 'fifty-five thousand nine hundred fifty'),\n(12450, 79687, 'seventy-nine thousand six hundred eighty-seven'),\n(12451, 64151, 'sixty-four thousand one hundred fifty-one'),\n(12452, 91814, 'ninety-one thousand eight hundred fourteen'),\n(12453, 47908, 'forty-seven thousand nine hundred eight'),\n(12454, 42794, 'forty-two thousand seven hundred ninety-four'),\n(12455, 19303, 'nineteen thousand three hundred three'),\n(12456, 77083, 'seventy-seven thousand eighty-three'),\n(12457, 49044, 'forty-nine thousand forty-four'),\n(12458, 7847, 'seven thousand eight hundred forty-seven'),\n(12459, 43587, 'forty-three thousand five hundred eighty-seven'),\n(12460, 94462, 'ninety-four thousand four hundred sixty-two'),\n(12461, 15135, 'fifteen thousand one hundred thirty-five'),\n(12462, 76030, 'seventy-six thousand thirty'),\n(12463, 94328, 'ninety-four thousand three hundred twenty-eight'),\n(12464, 74772, 'seventy-four thousand seven hundred seventy-two'),\n(12465, 11991, 'eleven thousand nine hundred ninety-one'),\n(12466, 44574, 'forty-four thousand five hundred seventy-four'),\n(12467, 68432, 'sixty-eight thousand four hundred thirty-two'),\n(12468, 72767, 'seventy-two thousand seven hundred sixty-seven'),\n(12469, 64969, 'sixty-four thousand nine hundred sixty-nine'),\n(12470, 88069, 'eighty-eight thousand sixty-nine'),\n(12471, 1759, 'one thousand seven hundred fifty-nine'),\n(12472, 88080, 'eighty-eight thousand eighty'),\n(12473, 71548, 'seventy-one thousand five hundred forty-eight'),\n(12474, 4462, 'four thousand four hundred sixty-two'),\n(12475, 2842, 'two thousand eight hundred forty-two'),\n(12476, 96629, 'ninety-six thousand six hundred twenty-nine'),\n(12477, 62891, 'sixty-two thousand eight hundred ninety-one'),\n(12478, 2039, 'two thousand thirty-nine'),\n(12479, 50274, 'fifty thousand two hundred seventy-four'),\n(12480, 85582, 'eighty-five thousand five hundred eighty-two'),\n(12481, 22884, 'twenty-two thousand eight hundred eighty-four'),\n(12482, 97906, 'ninety-seven thousand nine hundred six'),\n(12483, 827, 'eight hundred twenty-seven'),\n(12484, 16137, 'sixteen thousand one hundred thirty-seven'),\n(12485, 87666, 'eighty-seven thousand six hundred sixty-six'),\n(12486, 71645, 'seventy-one thousand six hundred forty-five'),\n(12487, 55716, 'fifty-five thousand seven hundred sixteen'),\n(12488, 72454, 'seventy-two thousand four hundred fifty-four'),\n(12489, 98179, 'ninety-eight thousand one hundred seventy-nine'),\n(12490, 86153, 'eighty-six thousand one hundred fifty-three'),\n(12491, 55534, 'fifty-five thousand five hundred thirty-four'),\n(12492, 39347, 'thirty-nine thousand three hundred forty-seven'),\n(12493, 66116, 'sixty-six thousand one hundred sixteen'),\n(12494, 74248, 'seventy-four thousand two hundred forty-eight'),\n(12495, 28155, 'twenty-eight thousand one hundred fifty-five'),\n(12496, 56934, 'fifty-six thousand nine hundred thirty-four'),\n(12497, 61751, 'sixty-one thousand seven hundred fifty-one'),\n(12498, 45333, 'forty-five thousand three hundred thirty-three'),\n(12499, 22112, 'twenty-two thousand one hundred twelve'),\n(12500, 99531, 'ninety-nine thousand five hundred thirty-one'),\n(12501, 14744, 'fourteen thousand seven hundred forty-four'),\n(12502, 65450, 'sixty-five thousand four hundred fifty'),\n(12503, 61578, 'sixty-one thousand five hundred seventy-eight'),\n(12504, 75814, 'seventy-five thousand eight hundred fourteen'),\n(12505, 87361, 'eighty-seven thousand three hundred sixty-one'),\n(12506, 58065, 'fifty-eight thousand sixty-five'),\n(12507, 19902, 'nineteen thousand nine hundred two'),\n(12508, 97460, 'ninety-seven thousand four hundred sixty'),\n(12509, 72898, 'seventy-two thousand eight hundred ninety-eight'),\n(12510, 70929, 'seventy thousand nine hundred twenty-nine'),\n(12511, 26760, 'twenty-six thousand seven hundred sixty'),\n(12512, 51622, 'fifty-one thousand six hundred twenty-two'),\n(12513, 71772, 'seventy-one thousand seven hundred seventy-two'),\n(12514, 81545, 'eighty-one thousand five hundred forty-five'),\n(12515, 67980, 'sixty-seven thousand nine hundred eighty'),\n(12516, 46599, 'forty-six thousand five hundred ninety-nine'),\n(12517, 46621, 'forty-six thousand six hundred twenty-one'),\n(12518, 7074, 'seven thousand seventy-four'),\n(12519, 41885, 'forty-one thousand eight hundred eighty-five'),\n(12520, 37138, 'thirty-seven thousand one hundred thirty-eight'),\n(12521, 60585, 'sixty thousand five hundred eighty-five'),\n(12522, 68583, 'sixty-eight thousand five hundred eighty-three'),\n(12523, 40974, 'forty thousand nine hundred seventy-four'),\n(12524, 32852, 'thirty-two thousand eight hundred fifty-two'),\n(12525, 98517, 'ninety-eight thousand five hundred seventeen'),\n(12526, 81161, 'eighty-one thousand one hundred sixty-one'),\n(12527, 65708, 'sixty-five thousand seven hundred eight'),\n(12528, 14574, 'fourteen thousand five hundred seventy-four'),\n(12529, 15982, 'fifteen thousand nine hundred eighty-two'),\n(12530, 69951, 'sixty-nine thousand nine hundred fifty-one'),\n(12531, 31094, 'thirty-one thousand ninety-four'),\n(12532, 70790, 'seventy thousand seven hundred ninety'),\n(12533, 37653, 'thirty-seven thousand six hundred fifty-three'),\n(12534, 94366, 'ninety-four thousand three hundred sixty-six'),\n(12535, 99168, 'ninety-nine thousand one hundred sixty-eight'),\n(12536, 85889, 'eighty-five thousand eight hundred eighty-nine'),\n(12537, 47104, 'forty-seven thousand one hundred four'),\n(12538, 45987, 'forty-five thousand nine hundred eighty-seven'),\n(12539, 68900, 'sixty-eight thousand nine hundred'),\n(12540, 55151, 'fifty-five thousand one hundred fifty-one'),\n(12541, 49375, 'forty-nine thousand three hundred seventy-five'),\n(12542, 56738, 'fifty-six thousand seven hundred thirty-eight'),\n(12543, 71529, 'seventy-one thousand five hundred twenty-nine'),\n(12544, 39153, 'thirty-nine thousand one hundred fifty-three'),\n(12545, 89096, 'eighty-nine thousand ninety-six'),\n(12546, 72827, 'seventy-two thousand eight hundred twenty-seven'),\n(12547, 39486, 'thirty-nine thousand four hundred eighty-six'),\n(12548, 57301, 'fifty-seven thousand three hundred one'),\n(12549, 64846, 'sixty-four thousand eight hundred forty-six'),\n(12550, 37189, 'thirty-seven thousand one hundred eighty-nine'),\n(12551, 45679, 'forty-five thousand six hundred seventy-nine'),\n(12552, 39682, 'thirty-nine thousand six hundred eighty-two'),\n(12553, 63872, 'sixty-three thousand eight hundred seventy-two'),\n(12554, 93567, 'ninety-three thousand five hundred sixty-seven'),\n(12555, 85240, 'eighty-five thousand two hundred forty'),\n(12556, 23567, 'twenty-three thousand five hundred sixty-seven'),\n(12557, 27413, 'twenty-seven thousand four hundred thirteen'),\n(12558, 54510, 'fifty-four thousand five hundred ten'),\n(12559, 84298, 'eighty-four thousand two hundred ninety-eight'),\n(12560, 97063, 'ninety-seven thousand sixty-three'),\n(12561, 29551, 'twenty-nine thousand five hundred fifty-one'),\n(12562, 94326, 'ninety-four thousand three hundred twenty-six'),\n(12563, 13148, 'thirteen thousand one hundred forty-eight'),\n(12564, 6692, 'six thousand six hundred ninety-two'),\n(12565, 17839, 'seventeen thousand eight hundred thirty-nine'),\n(12566, 22602, 'twenty-two thousand six hundred two'),\n(12567, 75301, 'seventy-five thousand three hundred one'),\n(12568, 17279, 'seventeen thousand two hundred seventy-nine'),\n(12569, 26062, 'twenty-six thousand sixty-two'),\n(12570, 89010, 'eighty-nine thousand ten'),\n(12571, 65833, 'sixty-five thousand eight hundred thirty-three'),\n(12572, 11717, 'eleven thousand seven hundred seventeen'),\n(12573, 2836, 'two thousand eight hundred thirty-six'),\n(12574, 27468, 'twenty-seven thousand four hundred sixty-eight'),\n(12575, 85048, 'eighty-five thousand forty-eight'),\n(12576, 10335, 'ten thousand three hundred thirty-five'),\n(12577, 21872, 'twenty-one thousand eight hundred seventy-two'),\n(12578, 6750, 'six thousand seven hundred fifty'),\n(12579, 41564, 'forty-one thousand five hundred sixty-four'),\n(12580, 28302, 'twenty-eight thousand three hundred two'),\n(12581, 87662, 'eighty-seven thousand six hundred sixty-two'),\n(12582, 76996, 'seventy-six thousand nine hundred ninety-six'),\n(12583, 30131, 'thirty thousand one hundred thirty-one'),\n(12584, 60259, 'sixty thousand two hundred fifty-nine'),\n(12585, 36278, 'thirty-six thousand two hundred seventy-eight'),\n(12586, 32818, 'thirty-two thousand eight hundred eighteen'),\n(12587, 73372, 'seventy-three thousand three hundred seventy-two'),\n(12588, 12590, 'twelve thousand five hundred ninety'),\n(12589, 28038, 'twenty-eight thousand thirty-eight'),\n(12590, 87755, 'eighty-seven thousand seven hundred fifty-five'),\n(12591, 30461, 'thirty thousand four hundred sixty-one'),\n(12592, 6063, 'six thousand sixty-three'),\n(12593, 25807, 'twenty-five thousand eight hundred seven'),\n(12594, 44551, 'forty-four thousand five hundred fifty-one'),\n(12595, 3422, 'three thousand four hundred twenty-two'),\n(12596, 73881, 'seventy-three thousand eight hundred eighty-one'),\n(12597, 59737, 'fifty-nine thousand seven hundred thirty-seven'),\n(12598, 33448, 'thirty-three thousand four hundred forty-eight'),\n(12599, 37697, 'thirty-seven thousand six hundred ninety-seven'),\n(12600, 81875, 'eighty-one thousand eight hundred seventy-five'),\n(12601, 341, 'three hundred forty-one'),\n(12602, 12096, 'twelve thousand ninety-six'),\n(12603, 33300, 'thirty-three thousand three hundred'),\n(12604, 82707, 'eighty-two thousand seven hundred seven'),\n(12605, 36654, 'thirty-six thousand six hundred fifty-four'),\n(12606, 57164, 'fifty-seven thousand one hundred sixty-four'),\n(12607, 38579, 'thirty-eight thousand five hundred seventy-nine'),\n(12608, 55103, 'fifty-five thousand one hundred three'),\n(12609, 49, 'forty-nine'),\n(12610, 89120, 'eighty-nine thousand one hundred twenty'),\n(12611, 64031, 'sixty-four thousand thirty-one'),\n(12612, 81715, 'eighty-one thousand seven hundred fifteen'),\n(12613, 74140, 'seventy-four thousand one hundred forty'),\n(12614, 77810, 'seventy-seven thousand eight hundred ten'),\n(12615, 23874, 'twenty-three thousand eight hundred seventy-four'),\n(12616, 11269, 'eleven thousand two hundred sixty-nine'),\n(12617, 48975, 'forty-eight thousand nine hundred seventy-five'),\n(12618, 34702, 'thirty-four thousand seven hundred two'),\n(12619, 31495, 'thirty-one thousand four hundred ninety-five'),\n(12620, 33985, 'thirty-three thousand nine hundred eighty-five'),\n(12621, 55958, 'fifty-five thousand nine hundred fifty-eight'),\n(12622, 64040, 'sixty-four thousand forty'),\n(12623, 15700, 'fifteen thousand seven hundred'),\n(12624, 91866, 'ninety-one thousand eight hundred sixty-six'),\n(12625, 48729, 'forty-eight thousand seven hundred twenty-nine'),\n(12626, 50735, 'fifty thousand seven hundred thirty-five'),\n(12627, 27221, 'twenty-seven thousand two hundred twenty-one'),\n(12628, 89406, 'eighty-nine thousand four hundred six'),\n(12629, 7412, 'seven thousand four hundred twelve'),\n(12630, 84827, 'eighty-four thousand eight hundred twenty-seven'),\n(12631, 58206, 'fifty-eight thousand two hundred six'),\n(12632, 77286, 'seventy-seven thousand two hundred eighty-six'),\n(12633, 57636, 'fifty-seven thousand six hundred thirty-six'),\n(12634, 28745, 'twenty-eight thousand seven hundred forty-five'),\n(12635, 1221, 'one thousand two hundred twenty-one'),\n(12636, 42082, 'forty-two thousand eighty-two'),\n(12637, 23456, 'twenty-three thousand four hundred fifty-six'),\n(12638, 25511, 'twenty-five thousand five hundred eleven'),\n(12639, 94709, 'ninety-four thousand seven hundred nine'),\n(12640, 32505, 'thirty-two thousand five hundred five'),\n(12641, 38679, 'thirty-eight thousand six hundred seventy-nine'),\n(12642, 60015, 'sixty thousand fifteen'),\n(12643, 17694, 'seventeen thousand six hundred ninety-four'),\n(12644, 55634, 'fifty-five thousand six hundred thirty-four'),\n(12645, 54043, 'fifty-four thousand forty-three'),\n(12646, 55354, 'fifty-five thousand three hundred fifty-four'),\n(12647, 59841, 'fifty-nine thousand eight hundred forty-one'),\n(12648, 46896, 'forty-six thousand eight hundred ninety-six'),\n(12649, 29103, 'twenty-nine thousand one hundred three'),\n(12650, 46926, 'forty-six thousand nine hundred twenty-six'),\n(12651, 38232, 'thirty-eight thousand two hundred thirty-two'),\n(12652, 67203, 'sixty-seven thousand two hundred three'),\n(12653, 98305, 'ninety-eight thousand three hundred five'),\n(12654, 75262, 'seventy-five thousand two hundred sixty-two'),\n(12655, 51044, 'fifty-one thousand forty-four'),\n(12656, 24410, 'twenty-four thousand four hundred ten'),\n(12657, 46431, 'forty-six thousand four hundred thirty-one'),\n(12658, 60254, 'sixty thousand two hundred fifty-four'),\n(12659, 98685, 'ninety-eight thousand six hundred eighty-five'),\n(12660, 75358, 'seventy-five thousand three hundred fifty-eight'),\n(12661, 87741, 'eighty-seven thousand seven hundred forty-one'),\n(12662, 48253, 'forty-eight thousand two hundred fifty-three'),\n(12663, 83092, 'eighty-three thousand ninety-two'),\n(12664, 32609, 'thirty-two thousand six hundred nine'),\n(12665, 76744, 'seventy-six thousand seven hundred forty-four'),\n(12666, 31524, 'thirty-one thousand five hundred twenty-four'),\n(12667, 68959, 'sixty-eight thousand nine hundred fifty-nine'),\n(12668, 31549, 'thirty-one thousand five hundred forty-nine'),\n(12669, 19074, 'nineteen thousand seventy-four'),\n(12670, 99788, 'ninety-nine thousand seven hundred eighty-eight'),\n(12671, 98808, 'ninety-eight thousand eight hundred eight'),\n(12672, 71340, 'seventy-one thousand three hundred forty'),\n(12673, 78608, 'seventy-eight thousand six hundred eight'),\n(12674, 54074, 'fifty-four thousand seventy-four'),\n(12675, 18310, 'eighteen thousand three hundred ten'),\n(12676, 8874, 'eight thousand eight hundred seventy-four'),\n(12677, 51017, 'fifty-one thousand seventeen'),\n(12678, 45090, 'forty-five thousand ninety'),\n(12679, 87858, 'eighty-seven thousand eight hundred fifty-eight'),\n(12680, 62932, 'sixty-two thousand nine hundred thirty-two'),\n(12681, 71313, 'seventy-one thousand three hundred thirteen'),\n(12682, 17523, 'seventeen thousand five hundred twenty-three'),\n(12683, 47376, 'forty-seven thousand three hundred seventy-six'),\n(12684, 10065, 'ten thousand sixty-five'),\n(12685, 82308, 'eighty-two thousand three hundred eight'),\n(12686, 48199, 'forty-eight thousand one hundred ninety-nine'),\n(12687, 55931, 'fifty-five thousand nine hundred thirty-one'),\n(12688, 15461, 'fifteen thousand four hundred sixty-one'),\n(12689, 13502, 'thirteen thousand five hundred two'),\n(12690, 68126, 'sixty-eight thousand one hundred twenty-six'),\n(12691, 84777, 'eighty-four thousand seven hundred seventy-seven'),\n(12692, 24947, 'twenty-four thousand nine hundred forty-seven'),\n(12693, 84968, 'eighty-four thousand nine hundred sixty-eight'),\n(12694, 27249, 'twenty-seven thousand two hundred forty-nine'),\n(12695, 3025, 'three thousand twenty-five'),\n(12696, 56981, 'fifty-six thousand nine hundred eighty-one'),\n(12697, 97479, 'ninety-seven thousand four hundred seventy-nine'),\n(12698, 80969, 'eighty thousand nine hundred sixty-nine'),\n(12699, 71722, 'seventy-one thousand seven hundred twenty-two'),\n(12700, 17833, 'seventeen thousand eight hundred thirty-three'),\n(12701, 72092, 'seventy-two thousand ninety-two'),\n(12702, 27657, 'twenty-seven thousand six hundred fifty-seven'),\n(12703, 48708, 'forty-eight thousand seven hundred eight'),\n(12704, 72549, 'seventy-two thousand five hundred forty-nine'),\n(12705, 53203, 'fifty-three thousand two hundred three'),\n(12706, 3320, 'three thousand three hundred twenty'),\n(12707, 73978, 'seventy-three thousand nine hundred seventy-eight'),\n(12708, 80083, 'eighty thousand eighty-three'),\n(12709, 45347, 'forty-five thousand three hundred forty-seven'),\n(12710, 23713, 'twenty-three thousand seven hundred thirteen'),\n(12711, 91256, 'ninety-one thousand two hundred fifty-six'),\n(12712, 84112, 'eighty-four thousand one hundred twelve'),\n(12713, 88280, 'eighty-eight thousand two hundred eighty'),\n(12714, 84621, 'eighty-four thousand six hundred twenty-one'),\n(12715, 63263, 'sixty-three thousand two hundred sixty-three'),\n(12716, 39124, 'thirty-nine thousand one hundred twenty-four'),\n(12717, 42785, 'forty-two thousand seven hundred eighty-five'),\n(12718, 26797, 'twenty-six thousand seven hundred ninety-seven'),\n(12719, 62518, 'sixty-two thousand five hundred eighteen'),\n(12720, 8640, 'eight thousand six hundred forty'),\n(12721, 25589, 'twenty-five thousand five hundred eighty-nine'),\n(12722, 351, 'three hundred fifty-one'),\n(12723, 22904, 'twenty-two thousand nine hundred four'),\n(12724, 5160, 'five thousand one hundred sixty'),\n(12725, 91646, 'ninety-one thousand six hundred forty-six'),\n(12726, 61314, 'sixty-one thousand three hundred fourteen'),\n(12727, 93782, 'ninety-three thousand seven hundred eighty-two'),\n(12728, 37006, 'thirty-seven thousand six'),\n(12729, 38451, 'thirty-eight thousand four hundred fifty-one'),\n(12730, 35434, 'thirty-five thousand four hundred thirty-four'),\n(12731, 85499, 'eighty-five thousand four hundred ninety-nine'),\n(12732, 48641, 'forty-eight thousand six hundred forty-one'),\n(12733, 273, 'two hundred seventy-three'),\n(12734, 29340, 'twenty-nine thousand three hundred forty'),\n(12735, 5279, 'five thousand two hundred seventy-nine'),\n(12736, 84050, 'eighty-four thousand fifty'),\n(12737, 17282, 'seventeen thousand two hundred eighty-two'),\n(12738, 28789, 'twenty-eight thousand seven hundred eighty-nine'),\n(12739, 17097, 'seventeen thousand ninety-seven'),\n(12740, 22432, 'twenty-two thousand four hundred thirty-two'),\n(12741, 16820, 'sixteen thousand eight hundred twenty'),\n(12742, 53508, 'fifty-three thousand five hundred eight'),\n(12743, 94135, 'ninety-four thousand one hundred thirty-five'),\n(12744, 75030, 'seventy-five thousand thirty'),\n(12745, 84367, 'eighty-four thousand three hundred sixty-seven'),\n(12746, 37510, 'thirty-seven thousand five hundred ten'),\n(12747, 15447, 'fifteen thousand four hundred forty-seven'),\n(12748, 50394, 'fifty thousand three hundred ninety-four'),\n(12749, 53109, 'fifty-three thousand one hundred nine'),\n(12750, 94074, 'ninety-four thousand seventy-four'),\n(12751, 44533, 'forty-four thousand five hundred thirty-three'),\n(12752, 46988, 'forty-six thousand nine hundred eighty-eight'),\n(12753, 94799, 'ninety-four thousand seven hundred ninety-nine'),\n(12754, 90383, 'ninety thousand three hundred eighty-three'),\n(12755, 84364, 'eighty-four thousand three hundred sixty-four'),\n(12756, 53591, 'fifty-three thousand five hundred ninety-one'),\n(12757, 86335, 'eighty-six thousand three hundred thirty-five'),\n(12758, 1902, 'one thousand nine hundred two'),\n(12759, 38419, 'thirty-eight thousand four hundred nineteen'),\n(12760, 34700, 'thirty-four thousand seven hundred'),\n(12761, 99480, 'ninety-nine thousand four hundred eighty'),\n(12762, 11679, 'eleven thousand six hundred seventy-nine'),\n(12763, 38545, 'thirty-eight thousand five hundred forty-five'),\n(12764, 95644, 'ninety-five thousand six hundred forty-four'),\n(12765, 1290, 'one thousand two hundred ninety'),\n(12766, 59726, 'fifty-nine thousand seven hundred twenty-six'),\n(12767, 94997, 'ninety-four thousand nine hundred ninety-seven'),\n(12768, 67254, 'sixty-seven thousand two hundred fifty-four'),\n(12769, 14653, 'fourteen thousand six hundred fifty-three'),\n(12770, 88412, 'eighty-eight thousand four hundred twelve'),\n(12771, 33937, 'thirty-three thousand nine hundred thirty-seven'),\n(12772, 19610, 'nineteen thousand six hundred ten'),\n(12773, 90505, 'ninety thousand five hundred five'),\n(12774, 9043, 'nine thousand forty-three'),\n(12775, 38038, 'thirty-eight thousand thirty-eight'),\n(12776, 73223, 'seventy-three thousand two hundred twenty-three'),\n(12777, 12215, 'twelve thousand two hundred fifteen'),\n(12778, 42517, 'forty-two thousand five hundred seventeen'),\n(12779, 97719, 'ninety-seven thousand seven hundred nineteen'),\n(12780, 82493, 'eighty-two thousand four hundred ninety-three'),\n(12781, 1465, 'one thousand four hundred sixty-five'),\n(12782, 65935, 'sixty-five thousand nine hundred thirty-five'),\n(12783, 10752, 'ten thousand seven hundred fifty-two'),\n(12784, 41441, 'forty-one thousand four hundred forty-one'),\n(12785, 14670, 'fourteen thousand six hundred seventy'),\n(12786, 22687, 'twenty-two thousand six hundred eighty-seven'),\n(12787, 42904, 'forty-two thousand nine hundred four'),\n(12788, 48511, 'forty-eight thousand five hundred eleven'),\n(12789, 8135, 'eight thousand one hundred thirty-five'),\n(12790, 77551, 'seventy-seven thousand five hundred fifty-one'),\n(12791, 40575, 'forty thousand five hundred seventy-five'),\n(12792, 38451, 'thirty-eight thousand four hundred fifty-one'),\n(12793, 87935, 'eighty-seven thousand nine hundred thirty-five'),\n(12794, 15382, 'fifteen thousand three hundred eighty-two'),\n(12795, 25292, 'twenty-five thousand two hundred ninety-two'),\n(12796, 66157, 'sixty-six thousand one hundred fifty-seven'),\n(12797, 95879, 'ninety-five thousand eight hundred seventy-nine'),\n(12798, 29664, 'twenty-nine thousand six hundred sixty-four'),\n(12799, 68150, 'sixty-eight thousand one hundred fifty'),\n(12800, 42576, 'forty-two thousand five hundred seventy-six'),\n(12801, 54257, 'fifty-four thousand two hundred fifty-seven'),\n(12802, 91548, 'ninety-one thousand five hundred forty-eight'),\n(12803, 19302, 'nineteen thousand three hundred two'),\n(12804, 14043, 'fourteen thousand forty-three'),\n(12805, 50292, 'fifty thousand two hundred ninety-two'),\n(12806, 82995, 'eighty-two thousand nine hundred ninety-five'),\n(12807, 74002, 'seventy-four thousand two'),\n(12808, 32517, 'thirty-two thousand five hundred seventeen'),\n(12809, 26885, 'twenty-six thousand eight hundred eighty-five'),\n(12810, 92621, 'ninety-two thousand six hundred twenty-one'),\n(12811, 57417, 'fifty-seven thousand four hundred seventeen'),\n(12812, 33465, 'thirty-three thousand four hundred sixty-five'),\n(12813, 20416, 'twenty thousand four hundred sixteen'),\n(12814, 56124, 'fifty-six thousand one hundred twenty-four'),\n(12815, 46067, 'forty-six thousand sixty-seven'),\n(12816, 39386, 'thirty-nine thousand three hundred eighty-six'),\n(12817, 79949, 'seventy-nine thousand nine hundred forty-nine'),\n(12818, 91960, 'ninety-one thousand nine hundred sixty'),\n(12819, 72770, 'seventy-two thousand seven hundred seventy'),\n(12820, 71993, 'seventy-one thousand nine hundred ninety-three'),\n(12821, 84252, 'eighty-four thousand two hundred fifty-two'),\n(12822, 19078, 'nineteen thousand seventy-eight'),\n(12823, 67071, 'sixty-seven thousand seventy-one'),\n(12824, 25905, 'twenty-five thousand nine hundred five'),\n(12825, 24508, 'twenty-four thousand five hundred eight'),\n(12826, 5443, 'five thousand four hundred forty-three'),\n(12827, 92870, 'ninety-two thousand eight hundred seventy'),\n(12828, 56853, 'fifty-six thousand eight hundred fifty-three'),\n(12829, 24852, 'twenty-four thousand eight hundred fifty-two'),\n(12830, 13687, 'thirteen thousand six hundred eighty-seven'),\n(12831, 17332, 'seventeen thousand three hundred thirty-two'),\n(12832, 14460, 'fourteen thousand four hundred sixty'),\n(12833, 81086, 'eighty-one thousand eighty-six'),\n(12834, 7884, 'seven thousand eight hundred eighty-four'),\n(12835, 83508, 'eighty-three thousand five hundred eight'),\n(12836, 69657, 'sixty-nine thousand six hundred fifty-seven'),\n(12837, 44143, 'forty-four thousand one hundred forty-three'),\n(12838, 81363, 'eighty-one thousand three hundred sixty-three'),\n(12839, 71061, 'seventy-one thousand sixty-one'),\n(12840, 18734, 'eighteen thousand seven hundred thirty-four'),\n(12841, 44796, 'forty-four thousand seven hundred ninety-six'),\n(12842, 19063, 'nineteen thousand sixty-three'),\n(12843, 36851, 'thirty-six thousand eight hundred fifty-one'),\n(12844, 6243, 'six thousand two hundred forty-three'),\n(12845, 80756, 'eighty thousand seven hundred fifty-six'),\n(12846, 76024, 'seventy-six thousand twenty-four'),\n(12847, 65444, 'sixty-five thousand four hundred forty-four'),\n(12848, 74297, 'seventy-four thousand two hundred ninety-seven'),\n(12849, 61080, 'sixty-one thousand eighty'),\n(12850, 47659, 'forty-seven thousand six hundred fifty-nine'),\n(12851, 51887, 'fifty-one thousand eight hundred eighty-seven'),\n(12852, 21369, 'twenty-one thousand three hundred sixty-nine'),\n(12853, 63464, 'sixty-three thousand four hundred sixty-four'),\n(12854, 73265, 'seventy-three thousand two hundred sixty-five'),\n(12855, 81129, 'eighty-one thousand one hundred twenty-nine'),\n(12856, 14852, 'fourteen thousand eight hundred fifty-two'),\n(12857, 86379, 'eighty-six thousand three hundred seventy-nine'),\n(12858, 90964, 'ninety thousand nine hundred sixty-four'),\n(12859, 62673, 'sixty-two thousand six hundred seventy-three'),\n(12860, 82954, 'eighty-two thousand nine hundred fifty-four'),\n(12861, 36211, 'thirty-six thousand two hundred eleven'),\n(12862, 18351, 'eighteen thousand three hundred fifty-one'),\n(12863, 79590, 'seventy-nine thousand five hundred ninety'),\n(12864, 77315, 'seventy-seven thousand three hundred fifteen'),\n(12865, 88413, 'eighty-eight thousand four hundred thirteen'),\n(12866, 14572, 'fourteen thousand five hundred seventy-two'),\n(12867, 42962, 'forty-two thousand nine hundred sixty-two'),\n(12868, 26686, 'twenty-six thousand six hundred eighty-six'),\n(12869, 52599, 'fifty-two thousand five hundred ninety-nine'),\n(12870, 36091, 'thirty-six thousand ninety-one'),\n(12871, 75689, 'seventy-five thousand six hundred eighty-nine'),\n(12872, 58595, 'fifty-eight thousand five hundred ninety-five'),\n(12873, 96901, 'ninety-six thousand nine hundred one'),\n(12874, 58548, 'fifty-eight thousand five hundred forty-eight'),\n(12875, 89596, 'eighty-nine thousand five hundred ninety-six'),\n(12876, 38378, 'thirty-eight thousand three hundred seventy-eight'),\n(12877, 29383, 'twenty-nine thousand three hundred eighty-three'),\n(12878, 41611, 'forty-one thousand six hundred eleven'),\n(12879, 7871, 'seven thousand eight hundred seventy-one'),\n(12880, 28664, 'twenty-eight thousand six hundred sixty-four'),\n(12881, 22282, 'twenty-two thousand two hundred eighty-two'),\n(12882, 64291, 'sixty-four thousand two hundred ninety-one'),\n(12883, 63841, 'sixty-three thousand eight hundred forty-one'),\n(12884, 5644, 'five thousand six hundred forty-four'),\n(12885, 87763, 'eighty-seven thousand seven hundred sixty-three'),\n(12886, 71258, 'seventy-one thousand two hundred fifty-eight'),\n(12887, 98969, 'ninety-eight thousand nine hundred sixty-nine'),\n(12888, 97564, 'ninety-seven thousand five hundred sixty-four'),\n(12889, 89038, 'eighty-nine thousand thirty-eight'),\n(12890, 70619, 'seventy thousand six hundred nineteen'),\n(12891, 31542, 'thirty-one thousand five hundred forty-two'),\n(12892, 89204, 'eighty-nine thousand two hundred four'),\n(12893, 88392, 'eighty-eight thousand three hundred ninety-two'),\n(12894, 16625, 'sixteen thousand six hundred twenty-five'),\n(12895, 4785, 'four thousand seven hundred eighty-five'),\n(12896, 47685, 'forty-seven thousand six hundred eighty-five'),\n(12897, 11192, 'eleven thousand one hundred ninety-two'),\n(12898, 32073, 'thirty-two thousand seventy-three'),\n(12899, 78085, 'seventy-eight thousand eighty-five'),\n(12900, 503, 'five hundred three'),\n(12901, 46088, 'forty-six thousand eighty-eight'),\n(12902, 94004, 'ninety-four thousand four'),\n(12903, 22694, 'twenty-two thousand six hundred ninety-four'),\n(12904, 56386, 'fifty-six thousand three hundred eighty-six'),\n(12905, 2151, 'two thousand one hundred fifty-one'),\n(12906, 71433, 'seventy-one thousand four hundred thirty-three'),\n(12907, 70973, 'seventy thousand nine hundred seventy-three'),\n(12908, 77969, 'seventy-seven thousand nine hundred sixty-nine'),\n(12909, 57592, 'fifty-seven thousand five hundred ninety-two'),\n(12910, 54666, 'fifty-four thousand six hundred sixty-six'),\n(12911, 49893, 'forty-nine thousand eight hundred ninety-three'),\n(12912, 6148, 'six thousand one hundred forty-eight'),\n(12913, 60475, 'sixty thousand four hundred seventy-five'),\n(12914, 76054, 'seventy-six thousand fifty-four'),\n(12915, 89714, 'eighty-nine thousand seven hundred fourteen'),\n(12916, 90057, 'ninety thousand fifty-seven'),\n(12917, 93441, 'ninety-three thousand four hundred forty-one'),\n(12918, 77868, 'seventy-seven thousand eight hundred sixty-eight'),\n(12919, 52884, 'fifty-two thousand eight hundred eighty-four'),\n(12920, 42957, 'forty-two thousand nine hundred fifty-seven'),\n(12921, 80056, 'eighty thousand fifty-six'),\n(12922, 94672, 'ninety-four thousand six hundred seventy-two'),\n(12923, 69476, 'sixty-nine thousand four hundred seventy-six'),\n(12924, 47443, 'forty-seven thousand four hundred forty-three'),\n(12925, 1464, 'one thousand four hundred sixty-four'),\n(12926, 59499, 'fifty-nine thousand four hundred ninety-nine'),\n(12927, 20766, 'twenty thousand seven hundred sixty-six'),\n(12928, 35904, 'thirty-five thousand nine hundred four'),\n(12929, 16391, 'sixteen thousand three hundred ninety-one'),\n(12930, 14525, 'fourteen thousand five hundred twenty-five'),\n(12931, 61799, 'sixty-one thousand seven hundred ninety-nine'),\n(12932, 58118, 'fifty-eight thousand one hundred eighteen'),\n(12933, 86526, 'eighty-six thousand five hundred twenty-six'),\n(12934, 31895, 'thirty-one thousand eight hundred ninety-five'),\n(12935, 45567, 'forty-five thousand five hundred sixty-seven'),\n(12936, 29187, 'twenty-nine thousand one hundred eighty-seven'),\n(12937, 29988, 'twenty-nine thousand nine hundred eighty-eight'),\n(12938, 77665, 'seventy-seven thousand six hundred sixty-five'),\n(12939, 91083, 'ninety-one thousand eighty-three'),\n(12940, 80714, 'eighty thousand seven hundred fourteen'),\n(12941, 98362, 'ninety-eight thousand three hundred sixty-two'),\n(12942, 8985, 'eight thousand nine hundred eighty-five'),\n(12943, 42413, 'forty-two thousand four hundred thirteen'),\n(12944, 32181, 'thirty-two thousand one hundred eighty-one'),\n(12945, 96375, 'ninety-six thousand three hundred seventy-five'),\n(12946, 7972, 'seven thousand nine hundred seventy-two'),\n(12947, 78864, 'seventy-eight thousand eight hundred sixty-four'),\n(12948, 43524, 'forty-three thousand five hundred twenty-four'),\n(12949, 54870, 'fifty-four thousand eight hundred seventy'),\n(12950, 9549, 'nine thousand five hundred forty-nine'),\n(12951, 71122, 'seventy-one thousand one hundred twenty-two'),\n(12952, 74872, 'seventy-four thousand eight hundred seventy-two'),\n(12953, 67421, 'sixty-seven thousand four hundred twenty-one'),\n(12954, 91784, 'ninety-one thousand seven hundred eighty-four'),\n(12955, 93531, 'ninety-three thousand five hundred thirty-one'),\n(12956, 89621, 'eighty-nine thousand six hundred twenty-one'),\n(12957, 80613, 'eighty thousand six hundred thirteen'),\n(12958, 4054, 'four thousand fifty-four'),\n(12959, 40155, 'forty thousand one hundred fifty-five'),\n(12960, 53778, 'fifty-three thousand seven hundred seventy-eight'),\n(12961, 75829, 'seventy-five thousand eight hundred twenty-nine'),\n(12962, 75078, 'seventy-five thousand seventy-eight'),\n(12963, 14544, 'fourteen thousand five hundred forty-four'),\n(12964, 95138, 'ninety-five thousand one hundred thirty-eight'),\n(12965, 40098, 'forty thousand ninety-eight'),\n(12966, 70972, 'seventy thousand nine hundred seventy-two'),\n(12967, 3327, 'three thousand three hundred twenty-seven'),\n(12968, 54851, 'fifty-four thousand eight hundred fifty-one'),\n(12969, 48095, 'forty-eight thousand ninety-five'),\n(12970, 74296, 'seventy-four thousand two hundred ninety-six'),\n(12971, 72389, 'seventy-two thousand three hundred eighty-nine'),\n(12972, 20726, 'twenty thousand seven hundred twenty-six'),\n(12973, 76543, 'seventy-six thousand five hundred forty-three'),\n(12974, 20326, 'twenty thousand three hundred twenty-six'),\n(12975, 63210, 'sixty-three thousand two hundred ten'),\n(12976, 5038, 'five thousand thirty-eight'),\n(12977, 75155, 'seventy-five thousand one hundred fifty-five'),\n(12978, 6163, 'six thousand one hundred sixty-three'),\n(12979, 50030, 'fifty thousand thirty'),\n(12980, 98458, 'ninety-eight thousand four hundred fifty-eight'),\n(12981, 97940, 'ninety-seven thousand nine hundred forty'),\n(12982, 22001, 'twenty-two thousand one'),\n(12983, 11763, 'eleven thousand seven hundred sixty-three'),\n(12984, 72730, 'seventy-two thousand seven hundred thirty'),\n(12985, 95710, 'ninety-five thousand seven hundred ten'),\n(12986, 51318, 'fifty-one thousand three hundred eighteen'),\n(12987, 43493, 'forty-three thousand four hundred ninety-three'),\n(12988, 24425, 'twenty-four thousand four hundred twenty-five'),\n(12989, 30973, 'thirty thousand nine hundred seventy-three'),\n(12990, 15094, 'fifteen thousand ninety-four'),\n(12991, 44550, 'forty-four thousand five hundred fifty'),\n(12992, 39778, 'thirty-nine thousand seven hundred seventy-eight'),\n(12993, 3393, 'three thousand three hundred ninety-three'),\n(12994, 99931, 'ninety-nine thousand nine hundred thirty-one'),\n(12995, 65492, 'sixty-five thousand four hundred ninety-two'),\n(12996, 52057, 'fifty-two thousand fifty-seven'),\n(12997, 30194, 'thirty thousand one hundred ninety-four'),\n(12998, 90986, 'ninety thousand nine hundred eighty-six'),\n(12999, 43629, 'forty-three thousand six hundred twenty-nine'),\n(13000, 25038, 'twenty-five thousand thirty-eight'),\n(13001, 55729, 'fifty-five thousand seven hundred twenty-nine'),\n(13002, 88732, 'eighty-eight thousand seven hundred thirty-two'),\n(13003, 68437, 'sixty-eight thousand four hundred thirty-seven'),\n(13004, 71645, 'seventy-one thousand six hundred forty-five'),\n(13005, 53387, 'fifty-three thousand three hundred eighty-seven'),\n(13006, 82609, 'eighty-two thousand six hundred nine'),\n(13007, 13864, 'thirteen thousand eight hundred sixty-four'),\n(13008, 91106, 'ninety-one thousand one hundred six'),\n(13009, 35798, 'thirty-five thousand seven hundred ninety-eight'),\n(13010, 77114, 'seventy-seven thousand one hundred fourteen'),\n(13011, 59246, 'fifty-nine thousand two hundred forty-six'),\n(13012, 25971, 'twenty-five thousand nine hundred seventy-one'),\n(13013, 21001, 'twenty-one thousand one'),\n(13014, 17681, 'seventeen thousand six hundred eighty-one'),\n(13015, 10887, 'ten thousand eight hundred eighty-seven'),\n(13016, 3308, 'three thousand three hundred eight'),\n(13017, 16851, 'sixteen thousand eight hundred fifty-one'),\n(13018, 73626, 'seventy-three thousand six hundred twenty-six'),\n(13019, 39209, 'thirty-nine thousand two hundred nine'),\n(13020, 44747, 'forty-four thousand seven hundred forty-seven'),\n(13021, 48379, 'forty-eight thousand three hundred seventy-nine'),\n(13022, 95384, 'ninety-five thousand three hundred eighty-four'),\n(13023, 9559, 'nine thousand five hundred fifty-nine'),\n(13024, 22617, 'twenty-two thousand six hundred seventeen'),\n(13025, 26012, 'twenty-six thousand twelve'),\n(13026, 98347, 'ninety-eight thousand three hundred forty-seven'),\n(13027, 37304, 'thirty-seven thousand three hundred four'),\n(13028, 38813, 'thirty-eight thousand eight hundred thirteen'),\n(13029, 46145, 'forty-six thousand one hundred forty-five'),\n(13030, 46570, 'forty-six thousand five hundred seventy'),\n(13031, 50681, 'fifty thousand six hundred eighty-one'),\n(13032, 84182, 'eighty-four thousand one hundred eighty-two'),\n(13033, 39559, 'thirty-nine thousand five hundred fifty-nine'),\n(13034, 63151, 'sixty-three thousand one hundred fifty-one'),\n(13035, 5028, 'five thousand twenty-eight'),\n(13036, 77886, 'seventy-seven thousand eight hundred eighty-six'),\n(13037, 68258, 'sixty-eight thousand two hundred fifty-eight'),\n(13038, 66907, 'sixty-six thousand nine hundred seven'),\n(13039, 88, 'eighty-eight'),\n(13040, 7729, 'seven thousand seven hundred twenty-nine'),\n(13041, 30994, 'thirty thousand nine hundred ninety-four'),\n(13042, 27415, 'twenty-seven thousand four hundred fifteen'),\n(13043, 67390, 'sixty-seven thousand three hundred ninety'),\n(13044, 30356, 'thirty thousand three hundred fifty-six'),\n(13045, 10276, 'ten thousand two hundred seventy-six'),\n(13046, 94756, 'ninety-four thousand seven hundred fifty-six'),\n(13047, 31440, 'thirty-one thousand four hundred forty'),\n(13048, 7856, 'seven thousand eight hundred fifty-six'),\n(13049, 52568, 'fifty-two thousand five hundred sixty-eight'),\n(13050, 16510, 'sixteen thousand five hundred ten'),\n(13051, 72650, 'seventy-two thousand six hundred fifty'),\n(13052, 70648, 'seventy thousand six hundred forty-eight'),\n(13053, 83477, 'eighty-three thousand four hundred seventy-seven'),\n(13054, 6684, 'six thousand six hundred eighty-four'),\n(13055, 93352, 'ninety-three thousand three hundred fifty-two'),\n(13056, 39802, 'thirty-nine thousand eight hundred two'),\n(13057, 34203, 'thirty-four thousand two hundred three'),\n(13058, 65817, 'sixty-five thousand eight hundred seventeen'),\n(13059, 33706, 'thirty-three thousand seven hundred six'),\n(13060, 6095, 'six thousand ninety-five'),\n(13061, 99711, 'ninety-nine thousand seven hundred eleven'),\n(13062, 97379, 'ninety-seven thousand three hundred seventy-nine'),\n(13063, 59598, 'fifty-nine thousand five hundred ninety-eight'),\n(13064, 44929, 'forty-four thousand nine hundred twenty-nine'),\n(13065, 50358, 'fifty thousand three hundred fifty-eight'),\n(13066, 55998, 'fifty-five thousand nine hundred ninety-eight'),\n(13067, 24931, 'twenty-four thousand nine hundred thirty-one'),\n(13068, 1909, 'one thousand nine hundred nine'),\n(13069, 13762, 'thirteen thousand seven hundred sixty-two'),\n(13070, 82104, 'eighty-two thousand one hundred four'),\n(13071, 98747, 'ninety-eight thousand seven hundred forty-seven'),\n(13072, 77978, 'seventy-seven thousand nine hundred seventy-eight'),\n(13073, 11771, 'eleven thousand seven hundred seventy-one'),\n(13074, 11831, 'eleven thousand eight hundred thirty-one'),\n(13075, 3838, 'three thousand eight hundred thirty-eight'),\n(13076, 36656, 'thirty-six thousand six hundred fifty-six'),\n(13077, 81809, 'eighty-one thousand eight hundred nine'),\n(13078, 59234, 'fifty-nine thousand two hundred thirty-four'),\n(13079, 48911, 'forty-eight thousand nine hundred eleven'),\n(13080, 10925, 'ten thousand nine hundred twenty-five'),\n(13081, 33733, 'thirty-three thousand seven hundred thirty-three'),\n(13082, 10417, 'ten thousand four hundred seventeen'),\n(13083, 4775, 'four thousand seven hundred seventy-five'),\n(13084, 27816, 'twenty-seven thousand eight hundred sixteen'),\n(13085, 57227, 'fifty-seven thousand two hundred twenty-seven'),\n(13086, 51662, 'fifty-one thousand six hundred sixty-two'),\n(13087, 18961, 'eighteen thousand nine hundred sixty-one'),\n(13088, 17700, 'seventeen thousand seven hundred'),\n(13089, 5420, 'five thousand four hundred twenty'),\n(13090, 55440, 'fifty-five thousand four hundred forty'),\n(13091, 66680, 'sixty-six thousand six hundred eighty'),\n(13092, 5923, 'five thousand nine hundred twenty-three'),\n(13093, 49544, 'forty-nine thousand five hundred forty-four'),\n(13094, 34480, 'thirty-four thousand four hundred eighty'),\n(13095, 13248, 'thirteen thousand two hundred forty-eight'),\n(13096, 36359, 'thirty-six thousand three hundred fifty-nine'),\n(13097, 42391, 'forty-two thousand three hundred ninety-one'),\n(13098, 90361, 'ninety thousand three hundred sixty-one'),\n(13099, 78799, 'seventy-eight thousand seven hundred ninety-nine'),\n(13100, 85497, 'eighty-five thousand four hundred ninety-seven'),\n(13101, 70559, 'seventy thousand five hundred fifty-nine'),\n(13102, 66041, 'sixty-six thousand forty-one'),\n(13103, 24343, 'twenty-four thousand three hundred forty-three'),\n(13104, 61475, 'sixty-one thousand four hundred seventy-five'),\n(13105, 10975, 'ten thousand nine hundred seventy-five'),\n(13106, 69803, 'sixty-nine thousand eight hundred three'),\n(13107, 98004, 'ninety-eight thousand four'),\n(13108, 16349, 'sixteen thousand three hundred forty-nine'),\n(13109, 9929, 'nine thousand nine hundred twenty-nine'),\n(13110, 36080, 'thirty-six thousand eighty'),\n(13111, 12242, 'twelve thousand two hundred forty-two'),\n(13112, 97028, 'ninety-seven thousand twenty-eight'),\n(13113, 29384, 'twenty-nine thousand three hundred eighty-four'),\n(13114, 38221, 'thirty-eight thousand two hundred twenty-one'),\n(13115, 53447, 'fifty-three thousand four hundred forty-seven'),\n(13116, 98000, 'ninety-eight thousand'),\n(13117, 68425, 'sixty-eight thousand four hundred twenty-five'),\n(13118, 4350, 'four thousand three hundred fifty'),\n(13119, 1708, 'one thousand seven hundred eight'),\n(13120, 28134, 'twenty-eight thousand one hundred thirty-four'),\n(13121, 4813, 'four thousand eight hundred thirteen'),\n(13122, 93787, 'ninety-three thousand seven hundred eighty-seven'),\n(13123, 8822, 'eight thousand eight hundred twenty-two'),\n(13124, 72982, 'seventy-two thousand nine hundred eighty-two'),\n(13125, 33244, 'thirty-three thousand two hundred forty-four'),\n(13126, 48771, 'forty-eight thousand seven hundred seventy-one'),\n(13127, 48958, 'forty-eight thousand nine hundred fifty-eight'),\n(13128, 10980, 'ten thousand nine hundred eighty'),\n(13129, 23503, 'twenty-three thousand five hundred three'),\n(13130, 97517, 'ninety-seven thousand five hundred seventeen'),\n(13131, 75226, 'seventy-five thousand two hundred twenty-six'),\n(13132, 65680, 'sixty-five thousand six hundred eighty'),\n(13133, 81768, 'eighty-one thousand seven hundred sixty-eight'),\n(13134, 26780, 'twenty-six thousand seven hundred eighty'),\n(13135, 13112, 'thirteen thousand one hundred twelve'),\n(13136, 30779, 'thirty thousand seven hundred seventy-nine'),\n(13137, 69018, 'sixty-nine thousand eighteen'),\n(13138, 54064, 'fifty-four thousand sixty-four'),\n(13139, 64860, 'sixty-four thousand eight hundred sixty'),\n(13140, 34161, 'thirty-four thousand one hundred sixty-one'),\n(13141, 2837, 'two thousand eight hundred thirty-seven'),\n(13142, 36341, 'thirty-six thousand three hundred forty-one'),\n(13143, 1197, 'one thousand one hundred ninety-seven'),\n(13144, 11929, 'eleven thousand nine hundred twenty-nine'),\n(13145, 87437, 'eighty-seven thousand four hundred thirty-seven'),\n(13146, 73747, 'seventy-three thousand seven hundred forty-seven'),\n(13147, 3822, 'three thousand eight hundred twenty-two'),\n(13148, 63132, 'sixty-three thousand one hundred thirty-two'),\n(13149, 74858, 'seventy-four thousand eight hundred fifty-eight'),\n(13150, 60719, 'sixty thousand seven hundred nineteen'),\n(13151, 11534, 'eleven thousand five hundred thirty-four'),\n(13152, 89423, 'eighty-nine thousand four hundred twenty-three'),\n(13153, 64825, 'sixty-four thousand eight hundred twenty-five'),\n(13154, 67448, 'sixty-seven thousand four hundred forty-eight'),\n(13155, 27193, 'twenty-seven thousand one hundred ninety-three'),\n(13156, 9647, 'nine thousand six hundred forty-seven'),\n(13157, 35185, 'thirty-five thousand one hundred eighty-five'),\n(13158, 8076, 'eight thousand seventy-six'),\n(13159, 50827, 'fifty thousand eight hundred twenty-seven'),\n(13160, 56347, 'fifty-six thousand three hundred forty-seven'),\n(13161, 63542, 'sixty-three thousand five hundred forty-two'),\n(13162, 36439, 'thirty-six thousand four hundred thirty-nine'),\n(13163, 17371, 'seventeen thousand three hundred seventy-one'),\n(13164, 51837, 'fifty-one thousand eight hundred thirty-seven'),\n(13165, 87903, 'eighty-seven thousand nine hundred three'),\n(13166, 95923, 'ninety-five thousand nine hundred twenty-three'),\n(13167, 90815, 'ninety thousand eight hundred fifteen'),\n(13168, 22562, 'twenty-two thousand five hundred sixty-two'),\n(13169, 50782, 'fifty thousand seven hundred eighty-two'),\n(13170, 82861, 'eighty-two thousand eight hundred sixty-one'),\n(13171, 70222, 'seventy thousand two hundred twenty-two'),\n(13172, 12179, 'twelve thousand one hundred seventy-nine'),\n(13173, 54493, 'fifty-four thousand four hundred ninety-three'),\n(13174, 78149, 'seventy-eight thousand one hundred forty-nine'),\n(13175, 46002, 'forty-six thousand two'),\n(13176, 7700, 'seven thousand seven hundred'),\n(13177, 77620, 'seventy-seven thousand six hundred twenty'),\n(13178, 3474, 'three thousand four hundred seventy-four'),\n(13179, 73851, 'seventy-three thousand eight hundred fifty-one'),\n(13180, 15905, 'fifteen thousand nine hundred five'),\n(13181, 59004, 'fifty-nine thousand four'),\n(13182, 96704, 'ninety-six thousand seven hundred four'),\n(13183, 36024, 'thirty-six thousand twenty-four'),\n(13184, 28203, 'twenty-eight thousand two hundred three'),\n(13185, 52029, 'fifty-two thousand twenty-nine'),\n(13186, 78390, 'seventy-eight thousand three hundred ninety'),\n(13187, 87978, 'eighty-seven thousand nine hundred seventy-eight'),\n(13188, 17610, 'seventeen thousand six hundred ten'),\n(13189, 72739, 'seventy-two thousand seven hundred thirty-nine'),\n(13190, 34316, 'thirty-four thousand three hundred sixteen'),\n(13191, 24071, 'twenty-four thousand seventy-one'),\n(13192, 53318, 'fifty-three thousand three hundred eighteen'),\n(13193, 75735, 'seventy-five thousand seven hundred thirty-five'),\n(13194, 41541, 'forty-one thousand five hundred forty-one'),\n(13195, 32100, 'thirty-two thousand one hundred'),\n(13196, 61417, 'sixty-one thousand four hundred seventeen'),\n(13197, 11863, 'eleven thousand eight hundred sixty-three'),\n(13198, 29375, 'twenty-nine thousand three hundred seventy-five'),\n(13199, 37859, 'thirty-seven thousand eight hundred fifty-nine'),\n(13200, 87694, 'eighty-seven thousand six hundred ninety-four'),\n(13201, 26526, 'twenty-six thousand five hundred twenty-six'),\n(13202, 15888, 'fifteen thousand eight hundred eighty-eight'),\n(13203, 70807, 'seventy thousand eight hundred seven'),\n(13204, 94343, 'ninety-four thousand three hundred forty-three'),\n(13205, 81494, 'eighty-one thousand four hundred ninety-four'),\n(13206, 29740, 'twenty-nine thousand seven hundred forty'),\n(13207, 23823, 'twenty-three thousand eight hundred twenty-three'),\n(13208, 59185, 'fifty-nine thousand one hundred eighty-five'),\n(13209, 20678, 'twenty thousand six hundred seventy-eight'),\n(13210, 29307, 'twenty-nine thousand three hundred seven'),\n(13211, 13134, 'thirteen thousand one hundred thirty-four'),\n(13212, 4661, 'four thousand six hundred sixty-one'),\n(13213, 35977, 'thirty-five thousand nine hundred seventy-seven'),\n(13214, 50793, 'fifty thousand seven hundred ninety-three'),\n(13215, 61478, 'sixty-one thousand four hundred seventy-eight'),\n(13216, 98202, 'ninety-eight thousand two hundred two'),\n(13217, 69740, 'sixty-nine thousand seven hundred forty'),\n(13218, 75275, 'seventy-five thousand two hundred seventy-five'),\n(13219, 56925, 'fifty-six thousand nine hundred twenty-five'),\n(13220, 60715, 'sixty thousand seven hundred fifteen'),\n(13221, 64929, 'sixty-four thousand nine hundred twenty-nine'),\n(13222, 27801, 'twenty-seven thousand eight hundred one'),\n(13223, 18972, 'eighteen thousand nine hundred seventy-two'),\n(13224, 11691, 'eleven thousand six hundred ninety-one'),\n(13225, 341, 'three hundred forty-one'),\n(13226, 19298, 'nineteen thousand two hundred ninety-eight'),\n(13227, 40105, 'forty thousand one hundred five'),\n(13228, 26635, 'twenty-six thousand six hundred thirty-five'),\n(13229, 24978, 'twenty-four thousand nine hundred seventy-eight'),\n(13230, 47689, 'forty-seven thousand six hundred eighty-nine'),\n(13231, 11586, 'eleven thousand five hundred eighty-six'),\n(13232, 84336, 'eighty-four thousand three hundred thirty-six'),\n(13233, 123, 'one hundred twenty-three'),\n(13234, 8505, 'eight thousand five hundred five'),\n(13235, 49402, 'forty-nine thousand four hundred two'),\n(13236, 26740, 'twenty-six thousand seven hundred forty'),\n(13237, 83351, 'eighty-three thousand three hundred fifty-one'),\n(13238, 35659, 'thirty-five thousand six hundred fifty-nine'),\n(13239, 87846, 'eighty-seven thousand eight hundred forty-six'),\n(13240, 16244, 'sixteen thousand two hundred forty-four'),\n(13241, 6127, 'six thousand one hundred twenty-seven'),\n(13242, 12441, 'twelve thousand four hundred forty-one'),\n(13243, 27672, 'twenty-seven thousand six hundred seventy-two'),\n(13244, 41610, 'forty-one thousand six hundred ten'),\n(13245, 77801, 'seventy-seven thousand eight hundred one'),\n(13246, 64605, 'sixty-four thousand six hundred five'),\n(13247, 55341, 'fifty-five thousand three hundred forty-one'),\n(13248, 38208, 'thirty-eight thousand two hundred eight'),\n(13249, 31076, 'thirty-one thousand seventy-six'),\n(13250, 10181, 'ten thousand one hundred eighty-one'),\n(13251, 5654, 'five thousand six hundred fifty-four'),\n(13252, 14005, 'fourteen thousand five'),\n(13253, 84968, 'eighty-four thousand nine hundred sixty-eight'),\n(13254, 21314, 'twenty-one thousand three hundred fourteen'),\n(13255, 62093, 'sixty-two thousand ninety-three'),\n(13256, 37291, 'thirty-seven thousand two hundred ninety-one'),\n(13257, 97748, 'ninety-seven thousand seven hundred forty-eight'),\n(13258, 71656, 'seventy-one thousand six hundred fifty-six'),\n(13259, 71265, 'seventy-one thousand two hundred sixty-five'),\n(13260, 48969, 'forty-eight thousand nine hundred sixty-nine'),\n(13261, 53751, 'fifty-three thousand seven hundred fifty-one'),\n(13262, 57532, 'fifty-seven thousand five hundred thirty-two'),\n(13263, 36202, 'thirty-six thousand two hundred two'),\n(13264, 76502, 'seventy-six thousand five hundred two'),\n(13265, 74362, 'seventy-four thousand three hundred sixty-two'),\n(13266, 99653, 'ninety-nine thousand six hundred fifty-three'),\n(13267, 69060, 'sixty-nine thousand sixty'),\n(13268, 75713, 'seventy-five thousand seven hundred thirteen'),\n(13269, 76046, 'seventy-six thousand forty-six'),\n(13270, 61747, 'sixty-one thousand seven hundred forty-seven'),\n(13271, 10396, 'ten thousand three hundred ninety-six'),\n(13272, 71149, 'seventy-one thousand one hundred forty-nine'),\n(13273, 75232, 'seventy-five thousand two hundred thirty-two'),\n(13274, 83474, 'eighty-three thousand four hundred seventy-four'),\n(13275, 16281, 'sixteen thousand two hundred eighty-one'),\n(13276, 30919, 'thirty thousand nine hundred nineteen'),\n(13277, 65978, 'sixty-five thousand nine hundred seventy-eight'),\n(13278, 20388, 'twenty thousand three hundred eighty-eight'),\n(13279, 52887, 'fifty-two thousand eight hundred eighty-seven'),\n(13280, 74633, 'seventy-four thousand six hundred thirty-three'),\n(13281, 25362, 'twenty-five thousand three hundred sixty-two'),\n(13282, 89761, 'eighty-nine thousand seven hundred sixty-one'),\n(13283, 96460, 'ninety-six thousand four hundred sixty'),\n(13284, 9072, 'nine thousand seventy-two'),\n(13285, 20196, 'twenty thousand one hundred ninety-six'),\n(13286, 35750, 'thirty-five thousand seven hundred fifty'),\n(13287, 34201, 'thirty-four thousand two hundred one'),\n(13288, 71435, 'seventy-one thousand four hundred thirty-five'),\n(13289, 12565, 'twelve thousand five hundred sixty-five'),\n(13290, 15407, 'fifteen thousand four hundred seven'),\n(13291, 60897, 'sixty thousand eight hundred ninety-seven'),\n(13292, 97271, 'ninety-seven thousand two hundred seventy-one'),\n(13293, 42621, 'forty-two thousand six hundred twenty-one'),\n(13294, 21222, 'twenty-one thousand two hundred twenty-two'),\n(13295, 97913, 'ninety-seven thousand nine hundred thirteen'),\n(13296, 58094, 'fifty-eight thousand ninety-four'),\n(13297, 2904, 'two thousand nine hundred four'),\n(13298, 42591, 'forty-two thousand five hundred ninety-one'),\n(13299, 55707, 'fifty-five thousand seven hundred seven'),\n(13300, 16614, 'sixteen thousand six hundred fourteen'),\n(13301, 37020, 'thirty-seven thousand twenty'),\n(13302, 13345, 'thirteen thousand three hundred forty-five'),\n(13303, 79461, 'seventy-nine thousand four hundred sixty-one'),\n(13304, 45382, 'forty-five thousand three hundred eighty-two'),\n(13305, 6165, 'six thousand one hundred sixty-five'),\n(13306, 3455, 'three thousand four hundred fifty-five'),\n(13307, 17674, 'seventeen thousand six hundred seventy-four'),\n(13308, 61058, 'sixty-one thousand fifty-eight'),\n(13309, 15826, 'fifteen thousand eight hundred twenty-six'),\n(13310, 92302, 'ninety-two thousand three hundred two'),\n(13311, 27210, 'twenty-seven thousand two hundred ten'),\n(13312, 36885, 'thirty-six thousand eight hundred eighty-five'),\n(13313, 92064, 'ninety-two thousand sixty-four'),\n(13314, 12520, 'twelve thousand five hundred twenty'),\n(13315, 69500, 'sixty-nine thousand five hundred'),\n(13316, 24016, 'twenty-four thousand sixteen'),\n(13317, 31056, 'thirty-one thousand fifty-six'),\n(13318, 59995, 'fifty-nine thousand nine hundred ninety-five'),\n(13319, 24884, 'twenty-four thousand eight hundred eighty-four'),\n(13320, 24883, 'twenty-four thousand eight hundred eighty-three'),\n(13321, 76276, 'seventy-six thousand two hundred seventy-six'),\n(13322, 2489, 'two thousand four hundred eighty-nine'),\n(13323, 64878, 'sixty-four thousand eight hundred seventy-eight'),\n(13324, 44163, 'forty-four thousand one hundred sixty-three'),\n(13325, 77423, 'seventy-seven thousand four hundred twenty-three'),\n(13326, 40235, 'forty thousand two hundred thirty-five'),\n(13327, 27180, 'twenty-seven thousand one hundred eighty'),\n(13328, 43594, 'forty-three thousand five hundred ninety-four'),\n(13329, 3690, 'three thousand six hundred ninety'),\n(13330, 11373, 'eleven thousand three hundred seventy-three'),\n(13331, 43537, 'forty-three thousand five hundred thirty-seven'),\n(13332, 17400, 'seventeen thousand four hundred'),\n(13333, 54819, 'fifty-four thousand eight hundred nineteen'),\n(13334, 19330, 'nineteen thousand three hundred thirty'),\n(13335, 66430, 'sixty-six thousand four hundred thirty'),\n(13336, 47395, 'forty-seven thousand three hundred ninety-five'),\n(13337, 99786, 'ninety-nine thousand seven hundred eighty-six'),\n(13338, 32878, 'thirty-two thousand eight hundred seventy-eight'),\n(13339, 90252, 'ninety thousand two hundred fifty-two'),\n(13340, 67410, 'sixty-seven thousand four hundred ten'),\n(13341, 46816, 'forty-six thousand eight hundred sixteen'),\n(13342, 42763, 'forty-two thousand seven hundred sixty-three'),\n(13343, 13614, 'thirteen thousand six hundred fourteen'),\n(13344, 79965, 'seventy-nine thousand nine hundred sixty-five'),\n(13345, 43649, 'forty-three thousand six hundred forty-nine'),\n(13346, 55494, 'fifty-five thousand four hundred ninety-four'),\n(13347, 643, 'six hundred forty-three'),\n(13348, 24370, 'twenty-four thousand three hundred seventy'),\n(13349, 88900, 'eighty-eight thousand nine hundred'),\n(13350, 45332, 'forty-five thousand three hundred thirty-two'),\n(13351, 87119, 'eighty-seven thousand one hundred nineteen'),\n(13352, 5424, 'five thousand four hundred twenty-four'),\n(13353, 6691, 'six thousand six hundred ninety-one'),\n(13354, 82112, 'eighty-two thousand one hundred twelve'),\n(13355, 15691, 'fifteen thousand six hundred ninety-one'),\n(13356, 68239, 'sixty-eight thousand two hundred thirty-nine'),\n(13357, 7515, 'seven thousand five hundred fifteen'),\n(13358, 19529, 'nineteen thousand five hundred twenty-nine'),\n(13359, 30609, 'thirty thousand six hundred nine'),\n(13360, 49734, 'forty-nine thousand seven hundred thirty-four'),\n(13361, 81504, 'eighty-one thousand five hundred four'),\n(13362, 92661, 'ninety-two thousand six hundred sixty-one'),\n(13363, 24630, 'twenty-four thousand six hundred thirty'),\n(13364, 11629, 'eleven thousand six hundred twenty-nine'),\n(13365, 90377, 'ninety thousand three hundred seventy-seven'),\n(13366, 29404, 'twenty-nine thousand four hundred four'),\n(13367, 4049, 'four thousand forty-nine'),\n(13368, 85679, 'eighty-five thousand six hundred seventy-nine'),\n(13369, 50669, 'fifty thousand six hundred sixty-nine'),\n(13370, 39943, 'thirty-nine thousand nine hundred forty-three'),\n(13371, 61686, 'sixty-one thousand six hundred eighty-six'),\n(13372, 95689, 'ninety-five thousand six hundred eighty-nine'),\n(13373, 13156, 'thirteen thousand one hundred fifty-six'),\n(13374, 85078, 'eighty-five thousand seventy-eight'),\n(13375, 43209, 'forty-three thousand two hundred nine'),\n(13376, 24774, 'twenty-four thousand seven hundred seventy-four'),\n(13377, 1892, 'one thousand eight hundred ninety-two'),\n(13378, 95840, 'ninety-five thousand eight hundred forty'),\n(13379, 78703, 'seventy-eight thousand seven hundred three'),\n(13380, 88084, 'eighty-eight thousand eighty-four'),\n(13381, 32355, 'thirty-two thousand three hundred fifty-five'),\n(13382, 90626, 'ninety thousand six hundred twenty-six'),\n(13383, 85351, 'eighty-five thousand three hundred fifty-one'),\n(13384, 58896, 'fifty-eight thousand eight hundred ninety-six'),\n(13385, 96485, 'ninety-six thousand four hundred eighty-five'),\n(13386, 64726, 'sixty-four thousand seven hundred twenty-six'),\n(13387, 23011, 'twenty-three thousand eleven'),\n(13388, 31760, 'thirty-one thousand seven hundred sixty'),\n(13389, 73563, 'seventy-three thousand five hundred sixty-three'),\n(13390, 1457, 'one thousand four hundred fifty-seven'),\n(13391, 54956, 'fifty-four thousand nine hundred fifty-six'),\n(13392, 97576, 'ninety-seven thousand five hundred seventy-six'),\n(13393, 18120, 'eighteen thousand one hundred twenty'),\n(13394, 11749, 'eleven thousand seven hundred forty-nine'),\n(13395, 11871, 'eleven thousand eight hundred seventy-one'),\n(13396, 46306, 'forty-six thousand three hundred six'),\n(13397, 4920, 'four thousand nine hundred twenty'),\n(13398, 86397, 'eighty-six thousand three hundred ninety-seven'),\n(13399, 4421, 'four thousand four hundred twenty-one'),\n(13400, 22687, 'twenty-two thousand six hundred eighty-seven'),\n(13401, 18312, 'eighteen thousand three hundred twelve'),\n(13402, 19119, 'nineteen thousand one hundred nineteen'),\n(13403, 67993, 'sixty-seven thousand nine hundred ninety-three'),\n(13404, 41345, 'forty-one thousand three hundred forty-five'),\n(13405, 31791, 'thirty-one thousand seven hundred ninety-one'),\n(13406, 9790, 'nine thousand seven hundred ninety'),\n(13407, 33943, 'thirty-three thousand nine hundred forty-three'),\n(13408, 13551, 'thirteen thousand five hundred fifty-one'),\n(13409, 21684, 'twenty-one thousand six hundred eighty-four'),\n(13410, 34528, 'thirty-four thousand five hundred twenty-eight'),\n(13411, 34653, 'thirty-four thousand six hundred fifty-three'),\n(13412, 2531, 'two thousand five hundred thirty-one'),\n(13413, 55823, 'fifty-five thousand eight hundred twenty-three'),\n(13414, 247, 'two hundred forty-seven'),\n(13415, 58488, 'fifty-eight thousand four hundred eighty-eight'),\n(13416, 24881, 'twenty-four thousand eight hundred eighty-one'),\n(13417, 80859, 'eighty thousand eight hundred fifty-nine'),\n(13418, 35264, 'thirty-five thousand two hundred sixty-four'),\n(13419, 82193, 'eighty-two thousand one hundred ninety-three'),\n(13420, 51840, 'fifty-one thousand eight hundred forty'),\n(13421, 64702, 'sixty-four thousand seven hundred two'),\n(13422, 38351, 'thirty-eight thousand three hundred fifty-one'),\n(13423, 71390, 'seventy-one thousand three hundred ninety'),\n(13424, 91759, 'ninety-one thousand seven hundred fifty-nine'),\n(13425, 9395, 'nine thousand three hundred ninety-five'),\n(13426, 14921, 'fourteen thousand nine hundred twenty-one'),\n(13427, 82772, 'eighty-two thousand seven hundred seventy-two'),\n(13428, 42233, 'forty-two thousand two hundred thirty-three'),\n(13429, 21197, 'twenty-one thousand one hundred ninety-seven'),\n(13430, 27454, 'twenty-seven thousand four hundred fifty-four'),\n(13431, 24640, 'twenty-four thousand six hundred forty'),\n(13432, 64911, 'sixty-four thousand nine hundred eleven'),\n(13433, 55943, 'fifty-five thousand nine hundred forty-three'),\n(13434, 74409, 'seventy-four thousand four hundred nine'),\n(13435, 98584, 'ninety-eight thousand five hundred eighty-four'),\n(13436, 50969, 'fifty thousand nine hundred sixty-nine'),\n(13437, 17820, 'seventeen thousand eight hundred twenty'),\n(13438, 1380, 'one thousand three hundred eighty'),\n(13439, 75904, 'seventy-five thousand nine hundred four'),\n(13440, 58169, 'fifty-eight thousand one hundred sixty-nine'),\n(13441, 89505, 'eighty-nine thousand five hundred five'),\n(13442, 76161, 'seventy-six thousand one hundred sixty-one'),\n(13443, 85191, 'eighty-five thousand one hundred ninety-one'),\n(13444, 3654, 'three thousand six hundred fifty-four'),\n(13445, 7270, 'seven thousand two hundred seventy'),\n(13446, 58449, 'fifty-eight thousand four hundred forty-nine'),\n(13447, 18421, 'eighteen thousand four hundred twenty-one'),\n(13448, 87540, 'eighty-seven thousand five hundred forty'),\n(13449, 64988, 'sixty-four thousand nine hundred eighty-eight'),\n(13450, 62539, 'sixty-two thousand five hundred thirty-nine'),\n(13451, 5489, 'five thousand four hundred eighty-nine'),\n(13452, 11447, 'eleven thousand four hundred forty-seven'),\n(13453, 12538, 'twelve thousand five hundred thirty-eight'),\n(13454, 84432, 'eighty-four thousand four hundred thirty-two'),\n(13455, 43221, 'forty-three thousand two hundred twenty-one'),\n(13456, 73702, 'seventy-three thousand seven hundred two'),\n(13457, 62350, 'sixty-two thousand three hundred fifty'),\n(13458, 90981, 'ninety thousand nine hundred eighty-one'),\n(13459, 84845, 'eighty-four thousand eight hundred forty-five'),\n(13460, 52796, 'fifty-two thousand seven hundred ninety-six'),\n(13461, 66773, 'sixty-six thousand seven hundred seventy-three'),\n(13462, 41435, 'forty-one thousand four hundred thirty-five'),\n(13463, 7761, 'seven thousand seven hundred sixty-one'),\n(13464, 28007, 'twenty-eight thousand seven'),\n(13465, 96963, 'ninety-six thousand nine hundred sixty-three'),\n(13466, 93009, 'ninety-three thousand nine'),\n(13467, 2819, 'two thousand eight hundred nineteen'),\n(13468, 924, 'nine hundred twenty-four'),\n(13469, 24234, 'twenty-four thousand two hundred thirty-four'),\n(13470, 80264, 'eighty thousand two hundred sixty-four'),\n(13471, 84051, 'eighty-four thousand fifty-one'),\n(13472, 1310, 'one thousand three hundred ten'),\n(13473, 2837, 'two thousand eight hundred thirty-seven'),\n(13474, 87686, 'eighty-seven thousand six hundred eighty-six'),\n(13475, 15872, 'fifteen thousand eight hundred seventy-two'),\n(13476, 84167, 'eighty-four thousand one hundred sixty-seven'),\n(13477, 59391, 'fifty-nine thousand three hundred ninety-one'),\n(13478, 85732, 'eighty-five thousand seven hundred thirty-two'),\n(13479, 37927, 'thirty-seven thousand nine hundred twenty-seven'),\n(13480, 2578, 'two thousand five hundred seventy-eight'),\n(13481, 44012, 'forty-four thousand twelve'),\n(13482, 14290, 'fourteen thousand two hundred ninety'),\n(13483, 25567, 'twenty-five thousand five hundred sixty-seven'),\n(13484, 38059, 'thirty-eight thousand fifty-nine'),\n(13485, 59733, 'fifty-nine thousand seven hundred thirty-three'),\n(13486, 32897, 'thirty-two thousand eight hundred ninety-seven'),\n(13487, 12843, 'twelve thousand eight hundred forty-three'),\n(13488, 25993, 'twenty-five thousand nine hundred ninety-three'),\n(13489, 84519, 'eighty-four thousand five hundred nineteen'),\n(13490, 22645, 'twenty-two thousand six hundred forty-five'),\n(13491, 40121, 'forty thousand one hundred twenty-one'),\n(13492, 31797, 'thirty-one thousand seven hundred ninety-seven'),\n(13493, 67194, 'sixty-seven thousand one hundred ninety-four'),\n(13494, 41318, 'forty-one thousand three hundred eighteen'),\n(13495, 23003, 'twenty-three thousand three'),\n(13496, 27605, 'twenty-seven thousand six hundred five'),\n(13497, 93482, 'ninety-three thousand four hundred eighty-two'),\n(13498, 75579, 'seventy-five thousand five hundred seventy-nine'),\n(13499, 1265, 'one thousand two hundred sixty-five'),\n(13500, 19780, 'nineteen thousand seven hundred eighty'),\n(13501, 85838, 'eighty-five thousand eight hundred thirty-eight'),\n(13502, 65705, 'sixty-five thousand seven hundred five'),\n(13503, 4730, 'four thousand seven hundred thirty'),\n(13504, 15590, 'fifteen thousand five hundred ninety'),\n(13505, 16963, 'sixteen thousand nine hundred sixty-three'),\n(13506, 71713, 'seventy-one thousand seven hundred thirteen'),\n(13507, 69032, 'sixty-nine thousand thirty-two'),\n(13508, 8635, 'eight thousand six hundred thirty-five'),\n(13509, 47461, 'forty-seven thousand four hundred sixty-one'),\n(13510, 34107, 'thirty-four thousand one hundred seven'),\n(13511, 13665, 'thirteen thousand six hundred sixty-five'),\n(13512, 10762, 'ten thousand seven hundred sixty-two'),\n(13513, 94365, 'ninety-four thousand three hundred sixty-five'),\n(13514, 11060, 'eleven thousand sixty'),\n(13515, 58344, 'fifty-eight thousand three hundred forty-four'),\n(13516, 74773, 'seventy-four thousand seven hundred seventy-three'),\n(13517, 19797, 'nineteen thousand seven hundred ninety-seven'),\n(13518, 38729, 'thirty-eight thousand seven hundred twenty-nine'),\n(13519, 69522, 'sixty-nine thousand five hundred twenty-two'),\n(13520, 62413, 'sixty-two thousand four hundred thirteen'),\n(13521, 86445, 'eighty-six thousand four hundred forty-five'),\n(13522, 94331, 'ninety-four thousand three hundred thirty-one'),\n(13523, 78354, 'seventy-eight thousand three hundred fifty-four'),\n(13524, 6332, 'six thousand three hundred thirty-two'),\n(13525, 45405, 'forty-five thousand four hundred five'),\n(13526, 19955, 'nineteen thousand nine hundred fifty-five'),\n(13527, 21999, 'twenty-one thousand nine hundred ninety-nine'),\n(13528, 81769, 'eighty-one thousand seven hundred sixty-nine'),\n(13529, 28807, 'twenty-eight thousand eight hundred seven'),\n(13530, 45547, 'forty-five thousand five hundred forty-seven'),\n(13531, 16980, 'sixteen thousand nine hundred eighty'),\n(13532, 63331, 'sixty-three thousand three hundred thirty-one'),\n(13533, 43602, 'forty-three thousand six hundred two'),\n(13534, 31850, 'thirty-one thousand eight hundred fifty'),\n(13535, 25922, 'twenty-five thousand nine hundred twenty-two'),\n(13536, 86241, 'eighty-six thousand two hundred forty-one'),\n(13537, 23191, 'twenty-three thousand one hundred ninety-one'),\n(13538, 45128, 'forty-five thousand one hundred twenty-eight'),\n(13539, 32189, 'thirty-two thousand one hundred eighty-nine'),\n(13540, 15541, 'fifteen thousand five hundred forty-one'),\n(13541, 73582, 'seventy-three thousand five hundred eighty-two'),\n(13542, 34331, 'thirty-four thousand three hundred thirty-one'),\n(13543, 33372, 'thirty-three thousand three hundred seventy-two'),\n(13544, 79229, 'seventy-nine thousand two hundred twenty-nine'),\n(13545, 96487, 'ninety-six thousand four hundred eighty-seven'),\n(13546, 35287, 'thirty-five thousand two hundred eighty-seven'),\n(13547, 66978, 'sixty-six thousand nine hundred seventy-eight'),\n(13548, 17467, 'seventeen thousand four hundred sixty-seven'),\n(13549, 7598, 'seven thousand five hundred ninety-eight'),\n(13550, 81921, 'eighty-one thousand nine hundred twenty-one'),\n(13551, 14983, 'fourteen thousand nine hundred eighty-three'),\n(13552, 54865, 'fifty-four thousand eight hundred sixty-five'),\n(13553, 42039, 'forty-two thousand thirty-nine'),\n(13554, 46505, 'forty-six thousand five hundred five'),\n(13555, 30935, 'thirty thousand nine hundred thirty-five'),\n(13556, 42183, 'forty-two thousand one hundred eighty-three'),\n(13557, 14094, 'fourteen thousand ninety-four'),\n(13558, 29876, 'twenty-nine thousand eight hundred seventy-six'),\n(13559, 57726, 'fifty-seven thousand seven hundred twenty-six'),\n(13560, 7731, 'seven thousand seven hundred thirty-one'),\n(13561, 30694, 'thirty thousand six hundred ninety-four'),\n(13562, 53227, 'fifty-three thousand two hundred twenty-seven'),\n(13563, 85669, 'eighty-five thousand six hundred sixty-nine'),\n(13564, 90753, 'ninety thousand seven hundred fifty-three'),\n(13565, 45573, 'forty-five thousand five hundred seventy-three'),\n(13566, 38817, 'thirty-eight thousand eight hundred seventeen'),\n(13567, 91332, 'ninety-one thousand three hundred thirty-two'),\n(13568, 76530, 'seventy-six thousand five hundred thirty'),\n(13569, 80829, 'eighty thousand eight hundred twenty-nine'),\n(13570, 47663, 'forty-seven thousand six hundred sixty-three'),\n(13571, 69575, 'sixty-nine thousand five hundred seventy-five'),\n(13572, 60932, 'sixty thousand nine hundred thirty-two'),\n(13573, 91394, 'ninety-one thousand three hundred ninety-four'),\n(13574, 9005, 'nine thousand five'),\n(13575, 61146, 'sixty-one thousand one hundred forty-six'),\n(13576, 66212, 'sixty-six thousand two hundred twelve'),\n(13577, 50640, 'fifty thousand six hundred forty'),\n(13578, 50146, 'fifty thousand one hundred forty-six'),\n(13579, 25970, 'twenty-five thousand nine hundred seventy'),\n(13580, 63852, 'sixty-three thousand eight hundred fifty-two'),\n(13581, 24647, 'twenty-four thousand six hundred forty-seven'),\n(13582, 15971, 'fifteen thousand nine hundred seventy-one'),\n(13583, 70457, 'seventy thousand four hundred fifty-seven'),\n(13584, 54764, 'fifty-four thousand seven hundred sixty-four'),\n(13585, 24990, 'twenty-four thousand nine hundred ninety'),\n(13586, 69399, 'sixty-nine thousand three hundred ninety-nine'),\n(13587, 90990, 'ninety thousand nine hundred ninety'),\n(13588, 67029, 'sixty-seven thousand twenty-nine'),\n(13589, 77976, 'seventy-seven thousand nine hundred seventy-six'),\n(13590, 91331, 'ninety-one thousand three hundred thirty-one'),\n(13591, 76717, 'seventy-six thousand seven hundred seventeen'),\n(13592, 51540, 'fifty-one thousand five hundred forty'),\n(13593, 8526, 'eight thousand five hundred twenty-six'),\n(13594, 41123, 'forty-one thousand one hundred twenty-three'),\n(13595, 94873, 'ninety-four thousand eight hundred seventy-three'),\n(13596, 24189, 'twenty-four thousand one hundred eighty-nine'),\n(13597, 48310, 'forty-eight thousand three hundred ten'),\n(13598, 13437, 'thirteen thousand four hundred thirty-seven'),\n(13599, 48614, 'forty-eight thousand six hundred fourteen'),\n(13600, 65706, 'sixty-five thousand seven hundred six'),\n(13601, 40556, 'forty thousand five hundred fifty-six'),\n(13602, 65902, 'sixty-five thousand nine hundred two'),\n(13603, 95212, 'ninety-five thousand two hundred twelve'),\n(13604, 475, 'four hundred seventy-five'),\n(13605, 63035, 'sixty-three thousand thirty-five'),\n(13606, 22866, 'twenty-two thousand eight hundred sixty-six'),\n(13607, 71775, 'seventy-one thousand seven hundred seventy-five'),\n(13608, 89843, 'eighty-nine thousand eight hundred forty-three'),\n(13609, 43237, 'forty-three thousand two hundred thirty-seven'),\n(13610, 8653, 'eight thousand six hundred fifty-three'),\n(13611, 79069, 'seventy-nine thousand sixty-nine'),\n(13612, 987, 'nine hundred eighty-seven'),\n(13613, 17396, 'seventeen thousand three hundred ninety-six'),\n(13614, 57167, 'fifty-seven thousand one hundred sixty-seven'),\n(13615, 13001, 'thirteen thousand one'),\n(13616, 25197, 'twenty-five thousand one hundred ninety-seven'),\n(13617, 76542, 'seventy-six thousand five hundred forty-two'),\n(13618, 66067, 'sixty-six thousand sixty-seven'),\n(13619, 68736, 'sixty-eight thousand seven hundred thirty-six'),\n(13620, 94207, 'ninety-four thousand two hundred seven'),\n(13621, 37605, 'thirty-seven thousand six hundred five'),\n(13622, 1482, 'one thousand four hundred eighty-two'),\n(13623, 90353, 'ninety thousand three hundred fifty-three'),\n(13624, 70863, 'seventy thousand eight hundred sixty-three'),\n(13625, 66587, 'sixty-six thousand five hundred eighty-seven'),\n(13626, 96557, 'ninety-six thousand five hundred fifty-seven'),\n(13627, 4233, 'four thousand two hundred thirty-three'),\n(13628, 50958, 'fifty thousand nine hundred fifty-eight'),\n(13629, 11156, 'eleven thousand one hundred fifty-six'),\n(13630, 84869, 'eighty-four thousand eight hundred sixty-nine'),\n(13631, 36240, 'thirty-six thousand two hundred forty'),\n(13632, 70414, 'seventy thousand four hundred fourteen'),\n(13633, 10625, 'ten thousand six hundred twenty-five'),\n(13634, 88677, 'eighty-eight thousand six hundred seventy-seven'),\n(13635, 51460, 'fifty-one thousand four hundred sixty'),\n(13636, 30192, 'thirty thousand one hundred ninety-two'),\n(13637, 45114, 'forty-five thousand one hundred fourteen'),\n(13638, 50980, 'fifty thousand nine hundred eighty'),\n(13639, 79041, 'seventy-nine thousand forty-one'),\n(13640, 13333, 'thirteen thousand three hundred thirty-three'),\n(13641, 8134, 'eight thousand one hundred thirty-four'),\n(13642, 71735, 'seventy-one thousand seven hundred thirty-five'),\n(13643, 52192, 'fifty-two thousand one hundred ninety-two'),\n(13644, 84157, 'eighty-four thousand one hundred fifty-seven'),\n(13645, 50936, 'fifty thousand nine hundred thirty-six'),\n(13646, 14307, 'fourteen thousand three hundred seven'),\n(13647, 25668, 'twenty-five thousand six hundred sixty-eight'),\n(13648, 44503, 'forty-four thousand five hundred three'),\n(13649, 20978, 'twenty thousand nine hundred seventy-eight'),\n(13650, 59805, 'fifty-nine thousand eight hundred five'),\n(13651, 53483, 'fifty-three thousand four hundred eighty-three'),\n(13652, 33857, 'thirty-three thousand eight hundred fifty-seven'),\n(13653, 95460, 'ninety-five thousand four hundred sixty'),\n(13654, 59699, 'fifty-nine thousand six hundred ninety-nine'),\n(13655, 23865, 'twenty-three thousand eight hundred sixty-five'),\n(13656, 86569, 'eighty-six thousand five hundred sixty-nine'),\n(13657, 40275, 'forty thousand two hundred seventy-five'),\n(13658, 22081, 'twenty-two thousand eighty-one'),\n(13659, 14997, 'fourteen thousand nine hundred ninety-seven'),\n(13660, 30873, 'thirty thousand eight hundred seventy-three'),\n(13661, 57839, 'fifty-seven thousand eight hundred thirty-nine'),\n(13662, 80026, 'eighty thousand twenty-six'),\n(13663, 66472, 'sixty-six thousand four hundred seventy-two'),\n(13664, 13000, 'thirteen thousand'),\n(13665, 40121, 'forty thousand one hundred twenty-one'),\n(13666, 15251, 'fifteen thousand two hundred fifty-one'),\n(13667, 30927, 'thirty thousand nine hundred twenty-seven'),\n(13668, 78140, 'seventy-eight thousand one hundred forty'),\n(13669, 84081, 'eighty-four thousand eighty-one'),\n(13670, 50335, 'fifty thousand three hundred thirty-five'),\n(13671, 92674, 'ninety-two thousand six hundred seventy-four'),\n(13672, 33679, 'thirty-three thousand six hundred seventy-nine'),\n(13673, 7606, 'seven thousand six hundred six'),\n(13674, 92005, 'ninety-two thousand five'),\n(13675, 5434, 'five thousand four hundred thirty-four'),\n(13676, 13517, 'thirteen thousand five hundred seventeen'),\n(13677, 12443, 'twelve thousand four hundred forty-three'),\n(13678, 46815, 'forty-six thousand eight hundred fifteen'),\n(13679, 7753, 'seven thousand seven hundred fifty-three'),\n(13680, 82427, 'eighty-two thousand four hundred twenty-seven'),\n(13681, 47973, 'forty-seven thousand nine hundred seventy-three'),\n(13682, 98467, 'ninety-eight thousand four hundred sixty-seven'),\n(13683, 60533, 'sixty thousand five hundred thirty-three'),\n(13684, 52394, 'fifty-two thousand three hundred ninety-four'),\n(13685, 71816, 'seventy-one thousand eight hundred sixteen'),\n(13686, 8326, 'eight thousand three hundred twenty-six'),\n(13687, 65632, 'sixty-five thousand six hundred thirty-two'),\n(13688, 59581, 'fifty-nine thousand five hundred eighty-one'),\n(13689, 91354, 'ninety-one thousand three hundred fifty-four'),\n(13690, 56213, 'fifty-six thousand two hundred thirteen'),\n(13691, 31000, 'thirty-one thousand'),\n(13692, 38897, 'thirty-eight thousand eight hundred ninety-seven'),\n(13693, 62487, 'sixty-two thousand four hundred eighty-seven'),\n(13694, 72147, 'seventy-two thousand one hundred forty-seven'),\n(13695, 14074, 'fourteen thousand seventy-four'),\n(13696, 40583, 'forty thousand five hundred eighty-three'),\n(13697, 72494, 'seventy-two thousand four hundred ninety-four'),\n(13698, 62041, 'sixty-two thousand forty-one'),\n(13699, 63286, 'sixty-three thousand two hundred eighty-six'),\n(13700, 34725, 'thirty-four thousand seven hundred twenty-five'),\n(13701, 77753, 'seventy-seven thousand seven hundred fifty-three'),\n(13702, 45506, 'forty-five thousand five hundred six'),\n(13703, 94021, 'ninety-four thousand twenty-one'),\n(13704, 52052, 'fifty-two thousand fifty-two'),\n(13705, 91936, 'ninety-one thousand nine hundred thirty-six'),\n(13706, 60384, 'sixty thousand three hundred eighty-four'),\n(13707, 9721, 'nine thousand seven hundred twenty-one'),\n(13708, 31031, 'thirty-one thousand thirty-one'),\n(13709, 74978, 'seventy-four thousand nine hundred seventy-eight'),\n(13710, 22814, 'twenty-two thousand eight hundred fourteen'),\n(13711, 67919, 'sixty-seven thousand nine hundred nineteen'),\n(13712, 37144, 'thirty-seven thousand one hundred forty-four'),\n(13713, 77122, 'seventy-seven thousand one hundred twenty-two'),\n(13714, 83969, 'eighty-three thousand nine hundred sixty-nine'),\n(13715, 67269, 'sixty-seven thousand two hundred sixty-nine'),\n(13716, 39758, 'thirty-nine thousand seven hundred fifty-eight'),\n(13717, 32750, 'thirty-two thousand seven hundred fifty'),\n(13718, 15333, 'fifteen thousand three hundred thirty-three'),\n(13719, 14699, 'fourteen thousand six hundred ninety-nine'),\n(13720, 28863, 'twenty-eight thousand eight hundred sixty-three'),\n(13721, 19065, 'nineteen thousand sixty-five'),\n(13722, 65366, 'sixty-five thousand three hundred sixty-six'),\n(13723, 31543, 'thirty-one thousand five hundred forty-three'),\n(13724, 66953, 'sixty-six thousand nine hundred fifty-three'),\n(13725, 31089, 'thirty-one thousand eighty-nine'),\n(13726, 92292, 'ninety-two thousand two hundred ninety-two'),\n(13727, 45605, 'forty-five thousand six hundred five'),\n(13728, 39718, 'thirty-nine thousand seven hundred eighteen'),\n(13729, 50362, 'fifty thousand three hundred sixty-two'),\n(13730, 71154, 'seventy-one thousand one hundred fifty-four'),\n(13731, 34712, 'thirty-four thousand seven hundred twelve'),\n(13732, 18775, 'eighteen thousand seven hundred seventy-five'),\n(13733, 67596, 'sixty-seven thousand five hundred ninety-six'),\n(13734, 44008, 'forty-four thousand eight'),\n(13735, 13487, 'thirteen thousand four hundred eighty-seven'),\n(13736, 81686, 'eighty-one thousand six hundred eighty-six'),\n(13737, 93496, 'ninety-three thousand four hundred ninety-six'),\n(13738, 68425, 'sixty-eight thousand four hundred twenty-five'),\n(13739, 19463, 'nineteen thousand four hundred sixty-three'),\n(13740, 25695, 'twenty-five thousand six hundred ninety-five'),\n(13741, 72636, 'seventy-two thousand six hundred thirty-six'),\n(13742, 56790, 'fifty-six thousand seven hundred ninety'),\n(13743, 81229, 'eighty-one thousand two hundred twenty-nine'),\n(13744, 85159, 'eighty-five thousand one hundred fifty-nine'),\n(13745, 49307, 'forty-nine thousand three hundred seven'),\n(13746, 2207, 'two thousand two hundred seven'),\n(13747, 72435, 'seventy-two thousand four hundred thirty-five'),\n(13748, 40335, 'forty thousand three hundred thirty-five'),\n(13749, 26055, 'twenty-six thousand fifty-five'),\n(13750, 1511, 'one thousand five hundred eleven'),\n(13751, 84572, 'eighty-four thousand five hundred seventy-two'),\n(13752, 61971, 'sixty-one thousand nine hundred seventy-one'),\n(13753, 70945, 'seventy thousand nine hundred forty-five'),\n(13754, 61648, 'sixty-one thousand six hundred forty-eight'),\n(13755, 938, 'nine hundred thirty-eight'),\n(13756, 43068, 'forty-three thousand sixty-eight'),\n(13757, 27896, 'twenty-seven thousand eight hundred ninety-six'),\n(13758, 52616, 'fifty-two thousand six hundred sixteen'),\n(13759, 48165, 'forty-eight thousand one hundred sixty-five'),\n(13760, 2164, 'two thousand one hundred sixty-four'),\n(13761, 23721, 'twenty-three thousand seven hundred twenty-one'),\n(13762, 52476, 'fifty-two thousand four hundred seventy-six'),\n(13763, 62231, 'sixty-two thousand two hundred thirty-one'),\n(13764, 33567, 'thirty-three thousand five hundred sixty-seven'),\n(13765, 57681, 'fifty-seven thousand six hundred eighty-one'),\n(13766, 88349, 'eighty-eight thousand three hundred forty-nine'),\n(13767, 19735, 'nineteen thousand seven hundred thirty-five'),\n(13768, 47280, 'forty-seven thousand two hundred eighty'),\n(13769, 83506, 'eighty-three thousand five hundred six'),\n(13770, 21295, 'twenty-one thousand two hundred ninety-five'),\n(13771, 26390, 'twenty-six thousand three hundred ninety'),\n(13772, 40762, 'forty thousand seven hundred sixty-two'),\n(13773, 62863, 'sixty-two thousand eight hundred sixty-three'),\n(13774, 28296, 'twenty-eight thousand two hundred ninety-six'),\n(13775, 38257, 'thirty-eight thousand two hundred fifty-seven'),\n(13776, 36423, 'thirty-six thousand four hundred twenty-three'),\n(13777, 31282, 'thirty-one thousand two hundred eighty-two'),\n(13778, 76158, 'seventy-six thousand one hundred fifty-eight'),\n(13779, 15672, 'fifteen thousand six hundred seventy-two'),\n(13780, 93834, 'ninety-three thousand eight hundred thirty-four'),\n(13781, 63963, 'sixty-three thousand nine hundred sixty-three'),\n(13782, 83022, 'eighty-three thousand twenty-two'),\n(13783, 72549, 'seventy-two thousand five hundred forty-nine'),\n(13784, 61398, 'sixty-one thousand three hundred ninety-eight'),\n(13785, 65676, 'sixty-five thousand six hundred seventy-six'),\n(13786, 51490, 'fifty-one thousand four hundred ninety'),\n(13787, 43370, 'forty-three thousand three hundred seventy'),\n(13788, 5813, 'five thousand eight hundred thirteen'),\n(13789, 75003, 'seventy-five thousand three'),\n(13790, 53449, 'fifty-three thousand four hundred forty-nine'),\n(13791, 77865, 'seventy-seven thousand eight hundred sixty-five'),\n(13792, 83687, 'eighty-three thousand six hundred eighty-seven'),\n(13793, 96305, 'ninety-six thousand three hundred five'),\n(13794, 49568, 'forty-nine thousand five hundred sixty-eight'),\n(13795, 15967, 'fifteen thousand nine hundred sixty-seven'),\n(13796, 89032, 'eighty-nine thousand thirty-two'),\n(13797, 20415, 'twenty thousand four hundred fifteen'),\n(13798, 80226, 'eighty thousand two hundred twenty-six'),\n(13799, 93558, 'ninety-three thousand five hundred fifty-eight'),\n(13800, 93706, 'ninety-three thousand seven hundred six'),\n(13801, 27507, 'twenty-seven thousand five hundred seven'),\n(13802, 88167, 'eighty-eight thousand one hundred sixty-seven'),\n(13803, 23815, 'twenty-three thousand eight hundred fifteen'),\n(13804, 9192, 'nine thousand one hundred ninety-two'),\n(13805, 95524, 'ninety-five thousand five hundred twenty-four'),\n(13806, 33704, 'thirty-three thousand seven hundred four'),\n(13807, 54328, 'fifty-four thousand three hundred twenty-eight'),\n(13808, 94822, 'ninety-four thousand eight hundred twenty-two'),\n(13809, 82078, 'eighty-two thousand seventy-eight'),\n(13810, 42892, 'forty-two thousand eight hundred ninety-two'),\n(13811, 9847, 'nine thousand eight hundred forty-seven'),\n(13812, 51487, 'fifty-one thousand four hundred eighty-seven'),\n(13813, 73613, 'seventy-three thousand six hundred thirteen'),\n(13814, 11225, 'eleven thousand two hundred twenty-five'),\n(13815, 21855, 'twenty-one thousand eight hundred fifty-five'),\n(13816, 56850, 'fifty-six thousand eight hundred fifty'),\n(13817, 98933, 'ninety-eight thousand nine hundred thirty-three'),\n(13818, 64832, 'sixty-four thousand eight hundred thirty-two'),\n(13819, 49910, 'forty-nine thousand nine hundred ten'),\n(13820, 40944, 'forty thousand nine hundred forty-four'),\n(13821, 91430, 'ninety-one thousand four hundred thirty'),\n(13822, 85725, 'eighty-five thousand seven hundred twenty-five'),\n(13823, 88200, 'eighty-eight thousand two hundred'),\n(13824, 85983, 'eighty-five thousand nine hundred eighty-three'),\n(13825, 2003, 'two thousand three'),\n(13826, 97278, 'ninety-seven thousand two hundred seventy-eight'),\n(13827, 64222, 'sixty-four thousand two hundred twenty-two'),\n(13828, 99213, 'ninety-nine thousand two hundred thirteen'),\n(13829, 11659, 'eleven thousand six hundred fifty-nine'),\n(13830, 50991, 'fifty thousand nine hundred ninety-one'),\n(13831, 29481, 'twenty-nine thousand four hundred eighty-one'),\n(13832, 54400, 'fifty-four thousand four hundred'),\n(13833, 40258, 'forty thousand two hundred fifty-eight'),\n(13834, 95042, 'ninety-five thousand forty-two'),\n(13835, 8704, 'eight thousand seven hundred four'),\n(13836, 42689, 'forty-two thousand six hundred eighty-nine'),\n(13837, 78620, 'seventy-eight thousand six hundred twenty'),\n(13838, 52949, 'fifty-two thousand nine hundred forty-nine'),\n(13839, 9565, 'nine thousand five hundred sixty-five'),\n(13840, 68254, 'sixty-eight thousand two hundred fifty-four'),\n(13841, 33211, 'thirty-three thousand two hundred eleven'),\n(13842, 80035, 'eighty thousand thirty-five'),\n(13843, 87332, 'eighty-seven thousand three hundred thirty-two'),\n(13844, 79933, 'seventy-nine thousand nine hundred thirty-three'),\n(13845, 52004, 'fifty-two thousand four'),\n(13846, 1440, 'one thousand four hundred forty'),\n(13847, 91185, 'ninety-one thousand one hundred eighty-five'),\n(13848, 9933, 'nine thousand nine hundred thirty-three'),\n(13849, 34667, 'thirty-four thousand six hundred sixty-seven'),\n(13850, 97866, 'ninety-seven thousand eight hundred sixty-six'),\n(13851, 82399, 'eighty-two thousand three hundred ninety-nine'),\n(13852, 41453, 'forty-one thousand four hundred fifty-three'),\n(13853, 88606, 'eighty-eight thousand six hundred six'),\n(13854, 98991, 'ninety-eight thousand nine hundred ninety-one'),\n(13855, 74902, 'seventy-four thousand nine hundred two'),\n(13856, 99281, 'ninety-nine thousand two hundred eighty-one'),\n(13857, 73926, 'seventy-three thousand nine hundred twenty-six'),\n(13858, 45190, 'forty-five thousand one hundred ninety'),\n(13859, 41484, 'forty-one thousand four hundred eighty-four'),\n(13860, 70994, 'seventy thousand nine hundred ninety-four'),\n(13861, 21271, 'twenty-one thousand two hundred seventy-one'),\n(13862, 51480, 'fifty-one thousand four hundred eighty'),\n(13863, 51347, 'fifty-one thousand three hundred forty-seven'),\n(13864, 61407, 'sixty-one thousand four hundred seven'),\n(13865, 36644, 'thirty-six thousand six hundred forty-four'),\n(13866, 24674, 'twenty-four thousand six hundred seventy-four'),\n(13867, 83153, 'eighty-three thousand one hundred fifty-three'),\n(13868, 46673, 'forty-six thousand six hundred seventy-three'),\n(13869, 37895, 'thirty-seven thousand eight hundred ninety-five'),\n(13870, 30440, 'thirty thousand four hundred forty'),\n(13871, 16861, 'sixteen thousand eight hundred sixty-one'),\n(13872, 78951, 'seventy-eight thousand nine hundred fifty-one'),\n(13873, 78606, 'seventy-eight thousand six hundred six'),\n(13874, 61033, 'sixty-one thousand thirty-three'),\n(13875, 30587, 'thirty thousand five hundred eighty-seven'),\n(13876, 88874, 'eighty-eight thousand eight hundred seventy-four'),\n(13877, 93154, 'ninety-three thousand one hundred fifty-four'),\n(13878, 34811, 'thirty-four thousand eight hundred eleven'),\n(13879, 2338, 'two thousand three hundred thirty-eight'),\n(13880, 43317, 'forty-three thousand three hundred seventeen'),\n(13881, 53449, 'fifty-three thousand four hundred forty-nine'),\n(13882, 78767, 'seventy-eight thousand seven hundred sixty-seven'),\n(13883, 34807, 'thirty-four thousand eight hundred seven'),\n(13884, 34968, 'thirty-four thousand nine hundred sixty-eight'),\n(13885, 68556, 'sixty-eight thousand five hundred fifty-six'),\n(13886, 6349, 'six thousand three hundred forty-nine'),\n(13887, 56051, 'fifty-six thousand fifty-one'),\n(13888, 73344, 'seventy-three thousand three hundred forty-four'),\n(13889, 40586, 'forty thousand five hundred eighty-six'),\n(13890, 19476, 'nineteen thousand four hundred seventy-six'),\n(13891, 38249, 'thirty-eight thousand two hundred forty-nine'),\n(13892, 97501, 'ninety-seven thousand five hundred one'),\n(13893, 63302, 'sixty-three thousand three hundred two'),\n(13894, 90758, 'ninety thousand seven hundred fifty-eight'),\n(13895, 72862, 'seventy-two thousand eight hundred sixty-two'),\n(13896, 58676, 'fifty-eight thousand six hundred seventy-six'),\n(13897, 36707, 'thirty-six thousand seven hundred seven'),\n(13898, 17956, 'seventeen thousand nine hundred fifty-six'),\n(13899, 72766, 'seventy-two thousand seven hundred sixty-six'),\n(13900, 89128, 'eighty-nine thousand one hundred twenty-eight'),\n(13901, 83385, 'eighty-three thousand three hundred eighty-five'),\n(13902, 25194, 'twenty-five thousand one hundred ninety-four'),\n(13903, 44013, 'forty-four thousand thirteen'),\n(13904, 89011, 'eighty-nine thousand eleven'),\n(13905, 51016, 'fifty-one thousand sixteen'),\n(13906, 35996, 'thirty-five thousand nine hundred ninety-six'),\n(13907, 27611, 'twenty-seven thousand six hundred eleven'),\n(13908, 57361, 'fifty-seven thousand three hundred sixty-one'),\n(13909, 86452, 'eighty-six thousand four hundred fifty-two'),\n(13910, 77518, 'seventy-seven thousand five hundred eighteen'),\n(13911, 80973, 'eighty thousand nine hundred seventy-three'),\n(13912, 61964, 'sixty-one thousand nine hundred sixty-four'),\n(13913, 3251, 'three thousand two hundred fifty-one'),\n(13914, 63106, 'sixty-three thousand one hundred six'),\n(13915, 53350, 'fifty-three thousand three hundred fifty'),\n(13916, 99154, 'ninety-nine thousand one hundred fifty-four'),\n(13917, 43555, 'forty-three thousand five hundred fifty-five'),\n(13918, 96295, 'ninety-six thousand two hundred ninety-five'),\n(13919, 86465, 'eighty-six thousand four hundred sixty-five'),\n(13920, 91632, 'ninety-one thousand six hundred thirty-two'),\n(13921, 91836, 'ninety-one thousand eight hundred thirty-six'),\n(13922, 71253, 'seventy-one thousand two hundred fifty-three'),\n(13923, 36697, 'thirty-six thousand six hundred ninety-seven'),\n(13924, 23856, 'twenty-three thousand eight hundred fifty-six'),\n(13925, 49197, 'forty-nine thousand one hundred ninety-seven'),\n(13926, 38104, 'thirty-eight thousand one hundred four'),\n(13927, 71804, 'seventy-one thousand eight hundred four'),\n(13928, 15065, 'fifteen thousand sixty-five'),\n(13929, 12796, 'twelve thousand seven hundred ninety-six'),\n(13930, 15274, 'fifteen thousand two hundred seventy-four'),\n(13931, 17301, 'seventeen thousand three hundred one'),\n(13932, 87202, 'eighty-seven thousand two hundred two'),\n(13933, 8047, 'eight thousand forty-seven'),\n(13934, 94508, 'ninety-four thousand five hundred eight'),\n(13935, 7695, 'seven thousand six hundred ninety-five'),\n(13936, 57747, 'fifty-seven thousand seven hundred forty-seven'),\n(13937, 76757, 'seventy-six thousand seven hundred fifty-seven'),\n(13938, 86236, 'eighty-six thousand two hundred thirty-six'),\n(13939, 83947, 'eighty-three thousand nine hundred forty-seven'),\n(13940, 97702, 'ninety-seven thousand seven hundred two'),\n(13941, 3238, 'three thousand two hundred thirty-eight'),\n(13942, 27691, 'twenty-seven thousand six hundred ninety-one'),\n(13943, 34740, 'thirty-four thousand seven hundred forty'),\n(13944, 2386, 'two thousand three hundred eighty-six'),\n(13945, 90130, 'ninety thousand one hundred thirty'),\n(13946, 48987, 'forty-eight thousand nine hundred eighty-seven'),\n(13947, 98125, 'ninety-eight thousand one hundred twenty-five'),\n(13948, 78467, 'seventy-eight thousand four hundred sixty-seven'),\n(13949, 70854, 'seventy thousand eight hundred fifty-four'),\n(13950, 48218, 'forty-eight thousand two hundred eighteen'),\n(13951, 5946, 'five thousand nine hundred forty-six'),\n(13952, 11519, 'eleven thousand five hundred nineteen'),\n(13953, 60573, 'sixty thousand five hundred seventy-three'),\n(13954, 35881, 'thirty-five thousand eight hundred eighty-one'),\n(13955, 47791, 'forty-seven thousand seven hundred ninety-one'),\n(13956, 99904, 'ninety-nine thousand nine hundred four'),\n(13957, 36866, 'thirty-six thousand eight hundred sixty-six'),\n(13958, 89614, 'eighty-nine thousand six hundred fourteen'),\n(13959, 859, 'eight hundred fifty-nine'),\n(13960, 62675, 'sixty-two thousand six hundred seventy-five'),\n(13961, 37473, 'thirty-seven thousand four hundred seventy-three'),\n(13962, 76363, 'seventy-six thousand three hundred sixty-three'),\n(13963, 46688, 'forty-six thousand six hundred eighty-eight'),\n(13964, 30725, 'thirty thousand seven hundred twenty-five'),\n(13965, 23868, 'twenty-three thousand eight hundred sixty-eight'),\n(13966, 24462, 'twenty-four thousand four hundred sixty-two'),\n(13967, 76391, 'seventy-six thousand three hundred ninety-one'),\n(13968, 8677, 'eight thousand six hundred seventy-seven'),\n(13969, 57181, 'fifty-seven thousand one hundred eighty-one'),\n(13970, 34929, 'thirty-four thousand nine hundred twenty-nine'),\n(13971, 31327, 'thirty-one thousand three hundred twenty-seven'),\n(13972, 87922, 'eighty-seven thousand nine hundred twenty-two'),\n(13973, 52613, 'fifty-two thousand six hundred thirteen'),\n(13974, 74791, 'seventy-four thousand seven hundred ninety-one'),\n(13975, 15088, 'fifteen thousand eighty-eight'),\n(13976, 50704, 'fifty thousand seven hundred four'),\n(13977, 36698, 'thirty-six thousand six hundred ninety-eight'),\n(13978, 79795, 'seventy-nine thousand seven hundred ninety-five'),\n(13979, 39883, 'thirty-nine thousand eight hundred eighty-three'),\n(13980, 45815, 'forty-five thousand eight hundred fifteen'),\n(13981, 96733, 'ninety-six thousand seven hundred thirty-three'),\n(13982, 77956, 'seventy-seven thousand nine hundred fifty-six'),\n(13983, 46657, 'forty-six thousand six hundred fifty-seven'),\n(13984, 96364, 'ninety-six thousand three hundred sixty-four'),\n(13985, 97613, 'ninety-seven thousand six hundred thirteen'),\n(13986, 57521, 'fifty-seven thousand five hundred twenty-one'),\n(13987, 73702, 'seventy-three thousand seven hundred two'),\n(13988, 21268, 'twenty-one thousand two hundred sixty-eight'),\n(13989, 91936, 'ninety-one thousand nine hundred thirty-six'),\n(13990, 35456, 'thirty-five thousand four hundred fifty-six'),\n(13991, 30104, 'thirty thousand one hundred four'),\n(13992, 57361, 'fifty-seven thousand three hundred sixty-one'),\n(13993, 25314, 'twenty-five thousand three hundred fourteen'),\n(13994, 10812, 'ten thousand eight hundred twelve'),\n(13995, 78032, 'seventy-eight thousand thirty-two'),\n(13996, 11893, 'eleven thousand eight hundred ninety-three'),\n(13997, 94525, 'ninety-four thousand five hundred twenty-five'),\n(13998, 764, 'seven hundred sixty-four'),\n(13999, 26473, 'twenty-six thousand four hundred seventy-three'),\n(14000, 93524, 'ninety-three thousand five hundred twenty-four'),\n(14001, 48089, 'forty-eight thousand eighty-nine'),\n(14002, 33084, 'thirty-three thousand eighty-four'),\n(14003, 70651, 'seventy thousand six hundred fifty-one'),\n(14004, 44699, 'forty-four thousand six hundred ninety-nine'),\n(14005, 88393, 'eighty-eight thousand three hundred ninety-three'),\n(14006, 26194, 'twenty-six thousand one hundred ninety-four'),\n(14007, 27517, 'twenty-seven thousand five hundred seventeen'),\n(14008, 22053, 'twenty-two thousand fifty-three'),\n(14009, 67449, 'sixty-seven thousand four hundred forty-nine'),\n(14010, 43377, 'forty-three thousand three hundred seventy-seven'),\n(14011, 30918, 'thirty thousand nine hundred eighteen'),\n(14012, 81078, 'eighty-one thousand seventy-eight'),\n(14013, 81845, 'eighty-one thousand eight hundred forty-five'),\n(14014, 86146, 'eighty-six thousand one hundred forty-six'),\n(14015, 24503, 'twenty-four thousand five hundred three'),\n(14016, 85140, 'eighty-five thousand one hundred forty'),\n(14017, 24264, 'twenty-four thousand two hundred sixty-four'),\n(14018, 71489, 'seventy-one thousand four hundred eighty-nine'),\n(14019, 89328, 'eighty-nine thousand three hundred twenty-eight'),\n(14020, 43416, 'forty-three thousand four hundred sixteen'),\n(14021, 19290, 'nineteen thousand two hundred ninety'),\n(14022, 51317, 'fifty-one thousand three hundred seventeen'),\n(14023, 30745, 'thirty thousand seven hundred forty-five'),\n(14024, 6893, 'six thousand eight hundred ninety-three'),\n(14025, 7728, 'seven thousand seven hundred twenty-eight'),\n(14026, 30853, 'thirty thousand eight hundred fifty-three'),\n(14027, 56696, 'fifty-six thousand six hundred ninety-six'),\n(14028, 30697, 'thirty thousand six hundred ninety-seven'),\n(14029, 85100, 'eighty-five thousand one hundred'),\n(14030, 81131, 'eighty-one thousand one hundred thirty-one'),\n(14031, 70351, 'seventy thousand three hundred fifty-one'),\n(14032, 75388, 'seventy-five thousand three hundred eighty-eight'),\n(14033, 78371, 'seventy-eight thousand three hundred seventy-one'),\n(14034, 97449, 'ninety-seven thousand four hundred forty-nine'),\n(14035, 49630, 'forty-nine thousand six hundred thirty'),\n(14036, 8596, 'eight thousand five hundred ninety-six'),\n(14037, 20871, 'twenty thousand eight hundred seventy-one'),\n(14038, 31609, 'thirty-one thousand six hundred nine'),\n(14039, 6120, 'six thousand one hundred twenty'),\n(14040, 67128, 'sixty-seven thousand one hundred twenty-eight'),\n(14041, 59450, 'fifty-nine thousand four hundred fifty'),\n(14042, 77594, 'seventy-seven thousand five hundred ninety-four'),\n(14043, 51131, 'fifty-one thousand one hundred thirty-one'),\n(14044, 25044, 'twenty-five thousand forty-four'),\n(14045, 60734, 'sixty thousand seven hundred thirty-four'),\n(14046, 20548, 'twenty thousand five hundred forty-eight'),\n(14047, 95306, 'ninety-five thousand three hundred six'),\n(14048, 1528, 'one thousand five hundred twenty-eight'),\n(14049, 3190, 'three thousand one hundred ninety'),\n(14050, 94084, 'ninety-four thousand eighty-four'),\n(14051, 77125, 'seventy-seven thousand one hundred twenty-five'),\n(14052, 74287, 'seventy-four thousand two hundred eighty-seven'),\n(14053, 17486, 'seventeen thousand four hundred eighty-six'),\n(14054, 7105, 'seven thousand one hundred five'),\n(14055, 8205, 'eight thousand two hundred five'),\n(14056, 61936, 'sixty-one thousand nine hundred thirty-six'),\n(14057, 8605, 'eight thousand six hundred five'),\n(14058, 38360, 'thirty-eight thousand three hundred sixty'),\n(14059, 41533, 'forty-one thousand five hundred thirty-three'),\n(14060, 41766, 'forty-one thousand seven hundred sixty-six'),\n(14061, 19976, 'nineteen thousand nine hundred seventy-six'),\n(14062, 42147, 'forty-two thousand one hundred forty-seven'),\n(14063, 34098, 'thirty-four thousand ninety-eight'),\n(14064, 9611, 'nine thousand six hundred eleven'),\n(14065, 6548, 'six thousand five hundred forty-eight'),\n(14066, 30058, 'thirty thousand fifty-eight'),\n(14067, 60331, 'sixty thousand three hundred thirty-one'),\n(14068, 74256, 'seventy-four thousand two hundred fifty-six'),\n(14069, 19062, 'nineteen thousand sixty-two'),\n(14070, 1283, 'one thousand two hundred eighty-three'),\n(14071, 89259, 'eighty-nine thousand two hundred fifty-nine'),\n(14072, 13353, 'thirteen thousand three hundred fifty-three'),\n(14073, 32996, 'thirty-two thousand nine hundred ninety-six'),\n(14074, 89448, 'eighty-nine thousand four hundred forty-eight'),\n(14075, 28879, 'twenty-eight thousand eight hundred seventy-nine'),\n(14076, 90619, 'ninety thousand six hundred nineteen'),\n(14077, 24506, 'twenty-four thousand five hundred six'),\n(14078, 61589, 'sixty-one thousand five hundred eighty-nine'),\n(14079, 99359, 'ninety-nine thousand three hundred fifty-nine'),\n(14080, 93608, 'ninety-three thousand six hundred eight'),\n(14081, 87138, 'eighty-seven thousand one hundred thirty-eight'),\n(14082, 46461, 'forty-six thousand four hundred sixty-one'),\n(14083, 83799, 'eighty-three thousand seven hundred ninety-nine'),\n(14084, 35463, 'thirty-five thousand four hundred sixty-three'),\n(14085, 79998, 'seventy-nine thousand nine hundred ninety-eight'),\n(14086, 22968, 'twenty-two thousand nine hundred sixty-eight'),\n(14087, 37241, 'thirty-seven thousand two hundred forty-one'),\n(14088, 28563, 'twenty-eight thousand five hundred sixty-three'),\n(14089, 39317, 'thirty-nine thousand three hundred seventeen'),\n(14090, 5442, 'five thousand four hundred forty-two'),\n(14091, 11532, 'eleven thousand five hundred thirty-two'),\n(14092, 87055, 'eighty-seven thousand fifty-five'),\n(14093, 50842, 'fifty thousand eight hundred forty-two'),\n(14094, 6020, 'six thousand twenty'),\n(14095, 8566, 'eight thousand five hundred sixty-six'),\n(14096, 22534, 'twenty-two thousand five hundred thirty-four'),\n(14097, 61450, 'sixty-one thousand four hundred fifty'),\n(14098, 11539, 'eleven thousand five hundred thirty-nine'),\n(14099, 80554, 'eighty thousand five hundred fifty-four'),\n(14100, 95489, 'ninety-five thousand four hundred eighty-nine'),\n(14101, 15518, 'fifteen thousand five hundred eighteen'),\n(14102, 45826, 'forty-five thousand eight hundred twenty-six'),\n(14103, 22357, 'twenty-two thousand three hundred fifty-seven'),\n(14104, 37115, 'thirty-seven thousand one hundred fifteen'),\n(14105, 23129, 'twenty-three thousand one hundred twenty-nine'),\n(14106, 91289, 'ninety-one thousand two hundred eighty-nine'),\n(14107, 41531, 'forty-one thousand five hundred thirty-one'),\n(14108, 32849, 'thirty-two thousand eight hundred forty-nine'),\n(14109, 57653, 'fifty-seven thousand six hundred fifty-three'),\n(14110, 512, 'five hundred twelve'),\n(14111, 91709, 'ninety-one thousand seven hundred nine'),\n(14112, 56868, 'fifty-six thousand eight hundred sixty-eight'),\n(14113, 74964, 'seventy-four thousand nine hundred sixty-four'),\n(14114, 11532, 'eleven thousand five hundred thirty-two'),\n(14115, 11820, 'eleven thousand eight hundred twenty'),\n(14116, 7363, 'seven thousand three hundred sixty-three'),\n(14117, 9014, 'nine thousand fourteen'),\n(14118, 61128, 'sixty-one thousand one hundred twenty-eight'),\n(14119, 25673, 'twenty-five thousand six hundred seventy-three'),\n(14120, 95259, 'ninety-five thousand two hundred fifty-nine'),\n(14121, 7436, 'seven thousand four hundred thirty-six'),\n(14122, 76903, 'seventy-six thousand nine hundred three'),\n(14123, 24080, 'twenty-four thousand eighty'),\n(14124, 99231, 'ninety-nine thousand two hundred thirty-one'),\n(14125, 42743, 'forty-two thousand seven hundred forty-three'),\n(14126, 24811, 'twenty-four thousand eight hundred eleven'),\n(14127, 76524, 'seventy-six thousand five hundred twenty-four'),\n(14128, 1170, 'one thousand one hundred seventy'),\n(14129, 84350, 'eighty-four thousand three hundred fifty'),\n(14130, 91746, 'ninety-one thousand seven hundred forty-six'),\n(14131, 61122, 'sixty-one thousand one hundred twenty-two'),\n(14132, 70522, 'seventy thousand five hundred twenty-two'),\n(14133, 82880, 'eighty-two thousand eight hundred eighty'),\n(14134, 27328, 'twenty-seven thousand three hundred twenty-eight'),\n(14135, 12200, 'twelve thousand two hundred'),\n(14136, 38289, 'thirty-eight thousand two hundred eighty-nine'),\n(14137, 98483, 'ninety-eight thousand four hundred eighty-three'),\n(14138, 968, 'nine hundred sixty-eight'),\n(14139, 57611, 'fifty-seven thousand six hundred eleven'),\n(14140, 27068, 'twenty-seven thousand sixty-eight'),\n(14141, 43525, 'forty-three thousand five hundred twenty-five'),\n(14142, 56185, 'fifty-six thousand one hundred eighty-five'),\n(14143, 73749, 'seventy-three thousand seven hundred forty-nine'),\n(14144, 83889, 'eighty-three thousand eight hundred eighty-nine'),\n(14145, 4452, 'four thousand four hundred fifty-two'),\n(14146, 34514, 'thirty-four thousand five hundred fourteen'),\n(14147, 60337, 'sixty thousand three hundred thirty-seven'),\n(14148, 20242, 'twenty thousand two hundred forty-two'),\n(14149, 16080, 'sixteen thousand eighty'),\n(14150, 93294, 'ninety-three thousand two hundred ninety-four'),\n(14151, 68110, 'sixty-eight thousand one hundred ten'),\n(14152, 11205, 'eleven thousand two hundred five'),\n(14153, 19978, 'nineteen thousand nine hundred seventy-eight'),\n(14154, 96160, 'ninety-six thousand one hundred sixty'),\n(14155, 20747, 'twenty thousand seven hundred forty-seven'),\n(14156, 1801, 'one thousand eight hundred one'),\n(14157, 87128, 'eighty-seven thousand one hundred twenty-eight'),\n(14158, 70350, 'seventy thousand three hundred fifty'),\n(14159, 22719, 'twenty-two thousand seven hundred nineteen'),\n(14160, 29784, 'twenty-nine thousand seven hundred eighty-four'),\n(14161, 26890, 'twenty-six thousand eight hundred ninety'),\n(14162, 43136, 'forty-three thousand one hundred thirty-six'),\n(14163, 70386, 'seventy thousand three hundred eighty-six'),\n(14164, 67975, 'sixty-seven thousand nine hundred seventy-five'),\n(14165, 67604, 'sixty-seven thousand six hundred four'),\n(14166, 77550, 'seventy-seven thousand five hundred fifty'),\n(14167, 57899, 'fifty-seven thousand eight hundred ninety-nine'),\n(14168, 17634, 'seventeen thousand six hundred thirty-four'),\n(14169, 18196, 'eighteen thousand one hundred ninety-six'),\n(14170, 81286, 'eighty-one thousand two hundred eighty-six'),\n(14171, 6009, 'six thousand nine'),\n(14172, 23234, 'twenty-three thousand two hundred thirty-four'),\n(14173, 48608, 'forty-eight thousand six hundred eight'),\n(14174, 36683, 'thirty-six thousand six hundred eighty-three'),\n(14175, 23910, 'twenty-three thousand nine hundred ten'),\n(14176, 64193, 'sixty-four thousand one hundred ninety-three'),\n(14177, 91715, 'ninety-one thousand seven hundred fifteen'),\n(14178, 11693, 'eleven thousand six hundred ninety-three'),\n(14179, 93013, 'ninety-three thousand thirteen'),\n(14180, 35463, 'thirty-five thousand four hundred sixty-three'),\n(14181, 64911, 'sixty-four thousand nine hundred eleven'),\n(14182, 55910, 'fifty-five thousand nine hundred ten'),\n(14183, 40828, 'forty thousand eight hundred twenty-eight'),\n(14184, 81764, 'eighty-one thousand seven hundred sixty-four'),\n(14185, 3213, 'three thousand two hundred thirteen'),\n(14186, 68229, 'sixty-eight thousand two hundred twenty-nine'),\n(14187, 16544, 'sixteen thousand five hundred forty-four'),\n(14188, 71522, 'seventy-one thousand five hundred twenty-two'),\n(14189, 84980, 'eighty-four thousand nine hundred eighty'),\n(14190, 77805, 'seventy-seven thousand eight hundred five'),\n(14191, 14741, 'fourteen thousand seven hundred forty-one'),\n(14192, 10054, 'ten thousand fifty-four'),\n(14193, 33356, 'thirty-three thousand three hundred fifty-six'),\n(14194, 65755, 'sixty-five thousand seven hundred fifty-five'),\n(14195, 34429, 'thirty-four thousand four hundred twenty-nine'),\n(14196, 30076, 'thirty thousand seventy-six'),\n(14197, 19415, 'nineteen thousand four hundred fifteen'),\n(14198, 22449, 'twenty-two thousand four hundred forty-nine'),\n(14199, 77488, 'seventy-seven thousand four hundred eighty-eight'),\n(14200, 40212, 'forty thousand two hundred twelve'),\n(14201, 24713, 'twenty-four thousand seven hundred thirteen'),\n(14202, 92904, 'ninety-two thousand nine hundred four'),\n(14203, 56418, 'fifty-six thousand four hundred eighteen'),\n(14204, 90773, 'ninety thousand seven hundred seventy-three'),\n(14205, 56940, 'fifty-six thousand nine hundred forty'),\n(14206, 760, 'seven hundred sixty'),\n(14207, 83622, 'eighty-three thousand six hundred twenty-two'),\n(14208, 51504, 'fifty-one thousand five hundred four'),\n(14209, 91729, 'ninety-one thousand seven hundred twenty-nine'),\n(14210, 5714, 'five thousand seven hundred fourteen'),\n(14211, 49926, 'forty-nine thousand nine hundred twenty-six'),\n(14212, 91641, 'ninety-one thousand six hundred forty-one'),\n(14213, 84900, 'eighty-four thousand nine hundred'),\n(14214, 14352, 'fourteen thousand three hundred fifty-two'),\n(14215, 3609, 'three thousand six hundred nine'),\n(14216, 84750, 'eighty-four thousand seven hundred fifty'),\n(14217, 48185, 'forty-eight thousand one hundred eighty-five'),\n(14218, 6764, 'six thousand seven hundred sixty-four'),\n(14219, 75816, 'seventy-five thousand eight hundred sixteen'),\n(14220, 62682, 'sixty-two thousand six hundred eighty-two'),\n(14221, 80745, 'eighty thousand seven hundred forty-five'),\n(14222, 7627, 'seven thousand six hundred twenty-seven'),\n(14223, 60213, 'sixty thousand two hundred thirteen'),\n(14224, 30625, 'thirty thousand six hundred twenty-five'),\n(14225, 59323, 'fifty-nine thousand three hundred twenty-three'),\n(14226, 58273, 'fifty-eight thousand two hundred seventy-three'),\n(14227, 44194, 'forty-four thousand one hundred ninety-four'),\n(14228, 27674, 'twenty-seven thousand six hundred seventy-four'),\n(14229, 80797, 'eighty thousand seven hundred ninety-seven'),\n(14230, 16078, 'sixteen thousand seventy-eight'),\n(14231, 96698, 'ninety-six thousand six hundred ninety-eight'),\n(14232, 62663, 'sixty-two thousand six hundred sixty-three'),\n(14233, 87183, 'eighty-seven thousand one hundred eighty-three'),\n(14234, 77227, 'seventy-seven thousand two hundred twenty-seven'),\n(14235, 2866, 'two thousand eight hundred sixty-six'),\n(14236, 44393, 'forty-four thousand three hundred ninety-three'),\n(14237, 82492, 'eighty-two thousand four hundred ninety-two'),\n(14238, 48620, 'forty-eight thousand six hundred twenty'),\n(14239, 6027, 'six thousand twenty-seven'),\n(14240, 72042, 'seventy-two thousand forty-two'),\n(14241, 56110, 'fifty-six thousand one hundred ten'),\n(14242, 54009, 'fifty-four thousand nine'),\n(14243, 72301, 'seventy-two thousand three hundred one'),\n(14244, 87768, 'eighty-seven thousand seven hundred sixty-eight'),\n(14245, 45056, 'forty-five thousand fifty-six'),\n(14246, 24933, 'twenty-four thousand nine hundred thirty-three'),\n(14247, 980, 'nine hundred eighty'),\n(14248, 83370, 'eighty-three thousand three hundred seventy'),\n(14249, 1898, 'one thousand eight hundred ninety-eight'),\n(14250, 66101, 'sixty-six thousand one hundred one'),\n(14251, 9898, 'nine thousand eight hundred ninety-eight'),\n(14252, 47523, 'forty-seven thousand five hundred twenty-three'),\n(14253, 4472, 'four thousand four hundred seventy-two'),\n(14254, 64133, 'sixty-four thousand one hundred thirty-three'),\n(14255, 69064, 'sixty-nine thousand sixty-four'),\n(14256, 35841, 'thirty-five thousand eight hundred forty-one'),\n(14257, 16050, 'sixteen thousand fifty'),\n(14258, 76394, 'seventy-six thousand three hundred ninety-four'),\n(14259, 207, 'two hundred seven'),\n(14260, 74962, 'seventy-four thousand nine hundred sixty-two'),\n(14261, 38036, 'thirty-eight thousand thirty-six'),\n(14262, 33511, 'thirty-three thousand five hundred eleven'),\n(14263, 53831, 'fifty-three thousand eight hundred thirty-one'),\n(14264, 56955, 'fifty-six thousand nine hundred fifty-five'),\n(14265, 71888, 'seventy-one thousand eight hundred eighty-eight'),\n(14266, 65549, 'sixty-five thousand five hundred forty-nine'),\n(14267, 47599, 'forty-seven thousand five hundred ninety-nine'),\n(14268, 44616, 'forty-four thousand six hundred sixteen'),\n(14269, 91995, 'ninety-one thousand nine hundred ninety-five'),\n(14270, 50058, 'fifty thousand fifty-eight'),\n(14271, 58460, 'fifty-eight thousand four hundred sixty'),\n(14272, 25941, 'twenty-five thousand nine hundred forty-one'),\n(14273, 36118, 'thirty-six thousand one hundred eighteen'),\n(14274, 34262, 'thirty-four thousand two hundred sixty-two'),\n(14275, 79120, 'seventy-nine thousand one hundred twenty'),\n(14276, 82177, 'eighty-two thousand one hundred seventy-seven'),\n(14277, 23589, 'twenty-three thousand five hundred eighty-nine'),\n(14278, 38250, 'thirty-eight thousand two hundred fifty'),\n(14279, 46963, 'forty-six thousand nine hundred sixty-three'),\n(14280, 846, 'eight hundred forty-six'),\n(14281, 3120, 'three thousand one hundred twenty'),\n(14282, 69995, 'sixty-nine thousand nine hundred ninety-five'),\n(14283, 40276, 'forty thousand two hundred seventy-six'),\n(14284, 9565, 'nine thousand five hundred sixty-five'),\n(14285, 65011, 'sixty-five thousand eleven'),\n(14286, 1580, 'one thousand five hundred eighty'),\n(14287, 747, 'seven hundred forty-seven'),\n(14288, 28151, 'twenty-eight thousand one hundred fifty-one'),\n(14289, 27755, 'twenty-seven thousand seven hundred fifty-five'),\n(14290, 78382, 'seventy-eight thousand three hundred eighty-two'),\n(14291, 59977, 'fifty-nine thousand nine hundred seventy-seven'),\n(14292, 74822, 'seventy-four thousand eight hundred twenty-two'),\n(14293, 57591, 'fifty-seven thousand five hundred ninety-one'),\n(14294, 56999, 'fifty-six thousand nine hundred ninety-nine'),\n(14295, 65638, 'sixty-five thousand six hundred thirty-eight'),\n(14296, 96840, 'ninety-six thousand eight hundred forty'),\n(14297, 33353, 'thirty-three thousand three hundred fifty-three'),\n(14298, 96614, 'ninety-six thousand six hundred fourteen'),\n(14299, 62892, 'sixty-two thousand eight hundred ninety-two'),\n(14300, 67802, 'sixty-seven thousand eight hundred two'),\n(14301, 46035, 'forty-six thousand thirty-five'),\n(14302, 43939, 'forty-three thousand nine hundred thirty-nine'),\n(14303, 25508, 'twenty-five thousand five hundred eight'),\n(14304, 97792, 'ninety-seven thousand seven hundred ninety-two'),\n(14305, 43848, 'forty-three thousand eight hundred forty-eight'),\n(14306, 56644, 'fifty-six thousand six hundred forty-four'),\n(14307, 28126, 'twenty-eight thousand one hundred twenty-six'),\n(14308, 99115, 'ninety-nine thousand one hundred fifteen'),\n(14309, 42923, 'forty-two thousand nine hundred twenty-three'),\n(14310, 18702, 'eighteen thousand seven hundred two'),\n(14311, 67108, 'sixty-seven thousand one hundred eight'),\n(14312, 50270, 'fifty thousand two hundred seventy'),\n(14313, 47478, 'forty-seven thousand four hundred seventy-eight'),\n(14314, 74111, 'seventy-four thousand one hundred eleven'),\n(14315, 68941, 'sixty-eight thousand nine hundred forty-one'),\n(14316, 16402, 'sixteen thousand four hundred two'),\n(14317, 46934, 'forty-six thousand nine hundred thirty-four'),\n(14318, 83113, 'eighty-three thousand one hundred thirteen'),\n(14319, 74555, 'seventy-four thousand five hundred fifty-five'),\n(14320, 30249, 'thirty thousand two hundred forty-nine'),\n(14321, 6033, 'six thousand thirty-three'),\n(14322, 10896, 'ten thousand eight hundred ninety-six'),\n(14323, 44308, 'forty-four thousand three hundred eight'),\n(14324, 44712, 'forty-four thousand seven hundred twelve'),\n(14325, 60887, 'sixty thousand eight hundred eighty-seven'),\n(14326, 90686, 'ninety thousand six hundred eighty-six'),\n(14327, 86099, 'eighty-six thousand ninety-nine'),\n(14328, 16600, 'sixteen thousand six hundred'),\n(14329, 79994, 'seventy-nine thousand nine hundred ninety-four'),\n(14330, 6058, 'six thousand fifty-eight'),\n(14331, 55816, 'fifty-five thousand eight hundred sixteen'),\n(14332, 28277, 'twenty-eight thousand two hundred seventy-seven'),\n(14333, 93195, 'ninety-three thousand one hundred ninety-five'),\n(14334, 41347, 'forty-one thousand three hundred forty-seven'),\n(14335, 73114, 'seventy-three thousand one hundred fourteen'),\n(14336, 73852, 'seventy-three thousand eight hundred fifty-two'),\n(14337, 14877, 'fourteen thousand eight hundred seventy-seven'),\n(14338, 94235, 'ninety-four thousand two hundred thirty-five'),\n(14339, 63341, 'sixty-three thousand three hundred forty-one'),\n(14340, 47527, 'forty-seven thousand five hundred twenty-seven'),\n(14341, 53322, 'fifty-three thousand three hundred twenty-two'),\n(14342, 31321, 'thirty-one thousand three hundred twenty-one'),\n(14343, 76309, 'seventy-six thousand three hundred nine'),\n(14344, 30000, 'thirty thousand'),\n(14345, 30073, 'thirty thousand seventy-three'),\n(14346, 64561, 'sixty-four thousand five hundred sixty-one'),\n(14347, 12210, 'twelve thousand two hundred ten'),\n(14348, 16779, 'sixteen thousand seven hundred seventy-nine'),\n(14349, 60070, 'sixty thousand seventy'),\n(14350, 74369, 'seventy-four thousand three hundred sixty-nine'),\n(14351, 18823, 'eighteen thousand eight hundred twenty-three'),\n(14352, 21267, 'twenty-one thousand two hundred sixty-seven'),\n(14353, 20966, 'twenty thousand nine hundred sixty-six'),\n(14354, 68562, 'sixty-eight thousand five hundred sixty-two'),\n(14355, 1375, 'one thousand three hundred seventy-five'),\n(14356, 10454, 'ten thousand four hundred fifty-four'),\n(14357, 65954, 'sixty-five thousand nine hundred fifty-four'),\n(14358, 55940, 'fifty-five thousand nine hundred forty'),\n(14359, 77322, 'seventy-seven thousand three hundred twenty-two'),\n(14360, 86742, 'eighty-six thousand seven hundred forty-two'),\n(14361, 70675, 'seventy thousand six hundred seventy-five'),\n(14362, 92018, 'ninety-two thousand eighteen'),\n(14363, 86063, 'eighty-six thousand sixty-three'),\n(14364, 97294, 'ninety-seven thousand two hundred ninety-four'),\n(14365, 23091, 'twenty-three thousand ninety-one'),\n(14366, 44814, 'forty-four thousand eight hundred fourteen'),\n(14367, 93664, 'ninety-three thousand six hundred sixty-four'),\n(14368, 77366, 'seventy-seven thousand three hundred sixty-six'),\n(14369, 4818, 'four thousand eight hundred eighteen'),\n(14370, 29353, 'twenty-nine thousand three hundred fifty-three'),\n(14371, 6908, 'six thousand nine hundred eight'),\n(14372, 23857, 'twenty-three thousand eight hundred fifty-seven'),\n(14373, 73945, 'seventy-three thousand nine hundred forty-five'),\n(14374, 95923, 'ninety-five thousand nine hundred twenty-three'),\n(14375, 88534, 'eighty-eight thousand five hundred thirty-four'),\n(14376, 1044, 'one thousand forty-four'),\n(14377, 33068, 'thirty-three thousand sixty-eight'),\n(14378, 96724, 'ninety-six thousand seven hundred twenty-four'),\n(14379, 21204, 'twenty-one thousand two hundred four'),\n(14380, 8359, 'eight thousand three hundred fifty-nine'),\n(14381, 29818, 'twenty-nine thousand eight hundred eighteen'),\n(14382, 81248, 'eighty-one thousand two hundred forty-eight'),\n(14383, 79900, 'seventy-nine thousand nine hundred'),\n(14384, 21224, 'twenty-one thousand two hundred twenty-four'),\n(14385, 29076, 'twenty-nine thousand seventy-six'),\n(14386, 37818, 'thirty-seven thousand eight hundred eighteen'),\n(14387, 41380, 'forty-one thousand three hundred eighty'),\n(14388, 6662, 'six thousand six hundred sixty-two'),\n(14389, 85533, 'eighty-five thousand five hundred thirty-three'),\n(14390, 52747, 'fifty-two thousand seven hundred forty-seven'),\n(14391, 99424, 'ninety-nine thousand four hundred twenty-four'),\n(14392, 99569, 'ninety-nine thousand five hundred sixty-nine'),\n(14393, 76915, 'seventy-six thousand nine hundred fifteen'),\n(14394, 98238, 'ninety-eight thousand two hundred thirty-eight'),\n(14395, 3643, 'three thousand six hundred forty-three'),\n(14396, 10580, 'ten thousand five hundred eighty'),\n(14397, 27369, 'twenty-seven thousand three hundred sixty-nine'),\n(14398, 19576, 'nineteen thousand five hundred seventy-six'),\n(14399, 17462, 'seventeen thousand four hundred sixty-two'),\n(14400, 27190, 'twenty-seven thousand one hundred ninety'),\n(14401, 57559, 'fifty-seven thousand five hundred fifty-nine'),\n(14402, 38918, 'thirty-eight thousand nine hundred eighteen'),\n(14403, 18910, 'eighteen thousand nine hundred ten'),\n(14404, 58855, 'fifty-eight thousand eight hundred fifty-five'),\n(14405, 51161, 'fifty-one thousand one hundred sixty-one'),\n(14406, 45122, 'forty-five thousand one hundred twenty-two'),\n(14407, 25422, 'twenty-five thousand four hundred twenty-two'),\n(14408, 50018, 'fifty thousand eighteen'),\n(14409, 88341, 'eighty-eight thousand three hundred forty-one'),\n(14410, 41047, 'forty-one thousand forty-seven'),\n(14411, 53684, 'fifty-three thousand six hundred eighty-four'),\n(14412, 7018, 'seven thousand eighteen'),\n(14413, 14324, 'fourteen thousand three hundred twenty-four'),\n(14414, 15849, 'fifteen thousand eight hundred forty-nine'),\n(14415, 47940, 'forty-seven thousand nine hundred forty'),\n(14416, 49096, 'forty-nine thousand ninety-six'),\n(14417, 21937, 'twenty-one thousand nine hundred thirty-seven'),\n(14418, 90158, 'ninety thousand one hundred fifty-eight'),\n(14419, 4770, 'four thousand seven hundred seventy'),\n(14420, 80185, 'eighty thousand one hundred eighty-five'),\n(14421, 30812, 'thirty thousand eight hundred twelve'),\n(14422, 88137, 'eighty-eight thousand one hundred thirty-seven'),\n(14423, 18892, 'eighteen thousand eight hundred ninety-two'),\n(14424, 31402, 'thirty-one thousand four hundred two'),\n(14425, 67043, 'sixty-seven thousand forty-three'),\n(14426, 96734, 'ninety-six thousand seven hundred thirty-four'),\n(14427, 35005, 'thirty-five thousand five'),\n(14428, 42841, 'forty-two thousand eight hundred forty-one'),\n(14429, 15230, 'fifteen thousand two hundred thirty'),\n(14430, 13797, 'thirteen thousand seven hundred ninety-seven'),\n(14431, 6752, 'six thousand seven hundred fifty-two'),\n(14432, 65526, 'sixty-five thousand five hundred twenty-six'),\n(14433, 39873, 'thirty-nine thousand eight hundred seventy-three'),\n(14434, 4606, 'four thousand six hundred six'),\n(14435, 39525, 'thirty-nine thousand five hundred twenty-five'),\n(14436, 27048, 'twenty-seven thousand forty-eight'),\n(14437, 25952, 'twenty-five thousand nine hundred fifty-two'),\n(14438, 33402, 'thirty-three thousand four hundred two'),\n(14439, 31317, 'thirty-one thousand three hundred seventeen'),\n(14440, 24397, 'twenty-four thousand three hundred ninety-seven'),\n(14441, 65864, 'sixty-five thousand eight hundred sixty-four'),\n(14442, 9789, 'nine thousand seven hundred eighty-nine'),\n(14443, 58604, 'fifty-eight thousand six hundred four'),\n(14444, 34957, 'thirty-four thousand nine hundred fifty-seven'),\n(14445, 70353, 'seventy thousand three hundred fifty-three'),\n(14446, 97333, 'ninety-seven thousand three hundred thirty-three'),\n(14447, 43578, 'forty-three thousand five hundred seventy-eight'),\n(14448, 94679, 'ninety-four thousand six hundred seventy-nine'),\n(14449, 77060, 'seventy-seven thousand sixty'),\n(14450, 90869, 'ninety thousand eight hundred sixty-nine'),\n(14451, 47435, 'forty-seven thousand four hundred thirty-five'),\n(14452, 37198, 'thirty-seven thousand one hundred ninety-eight'),\n(14453, 13044, 'thirteen thousand forty-four'),\n(14454, 51680, 'fifty-one thousand six hundred eighty'),\n(14455, 28456, 'twenty-eight thousand four hundred fifty-six'),\n(14456, 46979, 'forty-six thousand nine hundred seventy-nine'),\n(14457, 268, 'two hundred sixty-eight'),\n(14458, 59496, 'fifty-nine thousand four hundred ninety-six'),\n(14459, 47830, 'forty-seven thousand eight hundred thirty'),\n(14460, 72576, 'seventy-two thousand five hundred seventy-six'),\n(14461, 89045, 'eighty-nine thousand forty-five'),\n(14462, 9247, 'nine thousand two hundred forty-seven'),\n(14463, 45771, 'forty-five thousand seven hundred seventy-one'),\n(14464, 9818, 'nine thousand eight hundred eighteen'),\n(14465, 80356, 'eighty thousand three hundred fifty-six'),\n(14466, 77184, 'seventy-seven thousand one hundred eighty-four'),\n(14467, 95275, 'ninety-five thousand two hundred seventy-five'),\n(14468, 14950, 'fourteen thousand nine hundred fifty'),\n(14469, 25886, 'twenty-five thousand eight hundred eighty-six'),\n(14470, 76665, 'seventy-six thousand six hundred sixty-five'),\n(14471, 93690, 'ninety-three thousand six hundred ninety'),\n(14472, 59731, 'fifty-nine thousand seven hundred thirty-one'),\n(14473, 84252, 'eighty-four thousand two hundred fifty-two'),\n(14474, 50778, 'fifty thousand seven hundred seventy-eight'),\n(14475, 85611, 'eighty-five thousand six hundred eleven'),\n(14476, 64788, 'sixty-four thousand seven hundred eighty-eight'),\n(14477, 1364, 'one thousand three hundred sixty-four'),\n(14478, 95924, 'ninety-five thousand nine hundred twenty-four'),\n(14479, 77564, 'seventy-seven thousand five hundred sixty-four'),\n(14480, 16477, 'sixteen thousand four hundred seventy-seven'),\n(14481, 57138, 'fifty-seven thousand one hundred thirty-eight'),\n(14482, 5847, 'five thousand eight hundred forty-seven'),\n(14483, 39001, 'thirty-nine thousand one'),\n(14484, 2050, 'two thousand fifty'),\n(14485, 33564, 'thirty-three thousand five hundred sixty-four'),\n(14486, 4178, 'four thousand one hundred seventy-eight'),\n(14487, 78178, 'seventy-eight thousand one hundred seventy-eight'),\n(14488, 49514, 'forty-nine thousand five hundred fourteen'),\n(14489, 78921, 'seventy-eight thousand nine hundred twenty-one'),\n(14490, 71208, 'seventy-one thousand two hundred eight'),\n(14491, 38465, 'thirty-eight thousand four hundred sixty-five'),\n(14492, 86416, 'eighty-six thousand four hundred sixteen'),\n(14493, 93193, 'ninety-three thousand one hundred ninety-three'),\n(14494, 61818, 'sixty-one thousand eight hundred eighteen'),\n(14495, 5089, 'five thousand eighty-nine'),\n(14496, 36936, 'thirty-six thousand nine hundred thirty-six'),\n(14497, 95692, 'ninety-five thousand six hundred ninety-two'),\n(14498, 33382, 'thirty-three thousand three hundred eighty-two'),\n(14499, 59107, 'fifty-nine thousand one hundred seven'),\n(14500, 71623, 'seventy-one thousand six hundred twenty-three'),\n(14501, 69461, 'sixty-nine thousand four hundred sixty-one'),\n(14502, 7733, 'seven thousand seven hundred thirty-three'),\n(14503, 73507, 'seventy-three thousand five hundred seven'),\n(14504, 58103, 'fifty-eight thousand one hundred three'),\n(14505, 86934, 'eighty-six thousand nine hundred thirty-four'),\n(14506, 75588, 'seventy-five thousand five hundred eighty-eight'),\n(14507, 21769, 'twenty-one thousand seven hundred sixty-nine'),\n(14508, 31140, 'thirty-one thousand one hundred forty'),\n(14509, 19322, 'nineteen thousand three hundred twenty-two'),\n(14510, 33203, 'thirty-three thousand two hundred three'),\n(14511, 86313, 'eighty-six thousand three hundred thirteen'),\n(14512, 49083, 'forty-nine thousand eighty-three'),\n(14513, 76586, 'seventy-six thousand five hundred eighty-six'),\n(14514, 50635, 'fifty thousand six hundred thirty-five'),\n(14515, 76844, 'seventy-six thousand eight hundred forty-four'),\n(14516, 41924, 'forty-one thousand nine hundred twenty-four'),\n(14517, 5724, 'five thousand seven hundred twenty-four'),\n(14518, 15808, 'fifteen thousand eight hundred eight'),\n(14519, 22083, 'twenty-two thousand eighty-three'),\n(14520, 97749, 'ninety-seven thousand seven hundred forty-nine'),\n(14521, 33479, 'thirty-three thousand four hundred seventy-nine'),\n(14522, 23304, 'twenty-three thousand three hundred four'),\n(14523, 37432, 'thirty-seven thousand four hundred thirty-two'),\n(14524, 8914, 'eight thousand nine hundred fourteen'),\n(14525, 98746, 'ninety-eight thousand seven hundred forty-six'),\n(14526, 84990, 'eighty-four thousand nine hundred ninety'),\n(14527, 31971, 'thirty-one thousand nine hundred seventy-one'),\n(14528, 73077, 'seventy-three thousand seventy-seven'),\n(14529, 23102, 'twenty-three thousand one hundred two'),\n(14530, 72328, 'seventy-two thousand three hundred twenty-eight'),\n(14531, 25679, 'twenty-five thousand six hundred seventy-nine'),\n(14532, 25580, 'twenty-five thousand five hundred eighty'),\n(14533, 79422, 'seventy-nine thousand four hundred twenty-two'),\n(14534, 96682, 'ninety-six thousand six hundred eighty-two'),\n(14535, 44352, 'forty-four thousand three hundred fifty-two'),\n(14536, 49609, 'forty-nine thousand six hundred nine'),\n(14537, 16865, 'sixteen thousand eight hundred sixty-five'),\n(14538, 64205, 'sixty-four thousand two hundred five'),\n(14539, 56860, 'fifty-six thousand eight hundred sixty'),\n(14540, 8452, 'eight thousand four hundred fifty-two'),\n(14541, 75790, 'seventy-five thousand seven hundred ninety'),\n(14542, 25874, 'twenty-five thousand eight hundred seventy-four'),\n(14543, 9540, 'nine thousand five hundred forty'),\n(14544, 56970, 'fifty-six thousand nine hundred seventy'),\n(14545, 57375, 'fifty-seven thousand three hundred seventy-five'),\n(14546, 83455, 'eighty-three thousand four hundred fifty-five'),\n(14547, 52887, 'fifty-two thousand eight hundred eighty-seven'),\n(14548, 66815, 'sixty-six thousand eight hundred fifteen'),\n(14549, 52147, 'fifty-two thousand one hundred forty-seven'),\n(14550, 36436, 'thirty-six thousand four hundred thirty-six'),\n(14551, 1746, 'one thousand seven hundred forty-six'),\n(14552, 19615, 'nineteen thousand six hundred fifteen'),\n(14553, 75751, 'seventy-five thousand seven hundred fifty-one'),\n(14554, 81234, 'eighty-one thousand two hundred thirty-four'),\n(14555, 9563, 'nine thousand five hundred sixty-three'),\n(14556, 89360, 'eighty-nine thousand three hundred sixty'),\n(14557, 49508, 'forty-nine thousand five hundred eight'),\n(14558, 35066, 'thirty-five thousand sixty-six'),\n(14559, 32617, 'thirty-two thousand six hundred seventeen'),\n(14560, 83483, 'eighty-three thousand four hundred eighty-three'),\n(14561, 39994, 'thirty-nine thousand nine hundred ninety-four'),\n(14562, 30187, 'thirty thousand one hundred eighty-seven'),\n(14563, 27214, 'twenty-seven thousand two hundred fourteen'),\n(14564, 92335, 'ninety-two thousand three hundred thirty-five'),\n(14565, 22552, 'twenty-two thousand five hundred fifty-two'),\n(14566, 30410, 'thirty thousand four hundred ten'),\n(14567, 37347, 'thirty-seven thousand three hundred forty-seven'),\n(14568, 54313, 'fifty-four thousand three hundred thirteen'),\n(14569, 97665, 'ninety-seven thousand six hundred sixty-five'),\n(14570, 16804, 'sixteen thousand eight hundred four'),\n(14571, 23093, 'twenty-three thousand ninety-three'),\n(14572, 61173, 'sixty-one thousand one hundred seventy-three'),\n(14573, 44, 'forty-four'),\n(14574, 47884, 'forty-seven thousand eight hundred eighty-four'),\n(14575, 5983, 'five thousand nine hundred eighty-three'),\n(14576, 92504, 'ninety-two thousand five hundred four'),\n(14577, 10497, 'ten thousand four hundred ninety-seven'),\n(14578, 85725, 'eighty-five thousand seven hundred twenty-five'),\n(14579, 49351, 'forty-nine thousand three hundred fifty-one'),\n(14580, 39541, 'thirty-nine thousand five hundred forty-one'),\n(14581, 39732, 'thirty-nine thousand seven hundred thirty-two'),\n(14582, 69622, 'sixty-nine thousand six hundred twenty-two'),\n(14583, 81213, 'eighty-one thousand two hundred thirteen'),\n(14584, 30193, 'thirty thousand one hundred ninety-three'),\n(14585, 94533, 'ninety-four thousand five hundred thirty-three'),\n(14586, 78540, 'seventy-eight thousand five hundred forty'),\n(14587, 12224, 'twelve thousand two hundred twenty-four'),\n(14588, 79454, 'seventy-nine thousand four hundred fifty-four'),\n(14589, 19749, 'nineteen thousand seven hundred forty-nine'),\n(14590, 75920, 'seventy-five thousand nine hundred twenty'),\n(14591, 77552, 'seventy-seven thousand five hundred fifty-two'),\n(14592, 28470, 'twenty-eight thousand four hundred seventy'),\n(14593, 23457, 'twenty-three thousand four hundred fifty-seven'),\n(14594, 89400, 'eighty-nine thousand four hundred'),\n(14595, 41108, 'forty-one thousand one hundred eight'),\n(14596, 67525, 'sixty-seven thousand five hundred twenty-five'),\n(14597, 99322, 'ninety-nine thousand three hundred twenty-two'),\n(14598, 76627, 'seventy-six thousand six hundred twenty-seven'),\n(14599, 47635, 'forty-seven thousand six hundred thirty-five'),\n(14600, 2882, 'two thousand eight hundred eighty-two'),\n(14601, 84683, 'eighty-four thousand six hundred eighty-three'),\n(14602, 554, 'five hundred fifty-four'),\n(14603, 62019, 'sixty-two thousand nineteen'),\n(14604, 45721, 'forty-five thousand seven hundred twenty-one'),\n(14605, 4448, 'four thousand four hundred forty-eight'),\n(14606, 28686, 'twenty-eight thousand six hundred eighty-six'),\n(14607, 3705, 'three thousand seven hundred five'),\n(14608, 18731, 'eighteen thousand seven hundred thirty-one'),\n(14609, 84238, 'eighty-four thousand two hundred thirty-eight'),\n(14610, 20284, 'twenty thousand two hundred eighty-four'),\n(14611, 71682, 'seventy-one thousand six hundred eighty-two'),\n(14612, 47259, 'forty-seven thousand two hundred fifty-nine'),\n(14613, 30209, 'thirty thousand two hundred nine'),\n(14614, 30489, 'thirty thousand four hundred eighty-nine'),\n(14615, 15266, 'fifteen thousand two hundred sixty-six'),\n(14616, 49968, 'forty-nine thousand nine hundred sixty-eight'),\n(14617, 64851, 'sixty-four thousand eight hundred fifty-one'),\n(14618, 92183, 'ninety-two thousand one hundred eighty-three'),\n(14619, 84467, 'eighty-four thousand four hundred sixty-seven'),\n(14620, 45437, 'forty-five thousand four hundred thirty-seven'),\n(14621, 68933, 'sixty-eight thousand nine hundred thirty-three'),\n(14622, 6125, 'six thousand one hundred twenty-five'),\n(14623, 10108, 'ten thousand one hundred eight'),\n(14624, 33129, 'thirty-three thousand one hundred twenty-nine'),\n(14625, 67935, 'sixty-seven thousand nine hundred thirty-five'),\n(14626, 92622, 'ninety-two thousand six hundred twenty-two'),\n(14627, 48124, 'forty-eight thousand one hundred twenty-four'),\n(14628, 9437, 'nine thousand four hundred thirty-seven'),\n(14629, 52731, 'fifty-two thousand seven hundred thirty-one'),\n(14630, 72782, 'seventy-two thousand seven hundred eighty-two'),\n(14631, 85991, 'eighty-five thousand nine hundred ninety-one'),\n(14632, 34199, 'thirty-four thousand one hundred ninety-nine'),\n(14633, 19327, 'nineteen thousand three hundred twenty-seven'),\n(14634, 29821, 'twenty-nine thousand eight hundred twenty-one'),\n(14635, 22018, 'twenty-two thousand eighteen'),\n(14636, 95469, 'ninety-five thousand four hundred sixty-nine'),\n(14637, 35270, 'thirty-five thousand two hundred seventy'),\n(14638, 21753, 'twenty-one thousand seven hundred fifty-three'),\n(14639, 41787, 'forty-one thousand seven hundred eighty-seven'),\n(14640, 80088, 'eighty thousand eighty-eight'),\n(14641, 18458, 'eighteen thousand four hundred fifty-eight'),\n(14642, 78593, 'seventy-eight thousand five hundred ninety-three'),\n(14643, 37960, 'thirty-seven thousand nine hundred sixty'),\n(14644, 79870, 'seventy-nine thousand eight hundred seventy'),\n(14645, 84724, 'eighty-four thousand seven hundred twenty-four'),\n(14646, 31792, 'thirty-one thousand seven hundred ninety-two'),\n(14647, 59671, 'fifty-nine thousand six hundred seventy-one'),\n(14648, 6769, 'six thousand seven hundred sixty-nine'),\n(14649, 89178, 'eighty-nine thousand one hundred seventy-eight'),\n(14650, 6896, 'six thousand eight hundred ninety-six'),\n(14651, 16672, 'sixteen thousand six hundred seventy-two'),\n(14652, 43227, 'forty-three thousand two hundred twenty-seven'),\n(14653, 61393, 'sixty-one thousand three hundred ninety-three'),\n(14654, 15848, 'fifteen thousand eight hundred forty-eight'),\n(14655, 15662, 'fifteen thousand six hundred sixty-two'),\n(14656, 15993, 'fifteen thousand nine hundred ninety-three'),\n(14657, 35739, 'thirty-five thousand seven hundred thirty-nine'),\n(14658, 41226, 'forty-one thousand two hundred twenty-six'),\n(14659, 85900, 'eighty-five thousand nine hundred'),\n(14660, 87213, 'eighty-seven thousand two hundred thirteen'),\n(14661, 41971, 'forty-one thousand nine hundred seventy-one'),\n(14662, 98755, 'ninety-eight thousand seven hundred fifty-five'),\n(14663, 87227, 'eighty-seven thousand two hundred twenty-seven'),\n(14664, 38837, 'thirty-eight thousand eight hundred thirty-seven'),\n(14665, 9866, 'nine thousand eight hundred sixty-six'),\n(14666, 18765, 'eighteen thousand seven hundred sixty-five'),\n(14667, 37507, 'thirty-seven thousand five hundred seven'),\n(14668, 93594, 'ninety-three thousand five hundred ninety-four'),\n(14669, 71161, 'seventy-one thousand one hundred sixty-one'),\n(14670, 13162, 'thirteen thousand one hundred sixty-two'),\n(14671, 30257, 'thirty thousand two hundred fifty-seven'),\n(14672, 72955, 'seventy-two thousand nine hundred fifty-five'),\n(14673, 24431, 'twenty-four thousand four hundred thirty-one'),\n(14674, 92187, 'ninety-two thousand one hundred eighty-seven'),\n(14675, 71340, 'seventy-one thousand three hundred forty'),\n(14676, 91891, 'ninety-one thousand eight hundred ninety-one'),\n(14677, 46095, 'forty-six thousand ninety-five'),\n(14678, 51437, 'fifty-one thousand four hundred thirty-seven'),\n(14679, 57660, 'fifty-seven thousand six hundred sixty'),\n(14680, 79428, 'seventy-nine thousand four hundred twenty-eight'),\n(14681, 32269, 'thirty-two thousand two hundred sixty-nine'),\n(14682, 83066, 'eighty-three thousand sixty-six'),\n(14683, 4752, 'four thousand seven hundred fifty-two'),\n(14684, 50841, 'fifty thousand eight hundred forty-one'),\n(14685, 83277, 'eighty-three thousand two hundred seventy-seven'),\n(14686, 80797, 'eighty thousand seven hundred ninety-seven'),\n(14687, 24346, 'twenty-four thousand three hundred forty-six'),\n(14688, 55514, 'fifty-five thousand five hundred fourteen'),\n(14689, 75013, 'seventy-five thousand thirteen'),\n(14690, 97262, 'ninety-seven thousand two hundred sixty-two'),\n(14691, 22236, 'twenty-two thousand two hundred thirty-six'),\n(14692, 97617, 'ninety-seven thousand six hundred seventeen'),\n(14693, 63703, 'sixty-three thousand seven hundred three'),\n(14694, 42773, 'forty-two thousand seven hundred seventy-three'),\n(14695, 69803, 'sixty-nine thousand eight hundred three'),\n(14696, 87220, 'eighty-seven thousand two hundred twenty'),\n(14697, 38313, 'thirty-eight thousand three hundred thirteen'),\n(14698, 39602, 'thirty-nine thousand six hundred two'),\n(14699, 91627, 'ninety-one thousand six hundred twenty-seven'),\n(14700, 94788, 'ninety-four thousand seven hundred eighty-eight'),\n(14701, 94296, 'ninety-four thousand two hundred ninety-six'),\n(14702, 90119, 'ninety thousand one hundred nineteen'),\n(14703, 59321, 'fifty-nine thousand three hundred twenty-one'),\n(14704, 40631, 'forty thousand six hundred thirty-one'),\n(14705, 11223, 'eleven thousand two hundred twenty-three'),\n(14706, 96046, 'ninety-six thousand forty-six'),\n(14707, 45279, 'forty-five thousand two hundred seventy-nine'),\n(14708, 80973, 'eighty thousand nine hundred seventy-three'),\n(14709, 33518, 'thirty-three thousand five hundred eighteen'),\n(14710, 44180, 'forty-four thousand one hundred eighty'),\n(14711, 22497, 'twenty-two thousand four hundred ninety-seven'),\n(14712, 90451, 'ninety thousand four hundred fifty-one'),\n(14713, 43890, 'forty-three thousand eight hundred ninety'),\n(14714, 54182, 'fifty-four thousand one hundred eighty-two'),\n(14715, 5065, 'five thousand sixty-five'),\n(14716, 16813, 'sixteen thousand eight hundred thirteen'),\n(14717, 48067, 'forty-eight thousand sixty-seven'),\n(14718, 3549, 'three thousand five hundred forty-nine'),\n(14719, 4978, 'four thousand nine hundred seventy-eight'),\n(14720, 98801, 'ninety-eight thousand eight hundred one'),\n(14721, 8691, 'eight thousand six hundred ninety-one'),\n(14722, 28395, 'twenty-eight thousand three hundred ninety-five'),\n(14723, 3896, 'three thousand eight hundred ninety-six'),\n(14724, 8632, 'eight thousand six hundred thirty-two'),\n(14725, 23899, 'twenty-three thousand eight hundred ninety-nine'),\n(14726, 41455, 'forty-one thousand four hundred fifty-five'),\n(14727, 61002, 'sixty-one thousand two'),\n(14728, 52544, 'fifty-two thousand five hundred forty-four'),\n(14729, 35834, 'thirty-five thousand eight hundred thirty-four'),\n(14730, 17708, 'seventeen thousand seven hundred eight'),\n(14731, 25189, 'twenty-five thousand one hundred eighty-nine'),\n(14732, 60534, 'sixty thousand five hundred thirty-four'),\n(14733, 62842, 'sixty-two thousand eight hundred forty-two'),\n(14734, 41457, 'forty-one thousand four hundred fifty-seven'),\n(14735, 88861, 'eighty-eight thousand eight hundred sixty-one'),\n(14736, 44132, 'forty-four thousand one hundred thirty-two'),\n(14737, 71118, 'seventy-one thousand one hundred eighteen'),\n(14738, 57340, 'fifty-seven thousand three hundred forty'),\n(14739, 57778, 'fifty-seven thousand seven hundred seventy-eight'),\n(14740, 51943, 'fifty-one thousand nine hundred forty-three'),\n(14741, 27593, 'twenty-seven thousand five hundred ninety-three'),\n(14742, 53238, 'fifty-three thousand two hundred thirty-eight'),\n(14743, 74640, 'seventy-four thousand six hundred forty'),\n(14744, 50657, 'fifty thousand six hundred fifty-seven'),\n(14745, 66555, 'sixty-six thousand five hundred fifty-five'),\n(14746, 22670, 'twenty-two thousand six hundred seventy'),\n(14747, 29122, 'twenty-nine thousand one hundred twenty-two'),\n(14748, 31386, 'thirty-one thousand three hundred eighty-six'),\n(14749, 19318, 'nineteen thousand three hundred eighteen'),\n(14750, 43989, 'forty-three thousand nine hundred eighty-nine'),\n(14751, 70279, 'seventy thousand two hundred seventy-nine'),\n(14752, 128, 'one hundred twenty-eight'),\n(14753, 93486, 'ninety-three thousand four hundred eighty-six'),\n(14754, 48970, 'forty-eight thousand nine hundred seventy'),\n(14755, 60722, 'sixty thousand seven hundred twenty-two'),\n(14756, 68139, 'sixty-eight thousand one hundred thirty-nine'),\n(14757, 52036, 'fifty-two thousand thirty-six'),\n(14758, 24053, 'twenty-four thousand fifty-three'),\n(14759, 44905, 'forty-four thousand nine hundred five'),\n(14760, 66280, 'sixty-six thousand two hundred eighty'),\n(14761, 55151, 'fifty-five thousand one hundred fifty-one'),\n(14762, 41343, 'forty-one thousand three hundred forty-three'),\n(14763, 72538, 'seventy-two thousand five hundred thirty-eight'),\n(14764, 44348, 'forty-four thousand three hundred forty-eight'),\n(14765, 79547, 'seventy-nine thousand five hundred forty-seven'),\n(14766, 30808, 'thirty thousand eight hundred eight'),\n(14767, 27990, 'twenty-seven thousand nine hundred ninety'),\n(14768, 62192, 'sixty-two thousand one hundred ninety-two'),\n(14769, 23859, 'twenty-three thousand eight hundred fifty-nine'),\n(14770, 15552, 'fifteen thousand five hundred fifty-two'),\n(14771, 55528, 'fifty-five thousand five hundred twenty-eight'),\n(14772, 85365, 'eighty-five thousand three hundred sixty-five'),\n(14773, 42672, 'forty-two thousand six hundred seventy-two'),\n(14774, 25794, 'twenty-five thousand seven hundred ninety-four'),\n(14775, 49961, 'forty-nine thousand nine hundred sixty-one'),\n(14776, 27547, 'twenty-seven thousand five hundred forty-seven'),\n(14777, 86964, 'eighty-six thousand nine hundred sixty-four'),\n(14778, 49007, 'forty-nine thousand seven'),\n(14779, 78423, 'seventy-eight thousand four hundred twenty-three'),\n(14780, 28165, 'twenty-eight thousand one hundred sixty-five'),\n(14781, 19329, 'nineteen thousand three hundred twenty-nine'),\n(14782, 10369, 'ten thousand three hundred sixty-nine'),\n(14783, 66493, 'sixty-six thousand four hundred ninety-three'),\n(14784, 17724, 'seventeen thousand seven hundred twenty-four'),\n(14785, 79241, 'seventy-nine thousand two hundred forty-one'),\n(14786, 80382, 'eighty thousand three hundred eighty-two'),\n(14787, 25588, 'twenty-five thousand five hundred eighty-eight'),\n(14788, 59566, 'fifty-nine thousand five hundred sixty-six'),\n(14789, 70032, 'seventy thousand thirty-two'),\n(14790, 84071, 'eighty-four thousand seventy-one'),\n(14791, 17353, 'seventeen thousand three hundred fifty-three'),\n(14792, 28303, 'twenty-eight thousand three hundred three'),\n(14793, 75399, 'seventy-five thousand three hundred ninety-nine'),\n(14794, 37078, 'thirty-seven thousand seventy-eight'),\n(14795, 75173, 'seventy-five thousand one hundred seventy-three'),\n(14796, 12391, 'twelve thousand three hundred ninety-one'),\n(14797, 21236, 'twenty-one thousand two hundred thirty-six'),\n(14798, 66286, 'sixty-six thousand two hundred eighty-six'),\n(14799, 25510, 'twenty-five thousand five hundred ten'),\n(14800, 99877, 'ninety-nine thousand eight hundred seventy-seven'),\n(14801, 75418, 'seventy-five thousand four hundred eighteen'),\n(14802, 10969, 'ten thousand nine hundred sixty-nine'),\n(14803, 8020, 'eight thousand twenty'),\n(14804, 6590, 'six thousand five hundred ninety'),\n(14805, 85993, 'eighty-five thousand nine hundred ninety-three'),\n(14806, 83083, 'eighty-three thousand eighty-three'),\n(14807, 89009, 'eighty-nine thousand nine'),\n(14808, 54416, 'fifty-four thousand four hundred sixteen'),\n(14809, 28310, 'twenty-eight thousand three hundred ten'),\n(14810, 39845, 'thirty-nine thousand eight hundred forty-five'),\n(14811, 18317, 'eighteen thousand three hundred seventeen'),\n(14812, 42100, 'forty-two thousand one hundred'),\n(14813, 80698, 'eighty thousand six hundred ninety-eight'),\n(14814, 66337, 'sixty-six thousand three hundred thirty-seven'),\n(14815, 61059, 'sixty-one thousand fifty-nine'),\n(14816, 54376, 'fifty-four thousand three hundred seventy-six'),\n(14817, 48273, 'forty-eight thousand two hundred seventy-three'),\n(14818, 60827, 'sixty thousand eight hundred twenty-seven'),\n(14819, 46299, 'forty-six thousand two hundred ninety-nine'),\n(14820, 84933, 'eighty-four thousand nine hundred thirty-three'),\n(14821, 28730, 'twenty-eight thousand seven hundred thirty'),\n(14822, 8060, 'eight thousand sixty'),\n(14823, 79376, 'seventy-nine thousand three hundred seventy-six'),\n(14824, 36887, 'thirty-six thousand eight hundred eighty-seven'),\n(14825, 84973, 'eighty-four thousand nine hundred seventy-three'),\n(14826, 38684, 'thirty-eight thousand six hundred eighty-four'),\n(14827, 73188, 'seventy-three thousand one hundred eighty-eight'),\n(14828, 75108, 'seventy-five thousand one hundred eight'),\n(14829, 87237, 'eighty-seven thousand two hundred thirty-seven'),\n(14830, 58693, 'fifty-eight thousand six hundred ninety-three'),\n(14831, 43371, 'forty-three thousand three hundred seventy-one'),\n(14832, 2894, 'two thousand eight hundred ninety-four'),\n(14833, 49611, 'forty-nine thousand six hundred eleven'),\n(14834, 28226, 'twenty-eight thousand two hundred twenty-six'),\n(14835, 33043, 'thirty-three thousand forty-three'),\n(14836, 13541, 'thirteen thousand five hundred forty-one'),\n(14837, 28871, 'twenty-eight thousand eight hundred seventy-one'),\n(14838, 20181, 'twenty thousand one hundred eighty-one'),\n(14839, 83446, 'eighty-three thousand four hundred forty-six'),\n(14840, 43040, 'forty-three thousand forty'),\n(14841, 7590, 'seven thousand five hundred ninety'),\n(14842, 65978, 'sixty-five thousand nine hundred seventy-eight'),\n(14843, 91188, 'ninety-one thousand one hundred eighty-eight'),\n(14844, 98032, 'ninety-eight thousand thirty-two'),\n(14845, 39240, 'thirty-nine thousand two hundred forty'),\n(14846, 21482, 'twenty-one thousand four hundred eighty-two'),\n(14847, 88160, 'eighty-eight thousand one hundred sixty'),\n(14848, 16389, 'sixteen thousand three hundred eighty-nine'),\n(14849, 24738, 'twenty-four thousand seven hundred thirty-eight'),\n(14850, 39290, 'thirty-nine thousand two hundred ninety'),\n(14851, 54251, 'fifty-four thousand two hundred fifty-one'),\n(14852, 38312, 'thirty-eight thousand three hundred twelve'),\n(14853, 33579, 'thirty-three thousand five hundred seventy-nine'),\n(14854, 66306, 'sixty-six thousand three hundred six'),\n(14855, 83598, 'eighty-three thousand five hundred ninety-eight'),\n(14856, 18308, 'eighteen thousand three hundred eight'),\n(14857, 81083, 'eighty-one thousand eighty-three'),\n(14858, 13799, 'thirteen thousand seven hundred ninety-nine'),\n(14859, 1751, 'one thousand seven hundred fifty-one'),\n(14860, 43130, 'forty-three thousand one hundred thirty'),\n(14861, 14252, 'fourteen thousand two hundred fifty-two'),\n(14862, 40845, 'forty thousand eight hundred forty-five'),\n(14863, 137, 'one hundred thirty-seven'),\n(14864, 38375, 'thirty-eight thousand three hundred seventy-five'),\n(14865, 93507, 'ninety-three thousand five hundred seven'),\n(14866, 68768, 'sixty-eight thousand seven hundred sixty-eight'),\n(14867, 41546, 'forty-one thousand five hundred forty-six'),\n(14868, 39802, 'thirty-nine thousand eight hundred two'),\n(14869, 82342, 'eighty-two thousand three hundred forty-two'),\n(14870, 18338, 'eighteen thousand three hundred thirty-eight'),\n(14871, 12695, 'twelve thousand six hundred ninety-five'),\n(14872, 33942, 'thirty-three thousand nine hundred forty-two'),\n(14873, 55081, 'fifty-five thousand eighty-one'),\n(14874, 94942, 'ninety-four thousand nine hundred forty-two'),\n(14875, 89156, 'eighty-nine thousand one hundred fifty-six'),\n(14876, 51544, 'fifty-one thousand five hundred forty-four'),\n(14877, 67560, 'sixty-seven thousand five hundred sixty'),\n(14878, 8687, 'eight thousand six hundred eighty-seven'),\n(14879, 43582, 'forty-three thousand five hundred eighty-two'),\n(14880, 20648, 'twenty thousand six hundred forty-eight'),\n(14881, 18081, 'eighteen thousand eighty-one'),\n(14882, 65047, 'sixty-five thousand forty-seven'),\n(14883, 99684, 'ninety-nine thousand six hundred eighty-four'),\n(14884, 97758, 'ninety-seven thousand seven hundred fifty-eight'),\n(14885, 4171, 'four thousand one hundred seventy-one'),\n(14886, 79899, 'seventy-nine thousand eight hundred ninety-nine'),\n(14887, 6764, 'six thousand seven hundred sixty-four'),\n(14888, 54068, 'fifty-four thousand sixty-eight'),\n(14889, 75627, 'seventy-five thousand six hundred twenty-seven'),\n(14890, 50157, 'fifty thousand one hundred fifty-seven'),\n(14891, 6893, 'six thousand eight hundred ninety-three'),\n(14892, 92589, 'ninety-two thousand five hundred eighty-nine'),\n(14893, 6833, 'six thousand eight hundred thirty-three'),\n(14894, 37330, 'thirty-seven thousand three hundred thirty'),\n(14895, 92032, 'ninety-two thousand thirty-two'),\n(14896, 85158, 'eighty-five thousand one hundred fifty-eight'),\n(14897, 83664, 'eighty-three thousand six hundred sixty-four'),\n(14898, 40988, 'forty thousand nine hundred eighty-eight'),\n(14899, 74366, 'seventy-four thousand three hundred sixty-six'),\n(14900, 75343, 'seventy-five thousand three hundred forty-three'),\n(14901, 50935, 'fifty thousand nine hundred thirty-five'),\n(14902, 85815, 'eighty-five thousand eight hundred fifteen'),\n(14903, 54240, 'fifty-four thousand two hundred forty'),\n(14904, 87892, 'eighty-seven thousand eight hundred ninety-two'),\n(14905, 40957, 'forty thousand nine hundred fifty-seven'),\n(14906, 82076, 'eighty-two thousand seventy-six'),\n(14907, 75856, 'seventy-five thousand eight hundred fifty-six'),\n(14908, 14385, 'fourteen thousand three hundred eighty-five'),\n(14909, 97969, 'ninety-seven thousand nine hundred sixty-nine'),\n(14910, 5575, 'five thousand five hundred seventy-five'),\n(14911, 74463, 'seventy-four thousand four hundred sixty-three'),\n(14912, 13970, 'thirteen thousand nine hundred seventy'),\n(14913, 53165, 'fifty-three thousand one hundred sixty-five'),\n(14914, 8372, 'eight thousand three hundred seventy-two'),\n(14915, 24049, 'twenty-four thousand forty-nine'),\n(14916, 56316, 'fifty-six thousand three hundred sixteen'),\n(14917, 17773, 'seventeen thousand seven hundred seventy-three'),\n(14918, 66781, 'sixty-six thousand seven hundred eighty-one'),\n(14919, 44535, 'forty-four thousand five hundred thirty-five'),\n(14920, 92205, 'ninety-two thousand two hundred five'),\n(14921, 60210, 'sixty thousand two hundred ten'),\n(14922, 14668, 'fourteen thousand six hundred sixty-eight'),\n(14923, 17568, 'seventeen thousand five hundred sixty-eight'),\n(14924, 12673, 'twelve thousand six hundred seventy-three'),\n(14925, 72966, 'seventy-two thousand nine hundred sixty-six'),\n(14926, 94656, 'ninety-four thousand six hundred fifty-six'),\n(14927, 59749, 'fifty-nine thousand seven hundred forty-nine'),\n(14928, 78924, 'seventy-eight thousand nine hundred twenty-four'),\n(14929, 13228, 'thirteen thousand two hundred twenty-eight'),\n(14930, 51270, 'fifty-one thousand two hundred seventy'),\n(14931, 88752, 'eighty-eight thousand seven hundred fifty-two'),\n(14932, 54559, 'fifty-four thousand five hundred fifty-nine'),\n(14933, 31468, 'thirty-one thousand four hundred sixty-eight'),\n(14934, 17891, 'seventeen thousand eight hundred ninety-one'),\n(14935, 53675, 'fifty-three thousand six hundred seventy-five'),\n(14936, 53525, 'fifty-three thousand five hundred twenty-five'),\n(14937, 15904, 'fifteen thousand nine hundred four'),\n(14938, 88317, 'eighty-eight thousand three hundred seventeen'),\n(14939, 84193, 'eighty-four thousand one hundred ninety-three'),\n(14940, 92710, 'ninety-two thousand seven hundred ten'),\n(14941, 12551, 'twelve thousand five hundred fifty-one'),\n(14942, 64502, 'sixty-four thousand five hundred two'),\n(14943, 94730, 'ninety-four thousand seven hundred thirty'),\n(14944, 83729, 'eighty-three thousand seven hundred twenty-nine'),\n(14945, 57078, 'fifty-seven thousand seventy-eight'),\n(14946, 11601, 'eleven thousand six hundred one'),\n(14947, 15255, 'fifteen thousand two hundred fifty-five'),\n(14948, 41045, 'forty-one thousand forty-five'),\n(14949, 69736, 'sixty-nine thousand seven hundred thirty-six'),\n(14950, 87368, 'eighty-seven thousand three hundred sixty-eight'),\n(14951, 71634, 'seventy-one thousand six hundred thirty-four'),\n(14952, 22893, 'twenty-two thousand eight hundred ninety-three'),\n(14953, 67128, 'sixty-seven thousand one hundred twenty-eight'),\n(14954, 9599, 'nine thousand five hundred ninety-nine'),\n(14955, 82583, 'eighty-two thousand five hundred eighty-three'),\n(14956, 74237, 'seventy-four thousand two hundred thirty-seven'),\n(14957, 80721, 'eighty thousand seven hundred twenty-one'),\n(14958, 16870, 'sixteen thousand eight hundred seventy'),\n(14959, 13515, 'thirteen thousand five hundred fifteen'),\n(14960, 1932, 'one thousand nine hundred thirty-two'),\n(14961, 47699, 'forty-seven thousand six hundred ninety-nine'),\n(14962, 44529, 'forty-four thousand five hundred twenty-nine'),\n(14963, 18489, 'eighteen thousand four hundred eighty-nine'),\n(14964, 92906, 'ninety-two thousand nine hundred six'),\n(14965, 10703, 'ten thousand seven hundred three'),\n(14966, 40741, 'forty thousand seven hundred forty-one'),\n(14967, 16068, 'sixteen thousand sixty-eight'),\n(14968, 40236, 'forty thousand two hundred thirty-six'),\n(14969, 51691, 'fifty-one thousand six hundred ninety-one'),\n(14970, 17276, 'seventeen thousand two hundred seventy-six'),\n(14971, 70934, 'seventy thousand nine hundred thirty-four'),\n(14972, 27180, 'twenty-seven thousand one hundred eighty'),\n(14973, 13627, 'thirteen thousand six hundred twenty-seven'),\n(14974, 47417, 'forty-seven thousand four hundred seventeen'),\n(14975, 76436, 'seventy-six thousand four hundred thirty-six'),\n(14976, 30513, 'thirty thousand five hundred thirteen'),\n(14977, 23691, 'twenty-three thousand six hundred ninety-one'),\n(14978, 88469, 'eighty-eight thousand four hundred sixty-nine'),\n(14979, 32252, 'thirty-two thousand two hundred fifty-two'),\n(14980, 42581, 'forty-two thousand five hundred eighty-one'),\n(14981, 10119, 'ten thousand one hundred nineteen'),\n(14982, 83578, 'eighty-three thousand five hundred seventy-eight'),\n(14983, 59346, 'fifty-nine thousand three hundred forty-six'),\n(14984, 50595, 'fifty thousand five hundred ninety-five'),\n(14985, 61599, 'sixty-one thousand five hundred ninety-nine'),\n(14986, 80737, 'eighty thousand seven hundred thirty-seven'),\n(14987, 3882, 'three thousand eight hundred eighty-two'),\n(14988, 59778, 'fifty-nine thousand seven hundred seventy-eight'),\n(14989, 50978, 'fifty thousand nine hundred seventy-eight'),\n(14990, 10198, 'ten thousand one hundred ninety-eight'),\n(14991, 17030, 'seventeen thousand thirty'),\n(14992, 74677, 'seventy-four thousand six hundred seventy-seven'),\n(14993, 70154, 'seventy thousand one hundred fifty-four'),\n(14994, 34025, 'thirty-four thousand twenty-five'),\n(14995, 88399, 'eighty-eight thousand three hundred ninety-nine'),\n(14996, 13547, 'thirteen thousand five hundred forty-seven'),\n(14997, 75524, 'seventy-five thousand five hundred twenty-four'),\n(14998, 54179, 'fifty-four thousand one hundred seventy-nine'),\n(14999, 55756, 'fifty-five thousand seven hundred fifty-six'),\n(15000, 43850, 'forty-three thousand eight hundred fifty'),\n(15001, 22374, 'twenty-two thousand three hundred seventy-four'),\n(15002, 46758, 'forty-six thousand seven hundred fifty-eight'),\n(15003, 7508, 'seven thousand five hundred eight'),\n(15004, 17290, 'seventeen thousand two hundred ninety'),\n(15005, 76910, 'seventy-six thousand nine hundred ten'),\n(15006, 50603, 'fifty thousand six hundred three'),\n(15007, 10383, 'ten thousand three hundred eighty-three'),\n(15008, 32156, 'thirty-two thousand one hundred fifty-six'),\n(15009, 68438, 'sixty-eight thousand four hundred thirty-eight'),\n(15010, 27612, 'twenty-seven thousand six hundred twelve'),\n(15011, 39143, 'thirty-nine thousand one hundred forty-three'),\n(15012, 98547, 'ninety-eight thousand five hundred forty-seven'),\n(15013, 48307, 'forty-eight thousand three hundred seven'),\n(15014, 17969, 'seventeen thousand nine hundred sixty-nine'),\n(15015, 76793, 'seventy-six thousand seven hundred ninety-three'),\n(15016, 93091, 'ninety-three thousand ninety-one'),\n(15017, 47612, 'forty-seven thousand six hundred twelve'),\n(15018, 63439, 'sixty-three thousand four hundred thirty-nine'),\n(15019, 81077, 'eighty-one thousand seventy-seven'),\n(15020, 62653, 'sixty-two thousand six hundred fifty-three'),\n(15021, 69399, 'sixty-nine thousand three hundred ninety-nine'),\n(15022, 12431, 'twelve thousand four hundred thirty-one'),\n(15023, 39932, 'thirty-nine thousand nine hundred thirty-two'),\n(15024, 59592, 'fifty-nine thousand five hundred ninety-two'),\n(15025, 44789, 'forty-four thousand seven hundred eighty-nine'),\n(15026, 75520, 'seventy-five thousand five hundred twenty'),\n(15027, 48424, 'forty-eight thousand four hundred twenty-four'),\n(15028, 30984, 'thirty thousand nine hundred eighty-four'),\n(15029, 89003, 'eighty-nine thousand three'),\n(15030, 77770, 'seventy-seven thousand seven hundred seventy'),\n(15031, 76647, 'seventy-six thousand six hundred forty-seven'),\n(15032, 82707, 'eighty-two thousand seven hundred seven'),\n(15033, 44158, 'forty-four thousand one hundred fifty-eight'),\n(15034, 74164, 'seventy-four thousand one hundred sixty-four'),\n(15035, 48329, 'forty-eight thousand three hundred twenty-nine'),\n(15036, 40291, 'forty thousand two hundred ninety-one'),\n(15037, 19669, 'nineteen thousand six hundred sixty-nine'),\n(15038, 77524, 'seventy-seven thousand five hundred twenty-four'),\n(15039, 62050, 'sixty-two thousand fifty'),\n(15040, 76706, 'seventy-six thousand seven hundred six'),\n(15041, 25442, 'twenty-five thousand four hundred forty-two'),\n(15042, 29584, 'twenty-nine thousand five hundred eighty-four'),\n(15043, 78280, 'seventy-eight thousand two hundred eighty'),\n(15044, 65004, 'sixty-five thousand four'),\n(15045, 27679, 'twenty-seven thousand six hundred seventy-nine'),\n(15046, 13080, 'thirteen thousand eighty'),\n(15047, 54692, 'fifty-four thousand six hundred ninety-two'),\n(15048, 36284, 'thirty-six thousand two hundred eighty-four'),\n(15049, 57009, 'fifty-seven thousand nine'),\n(15050, 44112, 'forty-four thousand one hundred twelve'),\n(15051, 13598, 'thirteen thousand five hundred ninety-eight'),\n(15052, 1432, 'one thousand four hundred thirty-two'),\n(15053, 16430, 'sixteen thousand four hundred thirty'),\n(15054, 25656, 'twenty-five thousand six hundred fifty-six'),\n(15055, 82356, 'eighty-two thousand three hundred fifty-six'),\n(15056, 18364, 'eighteen thousand three hundred sixty-four'),\n(15057, 19485, 'nineteen thousand four hundred eighty-five'),\n(15058, 21280, 'twenty-one thousand two hundred eighty'),\n(15059, 5880, 'five thousand eight hundred eighty'),\n(15060, 3051, 'three thousand fifty-one'),\n(15061, 91744, 'ninety-one thousand seven hundred forty-four'),\n(15062, 7056, 'seven thousand fifty-six'),\n(15063, 21495, 'twenty-one thousand four hundred ninety-five'),\n(15064, 18694, 'eighteen thousand six hundred ninety-four'),\n(15065, 54635, 'fifty-four thousand six hundred thirty-five'),\n(15066, 91735, 'ninety-one thousand seven hundred thirty-five'),\n(15067, 65049, 'sixty-five thousand forty-nine'),\n(15068, 4716, 'four thousand seven hundred sixteen'),\n(15069, 90635, 'ninety thousand six hundred thirty-five'),\n(15070, 60723, 'sixty thousand seven hundred twenty-three'),\n(15071, 99959, 'ninety-nine thousand nine hundred fifty-nine'),\n(15072, 27602, 'twenty-seven thousand six hundred two'),\n(15073, 38150, 'thirty-eight thousand one hundred fifty'),\n(15074, 27266, 'twenty-seven thousand two hundred sixty-six'),\n(15075, 5634, 'five thousand six hundred thirty-four'),\n(15076, 40735, 'forty thousand seven hundred thirty-five'),\n(15077, 35728, 'thirty-five thousand seven hundred twenty-eight'),\n(15078, 88799, 'eighty-eight thousand seven hundred ninety-nine'),\n(15079, 76820, 'seventy-six thousand eight hundred twenty'),\n(15080, 22403, 'twenty-two thousand four hundred three'),\n(15081, 77299, 'seventy-seven thousand two hundred ninety-nine'),\n(15082, 32372, 'thirty-two thousand three hundred seventy-two'),\n(15083, 32383, 'thirty-two thousand three hundred eighty-three'),\n(15084, 59041, 'fifty-nine thousand forty-one'),\n(15085, 44132, 'forty-four thousand one hundred thirty-two'),\n(15086, 5942, 'five thousand nine hundred forty-two'),\n(15087, 9132, 'nine thousand one hundred thirty-two'),\n(15088, 60139, 'sixty thousand one hundred thirty-nine'),\n(15089, 60443, 'sixty thousand four hundred forty-three'),\n(15090, 82142, 'eighty-two thousand one hundred forty-two'),\n(15091, 42971, 'forty-two thousand nine hundred seventy-one'),\n(15092, 79414, 'seventy-nine thousand four hundred fourteen'),\n(15093, 37209, 'thirty-seven thousand two hundred nine'),\n(15094, 98057, 'ninety-eight thousand fifty-seven'),\n(15095, 17434, 'seventeen thousand four hundred thirty-four'),\n(15096, 75387, 'seventy-five thousand three hundred eighty-seven'),\n(15097, 35237, 'thirty-five thousand two hundred thirty-seven'),\n(15098, 49659, 'forty-nine thousand six hundred fifty-nine'),\n(15099, 86761, 'eighty-six thousand seven hundred sixty-one'),\n(15100, 46207, 'forty-six thousand two hundred seven'),\n(15101, 39626, 'thirty-nine thousand six hundred twenty-six'),\n(15102, 87094, 'eighty-seven thousand ninety-four'),\n(15103, 98995, 'ninety-eight thousand nine hundred ninety-five'),\n(15104, 32231, 'thirty-two thousand two hundred thirty-one'),\n(15105, 51801, 'fifty-one thousand eight hundred one'),\n(15106, 51335, 'fifty-one thousand three hundred thirty-five'),\n(15107, 56, 'fifty-six'),\n(15108, 52259, 'fifty-two thousand two hundred fifty-nine'),\n(15109, 49545, 'forty-nine thousand five hundred forty-five'),\n(15110, 82724, 'eighty-two thousand seven hundred twenty-four'),\n(15111, 16479, 'sixteen thousand four hundred seventy-nine'),\n(15112, 84442, 'eighty-four thousand four hundred forty-two'),\n(15113, 95210, 'ninety-five thousand two hundred ten'),\n(15114, 3556, 'three thousand five hundred fifty-six'),\n(15115, 78560, 'seventy-eight thousand five hundred sixty'),\n(15116, 69718, 'sixty-nine thousand seven hundred eighteen'),\n(15117, 88444, 'eighty-eight thousand four hundred forty-four'),\n(15118, 43758, 'forty-three thousand seven hundred fifty-eight'),\n(15119, 56154, 'fifty-six thousand one hundred fifty-four'),\n(15120, 69000, 'sixty-nine thousand'),\n(15121, 75221, 'seventy-five thousand two hundred twenty-one'),\n(15122, 66822, 'sixty-six thousand eight hundred twenty-two'),\n(15123, 66617, 'sixty-six thousand six hundred seventeen'),\n(15124, 68022, 'sixty-eight thousand twenty-two'),\n(15125, 85016, 'eighty-five thousand sixteen'),\n(15126, 45801, 'forty-five thousand eight hundred one'),\n(15127, 95672, 'ninety-five thousand six hundred seventy-two'),\n(15128, 96871, 'ninety-six thousand eight hundred seventy-one'),\n(15129, 87468, 'eighty-seven thousand four hundred sixty-eight'),\n(15130, 53152, 'fifty-three thousand one hundred fifty-two'),\n(15131, 95677, 'ninety-five thousand six hundred seventy-seven'),\n(15132, 63568, 'sixty-three thousand five hundred sixty-eight'),\n(15133, 87628, 'eighty-seven thousand six hundred twenty-eight'),\n(15134, 13785, 'thirteen thousand seven hundred eighty-five'),\n(15135, 15039, 'fifteen thousand thirty-nine'),\n(15136, 77330, 'seventy-seven thousand three hundred thirty'),\n(15137, 42267, 'forty-two thousand two hundred sixty-seven'),\n(15138, 97874, 'ninety-seven thousand eight hundred seventy-four'),\n(15139, 51193, 'fifty-one thousand one hundred ninety-three'),\n(15140, 73062, 'seventy-three thousand sixty-two'),\n(15141, 98436, 'ninety-eight thousand four hundred thirty-six'),\n(15142, 82620, 'eighty-two thousand six hundred twenty'),\n(15143, 36742, 'thirty-six thousand seven hundred forty-two'),\n(15144, 60906, 'sixty thousand nine hundred six'),\n(15145, 39809, 'thirty-nine thousand eight hundred nine'),\n(15146, 69883, 'sixty-nine thousand eight hundred eighty-three'),\n(15147, 15032, 'fifteen thousand thirty-two'),\n(15148, 63924, 'sixty-three thousand nine hundred twenty-four'),\n(15149, 13744, 'thirteen thousand seven hundred forty-four'),\n(15150, 949, 'nine hundred forty-nine'),\n(15151, 60203, 'sixty thousand two hundred three'),\n(15152, 91944, 'ninety-one thousand nine hundred forty-four'),\n(15153, 28432, 'twenty-eight thousand four hundred thirty-two'),\n(15154, 29038, 'twenty-nine thousand thirty-eight'),\n(15155, 66625, 'sixty-six thousand six hundred twenty-five'),\n(15156, 99063, 'ninety-nine thousand sixty-three'),\n(15157, 8946, 'eight thousand nine hundred forty-six'),\n(15158, 51651, 'fifty-one thousand six hundred fifty-one'),\n(15159, 34876, 'thirty-four thousand eight hundred seventy-six'),\n(15160, 88950, 'eighty-eight thousand nine hundred fifty'),\n(15161, 90025, 'ninety thousand twenty-five'),\n(15162, 82170, 'eighty-two thousand one hundred seventy'),\n(15163, 19233, 'nineteen thousand two hundred thirty-three'),\n(15164, 2705, 'two thousand seven hundred five'),\n(15165, 47370, 'forty-seven thousand three hundred seventy'),\n(15166, 97939, 'ninety-seven thousand nine hundred thirty-nine'),\n(15167, 80568, 'eighty thousand five hundred sixty-eight'),\n(15168, 53886, 'fifty-three thousand eight hundred eighty-six'),\n(15169, 80045, 'eighty thousand forty-five'),\n(15170, 90212, 'ninety thousand two hundred twelve'),\n(15171, 91703, 'ninety-one thousand seven hundred three'),\n(15172, 43816, 'forty-three thousand eight hundred sixteen'),\n(15173, 16798, 'sixteen thousand seven hundred ninety-eight'),\n(15174, 35487, 'thirty-five thousand four hundred eighty-seven'),\n(15175, 16395, 'sixteen thousand three hundred ninety-five'),\n(15176, 37818, 'thirty-seven thousand eight hundred eighteen'),\n(15177, 39963, 'thirty-nine thousand nine hundred sixty-three'),\n(15178, 138, 'one hundred thirty-eight'),\n(15179, 8295, 'eight thousand two hundred ninety-five'),\n(15180, 54714, 'fifty-four thousand seven hundred fourteen'),\n(15181, 58020, 'fifty-eight thousand twenty'),\n(15182, 49458, 'forty-nine thousand four hundred fifty-eight'),\n(15183, 9303, 'nine thousand three hundred three'),\n(15184, 4736, 'four thousand seven hundred thirty-six'),\n(15185, 11424, 'eleven thousand four hundred twenty-four'),\n(15186, 93132, 'ninety-three thousand one hundred thirty-two'),\n(15187, 23626, 'twenty-three thousand six hundred twenty-six'),\n(15188, 10794, 'ten thousand seven hundred ninety-four'),\n(15189, 6668, 'six thousand six hundred sixty-eight'),\n(15190, 8121, 'eight thousand one hundred twenty-one'),\n(15191, 32573, 'thirty-two thousand five hundred seventy-three'),\n(15192, 34386, 'thirty-four thousand three hundred eighty-six'),\n(15193, 33288, 'thirty-three thousand two hundred eighty-eight'),\n(15194, 4142, 'four thousand one hundred forty-two'),\n(15195, 39571, 'thirty-nine thousand five hundred seventy-one'),\n(15196, 66014, 'sixty-six thousand fourteen'),\n(15197, 73969, 'seventy-three thousand nine hundred sixty-nine'),\n(15198, 69570, 'sixty-nine thousand five hundred seventy'),\n(15199, 39659, 'thirty-nine thousand six hundred fifty-nine'),\n(15200, 21545, 'twenty-one thousand five hundred forty-five'),\n(15201, 88646, 'eighty-eight thousand six hundred forty-six'),\n(15202, 99188, 'ninety-nine thousand one hundred eighty-eight'),\n(15203, 43045, 'forty-three thousand forty-five'),\n(15204, 94952, 'ninety-four thousand nine hundred fifty-two'),\n(15205, 77797, 'seventy-seven thousand seven hundred ninety-seven'),\n(15206, 82065, 'eighty-two thousand sixty-five'),\n(15207, 97625, 'ninety-seven thousand six hundred twenty-five'),\n(15208, 59614, 'fifty-nine thousand six hundred fourteen'),\n(15209, 25885, 'twenty-five thousand eight hundred eighty-five'),\n(15210, 71065, 'seventy-one thousand sixty-five'),\n(15211, 4361, 'four thousand three hundred sixty-one'),\n(15212, 18097, 'eighteen thousand ninety-seven'),\n(15213, 78333, 'seventy-eight thousand three hundred thirty-three'),\n(15214, 74844, 'seventy-four thousand eight hundred forty-four'),\n(15215, 93932, 'ninety-three thousand nine hundred thirty-two'),\n(15216, 72185, 'seventy-two thousand one hundred eighty-five'),\n(15217, 62820, 'sixty-two thousand eight hundred twenty'),\n(15218, 6529, 'six thousand five hundred twenty-nine'),\n(15219, 92800, 'ninety-two thousand eight hundred'),\n(15220, 47066, 'forty-seven thousand sixty-six'),\n(15221, 13814, 'thirteen thousand eight hundred fourteen'),\n(15222, 43089, 'forty-three thousand eighty-nine'),\n(15223, 22362, 'twenty-two thousand three hundred sixty-two'),\n(15224, 17489, 'seventeen thousand four hundred eighty-nine'),\n(15225, 65027, 'sixty-five thousand twenty-seven'),\n(15226, 9565, 'nine thousand five hundred sixty-five'),\n(15227, 48508, 'forty-eight thousand five hundred eight'),\n(15228, 13113, 'thirteen thousand one hundred thirteen'),\n(15229, 73212, 'seventy-three thousand two hundred twelve'),\n(15230, 92011, 'ninety-two thousand eleven'),\n(15231, 16123, 'sixteen thousand one hundred twenty-three'),\n(15232, 20854, 'twenty thousand eight hundred fifty-four'),\n(15233, 57608, 'fifty-seven thousand six hundred eight'),\n(15234, 55653, 'fifty-five thousand six hundred fifty-three'),\n(15235, 68135, 'sixty-eight thousand one hundred thirty-five'),\n(15236, 28956, 'twenty-eight thousand nine hundred fifty-six'),\n(15237, 28837, 'twenty-eight thousand eight hundred thirty-seven'),\n(15238, 28260, 'twenty-eight thousand two hundred sixty'),\n(15239, 13693, 'thirteen thousand six hundred ninety-three'),\n(15240, 878, 'eight hundred seventy-eight'),\n(15241, 11061, 'eleven thousand sixty-one'),\n(15242, 72986, 'seventy-two thousand nine hundred eighty-six'),\n(15243, 43988, 'forty-three thousand nine hundred eighty-eight'),\n(15244, 62841, 'sixty-two thousand eight hundred forty-one'),\n(15245, 841, 'eight hundred forty-one'),\n(15246, 98046, 'ninety-eight thousand forty-six'),\n(15247, 27528, 'twenty-seven thousand five hundred twenty-eight'),\n(15248, 22751, 'twenty-two thousand seven hundred fifty-one'),\n(15249, 61470, 'sixty-one thousand four hundred seventy'),\n(15250, 51588, 'fifty-one thousand five hundred eighty-eight'),\n(15251, 4367, 'four thousand three hundred sixty-seven'),\n(15252, 77357, 'seventy-seven thousand three hundred fifty-seven'),\n(15253, 23607, 'twenty-three thousand six hundred seven'),\n(15254, 86336, 'eighty-six thousand three hundred thirty-six'),\n(15255, 26424, 'twenty-six thousand four hundred twenty-four'),\n(15256, 66565, 'sixty-six thousand five hundred sixty-five'),\n(15257, 54626, 'fifty-four thousand six hundred twenty-six'),\n(15258, 70193, 'seventy thousand one hundred ninety-three'),\n(15259, 61363, 'sixty-one thousand three hundred sixty-three'),\n(15260, 62408, 'sixty-two thousand four hundred eight'),\n(15261, 98196, 'ninety-eight thousand one hundred ninety-six'),\n(15262, 73709, 'seventy-three thousand seven hundred nine'),\n(15263, 77095, 'seventy-seven thousand ninety-five'),\n(15264, 68693, 'sixty-eight thousand six hundred ninety-three'),\n(15265, 18144, 'eighteen thousand one hundred forty-four'),\n(15266, 35983, 'thirty-five thousand nine hundred eighty-three'),\n(15267, 25990, 'twenty-five thousand nine hundred ninety'),\n(15268, 57263, 'fifty-seven thousand two hundred sixty-three'),\n(15269, 10204, 'ten thousand two hundred four'),\n(15270, 18355, 'eighteen thousand three hundred fifty-five'),\n(15271, 23545, 'twenty-three thousand five hundred forty-five'),\n(15272, 94662, 'ninety-four thousand six hundred sixty-two'),\n(15273, 71068, 'seventy-one thousand sixty-eight'),\n(15274, 38716, 'thirty-eight thousand seven hundred sixteen'),\n(15275, 61144, 'sixty-one thousand one hundred forty-four'),\n(15276, 56982, 'fifty-six thousand nine hundred eighty-two'),\n(15277, 79055, 'seventy-nine thousand fifty-five'),\n(15278, 11257, 'eleven thousand two hundred fifty-seven'),\n(15279, 48219, 'forty-eight thousand two hundred nineteen'),\n(15280, 25441, 'twenty-five thousand four hundred forty-one'),\n(15281, 27190, 'twenty-seven thousand one hundred ninety'),\n(15282, 77629, 'seventy-seven thousand six hundred twenty-nine'),\n(15283, 17797, 'seventeen thousand seven hundred ninety-seven'),\n(15284, 29156, 'twenty-nine thousand one hundred fifty-six'),\n(15285, 88189, 'eighty-eight thousand one hundred eighty-nine'),\n(15286, 38575, 'thirty-eight thousand five hundred seventy-five'),\n(15287, 92783, 'ninety-two thousand seven hundred eighty-three'),\n(15288, 5750, 'five thousand seven hundred fifty'),\n(15289, 22181, 'twenty-two thousand one hundred eighty-one'),\n(15290, 75427, 'seventy-five thousand four hundred twenty-seven'),\n(15291, 9216, 'nine thousand two hundred sixteen'),\n(15292, 75943, 'seventy-five thousand nine hundred forty-three'),\n(15293, 3790, 'three thousand seven hundred ninety'),\n(15294, 63545, 'sixty-three thousand five hundred forty-five'),\n(15295, 74078, 'seventy-four thousand seventy-eight'),\n(15296, 47475, 'forty-seven thousand four hundred seventy-five'),\n(15297, 12016, 'twelve thousand sixteen'),\n(15298, 17015, 'seventeen thousand fifteen'),\n(15299, 99357, 'ninety-nine thousand three hundred fifty-seven'),\n(15300, 43847, 'forty-three thousand eight hundred forty-seven'),\n(15301, 96848, 'ninety-six thousand eight hundred forty-eight'),\n(15302, 10492, 'ten thousand four hundred ninety-two'),\n(15303, 37781, 'thirty-seven thousand seven hundred eighty-one'),\n(15304, 4824, 'four thousand eight hundred twenty-four'),\n(15305, 66562, 'sixty-six thousand five hundred sixty-two'),\n(15306, 4622, 'four thousand six hundred twenty-two'),\n(15307, 79546, 'seventy-nine thousand five hundred forty-six'),\n(15308, 90717, 'ninety thousand seven hundred seventeen'),\n(15309, 36082, 'thirty-six thousand eighty-two'),\n(15310, 18416, 'eighteen thousand four hundred sixteen'),\n(15311, 8373, 'eight thousand three hundred seventy-three'),\n(15312, 38161, 'thirty-eight thousand one hundred sixty-one'),\n(15313, 67157, 'sixty-seven thousand one hundred fifty-seven'),\n(15314, 1751, 'one thousand seven hundred fifty-one'),\n(15315, 30673, 'thirty thousand six hundred seventy-three'),\n(15316, 43865, 'forty-three thousand eight hundred sixty-five'),\n(15317, 73724, 'seventy-three thousand seven hundred twenty-four'),\n(15318, 22982, 'twenty-two thousand nine hundred eighty-two'),\n(15319, 82190, 'eighty-two thousand one hundred ninety'),\n(15320, 42632, 'forty-two thousand six hundred thirty-two'),\n(15321, 31231, 'thirty-one thousand two hundred thirty-one'),\n(15322, 19622, 'nineteen thousand six hundred twenty-two'),\n(15323, 27495, 'twenty-seven thousand four hundred ninety-five'),\n(15324, 5385, 'five thousand three hundred eighty-five'),\n(15325, 94076, 'ninety-four thousand seventy-six'),\n(15326, 44504, 'forty-four thousand five hundred four'),\n(15327, 96536, 'ninety-six thousand five hundred thirty-six'),\n(15328, 42248, 'forty-two thousand two hundred forty-eight'),\n(15329, 29206, 'twenty-nine thousand two hundred six'),\n(15330, 75455, 'seventy-five thousand four hundred fifty-five'),\n(15331, 87854, 'eighty-seven thousand eight hundred fifty-four'),\n(15332, 90815, 'ninety thousand eight hundred fifteen'),\n(15333, 94246, 'ninety-four thousand two hundred forty-six'),\n(15334, 76187, 'seventy-six thousand one hundred eighty-seven'),\n(15335, 28407, 'twenty-eight thousand four hundred seven'),\n(15336, 44191, 'forty-four thousand one hundred ninety-one'),\n(15337, 3637, 'three thousand six hundred thirty-seven'),\n(15338, 46981, 'forty-six thousand nine hundred eighty-one'),\n(15339, 73004, 'seventy-three thousand four'),\n(15340, 7098, 'seven thousand ninety-eight'),\n(15341, 147, 'one hundred forty-seven'),\n(15342, 90561, 'ninety thousand five hundred sixty-one'),\n(15343, 20089, 'twenty thousand eighty-nine'),\n(15344, 37149, 'thirty-seven thousand one hundred forty-nine'),\n(15345, 7301, 'seven thousand three hundred one'),\n(15346, 59134, 'fifty-nine thousand one hundred thirty-four'),\n(15347, 65023, 'sixty-five thousand twenty-three'),\n(15348, 90823, 'ninety thousand eight hundred twenty-three'),\n(15349, 54893, 'fifty-four thousand eight hundred ninety-three'),\n(15350, 58271, 'fifty-eight thousand two hundred seventy-one'),\n(15351, 92604, 'ninety-two thousand six hundred four'),\n(15352, 50255, 'fifty thousand two hundred fifty-five'),\n(15353, 84628, 'eighty-four thousand six hundred twenty-eight'),\n(15354, 65434, 'sixty-five thousand four hundred thirty-four'),\n(15355, 17633, 'seventeen thousand six hundred thirty-three'),\n(15356, 92894, 'ninety-two thousand eight hundred ninety-four'),\n(15357, 48623, 'forty-eight thousand six hundred twenty-three'),\n(15358, 87876, 'eighty-seven thousand eight hundred seventy-six'),\n(15359, 62902, 'sixty-two thousand nine hundred two'),\n(15360, 43327, 'forty-three thousand three hundred twenty-seven'),\n(15361, 67439, 'sixty-seven thousand four hundred thirty-nine'),\n(15362, 12642, 'twelve thousand six hundred forty-two'),\n(15363, 24981, 'twenty-four thousand nine hundred eighty-one'),\n(15364, 28583, 'twenty-eight thousand five hundred eighty-three'),\n(15365, 60299, 'sixty thousand two hundred ninety-nine'),\n(15366, 89200, 'eighty-nine thousand two hundred'),\n(15367, 8050, 'eight thousand fifty'),\n(15368, 11423, 'eleven thousand four hundred twenty-three'),\n(15369, 62777, 'sixty-two thousand seven hundred seventy-seven'),\n(15370, 89835, 'eighty-nine thousand eight hundred thirty-five'),\n(15371, 25405, 'twenty-five thousand four hundred five'),\n(15372, 30195, 'thirty thousand one hundred ninety-five'),\n(15373, 50933, 'fifty thousand nine hundred thirty-three'),\n(15374, 39237, 'thirty-nine thousand two hundred thirty-seven'),\n(15375, 11106, 'eleven thousand one hundred six'),\n(15376, 97238, 'ninety-seven thousand two hundred thirty-eight'),\n(15377, 34956, 'thirty-four thousand nine hundred fifty-six'),\n(15378, 83366, 'eighty-three thousand three hundred sixty-six'),\n(15379, 34877, 'thirty-four thousand eight hundred seventy-seven'),\n(15380, 87942, 'eighty-seven thousand nine hundred forty-two'),\n(15381, 22663, 'twenty-two thousand six hundred sixty-three'),\n(15382, 25887, 'twenty-five thousand eight hundred eighty-seven'),\n(15383, 30447, 'thirty thousand four hundred forty-seven'),\n(15384, 19410, 'nineteen thousand four hundred ten'),\n(15385, 59787, 'fifty-nine thousand seven hundred eighty-seven'),\n(15386, 77755, 'seventy-seven thousand seven hundred fifty-five'),\n(15387, 67147, 'sixty-seven thousand one hundred forty-seven'),\n(15388, 69423, 'sixty-nine thousand four hundred twenty-three'),\n(15389, 43649, 'forty-three thousand six hundred forty-nine'),\n(15390, 74525, 'seventy-four thousand five hundred twenty-five'),\n(15391, 20720, 'twenty thousand seven hundred twenty'),\n(15392, 24305, 'twenty-four thousand three hundred five'),\n(15393, 92612, 'ninety-two thousand six hundred twelve'),\n(15394, 10940, 'ten thousand nine hundred forty'),\n(15395, 18822, 'eighteen thousand eight hundred twenty-two'),\n(15396, 18216, 'eighteen thousand two hundred sixteen'),\n(15397, 20286, 'twenty thousand two hundred eighty-six'),\n(15398, 89727, 'eighty-nine thousand seven hundred twenty-seven'),\n(15399, 48711, 'forty-eight thousand seven hundred eleven'),\n(15400, 96866, 'ninety-six thousand eight hundred sixty-six'),\n(15401, 52295, 'fifty-two thousand two hundred ninety-five'),\n(15402, 55393, 'fifty-five thousand three hundred ninety-three'),\n(15403, 65285, 'sixty-five thousand two hundred eighty-five'),\n(15404, 70250, 'seventy thousand two hundred fifty'),\n(15405, 93421, 'ninety-three thousand four hundred twenty-one'),\n(15406, 73473, 'seventy-three thousand four hundred seventy-three'),\n(15407, 99667, 'ninety-nine thousand six hundred sixty-seven'),\n(15408, 31507, 'thirty-one thousand five hundred seven'),\n(15409, 93969, 'ninety-three thousand nine hundred sixty-nine'),\n(15410, 24546, 'twenty-four thousand five hundred forty-six'),\n(15411, 50689, 'fifty thousand six hundred eighty-nine'),\n(15412, 95878, 'ninety-five thousand eight hundred seventy-eight'),\n(15413, 40319, 'forty thousand three hundred nineteen'),\n(15414, 42772, 'forty-two thousand seven hundred seventy-two'),\n(15415, 22352, 'twenty-two thousand three hundred fifty-two'),\n(15416, 11198, 'eleven thousand one hundred ninety-eight'),\n(15417, 98627, 'ninety-eight thousand six hundred twenty-seven'),\n(15418, 54516, 'fifty-four thousand five hundred sixteen'),\n(15419, 46274, 'forty-six thousand two hundred seventy-four'),\n(15420, 43755, 'forty-three thousand seven hundred fifty-five'),\n(15421, 50050, 'fifty thousand fifty'),\n(15422, 11996, 'eleven thousand nine hundred ninety-six'),\n(15423, 99752, 'ninety-nine thousand seven hundred fifty-two'),\n(15424, 1868, 'one thousand eight hundred sixty-eight'),\n(15425, 55366, 'fifty-five thousand three hundred sixty-six'),\n(15426, 29855, 'twenty-nine thousand eight hundred fifty-five'),\n(15427, 72464, 'seventy-two thousand four hundred sixty-four'),\n(15428, 60158, 'sixty thousand one hundred fifty-eight'),\n(15429, 39867, 'thirty-nine thousand eight hundred sixty-seven'),\n(15430, 92860, 'ninety-two thousand eight hundred sixty'),\n(15431, 61580, 'sixty-one thousand five hundred eighty'),\n(15432, 6212, 'six thousand two hundred twelve'),\n(15433, 82828, 'eighty-two thousand eight hundred twenty-eight'),\n(15434, 62919, 'sixty-two thousand nine hundred nineteen'),\n(15435, 15465, 'fifteen thousand four hundred sixty-five'),\n(15436, 93209, 'ninety-three thousand two hundred nine'),\n(15437, 53891, 'fifty-three thousand eight hundred ninety-one'),\n(15438, 67834, 'sixty-seven thousand eight hundred thirty-four'),\n(15439, 82459, 'eighty-two thousand four hundred fifty-nine'),\n(15440, 42603, 'forty-two thousand six hundred three'),\n(15441, 90595, 'ninety thousand five hundred ninety-five'),\n(15442, 93731, 'ninety-three thousand seven hundred thirty-one'),\n(15443, 96385, 'ninety-six thousand three hundred eighty-five'),\n(15444, 93702, 'ninety-three thousand seven hundred two'),\n(15445, 47292, 'forty-seven thousand two hundred ninety-two'),\n(15446, 84439, 'eighty-four thousand four hundred thirty-nine'),\n(15447, 52088, 'fifty-two thousand eighty-eight'),\n(15448, 63151, 'sixty-three thousand one hundred fifty-one'),\n(15449, 34454, 'thirty-four thousand four hundred fifty-four'),\n(15450, 50805, 'fifty thousand eight hundred five'),\n(15451, 57924, 'fifty-seven thousand nine hundred twenty-four'),\n(15452, 54111, 'fifty-four thousand one hundred eleven'),\n(15453, 59615, 'fifty-nine thousand six hundred fifteen'),\n(15454, 67802, 'sixty-seven thousand eight hundred two'),\n(15455, 47508, 'forty-seven thousand five hundred eight'),\n(15456, 59560, 'fifty-nine thousand five hundred sixty'),\n(15457, 63565, 'sixty-three thousand five hundred sixty-five'),\n(15458, 77048, 'seventy-seven thousand forty-eight'),\n(15459, 51269, 'fifty-one thousand two hundred sixty-nine'),\n(15460, 83568, 'eighty-three thousand five hundred sixty-eight'),\n(15461, 68846, 'sixty-eight thousand eight hundred forty-six'),\n(15462, 67516, 'sixty-seven thousand five hundred sixteen'),\n(15463, 19922, 'nineteen thousand nine hundred twenty-two'),\n(15464, 52611, 'fifty-two thousand six hundred eleven'),\n(15465, 24338, 'twenty-four thousand three hundred thirty-eight'),\n(15466, 64661, 'sixty-four thousand six hundred sixty-one'),\n(15467, 95295, 'ninety-five thousand two hundred ninety-five'),\n(15468, 3510, 'three thousand five hundred ten'),\n(15469, 60057, 'sixty thousand fifty-seven'),\n(15470, 39376, 'thirty-nine thousand three hundred seventy-six'),\n(15471, 72066, 'seventy-two thousand sixty-six'),\n(15472, 24803, 'twenty-four thousand eight hundred three'),\n(15473, 37056, 'thirty-seven thousand fifty-six'),\n(15474, 51195, 'fifty-one thousand one hundred ninety-five'),\n(15475, 98889, 'ninety-eight thousand eight hundred eighty-nine'),\n(15476, 75488, 'seventy-five thousand four hundred eighty-eight'),\n(15477, 42469, 'forty-two thousand four hundred sixty-nine'),\n(15478, 49150, 'forty-nine thousand one hundred fifty'),\n(15479, 85066, 'eighty-five thousand sixty-six'),\n(15480, 54015, 'fifty-four thousand fifteen'),\n(15481, 81555, 'eighty-one thousand five hundred fifty-five'),\n(15482, 97357, 'ninety-seven thousand three hundred fifty-seven'),\n(15483, 66744, 'sixty-six thousand seven hundred forty-four'),\n(15484, 32806, 'thirty-two thousand eight hundred six'),\n(15485, 11632, 'eleven thousand six hundred thirty-two'),\n(15486, 96839, 'ninety-six thousand eight hundred thirty-nine'),\n(15487, 88098, 'eighty-eight thousand ninety-eight'),\n(15488, 60489, 'sixty thousand four hundred eighty-nine'),\n(15489, 22812, 'twenty-two thousand eight hundred twelve'),\n(15490, 52056, 'fifty-two thousand fifty-six'),\n(15491, 15199, 'fifteen thousand one hundred ninety-nine'),\n(15492, 45295, 'forty-five thousand two hundred ninety-five'),\n(15493, 18710, 'eighteen thousand seven hundred ten'),\n(15494, 1270, 'one thousand two hundred seventy'),\n(15495, 31235, 'thirty-one thousand two hundred thirty-five'),\n(15496, 31310, 'thirty-one thousand three hundred ten'),\n(15497, 69567, 'sixty-nine thousand five hundred sixty-seven'),\n(15498, 7552, 'seven thousand five hundred fifty-two'),\n(15499, 81760, 'eighty-one thousand seven hundred sixty'),\n(15500, 24472, 'twenty-four thousand four hundred seventy-two'),\n(15501, 12944, 'twelve thousand nine hundred forty-four'),\n(15502, 15917, 'fifteen thousand nine hundred seventeen'),\n(15503, 59459, 'fifty-nine thousand four hundred fifty-nine'),\n(15504, 81424, 'eighty-one thousand four hundred twenty-four'),\n(15505, 77348, 'seventy-seven thousand three hundred forty-eight'),\n(15506, 99429, 'ninety-nine thousand four hundred twenty-nine'),\n(15507, 25494, 'twenty-five thousand four hundred ninety-four'),\n(15508, 65411, 'sixty-five thousand four hundred eleven'),\n(15509, 93643, 'ninety-three thousand six hundred forty-three'),\n(15510, 29963, 'twenty-nine thousand nine hundred sixty-three'),\n(15511, 83596, 'eighty-three thousand five hundred ninety-six'),\n(15512, 64819, 'sixty-four thousand eight hundred nineteen'),\n(15513, 68713, 'sixty-eight thousand seven hundred thirteen'),\n(15514, 37885, 'thirty-seven thousand eight hundred eighty-five'),\n(15515, 41922, 'forty-one thousand nine hundred twenty-two'),\n(15516, 15729, 'fifteen thousand seven hundred twenty-nine'),\n(15517, 77893, 'seventy-seven thousand eight hundred ninety-three'),\n(15518, 46203, 'forty-six thousand two hundred three'),\n(15519, 46226, 'forty-six thousand two hundred twenty-six'),\n(15520, 97826, 'ninety-seven thousand eight hundred twenty-six'),\n(15521, 26589, 'twenty-six thousand five hundred eighty-nine'),\n(15522, 83990, 'eighty-three thousand nine hundred ninety'),\n(15523, 72646, 'seventy-two thousand six hundred forty-six'),\n(15524, 2105, 'two thousand one hundred five'),\n(15525, 22161, 'twenty-two thousand one hundred sixty-one'),\n(15526, 84899, 'eighty-four thousand eight hundred ninety-nine'),\n(15527, 2102, 'two thousand one hundred two'),\n(15528, 36255, 'thirty-six thousand two hundred fifty-five'),\n(15529, 25618, 'twenty-five thousand six hundred eighteen'),\n(15530, 14837, 'fourteen thousand eight hundred thirty-seven'),\n(15531, 87808, 'eighty-seven thousand eight hundred eight'),\n(15532, 98142, 'ninety-eight thousand one hundred forty-two'),\n(15533, 36292, 'thirty-six thousand two hundred ninety-two'),\n(15534, 3279, 'three thousand two hundred seventy-nine'),\n(15535, 78626, 'seventy-eight thousand six hundred twenty-six'),\n(15536, 26768, 'twenty-six thousand seven hundred sixty-eight'),\n(15537, 80691, 'eighty thousand six hundred ninety-one'),\n(15538, 50597, 'fifty thousand five hundred ninety-seven'),\n(15539, 90986, 'ninety thousand nine hundred eighty-six'),\n(15540, 52652, 'fifty-two thousand six hundred fifty-two'),\n(15541, 52101, 'fifty-two thousand one hundred one'),\n(15542, 41309, 'forty-one thousand three hundred nine'),\n(15543, 68436, 'sixty-eight thousand four hundred thirty-six'),\n(15544, 61824, 'sixty-one thousand eight hundred twenty-four'),\n(15545, 21345, 'twenty-one thousand three hundred forty-five'),\n(15546, 17744, 'seventeen thousand seven hundred forty-four'),\n(15547, 16263, 'sixteen thousand two hundred sixty-three'),\n(15548, 94070, 'ninety-four thousand seventy'),\n(15549, 48117, 'forty-eight thousand one hundred seventeen'),\n(15550, 59852, 'fifty-nine thousand eight hundred fifty-two'),\n(15551, 90850, 'ninety thousand eight hundred fifty'),\n(15552, 60815, 'sixty thousand eight hundred fifteen'),\n(15553, 51835, 'fifty-one thousand eight hundred thirty-five'),\n(15554, 55658, 'fifty-five thousand six hundred fifty-eight'),\n(15555, 98621, 'ninety-eight thousand six hundred twenty-one'),\n(15556, 55698, 'fifty-five thousand six hundred ninety-eight'),\n(15557, 37635, 'thirty-seven thousand six hundred thirty-five'),\n(15558, 64378, 'sixty-four thousand three hundred seventy-eight'),\n(15559, 89291, 'eighty-nine thousand two hundred ninety-one'),\n(15560, 88040, 'eighty-eight thousand forty'),\n(15561, 76340, 'seventy-six thousand three hundred forty'),\n(15562, 47161, 'forty-seven thousand one hundred sixty-one'),\n(15563, 28387, 'twenty-eight thousand three hundred eighty-seven'),\n(15564, 29715, 'twenty-nine thousand seven hundred fifteen'),\n(15565, 14403, 'fourteen thousand four hundred three'),\n(15566, 9579, 'nine thousand five hundred seventy-nine'),\n(15567, 4936, 'four thousand nine hundred thirty-six'),\n(15568, 31298, 'thirty-one thousand two hundred ninety-eight'),\n(15569, 1756, 'one thousand seven hundred fifty-six'),\n(15570, 92144, 'ninety-two thousand one hundred forty-four'),\n(15571, 44931, 'forty-four thousand nine hundred thirty-one'),\n(15572, 16544, 'sixteen thousand five hundred forty-four'),\n(15573, 79428, 'seventy-nine thousand four hundred twenty-eight'),\n(15574, 11404, 'eleven thousand four hundred four'),\n(15575, 31449, 'thirty-one thousand four hundred forty-nine'),\n(15576, 4270, 'four thousand two hundred seventy'),\n(15577, 45029, 'forty-five thousand twenty-nine'),\n(15578, 39026, 'thirty-nine thousand twenty-six'),\n(15579, 4605, 'four thousand six hundred five'),\n(15580, 5860, 'five thousand eight hundred sixty'),\n(15581, 64363, 'sixty-four thousand three hundred sixty-three'),\n(15582, 58297, 'fifty-eight thousand two hundred ninety-seven'),\n(15583, 33459, 'thirty-three thousand four hundred fifty-nine'),\n(15584, 59193, 'fifty-nine thousand one hundred ninety-three'),\n(15585, 81536, 'eighty-one thousand five hundred thirty-six'),\n(15586, 76947, 'seventy-six thousand nine hundred forty-seven'),\n(15587, 44471, 'forty-four thousand four hundred seventy-one'),\n(15588, 69851, 'sixty-nine thousand eight hundred fifty-one'),\n(15589, 45895, 'forty-five thousand eight hundred ninety-five'),\n(15590, 92759, 'ninety-two thousand seven hundred fifty-nine'),\n(15591, 40856, 'forty thousand eight hundred fifty-six'),\n(15592, 11506, 'eleven thousand five hundred six'),\n(15593, 5862, 'five thousand eight hundred sixty-two'),\n(15594, 70418, 'seventy thousand four hundred eighteen'),\n(15595, 29836, 'twenty-nine thousand eight hundred thirty-six'),\n(15596, 5514, 'five thousand five hundred fourteen'),\n(15597, 57932, 'fifty-seven thousand nine hundred thirty-two'),\n(15598, 84976, 'eighty-four thousand nine hundred seventy-six'),\n(15599, 68439, 'sixty-eight thousand four hundred thirty-nine'),\n(15600, 99490, 'ninety-nine thousand four hundred ninety'),\n(15601, 94135, 'ninety-four thousand one hundred thirty-five'),\n(15602, 30823, 'thirty thousand eight hundred twenty-three'),\n(15603, 27451, 'twenty-seven thousand four hundred fifty-one'),\n(15604, 71974, 'seventy-one thousand nine hundred seventy-four'),\n(15605, 34816, 'thirty-four thousand eight hundred sixteen'),\n(15606, 57497, 'fifty-seven thousand four hundred ninety-seven'),\n(15607, 43596, 'forty-three thousand five hundred ninety-six'),\n(15608, 17797, 'seventeen thousand seven hundred ninety-seven'),\n(15609, 87723, 'eighty-seven thousand seven hundred twenty-three'),\n(15610, 44052, 'forty-four thousand fifty-two'),\n(15611, 71816, 'seventy-one thousand eight hundred sixteen'),\n(15612, 63176, 'sixty-three thousand one hundred seventy-six'),\n(15613, 61880, 'sixty-one thousand eight hundred eighty'),\n(15614, 11725, 'eleven thousand seven hundred twenty-five'),\n(15615, 18665, 'eighteen thousand six hundred sixty-five'),\n(15616, 18215, 'eighteen thousand two hundred fifteen'),\n(15617, 76647, 'seventy-six thousand six hundred forty-seven'),\n(15618, 94777, 'ninety-four thousand seven hundred seventy-seven'),\n(15619, 12571, 'twelve thousand five hundred seventy-one'),\n(15620, 17450, 'seventeen thousand four hundred fifty'),\n(15621, 69675, 'sixty-nine thousand six hundred seventy-five'),\n(15622, 3555, 'three thousand five hundred fifty-five'),\n(15623, 63435, 'sixty-three thousand four hundred thirty-five'),\n(15624, 64818, 'sixty-four thousand eight hundred eighteen'),\n(15625, 11605, 'eleven thousand six hundred five'),\n(15626, 7872, 'seven thousand eight hundred seventy-two'),\n(15627, 61547, 'sixty-one thousand five hundred forty-seven'),\n(15628, 43116, 'forty-three thousand one hundred sixteen'),\n(15629, 48788, 'forty-eight thousand seven hundred eighty-eight'),\n(15630, 79748, 'seventy-nine thousand seven hundred forty-eight'),\n(15631, 53201, 'fifty-three thousand two hundred one'),\n(15632, 39735, 'thirty-nine thousand seven hundred thirty-five'),\n(15633, 62759, 'sixty-two thousand seven hundred fifty-nine'),\n(15634, 42749, 'forty-two thousand seven hundred forty-nine'),\n(15635, 35018, 'thirty-five thousand eighteen'),\n(15636, 68053, 'sixty-eight thousand fifty-three'),\n(15637, 9848, 'nine thousand eight hundred forty-eight'),\n(15638, 86110, 'eighty-six thousand one hundred ten'),\n(15639, 17467, 'seventeen thousand four hundred sixty-seven'),\n(15640, 79544, 'seventy-nine thousand five hundred forty-four'),\n(15641, 25175, 'twenty-five thousand one hundred seventy-five'),\n(15642, 85717, 'eighty-five thousand seven hundred seventeen'),\n(15643, 48374, 'forty-eight thousand three hundred seventy-four'),\n(15644, 38063, 'thirty-eight thousand sixty-three'),\n(15645, 19210, 'nineteen thousand two hundred ten'),\n(15646, 96865, 'ninety-six thousand eight hundred sixty-five'),\n(15647, 29209, 'twenty-nine thousand two hundred nine'),\n(15648, 81531, 'eighty-one thousand five hundred thirty-one'),\n(15649, 32174, 'thirty-two thousand one hundred seventy-four'),\n(15650, 4973, 'four thousand nine hundred seventy-three'),\n(15651, 49262, 'forty-nine thousand two hundred sixty-two'),\n(15652, 95542, 'ninety-five thousand five hundred forty-two'),\n(15653, 88219, 'eighty-eight thousand two hundred nineteen'),\n(15654, 16996, 'sixteen thousand nine hundred ninety-six'),\n(15655, 63924, 'sixty-three thousand nine hundred twenty-four'),\n(15656, 69687, 'sixty-nine thousand six hundred eighty-seven'),\n(15657, 20597, 'twenty thousand five hundred ninety-seven'),\n(15658, 31839, 'thirty-one thousand eight hundred thirty-nine'),\n(15659, 11766, 'eleven thousand seven hundred sixty-six'),\n(15660, 91155, 'ninety-one thousand one hundred fifty-five'),\n(15661, 4188, 'four thousand one hundred eighty-eight'),\n(15662, 66933, 'sixty-six thousand nine hundred thirty-three'),\n(15663, 72850, 'seventy-two thousand eight hundred fifty'),\n(15664, 80618, 'eighty thousand six hundred eighteen'),\n(15665, 21622, 'twenty-one thousand six hundred twenty-two'),\n(15666, 37043, 'thirty-seven thousand forty-three'),\n(15667, 12766, 'twelve thousand seven hundred sixty-six'),\n(15668, 43165, 'forty-three thousand one hundred sixty-five'),\n(15669, 85152, 'eighty-five thousand one hundred fifty-two'),\n(15670, 36120, 'thirty-six thousand one hundred twenty'),\n(15671, 65436, 'sixty-five thousand four hundred thirty-six'),\n(15672, 19332, 'nineteen thousand three hundred thirty-two'),\n(15673, 49216, 'forty-nine thousand two hundred sixteen'),\n(15674, 61322, 'sixty-one thousand three hundred twenty-two'),\n(15675, 41147, 'forty-one thousand one hundred forty-seven'),\n(15676, 63864, 'sixty-three thousand eight hundred sixty-four'),\n(15677, 19328, 'nineteen thousand three hundred twenty-eight'),\n(15678, 92877, 'ninety-two thousand eight hundred seventy-seven'),\n(15679, 42696, 'forty-two thousand six hundred ninety-six'),\n(15680, 89108, 'eighty-nine thousand one hundred eight'),\n(15681, 22031, 'twenty-two thousand thirty-one'),\n(15682, 39057, 'thirty-nine thousand fifty-seven'),\n(15683, 58551, 'fifty-eight thousand five hundred fifty-one'),\n(15684, 44747, 'forty-four thousand seven hundred forty-seven'),\n(15685, 32329, 'thirty-two thousand three hundred twenty-nine'),\n(15686, 52888, 'fifty-two thousand eight hundred eighty-eight'),\n(15687, 16704, 'sixteen thousand seven hundred four'),\n(15688, 41197, 'forty-one thousand one hundred ninety-seven'),\n(15689, 46288, 'forty-six thousand two hundred eighty-eight'),\n(15690, 72820, 'seventy-two thousand eight hundred twenty'),\n(15691, 24914, 'twenty-four thousand nine hundred fourteen'),\n(15692, 40832, 'forty thousand eight hundred thirty-two'),\n(15693, 65655, 'sixty-five thousand six hundred fifty-five'),\n(15694, 45081, 'forty-five thousand eighty-one'),\n(15695, 27034, 'twenty-seven thousand thirty-four'),\n(15696, 34997, 'thirty-four thousand nine hundred ninety-seven'),\n(15697, 37604, 'thirty-seven thousand six hundred four'),\n(15698, 91329, 'ninety-one thousand three hundred twenty-nine'),\n(15699, 81517, 'eighty-one thousand five hundred seventeen'),\n(15700, 55791, 'fifty-five thousand seven hundred ninety-one'),\n(15701, 43675, 'forty-three thousand six hundred seventy-five'),\n(15702, 97901, 'ninety-seven thousand nine hundred one'),\n(15703, 21633, 'twenty-one thousand six hundred thirty-three'),\n(15704, 53911, 'fifty-three thousand nine hundred eleven'),\n(15705, 32666, 'thirty-two thousand six hundred sixty-six'),\n(15706, 66059, 'sixty-six thousand fifty-nine'),\n(15707, 93468, 'ninety-three thousand four hundred sixty-eight'),\n(15708, 69825, 'sixty-nine thousand eight hundred twenty-five'),\n(15709, 59698, 'fifty-nine thousand six hundred ninety-eight'),\n(15710, 26718, 'twenty-six thousand seven hundred eighteen'),\n(15711, 43706, 'forty-three thousand seven hundred six'),\n(15712, 94219, 'ninety-four thousand two hundred nineteen'),\n(15713, 13486, 'thirteen thousand four hundred eighty-six'),\n(15714, 67202, 'sixty-seven thousand two hundred two'),\n(15715, 74060, 'seventy-four thousand sixty'),\n(15716, 77731, 'seventy-seven thousand seven hundred thirty-one'),\n(15717, 77732, 'seventy-seven thousand seven hundred thirty-two'),\n(15718, 28718, 'twenty-eight thousand seven hundred eighteen'),\n(15719, 96642, 'ninety-six thousand six hundred forty-two'),\n(15720, 54665, 'fifty-four thousand six hundred sixty-five'),\n(15721, 64256, 'sixty-four thousand two hundred fifty-six'),\n(15722, 52600, 'fifty-two thousand six hundred'),\n(15723, 98974, 'ninety-eight thousand nine hundred seventy-four'),\n(15724, 69925, 'sixty-nine thousand nine hundred twenty-five'),\n(15725, 42561, 'forty-two thousand five hundred sixty-one'),\n(15726, 91144, 'ninety-one thousand one hundred forty-four'),\n(15727, 65572, 'sixty-five thousand five hundred seventy-two'),\n(15728, 31857, 'thirty-one thousand eight hundred fifty-seven'),\n(15729, 99414, 'ninety-nine thousand four hundred fourteen'),\n(15730, 92586, 'ninety-two thousand five hundred eighty-six'),\n(15731, 4229, 'four thousand two hundred twenty-nine'),\n(15732, 92992, 'ninety-two thousand nine hundred ninety-two'),\n(15733, 25972, 'twenty-five thousand nine hundred seventy-two'),\n(15734, 59536, 'fifty-nine thousand five hundred thirty-six'),\n(15735, 29525, 'twenty-nine thousand five hundred twenty-five'),\n(15736, 58306, 'fifty-eight thousand three hundred six'),\n(15737, 38178, 'thirty-eight thousand one hundred seventy-eight'),\n(15738, 24258, 'twenty-four thousand two hundred fifty-eight'),\n(15739, 4210, 'four thousand two hundred ten'),\n(15740, 37326, 'thirty-seven thousand three hundred twenty-six'),\n(15741, 48560, 'forty-eight thousand five hundred sixty'),\n(15742, 40522, 'forty thousand five hundred twenty-two'),\n(15743, 87111, 'eighty-seven thousand one hundred eleven'),\n(15744, 93856, 'ninety-three thousand eight hundred fifty-six'),\n(15745, 40944, 'forty thousand nine hundred forty-four'),\n(15746, 34745, 'thirty-four thousand seven hundred forty-five'),\n(15747, 91884, 'ninety-one thousand eight hundred eighty-four'),\n(15748, 33277, 'thirty-three thousand two hundred seventy-seven'),\n(15749, 98638, 'ninety-eight thousand six hundred thirty-eight'),\n(15750, 35790, 'thirty-five thousand seven hundred ninety'),\n(15751, 25847, 'twenty-five thousand eight hundred forty-seven'),\n(15752, 74394, 'seventy-four thousand three hundred ninety-four'),\n(15753, 75598, 'seventy-five thousand five hundred ninety-eight'),\n(15754, 93823, 'ninety-three thousand eight hundred twenty-three'),\n(15755, 43607, 'forty-three thousand six hundred seven'),\n(15756, 1996, 'one thousand nine hundred ninety-six'),\n(15757, 43585, 'forty-three thousand five hundred eighty-five'),\n(15758, 25498, 'twenty-five thousand four hundred ninety-eight'),\n(15759, 6693, 'six thousand six hundred ninety-three'),\n(15760, 5413, 'five thousand four hundred thirteen'),\n(15761, 98080, 'ninety-eight thousand eighty'),\n(15762, 90212, 'ninety thousand two hundred twelve'),\n(15763, 80334, 'eighty thousand three hundred thirty-four'),\n(15764, 66086, 'sixty-six thousand eighty-six'),\n(15765, 25179, 'twenty-five thousand one hundred seventy-nine'),\n(15766, 17907, 'seventeen thousand nine hundred seven'),\n(15767, 12495, 'twelve thousand four hundred ninety-five'),\n(15768, 65610, 'sixty-five thousand six hundred ten'),\n(15769, 21380, 'twenty-one thousand three hundred eighty'),\n(15770, 58684, 'fifty-eight thousand six hundred eighty-four'),\n(15771, 11175, 'eleven thousand one hundred seventy-five'),\n(15772, 23235, 'twenty-three thousand two hundred thirty-five'),\n(15773, 75318, 'seventy-five thousand three hundred eighteen'),\n(15774, 72185, 'seventy-two thousand one hundred eighty-five'),\n(15775, 72689, 'seventy-two thousand six hundred eighty-nine'),\n(15776, 92985, 'ninety-two thousand nine hundred eighty-five'),\n(15777, 59223, 'fifty-nine thousand two hundred twenty-three'),\n(15778, 4445, 'four thousand four hundred forty-five'),\n(15779, 83347, 'eighty-three thousand three hundred forty-seven'),\n(15780, 84382, 'eighty-four thousand three hundred eighty-two'),\n(15781, 40426, 'forty thousand four hundred twenty-six'),\n(15782, 26994, 'twenty-six thousand nine hundred ninety-four'),\n(15783, 2096, 'two thousand ninety-six'),\n(15784, 53119, 'fifty-three thousand one hundred nineteen'),\n(15785, 83994, 'eighty-three thousand nine hundred ninety-four'),\n(15786, 98841, 'ninety-eight thousand eight hundred forty-one'),\n(15787, 33638, 'thirty-three thousand six hundred thirty-eight'),\n(15788, 50104, 'fifty thousand one hundred four'),\n(15789, 4557, 'four thousand five hundred fifty-seven'),\n(15790, 71155, 'seventy-one thousand one hundred fifty-five'),\n(15791, 39118, 'thirty-nine thousand one hundred eighteen'),\n(15792, 92201, 'ninety-two thousand two hundred one'),\n(15793, 93141, 'ninety-three thousand one hundred forty-one'),\n(15794, 43521, 'forty-three thousand five hundred twenty-one'),\n(15795, 67315, 'sixty-seven thousand three hundred fifteen'),\n(15796, 78521, 'seventy-eight thousand five hundred twenty-one'),\n(15797, 24113, 'twenty-four thousand one hundred thirteen'),\n(15798, 68189, 'sixty-eight thousand one hundred eighty-nine'),\n(15799, 61865, 'sixty-one thousand eight hundred sixty-five'),\n(15800, 46165, 'forty-six thousand one hundred sixty-five'),\n(15801, 14418, 'fourteen thousand four hundred eighteen'),\n(15802, 61208, 'sixty-one thousand two hundred eight'),\n(15803, 99043, 'ninety-nine thousand forty-three'),\n(15804, 20662, 'twenty thousand six hundred sixty-two'),\n(15805, 21396, 'twenty-one thousand three hundred ninety-six'),\n(15806, 56437, 'fifty-six thousand four hundred thirty-seven'),\n(15807, 43992, 'forty-three thousand nine hundred ninety-two'),\n(15808, 84982, 'eighty-four thousand nine hundred eighty-two'),\n(15809, 62228, 'sixty-two thousand two hundred twenty-eight'),\n(15810, 68314, 'sixty-eight thousand three hundred fourteen'),\n(15811, 9211, 'nine thousand two hundred eleven'),\n(15812, 34369, 'thirty-four thousand three hundred sixty-nine'),\n(15813, 38328, 'thirty-eight thousand three hundred twenty-eight'),\n(15814, 42354, 'forty-two thousand three hundred fifty-four'),\n(15815, 95668, 'ninety-five thousand six hundred sixty-eight'),\n(15816, 17301, 'seventeen thousand three hundred one'),\n(15817, 99826, 'ninety-nine thousand eight hundred twenty-six'),\n(15818, 91260, 'ninety-one thousand two hundred sixty'),\n(15819, 16815, 'sixteen thousand eight hundred fifteen'),\n(15820, 49040, 'forty-nine thousand forty'),\n(15821, 17261, 'seventeen thousand two hundred sixty-one'),\n(15822, 10944, 'ten thousand nine hundred forty-four'),\n(15823, 96146, 'ninety-six thousand one hundred forty-six'),\n(15824, 80399, 'eighty thousand three hundred ninety-nine'),\n(15825, 15139, 'fifteen thousand one hundred thirty-nine'),\n(15826, 97864, 'ninety-seven thousand eight hundred sixty-four'),\n(15827, 70054, 'seventy thousand fifty-four'),\n(15828, 79807, 'seventy-nine thousand eight hundred seven'),\n(15829, 40204, 'forty thousand two hundred four'),\n(15830, 50679, 'fifty thousand six hundred seventy-nine'),\n(15831, 52273, 'fifty-two thousand two hundred seventy-three'),\n(15832, 68219, 'sixty-eight thousand two hundred nineteen'),\n(15833, 78023, 'seventy-eight thousand twenty-three'),\n(15834, 43634, 'forty-three thousand six hundred thirty-four'),\n(15835, 5211, 'five thousand two hundred eleven'),\n(15836, 39783, 'thirty-nine thousand seven hundred eighty-three'),\n(15837, 2122, 'two thousand one hundred twenty-two'),\n(15838, 83333, 'eighty-three thousand three hundred thirty-three'),\n(15839, 603, 'six hundred three'),\n(15840, 17301, 'seventeen thousand three hundred one'),\n(15841, 51333, 'fifty-one thousand three hundred thirty-three'),\n(15842, 96097, 'ninety-six thousand ninety-seven'),\n(15843, 98866, 'ninety-eight thousand eight hundred sixty-six'),\n(15844, 53335, 'fifty-three thousand three hundred thirty-five'),\n(15845, 96912, 'ninety-six thousand nine hundred twelve'),\n(15846, 64573, 'sixty-four thousand five hundred seventy-three'),\n(15847, 46755, 'forty-six thousand seven hundred fifty-five'),\n(15848, 798, 'seven hundred ninety-eight'),\n(15849, 64921, 'sixty-four thousand nine hundred twenty-one'),\n(15850, 33689, 'thirty-three thousand six hundred eighty-nine'),\n(15851, 39179, 'thirty-nine thousand one hundred seventy-nine'),\n(15852, 82318, 'eighty-two thousand three hundred eighteen'),\n(15853, 3840, 'three thousand eight hundred forty'),\n(15854, 55927, 'fifty-five thousand nine hundred twenty-seven'),\n(15855, 9776, 'nine thousand seven hundred seventy-six'),\n(15856, 65450, 'sixty-five thousand four hundred fifty'),\n(15857, 61984, 'sixty-one thousand nine hundred eighty-four'),\n(15858, 60152, 'sixty thousand one hundred fifty-two'),\n(15859, 66670, 'sixty-six thousand six hundred seventy'),\n(15860, 49118, 'forty-nine thousand one hundred eighteen'),\n(15861, 78227, 'seventy-eight thousand two hundred twenty-seven'),\n(15862, 744, 'seven hundred forty-four'),\n(15863, 11166, 'eleven thousand one hundred sixty-six'),\n(15864, 47097, 'forty-seven thousand ninety-seven'),\n(15865, 57886, 'fifty-seven thousand eight hundred eighty-six'),\n(15866, 87623, 'eighty-seven thousand six hundred twenty-three'),\n(15867, 97491, 'ninety-seven thousand four hundred ninety-one'),\n(15868, 30058, 'thirty thousand fifty-eight'),\n(15869, 1551, 'one thousand five hundred fifty-one'),\n(15870, 31301, 'thirty-one thousand three hundred one'),\n(15871, 84567, 'eighty-four thousand five hundred sixty-seven'),\n(15872, 77068, 'seventy-seven thousand sixty-eight'),\n(15873, 76172, 'seventy-six thousand one hundred seventy-two'),\n(15874, 36069, 'thirty-six thousand sixty-nine'),\n(15875, 93185, 'ninety-three thousand one hundred eighty-five'),\n(15876, 69686, 'sixty-nine thousand six hundred eighty-six'),\n(15877, 99235, 'ninety-nine thousand two hundred thirty-five'),\n(15878, 83211, 'eighty-three thousand two hundred eleven'),\n(15879, 76908, 'seventy-six thousand nine hundred eight'),\n(15880, 36042, 'thirty-six thousand forty-two'),\n(15881, 8421, 'eight thousand four hundred twenty-one'),\n(15882, 7780, 'seven thousand seven hundred eighty'),\n(15883, 77417, 'seventy-seven thousand four hundred seventeen'),\n(15884, 90133, 'ninety thousand one hundred thirty-three'),\n(15885, 78079, 'seventy-eight thousand seventy-nine'),\n(15886, 54830, 'fifty-four thousand eight hundred thirty'),\n(15887, 24977, 'twenty-four thousand nine hundred seventy-seven'),\n(15888, 70974, 'seventy thousand nine hundred seventy-four'),\n(15889, 77095, 'seventy-seven thousand ninety-five'),\n(15890, 51306, 'fifty-one thousand three hundred six'),\n(15891, 58044, 'fifty-eight thousand forty-four'),\n(15892, 88308, 'eighty-eight thousand three hundred eight'),\n(15893, 1551, 'one thousand five hundred fifty-one'),\n(15894, 29311, 'twenty-nine thousand three hundred eleven'),\n(15895, 79399, 'seventy-nine thousand three hundred ninety-nine'),\n(15896, 62728, 'sixty-two thousand seven hundred twenty-eight'),\n(15897, 27716, 'twenty-seven thousand seven hundred sixteen'),\n(15898, 91020, 'ninety-one thousand twenty'),\n(15899, 22067, 'twenty-two thousand sixty-seven'),\n(15900, 29936, 'twenty-nine thousand nine hundred thirty-six'),\n(15901, 81032, 'eighty-one thousand thirty-two'),\n(15902, 73073, 'seventy-three thousand seventy-three'),\n(15903, 17993, 'seventeen thousand nine hundred ninety-three'),\n(15904, 70475, 'seventy thousand four hundred seventy-five'),\n(15905, 91139, 'ninety-one thousand one hundred thirty-nine'),\n(15906, 93044, 'ninety-three thousand forty-four'),\n(15907, 56672, 'fifty-six thousand six hundred seventy-two'),\n(15908, 8574, 'eight thousand five hundred seventy-four'),\n(15909, 99775, 'ninety-nine thousand seven hundred seventy-five'),\n(15910, 98409, 'ninety-eight thousand four hundred nine'),\n(15911, 52874, 'fifty-two thousand eight hundred seventy-four'),\n(15912, 60677, 'sixty thousand six hundred seventy-seven'),\n(15913, 74511, 'seventy-four thousand five hundred eleven'),\n(15914, 38728, 'thirty-eight thousand seven hundred twenty-eight'),\n(15915, 5302, 'five thousand three hundred two'),\n(15916, 50159, 'fifty thousand one hundred fifty-nine'),\n(15917, 12641, 'twelve thousand six hundred forty-one'),\n(15918, 68110, 'sixty-eight thousand one hundred ten'),\n(15919, 89350, 'eighty-nine thousand three hundred fifty'),\n(15920, 70579, 'seventy thousand five hundred seventy-nine'),\n(15921, 17149, 'seventeen thousand one hundred forty-nine'),\n(15922, 57276, 'fifty-seven thousand two hundred seventy-six'),\n(15923, 9657, 'nine thousand six hundred fifty-seven'),\n(15924, 51466, 'fifty-one thousand four hundred sixty-six'),\n(15925, 36532, 'thirty-six thousand five hundred thirty-two'),\n(15926, 60852, 'sixty thousand eight hundred fifty-two'),\n(15927, 76838, 'seventy-six thousand eight hundred thirty-eight'),\n(15928, 48278, 'forty-eight thousand two hundred seventy-eight'),\n(15929, 44557, 'forty-four thousand five hundred fifty-seven'),\n(15930, 93247, 'ninety-three thousand two hundred forty-seven'),\n(15931, 25113, 'twenty-five thousand one hundred thirteen'),\n(15932, 27324, 'twenty-seven thousand three hundred twenty-four'),\n(15933, 67270, 'sixty-seven thousand two hundred seventy'),\n(15934, 86752, 'eighty-six thousand seven hundred fifty-two'),\n(15935, 86862, 'eighty-six thousand eight hundred sixty-two'),\n(15936, 69694, 'sixty-nine thousand six hundred ninety-four'),\n(15937, 16990, 'sixteen thousand nine hundred ninety'),\n(15938, 37531, 'thirty-seven thousand five hundred thirty-one'),\n(15939, 37787, 'thirty-seven thousand seven hundred eighty-seven'),\n(15940, 52082, 'fifty-two thousand eighty-two'),\n(15941, 4136, 'four thousand one hundred thirty-six'),\n(15942, 97125, 'ninety-seven thousand one hundred twenty-five'),\n(15943, 39025, 'thirty-nine thousand twenty-five'),\n(15944, 43628, 'forty-three thousand six hundred twenty-eight'),\n(15945, 24790, 'twenty-four thousand seven hundred ninety'),\n(15946, 90849, 'ninety thousand eight hundred forty-nine'),\n(15947, 28804, 'twenty-eight thousand eight hundred four'),\n(15948, 26308, 'twenty-six thousand three hundred eight'),\n(15949, 97680, 'ninety-seven thousand six hundred eighty'),\n(15950, 97444, 'ninety-seven thousand four hundred forty-four'),\n(15951, 3829, 'three thousand eight hundred twenty-nine'),\n(15952, 69996, 'sixty-nine thousand nine hundred ninety-six'),\n(15953, 93038, 'ninety-three thousand thirty-eight'),\n(15954, 97206, 'ninety-seven thousand two hundred six'),\n(15955, 52615, 'fifty-two thousand six hundred fifteen'),\n(15956, 34883, 'thirty-four thousand eight hundred eighty-three'),\n(15957, 26101, 'twenty-six thousand one hundred one'),\n(15958, 73641, 'seventy-three thousand six hundred forty-one'),\n(15959, 41882, 'forty-one thousand eight hundred eighty-two'),\n(15960, 45415, 'forty-five thousand four hundred fifteen'),\n(15961, 22395, 'twenty-two thousand three hundred ninety-five'),\n(15962, 8821, 'eight thousand eight hundred twenty-one'),\n(15963, 55844, 'fifty-five thousand eight hundred forty-four'),\n(15964, 46763, 'forty-six thousand seven hundred sixty-three'),\n(15965, 78945, 'seventy-eight thousand nine hundred forty-five'),\n(15966, 55236, 'fifty-five thousand two hundred thirty-six'),\n(15967, 61422, 'sixty-one thousand four hundred twenty-two'),\n(15968, 76060, 'seventy-six thousand sixty'),\n(15969, 30024, 'thirty thousand twenty-four'),\n(15970, 54977, 'fifty-four thousand nine hundred seventy-seven'),\n(15971, 39697, 'thirty-nine thousand six hundred ninety-seven'),\n(15972, 4943, 'four thousand nine hundred forty-three'),\n(15973, 75830, 'seventy-five thousand eight hundred thirty'),\n(15974, 75024, 'seventy-five thousand twenty-four'),\n(15975, 57935, 'fifty-seven thousand nine hundred thirty-five'),\n(15976, 54814, 'fifty-four thousand eight hundred fourteen'),\n(15977, 99572, 'ninety-nine thousand five hundred seventy-two'),\n(15978, 40185, 'forty thousand one hundred eighty-five'),\n(15979, 9988, 'nine thousand nine hundred eighty-eight'),\n(15980, 51925, 'fifty-one thousand nine hundred twenty-five'),\n(15981, 37191, 'thirty-seven thousand one hundred ninety-one'),\n(15982, 91240, 'ninety-one thousand two hundred forty'),\n(15983, 83574, 'eighty-three thousand five hundred seventy-four'),\n(15984, 46447, 'forty-six thousand four hundred forty-seven'),\n(15985, 84079, 'eighty-four thousand seventy-nine'),\n(15986, 68993, 'sixty-eight thousand nine hundred ninety-three'),\n(15987, 50877, 'fifty thousand eight hundred seventy-seven'),\n(15988, 46667, 'forty-six thousand six hundred sixty-seven'),\n(15989, 58255, 'fifty-eight thousand two hundred fifty-five'),\n(15990, 5215, 'five thousand two hundred fifteen'),\n(15991, 2736, 'two thousand seven hundred thirty-six'),\n(15992, 45885, 'forty-five thousand eight hundred eighty-five'),\n(15993, 52343, 'fifty-two thousand three hundred forty-three'),\n(15994, 1900, 'one thousand nine hundred'),\n(15995, 52932, 'fifty-two thousand nine hundred thirty-two'),\n(15996, 48382, 'forty-eight thousand three hundred eighty-two'),\n(15997, 55256, 'fifty-five thousand two hundred fifty-six'),\n(15998, 73536, 'seventy-three thousand five hundred thirty-six'),\n(15999, 62821, 'sixty-two thousand eight hundred twenty-one'),\n(16000, 71480, 'seventy-one thousand four hundred eighty'),\n(16001, 92908, 'ninety-two thousand nine hundred eight'),\n(16002, 40281, 'forty thousand two hundred eighty-one'),\n(16003, 60055, 'sixty thousand fifty-five'),\n(16004, 59310, 'fifty-nine thousand three hundred ten'),\n(16005, 98080, 'ninety-eight thousand eighty'),\n(16006, 63368, 'sixty-three thousand three hundred sixty-eight'),\n(16007, 89021, 'eighty-nine thousand twenty-one'),\n(16008, 59499, 'fifty-nine thousand four hundred ninety-nine'),\n(16009, 22050, 'twenty-two thousand fifty'),\n(16010, 60758, 'sixty thousand seven hundred fifty-eight'),\n(16011, 98253, 'ninety-eight thousand two hundred fifty-three'),\n(16012, 175, 'one hundred seventy-five'),\n(16013, 2030, 'two thousand thirty'),\n(16014, 80948, 'eighty thousand nine hundred forty-eight'),\n(16015, 36059, 'thirty-six thousand fifty-nine'),\n(16016, 52071, 'fifty-two thousand seventy-one'),\n(16017, 83705, 'eighty-three thousand seven hundred five'),\n(16018, 60985, 'sixty thousand nine hundred eighty-five'),\n(16019, 61632, 'sixty-one thousand six hundred thirty-two'),\n(16020, 34740, 'thirty-four thousand seven hundred forty'),\n(16021, 19212, 'nineteen thousand two hundred twelve'),\n(16022, 12860, 'twelve thousand eight hundred sixty'),\n(16023, 99628, 'ninety-nine thousand six hundred twenty-eight'),\n(16024, 62177, 'sixty-two thousand one hundred seventy-seven'),\n(16025, 85818, 'eighty-five thousand eight hundred eighteen'),\n(16026, 17621, 'seventeen thousand six hundred twenty-one'),\n(16027, 452, 'four hundred fifty-two'),\n(16028, 61336, 'sixty-one thousand three hundred thirty-six'),\n(16029, 17500, 'seventeen thousand five hundred'),\n(16030, 22747, 'twenty-two thousand seven hundred forty-seven'),\n(16031, 18211, 'eighteen thousand two hundred eleven'),\n(16032, 93359, 'ninety-three thousand three hundred fifty-nine'),\n(16033, 49357, 'forty-nine thousand three hundred fifty-seven'),\n(16034, 64020, 'sixty-four thousand twenty'),\n(16035, 12282, 'twelve thousand two hundred eighty-two'),\n(16036, 44106, 'forty-four thousand one hundred six'),\n(16037, 85472, 'eighty-five thousand four hundred seventy-two'),\n(16038, 43586, 'forty-three thousand five hundred eighty-six'),\n(16039, 50717, 'fifty thousand seven hundred seventeen'),\n(16040, 21904, 'twenty-one thousand nine hundred four'),\n(16041, 19973, 'nineteen thousand nine hundred seventy-three'),\n(16042, 32010, 'thirty-two thousand ten'),\n(16043, 7681, 'seven thousand six hundred eighty-one'),\n(16044, 43907, 'forty-three thousand nine hundred seven'),\n(16045, 92559, 'ninety-two thousand five hundred fifty-nine'),\n(16046, 74737, 'seventy-four thousand seven hundred thirty-seven'),\n(16047, 41361, 'forty-one thousand three hundred sixty-one'),\n(16048, 63652, 'sixty-three thousand six hundred fifty-two'),\n(16049, 95499, 'ninety-five thousand four hundred ninety-nine'),\n(16050, 11250, 'eleven thousand two hundred fifty'),\n(16051, 29555, 'twenty-nine thousand five hundred fifty-five'),\n(16052, 50887, 'fifty thousand eight hundred eighty-seven'),\n(16053, 75120, 'seventy-five thousand one hundred twenty'),\n(16054, 70541, 'seventy thousand five hundred forty-one'),\n(16055, 16164, 'sixteen thousand one hundred sixty-four'),\n(16056, 77795, 'seventy-seven thousand seven hundred ninety-five'),\n(16057, 94479, 'ninety-four thousand four hundred seventy-nine'),\n(16058, 71824, 'seventy-one thousand eight hundred twenty-four'),\n(16059, 82936, 'eighty-two thousand nine hundred thirty-six'),\n(16060, 540, 'five hundred forty'),\n(16061, 87563, 'eighty-seven thousand five hundred sixty-three'),\n(16062, 56827, 'fifty-six thousand eight hundred twenty-seven'),\n(16063, 17633, 'seventeen thousand six hundred thirty-three'),\n(16064, 39580, 'thirty-nine thousand five hundred eighty'),\n(16065, 44379, 'forty-four thousand three hundred seventy-nine'),\n(16066, 42202, 'forty-two thousand two hundred two'),\n(16067, 489, 'four hundred eighty-nine'),\n(16068, 21410, 'twenty-one thousand four hundred ten'),\n(16069, 24792, 'twenty-four thousand seven hundred ninety-two'),\n(16070, 64478, 'sixty-four thousand four hundred seventy-eight'),\n(16071, 16835, 'sixteen thousand eight hundred thirty-five'),\n(16072, 98735, 'ninety-eight thousand seven hundred thirty-five'),\n(16073, 4138, 'four thousand one hundred thirty-eight'),\n(16074, 16230, 'sixteen thousand two hundred thirty'),\n(16075, 46317, 'forty-six thousand three hundred seventeen'),\n(16076, 20244, 'twenty thousand two hundred forty-four'),\n(16077, 76262, 'seventy-six thousand two hundred sixty-two'),\n(16078, 61887, 'sixty-one thousand eight hundred eighty-seven'),\n(16079, 38336, 'thirty-eight thousand three hundred thirty-six'),\n(16080, 60960, 'sixty thousand nine hundred sixty'),\n(16081, 57789, 'fifty-seven thousand seven hundred eighty-nine'),\n(16082, 99854, 'ninety-nine thousand eight hundred fifty-four'),\n(16083, 52051, 'fifty-two thousand fifty-one'),\n(16084, 53572, 'fifty-three thousand five hundred seventy-two'),\n(16085, 7476, 'seven thousand four hundred seventy-six'),\n(16086, 78317, 'seventy-eight thousand three hundred seventeen'),\n(16087, 91767, 'ninety-one thousand seven hundred sixty-seven'),\n(16088, 67706, 'sixty-seven thousand seven hundred six'),\n(16089, 92031, 'ninety-two thousand thirty-one'),\n(16090, 69508, 'sixty-nine thousand five hundred eight'),\n(16091, 26314, 'twenty-six thousand three hundred fourteen'),\n(16092, 58858, 'fifty-eight thousand eight hundred fifty-eight'),\n(16093, 13599, 'thirteen thousand five hundred ninety-nine'),\n(16094, 18515, 'eighteen thousand five hundred fifteen'),\n(16095, 73374, 'seventy-three thousand three hundred seventy-four'),\n(16096, 49281, 'forty-nine thousand two hundred eighty-one'),\n(16097, 77458, 'seventy-seven thousand four hundred fifty-eight'),\n(16098, 61112, 'sixty-one thousand one hundred twelve'),\n(16099, 71786, 'seventy-one thousand seven hundred eighty-six'),\n(16100, 29715, 'twenty-nine thousand seven hundred fifteen'),\n(16101, 43700, 'forty-three thousand seven hundred'),\n(16102, 37603, 'thirty-seven thousand six hundred three'),\n(16103, 59207, 'fifty-nine thousand two hundred seven'),\n(16104, 16234, 'sixteen thousand two hundred thirty-four'),\n(16105, 69260, 'sixty-nine thousand two hundred sixty'),\n(16106, 85665, 'eighty-five thousand six hundred sixty-five'),\n(16107, 22662, 'twenty-two thousand six hundred sixty-two'),\n(16108, 56317, 'fifty-six thousand three hundred seventeen'),\n(16109, 94136, 'ninety-four thousand one hundred thirty-six'),\n(16110, 89060, 'eighty-nine thousand sixty'),\n(16111, 99324, 'ninety-nine thousand three hundred twenty-four'),\n(16112, 40323, 'forty thousand three hundred twenty-three'),\n(16113, 25227, 'twenty-five thousand two hundred twenty-seven'),\n(16114, 79601, 'seventy-nine thousand six hundred one'),\n(16115, 17795, 'seventeen thousand seven hundred ninety-five'),\n(16116, 27280, 'twenty-seven thousand two hundred eighty'),\n(16117, 6623, 'six thousand six hundred twenty-three'),\n(16118, 44016, 'forty-four thousand sixteen'),\n(16119, 47457, 'forty-seven thousand four hundred fifty-seven'),\n(16120, 49815, 'forty-nine thousand eight hundred fifteen'),\n(16121, 6374, 'six thousand three hundred seventy-four'),\n(16122, 32173, 'thirty-two thousand one hundred seventy-three'),\n(16123, 31527, 'thirty-one thousand five hundred twenty-seven'),\n(16124, 22886, 'twenty-two thousand eight hundred eighty-six'),\n(16125, 6343, 'six thousand three hundred forty-three'),\n(16126, 82249, 'eighty-two thousand two hundred forty-nine'),\n(16127, 38617, 'thirty-eight thousand six hundred seventeen'),\n(16128, 93634, 'ninety-three thousand six hundred thirty-four'),\n(16129, 67769, 'sixty-seven thousand seven hundred sixty-nine'),\n(16130, 23369, 'twenty-three thousand three hundred sixty-nine'),\n(16131, 87506, 'eighty-seven thousand five hundred six'),\n(16132, 39817, 'thirty-nine thousand eight hundred seventeen'),\n(16133, 5730, 'five thousand seven hundred thirty'),\n(16134, 94254, 'ninety-four thousand two hundred fifty-four'),\n(16135, 99119, 'ninety-nine thousand one hundred nineteen'),\n(16136, 2980, 'two thousand nine hundred eighty'),\n(16137, 98050, 'ninety-eight thousand fifty'),\n(16138, 40896, 'forty thousand eight hundred ninety-six'),\n(16139, 4640, 'four thousand six hundred forty'),\n(16140, 92837, 'ninety-two thousand eight hundred thirty-seven'),\n(16141, 14735, 'fourteen thousand seven hundred thirty-five'),\n(16142, 55717, 'fifty-five thousand seven hundred seventeen'),\n(16143, 23711, 'twenty-three thousand seven hundred eleven'),\n(16144, 78552, 'seventy-eight thousand five hundred fifty-two'),\n(16145, 32368, 'thirty-two thousand three hundred sixty-eight'),\n(16146, 97189, 'ninety-seven thousand one hundred eighty-nine'),\n(16147, 3220, 'three thousand two hundred twenty'),\n(16148, 20461, 'twenty thousand four hundred sixty-one'),\n(16149, 14066, 'fourteen thousand sixty-six'),\n(16150, 1397, 'one thousand three hundred ninety-seven'),\n(16151, 54977, 'fifty-four thousand nine hundred seventy-seven'),\n(16152, 52195, 'fifty-two thousand one hundred ninety-five'),\n(16153, 82346, 'eighty-two thousand three hundred forty-six'),\n(16154, 8844, 'eight thousand eight hundred forty-four'),\n(16155, 55534, 'fifty-five thousand five hundred thirty-four'),\n(16156, 12301, 'twelve thousand three hundred one'),\n(16157, 86108, 'eighty-six thousand one hundred eight'),\n(16158, 3085, 'three thousand eighty-five'),\n(16159, 12289, 'twelve thousand two hundred eighty-nine'),\n(16160, 89357, 'eighty-nine thousand three hundred fifty-seven'),\n(16161, 13666, 'thirteen thousand six hundred sixty-six'),\n(16162, 83477, 'eighty-three thousand four hundred seventy-seven'),\n(16163, 95107, 'ninety-five thousand one hundred seven'),\n(16164, 8315, 'eight thousand three hundred fifteen'),\n(16165, 44988, 'forty-four thousand nine hundred eighty-eight'),\n(16166, 94529, 'ninety-four thousand five hundred twenty-nine'),\n(16167, 3042, 'three thousand forty-two'),\n(16168, 61932, 'sixty-one thousand nine hundred thirty-two'),\n(16169, 59615, 'fifty-nine thousand six hundred fifteen'),\n(16170, 46488, 'forty-six thousand four hundred eighty-eight'),\n(16171, 41124, 'forty-one thousand one hundred twenty-four'),\n(16172, 71428, 'seventy-one thousand four hundred twenty-eight'),\n(16173, 40727, 'forty thousand seven hundred twenty-seven'),\n(16174, 89654, 'eighty-nine thousand six hundred fifty-four'),\n(16175, 27757, 'twenty-seven thousand seven hundred fifty-seven'),\n(16176, 85031, 'eighty-five thousand thirty-one'),\n(16177, 74155, 'seventy-four thousand one hundred fifty-five'),\n(16178, 26689, 'twenty-six thousand six hundred eighty-nine'),\n(16179, 44332, 'forty-four thousand three hundred thirty-two'),\n(16180, 92054, 'ninety-two thousand fifty-four'),\n(16181, 65503, 'sixty-five thousand five hundred three'),\n(16182, 39652, 'thirty-nine thousand six hundred fifty-two'),\n(16183, 69557, 'sixty-nine thousand five hundred fifty-seven'),\n(16184, 19050, 'nineteen thousand fifty'),\n(16185, 18021, 'eighteen thousand twenty-one'),\n(16186, 14458, 'fourteen thousand four hundred fifty-eight'),\n(16187, 76327, 'seventy-six thousand three hundred twenty-seven'),\n(16188, 79846, 'seventy-nine thousand eight hundred forty-six'),\n(16189, 19131, 'nineteen thousand one hundred thirty-one'),\n(16190, 5839, 'five thousand eight hundred thirty-nine'),\n(16191, 44043, 'forty-four thousand forty-three'),\n(16192, 63405, 'sixty-three thousand four hundred five'),\n(16193, 30066, 'thirty thousand sixty-six'),\n(16194, 47142, 'forty-seven thousand one hundred forty-two'),\n(16195, 87465, 'eighty-seven thousand four hundred sixty-five'),\n(16196, 57878, 'fifty-seven thousand eight hundred seventy-eight'),\n(16197, 23196, 'twenty-three thousand one hundred ninety-six'),\n(16198, 50816, 'fifty thousand eight hundred sixteen'),\n(16199, 38194, 'thirty-eight thousand one hundred ninety-four'),\n(16200, 84336, 'eighty-four thousand three hundred thirty-six'),\n(16201, 97601, 'ninety-seven thousand six hundred one'),\n(16202, 58317, 'fifty-eight thousand three hundred seventeen'),\n(16203, 97255, 'ninety-seven thousand two hundred fifty-five'),\n(16204, 8056, 'eight thousand fifty-six'),\n(16205, 95081, 'ninety-five thousand eighty-one'),\n(16206, 12946, 'twelve thousand nine hundred forty-six'),\n(16207, 74745, 'seventy-four thousand seven hundred forty-five'),\n(16208, 51215, 'fifty-one thousand two hundred fifteen'),\n(16209, 18338, 'eighteen thousand three hundred thirty-eight'),\n(16210, 93590, 'ninety-three thousand five hundred ninety'),\n(16211, 44736, 'forty-four thousand seven hundred thirty-six'),\n(16212, 18104, 'eighteen thousand one hundred four'),\n(16213, 66016, 'sixty-six thousand sixteen'),\n(16214, 60424, 'sixty thousand four hundred twenty-four'),\n(16215, 69008, 'sixty-nine thousand eight'),\n(16216, 2809, 'two thousand eight hundred nine'),\n(16217, 66904, 'sixty-six thousand nine hundred four'),\n(16218, 62527, 'sixty-two thousand five hundred twenty-seven'),\n(16219, 91785, 'ninety-one thousand seven hundred eighty-five'),\n(16220, 50726, 'fifty thousand seven hundred twenty-six'),\n(16221, 67174, 'sixty-seven thousand one hundred seventy-four'),\n(16222, 54032, 'fifty-four thousand thirty-two'),\n(16223, 17883, 'seventeen thousand eight hundred eighty-three'),\n(16224, 41373, 'forty-one thousand three hundred seventy-three'),\n(16225, 972, 'nine hundred seventy-two'),\n(16226, 88410, 'eighty-eight thousand four hundred ten'),\n(16227, 26306, 'twenty-six thousand three hundred six'),\n(16228, 43858, 'forty-three thousand eight hundred fifty-eight'),\n(16229, 27039, 'twenty-seven thousand thirty-nine'),\n(16230, 6953, 'six thousand nine hundred fifty-three'),\n(16231, 85665, 'eighty-five thousand six hundred sixty-five'),\n(16232, 52992, 'fifty-two thousand nine hundred ninety-two'),\n(16233, 59727, 'fifty-nine thousand seven hundred twenty-seven'),\n(16234, 45860, 'forty-five thousand eight hundred sixty'),\n(16235, 91271, 'ninety-one thousand two hundred seventy-one'),\n(16236, 60752, 'sixty thousand seven hundred fifty-two'),\n(16237, 87274, 'eighty-seven thousand two hundred seventy-four'),\n(16238, 87060, 'eighty-seven thousand sixty'),\n(16239, 77805, 'seventy-seven thousand eight hundred five'),\n(16240, 2814, 'two thousand eight hundred fourteen'),\n(16241, 59542, 'fifty-nine thousand five hundred forty-two'),\n(16242, 43225, 'forty-three thousand two hundred twenty-five'),\n(16243, 87456, 'eighty-seven thousand four hundred fifty-six'),\n(16244, 43361, 'forty-three thousand three hundred sixty-one'),\n(16245, 62392, 'sixty-two thousand three hundred ninety-two'),\n(16246, 31119, 'thirty-one thousand one hundred nineteen'),\n(16247, 72847, 'seventy-two thousand eight hundred forty-seven'),\n(16248, 49466, 'forty-nine thousand four hundred sixty-six'),\n(16249, 14930, 'fourteen thousand nine hundred thirty'),\n(16250, 55942, 'fifty-five thousand nine hundred forty-two'),\n(16251, 14274, 'fourteen thousand two hundred seventy-four'),\n(16252, 57987, 'fifty-seven thousand nine hundred eighty-seven'),\n(16253, 98842, 'ninety-eight thousand eight hundred forty-two'),\n(16254, 71280, 'seventy-one thousand two hundred eighty'),\n(16255, 91828, 'ninety-one thousand eight hundred twenty-eight'),\n(16256, 89036, 'eighty-nine thousand thirty-six'),\n(16257, 32711, 'thirty-two thousand seven hundred eleven'),\n(16258, 10873, 'ten thousand eight hundred seventy-three'),\n(16259, 29863, 'twenty-nine thousand eight hundred sixty-three'),\n(16260, 78799, 'seventy-eight thousand seven hundred ninety-nine'),\n(16261, 10873, 'ten thousand eight hundred seventy-three'),\n(16262, 90157, 'ninety thousand one hundred fifty-seven'),\n(16263, 5204, 'five thousand two hundred four'),\n(16264, 49483, 'forty-nine thousand four hundred eighty-three'),\n(16265, 45161, 'forty-five thousand one hundred sixty-one'),\n(16266, 65961, 'sixty-five thousand nine hundred sixty-one'),\n(16267, 43300, 'forty-three thousand three hundred'),\n(16268, 95356, 'ninety-five thousand three hundred fifty-six'),\n(16269, 72773, 'seventy-two thousand seven hundred seventy-three'),\n(16270, 54822, 'fifty-four thousand eight hundred twenty-two'),\n(16271, 2113, 'two thousand one hundred thirteen'),\n(16272, 5442, 'five thousand four hundred forty-two'),\n(16273, 66294, 'sixty-six thousand two hundred ninety-four'),\n(16274, 42545, 'forty-two thousand five hundred forty-five'),\n(16275, 59123, 'fifty-nine thousand one hundred twenty-three'),\n(16276, 69177, 'sixty-nine thousand one hundred seventy-seven'),\n(16277, 69706, 'sixty-nine thousand seven hundred six'),\n(16278, 27256, 'twenty-seven thousand two hundred fifty-six'),\n(16279, 26192, 'twenty-six thousand one hundred ninety-two'),\n(16280, 48549, 'forty-eight thousand five hundred forty-nine'),\n(16281, 23144, 'twenty-three thousand one hundred forty-four'),\n(16282, 651, 'six hundred fifty-one'),\n(16283, 37920, 'thirty-seven thousand nine hundred twenty'),\n(16284, 42319, 'forty-two thousand three hundred nineteen'),\n(16285, 34174, 'thirty-four thousand one hundred seventy-four'),\n(16286, 10483, 'ten thousand four hundred eighty-three'),\n(16287, 21220, 'twenty-one thousand two hundred twenty'),\n(16288, 84490, 'eighty-four thousand four hundred ninety'),\n(16289, 62444, 'sixty-two thousand four hundred forty-four'),\n(16290, 28703, 'twenty-eight thousand seven hundred three'),\n(16291, 75606, 'seventy-five thousand six hundred six'),\n(16292, 90353, 'ninety thousand three hundred fifty-three'),\n(16293, 33493, 'thirty-three thousand four hundred ninety-three'),\n(16294, 39382, 'thirty-nine thousand three hundred eighty-two'),\n(16295, 18619, 'eighteen thousand six hundred nineteen'),\n(16296, 59367, 'fifty-nine thousand three hundred sixty-seven'),\n(16297, 65457, 'sixty-five thousand four hundred fifty-seven'),\n(16298, 67637, 'sixty-seven thousand six hundred thirty-seven'),\n(16299, 96162, 'ninety-six thousand one hundred sixty-two'),\n(16300, 4175, 'four thousand one hundred seventy-five'),\n(16301, 33759, 'thirty-three thousand seven hundred fifty-nine'),\n(16302, 62597, 'sixty-two thousand five hundred ninety-seven'),\n(16303, 6885, 'six thousand eight hundred eighty-five'),\n(16304, 67623, 'sixty-seven thousand six hundred twenty-three'),\n(16305, 50288, 'fifty thousand two hundred eighty-eight'),\n(16306, 73792, 'seventy-three thousand seven hundred ninety-two'),\n(16307, 29088, 'twenty-nine thousand eighty-eight'),\n(16308, 61366, 'sixty-one thousand three hundred sixty-six'),\n(16309, 57577, 'fifty-seven thousand five hundred seventy-seven'),\n(16310, 35627, 'thirty-five thousand six hundred twenty-seven'),\n(16311, 33607, 'thirty-three thousand six hundred seven'),\n(16312, 38930, 'thirty-eight thousand nine hundred thirty'),\n(16313, 82055, 'eighty-two thousand fifty-five'),\n(16314, 83614, 'eighty-three thousand six hundred fourteen'),\n(16315, 30726, 'thirty thousand seven hundred twenty-six'),\n(16316, 83908, 'eighty-three thousand nine hundred eight'),\n(16317, 55766, 'fifty-five thousand seven hundred sixty-six'),\n(16318, 83773, 'eighty-three thousand seven hundred seventy-three'),\n(16319, 23891, 'twenty-three thousand eight hundred ninety-one'),\n(16320, 39398, 'thirty-nine thousand three hundred ninety-eight'),\n(16321, 67260, 'sixty-seven thousand two hundred sixty'),\n(16322, 80283, 'eighty thousand two hundred eighty-three'),\n(16323, 55617, 'fifty-five thousand six hundred seventeen'),\n(16324, 65215, 'sixty-five thousand two hundred fifteen'),\n(16325, 437, 'four hundred thirty-seven'),\n(16326, 56810, 'fifty-six thousand eight hundred ten'),\n(16327, 438, 'four hundred thirty-eight'),\n(16328, 88671, 'eighty-eight thousand six hundred seventy-one'),\n(16329, 29397, 'twenty-nine thousand three hundred ninety-seven'),\n(16330, 91946, 'ninety-one thousand nine hundred forty-six'),\n(16331, 1841, 'one thousand eight hundred forty-one'),\n(16332, 44648, 'forty-four thousand six hundred forty-eight'),\n(16333, 58631, 'fifty-eight thousand six hundred thirty-one'),\n(16334, 9334, 'nine thousand three hundred thirty-four'),\n(16335, 93055, 'ninety-three thousand fifty-five'),\n(16336, 70389, 'seventy thousand three hundred eighty-nine'),\n(16337, 86675, 'eighty-six thousand six hundred seventy-five'),\n(16338, 42012, 'forty-two thousand twelve'),\n(16339, 38035, 'thirty-eight thousand thirty-five'),\n(16340, 42707, 'forty-two thousand seven hundred seven'),\n(16341, 96258, 'ninety-six thousand two hundred fifty-eight'),\n(16342, 85244, 'eighty-five thousand two hundred forty-four'),\n(16343, 67037, 'sixty-seven thousand thirty-seven'),\n(16344, 15659, 'fifteen thousand six hundred fifty-nine'),\n(16345, 30025, 'thirty thousand twenty-five'),\n(16346, 26793, 'twenty-six thousand seven hundred ninety-three'),\n(16347, 15654, 'fifteen thousand six hundred fifty-four'),\n(16348, 15482, 'fifteen thousand four hundred eighty-two'),\n(16349, 35324, 'thirty-five thousand three hundred twenty-four'),\n(16350, 90616, 'ninety thousand six hundred sixteen'),\n(16351, 7671, 'seven thousand six hundred seventy-one'),\n(16352, 89670, 'eighty-nine thousand six hundred seventy'),\n(16353, 60029, 'sixty thousand twenty-nine'),\n(16354, 83944, 'eighty-three thousand nine hundred forty-four'),\n(16355, 79726, 'seventy-nine thousand seven hundred twenty-six'),\n(16356, 75123, 'seventy-five thousand one hundred twenty-three'),\n(16357, 94220, 'ninety-four thousand two hundred twenty'),\n(16358, 1618, 'one thousand six hundred eighteen'),\n(16359, 1007, 'one thousand seven'),\n(16360, 8037, 'eight thousand thirty-seven'),\n(16361, 15157, 'fifteen thousand one hundred fifty-seven'),\n(16362, 76616, 'seventy-six thousand six hundred sixteen'),\n(16363, 52655, 'fifty-two thousand six hundred fifty-five'),\n(16364, 53270, 'fifty-three thousand two hundred seventy'),\n(16365, 67386, 'sixty-seven thousand three hundred eighty-six'),\n(16366, 13735, 'thirteen thousand seven hundred thirty-five'),\n(16367, 4217, 'four thousand two hundred seventeen'),\n(16368, 36915, 'thirty-six thousand nine hundred fifteen'),\n(16369, 93171, 'ninety-three thousand one hundred seventy-one'),\n(16370, 42370, 'forty-two thousand three hundred seventy'),\n(16371, 45498, 'forty-five thousand four hundred ninety-eight'),\n(16372, 65950, 'sixty-five thousand nine hundred fifty'),\n(16373, 70214, 'seventy thousand two hundred fourteen'),\n(16374, 55707, 'fifty-five thousand seven hundred seven'),\n(16375, 77836, 'seventy-seven thousand eight hundred thirty-six'),\n(16376, 30633, 'thirty thousand six hundred thirty-three'),\n(16377, 47063, 'forty-seven thousand sixty-three'),\n(16378, 37314, 'thirty-seven thousand three hundred fourteen'),\n(16379, 75521, 'seventy-five thousand five hundred twenty-one'),\n(16380, 54752, 'fifty-four thousand seven hundred fifty-two'),\n(16381, 52610, 'fifty-two thousand six hundred ten'),\n(16382, 55893, 'fifty-five thousand eight hundred ninety-three'),\n(16383, 34842, 'thirty-four thousand eight hundred forty-two'),\n(16384, 77317, 'seventy-seven thousand three hundred seventeen'),\n(16385, 37717, 'thirty-seven thousand seven hundred seventeen'),\n(16386, 8909, 'eight thousand nine hundred nine'),\n(16387, 53752, 'fifty-three thousand seven hundred fifty-two'),\n(16388, 4216, 'four thousand two hundred sixteen'),\n(16389, 69445, 'sixty-nine thousand four hundred forty-five'),\n(16390, 24744, 'twenty-four thousand seven hundred forty-four'),\n(16391, 689, 'six hundred eighty-nine'),\n(16392, 73776, 'seventy-three thousand seven hundred seventy-six'),\n(16393, 35784, 'thirty-five thousand seven hundred eighty-four'),\n(16394, 26517, 'twenty-six thousand five hundred seventeen'),\n(16395, 36715, 'thirty-six thousand seven hundred fifteen'),\n(16396, 62011, 'sixty-two thousand eleven'),\n(16397, 82038, 'eighty-two thousand thirty-eight'),\n(16398, 65734, 'sixty-five thousand seven hundred thirty-four'),\n(16399, 99683, 'ninety-nine thousand six hundred eighty-three'),\n(16400, 92561, 'ninety-two thousand five hundred sixty-one'),\n(16401, 81422, 'eighty-one thousand four hundred twenty-two'),\n(16402, 89360, 'eighty-nine thousand three hundred sixty'),\n(16403, 71584, 'seventy-one thousand five hundred eighty-four'),\n(16404, 67622, 'sixty-seven thousand six hundred twenty-two'),\n(16405, 16749, 'sixteen thousand seven hundred forty-nine'),\n(16406, 68108, 'sixty-eight thousand one hundred eight'),\n(16407, 40276, 'forty thousand two hundred seventy-six'),\n(16408, 88928, 'eighty-eight thousand nine hundred twenty-eight'),\n(16409, 53328, 'fifty-three thousand three hundred twenty-eight'),\n(16410, 13428, 'thirteen thousand four hundred twenty-eight'),\n(16411, 51950, 'fifty-one thousand nine hundred fifty'),\n(16412, 56220, 'fifty-six thousand two hundred twenty'),\n(16413, 84591, 'eighty-four thousand five hundred ninety-one'),\n(16414, 48035, 'forty-eight thousand thirty-five'),\n(16415, 98654, 'ninety-eight thousand six hundred fifty-four'),\n(16416, 3088, 'three thousand eighty-eight'),\n(16417, 73261, 'seventy-three thousand two hundred sixty-one'),\n(16418, 61489, 'sixty-one thousand four hundred eighty-nine'),\n(16419, 52502, 'fifty-two thousand five hundred two'),\n(16420, 58633, 'fifty-eight thousand six hundred thirty-three'),\n(16421, 88204, 'eighty-eight thousand two hundred four'),\n(16422, 41549, 'forty-one thousand five hundred forty-nine'),\n(16423, 55414, 'fifty-five thousand four hundred fourteen'),\n(16424, 40902, 'forty thousand nine hundred two'),\n(16425, 89970, 'eighty-nine thousand nine hundred seventy'),\n(16426, 73233, 'seventy-three thousand two hundred thirty-three'),\n(16427, 80971, 'eighty thousand nine hundred seventy-one'),\n(16428, 88587, 'eighty-eight thousand five hundred eighty-seven'),\n(16429, 34164, 'thirty-four thousand one hundred sixty-four'),\n(16430, 23612, 'twenty-three thousand six hundred twelve'),\n(16431, 71749, 'seventy-one thousand seven hundred forty-nine'),\n(16432, 98149, 'ninety-eight thousand one hundred forty-nine'),\n(16433, 48951, 'forty-eight thousand nine hundred fifty-one'),\n(16434, 90645, 'ninety thousand six hundred forty-five'),\n(16435, 50664, 'fifty thousand six hundred sixty-four'),\n(16436, 23111, 'twenty-three thousand one hundred eleven'),\n(16437, 18775, 'eighteen thousand seven hundred seventy-five'),\n(16438, 34702, 'thirty-four thousand seven hundred two'),\n(16439, 87310, 'eighty-seven thousand three hundred ten'),\n(16440, 77109, 'seventy-seven thousand one hundred nine'),\n(16441, 96710, 'ninety-six thousand seven hundred ten'),\n(16442, 65213, 'sixty-five thousand two hundred thirteen'),\n(16443, 77656, 'seventy-seven thousand six hundred fifty-six'),\n(16444, 33076, 'thirty-three thousand seventy-six'),\n(16445, 54161, 'fifty-four thousand one hundred sixty-one'),\n(16446, 2367, 'two thousand three hundred sixty-seven'),\n(16447, 21023, 'twenty-one thousand twenty-three'),\n(16448, 16137, 'sixteen thousand one hundred thirty-seven'),\n(16449, 68626, 'sixty-eight thousand six hundred twenty-six'),\n(16450, 41773, 'forty-one thousand seven hundred seventy-three'),\n(16451, 72723, 'seventy-two thousand seven hundred twenty-three'),\n(16452, 39225, 'thirty-nine thousand two hundred twenty-five'),\n(16453, 89941, 'eighty-nine thousand nine hundred forty-one'),\n(16454, 38076, 'thirty-eight thousand seventy-six'),\n(16455, 94996, 'ninety-four thousand nine hundred ninety-six'),\n(16456, 30319, 'thirty thousand three hundred nineteen'),\n(16457, 33596, 'thirty-three thousand five hundred ninety-six'),\n(16458, 45240, 'forty-five thousand two hundred forty'),\n(16459, 87914, 'eighty-seven thousand nine hundred fourteen'),\n(16460, 31557, 'thirty-one thousand five hundred fifty-seven'),\n(16461, 20954, 'twenty thousand nine hundred fifty-four'),\n(16462, 48338, 'forty-eight thousand three hundred thirty-eight'),\n(16463, 80992, 'eighty thousand nine hundred ninety-two'),\n(16464, 70979, 'seventy thousand nine hundred seventy-nine'),\n(16465, 42578, 'forty-two thousand five hundred seventy-eight'),\n(16466, 50789, 'fifty thousand seven hundred eighty-nine'),\n(16467, 59835, 'fifty-nine thousand eight hundred thirty-five'),\n(16468, 64635, 'sixty-four thousand six hundred thirty-five'),\n(16469, 81816, 'eighty-one thousand eight hundred sixteen'),\n(16470, 70787, 'seventy thousand seven hundred eighty-seven'),\n(16471, 97583, 'ninety-seven thousand five hundred eighty-three'),\n(16472, 93716, 'ninety-three thousand seven hundred sixteen'),\n(16473, 91414, 'ninety-one thousand four hundred fourteen'),\n(16474, 40471, 'forty thousand four hundred seventy-one'),\n(16475, 91223, 'ninety-one thousand two hundred twenty-three'),\n(16476, 90427, 'ninety thousand four hundred twenty-seven'),\n(16477, 3320, 'three thousand three hundred twenty'),\n(16478, 56499, 'fifty-six thousand four hundred ninety-nine'),\n(16479, 85799, 'eighty-five thousand seven hundred ninety-nine'),\n(16480, 51833, 'fifty-one thousand eight hundred thirty-three'),\n(16481, 71941, 'seventy-one thousand nine hundred forty-one'),\n(16482, 66293, 'sixty-six thousand two hundred ninety-three'),\n(16483, 40203, 'forty thousand two hundred three'),\n(16484, 46343, 'forty-six thousand three hundred forty-three'),\n(16485, 9820, 'nine thousand eight hundred twenty'),\n(16486, 19316, 'nineteen thousand three hundred sixteen'),\n(16487, 18298, 'eighteen thousand two hundred ninety-eight'),\n(16488, 36507, 'thirty-six thousand five hundred seven'),\n(16489, 26218, 'twenty-six thousand two hundred eighteen'),\n(16490, 63782, 'sixty-three thousand seven hundred eighty-two'),\n(16491, 18218, 'eighteen thousand two hundred eighteen'),\n(16492, 95986, 'ninety-five thousand nine hundred eighty-six'),\n(16493, 67780, 'sixty-seven thousand seven hundred eighty'),\n(16494, 12942, 'twelve thousand nine hundred forty-two'),\n(16495, 32681, 'thirty-two thousand six hundred eighty-one'),\n(16496, 80359, 'eighty thousand three hundred fifty-nine'),\n(16497, 24729, 'twenty-four thousand seven hundred twenty-nine'),\n(16498, 27548, 'twenty-seven thousand five hundred forty-eight'),\n(16499, 48161, 'forty-eight thousand one hundred sixty-one'),\n(16500, 50494, 'fifty thousand four hundred ninety-four'),\n(16501, 48162, 'forty-eight thousand one hundred sixty-two'),\n(16502, 33647, 'thirty-three thousand six hundred forty-seven'),\n(16503, 58346, 'fifty-eight thousand three hundred forty-six'),\n(16504, 19370, 'nineteen thousand three hundred seventy'),\n(16505, 75765, 'seventy-five thousand seven hundred sixty-five'),\n(16506, 45323, 'forty-five thousand three hundred twenty-three'),\n(16507, 67482, 'sixty-seven thousand four hundred eighty-two'),\n(16508, 37911, 'thirty-seven thousand nine hundred eleven'),\n(16509, 56614, 'fifty-six thousand six hundred fourteen'),\n(16510, 65081, 'sixty-five thousand eighty-one'),\n(16511, 67355, 'sixty-seven thousand three hundred fifty-five'),\n(16512, 72157, 'seventy-two thousand one hundred fifty-seven'),\n(16513, 64123, 'sixty-four thousand one hundred twenty-three'),\n(16514, 7643, 'seven thousand six hundred forty-three'),\n(16515, 42302, 'forty-two thousand three hundred two'),\n(16516, 80053, 'eighty thousand fifty-three'),\n(16517, 92982, 'ninety-two thousand nine hundred eighty-two'),\n(16518, 432, 'four hundred thirty-two'),\n(16519, 37292, 'thirty-seven thousand two hundred ninety-two'),\n(16520, 94118, 'ninety-four thousand one hundred eighteen'),\n(16521, 70572, 'seventy thousand five hundred seventy-two'),\n(16522, 81383, 'eighty-one thousand three hundred eighty-three'),\n(16523, 21709, 'twenty-one thousand seven hundred nine'),\n(16524, 55450, 'fifty-five thousand four hundred fifty'),\n(16525, 5086, 'five thousand eighty-six'),\n(16526, 66669, 'sixty-six thousand six hundred sixty-nine'),\n(16527, 42869, 'forty-two thousand eight hundred sixty-nine'),\n(16528, 72745, 'seventy-two thousand seven hundred forty-five'),\n(16529, 14828, 'fourteen thousand eight hundred twenty-eight'),\n(16530, 4621, 'four thousand six hundred twenty-one'),\n(16531, 47935, 'forty-seven thousand nine hundred thirty-five'),\n(16532, 31775, 'thirty-one thousand seven hundred seventy-five'),\n(16533, 55028, 'fifty-five thousand twenty-eight'),\n(16534, 47991, 'forty-seven thousand nine hundred ninety-one'),\n(16535, 62429, 'sixty-two thousand four hundred twenty-nine'),\n(16536, 97285, 'ninety-seven thousand two hundred eighty-five'),\n(16537, 32210, 'thirty-two thousand two hundred ten'),\n(16538, 22698, 'twenty-two thousand six hundred ninety-eight'),\n(16539, 81414, 'eighty-one thousand four hundred fourteen'),\n(16540, 82896, 'eighty-two thousand eight hundred ninety-six'),\n(16541, 20290, 'twenty thousand two hundred ninety'),\n(16542, 39712, 'thirty-nine thousand seven hundred twelve'),\n(16543, 65256, 'sixty-five thousand two hundred fifty-six'),\n(16544, 5118, 'five thousand one hundred eighteen'),\n(16545, 39196, 'thirty-nine thousand one hundred ninety-six'),\n(16546, 40806, 'forty thousand eight hundred six'),\n(16547, 62391, 'sixty-two thousand three hundred ninety-one'),\n(16548, 50223, 'fifty thousand two hundred twenty-three'),\n(16549, 43614, 'forty-three thousand six hundred fourteen'),\n(16550, 3586, 'three thousand five hundred eighty-six'),\n(16551, 3193, 'three thousand one hundred ninety-three'),\n(16552, 84122, 'eighty-four thousand one hundred twenty-two'),\n(16553, 22070, 'twenty-two thousand seventy'),\n(16554, 68449, 'sixty-eight thousand four hundred forty-nine'),\n(16555, 95168, 'ninety-five thousand one hundred sixty-eight'),\n(16556, 77287, 'seventy-seven thousand two hundred eighty-seven'),\n(16557, 83653, 'eighty-three thousand six hundred fifty-three'),\n(16558, 12220, 'twelve thousand two hundred twenty'),\n(16559, 58862, 'fifty-eight thousand eight hundred sixty-two'),\n(16560, 34558, 'thirty-four thousand five hundred fifty-eight'),\n(16561, 96997, 'ninety-six thousand nine hundred ninety-seven'),\n(16562, 18883, 'eighteen thousand eight hundred eighty-three'),\n(16563, 69662, 'sixty-nine thousand six hundred sixty-two'),\n(16564, 62622, 'sixty-two thousand six hundred twenty-two'),\n(16565, 70972, 'seventy thousand nine hundred seventy-two'),\n(16566, 37525, 'thirty-seven thousand five hundred twenty-five'),\n(16567, 38447, 'thirty-eight thousand four hundred forty-seven'),\n(16568, 76784, 'seventy-six thousand seven hundred eighty-four'),\n(16569, 53760, 'fifty-three thousand seven hundred sixty'),\n(16570, 79674, 'seventy-nine thousand six hundred seventy-four'),\n(16571, 59939, 'fifty-nine thousand nine hundred thirty-nine'),\n(16572, 7210, 'seven thousand two hundred ten'),\n(16573, 29992, 'twenty-nine thousand nine hundred ninety-two'),\n(16574, 64170, 'sixty-four thousand one hundred seventy'),\n(16575, 87277, 'eighty-seven thousand two hundred seventy-seven'),\n(16576, 74012, 'seventy-four thousand twelve'),\n(16577, 62299, 'sixty-two thousand two hundred ninety-nine'),\n(16578, 968, 'nine hundred sixty-eight'),\n(16579, 73274, 'seventy-three thousand two hundred seventy-four'),\n(16580, 75610, 'seventy-five thousand six hundred ten'),\n(16581, 49036, 'forty-nine thousand thirty-six'),\n(16582, 75544, 'seventy-five thousand five hundred forty-four'),\n(16583, 8656, 'eight thousand six hundred fifty-six'),\n(16584, 98333, 'ninety-eight thousand three hundred thirty-three'),\n(16585, 90721, 'ninety thousand seven hundred twenty-one'),\n(16586, 83856, 'eighty-three thousand eight hundred fifty-six'),\n(16587, 6477, 'six thousand four hundred seventy-seven'),\n(16588, 25813, 'twenty-five thousand eight hundred thirteen'),\n(16589, 94111, 'ninety-four thousand one hundred eleven'),\n(16590, 53899, 'fifty-three thousand eight hundred ninety-nine'),\n(16591, 87576, 'eighty-seven thousand five hundred seventy-six'),\n(16592, 37205, 'thirty-seven thousand two hundred five'),\n(16593, 66518, 'sixty-six thousand five hundred eighteen'),\n(16594, 49213, 'forty-nine thousand two hundred thirteen'),\n(16595, 3034, 'three thousand thirty-four'),\n(16596, 97592, 'ninety-seven thousand five hundred ninety-two'),\n(16597, 49342, 'forty-nine thousand three hundred forty-two'),\n(16598, 43565, 'forty-three thousand five hundred sixty-five'),\n(16599, 34861, 'thirty-four thousand eight hundred sixty-one'),\n(16600, 54894, 'fifty-four thousand eight hundred ninety-four'),\n(16601, 95894, 'ninety-five thousand eight hundred ninety-four'),\n(16602, 33603, 'thirty-three thousand six hundred three'),\n(16603, 17876, 'seventeen thousand eight hundred seventy-six'),\n(16604, 37795, 'thirty-seven thousand seven hundred ninety-five'),\n(16605, 1571, 'one thousand five hundred seventy-one'),\n(16606, 52715, 'fifty-two thousand seven hundred fifteen'),\n(16607, 44981, 'forty-four thousand nine hundred eighty-one'),\n(16608, 13627, 'thirteen thousand six hundred twenty-seven'),\n(16609, 23786, 'twenty-three thousand seven hundred eighty-six'),\n(16610, 67684, 'sixty-seven thousand six hundred eighty-four'),\n(16611, 31972, 'thirty-one thousand nine hundred seventy-two'),\n(16612, 45826, 'forty-five thousand eight hundred twenty-six'),\n(16613, 33690, 'thirty-three thousand six hundred ninety'),\n(16614, 24457, 'twenty-four thousand four hundred fifty-seven'),\n(16615, 7291, 'seven thousand two hundred ninety-one'),\n(16616, 30936, 'thirty thousand nine hundred thirty-six'),\n(16617, 92212, 'ninety-two thousand two hundred twelve'),\n(16618, 12305, 'twelve thousand three hundred five'),\n(16619, 26396, 'twenty-six thousand three hundred ninety-six'),\n(16620, 42394, 'forty-two thousand three hundred ninety-four'),\n(16621, 87865, 'eighty-seven thousand eight hundred sixty-five'),\n(16622, 65060, 'sixty-five thousand sixty'),\n(16623, 82099, 'eighty-two thousand ninety-nine'),\n(16624, 45080, 'forty-five thousand eighty'),\n(16625, 29100, 'twenty-nine thousand one hundred'),\n(16626, 32059, 'thirty-two thousand fifty-nine'),\n(16627, 41599, 'forty-one thousand five hundred ninety-nine'),\n(16628, 64331, 'sixty-four thousand three hundred thirty-one'),\n(16629, 48273, 'forty-eight thousand two hundred seventy-three'),\n(16630, 11325, 'eleven thousand three hundred twenty-five'),\n(16631, 15835, 'fifteen thousand eight hundred thirty-five'),\n(16632, 59196, 'fifty-nine thousand one hundred ninety-six'),\n(16633, 80805, 'eighty thousand eight hundred five'),\n(16634, 42990, 'forty-two thousand nine hundred ninety'),\n(16635, 63146, 'sixty-three thousand one hundred forty-six'),\n(16636, 5053, 'five thousand fifty-three'),\n(16637, 27481, 'twenty-seven thousand four hundred eighty-one'),\n(16638, 15489, 'fifteen thousand four hundred eighty-nine'),\n(16639, 53241, 'fifty-three thousand two hundred forty-one'),\n(16640, 35502, 'thirty-five thousand five hundred two'),\n(16641, 97716, 'ninety-seven thousand seven hundred sixteen'),\n(16642, 29715, 'twenty-nine thousand seven hundred fifteen'),\n(16643, 50003, 'fifty thousand three'),\n(16644, 70356, 'seventy thousand three hundred fifty-six'),\n(16645, 99225, 'ninety-nine thousand two hundred twenty-five'),\n(16646, 95867, 'ninety-five thousand eight hundred sixty-seven'),\n(16647, 25365, 'twenty-five thousand three hundred sixty-five'),\n(16648, 87161, 'eighty-seven thousand one hundred sixty-one'),\n(16649, 10321, 'ten thousand three hundred twenty-one'),\n(16650, 89143, 'eighty-nine thousand one hundred forty-three'),\n(16651, 77604, 'seventy-seven thousand six hundred four'),\n(16652, 76229, 'seventy-six thousand two hundred twenty-nine'),\n(16653, 8943, 'eight thousand nine hundred forty-three'),\n(16654, 91992, 'ninety-one thousand nine hundred ninety-two'),\n(16655, 60568, 'sixty thousand five hundred sixty-eight'),\n(16656, 58897, 'fifty-eight thousand eight hundred ninety-seven'),\n(16657, 50100, 'fifty thousand one hundred'),\n(16658, 25836, 'twenty-five thousand eight hundred thirty-six'),\n(16659, 9845, 'nine thousand eight hundred forty-five'),\n(16660, 77823, 'seventy-seven thousand eight hundred twenty-three'),\n(16661, 95567, 'ninety-five thousand five hundred sixty-seven'),\n(16662, 5665, 'five thousand six hundred sixty-five'),\n(16663, 47644, 'forty-seven thousand six hundred forty-four'),\n(16664, 78534, 'seventy-eight thousand five hundred thirty-four'),\n(16665, 98272, 'ninety-eight thousand two hundred seventy-two'),\n(16666, 71964, 'seventy-one thousand nine hundred sixty-four'),\n(16667, 56251, 'fifty-six thousand two hundred fifty-one'),\n(16668, 11740, 'eleven thousand seven hundred forty'),\n(16669, 36362, 'thirty-six thousand three hundred sixty-two'),\n(16670, 1351, 'one thousand three hundred fifty-one'),\n(16671, 99147, 'ninety-nine thousand one hundred forty-seven'),\n(16672, 5910, 'five thousand nine hundred ten'),\n(16673, 20392, 'twenty thousand three hundred ninety-two'),\n(16674, 10597, 'ten thousand five hundred ninety-seven'),\n(16675, 80237, 'eighty thousand two hundred thirty-seven'),\n(16676, 22963, 'twenty-two thousand nine hundred sixty-three'),\n(16677, 20732, 'twenty thousand seven hundred thirty-two'),\n(16678, 29366, 'twenty-nine thousand three hundred sixty-six'),\n(16679, 32, 'thirty-two'),\n(16680, 76150, 'seventy-six thousand one hundred fifty'),\n(16681, 10297, 'ten thousand two hundred ninety-seven'),\n(16682, 4496, 'four thousand four hundred ninety-six'),\n(16683, 91830, 'ninety-one thousand eight hundred thirty'),\n(16684, 79050, 'seventy-nine thousand fifty'),\n(16685, 32127, 'thirty-two thousand one hundred twenty-seven'),\n(16686, 2648, 'two thousand six hundred forty-eight'),\n(16687, 16962, 'sixteen thousand nine hundred sixty-two'),\n(16688, 94946, 'ninety-four thousand nine hundred forty-six'),\n(16689, 78936, 'seventy-eight thousand nine hundred thirty-six'),\n(16690, 56866, 'fifty-six thousand eight hundred sixty-six'),\n(16691, 77976, 'seventy-seven thousand nine hundred seventy-six'),\n(16692, 6955, 'six thousand nine hundred fifty-five'),\n(16693, 59775, 'fifty-nine thousand seven hundred seventy-five'),\n(16694, 26897, 'twenty-six thousand eight hundred ninety-seven'),\n(16695, 73649, 'seventy-three thousand six hundred forty-nine'),\n(16696, 96955, 'ninety-six thousand nine hundred fifty-five'),\n(16697, 6287, 'six thousand two hundred eighty-seven'),\n(16698, 50941, 'fifty thousand nine hundred forty-one'),\n(16699, 71342, 'seventy-one thousand three hundred forty-two'),\n(16700, 20010, 'twenty thousand ten'),\n(16701, 24081, 'twenty-four thousand eighty-one'),\n(16702, 94590, 'ninety-four thousand five hundred ninety'),\n(16703, 69908, 'sixty-nine thousand nine hundred eight'),\n(16704, 46576, 'forty-six thousand five hundred seventy-six'),\n(16705, 89833, 'eighty-nine thousand eight hundred thirty-three'),\n(16706, 13367, 'thirteen thousand three hundred sixty-seven'),\n(16707, 49059, 'forty-nine thousand fifty-nine'),\n(16708, 3060, 'three thousand sixty'),\n(16709, 86590, 'eighty-six thousand five hundred ninety'),\n(16710, 48071, 'forty-eight thousand seventy-one'),\n(16711, 49325, 'forty-nine thousand three hundred twenty-five'),\n(16712, 57486, 'fifty-seven thousand four hundred eighty-six'),\n(16713, 31330, 'thirty-one thousand three hundred thirty'),\n(16714, 23312, 'twenty-three thousand three hundred twelve'),\n(16715, 47545, 'forty-seven thousand five hundred forty-five'),\n(16716, 33706, 'thirty-three thousand seven hundred six'),\n(16717, 85785, 'eighty-five thousand seven hundred eighty-five'),\n(16718, 13463, 'thirteen thousand four hundred sixty-three'),\n(16719, 33548, 'thirty-three thousand five hundred forty-eight'),\n(16720, 48986, 'forty-eight thousand nine hundred eighty-six'),\n(16721, 63924, 'sixty-three thousand nine hundred twenty-four'),\n(16722, 40236, 'forty thousand two hundred thirty-six'),\n(16723, 11759, 'eleven thousand seven hundred fifty-nine'),\n(16724, 54573, 'fifty-four thousand five hundred seventy-three'),\n(16725, 63626, 'sixty-three thousand six hundred twenty-six'),\n(16726, 3023, 'three thousand twenty-three'),\n(16727, 26456, 'twenty-six thousand four hundred fifty-six'),\n(16728, 73494, 'seventy-three thousand four hundred ninety-four'),\n(16729, 85219, 'eighty-five thousand two hundred nineteen'),\n(16730, 20045, 'twenty thousand forty-five'),\n(16731, 6444, 'six thousand four hundred forty-four'),\n(16732, 53572, 'fifty-three thousand five hundred seventy-two'),\n(16733, 224, 'two hundred twenty-four'),\n(16734, 80802, 'eighty thousand eight hundred two'),\n(16735, 50393, 'fifty thousand three hundred ninety-three'),\n(16736, 72125, 'seventy-two thousand one hundred twenty-five'),\n(16737, 95693, 'ninety-five thousand six hundred ninety-three'),\n(16738, 90252, 'ninety thousand two hundred fifty-two'),\n(16739, 94316, 'ninety-four thousand three hundred sixteen'),\n(16740, 96754, 'ninety-six thousand seven hundred fifty-four'),\n(16741, 96154, 'ninety-six thousand one hundred fifty-four'),\n(16742, 82511, 'eighty-two thousand five hundred eleven'),\n(16743, 35499, 'thirty-five thousand four hundred ninety-nine'),\n(16744, 69425, 'sixty-nine thousand four hundred twenty-five'),\n(16745, 82509, 'eighty-two thousand five hundred nine'),\n(16746, 66258, 'sixty-six thousand two hundred fifty-eight'),\n(16747, 66468, 'sixty-six thousand four hundred sixty-eight'),\n(16748, 758, 'seven hundred fifty-eight'),\n(16749, 96114, 'ninety-six thousand one hundred fourteen'),\n(16750, 55282, 'fifty-five thousand two hundred eighty-two'),\n(16751, 21404, 'twenty-one thousand four hundred four'),\n(16752, 31650, 'thirty-one thousand six hundred fifty'),\n(16753, 89569, 'eighty-nine thousand five hundred sixty-nine'),\n(16754, 17534, 'seventeen thousand five hundred thirty-four'),\n(16755, 71289, 'seventy-one thousand two hundred eighty-nine'),\n(16756, 79638, 'seventy-nine thousand six hundred thirty-eight'),\n(16757, 26632, 'twenty-six thousand six hundred thirty-two'),\n(16758, 75796, 'seventy-five thousand seven hundred ninety-six'),\n(16759, 66222, 'sixty-six thousand two hundred twenty-two'),\n(16760, 895, 'eight hundred ninety-five'),\n(16761, 74284, 'seventy-four thousand two hundred eighty-four'),\n(16762, 5200, 'five thousand two hundred'),\n(16763, 28231, 'twenty-eight thousand two hundred thirty-one'),\n(16764, 50740, 'fifty thousand seven hundred forty'),\n(16765, 38771, 'thirty-eight thousand seven hundred seventy-one'),\n(16766, 21789, 'twenty-one thousand seven hundred eighty-nine'),\n(16767, 29552, 'twenty-nine thousand five hundred fifty-two'),\n(16768, 34713, 'thirty-four thousand seven hundred thirteen'),\n(16769, 29363, 'twenty-nine thousand three hundred sixty-three'),\n(16770, 35504, 'thirty-five thousand five hundred four'),\n(16771, 36599, 'thirty-six thousand five hundred ninety-nine'),\n(16772, 97777, 'ninety-seven thousand seven hundred seventy-seven'),\n(16773, 38018, 'thirty-eight thousand eighteen'),\n(16774, 26574, 'twenty-six thousand five hundred seventy-four'),\n(16775, 93001, 'ninety-three thousand one'),\n(16776, 8248, 'eight thousand two hundred forty-eight'),\n(16777, 48301, 'forty-eight thousand three hundred one'),\n(16778, 92101, 'ninety-two thousand one hundred one'),\n(16779, 59231, 'fifty-nine thousand two hundred thirty-one'),\n(16780, 73737, 'seventy-three thousand seven hundred thirty-seven'),\n(16781, 20087, 'twenty thousand eighty-seven'),\n(16782, 85653, 'eighty-five thousand six hundred fifty-three'),\n(16783, 98769, 'ninety-eight thousand seven hundred sixty-nine'),\n(16784, 99625, 'ninety-nine thousand six hundred twenty-five'),\n(16785, 79337, 'seventy-nine thousand three hundred thirty-seven'),\n(16786, 88711, 'eighty-eight thousand seven hundred eleven'),\n(16787, 9546, 'nine thousand five hundred forty-six'),\n(16788, 91864, 'ninety-one thousand eight hundred sixty-four'),\n(16789, 19490, 'nineteen thousand four hundred ninety'),\n(16790, 17966, 'seventeen thousand nine hundred sixty-six'),\n(16791, 98496, 'ninety-eight thousand four hundred ninety-six'),\n(16792, 59780, 'fifty-nine thousand seven hundred eighty'),\n(16793, 86695, 'eighty-six thousand six hundred ninety-five'),\n(16794, 43773, 'forty-three thousand seven hundred seventy-three'),\n(16795, 93708, 'ninety-three thousand seven hundred eight'),\n(16796, 51788, 'fifty-one thousand seven hundred eighty-eight'),\n(16797, 22670, 'twenty-two thousand six hundred seventy'),\n(16798, 3298, 'three thousand two hundred ninety-eight'),\n(16799, 56189, 'fifty-six thousand one hundred eighty-nine'),\n(16800, 80737, 'eighty thousand seven hundred thirty-seven'),\n(16801, 83858, 'eighty-three thousand eight hundred fifty-eight'),\n(16802, 63661, 'sixty-three thousand six hundred sixty-one'),\n(16803, 54273, 'fifty-four thousand two hundred seventy-three'),\n(16804, 69968, 'sixty-nine thousand nine hundred sixty-eight'),\n(16805, 93309, 'ninety-three thousand three hundred nine'),\n(16806, 36574, 'thirty-six thousand five hundred seventy-four'),\n(16807, 69948, 'sixty-nine thousand nine hundred forty-eight'),\n(16808, 53272, 'fifty-three thousand two hundred seventy-two'),\n(16809, 99938, 'ninety-nine thousand nine hundred thirty-eight'),\n(16810, 39910, 'thirty-nine thousand nine hundred ten'),\n(16811, 78303, 'seventy-eight thousand three hundred three'),\n(16812, 92131, 'ninety-two thousand one hundred thirty-one'),\n(16813, 30429, 'thirty thousand four hundred twenty-nine'),\n(16814, 5163, 'five thousand one hundred sixty-three'),\n(16815, 83452, 'eighty-three thousand four hundred fifty-two'),\n(16816, 67769, 'sixty-seven thousand seven hundred sixty-nine'),\n(16817, 4818, 'four thousand eight hundred eighteen'),\n(16818, 21035, 'twenty-one thousand thirty-five'),\n(16819, 7568, 'seven thousand five hundred sixty-eight'),\n(16820, 50553, 'fifty thousand five hundred fifty-three'),\n(16821, 46052, 'forty-six thousand fifty-two'),\n(16822, 92711, 'ninety-two thousand seven hundred eleven'),\n(16823, 56309, 'fifty-six thousand three hundred nine'),\n(16824, 83852, 'eighty-three thousand eight hundred fifty-two'),\n(16825, 77424, 'seventy-seven thousand four hundred twenty-four'),\n(16826, 71271, 'seventy-one thousand two hundred seventy-one'),\n(16827, 46684, 'forty-six thousand six hundred eighty-four'),\n(16828, 80565, 'eighty thousand five hundred sixty-five'),\n(16829, 53575, 'fifty-three thousand five hundred seventy-five'),\n(16830, 25129, 'twenty-five thousand one hundred twenty-nine'),\n(16831, 1358, 'one thousand three hundred fifty-eight'),\n(16832, 81577, 'eighty-one thousand five hundred seventy-seven'),\n(16833, 78030, 'seventy-eight thousand thirty'),\n(16834, 60487, 'sixty thousand four hundred eighty-seven'),\n(16835, 38143, 'thirty-eight thousand one hundred forty-three'),\n(16836, 26690, 'twenty-six thousand six hundred ninety'),\n(16837, 20257, 'twenty thousand two hundred fifty-seven'),\n(16838, 51050, 'fifty-one thousand fifty'),\n(16839, 84275, 'eighty-four thousand two hundred seventy-five'),\n(16840, 9355, 'nine thousand three hundred fifty-five'),\n(16841, 79084, 'seventy-nine thousand eighty-four'),\n(16842, 48511, 'forty-eight thousand five hundred eleven'),\n(16843, 38572, 'thirty-eight thousand five hundred seventy-two'),\n(16844, 17542, 'seventeen thousand five hundred forty-two'),\n(16845, 84312, 'eighty-four thousand three hundred twelve'),\n(16846, 84045, 'eighty-four thousand forty-five'),\n(16847, 34557, 'thirty-four thousand five hundred fifty-seven'),\n(16848, 43150, 'forty-three thousand one hundred fifty'),\n(16849, 30884, 'thirty thousand eight hundred eighty-four'),\n(16850, 79738, 'seventy-nine thousand seven hundred thirty-eight'),\n(16851, 59708, 'fifty-nine thousand seven hundred eight'),\n(16852, 79036, 'seventy-nine thousand thirty-six'),\n(16853, 7889, 'seven thousand eight hundred eighty-nine'),\n(16854, 59194, 'fifty-nine thousand one hundred ninety-four'),\n(16855, 59006, 'fifty-nine thousand six'),\n(16856, 61520, 'sixty-one thousand five hundred twenty'),\n(16857, 66134, 'sixty-six thousand one hundred thirty-four'),\n(16858, 55137, 'fifty-five thousand one hundred thirty-seven'),\n(16859, 78653, 'seventy-eight thousand six hundred fifty-three'),\n(16860, 144, 'one hundred forty-four'),\n(16861, 78111, 'seventy-eight thousand one hundred eleven'),\n(16862, 17291, 'seventeen thousand two hundred ninety-one'),\n(16863, 63251, 'sixty-three thousand two hundred fifty-one'),\n(16864, 50649, 'fifty thousand six hundred forty-nine'),\n(16865, 58273, 'fifty-eight thousand two hundred seventy-three'),\n(16866, 80823, 'eighty thousand eight hundred twenty-three'),\n(16867, 21500, 'twenty-one thousand five hundred'),\n(16868, 69765, 'sixty-nine thousand seven hundred sixty-five'),\n(16869, 96778, 'ninety-six thousand seven hundred seventy-eight'),\n(16870, 24095, 'twenty-four thousand ninety-five'),\n(16871, 2249, 'two thousand two hundred forty-nine'),\n(16872, 57226, 'fifty-seven thousand two hundred twenty-six'),\n(16873, 11711, 'eleven thousand seven hundred eleven'),\n(16874, 77965, 'seventy-seven thousand nine hundred sixty-five'),\n(16875, 50856, 'fifty thousand eight hundred fifty-six'),\n(16876, 81998, 'eighty-one thousand nine hundred ninety-eight'),\n(16877, 9088, 'nine thousand eighty-eight'),\n(16878, 55263, 'fifty-five thousand two hundred sixty-three'),\n(16879, 19610, 'nineteen thousand six hundred ten'),\n(16880, 8199, 'eight thousand one hundred ninety-nine'),\n(16881, 88536, 'eighty-eight thousand five hundred thirty-six'),\n(16882, 537, 'five hundred thirty-seven'),\n(16883, 84043, 'eighty-four thousand forty-three'),\n(16884, 72479, 'seventy-two thousand four hundred seventy-nine'),\n(16885, 99147, 'ninety-nine thousand one hundred forty-seven'),\n(16886, 80163, 'eighty thousand one hundred sixty-three'),\n(16887, 84818, 'eighty-four thousand eight hundred eighteen'),\n(16888, 26336, 'twenty-six thousand three hundred thirty-six'),\n(16889, 13715, 'thirteen thousand seven hundred fifteen'),\n(16890, 46663, 'forty-six thousand six hundred sixty-three'),\n(16891, 77217, 'seventy-seven thousand two hundred seventeen'),\n(16892, 32708, 'thirty-two thousand seven hundred eight'),\n(16893, 52817, 'fifty-two thousand eight hundred seventeen'),\n(16894, 3123, 'three thousand one hundred twenty-three'),\n(16895, 28899, 'twenty-eight thousand eight hundred ninety-nine'),\n(16896, 20344, 'twenty thousand three hundred forty-four'),\n(16897, 23896, 'twenty-three thousand eight hundred ninety-six'),\n(16898, 41436, 'forty-one thousand four hundred thirty-six'),\n(16899, 73642, 'seventy-three thousand six hundred forty-two'),\n(16900, 20949, 'twenty thousand nine hundred forty-nine'),\n(16901, 82973, 'eighty-two thousand nine hundred seventy-three'),\n(16902, 54094, 'fifty-four thousand ninety-four'),\n(16903, 61723, 'sixty-one thousand seven hundred twenty-three'),\n(16904, 53202, 'fifty-three thousand two hundred two'),\n(16905, 32281, 'thirty-two thousand two hundred eighty-one'),\n(16906, 18216, 'eighteen thousand two hundred sixteen'),\n(16907, 72970, 'seventy-two thousand nine hundred seventy'),\n(16908, 39624, 'thirty-nine thousand six hundred twenty-four'),\n(16909, 44485, 'forty-four thousand four hundred eighty-five'),\n(16910, 73003, 'seventy-three thousand three'),\n(16911, 38199, 'thirty-eight thousand one hundred ninety-nine'),\n(16912, 85191, 'eighty-five thousand one hundred ninety-one'),\n(16913, 35176, 'thirty-five thousand one hundred seventy-six'),\n(16914, 86845, 'eighty-six thousand eight hundred forty-five'),\n(16915, 75568, 'seventy-five thousand five hundred sixty-eight'),\n(16916, 51429, 'fifty-one thousand four hundred twenty-nine'),\n(16917, 83650, 'eighty-three thousand six hundred fifty'),\n(16918, 62219, 'sixty-two thousand two hundred nineteen'),\n(16919, 43170, 'forty-three thousand one hundred seventy'),\n(16920, 66911, 'sixty-six thousand nine hundred eleven'),\n(16921, 73434, 'seventy-three thousand four hundred thirty-four'),\n(16922, 69968, 'sixty-nine thousand nine hundred sixty-eight'),\n(16923, 74481, 'seventy-four thousand four hundred eighty-one'),\n(16924, 71262, 'seventy-one thousand two hundred sixty-two'),\n(16925, 92144, 'ninety-two thousand one hundred forty-four'),\n(16926, 43944, 'forty-three thousand nine hundred forty-four'),\n(16927, 40176, 'forty thousand one hundred seventy-six'),\n(16928, 21060, 'twenty-one thousand sixty'),\n(16929, 64531, 'sixty-four thousand five hundred thirty-one'),\n(16930, 59645, 'fifty-nine thousand six hundred forty-five'),\n(16931, 82117, 'eighty-two thousand one hundred seventeen'),\n(16932, 17350, 'seventeen thousand three hundred fifty'),\n(16933, 26518, 'twenty-six thousand five hundred eighteen'),\n(16934, 72553, 'seventy-two thousand five hundred fifty-three'),\n(16935, 75415, 'seventy-five thousand four hundred fifteen'),\n(16936, 91622, 'ninety-one thousand six hundred twenty-two'),\n(16937, 66857, 'sixty-six thousand eight hundred fifty-seven'),\n(16938, 21786, 'twenty-one thousand seven hundred eighty-six'),\n(16939, 47193, 'forty-seven thousand one hundred ninety-three'),\n(16940, 64820, 'sixty-four thousand eight hundred twenty'),\n(16941, 54833, 'fifty-four thousand eight hundred thirty-three'),\n(16942, 1033, 'one thousand thirty-three'),\n(16943, 50329, 'fifty thousand three hundred twenty-nine'),\n(16944, 40680, 'forty thousand six hundred eighty'),\n(16945, 79601, 'seventy-nine thousand six hundred one'),\n(16946, 50810, 'fifty thousand eight hundred ten'),\n(16947, 48369, 'forty-eight thousand three hundred sixty-nine'),\n(16948, 64124, 'sixty-four thousand one hundred twenty-four'),\n(16949, 96680, 'ninety-six thousand six hundred eighty'),\n(16950, 37033, 'thirty-seven thousand thirty-three'),\n(16951, 80560, 'eighty thousand five hundred sixty'),\n(16952, 80273, 'eighty thousand two hundred seventy-three'),\n(16953, 40447, 'forty thousand four hundred forty-seven'),\n(16954, 26470, 'twenty-six thousand four hundred seventy'),\n(16955, 69188, 'sixty-nine thousand one hundred eighty-eight'),\n(16956, 91406, 'ninety-one thousand four hundred six'),\n(16957, 17373, 'seventeen thousand three hundred seventy-three'),\n(16958, 96640, 'ninety-six thousand six hundred forty'),\n(16959, 95479, 'ninety-five thousand four hundred seventy-nine'),\n(16960, 84319, 'eighty-four thousand three hundred nineteen'),\n(16961, 80870, 'eighty thousand eight hundred seventy'),\n(16962, 5162, 'five thousand one hundred sixty-two'),\n(16963, 30566, 'thirty thousand five hundred sixty-six'),\n(16964, 9985, 'nine thousand nine hundred eighty-five'),\n(16965, 35200, 'thirty-five thousand two hundred'),\n(16966, 42246, 'forty-two thousand two hundred forty-six'),\n(16967, 7420, 'seven thousand four hundred twenty'),\n(16968, 75893, 'seventy-five thousand eight hundred ninety-three'),\n(16969, 42667, 'forty-two thousand six hundred sixty-seven'),\n(16970, 1333, 'one thousand three hundred thirty-three'),\n(16971, 4574, 'four thousand five hundred seventy-four'),\n(16972, 84825, 'eighty-four thousand eight hundred twenty-five'),\n(16973, 68546, 'sixty-eight thousand five hundred forty-six'),\n(16974, 91310, 'ninety-one thousand three hundred ten'),\n(16975, 94755, 'ninety-four thousand seven hundred fifty-five'),\n(16976, 63474, 'sixty-three thousand four hundred seventy-four'),\n(16977, 55404, 'fifty-five thousand four hundred four'),\n(16978, 67332, 'sixty-seven thousand three hundred thirty-two'),\n(16979, 51974, 'fifty-one thousand nine hundred seventy-four'),\n(16980, 4123, 'four thousand one hundred twenty-three'),\n(16981, 97780, 'ninety-seven thousand seven hundred eighty'),\n(16982, 7005, 'seven thousand five'),\n(16983, 95316, 'ninety-five thousand three hundred sixteen'),\n(16984, 21480, 'twenty-one thousand four hundred eighty'),\n(16985, 11413, 'eleven thousand four hundred thirteen'),\n(16986, 88116, 'eighty-eight thousand one hundred sixteen'),\n(16987, 40724, 'forty thousand seven hundred twenty-four'),\n(16988, 66342, 'sixty-six thousand three hundred forty-two'),\n(16989, 79624, 'seventy-nine thousand six hundred twenty-four'),\n(16990, 65664, 'sixty-five thousand six hundred sixty-four'),\n(16991, 89811, 'eighty-nine thousand eight hundred eleven'),\n(16992, 85186, 'eighty-five thousand one hundred eighty-six'),\n(16993, 70255, 'seventy thousand two hundred fifty-five'),\n(16994, 24962, 'twenty-four thousand nine hundred sixty-two'),\n(16995, 700, 'seven hundred'),\n(16996, 94613, 'ninety-four thousand six hundred thirteen'),\n(16997, 55395, 'fifty-five thousand three hundred ninety-five'),\n(16998, 41440, 'forty-one thousand four hundred forty'),\n(16999, 83895, 'eighty-three thousand eight hundred ninety-five'),\n(17000, 76898, 'seventy-six thousand eight hundred ninety-eight'),\n(17001, 65305, 'sixty-five thousand three hundred five'),\n(17002, 21110, 'twenty-one thousand one hundred ten'),\n(17003, 4343, 'four thousand three hundred forty-three'),\n(17004, 78814, 'seventy-eight thousand eight hundred fourteen'),\n(17005, 34056, 'thirty-four thousand fifty-six'),\n(17006, 17606, 'seventeen thousand six hundred six'),\n(17007, 54536, 'fifty-four thousand five hundred thirty-six'),\n(17008, 3280, 'three thousand two hundred eighty'),\n(17009, 33053, 'thirty-three thousand fifty-three'),\n(17010, 73540, 'seventy-three thousand five hundred forty'),\n(17011, 15375, 'fifteen thousand three hundred seventy-five'),\n(17012, 46052, 'forty-six thousand fifty-two'),\n(17013, 76222, 'seventy-six thousand two hundred twenty-two'),\n(17014, 90058, 'ninety thousand fifty-eight'),\n(17015, 30522, 'thirty thousand five hundred twenty-two'),\n(17016, 58042, 'fifty-eight thousand forty-two'),\n(17017, 71365, 'seventy-one thousand three hundred sixty-five'),\n(17018, 81584, 'eighty-one thousand five hundred eighty-four'),\n(17019, 95687, 'ninety-five thousand six hundred eighty-seven'),\n(17020, 901, 'nine hundred one'),\n(17021, 92202, 'ninety-two thousand two hundred two'),\n(17022, 68063, 'sixty-eight thousand sixty-three'),\n(17023, 15472, 'fifteen thousand four hundred seventy-two'),\n(17024, 92864, 'ninety-two thousand eight hundred sixty-four'),\n(17025, 85073, 'eighty-five thousand seventy-three'),\n(17026, 61548, 'sixty-one thousand five hundred forty-eight'),\n(17027, 88037, 'eighty-eight thousand thirty-seven'),\n(17028, 35407, 'thirty-five thousand four hundred seven'),\n(17029, 58611, 'fifty-eight thousand six hundred eleven'),\n(17030, 51455, 'fifty-one thousand four hundred fifty-five'),\n(17031, 97984, 'ninety-seven thousand nine hundred eighty-four'),\n(17032, 83554, 'eighty-three thousand five hundred fifty-four'),\n(17033, 31688, 'thirty-one thousand six hundred eighty-eight'),\n(17034, 57555, 'fifty-seven thousand five hundred fifty-five'),\n(17035, 54533, 'fifty-four thousand five hundred thirty-three'),\n(17036, 57271, 'fifty-seven thousand two hundred seventy-one'),\n(17037, 18957, 'eighteen thousand nine hundred fifty-seven'),\n(17038, 72477, 'seventy-two thousand four hundred seventy-seven'),\n(17039, 30217, 'thirty thousand two hundred seventeen'),\n(17040, 67737, 'sixty-seven thousand seven hundred thirty-seven'),\n(17041, 31267, 'thirty-one thousand two hundred sixty-seven'),\n(17042, 28796, 'twenty-eight thousand seven hundred ninety-six'),\n(17043, 56667, 'fifty-six thousand six hundred sixty-seven'),\n(17044, 39204, 'thirty-nine thousand two hundred four'),\n(17045, 11674, 'eleven thousand six hundred seventy-four'),\n(17046, 27446, 'twenty-seven thousand four hundred forty-six'),\n(17047, 41105, 'forty-one thousand one hundred five'),\n(17048, 98525, 'ninety-eight thousand five hundred twenty-five'),\n(17049, 89806, 'eighty-nine thousand eight hundred six'),\n(17050, 46997, 'forty-six thousand nine hundred ninety-seven'),\n(17051, 87564, 'eighty-seven thousand five hundred sixty-four'),\n(17052, 73223, 'seventy-three thousand two hundred twenty-three'),\n(17053, 31891, 'thirty-one thousand eight hundred ninety-one'),\n(17054, 66762, 'sixty-six thousand seven hundred sixty-two'),\n(17055, 30880, 'thirty thousand eight hundred eighty'),\n(17056, 76386, 'seventy-six thousand three hundred eighty-six'),\n(17057, 25093, 'twenty-five thousand ninety-three'),\n(17058, 94667, 'ninety-four thousand six hundred sixty-seven'),\n(17059, 8108, 'eight thousand one hundred eight'),\n(17060, 99325, 'ninety-nine thousand three hundred twenty-five'),\n(17061, 66480, 'sixty-six thousand four hundred eighty'),\n(17062, 66167, 'sixty-six thousand one hundred sixty-seven'),\n(17063, 74152, 'seventy-four thousand one hundred fifty-two'),\n(17064, 863, 'eight hundred sixty-three'),\n(17065, 638, 'six hundred thirty-eight'),\n(17066, 7758, 'seven thousand seven hundred fifty-eight'),\n(17067, 41152, 'forty-one thousand one hundred fifty-two'),\n(17068, 52229, 'fifty-two thousand two hundred twenty-nine'),\n(17069, 6799, 'six thousand seven hundred ninety-nine'),\n(17070, 26714, 'twenty-six thousand seven hundred fourteen'),\n(17071, 45046, 'forty-five thousand forty-six'),\n(17072, 3503, 'three thousand five hundred three'),\n(17073, 58650, 'fifty-eight thousand six hundred fifty'),\n(17074, 81376, 'eighty-one thousand three hundred seventy-six'),\n(17075, 33971, 'thirty-three thousand nine hundred seventy-one'),\n(17076, 8329, 'eight thousand three hundred twenty-nine'),\n(17077, 87736, 'eighty-seven thousand seven hundred thirty-six'),\n(17078, 54033, 'fifty-four thousand thirty-three'),\n(17079, 46063, 'forty-six thousand sixty-three'),\n(17080, 30563, 'thirty thousand five hundred sixty-three'),\n(17081, 56526, 'fifty-six thousand five hundred twenty-six'),\n(17082, 62197, 'sixty-two thousand one hundred ninety-seven'),\n(17083, 84182, 'eighty-four thousand one hundred eighty-two'),\n(17084, 89052, 'eighty-nine thousand fifty-two'),\n(17085, 56765, 'fifty-six thousand seven hundred sixty-five'),\n(17086, 73509, 'seventy-three thousand five hundred nine'),\n(17087, 86672, 'eighty-six thousand six hundred seventy-two'),\n(17088, 91559, 'ninety-one thousand five hundred fifty-nine'),\n(17089, 29836, 'twenty-nine thousand eight hundred thirty-six'),\n(17090, 81734, 'eighty-one thousand seven hundred thirty-four'),\n(17091, 7602, 'seven thousand six hundred two'),\n(17092, 19578, 'nineteen thousand five hundred seventy-eight'),\n(17093, 67603, 'sixty-seven thousand six hundred three'),\n(17094, 86777, 'eighty-six thousand seven hundred seventy-seven'),\n(17095, 68304, 'sixty-eight thousand three hundred four'),\n(17096, 74266, 'seventy-four thousand two hundred sixty-six'),\n(17097, 77659, 'seventy-seven thousand six hundred fifty-nine'),\n(17098, 84722, 'eighty-four thousand seven hundred twenty-two'),\n(17099, 90542, 'ninety thousand five hundred forty-two'),\n(17100, 78766, 'seventy-eight thousand seven hundred sixty-six'),\n(17101, 34798, 'thirty-four thousand seven hundred ninety-eight'),\n(17102, 34228, 'thirty-four thousand two hundred twenty-eight'),\n(17103, 54264, 'fifty-four thousand two hundred sixty-four'),\n(17104, 46084, 'forty-six thousand eighty-four'),\n(17105, 55182, 'fifty-five thousand one hundred eighty-two'),\n(17106, 32264, 'thirty-two thousand two hundred sixty-four'),\n(17107, 48309, 'forty-eight thousand three hundred nine'),\n(17108, 36498, 'thirty-six thousand four hundred ninety-eight'),\n(17109, 43392, 'forty-three thousand three hundred ninety-two'),\n(17110, 62051, 'sixty-two thousand fifty-one'),\n(17111, 45687, 'forty-five thousand six hundred eighty-seven'),\n(17112, 68579, 'sixty-eight thousand five hundred seventy-nine'),\n(17113, 93920, 'ninety-three thousand nine hundred twenty'),\n(17114, 13601, 'thirteen thousand six hundred one'),\n(17115, 82078, 'eighty-two thousand seventy-eight'),\n(17116, 69420, 'sixty-nine thousand four hundred twenty'),\n(17117, 76797, 'seventy-six thousand seven hundred ninety-seven'),\n(17118, 35405, 'thirty-five thousand four hundred five'),\n(17119, 63872, 'sixty-three thousand eight hundred seventy-two'),\n(17120, 91641, 'ninety-one thousand six hundred forty-one'),\n(17121, 70224, 'seventy thousand two hundred twenty-four'),\n(17122, 72907, 'seventy-two thousand nine hundred seven'),\n(17123, 8900, 'eight thousand nine hundred'),\n(17124, 43506, 'forty-three thousand five hundred six'),\n(17125, 88184, 'eighty-eight thousand one hundred eighty-four'),\n(17126, 14156, 'fourteen thousand one hundred fifty-six'),\n(17127, 83988, 'eighty-three thousand nine hundred eighty-eight'),\n(17128, 95863, 'ninety-five thousand eight hundred sixty-three'),\n(17129, 85501, 'eighty-five thousand five hundred one'),\n(17130, 25377, 'twenty-five thousand three hundred seventy-seven'),\n(17131, 42550, 'forty-two thousand five hundred fifty'),\n(17132, 23031, 'twenty-three thousand thirty-one'),\n(17133, 8499, 'eight thousand four hundred ninety-nine'),\n(17134, 88478, 'eighty-eight thousand four hundred seventy-eight'),\n(17135, 27972, 'twenty-seven thousand nine hundred seventy-two'),\n(17136, 95246, 'ninety-five thousand two hundred forty-six'),\n(17137, 32861, 'thirty-two thousand eight hundred sixty-one'),\n(17138, 81529, 'eighty-one thousand five hundred twenty-nine'),\n(17139, 84892, 'eighty-four thousand eight hundred ninety-two'),\n(17140, 86423, 'eighty-six thousand four hundred twenty-three'),\n(17141, 39653, 'thirty-nine thousand six hundred fifty-three'),\n(17142, 12833, 'twelve thousand eight hundred thirty-three'),\n(17143, 3016, 'three thousand sixteen'),\n(17144, 91532, 'ninety-one thousand five hundred thirty-two'),\n(17145, 98187, 'ninety-eight thousand one hundred eighty-seven'),\n(17146, 4900, 'four thousand nine hundred'),\n(17147, 22506, 'twenty-two thousand five hundred six'),\n(17148, 42714, 'forty-two thousand seven hundred fourteen'),\n(17149, 12858, 'twelve thousand eight hundred fifty-eight'),\n(17150, 86395, 'eighty-six thousand three hundred ninety-five'),\n(17151, 75314, 'seventy-five thousand three hundred fourteen'),\n(17152, 18464, 'eighteen thousand four hundred sixty-four'),\n(17153, 16178, 'sixteen thousand one hundred seventy-eight'),\n(17154, 55292, 'fifty-five thousand two hundred ninety-two'),\n(17155, 74300, 'seventy-four thousand three hundred'),\n(17156, 14345, 'fourteen thousand three hundred forty-five'),\n(17157, 79716, 'seventy-nine thousand seven hundred sixteen'),\n(17158, 56450, 'fifty-six thousand four hundred fifty'),\n(17159, 70772, 'seventy thousand seven hundred seventy-two'),\n(17160, 1548, 'one thousand five hundred forty-eight'),\n(17161, 44228, 'forty-four thousand two hundred twenty-eight'),\n(17162, 93200, 'ninety-three thousand two hundred'),\n(17163, 2014, 'two thousand fourteen'),\n(17164, 12596, 'twelve thousand five hundred ninety-six'),\n(17165, 83499, 'eighty-three thousand four hundred ninety-nine'),\n(17166, 12749, 'twelve thousand seven hundred forty-nine'),\n(17167, 76654, 'seventy-six thousand six hundred fifty-four'),\n(17168, 15145, 'fifteen thousand one hundred forty-five'),\n(17169, 4215, 'four thousand two hundred fifteen'),\n(17170, 33778, 'thirty-three thousand seven hundred seventy-eight'),\n(17171, 49717, 'forty-nine thousand seven hundred seventeen'),\n(17172, 68017, 'sixty-eight thousand seventeen'),\n(17173, 64708, 'sixty-four thousand seven hundred eight'),\n(17174, 41002, 'forty-one thousand two'),\n(17175, 62181, 'sixty-two thousand one hundred eighty-one'),\n(17176, 92058, 'ninety-two thousand fifty-eight'),\n(17177, 4886, 'four thousand eight hundred eighty-six'),\n(17178, 64723, 'sixty-four thousand seven hundred twenty-three'),\n(17179, 87866, 'eighty-seven thousand eight hundred sixty-six'),\n(17180, 90830, 'ninety thousand eight hundred thirty'),\n(17181, 211, 'two hundred eleven'),\n(17182, 84668, 'eighty-four thousand six hundred sixty-eight'),\n(17183, 69983, 'sixty-nine thousand nine hundred eighty-three'),\n(17184, 53817, 'fifty-three thousand eight hundred seventeen'),\n(17185, 41119, 'forty-one thousand one hundred nineteen'),\n(17186, 97739, 'ninety-seven thousand seven hundred thirty-nine'),\n(17187, 5976, 'five thousand nine hundred seventy-six'),\n(17188, 81647, 'eighty-one thousand six hundred forty-seven'),\n(17189, 83498, 'eighty-three thousand four hundred ninety-eight'),\n(17190, 52981, 'fifty-two thousand nine hundred eighty-one'),\n(17191, 82111, 'eighty-two thousand one hundred eleven'),\n(17192, 69991, 'sixty-nine thousand nine hundred ninety-one'),\n(17193, 15580, 'fifteen thousand five hundred eighty'),\n(17194, 34385, 'thirty-four thousand three hundred eighty-five'),\n(17195, 11275, 'eleven thousand two hundred seventy-five'),\n(17196, 98676, 'ninety-eight thousand six hundred seventy-six'),\n(17197, 10751, 'ten thousand seven hundred fifty-one'),\n(17198, 93225, 'ninety-three thousand two hundred twenty-five'),\n(17199, 83639, 'eighty-three thousand six hundred thirty-nine'),\n(17200, 6676, 'six thousand six hundred seventy-six'),\n(17201, 66995, 'sixty-six thousand nine hundred ninety-five'),\n(17202, 61324, 'sixty-one thousand three hundred twenty-four'),\n(17203, 80165, 'eighty thousand one hundred sixty-five'),\n(17204, 57070, 'fifty-seven thousand seventy'),\n(17205, 21613, 'twenty-one thousand six hundred thirteen'),\n(17206, 65455, 'sixty-five thousand four hundred fifty-five'),\n(17207, 68220, 'sixty-eight thousand two hundred twenty'),\n(17208, 53120, 'fifty-three thousand one hundred twenty'),\n(17209, 77174, 'seventy-seven thousand one hundred seventy-four'),\n(17210, 12018, 'twelve thousand eighteen'),\n(17211, 25315, 'twenty-five thousand three hundred fifteen'),\n(17212, 80467, 'eighty thousand four hundred sixty-seven'),\n(17213, 57054, 'fifty-seven thousand fifty-four'),\n(17214, 74832, 'seventy-four thousand eight hundred thirty-two'),\n(17215, 37741, 'thirty-seven thousand seven hundred forty-one'),\n(17216, 25135, 'twenty-five thousand one hundred thirty-five'),\n(17217, 69785, 'sixty-nine thousand seven hundred eighty-five'),\n(17218, 99936, 'ninety-nine thousand nine hundred thirty-six'),\n(17219, 14674, 'fourteen thousand six hundred seventy-four'),\n(17220, 8674, 'eight thousand six hundred seventy-four'),\n(17221, 77319, 'seventy-seven thousand three hundred nineteen'),\n(17222, 93747, 'ninety-three thousand seven hundred forty-seven'),\n(17223, 74611, 'seventy-four thousand six hundred eleven'),\n(17224, 4687, 'four thousand six hundred eighty-seven'),\n(17225, 54571, 'fifty-four thousand five hundred seventy-one'),\n(17226, 73353, 'seventy-three thousand three hundred fifty-three'),\n(17227, 20275, 'twenty thousand two hundred seventy-five'),\n(17228, 13140, 'thirteen thousand one hundred forty'),\n(17229, 89521, 'eighty-nine thousand five hundred twenty-one'),\n(17230, 29135, 'twenty-nine thousand one hundred thirty-five'),\n(17231, 38123, 'thirty-eight thousand one hundred twenty-three'),\n(17232, 68568, 'sixty-eight thousand five hundred sixty-eight'),\n(17233, 42529, 'forty-two thousand five hundred twenty-nine'),\n(17234, 22732, 'twenty-two thousand seven hundred thirty-two'),\n(17235, 42081, 'forty-two thousand eighty-one'),\n(17236, 27247, 'twenty-seven thousand two hundred forty-seven'),\n(17237, 85138, 'eighty-five thousand one hundred thirty-eight'),\n(17238, 86157, 'eighty-six thousand one hundred fifty-seven'),\n(17239, 41461, 'forty-one thousand four hundred sixty-one'),\n(17240, 34570, 'thirty-four thousand five hundred seventy'),\n(17241, 52775, 'fifty-two thousand seven hundred seventy-five'),\n(17242, 25624, 'twenty-five thousand six hundred twenty-four'),\n(17243, 4443, 'four thousand four hundred forty-three'),\n(17244, 43970, 'forty-three thousand nine hundred seventy'),\n(17245, 76497, 'seventy-six thousand four hundred ninety-seven'),\n(17246, 75163, 'seventy-five thousand one hundred sixty-three'),\n(17247, 68324, 'sixty-eight thousand three hundred twenty-four'),\n(17248, 32366, 'thirty-two thousand three hundred sixty-six'),\n(17249, 46515, 'forty-six thousand five hundred fifteen'),\n(17250, 72462, 'seventy-two thousand four hundred sixty-two'),\n(17251, 73690, 'seventy-three thousand six hundred ninety'),\n(17252, 78971, 'seventy-eight thousand nine hundred seventy-one'),\n(17253, 53915, 'fifty-three thousand nine hundred fifteen'),\n(17254, 45379, 'forty-five thousand three hundred seventy-nine'),\n(17255, 8151, 'eight thousand one hundred fifty-one'),\n(17256, 74124, 'seventy-four thousand one hundred twenty-four'),\n(17257, 42208, 'forty-two thousand two hundred eight'),\n(17258, 64365, 'sixty-four thousand three hundred sixty-five'),\n(17259, 62381, 'sixty-two thousand three hundred eighty-one'),\n(17260, 6153, 'six thousand one hundred fifty-three'),\n(17261, 96485, 'ninety-six thousand four hundred eighty-five'),\n(17262, 78041, 'seventy-eight thousand forty-one'),\n(17263, 64751, 'sixty-four thousand seven hundred fifty-one'),\n(17264, 16555, 'sixteen thousand five hundred fifty-five'),\n(17265, 59323, 'fifty-nine thousand three hundred twenty-three'),\n(17266, 83636, 'eighty-three thousand six hundred thirty-six'),\n(17267, 97504, 'ninety-seven thousand five hundred four'),\n(17268, 15840, 'fifteen thousand eight hundred forty'),\n(17269, 95684, 'ninety-five thousand six hundred eighty-four'),\n(17270, 64917, 'sixty-four thousand nine hundred seventeen'),\n(17271, 51726, 'fifty-one thousand seven hundred twenty-six'),\n(17272, 41265, 'forty-one thousand two hundred sixty-five'),\n(17273, 86079, 'eighty-six thousand seventy-nine'),\n(17274, 19818, 'nineteen thousand eight hundred eighteen'),\n(17275, 3601, 'three thousand six hundred one'),\n(17276, 63636, 'sixty-three thousand six hundred thirty-six'),\n(17277, 98518, 'ninety-eight thousand five hundred eighteen'),\n(17278, 99102, 'ninety-nine thousand one hundred two'),\n(17279, 79815, 'seventy-nine thousand eight hundred fifteen'),\n(17280, 92037, 'ninety-two thousand thirty-seven'),\n(17281, 76336, 'seventy-six thousand three hundred thirty-six'),\n(17282, 54144, 'fifty-four thousand one hundred forty-four'),\n(17283, 68520, 'sixty-eight thousand five hundred twenty'),\n(17284, 97240, 'ninety-seven thousand two hundred forty'),\n(17285, 69414, 'sixty-nine thousand four hundred fourteen'),\n(17286, 73228, 'seventy-three thousand two hundred twenty-eight'),\n(17287, 47121, 'forty-seven thousand one hundred twenty-one'),\n(17288, 25047, 'twenty-five thousand forty-seven'),\n(17289, 74276, 'seventy-four thousand two hundred seventy-six'),\n(17290, 78508, 'seventy-eight thousand five hundred eight'),\n(17291, 18493, 'eighteen thousand four hundred ninety-three'),\n(17292, 38166, 'thirty-eight thousand one hundred sixty-six'),\n(17293, 4325, 'four thousand three hundred twenty-five'),\n(17294, 29170, 'twenty-nine thousand one hundred seventy'),\n(17295, 99618, 'ninety-nine thousand six hundred eighteen'),\n(17296, 12260, 'twelve thousand two hundred sixty'),\n(17297, 78527, 'seventy-eight thousand five hundred twenty-seven'),\n(17298, 77638, 'seventy-seven thousand six hundred thirty-eight'),\n(17299, 51436, 'fifty-one thousand four hundred thirty-six'),\n(17300, 13708, 'thirteen thousand seven hundred eight'),\n(17301, 80836, 'eighty thousand eight hundred thirty-six'),\n(17302, 60009, 'sixty thousand nine'),\n(17303, 78734, 'seventy-eight thousand seven hundred thirty-four'),\n(17304, 21329, 'twenty-one thousand three hundred twenty-nine'),\n(17305, 2069, 'two thousand sixty-nine'),\n(17306, 74423, 'seventy-four thousand four hundred twenty-three'),\n(17307, 17643, 'seventeen thousand six hundred forty-three'),\n(17308, 19965, 'nineteen thousand nine hundred sixty-five'),\n(17309, 97627, 'ninety-seven thousand six hundred twenty-seven'),\n(17310, 65989, 'sixty-five thousand nine hundred eighty-nine'),\n(17311, 23138, 'twenty-three thousand one hundred thirty-eight'),\n(17312, 9974, 'nine thousand nine hundred seventy-four'),\n(17313, 33534, 'thirty-three thousand five hundred thirty-four'),\n(17314, 33175, 'thirty-three thousand one hundred seventy-five'),\n(17315, 56319, 'fifty-six thousand three hundred nineteen'),\n(17316, 96535, 'ninety-six thousand five hundred thirty-five'),\n(17317, 82944, 'eighty-two thousand nine hundred forty-four'),\n(17318, 98273, 'ninety-eight thousand two hundred seventy-three'),\n(17319, 19810, 'nineteen thousand eight hundred ten'),\n(17320, 2565, 'two thousand five hundred sixty-five'),\n(17321, 30171, 'thirty thousand one hundred seventy-one'),\n(17322, 33775, 'thirty-three thousand seven hundred seventy-five'),\n(17323, 29606, 'twenty-nine thousand six hundred six'),\n(17324, 18029, 'eighteen thousand twenty-nine'),\n(17325, 3869, 'three thousand eight hundred sixty-nine'),\n(17326, 90548, 'ninety thousand five hundred forty-eight'),\n(17327, 71791, 'seventy-one thousand seven hundred ninety-one'),\n(17328, 5031, 'five thousand thirty-one'),\n(17329, 53723, 'fifty-three thousand seven hundred twenty-three'),\n(17330, 46932, 'forty-six thousand nine hundred thirty-two'),\n(17331, 95528, 'ninety-five thousand five hundred twenty-eight'),\n(17332, 93529, 'ninety-three thousand five hundred twenty-nine'),\n(17333, 7926, 'seven thousand nine hundred twenty-six'),\n(17334, 81680, 'eighty-one thousand six hundred eighty'),\n(17335, 22336, 'twenty-two thousand three hundred thirty-six'),\n(17336, 21718, 'twenty-one thousand seven hundred eighteen'),\n(17337, 70106, 'seventy thousand one hundred six'),\n(17338, 45527, 'forty-five thousand five hundred twenty-seven'),\n(17339, 22561, 'twenty-two thousand five hundred sixty-one'),\n(17340, 688, 'six hundred eighty-eight'),\n(17341, 52976, 'fifty-two thousand nine hundred seventy-six'),\n(17342, 90461, 'ninety thousand four hundred sixty-one'),\n(17343, 39450, 'thirty-nine thousand four hundred fifty'),\n(17344, 70554, 'seventy thousand five hundred fifty-four'),\n(17345, 41115, 'forty-one thousand one hundred fifteen'),\n(17346, 98998, 'ninety-eight thousand nine hundred ninety-eight'),\n(17347, 78136, 'seventy-eight thousand one hundred thirty-six'),\n(17348, 52418, 'fifty-two thousand four hundred eighteen'),\n(17349, 55026, 'fifty-five thousand twenty-six'),\n(17350, 93818, 'ninety-three thousand eight hundred eighteen'),\n(17351, 82360, 'eighty-two thousand three hundred sixty'),\n(17352, 81551, 'eighty-one thousand five hundred fifty-one'),\n(17353, 55924, 'fifty-five thousand nine hundred twenty-four'),\n(17354, 19569, 'nineteen thousand five hundred sixty-nine'),\n(17355, 1090, 'one thousand ninety'),\n(17356, 22790, 'twenty-two thousand seven hundred ninety'),\n(17357, 3355, 'three thousand three hundred fifty-five'),\n(17358, 74313, 'seventy-four thousand three hundred thirteen'),\n(17359, 87548, 'eighty-seven thousand five hundred forty-eight'),\n(17360, 40000, 'forty thousand'),\n(17361, 81975, 'eighty-one thousand nine hundred seventy-five'),\n(17362, 59330, 'fifty-nine thousand three hundred thirty'),\n(17363, 17792, 'seventeen thousand seven hundred ninety-two'),\n(17364, 50008, 'fifty thousand eight'),\n(17365, 28168, 'twenty-eight thousand one hundred sixty-eight'),\n(17366, 87561, 'eighty-seven thousand five hundred sixty-one'),\n(17367, 53163, 'fifty-three thousand one hundred sixty-three'),\n(17368, 16819, 'sixteen thousand eight hundred nineteen'),\n(17369, 41086, 'forty-one thousand eighty-six'),\n(17370, 30976, 'thirty thousand nine hundred seventy-six'),\n(17371, 39645, 'thirty-nine thousand six hundred forty-five'),\n(17372, 4872, 'four thousand eight hundred seventy-two'),\n(17373, 21678, 'twenty-one thousand six hundred seventy-eight'),\n(17374, 4820, 'four thousand eight hundred twenty'),\n(17375, 90094, 'ninety thousand ninety-four'),\n(17376, 23632, 'twenty-three thousand six hundred thirty-two'),\n(17377, 25243, 'twenty-five thousand two hundred forty-three'),\n(17378, 73537, 'seventy-three thousand five hundred thirty-seven'),\n(17379, 33276, 'thirty-three thousand two hundred seventy-six'),\n(17380, 24621, 'twenty-four thousand six hundred twenty-one'),\n(17381, 64038, 'sixty-four thousand thirty-eight'),\n(17382, 67006, 'sixty-seven thousand six'),\n(17383, 28470, 'twenty-eight thousand four hundred seventy'),\n(17384, 23544, 'twenty-three thousand five hundred forty-four'),\n(17385, 22191, 'twenty-two thousand one hundred ninety-one'),\n(17386, 34798, 'thirty-four thousand seven hundred ninety-eight'),\n(17387, 75247, 'seventy-five thousand two hundred forty-seven'),\n(17388, 19299, 'nineteen thousand two hundred ninety-nine'),\n(17389, 81115, 'eighty-one thousand one hundred fifteen'),\n(17390, 44912, 'forty-four thousand nine hundred twelve'),\n(17391, 68529, 'sixty-eight thousand five hundred twenty-nine'),\n(17392, 87856, 'eighty-seven thousand eight hundred fifty-six'),\n(17393, 40439, 'forty thousand four hundred thirty-nine'),\n(17394, 8472, 'eight thousand four hundred seventy-two'),\n(17395, 18075, 'eighteen thousand seventy-five'),\n(17396, 34365, 'thirty-four thousand three hundred sixty-five'),\n(17397, 6748, 'six thousand seven hundred forty-eight'),\n(17398, 60657, 'sixty thousand six hundred fifty-seven'),\n(17399, 23229, 'twenty-three thousand two hundred twenty-nine'),\n(17400, 47854, 'forty-seven thousand eight hundred fifty-four'),\n(17401, 32587, 'thirty-two thousand five hundred eighty-seven'),\n(17402, 69613, 'sixty-nine thousand six hundred thirteen'),\n(17403, 53980, 'fifty-three thousand nine hundred eighty'),\n(17404, 73534, 'seventy-three thousand five hundred thirty-four'),\n(17405, 61194, 'sixty-one thousand one hundred ninety-four'),\n(17406, 55794, 'fifty-five thousand seven hundred ninety-four'),\n(17407, 87123, 'eighty-seven thousand one hundred twenty-three'),\n(17408, 51183, 'fifty-one thousand one hundred eighty-three'),\n(17409, 78046, 'seventy-eight thousand forty-six'),\n(17410, 8089, 'eight thousand eighty-nine'),\n(17411, 59953, 'fifty-nine thousand nine hundred fifty-three'),\n(17412, 54022, 'fifty-four thousand twenty-two'),\n(17413, 63243, 'sixty-three thousand two hundred forty-three'),\n(17414, 49922, 'forty-nine thousand nine hundred twenty-two'),\n(17415, 1815, 'one thousand eight hundred fifteen'),\n(17416, 593, 'five hundred ninety-three'),\n(17417, 78631, 'seventy-eight thousand six hundred thirty-one'),\n(17418, 39771, 'thirty-nine thousand seven hundred seventy-one'),\n(17419, 592, 'five hundred ninety-two'),\n(17420, 69837, 'sixty-nine thousand eight hundred thirty-seven'),\n(17421, 80466, 'eighty thousand four hundred sixty-six'),\n(17422, 68067, 'sixty-eight thousand sixty-seven'),\n(17423, 75514, 'seventy-five thousand five hundred fourteen'),\n(17424, 48793, 'forty-eight thousand seven hundred ninety-three'),\n(17425, 77150, 'seventy-seven thousand one hundred fifty'),\n(17426, 21912, 'twenty-one thousand nine hundred twelve'),\n(17427, 32284, 'thirty-two thousand two hundred eighty-four'),\n(17428, 15178, 'fifteen thousand one hundred seventy-eight'),\n(17429, 75465, 'seventy-five thousand four hundred sixty-five'),\n(17430, 74181, 'seventy-four thousand one hundred eighty-one'),\n(17431, 85713, 'eighty-five thousand seven hundred thirteen'),\n(17432, 13154, 'thirteen thousand one hundred fifty-four'),\n(17433, 31601, 'thirty-one thousand six hundred one'),\n(17434, 43690, 'forty-three thousand six hundred ninety'),\n(17435, 13959, 'thirteen thousand nine hundred fifty-nine'),\n(17436, 15305, 'fifteen thousand three hundred five'),\n(17437, 16736, 'sixteen thousand seven hundred thirty-six'),\n(17438, 58541, 'fifty-eight thousand five hundred forty-one'),\n(17439, 86269, 'eighty-six thousand two hundred sixty-nine'),\n(17440, 34013, 'thirty-four thousand thirteen'),\n(17441, 61139, 'sixty-one thousand one hundred thirty-nine'),\n(17442, 74970, 'seventy-four thousand nine hundred seventy'),\n(17443, 14037, 'fourteen thousand thirty-seven'),\n(17444, 61203, 'sixty-one thousand two hundred three'),\n(17445, 6286, 'six thousand two hundred eighty-six'),\n(17446, 87866, 'eighty-seven thousand eight hundred sixty-six'),\n(17447, 64733, 'sixty-four thousand seven hundred thirty-three'),\n(17448, 98527, 'ninety-eight thousand five hundred twenty-seven'),\n(17449, 82137, 'eighty-two thousand one hundred thirty-seven'),\n(17450, 11654, 'eleven thousand six hundred fifty-four'),\n(17451, 34752, 'thirty-four thousand seven hundred fifty-two'),\n(17452, 38514, 'thirty-eight thousand five hundred fourteen'),\n(17453, 29696, 'twenty-nine thousand six hundred ninety-six'),\n(17454, 42080, 'forty-two thousand eighty'),\n(17455, 60695, 'sixty thousand six hundred ninety-five'),\n(17456, 76575, 'seventy-six thousand five hundred seventy-five'),\n(17457, 65233, 'sixty-five thousand two hundred thirty-three'),\n(17458, 47021, 'forty-seven thousand twenty-one'),\n(17459, 48397, 'forty-eight thousand three hundred ninety-seven'),\n(17460, 81046, 'eighty-one thousand forty-six'),\n(17461, 99274, 'ninety-nine thousand two hundred seventy-four'),\n(17462, 60267, 'sixty thousand two hundred sixty-seven'),\n(17463, 94097, 'ninety-four thousand ninety-seven'),\n(17464, 14852, 'fourteen thousand eight hundred fifty-two'),\n(17465, 26676, 'twenty-six thousand six hundred seventy-six'),\n(17466, 95851, 'ninety-five thousand eight hundred fifty-one'),\n(17467, 2585, 'two thousand five hundred eighty-five'),\n(17468, 4803, 'four thousand eight hundred three'),\n(17469, 16920, 'sixteen thousand nine hundred twenty'),\n(17470, 60986, 'sixty thousand nine hundred eighty-six'),\n(17471, 55847, 'fifty-five thousand eight hundred forty-seven'),\n(17472, 68490, 'sixty-eight thousand four hundred ninety'),\n(17473, 69215, 'sixty-nine thousand two hundred fifteen'),\n(17474, 10660, 'ten thousand six hundred sixty'),\n(17475, 29114, 'twenty-nine thousand one hundred fourteen'),\n(17476, 31781, 'thirty-one thousand seven hundred eighty-one'),\n(17477, 29191, 'twenty-nine thousand one hundred ninety-one'),\n(17478, 52378, 'fifty-two thousand three hundred seventy-eight'),\n(17479, 14022, 'fourteen thousand twenty-two'),\n(17480, 36873, 'thirty-six thousand eight hundred seventy-three'),\n(17481, 81951, 'eighty-one thousand nine hundred fifty-one'),\n(17482, 1003, 'one thousand three'),\n(17483, 87526, 'eighty-seven thousand five hundred twenty-six'),\n(17484, 74753, 'seventy-four thousand seven hundred fifty-three'),\n(17485, 79057, 'seventy-nine thousand fifty-seven'),\n(17486, 13075, 'thirteen thousand seventy-five'),\n(17487, 51381, 'fifty-one thousand three hundred eighty-one'),\n(17488, 83654, 'eighty-three thousand six hundred fifty-four'),\n(17489, 18811, 'eighteen thousand eight hundred eleven'),\n(17490, 98219, 'ninety-eight thousand two hundred nineteen'),\n(17491, 80679, 'eighty thousand six hundred seventy-nine'),\n(17492, 60515, 'sixty thousand five hundred fifteen'),\n(17493, 32984, 'thirty-two thousand nine hundred eighty-four'),\n(17494, 75016, 'seventy-five thousand sixteen'),\n(17495, 20309, 'twenty thousand three hundred nine'),\n(17496, 25709, 'twenty-five thousand seven hundred nine'),\n(17497, 23825, 'twenty-three thousand eight hundred twenty-five'),\n(17498, 46275, 'forty-six thousand two hundred seventy-five'),\n(17499, 26567, 'twenty-six thousand five hundred sixty-seven'),\n(17500, 18382, 'eighteen thousand three hundred eighty-two'),\n(17501, 90156, 'ninety thousand one hundred fifty-six'),\n(17502, 39556, 'thirty-nine thousand five hundred fifty-six'),\n(17503, 26543, 'twenty-six thousand five hundred forty-three'),\n(17504, 42789, 'forty-two thousand seven hundred eighty-nine'),\n(17505, 8036, 'eight thousand thirty-six'),\n(17506, 7760, 'seven thousand seven hundred sixty'),\n(17507, 67082, 'sixty-seven thousand eighty-two'),\n(17508, 43117, 'forty-three thousand one hundred seventeen'),\n(17509, 74691, 'seventy-four thousand six hundred ninety-one'),\n(17510, 74995, 'seventy-four thousand nine hundred ninety-five'),\n(17511, 75096, 'seventy-five thousand ninety-six'),\n(17512, 14771, 'fourteen thousand seven hundred seventy-one'),\n(17513, 92557, 'ninety-two thousand five hundred fifty-seven'),\n(17514, 86848, 'eighty-six thousand eight hundred forty-eight'),\n(17515, 69858, 'sixty-nine thousand eight hundred fifty-eight'),\n(17516, 51142, 'fifty-one thousand one hundred forty-two'),\n(17517, 88028, 'eighty-eight thousand twenty-eight'),\n(17518, 32494, 'thirty-two thousand four hundred ninety-four'),\n(17519, 65874, 'sixty-five thousand eight hundred seventy-four'),\n(17520, 42536, 'forty-two thousand five hundred thirty-six'),\n(17521, 45844, 'forty-five thousand eight hundred forty-four'),\n(17522, 87207, 'eighty-seven thousand two hundred seven'),\n(17523, 47107, 'forty-seven thousand one hundred seven'),\n(17524, 69097, 'sixty-nine thousand ninety-seven'),\n(17525, 94085, 'ninety-four thousand eighty-five'),\n(17526, 31850, 'thirty-one thousand eight hundred fifty'),\n(17527, 784, 'seven hundred eighty-four'),\n(17528, 63301, 'sixty-three thousand three hundred one'),\n(17529, 53734, 'fifty-three thousand seven hundred thirty-four'),\n(17530, 65987, 'sixty-five thousand nine hundred eighty-seven'),\n(17531, 10, 'ten'),\n(17532, 8151, 'eight thousand one hundred fifty-one'),\n(17533, 30655, 'thirty thousand six hundred fifty-five'),\n(17534, 9301, 'nine thousand three hundred one'),\n(17535, 53040, 'fifty-three thousand forty'),\n(17536, 63417, 'sixty-three thousand four hundred seventeen'),\n(17537, 90407, 'ninety thousand four hundred seven'),\n(17538, 53487, 'fifty-three thousand four hundred eighty-seven'),\n(17539, 48281, 'forty-eight thousand two hundred eighty-one'),\n(17540, 11619, 'eleven thousand six hundred nineteen'),\n(17541, 57508, 'fifty-seven thousand five hundred eight'),\n(17542, 78920, 'seventy-eight thousand nine hundred twenty'),\n(17543, 33433, 'thirty-three thousand four hundred thirty-three'),\n(17544, 14615, 'fourteen thousand six hundred fifteen'),\n(17545, 91128, 'ninety-one thousand one hundred twenty-eight'),\n(17546, 63688, 'sixty-three thousand six hundred eighty-eight'),\n(17547, 20464, 'twenty thousand four hundred sixty-four'),\n(17548, 57080, 'fifty-seven thousand eighty'),\n(17549, 75088, 'seventy-five thousand eighty-eight'),\n(17550, 53567, 'fifty-three thousand five hundred sixty-seven'),\n(17551, 98573, 'ninety-eight thousand five hundred seventy-three'),\n(17552, 10065, 'ten thousand sixty-five'),\n(17553, 71457, 'seventy-one thousand four hundred fifty-seven'),\n(17554, 18394, 'eighteen thousand three hundred ninety-four'),\n(17555, 81965, 'eighty-one thousand nine hundred sixty-five'),\n(17556, 60340, 'sixty thousand three hundred forty'),\n(17557, 87855, 'eighty-seven thousand eight hundred fifty-five'),\n(17558, 34763, 'thirty-four thousand seven hundred sixty-three'),\n(17559, 50361, 'fifty thousand three hundred sixty-one'),\n(17560, 35538, 'thirty-five thousand five hundred thirty-eight'),\n(17561, 85747, 'eighty-five thousand seven hundred forty-seven'),\n(17562, 50403, 'fifty thousand four hundred three'),\n(17563, 5505, 'five thousand five hundred five'),\n(17564, 42224, 'forty-two thousand two hundred twenty-four'),\n(17565, 1640, 'one thousand six hundred forty'),\n(17566, 69530, 'sixty-nine thousand five hundred thirty'),\n(17567, 3996, 'three thousand nine hundred ninety-six'),\n(17568, 94782, 'ninety-four thousand seven hundred eighty-two'),\n(17569, 64938, 'sixty-four thousand nine hundred thirty-eight'),\n(17570, 83231, 'eighty-three thousand two hundred thirty-one'),\n(17571, 96826, 'ninety-six thousand eight hundred twenty-six'),\n(17572, 46506, 'forty-six thousand five hundred six'),\n(17573, 91450, 'ninety-one thousand four hundred fifty'),\n(17574, 55155, 'fifty-five thousand one hundred fifty-five'),\n(17575, 73726, 'seventy-three thousand seven hundred twenty-six'),\n(17576, 42395, 'forty-two thousand three hundred ninety-five'),\n(17577, 33837, 'thirty-three thousand eight hundred thirty-seven'),\n(17578, 35891, 'thirty-five thousand eight hundred ninety-one'),\n(17579, 80658, 'eighty thousand six hundred fifty-eight'),\n(17580, 5275, 'five thousand two hundred seventy-five'),\n(17581, 34057, 'thirty-four thousand fifty-seven'),\n(17582, 28571, 'twenty-eight thousand five hundred seventy-one'),\n(17583, 80810, 'eighty thousand eight hundred ten'),\n(17584, 29970, 'twenty-nine thousand nine hundred seventy'),\n(17585, 93375, 'ninety-three thousand three hundred seventy-five'),\n(17586, 60814, 'sixty thousand eight hundred fourteen'),\n(17587, 14497, 'fourteen thousand four hundred ninety-seven'),\n(17588, 66959, 'sixty-six thousand nine hundred fifty-nine'),\n(17589, 94576, 'ninety-four thousand five hundred seventy-six'),\n(17590, 7204, 'seven thousand two hundred four'),\n(17591, 58077, 'fifty-eight thousand seventy-seven'),\n(17592, 69262, 'sixty-nine thousand two hundred sixty-two'),\n(17593, 39440, 'thirty-nine thousand four hundred forty'),\n(17594, 5776, 'five thousand seven hundred seventy-six'),\n(17595, 3577, 'three thousand five hundred seventy-seven'),\n(17596, 62317, 'sixty-two thousand three hundred seventeen'),\n(17597, 28699, 'twenty-eight thousand six hundred ninety-nine'),\n(17598, 47334, 'forty-seven thousand three hundred thirty-four'),\n(17599, 7365, 'seven thousand three hundred sixty-five'),\n(17600, 32115, 'thirty-two thousand one hundred fifteen'),\n(17601, 81957, 'eighty-one thousand nine hundred fifty-seven'),\n(17602, 95412, 'ninety-five thousand four hundred twelve'),\n(17603, 57706, 'fifty-seven thousand seven hundred six'),\n(17604, 43495, 'forty-three thousand four hundred ninety-five'),\n(17605, 7886, 'seven thousand eight hundred eighty-six'),\n(17606, 84909, 'eighty-four thousand nine hundred nine'),\n(17607, 62411, 'sixty-two thousand four hundred eleven'),\n(17608, 2932, 'two thousand nine hundred thirty-two'),\n(17609, 59963, 'fifty-nine thousand nine hundred sixty-three'),\n(17610, 81409, 'eighty-one thousand four hundred nine'),\n(17611, 39271, 'thirty-nine thousand two hundred seventy-one'),\n(17612, 68812, 'sixty-eight thousand eight hundred twelve'),\n(17613, 86126, 'eighty-six thousand one hundred twenty-six'),\n(17614, 56839, 'fifty-six thousand eight hundred thirty-nine'),\n(17615, 97575, 'ninety-seven thousand five hundred seventy-five'),\n(17616, 20757, 'twenty thousand seven hundred fifty-seven'),\n(17617, 92670, 'ninety-two thousand six hundred seventy'),\n(17618, 18335, 'eighteen thousand three hundred thirty-five'),\n(17619, 50036, 'fifty thousand thirty-six'),\n(17620, 62174, 'sixty-two thousand one hundred seventy-four'),\n(17621, 28314, 'twenty-eight thousand three hundred fourteen'),\n(17622, 89834, 'eighty-nine thousand eight hundred thirty-four'),\n(17623, 30820, 'thirty thousand eight hundred twenty'),\n(17624, 29684, 'twenty-nine thousand six hundred eighty-four'),\n(17625, 57920, 'fifty-seven thousand nine hundred twenty'),\n(17626, 71996, 'seventy-one thousand nine hundred ninety-six'),\n(17627, 86372, 'eighty-six thousand three hundred seventy-two'),\n(17628, 41908, 'forty-one thousand nine hundred eight'),\n(17629, 64805, 'sixty-four thousand eight hundred five'),\n(17630, 56776, 'fifty-six thousand seven hundred seventy-six'),\n(17631, 77770, 'seventy-seven thousand seven hundred seventy'),\n(17632, 2377, 'two thousand three hundred seventy-seven'),\n(17633, 25462, 'twenty-five thousand four hundred sixty-two'),\n(17634, 43426, 'forty-three thousand four hundred twenty-six'),\n(17635, 56638, 'fifty-six thousand six hundred thirty-eight'),\n(17636, 9466, 'nine thousand four hundred sixty-six'),\n(17637, 45623, 'forty-five thousand six hundred twenty-three'),\n(17638, 37195, 'thirty-seven thousand one hundred ninety-five'),\n(17639, 54882, 'fifty-four thousand eight hundred eighty-two'),\n(17640, 88345, 'eighty-eight thousand three hundred forty-five'),\n(17641, 47347, 'forty-seven thousand three hundred forty-seven'),\n(17642, 95118, 'ninety-five thousand one hundred eighteen'),\n(17643, 32358, 'thirty-two thousand three hundred fifty-eight'),\n(17644, 90089, 'ninety thousand eighty-nine'),\n(17645, 1529, 'one thousand five hundred twenty-nine'),\n(17646, 35685, 'thirty-five thousand six hundred eighty-five'),\n(17647, 39437, 'thirty-nine thousand four hundred thirty-seven'),\n(17648, 18190, 'eighteen thousand one hundred ninety'),\n(17649, 38978, 'thirty-eight thousand nine hundred seventy-eight'),\n(17650, 1791, 'one thousand seven hundred ninety-one'),\n(17651, 74754, 'seventy-four thousand seven hundred fifty-four'),\n(17652, 91202, 'ninety-one thousand two hundred two'),\n(17653, 21518, 'twenty-one thousand five hundred eighteen'),\n(17654, 20430, 'twenty thousand four hundred thirty'),\n(17655, 2415, 'two thousand four hundred fifteen'),\n(17656, 92893, 'ninety-two thousand eight hundred ninety-three'),\n(17657, 89810, 'eighty-nine thousand eight hundred ten'),\n(17658, 11670, 'eleven thousand six hundred seventy'),\n(17659, 86149, 'eighty-six thousand one hundred forty-nine'),\n(17660, 99042, 'ninety-nine thousand forty-two'),\n(17661, 94584, 'ninety-four thousand five hundred eighty-four'),\n(17662, 86757, 'eighty-six thousand seven hundred fifty-seven'),\n(17663, 58473, 'fifty-eight thousand four hundred seventy-three'),\n(17664, 28482, 'twenty-eight thousand four hundred eighty-two'),\n(17665, 50879, 'fifty thousand eight hundred seventy-nine'),\n(17666, 88914, 'eighty-eight thousand nine hundred fourteen'),\n(17667, 49203, 'forty-nine thousand two hundred three'),\n(17668, 69985, 'sixty-nine thousand nine hundred eighty-five'),\n(17669, 67933, 'sixty-seven thousand nine hundred thirty-three'),\n(17670, 50267, 'fifty thousand two hundred sixty-seven'),\n(17671, 18242, 'eighteen thousand two hundred forty-two'),\n(17672, 28220, 'twenty-eight thousand two hundred twenty'),\n(17673, 8581, 'eight thousand five hundred eighty-one'),\n(17674, 31099, 'thirty-one thousand ninety-nine'),\n(17675, 1358, 'one thousand three hundred fifty-eight'),\n(17676, 94548, 'ninety-four thousand five hundred forty-eight'),\n(17677, 56710, 'fifty-six thousand seven hundred ten'),\n(17678, 50616, 'fifty thousand six hundred sixteen'),\n(17679, 40611, 'forty thousand six hundred eleven'),\n(17680, 30701, 'thirty thousand seven hundred one'),\n(17681, 6558, 'six thousand five hundred fifty-eight'),\n(17682, 10011, 'ten thousand eleven'),\n(17683, 64410, 'sixty-four thousand four hundred ten'),\n(17684, 22672, 'twenty-two thousand six hundred seventy-two'),\n(17685, 62046, 'sixty-two thousand forty-six'),\n(17686, 73322, 'seventy-three thousand three hundred twenty-two'),\n(17687, 35780, 'thirty-five thousand seven hundred eighty'),\n(17688, 21756, 'twenty-one thousand seven hundred fifty-six'),\n(17689, 86908, 'eighty-six thousand nine hundred eight'),\n(17690, 82599, 'eighty-two thousand five hundred ninety-nine'),\n(17691, 83141, 'eighty-three thousand one hundred forty-one'),\n(17692, 91794, 'ninety-one thousand seven hundred ninety-four'),\n(17693, 58591, 'fifty-eight thousand five hundred ninety-one'),\n(17694, 20080, 'twenty thousand eighty'),\n(17695, 80911, 'eighty thousand nine hundred eleven'),\n(17696, 77428, 'seventy-seven thousand four hundred twenty-eight'),\n(17697, 90445, 'ninety thousand four hundred forty-five'),\n(17698, 19983, 'nineteen thousand nine hundred eighty-three'),\n(17699, 93323, 'ninety-three thousand three hundred twenty-three'),\n(17700, 30613, 'thirty thousand six hundred thirteen'),\n(17701, 48193, 'forty-eight thousand one hundred ninety-three'),\n(17702, 12920, 'twelve thousand nine hundred twenty'),\n(17703, 97445, 'ninety-seven thousand four hundred forty-five'),\n(17704, 22573, 'twenty-two thousand five hundred seventy-three'),\n(17705, 56968, 'fifty-six thousand nine hundred sixty-eight'),\n(17706, 27375, 'twenty-seven thousand three hundred seventy-five'),\n(17707, 56745, 'fifty-six thousand seven hundred forty-five'),\n(17708, 86035, 'eighty-six thousand thirty-five'),\n(17709, 70811, 'seventy thousand eight hundred eleven'),\n(17710, 48482, 'forty-eight thousand four hundred eighty-two'),\n(17711, 34173, 'thirty-four thousand one hundred seventy-three'),\n(17712, 39888, 'thirty-nine thousand eight hundred eighty-eight'),\n(17713, 41643, 'forty-one thousand six hundred forty-three'),\n(17714, 13073, 'thirteen thousand seventy-three'),\n(17715, 71444, 'seventy-one thousand four hundred forty-four'),\n(17716, 76947, 'seventy-six thousand nine hundred forty-seven'),\n(17717, 94255, 'ninety-four thousand two hundred fifty-five'),\n(17718, 8891, 'eight thousand eight hundred ninety-one'),\n(17719, 17896, 'seventeen thousand eight hundred ninety-six'),\n(17720, 85157, 'eighty-five thousand one hundred fifty-seven'),\n(17721, 54433, 'fifty-four thousand four hundred thirty-three'),\n(17722, 85159, 'eighty-five thousand one hundred fifty-nine'),\n(17723, 33390, 'thirty-three thousand three hundred ninety'),\n(17724, 47652, 'forty-seven thousand six hundred fifty-two'),\n(17725, 50918, 'fifty thousand nine hundred eighteen'),\n(17726, 47557, 'forty-seven thousand five hundred fifty-seven'),\n(17727, 20422, 'twenty thousand four hundred twenty-two'),\n(17728, 95736, 'ninety-five thousand seven hundred thirty-six'),\n(17729, 67572, 'sixty-seven thousand five hundred seventy-two'),\n(17730, 22268, 'twenty-two thousand two hundred sixty-eight'),\n(17731, 47115, 'forty-seven thousand one hundred fifteen'),\n(17732, 248, 'two hundred forty-eight'),\n(17733, 42577, 'forty-two thousand five hundred seventy-seven'),\n(17734, 11162, 'eleven thousand one hundred sixty-two'),\n(17735, 27281, 'twenty-seven thousand two hundred eighty-one'),\n(17736, 76521, 'seventy-six thousand five hundred twenty-one'),\n(17737, 49789, 'forty-nine thousand seven hundred eighty-nine'),\n(17738, 87521, 'eighty-seven thousand five hundred twenty-one'),\n(17739, 42104, 'forty-two thousand one hundred four'),\n(17740, 67454, 'sixty-seven thousand four hundred fifty-four'),\n(17741, 37768, 'thirty-seven thousand seven hundred sixty-eight'),\n(17742, 65332, 'sixty-five thousand three hundred thirty-two'),\n(17743, 67693, 'sixty-seven thousand six hundred ninety-three'),\n(17744, 20146, 'twenty thousand one hundred forty-six'),\n(17745, 40333, 'forty thousand three hundred thirty-three'),\n(17746, 40196, 'forty thousand one hundred ninety-six'),\n(17747, 60754, 'sixty thousand seven hundred fifty-four'),\n(17748, 35794, 'thirty-five thousand seven hundred ninety-four'),\n(17749, 34985, 'thirty-four thousand nine hundred eighty-five'),\n(17750, 10447, 'ten thousand four hundred forty-seven'),\n(17751, 9496, 'nine thousand four hundred ninety-six'),\n(17752, 68533, 'sixty-eight thousand five hundred thirty-three'),\n(17753, 38678, 'thirty-eight thousand six hundred seventy-eight'),\n(17754, 27527, 'twenty-seven thousand five hundred twenty-seven'),\n(17755, 15490, 'fifteen thousand four hundred ninety'),\n(17756, 3588, 'three thousand five hundred eighty-eight'),\n(17757, 33010, 'thirty-three thousand ten'),\n(17758, 96746, 'ninety-six thousand seven hundred forty-six'),\n(17759, 27566, 'twenty-seven thousand five hundred sixty-six'),\n(17760, 11148, 'eleven thousand one hundred forty-eight'),\n(17761, 25407, 'twenty-five thousand four hundred seven'),\n(17762, 1267, 'one thousand two hundred sixty-seven'),\n(17763, 72450, 'seventy-two thousand four hundred fifty'),\n(17764, 72779, 'seventy-two thousand seven hundred seventy-nine'),\n(17765, 18050, 'eighteen thousand fifty'),\n(17766, 89190, 'eighty-nine thousand one hundred ninety'),\n(17767, 93864, 'ninety-three thousand eight hundred sixty-four'),\n(17768, 56843, 'fifty-six thousand eight hundred forty-three'),\n(17769, 50247, 'fifty thousand two hundred forty-seven'),\n(17770, 5133, 'five thousand one hundred thirty-three'),\n(17771, 25791, 'twenty-five thousand seven hundred ninety-one'),\n(17772, 27109, 'twenty-seven thousand one hundred nine'),\n(17773, 40378, 'forty thousand three hundred seventy-eight'),\n(17774, 41441, 'forty-one thousand four hundred forty-one'),\n(17775, 96991, 'ninety-six thousand nine hundred ninety-one'),\n(17776, 59920, 'fifty-nine thousand nine hundred twenty'),\n(17777, 40919, 'forty thousand nine hundred nineteen'),\n(17778, 28516, 'twenty-eight thousand five hundred sixteen'),\n(17779, 31281, 'thirty-one thousand two hundred eighty-one'),\n(17780, 29335, 'twenty-nine thousand three hundred thirty-five'),\n(17781, 52496, 'fifty-two thousand four hundred ninety-six'),\n(17782, 88620, 'eighty-eight thousand six hundred twenty'),\n(17783, 36927, 'thirty-six thousand nine hundred twenty-seven'),\n(17784, 10315, 'ten thousand three hundred fifteen'),\n(17785, 34723, 'thirty-four thousand seven hundred twenty-three'),\n(17786, 62596, 'sixty-two thousand five hundred ninety-six'),\n(17787, 14434, 'fourteen thousand four hundred thirty-four'),\n(17788, 53148, 'fifty-three thousand one hundred forty-eight'),\n(17789, 55478, 'fifty-five thousand four hundred seventy-eight'),\n(17790, 63181, 'sixty-three thousand one hundred eighty-one'),\n(17791, 81577, 'eighty-one thousand five hundred seventy-seven'),\n(17792, 62462, 'sixty-two thousand four hundred sixty-two'),\n(17793, 6561, 'six thousand five hundred sixty-one'),\n(17794, 57054, 'fifty-seven thousand fifty-four'),\n(17795, 50885, 'fifty thousand eight hundred eighty-five'),\n(17796, 27445, 'twenty-seven thousand four hundred forty-five'),\n(17797, 39053, 'thirty-nine thousand fifty-three'),\n(17798, 61207, 'sixty-one thousand two hundred seven'),\n(17799, 43877, 'forty-three thousand eight hundred seventy-seven'),\n(17800, 36530, 'thirty-six thousand five hundred thirty'),\n(17801, 10200, 'ten thousand two hundred'),\n(17802, 79093, 'seventy-nine thousand ninety-three'),\n(17803, 87354, 'eighty-seven thousand three hundred fifty-four'),\n(17804, 29405, 'twenty-nine thousand four hundred five'),\n(17805, 7329, 'seven thousand three hundred twenty-nine'),\n(17806, 78214, 'seventy-eight thousand two hundred fourteen'),\n(17807, 65092, 'sixty-five thousand ninety-two'),\n(17808, 94549, 'ninety-four thousand five hundred forty-nine'),\n(17809, 30555, 'thirty thousand five hundred fifty-five'),\n(17810, 65847, 'sixty-five thousand eight hundred forty-seven'),\n(17811, 54402, 'fifty-four thousand four hundred two'),\n(17812, 86122, 'eighty-six thousand one hundred twenty-two'),\n(17813, 64421, 'sixty-four thousand four hundred twenty-one'),\n(17814, 12171, 'twelve thousand one hundred seventy-one'),\n(17815, 3917, 'three thousand nine hundred seventeen'),\n(17816, 13016, 'thirteen thousand sixteen'),\n(17817, 37537, 'thirty-seven thousand five hundred thirty-seven'),\n(17818, 32908, 'thirty-two thousand nine hundred eight'),\n(17819, 49325, 'forty-nine thousand three hundred twenty-five'),\n(17820, 97279, 'ninety-seven thousand two hundred seventy-nine'),\n(17821, 63860, 'sixty-three thousand eight hundred sixty'),\n(17822, 13388, 'thirteen thousand three hundred eighty-eight'),\n(17823, 26429, 'twenty-six thousand four hundred twenty-nine'),\n(17824, 22111, 'twenty-two thousand one hundred eleven'),\n(17825, 74317, 'seventy-four thousand three hundred seventeen'),\n(17826, 82535, 'eighty-two thousand five hundred thirty-five'),\n(17827, 32396, 'thirty-two thousand three hundred ninety-six'),\n(17828, 15348, 'fifteen thousand three hundred forty-eight'),\n(17829, 55403, 'fifty-five thousand four hundred three'),\n(17830, 16606, 'sixteen thousand six hundred six'),\n(17831, 32068, 'thirty-two thousand sixty-eight'),\n(17832, 82729, 'eighty-two thousand seven hundred twenty-nine'),\n(17833, 40022, 'forty thousand twenty-two'),\n(17834, 24520, 'twenty-four thousand five hundred twenty'),\n(17835, 32486, 'thirty-two thousand four hundred eighty-six'),\n(17836, 70518, 'seventy thousand five hundred eighteen'),\n(17837, 23219, 'twenty-three thousand two hundred nineteen'),\n(17838, 37991, 'thirty-seven thousand nine hundred ninety-one'),\n(17839, 67004, 'sixty-seven thousand four'),\n(17840, 77068, 'seventy-seven thousand sixty-eight'),\n(17841, 872, 'eight hundred seventy-two'),\n(17842, 56930, 'fifty-six thousand nine hundred thirty'),\n(17843, 32275, 'thirty-two thousand two hundred seventy-five'),\n(17844, 45873, 'forty-five thousand eight hundred seventy-three'),\n(17845, 90608, 'ninety thousand six hundred eight'),\n(17846, 64738, 'sixty-four thousand seven hundred thirty-eight'),\n(17847, 53831, 'fifty-three thousand eight hundred thirty-one'),\n(17848, 52433, 'fifty-two thousand four hundred thirty-three'),\n(17849, 43735, 'forty-three thousand seven hundred thirty-five'),\n(17850, 14348, 'fourteen thousand three hundred forty-eight'),\n(17851, 10042, 'ten thousand forty-two'),\n(17852, 20370, 'twenty thousand three hundred seventy'),\n(17853, 90275, 'ninety thousand two hundred seventy-five'),\n(17854, 22466, 'twenty-two thousand four hundred sixty-six'),\n(17855, 52097, 'fifty-two thousand ninety-seven'),\n(17856, 37542, 'thirty-seven thousand five hundred forty-two'),\n(17857, 62769, 'sixty-two thousand seven hundred sixty-nine'),\n(17858, 51605, 'fifty-one thousand six hundred five'),\n(17859, 29792, 'twenty-nine thousand seven hundred ninety-two'),\n(17860, 90454, 'ninety thousand four hundred fifty-four'),\n(17861, 95382, 'ninety-five thousand three hundred eighty-two'),\n(17862, 27144, 'twenty-seven thousand one hundred forty-four'),\n(17863, 66977, 'sixty-six thousand nine hundred seventy-seven'),\n(17864, 94268, 'ninety-four thousand two hundred sixty-eight'),\n(17865, 13611, 'thirteen thousand six hundred eleven'),\n(17866, 71186, 'seventy-one thousand one hundred eighty-six'),\n(17867, 64571, 'sixty-four thousand five hundred seventy-one'),\n(17868, 58990, 'fifty-eight thousand nine hundred ninety'),\n(17869, 157, 'one hundred fifty-seven'),\n(17870, 10606, 'ten thousand six hundred six'),\n(17871, 74402, 'seventy-four thousand four hundred two'),\n(17872, 11844, 'eleven thousand eight hundred forty-four'),\n(17873, 25479, 'twenty-five thousand four hundred seventy-nine'),\n(17874, 33863, 'thirty-three thousand eight hundred sixty-three'),\n(17875, 32873, 'thirty-two thousand eight hundred seventy-three'),\n(17876, 65041, 'sixty-five thousand forty-one'),\n(17877, 14210, 'fourteen thousand two hundred ten'),\n(17878, 11718, 'eleven thousand seven hundred eighteen'),\n(17879, 83333, 'eighty-three thousand three hundred thirty-three'),\n(17880, 2636, 'two thousand six hundred thirty-six'),\n(17881, 61898, 'sixty-one thousand eight hundred ninety-eight'),\n(17882, 77091, 'seventy-seven thousand ninety-one'),\n(17883, 63332, 'sixty-three thousand three hundred thirty-two'),\n(17884, 12141, 'twelve thousand one hundred forty-one'),\n(17885, 49258, 'forty-nine thousand two hundred fifty-eight'),\n(17886, 97641, 'ninety-seven thousand six hundred forty-one'),\n(17887, 96816, 'ninety-six thousand eight hundred sixteen'),\n(17888, 53313, 'fifty-three thousand three hundred thirteen'),\n(17889, 80779, 'eighty thousand seven hundred seventy-nine'),\n(17890, 487, 'four hundred eighty-seven'),\n(17891, 42645, 'forty-two thousand six hundred forty-five'),\n(17892, 23915, 'twenty-three thousand nine hundred fifteen'),\n(17893, 60290, 'sixty thousand two hundred ninety'),\n(17894, 70154, 'seventy thousand one hundred fifty-four'),\n(17895, 36921, 'thirty-six thousand nine hundred twenty-one'),\n(17896, 46074, 'forty-six thousand seventy-four'),\n(17897, 76865, 'seventy-six thousand eight hundred sixty-five'),\n(17898, 38338, 'thirty-eight thousand three hundred thirty-eight'),\n(17899, 71718, 'seventy-one thousand seven hundred eighteen'),\n(17900, 14949, 'fourteen thousand nine hundred forty-nine'),\n(17901, 60348, 'sixty thousand three hundred forty-eight'),\n(17902, 12581, 'twelve thousand five hundred eighty-one'),\n(17903, 67406, 'sixty-seven thousand four hundred six'),\n(17904, 43194, 'forty-three thousand one hundred ninety-four'),\n(17905, 21354, 'twenty-one thousand three hundred fifty-four'),\n(17906, 59475, 'fifty-nine thousand four hundred seventy-five'),\n(17907, 97593, 'ninety-seven thousand five hundred ninety-three'),\n(17908, 47316, 'forty-seven thousand three hundred sixteen'),\n(17909, 20038, 'twenty thousand thirty-eight'),\n(17910, 10123, 'ten thousand one hundred twenty-three'),\n(17911, 65713, 'sixty-five thousand seven hundred thirteen'),\n(17912, 78976, 'seventy-eight thousand nine hundred seventy-six'),\n(17913, 87792, 'eighty-seven thousand seven hundred ninety-two'),\n(17914, 65029, 'sixty-five thousand twenty-nine'),\n(17915, 34278, 'thirty-four thousand two hundred seventy-eight'),\n(17916, 16956, 'sixteen thousand nine hundred fifty-six'),\n(17917, 58622, 'fifty-eight thousand six hundred twenty-two'),\n(17918, 26614, 'twenty-six thousand six hundred fourteen'),\n(17919, 63734, 'sixty-three thousand seven hundred thirty-four'),\n(17920, 45065, 'forty-five thousand sixty-five'),\n(17921, 64259, 'sixty-four thousand two hundred fifty-nine'),\n(17922, 57639, 'fifty-seven thousand six hundred thirty-nine'),\n(17923, 29609, 'twenty-nine thousand six hundred nine'),\n(17924, 21771, 'twenty-one thousand seven hundred seventy-one'),\n(17925, 88757, 'eighty-eight thousand seven hundred fifty-seven'),\n(17926, 52284, 'fifty-two thousand two hundred eighty-four'),\n(17927, 1777, 'one thousand seven hundred seventy-seven'),\n(17928, 152, 'one hundred fifty-two'),\n(17929, 21701, 'twenty-one thousand seven hundred one'),\n(17930, 5853, 'five thousand eight hundred fifty-three'),\n(17931, 46708, 'forty-six thousand seven hundred eight'),\n(17932, 69319, 'sixty-nine thousand three hundred nineteen'),\n(17933, 42168, 'forty-two thousand one hundred sixty-eight'),\n(17934, 58380, 'fifty-eight thousand three hundred eighty'),\n(17935, 39463, 'thirty-nine thousand four hundred sixty-three'),\n(17936, 44739, 'forty-four thousand seven hundred thirty-nine'),\n(17937, 23642, 'twenty-three thousand six hundred forty-two'),\n(17938, 18211, 'eighteen thousand two hundred eleven'),\n(17939, 56881, 'fifty-six thousand eight hundred eighty-one'),\n(17940, 52282, 'fifty-two thousand two hundred eighty-two'),\n(17941, 95481, 'ninety-five thousand four hundred eighty-one'),\n(17942, 99683, 'ninety-nine thousand six hundred eighty-three'),\n(17943, 35120, 'thirty-five thousand one hundred twenty'),\n(17944, 20986, 'twenty thousand nine hundred eighty-six'),\n(17945, 52171, 'fifty-two thousand one hundred seventy-one'),\n(17946, 94489, 'ninety-four thousand four hundred eighty-nine'),\n(17947, 97093, 'ninety-seven thousand ninety-three'),\n(17948, 86752, 'eighty-six thousand seven hundred fifty-two'),\n(17949, 80924, 'eighty thousand nine hundred twenty-four'),\n(17950, 50412, 'fifty thousand four hundred twelve'),\n(17951, 38262, 'thirty-eight thousand two hundred sixty-two'),\n(17952, 40808, 'forty thousand eight hundred eight'),\n(17953, 92467, 'ninety-two thousand four hundred sixty-seven'),\n(17954, 53853, 'fifty-three thousand eight hundred fifty-three'),\n(17955, 5696, 'five thousand six hundred ninety-six'),\n(17956, 37384, 'thirty-seven thousand three hundred eighty-four'),\n(17957, 99104, 'ninety-nine thousand one hundred four'),\n(17958, 63154, 'sixty-three thousand one hundred fifty-four'),\n(17959, 68905, 'sixty-eight thousand nine hundred five'),\n(17960, 72986, 'seventy-two thousand nine hundred eighty-six'),\n(17961, 9729, 'nine thousand seven hundred twenty-nine'),\n(17962, 78016, 'seventy-eight thousand sixteen'),\n(17963, 99492, 'ninety-nine thousand four hundred ninety-two'),\n(17964, 35081, 'thirty-five thousand eighty-one'),\n(17965, 39297, 'thirty-nine thousand two hundred ninety-seven'),\n(17966, 81024, 'eighty-one thousand twenty-four'),\n(17967, 3950, 'three thousand nine hundred fifty'),\n(17968, 45067, 'forty-five thousand sixty-seven'),\n(17969, 52812, 'fifty-two thousand eight hundred twelve'),\n(17970, 55743, 'fifty-five thousand seven hundred forty-three'),\n(17971, 69439, 'sixty-nine thousand four hundred thirty-nine'),\n(17972, 52771, 'fifty-two thousand seven hundred seventy-one'),\n(17973, 70455, 'seventy thousand four hundred fifty-five'),\n(17974, 3820, 'three thousand eight hundred twenty'),\n(17975, 91813, 'ninety-one thousand eight hundred thirteen'),\n(17976, 69818, 'sixty-nine thousand eight hundred eighteen'),\n(17977, 55919, 'fifty-five thousand nine hundred nineteen'),\n(17978, 98893, 'ninety-eight thousand eight hundred ninety-three'),\n(17979, 64366, 'sixty-four thousand three hundred sixty-six'),\n(17980, 82159, 'eighty-two thousand one hundred fifty-nine'),\n(17981, 55522, 'fifty-five thousand five hundred twenty-two'),\n(17982, 91460, 'ninety-one thousand four hundred sixty'),\n(17983, 8503, 'eight thousand five hundred three'),\n(17984, 3069, 'three thousand sixty-nine'),\n(17985, 67114, 'sixty-seven thousand one hundred fourteen'),\n(17986, 37930, 'thirty-seven thousand nine hundred thirty'),\n(17987, 8077, 'eight thousand seventy-seven'),\n(17988, 89288, 'eighty-nine thousand two hundred eighty-eight'),\n(17989, 67341, 'sixty-seven thousand three hundred forty-one'),\n(17990, 35574, 'thirty-five thousand five hundred seventy-four'),\n(17991, 75908, 'seventy-five thousand nine hundred eight'),\n(17992, 60655, 'sixty thousand six hundred fifty-five'),\n(17993, 93094, 'ninety-three thousand ninety-four'),\n(17994, 5406, 'five thousand four hundred six'),\n(17995, 58503, 'fifty-eight thousand five hundred three'),\n(17996, 33109, 'thirty-three thousand one hundred nine'),\n(17997, 52908, 'fifty-two thousand nine hundred eight'),\n(17998, 78264, 'seventy-eight thousand two hundred sixty-four'),\n(17999, 19820, 'nineteen thousand eight hundred twenty'),\n(18000, 69222, 'sixty-nine thousand two hundred twenty-two'),\n(18001, 11344, 'eleven thousand three hundred forty-four'),\n(18002, 16549, 'sixteen thousand five hundred forty-nine'),\n(18003, 32202, 'thirty-two thousand two hundred two'),\n(18004, 71942, 'seventy-one thousand nine hundred forty-two'),\n(18005, 82521, 'eighty-two thousand five hundred twenty-one'),\n(18006, 68078, 'sixty-eight thousand seventy-eight'),\n(18007, 65688, 'sixty-five thousand six hundred eighty-eight'),\n(18008, 49403, 'forty-nine thousand four hundred three'),\n(18009, 77360, 'seventy-seven thousand three hundred sixty'),\n(18010, 18164, 'eighteen thousand one hundred sixty-four'),\n(18011, 73993, 'seventy-three thousand nine hundred ninety-three'),\n(18012, 19775, 'nineteen thousand seven hundred seventy-five'),\n(18013, 69957, 'sixty-nine thousand nine hundred fifty-seven'),\n(18014, 33962, 'thirty-three thousand nine hundred sixty-two'),\n(18015, 82716, 'eighty-two thousand seven hundred sixteen'),\n(18016, 29186, 'twenty-nine thousand one hundred eighty-six'),\n(18017, 67157, 'sixty-seven thousand one hundred fifty-seven'),\n(18018, 49874, 'forty-nine thousand eight hundred seventy-four'),\n(18019, 66754, 'sixty-six thousand seven hundred fifty-four'),\n(18020, 66623, 'sixty-six thousand six hundred twenty-three'),\n(18021, 64804, 'sixty-four thousand eight hundred four'),\n(18022, 64670, 'sixty-four thousand six hundred seventy'),\n(18023, 8471, 'eight thousand four hundred seventy-one'),\n(18024, 53459, 'fifty-three thousand four hundred fifty-nine'),\n(18025, 61326, 'sixty-one thousand three hundred twenty-six'),\n(18026, 47055, 'forty-seven thousand fifty-five'),\n(18027, 240, 'two hundred forty'),\n(18028, 79895, 'seventy-nine thousand eight hundred ninety-five'),\n(18029, 8113, 'eight thousand one hundred thirteen'),\n(18030, 31497, 'thirty-one thousand four hundred ninety-seven'),\n(18031, 41529, 'forty-one thousand five hundred twenty-nine'),\n(18032, 98580, 'ninety-eight thousand five hundred eighty'),\n(18033, 32902, 'thirty-two thousand nine hundred two'),\n(18034, 31551, 'thirty-one thousand five hundred fifty-one'),\n(18035, 57650, 'fifty-seven thousand six hundred fifty'),\n(18036, 91597, 'ninety-one thousand five hundred ninety-seven'),\n(18037, 70813, 'seventy thousand eight hundred thirteen'),\n(18038, 96030, 'ninety-six thousand thirty'),\n(18039, 94049, 'ninety-four thousand forty-nine'),\n(18040, 14632, 'fourteen thousand six hundred thirty-two'),\n(18041, 86333, 'eighty-six thousand three hundred thirty-three'),\n(18042, 49202, 'forty-nine thousand two hundred two'),\n(18043, 12388, 'twelve thousand three hundred eighty-eight'),\n(18044, 89225, 'eighty-nine thousand two hundred twenty-five'),\n(18045, 69657, 'sixty-nine thousand six hundred fifty-seven'),\n(18046, 48643, 'forty-eight thousand six hundred forty-three'),\n(18047, 98850, 'ninety-eight thousand eight hundred fifty'),\n(18048, 51890, 'fifty-one thousand eight hundred ninety'),\n(18049, 25730, 'twenty-five thousand seven hundred thirty'),\n(18050, 13491, 'thirteen thousand four hundred ninety-one'),\n(18051, 29215, 'twenty-nine thousand two hundred fifteen'),\n(18052, 75378, 'seventy-five thousand three hundred seventy-eight'),\n(18053, 12394, 'twelve thousand three hundred ninety-four'),\n(18054, 62517, 'sixty-two thousand five hundred seventeen'),\n(18055, 21796, 'twenty-one thousand seven hundred ninety-six'),\n(18056, 92824, 'ninety-two thousand eight hundred twenty-four'),\n(18057, 83018, 'eighty-three thousand eighteen'),\n(18058, 84938, 'eighty-four thousand nine hundred thirty-eight'),\n(18059, 73132, 'seventy-three thousand one hundred thirty-two'),\n(18060, 82761, 'eighty-two thousand seven hundred sixty-one'),\n(18061, 10641, 'ten thousand six hundred forty-one'),\n(18062, 92567, 'ninety-two thousand five hundred sixty-seven'),\n(18063, 99559, 'ninety-nine thousand five hundred fifty-nine'),\n(18064, 53723, 'fifty-three thousand seven hundred twenty-three'),\n(18065, 31493, 'thirty-one thousand four hundred ninety-three'),\n(18066, 10340, 'ten thousand three hundred forty'),\n(18067, 28405, 'twenty-eight thousand four hundred five'),\n(18068, 59210, 'fifty-nine thousand two hundred ten'),\n(18069, 98540, 'ninety-eight thousand five hundred forty'),\n(18070, 70488, 'seventy thousand four hundred eighty-eight'),\n(18071, 67152, 'sixty-seven thousand one hundred fifty-two'),\n(18072, 5995, 'five thousand nine hundred ninety-five'),\n(18073, 41583, 'forty-one thousand five hundred eighty-three'),\n(18074, 15155, 'fifteen thousand one hundred fifty-five'),\n(18075, 7412, 'seven thousand four hundred twelve'),\n(18076, 83748, 'eighty-three thousand seven hundred forty-eight'),\n(18077, 80117, 'eighty thousand one hundred seventeen'),\n(18078, 86084, 'eighty-six thousand eighty-four'),\n(18079, 39231, 'thirty-nine thousand two hundred thirty-one'),\n(18080, 82455, 'eighty-two thousand four hundred fifty-five'),\n(18081, 13541, 'thirteen thousand five hundred forty-one'),\n(18082, 71737, 'seventy-one thousand seven hundred thirty-seven'),\n(18083, 34045, 'thirty-four thousand forty-five'),\n(18084, 56671, 'fifty-six thousand six hundred seventy-one'),\n(18085, 40559, 'forty thousand five hundred fifty-nine'),\n(18086, 40852, 'forty thousand eight hundred fifty-two'),\n(18087, 31524, 'thirty-one thousand five hundred twenty-four'),\n(18088, 36714, 'thirty-six thousand seven hundred fourteen'),\n(18089, 77971, 'seventy-seven thousand nine hundred seventy-one'),\n(18090, 46440, 'forty-six thousand four hundred forty'),\n(18091, 83734, 'eighty-three thousand seven hundred thirty-four'),\n(18092, 28864, 'twenty-eight thousand eight hundred sixty-four'),\n(18093, 87334, 'eighty-seven thousand three hundred thirty-four'),\n(18094, 59821, 'fifty-nine thousand eight hundred twenty-one'),\n(18095, 58367, 'fifty-eight thousand three hundred sixty-seven'),\n(18096, 57033, 'fifty-seven thousand thirty-three'),\n(18097, 77686, 'seventy-seven thousand six hundred eighty-six'),\n(18098, 31095, 'thirty-one thousand ninety-five'),\n(18099, 83822, 'eighty-three thousand eight hundred twenty-two'),\n(18100, 38240, 'thirty-eight thousand two hundred forty'),\n(18101, 69205, 'sixty-nine thousand two hundred five'),\n(18102, 69114, 'sixty-nine thousand one hundred fourteen'),\n(18103, 83844, 'eighty-three thousand eight hundred forty-four'),\n(18104, 25945, 'twenty-five thousand nine hundred forty-five'),\n(18105, 16850, 'sixteen thousand eight hundred fifty'),\n(18106, 35607, 'thirty-five thousand six hundred seven'),\n(18107, 29803, 'twenty-nine thousand eight hundred three'),\n(18108, 52399, 'fifty-two thousand three hundred ninety-nine'),\n(18109, 52957, 'fifty-two thousand nine hundred fifty-seven'),\n(18110, 86802, 'eighty-six thousand eight hundred two'),\n(18111, 32652, 'thirty-two thousand six hundred fifty-two'),\n(18112, 23084, 'twenty-three thousand eighty-four'),\n(18113, 24066, 'twenty-four thousand sixty-six'),\n(18114, 37875, 'thirty-seven thousand eight hundred seventy-five'),\n(18115, 77684, 'seventy-seven thousand six hundred eighty-four'),\n(18116, 22519, 'twenty-two thousand five hundred nineteen'),\n(18117, 66477, 'sixty-six thousand four hundred seventy-seven'),\n(18118, 11312, 'eleven thousand three hundred twelve'),\n(18119, 42113, 'forty-two thousand one hundred thirteen'),\n(18120, 10071, 'ten thousand seventy-one'),\n(18121, 78343, 'seventy-eight thousand three hundred forty-three'),\n(18122, 76358, 'seventy-six thousand three hundred fifty-eight'),\n(18123, 38064, 'thirty-eight thousand sixty-four'),\n(18124, 5225, 'five thousand two hundred twenty-five'),\n(18125, 75410, 'seventy-five thousand four hundred ten'),\n(18126, 22516, 'twenty-two thousand five hundred sixteen'),\n(18127, 94831, 'ninety-four thousand eight hundred thirty-one'),\n(18128, 68601, 'sixty-eight thousand six hundred one'),\n(18129, 40943, 'forty thousand nine hundred forty-three'),\n(18130, 71809, 'seventy-one thousand eight hundred nine'),\n(18131, 49824, 'forty-nine thousand eight hundred twenty-four'),\n(18132, 34991, 'thirty-four thousand nine hundred ninety-one'),\n(18133, 28434, 'twenty-eight thousand four hundred thirty-four'),\n(18134, 839, 'eight hundred thirty-nine'),\n(18135, 40123, 'forty thousand one hundred twenty-three'),\n(18136, 52661, 'fifty-two thousand six hundred sixty-one'),\n(18137, 68593, 'sixty-eight thousand five hundred ninety-three'),\n(18138, 79340, 'seventy-nine thousand three hundred forty'),\n(18139, 96850, 'ninety-six thousand eight hundred fifty'),\n(18140, 19722, 'nineteen thousand seven hundred twenty-two'),\n(18141, 81963, 'eighty-one thousand nine hundred sixty-three'),\n(18142, 42237, 'forty-two thousand two hundred thirty-seven'),\n(18143, 53259, 'fifty-three thousand two hundred fifty-nine'),\n(18144, 8696, 'eight thousand six hundred ninety-six'),\n(18145, 89432, 'eighty-nine thousand four hundred thirty-two'),\n(18146, 34865, 'thirty-four thousand eight hundred sixty-five'),\n(18147, 778, 'seven hundred seventy-eight'),\n(18148, 3752, 'three thousand seven hundred fifty-two'),\n(18149, 80337, 'eighty thousand three hundred thirty-seven'),\n(18150, 60257, 'sixty thousand two hundred fifty-seven'),\n(18151, 12644, 'twelve thousand six hundred forty-four'),\n(18152, 22016, 'twenty-two thousand sixteen'),\n(18153, 41847, 'forty-one thousand eight hundred forty-seven'),\n(18154, 55242, 'fifty-five thousand two hundred forty-two'),\n(18155, 77675, 'seventy-seven thousand six hundred seventy-five'),\n(18156, 93515, 'ninety-three thousand five hundred fifteen'),\n(18157, 19247, 'nineteen thousand two hundred forty-seven'),\n(18158, 31076, 'thirty-one thousand seventy-six'),\n(18159, 57615, 'fifty-seven thousand six hundred fifteen'),\n(18160, 6157, 'six thousand one hundred fifty-seven'),\n(18161, 7705, 'seven thousand seven hundred five'),\n(18162, 45019, 'forty-five thousand nineteen'),\n(18163, 52243, 'fifty-two thousand two hundred forty-three'),\n(18164, 72361, 'seventy-two thousand three hundred sixty-one'),\n(18165, 28395, 'twenty-eight thousand three hundred ninety-five'),\n(18166, 17535, 'seventeen thousand five hundred thirty-five'),\n(18167, 99667, 'ninety-nine thousand six hundred sixty-seven'),\n(18168, 51057, 'fifty-one thousand fifty-seven'),\n(18169, 65821, 'sixty-five thousand eight hundred twenty-one'),\n(18170, 35024, 'thirty-five thousand twenty-four'),\n(18171, 28036, 'twenty-eight thousand thirty-six'),\n(18172, 9423, 'nine thousand four hundred twenty-three'),\n(18173, 676, 'six hundred seventy-six'),\n(18174, 1979, 'one thousand nine hundred seventy-nine'),\n(18175, 92631, 'ninety-two thousand six hundred thirty-one'),\n(18176, 587, 'five hundred eighty-seven'),\n(18177, 53312, 'fifty-three thousand three hundred twelve'),\n(18178, 86244, 'eighty-six thousand two hundred forty-four'),\n(18179, 47708, 'forty-seven thousand seven hundred eight'),\n(18180, 69902, 'sixty-nine thousand nine hundred two'),\n(18181, 18642, 'eighteen thousand six hundred forty-two'),\n(18182, 3677, 'three thousand six hundred seventy-seven'),\n(18183, 48693, 'forty-eight thousand six hundred ninety-three'),\n(18184, 54616, 'fifty-four thousand six hundred sixteen'),\n(18185, 44953, 'forty-four thousand nine hundred fifty-three'),\n(18186, 26769, 'twenty-six thousand seven hundred sixty-nine'),\n(18187, 88681, 'eighty-eight thousand six hundred eighty-one'),\n(18188, 13297, 'thirteen thousand two hundred ninety-seven'),\n(18189, 2813, 'two thousand eight hundred thirteen'),\n(18190, 99334, 'ninety-nine thousand three hundred thirty-four'),\n(18191, 35489, 'thirty-five thousand four hundred eighty-nine'),\n(18192, 83455, 'eighty-three thousand four hundred fifty-five'),\n(18193, 74751, 'seventy-four thousand seven hundred fifty-one'),\n(18194, 31216, 'thirty-one thousand two hundred sixteen'),\n(18195, 41458, 'forty-one thousand four hundred fifty-eight'),\n(18196, 22365, 'twenty-two thousand three hundred sixty-five'),\n(18197, 28797, 'twenty-eight thousand seven hundred ninety-seven'),\n(18198, 70043, 'seventy thousand forty-three'),\n(18199, 34360, 'thirty-four thousand three hundred sixty'),\n(18200, 84768, 'eighty-four thousand seven hundred sixty-eight'),\n(18201, 1763, 'one thousand seven hundred sixty-three'),\n(18202, 17630, 'seventeen thousand six hundred thirty'),\n(18203, 94790, 'ninety-four thousand seven hundred ninety'),\n(18204, 52108, 'fifty-two thousand one hundred eight'),\n(18205, 78884, 'seventy-eight thousand eight hundred eighty-four'),\n(18206, 25468, 'twenty-five thousand four hundred sixty-eight'),\n(18207, 6545, 'six thousand five hundred forty-five'),\n(18208, 46144, 'forty-six thousand one hundred forty-four'),\n(18209, 68943, 'sixty-eight thousand nine hundred forty-three'),\n(18210, 85902, 'eighty-five thousand nine hundred two'),\n(18211, 36142, 'thirty-six thousand one hundred forty-two'),\n(18212, 18879, 'eighteen thousand eight hundred seventy-nine'),\n(18213, 49729, 'forty-nine thousand seven hundred twenty-nine'),\n(18214, 77988, 'seventy-seven thousand nine hundred eighty-eight'),\n(18215, 54039, 'fifty-four thousand thirty-nine'),\n(18216, 49744, 'forty-nine thousand seven hundred forty-four'),\n(18217, 36567, 'thirty-six thousand five hundred sixty-seven'),\n(18218, 95884, 'ninety-five thousand eight hundred eighty-four'),\n(18219, 36545, 'thirty-six thousand five hundred forty-five'),\n(18220, 17832, 'seventeen thousand eight hundred thirty-two'),\n(18221, 4554, 'four thousand five hundred fifty-four'),\n(18222, 91185, 'ninety-one thousand one hundred eighty-five'),\n(18223, 36481, 'thirty-six thousand four hundred eighty-one'),\n(18224, 91760, 'ninety-one thousand seven hundred sixty'),\n(18225, 18298, 'eighteen thousand two hundred ninety-eight'),\n(18226, 274, 'two hundred seventy-four'),\n(18227, 19481, 'nineteen thousand four hundred eighty-one'),\n(18228, 87851, 'eighty-seven thousand eight hundred fifty-one'),\n(18229, 29251, 'twenty-nine thousand two hundred fifty-one'),\n(18230, 67116, 'sixty-seven thousand one hundred sixteen'),\n(18231, 17167, 'seventeen thousand one hundred sixty-seven'),\n(18232, 45900, 'forty-five thousand nine hundred'),\n(18233, 10692, 'ten thousand six hundred ninety-two'),\n(18234, 40811, 'forty thousand eight hundred eleven'),\n(18235, 72354, 'seventy-two thousand three hundred fifty-four'),\n(18236, 71532, 'seventy-one thousand five hundred thirty-two'),\n(18237, 16272, 'sixteen thousand two hundred seventy-two'),\n(18238, 4062, 'four thousand sixty-two'),\n(18239, 20263, 'twenty thousand two hundred sixty-three'),\n(18240, 81813, 'eighty-one thousand eight hundred thirteen'),\n(18241, 16476, 'sixteen thousand four hundred seventy-six'),\n(18242, 75110, 'seventy-five thousand one hundred ten'),\n(18243, 99463, 'ninety-nine thousand four hundred sixty-three'),\n(18244, 73235, 'seventy-three thousand two hundred thirty-five'),\n(18245, 45277, 'forty-five thousand two hundred seventy-seven'),\n(18246, 9513, 'nine thousand five hundred thirteen'),\n(18247, 18211, 'eighteen thousand two hundred eleven'),\n(18248, 91367, 'ninety-one thousand three hundred sixty-seven'),\n(18249, 5333, 'five thousand three hundred thirty-three'),\n(18250, 18915, 'eighteen thousand nine hundred fifteen'),\n(18251, 5699, 'five thousand six hundred ninety-nine'),\n(18252, 40111, 'forty thousand one hundred eleven'),\n(18253, 85893, 'eighty-five thousand eight hundred ninety-three'),\n(18254, 41574, 'forty-one thousand five hundred seventy-four'),\n(18255, 84297, 'eighty-four thousand two hundred ninety-seven'),\n(18256, 27290, 'twenty-seven thousand two hundred ninety'),\n(18257, 69072, 'sixty-nine thousand seventy-two'),\n(18258, 10164, 'ten thousand one hundred sixty-four'),\n(18259, 6548, 'six thousand five hundred forty-eight'),\n(18260, 20490, 'twenty thousand four hundred ninety'),\n(18261, 67949, 'sixty-seven thousand nine hundred forty-nine'),\n(18262, 87172, 'eighty-seven thousand one hundred seventy-two'),\n(18263, 8892, 'eight thousand eight hundred ninety-two'),\n(18264, 3556, 'three thousand five hundred fifty-six'),\n(18265, 46688, 'forty-six thousand six hundred eighty-eight'),\n(18266, 87914, 'eighty-seven thousand nine hundred fourteen'),\n(18267, 84136, 'eighty-four thousand one hundred thirty-six'),\n(18268, 71777, 'seventy-one thousand seven hundred seventy-seven'),\n(18269, 94267, 'ninety-four thousand two hundred sixty-seven'),\n(18270, 63858, 'sixty-three thousand eight hundred fifty-eight'),\n(18271, 92642, 'ninety-two thousand six hundred forty-two'),\n(18272, 14729, 'fourteen thousand seven hundred twenty-nine'),\n(18273, 98973, 'ninety-eight thousand nine hundred seventy-three'),\n(18274, 48860, 'forty-eight thousand eight hundred sixty'),\n(18275, 37651, 'thirty-seven thousand six hundred fifty-one'),\n(18276, 69811, 'sixty-nine thousand eight hundred eleven'),\n(18277, 11237, 'eleven thousand two hundred thirty-seven'),\n(18278, 70313, 'seventy thousand three hundred thirteen'),\n(18279, 65118, 'sixty-five thousand one hundred eighteen'),\n(18280, 14955, 'fourteen thousand nine hundred fifty-five'),\n(18281, 98985, 'ninety-eight thousand nine hundred eighty-five'),\n(18282, 99399, 'ninety-nine thousand three hundred ninety-nine'),\n(18283, 57169, 'fifty-seven thousand one hundred sixty-nine'),\n(18284, 1567, 'one thousand five hundred sixty-seven'),\n(18285, 27944, 'twenty-seven thousand nine hundred forty-four'),\n(18286, 36695, 'thirty-six thousand six hundred ninety-five'),\n(18287, 1291, 'one thousand two hundred ninety-one'),\n(18288, 73497, 'seventy-three thousand four hundred ninety-seven'),\n(18289, 37604, 'thirty-seven thousand six hundred four'),\n(18290, 7905, 'seven thousand nine hundred five'),\n(18291, 64460, 'sixty-four thousand four hundred sixty'),\n(18292, 83021, 'eighty-three thousand twenty-one'),\n(18293, 71975, 'seventy-one thousand nine hundred seventy-five'),\n(18294, 70278, 'seventy thousand two hundred seventy-eight'),\n(18295, 83557, 'eighty-three thousand five hundred fifty-seven'),\n(18296, 3290, 'three thousand two hundred ninety'),\n(18297, 16423, 'sixteen thousand four hundred twenty-three'),\n(18298, 7116, 'seven thousand one hundred sixteen'),\n(18299, 40651, 'forty thousand six hundred fifty-one'),\n(18300, 25838, 'twenty-five thousand eight hundred thirty-eight'),\n(18301, 48834, 'forty-eight thousand eight hundred thirty-four'),\n(18302, 23328, 'twenty-three thousand three hundred twenty-eight'),\n(18303, 39680, 'thirty-nine thousand six hundred eighty'),\n(18304, 51819, 'fifty-one thousand eight hundred nineteen'),\n(18305, 18813, 'eighteen thousand eight hundred thirteen'),\n(18306, 97323, 'ninety-seven thousand three hundred twenty-three'),\n(18307, 66364, 'sixty-six thousand three hundred sixty-four'),\n(18308, 39522, 'thirty-nine thousand five hundred twenty-two'),\n(18309, 77707, 'seventy-seven thousand seven hundred seven'),\n(18310, 71715, 'seventy-one thousand seven hundred fifteen'),\n(18311, 33025, 'thirty-three thousand twenty-five'),\n(18312, 79680, 'seventy-nine thousand six hundred eighty'),\n(18313, 18046, 'eighteen thousand forty-six'),\n(18314, 49728, 'forty-nine thousand seven hundred twenty-eight'),\n(18315, 59022, 'fifty-nine thousand twenty-two'),\n(18316, 9095, 'nine thousand ninety-five'),\n(18317, 71199, 'seventy-one thousand one hundred ninety-nine'),\n(18318, 30752, 'thirty thousand seven hundred fifty-two'),\n(18319, 54095, 'fifty-four thousand ninety-five'),\n(18320, 1270, 'one thousand two hundred seventy'),\n(18321, 59571, 'fifty-nine thousand five hundred seventy-one'),\n(18322, 4220, 'four thousand two hundred twenty'),\n(18323, 80585, 'eighty thousand five hundred eighty-five'),\n(18324, 49780, 'forty-nine thousand seven hundred eighty'),\n(18325, 47903, 'forty-seven thousand nine hundred three'),\n(18326, 25873, 'twenty-five thousand eight hundred seventy-three'),\n(18327, 97236, 'ninety-seven thousand two hundred thirty-six'),\n(18328, 34016, 'thirty-four thousand sixteen'),\n(18329, 48672, 'forty-eight thousand six hundred seventy-two'),\n(18330, 23157, 'twenty-three thousand one hundred fifty-seven'),\n(18331, 29013, 'twenty-nine thousand thirteen'),\n(18332, 73871, 'seventy-three thousand eight hundred seventy-one'),\n(18333, 54368, 'fifty-four thousand three hundred sixty-eight'),\n(18334, 15501, 'fifteen thousand five hundred one'),\n(18335, 27693, 'twenty-seven thousand six hundred ninety-three'),\n(18336, 53497, 'fifty-three thousand four hundred ninety-seven'),\n(18337, 54265, 'fifty-four thousand two hundred sixty-five'),\n(18338, 11577, 'eleven thousand five hundred seventy-seven'),\n(18339, 69842, 'sixty-nine thousand eight hundred forty-two'),\n(18340, 47179, 'forty-seven thousand one hundred seventy-nine'),\n(18341, 70405, 'seventy thousand four hundred five'),\n(18342, 92551, 'ninety-two thousand five hundred fifty-one'),\n(18343, 95152, 'ninety-five thousand one hundred fifty-two'),\n(18344, 76207, 'seventy-six thousand two hundred seven'),\n(18345, 12115, 'twelve thousand one hundred fifteen'),\n(18346, 66037, 'sixty-six thousand thirty-seven'),\n(18347, 10383, 'ten thousand three hundred eighty-three'),\n(18348, 73366, 'seventy-three thousand three hundred sixty-six'),\n(18349, 69571, 'sixty-nine thousand five hundred seventy-one'),\n(18350, 60840, 'sixty thousand eight hundred forty'),\n(18351, 52305, 'fifty-two thousand three hundred five'),\n(18352, 92931, 'ninety-two thousand nine hundred thirty-one'),\n(18353, 79433, 'seventy-nine thousand four hundred thirty-three'),\n(18354, 24661, 'twenty-four thousand six hundred sixty-one'),\n(18355, 72030, 'seventy-two thousand thirty'),\n(18356, 94222, 'ninety-four thousand two hundred twenty-two'),\n(18357, 773, 'seven hundred seventy-three'),\n(18358, 16424, 'sixteen thousand four hundred twenty-four'),\n(18359, 56226, 'fifty-six thousand two hundred twenty-six'),\n(18360, 731, 'seven hundred thirty-one'),\n(18361, 10683, 'ten thousand six hundred eighty-three'),\n(18362, 31441, 'thirty-one thousand four hundred forty-one'),\n(18363, 34988, 'thirty-four thousand nine hundred eighty-eight'),\n(18364, 36140, 'thirty-six thousand one hundred forty'),\n(18365, 78345, 'seventy-eight thousand three hundred forty-five'),\n(18366, 5815, 'five thousand eight hundred fifteen'),\n(18367, 83776, 'eighty-three thousand seven hundred seventy-six'),\n(18368, 46842, 'forty-six thousand eight hundred forty-two'),\n(18369, 42829, 'forty-two thousand eight hundred twenty-nine'),\n(18370, 27079, 'twenty-seven thousand seventy-nine'),\n(18371, 97533, 'ninety-seven thousand five hundred thirty-three'),\n(18372, 9006, 'nine thousand six'),\n(18373, 57559, 'fifty-seven thousand five hundred fifty-nine'),\n(18374, 67778, 'sixty-seven thousand seven hundred seventy-eight'),\n(18375, 29581, 'twenty-nine thousand five hundred eighty-one'),\n(18376, 91225, 'ninety-one thousand two hundred twenty-five'),\n(18377, 95131, 'ninety-five thousand one hundred thirty-one'),\n(18378, 52717, 'fifty-two thousand seven hundred seventeen'),\n(18379, 48972, 'forty-eight thousand nine hundred seventy-two'),\n(18380, 453, 'four hundred fifty-three'),\n(18381, 21128, 'twenty-one thousand one hundred twenty-eight'),\n(18382, 47788, 'forty-seven thousand seven hundred eighty-eight'),\n(18383, 99462, 'ninety-nine thousand four hundred sixty-two'),\n(18384, 21760, 'twenty-one thousand seven hundred sixty'),\n(18385, 36089, 'thirty-six thousand eighty-nine'),\n(18386, 92991, 'ninety-two thousand nine hundred ninety-one'),\n(18387, 48698, 'forty-eight thousand six hundred ninety-eight'),\n(18388, 85285, 'eighty-five thousand two hundred eighty-five'),\n(18389, 32287, 'thirty-two thousand two hundred eighty-seven'),\n(18390, 38926, 'thirty-eight thousand nine hundred twenty-six'),\n(18391, 642, 'six hundred forty-two'),\n(18392, 44543, 'forty-four thousand five hundred forty-three'),\n(18393, 63281, 'sixty-three thousand two hundred eighty-one'),\n(18394, 112, 'one hundred twelve'),\n(18395, 91476, 'ninety-one thousand four hundred seventy-six'),\n(18396, 82160, 'eighty-two thousand one hundred sixty'),\n(18397, 25391, 'twenty-five thousand three hundred ninety-one'),\n(18398, 66435, 'sixty-six thousand four hundred thirty-five'),\n(18399, 96523, 'ninety-six thousand five hundred twenty-three'),\n(18400, 37965, 'thirty-seven thousand nine hundred sixty-five'),\n(18401, 48181, 'forty-eight thousand one hundred eighty-one'),\n(18402, 40891, 'forty thousand eight hundred ninety-one'),\n(18403, 20979, 'twenty thousand nine hundred seventy-nine'),\n(18404, 76332, 'seventy-six thousand three hundred thirty-two'),\n(18405, 73666, 'seventy-three thousand six hundred sixty-six'),\n(18406, 15137, 'fifteen thousand one hundred thirty-seven'),\n(18407, 20201, 'twenty thousand two hundred one'),\n(18408, 71520, 'seventy-one thousand five hundred twenty'),\n(18409, 68896, 'sixty-eight thousand eight hundred ninety-six'),\n(18410, 77980, 'seventy-seven thousand nine hundred eighty'),\n(18411, 42240, 'forty-two thousand two hundred forty'),\n(18412, 73414, 'seventy-three thousand four hundred fourteen'),\n(18413, 36228, 'thirty-six thousand two hundred twenty-eight'),\n(18414, 53431, 'fifty-three thousand four hundred thirty-one'),\n(18415, 65419, 'sixty-five thousand four hundred nineteen'),\n(18416, 12234, 'twelve thousand two hundred thirty-four'),\n(18417, 34417, 'thirty-four thousand four hundred seventeen'),\n(18418, 22648, 'twenty-two thousand six hundred forty-eight'),\n(18419, 90857, 'ninety thousand eight hundred fifty-seven'),\n(18420, 35979, 'thirty-five thousand nine hundred seventy-nine'),\n(18421, 76857, 'seventy-six thousand eight hundred fifty-seven'),\n(18422, 52915, 'fifty-two thousand nine hundred fifteen'),\n(18423, 60994, 'sixty thousand nine hundred ninety-four'),\n(18424, 58900, 'fifty-eight thousand nine hundred'),\n(18425, 49329, 'forty-nine thousand three hundred twenty-nine'),\n(18426, 95885, 'ninety-five thousand eight hundred eighty-five'),\n(18427, 8966, 'eight thousand nine hundred sixty-six'),\n(18428, 20307, 'twenty thousand three hundred seven'),\n(18429, 98936, 'ninety-eight thousand nine hundred thirty-six'),\n(18430, 78825, 'seventy-eight thousand eight hundred twenty-five'),\n(18431, 99762, 'ninety-nine thousand seven hundred sixty-two'),\n(18432, 58314, 'fifty-eight thousand three hundred fourteen'),\n(18433, 73188, 'seventy-three thousand one hundred eighty-eight'),\n(18434, 44479, 'forty-four thousand four hundred seventy-nine'),\n(18435, 8871, 'eight thousand eight hundred seventy-one'),\n(18436, 46605, 'forty-six thousand six hundred five'),\n(18437, 73824, 'seventy-three thousand eight hundred twenty-four'),\n(18438, 67113, 'sixty-seven thousand one hundred thirteen'),\n(18439, 15026, 'fifteen thousand twenty-six'),\n(18440, 41522, 'forty-one thousand five hundred twenty-two'),\n(18441, 40006, 'forty thousand six'),\n(18442, 24713, 'twenty-four thousand seven hundred thirteen'),\n(18443, 87002, 'eighty-seven thousand two'),\n(18444, 77684, 'seventy-seven thousand six hundred eighty-four'),\n(18445, 22088, 'twenty-two thousand eighty-eight'),\n(18446, 41906, 'forty-one thousand nine hundred six'),\n(18447, 81118, 'eighty-one thousand one hundred eighteen'),\n(18448, 68019, 'sixty-eight thousand nineteen'),\n(18449, 27091, 'twenty-seven thousand ninety-one'),\n(18450, 269, 'two hundred sixty-nine'),\n(18451, 45754, 'forty-five thousand seven hundred fifty-four'),\n(18452, 52984, 'fifty-two thousand nine hundred eighty-four'),\n(18453, 47739, 'forty-seven thousand seven hundred thirty-nine'),\n(18454, 92242, 'ninety-two thousand two hundred forty-two'),\n(18455, 44980, 'forty-four thousand nine hundred eighty'),\n(18456, 85263, 'eighty-five thousand two hundred sixty-three'),\n(18457, 33523, 'thirty-three thousand five hundred twenty-three'),\n(18458, 61498, 'sixty-one thousand four hundred ninety-eight'),\n(18459, 11967, 'eleven thousand nine hundred sixty-seven'),\n(18460, 86916, 'eighty-six thousand nine hundred sixteen'),\n(18461, 66604, 'sixty-six thousand six hundred four'),\n(18462, 11573, 'eleven thousand five hundred seventy-three'),\n(18463, 95539, 'ninety-five thousand five hundred thirty-nine'),\n(18464, 63919, 'sixty-three thousand nine hundred nineteen'),\n(18465, 33303, 'thirty-three thousand three hundred three'),\n(18466, 11044, 'eleven thousand forty-four'),\n(18467, 42204, 'forty-two thousand two hundred four'),\n(18468, 1980, 'one thousand nine hundred eighty'),\n(18469, 91357, 'ninety-one thousand three hundred fifty-seven'),\n(18470, 77608, 'seventy-seven thousand six hundred eight'),\n(18471, 90179, 'ninety thousand one hundred seventy-nine'),\n(18472, 95179, 'ninety-five thousand one hundred seventy-nine'),\n(18473, 19139, 'nineteen thousand one hundred thirty-nine'),\n(18474, 72643, 'seventy-two thousand six hundred forty-three'),\n(18475, 90378, 'ninety thousand three hundred seventy-eight'),\n(18476, 45013, 'forty-five thousand thirteen'),\n(18477, 40148, 'forty thousand one hundred forty-eight'),\n(18478, 43707, 'forty-three thousand seven hundred seven'),\n(18479, 71646, 'seventy-one thousand six hundred forty-six'),\n(18480, 95245, 'ninety-five thousand two hundred forty-five'),\n(18481, 43246, 'forty-three thousand two hundred forty-six'),\n(18482, 365, 'three hundred sixty-five'),\n(18483, 51969, 'fifty-one thousand nine hundred sixty-nine'),\n(18484, 5843, 'five thousand eight hundred forty-three'),\n(18485, 3828, 'three thousand eight hundred twenty-eight'),\n(18486, 58379, 'fifty-eight thousand three hundred seventy-nine'),\n(18487, 74200, 'seventy-four thousand two hundred'),\n(18488, 59107, 'fifty-nine thousand one hundred seven'),\n(18489, 76795, 'seventy-six thousand seven hundred ninety-five'),\n(18490, 48598, 'forty-eight thousand five hundred ninety-eight'),\n(18491, 91706, 'ninety-one thousand seven hundred six'),\n(18492, 42898, 'forty-two thousand eight hundred ninety-eight'),\n(18493, 65592, 'sixty-five thousand five hundred ninety-two'),\n(18494, 96537, 'ninety-six thousand five hundred thirty-seven'),\n(18495, 48672, 'forty-eight thousand six hundred seventy-two'),\n(18496, 23875, 'twenty-three thousand eight hundred seventy-five'),\n(18497, 83166, 'eighty-three thousand one hundred sixty-six'),\n(18498, 42429, 'forty-two thousand four hundred twenty-nine'),\n(18499, 18568, 'eighteen thousand five hundred sixty-eight'),\n(18500, 57129, 'fifty-seven thousand one hundred twenty-nine'),\n(18501, 61487, 'sixty-one thousand four hundred eighty-seven'),\n(18502, 69362, 'sixty-nine thousand three hundred sixty-two'),\n(18503, 77196, 'seventy-seven thousand one hundred ninety-six'),\n(18504, 6345, 'six thousand three hundred forty-five'),\n(18505, 29764, 'twenty-nine thousand seven hundred sixty-four'),\n(18506, 64701, 'sixty-four thousand seven hundred one'),\n(18507, 94106, 'ninety-four thousand one hundred six'),\n(18508, 82139, 'eighty-two thousand one hundred thirty-nine'),\n(18509, 13942, 'thirteen thousand nine hundred forty-two'),\n(18510, 54637, 'fifty-four thousand six hundred thirty-seven'),\n(18511, 91858, 'ninety-one thousand eight hundred fifty-eight'),\n(18512, 22644, 'twenty-two thousand six hundred forty-four'),\n(18513, 6650, 'six thousand six hundred fifty'),\n(18514, 26503, 'twenty-six thousand five hundred three'),\n(18515, 10175, 'ten thousand one hundred seventy-five'),\n(18516, 28465, 'twenty-eight thousand four hundred sixty-five'),\n(18517, 67619, 'sixty-seven thousand six hundred nineteen'),\n(18518, 8101, 'eight thousand one hundred one'),\n(18519, 51724, 'fifty-one thousand seven hundred twenty-four'),\n(18520, 41982, 'forty-one thousand nine hundred eighty-two'),\n(18521, 38074, 'thirty-eight thousand seventy-four'),\n(18522, 65986, 'sixty-five thousand nine hundred eighty-six'),\n(18523, 3129, 'three thousand one hundred twenty-nine'),\n(18524, 84377, 'eighty-four thousand three hundred seventy-seven'),\n(18525, 65259, 'sixty-five thousand two hundred fifty-nine'),\n(18526, 75261, 'seventy-five thousand two hundred sixty-one'),\n(18527, 65940, 'sixty-five thousand nine hundred forty'),\n(18528, 59338, 'fifty-nine thousand three hundred thirty-eight'),\n(18529, 5876, 'five thousand eight hundred seventy-six'),\n(18530, 20579, 'twenty thousand five hundred seventy-nine'),\n(18531, 48540, 'forty-eight thousand five hundred forty'),\n(18532, 32525, 'thirty-two thousand five hundred twenty-five'),\n(18533, 88647, 'eighty-eight thousand six hundred forty-seven'),\n(18534, 95211, 'ninety-five thousand two hundred eleven'),\n(18535, 27514, 'twenty-seven thousand five hundred fourteen'),\n(18536, 36100, 'thirty-six thousand one hundred'),\n(18537, 94982, 'ninety-four thousand nine hundred eighty-two'),\n(18538, 89385, 'eighty-nine thousand three hundred eighty-five'),\n(18539, 93106, 'ninety-three thousand one hundred six'),\n(18540, 53853, 'fifty-three thousand eight hundred fifty-three'),\n(18541, 92085, 'ninety-two thousand eighty-five'),\n(18542, 56081, 'fifty-six thousand eighty-one'),\n(18543, 97739, 'ninety-seven thousand seven hundred thirty-nine'),\n(18544, 73183, 'seventy-three thousand one hundred eighty-three'),\n(18545, 12467, 'twelve thousand four hundred sixty-seven'),\n(18546, 90255, 'ninety thousand two hundred fifty-five'),\n(18547, 85859, 'eighty-five thousand eight hundred fifty-nine'),\n(18548, 61442, 'sixty-one thousand four hundred forty-two'),\n(18549, 16110, 'sixteen thousand one hundred ten'),\n(18550, 78169, 'seventy-eight thousand one hundred sixty-nine'),\n(18551, 23116, 'twenty-three thousand one hundred sixteen'),\n(18552, 20721, 'twenty thousand seven hundred twenty-one'),\n(18553, 84712, 'eighty-four thousand seven hundred twelve'),\n(18554, 24409, 'twenty-four thousand four hundred nine'),\n(18555, 77579, 'seventy-seven thousand five hundred seventy-nine'),\n(18556, 21145, 'twenty-one thousand one hundred forty-five'),\n(18557, 55837, 'fifty-five thousand eight hundred thirty-seven'),\n(18558, 93883, 'ninety-three thousand eight hundred eighty-three'),\n(18559, 38706, 'thirty-eight thousand seven hundred six'),\n(18560, 57058, 'fifty-seven thousand fifty-eight'),\n(18561, 36434, 'thirty-six thousand four hundred thirty-four'),\n(18562, 92663, 'ninety-two thousand six hundred sixty-three'),\n(18563, 84145, 'eighty-four thousand one hundred forty-five'),\n(18564, 71327, 'seventy-one thousand three hundred twenty-seven'),\n(18565, 77240, 'seventy-seven thousand two hundred forty'),\n(18566, 83331, 'eighty-three thousand three hundred thirty-one'),\n(18567, 94907, 'ninety-four thousand nine hundred seven'),\n(18568, 62003, 'sixty-two thousand three'),\n(18569, 56659, 'fifty-six thousand six hundred fifty-nine'),\n(18570, 97384, 'ninety-seven thousand three hundred eighty-four'),\n(18571, 68455, 'sixty-eight thousand four hundred fifty-five'),\n(18572, 29622, 'twenty-nine thousand six hundred twenty-two'),\n(18573, 55847, 'fifty-five thousand eight hundred forty-seven'),\n(18574, 26537, 'twenty-six thousand five hundred thirty-seven'),\n(18575, 66035, 'sixty-six thousand thirty-five'),\n(18576, 47454, 'forty-seven thousand four hundred fifty-four'),\n(18577, 23839, 'twenty-three thousand eight hundred thirty-nine'),\n(18578, 69033, 'sixty-nine thousand thirty-three'),\n(18579, 78914, 'seventy-eight thousand nine hundred fourteen'),\n(18580, 50252, 'fifty thousand two hundred fifty-two'),\n(18581, 2307, 'two thousand three hundred seven'),\n(18582, 58588, 'fifty-eight thousand five hundred eighty-eight'),\n(18583, 98427, 'ninety-eight thousand four hundred twenty-seven'),\n(18584, 1793, 'one thousand seven hundred ninety-three'),\n(18585, 62900, 'sixty-two thousand nine hundred'),\n(18586, 82209, 'eighty-two thousand two hundred nine'),\n(18587, 79054, 'seventy-nine thousand fifty-four'),\n(18588, 21329, 'twenty-one thousand three hundred twenty-nine'),\n(18589, 8775, 'eight thousand seven hundred seventy-five'),\n(18590, 67466, 'sixty-seven thousand four hundred sixty-six'),\n(18591, 65686, 'sixty-five thousand six hundred eighty-six'),\n(18592, 83934, 'eighty-three thousand nine hundred thirty-four'),\n(18593, 26678, 'twenty-six thousand six hundred seventy-eight'),\n(18594, 63786, 'sixty-three thousand seven hundred eighty-six'),\n(18595, 47475, 'forty-seven thousand four hundred seventy-five'),\n(18596, 19359, 'nineteen thousand three hundred fifty-nine'),\n(18597, 55237, 'fifty-five thousand two hundred thirty-seven'),\n(18598, 59231, 'fifty-nine thousand two hundred thirty-one'),\n(18599, 77603, 'seventy-seven thousand six hundred three'),\n(18600, 61299, 'sixty-one thousand two hundred ninety-nine'),\n(18601, 93489, 'ninety-three thousand four hundred eighty-nine'),\n(18602, 96309, 'ninety-six thousand three hundred nine'),\n(18603, 90300, 'ninety thousand three hundred'),\n(18604, 50215, 'fifty thousand two hundred fifteen'),\n(18605, 67750, 'sixty-seven thousand seven hundred fifty'),\n(18606, 28571, 'twenty-eight thousand five hundred seventy-one'),\n(18607, 61326, 'sixty-one thousand three hundred twenty-six'),\n(18608, 84577, 'eighty-four thousand five hundred seventy-seven'),\n(18609, 15631, 'fifteen thousand six hundred thirty-one'),\n(18610, 69316, 'sixty-nine thousand three hundred sixteen'),\n(18611, 43954, 'forty-three thousand nine hundred fifty-four'),\n(18612, 34538, 'thirty-four thousand five hundred thirty-eight'),\n(18613, 97738, 'ninety-seven thousand seven hundred thirty-eight'),\n(18614, 40210, 'forty thousand two hundred ten'),\n(18615, 6042, 'six thousand forty-two'),\n(18616, 66239, 'sixty-six thousand two hundred thirty-nine'),\n(18617, 62056, 'sixty-two thousand fifty-six'),\n(18618, 1981, 'one thousand nine hundred eighty-one'),\n(18619, 51704, 'fifty-one thousand seven hundred four'),\n(18620, 34157, 'thirty-four thousand one hundred fifty-seven'),\n(18621, 9763, 'nine thousand seven hundred sixty-three'),\n(18622, 7582, 'seven thousand five hundred eighty-two'),\n(18623, 20044, 'twenty thousand forty-four'),\n(18624, 89128, 'eighty-nine thousand one hundred twenty-eight'),\n(18625, 81508, 'eighty-one thousand five hundred eight'),\n(18626, 3473, 'three thousand four hundred seventy-three'),\n(18627, 8503, 'eight thousand five hundred three'),\n(18628, 13097, 'thirteen thousand ninety-seven'),\n(18629, 39206, 'thirty-nine thousand two hundred six'),\n(18630, 21739, 'twenty-one thousand seven hundred thirty-nine'),\n(18631, 67295, 'sixty-seven thousand two hundred ninety-five'),\n(18632, 20358, 'twenty thousand three hundred fifty-eight'),\n(18633, 52274, 'fifty-two thousand two hundred seventy-four'),\n(18634, 53056, 'fifty-three thousand fifty-six'),\n(18635, 80750, 'eighty thousand seven hundred fifty'),\n(18636, 85084, 'eighty-five thousand eighty-four'),\n(18637, 5926, 'five thousand nine hundred twenty-six'),\n(18638, 87945, 'eighty-seven thousand nine hundred forty-five'),\n(18639, 96042, 'ninety-six thousand forty-two'),\n(18640, 72083, 'seventy-two thousand eighty-three'),\n(18641, 54517, 'fifty-four thousand five hundred seventeen'),\n(18642, 58251, 'fifty-eight thousand two hundred fifty-one'),\n(18643, 17566, 'seventeen thousand five hundred sixty-six'),\n(18644, 32752, 'thirty-two thousand seven hundred fifty-two'),\n(18645, 98985, 'ninety-eight thousand nine hundred eighty-five'),\n(18646, 16796, 'sixteen thousand seven hundred ninety-six'),\n(18647, 39379, 'thirty-nine thousand three hundred seventy-nine'),\n(18648, 39380, 'thirty-nine thousand three hundred eighty'),\n(18649, 82948, 'eighty-two thousand nine hundred forty-eight'),\n(18650, 7854, 'seven thousand eight hundred fifty-four'),\n(18651, 7308, 'seven thousand three hundred eight'),\n(18652, 94650, 'ninety-four thousand six hundred fifty'),\n(18653, 59034, 'fifty-nine thousand thirty-four'),\n(18654, 43598, 'forty-three thousand five hundred ninety-eight'),\n(18655, 37405, 'thirty-seven thousand four hundred five'),\n(18656, 22872, 'twenty-two thousand eight hundred seventy-two'),\n(18657, 24592, 'twenty-four thousand five hundred ninety-two'),\n(18658, 39243, 'thirty-nine thousand two hundred forty-three'),\n(18659, 4120, 'four thousand one hundred twenty'),\n(18660, 74950, 'seventy-four thousand nine hundred fifty'),\n(18661, 83333, 'eighty-three thousand three hundred thirty-three'),\n(18662, 83157, 'eighty-three thousand one hundred fifty-seven'),\n(18663, 67567, 'sixty-seven thousand five hundred sixty-seven'),\n(18664, 87579, 'eighty-seven thousand five hundred seventy-nine'),\n(18665, 91246, 'ninety-one thousand two hundred forty-six'),\n(18666, 66539, 'sixty-six thousand five hundred thirty-nine'),\n(18667, 83293, 'eighty-three thousand two hundred ninety-three'),\n(18668, 52342, 'fifty-two thousand three hundred forty-two'),\n(18669, 29678, 'twenty-nine thousand six hundred seventy-eight'),\n(18670, 37210, 'thirty-seven thousand two hundred ten'),\n(18671, 90276, 'ninety thousand two hundred seventy-six'),\n(18672, 44350, 'forty-four thousand three hundred fifty'),\n(18673, 44241, 'forty-four thousand two hundred forty-one'),\n(18674, 66086, 'sixty-six thousand eighty-six'),\n(18675, 15280, 'fifteen thousand two hundred eighty'),\n(18676, 84374, 'eighty-four thousand three hundred seventy-four'),\n(18677, 81132, 'eighty-one thousand one hundred thirty-two'),\n(18678, 39694, 'thirty-nine thousand six hundred ninety-four'),\n(18679, 81179, 'eighty-one thousand one hundred seventy-nine'),\n(18680, 42861, 'forty-two thousand eight hundred sixty-one'),\n(18681, 93983, 'ninety-three thousand nine hundred eighty-three'),\n(18682, 18468, 'eighteen thousand four hundred sixty-eight'),\n(18683, 12486, 'twelve thousand four hundred eighty-six'),\n(18684, 82452, 'eighty-two thousand four hundred fifty-two'),\n(18685, 6399, 'six thousand three hundred ninety-nine'),\n(18686, 58448, 'fifty-eight thousand four hundred forty-eight'),\n(18687, 22074, 'twenty-two thousand seventy-four'),\n(18688, 24913, 'twenty-four thousand nine hundred thirteen'),\n(18689, 89605, 'eighty-nine thousand six hundred five'),\n(18690, 86248, 'eighty-six thousand two hundred forty-eight'),\n(18691, 38484, 'thirty-eight thousand four hundred eighty-four'),\n(18692, 57865, 'fifty-seven thousand eight hundred sixty-five'),\n(18693, 49110, 'forty-nine thousand one hundred ten'),\n(18694, 39104, 'thirty-nine thousand one hundred four'),\n(18695, 73831, 'seventy-three thousand eight hundred thirty-one'),\n(18696, 68340, 'sixty-eight thousand three hundred forty'),\n(18697, 69172, 'sixty-nine thousand one hundred seventy-two'),\n(18698, 72872, 'seventy-two thousand eight hundred seventy-two'),\n(18699, 91381, 'ninety-one thousand three hundred eighty-one'),\n(18700, 16952, 'sixteen thousand nine hundred fifty-two'),\n(18701, 50080, 'fifty thousand eighty'),\n(18702, 36745, 'thirty-six thousand seven hundred forty-five'),\n(18703, 36373, 'thirty-six thousand three hundred seventy-three'),\n(18704, 24046, 'twenty-four thousand forty-six'),\n(18705, 36647, 'thirty-six thousand six hundred forty-seven'),\n(18706, 39396, 'thirty-nine thousand three hundred ninety-six'),\n(18707, 35907, 'thirty-five thousand nine hundred seven'),\n(18708, 96731, 'ninety-six thousand seven hundred thirty-one'),\n(18709, 5654, 'five thousand six hundred fifty-four'),\n(18710, 46087, 'forty-six thousand eighty-seven'),\n(18711, 87602, 'eighty-seven thousand six hundred two'),\n(18712, 60015, 'sixty thousand fifteen'),\n(18713, 23547, 'twenty-three thousand five hundred forty-seven'),\n(18714, 14953, 'fourteen thousand nine hundred fifty-three'),\n(18715, 7654, 'seven thousand six hundred fifty-four'),\n(18716, 83481, 'eighty-three thousand four hundred eighty-one'),\n(18717, 98558, 'ninety-eight thousand five hundred fifty-eight'),\n(18718, 30836, 'thirty thousand eight hundred thirty-six'),\n(18719, 70424, 'seventy thousand four hundred twenty-four'),\n(18720, 84554, 'eighty-four thousand five hundred fifty-four'),\n(18721, 24047, 'twenty-four thousand forty-seven'),\n(18722, 91840, 'ninety-one thousand eight hundred forty'),\n(18723, 39872, 'thirty-nine thousand eight hundred seventy-two'),\n(18724, 50273, 'fifty thousand two hundred seventy-three'),\n(18725, 50130, 'fifty thousand one hundred thirty'),\n(18726, 88720, 'eighty-eight thousand seven hundred twenty'),\n(18727, 65194, 'sixty-five thousand one hundred ninety-four'),\n(18728, 87478, 'eighty-seven thousand four hundred seventy-eight'),\n(18729, 77463, 'seventy-seven thousand four hundred sixty-three'),\n(18730, 90659, 'ninety thousand six hundred fifty-nine'),\n(18731, 74621, 'seventy-four thousand six hundred twenty-one'),\n(18732, 96558, 'ninety-six thousand five hundred fifty-eight'),\n(18733, 29388, 'twenty-nine thousand three hundred eighty-eight'),\n(18734, 77584, 'seventy-seven thousand five hundred eighty-four'),\n(18735, 19517, 'nineteen thousand five hundred seventeen'),\n(18736, 29673, 'twenty-nine thousand six hundred seventy-three'),\n(18737, 11652, 'eleven thousand six hundred fifty-two'),\n(18738, 99629, 'ninety-nine thousand six hundred twenty-nine'),\n(18739, 98497, 'ninety-eight thousand four hundred ninety-seven'),\n(18740, 70677, 'seventy thousand six hundred seventy-seven'),\n(18741, 56885, 'fifty-six thousand eight hundred eighty-five'),\n(18742, 50300, 'fifty thousand three hundred'),\n(18743, 88670, 'eighty-eight thousand six hundred seventy'),\n(18744, 65077, 'sixty-five thousand seventy-seven'),\n(18745, 2047, 'two thousand forty-seven'),\n(18746, 61124, 'sixty-one thousand one hundred twenty-four'),\n(18747, 10165, 'ten thousand one hundred sixty-five'),\n(18748, 27550, 'twenty-seven thousand five hundred fifty'),\n(18749, 34580, 'thirty-four thousand five hundred eighty'),\n(18750, 99940, 'ninety-nine thousand nine hundred forty'),\n(18751, 98411, 'ninety-eight thousand four hundred eleven'),\n(18752, 97643, 'ninety-seven thousand six hundred forty-three'),\n(18753, 6033, 'six thousand thirty-three'),\n(18754, 25087, 'twenty-five thousand eighty-seven'),\n(18755, 29830, 'twenty-nine thousand eight hundred thirty'),\n(18756, 30176, 'thirty thousand one hundred seventy-six'),\n(18757, 81701, 'eighty-one thousand seven hundred one'),\n(18758, 82815, 'eighty-two thousand eight hundred fifteen'),\n(18759, 34076, 'thirty-four thousand seventy-six'),\n(18760, 93687, 'ninety-three thousand six hundred eighty-seven'),\n(18761, 9092, 'nine thousand ninety-two'),\n(18762, 13389, 'thirteen thousand three hundred eighty-nine'),\n(18763, 249, 'two hundred forty-nine'),\n(18764, 51285, 'fifty-one thousand two hundred eighty-five'),\n(18765, 21602, 'twenty-one thousand six hundred two'),\n(18766, 11, 'eleven'),\n(18767, 6955, 'six thousand nine hundred fifty-five'),\n(18768, 34289, 'thirty-four thousand two hundred eighty-nine'),\n(18769, 3155, 'three thousand one hundred fifty-five'),\n(18770, 45927, 'forty-five thousand nine hundred twenty-seven'),\n(18771, 45515, 'forty-five thousand five hundred fifteen'),\n(18772, 5901, 'five thousand nine hundred one'),\n(18773, 29983, 'twenty-nine thousand nine hundred eighty-three'),\n(18774, 3029, 'three thousand twenty-nine'),\n(18775, 5043, 'five thousand forty-three'),\n(18776, 53633, 'fifty-three thousand six hundred thirty-three'),\n(18777, 65066, 'sixty-five thousand sixty-six'),\n(18778, 73856, 'seventy-three thousand eight hundred fifty-six'),\n(18779, 83138, 'eighty-three thousand one hundred thirty-eight'),\n(18780, 80891, 'eighty thousand eight hundred ninety-one'),\n(18781, 9830, 'nine thousand eight hundred thirty'),\n(18782, 41074, 'forty-one thousand seventy-four'),\n(18783, 85980, 'eighty-five thousand nine hundred eighty'),\n(18784, 75946, 'seventy-five thousand nine hundred forty-six'),\n(18785, 977, 'nine hundred seventy-seven'),\n(18786, 93832, 'ninety-three thousand eight hundred thirty-two'),\n(18787, 68079, 'sixty-eight thousand seventy-nine'),\n(18788, 78524, 'seventy-eight thousand five hundred twenty-four'),\n(18789, 66498, 'sixty-six thousand four hundred ninety-eight'),\n(18790, 10305, 'ten thousand three hundred five'),\n(18791, 47656, 'forty-seven thousand six hundred fifty-six'),\n(18792, 62053, 'sixty-two thousand fifty-three'),\n(18793, 514, 'five hundred fourteen'),\n(18794, 46264, 'forty-six thousand two hundred sixty-four'),\n(18795, 87502, 'eighty-seven thousand five hundred two'),\n(18796, 38452, 'thirty-eight thousand four hundred fifty-two'),\n(18797, 35515, 'thirty-five thousand five hundred fifteen'),\n(18798, 40423, 'forty thousand four hundred twenty-three'),\n(18799, 99524, 'ninety-nine thousand five hundred twenty-four'),\n(18800, 77832, 'seventy-seven thousand eight hundred thirty-two'),\n(18801, 71463, 'seventy-one thousand four hundred sixty-three'),\n(18802, 41421, 'forty-one thousand four hundred twenty-one'),\n(18803, 72748, 'seventy-two thousand seven hundred forty-eight'),\n(18804, 19888, 'nineteen thousand eight hundred eighty-eight'),\n(18805, 89845, 'eighty-nine thousand eight hundred forty-five'),\n(18806, 29159, 'twenty-nine thousand one hundred fifty-nine'),\n(18807, 97771, 'ninety-seven thousand seven hundred seventy-one'),\n(18808, 15300, 'fifteen thousand three hundred'),\n(18809, 37323, 'thirty-seven thousand three hundred twenty-three'),\n(18810, 6598, 'six thousand five hundred ninety-eight'),\n(18811, 56937, 'fifty-six thousand nine hundred thirty-seven'),\n(18812, 34564, 'thirty-four thousand five hundred sixty-four'),\n(18813, 46600, 'forty-six thousand six hundred'),\n(18814, 26017, 'twenty-six thousand seventeen'),\n(18815, 41326, 'forty-one thousand three hundred twenty-six'),\n(18816, 15241, 'fifteen thousand two hundred forty-one'),\n(18817, 42026, 'forty-two thousand twenty-six'),\n(18818, 59163, 'fifty-nine thousand one hundred sixty-three'),\n(18819, 38012, 'thirty-eight thousand twelve'),\n(18820, 54765, 'fifty-four thousand seven hundred sixty-five'),\n(18821, 99795, 'ninety-nine thousand seven hundred ninety-five'),\n(18822, 99092, 'ninety-nine thousand ninety-two'),\n(18823, 8715, 'eight thousand seven hundred fifteen'),\n(18824, 73440, 'seventy-three thousand four hundred forty'),\n(18825, 71756, 'seventy-one thousand seven hundred fifty-six'),\n(18826, 8910, 'eight thousand nine hundred ten'),\n(18827, 3117, 'three thousand one hundred seventeen'),\n(18828, 16094, 'sixteen thousand ninety-four'),\n(18829, 83916, 'eighty-three thousand nine hundred sixteen'),\n(18830, 17671, 'seventeen thousand six hundred seventy-one'),\n(18831, 878, 'eight hundred seventy-eight'),\n(18832, 10788, 'ten thousand seven hundred eighty-eight'),\n(18833, 97871, 'ninety-seven thousand eight hundred seventy-one'),\n(18834, 27623, 'twenty-seven thousand six hundred twenty-three'),\n(18835, 94876, 'ninety-four thousand eight hundred seventy-six'),\n(18836, 3106, 'three thousand one hundred six'),\n(18837, 39224, 'thirty-nine thousand two hundred twenty-four'),\n(18838, 58444, 'fifty-eight thousand four hundred forty-four'),\n(18839, 14452, 'fourteen thousand four hundred fifty-two'),\n(18840, 29211, 'twenty-nine thousand two hundred eleven'),\n(18841, 35892, 'thirty-five thousand eight hundred ninety-two'),\n(18842, 38531, 'thirty-eight thousand five hundred thirty-one'),\n(18843, 87443, 'eighty-seven thousand four hundred forty-three'),\n(18844, 68228, 'sixty-eight thousand two hundred twenty-eight'),\n(18845, 37597, 'thirty-seven thousand five hundred ninety-seven'),\n(18846, 61031, 'sixty-one thousand thirty-one'),\n(18847, 33517, 'thirty-three thousand five hundred seventeen'),\n(18848, 90411, 'ninety thousand four hundred eleven'),\n(18849, 58083, 'fifty-eight thousand eighty-three'),\n(18850, 17349, 'seventeen thousand three hundred forty-nine'),\n(18851, 84115, 'eighty-four thousand one hundred fifteen'),\n(18852, 79451, 'seventy-nine thousand four hundred fifty-one'),\n(18853, 70685, 'seventy thousand six hundred eighty-five'),\n(18854, 53320, 'fifty-three thousand three hundred twenty'),\n(18855, 36845, 'thirty-six thousand eight hundred forty-five'),\n(18856, 18337, 'eighteen thousand three hundred thirty-seven'),\n(18857, 97153, 'ninety-seven thousand one hundred fifty-three'),\n(18858, 79596, 'seventy-nine thousand five hundred ninety-six'),\n(18859, 29565, 'twenty-nine thousand five hundred sixty-five'),\n(18860, 39715, 'thirty-nine thousand seven hundred fifteen'),\n(18861, 45640, 'forty-five thousand six hundred forty'),\n(18862, 87335, 'eighty-seven thousand three hundred thirty-five'),\n(18863, 60625, 'sixty thousand six hundred twenty-five'),\n(18864, 15626, 'fifteen thousand six hundred twenty-six'),\n(18865, 92850, 'ninety-two thousand eight hundred fifty'),\n(18866, 42716, 'forty-two thousand seven hundred sixteen'),\n(18867, 52742, 'fifty-two thousand seven hundred forty-two'),\n(18868, 55667, 'fifty-five thousand six hundred sixty-seven'),\n(18869, 19032, 'nineteen thousand thirty-two'),\n(18870, 99178, 'ninety-nine thousand one hundred seventy-eight'),\n(18871, 51263, 'fifty-one thousand two hundred sixty-three'),\n(18872, 91787, 'ninety-one thousand seven hundred eighty-seven'),\n(18873, 53781, 'fifty-three thousand seven hundred eighty-one'),\n(18874, 52400, 'fifty-two thousand four hundred'),\n(18875, 62631, 'sixty-two thousand six hundred thirty-one'),\n(18876, 63636, 'sixty-three thousand six hundred thirty-six'),\n(18877, 29864, 'twenty-nine thousand eight hundred sixty-four'),\n(18878, 22760, 'twenty-two thousand seven hundred sixty'),\n(18879, 40055, 'forty thousand fifty-five'),\n(18880, 48697, 'forty-eight thousand six hundred ninety-seven'),\n(18881, 38560, 'thirty-eight thousand five hundred sixty'),\n(18882, 20775, 'twenty thousand seven hundred seventy-five'),\n(18883, 42998, 'forty-two thousand nine hundred ninety-eight'),\n(18884, 80624, 'eighty thousand six hundred twenty-four'),\n(18885, 41739, 'forty-one thousand seven hundred thirty-nine'),\n(18886, 14934, 'fourteen thousand nine hundred thirty-four'),\n(18887, 12255, 'twelve thousand two hundred fifty-five'),\n(18888, 81374, 'eighty-one thousand three hundred seventy-four'),\n(18889, 34287, 'thirty-four thousand two hundred eighty-seven'),\n(18890, 12624, 'twelve thousand six hundred twenty-four'),\n(18891, 64354, 'sixty-four thousand three hundred fifty-four'),\n(18892, 52825, 'fifty-two thousand eight hundred twenty-five'),\n(18893, 19958, 'nineteen thousand nine hundred fifty-eight'),\n(18894, 58308, 'fifty-eight thousand three hundred eight'),\n(18895, 9671, 'nine thousand six hundred seventy-one'),\n(18896, 96751, 'ninety-six thousand seven hundred fifty-one'),\n(18897, 24420, 'twenty-four thousand four hundred twenty'),\n(18898, 68507, 'sixty-eight thousand five hundred seven'),\n(18899, 82598, 'eighty-two thousand five hundred ninety-eight'),\n(18900, 12017, 'twelve thousand seventeen'),\n(18901, 64991, 'sixty-four thousand nine hundred ninety-one'),\n(18902, 52247, 'fifty-two thousand two hundred forty-seven'),\n(18903, 76658, 'seventy-six thousand six hundred fifty-eight'),\n(18904, 77452, 'seventy-seven thousand four hundred fifty-two'),\n(18905, 63547, 'sixty-three thousand five hundred forty-seven'),\n(18906, 18299, 'eighteen thousand two hundred ninety-nine'),\n(18907, 83659, 'eighty-three thousand six hundred fifty-nine'),\n(18908, 95758, 'ninety-five thousand seven hundred fifty-eight'),\n(18909, 54484, 'fifty-four thousand four hundred eighty-four'),\n(18910, 8547, 'eight thousand five hundred forty-seven'),\n(18911, 55616, 'fifty-five thousand six hundred sixteen'),\n(18912, 22436, 'twenty-two thousand four hundred thirty-six'),\n(18913, 56354, 'fifty-six thousand three hundred fifty-four'),\n(18914, 48276, 'forty-eight thousand two hundred seventy-six'),\n(18915, 26876, 'twenty-six thousand eight hundred seventy-six'),\n(18916, 8676, 'eight thousand six hundred seventy-six'),\n(18917, 69218, 'sixty-nine thousand two hundred eighteen'),\n(18918, 77478, 'seventy-seven thousand four hundred seventy-eight'),\n(18919, 59658, 'fifty-nine thousand six hundred fifty-eight'),\n(18920, 54517, 'fifty-four thousand five hundred seventeen'),\n(18921, 35129, 'thirty-five thousand one hundred twenty-nine'),\n(18922, 26263, 'twenty-six thousand two hundred sixty-three'),\n(18923, 80335, 'eighty thousand three hundred thirty-five'),\n(18924, 39566, 'thirty-nine thousand five hundred sixty-six'),\n(18925, 99649, 'ninety-nine thousand six hundred forty-nine'),\n(18926, 46261, 'forty-six thousand two hundred sixty-one'),\n(18927, 3305, 'three thousand three hundred five'),\n(18928, 14787, 'fourteen thousand seven hundred eighty-seven'),\n(18929, 39940, 'thirty-nine thousand nine hundred forty'),\n(18930, 17261, 'seventeen thousand two hundred sixty-one'),\n(18931, 49417, 'forty-nine thousand four hundred seventeen'),\n(18932, 32668, 'thirty-two thousand six hundred sixty-eight'),\n(18933, 31290, 'thirty-one thousand two hundred ninety'),\n(18934, 44232, 'forty-four thousand two hundred thirty-two'),\n(18935, 50531, 'fifty thousand five hundred thirty-one'),\n(18936, 65895, 'sixty-five thousand eight hundred ninety-five'),\n(18937, 52227, 'fifty-two thousand two hundred twenty-seven'),\n(18938, 75235, 'seventy-five thousand two hundred thirty-five'),\n(18939, 45151, 'forty-five thousand one hundred fifty-one'),\n(18940, 44494, 'forty-four thousand four hundred ninety-four'),\n(18941, 65286, 'sixty-five thousand two hundred eighty-six'),\n(18942, 49716, 'forty-nine thousand seven hundred sixteen'),\n(18943, 45708, 'forty-five thousand seven hundred eight'),\n(18944, 9136, 'nine thousand one hundred thirty-six'),\n(18945, 21538, 'twenty-one thousand five hundred thirty-eight'),\n(18946, 4381, 'four thousand three hundred eighty-one'),\n(18947, 49958, 'forty-nine thousand nine hundred fifty-eight'),\n(18948, 5912, 'five thousand nine hundred twelve'),\n(18949, 85077, 'eighty-five thousand seventy-seven'),\n(18950, 1854, 'one thousand eight hundred fifty-four'),\n(18951, 89035, 'eighty-nine thousand thirty-five'),\n(18952, 64295, 'sixty-four thousand two hundred ninety-five'),\n(18953, 85437, 'eighty-five thousand four hundred thirty-seven'),\n(18954, 82909, 'eighty-two thousand nine hundred nine'),\n(18955, 20692, 'twenty thousand six hundred ninety-two'),\n(18956, 25026, 'twenty-five thousand twenty-six'),\n(18957, 56705, 'fifty-six thousand seven hundred five'),\n(18958, 29832, 'twenty-nine thousand eight hundred thirty-two'),\n(18959, 12228, 'twelve thousand two hundred twenty-eight'),\n(18960, 37710, 'thirty-seven thousand seven hundred ten'),\n(18961, 27001, 'twenty-seven thousand one'),\n(18962, 54140, 'fifty-four thousand one hundred forty'),\n(18963, 77872, 'seventy-seven thousand eight hundred seventy-two'),\n(18964, 34254, 'thirty-four thousand two hundred fifty-four'),\n(18965, 12869, 'twelve thousand eight hundred sixty-nine'),\n(18966, 53837, 'fifty-three thousand eight hundred thirty-seven'),\n(18967, 44302, 'forty-four thousand three hundred two'),\n(18968, 71988, 'seventy-one thousand nine hundred eighty-eight'),\n(18969, 59052, 'fifty-nine thousand fifty-two'),\n(18970, 81771, 'eighty-one thousand seven hundred seventy-one'),\n(18971, 65920, 'sixty-five thousand nine hundred twenty'),\n(18972, 20014, 'twenty thousand fourteen'),\n(18973, 58262, 'fifty-eight thousand two hundred sixty-two'),\n(18974, 4498, 'four thousand four hundred ninety-eight'),\n(18975, 45523, 'forty-five thousand five hundred twenty-three'),\n(18976, 26741, 'twenty-six thousand seven hundred forty-one'),\n(18977, 90323, 'ninety thousand three hundred twenty-three'),\n(18978, 95532, 'ninety-five thousand five hundred thirty-two'),\n(18979, 11494, 'eleven thousand four hundred ninety-four'),\n(18980, 51732, 'fifty-one thousand seven hundred thirty-two'),\n(18981, 64287, 'sixty-four thousand two hundred eighty-seven'),\n(18982, 87066, 'eighty-seven thousand sixty-six'),\n(18983, 58939, 'fifty-eight thousand nine hundred thirty-nine'),\n(18984, 60175, 'sixty thousand one hundred seventy-five'),\n(18985, 4656, 'four thousand six hundred fifty-six'),\n(18986, 44600, 'forty-four thousand six hundred'),\n(18987, 55426, 'fifty-five thousand four hundred twenty-six'),\n(18988, 59201, 'fifty-nine thousand two hundred one'),\n(18989, 57906, 'fifty-seven thousand nine hundred six'),\n(18990, 32790, 'thirty-two thousand seven hundred ninety'),\n(18991, 51625, 'fifty-one thousand six hundred twenty-five'),\n(18992, 38843, 'thirty-eight thousand eight hundred forty-three'),\n(18993, 88356, 'eighty-eight thousand three hundred fifty-six'),\n(18994, 14911, 'fourteen thousand nine hundred eleven'),\n(18995, 6240, 'six thousand two hundred forty'),\n(18996, 8196, 'eight thousand one hundred ninety-six'),\n(18997, 69323, 'sixty-nine thousand three hundred twenty-three'),\n(18998, 21472, 'twenty-one thousand four hundred seventy-two'),\n(18999, 42759, 'forty-two thousand seven hundred fifty-nine'),\n(19000, 95694, 'ninety-five thousand six hundred ninety-four'),\n(19001, 7868, 'seven thousand eight hundred sixty-eight'),\n(19002, 56355, 'fifty-six thousand three hundred fifty-five'),\n(19003, 84603, 'eighty-four thousand six hundred three'),\n(19004, 36516, 'thirty-six thousand five hundred sixteen'),\n(19005, 47060, 'forty-seven thousand sixty'),\n(19006, 5579, 'five thousand five hundred seventy-nine'),\n(19007, 97001, 'ninety-seven thousand one'),\n(19008, 3206, 'three thousand two hundred six'),\n(19009, 84535, 'eighty-four thousand five hundred thirty-five'),\n(19010, 63355, 'sixty-three thousand three hundred fifty-five'),\n(19011, 20955, 'twenty thousand nine hundred fifty-five'),\n(19012, 68146, 'sixty-eight thousand one hundred forty-six'),\n(19013, 35059, 'thirty-five thousand fifty-nine'),\n(19014, 36380, 'thirty-six thousand three hundred eighty'),\n(19015, 26685, 'twenty-six thousand six hundred eighty-five'),\n(19016, 18344, 'eighteen thousand three hundred forty-four'),\n(19017, 33545, 'thirty-three thousand five hundred forty-five'),\n(19018, 41479, 'forty-one thousand four hundred seventy-nine'),\n(19019, 19622, 'nineteen thousand six hundred twenty-two'),\n(19020, 83640, 'eighty-three thousand six hundred forty'),\n(19021, 33865, 'thirty-three thousand eight hundred sixty-five'),\n(19022, 2777, 'two thousand seven hundred seventy-seven'),\n(19023, 45928, 'forty-five thousand nine hundred twenty-eight'),\n(19024, 67567, 'sixty-seven thousand five hundred sixty-seven'),\n(19025, 89509, 'eighty-nine thousand five hundred nine'),\n(19026, 14363, 'fourteen thousand three hundred sixty-three'),\n(19027, 13142, 'thirteen thousand one hundred forty-two'),\n(19028, 74945, 'seventy-four thousand nine hundred forty-five'),\n(19029, 30508, 'thirty thousand five hundred eight'),\n(19030, 41484, 'forty-one thousand four hundred eighty-four'),\n(19031, 3995, 'three thousand nine hundred ninety-five'),\n(19032, 54071, 'fifty-four thousand seventy-one'),\n(19033, 66377, 'sixty-six thousand three hundred seventy-seven'),\n(19034, 18931, 'eighteen thousand nine hundred thirty-one'),\n(19035, 81728, 'eighty-one thousand seven hundred twenty-eight'),\n(19036, 64193, 'sixty-four thousand one hundred ninety-three'),\n(19037, 63077, 'sixty-three thousand seventy-seven'),\n(19038, 75760, 'seventy-five thousand seven hundred sixty'),\n(19039, 45176, 'forty-five thousand one hundred seventy-six'),\n(19040, 49495, 'forty-nine thousand four hundred ninety-five'),\n(19041, 23953, 'twenty-three thousand nine hundred fifty-three'),\n(19042, 30807, 'thirty thousand eight hundred seven'),\n(19043, 84432, 'eighty-four thousand four hundred thirty-two'),\n(19044, 6884, 'six thousand eight hundred eighty-four'),\n(19045, 71966, 'seventy-one thousand nine hundred sixty-six'),\n(19046, 65569, 'sixty-five thousand five hundred sixty-nine'),\n(19047, 15617, 'fifteen thousand six hundred seventeen'),\n(19048, 49244, 'forty-nine thousand two hundred forty-four'),\n(19049, 72542, 'seventy-two thousand five hundred forty-two'),\n(19050, 51806, 'fifty-one thousand eight hundred six'),\n(19051, 53389, 'fifty-three thousand three hundred eighty-nine'),\n(19052, 23506, 'twenty-three thousand five hundred six'),\n(19053, 63209, 'sixty-three thousand two hundred nine'),\n(19054, 9826, 'nine thousand eight hundred twenty-six'),\n(19055, 75631, 'seventy-five thousand six hundred thirty-one'),\n(19056, 15555, 'fifteen thousand five hundred fifty-five'),\n(19057, 79187, 'seventy-nine thousand one hundred eighty-seven'),\n(19058, 75915, 'seventy-five thousand nine hundred fifteen'),\n(19059, 33512, 'thirty-three thousand five hundred twelve'),\n(19060, 22996, 'twenty-two thousand nine hundred ninety-six'),\n(19061, 20687, 'twenty thousand six hundred eighty-seven'),\n(19062, 37828, 'thirty-seven thousand eight hundred twenty-eight'),\n(19063, 46900, 'forty-six thousand nine hundred'),\n(19064, 25811, 'twenty-five thousand eight hundred eleven'),\n(19065, 93443, 'ninety-three thousand four hundred forty-three'),\n(19066, 53314, 'fifty-three thousand three hundred fourteen'),\n(19067, 19042, 'nineteen thousand forty-two'),\n(19068, 80681, 'eighty thousand six hundred eighty-one'),\n(19069, 62655, 'sixty-two thousand six hundred fifty-five'),\n(19070, 64478, 'sixty-four thousand four hundred seventy-eight'),\n(19071, 93568, 'ninety-three thousand five hundred sixty-eight'),\n(19072, 71184, 'seventy-one thousand one hundred eighty-four'),\n(19073, 46349, 'forty-six thousand three hundred forty-nine'),\n(19074, 17332, 'seventeen thousand three hundred thirty-two'),\n(19075, 3078, 'three thousand seventy-eight'),\n(19076, 70995, 'seventy thousand nine hundred ninety-five'),\n(19077, 5056, 'five thousand fifty-six'),\n(19078, 68252, 'sixty-eight thousand two hundred fifty-two'),\n(19079, 6002, 'six thousand two'),\n(19080, 50714, 'fifty thousand seven hundred fourteen'),\n(19081, 12655, 'twelve thousand six hundred fifty-five'),\n(19082, 44405, 'forty-four thousand four hundred five'),\n(19083, 66729, 'sixty-six thousand seven hundred twenty-nine'),\n(19084, 83802, 'eighty-three thousand eight hundred two'),\n(19085, 88524, 'eighty-eight thousand five hundred twenty-four'),\n(19086, 53687, 'fifty-three thousand six hundred eighty-seven'),\n(19087, 20075, 'twenty thousand seventy-five'),\n(19088, 23867, 'twenty-three thousand eight hundred sixty-seven'),\n(19089, 45296, 'forty-five thousand two hundred ninety-six'),\n(19090, 68474, 'sixty-eight thousand four hundred seventy-four'),\n(19091, 64963, 'sixty-four thousand nine hundred sixty-three'),\n(19092, 63629, 'sixty-three thousand six hundred twenty-nine'),\n(19093, 68918, 'sixty-eight thousand nine hundred eighteen'),\n(19094, 84979, 'eighty-four thousand nine hundred seventy-nine'),\n(19095, 46533, 'forty-six thousand five hundred thirty-three'),\n(19096, 5738, 'five thousand seven hundred thirty-eight'),\n(19097, 64281, 'sixty-four thousand two hundred eighty-one'),\n(19098, 23618, 'twenty-three thousand six hundred eighteen'),\n(19099, 18092, 'eighteen thousand ninety-two'),\n(19100, 91857, 'ninety-one thousand eight hundred fifty-seven'),\n(19101, 86699, 'eighty-six thousand six hundred ninety-nine'),\n(19102, 77769, 'seventy-seven thousand seven hundred sixty-nine'),\n(19103, 53988, 'fifty-three thousand nine hundred eighty-eight'),\n(19104, 51167, 'fifty-one thousand one hundred sixty-seven'),\n(19105, 621, 'six hundred twenty-one'),\n(19106, 73178, 'seventy-three thousand one hundred seventy-eight'),\n(19107, 35166, 'thirty-five thousand one hundred sixty-six'),\n(19108, 6609, 'six thousand six hundred nine'),\n(19109, 44953, 'forty-four thousand nine hundred fifty-three'),\n(19110, 15511, 'fifteen thousand five hundred eleven'),\n(19111, 53648, 'fifty-three thousand six hundred forty-eight'),\n(19112, 83729, 'eighty-three thousand seven hundred twenty-nine'),\n(19113, 55438, 'fifty-five thousand four hundred thirty-eight'),\n(19114, 61437, 'sixty-one thousand four hundred thirty-seven'),\n(19115, 28033, 'twenty-eight thousand thirty-three'),\n(19116, 33323, 'thirty-three thousand three hundred twenty-three'),\n(19117, 4828, 'four thousand eight hundred twenty-eight'),\n(19118, 47205, 'forty-seven thousand two hundred five'),\n(19119, 58332, 'fifty-eight thousand three hundred thirty-two'),\n(19120, 41066, 'forty-one thousand sixty-six'),\n(19121, 94989, 'ninety-four thousand nine hundred eighty-nine'),\n(19122, 94426, 'ninety-four thousand four hundred twenty-six'),\n(19123, 22059, 'twenty-two thousand fifty-nine'),\n(19124, 91133, 'ninety-one thousand one hundred thirty-three'),\n(19125, 92327, 'ninety-two thousand three hundred twenty-seven'),\n(19126, 51599, 'fifty-one thousand five hundred ninety-nine'),\n(19127, 43984, 'forty-three thousand nine hundred eighty-four'),\n(19128, 30427, 'thirty thousand four hundred twenty-seven'),\n(19129, 75376, 'seventy-five thousand three hundred seventy-six'),\n(19130, 69139, 'sixty-nine thousand one hundred thirty-nine'),\n(19131, 4525, 'four thousand five hundred twenty-five'),\n(19132, 54018, 'fifty-four thousand eighteen'),\n(19133, 47735, 'forty-seven thousand seven hundred thirty-five'),\n(19134, 11168, 'eleven thousand one hundred sixty-eight'),\n(19135, 70787, 'seventy thousand seven hundred eighty-seven'),\n(19136, 84789, 'eighty-four thousand seven hundred eighty-nine'),\n(19137, 27344, 'twenty-seven thousand three hundred forty-four'),\n(19138, 38401, 'thirty-eight thousand four hundred one'),\n(19139, 88983, 'eighty-eight thousand nine hundred eighty-three'),\n(19140, 59937, 'fifty-nine thousand nine hundred thirty-seven'),\n(19141, 97464, 'ninety-seven thousand four hundred sixty-four'),\n(19142, 27361, 'twenty-seven thousand three hundred sixty-one'),\n(19143, 68881, 'sixty-eight thousand eight hundred eighty-one'),\n(19144, 93728, 'ninety-three thousand seven hundred twenty-eight'),\n(19145, 67674, 'sixty-seven thousand six hundred seventy-four'),\n(19146, 60647, 'sixty thousand six hundred forty-seven'),\n(19147, 47812, 'forty-seven thousand eight hundred twelve'),\n(19148, 52620, 'fifty-two thousand six hundred twenty'),\n(19149, 55378, 'fifty-five thousand three hundred seventy-eight'),\n(19150, 1983, 'one thousand nine hundred eighty-three'),\n(19151, 55759, 'fifty-five thousand seven hundred fifty-nine'),\n(19152, 51276, 'fifty-one thousand two hundred seventy-six'),\n(19153, 2656, 'two thousand six hundred fifty-six'),\n(19154, 21718, 'twenty-one thousand seven hundred eighteen'),\n(19155, 81395, 'eighty-one thousand three hundred ninety-five'),\n(19156, 45772, 'forty-five thousand seven hundred seventy-two'),\n(19157, 40801, 'forty thousand eight hundred one'),\n(19158, 61516, 'sixty-one thousand five hundred sixteen'),\n(19159, 98103, 'ninety-eight thousand one hundred three'),\n(19160, 92758, 'ninety-two thousand seven hundred fifty-eight'),\n(19161, 78281, 'seventy-eight thousand two hundred eighty-one'),\n(19162, 81014, 'eighty-one thousand fourteen'),\n(19163, 43639, 'forty-three thousand six hundred thirty-nine'),\n(19164, 56325, 'fifty-six thousand three hundred twenty-five'),\n(19165, 16505, 'sixteen thousand five hundred five'),\n(19166, 99756, 'ninety-nine thousand seven hundred fifty-six'),\n(19167, 76540, 'seventy-six thousand five hundred forty'),\n(19168, 79601, 'seventy-nine thousand six hundred one'),\n(19169, 32571, 'thirty-two thousand five hundred seventy-one'),\n(19170, 53496, 'fifty-three thousand four hundred ninety-six'),\n(19171, 52103, 'fifty-two thousand one hundred three'),\n(19172, 48441, 'forty-eight thousand four hundred forty-one'),\n(19173, 11183, 'eleven thousand one hundred eighty-three'),\n(19174, 11999, 'eleven thousand nine hundred ninety-nine'),\n(19175, 64784, 'sixty-four thousand seven hundred eighty-four'),\n(19176, 57648, 'fifty-seven thousand six hundred forty-eight'),\n(19177, 93896, 'ninety-three thousand eight hundred ninety-six'),\n(19178, 86705, 'eighty-six thousand seven hundred five'),\n(19179, 56557, 'fifty-six thousand five hundred fifty-seven'),\n(19180, 85082, 'eighty-five thousand eighty-two'),\n(19181, 44066, 'forty-four thousand sixty-six'),\n(19182, 79643, 'seventy-nine thousand six hundred forty-three'),\n(19183, 26669, 'twenty-six thousand six hundred sixty-nine'),\n(19184, 7086, 'seven thousand eighty-six'),\n(19185, 72203, 'seventy-two thousand two hundred three'),\n(19186, 26621, 'twenty-six thousand six hundred twenty-one'),\n(19187, 35360, 'thirty-five thousand three hundred sixty'),\n(19188, 25153, 'twenty-five thousand one hundred fifty-three'),\n(19189, 89327, 'eighty-nine thousand three hundred twenty-seven'),\n(19190, 14725, 'fourteen thousand seven hundred twenty-five'),\n(19191, 4851, 'four thousand eight hundred fifty-one'),\n(19192, 51849, 'fifty-one thousand eight hundred forty-nine'),\n(19193, 43102, 'forty-three thousand one hundred two'),\n(19194, 43324, 'forty-three thousand three hundred twenty-four'),\n(19195, 17926, 'seventeen thousand nine hundred twenty-six'),\n(19196, 92550, 'ninety-two thousand five hundred fifty'),\n(19197, 43796, 'forty-three thousand seven hundred ninety-six'),\n(19198, 40213, 'forty thousand two hundred thirteen'),\n(19199, 61732, 'sixty-one thousand seven hundred thirty-two'),\n(19200, 205, 'two hundred five'),\n(19201, 10938, 'ten thousand nine hundred thirty-eight'),\n(19202, 24595, 'twenty-four thousand five hundred ninety-five'),\n(19203, 24242, 'twenty-four thousand two hundred forty-two'),\n(19204, 9634, 'nine thousand six hundred thirty-four'),\n(19205, 47434, 'forty-seven thousand four hundred thirty-four'),\n(19206, 39636, 'thirty-nine thousand six hundred thirty-six'),\n(19207, 9980, 'nine thousand nine hundred eighty'),\n(19208, 14582, 'fourteen thousand five hundred eighty-two'),\n(19209, 67735, 'sixty-seven thousand seven hundred thirty-five'),\n(19210, 64889, 'sixty-four thousand eight hundred eighty-nine'),\n(19211, 96877, 'ninety-six thousand eight hundred seventy-seven'),\n(19212, 19382, 'nineteen thousand three hundred eighty-two'),\n(19213, 48212, 'forty-eight thousand two hundred twelve'),\n(19214, 48582, 'forty-eight thousand five hundred eighty-two'),\n(19215, 24328, 'twenty-four thousand three hundred twenty-eight'),\n(19216, 23197, 'twenty-three thousand one hundred ninety-seven'),\n(19217, 98912, 'ninety-eight thousand nine hundred twelve'),\n(19218, 48167, 'forty-eight thousand one hundred sixty-seven'),\n(19219, 25883, 'twenty-five thousand eight hundred eighty-three'),\n(19220, 54818, 'fifty-four thousand eight hundred eighteen'),\n(19221, 40567, 'forty thousand five hundred sixty-seven'),\n(19222, 77049, 'seventy-seven thousand forty-nine'),\n(19223, 33584, 'thirty-three thousand five hundred eighty-four'),\n(19224, 5195, 'five thousand one hundred ninety-five'),\n(19225, 74944, 'seventy-four thousand nine hundred forty-four'),\n(19226, 69132, 'sixty-nine thousand one hundred thirty-two'),\n(19227, 77605, 'seventy-seven thousand six hundred five'),\n(19228, 70128, 'seventy thousand one hundred twenty-eight'),\n(19229, 30240, 'thirty thousand two hundred forty'),\n(19230, 1878, 'one thousand eight hundred seventy-eight'),\n(19231, 40839, 'forty thousand eight hundred thirty-nine'),\n(19232, 4747, 'four thousand seven hundred forty-seven'),\n(19233, 50732, 'fifty thousand seven hundred thirty-two'),\n(19234, 8809, 'eight thousand eight hundred nine'),\n(19235, 80568, 'eighty thousand five hundred sixty-eight'),\n(19236, 86070, 'eighty-six thousand seventy'),\n(19237, 38015, 'thirty-eight thousand fifteen'),\n(19238, 89633, 'eighty-nine thousand six hundred thirty-three'),\n(19239, 37092, 'thirty-seven thousand ninety-two'),\n(19240, 2970, 'two thousand nine hundred seventy'),\n(19241, 69240, 'sixty-nine thousand two hundred forty'),\n(19242, 91051, 'ninety-one thousand fifty-one'),\n(19243, 17647, 'seventeen thousand six hundred forty-seven'),\n(19244, 91738, 'ninety-one thousand seven hundred thirty-eight'),\n(19245, 26665, 'twenty-six thousand six hundred sixty-five'),\n(19246, 70403, 'seventy thousand four hundred three'),\n(19247, 75347, 'seventy-five thousand three hundred forty-seven'),\n(19248, 56070, 'fifty-six thousand seventy'),\n(19249, 7900, 'seven thousand nine hundred'),\n(19250, 28888, 'twenty-eight thousand eight hundred eighty-eight'),\n(19251, 65215, 'sixty-five thousand two hundred fifteen'),\n(19252, 55049, 'fifty-five thousand forty-nine'),\n(19253, 77193, 'seventy-seven thousand one hundred ninety-three'),\n(19254, 61672, 'sixty-one thousand six hundred seventy-two'),\n(19255, 65044, 'sixty-five thousand forty-four'),\n(19256, 49607, 'forty-nine thousand six hundred seven'),\n(19257, 65861, 'sixty-five thousand eight hundred sixty-one'),\n(19258, 34911, 'thirty-four thousand nine hundred eleven'),\n(19259, 69887, 'sixty-nine thousand eight hundred eighty-seven'),\n(19260, 36633, 'thirty-six thousand six hundred thirty-three'),\n(19261, 19044, 'nineteen thousand forty-four'),\n(19262, 62796, 'sixty-two thousand seven hundred ninety-six'),\n(19263, 2099, 'two thousand ninety-nine'),\n(19264, 21442, 'twenty-one thousand four hundred forty-two'),\n(19265, 1105, 'one thousand one hundred five'),\n(19266, 9088, 'nine thousand eighty-eight'),\n(19267, 32553, 'thirty-two thousand five hundred fifty-three'),\n(19268, 45639, 'forty-five thousand six hundred thirty-nine'),\n(19269, 83968, 'eighty-three thousand nine hundred sixty-eight'),\n(19270, 74415, 'seventy-four thousand four hundred fifteen'),\n(19271, 61705, 'sixty-one thousand seven hundred five'),\n(19272, 83611, 'eighty-three thousand six hundred eleven'),\n(19273, 72558, 'seventy-two thousand five hundred fifty-eight'),\n(19274, 70563, 'seventy thousand five hundred sixty-three'),\n(19275, 89775, 'eighty-nine thousand seven hundred seventy-five'),\n(19276, 30899, 'thirty thousand eight hundred ninety-nine'),\n(19277, 36201, 'thirty-six thousand two hundred one'),\n(19278, 11355, 'eleven thousand three hundred fifty-five'),\n(19279, 11681, 'eleven thousand six hundred eighty-one'),\n(19280, 51729, 'fifty-one thousand seven hundred twenty-nine'),\n(19281, 9610, 'nine thousand six hundred ten'),\n(19282, 76630, 'seventy-six thousand six hundred thirty'),\n(19283, 54242, 'fifty-four thousand two hundred forty-two'),\n(19284, 43089, 'forty-three thousand eighty-nine'),\n(19285, 20028, 'twenty thousand twenty-eight'),\n(19286, 44382, 'forty-four thousand three hundred eighty-two'),\n(19287, 24297, 'twenty-four thousand two hundred ninety-seven'),\n(19288, 42826, 'forty-two thousand eight hundred twenty-six'),\n(19289, 32397, 'thirty-two thousand three hundred ninety-seven'),\n(19290, 27360, 'twenty-seven thousand three hundred sixty'),\n(19291, 68466, 'sixty-eight thousand four hundred sixty-six'),\n(19292, 43800, 'forty-three thousand eight hundred'),\n(19293, 53218, 'fifty-three thousand two hundred eighteen'),\n(19294, 96719, 'ninety-six thousand seven hundred nineteen'),\n(19295, 22882, 'twenty-two thousand eight hundred eighty-two'),\n(19296, 56150, 'fifty-six thousand one hundred fifty'),\n(19297, 7635, 'seven thousand six hundred thirty-five'),\n(19298, 96949, 'ninety-six thousand nine hundred forty-nine'),\n(19299, 48472, 'forty-eight thousand four hundred seventy-two'),\n(19300, 50260, 'fifty thousand two hundred sixty'),\n(19301, 66430, 'sixty-six thousand four hundred thirty'),\n(19302, 67692, 'sixty-seven thousand six hundred ninety-two'),\n(19303, 23852, 'twenty-three thousand eight hundred fifty-two'),\n(19304, 43309, 'forty-three thousand three hundred nine'),\n(19305, 1511, 'one thousand five hundred eleven'),\n(19306, 47202, 'forty-seven thousand two hundred two'),\n(19307, 46243, 'forty-six thousand two hundred forty-three'),\n(19308, 5669, 'five thousand six hundred sixty-nine'),\n(19309, 94119, 'ninety-four thousand one hundred nineteen'),\n(19310, 32175, 'thirty-two thousand one hundred seventy-five'),\n(19311, 32083, 'thirty-two thousand eighty-three'),\n(19312, 22509, 'twenty-two thousand five hundred nine'),\n(19313, 25422, 'twenty-five thousand four hundred twenty-two'),\n(19314, 4357, 'four thousand three hundred fifty-seven'),\n(19315, 52869, 'fifty-two thousand eight hundred sixty-nine'),\n(19316, 17900, 'seventeen thousand nine hundred'),\n(19317, 70938, 'seventy thousand nine hundred thirty-eight'),\n(19318, 2002, 'two thousand two'),\n(19319, 33008, 'thirty-three thousand eight'),\n(19320, 42110, 'forty-two thousand one hundred ten'),\n(19321, 28239, 'twenty-eight thousand two hundred thirty-nine'),\n(19322, 49620, 'forty-nine thousand six hundred twenty'),\n(19323, 50859, 'fifty thousand eight hundred fifty-nine'),\n(19324, 43373, 'forty-three thousand three hundred seventy-three'),\n(19325, 45449, 'forty-five thousand four hundred forty-nine'),\n(19326, 99210, 'ninety-nine thousand two hundred ten'),\n(19327, 59515, 'fifty-nine thousand five hundred fifteen'),\n(19328, 15559, 'fifteen thousand five hundred fifty-nine'),\n(19329, 75239, 'seventy-five thousand two hundred thirty-nine'),\n(19330, 61016, 'sixty-one thousand sixteen'),\n(19331, 13073, 'thirteen thousand seventy-three'),\n(19332, 17545, 'seventeen thousand five hundred forty-five'),\n(19333, 48173, 'forty-eight thousand one hundred seventy-three'),\n(19334, 46919, 'forty-six thousand nine hundred nineteen'),\n(19335, 40774, 'forty thousand seven hundred seventy-four'),\n(19336, 10810, 'ten thousand eight hundred ten'),\n(19337, 10772, 'ten thousand seven hundred seventy-two'),\n(19338, 31839, 'thirty-one thousand eight hundred thirty-nine'),\n(19339, 77514, 'seventy-seven thousand five hundred fourteen'),\n(19340, 25507, 'twenty-five thousand five hundred seven'),\n(19341, 24718, 'twenty-four thousand seven hundred eighteen'),\n(19342, 96088, 'ninety-six thousand eighty-eight'),\n(19343, 37808, 'thirty-seven thousand eight hundred eight'),\n(19344, 28096, 'twenty-eight thousand ninety-six'),\n(19345, 47087, 'forty-seven thousand eighty-seven'),\n(19346, 89794, 'eighty-nine thousand seven hundred ninety-four'),\n(19347, 43305, 'forty-three thousand three hundred five'),\n(19348, 51530, 'fifty-one thousand five hundred thirty'),\n(19349, 72237, 'seventy-two thousand two hundred thirty-seven'),\n(19350, 48165, 'forty-eight thousand one hundred sixty-five'),\n(19351, 87052, 'eighty-seven thousand fifty-two'),\n(19352, 91088, 'ninety-one thousand eighty-eight'),\n(19353, 21787, 'twenty-one thousand seven hundred eighty-seven'),\n(19354, 7438, 'seven thousand four hundred thirty-eight'),\n(19355, 93809, 'ninety-three thousand eight hundred nine'),\n(19356, 53387, 'fifty-three thousand three hundred eighty-seven'),\n(19357, 50148, 'fifty thousand one hundred forty-eight'),\n(19358, 2324, 'two thousand three hundred twenty-four'),\n(19359, 62523, 'sixty-two thousand five hundred twenty-three'),\n(19360, 79984, 'seventy-nine thousand nine hundred eighty-four'),\n(19361, 39614, 'thirty-nine thousand six hundred fourteen'),\n(19362, 95101, 'ninety-five thousand one hundred one'),\n(19363, 66708, 'sixty-six thousand seven hundred eight'),\n(19364, 46374, 'forty-six thousand three hundred seventy-four'),\n(19365, 49233, 'forty-nine thousand two hundred thirty-three'),\n(19366, 41598, 'forty-one thousand five hundred ninety-eight'),\n(19367, 35646, 'thirty-five thousand six hundred forty-six'),\n(19368, 42860, 'forty-two thousand eight hundred sixty'),\n(19369, 32294, 'thirty-two thousand two hundred ninety-four'),\n(19370, 43382, 'forty-three thousand three hundred eighty-two'),\n(19371, 93880, 'ninety-three thousand eight hundred eighty'),\n(19372, 73122, 'seventy-three thousand one hundred twenty-two'),\n(19373, 73350, 'seventy-three thousand three hundred fifty'),\n(19374, 2592, 'two thousand five hundred ninety-two'),\n(19375, 31114, 'thirty-one thousand one hundred fourteen'),\n(19376, 18208, 'eighteen thousand two hundred eight'),\n(19377, 66715, 'sixty-six thousand seven hundred fifteen'),\n(19378, 87081, 'eighty-seven thousand eighty-one'),\n(19379, 63922, 'sixty-three thousand nine hundred twenty-two'),\n(19380, 65135, 'sixty-five thousand one hundred thirty-five'),\n(19381, 34806, 'thirty-four thousand eight hundred six'),\n(19382, 16721, 'sixteen thousand seven hundred twenty-one'),\n(19383, 201, 'two hundred one'),\n(19384, 26400, 'twenty-six thousand four hundred'),\n(19385, 33252, 'thirty-three thousand two hundred fifty-two'),\n(19386, 28363, 'twenty-eight thousand three hundred sixty-three'),\n(19387, 6289, 'six thousand two hundred eighty-nine'),\n(19388, 92145, 'ninety-two thousand one hundred forty-five'),\n(19389, 84960, 'eighty-four thousand nine hundred sixty'),\n(19390, 66476, 'sixty-six thousand four hundred seventy-six'),\n(19391, 19786, 'nineteen thousand seven hundred eighty-six'),\n(19392, 95230, 'ninety-five thousand two hundred thirty'),\n(19393, 43209, 'forty-three thousand two hundred nine'),\n(19394, 52268, 'fifty-two thousand two hundred sixty-eight'),\n(19395, 62133, 'sixty-two thousand one hundred thirty-three'),\n(19396, 49167, 'forty-nine thousand one hundred sixty-seven'),\n(19397, 10010, 'ten thousand ten'),\n(19398, 10877, 'ten thousand eight hundred seventy-seven'),\n(19399, 48856, 'forty-eight thousand eight hundred fifty-six'),\n(19400, 83792, 'eighty-three thousand seven hundred ninety-two'),\n(19401, 70348, 'seventy thousand three hundred forty-eight'),\n(19402, 47192, 'forty-seven thousand one hundred ninety-two'),\n(19403, 14386, 'fourteen thousand three hundred eighty-six'),\n(19404, 66552, 'sixty-six thousand five hundred fifty-two'),\n(19405, 71672, 'seventy-one thousand six hundred seventy-two'),\n(19406, 52616, 'fifty-two thousand six hundred sixteen'),\n(19407, 4293, 'four thousand two hundred ninety-three'),\n(19408, 51794, 'fifty-one thousand seven hundred ninety-four'),\n(19409, 66831, 'sixty-six thousand eight hundred thirty-one'),\n(19410, 32429, 'thirty-two thousand four hundred twenty-nine'),\n(19411, 47330, 'forty-seven thousand three hundred thirty'),\n(19412, 6712, 'six thousand seven hundred twelve'),\n(19413, 22318, 'twenty-two thousand three hundred eighteen'),\n(19414, 81768, 'eighty-one thousand seven hundred sixty-eight'),\n(19415, 17420, 'seventeen thousand four hundred twenty'),\n(19416, 52444, 'fifty-two thousand four hundred forty-four'),\n(19417, 66892, 'sixty-six thousand eight hundred ninety-two'),\n(19418, 9876, 'nine thousand eight hundred seventy-six'),\n(19419, 97886, 'ninety-seven thousand eight hundred eighty-six'),\n(19420, 48250, 'forty-eight thousand two hundred fifty'),\n(19421, 2444, 'two thousand four hundred forty-four'),\n(19422, 25141, 'twenty-five thousand one hundred forty-one'),\n(19423, 76082, 'seventy-six thousand eighty-two'),\n(19424, 65144, 'sixty-five thousand one hundred forty-four'),\n(19425, 97353, 'ninety-seven thousand three hundred fifty-three'),\n(19426, 90269, 'ninety thousand two hundred sixty-nine'),\n(19427, 53684, 'fifty-three thousand six hundred eighty-four'),\n(19428, 72658, 'seventy-two thousand six hundred fifty-eight'),\n(19429, 11347, 'eleven thousand three hundred forty-seven'),\n(19430, 56510, 'fifty-six thousand five hundred ten'),\n(19431, 45481, 'forty-five thousand four hundred eighty-one'),\n(19432, 22, 'twenty-two'),\n(19433, 28940, 'twenty-eight thousand nine hundred forty'),\n(19434, 91707, 'ninety-one thousand seven hundred seven'),\n(19435, 90242, 'ninety thousand two hundred forty-two'),\n(19436, 83129, 'eighty-three thousand one hundred twenty-nine'),\n(19437, 14988, 'fourteen thousand nine hundred eighty-eight'),\n(19438, 59144, 'fifty-nine thousand one hundred forty-four'),\n(19439, 89946, 'eighty-nine thousand nine hundred forty-six'),\n(19440, 1864, 'one thousand eight hundred sixty-four'),\n(19441, 94618, 'ninety-four thousand six hundred eighteen'),\n(19442, 62704, 'sixty-two thousand seven hundred four'),\n(19443, 48949, 'forty-eight thousand nine hundred forty-nine'),\n(19444, 57557, 'fifty-seven thousand five hundred fifty-seven'),\n(19445, 99652, 'ninety-nine thousand six hundred fifty-two'),\n(19446, 65442, 'sixty-five thousand four hundred forty-two'),\n(19447, 86076, 'eighty-six thousand seventy-six'),\n(19448, 67110, 'sixty-seven thousand one hundred ten'),\n(19449, 48685, 'forty-eight thousand six hundred eighty-five'),\n(19450, 7597, 'seven thousand five hundred ninety-seven'),\n(19451, 61705, 'sixty-one thousand seven hundred five'),\n(19452, 28462, 'twenty-eight thousand four hundred sixty-two'),\n(19453, 68515, 'sixty-eight thousand five hundred fifteen'),\n(19454, 28122, 'twenty-eight thousand one hundred twenty-two'),\n(19455, 57963, 'fifty-seven thousand nine hundred sixty-three'),\n(19456, 22132, 'twenty-two thousand one hundred thirty-two'),\n(19457, 80751, 'eighty thousand seven hundred fifty-one'),\n(19458, 95004, 'ninety-five thousand four'),\n(19459, 41140, 'forty-one thousand one hundred forty'),\n(19460, 64038, 'sixty-four thousand thirty-eight'),\n(19461, 62227, 'sixty-two thousand two hundred twenty-seven'),\n(19462, 64229, 'sixty-four thousand two hundred twenty-nine'),\n(19463, 96822, 'ninety-six thousand eight hundred twenty-two'),\n(19464, 39952, 'thirty-nine thousand nine hundred fifty-two'),\n(19465, 23326, 'twenty-three thousand three hundred twenty-six'),\n(19466, 75334, 'seventy-five thousand three hundred thirty-four'),\n(19467, 19972, 'nineteen thousand nine hundred seventy-two'),\n(19468, 67975, 'sixty-seven thousand nine hundred seventy-five'),\n(19469, 69206, 'sixty-nine thousand two hundred six'),\n(19470, 30012, 'thirty thousand twelve'),\n(19471, 10368, 'ten thousand three hundred sixty-eight'),\n(19472, 79123, 'seventy-nine thousand one hundred twenty-three'),\n(19473, 96431, 'ninety-six thousand four hundred thirty-one'),\n(19474, 72369, 'seventy-two thousand three hundred sixty-nine'),\n(19475, 42306, 'forty-two thousand three hundred six'),\n(19476, 21722, 'twenty-one thousand seven hundred twenty-two'),\n(19477, 74826, 'seventy-four thousand eight hundred twenty-six'),\n(19478, 91822, 'ninety-one thousand eight hundred twenty-two'),\n(19479, 25361, 'twenty-five thousand three hundred sixty-one'),\n(19480, 80880, 'eighty thousand eight hundred eighty'),\n(19481, 19020, 'nineteen thousand twenty'),\n(19482, 26467, 'twenty-six thousand four hundred sixty-seven'),\n(19483, 55168, 'fifty-five thousand one hundred sixty-eight'),\n(19484, 27838, 'twenty-seven thousand eight hundred thirty-eight'),\n(19485, 75097, 'seventy-five thousand ninety-seven'),\n(19486, 58121, 'fifty-eight thousand one hundred twenty-one'),\n(19487, 67684, 'sixty-seven thousand six hundred eighty-four'),\n(19488, 34533, 'thirty-four thousand five hundred thirty-three'),\n(19489, 65004, 'sixty-five thousand four'),\n(19490, 81753, 'eighty-one thousand seven hundred fifty-three'),\n(19491, 22928, 'twenty-two thousand nine hundred twenty-eight'),\n(19492, 89768, 'eighty-nine thousand seven hundred sixty-eight'),\n(19493, 80066, 'eighty thousand sixty-six'),\n(19494, 63, 'sixty-three'),\n(19495, 81133, 'eighty-one thousand one hundred thirty-three'),\n(19496, 62368, 'sixty-two thousand three hundred sixty-eight'),\n(19497, 96655, 'ninety-six thousand six hundred fifty-five'),\n(19498, 58355, 'fifty-eight thousand three hundred fifty-five'),\n(19499, 57203, 'fifty-seven thousand two hundred three'),\n(19500, 4648, 'four thousand six hundred forty-eight'),\n(19501, 61347, 'sixty-one thousand three hundred forty-seven'),\n(19502, 25546, 'twenty-five thousand five hundred forty-six'),\n(19503, 96284, 'ninety-six thousand two hundred eighty-four'),\n(19504, 41149, 'forty-one thousand one hundred forty-nine'),\n(19505, 4904, 'four thousand nine hundred four'),\n(19506, 18995, 'eighteen thousand nine hundred ninety-five'),\n(19507, 96790, 'ninety-six thousand seven hundred ninety'),\n(19508, 92836, 'ninety-two thousand eight hundred thirty-six'),\n(19509, 8992, 'eight thousand nine hundred ninety-two'),\n(19510, 69370, 'sixty-nine thousand three hundred seventy'),\n(19511, 60765, 'sixty thousand seven hundred sixty-five'),\n(19512, 16653, 'sixteen thousand six hundred fifty-three'),\n(19513, 10060, 'ten thousand sixty'),\n(19514, 35796, 'thirty-five thousand seven hundred ninety-six'),\n(19515, 93618, 'ninety-three thousand six hundred eighteen'),\n(19516, 80694, 'eighty thousand six hundred ninety-four'),\n(19517, 20147, 'twenty thousand one hundred forty-seven'),\n(19518, 3429, 'three thousand four hundred twenty-nine'),\n(19519, 83564, 'eighty-three thousand five hundred sixty-four'),\n(19520, 88829, 'eighty-eight thousand eight hundred twenty-nine'),\n(19521, 77754, 'seventy-seven thousand seven hundred fifty-four'),\n(19522, 12284, 'twelve thousand two hundred eighty-four'),\n(19523, 35935, 'thirty-five thousand nine hundred thirty-five'),\n(19524, 27183, 'twenty-seven thousand one hundred eighty-three'),\n(19525, 64198, 'sixty-four thousand one hundred ninety-eight'),\n(19526, 38675, 'thirty-eight thousand six hundred seventy-five'),\n(19527, 70844, 'seventy thousand eight hundred forty-four'),\n(19528, 22704, 'twenty-two thousand seven hundred four'),\n(19529, 79958, 'seventy-nine thousand nine hundred fifty-eight'),\n(19530, 95929, 'ninety-five thousand nine hundred twenty-nine'),\n(19531, 6916, 'six thousand nine hundred sixteen'),\n(19532, 54743, 'fifty-four thousand seven hundred forty-three'),\n(19533, 60604, 'sixty thousand six hundred four'),\n(19534, 22325, 'twenty-two thousand three hundred twenty-five'),\n(19535, 26066, 'twenty-six thousand sixty-six'),\n(19536, 25068, 'twenty-five thousand sixty-eight'),\n(19537, 73999, 'seventy-three thousand nine hundred ninety-nine'),\n(19538, 90102, 'ninety thousand one hundred two'),\n(19539, 50796, 'fifty thousand seven hundred ninety-six'),\n(19540, 56825, 'fifty-six thousand eight hundred twenty-five'),\n(19541, 94460, 'ninety-four thousand four hundred sixty'),\n(19542, 16262, 'sixteen thousand two hundred sixty-two'),\n(19543, 28322, 'twenty-eight thousand three hundred twenty-two'),\n(19544, 34284, 'thirty-four thousand two hundred eighty-four'),\n(19545, 32065, 'thirty-two thousand sixty-five'),\n(19546, 77081, 'seventy-seven thousand eighty-one'),\n(19547, 96591, 'ninety-six thousand five hundred ninety-one'),\n(19548, 16485, 'sixteen thousand four hundred eighty-five'),\n(19549, 82703, 'eighty-two thousand seven hundred three'),\n(19550, 48669, 'forty-eight thousand six hundred sixty-nine'),\n(19551, 20707, 'twenty thousand seven hundred seven'),\n(19552, 41545, 'forty-one thousand five hundred forty-five'),\n(19553, 27933, 'twenty-seven thousand nine hundred thirty-three'),\n(19554, 66292, 'sixty-six thousand two hundred ninety-two'),\n(19555, 24202, 'twenty-four thousand two hundred two'),\n(19556, 62431, 'sixty-two thousand four hundred thirty-one'),\n(19557, 78840, 'seventy-eight thousand eight hundred forty'),\n(19558, 16413, 'sixteen thousand four hundred thirteen'),\n(19559, 70175, 'seventy thousand one hundred seventy-five'),\n(19560, 60832, 'sixty thousand eight hundred thirty-two'),\n(19561, 23019, 'twenty-three thousand nineteen'),\n(19562, 12209, 'twelve thousand two hundred nine'),\n(19563, 80853, 'eighty thousand eight hundred fifty-three'),\n(19564, 92697, 'ninety-two thousand six hundred ninety-seven'),\n(19565, 28415, 'twenty-eight thousand four hundred fifteen'),\n(19566, 32499, 'thirty-two thousand four hundred ninety-nine'),\n(19567, 27750, 'twenty-seven thousand seven hundred fifty'),\n(19568, 76482, 'seventy-six thousand four hundred eighty-two'),\n(19569, 61990, 'sixty-one thousand nine hundred ninety'),\n(19570, 45851, 'forty-five thousand eight hundred fifty-one'),\n(19571, 70133, 'seventy thousand one hundred thirty-three'),\n(19572, 10924, 'ten thousand nine hundred twenty-four'),\n(19573, 14232, 'fourteen thousand two hundred thirty-two'),\n(19574, 42897, 'forty-two thousand eight hundred ninety-seven'),\n(19575, 43859, 'forty-three thousand eight hundred fifty-nine'),\n(19576, 45896, 'forty-five thousand eight hundred ninety-six'),\n(19577, 80573, 'eighty thousand five hundred seventy-three'),\n(19578, 33263, 'thirty-three thousand two hundred sixty-three'),\n(19579, 11309, 'eleven thousand three hundred nine'),\n(19580, 51548, 'fifty-one thousand five hundred forty-eight'),\n(19581, 84810, 'eighty-four thousand eight hundred ten'),\n(19582, 5351, 'five thousand three hundred fifty-one'),\n(19583, 49954, 'forty-nine thousand nine hundred fifty-four'),\n(19584, 77970, 'seventy-seven thousand nine hundred seventy'),\n(19585, 38837, 'thirty-eight thousand eight hundred thirty-seven'),\n(19586, 84518, 'eighty-four thousand five hundred eighteen'),\n(19587, 77835, 'seventy-seven thousand eight hundred thirty-five'),\n(19588, 79133, 'seventy-nine thousand one hundred thirty-three'),\n(19589, 66653, 'sixty-six thousand six hundred fifty-three'),\n(19590, 66560, 'sixty-six thousand five hundred sixty'),\n(19591, 49271, 'forty-nine thousand two hundred seventy-one'),\n(19592, 51718, 'fifty-one thousand seven hundred eighteen'),\n(19593, 29659, 'twenty-nine thousand six hundred fifty-nine'),\n(19594, 95580, 'ninety-five thousand five hundred eighty'),\n(19595, 96407, 'ninety-six thousand four hundred seven'),\n(19596, 10534, 'ten thousand five hundred thirty-four'),\n(19597, 87778, 'eighty-seven thousand seven hundred seventy-eight'),\n(19598, 15207, 'fifteen thousand two hundred seven'),\n(19599, 34221, 'thirty-four thousand two hundred twenty-one'),\n(19600, 94870, 'ninety-four thousand eight hundred seventy'),\n(19601, 58996, 'fifty-eight thousand nine hundred ninety-six'),\n(19602, 60626, 'sixty thousand six hundred twenty-six'),\n(19603, 53579, 'fifty-three thousand five hundred seventy-nine'),\n(19604, 23647, 'twenty-three thousand six hundred forty-seven'),\n(19605, 68599, 'sixty-eight thousand five hundred ninety-nine'),\n(19606, 58470, 'fifty-eight thousand four hundred seventy'),\n(19607, 14979, 'fourteen thousand nine hundred seventy-nine'),\n(19608, 92082, 'ninety-two thousand eighty-two'),\n(19609, 89164, 'eighty-nine thousand one hundred sixty-four'),\n(19610, 8578, 'eight thousand five hundred seventy-eight'),\n(19611, 21507, 'twenty-one thousand five hundred seven'),\n(19612, 78285, 'seventy-eight thousand two hundred eighty-five'),\n(19613, 28293, 'twenty-eight thousand two hundred ninety-three'),\n(19614, 93758, 'ninety-three thousand seven hundred fifty-eight'),\n(19615, 94719, 'ninety-four thousand seven hundred nineteen'),\n(19616, 51661, 'fifty-one thousand six hundred sixty-one'),\n(19617, 82080, 'eighty-two thousand eighty'),\n(19618, 10941, 'ten thousand nine hundred forty-one'),\n(19619, 17836, 'seventeen thousand eight hundred thirty-six'),\n(19620, 28320, 'twenty-eight thousand three hundred twenty'),\n(19621, 83908, 'eighty-three thousand nine hundred eight'),\n(19622, 60471, 'sixty thousand four hundred seventy-one'),\n(19623, 91459, 'ninety-one thousand four hundred fifty-nine'),\n(19624, 82685, 'eighty-two thousand six hundred eighty-five'),\n(19625, 19443, 'nineteen thousand four hundred forty-three'),\n(19626, 91953, 'ninety-one thousand nine hundred fifty-three'),\n(19627, 3738, 'three thousand seven hundred thirty-eight'),\n(19628, 56988, 'fifty-six thousand nine hundred eighty-eight'),\n(19629, 96647, 'ninety-six thousand six hundred forty-seven'),\n(19630, 43647, 'forty-three thousand six hundred forty-seven'),\n(19631, 85166, 'eighty-five thousand one hundred sixty-six'),\n(19632, 12253, 'twelve thousand two hundred fifty-three'),\n(19633, 74525, 'seventy-four thousand five hundred twenty-five'),\n(19634, 90349, 'ninety thousand three hundred forty-nine'),\n(19635, 74598, 'seventy-four thousand five hundred ninety-eight'),\n(19636, 1249, 'one thousand two hundred forty-nine'),\n(19637, 50478, 'fifty thousand four hundred seventy-eight'),\n(19638, 2228, 'two thousand two hundred twenty-eight'),\n(19639, 52153, 'fifty-two thousand one hundred fifty-three'),\n(19640, 27915, 'twenty-seven thousand nine hundred fifteen'),\n(19641, 11883, 'eleven thousand eight hundred eighty-three'),\n(19642, 30767, 'thirty thousand seven hundred sixty-seven'),\n(19643, 97278, 'ninety-seven thousand two hundred seventy-eight'),\n(19644, 16183, 'sixteen thousand one hundred eighty-three'),\n(19645, 54272, 'fifty-four thousand two hundred seventy-two'),\n(19646, 10524, 'ten thousand five hundred twenty-four'),\n(19647, 91389, 'ninety-one thousand three hundred eighty-nine'),\n(19648, 30152, 'thirty thousand one hundred fifty-two'),\n(19649, 42300, 'forty-two thousand three hundred'),\n(19650, 66381, 'sixty-six thousand three hundred eighty-one'),\n(19651, 61423, 'sixty-one thousand four hundred twenty-three'),\n(19652, 2439, 'two thousand four hundred thirty-nine'),\n(19653, 38459, 'thirty-eight thousand four hundred fifty-nine'),\n(19654, 18236, 'eighteen thousand two hundred thirty-six'),\n(19655, 59684, 'fifty-nine thousand six hundred eighty-four'),\n(19656, 81523, 'eighty-one thousand five hundred twenty-three'),\n(19657, 13311, 'thirteen thousand three hundred eleven'),\n(19658, 64452, 'sixty-four thousand four hundred fifty-two'),\n(19659, 38101, 'thirty-eight thousand one hundred one'),\n(19660, 47148, 'forty-seven thousand one hundred forty-eight'),\n(19661, 11105, 'eleven thousand one hundred five'),\n(19662, 12623, 'twelve thousand six hundred twenty-three'),\n(19663, 19114, 'nineteen thousand one hundred fourteen'),\n(19664, 55521, 'fifty-five thousand five hundred twenty-one'),\n(19665, 61789, 'sixty-one thousand seven hundred eighty-nine'),\n(19666, 95109, 'ninety-five thousand one hundred nine'),\n(19667, 6761, 'six thousand seven hundred sixty-one'),\n(19668, 69469, 'sixty-nine thousand four hundred sixty-nine'),\n(19669, 26772, 'twenty-six thousand seven hundred seventy-two'),\n(19670, 27451, 'twenty-seven thousand four hundred fifty-one'),\n(19671, 21995, 'twenty-one thousand nine hundred ninety-five'),\n(19672, 59876, 'fifty-nine thousand eight hundred seventy-six'),\n(19673, 13762, 'thirteen thousand seven hundred sixty-two'),\n(19674, 26792, 'twenty-six thousand seven hundred ninety-two'),\n(19675, 81084, 'eighty-one thousand eighty-four'),\n(19676, 37351, 'thirty-seven thousand three hundred fifty-one'),\n(19677, 65250, 'sixty-five thousand two hundred fifty'),\n(19678, 81527, 'eighty-one thousand five hundred twenty-seven'),\n(19679, 36905, 'thirty-six thousand nine hundred five'),\n(19680, 47660, 'forty-seven thousand six hundred sixty'),\n(19681, 22995, 'twenty-two thousand nine hundred ninety-five'),\n(19682, 19225, 'nineteen thousand two hundred twenty-five'),\n(19683, 2693, 'two thousand six hundred ninety-three'),\n(19684, 64964, 'sixty-four thousand nine hundred sixty-four'),\n(19685, 91691, 'ninety-one thousand six hundred ninety-one'),\n(19686, 15382, 'fifteen thousand three hundred eighty-two'),\n(19687, 67817, 'sixty-seven thousand eight hundred seventeen'),\n(19688, 78111, 'seventy-eight thousand one hundred eleven'),\n(19689, 11356, 'eleven thousand three hundred fifty-six'),\n(19690, 6504, 'six thousand five hundred four'),\n(19691, 97517, 'ninety-seven thousand five hundred seventeen'),\n(19692, 98220, 'ninety-eight thousand two hundred twenty'),\n(19693, 71863, 'seventy-one thousand eight hundred sixty-three'),\n(19694, 85460, 'eighty-five thousand four hundred sixty'),\n(19695, 28314, 'twenty-eight thousand three hundred fourteen'),\n(19696, 3256, 'three thousand two hundred fifty-six'),\n(19697, 58069, 'fifty-eight thousand sixty-nine'),\n(19698, 94678, 'ninety-four thousand six hundred seventy-eight'),\n(19699, 54302, 'fifty-four thousand three hundred two'),\n(19700, 25576, 'twenty-five thousand five hundred seventy-six'),\n(19701, 35569, 'thirty-five thousand five hundred sixty-nine'),\n(19702, 61789, 'sixty-one thousand seven hundred eighty-nine'),\n(19703, 99265, 'ninety-nine thousand two hundred sixty-five'),\n(19704, 16493, 'sixteen thousand four hundred ninety-three'),\n(19705, 86940, 'eighty-six thousand nine hundred forty'),\n(19706, 4691, 'four thousand six hundred ninety-one'),\n(19707, 99848, 'ninety-nine thousand eight hundred forty-eight'),\n(19708, 61625, 'sixty-one thousand six hundred twenty-five'),\n(19709, 7584, 'seven thousand five hundred eighty-four'),\n(19710, 61591, 'sixty-one thousand five hundred ninety-one'),\n(19711, 48565, 'forty-eight thousand five hundred sixty-five'),\n(19712, 30013, 'thirty thousand thirteen'),\n(19713, 43751, 'forty-three thousand seven hundred fifty-one'),\n(19714, 94680, 'ninety-four thousand six hundred eighty'),\n(19715, 8761, 'eight thousand seven hundred sixty-one'),\n(19716, 6462, 'six thousand four hundred sixty-two'),\n(19717, 52834, 'fifty-two thousand eight hundred thirty-four'),\n(19718, 29130, 'twenty-nine thousand one hundred thirty'),\n(19719, 46559, 'forty-six thousand five hundred fifty-nine'),\n(19720, 58524, 'fifty-eight thousand five hundred twenty-four'),\n(19721, 30948, 'thirty thousand nine hundred forty-eight'),\n(19722, 83340, 'eighty-three thousand three hundred forty'),\n(19723, 33399, 'thirty-three thousand three hundred ninety-nine'),\n(19724, 35963, 'thirty-five thousand nine hundred sixty-three'),\n(19725, 53570, 'fifty-three thousand five hundred seventy'),\n(19726, 22531, 'twenty-two thousand five hundred thirty-one'),\n(19727, 65702, 'sixty-five thousand seven hundred two'),\n(19728, 6151, 'six thousand one hundred fifty-one'),\n(19729, 22564, 'twenty-two thousand five hundred sixty-four'),\n(19730, 51186, 'fifty-one thousand one hundred eighty-six'),\n(19731, 4282, 'four thousand two hundred eighty-two'),\n(19732, 18315, 'eighteen thousand three hundred fifteen'),\n(19733, 76796, 'seventy-six thousand seven hundred ninety-six'),\n(19734, 72166, 'seventy-two thousand one hundred sixty-six'),\n(19735, 53644, 'fifty-three thousand six hundred forty-four'),\n(19736, 10619, 'ten thousand six hundred nineteen'),\n(19737, 64997, 'sixty-four thousand nine hundred ninety-seven'),\n(19738, 22161, 'twenty-two thousand one hundred sixty-one'),\n(19739, 8142, 'eight thousand one hundred forty-two'),\n(19740, 10780, 'ten thousand seven hundred eighty'),\n(19741, 69248, 'sixty-nine thousand two hundred forty-eight'),\n(19742, 56786, 'fifty-six thousand seven hundred eighty-six'),\n(19743, 53398, 'fifty-three thousand three hundred ninety-eight'),\n(19744, 84795, 'eighty-four thousand seven hundred ninety-five'),\n(19745, 4636, 'four thousand six hundred thirty-six'),\n(19746, 6238, 'six thousand two hundred thirty-eight'),\n(19747, 3622, 'three thousand six hundred twenty-two'),\n(19748, 48162, 'forty-eight thousand one hundred sixty-two'),\n(19749, 2440, 'two thousand four hundred forty'),\n(19750, 77308, 'seventy-seven thousand three hundred eight'),\n(19751, 94800, 'ninety-four thousand eight hundred'),\n(19752, 24943, 'twenty-four thousand nine hundred forty-three'),\n(19753, 53543, 'fifty-three thousand five hundred forty-three'),\n(19754, 57778, 'fifty-seven thousand seven hundred seventy-eight'),\n(19755, 1733, 'one thousand seven hundred thirty-three'),\n(19756, 38360, 'thirty-eight thousand three hundred sixty'),\n(19757, 32098, 'thirty-two thousand ninety-eight'),\n(19758, 66809, 'sixty-six thousand eight hundred nine'),\n(19759, 18557, 'eighteen thousand five hundred fifty-seven'),\n(19760, 45597, 'forty-five thousand five hundred ninety-seven'),\n(19761, 19556, 'nineteen thousand five hundred fifty-six'),\n(19762, 82911, 'eighty-two thousand nine hundred eleven'),\n(19763, 6948, 'six thousand nine hundred forty-eight'),\n(19764, 22761, 'twenty-two thousand seven hundred sixty-one'),\n(19765, 19630, 'nineteen thousand six hundred thirty'),\n(19766, 56186, 'fifty-six thousand one hundred eighty-six'),\n(19767, 35048, 'thirty-five thousand forty-eight'),\n(19768, 95893, 'ninety-five thousand eight hundred ninety-three'),\n(19769, 79559, 'seventy-nine thousand five hundred fifty-nine'),\n(19770, 455, 'four hundred fifty-five'),\n(19771, 13704, 'thirteen thousand seven hundred four'),\n(19772, 84552, 'eighty-four thousand five hundred fifty-two'),\n(19773, 79148, 'seventy-nine thousand one hundred forty-eight'),\n(19774, 79150, 'seventy-nine thousand one hundred fifty'),\n(19775, 707, 'seven hundred seven'),\n(19776, 85901, 'eighty-five thousand nine hundred one'),\n(19777, 27109, 'twenty-seven thousand one hundred nine'),\n(19778, 21154, 'twenty-one thousand one hundred fifty-four'),\n(19779, 50486, 'fifty thousand four hundred eighty-six'),\n(19780, 41518, 'forty-one thousand five hundred eighteen'),\n(19781, 85460, 'eighty-five thousand four hundred sixty'),\n(19782, 9865, 'nine thousand eight hundred sixty-five'),\n(19783, 3551, 'three thousand five hundred fifty-one'),\n(19784, 14149, 'fourteen thousand one hundred forty-nine'),\n(19785, 11263, 'eleven thousand two hundred sixty-three'),\n(19786, 29249, 'twenty-nine thousand two hundred forty-nine'),\n(19787, 92742, 'ninety-two thousand seven hundred forty-two'),\n(19788, 23738, 'twenty-three thousand seven hundred thirty-eight'),\n(19789, 8569, 'eight thousand five hundred sixty-nine'),\n(19790, 73611, 'seventy-three thousand six hundred eleven'),\n(19791, 17528, 'seventeen thousand five hundred twenty-eight'),\n(19792, 87132, 'eighty-seven thousand one hundred thirty-two'),\n(19793, 89576, 'eighty-nine thousand five hundred seventy-six'),\n(19794, 58548, 'fifty-eight thousand five hundred forty-eight'),\n(19795, 76515, 'seventy-six thousand five hundred fifteen'),\n(19796, 85275, 'eighty-five thousand two hundred seventy-five'),\n(19797, 74078, 'seventy-four thousand seventy-eight'),\n(19798, 92504, 'ninety-two thousand five hundred four'),\n(19799, 22474, 'twenty-two thousand four hundred seventy-four'),\n(19800, 80380, 'eighty thousand three hundred eighty'),\n(19801, 82322, 'eighty-two thousand three hundred twenty-two'),\n(19802, 2313, 'two thousand three hundred thirteen'),\n(19803, 79813, 'seventy-nine thousand eight hundred thirteen'),\n(19804, 47837, 'forty-seven thousand eight hundred thirty-seven'),\n(19805, 2108, 'two thousand one hundred eight'),\n(19806, 16093, 'sixteen thousand ninety-three'),\n(19807, 60147, 'sixty thousand one hundred forty-seven'),\n(19808, 20895, 'twenty thousand eight hundred ninety-five'),\n(19809, 74249, 'seventy-four thousand two hundred forty-nine'),\n(19810, 55563, 'fifty-five thousand five hundred sixty-three'),\n(19811, 10747, 'ten thousand seven hundred forty-seven'),\n(19812, 6585, 'six thousand five hundred eighty-five'),\n(19813, 29215, 'twenty-nine thousand two hundred fifteen'),\n(19814, 76396, 'seventy-six thousand three hundred ninety-six'),\n(19815, 85241, 'eighty-five thousand two hundred forty-one'),\n(19816, 2360, 'two thousand three hundred sixty'),\n(19817, 53226, 'fifty-three thousand two hundred twenty-six'),\n(19818, 51942, 'fifty-one thousand nine hundred forty-two'),\n(19819, 26759, 'twenty-six thousand seven hundred fifty-nine'),\n(19820, 59110, 'fifty-nine thousand one hundred ten'),\n(19821, 35304, 'thirty-five thousand three hundred four'),\n(19822, 8459, 'eight thousand four hundred fifty-nine'),\n(19823, 69970, 'sixty-nine thousand nine hundred seventy'),\n(19824, 41987, 'forty-one thousand nine hundred eighty-seven'),\n(19825, 27392, 'twenty-seven thousand three hundred ninety-two'),\n(19826, 85072, 'eighty-five thousand seventy-two'),\n(19827, 78015, 'seventy-eight thousand fifteen'),\n(19828, 71128, 'seventy-one thousand one hundred twenty-eight'),\n(19829, 78156, 'seventy-eight thousand one hundred fifty-six'),\n(19830, 38900, 'thirty-eight thousand nine hundred'),\n(19831, 86028, 'eighty-six thousand twenty-eight'),\n(19832, 97658, 'ninety-seven thousand six hundred fifty-eight'),\n(19833, 22026, 'twenty-two thousand twenty-six'),\n(19834, 60160, 'sixty thousand one hundred sixty'),\n(19835, 78417, 'seventy-eight thousand four hundred seventeen'),\n(19836, 32551, 'thirty-two thousand five hundred fifty-one'),\n(19837, 61239, 'sixty-one thousand two hundred thirty-nine'),\n(19838, 73367, 'seventy-three thousand three hundred sixty-seven'),\n(19839, 46572, 'forty-six thousand five hundred seventy-two'),\n(19840, 72377, 'seventy-two thousand three hundred seventy-seven'),\n(19841, 862, 'eight hundred sixty-two'),\n(19842, 18676, 'eighteen thousand six hundred seventy-six'),\n(19843, 64473, 'sixty-four thousand four hundred seventy-three'),\n(19844, 42674, 'forty-two thousand six hundred seventy-four'),\n(19845, 59521, 'fifty-nine thousand five hundred twenty-one'),\n(19846, 30886, 'thirty thousand eight hundred eighty-six'),\n(19847, 79158, 'seventy-nine thousand one hundred fifty-eight'),\n(19848, 88093, 'eighty-eight thousand ninety-three'),\n(19849, 32744, 'thirty-two thousand seven hundred forty-four'),\n(19850, 50025, 'fifty thousand twenty-five'),\n(19851, 41811, 'forty-one thousand eight hundred eleven'),\n(19852, 73961, 'seventy-three thousand nine hundred sixty-one'),\n(19853, 60616, 'sixty thousand six hundred sixteen'),\n(19854, 84485, 'eighty-four thousand four hundred eighty-five'),\n(19855, 26608, 'twenty-six thousand six hundred eight'),\n(19856, 48960, 'forty-eight thousand nine hundred sixty'),\n(19857, 54946, 'fifty-four thousand nine hundred forty-six'),\n(19858, 38908, 'thirty-eight thousand nine hundred eight'),\n(19859, 4862, 'four thousand eight hundred sixty-two'),\n(19860, 26032, 'twenty-six thousand thirty-two'),\n(19861, 17124, 'seventeen thousand one hundred twenty-four'),\n(19862, 4788, 'four thousand seven hundred eighty-eight'),\n(19863, 34230, 'thirty-four thousand two hundred thirty'),\n(19864, 14896, 'fourteen thousand eight hundred ninety-six'),\n(19865, 96684, 'ninety-six thousand six hundred eighty-four'),\n(19866, 281, 'two hundred eighty-one'),\n(19867, 78748, 'seventy-eight thousand seven hundred forty-eight'),\n(19868, 71545, 'seventy-one thousand five hundred forty-five'),\n(19869, 3317, 'three thousand three hundred seventeen'),\n(19870, 32683, 'thirty-two thousand six hundred eighty-three'),\n(19871, 32391, 'thirty-two thousand three hundred ninety-one'),\n(19872, 98739, 'ninety-eight thousand seven hundred thirty-nine'),\n(19873, 30040, 'thirty thousand forty'),\n(19874, 42821, 'forty-two thousand eight hundred twenty-one'),\n(19875, 43253, 'forty-three thousand two hundred fifty-three'),\n(19876, 54301, 'fifty-four thousand three hundred one'),\n(19877, 74672, 'seventy-four thousand six hundred seventy-two'),\n(19878, 43022, 'forty-three thousand twenty-two'),\n(19879, 85675, 'eighty-five thousand six hundred seventy-five'),\n(19880, 33331, 'thirty-three thousand three hundred thirty-one'),\n(19881, 16335, 'sixteen thousand three hundred thirty-five'),\n(19882, 97169, 'ninety-seven thousand one hundred sixty-nine'),\n(19883, 77461, 'seventy-seven thousand four hundred sixty-one'),\n(19884, 29652, 'twenty-nine thousand six hundred fifty-two'),\n(19885, 10484, 'ten thousand four hundred eighty-four'),\n(19886, 44133, 'forty-four thousand one hundred thirty-three'),\n(19887, 13265, 'thirteen thousand two hundred sixty-five'),\n(19888, 52115, 'fifty-two thousand one hundred fifteen'),\n(19889, 75885, 'seventy-five thousand eight hundred eighty-five'),\n(19890, 2600, 'two thousand six hundred'),\n(19891, 61847, 'sixty-one thousand eight hundred forty-seven'),\n(19892, 72430, 'seventy-two thousand four hundred thirty'),\n(19893, 55107, 'fifty-five thousand one hundred seven'),\n(19894, 5971, 'five thousand nine hundred seventy-one'),\n(19895, 6481, 'six thousand four hundred eighty-one'),\n(19896, 55638, 'fifty-five thousand six hundred thirty-eight'),\n(19897, 48151, 'forty-eight thousand one hundred fifty-one'),\n(19898, 84748, 'eighty-four thousand seven hundred forty-eight'),\n(19899, 19029, 'nineteen thousand twenty-nine'),\n(19900, 7061, 'seven thousand sixty-one'),\n(19901, 94578, 'ninety-four thousand five hundred seventy-eight'),\n(19902, 3663, 'three thousand six hundred sixty-three'),\n(19903, 66318, 'sixty-six thousand three hundred eighteen'),\n(19904, 31563, 'thirty-one thousand five hundred sixty-three'),\n(19905, 79248, 'seventy-nine thousand two hundred forty-eight'),\n(19906, 25074, 'twenty-five thousand seventy-four'),\n(19907, 98071, 'ninety-eight thousand seventy-one'),\n(19908, 24780, 'twenty-four thousand seven hundred eighty'),\n(19909, 77806, 'seventy-seven thousand eight hundred six'),\n(19910, 58941, 'fifty-eight thousand nine hundred forty-one'),\n(19911, 2663, 'two thousand six hundred sixty-three'),\n(19912, 31506, 'thirty-one thousand five hundred six'),\n(19913, 75696, 'seventy-five thousand six hundred ninety-six'),\n(19914, 54651, 'fifty-four thousand six hundred fifty-one'),\n(19915, 71359, 'seventy-one thousand three hundred fifty-nine'),\n(19916, 69997, 'sixty-nine thousand nine hundred ninety-seven'),\n(19917, 12752, 'twelve thousand seven hundred fifty-two'),\n(19918, 65267, 'sixty-five thousand two hundred sixty-seven'),\n(19919, 65878, 'sixty-five thousand eight hundred seventy-eight'),\n(19920, 65887, 'sixty-five thousand eight hundred eighty-seven'),\n(19921, 46064, 'forty-six thousand sixty-four'),\n(19922, 19555, 'nineteen thousand five hundred fifty-five'),\n(19923, 65599, 'sixty-five thousand five hundred ninety-nine'),\n(19924, 20196, 'twenty thousand one hundred ninety-six'),\n(19925, 90752, 'ninety thousand seven hundred fifty-two'),\n(19926, 17180, 'seventeen thousand one hundred eighty'),\n(19927, 65179, 'sixty-five thousand one hundred seventy-nine'),\n(19928, 5079, 'five thousand seventy-nine'),\n(19929, 30209, 'thirty thousand two hundred nine'),\n(19930, 84827, 'eighty-four thousand eight hundred twenty-seven'),\n(19931, 11487, 'eleven thousand four hundred eighty-seven'),\n(19932, 27339, 'twenty-seven thousand three hundred thirty-nine'),\n(19933, 57949, 'fifty-seven thousand nine hundred forty-nine'),\n(19934, 47261, 'forty-seven thousand two hundred sixty-one'),\n(19935, 44199, 'forty-four thousand one hundred ninety-nine'),\n(19936, 86673, 'eighty-six thousand six hundred seventy-three'),\n(19937, 7578, 'seven thousand five hundred seventy-eight'),\n(19938, 41773, 'forty-one thousand seven hundred seventy-three'),\n(19939, 91968, 'ninety-one thousand nine hundred sixty-eight'),\n(19940, 2132, 'two thousand one hundred thirty-two'),\n(19941, 83697, 'eighty-three thousand six hundred ninety-seven'),\n(19942, 87742, 'eighty-seven thousand seven hundred forty-two'),\n(19943, 55557, 'fifty-five thousand five hundred fifty-seven'),\n(19944, 63580, 'sixty-three thousand five hundred eighty'),\n(19945, 1672, 'one thousand six hundred seventy-two'),\n(19946, 65420, 'sixty-five thousand four hundred twenty'),\n(19947, 29197, 'twenty-nine thousand one hundred ninety-seven'),\n(19948, 62945, 'sixty-two thousand nine hundred forty-five'),\n(19949, 9304, 'nine thousand three hundred four'),\n(19950, 9521, 'nine thousand five hundred twenty-one'),\n(19951, 36574, 'thirty-six thousand five hundred seventy-four'),\n(19952, 89705, 'eighty-nine thousand seven hundred five'),\n(19953, 33556, 'thirty-three thousand five hundred fifty-six'),\n(19954, 59207, 'fifty-nine thousand two hundred seven'),\n(19955, 49013, 'forty-nine thousand thirteen'),\n(19956, 61215, 'sixty-one thousand two hundred fifteen'),\n(19957, 30798, 'thirty thousand seven hundred ninety-eight'),\n(19958, 43824, 'forty-three thousand eight hundred twenty-four'),\n(19959, 64218, 'sixty-four thousand two hundred eighteen'),\n(19960, 40424, 'forty thousand four hundred twenty-four'),\n(19961, 4351, 'four thousand three hundred fifty-one'),\n(19962, 81330, 'eighty-one thousand three hundred thirty'),\n(19963, 86096, 'eighty-six thousand ninety-six'),\n(19964, 30436, 'thirty thousand four hundred thirty-six'),\n(19965, 72176, 'seventy-two thousand one hundred seventy-six'),\n(19966, 69239, 'sixty-nine thousand two hundred thirty-nine'),\n(19967, 68840, 'sixty-eight thousand eight hundred forty'),\n(19968, 49386, 'forty-nine thousand three hundred eighty-six'),\n(19969, 2031, 'two thousand thirty-one'),\n(19970, 14886, 'fourteen thousand eight hundred eighty-six'),\n(19971, 56536, 'fifty-six thousand five hundred thirty-six'),\n(19972, 80156, 'eighty thousand one hundred fifty-six'),\n(19973, 75291, 'seventy-five thousand two hundred ninety-one'),\n(19974, 90942, 'ninety thousand nine hundred forty-two'),\n(19975, 45226, 'forty-five thousand two hundred twenty-six'),\n(19976, 12983, 'twelve thousand nine hundred eighty-three'),\n(19977, 18267, 'eighteen thousand two hundred sixty-seven'),\n(19978, 45047, 'forty-five thousand forty-seven'),\n(19979, 99153, 'ninety-nine thousand one hundred fifty-three'),\n(19980, 3947, 'three thousand nine hundred forty-seven'),\n(19981, 61329, 'sixty-one thousand three hundred twenty-nine'),\n(19982, 281, 'two hundred eighty-one'),\n(19983, 86403, 'eighty-six thousand four hundred three'),\n(19984, 99446, 'ninety-nine thousand four hundred forty-six'),\n(19985, 32030, 'thirty-two thousand thirty'),\n(19986, 48799, 'forty-eight thousand seven hundred ninety-nine'),\n(19987, 57741, 'fifty-seven thousand seven hundred forty-one'),\n(19988, 41067, 'forty-one thousand sixty-seven'),\n(19989, 52472, 'fifty-two thousand four hundred seventy-two'),\n(19990, 27076, 'twenty-seven thousand seventy-six'),\n(19991, 56150, 'fifty-six thousand one hundred fifty'),\n(19992, 96902, 'ninety-six thousand nine hundred two'),\n(19993, 4169, 'four thousand one hundred sixty-nine'),\n(19994, 75886, 'seventy-five thousand eight hundred eighty-six'),\n(19995, 5044, 'five thousand forty-four'),\n(19996, 15261, 'fifteen thousand two hundred sixty-one'),\n(19997, 9837, 'nine thousand eight hundred thirty-seven'),\n(19998, 93782, 'ninety-three thousand seven hundred eighty-two'),\n(19999, 1390, 'one thousand three hundred ninety'),\n(20000, 17798, 'seventeen thousand seven hundred ninety-eight'),\n(20001, 42503, 'forty-two thousand five hundred three'),\n(20002, 38557, 'thirty-eight thousand five hundred fifty-seven'),\n(20003, 34048, 'thirty-four thousand forty-eight'),\n(20004, 99840, 'ninety-nine thousand eight hundred forty'),\n(20005, 31007, 'thirty-one thousand seven'),\n(20006, 30240, 'thirty thousand two hundred forty'),\n(20007, 26524, 'twenty-six thousand five hundred twenty-four'),\n(20008, 31543, 'thirty-one thousand five hundred forty-three'),\n(20009, 64768, 'sixty-four thousand seven hundred sixty-eight'),\n(20010, 54272, 'fifty-four thousand two hundred seventy-two'),\n(20011, 88423, 'eighty-eight thousand four hundred twenty-three'),\n(20012, 58659, 'fifty-eight thousand six hundred fifty-nine'),\n(20013, 61602, 'sixty-one thousand six hundred two'),\n(20014, 17823, 'seventeen thousand eight hundred twenty-three'),\n(20015, 29058, 'twenty-nine thousand fifty-eight'),\n(20016, 24299, 'twenty-four thousand two hundred ninety-nine'),\n(20017, 10527, 'ten thousand five hundred twenty-seven'),\n(20018, 28501, 'twenty-eight thousand five hundred one'),\n(20019, 60591, 'sixty thousand five hundred ninety-one'),\n(20020, 13557, 'thirteen thousand five hundred fifty-seven'),\n(20021, 55375, 'fifty-five thousand three hundred seventy-five'),\n(20022, 76017, 'seventy-six thousand seventeen'),\n(20023, 89706, 'eighty-nine thousand seven hundred six'),\n(20024, 72938, 'seventy-two thousand nine hundred thirty-eight'),\n(20025, 84953, 'eighty-four thousand nine hundred fifty-three'),\n(20026, 37602, 'thirty-seven thousand six hundred two'),\n(20027, 32115, 'thirty-two thousand one hundred fifteen'),\n(20028, 44930, 'forty-four thousand nine hundred thirty'),\n(20029, 20967, 'twenty thousand nine hundred sixty-seven'),\n(20030, 13195, 'thirteen thousand one hundred ninety-five'),\n(20031, 92107, 'ninety-two thousand one hundred seven'),\n(20032, 11648, 'eleven thousand six hundred forty-eight'),\n(20033, 49707, 'forty-nine thousand seven hundred seven'),\n(20034, 70924, 'seventy thousand nine hundred twenty-four'),\n(20035, 77205, 'seventy-seven thousand two hundred five'),\n(20036, 62144, 'sixty-two thousand one hundred forty-four'),\n(20037, 2889, 'two thousand eight hundred eighty-nine'),\n(20038, 20793, 'twenty thousand seven hundred ninety-three'),\n(20039, 13352, 'thirteen thousand three hundred fifty-two'),\n(20040, 99327, 'ninety-nine thousand three hundred twenty-seven'),\n(20041, 76507, 'seventy-six thousand five hundred seven'),\n(20042, 40658, 'forty thousand six hundred fifty-eight'),\n(20043, 63959, 'sixty-three thousand nine hundred fifty-nine'),\n(20044, 3508, 'three thousand five hundred eight'),\n(20045, 30481, 'thirty thousand four hundred eighty-one'),\n(20046, 62331, 'sixty-two thousand three hundred thirty-one'),\n(20047, 56441, 'fifty-six thousand four hundred forty-one'),\n(20048, 70111, 'seventy thousand one hundred eleven'),\n(20049, 40543, 'forty thousand five hundred forty-three'),\n(20050, 81236, 'eighty-one thousand two hundred thirty-six'),\n(20051, 1887, 'one thousand eight hundred eighty-seven'),\n(20052, 78388, 'seventy-eight thousand three hundred eighty-eight'),\n(20053, 59594, 'fifty-nine thousand five hundred ninety-four'),\n(20054, 25612, 'twenty-five thousand six hundred twelve'),\n(20055, 97881, 'ninety-seven thousand eight hundred eighty-one'),\n(20056, 84065, 'eighty-four thousand sixty-five'),\n(20057, 20841, 'twenty thousand eight hundred forty-one'),\n(20058, 70864, 'seventy thousand eight hundred sixty-four'),\n(20059, 24, 'twenty-four'),\n(20060, 59460, 'fifty-nine thousand four hundred sixty'),\n(20061, 36940, 'thirty-six thousand nine hundred forty'),\n(20062, 31766, 'thirty-one thousand seven hundred sixty-six'),\n(20063, 99651, 'ninety-nine thousand six hundred fifty-one'),\n(20064, 32179, 'thirty-two thousand one hundred seventy-nine'),\n(20065, 8549, 'eight thousand five hundred forty-nine'),\n(20066, 47691, 'forty-seven thousand six hundred ninety-one'),\n(20067, 58807, 'fifty-eight thousand eight hundred seven'),\n(20068, 54156, 'fifty-four thousand one hundred fifty-six'),\n(20069, 91741, 'ninety-one thousand seven hundred forty-one'),\n(20070, 20641, 'twenty thousand six hundred forty-one'),\n(20071, 74369, 'seventy-four thousand three hundred sixty-nine'),\n(20072, 56627, 'fifty-six thousand six hundred twenty-seven'),\n(20073, 55334, 'fifty-five thousand three hundred thirty-four'),\n(20074, 39563, 'thirty-nine thousand five hundred sixty-three'),\n(20075, 51001, 'fifty-one thousand one'),\n(20076, 35125, 'thirty-five thousand one hundred twenty-five'),\n(20077, 4518, 'four thousand five hundred eighteen'),\n(20078, 492, 'four hundred ninety-two'),\n(20079, 84850, 'eighty-four thousand eight hundred fifty'),\n(20080, 9344, 'nine thousand three hundred forty-four'),\n(20081, 20218, 'twenty thousand two hundred eighteen'),\n(20082, 70399, 'seventy thousand three hundred ninety-nine'),\n(20083, 4405, 'four thousand four hundred five'),\n(20084, 36926, 'thirty-six thousand nine hundred twenty-six'),\n(20085, 24812, 'twenty-four thousand eight hundred twelve'),\n(20086, 61510, 'sixty-one thousand five hundred ten'),\n(20087, 13932, 'thirteen thousand nine hundred thirty-two'),\n(20088, 68178, 'sixty-eight thousand one hundred seventy-eight'),\n(20089, 65749, 'sixty-five thousand seven hundred forty-nine'),\n(20090, 76233, 'seventy-six thousand two hundred thirty-three'),\n(20091, 40858, 'forty thousand eight hundred fifty-eight'),\n(20092, 58206, 'fifty-eight thousand two hundred six'),\n(20093, 62129, 'sixty-two thousand one hundred twenty-nine'),\n(20094, 59911, 'fifty-nine thousand nine hundred eleven'),\n(20095, 88659, 'eighty-eight thousand six hundred fifty-nine'),\n(20096, 77263, 'seventy-seven thousand two hundred sixty-three'),\n(20097, 27296, 'twenty-seven thousand two hundred ninety-six'),\n(20098, 61605, 'sixty-one thousand six hundred five'),\n(20099, 1597, 'one thousand five hundred ninety-seven'),\n(20100, 54857, 'fifty-four thousand eight hundred fifty-seven'),\n(20101, 52421, 'fifty-two thousand four hundred twenty-one'),\n(20102, 60895, 'sixty thousand eight hundred ninety-five'),\n(20103, 92149, 'ninety-two thousand one hundred forty-nine'),\n(20104, 8905, 'eight thousand nine hundred five'),\n(20105, 53444, 'fifty-three thousand four hundred forty-four'),\n(20106, 43750, 'forty-three thousand seven hundred fifty'),\n(20107, 2619, 'two thousand six hundred nineteen'),\n(20108, 30994, 'thirty thousand nine hundred ninety-four'),\n(20109, 59684, 'fifty-nine thousand six hundred eighty-four'),\n(20110, 50801, 'fifty thousand eight hundred one'),\n(20111, 9781, 'nine thousand seven hundred eighty-one'),\n(20112, 56016, 'fifty-six thousand sixteen'),\n(20113, 68971, 'sixty-eight thousand nine hundred seventy-one'),\n(20114, 97782, 'ninety-seven thousand seven hundred eighty-two'),\n(20115, 49862, 'forty-nine thousand eight hundred sixty-two'),\n(20116, 72948, 'seventy-two thousand nine hundred forty-eight'),\n(20117, 75898, 'seventy-five thousand eight hundred ninety-eight'),\n(20118, 50373, 'fifty thousand three hundred seventy-three'),\n(20119, 57588, 'fifty-seven thousand five hundred eighty-eight'),\n(20120, 45271, 'forty-five thousand two hundred seventy-one'),\n(20121, 81570, 'eighty-one thousand five hundred seventy'),\n(20122, 22299, 'twenty-two thousand two hundred ninety-nine'),\n(20123, 23548, 'twenty-three thousand five hundred forty-eight'),\n(20124, 19814, 'nineteen thousand eight hundred fourteen'),\n(20125, 53403, 'fifty-three thousand four hundred three'),\n(20126, 52996, 'fifty-two thousand nine hundred ninety-six'),\n(20127, 85266, 'eighty-five thousand two hundred sixty-six'),\n(20128, 52259, 'fifty-two thousand two hundred fifty-nine'),\n(20129, 19140, 'nineteen thousand one hundred forty'),\n(20130, 18919, 'eighteen thousand nine hundred nineteen'),\n(20131, 53499, 'fifty-three thousand four hundred ninety-nine'),\n(20132, 5135, 'five thousand one hundred thirty-five'),\n(20133, 13267, 'thirteen thousand two hundred sixty-seven'),\n(20134, 9012, 'nine thousand twelve'),\n(20135, 46791, 'forty-six thousand seven hundred ninety-one'),\n(20136, 75896, 'seventy-five thousand eight hundred ninety-six'),\n(20137, 90172, 'ninety thousand one hundred seventy-two'),\n(20138, 28825, 'twenty-eight thousand eight hundred twenty-five'),\n(20139, 31334, 'thirty-one thousand three hundred thirty-four'),\n(20140, 69579, 'sixty-nine thousand five hundred seventy-nine'),\n(20141, 82442, 'eighty-two thousand four hundred forty-two'),\n(20142, 34421, 'thirty-four thousand four hundred twenty-one'),\n(20143, 74961, 'seventy-four thousand nine hundred sixty-one'),\n(20144, 85862, 'eighty-five thousand eight hundred sixty-two'),\n(20145, 90481, 'ninety thousand four hundred eighty-one'),\n(20146, 68394, 'sixty-eight thousand three hundred ninety-four'),\n(20147, 8445, 'eight thousand four hundred forty-five'),\n(20148, 38830, 'thirty-eight thousand eight hundred thirty'),\n(20149, 11034, 'eleven thousand thirty-four'),\n(20150, 31231, 'thirty-one thousand two hundred thirty-one'),\n(20151, 22335, 'twenty-two thousand three hundred thirty-five'),\n(20152, 59186, 'fifty-nine thousand one hundred eighty-six'),\n(20153, 17706, 'seventeen thousand seven hundred six'),\n(20154, 22502, 'twenty-two thousand five hundred two'),\n(20155, 61252, 'sixty-one thousand two hundred fifty-two'),\n(20156, 94795, 'ninety-four thousand seven hundred ninety-five'),\n(20157, 97363, 'ninety-seven thousand three hundred sixty-three'),\n(20158, 2586, 'two thousand five hundred eighty-six'),\n(20159, 85084, 'eighty-five thousand eighty-four'),\n(20160, 82312, 'eighty-two thousand three hundred twelve'),\n(20161, 64735, 'sixty-four thousand seven hundred thirty-five'),\n(20162, 17168, 'seventeen thousand one hundred sixty-eight'),\n(20163, 23309, 'twenty-three thousand three hundred nine'),\n(20164, 43513, 'forty-three thousand five hundred thirteen'),\n(20165, 23799, 'twenty-three thousand seven hundred ninety-nine'),\n(20166, 3217, 'three thousand two hundred seventeen'),\n(20167, 95340, 'ninety-five thousand three hundred forty'),\n(20168, 70602, 'seventy thousand six hundred two'),\n(20169, 20351, 'twenty thousand three hundred fifty-one'),\n(20170, 24845, 'twenty-four thousand eight hundred forty-five'),\n(20171, 35949, 'thirty-five thousand nine hundred forty-nine'),\n(20172, 50394, 'fifty thousand three hundred ninety-four'),\n(20173, 79107, 'seventy-nine thousand one hundred seven'),\n(20174, 35970, 'thirty-five thousand nine hundred seventy'),\n(20175, 70893, 'seventy thousand eight hundred ninety-three'),\n(20176, 98818, 'ninety-eight thousand eight hundred eighteen'),\n(20177, 21591, 'twenty-one thousand five hundred ninety-one'),\n(20178, 30420, 'thirty thousand four hundred twenty'),\n(20179, 53188, 'fifty-three thousand one hundred eighty-eight'),\n(20180, 5982, 'five thousand nine hundred eighty-two'),\n(20181, 90666, 'ninety thousand six hundred sixty-six'),\n(20182, 9432, 'nine thousand four hundred thirty-two'),\n(20183, 93587, 'ninety-three thousand five hundred eighty-seven'),\n(20184, 97535, 'ninety-seven thousand five hundred thirty-five'),\n(20185, 82558, 'eighty-two thousand five hundred fifty-eight'),\n(20186, 91057, 'ninety-one thousand fifty-seven'),\n(20187, 5136, 'five thousand one hundred thirty-six'),\n(20188, 58203, 'fifty-eight thousand two hundred three'),\n(20189, 27930, 'twenty-seven thousand nine hundred thirty'),\n(20190, 14079, 'fourteen thousand seventy-nine'),\n(20191, 28240, 'twenty-eight thousand two hundred forty'),\n(20192, 35740, 'thirty-five thousand seven hundred forty'),\n(20193, 5761, 'five thousand seven hundred sixty-one'),\n(20194, 95035, 'ninety-five thousand thirty-five'),\n(20195, 41961, 'forty-one thousand nine hundred sixty-one'),\n(20196, 80072, 'eighty thousand seventy-two'),\n(20197, 19463, 'nineteen thousand four hundred sixty-three'),\n(20198, 83077, 'eighty-three thousand seventy-seven'),\n(20199, 18275, 'eighteen thousand two hundred seventy-five'),\n(20200, 10747, 'ten thousand seven hundred forty-seven'),\n(20201, 44058, 'forty-four thousand fifty-eight'),\n(20202, 57614, 'fifty-seven thousand six hundred fourteen'),\n(20203, 71589, 'seventy-one thousand five hundred eighty-nine'),\n(20204, 54440, 'fifty-four thousand four hundred forty'),\n(20205, 13715, 'thirteen thousand seven hundred fifteen'),\n(20206, 6479, 'six thousand four hundred seventy-nine'),\n(20207, 71980, 'seventy-one thousand nine hundred eighty'),\n(20208, 12738, 'twelve thousand seven hundred thirty-eight'),\n(20209, 58303, 'fifty-eight thousand three hundred three'),\n(20210, 76557, 'seventy-six thousand five hundred fifty-seven'),\n(20211, 79044, 'seventy-nine thousand forty-four'),\n(20212, 80736, 'eighty thousand seven hundred thirty-six'),\n(20213, 45741, 'forty-five thousand seven hundred forty-one'),\n(20214, 92739, 'ninety-two thousand seven hundred thirty-nine'),\n(20215, 45169, 'forty-five thousand one hundred sixty-nine'),\n(20216, 41351, 'forty-one thousand three hundred fifty-one'),\n(20217, 90996, 'ninety thousand nine hundred ninety-six'),\n(20218, 21494, 'twenty-one thousand four hundred ninety-four'),\n(20219, 88697, 'eighty-eight thousand six hundred ninety-seven'),\n(20220, 43073, 'forty-three thousand seventy-three'),\n(20221, 69997, 'sixty-nine thousand nine hundred ninety-seven'),\n(20222, 20907, 'twenty thousand nine hundred seven'),\n(20223, 73037, 'seventy-three thousand thirty-seven'),\n(20224, 45704, 'forty-five thousand seven hundred four'),\n(20225, 59100, 'fifty-nine thousand one hundred'),\n(20226, 36816, 'thirty-six thousand eight hundred sixteen'),\n(20227, 50966, 'fifty thousand nine hundred sixty-six'),\n(20228, 98003, 'ninety-eight thousand three'),\n(20229, 84626, 'eighty-four thousand six hundred twenty-six'),\n(20230, 26257, 'twenty-six thousand two hundred fifty-seven'),\n(20231, 60629, 'sixty thousand six hundred twenty-nine'),\n(20232, 49680, 'forty-nine thousand six hundred eighty'),\n(20233, 70114, 'seventy thousand one hundred fourteen'),\n(20234, 58637, 'fifty-eight thousand six hundred thirty-seven'),\n(20235, 62562, 'sixty-two thousand five hundred sixty-two'),\n(20236, 54682, 'fifty-four thousand six hundred eighty-two'),\n(20237, 54353, 'fifty-four thousand three hundred fifty-three'),\n(20238, 92896, 'ninety-two thousand eight hundred ninety-six'),\n(20239, 94425, 'ninety-four thousand four hundred twenty-five'),\n(20240, 80353, 'eighty thousand three hundred fifty-three'),\n(20241, 65809, 'sixty-five thousand eight hundred nine'),\n(20242, 49786, 'forty-nine thousand seven hundred eighty-six'),\n(20243, 65147, 'sixty-five thousand one hundred forty-seven'),\n(20244, 31331, 'thirty-one thousand three hundred thirty-one'),\n(20245, 49542, 'forty-nine thousand five hundred forty-two'),\n(20246, 6856, 'six thousand eight hundred fifty-six'),\n(20247, 76064, 'seventy-six thousand sixty-four'),\n(20248, 60702, 'sixty thousand seven hundred two'),\n(20249, 21229, 'twenty-one thousand two hundred twenty-nine'),\n(20250, 2003, 'two thousand three'),\n(20251, 17884, 'seventeen thousand eight hundred eighty-four'),\n(20252, 10085, 'ten thousand eighty-five'),\n(20253, 36315, 'thirty-six thousand three hundred fifteen'),\n(20254, 64835, 'sixty-four thousand eight hundred thirty-five'),\n(20255, 58745, 'fifty-eight thousand seven hundred forty-five'),\n(20256, 13245, 'thirteen thousand two hundred forty-five'),\n(20257, 2753, 'two thousand seven hundred fifty-three'),\n(20258, 16625, 'sixteen thousand six hundred twenty-five'),\n(20259, 86585, 'eighty-six thousand five hundred eighty-five'),\n(20260, 8156, 'eight thousand one hundred fifty-six'),\n(20261, 73769, 'seventy-three thousand seven hundred sixty-nine'),\n(20262, 2438, 'two thousand four hundred thirty-eight'),\n(20263, 81168, 'eighty-one thousand one hundred sixty-eight'),\n(20264, 53391, 'fifty-three thousand three hundred ninety-one'),\n(20265, 89153, 'eighty-nine thousand one hundred fifty-three'),\n(20266, 10212, 'ten thousand two hundred twelve'),\n(20267, 2484, 'two thousand four hundred eighty-four'),\n(20268, 70558, 'seventy thousand five hundred fifty-eight'),\n(20269, 51682, 'fifty-one thousand six hundred eighty-two'),\n(20270, 29301, 'twenty-nine thousand three hundred one'),\n(20271, 90159, 'ninety thousand one hundred fifty-nine'),\n(20272, 5497, 'five thousand four hundred ninety-seven'),\n(20273, 24146, 'twenty-four thousand one hundred forty-six'),\n(20274, 64063, 'sixty-four thousand sixty-three'),\n(20275, 13840, 'thirteen thousand eight hundred forty'),\n(20276, 79603, 'seventy-nine thousand six hundred three'),\n(20277, 14101, 'fourteen thousand one hundred one'),\n(20278, 70381, 'seventy thousand three hundred eighty-one'),\n(20279, 63229, 'sixty-three thousand two hundred twenty-nine'),\n(20280, 40294, 'forty thousand two hundred ninety-four'),\n(20281, 13414, 'thirteen thousand four hundred fourteen'),\n(20282, 8670, 'eight thousand six hundred seventy'),\n(20283, 51517, 'fifty-one thousand five hundred seventeen'),\n(20284, 29134, 'twenty-nine thousand one hundred thirty-four'),\n(20285, 10901, 'ten thousand nine hundred one'),\n(20286, 6581, 'six thousand five hundred eighty-one'),\n(20287, 87225, 'eighty-seven thousand two hundred twenty-five'),\n(20288, 75868, 'seventy-five thousand eight hundred sixty-eight'),\n(20289, 72804, 'seventy-two thousand eight hundred four'),\n(20290, 23544, 'twenty-three thousand five hundred forty-four'),\n(20291, 14553, 'fourteen thousand five hundred fifty-three'),\n(20292, 48227, 'forty-eight thousand two hundred twenty-seven'),\n(20293, 17071, 'seventeen thousand seventy-one'),\n(20294, 1319, 'one thousand three hundred nineteen'),\n(20295, 91479, 'ninety-one thousand four hundred seventy-nine'),\n(20296, 87657, 'eighty-seven thousand six hundred fifty-seven'),\n(20297, 41603, 'forty-one thousand six hundred three'),\n(20298, 174, 'one hundred seventy-four'),\n(20299, 48224, 'forty-eight thousand two hundred twenty-four'),\n(20300, 54888, 'fifty-four thousand eight hundred eighty-eight'),\n(20301, 54929, 'fifty-four thousand nine hundred twenty-nine'),\n(20302, 96010, 'ninety-six thousand ten'),\n(20303, 2593, 'two thousand five hundred ninety-three'),\n(20304, 16481, 'sixteen thousand four hundred eighty-one'),\n(20305, 56432, 'fifty-six thousand four hundred thirty-two'),\n(20306, 82761, 'eighty-two thousand seven hundred sixty-one'),\n(20307, 25441, 'twenty-five thousand four hundred forty-one'),\n(20308, 81835, 'eighty-one thousand eight hundred thirty-five'),\n(20309, 30207, 'thirty thousand two hundred seven'),\n(20310, 55306, 'fifty-five thousand three hundred six'),\n(20311, 13397, 'thirteen thousand three hundred ninety-seven'),\n(20312, 55484, 'fifty-five thousand four hundred eighty-four'),\n(20313, 23271, 'twenty-three thousand two hundred seventy-one'),\n(20314, 81517, 'eighty-one thousand five hundred seventeen'),\n(20315, 65882, 'sixty-five thousand eight hundred eighty-two'),\n(20316, 43002, 'forty-three thousand two'),\n(20317, 55469, 'fifty-five thousand four hundred sixty-nine'),\n(20318, 48602, 'forty-eight thousand six hundred two'),\n(20319, 34597, 'thirty-four thousand five hundred ninety-seven'),\n(20320, 70213, 'seventy thousand two hundred thirteen'),\n(20321, 11998, 'eleven thousand nine hundred ninety-eight'),\n(20322, 34809, 'thirty-four thousand eight hundred nine'),\n(20323, 73173, 'seventy-three thousand one hundred seventy-three'),\n(20324, 15528, 'fifteen thousand five hundred twenty-eight'),\n(20325, 43515, 'forty-three thousand five hundred fifteen'),\n(20326, 3817, 'three thousand eight hundred seventeen'),\n(20327, 39286, 'thirty-nine thousand two hundred eighty-six'),\n(20328, 37847, 'thirty-seven thousand eight hundred forty-seven'),\n(20329, 1772, 'one thousand seven hundred seventy-two'),\n(20330, 90816, 'ninety thousand eight hundred sixteen'),\n(20331, 12593, 'twelve thousand five hundred ninety-three'),\n(20332, 6190, 'six thousand one hundred ninety'),\n(20333, 50553, 'fifty thousand five hundred fifty-three'),\n(20334, 30029, 'thirty thousand twenty-nine'),\n(20335, 65562, 'sixty-five thousand five hundred sixty-two'),\n(20336, 53107, 'fifty-three thousand one hundred seven'),\n(20337, 14726, 'fourteen thousand seven hundred twenty-six'),\n(20338, 48302, 'forty-eight thousand three hundred two'),\n(20339, 52743, 'fifty-two thousand seven hundred forty-three'),\n(20340, 53337, 'fifty-three thousand three hundred thirty-seven'),\n(20341, 1414, 'one thousand four hundred fourteen'),\n(20342, 77952, 'seventy-seven thousand nine hundred fifty-two'),\n(20343, 65802, 'sixty-five thousand eight hundred two'),\n(20344, 69572, 'sixty-nine thousand five hundred seventy-two'),\n(20345, 57233, 'fifty-seven thousand two hundred thirty-three'),\n(20346, 6468, 'six thousand four hundred sixty-eight'),\n(20347, 46107, 'forty-six thousand one hundred seven'),\n(20348, 11913, 'eleven thousand nine hundred thirteen'),\n(20349, 5465, 'five thousand four hundred sixty-five'),\n(20350, 8829, 'eight thousand eight hundred twenty-nine'),\n(20351, 79857, 'seventy-nine thousand eight hundred fifty-seven'),\n(20352, 44479, 'forty-four thousand four hundred seventy-nine'),\n(20353, 51139, 'fifty-one thousand one hundred thirty-nine'),\n(20354, 12021, 'twelve thousand twenty-one'),\n(20355, 63039, 'sixty-three thousand thirty-nine'),\n(20356, 25638, 'twenty-five thousand six hundred thirty-eight'),\n(20357, 44006, 'forty-four thousand six'),\n(20358, 36836, 'thirty-six thousand eight hundred thirty-six'),\n(20359, 48347, 'forty-eight thousand three hundred forty-seven'),\n(20360, 96654, 'ninety-six thousand six hundred fifty-four'),\n(20361, 26944, 'twenty-six thousand nine hundred forty-four'),\n(20362, 32915, 'thirty-two thousand nine hundred fifteen'),\n(20363, 35790, 'thirty-five thousand seven hundred ninety'),\n(20364, 53996, 'fifty-three thousand nine hundred ninety-six'),\n(20365, 42199, 'forty-two thousand one hundred ninety-nine'),\n(20366, 41593, 'forty-one thousand five hundred ninety-three'),\n(20367, 56532, 'fifty-six thousand five hundred thirty-two'),\n(20368, 43214, 'forty-three thousand two hundred fourteen'),\n(20369, 37436, 'thirty-seven thousand four hundred thirty-six'),\n(20370, 19747, 'nineteen thousand seven hundred forty-seven'),\n(20371, 47188, 'forty-seven thousand one hundred eighty-eight'),\n(20372, 73553, 'seventy-three thousand five hundred fifty-three'),\n(20373, 18596, 'eighteen thousand five hundred ninety-six'),\n(20374, 67614, 'sixty-seven thousand six hundred fourteen'),\n(20375, 85304, 'eighty-five thousand three hundred four'),\n(20376, 63543, 'sixty-three thousand five hundred forty-three'),\n(20377, 87483, 'eighty-seven thousand four hundred eighty-three'),\n(20378, 48989, 'forty-eight thousand nine hundred eighty-nine'),\n(20379, 24757, 'twenty-four thousand seven hundred fifty-seven'),\n(20380, 19155, 'nineteen thousand one hundred fifty-five'),\n(20381, 67853, 'sixty-seven thousand eight hundred fifty-three'),\n(20382, 26459, 'twenty-six thousand four hundred fifty-nine'),\n(20383, 65209, 'sixty-five thousand two hundred nine'),\n(20384, 53187, 'fifty-three thousand one hundred eighty-seven'),\n(20385, 44750, 'forty-four thousand seven hundred fifty'),\n(20386, 30488, 'thirty thousand four hundred eighty-eight'),\n(20387, 4768, 'four thousand seven hundred sixty-eight'),\n(20388, 52651, 'fifty-two thousand six hundred fifty-one'),\n(20389, 84459, 'eighty-four thousand four hundred fifty-nine'),\n(20390, 65066, 'sixty-five thousand sixty-six'),\n(20391, 37166, 'thirty-seven thousand one hundred sixty-six'),\n(20392, 79846, 'seventy-nine thousand eight hundred forty-six'),\n(20393, 32541, 'thirty-two thousand five hundred forty-one'),\n(20394, 54373, 'fifty-four thousand three hundred seventy-three'),\n(20395, 13305, 'thirteen thousand three hundred five'),\n(20396, 63929, 'sixty-three thousand nine hundred twenty-nine'),\n(20397, 95045, 'ninety-five thousand forty-five'),\n(20398, 67461, 'sixty-seven thousand four hundred sixty-one'),\n(20399, 73774, 'seventy-three thousand seven hundred seventy-four'),\n(20400, 57650, 'fifty-seven thousand six hundred fifty'),\n(20401, 70015, 'seventy thousand fifteen'),\n(20402, 67994, 'sixty-seven thousand nine hundred ninety-four'),\n(20403, 31402, 'thirty-one thousand four hundred two'),\n(20404, 27349, 'twenty-seven thousand three hundred forty-nine'),\n(20405, 55286, 'fifty-five thousand two hundred eighty-six'),\n(20406, 28182, 'twenty-eight thousand one hundred eighty-two'),\n(20407, 3493, 'three thousand four hundred ninety-three'),\n(20408, 48055, 'forty-eight thousand fifty-five'),\n(20409, 21244, 'twenty-one thousand two hundred forty-four'),\n(20410, 38154, 'thirty-eight thousand one hundred fifty-four'),\n(20411, 80265, 'eighty thousand two hundred sixty-five'),\n(20412, 71723, 'seventy-one thousand seven hundred twenty-three'),\n(20413, 61343, 'sixty-one thousand three hundred forty-three'),\n(20414, 74919, 'seventy-four thousand nine hundred nineteen'),\n(20415, 46577, 'forty-six thousand five hundred seventy-seven'),\n(20416, 2346, 'two thousand three hundred forty-six'),\n(20417, 85906, 'eighty-five thousand nine hundred six'),\n(20418, 740, 'seven hundred forty'),\n(20419, 4222, 'four thousand two hundred twenty-two'),\n(20420, 64629, 'sixty-four thousand six hundred twenty-nine'),\n(20421, 19167, 'nineteen thousand one hundred sixty-seven'),\n(20422, 5588, 'five thousand five hundred eighty-eight'),\n(20423, 34908, 'thirty-four thousand nine hundred eight'),\n(20424, 81549, 'eighty-one thousand five hundred forty-nine'),\n(20425, 16148, 'sixteen thousand one hundred forty-eight'),\n(20426, 73594, 'seventy-three thousand five hundred ninety-four'),\n(20427, 17111, 'seventeen thousand one hundred eleven'),\n(20428, 64030, 'sixty-four thousand thirty'),\n(20429, 37696, 'thirty-seven thousand six hundred ninety-six'),\n(20430, 32476, 'thirty-two thousand four hundred seventy-six'),\n(20431, 55253, 'fifty-five thousand two hundred fifty-three'),\n(20432, 65532, 'sixty-five thousand five hundred thirty-two'),\n(20433, 35628, 'thirty-five thousand six hundred twenty-eight'),\n(20434, 27576, 'twenty-seven thousand five hundred seventy-six'),\n(20435, 71745, 'seventy-one thousand seven hundred forty-five'),\n(20436, 69337, 'sixty-nine thousand three hundred thirty-seven'),\n(20437, 82296, 'eighty-two thousand two hundred ninety-six'),\n(20438, 99081, 'ninety-nine thousand eighty-one'),\n(20439, 37373, 'thirty-seven thousand three hundred seventy-three'),\n(20440, 84280, 'eighty-four thousand two hundred eighty'),\n(20441, 66241, 'sixty-six thousand two hundred forty-one'),\n(20442, 38969, 'thirty-eight thousand nine hundred sixty-nine'),\n(20443, 93769, 'ninety-three thousand seven hundred sixty-nine'),\n(20444, 35005, 'thirty-five thousand five'),\n(20445, 71445, 'seventy-one thousand four hundred forty-five'),\n(20446, 23630, 'twenty-three thousand six hundred thirty'),\n(20447, 93688, 'ninety-three thousand six hundred eighty-eight'),\n(20448, 86919, 'eighty-six thousand nine hundred nineteen'),\n(20449, 54085, 'fifty-four thousand eighty-five'),\n(20450, 71980, 'seventy-one thousand nine hundred eighty'),\n(20451, 6168, 'six thousand one hundred sixty-eight'),\n(20452, 99993, 'ninety-nine thousand nine hundred ninety-three'),\n(20453, 59193, 'fifty-nine thousand one hundred ninety-three'),\n(20454, 47886, 'forty-seven thousand eight hundred eighty-six'),\n(20455, 48562, 'forty-eight thousand five hundred sixty-two'),\n(20456, 17577, 'seventeen thousand five hundred seventy-seven'),\n(20457, 79387, 'seventy-nine thousand three hundred eighty-seven'),\n(20458, 51301, 'fifty-one thousand three hundred one'),\n(20459, 36297, 'thirty-six thousand two hundred ninety-seven'),\n(20460, 12403, 'twelve thousand four hundred three'),\n(20461, 14094, 'fourteen thousand ninety-four'),\n(20462, 48613, 'forty-eight thousand six hundred thirteen'),\n(20463, 22479, 'twenty-two thousand four hundred seventy-nine'),\n(20464, 43908, 'forty-three thousand nine hundred eight'),\n(20465, 20918, 'twenty thousand nine hundred eighteen'),\n(20466, 33085, 'thirty-three thousand eighty-five'),\n(20467, 40252, 'forty thousand two hundred fifty-two'),\n(20468, 75693, 'seventy-five thousand six hundred ninety-three'),\n(20469, 36604, 'thirty-six thousand six hundred four'),\n(20470, 93522, 'ninety-three thousand five hundred twenty-two'),\n(20471, 29917, 'twenty-nine thousand nine hundred seventeen'),\n(20472, 41927, 'forty-one thousand nine hundred twenty-seven'),\n(20473, 66167, 'sixty-six thousand one hundred sixty-seven'),\n(20474, 96824, 'ninety-six thousand eight hundred twenty-four'),\n(20475, 45615, 'forty-five thousand six hundred fifteen'),\n(20476, 79201, 'seventy-nine thousand two hundred one'),\n(20477, 24506, 'twenty-four thousand five hundred six'),\n(20478, 18572, 'eighteen thousand five hundred seventy-two'),\n(20479, 59586, 'fifty-nine thousand five hundred eighty-six'),\n(20480, 60391, 'sixty thousand three hundred ninety-one'),\n(20481, 61283, 'sixty-one thousand two hundred eighty-three'),\n(20482, 36969, 'thirty-six thousand nine hundred sixty-nine'),\n(20483, 91934, 'ninety-one thousand nine hundred thirty-four'),\n(20484, 9812, 'nine thousand eight hundred twelve'),\n(20485, 90435, 'ninety thousand four hundred thirty-five'),\n(20486, 62554, 'sixty-two thousand five hundred fifty-four'),\n(20487, 49650, 'forty-nine thousand six hundred fifty'),\n(20488, 24294, 'twenty-four thousand two hundred ninety-four'),\n(20489, 8400, 'eight thousand four hundred'),\n(20490, 20463, 'twenty thousand four hundred sixty-three'),\n(20491, 46201, 'forty-six thousand two hundred one'),\n(20492, 5944, 'five thousand nine hundred forty-four'),\n(20493, 92271, 'ninety-two thousand two hundred seventy-one'),\n(20494, 63635, 'sixty-three thousand six hundred thirty-five'),\n(20495, 32087, 'thirty-two thousand eighty-seven'),\n(20496, 47807, 'forty-seven thousand eight hundred seven'),\n(20497, 94715, 'ninety-four thousand seven hundred fifteen'),\n(20498, 94015, 'ninety-four thousand fifteen'),\n(20499, 54414, 'fifty-four thousand four hundred fourteen'),\n(20500, 1588, 'one thousand five hundred eighty-eight'),\n(20501, 63834, 'sixty-three thousand eight hundred thirty-four'),\n(20502, 22239, 'twenty-two thousand two hundred thirty-nine'),\n(20503, 97228, 'ninety-seven thousand two hundred twenty-eight'),\n(20504, 10328, 'ten thousand three hundred twenty-eight'),\n(20505, 76898, 'seventy-six thousand eight hundred ninety-eight'),\n(20506, 23497, 'twenty-three thousand four hundred ninety-seven'),\n(20507, 14411, 'fourteen thousand four hundred eleven'),\n(20508, 91734, 'ninety-one thousand seven hundred thirty-four'),\n(20509, 20831, 'twenty thousand eight hundred thirty-one'),\n(20510, 14442, 'fourteen thousand four hundred forty-two'),\n(20511, 96949, 'ninety-six thousand nine hundred forty-nine'),\n(20512, 3557, 'three thousand five hundred fifty-seven'),\n(20513, 24705, 'twenty-four thousand seven hundred five'),\n(20514, 5967, 'five thousand nine hundred sixty-seven'),\n(20515, 58437, 'fifty-eight thousand four hundred thirty-seven'),\n(20516, 67809, 'sixty-seven thousand eight hundred nine'),\n(20517, 62234, 'sixty-two thousand two hundred thirty-four'),\n(20518, 13333, 'thirteen thousand three hundred thirty-three'),\n(20519, 8676, 'eight thousand six hundred seventy-six'),\n(20520, 14835, 'fourteen thousand eight hundred thirty-five'),\n(20521, 99775, 'ninety-nine thousand seven hundred seventy-five'),\n(20522, 74954, 'seventy-four thousand nine hundred fifty-four'),\n(20523, 40919, 'forty thousand nine hundred nineteen'),\n(20524, 19816, 'nineteen thousand eight hundred sixteen'),\n(20525, 57962, 'fifty-seven thousand nine hundred sixty-two'),\n(20526, 16068, 'sixteen thousand sixty-eight'),\n(20527, 72056, 'seventy-two thousand fifty-six'),\n(20528, 23015, 'twenty-three thousand fifteen'),\n(20529, 380, 'three hundred eighty'),\n(20530, 99922, 'ninety-nine thousand nine hundred twenty-two'),\n(20531, 36592, 'thirty-six thousand five hundred ninety-two'),\n(20532, 96929, 'ninety-six thousand nine hundred twenty-nine'),\n(20533, 68176, 'sixty-eight thousand one hundred seventy-six'),\n(20534, 27542, 'twenty-seven thousand five hundred forty-two'),\n(20535, 18933, 'eighteen thousand nine hundred thirty-three'),\n(20536, 10965, 'ten thousand nine hundred sixty-five'),\n(20537, 36763, 'thirty-six thousand seven hundred sixty-three'),\n(20538, 47900, 'forty-seven thousand nine hundred'),\n(20539, 95142, 'ninety-five thousand one hundred forty-two'),\n(20540, 34310, 'thirty-four thousand three hundred ten'),\n(20541, 17033, 'seventeen thousand thirty-three'),\n(20542, 17959, 'seventeen thousand nine hundred fifty-nine'),\n(20543, 63214, 'sixty-three thousand two hundred fourteen'),\n(20544, 54462, 'fifty-four thousand four hundred sixty-two'),\n(20545, 36364, 'thirty-six thousand three hundred sixty-four'),\n(20546, 83234, 'eighty-three thousand two hundred thirty-four'),\n(20547, 51418, 'fifty-one thousand four hundred eighteen'),\n(20548, 69847, 'sixty-nine thousand eight hundred forty-seven'),\n(20549, 99572, 'ninety-nine thousand five hundred seventy-two'),\n(20550, 55268, 'fifty-five thousand two hundred sixty-eight'),\n(20551, 68857, 'sixty-eight thousand eight hundred fifty-seven'),\n(20552, 44393, 'forty-four thousand three hundred ninety-three'),\n(20553, 98973, 'ninety-eight thousand nine hundred seventy-three'),\n(20554, 76854, 'seventy-six thousand eight hundred fifty-four'),\n(20555, 89530, 'eighty-nine thousand five hundred thirty'),\n(20556, 32166, 'thirty-two thousand one hundred sixty-six'),\n(20557, 63760, 'sixty-three thousand seven hundred sixty'),\n(20558, 72352, 'seventy-two thousand three hundred fifty-two'),\n(20559, 94578, 'ninety-four thousand five hundred seventy-eight'),\n(20560, 73423, 'seventy-three thousand four hundred twenty-three'),\n(20561, 20202, 'twenty thousand two hundred two'),\n(20562, 73422, 'seventy-three thousand four hundred twenty-two'),\n(20563, 2379, 'two thousand three hundred seventy-nine'),\n(20564, 79916, 'seventy-nine thousand nine hundred sixteen'),\n(20565, 85728, 'eighty-five thousand seven hundred twenty-eight'),\n(20566, 48934, 'forty-eight thousand nine hundred thirty-four'),\n(20567, 38606, 'thirty-eight thousand six hundred six'),\n(20568, 15497, 'fifteen thousand four hundred ninety-seven'),\n(20569, 54742, 'fifty-four thousand seven hundred forty-two'),\n(20570, 30257, 'thirty thousand two hundred fifty-seven'),\n(20571, 64408, 'sixty-four thousand four hundred eight'),\n(20572, 47405, 'forty-seven thousand four hundred five'),\n(20573, 77402, 'seventy-seven thousand four hundred two'),\n(20574, 99103, 'ninety-nine thousand one hundred three'),\n(20575, 79651, 'seventy-nine thousand six hundred fifty-one'),\n(20576, 99402, 'ninety-nine thousand four hundred two'),\n(20577, 89598, 'eighty-nine thousand five hundred ninety-eight'),\n(20578, 90249, 'ninety thousand two hundred forty-nine'),\n(20579, 93415, 'ninety-three thousand four hundred fifteen'),\n(20580, 42630, 'forty-two thousand six hundred thirty'),\n(20581, 32661, 'thirty-two thousand six hundred sixty-one'),\n(20582, 37103, 'thirty-seven thousand one hundred three'),\n(20583, 16978, 'sixteen thousand nine hundred seventy-eight'),\n(20584, 38616, 'thirty-eight thousand six hundred sixteen'),\n(20585, 22704, 'twenty-two thousand seven hundred four'),\n(20586, 61541, 'sixty-one thousand five hundred forty-one'),\n(20587, 21899, 'twenty-one thousand eight hundred ninety-nine'),\n(20588, 43049, 'forty-three thousand forty-nine'),\n(20589, 13190, 'thirteen thousand one hundred ninety'),\n(20590, 66828, 'sixty-six thousand eight hundred twenty-eight'),\n(20591, 49570, 'forty-nine thousand five hundred seventy'),\n(20592, 90522, 'ninety thousand five hundred twenty-two'),\n(20593, 17497, 'seventeen thousand four hundred ninety-seven'),\n(20594, 35635, 'thirty-five thousand six hundred thirty-five'),\n(20595, 12377, 'twelve thousand three hundred seventy-seven'),\n(20596, 86218, 'eighty-six thousand two hundred eighteen'),\n(20597, 90538, 'ninety thousand five hundred thirty-eight'),\n(20598, 62472, 'sixty-two thousand four hundred seventy-two'),\n(20599, 98352, 'ninety-eight thousand three hundred fifty-two'),\n(20600, 55944, 'fifty-five thousand nine hundred forty-four'),\n(20601, 11704, 'eleven thousand seven hundred four'),\n(20602, 89408, 'eighty-nine thousand four hundred eight'),\n(20603, 96286, 'ninety-six thousand two hundred eighty-six'),\n(20604, 87256, 'eighty-seven thousand two hundred fifty-six'),\n(20605, 48108, 'forty-eight thousand one hundred eight'),\n(20606, 67272, 'sixty-seven thousand two hundred seventy-two'),\n(20607, 36700, 'thirty-six thousand seven hundred'),\n(20608, 62652, 'sixty-two thousand six hundred fifty-two'),\n(20609, 47604, 'forty-seven thousand six hundred four'),\n(20610, 19087, 'nineteen thousand eighty-seven'),\n(20611, 6356, 'six thousand three hundred fifty-six'),\n(20612, 54976, 'fifty-four thousand nine hundred seventy-six'),\n(20613, 44614, 'forty-four thousand six hundred fourteen'),\n(20614, 22210, 'twenty-two thousand two hundred ten'),\n(20615, 12100, 'twelve thousand one hundred'),\n(20616, 51703, 'fifty-one thousand seven hundred three'),\n(20617, 74125, 'seventy-four thousand one hundred twenty-five'),\n(20618, 90307, 'ninety thousand three hundred seven'),\n(20619, 75986, 'seventy-five thousand nine hundred eighty-six'),\n(20620, 91921, 'ninety-one thousand nine hundred twenty-one'),\n(20621, 93963, 'ninety-three thousand nine hundred sixty-three'),\n(20622, 30547, 'thirty thousand five hundred forty-seven'),\n(20623, 53953, 'fifty-three thousand nine hundred fifty-three'),\n(20624, 10012, 'ten thousand twelve'),\n(20625, 1702, 'one thousand seven hundred two'),\n(20626, 96494, 'ninety-six thousand four hundred ninety-four'),\n(20627, 23928, 'twenty-three thousand nine hundred twenty-eight'),\n(20628, 35320, 'thirty-five thousand three hundred twenty'),\n(20629, 57935, 'fifty-seven thousand nine hundred thirty-five'),\n(20630, 5584, 'five thousand five hundred eighty-four'),\n(20631, 58202, 'fifty-eight thousand two hundred two'),\n(20632, 94107, 'ninety-four thousand one hundred seven'),\n(20633, 85456, 'eighty-five thousand four hundred fifty-six'),\n(20634, 24056, 'twenty-four thousand fifty-six'),\n(20635, 5636, 'five thousand six hundred thirty-six'),\n(20636, 73041, 'seventy-three thousand forty-one'),\n(20637, 69817, 'sixty-nine thousand eight hundred seventeen'),\n(20638, 21038, 'twenty-one thousand thirty-eight'),\n(20639, 30275, 'thirty thousand two hundred seventy-five'),\n(20640, 27675, 'twenty-seven thousand six hundred seventy-five'),\n(20641, 94480, 'ninety-four thousand four hundred eighty'),\n(20642, 15516, 'fifteen thousand five hundred sixteen'),\n(20643, 11572, 'eleven thousand five hundred seventy-two'),\n(20644, 45252, 'forty-five thousand two hundred fifty-two'),\n(20645, 43435, 'forty-three thousand four hundred thirty-five'),\n(20646, 78990, 'seventy-eight thousand nine hundred ninety'),\n(20647, 20933, 'twenty thousand nine hundred thirty-three'),\n(20648, 93998, 'ninety-three thousand nine hundred ninety-eight'),\n(20649, 33684, 'thirty-three thousand six hundred eighty-four'),\n(20650, 84349, 'eighty-four thousand three hundred forty-nine'),\n(20651, 97732, 'ninety-seven thousand seven hundred thirty-two'),\n(20652, 69606, 'sixty-nine thousand six hundred six'),\n(20653, 1497, 'one thousand four hundred ninety-seven'),\n(20654, 75230, 'seventy-five thousand two hundred thirty'),\n(20655, 6955, 'six thousand nine hundred fifty-five'),\n(20656, 76200, 'seventy-six thousand two hundred'),\n(20657, 98056, 'ninety-eight thousand fifty-six'),\n(20658, 29783, 'twenty-nine thousand seven hundred eighty-three'),\n(20659, 85478, 'eighty-five thousand four hundred seventy-eight'),\n(20660, 87819, 'eighty-seven thousand eight hundred nineteen'),\n(20661, 32190, 'thirty-two thousand one hundred ninety'),\n(20662, 72822, 'seventy-two thousand eight hundred twenty-two'),\n(20663, 80514, 'eighty thousand five hundred fourteen'),\n(20664, 90920, 'ninety thousand nine hundred twenty'),\n(20665, 47466, 'forty-seven thousand four hundred sixty-six'),\n(20666, 88710, 'eighty-eight thousand seven hundred ten'),\n(20667, 56286, 'fifty-six thousand two hundred eighty-six'),\n(20668, 32668, 'thirty-two thousand six hundred sixty-eight'),\n(20669, 91516, 'ninety-one thousand five hundred sixteen'),\n(20670, 14851, 'fourteen thousand eight hundred fifty-one'),\n(20671, 69855, 'sixty-nine thousand eight hundred fifty-five'),\n(20672, 9617, 'nine thousand six hundred seventeen'),\n(20673, 24029, 'twenty-four thousand twenty-nine'),\n(20674, 53782, 'fifty-three thousand seven hundred eighty-two'),\n(20675, 14005, 'fourteen thousand five'),\n(20676, 8690, 'eight thousand six hundred ninety'),\n(20677, 61739, 'sixty-one thousand seven hundred thirty-nine'),\n(20678, 39679, 'thirty-nine thousand six hundred seventy-nine'),\n(20679, 69941, 'sixty-nine thousand nine hundred forty-one'),\n(20680, 29547, 'twenty-nine thousand five hundred forty-seven'),\n(20681, 96030, 'ninety-six thousand thirty'),\n(20682, 3431, 'three thousand four hundred thirty-one'),\n(20683, 99589, 'ninety-nine thousand five hundred eighty-nine'),\n(20684, 79761, 'seventy-nine thousand seven hundred sixty-one'),\n(20685, 95908, 'ninety-five thousand nine hundred eight'),\n(20686, 84673, 'eighty-four thousand six hundred seventy-three'),\n(20687, 49314, 'forty-nine thousand three hundred fourteen'),\n(20688, 8988, 'eight thousand nine hundred eighty-eight'),\n(20689, 63741, 'sixty-three thousand seven hundred forty-one'),\n(20690, 3640, 'three thousand six hundred forty'),\n(20691, 86596, 'eighty-six thousand five hundred ninety-six'),\n(20692, 4697, 'four thousand six hundred ninety-seven'),\n(20693, 30021, 'thirty thousand twenty-one'),\n(20694, 45842, 'forty-five thousand eight hundred forty-two'),\n(20695, 95024, 'ninety-five thousand twenty-four'),\n(20696, 59861, 'fifty-nine thousand eight hundred sixty-one'),\n(20697, 39266, 'thirty-nine thousand two hundred sixty-six'),\n(20698, 4396, 'four thousand three hundred ninety-six'),\n(20699, 55728, 'fifty-five thousand seven hundred twenty-eight'),\n(20700, 71628, 'seventy-one thousand six hundred twenty-eight'),\n(20701, 90861, 'ninety thousand eight hundred sixty-one'),\n(20702, 67710, 'sixty-seven thousand seven hundred ten'),\n(20703, 36270, 'thirty-six thousand two hundred seventy'),\n(20704, 70632, 'seventy thousand six hundred thirty-two'),\n(20705, 70912, 'seventy thousand nine hundred twelve'),\n(20706, 6578, 'six thousand five hundred seventy-eight'),\n(20707, 25011, 'twenty-five thousand eleven'),\n(20708, 1724, 'one thousand seven hundred twenty-four'),\n(20709, 40909, 'forty thousand nine hundred nine'),\n(20710, 28152, 'twenty-eight thousand one hundred fifty-two'),\n(20711, 80649, 'eighty thousand six hundred forty-nine'),\n(20712, 64096, 'sixty-four thousand ninety-six'),\n(20713, 91258, 'ninety-one thousand two hundred fifty-eight'),\n(20714, 6001, 'six thousand one'),\n(20715, 28212, 'twenty-eight thousand two hundred twelve'),\n(20716, 38634, 'thirty-eight thousand six hundred thirty-four'),\n(20717, 44682, 'forty-four thousand six hundred eighty-two'),\n(20718, 13774, 'thirteen thousand seven hundred seventy-four'),\n(20719, 72830, 'seventy-two thousand eight hundred thirty'),\n(20720, 16510, 'sixteen thousand five hundred ten'),\n(20721, 81935, 'eighty-one thousand nine hundred thirty-five'),\n(20722, 2153, 'two thousand one hundred fifty-three'),\n(20723, 54733, 'fifty-four thousand seven hundred thirty-three'),\n(20724, 80109, 'eighty thousand one hundred nine'),\n(20725, 32962, 'thirty-two thousand nine hundred sixty-two'),\n(20726, 65516, 'sixty-five thousand five hundred sixteen'),\n(20727, 32228, 'thirty-two thousand two hundred twenty-eight'),\n(20728, 36502, 'thirty-six thousand five hundred two'),\n(20729, 89620, 'eighty-nine thousand six hundred twenty'),\n(20730, 48893, 'forty-eight thousand eight hundred ninety-three'),\n(20731, 42827, 'forty-two thousand eight hundred twenty-seven'),\n(20732, 29125, 'twenty-nine thousand one hundred twenty-five'),\n(20733, 27007, 'twenty-seven thousand seven'),\n(20734, 9560, 'nine thousand five hundred sixty'),\n(20735, 41094, 'forty-one thousand ninety-four'),\n(20736, 57818, 'fifty-seven thousand eight hundred eighteen'),\n(20737, 71140, 'seventy-one thousand one hundred forty'),\n(20738, 27027, 'twenty-seven thousand twenty-seven'),\n(20739, 8063, 'eight thousand sixty-three'),\n(20740, 93266, 'ninety-three thousand two hundred sixty-six'),\n(20741, 72355, 'seventy-two thousand three hundred fifty-five'),\n(20742, 13654, 'thirteen thousand six hundred fifty-four'),\n(20743, 45002, 'forty-five thousand two'),\n(20744, 24665, 'twenty-four thousand six hundred sixty-five'),\n(20745, 88343, 'eighty-eight thousand three hundred forty-three'),\n(20746, 33168, 'thirty-three thousand one hundred sixty-eight'),\n(20747, 80145, 'eighty thousand one hundred forty-five'),\n(20748, 13097, 'thirteen thousand ninety-seven'),\n(20749, 14021, 'fourteen thousand twenty-one'),\n(20750, 92067, 'ninety-two thousand sixty-seven'),\n(20751, 87599, 'eighty-seven thousand five hundred ninety-nine'),\n(20752, 21009, 'twenty-one thousand nine'),\n(20753, 16556, 'sixteen thousand five hundred fifty-six'),\n(20754, 59066, 'fifty-nine thousand sixty-six'),\n(20755, 92223, 'ninety-two thousand two hundred twenty-three'),\n(20756, 67805, 'sixty-seven thousand eight hundred five'),\n(20757, 81185, 'eighty-one thousand one hundred eighty-five'),\n(20758, 19893, 'nineteen thousand eight hundred ninety-three'),\n(20759, 40442, 'forty thousand four hundred forty-two'),\n(20760, 22420, 'twenty-two thousand four hundred twenty'),\n(20761, 89833, 'eighty-nine thousand eight hundred thirty-three'),\n(20762, 47442, 'forty-seven thousand four hundred forty-two'),\n(20763, 64418, 'sixty-four thousand four hundred eighteen'),\n(20764, 56734, 'fifty-six thousand seven hundred thirty-four'),\n(20765, 48198, 'forty-eight thousand one hundred ninety-eight'),\n(20766, 74803, 'seventy-four thousand eight hundred three'),\n(20767, 54310, 'fifty-four thousand three hundred ten'),\n(20768, 42749, 'forty-two thousand seven hundred forty-nine'),\n(20769, 1595, 'one thousand five hundred ninety-five'),\n(20770, 37104, 'thirty-seven thousand one hundred four'),\n(20771, 93970, 'ninety-three thousand nine hundred seventy'),\n(20772, 77004, 'seventy-seven thousand four'),\n(20773, 38077, 'thirty-eight thousand seventy-seven'),\n(20774, 4318, 'four thousand three hundred eighteen'),\n(20775, 30259, 'thirty thousand two hundred fifty-nine'),\n(20776, 60477, 'sixty thousand four hundred seventy-seven'),\n(20777, 29986, 'twenty-nine thousand nine hundred eighty-six'),\n(20778, 56814, 'fifty-six thousand eight hundred fourteen'),\n(20779, 57633, 'fifty-seven thousand six hundred thirty-three'),\n(20780, 50036, 'fifty thousand thirty-six'),\n(20781, 60730, 'sixty thousand seven hundred thirty'),\n(20782, 35100, 'thirty-five thousand one hundred'),\n(20783, 61113, 'sixty-one thousand one hundred thirteen'),\n(20784, 140, 'one hundred forty'),\n(20785, 35784, 'thirty-five thousand seven hundred eighty-four'),\n(20786, 87422, 'eighty-seven thousand four hundred twenty-two'),\n(20787, 28128, 'twenty-eight thousand one hundred twenty-eight'),\n(20788, 66213, 'sixty-six thousand two hundred thirteen'),\n(20789, 44242, 'forty-four thousand two hundred forty-two'),\n(20790, 2525, 'two thousand five hundred twenty-five'),\n(20791, 60800, 'sixty thousand eight hundred'),\n(20792, 86046, 'eighty-six thousand forty-six'),\n(20793, 77259, 'seventy-seven thousand two hundred fifty-nine'),\n(20794, 18484, 'eighteen thousand four hundred eighty-four'),\n(20795, 32691, 'thirty-two thousand six hundred ninety-one'),\n(20796, 89681, 'eighty-nine thousand six hundred eighty-one'),\n(20797, 19743, 'nineteen thousand seven hundred forty-three'),\n(20798, 2558, 'two thousand five hundred fifty-eight'),\n(20799, 54514, 'fifty-four thousand five hundred fourteen'),\n(20800, 11525, 'eleven thousand five hundred twenty-five'),\n(20801, 96249, 'ninety-six thousand two hundred forty-nine'),\n(20802, 33893, 'thirty-three thousand eight hundred ninety-three'),\n(20803, 82190, 'eighty-two thousand one hundred ninety'),\n(20804, 23297, 'twenty-three thousand two hundred ninety-seven'),\n(20805, 59761, 'fifty-nine thousand seven hundred sixty-one'),\n(20806, 5879, 'five thousand eight hundred seventy-nine'),\n(20807, 68389, 'sixty-eight thousand three hundred eighty-nine'),\n(20808, 2624, 'two thousand six hundred twenty-four'),\n(20809, 17414, 'seventeen thousand four hundred fourteen'),\n(20810, 45899, 'forty-five thousand eight hundred ninety-nine'),\n(20811, 43977, 'forty-three thousand nine hundred seventy-seven'),\n(20812, 98925, 'ninety-eight thousand nine hundred twenty-five'),\n(20813, 99535, 'ninety-nine thousand five hundred thirty-five'),\n(20814, 47119, 'forty-seven thousand one hundred nineteen'),\n(20815, 92398, 'ninety-two thousand three hundred ninety-eight'),\n(20816, 33278, 'thirty-three thousand two hundred seventy-eight'),\n(20817, 10689, 'ten thousand six hundred eighty-nine'),\n(20818, 5457, 'five thousand four hundred fifty-seven'),\n(20819, 76584, 'seventy-six thousand five hundred eighty-four'),\n(20820, 78783, 'seventy-eight thousand seven hundred eighty-three'),\n(20821, 89407, 'eighty-nine thousand four hundred seven'),\n(20822, 87257, 'eighty-seven thousand two hundred fifty-seven'),\n(20823, 28309, 'twenty-eight thousand three hundred nine'),\n(20824, 63524, 'sixty-three thousand five hundred twenty-four'),\n(20825, 44844, 'forty-four thousand eight hundred forty-four'),\n(20826, 61006, 'sixty-one thousand six'),\n(20827, 79538, 'seventy-nine thousand five hundred thirty-eight'),\n(20828, 97949, 'ninety-seven thousand nine hundred forty-nine'),\n(20829, 8632, 'eight thousand six hundred thirty-two'),\n(20830, 35741, 'thirty-five thousand seven hundred forty-one'),\n(20831, 98612, 'ninety-eight thousand six hundred twelve'),\n(20832, 92970, 'ninety-two thousand nine hundred seventy'),\n(20833, 42735, 'forty-two thousand seven hundred thirty-five'),\n(20834, 7119, 'seven thousand one hundred nineteen'),\n(20835, 33845, 'thirty-three thousand eight hundred forty-five'),\n(20836, 47212, 'forty-seven thousand two hundred twelve'),\n(20837, 13536, 'thirteen thousand five hundred thirty-six'),\n(20838, 86333, 'eighty-six thousand three hundred thirty-three'),\n(20839, 49582, 'forty-nine thousand five hundred eighty-two'),\n(20840, 60169, 'sixty thousand one hundred sixty-nine'),\n(20841, 49256, 'forty-nine thousand two hundred fifty-six'),\n(20842, 76036, 'seventy-six thousand thirty-six'),\n(20843, 25276, 'twenty-five thousand two hundred seventy-six'),\n(20844, 83041, 'eighty-three thousand forty-one'),\n(20845, 66167, 'sixty-six thousand one hundred sixty-seven'),\n(20846, 95728, 'ninety-five thousand seven hundred twenty-eight'),\n(20847, 88389, 'eighty-eight thousand three hundred eighty-nine'),\n(20848, 92996, 'ninety-two thousand nine hundred ninety-six'),\n(20849, 66252, 'sixty-six thousand two hundred fifty-two'),\n(20850, 67792, 'sixty-seven thousand seven hundred ninety-two'),\n(20851, 28765, 'twenty-eight thousand seven hundred sixty-five'),\n(20852, 53846, 'fifty-three thousand eight hundred forty-six'),\n(20853, 33826, 'thirty-three thousand eight hundred twenty-six'),\n(20854, 3869, 'three thousand eight hundred sixty-nine'),\n(20855, 63720, 'sixty-three thousand seven hundred twenty'),\n(20856, 58814, 'fifty-eight thousand eight hundred fourteen'),\n(20857, 86750, 'eighty-six thousand seven hundred fifty'),\n(20858, 45743, 'forty-five thousand seven hundred forty-three'),\n(20859, 81728, 'eighty-one thousand seven hundred twenty-eight'),\n(20860, 72524, 'seventy-two thousand five hundred twenty-four'),\n(20861, 7697, 'seven thousand six hundred ninety-seven'),\n(20862, 25890, 'twenty-five thousand eight hundred ninety'),\n(20863, 60615, 'sixty thousand six hundred fifteen'),\n(20864, 42107, 'forty-two thousand one hundred seven'),\n(20865, 30406, 'thirty thousand four hundred six'),\n(20866, 86830, 'eighty-six thousand eight hundred thirty'),\n(20867, 90896, 'ninety thousand eight hundred ninety-six'),\n(20868, 70747, 'seventy thousand seven hundred forty-seven'),\n(20869, 64799, 'sixty-four thousand seven hundred ninety-nine'),\n(20870, 73710, 'seventy-three thousand seven hundred ten'),\n(20871, 50208, 'fifty thousand two hundred eight'),\n(20872, 68686, 'sixty-eight thousand six hundred eighty-six'),\n(20873, 74764, 'seventy-four thousand seven hundred sixty-four'),\n(20874, 18007, 'eighteen thousand seven'),\n(20875, 91354, 'ninety-one thousand three hundred fifty-four'),\n(20876, 47944, 'forty-seven thousand nine hundred forty-four'),\n(20877, 48147, 'forty-eight thousand one hundred forty-seven'),\n(20878, 91253, 'ninety-one thousand two hundred fifty-three'),\n(20879, 33500, 'thirty-three thousand five hundred'),\n(20880, 21392, 'twenty-one thousand three hundred ninety-two'),\n(20881, 15667, 'fifteen thousand six hundred sixty-seven'),\n(20882, 36411, 'thirty-six thousand four hundred eleven'),\n(20883, 25926, 'twenty-five thousand nine hundred twenty-six'),\n(20884, 12885, 'twelve thousand eight hundred eighty-five'),\n(20885, 10333, 'ten thousand three hundred thirty-three'),\n(20886, 10415, 'ten thousand four hundred fifteen'),\n(20887, 77629, 'seventy-seven thousand six hundred twenty-nine'),\n(20888, 72451, 'seventy-two thousand four hundred fifty-one'),\n(20889, 26811, 'twenty-six thousand eight hundred eleven'),\n(20890, 61104, 'sixty-one thousand one hundred four'),\n(20891, 49890, 'forty-nine thousand eight hundred ninety'),\n(20892, 31323, 'thirty-one thousand three hundred twenty-three'),\n(20893, 3812, 'three thousand eight hundred twelve'),\n(20894, 98522, 'ninety-eight thousand five hundred twenty-two'),\n(20895, 54182, 'fifty-four thousand one hundred eighty-two'),\n(20896, 86784, 'eighty-six thousand seven hundred eighty-four'),\n(20897, 99745, 'ninety-nine thousand seven hundred forty-five'),\n(20898, 33437, 'thirty-three thousand four hundred thirty-seven'),\n(20899, 59842, 'fifty-nine thousand eight hundred forty-two'),\n(20900, 90550, 'ninety thousand five hundred fifty'),\n(20901, 29505, 'twenty-nine thousand five hundred five'),\n(20902, 83879, 'eighty-three thousand eight hundred seventy-nine'),\n(20903, 46479, 'forty-six thousand four hundred seventy-nine'),\n(20904, 24359, 'twenty-four thousand three hundred fifty-nine'),\n(20905, 17176, 'seventeen thousand one hundred seventy-six'),\n(20906, 65318, 'sixty-five thousand three hundred eighteen'),\n(20907, 51389, 'fifty-one thousand three hundred eighty-nine'),\n(20908, 67213, 'sixty-seven thousand two hundred thirteen'),\n(20909, 27654, 'twenty-seven thousand six hundred fifty-four'),\n(20910, 32583, 'thirty-two thousand five hundred eighty-three'),\n(20911, 30785, 'thirty thousand seven hundred eighty-five'),\n(20912, 48418, 'forty-eight thousand four hundred eighteen'),\n(20913, 34069, 'thirty-four thousand sixty-nine'),\n(20914, 76752, 'seventy-six thousand seven hundred fifty-two'),\n(20915, 35915, 'thirty-five thousand nine hundred fifteen'),\n(20916, 44142, 'forty-four thousand one hundred forty-two'),\n(20917, 67133, 'sixty-seven thousand one hundred thirty-three'),\n(20918, 97971, 'ninety-seven thousand nine hundred seventy-one'),\n(20919, 43465, 'forty-three thousand four hundred sixty-five'),\n(20920, 73100, 'seventy-three thousand one hundred'),\n(20921, 45014, 'forty-five thousand fourteen'),\n(20922, 27457, 'twenty-seven thousand four hundred fifty-seven'),\n(20923, 48786, 'forty-eight thousand seven hundred eighty-six'),\n(20924, 49949, 'forty-nine thousand nine hundred forty-nine'),\n(20925, 29715, 'twenty-nine thousand seven hundred fifteen'),\n(20926, 30083, 'thirty thousand eighty-three'),\n(20927, 36179, 'thirty-six thousand one hundred seventy-nine'),\n(20928, 49258, 'forty-nine thousand two hundred fifty-eight'),\n(20929, 76085, 'seventy-six thousand eighty-five'),\n(20930, 90842, 'ninety thousand eight hundred forty-two'),\n(20931, 3301, 'three thousand three hundred one'),\n(20932, 79447, 'seventy-nine thousand four hundred forty-seven'),\n(20933, 16649, 'sixteen thousand six hundred forty-nine'),\n(20934, 74228, 'seventy-four thousand two hundred twenty-eight'),\n(20935, 97208, 'ninety-seven thousand two hundred eight'),\n(20936, 83384, 'eighty-three thousand three hundred eighty-four'),\n(20937, 10761, 'ten thousand seven hundred sixty-one'),\n(20938, 64732, 'sixty-four thousand seven hundred thirty-two'),\n(20939, 21700, 'twenty-one thousand seven hundred'),\n(20940, 32143, 'thirty-two thousand one hundred forty-three'),\n(20941, 1986, 'one thousand nine hundred eighty-six'),\n(20942, 19251, 'nineteen thousand two hundred fifty-one'),\n(20943, 52724, 'fifty-two thousand seven hundred twenty-four'),\n(20944, 34691, 'thirty-four thousand six hundred ninety-one'),\n(20945, 80799, 'eighty thousand seven hundred ninety-nine'),\n(20946, 69836, 'sixty-nine thousand eight hundred thirty-six'),\n(20947, 11915, 'eleven thousand nine hundred fifteen'),\n(20948, 12871, 'twelve thousand eight hundred seventy-one'),\n(20949, 48325, 'forty-eight thousand three hundred twenty-five'),\n(20950, 74847, 'seventy-four thousand eight hundred forty-seven'),\n(20951, 94237, 'ninety-four thousand two hundred thirty-seven'),\n(20952, 46860, 'forty-six thousand eight hundred sixty'),\n(20953, 21807, 'twenty-one thousand eight hundred seven'),\n(20954, 87440, 'eighty-seven thousand four hundred forty'),\n(20955, 71782, 'seventy-one thousand seven hundred eighty-two'),\n(20956, 21321, 'twenty-one thousand three hundred twenty-one'),\n(20957, 30951, 'thirty thousand nine hundred fifty-one'),\n(20958, 11856, 'eleven thousand eight hundred fifty-six'),\n(20959, 49811, 'forty-nine thousand eight hundred eleven'),\n(20960, 79749, 'seventy-nine thousand seven hundred forty-nine'),\n(20961, 11170, 'eleven thousand one hundred seventy'),\n(20962, 99629, 'ninety-nine thousand six hundred twenty-nine'),\n(20963, 65371, 'sixty-five thousand three hundred seventy-one'),\n(20964, 34244, 'thirty-four thousand two hundred forty-four'),\n(20965, 3781, 'three thousand seven hundred eighty-one'),\n(20966, 24686, 'twenty-four thousand six hundred eighty-six'),\n(20967, 59903, 'fifty-nine thousand nine hundred three'),\n(20968, 62614, 'sixty-two thousand six hundred fourteen'),\n(20969, 92050, 'ninety-two thousand fifty'),\n(20970, 98544, 'ninety-eight thousand five hundred forty-four'),\n(20971, 28740, 'twenty-eight thousand seven hundred forty'),\n(20972, 24024, 'twenty-four thousand twenty-four'),\n(20973, 92000, 'ninety-two thousand'),\n(20974, 40715, 'forty thousand seven hundred fifteen'),\n(20975, 52113, 'fifty-two thousand one hundred thirteen'),\n(20976, 68404, 'sixty-eight thousand four hundred four'),\n(20977, 85410, 'eighty-five thousand four hundred ten'),\n(20978, 54851, 'fifty-four thousand eight hundred fifty-one'),\n(20979, 22821, 'twenty-two thousand eight hundred twenty-one'),\n(20980, 41283, 'forty-one thousand two hundred eighty-three'),\n(20981, 46991, 'forty-six thousand nine hundred ninety-one'),\n(20982, 4852, 'four thousand eight hundred fifty-two'),\n(20983, 79635, 'seventy-nine thousand six hundred thirty-five'),\n(20984, 88412, 'eighty-eight thousand four hundred twelve'),\n(20985, 93051, 'ninety-three thousand fifty-one'),\n(20986, 81058, 'eighty-one thousand fifty-eight'),\n(20987, 41569, 'forty-one thousand five hundred sixty-nine'),\n(20988, 61945, 'sixty-one thousand nine hundred forty-five'),\n(20989, 62609, 'sixty-two thousand six hundred nine'),\n(20990, 13715, 'thirteen thousand seven hundred fifteen'),\n(20991, 2046, 'two thousand forty-six'),\n(20992, 22876, 'twenty-two thousand eight hundred seventy-six'),\n(20993, 27636, 'twenty-seven thousand six hundred thirty-six'),\n(20994, 85744, 'eighty-five thousand seven hundred forty-four'),\n(20995, 8027, 'eight thousand twenty-seven'),\n(20996, 18531, 'eighteen thousand five hundred thirty-one'),\n(20997, 30469, 'thirty thousand four hundred sixty-nine'),\n(20998, 88361, 'eighty-eight thousand three hundred sixty-one'),\n(20999, 3939, 'three thousand nine hundred thirty-nine'),\n(21000, 96075, 'ninety-six thousand seventy-five'),\n(21001, 59400, 'fifty-nine thousand four hundred'),\n(21002, 16789, 'sixteen thousand seven hundred eighty-nine'),\n(21003, 43998, 'forty-three thousand nine hundred ninety-eight'),\n(21004, 11203, 'eleven thousand two hundred three'),\n(21005, 12690, 'twelve thousand six hundred ninety'),\n(21006, 45157, 'forty-five thousand one hundred fifty-seven'),\n(21007, 28750, 'twenty-eight thousand seven hundred fifty'),\n(21008, 2560, 'two thousand five hundred sixty'),\n(21009, 21191, 'twenty-one thousand one hundred ninety-one'),\n(21010, 29201, 'twenty-nine thousand two hundred one'),\n(21011, 37956, 'thirty-seven thousand nine hundred fifty-six'),\n(21012, 39641, 'thirty-nine thousand six hundred forty-one'),\n(21013, 65272, 'sixty-five thousand two hundred seventy-two'),\n(21014, 27780, 'twenty-seven thousand seven hundred eighty'),\n(21015, 91818, 'ninety-one thousand eight hundred eighteen'),\n(21016, 51822, 'fifty-one thousand eight hundred twenty-two'),\n(21017, 64487, 'sixty-four thousand four hundred eighty-seven'),\n(21018, 91951, 'ninety-one thousand nine hundred fifty-one'),\n(21019, 92209, 'ninety-two thousand two hundred nine'),\n(21020, 38116, 'thirty-eight thousand one hundred sixteen'),\n(21021, 10384, 'ten thousand three hundred eighty-four'),\n(21022, 42093, 'forty-two thousand ninety-three'),\n(21023, 64506, 'sixty-four thousand five hundred six'),\n(21024, 80152, 'eighty thousand one hundred fifty-two'),\n(21025, 20984, 'twenty thousand nine hundred eighty-four'),\n(21026, 76875, 'seventy-six thousand eight hundred seventy-five'),\n(21027, 95590, 'ninety-five thousand five hundred ninety'),\n(21028, 51070, 'fifty-one thousand seventy'),\n(21029, 90143, 'ninety thousand one hundred forty-three'),\n(21030, 26787, 'twenty-six thousand seven hundred eighty-seven'),\n(21031, 50854, 'fifty thousand eight hundred fifty-four'),\n(21032, 96583, 'ninety-six thousand five hundred eighty-three'),\n(21033, 31976, 'thirty-one thousand nine hundred seventy-six'),\n(21034, 80099, 'eighty thousand ninety-nine'),\n(21035, 90856, 'ninety thousand eight hundred fifty-six'),\n(21036, 39443, 'thirty-nine thousand four hundred forty-three'),\n(21037, 10934, 'ten thousand nine hundred thirty-four'),\n(21038, 94505, 'ninety-four thousand five hundred five'),\n(21039, 95538, 'ninety-five thousand five hundred thirty-eight'),\n(21040, 36148, 'thirty-six thousand one hundred forty-eight'),\n(21041, 50446, 'fifty thousand four hundred forty-six'),\n(21042, 91321, 'ninety-one thousand three hundred twenty-one'),\n(21043, 73528, 'seventy-three thousand five hundred twenty-eight'),\n(21044, 89995, 'eighty-nine thousand nine hundred ninety-five'),\n(21045, 58200, 'fifty-eight thousand two hundred'),\n(21046, 54511, 'fifty-four thousand five hundred eleven'),\n(21047, 24946, 'twenty-four thousand nine hundred forty-six'),\n(21048, 66204, 'sixty-six thousand two hundred four'),\n(21049, 26736, 'twenty-six thousand seven hundred thirty-six'),\n(21050, 90899, 'ninety thousand eight hundred ninety-nine'),\n(21051, 73705, 'seventy-three thousand seven hundred five'),\n(21052, 5359, 'five thousand three hundred fifty-nine'),\n(21053, 42040, 'forty-two thousand forty'),\n(21054, 21404, 'twenty-one thousand four hundred four'),\n(21055, 63277, 'sixty-three thousand two hundred seventy-seven'),\n(21056, 10171, 'ten thousand one hundred seventy-one'),\n(21057, 76362, 'seventy-six thousand three hundred sixty-two'),\n(21058, 83499, 'eighty-three thousand four hundred ninety-nine'),\n(21059, 77224, 'seventy-seven thousand two hundred twenty-four'),\n(21060, 29364, 'twenty-nine thousand three hundred sixty-four'),\n(21061, 67887, 'sixty-seven thousand eight hundred eighty-seven'),\n(21062, 84419, 'eighty-four thousand four hundred nineteen'),\n(21063, 989, 'nine hundred eighty-nine'),\n(21064, 89289, 'eighty-nine thousand two hundred eighty-nine'),\n(21065, 73225, 'seventy-three thousand two hundred twenty-five'),\n(21066, 60805, 'sixty thousand eight hundred five'),\n(21067, 70338, 'seventy thousand three hundred thirty-eight'),\n(21068, 58899, 'fifty-eight thousand eight hundred ninety-nine'),\n(21069, 30776, 'thirty thousand seven hundred seventy-six'),\n(21070, 78990, 'seventy-eight thousand nine hundred ninety'),\n(21071, 1323, 'one thousand three hundred twenty-three'),\n(21072, 61781, 'sixty-one thousand seven hundred eighty-one'),\n(21073, 9719, 'nine thousand seven hundred nineteen'),\n(21074, 58428, 'fifty-eight thousand four hundred twenty-eight'),\n(21075, 38991, 'thirty-eight thousand nine hundred ninety-one'),\n(21076, 75192, 'seventy-five thousand one hundred ninety-two'),\n(21077, 27483, 'twenty-seven thousand four hundred eighty-three'),\n(21078, 86624, 'eighty-six thousand six hundred twenty-four'),\n(21079, 17538, 'seventeen thousand five hundred thirty-eight'),\n(21080, 11774, 'eleven thousand seven hundred seventy-four'),\n(21081, 92822, 'ninety-two thousand eight hundred twenty-two'),\n(21082, 68637, 'sixty-eight thousand six hundred thirty-seven'),\n(21083, 45636, 'forty-five thousand six hundred thirty-six'),\n(21084, 40243, 'forty thousand two hundred forty-three'),\n(21085, 37951, 'thirty-seven thousand nine hundred fifty-one'),\n(21086, 96551, 'ninety-six thousand five hundred fifty-one'),\n(21087, 78207, 'seventy-eight thousand two hundred seven'),\n(21088, 81023, 'eighty-one thousand twenty-three'),\n(21089, 90870, 'ninety thousand eight hundred seventy'),\n(21090, 44646, 'forty-four thousand six hundred forty-six'),\n(21091, 5083, 'five thousand eighty-three'),\n(21092, 48450, 'forty-eight thousand four hundred fifty'),\n(21093, 44014, 'forty-four thousand fourteen'),\n(21094, 53634, 'fifty-three thousand six hundred thirty-four'),\n(21095, 39553, 'thirty-nine thousand five hundred fifty-three'),\n(21096, 10217, 'ten thousand two hundred seventeen'),\n(21097, 56822, 'fifty-six thousand eight hundred twenty-two'),\n(21098, 77396, 'seventy-seven thousand three hundred ninety-six'),\n(21099, 18154, 'eighteen thousand one hundred fifty-four'),\n(21100, 7991, 'seven thousand nine hundred ninety-one'),\n(21101, 27470, 'twenty-seven thousand four hundred seventy'),\n(21102, 18907, 'eighteen thousand nine hundred seven'),\n(21103, 44731, 'forty-four thousand seven hundred thirty-one'),\n(21104, 25789, 'twenty-five thousand seven hundred eighty-nine'),\n(21105, 84915, 'eighty-four thousand nine hundred fifteen'),\n(21106, 94332, 'ninety-four thousand three hundred thirty-two'),\n(21107, 30353, 'thirty thousand three hundred fifty-three'),\n(21108, 55869, 'fifty-five thousand eight hundred sixty-nine'),\n(21109, 44163, 'forty-four thousand one hundred sixty-three'),\n(21110, 79040, 'seventy-nine thousand forty'),\n(21111, 53292, 'fifty-three thousand two hundred ninety-two'),\n(21112, 65622, 'sixty-five thousand six hundred twenty-two'),\n(21113, 78480, 'seventy-eight thousand four hundred eighty'),\n(21114, 56182, 'fifty-six thousand one hundred eighty-two'),\n(21115, 65323, 'sixty-five thousand three hundred twenty-three'),\n(21116, 18055, 'eighteen thousand fifty-five'),\n(21117, 4132, 'four thousand one hundred thirty-two'),\n(21118, 75164, 'seventy-five thousand one hundred sixty-four'),\n(21119, 81427, 'eighty-one thousand four hundred twenty-seven'),\n(21120, 88603, 'eighty-eight thousand six hundred three'),\n(21121, 40013, 'forty thousand thirteen'),\n(21122, 40354, 'forty thousand three hundred fifty-four'),\n(21123, 30922, 'thirty thousand nine hundred twenty-two'),\n(21124, 23584, 'twenty-three thousand five hundred eighty-four'),\n(21125, 98815, 'ninety-eight thousand eight hundred fifteen'),\n(21126, 28833, 'twenty-eight thousand eight hundred thirty-three'),\n(21127, 89423, 'eighty-nine thousand four hundred twenty-three'),\n(21128, 98822, 'ninety-eight thousand eight hundred twenty-two'),\n(21129, 93222, 'ninety-three thousand two hundred twenty-two'),\n(21130, 94260, 'ninety-four thousand two hundred sixty'),\n(21131, 71873, 'seventy-one thousand eight hundred seventy-three'),\n(21132, 18273, 'eighteen thousand two hundred seventy-three'),\n(21133, 25543, 'twenty-five thousand five hundred forty-three'),\n(21134, 95612, 'ninety-five thousand six hundred twelve'),\n(21135, 89785, 'eighty-nine thousand seven hundred eighty-five'),\n(21136, 45190, 'forty-five thousand one hundred ninety'),\n(21137, 36832, 'thirty-six thousand eight hundred thirty-two'),\n(21138, 13275, 'thirteen thousand two hundred seventy-five'),\n(21139, 41657, 'forty-one thousand six hundred fifty-seven'),\n(21140, 85651, 'eighty-five thousand six hundred fifty-one'),\n(21141, 35829, 'thirty-five thousand eight hundred twenty-nine'),\n(21142, 7360, 'seven thousand three hundred sixty'),\n(21143, 4330, 'four thousand three hundred thirty'),\n(21144, 78095, 'seventy-eight thousand ninety-five'),\n(21145, 17373, 'seventeen thousand three hundred seventy-three'),\n(21146, 68720, 'sixty-eight thousand seven hundred twenty'),\n(21147, 21431, 'twenty-one thousand four hundred thirty-one'),\n(21148, 55612, 'fifty-five thousand six hundred twelve'),\n(21149, 95643, 'ninety-five thousand six hundred forty-three'),\n(21150, 8216, 'eight thousand two hundred sixteen'),\n(21151, 20356, 'twenty thousand three hundred fifty-six'),\n(21152, 65, 'sixty-five'),\n(21153, 70899, 'seventy thousand eight hundred ninety-nine'),\n(21154, 18384, 'eighteen thousand three hundred eighty-four'),\n(21155, 8512, 'eight thousand five hundred twelve'),\n(21156, 66153, 'sixty-six thousand one hundred fifty-three'),\n(21157, 19821, 'nineteen thousand eight hundred twenty-one'),\n(21158, 39067, 'thirty-nine thousand sixty-seven'),\n(21159, 62279, 'sixty-two thousand two hundred seventy-nine'),\n(21160, 36119, 'thirty-six thousand one hundred nineteen'),\n(21161, 30107, 'thirty thousand one hundred seven'),\n(21162, 26583, 'twenty-six thousand five hundred eighty-three'),\n(21163, 66013, 'sixty-six thousand thirteen'),\n(21164, 14233, 'fourteen thousand two hundred thirty-three'),\n(21165, 4193, 'four thousand one hundred ninety-three'),\n(21166, 778, 'seven hundred seventy-eight'),\n(21167, 38837, 'thirty-eight thousand eight hundred thirty-seven'),\n(21168, 94713, 'ninety-four thousand seven hundred thirteen'),\n(21169, 34564, 'thirty-four thousand five hundred sixty-four'),\n(21170, 54520, 'fifty-four thousand five hundred twenty'),\n(21171, 62952, 'sixty-two thousand nine hundred fifty-two'),\n(21172, 69621, 'sixty-nine thousand six hundred twenty-one'),\n(21173, 88499, 'eighty-eight thousand four hundred ninety-nine'),\n(21174, 49397, 'forty-nine thousand three hundred ninety-seven'),\n(21175, 28574, 'twenty-eight thousand five hundred seventy-four'),\n(21176, 11480, 'eleven thousand four hundred eighty'),\n(21177, 40208, 'forty thousand two hundred eight'),\n(21178, 38900, 'thirty-eight thousand nine hundred'),\n(21179, 83957, 'eighty-three thousand nine hundred fifty-seven'),\n(21180, 27247, 'twenty-seven thousand two hundred forty-seven'),\n(21181, 97307, 'ninety-seven thousand three hundred seven'),\n(21182, 39555, 'thirty-nine thousand five hundred fifty-five'),\n(21183, 93027, 'ninety-three thousand twenty-seven'),\n(21184, 55590, 'fifty-five thousand five hundred ninety'),\n(21185, 96966, 'ninety-six thousand nine hundred sixty-six'),\n(21186, 6905, 'six thousand nine hundred five'),\n(21187, 96377, 'ninety-six thousand three hundred seventy-seven'),\n(21188, 67033, 'sixty-seven thousand thirty-three'),\n(21189, 31372, 'thirty-one thousand three hundred seventy-two'),\n(21190, 86793, 'eighty-six thousand seven hundred ninety-three'),\n(21191, 15123, 'fifteen thousand one hundred twenty-three'),\n(21192, 78993, 'seventy-eight thousand nine hundred ninety-three'),\n(21193, 56609, 'fifty-six thousand six hundred nine'),\n(21194, 15481, 'fifteen thousand four hundred eighty-one'),\n(21195, 918, 'nine hundred eighteen'),\n(21196, 63836, 'sixty-three thousand eight hundred thirty-six'),\n(21197, 33745, 'thirty-three thousand seven hundred forty-five'),\n(21198, 8756, 'eight thousand seven hundred fifty-six'),\n(21199, 41975, 'forty-one thousand nine hundred seventy-five'),\n(21200, 23231, 'twenty-three thousand two hundred thirty-one'),\n(21201, 17286, 'seventeen thousand two hundred eighty-six'),\n(21202, 30531, 'thirty thousand five hundred thirty-one'),\n(21203, 15593, 'fifteen thousand five hundred ninety-three'),\n(21204, 12905, 'twelve thousand nine hundred five'),\n(21205, 83139, 'eighty-three thousand one hundred thirty-nine'),\n(21206, 33667, 'thirty-three thousand six hundred sixty-seven'),\n(21207, 66932, 'sixty-six thousand nine hundred thirty-two'),\n(21208, 64229, 'sixty-four thousand two hundred twenty-nine'),\n(21209, 63294, 'sixty-three thousand two hundred ninety-four'),\n(21210, 64787, 'sixty-four thousand seven hundred eighty-seven'),\n(21211, 13033, 'thirteen thousand thirty-three'),\n(21212, 65534, 'sixty-five thousand five hundred thirty-four'),\n(21213, 15872, 'fifteen thousand eight hundred seventy-two'),\n(21214, 60988, 'sixty thousand nine hundred eighty-eight'),\n(21215, 41443, 'forty-one thousand four hundred forty-three'),\n(21216, 77748, 'seventy-seven thousand seven hundred forty-eight'),\n(21217, 18982, 'eighteen thousand nine hundred eighty-two'),\n(21218, 88649, 'eighty-eight thousand six hundred forty-nine'),\n(21219, 34980, 'thirty-four thousand nine hundred eighty'),\n(21220, 89340, 'eighty-nine thousand three hundred forty'),\n(21221, 38330, 'thirty-eight thousand three hundred thirty'),\n(21222, 69647, 'sixty-nine thousand six hundred forty-seven'),\n(21223, 74253, 'seventy-four thousand two hundred fifty-three'),\n(21224, 86753, 'eighty-six thousand seven hundred fifty-three'),\n(21225, 75315, 'seventy-five thousand three hundred fifteen'),\n(21226, 84576, 'eighty-four thousand five hundred seventy-six'),\n(21227, 38737, 'thirty-eight thousand seven hundred thirty-seven'),\n(21228, 28108, 'twenty-eight thousand one hundred eight'),\n(21229, 74630, 'seventy-four thousand six hundred thirty'),\n(21230, 69834, 'sixty-nine thousand eight hundred thirty-four'),\n(21231, 42819, 'forty-two thousand eight hundred nineteen'),\n(21232, 95634, 'ninety-five thousand six hundred thirty-four'),\n(21233, 17095, 'seventeen thousand ninety-five'),\n(21234, 29655, 'twenty-nine thousand six hundred fifty-five'),\n(21235, 97871, 'ninety-seven thousand eight hundred seventy-one'),\n(21236, 98896, 'ninety-eight thousand eight hundred ninety-six'),\n(21237, 53044, 'fifty-three thousand forty-four'),\n(21238, 37909, 'thirty-seven thousand nine hundred nine'),\n(21239, 4426, 'four thousand four hundred twenty-six'),\n(21240, 87378, 'eighty-seven thousand three hundred seventy-eight'),\n(21241, 9786, 'nine thousand seven hundred eighty-six'),\n(21242, 81767, 'eighty-one thousand seven hundred sixty-seven'),\n(21243, 58327, 'fifty-eight thousand three hundred twenty-seven'),\n(21244, 33417, 'thirty-three thousand four hundred seventeen'),\n(21245, 4418, 'four thousand four hundred eighteen'),\n(21246, 82809, 'eighty-two thousand eight hundred nine'),\n(21247, 52214, 'fifty-two thousand two hundred fourteen'),\n(21248, 43581, 'forty-three thousand five hundred eighty-one'),\n(21249, 6297, 'six thousand two hundred ninety-seven'),\n(21250, 53086, 'fifty-three thousand eighty-six'),\n(21251, 58003, 'fifty-eight thousand three'),\n(21252, 29632, 'twenty-nine thousand six hundred thirty-two'),\n(21253, 17891, 'seventeen thousand eight hundred ninety-one'),\n(21254, 19034, 'nineteen thousand thirty-four'),\n(21255, 9848, 'nine thousand eight hundred forty-eight'),\n(21256, 64871, 'sixty-four thousand eight hundred seventy-one'),\n(21257, 9277, 'nine thousand two hundred seventy-seven'),\n(21258, 10050, 'ten thousand fifty'),\n(21259, 1699, 'one thousand six hundred ninety-nine'),\n(21260, 55181, 'fifty-five thousand one hundred eighty-one'),\n(21261, 25210, 'twenty-five thousand two hundred ten'),\n(21262, 56763, 'fifty-six thousand seven hundred sixty-three'),\n(21263, 28872, 'twenty-eight thousand eight hundred seventy-two'),\n(21264, 54701, 'fifty-four thousand seven hundred one'),\n(21265, 1772, 'one thousand seven hundred seventy-two'),\n(21266, 59133, 'fifty-nine thousand one hundred thirty-three'),\n(21267, 33068, 'thirty-three thousand sixty-eight'),\n(21268, 70074, 'seventy thousand seventy-four'),\n(21269, 11454, 'eleven thousand four hundred fifty-four'),\n(21270, 37929, 'thirty-seven thousand nine hundred twenty-nine'),\n(21271, 36406, 'thirty-six thousand four hundred six'),\n(21272, 16624, 'sixteen thousand six hundred twenty-four'),\n(21273, 31066, 'thirty-one thousand sixty-six'),\n(21274, 77724, 'seventy-seven thousand seven hundred twenty-four'),\n(21275, 92829, 'ninety-two thousand eight hundred twenty-nine'),\n(21276, 40185, 'forty thousand one hundred eighty-five'),\n(21277, 98611, 'ninety-eight thousand six hundred eleven'),\n(21278, 10970, 'ten thousand nine hundred seventy'),\n(21279, 56091, 'fifty-six thousand ninety-one'),\n(21280, 64390, 'sixty-four thousand three hundred ninety'),\n(21281, 15563, 'fifteen thousand five hundred sixty-three'),\n(21282, 64571, 'sixty-four thousand five hundred seventy-one'),\n(21283, 46171, 'forty-six thousand one hundred seventy-one'),\n(21284, 86247, 'eighty-six thousand two hundred forty-seven'),\n(21285, 44435, 'forty-four thousand four hundred thirty-five'),\n(21286, 55059, 'fifty-five thousand fifty-nine'),\n(21287, 22013, 'twenty-two thousand thirteen'),\n(21288, 41647, 'forty-one thousand six hundred forty-seven'),\n(21289, 16025, 'sixteen thousand twenty-five'),\n(21290, 55038, 'fifty-five thousand thirty-eight'),\n(21291, 25601, 'twenty-five thousand six hundred one'),\n(21292, 90923, 'ninety thousand nine hundred twenty-three'),\n(21293, 242, 'two hundred forty-two'),\n(21294, 15322, 'fifteen thousand three hundred twenty-two'),\n(21295, 22266, 'twenty-two thousand two hundred sixty-six'),\n(21296, 75970, 'seventy-five thousand nine hundred seventy'),\n(21297, 63345, 'sixty-three thousand three hundred forty-five'),\n(21298, 47058, 'forty-seven thousand fifty-eight'),\n(21299, 70461, 'seventy thousand four hundred sixty-one'),\n(21300, 62271, 'sixty-two thousand two hundred seventy-one'),\n(21301, 10355, 'ten thousand three hundred fifty-five'),\n(21302, 43830, 'forty-three thousand eight hundred thirty'),\n(21303, 55963, 'fifty-five thousand nine hundred sixty-three'),\n(21304, 44179, 'forty-four thousand one hundred seventy-nine'),\n(21305, 70526, 'seventy thousand five hundred twenty-six'),\n(21306, 66918, 'sixty-six thousand nine hundred eighteen'),\n(21307, 74563, 'seventy-four thousand five hundred sixty-three'),\n(21308, 55721, 'fifty-five thousand seven hundred twenty-one'),\n(21309, 80998, 'eighty thousand nine hundred ninety-eight'),\n(21310, 75092, 'seventy-five thousand ninety-two'),\n(21311, 63547, 'sixty-three thousand five hundred forty-seven'),\n(21312, 42808, 'forty-two thousand eight hundred eight'),\n(21313, 51127, 'fifty-one thousand one hundred twenty-seven'),\n(21314, 57628, 'fifty-seven thousand six hundred twenty-eight'),\n(21315, 5571, 'five thousand five hundred seventy-one'),\n(21316, 34951, 'thirty-four thousand nine hundred fifty-one'),\n(21317, 49653, 'forty-nine thousand six hundred fifty-three'),\n(21318, 9291, 'nine thousand two hundred ninety-one'),\n(21319, 4081, 'four thousand eighty-one'),\n(21320, 19663, 'nineteen thousand six hundred sixty-three'),\n(21321, 48925, 'forty-eight thousand nine hundred twenty-five'),\n(21322, 79509, 'seventy-nine thousand five hundred nine'),\n(21323, 79806, 'seventy-nine thousand eight hundred six'),\n(21324, 78767, 'seventy-eight thousand seven hundred sixty-seven'),\n(21325, 84902, 'eighty-four thousand nine hundred two'),\n(21326, 99888, 'ninety-nine thousand eight hundred eighty-eight'),\n(21327, 3522, 'three thousand five hundred twenty-two'),\n(21328, 21109, 'twenty-one thousand one hundred nine'),\n(21329, 98058, 'ninety-eight thousand fifty-eight'),\n(21330, 54186, 'fifty-four thousand one hundred eighty-six'),\n(21331, 39741, 'thirty-nine thousand seven hundred forty-one'),\n(21332, 43235, 'forty-three thousand two hundred thirty-five'),\n(21333, 19156, 'nineteen thousand one hundred fifty-six'),\n(21334, 10510, 'ten thousand five hundred ten'),\n(21335, 31643, 'thirty-one thousand six hundred forty-three'),\n(21336, 9566, 'nine thousand five hundred sixty-six'),\n(21337, 50288, 'fifty thousand two hundred eighty-eight'),\n(21338, 28715, 'twenty-eight thousand seven hundred fifteen'),\n(21339, 84507, 'eighty-four thousand five hundred seven'),\n(21340, 45444, 'forty-five thousand four hundred forty-four'),\n(21341, 21281, 'twenty-one thousand two hundred eighty-one'),\n(21342, 24159, 'twenty-four thousand one hundred fifty-nine'),\n(21343, 5508, 'five thousand five hundred eight'),\n(21344, 58175, 'fifty-eight thousand one hundred seventy-five'),\n(21345, 48224, 'forty-eight thousand two hundred twenty-four'),\n(21346, 13788, 'thirteen thousand seven hundred eighty-eight'),\n(21347, 68088, 'sixty-eight thousand eighty-eight'),\n(21348, 71271, 'seventy-one thousand two hundred seventy-one'),\n(21349, 20924, 'twenty thousand nine hundred twenty-four'),\n(21350, 74144, 'seventy-four thousand one hundred forty-four'),\n(21351, 67743, 'sixty-seven thousand seven hundred forty-three'),\n(21352, 26943, 'twenty-six thousand nine hundred forty-three'),\n(21353, 87055, 'eighty-seven thousand fifty-five'),\n(21354, 59757, 'fifty-nine thousand seven hundred fifty-seven'),\n(21355, 7255, 'seven thousand two hundred fifty-five'),\n(21356, 47065, 'forty-seven thousand sixty-five'),\n(21357, 45059, 'forty-five thousand fifty-nine'),\n(21358, 58405, 'fifty-eight thousand four hundred five'),\n(21359, 71883, 'seventy-one thousand eight hundred eighty-three'),\n(21360, 36248, 'thirty-six thousand two hundred forty-eight'),\n(21361, 27295, 'twenty-seven thousand two hundred ninety-five'),\n(21362, 28052, 'twenty-eight thousand fifty-two'),\n(21363, 3389, 'three thousand three hundred eighty-nine'),\n(21364, 12103, 'twelve thousand one hundred three'),\n(21365, 60780, 'sixty thousand seven hundred eighty'),\n(21366, 25568, 'twenty-five thousand five hundred sixty-eight'),\n(21367, 55703, 'fifty-five thousand seven hundred three'),\n(21368, 40029, 'forty thousand twenty-nine'),\n(21369, 94415, 'ninety-four thousand four hundred fifteen'),\n(21370, 35220, 'thirty-five thousand two hundred twenty'),\n(21371, 93551, 'ninety-three thousand five hundred fifty-one'),\n(21372, 84038, 'eighty-four thousand thirty-eight'),\n(21373, 69803, 'sixty-nine thousand eight hundred three'),\n(21374, 951, 'nine hundred fifty-one'),\n(21375, 61826, 'sixty-one thousand eight hundred twenty-six'),\n(21376, 72289, 'seventy-two thousand two hundred eighty-nine'),\n(21377, 84471, 'eighty-four thousand four hundred seventy-one'),\n(21378, 92601, 'ninety-two thousand six hundred one'),\n(21379, 67244, 'sixty-seven thousand two hundred forty-four'),\n(21380, 42765, 'forty-two thousand seven hundred sixty-five'),\n(21381, 66064, 'sixty-six thousand sixty-four'),\n(21382, 22320, 'twenty-two thousand three hundred twenty'),\n(21383, 18236, 'eighteen thousand two hundred thirty-six'),\n(21384, 91917, 'ninety-one thousand nine hundred seventeen'),\n(21385, 2662, 'two thousand six hundred sixty-two'),\n(21386, 37101, 'thirty-seven thousand one hundred one'),\n(21387, 66798, 'sixty-six thousand seven hundred ninety-eight'),\n(21388, 76035, 'seventy-six thousand thirty-five'),\n(21389, 2521, 'two thousand five hundred twenty-one'),\n(21390, 97257, 'ninety-seven thousand two hundred fifty-seven'),\n(21391, 40530, 'forty thousand five hundred thirty'),\n(21392, 14260, 'fourteen thousand two hundred sixty'),\n(21393, 16119, 'sixteen thousand one hundred nineteen'),\n(21394, 36036, 'thirty-six thousand thirty-six'),\n(21395, 41565, 'forty-one thousand five hundred sixty-five'),\n(21396, 37810, 'thirty-seven thousand eight hundred ten'),\n(21397, 50550, 'fifty thousand five hundred fifty'),\n(21398, 49577, 'forty-nine thousand five hundred seventy-seven'),\n(21399, 27680, 'twenty-seven thousand six hundred eighty'),\n(21400, 10926, 'ten thousand nine hundred twenty-six'),\n(21401, 45283, 'forty-five thousand two hundred eighty-three'),\n(21402, 68537, 'sixty-eight thousand five hundred thirty-seven'),\n(21403, 26617, 'twenty-six thousand six hundred seventeen'),\n(21404, 18740, 'eighteen thousand seven hundred forty'),\n(21405, 42463, 'forty-two thousand four hundred sixty-three'),\n(21406, 12532, 'twelve thousand five hundred thirty-two'),\n(21407, 80124, 'eighty thousand one hundred twenty-four'),\n(21408, 19826, 'nineteen thousand eight hundred twenty-six'),\n(21409, 69897, 'sixty-nine thousand eight hundred ninety-seven'),\n(21410, 78470, 'seventy-eight thousand four hundred seventy'),\n(21411, 56030, 'fifty-six thousand thirty'),\n(21412, 83918, 'eighty-three thousand nine hundred eighteen'),\n(21413, 75789, 'seventy-five thousand seven hundred eighty-nine'),\n(21414, 1233, 'one thousand two hundred thirty-three'),\n(21415, 5891, 'five thousand eight hundred ninety-one'),\n(21416, 46630, 'forty-six thousand six hundred thirty'),\n(21417, 23254, 'twenty-three thousand two hundred fifty-four'),\n(21418, 48640, 'forty-eight thousand six hundred forty'),\n(21419, 86325, 'eighty-six thousand three hundred twenty-five'),\n(21420, 82811, 'eighty-two thousand eight hundred eleven'),\n(21421, 71513, 'seventy-one thousand five hundred thirteen'),\n(21422, 1958, 'one thousand nine hundred fifty-eight'),\n(21423, 77865, 'seventy-seven thousand eight hundred sixty-five'),\n(21424, 9870, 'nine thousand eight hundred seventy'),\n(21425, 10100, 'ten thousand one hundred'),\n(21426, 51703, 'fifty-one thousand seven hundred three'),\n(21427, 9168, 'nine thousand one hundred sixty-eight'),\n(21428, 9365, 'nine thousand three hundred sixty-five'),\n(21429, 62112, 'sixty-two thousand one hundred twelve'),\n(21430, 79294, 'seventy-nine thousand two hundred ninety-four'),\n(21431, 30245, 'thirty thousand two hundred forty-five'),\n(21432, 95801, 'ninety-five thousand eight hundred one'),\n(21433, 28917, 'twenty-eight thousand nine hundred seventeen'),\n(21434, 17123, 'seventeen thousand one hundred twenty-three'),\n(21435, 25328, 'twenty-five thousand three hundred twenty-eight'),\n(21436, 32028, 'thirty-two thousand twenty-eight'),\n(21437, 16943, 'sixteen thousand nine hundred forty-three'),\n(21438, 81412, 'eighty-one thousand four hundred twelve'),\n(21439, 79792, 'seventy-nine thousand seven hundred ninety-two'),\n(21440, 83297, 'eighty-three thousand two hundred ninety-seven'),\n(21441, 43353, 'forty-three thousand three hundred fifty-three'),\n(21442, 83353, 'eighty-three thousand three hundred fifty-three'),\n(21443, 89275, 'eighty-nine thousand two hundred seventy-five'),\n(21444, 64523, 'sixty-four thousand five hundred twenty-three'),\n(21445, 23035, 'twenty-three thousand thirty-five'),\n(21446, 81500, 'eighty-one thousand five hundred'),\n(21447, 55266, 'fifty-five thousand two hundred sixty-six'),\n(21448, 31283, 'thirty-one thousand two hundred eighty-three'),\n(21449, 89949, 'eighty-nine thousand nine hundred forty-nine'),\n(21450, 41992, 'forty-one thousand nine hundred ninety-two'),\n(21451, 72819, 'seventy-two thousand eight hundred nineteen'),\n(21452, 39944, 'thirty-nine thousand nine hundred forty-four'),\n(21453, 45443, 'forty-five thousand four hundred forty-three'),\n(21454, 34981, 'thirty-four thousand nine hundred eighty-one'),\n(21455, 76882, 'seventy-six thousand eight hundred eighty-two'),\n(21456, 90010, 'ninety thousand ten'),\n(21457, 10649, 'ten thousand six hundred forty-nine'),\n(21458, 45460, 'forty-five thousand four hundred sixty'),\n(21459, 75712, 'seventy-five thousand seven hundred twelve'),\n(21460, 30529, 'thirty thousand five hundred twenty-nine'),\n(21461, 34720, 'thirty-four thousand seven hundred twenty'),\n(21462, 99946, 'ninety-nine thousand nine hundred forty-six'),\n(21463, 6187, 'six thousand one hundred eighty-seven'),\n(21464, 35559, 'thirty-five thousand five hundred fifty-nine'),\n(21465, 77222, 'seventy-seven thousand two hundred twenty-two'),\n(21466, 64109, 'sixty-four thousand one hundred nine'),\n(21467, 87951, 'eighty-seven thousand nine hundred fifty-one'),\n(21468, 29678, 'twenty-nine thousand six hundred seventy-eight'),\n(21469, 81420, 'eighty-one thousand four hundred twenty'),\n(21470, 16756, 'sixteen thousand seven hundred fifty-six'),\n(21471, 60707, 'sixty thousand seven hundred seven'),\n(21472, 71565, 'seventy-one thousand five hundred sixty-five'),\n(21473, 57669, 'fifty-seven thousand six hundred sixty-nine'),\n(21474, 25236, 'twenty-five thousand two hundred thirty-six'),\n(21475, 73592, 'seventy-three thousand five hundred ninety-two'),\n(21476, 45065, 'forty-five thousand sixty-five'),\n(21477, 77407, 'seventy-seven thousand four hundred seven'),\n(21478, 18740, 'eighteen thousand seven hundred forty'),\n(21479, 33472, 'thirty-three thousand four hundred seventy-two'),\n(21480, 6584, 'six thousand five hundred eighty-four'),\n(21481, 43009, 'forty-three thousand nine'),\n(21482, 12734, 'twelve thousand seven hundred thirty-four'),\n(21483, 93723, 'ninety-three thousand seven hundred twenty-three'),\n(21484, 69125, 'sixty-nine thousand one hundred twenty-five'),\n(21485, 88676, 'eighty-eight thousand six hundred seventy-six'),\n(21486, 86508, 'eighty-six thousand five hundred eight'),\n(21487, 88232, 'eighty-eight thousand two hundred thirty-two'),\n(21488, 38620, 'thirty-eight thousand six hundred twenty'),\n(21489, 93937, 'ninety-three thousand nine hundred thirty-seven'),\n(21490, 58918, 'fifty-eight thousand nine hundred eighteen'),\n(21491, 76830, 'seventy-six thousand eight hundred thirty'),\n(21492, 57407, 'fifty-seven thousand four hundred seven'),\n(21493, 66109, 'sixty-six thousand one hundred nine'),\n(21494, 91703, 'ninety-one thousand seven hundred three'),\n(21495, 57177, 'fifty-seven thousand one hundred seventy-seven'),\n(21496, 67011, 'sixty-seven thousand eleven'),\n(21497, 84999, 'eighty-four thousand nine hundred ninety-nine'),\n(21498, 89840, 'eighty-nine thousand eight hundred forty'),\n(21499, 6576, 'six thousand five hundred seventy-six'),\n(21500, 43553, 'forty-three thousand five hundred fifty-three'),\n(21501, 43230, 'forty-three thousand two hundred thirty'),\n(21502, 96068, 'ninety-six thousand sixty-eight'),\n(21503, 30703, 'thirty thousand seven hundred three'),\n(21504, 32280, 'thirty-two thousand two hundred eighty'),\n(21505, 33298, 'thirty-three thousand two hundred ninety-eight'),\n(21506, 116, 'one hundred sixteen'),\n(21507, 27980, 'twenty-seven thousand nine hundred eighty'),\n(21508, 88998, 'eighty-eight thousand nine hundred ninety-eight'),\n(21509, 6671, 'six thousand six hundred seventy-one'),\n(21510, 77334, 'seventy-seven thousand three hundred thirty-four'),\n(21511, 52785, 'fifty-two thousand seven hundred eighty-five'),\n(21512, 98105, 'ninety-eight thousand one hundred five'),\n(21513, 69644, 'sixty-nine thousand six hundred forty-four'),\n(21514, 74249, 'seventy-four thousand two hundred forty-nine'),\n(21515, 16255, 'sixteen thousand two hundred fifty-five'),\n(21516, 52519, 'fifty-two thousand five hundred nineteen'),\n(21517, 46078, 'forty-six thousand seventy-eight'),\n(21518, 5927, 'five thousand nine hundred twenty-seven'),\n(21519, 22752, 'twenty-two thousand seven hundred fifty-two'),\n(21520, 10649, 'ten thousand six hundred forty-nine'),\n(21521, 63954, 'sixty-three thousand nine hundred fifty-four'),\n(21522, 4592, 'four thousand five hundred ninety-two'),\n(21523, 49700, 'forty-nine thousand seven hundred'),\n(21524, 55095, 'fifty-five thousand ninety-five'),\n(21525, 38976, 'thirty-eight thousand nine hundred seventy-six'),\n(21526, 94723, 'ninety-four thousand seven hundred twenty-three'),\n(21527, 408, 'four hundred eight'),\n(21528, 38388, 'thirty-eight thousand three hundred eighty-eight'),\n(21529, 47010, 'forty-seven thousand ten'),\n(21530, 84061, 'eighty-four thousand sixty-one'),\n(21531, 74309, 'seventy-four thousand three hundred nine'),\n(21532, 56711, 'fifty-six thousand seven hundred eleven'),\n(21533, 66772, 'sixty-six thousand seven hundred seventy-two'),\n(21534, 44829, 'forty-four thousand eight hundred twenty-nine'),\n(21535, 8300, 'eight thousand three hundred'),\n(21536, 95808, 'ninety-five thousand eight hundred eight'),\n(21537, 20464, 'twenty thousand four hundred sixty-four'),\n(21538, 27975, 'twenty-seven thousand nine hundred seventy-five'),\n(21539, 76707, 'seventy-six thousand seven hundred seven'),\n(21540, 35786, 'thirty-five thousand seven hundred eighty-six'),\n(21541, 35084, 'thirty-five thousand eighty-four'),\n(21542, 54583, 'fifty-four thousand five hundred eighty-three'),\n(21543, 69139, 'sixty-nine thousand one hundred thirty-nine'),\n(21544, 96266, 'ninety-six thousand two hundred sixty-six'),\n(21545, 35711, 'thirty-five thousand seven hundred eleven'),\n(21546, 89930, 'eighty-nine thousand nine hundred thirty'),\n(21547, 60631, 'sixty thousand six hundred thirty-one'),\n(21548, 24819, 'twenty-four thousand eight hundred nineteen'),\n(21549, 54954, 'fifty-four thousand nine hundred fifty-four'),\n(21550, 6180, 'six thousand one hundred eighty'),\n(21551, 47423, 'forty-seven thousand four hundred twenty-three'),\n(21552, 85461, 'eighty-five thousand four hundred sixty-one'),\n(21553, 24326, 'twenty-four thousand three hundred twenty-six'),\n(21554, 68429, 'sixty-eight thousand four hundred twenty-nine'),\n(21555, 36851, 'thirty-six thousand eight hundred fifty-one'),\n(21556, 43300, 'forty-three thousand three hundred'),\n(21557, 24218, 'twenty-four thousand two hundred eighteen'),\n(21558, 42179, 'forty-two thousand one hundred seventy-nine'),\n(21559, 10842, 'ten thousand eight hundred forty-two'),\n(21560, 60317, 'sixty thousand three hundred seventeen'),\n(21561, 71231, 'seventy-one thousand two hundred thirty-one'),\n(21562, 96755, 'ninety-six thousand seven hundred fifty-five'),\n(21563, 12073, 'twelve thousand seventy-three'),\n(21564, 21163, 'twenty-one thousand one hundred sixty-three'),\n(21565, 75360, 'seventy-five thousand three hundred sixty'),\n(21566, 51552, 'fifty-one thousand five hundred fifty-two'),\n(21567, 36510, 'thirty-six thousand five hundred ten'),\n(21568, 37249, 'thirty-seven thousand two hundred forty-nine'),\n(21569, 63270, 'sixty-three thousand two hundred seventy'),\n(21570, 16033, 'sixteen thousand thirty-three'),\n(21571, 7032, 'seven thousand thirty-two'),\n(21572, 92291, 'ninety-two thousand two hundred ninety-one'),\n(21573, 56017, 'fifty-six thousand seventeen'),\n(21574, 4585, 'four thousand five hundred eighty-five'),\n(21575, 56625, 'fifty-six thousand six hundred twenty-five'),\n(21576, 6612, 'six thousand six hundred twelve'),\n(21577, 47209, 'forty-seven thousand two hundred nine'),\n(21578, 14142, 'fourteen thousand one hundred forty-two'),\n(21579, 51063, 'fifty-one thousand sixty-three'),\n(21580, 24900, 'twenty-four thousand nine hundred'),\n(21581, 39629, 'thirty-nine thousand six hundred twenty-nine'),\n(21582, 72295, 'seventy-two thousand two hundred ninety-five'),\n(21583, 98051, 'ninety-eight thousand fifty-one'),\n(21584, 71596, 'seventy-one thousand five hundred ninety-six'),\n(21585, 23687, 'twenty-three thousand six hundred eighty-seven'),\n(21586, 34442, 'thirty-four thousand four hundred forty-two'),\n(21587, 18350, 'eighteen thousand three hundred fifty'),\n(21588, 72191, 'seventy-two thousand one hundred ninety-one'),\n(21589, 91121, 'ninety-one thousand one hundred twenty-one'),\n(21590, 3782, 'three thousand seven hundred eighty-two'),\n(21591, 59975, 'fifty-nine thousand nine hundred seventy-five'),\n(21592, 27149, 'twenty-seven thousand one hundred forty-nine'),\n(21593, 67852, 'sixty-seven thousand eight hundred fifty-two'),\n(21594, 43474, 'forty-three thousand four hundred seventy-four'),\n(21595, 51697, 'fifty-one thousand six hundred ninety-seven'),\n(21596, 20393, 'twenty thousand three hundred ninety-three'),\n(21597, 83618, 'eighty-three thousand six hundred eighteen'),\n(21598, 38053, 'thirty-eight thousand fifty-three'),\n(21599, 45218, 'forty-five thousand two hundred eighteen'),\n(21600, 74579, 'seventy-four thousand five hundred seventy-nine'),\n(21601, 31325, 'thirty-one thousand three hundred twenty-five'),\n(21602, 33140, 'thirty-three thousand one hundred forty'),\n(21603, 41784, 'forty-one thousand seven hundred eighty-four'),\n(21604, 53609, 'fifty-three thousand six hundred nine'),\n(21605, 74438, 'seventy-four thousand four hundred thirty-eight'),\n(21606, 56396, 'fifty-six thousand three hundred ninety-six'),\n(21607, 37728, 'thirty-seven thousand seven hundred twenty-eight'),\n(21608, 63645, 'sixty-three thousand six hundred forty-five'),\n(21609, 44882, 'forty-four thousand eight hundred eighty-two'),\n(21610, 97523, 'ninety-seven thousand five hundred twenty-three'),\n(21611, 45885, 'forty-five thousand eight hundred eighty-five'),\n(21612, 56069, 'fifty-six thousand sixty-nine'),\n(21613, 30273, 'thirty thousand two hundred seventy-three'),\n(21614, 36231, 'thirty-six thousand two hundred thirty-one'),\n(21615, 70235, 'seventy thousand two hundred thirty-five'),\n(21616, 19374, 'nineteen thousand three hundred seventy-four'),\n(21617, 48150, 'forty-eight thousand one hundred fifty'),\n(21618, 86039, 'eighty-six thousand thirty-nine'),\n(21619, 33692, 'thirty-three thousand six hundred ninety-two'),\n(21620, 18126, 'eighteen thousand one hundred twenty-six'),\n(21621, 9590, 'nine thousand five hundred ninety'),\n(21622, 52473, 'fifty-two thousand four hundred seventy-three'),\n(21623, 88196, 'eighty-eight thousand one hundred ninety-six'),\n(21624, 72036, 'seventy-two thousand thirty-six'),\n(21625, 6648, 'six thousand six hundred forty-eight'),\n(21626, 22042, 'twenty-two thousand forty-two'),\n(21627, 55284, 'fifty-five thousand two hundred eighty-four'),\n(21628, 58590, 'fifty-eight thousand five hundred ninety'),\n(21629, 75661, 'seventy-five thousand six hundred sixty-one'),\n(21630, 19633, 'nineteen thousand six hundred thirty-three'),\n(21631, 93634, 'ninety-three thousand six hundred thirty-four'),\n(21632, 5846, 'five thousand eight hundred forty-six'),\n(21633, 63757, 'sixty-three thousand seven hundred fifty-seven'),\n(21634, 19301, 'nineteen thousand three hundred one'),\n(21635, 23088, 'twenty-three thousand eighty-eight'),\n(21636, 21377, 'twenty-one thousand three hundred seventy-seven'),\n(21637, 22607, 'twenty-two thousand six hundred seven'),\n(21638, 71996, 'seventy-one thousand nine hundred ninety-six'),\n(21639, 93096, 'ninety-three thousand ninety-six'),\n(21640, 67957, 'sixty-seven thousand nine hundred fifty-seven'),\n(21641, 40901, 'forty thousand nine hundred one'),\n(21642, 21383, 'twenty-one thousand three hundred eighty-three'),\n(21643, 38487, 'thirty-eight thousand four hundred eighty-seven'),\n(21644, 11345, 'eleven thousand three hundred forty-five'),\n(21645, 46675, 'forty-six thousand six hundred seventy-five'),\n(21646, 54171, 'fifty-four thousand one hundred seventy-one'),\n(21647, 48164, 'forty-eight thousand one hundred sixty-four'),\n(21648, 82545, 'eighty-two thousand five hundred forty-five'),\n(21649, 76308, 'seventy-six thousand three hundred eight'),\n(21650, 87557, 'eighty-seven thousand five hundred fifty-seven'),\n(21651, 2003, 'two thousand three'),\n(21652, 25270, 'twenty-five thousand two hundred seventy'),\n(21653, 44270, 'forty-four thousand two hundred seventy'),\n(21654, 44094, 'forty-four thousand ninety-four'),\n(21655, 90136, 'ninety thousand one hundred thirty-six'),\n(21656, 23592, 'twenty-three thousand five hundred ninety-two'),\n(21657, 61371, 'sixty-one thousand three hundred seventy-one'),\n(21658, 7358, 'seven thousand three hundred fifty-eight'),\n(21659, 48185, 'forty-eight thousand one hundred eighty-five'),\n(21660, 44888, 'forty-four thousand eight hundred eighty-eight'),\n(21661, 98955, 'ninety-eight thousand nine hundred fifty-five'),\n(21662, 79753, 'seventy-nine thousand seven hundred fifty-three'),\n(21663, 56902, 'fifty-six thousand nine hundred two'),\n(21664, 89821, 'eighty-nine thousand eight hundred twenty-one'),\n(21665, 68030, 'sixty-eight thousand thirty'),\n(21666, 11478, 'eleven thousand four hundred seventy-eight'),\n(21667, 27302, 'twenty-seven thousand three hundred two'),\n(21668, 55906, 'fifty-five thousand nine hundred six'),\n(21669, 87981, 'eighty-seven thousand nine hundred eighty-one'),\n(21670, 57950, 'fifty-seven thousand nine hundred fifty'),\n(21671, 97520, 'ninety-seven thousand five hundred twenty'),\n(21672, 6202, 'six thousand two hundred two'),\n(21673, 3889, 'three thousand eight hundred eighty-nine'),\n(21674, 3999, 'three thousand nine hundred ninety-nine'),\n(21675, 13411, 'thirteen thousand four hundred eleven'),\n(21676, 93780, 'ninety-three thousand seven hundred eighty'),\n(21677, 49455, 'forty-nine thousand four hundred fifty-five'),\n(21678, 77355, 'seventy-seven thousand three hundred fifty-five'),\n(21679, 7582, 'seven thousand five hundred eighty-two'),\n(21680, 82564, 'eighty-two thousand five hundred sixty-four'),\n(21681, 22752, 'twenty-two thousand seven hundred fifty-two'),\n(21682, 43913, 'forty-three thousand nine hundred thirteen'),\n(21683, 896, 'eight hundred ninety-six'),\n(21684, 17095, 'seventeen thousand ninety-five'),\n(21685, 76382, 'seventy-six thousand three hundred eighty-two'),\n(21686, 57089, 'fifty-seven thousand eighty-nine'),\n(21687, 25359, 'twenty-five thousand three hundred fifty-nine'),\n(21688, 97498, 'ninety-seven thousand four hundred ninety-eight'),\n(21689, 82681, 'eighty-two thousand six hundred eighty-one'),\n(21690, 91903, 'ninety-one thousand nine hundred three'),\n(21691, 53041, 'fifty-three thousand forty-one'),\n(21692, 18997, 'eighteen thousand nine hundred ninety-seven'),\n(21693, 11013, 'eleven thousand thirteen'),\n(21694, 90225, 'ninety thousand two hundred twenty-five'),\n(21695, 51074, 'fifty-one thousand seventy-four'),\n(21696, 51715, 'fifty-one thousand seven hundred fifteen'),\n(21697, 95875, 'ninety-five thousand eight hundred seventy-five'),\n(21698, 35354, 'thirty-five thousand three hundred fifty-four'),\n(21699, 76788, 'seventy-six thousand seven hundred eighty-eight'),\n(21700, 68918, 'sixty-eight thousand nine hundred eighteen'),\n(21701, 94228, 'ninety-four thousand two hundred twenty-eight'),\n(21702, 59766, 'fifty-nine thousand seven hundred sixty-six'),\n(21703, 33003, 'thirty-three thousand three'),\n(21704, 98826, 'ninety-eight thousand eight hundred twenty-six'),\n(21705, 42836, 'forty-two thousand eight hundred thirty-six'),\n(21706, 8421, 'eight thousand four hundred twenty-one'),\n(21707, 18343, 'eighteen thousand three hundred forty-three'),\n(21708, 31312, 'thirty-one thousand three hundred twelve'),\n(21709, 24263, 'twenty-four thousand two hundred sixty-three'),\n(21710, 6077, 'six thousand seventy-seven'),\n(21711, 85141, 'eighty-five thousand one hundred forty-one'),\n(21712, 93503, 'ninety-three thousand five hundred three'),\n(21713, 27763, 'twenty-seven thousand seven hundred sixty-three'),\n(21714, 59264, 'fifty-nine thousand two hundred sixty-four'),\n(21715, 86597, 'eighty-six thousand five hundred ninety-seven'),\n(21716, 21684, 'twenty-one thousand six hundred eighty-four'),\n(21717, 84336, 'eighty-four thousand three hundred thirty-six'),\n(21718, 39006, 'thirty-nine thousand six'),\n(21719, 75448, 'seventy-five thousand four hundred forty-eight'),\n(21720, 64955, 'sixty-four thousand nine hundred fifty-five'),\n(21721, 80306, 'eighty thousand three hundred six'),\n(21722, 4259, 'four thousand two hundred fifty-nine'),\n(21723, 20127, 'twenty thousand one hundred twenty-seven'),\n(21724, 54455, 'fifty-four thousand four hundred fifty-five'),\n(21725, 53094, 'fifty-three thousand ninety-four'),\n(21726, 44155, 'forty-four thousand one hundred fifty-five'),\n(21727, 55567, 'fifty-five thousand five hundred sixty-seven'),\n(21728, 42008, 'forty-two thousand eight'),\n(21729, 61458, 'sixty-one thousand four hundred fifty-eight'),\n(21730, 62861, 'sixty-two thousand eight hundred sixty-one'),\n(21731, 45073, 'forty-five thousand seventy-three'),\n(21732, 56154, 'fifty-six thousand one hundred fifty-four'),\n(21733, 57795, 'fifty-seven thousand seven hundred ninety-five'),\n(21734, 16759, 'sixteen thousand seven hundred fifty-nine'),\n(21735, 81128, 'eighty-one thousand one hundred twenty-eight'),\n(21736, 15609, 'fifteen thousand six hundred nine'),\n(21737, 21224, 'twenty-one thousand two hundred twenty-four'),\n(21738, 70196, 'seventy thousand one hundred ninety-six'),\n(21739, 70886, 'seventy thousand eight hundred eighty-six'),\n(21740, 95113, 'ninety-five thousand one hundred thirteen'),\n(21741, 89945, 'eighty-nine thousand nine hundred forty-five'),\n(21742, 55340, 'fifty-five thousand three hundred forty'),\n(21743, 24318, 'twenty-four thousand three hundred eighteen'),\n(21744, 47877, 'forty-seven thousand eight hundred seventy-seven'),\n(21745, 48828, 'forty-eight thousand eight hundred twenty-eight'),\n(21746, 58394, 'fifty-eight thousand three hundred ninety-four'),\n(21747, 97857, 'ninety-seven thousand eight hundred fifty-seven'),\n(21748, 54130, 'fifty-four thousand one hundred thirty'),\n(21749, 47990, 'forty-seven thousand nine hundred ninety'),\n(21750, 45847, 'forty-five thousand eight hundred forty-seven'),\n(21751, 72573, 'seventy-two thousand five hundred seventy-three'),\n(21752, 6878, 'six thousand eight hundred seventy-eight'),\n(21753, 98074, 'ninety-eight thousand seventy-four'),\n(21754, 83681, 'eighty-three thousand six hundred eighty-one'),\n(21755, 37513, 'thirty-seven thousand five hundred thirteen'),\n(21756, 71943, 'seventy-one thousand nine hundred forty-three'),\n(21757, 72246, 'seventy-two thousand two hundred forty-six'),\n(21758, 5865, 'five thousand eight hundred sixty-five'),\n(21759, 78366, 'seventy-eight thousand three hundred sixty-six'),\n(21760, 87169, 'eighty-seven thousand one hundred sixty-nine'),\n(21761, 64368, 'sixty-four thousand three hundred sixty-eight'),\n(21762, 82291, 'eighty-two thousand two hundred ninety-one'),\n(21763, 63016, 'sixty-three thousand sixteen'),\n(21764, 16322, 'sixteen thousand three hundred twenty-two'),\n(21765, 92715, 'ninety-two thousand seven hundred fifteen'),\n(21766, 92702, 'ninety-two thousand seven hundred two'),\n(21767, 71967, 'seventy-one thousand nine hundred sixty-seven'),\n(21768, 47045, 'forty-seven thousand forty-five'),\n(21769, 27418, 'twenty-seven thousand four hundred eighteen'),\n(21770, 75177, 'seventy-five thousand one hundred seventy-seven'),\n(21771, 4830, 'four thousand eight hundred thirty'),\n(21772, 88469, 'eighty-eight thousand four hundred sixty-nine'),\n(21773, 59759, 'fifty-nine thousand seven hundred fifty-nine'),\n(21774, 34590, 'thirty-four thousand five hundred ninety'),\n(21775, 53479, 'fifty-three thousand four hundred seventy-nine'),\n(21776, 91276, 'ninety-one thousand two hundred seventy-six'),\n(21777, 37153, 'thirty-seven thousand one hundred fifty-three'),\n(21778, 69469, 'sixty-nine thousand four hundred sixty-nine'),\n(21779, 15184, 'fifteen thousand one hundred eighty-four'),\n(21780, 81515, 'eighty-one thousand five hundred fifteen'),\n(21781, 30383, 'thirty thousand three hundred eighty-three'),\n(21782, 29014, 'twenty-nine thousand fourteen'),\n(21783, 30867, 'thirty thousand eight hundred sixty-seven'),\n(21784, 70006, 'seventy thousand six'),\n(21785, 15993, 'fifteen thousand nine hundred ninety-three'),\n(21786, 32971, 'thirty-two thousand nine hundred seventy-one'),\n(21787, 41041, 'forty-one thousand forty-one'),\n(21788, 70971, 'seventy thousand nine hundred seventy-one'),\n(21789, 73748, 'seventy-three thousand seven hundred forty-eight'),\n(21790, 96042, 'ninety-six thousand forty-two'),\n(21791, 42693, 'forty-two thousand six hundred ninety-three'),\n(21792, 45091, 'forty-five thousand ninety-one'),\n(21793, 27338, 'twenty-seven thousand three hundred thirty-eight'),\n(21794, 6813, 'six thousand eight hundred thirteen'),\n(21795, 71006, 'seventy-one thousand six'),\n(21796, 7348, 'seven thousand three hundred forty-eight'),\n(21797, 15337, 'fifteen thousand three hundred thirty-seven'),\n(21798, 15195, 'fifteen thousand one hundred ninety-five'),\n(21799, 2759, 'two thousand seven hundred fifty-nine'),\n(21800, 57493, 'fifty-seven thousand four hundred ninety-three'),\n(21801, 51435, 'fifty-one thousand four hundred thirty-five'),\n(21802, 88032, 'eighty-eight thousand thirty-two'),\n(21803, 96420, 'ninety-six thousand four hundred twenty'),\n(21804, 3243, 'three thousand two hundred forty-three'),\n(21805, 15372, 'fifteen thousand three hundred seventy-two'),\n(21806, 30027, 'thirty thousand twenty-seven'),\n(21807, 22357, 'twenty-two thousand three hundred fifty-seven'),\n(21808, 45717, 'forty-five thousand seven hundred seventeen'),\n(21809, 86727, 'eighty-six thousand seven hundred twenty-seven'),\n(21810, 31298, 'thirty-one thousand two hundred ninety-eight'),\n(21811, 15970, 'fifteen thousand nine hundred seventy'),\n(21812, 35482, 'thirty-five thousand four hundred eighty-two'),\n(21813, 17327, 'seventeen thousand three hundred twenty-seven'),\n(21814, 83067, 'eighty-three thousand sixty-seven'),\n(21815, 69417, 'sixty-nine thousand four hundred seventeen'),\n(21816, 80719, 'eighty thousand seven hundred nineteen'),\n(21817, 17721, 'seventeen thousand seven hundred twenty-one'),\n(21818, 40205, 'forty thousand two hundred five'),\n(21819, 54727, 'fifty-four thousand seven hundred twenty-seven'),\n(21820, 64993, 'sixty-four thousand nine hundred ninety-three'),\n(21821, 52018, 'fifty-two thousand eighteen'),\n(21822, 18158, 'eighteen thousand one hundred fifty-eight'),\n(21823, 10825, 'ten thousand eight hundred twenty-five'),\n(21824, 75146, 'seventy-five thousand one hundred forty-six'),\n(21825, 17154, 'seventeen thousand one hundred fifty-four'),\n(21826, 13380, 'thirteen thousand three hundred eighty'),\n(21827, 65122, 'sixty-five thousand one hundred twenty-two'),\n(21828, 10834, 'ten thousand eight hundred thirty-four'),\n(21829, 84986, 'eighty-four thousand nine hundred eighty-six'),\n(21830, 7418, 'seven thousand four hundred eighteen'),\n(21831, 89234, 'eighty-nine thousand two hundred thirty-four'),\n(21832, 43613, 'forty-three thousand six hundred thirteen'),\n(21833, 10496, 'ten thousand four hundred ninety-six'),\n(21834, 71044, 'seventy-one thousand forty-four'),\n(21835, 8959, 'eight thousand nine hundred fifty-nine'),\n(21836, 66992, 'sixty-six thousand nine hundred ninety-two'),\n(21837, 95021, 'ninety-five thousand twenty-one'),\n(21838, 47158, 'forty-seven thousand one hundred fifty-eight'),\n(21839, 7794, 'seven thousand seven hundred ninety-four'),\n(21840, 90488, 'ninety thousand four hundred eighty-eight'),\n(21841, 71718, 'seventy-one thousand seven hundred eighteen'),\n(21842, 44411, 'forty-four thousand four hundred eleven'),\n(21843, 6845, 'six thousand eight hundred forty-five'),\n(21844, 50752, 'fifty thousand seven hundred fifty-two'),\n(21845, 51346, 'fifty-one thousand three hundred forty-six'),\n(21846, 29765, 'twenty-nine thousand seven hundred sixty-five'),\n(21847, 10943, 'ten thousand nine hundred forty-three'),\n(21848, 54093, 'fifty-four thousand ninety-three'),\n(21849, 44924, 'forty-four thousand nine hundred twenty-four'),\n(21850, 14378, 'fourteen thousand three hundred seventy-eight'),\n(21851, 44930, 'forty-four thousand nine hundred thirty'),\n(21852, 61027, 'sixty-one thousand twenty-seven'),\n(21853, 51011, 'fifty-one thousand eleven'),\n(21854, 14274, 'fourteen thousand two hundred seventy-four'),\n(21855, 30475, 'thirty thousand four hundred seventy-five'),\n(21856, 577, 'five hundred seventy-seven'),\n(21857, 52683, 'fifty-two thousand six hundred eighty-three'),\n(21858, 80265, 'eighty thousand two hundred sixty-five'),\n(21859, 50849, 'fifty thousand eight hundred forty-nine'),\n(21860, 22498, 'twenty-two thousand four hundred ninety-eight'),\n(21861, 20172, 'twenty thousand one hundred seventy-two'),\n(21862, 1224, 'one thousand two hundred twenty-four'),\n(21863, 93405, 'ninety-three thousand four hundred five'),\n(21864, 80266, 'eighty thousand two hundred sixty-six'),\n(21865, 66113, 'sixty-six thousand one hundred thirteen'),\n(21866, 53898, 'fifty-three thousand eight hundred ninety-eight'),\n(21867, 92036, 'ninety-two thousand thirty-six'),\n(21868, 17306, 'seventeen thousand three hundred six'),\n(21869, 71224, 'seventy-one thousand two hundred twenty-four'),\n(21870, 33162, 'thirty-three thousand one hundred sixty-two'),\n(21871, 44034, 'forty-four thousand thirty-four'),\n(21872, 87085, 'eighty-seven thousand eighty-five'),\n(21873, 6318, 'six thousand three hundred eighteen'),\n(21874, 33370, 'thirty-three thousand three hundred seventy'),\n(21875, 23193, 'twenty-three thousand one hundred ninety-three'),\n(21876, 50420, 'fifty thousand four hundred twenty'),\n(21877, 88812, 'eighty-eight thousand eight hundred twelve'),\n(21878, 40410, 'forty thousand four hundred ten'),\n(21879, 85410, 'eighty-five thousand four hundred ten'),\n(21880, 72488, 'seventy-two thousand four hundred eighty-eight'),\n(21881, 5319, 'five thousand three hundred nineteen'),\n(21882, 48327, 'forty-eight thousand three hundred twenty-seven'),\n(21883, 12073, 'twelve thousand seventy-three'),\n(21884, 49639, 'forty-nine thousand six hundred thirty-nine'),\n(21885, 14911, 'fourteen thousand nine hundred eleven'),\n(21886, 40335, 'forty thousand three hundred thirty-five'),\n(21887, 95325, 'ninety-five thousand three hundred twenty-five'),\n(21888, 74576, 'seventy-four thousand five hundred seventy-six'),\n(21889, 25168, 'twenty-five thousand one hundred sixty-eight'),\n(21890, 27347, 'twenty-seven thousand three hundred forty-seven'),\n(21891, 18439, 'eighteen thousand four hundred thirty-nine'),\n(21892, 5233, 'five thousand two hundred thirty-three'),\n(21893, 57698, 'fifty-seven thousand six hundred ninety-eight'),\n(21894, 57402, 'fifty-seven thousand four hundred two'),\n(21895, 4832, 'four thousand eight hundred thirty-two'),\n(21896, 45902, 'forty-five thousand nine hundred two'),\n(21897, 34049, 'thirty-four thousand forty-nine'),\n(21898, 84462, 'eighty-four thousand four hundred sixty-two'),\n(21899, 95616, 'ninety-five thousand six hundred sixteen'),\n(21900, 12024, 'twelve thousand twenty-four'),\n(21901, 98842, 'ninety-eight thousand eight hundred forty-two'),\n(21902, 94643, 'ninety-four thousand six hundred forty-three'),\n(21903, 85409, 'eighty-five thousand four hundred nine'),\n(21904, 99178, 'ninety-nine thousand one hundred seventy-eight'),\n(21905, 87776, 'eighty-seven thousand seven hundred seventy-six'),\n(21906, 60231, 'sixty thousand two hundred thirty-one'),\n(21907, 32094, 'thirty-two thousand ninety-four'),\n(21908, 56176, 'fifty-six thousand one hundred seventy-six'),\n(21909, 56485, 'fifty-six thousand four hundred eighty-five'),\n(21910, 99822, 'ninety-nine thousand eight hundred twenty-two'),\n(21911, 68217, 'sixty-eight thousand two hundred seventeen'),\n(21912, 5074, 'five thousand seventy-four'),\n(21913, 42960, 'forty-two thousand nine hundred sixty'),\n(21914, 97703, 'ninety-seven thousand seven hundred three'),\n(21915, 88512, 'eighty-eight thousand five hundred twelve'),\n(21916, 57447, 'fifty-seven thousand four hundred forty-seven'),\n(21917, 76208, 'seventy-six thousand two hundred eight'),\n(21918, 3829, 'three thousand eight hundred twenty-nine'),\n(21919, 39949, 'thirty-nine thousand nine hundred forty-nine'),\n(21920, 25143, 'twenty-five thousand one hundred forty-three'),\n(21921, 34174, 'thirty-four thousand one hundred seventy-four'),\n(21922, 56170, 'fifty-six thousand one hundred seventy'),\n(21923, 41775, 'forty-one thousand seven hundred seventy-five'),\n(21924, 62020, 'sixty-two thousand twenty'),\n(21925, 39601, 'thirty-nine thousand six hundred one'),\n(21926, 90291, 'ninety thousand two hundred ninety-one'),\n(21927, 11348, 'eleven thousand three hundred forty-eight'),\n(21928, 44779, 'forty-four thousand seven hundred seventy-nine'),\n(21929, 16196, 'sixteen thousand one hundred ninety-six'),\n(21930, 30082, 'thirty thousand eighty-two'),\n(21931, 331, 'three hundred thirty-one'),\n(21932, 94197, 'ninety-four thousand one hundred ninety-seven'),\n(21933, 44647, 'forty-four thousand six hundred forty-seven'),\n(21934, 13987, 'thirteen thousand nine hundred eighty-seven'),\n(21935, 75456, 'seventy-five thousand four hundred fifty-six'),\n(21936, 93328, 'ninety-three thousand three hundred twenty-eight'),\n(21937, 77801, 'seventy-seven thousand eight hundred one'),\n(21938, 37686, 'thirty-seven thousand six hundred eighty-six'),\n(21939, 6634, 'six thousand six hundred thirty-four'),\n(21940, 97951, 'ninety-seven thousand nine hundred fifty-one'),\n(21941, 99364, 'ninety-nine thousand three hundred sixty-four'),\n(21942, 96015, 'ninety-six thousand fifteen'),\n(21943, 20453, 'twenty thousand four hundred fifty-three'),\n(21944, 74139, 'seventy-four thousand one hundred thirty-nine'),\n(21945, 357, 'three hundred fifty-seven'),\n(21946, 31582, 'thirty-one thousand five hundred eighty-two'),\n(21947, 9979, 'nine thousand nine hundred seventy-nine'),\n(21948, 93020, 'ninety-three thousand twenty'),\n(21949, 10926, 'ten thousand nine hundred twenty-six'),\n(21950, 59299, 'fifty-nine thousand two hundred ninety-nine'),\n(21951, 98702, 'ninety-eight thousand seven hundred two'),\n(21952, 82263, 'eighty-two thousand two hundred sixty-three'),\n(21953, 10773, 'ten thousand seven hundred seventy-three'),\n(21954, 15341, 'fifteen thousand three hundred forty-one'),\n(21955, 68265, 'sixty-eight thousand two hundred sixty-five'),\n(21956, 77955, 'seventy-seven thousand nine hundred fifty-five'),\n(21957, 58731, 'fifty-eight thousand seven hundred thirty-one'),\n(21958, 14185, 'fourteen thousand one hundred eighty-five'),\n(21959, 85254, 'eighty-five thousand two hundred fifty-four'),\n(21960, 61502, 'sixty-one thousand five hundred two'),\n(21961, 86552, 'eighty-six thousand five hundred fifty-two'),\n(21962, 41630, 'forty-one thousand six hundred thirty'),\n(21963, 41950, 'forty-one thousand nine hundred fifty'),\n(21964, 57939, 'fifty-seven thousand nine hundred thirty-nine'),\n(21965, 40000, 'forty thousand'),\n(21966, 60530, 'sixty thousand five hundred thirty'),\n(21967, 18034, 'eighteen thousand thirty-four'),\n(21968, 84431, 'eighty-four thousand four hundred thirty-one'),\n(21969, 15179, 'fifteen thousand one hundred seventy-nine'),\n(21970, 74911, 'seventy-four thousand nine hundred eleven'),\n(21971, 84538, 'eighty-four thousand five hundred thirty-eight'),\n(21972, 2799, 'two thousand seven hundred ninety-nine'),\n(21973, 85043, 'eighty-five thousand forty-three'),\n(21974, 42748, 'forty-two thousand seven hundred forty-eight'),\n(21975, 84672, 'eighty-four thousand six hundred seventy-two'),\n(21976, 21016, 'twenty-one thousand sixteen'),\n(21977, 91151, 'ninety-one thousand one hundred fifty-one'),\n(21978, 31399, 'thirty-one thousand three hundred ninety-nine'),\n(21979, 582, 'five hundred eighty-two'),\n(21980, 77696, 'seventy-seven thousand six hundred ninety-six'),\n(21981, 15770, 'fifteen thousand seven hundred seventy'),\n(21982, 77355, 'seventy-seven thousand three hundred fifty-five'),\n(21983, 78835, 'seventy-eight thousand eight hundred thirty-five'),\n(21984, 49318, 'forty-nine thousand three hundred eighteen'),\n(21985, 38851, 'thirty-eight thousand eight hundred fifty-one'),\n(21986, 95041, 'ninety-five thousand forty-one'),\n(21987, 17660, 'seventeen thousand six hundred sixty'),\n(21988, 36904, 'thirty-six thousand nine hundred four'),\n(21989, 18448, 'eighteen thousand four hundred forty-eight'),\n(21990, 32593, 'thirty-two thousand five hundred ninety-three'),\n(21991, 30738, 'thirty thousand seven hundred thirty-eight'),\n(21992, 51261, 'fifty-one thousand two hundred sixty-one'),\n(21993, 31530, 'thirty-one thousand five hundred thirty'),\n(21994, 7079, 'seven thousand seventy-nine'),\n(21995, 24763, 'twenty-four thousand seven hundred sixty-three'),\n(21996, 13091, 'thirteen thousand ninety-one'),\n(21997, 83091, 'eighty-three thousand ninety-one'),\n(21998, 86734, 'eighty-six thousand seven hundred thirty-four'),\n(21999, 97011, 'ninety-seven thousand eleven'),\n(22000, 69655, 'sixty-nine thousand six hundred fifty-five'),\n(22001, 93224, 'ninety-three thousand two hundred twenty-four'),\n(22002, 47303, 'forty-seven thousand three hundred three'),\n(22003, 82881, 'eighty-two thousand eight hundred eighty-one'),\n(22004, 76860, 'seventy-six thousand eight hundred sixty'),\n(22005, 32044, 'thirty-two thousand forty-four'),\n(22006, 34741, 'thirty-four thousand seven hundred forty-one'),\n(22007, 4946, 'four thousand nine hundred forty-six'),\n(22008, 93278, 'ninety-three thousand two hundred seventy-eight'),\n(22009, 99396, 'ninety-nine thousand three hundred ninety-six'),\n(22010, 66752, 'sixty-six thousand seven hundred fifty-two'),\n(22011, 73630, 'seventy-three thousand six hundred thirty'),\n(22012, 49462, 'forty-nine thousand four hundred sixty-two'),\n(22013, 12303, 'twelve thousand three hundred three'),\n(22014, 60299, 'sixty thousand two hundred ninety-nine'),\n(22015, 33698, 'thirty-three thousand six hundred ninety-eight'),\n(22016, 94715, 'ninety-four thousand seven hundred fifteen'),\n(22017, 69889, 'sixty-nine thousand eight hundred eighty-nine'),\n(22018, 78804, 'seventy-eight thousand eight hundred four'),\n(22019, 31610, 'thirty-one thousand six hundred ten'),\n(22020, 75894, 'seventy-five thousand eight hundred ninety-four'),\n(22021, 13506, 'thirteen thousand five hundred six'),\n(22022, 37136, 'thirty-seven thousand one hundred thirty-six'),\n(22023, 73834, 'seventy-three thousand eight hundred thirty-four'),\n(22024, 18252, 'eighteen thousand two hundred fifty-two'),\n(22025, 7241, 'seven thousand two hundred forty-one'),\n(22026, 21953, 'twenty-one thousand nine hundred fifty-three'),\n(22027, 15659, 'fifteen thousand six hundred fifty-nine'),\n(22028, 4825, 'four thousand eight hundred twenty-five'),\n(22029, 40827, 'forty thousand eight hundred twenty-seven'),\n(22030, 94097, 'ninety-four thousand ninety-seven'),\n(22031, 22920, 'twenty-two thousand nine hundred twenty'),\n(22032, 86926, 'eighty-six thousand nine hundred twenty-six'),\n(22033, 4580, 'four thousand five hundred eighty'),\n(22034, 17248, 'seventeen thousand two hundred forty-eight'),\n(22035, 69469, 'sixty-nine thousand four hundred sixty-nine'),\n(22036, 55195, 'fifty-five thousand one hundred ninety-five'),\n(22037, 31872, 'thirty-one thousand eight hundred seventy-two'),\n(22038, 57767, 'fifty-seven thousand seven hundred sixty-seven'),\n(22039, 53819, 'fifty-three thousand eight hundred nineteen'),\n(22040, 92343, 'ninety-two thousand three hundred forty-three'),\n(22041, 20570, 'twenty thousand five hundred seventy'),\n(22042, 34785, 'thirty-four thousand seven hundred eighty-five'),\n(22043, 6321, 'six thousand three hundred twenty-one'),\n(22044, 55777, 'fifty-five thousand seven hundred seventy-seven'),\n(22045, 56007, 'fifty-six thousand seven'),\n(22046, 80652, 'eighty thousand six hundred fifty-two'),\n(22047, 87857, 'eighty-seven thousand eight hundred fifty-seven'),\n(22048, 55133, 'fifty-five thousand one hundred thirty-three'),\n(22049, 81629, 'eighty-one thousand six hundred twenty-nine'),\n(22050, 94774, 'ninety-four thousand seven hundred seventy-four'),\n(22051, 83117, 'eighty-three thousand one hundred seventeen'),\n(22052, 96431, 'ninety-six thousand four hundred thirty-one'),\n(22053, 14775, 'fourteen thousand seven hundred seventy-five'),\n(22054, 3913, 'three thousand nine hundred thirteen'),\n(22055, 56632, 'fifty-six thousand six hundred thirty-two'),\n(22056, 24913, 'twenty-four thousand nine hundred thirteen'),\n(22057, 49614, 'forty-nine thousand six hundred fourteen'),\n(22058, 91715, 'ninety-one thousand seven hundred fifteen'),\n(22059, 96327, 'ninety-six thousand three hundred twenty-seven'),\n(22060, 59990, 'fifty-nine thousand nine hundred ninety'),\n(22061, 49349, 'forty-nine thousand three hundred forty-nine'),\n(22062, 7848, 'seven thousand eight hundred forty-eight'),\n(22063, 93977, 'ninety-three thousand nine hundred seventy-seven'),\n(22064, 6369, 'six thousand three hundred sixty-nine'),\n(22065, 84992, 'eighty-four thousand nine hundred ninety-two'),\n(22066, 25892, 'twenty-five thousand eight hundred ninety-two'),\n(22067, 59508, 'fifty-nine thousand five hundred eight'),\n(22068, 54796, 'fifty-four thousand seven hundred ninety-six'),\n(22069, 51376, 'fifty-one thousand three hundred seventy-six'),\n(22070, 98728, 'ninety-eight thousand seven hundred twenty-eight'),\n(22071, 603, 'six hundred three'),\n(22072, 3197, 'three thousand one hundred ninety-seven'),\n(22073, 2058, 'two thousand fifty-eight'),\n(22074, 63116, 'sixty-three thousand one hundred sixteen'),\n(22075, 32420, 'thirty-two thousand four hundred twenty'),\n(22076, 21816, 'twenty-one thousand eight hundred sixteen'),\n(22077, 55083, 'fifty-five thousand eighty-three'),\n(22078, 24875, 'twenty-four thousand eight hundred seventy-five'),\n(22079, 17915, 'seventeen thousand nine hundred fifteen'),\n(22080, 6023, 'six thousand twenty-three'),\n(22081, 18300, 'eighteen thousand three hundred'),\n(22082, 25723, 'twenty-five thousand seven hundred twenty-three'),\n(22083, 46304, 'forty-six thousand three hundred four'),\n(22084, 99753, 'ninety-nine thousand seven hundred fifty-three'),\n(22085, 84480, 'eighty-four thousand four hundred eighty'),\n(22086, 74206, 'seventy-four thousand two hundred six'),\n(22087, 21578, 'twenty-one thousand five hundred seventy-eight'),\n(22088, 99796, 'ninety-nine thousand seven hundred ninety-six'),\n(22089, 4436, 'four thousand four hundred thirty-six'),\n(22090, 9006, 'nine thousand six'),\n(22091, 78406, 'seventy-eight thousand four hundred six'),\n(22092, 40100, 'forty thousand one hundred'),\n(22093, 57556, 'fifty-seven thousand five hundred fifty-six'),\n(22094, 17043, 'seventeen thousand forty-three'),\n(22095, 46318, 'forty-six thousand three hundred eighteen'),\n(22096, 62851, 'sixty-two thousand eight hundred fifty-one'),\n(22097, 85693, 'eighty-five thousand six hundred ninety-three'),\n(22098, 3326, 'three thousand three hundred twenty-six'),\n(22099, 67248, 'sixty-seven thousand two hundred forty-eight'),\n(22100, 31801, 'thirty-one thousand eight hundred one'),\n(22101, 98229, 'ninety-eight thousand two hundred twenty-nine'),\n(22102, 94234, 'ninety-four thousand two hundred thirty-four'),\n(22103, 71103, 'seventy-one thousand one hundred three'),\n(22104, 30672, 'thirty thousand six hundred seventy-two'),\n(22105, 80423, 'eighty thousand four hundred twenty-three'),\n(22106, 65196, 'sixty-five thousand one hundred ninety-six'),\n(22107, 21399, 'twenty-one thousand three hundred ninety-nine'),\n(22108, 86154, 'eighty-six thousand one hundred fifty-four'),\n(22109, 23339, 'twenty-three thousand three hundred thirty-nine'),\n(22110, 71764, 'seventy-one thousand seven hundred sixty-four'),\n(22111, 38476, 'thirty-eight thousand four hundred seventy-six'),\n(22112, 63054, 'sixty-three thousand fifty-four'),\n(22113, 52770, 'fifty-two thousand seven hundred seventy'),\n(22114, 70640, 'seventy thousand six hundred forty'),\n(22115, 17870, 'seventeen thousand eight hundred seventy'),\n(22116, 52605, 'fifty-two thousand six hundred five'),\n(22117, 81158, 'eighty-one thousand one hundred fifty-eight'),\n(22118, 44655, 'forty-four thousand six hundred fifty-five'),\n(22119, 84621, 'eighty-four thousand six hundred twenty-one'),\n(22120, 64086, 'sixty-four thousand eighty-six'),\n(22121, 85673, 'eighty-five thousand six hundred seventy-three'),\n(22122, 10842, 'ten thousand eight hundred forty-two'),\n(22123, 36601, 'thirty-six thousand six hundred one'),\n(22124, 52509, 'fifty-two thousand five hundred nine'),\n(22125, 4652, 'four thousand six hundred fifty-two'),\n(22126, 54570, 'fifty-four thousand five hundred seventy'),\n(22127, 21673, 'twenty-one thousand six hundred seventy-three'),\n(22128, 20264, 'twenty thousand two hundred sixty-four'),\n(22129, 74680, 'seventy-four thousand six hundred eighty'),\n(22130, 83816, 'eighty-three thousand eight hundred sixteen'),\n(22131, 10604, 'ten thousand six hundred four'),\n(22132, 34949, 'thirty-four thousand nine hundred forty-nine'),\n(22133, 24980, 'twenty-four thousand nine hundred eighty'),\n(22134, 86003, 'eighty-six thousand three'),\n(22135, 94893, 'ninety-four thousand eight hundred ninety-three'),\n(22136, 70909, 'seventy thousand nine hundred nine'),\n(22137, 2554, 'two thousand five hundred fifty-four'),\n(22138, 59340, 'fifty-nine thousand three hundred forty'),\n(22139, 42055, 'forty-two thousand fifty-five'),\n(22140, 72185, 'seventy-two thousand one hundred eighty-five'),\n(22141, 3377, 'three thousand three hundred seventy-seven'),\n(22142, 23210, 'twenty-three thousand two hundred ten'),\n(22143, 25843, 'twenty-five thousand eight hundred forty-three'),\n(22144, 59450, 'fifty-nine thousand four hundred fifty'),\n(22145, 79508, 'seventy-nine thousand five hundred eight'),\n(22146, 48953, 'forty-eight thousand nine hundred fifty-three'),\n(22147, 59022, 'fifty-nine thousand twenty-two'),\n(22148, 57755, 'fifty-seven thousand seven hundred fifty-five'),\n(22149, 67545, 'sixty-seven thousand five hundred forty-five'),\n(22150, 12884, 'twelve thousand eight hundred eighty-four'),\n(22151, 25185, 'twenty-five thousand one hundred eighty-five'),\n(22152, 99814, 'ninety-nine thousand eight hundred fourteen'),\n(22153, 59583, 'fifty-nine thousand five hundred eighty-three'),\n(22154, 5526, 'five thousand five hundred twenty-six'),\n(22155, 51770, 'fifty-one thousand seven hundred seventy'),\n(22156, 60081, 'sixty thousand eighty-one'),\n(22157, 78481, 'seventy-eight thousand four hundred eighty-one'),\n(22158, 57611, 'fifty-seven thousand six hundred eleven'),\n(22159, 19059, 'nineteen thousand fifty-nine'),\n(22160, 99523, 'ninety-nine thousand five hundred twenty-three'),\n(22161, 69602, 'sixty-nine thousand six hundred two'),\n(22162, 9373, 'nine thousand three hundred seventy-three'),\n(22163, 81414, 'eighty-one thousand four hundred fourteen'),\n(22164, 16185, 'sixteen thousand one hundred eighty-five'),\n(22165, 71585, 'seventy-one thousand five hundred eighty-five'),\n(22166, 40341, 'forty thousand three hundred forty-one'),\n(22167, 31501, 'thirty-one thousand five hundred one'),\n(22168, 68361, 'sixty-eight thousand three hundred sixty-one'),\n(22169, 96746, 'ninety-six thousand seven hundred forty-six'),\n(22170, 59386, 'fifty-nine thousand three hundred eighty-six'),\n(22171, 41805, 'forty-one thousand eight hundred five'),\n(22172, 37704, 'thirty-seven thousand seven hundred four'),\n(22173, 85682, 'eighty-five thousand six hundred eighty-two'),\n(22174, 84377, 'eighty-four thousand three hundred seventy-seven'),\n(22175, 88395, 'eighty-eight thousand three hundred ninety-five'),\n(22176, 79787, 'seventy-nine thousand seven hundred eighty-seven'),\n(22177, 28358, 'twenty-eight thousand three hundred fifty-eight'),\n(22178, 84915, 'eighty-four thousand nine hundred fifteen'),\n(22179, 3348, 'three thousand three hundred forty-eight'),\n(22180, 99217, 'ninety-nine thousand two hundred seventeen'),\n(22181, 79639, 'seventy-nine thousand six hundred thirty-nine'),\n(22182, 81589, 'eighty-one thousand five hundred eighty-nine'),\n(22183, 34880, 'thirty-four thousand eight hundred eighty'),\n(22184, 10562, 'ten thousand five hundred sixty-two'),\n(22185, 70863, 'seventy thousand eight hundred sixty-three'),\n(22186, 27485, 'twenty-seven thousand four hundred eighty-five'),\n(22187, 67005, 'sixty-seven thousand five'),\n(22188, 33244, 'thirty-three thousand two hundred forty-four'),\n(22189, 449, 'four hundred forty-nine'),\n(22190, 53850, 'fifty-three thousand eight hundred fifty'),\n(22191, 71572, 'seventy-one thousand five hundred seventy-two'),\n(22192, 26332, 'twenty-six thousand three hundred thirty-two'),\n(22193, 89696, 'eighty-nine thousand six hundred ninety-six'),\n(22194, 67745, 'sixty-seven thousand seven hundred forty-five'),\n(22195, 39639, 'thirty-nine thousand six hundred thirty-nine'),\n(22196, 18833, 'eighteen thousand eight hundred thirty-three'),\n(22197, 48640, 'forty-eight thousand six hundred forty'),\n(22198, 73821, 'seventy-three thousand eight hundred twenty-one'),\n(22199, 19825, 'nineteen thousand eight hundred twenty-five'),\n(22200, 99062, 'ninety-nine thousand sixty-two'),\n(22201, 72691, 'seventy-two thousand six hundred ninety-one'),\n(22202, 68914, 'sixty-eight thousand nine hundred fourteen'),\n(22203, 1589, 'one thousand five hundred eighty-nine'),\n(22204, 93983, 'ninety-three thousand nine hundred eighty-three'),\n(22205, 85496, 'eighty-five thousand four hundred ninety-six'),\n(22206, 68038, 'sixty-eight thousand thirty-eight'),\n(22207, 70007, 'seventy thousand seven'),\n(22208, 35298, 'thirty-five thousand two hundred ninety-eight'),\n(22209, 90026, 'ninety thousand twenty-six'),\n(22210, 80100, 'eighty thousand one hundred'),\n(22211, 57088, 'fifty-seven thousand eighty-eight'),\n(22212, 88140, 'eighty-eight thousand one hundred forty'),\n(22213, 49802, 'forty-nine thousand eight hundred two'),\n(22214, 38558, 'thirty-eight thousand five hundred fifty-eight'),\n(22215, 39918, 'thirty-nine thousand nine hundred eighteen'),\n(22216, 94325, 'ninety-four thousand three hundred twenty-five'),\n(22217, 43163, 'forty-three thousand one hundred sixty-three'),\n(22218, 28423, 'twenty-eight thousand four hundred twenty-three'),\n(22219, 54784, 'fifty-four thousand seven hundred eighty-four'),\n(22220, 64184, 'sixty-four thousand one hundred eighty-four'),\n(22221, 46153, 'forty-six thousand one hundred fifty-three'),\n(22222, 61830, 'sixty-one thousand eight hundred thirty'),\n(22223, 3681, 'three thousand six hundred eighty-one'),\n(22224, 92648, 'ninety-two thousand six hundred forty-eight'),\n(22225, 25961, 'twenty-five thousand nine hundred sixty-one'),\n(22226, 5779, 'five thousand seven hundred seventy-nine'),\n(22227, 83983, 'eighty-three thousand nine hundred eighty-three'),\n(22228, 23458, 'twenty-three thousand four hundred fifty-eight'),\n(22229, 71798, 'seventy-one thousand seven hundred ninety-eight'),\n(22230, 58639, 'fifty-eight thousand six hundred thirty-nine'),\n(22231, 5810, 'five thousand eight hundred ten'),\n(22232, 55041, 'fifty-five thousand forty-one'),\n(22233, 34314, 'thirty-four thousand three hundred fourteen'),\n(22234, 8678, 'eight thousand six hundred seventy-eight'),\n(22235, 67566, 'sixty-seven thousand five hundred sixty-six'),\n(22236, 7956, 'seven thousand nine hundred fifty-six'),\n(22237, 22705, 'twenty-two thousand seven hundred five'),\n(22238, 86646, 'eighty-six thousand six hundred forty-six'),\n(22239, 15199, 'fifteen thousand one hundred ninety-nine'),\n(22240, 21826, 'twenty-one thousand eight hundred twenty-six'),\n(22241, 13080, 'thirteen thousand eighty'),\n(22242, 89796, 'eighty-nine thousand seven hundred ninety-six'),\n(22243, 28269, 'twenty-eight thousand two hundred sixty-nine'),\n(22244, 80456, 'eighty thousand four hundred fifty-six'),\n(22245, 85916, 'eighty-five thousand nine hundred sixteen'),\n(22246, 72154, 'seventy-two thousand one hundred fifty-four'),\n(22247, 89795, 'eighty-nine thousand seven hundred ninety-five'),\n(22248, 42254, 'forty-two thousand two hundred fifty-four'),\n(22249, 55296, 'fifty-five thousand two hundred ninety-six'),\n(22250, 12220, 'twelve thousand two hundred twenty'),\n(22251, 56534, 'fifty-six thousand five hundred thirty-four'),\n(22252, 29834, 'twenty-nine thousand eight hundred thirty-four'),\n(22253, 10798, 'ten thousand seven hundred ninety-eight'),\n(22254, 9685, 'nine thousand six hundred eighty-five'),\n(22255, 23872, 'twenty-three thousand eight hundred seventy-two'),\n(22256, 25837, 'twenty-five thousand eight hundred thirty-seven'),\n(22257, 93897, 'ninety-three thousand eight hundred ninety-seven'),\n(22258, 77450, 'seventy-seven thousand four hundred fifty'),\n(22259, 98521, 'ninety-eight thousand five hundred twenty-one'),\n(22260, 76892, 'seventy-six thousand eight hundred ninety-two'),\n(22261, 29619, 'twenty-nine thousand six hundred nineteen'),\n(22262, 48101, 'forty-eight thousand one hundred one'),\n(22263, 16804, 'sixteen thousand eight hundred four'),\n(22264, 83536, 'eighty-three thousand five hundred thirty-six'),\n(22265, 18391, 'eighteen thousand three hundred ninety-one'),\n(22266, 37038, 'thirty-seven thousand thirty-eight'),\n(22267, 61421, 'sixty-one thousand four hundred twenty-one'),\n(22268, 15063, 'fifteen thousand sixty-three'),\n(22269, 48907, 'forty-eight thousand nine hundred seven'),\n(22270, 17658, 'seventeen thousand six hundred fifty-eight'),\n(22271, 49716, 'forty-nine thousand seven hundred sixteen'),\n(22272, 28176, 'twenty-eight thousand one hundred seventy-six'),\n(22273, 22096, 'twenty-two thousand ninety-six'),\n(22274, 43822, 'forty-three thousand eight hundred twenty-two'),\n(22275, 50437, 'fifty thousand four hundred thirty-seven'),\n(22276, 23342, 'twenty-three thousand three hundred forty-two'),\n(22277, 21826, 'twenty-one thousand eight hundred twenty-six'),\n(22278, 40730, 'forty thousand seven hundred thirty'),\n(22279, 29191, 'twenty-nine thousand one hundred ninety-one'),\n(22280, 24973, 'twenty-four thousand nine hundred seventy-three'),\n(22281, 77396, 'seventy-seven thousand three hundred ninety-six'),\n(22282, 8419, 'eight thousand four hundred nineteen'),\n(22283, 12609, 'twelve thousand six hundred nine'),\n(22284, 14178, 'fourteen thousand one hundred seventy-eight'),\n(22285, 97916, 'ninety-seven thousand nine hundred sixteen'),\n(22286, 9432, 'nine thousand four hundred thirty-two'),\n(22287, 35508, 'thirty-five thousand five hundred eight'),\n(22288, 31643, 'thirty-one thousand six hundred forty-three'),\n(22289, 6604, 'six thousand six hundred four'),\n(22290, 79805, 'seventy-nine thousand eight hundred five'),\n(22291, 41466, 'forty-one thousand four hundred sixty-six'),\n(22292, 78205, 'seventy-eight thousand two hundred five'),\n(22293, 21247, 'twenty-one thousand two hundred forty-seven'),\n(22294, 84108, 'eighty-four thousand one hundred eight'),\n(22295, 86633, 'eighty-six thousand six hundred thirty-three'),\n(22296, 57645, 'fifty-seven thousand six hundred forty-five'),\n(22297, 63918, 'sixty-three thousand nine hundred eighteen'),\n(22298, 54042, 'fifty-four thousand forty-two'),\n(22299, 6605, 'six thousand six hundred five'),\n(22300, 64502, 'sixty-four thousand five hundred two'),\n(22301, 63918, 'sixty-three thousand nine hundred eighteen'),\n(22302, 86611, 'eighty-six thousand six hundred eleven'),\n(22303, 1451, 'one thousand four hundred fifty-one'),\n(22304, 47419, 'forty-seven thousand four hundred nineteen'),\n(22305, 57464, 'fifty-seven thousand four hundred sixty-four'),\n(22306, 46897, 'forty-six thousand eight hundred ninety-seven'),\n(22307, 94455, 'ninety-four thousand four hundred fifty-five'),\n(22308, 34717, 'thirty-four thousand seven hundred seventeen'),\n(22309, 60931, 'sixty thousand nine hundred thirty-one'),\n(22310, 51191, 'fifty-one thousand one hundred ninety-one'),\n(22311, 85035, 'eighty-five thousand thirty-five'),\n(22312, 13138, 'thirteen thousand one hundred thirty-eight'),\n(22313, 76315, 'seventy-six thousand three hundred fifteen'),\n(22314, 82068, 'eighty-two thousand sixty-eight'),\n(22315, 80865, 'eighty thousand eight hundred sixty-five'),\n(22316, 98648, 'ninety-eight thousand six hundred forty-eight'),\n(22317, 18623, 'eighteen thousand six hundred twenty-three'),\n(22318, 54551, 'fifty-four thousand five hundred fifty-one'),\n(22319, 22386, 'twenty-two thousand three hundred eighty-six'),\n(22320, 38516, 'thirty-eight thousand five hundred sixteen'),\n(22321, 87051, 'eighty-seven thousand fifty-one'),\n(22322, 38865, 'thirty-eight thousand eight hundred sixty-five'),\n(22323, 3770, 'three thousand seven hundred seventy'),\n(22324, 3409, 'three thousand four hundred nine'),\n(22325, 76197, 'seventy-six thousand one hundred ninety-seven'),\n(22326, 27638, 'twenty-seven thousand six hundred thirty-eight'),\n(22327, 72267, 'seventy-two thousand two hundred sixty-seven'),\n(22328, 49201, 'forty-nine thousand two hundred one'),\n(22329, 51957, 'fifty-one thousand nine hundred fifty-seven'),\n(22330, 95407, 'ninety-five thousand four hundred seven'),\n(22331, 494, 'four hundred ninety-four'),\n(22332, 19769, 'nineteen thousand seven hundred sixty-nine'),\n(22333, 57170, 'fifty-seven thousand one hundred seventy'),\n(22334, 5150, 'five thousand one hundred fifty'),\n(22335, 2342, 'two thousand three hundred forty-two'),\n(22336, 56163, 'fifty-six thousand one hundred sixty-three'),\n(22337, 4604, 'four thousand six hundred four'),\n(22338, 69693, 'sixty-nine thousand six hundred ninety-three'),\n(22339, 88292, 'eighty-eight thousand two hundred ninety-two'),\n(22340, 65142, 'sixty-five thousand one hundred forty-two'),\n(22341, 75426, 'seventy-five thousand four hundred twenty-six'),\n(22342, 15423, 'fifteen thousand four hundred twenty-three'),\n(22343, 80547, 'eighty thousand five hundred forty-seven'),\n(22344, 88201, 'eighty-eight thousand two hundred one'),\n(22345, 52965, 'fifty-two thousand nine hundred sixty-five'),\n(22346, 96199, 'ninety-six thousand one hundred ninety-nine'),\n(22347, 54514, 'fifty-four thousand five hundred fourteen'),\n(22348, 1238, 'one thousand two hundred thirty-eight'),\n(22349, 97621, 'ninety-seven thousand six hundred twenty-one'),\n(22350, 35730, 'thirty-five thousand seven hundred thirty'),\n(22351, 14932, 'fourteen thousand nine hundred thirty-two'),\n(22352, 43812, 'forty-three thousand eight hundred twelve'),\n(22353, 6577, 'six thousand five hundred seventy-seven'),\n(22354, 62010, 'sixty-two thousand ten'),\n(22355, 91955, 'ninety-one thousand nine hundred fifty-five'),\n(22356, 18085, 'eighteen thousand eighty-five'),\n(22357, 45931, 'forty-five thousand nine hundred thirty-one'),\n(22358, 79207, 'seventy-nine thousand two hundred seven'),\n(22359, 11729, 'eleven thousand seven hundred twenty-nine'),\n(22360, 26329, 'twenty-six thousand three hundred twenty-nine'),\n(22361, 19065, 'nineteen thousand sixty-five'),\n(22362, 92482, 'ninety-two thousand four hundred eighty-two'),\n(22363, 34050, 'thirty-four thousand fifty'),\n(22364, 15749, 'fifteen thousand seven hundred forty-nine'),\n(22365, 66165, 'sixty-six thousand one hundred sixty-five'),\n(22366, 36505, 'thirty-six thousand five hundred five'),\n(22367, 131, 'one hundred thirty-one'),\n(22368, 69597, 'sixty-nine thousand five hundred ninety-seven'),\n(22369, 46427, 'forty-six thousand four hundred twenty-seven'),\n(22370, 8874, 'eight thousand eight hundred seventy-four'),\n(22371, 85392, 'eighty-five thousand three hundred ninety-two'),\n(22372, 56348, 'fifty-six thousand three hundred forty-eight'),\n(22373, 84536, 'eighty-four thousand five hundred thirty-six'),\n(22374, 11474, 'eleven thousand four hundred seventy-four'),\n(22375, 1278, 'one thousand two hundred seventy-eight'),\n(22376, 66671, 'sixty-six thousand six hundred seventy-one'),\n(22377, 78884, 'seventy-eight thousand eight hundred eighty-four'),\n(22378, 3512, 'three thousand five hundred twelve'),\n(22379, 11434, 'eleven thousand four hundred thirty-four'),\n(22380, 87002, 'eighty-seven thousand two'),\n(22381, 55430, 'fifty-five thousand four hundred thirty'),\n(22382, 69635, 'sixty-nine thousand six hundred thirty-five'),\n(22383, 3510, 'three thousand five hundred ten'),\n(22384, 82464, 'eighty-two thousand four hundred sixty-four'),\n(22385, 14576, 'fourteen thousand five hundred seventy-six'),\n(22386, 26189, 'twenty-six thousand one hundred eighty-nine'),\n(22387, 18114, 'eighteen thousand one hundred fourteen'),\n(22388, 88458, 'eighty-eight thousand four hundred fifty-eight'),\n(22389, 97696, 'ninety-seven thousand six hundred ninety-six'),\n(22390, 20326, 'twenty thousand three hundred twenty-six'),\n(22391, 61539, 'sixty-one thousand five hundred thirty-nine'),\n(22392, 41704, 'forty-one thousand seven hundred four'),\n(22393, 62173, 'sixty-two thousand one hundred seventy-three'),\n(22394, 36659, 'thirty-six thousand six hundred fifty-nine'),\n(22395, 39339, 'thirty-nine thousand three hundred thirty-nine'),\n(22396, 35492, 'thirty-five thousand four hundred ninety-two'),\n(22397, 84672, 'eighty-four thousand six hundred seventy-two'),\n(22398, 62140, 'sixty-two thousand one hundred forty'),\n(22399, 39728, 'thirty-nine thousand seven hundred twenty-eight'),\n(22400, 63508, 'sixty-three thousand five hundred eight'),\n(22401, 2118, 'two thousand one hundred eighteen'),\n(22402, 45989, 'forty-five thousand nine hundred eighty-nine'),\n(22403, 29906, 'twenty-nine thousand nine hundred six'),\n(22404, 24720, 'twenty-four thousand seven hundred twenty'),\n(22405, 28470, 'twenty-eight thousand four hundred seventy'),\n(22406, 53785, 'fifty-three thousand seven hundred eighty-five'),\n(22407, 86742, 'eighty-six thousand seven hundred forty-two'),\n(22408, 70868, 'seventy thousand eight hundred sixty-eight'),\n(22409, 9745, 'nine thousand seven hundred forty-five'),\n(22410, 52889, 'fifty-two thousand eight hundred eighty-nine'),\n(22411, 2810, 'two thousand eight hundred ten'),\n(22412, 81529, 'eighty-one thousand five hundred twenty-nine'),\n(22413, 95495, 'ninety-five thousand four hundred ninety-five'),\n(22414, 32732, 'thirty-two thousand seven hundred thirty-two'),\n(22415, 75278, 'seventy-five thousand two hundred seventy-eight'),\n(22416, 52264, 'fifty-two thousand two hundred sixty-four'),\n(22417, 99252, 'ninety-nine thousand two hundred fifty-two'),\n(22418, 94074, 'ninety-four thousand seventy-four'),\n(22419, 47933, 'forty-seven thousand nine hundred thirty-three'),\n(22420, 59535, 'fifty-nine thousand five hundred thirty-five'),\n(22421, 29172, 'twenty-nine thousand one hundred seventy-two'),\n(22422, 43086, 'forty-three thousand eighty-six'),\n(22423, 48602, 'forty-eight thousand six hundred two'),\n(22424, 17942, 'seventeen thousand nine hundred forty-two'),\n(22425, 86946, 'eighty-six thousand nine hundred forty-six'),\n(22426, 28083, 'twenty-eight thousand eighty-three'),\n(22427, 25869, 'twenty-five thousand eight hundred sixty-nine'),\n(22428, 6886, 'six thousand eight hundred eighty-six'),\n(22429, 55286, 'fifty-five thousand two hundred eighty-six'),\n(22430, 47264, 'forty-seven thousand two hundred sixty-four'),\n(22431, 3180, 'three thousand one hundred eighty'),\n(22432, 98092, 'ninety-eight thousand ninety-two'),\n(22433, 90141, 'ninety thousand one hundred forty-one'),\n(22434, 57581, 'fifty-seven thousand five hundred eighty-one'),\n(22435, 12239, 'twelve thousand two hundred thirty-nine'),\n(22436, 30778, 'thirty thousand seven hundred seventy-eight'),\n(22437, 74100, 'seventy-four thousand one hundred'),\n(22438, 12810, 'twelve thousand eight hundred ten'),\n(22439, 65540, 'sixty-five thousand five hundred forty'),\n(22440, 32744, 'thirty-two thousand seven hundred forty-four'),\n(22441, 41062, 'forty-one thousand sixty-two'),\n(22442, 30471, 'thirty thousand four hundred seventy-one'),\n(22443, 27794, 'twenty-seven thousand seven hundred ninety-four'),\n(22444, 56417, 'fifty-six thousand four hundred seventeen'),\n(22445, 4596, 'four thousand five hundred ninety-six'),\n(22446, 57387, 'fifty-seven thousand three hundred eighty-seven'),\n(22447, 907, 'nine hundred seven'),\n(22448, 81107, 'eighty-one thousand one hundred seven'),\n(22449, 22607, 'twenty-two thousand six hundred seven'),\n(22450, 6645, 'six thousand six hundred forty-five'),\n(22451, 65171, 'sixty-five thousand one hundred seventy-one'),\n(22452, 77201, 'seventy-seven thousand two hundred one'),\n(22453, 96260, 'ninety-six thousand two hundred sixty'),\n(22454, 4800, 'four thousand eight hundred'),\n(22455, 46822, 'forty-six thousand eight hundred twenty-two'),\n(22456, 34151, 'thirty-four thousand one hundred fifty-one'),\n(22457, 87858, 'eighty-seven thousand eight hundred fifty-eight'),\n(22458, 81437, 'eighty-one thousand four hundred thirty-seven'),\n(22459, 37041, 'thirty-seven thousand forty-one'),\n(22460, 43433, 'forty-three thousand four hundred thirty-three'),\n(22461, 62264, 'sixty-two thousand two hundred sixty-four'),\n(22462, 19210, 'nineteen thousand two hundred ten'),\n(22463, 29407, 'twenty-nine thousand four hundred seven'),\n(22464, 6829, 'six thousand eight hundred twenty-nine'),\n(22465, 79493, 'seventy-nine thousand four hundred ninety-three'),\n(22466, 64460, 'sixty-four thousand four hundred sixty'),\n(22467, 4376, 'four thousand three hundred seventy-six'),\n(22468, 42564, 'forty-two thousand five hundred sixty-four'),\n(22469, 63570, 'sixty-three thousand five hundred seventy'),\n(22470, 15802, 'fifteen thousand eight hundred two'),\n(22471, 45518, 'forty-five thousand five hundred eighteen'),\n(22472, 68015, 'sixty-eight thousand fifteen'),\n(22473, 92654, 'ninety-two thousand six hundred fifty-four'),\n(22474, 7576, 'seven thousand five hundred seventy-six'),\n(22475, 24404, 'twenty-four thousand four hundred four'),\n(22476, 21253, 'twenty-one thousand two hundred fifty-three'),\n(22477, 72234, 'seventy-two thousand two hundred thirty-four'),\n(22478, 21266, 'twenty-one thousand two hundred sixty-six'),\n(22479, 13822, 'thirteen thousand eight hundred twenty-two'),\n(22480, 20035, 'twenty thousand thirty-five'),\n(22481, 86539, 'eighty-six thousand five hundred thirty-nine'),\n(22482, 98016, 'ninety-eight thousand sixteen'),\n(22483, 19081, 'nineteen thousand eighty-one'),\n(22484, 42285, 'forty-two thousand two hundred eighty-five'),\n(22485, 6786, 'six thousand seven hundred eighty-six'),\n(22486, 8017, 'eight thousand seventeen'),\n(22487, 40663, 'forty thousand six hundred sixty-three'),\n(22488, 64819, 'sixty-four thousand eight hundred nineteen'),\n(22489, 71485, 'seventy-one thousand four hundred eighty-five'),\n(22490, 20107, 'twenty thousand one hundred seven'),\n(22491, 64211, 'sixty-four thousand two hundred eleven'),\n(22492, 42281, 'forty-two thousand two hundred eighty-one'),\n(22493, 15844, 'fifteen thousand eight hundred forty-four'),\n(22494, 56296, 'fifty-six thousand two hundred ninety-six'),\n(22495, 14693, 'fourteen thousand six hundred ninety-three'),\n(22496, 78055, 'seventy-eight thousand fifty-five'),\n(22497, 23911, 'twenty-three thousand nine hundred eleven'),\n(22498, 35824, 'thirty-five thousand eight hundred twenty-four'),\n(22499, 11405, 'eleven thousand four hundred five'),\n(22500, 85625, 'eighty-five thousand six hundred twenty-five'),\n(22501, 80429, 'eighty thousand four hundred twenty-nine'),\n(22502, 44783, 'forty-four thousand seven hundred eighty-three'),\n(22503, 56005, 'fifty-six thousand five'),\n(22504, 69813, 'sixty-nine thousand eight hundred thirteen'),\n(22505, 40183, 'forty thousand one hundred eighty-three'),\n(22506, 16055, 'sixteen thousand fifty-five'),\n(22507, 77031, 'seventy-seven thousand thirty-one'),\n(22508, 90278, 'ninety thousand two hundred seventy-eight'),\n(22509, 45414, 'forty-five thousand four hundred fourteen'),\n(22510, 39654, 'thirty-nine thousand six hundred fifty-four'),\n(22511, 19673, 'nineteen thousand six hundred seventy-three'),\n(22512, 70631, 'seventy thousand six hundred thirty-one'),\n(22513, 55329, 'fifty-five thousand three hundred twenty-nine'),\n(22514, 516, 'five hundred sixteen'),\n(22515, 79159, 'seventy-nine thousand one hundred fifty-nine'),\n(22516, 7658, 'seven thousand six hundred fifty-eight'),\n(22517, 38668, 'thirty-eight thousand six hundred sixty-eight'),\n(22518, 53385, 'fifty-three thousand three hundred eighty-five'),\n(22519, 50034, 'fifty thousand thirty-four'),\n(22520, 65668, 'sixty-five thousand six hundred sixty-eight'),\n(22521, 84646, 'eighty-four thousand six hundred forty-six'),\n(22522, 52564, 'fifty-two thousand five hundred sixty-four'),\n(22523, 10899, 'ten thousand eight hundred ninety-nine'),\n(22524, 42573, 'forty-two thousand five hundred seventy-three'),\n(22525, 38401, 'thirty-eight thousand four hundred one'),\n(22526, 88565, 'eighty-eight thousand five hundred sixty-five'),\n(22527, 381, 'three hundred eighty-one'),\n(22528, 21216, 'twenty-one thousand two hundred sixteen'),\n(22529, 95817, 'ninety-five thousand eight hundred seventeen'),\n(22530, 1165, 'one thousand one hundred sixty-five'),\n(22531, 53861, 'fifty-three thousand eight hundred sixty-one'),\n(22532, 50490, 'fifty thousand four hundred ninety'),\n(22533, 25127, 'twenty-five thousand one hundred twenty-seven'),\n(22534, 15595, 'fifteen thousand five hundred ninety-five'),\n(22535, 84808, 'eighty-four thousand eight hundred eight'),\n(22536, 9311, 'nine thousand three hundred eleven'),\n(22537, 53187, 'fifty-three thousand one hundred eighty-seven'),\n(22538, 45109, 'forty-five thousand one hundred nine'),\n(22539, 98859, 'ninety-eight thousand eight hundred fifty-nine'),\n(22540, 30692, 'thirty thousand six hundred ninety-two'),\n(22541, 56062, 'fifty-six thousand sixty-two'),\n(22542, 18326, 'eighteen thousand three hundred twenty-six'),\n(22543, 68792, 'sixty-eight thousand seven hundred ninety-two'),\n(22544, 77571, 'seventy-seven thousand five hundred seventy-one'),\n(22545, 47630, 'forty-seven thousand six hundred thirty'),\n(22546, 35447, 'thirty-five thousand four hundred forty-seven'),\n(22547, 92822, 'ninety-two thousand eight hundred twenty-two'),\n(22548, 4965, 'four thousand nine hundred sixty-five'),\n(22549, 22923, 'twenty-two thousand nine hundred twenty-three'),\n(22550, 54997, 'fifty-four thousand nine hundred ninety-seven'),\n(22551, 76657, 'seventy-six thousand six hundred fifty-seven'),\n(22552, 61704, 'sixty-one thousand seven hundred four'),\n(22553, 6399, 'six thousand three hundred ninety-nine'),\n(22554, 87246, 'eighty-seven thousand two hundred forty-six'),\n(22555, 70422, 'seventy thousand four hundred twenty-two'),\n(22556, 87675, 'eighty-seven thousand six hundred seventy-five'),\n(22557, 73009, 'seventy-three thousand nine'),\n(22558, 71043, 'seventy-one thousand forty-three'),\n(22559, 24841, 'twenty-four thousand eight hundred forty-one'),\n(22560, 72324, 'seventy-two thousand three hundred twenty-four'),\n(22561, 1343, 'one thousand three hundred forty-three'),\n(22562, 96980, 'ninety-six thousand nine hundred eighty'),\n(22563, 46845, 'forty-six thousand eight hundred forty-five'),\n(22564, 12364, 'twelve thousand three hundred sixty-four'),\n(22565, 88731, 'eighty-eight thousand seven hundred thirty-one'),\n(22566, 80641, 'eighty thousand six hundred forty-one'),\n(22567, 13653, 'thirteen thousand six hundred fifty-three'),\n(22568, 96138, 'ninety-six thousand one hundred thirty-eight'),\n(22569, 16727, 'sixteen thousand seven hundred twenty-seven'),\n(22570, 32793, 'thirty-two thousand seven hundred ninety-three'),\n(22571, 14371, 'fourteen thousand three hundred seventy-one'),\n(22572, 45857, 'forty-five thousand eight hundred fifty-seven'),\n(22573, 6766, 'six thousand seven hundred sixty-six'),\n(22574, 64805, 'sixty-four thousand eight hundred five'),\n(22575, 13462, 'thirteen thousand four hundred sixty-two'),\n(22576, 23840, 'twenty-three thousand eight hundred forty'),\n(22577, 39545, 'thirty-nine thousand five hundred forty-five'),\n(22578, 15053, 'fifteen thousand fifty-three'),\n(22579, 15590, 'fifteen thousand five hundred ninety'),\n(22580, 87021, 'eighty-seven thousand twenty-one'),\n(22581, 64698, 'sixty-four thousand six hundred ninety-eight'),\n(22582, 75271, 'seventy-five thousand two hundred seventy-one'),\n(22583, 65984, 'sixty-five thousand nine hundred eighty-four'),\n(22584, 21130, 'twenty-one thousand one hundred thirty'),\n(22585, 35160, 'thirty-five thousand one hundred sixty'),\n(22586, 87942, 'eighty-seven thousand nine hundred forty-two'),\n(22587, 85332, 'eighty-five thousand three hundred thirty-two'),\n(22588, 88219, 'eighty-eight thousand two hundred nineteen'),\n(22589, 99848, 'ninety-nine thousand eight hundred forty-eight'),\n(22590, 30292, 'thirty thousand two hundred ninety-two'),\n(22591, 57879, 'fifty-seven thousand eight hundred seventy-nine'),\n(22592, 56974, 'fifty-six thousand nine hundred seventy-four'),\n(22593, 27398, 'twenty-seven thousand three hundred ninety-eight'),\n(22594, 95470, 'ninety-five thousand four hundred seventy'),\n(22595, 3801, 'three thousand eight hundred one'),\n(22596, 69492, 'sixty-nine thousand four hundred ninety-two'),\n(22597, 32582, 'thirty-two thousand five hundred eighty-two'),\n(22598, 42082, 'forty-two thousand eighty-two'),\n(22599, 84096, 'eighty-four thousand ninety-six'),\n(22600, 91235, 'ninety-one thousand two hundred thirty-five'),\n(22601, 68877, 'sixty-eight thousand eight hundred seventy-seven'),\n(22602, 75178, 'seventy-five thousand one hundred seventy-eight'),\n(22603, 27786, 'twenty-seven thousand seven hundred eighty-six'),\n(22604, 14675, 'fourteen thousand six hundred seventy-five'),\n(22605, 44198, 'forty-four thousand one hundred ninety-eight'),\n(22606, 64766, 'sixty-four thousand seven hundred sixty-six'),\n(22607, 57594, 'fifty-seven thousand five hundred ninety-four'),\n(22608, 25195, 'twenty-five thousand one hundred ninety-five'),\n(22609, 78269, 'seventy-eight thousand two hundred sixty-nine'),\n(22610, 12876, 'twelve thousand eight hundred seventy-six'),\n(22611, 70858, 'seventy thousand eight hundred fifty-eight'),\n(22612, 8704, 'eight thousand seven hundred four'),\n(22613, 77585, 'seventy-seven thousand five hundred eighty-five'),\n(22614, 13116, 'thirteen thousand one hundred sixteen'),\n(22615, 32525, 'thirty-two thousand five hundred twenty-five'),\n(22616, 87846, 'eighty-seven thousand eight hundred forty-six'),\n(22617, 42320, 'forty-two thousand three hundred twenty'),\n(22618, 75749, 'seventy-five thousand seven hundred forty-nine'),\n(22619, 91169, 'ninety-one thousand one hundred sixty-nine'),\n(22620, 57533, 'fifty-seven thousand five hundred thirty-three'),\n(22621, 28429, 'twenty-eight thousand four hundred twenty-nine'),\n(22622, 30517, 'thirty thousand five hundred seventeen'),\n(22623, 96617, 'ninety-six thousand six hundred seventeen'),\n(22624, 24449, 'twenty-four thousand four hundred forty-nine'),\n(22625, 84461, 'eighty-four thousand four hundred sixty-one'),\n(22626, 91063, 'ninety-one thousand sixty-three'),\n(22627, 38957, 'thirty-eight thousand nine hundred fifty-seven'),\n(22628, 49516, 'forty-nine thousand five hundred sixteen'),\n(22629, 78211, 'seventy-eight thousand two hundred eleven'),\n(22630, 31370, 'thirty-one thousand three hundred seventy'),\n(22631, 88630, 'eighty-eight thousand six hundred thirty'),\n(22632, 29902, 'twenty-nine thousand nine hundred two'),\n(22633, 25505, 'twenty-five thousand five hundred five'),\n(22634, 53570, 'fifty-three thousand five hundred seventy'),\n(22635, 53582, 'fifty-three thousand five hundred eighty-two'),\n(22636, 29462, 'twenty-nine thousand four hundred sixty-two'),\n(22637, 37866, 'thirty-seven thousand eight hundred sixty-six'),\n(22638, 21474, 'twenty-one thousand four hundred seventy-four'),\n(22639, 52971, 'fifty-two thousand nine hundred seventy-one'),\n(22640, 70905, 'seventy thousand nine hundred five'),\n(22641, 83229, 'eighty-three thousand two hundred twenty-nine'),\n(22642, 79718, 'seventy-nine thousand seven hundred eighteen'),\n(22643, 49910, 'forty-nine thousand nine hundred ten'),\n(22644, 56269, 'fifty-six thousand two hundred sixty-nine'),\n(22645, 73311, 'seventy-three thousand three hundred eleven'),\n(22646, 65921, 'sixty-five thousand nine hundred twenty-one'),\n(22647, 20012, 'twenty thousand twelve'),\n(22648, 61431, 'sixty-one thousand four hundred thirty-one'),\n(22649, 8282, 'eight thousand two hundred eighty-two'),\n(22650, 86294, 'eighty-six thousand two hundred ninety-four'),\n(22651, 4933, 'four thousand nine hundred thirty-three'),\n(22652, 75845, 'seventy-five thousand eight hundred forty-five'),\n(22653, 37304, 'thirty-seven thousand three hundred four'),\n(22654, 11567, 'eleven thousand five hundred sixty-seven'),\n(22655, 19968, 'nineteen thousand nine hundred sixty-eight'),\n(22656, 36357, 'thirty-six thousand three hundred fifty-seven'),\n(22657, 48974, 'forty-eight thousand nine hundred seventy-four'),\n(22658, 16701, 'sixteen thousand seven hundred one'),\n(22659, 96936, 'ninety-six thousand nine hundred thirty-six'),\n(22660, 96704, 'ninety-six thousand seven hundred four'),\n(22661, 56132, 'fifty-six thousand one hundred thirty-two'),\n(22662, 85705, 'eighty-five thousand seven hundred five'),\n(22663, 44559, 'forty-four thousand five hundred fifty-nine'),\n(22664, 61115, 'sixty-one thousand one hundred fifteen'),\n(22665, 76535, 'seventy-six thousand five hundred thirty-five'),\n(22666, 49746, 'forty-nine thousand seven hundred forty-six'),\n(22667, 81703, 'eighty-one thousand seven hundred three'),\n(22668, 99890, 'ninety-nine thousand eight hundred ninety'),\n(22669, 3305, 'three thousand three hundred five'),\n(22670, 13818, 'thirteen thousand eight hundred eighteen'),\n(22671, 18036, 'eighteen thousand thirty-six'),\n(22672, 90569, 'ninety thousand five hundred sixty-nine'),\n(22673, 41553, 'forty-one thousand five hundred fifty-three'),\n(22674, 23961, 'twenty-three thousand nine hundred sixty-one'),\n(22675, 6125, 'six thousand one hundred twenty-five'),\n(22676, 15828, 'fifteen thousand eight hundred twenty-eight'),\n(22677, 28117, 'twenty-eight thousand one hundred seventeen'),\n(22678, 36107, 'thirty-six thousand one hundred seven'),\n(22679, 37818, 'thirty-seven thousand eight hundred eighteen'),\n(22680, 16647, 'sixteen thousand six hundred forty-seven'),\n(22681, 47321, 'forty-seven thousand three hundred twenty-one'),\n(22682, 12129, 'twelve thousand one hundred twenty-nine'),\n(22683, 65834, 'sixty-five thousand eight hundred thirty-four'),\n(22684, 82125, 'eighty-two thousand one hundred twenty-five'),\n(22685, 11331, 'eleven thousand three hundred thirty-one'),\n(22686, 19893, 'nineteen thousand eight hundred ninety-three'),\n(22687, 71576, 'seventy-one thousand five hundred seventy-six'),\n(22688, 37467, 'thirty-seven thousand four hundred sixty-seven'),\n(22689, 63848, 'sixty-three thousand eight hundred forty-eight'),\n(22690, 80468, 'eighty thousand four hundred sixty-eight'),\n(22691, 68487, 'sixty-eight thousand four hundred eighty-seven'),\n(22692, 19796, 'nineteen thousand seven hundred ninety-six'),\n(22693, 87706, 'eighty-seven thousand seven hundred six'),\n(22694, 49653, 'forty-nine thousand six hundred fifty-three'),\n(22695, 9824, 'nine thousand eight hundred twenty-four'),\n(22696, 53907, 'fifty-three thousand nine hundred seven'),\n(22697, 89329, 'eighty-nine thousand three hundred twenty-nine'),\n(22698, 8588, 'eight thousand five hundred eighty-eight'),\n(22699, 25857, 'twenty-five thousand eight hundred fifty-seven'),\n(22700, 79112, 'seventy-nine thousand one hundred twelve'),\n(22701, 8040, 'eight thousand forty'),\n(22702, 95478, 'ninety-five thousand four hundred seventy-eight'),\n(22703, 48853, 'forty-eight thousand eight hundred fifty-three'),\n(22704, 32132, 'thirty-two thousand one hundred thirty-two'),\n(22705, 18797, 'eighteen thousand seven hundred ninety-seven'),\n(22706, 28030, 'twenty-eight thousand thirty'),\n(22707, 1323, 'one thousand three hundred twenty-three'),\n(22708, 30808, 'thirty thousand eight hundred eight'),\n(22709, 6079, 'six thousand seventy-nine'),\n(22710, 46536, 'forty-six thousand five hundred thirty-six'),\n(22711, 76287, 'seventy-six thousand two hundred eighty-seven'),\n(22712, 57813, 'fifty-seven thousand eight hundred thirteen'),\n(22713, 62394, 'sixty-two thousand three hundred ninety-four'),\n(22714, 50309, 'fifty thousand three hundred nine'),\n(22715, 46511, 'forty-six thousand five hundred eleven'),\n(22716, 4176, 'four thousand one hundred seventy-six'),\n(22717, 2166, 'two thousand one hundred sixty-six'),\n(22718, 60138, 'sixty thousand one hundred thirty-eight'),\n(22719, 47204, 'forty-seven thousand two hundred four'),\n(22720, 5887, 'five thousand eight hundred eighty-seven'),\n(22721, 10844, 'ten thousand eight hundred forty-four'),\n(22722, 91767, 'ninety-one thousand seven hundred sixty-seven'),\n(22723, 65745, 'sixty-five thousand seven hundred forty-five'),\n(22724, 30415, 'thirty thousand four hundred fifteen'),\n(22725, 76189, 'seventy-six thousand one hundred eighty-nine'),\n(22726, 92590, 'ninety-two thousand five hundred ninety'),\n(22727, 12506, 'twelve thousand five hundred six'),\n(22728, 39380, 'thirty-nine thousand three hundred eighty'),\n(22729, 25274, 'twenty-five thousand two hundred seventy-four'),\n(22730, 50617, 'fifty thousand six hundred seventeen'),\n(22731, 27056, 'twenty-seven thousand fifty-six'),\n(22732, 61862, 'sixty-one thousand eight hundred sixty-two'),\n(22733, 96762, 'ninety-six thousand seven hundred sixty-two'),\n(22734, 53827, 'fifty-three thousand eight hundred twenty-seven'),\n(22735, 61995, 'sixty-one thousand nine hundred ninety-five'),\n(22736, 67195, 'sixty-seven thousand one hundred ninety-five'),\n(22737, 48008, 'forty-eight thousand eight'),\n(22738, 89985, 'eighty-nine thousand nine hundred eighty-five'),\n(22739, 435, 'four hundred thirty-five'),\n(22740, 19428, 'nineteen thousand four hundred twenty-eight'),\n(22741, 85496, 'eighty-five thousand four hundred ninety-six'),\n(22742, 34992, 'thirty-four thousand nine hundred ninety-two'),\n(22743, 24690, 'twenty-four thousand six hundred ninety'),\n(22744, 1355, 'one thousand three hundred fifty-five'),\n(22745, 29772, 'twenty-nine thousand seven hundred seventy-two'),\n(22746, 39939, 'thirty-nine thousand nine hundred thirty-nine'),\n(22747, 98514, 'ninety-eight thousand five hundred fourteen'),\n(22748, 21934, 'twenty-one thousand nine hundred thirty-four'),\n(22749, 46496, 'forty-six thousand four hundred ninety-six'),\n(22750, 76462, 'seventy-six thousand four hundred sixty-two'),\n(22751, 11453, 'eleven thousand four hundred fifty-three'),\n(22752, 70704, 'seventy thousand seven hundred four'),\n(22753, 58256, 'fifty-eight thousand two hundred fifty-six'),\n(22754, 79070, 'seventy-nine thousand seventy'),\n(22755, 67296, 'sixty-seven thousand two hundred ninety-six'),\n(22756, 66720, 'sixty-six thousand seven hundred twenty'),\n(22757, 16196, 'sixteen thousand one hundred ninety-six'),\n(22758, 53301, 'fifty-three thousand three hundred one'),\n(22759, 76635, 'seventy-six thousand six hundred thirty-five'),\n(22760, 57885, 'fifty-seven thousand eight hundred eighty-five'),\n(22761, 51936, 'fifty-one thousand nine hundred thirty-six'),\n(22762, 70894, 'seventy thousand eight hundred ninety-four'),\n(22763, 49654, 'forty-nine thousand six hundred fifty-four'),\n(22764, 15893, 'fifteen thousand eight hundred ninety-three'),\n(22765, 94215, 'ninety-four thousand two hundred fifteen'),\n(22766, 50589, 'fifty thousand five hundred eighty-nine'),\n(22767, 27876, 'twenty-seven thousand eight hundred seventy-six'),\n(22768, 80188, 'eighty thousand one hundred eighty-eight'),\n(22769, 37257, 'thirty-seven thousand two hundred fifty-seven'),\n(22770, 21780, 'twenty-one thousand seven hundred eighty'),\n(22771, 22190, 'twenty-two thousand one hundred ninety'),\n(22772, 41992, 'forty-one thousand nine hundred ninety-two'),\n(22773, 76421, 'seventy-six thousand four hundred twenty-one'),\n(22774, 25668, 'twenty-five thousand six hundred sixty-eight'),\n(22775, 74821, 'seventy-four thousand eight hundred twenty-one'),\n(22776, 77595, 'seventy-seven thousand five hundred ninety-five'),\n(22777, 12547, 'twelve thousand five hundred forty-seven'),\n(22778, 15981, 'fifteen thousand nine hundred eighty-one'),\n(22779, 14650, 'fourteen thousand six hundred fifty'),\n(22780, 86030, 'eighty-six thousand thirty'),\n(22781, 8573, 'eight thousand five hundred seventy-three'),\n(22782, 83953, 'eighty-three thousand nine hundred fifty-three'),\n(22783, 54106, 'fifty-four thousand one hundred six'),\n(22784, 65870, 'sixty-five thousand eight hundred seventy'),\n(22785, 99636, 'ninety-nine thousand six hundred thirty-six'),\n(22786, 81594, 'eighty-one thousand five hundred ninety-four'),\n(22787, 11533, 'eleven thousand five hundred thirty-three'),\n(22788, 38593, 'thirty-eight thousand five hundred ninety-three'),\n(22789, 1144, 'one thousand one hundred forty-four'),\n(22790, 28326, 'twenty-eight thousand three hundred twenty-six'),\n(22791, 25026, 'twenty-five thousand twenty-six'),\n(22792, 66295, 'sixty-six thousand two hundred ninety-five'),\n(22793, 8260, 'eight thousand two hundred sixty'),\n(22794, 45959, 'forty-five thousand nine hundred fifty-nine'),\n(22795, 81761, 'eighty-one thousand seven hundred sixty-one'),\n(22796, 92331, 'ninety-two thousand three hundred thirty-one'),\n(22797, 972, 'nine hundred seventy-two'),\n(22798, 16129, 'sixteen thousand one hundred twenty-nine'),\n(22799, 8741, 'eight thousand seven hundred forty-one'),\n(22800, 72896, 'seventy-two thousand eight hundred ninety-six'),\n(22801, 47476, 'forty-seven thousand four hundred seventy-six'),\n(22802, 85425, 'eighty-five thousand four hundred twenty-five'),\n(22803, 83021, 'eighty-three thousand twenty-one'),\n(22804, 91693, 'ninety-one thousand six hundred ninety-three'),\n(22805, 59651, 'fifty-nine thousand six hundred fifty-one'),\n(22806, 49497, 'forty-nine thousand four hundred ninety-seven'),\n(22807, 96922, 'ninety-six thousand nine hundred twenty-two'),\n(22808, 46116, 'forty-six thousand one hundred sixteen'),\n(22809, 9276, 'nine thousand two hundred seventy-six'),\n(22810, 91549, 'ninety-one thousand five hundred forty-nine'),\n(22811, 26804, 'twenty-six thousand eight hundred four'),\n(22812, 79506, 'seventy-nine thousand five hundred six'),\n(22813, 54230, 'fifty-four thousand two hundred thirty'),\n(22814, 69856, 'sixty-nine thousand eight hundred fifty-six'),\n(22815, 72125, 'seventy-two thousand one hundred twenty-five'),\n(22816, 3303, 'three thousand three hundred three'),\n(22817, 35150, 'thirty-five thousand one hundred fifty'),\n(22818, 23818, 'twenty-three thousand eight hundred eighteen'),\n(22819, 55339, 'fifty-five thousand three hundred thirty-nine'),\n(22820, 38752, 'thirty-eight thousand seven hundred fifty-two'),\n(22821, 80010, 'eighty thousand ten'),\n(22822, 26406, 'twenty-six thousand four hundred six'),\n(22823, 2166, 'two thousand one hundred sixty-six'),\n(22824, 3860, 'three thousand eight hundred sixty'),\n(22825, 71503, 'seventy-one thousand five hundred three'),\n(22826, 89306, 'eighty-nine thousand three hundred six'),\n(22827, 97412, 'ninety-seven thousand four hundred twelve'),\n(22828, 36496, 'thirty-six thousand four hundred ninety-six'),\n(22829, 48977, 'forty-eight thousand nine hundred seventy-seven'),\n(22830, 91389, 'ninety-one thousand three hundred eighty-nine'),\n(22831, 73674, 'seventy-three thousand six hundred seventy-four'),\n(22832, 77394, 'seventy-seven thousand three hundred ninety-four'),\n(22833, 9022, 'nine thousand twenty-two'),\n(22834, 99427, 'ninety-nine thousand four hundred twenty-seven'),\n(22835, 13674, 'thirteen thousand six hundred seventy-four'),\n(22836, 65124, 'sixty-five thousand one hundred twenty-four'),\n(22837, 85527, 'eighty-five thousand five hundred twenty-seven'),\n(22838, 69958, 'sixty-nine thousand nine hundred fifty-eight'),\n(22839, 45333, 'forty-five thousand three hundred thirty-three'),\n(22840, 91751, 'ninety-one thousand seven hundred fifty-one'),\n(22841, 57515, 'fifty-seven thousand five hundred fifteen'),\n(22842, 58534, 'fifty-eight thousand five hundred thirty-four'),\n(22843, 24830, 'twenty-four thousand eight hundred thirty'),\n(22844, 4542, 'four thousand five hundred forty-two'),\n(22845, 72566, 'seventy-two thousand five hundred sixty-six'),\n(22846, 66017, 'sixty-six thousand seventeen'),\n(22847, 55165, 'fifty-five thousand one hundred sixty-five'),\n(22848, 79596, 'seventy-nine thousand five hundred ninety-six'),\n(22849, 1769, 'one thousand seven hundred sixty-nine'),\n(22850, 27029, 'twenty-seven thousand twenty-nine'),\n(22851, 16453, 'sixteen thousand four hundred fifty-three'),\n(22852, 21237, 'twenty-one thousand two hundred thirty-seven'),\n(22853, 30819, 'thirty thousand eight hundred nineteen'),\n(22854, 52924, 'fifty-two thousand nine hundred twenty-four'),\n(22855, 95885, 'ninety-five thousand eight hundred eighty-five'),\n(22856, 63388, 'sixty-three thousand three hundred eighty-eight'),\n(22857, 93858, 'ninety-three thousand eight hundred fifty-eight'),\n(22858, 80768, 'eighty thousand seven hundred sixty-eight'),\n(22859, 40403, 'forty thousand four hundred three'),\n(22860, 31916, 'thirty-one thousand nine hundred sixteen'),\n(22861, 39014, 'thirty-nine thousand fourteen'),\n(22862, 90400, 'ninety thousand four hundred'),\n(22863, 36661, 'thirty-six thousand six hundred sixty-one'),\n(22864, 59823, 'fifty-nine thousand eight hundred twenty-three'),\n(22865, 80667, 'eighty thousand six hundred sixty-seven'),\n(22866, 70332, 'seventy thousand three hundred thirty-two'),\n(22867, 52839, 'fifty-two thousand eight hundred thirty-nine'),\n(22868, 70809, 'seventy thousand eight hundred nine'),\n(22869, 77446, 'seventy-seven thousand four hundred forty-six'),\n(22870, 43213, 'forty-three thousand two hundred thirteen'),\n(22871, 54445, 'fifty-four thousand four hundred forty-five'),\n(22872, 44703, 'forty-four thousand seven hundred three'),\n(22873, 51092, 'fifty-one thousand ninety-two'),\n(22874, 30687, 'thirty thousand six hundred eighty-seven'),\n(22875, 4231, 'four thousand two hundred thirty-one'),\n(22876, 60219, 'sixty thousand two hundred nineteen'),\n(22877, 44950, 'forty-four thousand nine hundred fifty'),\n(22878, 74259, 'seventy-four thousand two hundred fifty-nine'),\n(22879, 95412, 'ninety-five thousand four hundred twelve'),\n(22880, 61892, 'sixty-one thousand eight hundred ninety-two'),\n(22881, 25428, 'twenty-five thousand four hundred twenty-eight'),\n(22882, 97444, 'ninety-seven thousand four hundred forty-four'),\n(22883, 26834, 'twenty-six thousand eight hundred thirty-four'),\n(22884, 35597, 'thirty-five thousand five hundred ninety-seven'),\n(22885, 50566, 'fifty thousand five hundred sixty-six'),\n(22886, 69857, 'sixty-nine thousand eight hundred fifty-seven'),\n(22887, 92753, 'ninety-two thousand seven hundred fifty-three'),\n(22888, 68584, 'sixty-eight thousand five hundred eighty-four'),\n(22889, 53835, 'fifty-three thousand eight hundred thirty-five'),\n(22890, 37172, 'thirty-seven thousand one hundred seventy-two'),\n(22891, 86737, 'eighty-six thousand seven hundred thirty-seven'),\n(22892, 40891, 'forty thousand eight hundred ninety-one'),\n(22893, 7585, 'seven thousand five hundred eighty-five'),\n(22894, 52351, 'fifty-two thousand three hundred fifty-one'),\n(22895, 44100, 'forty-four thousand one hundred'),\n(22896, 69309, 'sixty-nine thousand three hundred nine'),\n(22897, 12446, 'twelve thousand four hundred forty-six'),\n(22898, 94491, 'ninety-four thousand four hundred ninety-one'),\n(22899, 56215, 'fifty-six thousand two hundred fifteen'),\n(22900, 90637, 'ninety thousand six hundred thirty-seven'),\n(22901, 7853, 'seven thousand eight hundred fifty-three'),\n(22902, 61270, 'sixty-one thousand two hundred seventy'),\n(22903, 29492, 'twenty-nine thousand four hundred ninety-two'),\n(22904, 48686, 'forty-eight thousand six hundred eighty-six'),\n(22905, 44041, 'forty-four thousand forty-one'),\n(22906, 12946, 'twelve thousand nine hundred forty-six'),\n(22907, 62708, 'sixty-two thousand seven hundred eight'),\n(22908, 51438, 'fifty-one thousand four hundred thirty-eight'),\n(22909, 17330, 'seventeen thousand three hundred thirty'),\n(22910, 56953, 'fifty-six thousand nine hundred fifty-three'),\n(22911, 71972, 'seventy-one thousand nine hundred seventy-two'),\n(22912, 10397, 'ten thousand three hundred ninety-seven'),\n(22913, 52242, 'fifty-two thousand two hundred forty-two'),\n(22914, 97039, 'ninety-seven thousand thirty-nine'),\n(22915, 73760, 'seventy-three thousand seven hundred sixty'),\n(22916, 86967, 'eighty-six thousand nine hundred sixty-seven'),\n(22917, 18344, 'eighteen thousand three hundred forty-four'),\n(22918, 62047, 'sixty-two thousand forty-seven'),\n(22919, 31898, 'thirty-one thousand eight hundred ninety-eight'),\n(22920, 44725, 'forty-four thousand seven hundred twenty-five'),\n(22921, 74150, 'seventy-four thousand one hundred fifty'),\n(22922, 95639, 'ninety-five thousand six hundred thirty-nine'),\n(22923, 89281, 'eighty-nine thousand two hundred eighty-one'),\n(22924, 42063, 'forty-two thousand sixty-three'),\n(22925, 19988, 'nineteen thousand nine hundred eighty-eight'),\n(22926, 82130, 'eighty-two thousand one hundred thirty'),\n(22927, 53395, 'fifty-three thousand three hundred ninety-five'),\n(22928, 57286, 'fifty-seven thousand two hundred eighty-six'),\n(22929, 17722, 'seventeen thousand seven hundred twenty-two'),\n(22930, 80735, 'eighty thousand seven hundred thirty-five'),\n(22931, 77289, 'seventy-seven thousand two hundred eighty-nine'),\n(22932, 98249, 'ninety-eight thousand two hundred forty-nine'),\n(22933, 46373, 'forty-six thousand three hundred seventy-three'),\n(22934, 90674, 'ninety thousand six hundred seventy-four'),\n(22935, 81182, 'eighty-one thousand one hundred eighty-two'),\n(22936, 18431, 'eighteen thousand four hundred thirty-one'),\n(22937, 28765, 'twenty-eight thousand seven hundred sixty-five'),\n(22938, 2879, 'two thousand eight hundred seventy-nine'),\n(22939, 33744, 'thirty-three thousand seven hundred forty-four'),\n(22940, 77644, 'seventy-seven thousand six hundred forty-four'),\n(22941, 68473, 'sixty-eight thousand four hundred seventy-three'),\n(22942, 85705, 'eighty-five thousand seven hundred five'),\n(22943, 27411, 'twenty-seven thousand four hundred eleven'),\n(22944, 27622, 'twenty-seven thousand six hundred twenty-two'),\n(22945, 97346, 'ninety-seven thousand three hundred forty-six'),\n(22946, 99408, 'ninety-nine thousand four hundred eight'),\n(22947, 9867, 'nine thousand eight hundred sixty-seven'),\n(22948, 46306, 'forty-six thousand three hundred six'),\n(22949, 76594, 'seventy-six thousand five hundred ninety-four'),\n(22950, 12188, 'twelve thousand one hundred eighty-eight'),\n(22951, 11604, 'eleven thousand six hundred four'),\n(22952, 15351, 'fifteen thousand three hundred fifty-one'),\n(22953, 74509, 'seventy-four thousand five hundred nine'),\n(22954, 63495, 'sixty-three thousand four hundred ninety-five'),\n(22955, 28987, 'twenty-eight thousand nine hundred eighty-seven'),\n(22956, 81720, 'eighty-one thousand seven hundred twenty'),\n(22957, 8213, 'eight thousand two hundred thirteen'),\n(22958, 66792, 'sixty-six thousand seven hundred ninety-two'),\n(22959, 88436, 'eighty-eight thousand four hundred thirty-six'),\n(22960, 75240, 'seventy-five thousand two hundred forty'),\n(22961, 81797, 'eighty-one thousand seven hundred ninety-seven'),\n(22962, 12798, 'twelve thousand seven hundred ninety-eight'),\n(22963, 2271, 'two thousand two hundred seventy-one'),\n(22964, 76117, 'seventy-six thousand one hundred seventeen'),\n(22965, 22369, 'twenty-two thousand three hundred sixty-nine'),\n(22966, 51683, 'fifty-one thousand six hundred eighty-three'),\n(22967, 2881, 'two thousand eight hundred eighty-one'),\n(22968, 10453, 'ten thousand four hundred fifty-three'),\n(22969, 79244, 'seventy-nine thousand two hundred forty-four'),\n(22970, 44471, 'forty-four thousand four hundred seventy-one'),\n(22971, 78990, 'seventy-eight thousand nine hundred ninety'),\n(22972, 93235, 'ninety-three thousand two hundred thirty-five'),\n(22973, 41515, 'forty-one thousand five hundred fifteen'),\n(22974, 45959, 'forty-five thousand nine hundred fifty-nine'),\n(22975, 67278, 'sixty-seven thousand two hundred seventy-eight'),\n(22976, 8773, 'eight thousand seven hundred seventy-three'),\n(22977, 35032, 'thirty-five thousand thirty-two'),\n(22978, 41934, 'forty-one thousand nine hundred thirty-four'),\n(22979, 69223, 'sixty-nine thousand two hundred twenty-three'),\n(22980, 9680, 'nine thousand six hundred eighty'),\n(22981, 56174, 'fifty-six thousand one hundred seventy-four'),\n(22982, 63774, 'sixty-three thousand seven hundred seventy-four'),\n(22983, 29600, 'twenty-nine thousand six hundred'),\n(22984, 9767, 'nine thousand seven hundred sixty-seven'),\n(22985, 27676, 'twenty-seven thousand six hundred seventy-six'),\n(22986, 49857, 'forty-nine thousand eight hundred fifty-seven'),\n(22987, 22099, 'twenty-two thousand ninety-nine'),\n(22988, 45041, 'forty-five thousand forty-one'),\n(22989, 5922, 'five thousand nine hundred twenty-two'),\n(22990, 42504, 'forty-two thousand five hundred four'),\n(22991, 64111, 'sixty-four thousand one hundred eleven'),\n(22992, 90671, 'ninety thousand six hundred seventy-one'),\n(22993, 96008, 'ninety-six thousand eight'),\n(22994, 75511, 'seventy-five thousand five hundred eleven'),\n(22995, 19239, 'nineteen thousand two hundred thirty-nine'),\n(22996, 10052, 'ten thousand fifty-two'),\n(22997, 5846, 'five thousand eight hundred forty-six'),\n(22998, 32954, 'thirty-two thousand nine hundred fifty-four'),\n(22999, 31536, 'thirty-one thousand five hundred thirty-six'),\n(23000, 51687, 'fifty-one thousand six hundred eighty-seven'),\n(23001, 87535, 'eighty-seven thousand five hundred thirty-five'),\n(23002, 74485, 'seventy-four thousand four hundred eighty-five'),\n(23003, 10049, 'ten thousand forty-nine'),\n(23004, 7853, 'seven thousand eight hundred fifty-three'),\n(23005, 14943, 'fourteen thousand nine hundred forty-three'),\n(23006, 83839, 'eighty-three thousand eight hundred thirty-nine'),\n(23007, 44199, 'forty-four thousand one hundred ninety-nine'),\n(23008, 85503, 'eighty-five thousand five hundred three'),\n(23009, 43577, 'forty-three thousand five hundred seventy-seven'),\n(23010, 42649, 'forty-two thousand six hundred forty-nine'),\n(23011, 68429, 'sixty-eight thousand four hundred twenty-nine'),\n(23012, 53685, 'fifty-three thousand six hundred eighty-five'),\n(23013, 41878, 'forty-one thousand eight hundred seventy-eight'),\n(23014, 54519, 'fifty-four thousand five hundred nineteen'),\n(23015, 82833, 'eighty-two thousand eight hundred thirty-three'),\n(23016, 36780, 'thirty-six thousand seven hundred eighty'),\n(23017, 24165, 'twenty-four thousand one hundred sixty-five'),\n(23018, 57477, 'fifty-seven thousand four hundred seventy-seven'),\n(23019, 51711, 'fifty-one thousand seven hundred eleven'),\n(23020, 97385, 'ninety-seven thousand three hundred eighty-five'),\n(23021, 99814, 'ninety-nine thousand eight hundred fourteen'),\n(23022, 68742, 'sixty-eight thousand seven hundred forty-two'),\n(23023, 95500, 'ninety-five thousand five hundred'),\n(23024, 22495, 'twenty-two thousand four hundred ninety-five'),\n(23025, 44383, 'forty-four thousand three hundred eighty-three'),\n(23026, 86042, 'eighty-six thousand forty-two'),\n(23027, 41488, 'forty-one thousand four hundred eighty-eight'),\n(23028, 39763, 'thirty-nine thousand seven hundred sixty-three'),\n(23029, 87210, 'eighty-seven thousand two hundred ten'),\n(23030, 48895, 'forty-eight thousand eight hundred ninety-five'),\n(23031, 22355, 'twenty-two thousand three hundred fifty-five'),\n(23032, 45702, 'forty-five thousand seven hundred two'),\n(23033, 34182, 'thirty-four thousand one hundred eighty-two'),\n(23034, 78428, 'seventy-eight thousand four hundred twenty-eight'),\n(23035, 30354, 'thirty thousand three hundred fifty-four'),\n(23036, 34218, 'thirty-four thousand two hundred eighteen'),\n(23037, 10700, 'ten thousand seven hundred'),\n(23038, 9858, 'nine thousand eight hundred fifty-eight'),\n(23039, 40459, 'forty thousand four hundred fifty-nine'),\n(23040, 50640, 'fifty thousand six hundred forty'),\n(23041, 15459, 'fifteen thousand four hundred fifty-nine'),\n(23042, 23395, 'twenty-three thousand three hundred ninety-five'),\n(23043, 97730, 'ninety-seven thousand seven hundred thirty'),\n(23044, 8721, 'eight thousand seven hundred twenty-one'),\n(23045, 30962, 'thirty thousand nine hundred sixty-two'),\n(23046, 66533, 'sixty-six thousand five hundred thirty-three'),\n(23047, 46713, 'forty-six thousand seven hundred thirteen'),\n(23048, 22230, 'twenty-two thousand two hundred thirty'),\n(23049, 5688, 'five thousand six hundred eighty-eight'),\n(23050, 61020, 'sixty-one thousand twenty'),\n(23051, 59727, 'fifty-nine thousand seven hundred twenty-seven'),\n(23052, 86044, 'eighty-six thousand forty-four'),\n(23053, 12779, 'twelve thousand seven hundred seventy-nine'),\n(23054, 49, 'forty-nine'),\n(23055, 95573, 'ninety-five thousand five hundred seventy-three'),\n(23056, 3577, 'three thousand five hundred seventy-seven'),\n(23057, 61515, 'sixty-one thousand five hundred fifteen'),\n(23058, 61021, 'sixty-one thousand twenty-one'),\n(23059, 68684, 'sixty-eight thousand six hundred eighty-four'),\n(23060, 59819, 'fifty-nine thousand eight hundred nineteen'),\n(23061, 69086, 'sixty-nine thousand eighty-six'),\n(23062, 34650, 'thirty-four thousand six hundred fifty'),\n(23063, 55319, 'fifty-five thousand three hundred nineteen'),\n(23064, 55718, 'fifty-five thousand seven hundred eighteen'),\n(23065, 51828, 'fifty-one thousand eight hundred twenty-eight'),\n(23066, 61824, 'sixty-one thousand eight hundred twenty-four'),\n(23067, 27957, 'twenty-seven thousand nine hundred fifty-seven'),\n(23068, 40053, 'forty thousand fifty-three'),\n(23069, 64049, 'sixty-four thousand forty-nine'),\n(23070, 85640, 'eighty-five thousand six hundred forty'),\n(23071, 20675, 'twenty thousand six hundred seventy-five'),\n(23072, 12096, 'twelve thousand ninety-six'),\n(23073, 65541, 'sixty-five thousand five hundred forty-one'),\n(23074, 68654, 'sixty-eight thousand six hundred fifty-four'),\n(23075, 83360, 'eighty-three thousand three hundred sixty'),\n(23076, 67788, 'sixty-seven thousand seven hundred eighty-eight'),\n(23077, 41714, 'forty-one thousand seven hundred fourteen'),\n(23078, 78767, 'seventy-eight thousand seven hundred sixty-seven'),\n(23079, 92042, 'ninety-two thousand forty-two'),\n(23080, 72495, 'seventy-two thousand four hundred ninety-five'),\n(23081, 39616, 'thirty-nine thousand six hundred sixteen'),\n(23082, 14636, 'fourteen thousand six hundred thirty-six'),\n(23083, 2885, 'two thousand eight hundred eighty-five'),\n(23084, 29187, 'twenty-nine thousand one hundred eighty-seven'),\n(23085, 27628, 'twenty-seven thousand six hundred twenty-eight'),\n(23086, 63766, 'sixty-three thousand seven hundred sixty-six'),\n(23087, 50074, 'fifty thousand seventy-four'),\n(23088, 44576, 'forty-four thousand five hundred seventy-six'),\n(23089, 99995, 'ninety-nine thousand nine hundred ninety-five'),\n(23090, 14771, 'fourteen thousand seven hundred seventy-one'),\n(23091, 28008, 'twenty-eight thousand eight'),\n(23092, 94786, 'ninety-four thousand seven hundred eighty-six'),\n(23093, 35200, 'thirty-five thousand two hundred'),\n(23094, 283, 'two hundred eighty-three'),\n(23095, 66428, 'sixty-six thousand four hundred twenty-eight'),\n(23096, 60029, 'sixty thousand twenty-nine'),\n(23097, 34878, 'thirty-four thousand eight hundred seventy-eight'),\n(23098, 84825, 'eighty-four thousand eight hundred twenty-five'),\n(23099, 21888, 'twenty-one thousand eight hundred eighty-eight'),\n(23100, 94021, 'ninety-four thousand twenty-one'),\n(23101, 30740, 'thirty thousand seven hundred forty'),\n(23102, 24113, 'twenty-four thousand one hundred thirteen'),\n(23103, 3818, 'three thousand eight hundred eighteen'),\n(23104, 63062, 'sixty-three thousand sixty-two'),\n(23105, 86277, 'eighty-six thousand two hundred seventy-seven'),\n(23106, 25322, 'twenty-five thousand three hundred twenty-two'),\n(23107, 43668, 'forty-three thousand six hundred sixty-eight'),\n(23108, 3952, 'three thousand nine hundred fifty-two'),\n(23109, 70535, 'seventy thousand five hundred thirty-five'),\n(23110, 25918, 'twenty-five thousand nine hundred eighteen'),\n(23111, 27229, 'twenty-seven thousand two hundred twenty-nine'),\n(23112, 48752, 'forty-eight thousand seven hundred fifty-two'),\n(23113, 44881, 'forty-four thousand eight hundred eighty-one'),\n(23114, 64414, 'sixty-four thousand four hundred fourteen'),\n(23115, 35939, 'thirty-five thousand nine hundred thirty-nine'),\n(23116, 23918, 'twenty-three thousand nine hundred eighteen'),\n(23117, 25125, 'twenty-five thousand one hundred twenty-five'),\n(23118, 12526, 'twelve thousand five hundred twenty-six'),\n(23119, 74712, 'seventy-four thousand seven hundred twelve'),\n(23120, 70777, 'seventy thousand seven hundred seventy-seven'),\n(23121, 91875, 'ninety-one thousand eight hundred seventy-five'),\n(23122, 41314, 'forty-one thousand three hundred fourteen'),\n(23123, 9547, 'nine thousand five hundred forty-seven'),\n(23124, 37162, 'thirty-seven thousand one hundred sixty-two'),\n(23125, 51172, 'fifty-one thousand one hundred seventy-two'),\n(23126, 7064, 'seven thousand sixty-four'),\n(23127, 52566, 'fifty-two thousand five hundred sixty-six'),\n(23128, 39018, 'thirty-nine thousand eighteen'),\n(23129, 99950, 'ninety-nine thousand nine hundred fifty'),\n(23130, 73518, 'seventy-three thousand five hundred eighteen'),\n(23131, 28550, 'twenty-eight thousand five hundred fifty'),\n(23132, 94915, 'ninety-four thousand nine hundred fifteen'),\n(23133, 46027, 'forty-six thousand twenty-seven'),\n(23134, 61076, 'sixty-one thousand seventy-six'),\n(23135, 70354, 'seventy thousand three hundred fifty-four'),\n(23136, 70643, 'seventy thousand six hundred forty-three'),\n(23137, 71184, 'seventy-one thousand one hundred eighty-four'),\n(23138, 36771, 'thirty-six thousand seven hundred seventy-one'),\n(23139, 41954, 'forty-one thousand nine hundred fifty-four'),\n(23140, 49244, 'forty-nine thousand two hundred forty-four'),\n(23141, 28770, 'twenty-eight thousand seven hundred seventy'),\n(23142, 83008, 'eighty-three thousand eight'),\n(23143, 82772, 'eighty-two thousand seven hundred seventy-two'),\n(23144, 3962, 'three thousand nine hundred sixty-two'),\n(23145, 82433, 'eighty-two thousand four hundred thirty-three'),\n(23146, 64003, 'sixty-four thousand three'),\n(23147, 1353, 'one thousand three hundred fifty-three'),\n(23148, 41889, 'forty-one thousand eight hundred eighty-nine'),\n(23149, 49364, 'forty-nine thousand three hundred sixty-four'),\n(23150, 5333, 'five thousand three hundred thirty-three'),\n(23151, 62073, 'sixty-two thousand seventy-three'),\n(23152, 79364, 'seventy-nine thousand three hundred sixty-four'),\n(23153, 6326, 'six thousand three hundred twenty-six'),\n(23154, 74235, 'seventy-four thousand two hundred thirty-five'),\n(23155, 14801, 'fourteen thousand eight hundred one'),\n(23156, 12219, 'twelve thousand two hundred nineteen'),\n(23157, 91148, 'ninety-one thousand one hundred forty-eight'),\n(23158, 15650, 'fifteen thousand six hundred fifty'),\n(23159, 62682, 'sixty-two thousand six hundred eighty-two'),\n(23160, 64143, 'sixty-four thousand one hundred forty-three'),\n(23161, 60222, 'sixty thousand two hundred twenty-two'),\n(23162, 62003, 'sixty-two thousand three'),\n(23163, 7956, 'seven thousand nine hundred fifty-six'),\n(23164, 89732, 'eighty-nine thousand seven hundred thirty-two'),\n(23165, 29260, 'twenty-nine thousand two hundred sixty'),\n(23166, 340, 'three hundred forty'),\n(23167, 20013, 'twenty thousand thirteen'),\n(23168, 50160, 'fifty thousand one hundred sixty'),\n(23169, 98632, 'ninety-eight thousand six hundred thirty-two'),\n(23170, 33961, 'thirty-three thousand nine hundred sixty-one'),\n(23171, 13335, 'thirteen thousand three hundred thirty-five'),\n(23172, 12894, 'twelve thousand eight hundred ninety-four'),\n(23173, 58239, 'fifty-eight thousand two hundred thirty-nine'),\n(23174, 70723, 'seventy thousand seven hundred twenty-three'),\n(23175, 99321, 'ninety-nine thousand three hundred twenty-one'),\n(23176, 90602, 'ninety thousand six hundred two'),\n(23177, 72498, 'seventy-two thousand four hundred ninety-eight'),\n(23178, 73856, 'seventy-three thousand eight hundred fifty-six'),\n(23179, 60896, 'sixty thousand eight hundred ninety-six'),\n(23180, 26178, 'twenty-six thousand one hundred seventy-eight'),\n(23181, 50638, 'fifty thousand six hundred thirty-eight'),\n(23182, 42217, 'forty-two thousand two hundred seventeen'),\n(23183, 48850, 'forty-eight thousand eight hundred fifty'),\n(23184, 14551, 'fourteen thousand five hundred fifty-one'),\n(23185, 70040, 'seventy thousand forty'),\n(23186, 78640, 'seventy-eight thousand six hundred forty'),\n(23187, 15926, 'fifteen thousand nine hundred twenty-six'),\n(23188, 93520, 'ninety-three thousand five hundred twenty'),\n(23189, 75962, 'seventy-five thousand nine hundred sixty-two'),\n(23190, 73934, 'seventy-three thousand nine hundred thirty-four'),\n(23191, 70159, 'seventy thousand one hundred fifty-nine'),\n(23192, 13031, 'thirteen thousand thirty-one'),\n(23193, 52877, 'fifty-two thousand eight hundred seventy-seven'),\n(23194, 80595, 'eighty thousand five hundred ninety-five'),\n(23195, 84094, 'eighty-four thousand ninety-four'),\n(23196, 14341, 'fourteen thousand three hundred forty-one'),\n(23197, 45913, 'forty-five thousand nine hundred thirteen'),\n(23198, 77661, 'seventy-seven thousand six hundred sixty-one'),\n(23199, 36192, 'thirty-six thousand one hundred ninety-two'),\n(23200, 87079, 'eighty-seven thousand seventy-nine'),\n(23201, 55866, 'fifty-five thousand eight hundred sixty-six'),\n(23202, 83091, 'eighty-three thousand ninety-one'),\n(23203, 60716, 'sixty thousand seven hundred sixteen'),\n(23204, 53476, 'fifty-three thousand four hundred seventy-six'),\n(23205, 54866, 'fifty-four thousand eight hundred sixty-six'),\n(23206, 93785, 'ninety-three thousand seven hundred eighty-five'),\n(23207, 12637, 'twelve thousand six hundred thirty-seven'),\n(23208, 65905, 'sixty-five thousand nine hundred five'),\n(23209, 66465, 'sixty-six thousand four hundred sixty-five'),\n(23210, 15780, 'fifteen thousand seven hundred eighty'),\n(23211, 78610, 'seventy-eight thousand six hundred ten'),\n(23212, 77539, 'seventy-seven thousand five hundred thirty-nine'),\n(23213, 16648, 'sixteen thousand six hundred forty-eight'),\n(23214, 39501, 'thirty-nine thousand five hundred one'),\n(23215, 87397, 'eighty-seven thousand three hundred ninety-seven'),\n(23216, 48532, 'forty-eight thousand five hundred thirty-two'),\n(23217, 25608, 'twenty-five thousand six hundred eight'),\n(23218, 68758, 'sixty-eight thousand seven hundred fifty-eight'),\n(23219, 88549, 'eighty-eight thousand five hundred forty-nine'),\n(23220, 50415, 'fifty thousand four hundred fifteen'),\n(23221, 1315, 'one thousand three hundred fifteen'),\n(23222, 40435, 'forty thousand four hundred thirty-five'),\n(23223, 93417, 'ninety-three thousand four hundred seventeen'),\n(23224, 36041, 'thirty-six thousand forty-one'),\n(23225, 77042, 'seventy-seven thousand forty-two'),\n(23226, 65596, 'sixty-five thousand five hundred ninety-six'),\n(23227, 19594, 'nineteen thousand five hundred ninety-four'),\n(23228, 2365, 'two thousand three hundred sixty-five'),\n(23229, 10810, 'ten thousand eight hundred ten'),\n(23230, 1325, 'one thousand three hundred twenty-five'),\n(23231, 73187, 'seventy-three thousand one hundred eighty-seven'),\n(23232, 24339, 'twenty-four thousand three hundred thirty-nine'),\n(23233, 71648, 'seventy-one thousand six hundred forty-eight'),\n(23234, 30917, 'thirty thousand nine hundred seventeen'),\n(23235, 73703, 'seventy-three thousand seven hundred three'),\n(23236, 18596, 'eighteen thousand five hundred ninety-six'),\n(23237, 40060, 'forty thousand sixty'),\n(23238, 23659, 'twenty-three thousand six hundred fifty-nine'),\n(23239, 36972, 'thirty-six thousand nine hundred seventy-two'),\n(23240, 90048, 'ninety thousand forty-eight'),\n(23241, 43474, 'forty-three thousand four hundred seventy-four'),\n(23242, 5553, 'five thousand five hundred fifty-three'),\n(23243, 50968, 'fifty thousand nine hundred sixty-eight'),\n(23244, 25849, 'twenty-five thousand eight hundred forty-nine'),\n(23245, 76173, 'seventy-six thousand one hundred seventy-three'),\n(23246, 93012, 'ninety-three thousand twelve'),\n(23247, 56171, 'fifty-six thousand one hundred seventy-one'),\n(23248, 34374, 'thirty-four thousand three hundred seventy-four'),\n(23249, 98205, 'ninety-eight thousand two hundred five'),\n(23250, 38686, 'thirty-eight thousand six hundred eighty-six'),\n(23251, 17743, 'seventeen thousand seven hundred forty-three'),\n(23252, 87661, 'eighty-seven thousand six hundred sixty-one'),\n(23253, 21120, 'twenty-one thousand one hundred twenty'),\n(23254, 83074, 'eighty-three thousand seventy-four'),\n(23255, 35249, 'thirty-five thousand two hundred forty-nine'),\n(23256, 26539, 'twenty-six thousand five hundred thirty-nine'),\n(23257, 82484, 'eighty-two thousand four hundred eighty-four'),\n(23258, 49268, 'forty-nine thousand two hundred sixty-eight'),\n(23259, 1011, 'one thousand eleven'),\n(23260, 84316, 'eighty-four thousand three hundred sixteen'),\n(23261, 70974, 'seventy thousand nine hundred seventy-four'),\n(23262, 84233, 'eighty-four thousand two hundred thirty-three'),\n(23263, 10520, 'ten thousand five hundred twenty'),\n(23264, 87044, 'eighty-seven thousand forty-four'),\n(23265, 97954, 'ninety-seven thousand nine hundred fifty-four'),\n(23266, 45841, 'forty-five thousand eight hundred forty-one'),\n(23267, 22141, 'twenty-two thousand one hundred forty-one'),\n(23268, 14182, 'fourteen thousand one hundred eighty-two'),\n(23269, 98147, 'ninety-eight thousand one hundred forty-seven'),\n(23270, 36319, 'thirty-six thousand three hundred nineteen'),\n(23271, 70837, 'seventy thousand eight hundred thirty-seven'),\n(23272, 90692, 'ninety thousand six hundred ninety-two'),\n(23273, 67121, 'sixty-seven thousand one hundred twenty-one'),\n(23274, 28666, 'twenty-eight thousand six hundred sixty-six'),\n(23275, 33530, 'thirty-three thousand five hundred thirty'),\n(23276, 7183, 'seven thousand one hundred eighty-three'),\n(23277, 5236, 'five thousand two hundred thirty-six'),\n(23278, 80548, 'eighty thousand five hundred forty-eight'),\n(23279, 16777, 'sixteen thousand seven hundred seventy-seven'),\n(23280, 97967, 'ninety-seven thousand nine hundred sixty-seven'),\n(23281, 67165, 'sixty-seven thousand one hundred sixty-five'),\n(23282, 25256, 'twenty-five thousand two hundred fifty-six'),\n(23283, 15170, 'fifteen thousand one hundred seventy'),\n(23284, 9796, 'nine thousand seven hundred ninety-six'),\n(23285, 76480, 'seventy-six thousand four hundred eighty'),\n(23286, 3630, 'three thousand six hundred thirty'),\n(23287, 28011, 'twenty-eight thousand eleven'),\n(23288, 21575, 'twenty-one thousand five hundred seventy-five'),\n(23289, 10048, 'ten thousand forty-eight'),\n(23290, 88933, 'eighty-eight thousand nine hundred thirty-three'),\n(23291, 2812, 'two thousand eight hundred twelve'),\n(23292, 33735, 'thirty-three thousand seven hundred thirty-five'),\n(23293, 21127, 'twenty-one thousand one hundred twenty-seven'),\n(23294, 14258, 'fourteen thousand two hundred fifty-eight'),\n(23295, 43699, 'forty-three thousand six hundred ninety-nine'),\n(23296, 32905, 'thirty-two thousand nine hundred five'),\n(23297, 21878, 'twenty-one thousand eight hundred seventy-eight'),\n(23298, 73355, 'seventy-three thousand three hundred fifty-five'),\n(23299, 29446, 'twenty-nine thousand four hundred forty-six'),\n(23300, 3401, 'three thousand four hundred one'),\n(23301, 27017, 'twenty-seven thousand seventeen'),\n(23302, 52191, 'fifty-two thousand one hundred ninety-one'),\n(23303, 38679, 'thirty-eight thousand six hundred seventy-nine'),\n(23304, 77794, 'seventy-seven thousand seven hundred ninety-four'),\n(23305, 87916, 'eighty-seven thousand nine hundred sixteen'),\n(23306, 47688, 'forty-seven thousand six hundred eighty-eight'),\n(23307, 81647, 'eighty-one thousand six hundred forty-seven'),\n(23308, 4886, 'four thousand eight hundred eighty-six'),\n(23309, 44796, 'forty-four thousand seven hundred ninety-six'),\n(23310, 67938, 'sixty-seven thousand nine hundred thirty-eight'),\n(23311, 91025, 'ninety-one thousand twenty-five'),\n(23312, 72844, 'seventy-two thousand eight hundred forty-four'),\n(23313, 67287, 'sixty-seven thousand two hundred eighty-seven'),\n(23314, 21271, 'twenty-one thousand two hundred seventy-one'),\n(23315, 96367, 'ninety-six thousand three hundred sixty-seven'),\n(23316, 23512, 'twenty-three thousand five hundred twelve'),\n(23317, 90773, 'ninety thousand seven hundred seventy-three'),\n(23318, 69436, 'sixty-nine thousand four hundred thirty-six'),\n(23319, 58555, 'fifty-eight thousand five hundred fifty-five'),\n(23320, 14073, 'fourteen thousand seventy-three'),\n(23321, 58627, 'fifty-eight thousand six hundred twenty-seven'),\n(23322, 69549, 'sixty-nine thousand five hundred forty-nine'),\n(23323, 47929, 'forty-seven thousand nine hundred twenty-nine'),\n(23324, 89922, 'eighty-nine thousand nine hundred twenty-two'),\n(23325, 29449, 'twenty-nine thousand four hundred forty-nine'),\n(23326, 37493, 'thirty-seven thousand four hundred ninety-three'),\n(23327, 74623, 'seventy-four thousand six hundred twenty-three'),\n(23328, 92064, 'ninety-two thousand sixty-four'),\n(23329, 44323, 'forty-four thousand three hundred twenty-three'),\n(23330, 63265, 'sixty-three thousand two hundred sixty-five'),\n(23331, 69513, 'sixty-nine thousand five hundred thirteen'),\n(23332, 32218, 'thirty-two thousand two hundred eighteen'),\n(23333, 95799, 'ninety-five thousand seven hundred ninety-nine'),\n(23334, 63059, 'sixty-three thousand fifty-nine'),\n(23335, 22578, 'twenty-two thousand five hundred seventy-eight'),\n(23336, 64359, 'sixty-four thousand three hundred fifty-nine'),\n(23337, 85406, 'eighty-five thousand four hundred six'),\n(23338, 23385, 'twenty-three thousand three hundred eighty-five'),\n(23339, 17516, 'seventeen thousand five hundred sixteen'),\n(23340, 63428, 'sixty-three thousand four hundred twenty-eight'),\n(23341, 77530, 'seventy-seven thousand five hundred thirty'),\n(23342, 38638, 'thirty-eight thousand six hundred thirty-eight'),\n(23343, 28771, 'twenty-eight thousand seven hundred seventy-one'),\n(23344, 94593, 'ninety-four thousand five hundred ninety-three'),\n(23345, 49314, 'forty-nine thousand three hundred fourteen'),\n(23346, 14806, 'fourteen thousand eight hundred six'),\n(23347, 2977, 'two thousand nine hundred seventy-seven'),\n(23348, 68209, 'sixty-eight thousand two hundred nine'),\n(23349, 56244, 'fifty-six thousand two hundred forty-four'),\n(23350, 40404, 'forty thousand four hundred four'),\n(23351, 32329, 'thirty-two thousand three hundred twenty-nine'),\n(23352, 51575, 'fifty-one thousand five hundred seventy-five'),\n(23353, 31710, 'thirty-one thousand seven hundred ten'),\n(23354, 89808, 'eighty-nine thousand eight hundred eight'),\n(23355, 55056, 'fifty-five thousand fifty-six'),\n(23356, 60341, 'sixty thousand three hundred forty-one'),\n(23357, 69529, 'sixty-nine thousand five hundred twenty-nine'),\n(23358, 49484, 'forty-nine thousand four hundred eighty-four'),\n(23359, 46290, 'forty-six thousand two hundred ninety'),\n(23360, 9014, 'nine thousand fourteen'),\n(23361, 17870, 'seventeen thousand eight hundred seventy'),\n(23362, 20207, 'twenty thousand two hundred seven'),\n(23363, 96086, 'ninety-six thousand eighty-six'),\n(23364, 58840, 'fifty-eight thousand eight hundred forty'),\n(23365, 73828, 'seventy-three thousand eight hundred twenty-eight'),\n(23366, 26844, 'twenty-six thousand eight hundred forty-four'),\n(23367, 17427, 'seventeen thousand four hundred twenty-seven'),\n(23368, 17354, 'seventeen thousand three hundred fifty-four'),\n(23369, 89537, 'eighty-nine thousand five hundred thirty-seven'),\n(23370, 25912, 'twenty-five thousand nine hundred twelve'),\n(23371, 66085, 'sixty-six thousand eighty-five'),\n(23372, 65729, 'sixty-five thousand seven hundred twenty-nine'),\n(23373, 6498, 'six thousand four hundred ninety-eight'),\n(23374, 47987, 'forty-seven thousand nine hundred eighty-seven'),\n(23375, 35867, 'thirty-five thousand eight hundred sixty-seven'),\n(23376, 8285, 'eight thousand two hundred eighty-five'),\n(23377, 9778, 'nine thousand seven hundred seventy-eight'),\n(23378, 10338, 'ten thousand three hundred thirty-eight'),\n(23379, 77276, 'seventy-seven thousand two hundred seventy-six'),\n(23380, 31120, 'thirty-one thousand one hundred twenty'),\n(23381, 8997, 'eight thousand nine hundred ninety-seven'),\n(23382, 9251, 'nine thousand two hundred fifty-one'),\n(23383, 18729, 'eighteen thousand seven hundred twenty-nine'),\n(23384, 24129, 'twenty-four thousand one hundred twenty-nine'),\n(23385, 76296, 'seventy-six thousand two hundred ninety-six'),\n(23386, 59601, 'fifty-nine thousand six hundred one'),\n(23387, 48361, 'forty-eight thousand three hundred sixty-one'),\n(23388, 53964, 'fifty-three thousand nine hundred sixty-four'),\n(23389, 89733, 'eighty-nine thousand seven hundred thirty-three'),\n(23390, 90936, 'ninety thousand nine hundred thirty-six'),\n(23391, 52230, 'fifty-two thousand two hundred thirty'),\n(23392, 30685, 'thirty thousand six hundred eighty-five'),\n(23393, 90448, 'ninety thousand four hundred forty-eight'),\n(23394, 95786, 'ninety-five thousand seven hundred eighty-six'),\n(23395, 21699, 'twenty-one thousand six hundred ninety-nine'),\n(23396, 89012, 'eighty-nine thousand twelve'),\n(23397, 60818, 'sixty thousand eight hundred eighteen'),\n(23398, 78439, 'seventy-eight thousand four hundred thirty-nine'),\n(23399, 34945, 'thirty-four thousand nine hundred forty-five'),\n(23400, 7363, 'seven thousand three hundred sixty-three'),\n(23401, 60322, 'sixty thousand three hundred twenty-two'),\n(23402, 72677, 'seventy-two thousand six hundred seventy-seven'),\n(23403, 39897, 'thirty-nine thousand eight hundred ninety-seven'),\n(23404, 21031, 'twenty-one thousand thirty-one'),\n(23405, 45966, 'forty-five thousand nine hundred sixty-six'),\n(23406, 603, 'six hundred three'),\n(23407, 4356, 'four thousand three hundred fifty-six'),\n(23408, 51175, 'fifty-one thousand one hundred seventy-five'),\n(23409, 16461, 'sixteen thousand four hundred sixty-one'),\n(23410, 59916, 'fifty-nine thousand nine hundred sixteen'),\n(23411, 79711, 'seventy-nine thousand seven hundred eleven'),\n(23412, 10576, 'ten thousand five hundred seventy-six'),\n(23413, 23845, 'twenty-three thousand eight hundred forty-five'),\n(23414, 20890, 'twenty thousand eight hundred ninety'),\n(23415, 17833, 'seventeen thousand eight hundred thirty-three'),\n(23416, 21473, 'twenty-one thousand four hundred seventy-three'),\n(23417, 73194, 'seventy-three thousand one hundred ninety-four'),\n(23418, 16145, 'sixteen thousand one hundred forty-five'),\n(23419, 99939, 'ninety-nine thousand nine hundred thirty-nine'),\n(23420, 68436, 'sixty-eight thousand four hundred thirty-six'),\n(23421, 53173, 'fifty-three thousand one hundred seventy-three'),\n(23422, 82340, 'eighty-two thousand three hundred forty'),\n(23423, 45949, 'forty-five thousand nine hundred forty-nine'),\n(23424, 35528, 'thirty-five thousand five hundred twenty-eight'),\n(23425, 14954, 'fourteen thousand nine hundred fifty-four'),\n(23426, 94254, 'ninety-four thousand two hundred fifty-four'),\n(23427, 94556, 'ninety-four thousand five hundred fifty-six'),\n(23428, 37592, 'thirty-seven thousand five hundred ninety-two'),\n(23429, 34491, 'thirty-four thousand four hundred ninety-one'),\n(23430, 70638, 'seventy thousand six hundred thirty-eight'),\n(23431, 60238, 'sixty thousand two hundred thirty-eight'),\n(23432, 67919, 'sixty-seven thousand nine hundred nineteen'),\n(23433, 71969, 'seventy-one thousand nine hundred sixty-nine'),\n(23434, 23137, 'twenty-three thousand one hundred thirty-seven'),\n(23435, 31243, 'thirty-one thousand two hundred forty-three'),\n(23436, 30148, 'thirty thousand one hundred forty-eight'),\n(23437, 44688, 'forty-four thousand six hundred eighty-eight'),\n(23438, 19428, 'nineteen thousand four hundred twenty-eight'),\n(23439, 6511, 'six thousand five hundred eleven'),\n(23440, 17315, 'seventeen thousand three hundred fifteen'),\n(23441, 43771, 'forty-three thousand seven hundred seventy-one'),\n(23442, 89891, 'eighty-nine thousand eight hundred ninety-one'),\n(23443, 66871, 'sixty-six thousand eight hundred seventy-one'),\n(23444, 97850, 'ninety-seven thousand eight hundred fifty'),\n(23445, 30494, 'thirty thousand four hundred ninety-four'),\n(23446, 79671, 'seventy-nine thousand six hundred seventy-one'),\n(23447, 35547, 'thirty-five thousand five hundred forty-seven'),\n(23448, 35879, 'thirty-five thousand eight hundred seventy-nine'),\n(23449, 19382, 'nineteen thousand three hundred eighty-two'),\n(23450, 69964, 'sixty-nine thousand nine hundred sixty-four'),\n(23451, 94777, 'ninety-four thousand seven hundred seventy-seven'),\n(23452, 6338, 'six thousand three hundred thirty-eight'),\n(23453, 66622, 'sixty-six thousand six hundred twenty-two'),\n(23454, 65071, 'sixty-five thousand seventy-one'),\n(23455, 33206, 'thirty-three thousand two hundred six'),\n(23456, 38021, 'thirty-eight thousand twenty-one'),\n(23457, 28627, 'twenty-eight thousand six hundred twenty-seven'),\n(23458, 88694, 'eighty-eight thousand six hundred ninety-four'),\n(23459, 67536, 'sixty-seven thousand five hundred thirty-six'),\n(23460, 44753, 'forty-four thousand seven hundred fifty-three'),\n(23461, 40647, 'forty thousand six hundred forty-seven'),\n(23462, 34094, 'thirty-four thousand ninety-four'),\n(23463, 15157, 'fifteen thousand one hundred fifty-seven'),\n(23464, 20284, 'twenty thousand two hundred eighty-four'),\n(23465, 62965, 'sixty-two thousand nine hundred sixty-five'),\n(23466, 22488, 'twenty-two thousand four hundred eighty-eight'),\n(23467, 45920, 'forty-five thousand nine hundred twenty'),\n(23468, 83014, 'eighty-three thousand fourteen'),\n(23469, 82421, 'eighty-two thousand four hundred twenty-one'),\n(23470, 27319, 'twenty-seven thousand three hundred nineteen'),\n(23471, 26644, 'twenty-six thousand six hundred forty-four'),\n(23472, 28950, 'twenty-eight thousand nine hundred fifty'),\n(23473, 15142, 'fifteen thousand one hundred forty-two'),\n(23474, 14758, 'fourteen thousand seven hundred fifty-eight'),\n(23475, 68043, 'sixty-eight thousand forty-three'),\n(23476, 42649, 'forty-two thousand six hundred forty-nine'),\n(23477, 46511, 'forty-six thousand five hundred eleven'),\n(23478, 60710, 'sixty thousand seven hundred ten'),\n(23479, 50800, 'fifty thousand eight hundred'),\n(23480, 6379, 'six thousand three hundred seventy-nine'),\n(23481, 43034, 'forty-three thousand thirty-four'),\n(23482, 49416, 'forty-nine thousand four hundred sixteen'),\n(23483, 99256, 'ninety-nine thousand two hundred fifty-six'),\n(23484, 28556, 'twenty-eight thousand five hundred fifty-six'),\n(23485, 5809, 'five thousand eight hundred nine'),\n(23486, 51409, 'fifty-one thousand four hundred nine'),\n(23487, 840, 'eight hundred forty'),\n(23488, 13140, 'thirteen thousand one hundred forty'),\n(23489, 53747, 'fifty-three thousand seven hundred forty-seven'),\n(23490, 72919, 'seventy-two thousand nine hundred nineteen'),\n(23491, 16609, 'sixteen thousand six hundred nine'),\n(23492, 80700, 'eighty thousand seven hundred'),\n(23493, 44492, 'forty-four thousand four hundred ninety-two'),\n(23494, 93934, 'ninety-three thousand nine hundred thirty-four'),\n(23495, 80016, 'eighty thousand sixteen'),\n(23496, 94779, 'ninety-four thousand seven hundred seventy-nine'),\n(23497, 29719, 'twenty-nine thousand seven hundred nineteen'),\n(23498, 11594, 'eleven thousand five hundred ninety-four'),\n(23499, 15766, 'fifteen thousand seven hundred sixty-six'),\n(23500, 98228, 'ninety-eight thousand two hundred twenty-eight'),\n(23501, 80538, 'eighty thousand five hundred thirty-eight'),\n(23502, 49852, 'forty-nine thousand eight hundred fifty-two'),\n(23503, 29929, 'twenty-nine thousand nine hundred twenty-nine'),\n(23504, 67227, 'sixty-seven thousand two hundred twenty-seven'),\n(23505, 77702, 'seventy-seven thousand seven hundred two'),\n(23506, 11464, 'eleven thousand four hundred sixty-four'),\n(23507, 18588, 'eighteen thousand five hundred eighty-eight'),\n(23508, 91089, 'ninety-one thousand eighty-nine'),\n(23509, 43218, 'forty-three thousand two hundred eighteen'),\n(23510, 67325, 'sixty-seven thousand three hundred twenty-five'),\n(23511, 278, 'two hundred seventy-eight'),\n(23512, 49032, 'forty-nine thousand thirty-two'),\n(23513, 44547, 'forty-four thousand five hundred forty-seven'),\n(23514, 83138, 'eighty-three thousand one hundred thirty-eight'),\n(23515, 12927, 'twelve thousand nine hundred twenty-seven'),\n(23516, 92786, 'ninety-two thousand seven hundred eighty-six'),\n(23517, 51758, 'fifty-one thousand seven hundred fifty-eight'),\n(23518, 31122, 'thirty-one thousand one hundred twenty-two'),\n(23519, 73317, 'seventy-three thousand three hundred seventeen'),\n(23520, 53734, 'fifty-three thousand seven hundred thirty-four'),\n(23521, 66048, 'sixty-six thousand forty-eight'),\n(23522, 20213, 'twenty thousand two hundred thirteen'),\n(23523, 52858, 'fifty-two thousand eight hundred fifty-eight'),\n(23524, 15831, 'fifteen thousand eight hundred thirty-one'),\n(23525, 53469, 'fifty-three thousand four hundred sixty-nine'),\n(23526, 6111, 'six thousand one hundred eleven'),\n(23527, 78455, 'seventy-eight thousand four hundred fifty-five'),\n(23528, 3147, 'three thousand one hundred forty-seven'),\n(23529, 17883, 'seventeen thousand eight hundred eighty-three'),\n(23530, 37172, 'thirty-seven thousand one hundred seventy-two'),\n(23531, 2148, 'two thousand one hundred forty-eight'),\n(23532, 20027, 'twenty thousand twenty-seven'),\n(23533, 37991, 'thirty-seven thousand nine hundred ninety-one'),\n(23534, 96979, 'ninety-six thousand nine hundred seventy-nine'),\n(23535, 49088, 'forty-nine thousand eighty-eight'),\n(23536, 52540, 'fifty-two thousand five hundred forty'),\n(23537, 73241, 'seventy-three thousand two hundred forty-one'),\n(23538, 85859, 'eighty-five thousand eight hundred fifty-nine'),\n(23539, 42215, 'forty-two thousand two hundred fifteen'),\n(23540, 45025, 'forty-five thousand twenty-five'),\n(23541, 10244, 'ten thousand two hundred forty-four'),\n(23542, 49909, 'forty-nine thousand nine hundred nine'),\n(23543, 63897, 'sixty-three thousand eight hundred ninety-seven'),\n(23544, 75501, 'seventy-five thousand five hundred one'),\n(23545, 33003, 'thirty-three thousand three'),\n(23546, 6611, 'six thousand six hundred eleven'),\n(23547, 42644, 'forty-two thousand six hundred forty-four'),\n(23548, 29415, 'twenty-nine thousand four hundred fifteen'),\n(23549, 8102, 'eight thousand one hundred two'),\n(23550, 21815, 'twenty-one thousand eight hundred fifteen'),\n(23551, 83430, 'eighty-three thousand four hundred thirty'),\n(23552, 8043, 'eight thousand forty-three'),\n(23553, 36525, 'thirty-six thousand five hundred twenty-five'),\n(23554, 24614, 'twenty-four thousand six hundred fourteen'),\n(23555, 34006, 'thirty-four thousand six'),\n(23556, 63020, 'sixty-three thousand twenty'),\n(23557, 10745, 'ten thousand seven hundred forty-five'),\n(23558, 20771, 'twenty thousand seven hundred seventy-one'),\n(23559, 59083, 'fifty-nine thousand eighty-three'),\n(23560, 52303, 'fifty-two thousand three hundred three'),\n(23561, 65518, 'sixty-five thousand five hundred eighteen'),\n(23562, 78898, 'seventy-eight thousand eight hundred ninety-eight'),\n(23563, 74657, 'seventy-four thousand six hundred fifty-seven'),\n(23564, 76094, 'seventy-six thousand ninety-four'),\n(23565, 18293, 'eighteen thousand two hundred ninety-three'),\n(23566, 36063, 'thirty-six thousand sixty-three'),\n(23567, 7299, 'seven thousand two hundred ninety-nine'),\n(23568, 3868, 'three thousand eight hundred sixty-eight'),\n(23569, 40627, 'forty thousand six hundred twenty-seven'),\n(23570, 84909, 'eighty-four thousand nine hundred nine'),\n(23571, 70715, 'seventy thousand seven hundred fifteen'),\n(23572, 24432, 'twenty-four thousand four hundred thirty-two'),\n(23573, 30419, 'thirty thousand four hundred nineteen'),\n(23574, 42933, 'forty-two thousand nine hundred thirty-three'),\n(23575, 62358, 'sixty-two thousand three hundred fifty-eight'),\n(23576, 98352, 'ninety-eight thousand three hundred fifty-two'),\n(23577, 49148, 'forty-nine thousand one hundred forty-eight'),\n(23578, 49457, 'forty-nine thousand four hundred fifty-seven'),\n(23579, 77901, 'seventy-seven thousand nine hundred one'),\n(23580, 24942, 'twenty-four thousand nine hundred forty-two'),\n(23581, 40659, 'forty thousand six hundred fifty-nine'),\n(23582, 59441, 'fifty-nine thousand four hundred forty-one'),\n(23583, 36020, 'thirty-six thousand twenty'),\n(23584, 85865, 'eighty-five thousand eight hundred sixty-five'),\n(23585, 27664, 'twenty-seven thousand six hundred sixty-four'),\n(23586, 32849, 'thirty-two thousand eight hundred forty-nine'),\n(23587, 19881, 'nineteen thousand eight hundred eighty-one'),\n(23588, 31546, 'thirty-one thousand five hundred forty-six'),\n(23589, 22977, 'twenty-two thousand nine hundred seventy-seven'),\n(23590, 89488, 'eighty-nine thousand four hundred eighty-eight'),\n(23591, 47010, 'forty-seven thousand ten'),\n(23592, 89848, 'eighty-nine thousand eight hundred forty-eight'),\n(23593, 95780, 'ninety-five thousand seven hundred eighty'),\n(23594, 33380, 'thirty-three thousand three hundred eighty'),\n(23595, 91505, 'ninety-one thousand five hundred five'),\n(23596, 77283, 'seventy-seven thousand two hundred eighty-three'),\n(23597, 6903, 'six thousand nine hundred three'),\n(23598, 62239, 'sixty-two thousand two hundred thirty-nine'),\n(23599, 4753, 'four thousand seven hundred fifty-three'),\n(23600, 24834, 'twenty-four thousand eight hundred thirty-four'),\n(23601, 66446, 'sixty-six thousand four hundred forty-six'),\n(23602, 82830, 'eighty-two thousand eight hundred thirty'),\n(23603, 45352, 'forty-five thousand three hundred fifty-two'),\n(23604, 62285, 'sixty-two thousand two hundred eighty-five'),\n(23605, 73778, 'seventy-three thousand seven hundred seventy-eight'),\n(23606, 22763, 'twenty-two thousand seven hundred sixty-three'),\n(23607, 44766, 'forty-four thousand seven hundred sixty-six'),\n(23608, 99597, 'ninety-nine thousand five hundred ninety-seven'),\n(23609, 63864, 'sixty-three thousand eight hundred sixty-four'),\n(23610, 7637, 'seven thousand six hundred thirty-seven'),\n(23611, 89977, 'eighty-nine thousand nine hundred seventy-seven'),\n(23612, 57362, 'fifty-seven thousand three hundred sixty-two'),\n(23613, 68992, 'sixty-eight thousand nine hundred ninety-two'),\n(23614, 6093, 'six thousand ninety-three'),\n(23615, 81853, 'eighty-one thousand eight hundred fifty-three'),\n(23616, 32792, 'thirty-two thousand seven hundred ninety-two'),\n(23617, 77313, 'seventy-seven thousand three hundred thirteen'),\n(23618, 21819, 'twenty-one thousand eight hundred nineteen'),\n(23619, 31603, 'thirty-one thousand six hundred three'),\n(23620, 2469, 'two thousand four hundred sixty-nine'),\n(23621, 59579, 'fifty-nine thousand five hundred seventy-nine'),\n(23622, 89796, 'eighty-nine thousand seven hundred ninety-six'),\n(23623, 59227, 'fifty-nine thousand two hundred twenty-seven'),\n(23624, 60582, 'sixty thousand five hundred eighty-two'),\n(23625, 73042, 'seventy-three thousand forty-two'),\n(23626, 63668, 'sixty-three thousand six hundred sixty-eight'),\n(23627, 72324, 'seventy-two thousand three hundred twenty-four'),\n(23628, 55144, 'fifty-five thousand one hundred forty-four'),\n(23629, 96203, 'ninety-six thousand two hundred three'),\n(23630, 56852, 'fifty-six thousand eight hundred fifty-two'),\n(23631, 87405, 'eighty-seven thousand four hundred five'),\n(23632, 88324, 'eighty-eight thousand three hundred twenty-four'),\n(23633, 24106, 'twenty-four thousand one hundred six'),\n(23634, 94920, 'ninety-four thousand nine hundred twenty'),\n(23635, 25677, 'twenty-five thousand six hundred seventy-seven'),\n(23636, 34123, 'thirty-four thousand one hundred twenty-three'),\n(23637, 21569, 'twenty-one thousand five hundred sixty-nine'),\n(23638, 40566, 'forty thousand five hundred sixty-six'),\n(23639, 36835, 'thirty-six thousand eight hundred thirty-five'),\n(23640, 36804, 'thirty-six thousand eight hundred four'),\n(23641, 5660, 'five thousand six hundred sixty'),\n(23642, 75358, 'seventy-five thousand three hundred fifty-eight'),\n(23643, 37675, 'thirty-seven thousand six hundred seventy-five'),\n(23644, 16032, 'sixteen thousand thirty-two'),\n(23645, 71169, 'seventy-one thousand one hundred sixty-nine'),\n(23646, 57750, 'fifty-seven thousand seven hundred fifty'),\n(23647, 64651, 'sixty-four thousand six hundred fifty-one'),\n(23648, 46926, 'forty-six thousand nine hundred twenty-six'),\n(23649, 17447, 'seventeen thousand four hundred forty-seven'),\n(23650, 90467, 'ninety thousand four hundred sixty-seven'),\n(23651, 79518, 'seventy-nine thousand five hundred eighteen'),\n(23652, 46322, 'forty-six thousand three hundred twenty-two'),\n(23653, 32213, 'thirty-two thousand two hundred thirteen'),\n(23654, 70610, 'seventy thousand six hundred ten'),\n(23655, 43007, 'forty-three thousand seven'),\n(23656, 90529, 'ninety thousand five hundred twenty-nine'),\n(23657, 58455, 'fifty-eight thousand four hundred fifty-five'),\n(23658, 81952, 'eighty-one thousand nine hundred fifty-two'),\n(23659, 51665, 'fifty-one thousand six hundred sixty-five'),\n(23660, 59875, 'fifty-nine thousand eight hundred seventy-five'),\n(23661, 70100, 'seventy thousand one hundred'),\n(23662, 95042, 'ninety-five thousand forty-two'),\n(23663, 3887, 'three thousand eight hundred eighty-seven'),\n(23664, 91723, 'ninety-one thousand seven hundred twenty-three'),\n(23665, 19865, 'nineteen thousand eight hundred sixty-five'),\n(23666, 7573, 'seven thousand five hundred seventy-three'),\n(23667, 48248, 'forty-eight thousand two hundred forty-eight'),\n(23668, 37151, 'thirty-seven thousand one hundred fifty-one'),\n(23669, 42660, 'forty-two thousand six hundred sixty'),\n(23670, 75322, 'seventy-five thousand three hundred twenty-two'),\n(23671, 32626, 'thirty-two thousand six hundred twenty-six'),\n(23672, 22580, 'twenty-two thousand five hundred eighty'),\n(23673, 74270, 'seventy-four thousand two hundred seventy'),\n(23674, 12635, 'twelve thousand six hundred thirty-five'),\n(23675, 86073, 'eighty-six thousand seventy-three'),\n(23676, 42051, 'forty-two thousand fifty-one'),\n(23677, 52471, 'fifty-two thousand four hundred seventy-one'),\n(23678, 35151, 'thirty-five thousand one hundred fifty-one'),\n(23679, 79147, 'seventy-nine thousand one hundred forty-seven'),\n(23680, 32574, 'thirty-two thousand five hundred seventy-four'),\n(23681, 86365, 'eighty-six thousand three hundred sixty-five'),\n(23682, 93214, 'ninety-three thousand two hundred fourteen'),\n(23683, 36900, 'thirty-six thousand nine hundred'),\n(23684, 35602, 'thirty-five thousand six hundred two'),\n(23685, 93566, 'ninety-three thousand five hundred sixty-six'),\n(23686, 44976, 'forty-four thousand nine hundred seventy-six'),\n(23687, 22623, 'twenty-two thousand six hundred twenty-three'),\n(23688, 55070, 'fifty-five thousand seventy'),\n(23689, 33558, 'thirty-three thousand five hundred fifty-eight'),\n(23690, 32010, 'thirty-two thousand ten'),\n(23691, 14196, 'fourteen thousand one hundred ninety-six'),\n(23692, 77627, 'seventy-seven thousand six hundred twenty-seven'),\n(23693, 71600, 'seventy-one thousand six hundred'),\n(23694, 41196, 'forty-one thousand one hundred ninety-six'),\n(23695, 789, 'seven hundred eighty-nine'),\n(23696, 13293, 'thirteen thousand two hundred ninety-three'),\n(23697, 18468, 'eighteen thousand four hundred sixty-eight'),\n(23698, 69455, 'sixty-nine thousand four hundred fifty-five'),\n(23699, 34415, 'thirty-four thousand four hundred fifteen'),\n(23700, 86678, 'eighty-six thousand six hundred seventy-eight'),\n(23701, 48949, 'forty-eight thousand nine hundred forty-nine'),\n(23702, 67793, 'sixty-seven thousand seven hundred ninety-three'),\n(23703, 16517, 'sixteen thousand five hundred seventeen'),\n(23704, 31942, 'thirty-one thousand nine hundred forty-two'),\n(23705, 95072, 'ninety-five thousand seventy-two'),\n(23706, 38961, 'thirty-eight thousand nine hundred sixty-one'),\n(23707, 18289, 'eighteen thousand two hundred eighty-nine'),\n(23708, 93881, 'ninety-three thousand eight hundred eighty-one'),\n(23709, 36679, 'thirty-six thousand six hundred seventy-nine'),\n(23710, 32755, 'thirty-two thousand seven hundred fifty-five'),\n(23711, 75969, 'seventy-five thousand nine hundred sixty-nine'),\n(23712, 23807, 'twenty-three thousand eight hundred seven'),\n(23713, 87929, 'eighty-seven thousand nine hundred twenty-nine'),\n(23714, 44764, 'forty-four thousand seven hundred sixty-four'),\n(23715, 54311, 'fifty-four thousand three hundred eleven'),\n(23716, 95398, 'ninety-five thousand three hundred ninety-eight'),\n(23717, 52780, 'fifty-two thousand seven hundred eighty'),\n(23718, 18123, 'eighteen thousand one hundred twenty-three'),\n(23719, 88078, 'eighty-eight thousand seventy-eight'),\n(23720, 23996, 'twenty-three thousand nine hundred ninety-six'),\n(23721, 71691, 'seventy-one thousand six hundred ninety-one'),\n(23722, 63458, 'sixty-three thousand four hundred fifty-eight'),\n(23723, 65329, 'sixty-five thousand three hundred twenty-nine'),\n(23724, 47236, 'forty-seven thousand two hundred thirty-six'),\n(23725, 30448, 'thirty thousand four hundred forty-eight'),\n(23726, 68705, 'sixty-eight thousand seven hundred five'),\n(23727, 98390, 'ninety-eight thousand three hundred ninety'),\n(23728, 66897, 'sixty-six thousand eight hundred ninety-seven'),\n(23729, 31564, 'thirty-one thousand five hundred sixty-four'),\n(23730, 1852, 'one thousand eight hundred fifty-two'),\n(23731, 42690, 'forty-two thousand six hundred ninety'),\n(23732, 73950, 'seventy-three thousand nine hundred fifty'),\n(23733, 34879, 'thirty-four thousand eight hundred seventy-nine'),\n(23734, 3343, 'three thousand three hundred forty-three'),\n(23735, 11376, 'eleven thousand three hundred seventy-six'),\n(23736, 16759, 'sixteen thousand seven hundred fifty-nine'),\n(23737, 81244, 'eighty-one thousand two hundred forty-four'),\n(23738, 99543, 'ninety-nine thousand five hundred forty-three'),\n(23739, 61186, 'sixty-one thousand one hundred eighty-six'),\n(23740, 82312, 'eighty-two thousand three hundred twelve'),\n(23741, 83516, 'eighty-three thousand five hundred sixteen'),\n(23742, 57423, 'fifty-seven thousand four hundred twenty-three'),\n(23743, 58512, 'fifty-eight thousand five hundred twelve'),\n(23744, 6095, 'six thousand ninety-five'),\n(23745, 40789, 'forty thousand seven hundred eighty-nine'),\n(23746, 33542, 'thirty-three thousand five hundred forty-two'),\n(23747, 34692, 'thirty-four thousand six hundred ninety-two'),\n(23748, 14631, 'fourteen thousand six hundred thirty-one'),\n(23749, 95687, 'ninety-five thousand six hundred eighty-seven'),\n(23750, 37212, 'thirty-seven thousand two hundred twelve'),\n(23751, 95251, 'ninety-five thousand two hundred fifty-one'),\n(23752, 97223, 'ninety-seven thousand two hundred twenty-three'),\n(23753, 53083, 'fifty-three thousand eighty-three'),\n(23754, 56974, 'fifty-six thousand nine hundred seventy-four'),\n(23755, 15773, 'fifteen thousand seven hundred seventy-three'),\n(23756, 22892, 'twenty-two thousand eight hundred ninety-two'),\n(23757, 29061, 'twenty-nine thousand sixty-one'),\n(23758, 62149, 'sixty-two thousand one hundred forty-nine'),\n(23759, 45768, 'forty-five thousand seven hundred sixty-eight'),\n(23760, 75691, 'seventy-five thousand six hundred ninety-one'),\n(23761, 72773, 'seventy-two thousand seven hundred seventy-three'),\n(23762, 82435, 'eighty-two thousand four hundred thirty-five'),\n(23763, 14322, 'fourteen thousand three hundred twenty-two'),\n(23764, 62835, 'sixty-two thousand eight hundred thirty-five'),\n(23765, 12427, 'twelve thousand four hundred twenty-seven'),\n(23766, 42239, 'forty-two thousand two hundred thirty-nine'),\n(23767, 6850, 'six thousand eight hundred fifty'),\n(23768, 23542, 'twenty-three thousand five hundred forty-two'),\n(23769, 45862, 'forty-five thousand eight hundred sixty-two'),\n(23770, 61367, 'sixty-one thousand three hundred sixty-seven'),\n(23771, 71147, 'seventy-one thousand one hundred forty-seven'),\n(23772, 69515, 'sixty-nine thousand five hundred fifteen'),\n(23773, 80632, 'eighty thousand six hundred thirty-two'),\n(23774, 65315, 'sixty-five thousand three hundred fifteen'),\n(23775, 52435, 'fifty-two thousand four hundred thirty-five'),\n(23776, 88682, 'eighty-eight thousand six hundred eighty-two'),\n(23777, 82398, 'eighty-two thousand three hundred ninety-eight'),\n(23778, 47977, 'forty-seven thousand nine hundred seventy-seven'),\n(23779, 50958, 'fifty thousand nine hundred fifty-eight'),\n(23780, 67910, 'sixty-seven thousand nine hundred ten'),\n(23781, 39956, 'thirty-nine thousand nine hundred fifty-six'),\n(23782, 38722, 'thirty-eight thousand seven hundred twenty-two'),\n(23783, 41373, 'forty-one thousand three hundred seventy-three'),\n(23784, 49216, 'forty-nine thousand two hundred sixteen'),\n(23785, 85948, 'eighty-five thousand nine hundred forty-eight'),\n(23786, 64712, 'sixty-four thousand seven hundred twelve'),\n(23787, 23108, 'twenty-three thousand one hundred eight'),\n(23788, 79115, 'seventy-nine thousand one hundred fifteen'),\n(23789, 88965, 'eighty-eight thousand nine hundred sixty-five'),\n(23790, 80358, 'eighty thousand three hundred fifty-eight'),\n(23791, 41171, 'forty-one thousand one hundred seventy-one'),\n(23792, 47724, 'forty-seven thousand seven hundred twenty-four'),\n(23793, 93046, 'ninety-three thousand forty-six'),\n(23794, 19086, 'nineteen thousand eighty-six'),\n(23795, 50397, 'fifty thousand three hundred ninety-seven'),\n(23796, 67236, 'sixty-seven thousand two hundred thirty-six'),\n(23797, 65701, 'sixty-five thousand seven hundred one'),\n(23798, 26642, 'twenty-six thousand six hundred forty-two'),\n(23799, 93456, 'ninety-three thousand four hundred fifty-six'),\n(23800, 49822, 'forty-nine thousand eight hundred twenty-two'),\n(23801, 5731, 'five thousand seven hundred thirty-one'),\n(23802, 88205, 'eighty-eight thousand two hundred five'),\n(23803, 74105, 'seventy-four thousand one hundred five'),\n(23804, 29950, 'twenty-nine thousand nine hundred fifty'),\n(23805, 76624, 'seventy-six thousand six hundred twenty-four'),\n(23806, 41277, 'forty-one thousand two hundred seventy-seven'),\n(23807, 48675, 'forty-eight thousand six hundred seventy-five'),\n(23808, 27434, 'twenty-seven thousand four hundred thirty-four'),\n(23809, 76153, 'seventy-six thousand one hundred fifty-three'),\n(23810, 55201, 'fifty-five thousand two hundred one'),\n(23811, 89808, 'eighty-nine thousand eight hundred eight'),\n(23812, 24751, 'twenty-four thousand seven hundred fifty-one'),\n(23813, 44322, 'forty-four thousand three hundred twenty-two'),\n(23814, 47086, 'forty-seven thousand eighty-six'),\n(23815, 9080, 'nine thousand eighty'),\n(23816, 33135, 'thirty-three thousand one hundred thirty-five'),\n(23817, 37551, 'thirty-seven thousand five hundred fifty-one'),\n(23818, 99455, 'ninety-nine thousand four hundred fifty-five'),\n(23819, 97054, 'ninety-seven thousand fifty-four'),\n(23820, 10423, 'ten thousand four hundred twenty-three'),\n(23821, 77115, 'seventy-seven thousand one hundred fifteen'),\n(23822, 18406, 'eighteen thousand four hundred six'),\n(23823, 46891, 'forty-six thousand eight hundred ninety-one'),\n(23824, 37070, 'thirty-seven thousand seventy'),\n(23825, 77815, 'seventy-seven thousand eight hundred fifteen'),\n(23826, 37058, 'thirty-seven thousand fifty-eight'),\n(23827, 73536, 'seventy-three thousand five hundred thirty-six'),\n(23828, 55398, 'fifty-five thousand three hundred ninety-eight'),\n(23829, 55589, 'fifty-five thousand five hundred eighty-nine'),\n(23830, 44875, 'forty-four thousand eight hundred seventy-five'),\n(23831, 70243, 'seventy thousand two hundred forty-three'),\n(23832, 10259, 'ten thousand two hundred fifty-nine'),\n(23833, 28583, 'twenty-eight thousand five hundred eighty-three'),\n(23834, 90768, 'ninety thousand seven hundred sixty-eight'),\n(23835, 79845, 'seventy-nine thousand eight hundred forty-five'),\n(23836, 20397, 'twenty thousand three hundred ninety-seven'),\n(23837, 85843, 'eighty-five thousand eight hundred forty-three'),\n(23838, 68367, 'sixty-eight thousand three hundred sixty-seven'),\n(23839, 73404, 'seventy-three thousand four hundred four'),\n(23840, 77669, 'seventy-seven thousand six hundred sixty-nine'),\n(23841, 74037, 'seventy-four thousand thirty-seven'),\n(23842, 95613, 'ninety-five thousand six hundred thirteen'),\n(23843, 60628, 'sixty thousand six hundred twenty-eight'),\n(23844, 89118, 'eighty-nine thousand one hundred eighteen'),\n(23845, 12213, 'twelve thousand two hundred thirteen'),\n(23846, 54328, 'fifty-four thousand three hundred twenty-eight'),\n(23847, 8805, 'eight thousand eight hundred five'),\n(23848, 31462, 'thirty-one thousand four hundred sixty-two'),\n(23849, 22472, 'twenty-two thousand four hundred seventy-two'),\n(23850, 11237, 'eleven thousand two hundred thirty-seven'),\n(23851, 77377, 'seventy-seven thousand three hundred seventy-seven'),\n(23852, 97709, 'ninety-seven thousand seven hundred nine'),\n(23853, 98556, 'ninety-eight thousand five hundred fifty-six'),\n(23854, 37873, 'thirty-seven thousand eight hundred seventy-three'),\n(23855, 79324, 'seventy-nine thousand three hundred twenty-four'),\n(23856, 36012, 'thirty-six thousand twelve'),\n(23857, 30384, 'thirty thousand three hundred eighty-four'),\n(23858, 43741, 'forty-three thousand seven hundred forty-one'),\n(23859, 71836, 'seventy-one thousand eight hundred thirty-six'),\n(23860, 93253, 'ninety-three thousand two hundred fifty-three'),\n(23861, 38824, 'thirty-eight thousand eight hundred twenty-four'),\n(23862, 4537, 'four thousand five hundred thirty-seven'),\n(23863, 85654, 'eighty-five thousand six hundred fifty-four'),\n(23864, 89774, 'eighty-nine thousand seven hundred seventy-four'),\n(23865, 47705, 'forty-seven thousand seven hundred five'),\n(23866, 34959, 'thirty-four thousand nine hundred fifty-nine'),\n(23867, 53620, 'fifty-three thousand six hundred twenty'),\n(23868, 32001, 'thirty-two thousand one'),\n(23869, 84323, 'eighty-four thousand three hundred twenty-three'),\n(23870, 61540, 'sixty-one thousand five hundred forty'),\n(23871, 45254, 'forty-five thousand two hundred fifty-four'),\n(23872, 85752, 'eighty-five thousand seven hundred fifty-two'),\n(23873, 7583, 'seven thousand five hundred eighty-three'),\n(23874, 8400, 'eight thousand four hundred'),\n(23875, 2441, 'two thousand four hundred forty-one'),\n(23876, 71972, 'seventy-one thousand nine hundred seventy-two'),\n(23877, 74633, 'seventy-four thousand six hundred thirty-three'),\n(23878, 78982, 'seventy-eight thousand nine hundred eighty-two'),\n(23879, 62875, 'sixty-two thousand eight hundred seventy-five'),\n(23880, 69705, 'sixty-nine thousand seven hundred five'),\n(23881, 81730, 'eighty-one thousand seven hundred thirty'),\n(23882, 78643, 'seventy-eight thousand six hundred forty-three'),\n(23883, 4368, 'four thousand three hundred sixty-eight'),\n(23884, 62441, 'sixty-two thousand four hundred forty-one'),\n(23885, 93748, 'ninety-three thousand seven hundred forty-eight'),\n(23886, 8313, 'eight thousand three hundred thirteen'),\n(23887, 16240, 'sixteen thousand two hundred forty'),\n(23888, 33098, 'thirty-three thousand ninety-eight'),\n(23889, 44936, 'forty-four thousand nine hundred thirty-six'),\n(23890, 99663, 'ninety-nine thousand six hundred sixty-three'),\n(23891, 18012, 'eighteen thousand twelve'),\n(23892, 2126, 'two thousand one hundred twenty-six'),\n(23893, 34137, 'thirty-four thousand one hundred thirty-seven'),\n(23894, 47858, 'forty-seven thousand eight hundred fifty-eight'),\n(23895, 43400, 'forty-three thousand four hundred'),\n(23896, 95687, 'ninety-five thousand six hundred eighty-seven'),\n(23897, 11424, 'eleven thousand four hundred twenty-four'),\n(23898, 32501, 'thirty-two thousand five hundred one'),\n(23899, 15068, 'fifteen thousand sixty-eight'),\n(23900, 43538, 'forty-three thousand five hundred thirty-eight'),\n(23901, 75215, 'seventy-five thousand two hundred fifteen'),\n(23902, 99920, 'ninety-nine thousand nine hundred twenty'),\n(23903, 33715, 'thirty-three thousand seven hundred fifteen'),\n(23904, 71047, 'seventy-one thousand forty-seven'),\n(23905, 54671, 'fifty-four thousand six hundred seventy-one'),\n(23906, 71061, 'seventy-one thousand sixty-one'),\n(23907, 51155, 'fifty-one thousand one hundred fifty-five'),\n(23908, 28290, 'twenty-eight thousand two hundred ninety'),\n(23909, 3813, 'three thousand eight hundred thirteen'),\n(23910, 29555, 'twenty-nine thousand five hundred fifty-five'),\n(23911, 13750, 'thirteen thousand seven hundred fifty'),\n(23912, 78402, 'seventy-eight thousand four hundred two'),\n(23913, 18915, 'eighteen thousand nine hundred fifteen'),\n(23914, 74564, 'seventy-four thousand five hundred sixty-four'),\n(23915, 1068, 'one thousand sixty-eight'),\n(23916, 14806, 'fourteen thousand eight hundred six'),\n(23917, 39258, 'thirty-nine thousand two hundred fifty-eight'),\n(23918, 13523, 'thirteen thousand five hundred twenty-three'),\n(23919, 9274, 'nine thousand two hundred seventy-four'),\n(23920, 47402, 'forty-seven thousand four hundred two'),\n(23921, 29944, 'twenty-nine thousand nine hundred forty-four'),\n(23922, 13412, 'thirteen thousand four hundred twelve'),\n(23923, 15767, 'fifteen thousand seven hundred sixty-seven'),\n(23924, 15289, 'fifteen thousand two hundred eighty-nine'),\n(23925, 12746, 'twelve thousand seven hundred forty-six'),\n(23926, 65665, 'sixty-five thousand six hundred sixty-five'),\n(23927, 84502, 'eighty-four thousand five hundred two'),\n(23928, 30790, 'thirty thousand seven hundred ninety'),\n(23929, 13593, 'thirteen thousand five hundred ninety-three'),\n(23930, 55911, 'fifty-five thousand nine hundred eleven'),\n(23931, 73745, 'seventy-three thousand seven hundred forty-five'),\n(23932, 71056, 'seventy-one thousand fifty-six'),\n(23933, 89113, 'eighty-nine thousand one hundred thirteen'),\n(23934, 34897, 'thirty-four thousand eight hundred ninety-seven'),\n(23935, 47143, 'forty-seven thousand one hundred forty-three'),\n(23936, 19646, 'nineteen thousand six hundred forty-six'),\n(23937, 86543, 'eighty-six thousand five hundred forty-three'),\n(23938, 98090, 'ninety-eight thousand ninety'),\n(23939, 10449, 'ten thousand four hundred forty-nine'),\n(23940, 57180, 'fifty-seven thousand one hundred eighty'),\n(23941, 71321, 'seventy-one thousand three hundred twenty-one'),\n(23942, 62916, 'sixty-two thousand nine hundred sixteen'),\n(23943, 40159, 'forty thousand one hundred fifty-nine'),\n(23944, 50990, 'fifty thousand nine hundred ninety'),\n(23945, 87906, 'eighty-seven thousand nine hundred six'),\n(23946, 8150, 'eight thousand one hundred fifty'),\n(23947, 96339, 'ninety-six thousand three hundred thirty-nine'),\n(23948, 41842, 'forty-one thousand eight hundred forty-two'),\n(23949, 18126, 'eighteen thousand one hundred twenty-six'),\n(23950, 63175, 'sixty-three thousand one hundred seventy-five'),\n(23951, 30323, 'thirty thousand three hundred twenty-three'),\n(23952, 84341, 'eighty-four thousand three hundred forty-one'),\n(23953, 781, 'seven hundred eighty-one'),\n(23954, 99163, 'ninety-nine thousand one hundred sixty-three'),\n(23955, 8747, 'eight thousand seven hundred forty-seven'),\n(23956, 7136, 'seven thousand one hundred thirty-six'),\n(23957, 42556, 'forty-two thousand five hundred fifty-six'),\n(23958, 72938, 'seventy-two thousand nine hundred thirty-eight'),\n(23959, 83886, 'eighty-three thousand eight hundred eighty-six'),\n(23960, 82803, 'eighty-two thousand eight hundred three'),\n(23961, 95233, 'ninety-five thousand two hundred thirty-three'),\n(23962, 39371, 'thirty-nine thousand three hundred seventy-one'),\n(23963, 11452, 'eleven thousand four hundred fifty-two'),\n(23964, 63603, 'sixty-three thousand six hundred three'),\n(23965, 19755, 'nineteen thousand seven hundred fifty-five'),\n(23966, 9145, 'nine thousand one hundred forty-five'),\n(23967, 41599, 'forty-one thousand five hundred ninety-nine'),\n(23968, 97, 'ninety-seven'),\n(23969, 98513, 'ninety-eight thousand five hundred thirteen'),\n(23970, 27101, 'twenty-seven thousand one hundred one'),\n(23971, 16528, 'sixteen thousand five hundred twenty-eight'),\n(23972, 25107, 'twenty-five thousand one hundred seven'),\n(23973, 17038, 'seventeen thousand thirty-eight'),\n(23974, 27807, 'twenty-seven thousand eight hundred seven'),\n(23975, 10454, 'ten thousand four hundred fifty-four'),\n(23976, 12683, 'twelve thousand six hundred eighty-three'),\n(23977, 10772, 'ten thousand seven hundred seventy-two'),\n(23978, 4846, 'four thousand eight hundred forty-six'),\n(23979, 64427, 'sixty-four thousand four hundred twenty-seven'),\n(23980, 6697, 'six thousand six hundred ninety-seven'),\n(23981, 18765, 'eighteen thousand seven hundred sixty-five'),\n(23982, 61411, 'sixty-one thousand four hundred eleven'),\n(23983, 85951, 'eighty-five thousand nine hundred fifty-one'),\n(23984, 14781, 'fourteen thousand seven hundred eighty-one'),\n(23985, 85989, 'eighty-five thousand nine hundred eighty-nine'),\n(23986, 81858, 'eighty-one thousand eight hundred fifty-eight'),\n(23987, 47016, 'forty-seven thousand sixteen'),\n(23988, 24500, 'twenty-four thousand five hundred'),\n(23989, 12325, 'twelve thousand three hundred twenty-five'),\n(23990, 44041, 'forty-four thousand forty-one'),\n(23991, 91952, 'ninety-one thousand nine hundred fifty-two'),\n(23992, 56585, 'fifty-six thousand five hundred eighty-five'),\n(23993, 25156, 'twenty-five thousand one hundred fifty-six'),\n(23994, 77625, 'seventy-seven thousand six hundred twenty-five'),\n(23995, 41727, 'forty-one thousand seven hundred twenty-seven'),\n(23996, 92857, 'ninety-two thousand eight hundred fifty-seven'),\n(23997, 31540, 'thirty-one thousand five hundred forty'),\n(23998, 40398, 'forty thousand three hundred ninety-eight'),\n(23999, 79991, 'seventy-nine thousand nine hundred ninety-one'),\n(24000, 49668, 'forty-nine thousand six hundred sixty-eight'),\n(24001, 99196, 'ninety-nine thousand one hundred ninety-six'),\n(24002, 58453, 'fifty-eight thousand four hundred fifty-three'),\n(24003, 31182, 'thirty-one thousand one hundred eighty-two'),\n(24004, 84959, 'eighty-four thousand nine hundred fifty-nine'),\n(24005, 22412, 'twenty-two thousand four hundred twelve'),\n(24006, 66721, 'sixty-six thousand seven hundred twenty-one'),\n(24007, 88726, 'eighty-eight thousand seven hundred twenty-six'),\n(24008, 17102, 'seventeen thousand one hundred two'),\n(24009, 96223, 'ninety-six thousand two hundred twenty-three'),\n(24010, 41725, 'forty-one thousand seven hundred twenty-five'),\n(24011, 62632, 'sixty-two thousand six hundred thirty-two'),\n(24012, 98008, 'ninety-eight thousand eight'),\n(24013, 54966, 'fifty-four thousand nine hundred sixty-six'),\n(24014, 56803, 'fifty-six thousand eight hundred three'),\n(24015, 84704, 'eighty-four thousand seven hundred four'),\n(24016, 54093, 'fifty-four thousand ninety-three'),\n(24017, 67014, 'sixty-seven thousand fourteen'),\n(24018, 10579, 'ten thousand five hundred seventy-nine'),\n(24019, 1736, 'one thousand seven hundred thirty-six'),\n(24020, 66754, 'sixty-six thousand seven hundred fifty-four'),\n(24021, 30320, 'thirty thousand three hundred twenty'),\n(24022, 42044, 'forty-two thousand forty-four'),\n(24023, 40118, 'forty thousand one hundred eighteen'),\n(24024, 52339, 'fifty-two thousand three hundred thirty-nine'),\n(24025, 92978, 'ninety-two thousand nine hundred seventy-eight'),\n(24026, 56799, 'fifty-six thousand seven hundred ninety-nine'),\n(24027, 23142, 'twenty-three thousand one hundred forty-two'),\n(24028, 75365, 'seventy-five thousand three hundred sixty-five'),\n(24029, 95497, 'ninety-five thousand four hundred ninety-seven'),\n(24030, 72464, 'seventy-two thousand four hundred sixty-four'),\n(24031, 80634, 'eighty thousand six hundred thirty-four'),\n(24032, 68600, 'sixty-eight thousand six hundred'),\n(24033, 3141, 'three thousand one hundred forty-one'),\n(24034, 1116, 'one thousand one hundred sixteen'),\n(24035, 76879, 'seventy-six thousand eight hundred seventy-nine'),\n(24036, 49199, 'forty-nine thousand one hundred ninety-nine'),\n(24037, 86649, 'eighty-six thousand six hundred forty-nine'),\n(24038, 67605, 'sixty-seven thousand six hundred five'),\n(24039, 26213, 'twenty-six thousand two hundred thirteen'),\n(24040, 28929, 'twenty-eight thousand nine hundred twenty-nine'),\n(24041, 28763, 'twenty-eight thousand seven hundred sixty-three'),\n(24042, 56313, 'fifty-six thousand three hundred thirteen'),\n(24043, 20074, 'twenty thousand seventy-four'),\n(24044, 95091, 'ninety-five thousand ninety-one'),\n(24045, 76766, 'seventy-six thousand seven hundred sixty-six'),\n(24046, 98367, 'ninety-eight thousand three hundred sixty-seven'),\n(24047, 95804, 'ninety-five thousand eight hundred four'),\n(24048, 11446, 'eleven thousand four hundred forty-six'),\n(24049, 57905, 'fifty-seven thousand nine hundred five'),\n(24050, 76037, 'seventy-six thousand thirty-seven'),\n(24051, 64054, 'sixty-four thousand fifty-four'),\n(24052, 20583, 'twenty thousand five hundred eighty-three'),\n(24053, 30335, 'thirty thousand three hundred thirty-five'),\n(24054, 60913, 'sixty thousand nine hundred thirteen'),\n(24055, 42269, 'forty-two thousand two hundred sixty-nine'),\n(24056, 10312, 'ten thousand three hundred twelve'),\n(24057, 61075, 'sixty-one thousand seventy-five'),\n(24058, 14602, 'fourteen thousand six hundred two'),\n(24059, 18859, 'eighteen thousand eight hundred fifty-nine'),\n(24060, 98156, 'ninety-eight thousand one hundred fifty-six'),\n(24061, 41339, 'forty-one thousand three hundred thirty-nine'),\n(24062, 46192, 'forty-six thousand one hundred ninety-two'),\n(24063, 26327, 'twenty-six thousand three hundred twenty-seven'),\n(24064, 63472, 'sixty-three thousand four hundred seventy-two'),\n(24065, 97835, 'ninety-seven thousand eight hundred thirty-five'),\n(24066, 19134, 'nineteen thousand one hundred thirty-four'),\n(24067, 54564, 'fifty-four thousand five hundred sixty-four'),\n(24068, 46890, 'forty-six thousand eight hundred ninety'),\n(24069, 7486, 'seven thousand four hundred eighty-six'),\n(24070, 61885, 'sixty-one thousand eight hundred eighty-five'),\n(24071, 67275, 'sixty-seven thousand two hundred seventy-five'),\n(24072, 17977, 'seventeen thousand nine hundred seventy-seven'),\n(24073, 44689, 'forty-four thousand six hundred eighty-nine'),\n(24074, 52623, 'fifty-two thousand six hundred twenty-three'),\n(24075, 45737, 'forty-five thousand seven hundred thirty-seven'),\n(24076, 15573, 'fifteen thousand five hundred seventy-three'),\n(24077, 97635, 'ninety-seven thousand six hundred thirty-five'),\n(24078, 23614, 'twenty-three thousand six hundred fourteen'),\n(24079, 45067, 'forty-five thousand sixty-seven'),\n(24080, 67746, 'sixty-seven thousand seven hundred forty-six'),\n(24081, 95903, 'ninety-five thousand nine hundred three'),\n(24082, 54242, 'fifty-four thousand two hundred forty-two'),\n(24083, 79345, 'seventy-nine thousand three hundred forty-five'),\n(24084, 12413, 'twelve thousand four hundred thirteen'),\n(24085, 21764, 'twenty-one thousand seven hundred sixty-four'),\n(24086, 11980, 'eleven thousand nine hundred eighty'),\n(24087, 78024, 'seventy-eight thousand twenty-four'),\n(24088, 65304, 'sixty-five thousand three hundred four'),\n(24089, 16669, 'sixteen thousand six hundred sixty-nine'),\n(24090, 67433, 'sixty-seven thousand four hundred thirty-three'),\n(24091, 13401, 'thirteen thousand four hundred one'),\n(24092, 5405, 'five thousand four hundred five'),\n(24093, 63001, 'sixty-three thousand one'),\n(24094, 4887, 'four thousand eight hundred eighty-seven'),\n(24095, 2516, 'two thousand five hundred sixteen'),\n(24096, 87710, 'eighty-seven thousand seven hundred ten'),\n(24097, 58108, 'fifty-eight thousand one hundred eight'),\n(24098, 53071, 'fifty-three thousand seventy-one'),\n(24099, 39872, 'thirty-nine thousand eight hundred seventy-two'),\n(24100, 30304, 'thirty thousand three hundred four'),\n(24101, 54130, 'fifty-four thousand one hundred thirty'),\n(24102, 64790, 'sixty-four thousand seven hundred ninety'),\n(24103, 16348, 'sixteen thousand three hundred forty-eight'),\n(24104, 97914, 'ninety-seven thousand nine hundred fourteen'),\n(24105, 58480, 'fifty-eight thousand four hundred eighty'),\n(24106, 36315, 'thirty-six thousand three hundred fifteen'),\n(24107, 5837, 'five thousand eight hundred thirty-seven'),\n(24108, 17645, 'seventeen thousand six hundred forty-five'),\n(24109, 61482, 'sixty-one thousand four hundred eighty-two'),\n(24110, 27120, 'twenty-seven thousand one hundred twenty'),\n(24111, 192, 'one hundred ninety-two'),\n(24112, 16876, 'sixteen thousand eight hundred seventy-six'),\n(24113, 80002, 'eighty thousand two'),\n(24114, 94040, 'ninety-four thousand forty'),\n(24115, 52659, 'fifty-two thousand six hundred fifty-nine'),\n(24116, 84835, 'eighty-four thousand eight hundred thirty-five'),\n(24117, 75678, 'seventy-five thousand six hundred seventy-eight'),\n(24118, 2024, 'two thousand twenty-four'),\n(24119, 16178, 'sixteen thousand one hundred seventy-eight'),\n(24120, 17149, 'seventeen thousand one hundred forty-nine'),\n(24121, 57359, 'fifty-seven thousand three hundred fifty-nine'),\n(24122, 67859, 'sixty-seven thousand eight hundred fifty-nine'),\n(24123, 73443, 'seventy-three thousand four hundred forty-three'),\n(24124, 49342, 'forty-nine thousand three hundred forty-two'),\n(24125, 16399, 'sixteen thousand three hundred ninety-nine'),\n(24126, 79129, 'seventy-nine thousand one hundred twenty-nine'),\n(24127, 39093, 'thirty-nine thousand ninety-three'),\n(24128, 70342, 'seventy thousand three hundred forty-two'),\n(24129, 14116, 'fourteen thousand one hundred sixteen'),\n(24130, 82288, 'eighty-two thousand two hundred eighty-eight'),\n(24131, 39476, 'thirty-nine thousand four hundred seventy-six'),\n(24132, 56447, 'fifty-six thousand four hundred forty-seven'),\n(24133, 69487, 'sixty-nine thousand four hundred eighty-seven'),\n(24134, 29744, 'twenty-nine thousand seven hundred forty-four'),\n(24135, 93585, 'ninety-three thousand five hundred eighty-five'),\n(24136, 99044, 'ninety-nine thousand forty-four'),\n(24137, 66480, 'sixty-six thousand four hundred eighty'),\n(24138, 15549, 'fifteen thousand five hundred forty-nine'),\n(24139, 72299, 'seventy-two thousand two hundred ninety-nine'),\n(24140, 83470, 'eighty-three thousand four hundred seventy'),\n(24141, 48391, 'forty-eight thousand three hundred ninety-one'),\n(24142, 25162, 'twenty-five thousand one hundred sixty-two'),\n(24143, 88696, 'eighty-eight thousand six hundred ninety-six'),\n(24144, 64798, 'sixty-four thousand seven hundred ninety-eight'),\n(24145, 11920, 'eleven thousand nine hundred twenty'),\n(24146, 26467, 'twenty-six thousand four hundred sixty-seven'),\n(24147, 74197, 'seventy-four thousand one hundred ninety-seven'),\n(24148, 4957, 'four thousand nine hundred fifty-seven'),\n(24149, 22323, 'twenty-two thousand three hundred twenty-three'),\n(24150, 52478, 'fifty-two thousand four hundred seventy-eight'),\n(24151, 74664, 'seventy-four thousand six hundred sixty-four'),\n(24152, 89026, 'eighty-nine thousand twenty-six'),\n(24153, 21882, 'twenty-one thousand eight hundred eighty-two'),\n(24154, 69055, 'sixty-nine thousand fifty-five'),\n(24155, 89039, 'eighty-nine thousand thirty-nine'),\n(24156, 12949, 'twelve thousand nine hundred forty-nine'),\n(24157, 83603, 'eighty-three thousand six hundred three'),\n(24158, 20332, 'twenty thousand three hundred thirty-two'),\n(24159, 24206, 'twenty-four thousand two hundred six'),\n(24160, 75671, 'seventy-five thousand six hundred seventy-one'),\n(24161, 39010, 'thirty-nine thousand ten'),\n(24162, 91517, 'ninety-one thousand five hundred seventeen'),\n(24163, 78899, 'seventy-eight thousand eight hundred ninety-nine'),\n(24164, 36955, 'thirty-six thousand nine hundred fifty-five'),\n(24165, 68124, 'sixty-eight thousand one hundred twenty-four'),\n(24166, 50597, 'fifty thousand five hundred ninety-seven'),\n(24167, 94731, 'ninety-four thousand seven hundred thirty-one'),\n(24168, 31499, 'thirty-one thousand four hundred ninety-nine'),\n(24169, 32475, 'thirty-two thousand four hundred seventy-five'),\n(24170, 62745, 'sixty-two thousand seven hundred forty-five'),\n(24171, 88692, 'eighty-eight thousand six hundred ninety-two'),\n(24172, 63624, 'sixty-three thousand six hundred twenty-four'),\n(24173, 67623, 'sixty-seven thousand six hundred twenty-three'),\n(24174, 74032, 'seventy-four thousand thirty-two'),\n(24175, 83391, 'eighty-three thousand three hundred ninety-one'),\n(24176, 40650, 'forty thousand six hundred fifty'),\n(24177, 76408, 'seventy-six thousand four hundred eight'),\n(24178, 11917, 'eleven thousand nine hundred seventeen'),\n(24179, 63262, 'sixty-three thousand two hundred sixty-two'),\n(24180, 74605, 'seventy-four thousand six hundred five'),\n(24181, 55540, 'fifty-five thousand five hundred forty'),\n(24182, 23777, 'twenty-three thousand seven hundred seventy-seven'),\n(24183, 89059, 'eighty-nine thousand fifty-nine'),\n(24184, 90176, 'ninety thousand one hundred seventy-six'),\n(24185, 82320, 'eighty-two thousand three hundred twenty'),\n(24186, 62842, 'sixty-two thousand eight hundred forty-two'),\n(24187, 55749, 'fifty-five thousand seven hundred forty-nine'),\n(24188, 35982, 'thirty-five thousand nine hundred eighty-two'),\n(24189, 53634, 'fifty-three thousand six hundred thirty-four'),\n(24190, 94544, 'ninety-four thousand five hundred forty-four'),\n(24191, 9898, 'nine thousand eight hundred ninety-eight'),\n(24192, 81233, 'eighty-one thousand two hundred thirty-three'),\n(24193, 81822, 'eighty-one thousand eight hundred twenty-two'),\n(24194, 8194, 'eight thousand one hundred ninety-four'),\n(24195, 85955, 'eighty-five thousand nine hundred fifty-five'),\n(24196, 95216, 'ninety-five thousand two hundred sixteen'),\n(24197, 12572, 'twelve thousand five hundred seventy-two'),\n(24198, 51556, 'fifty-one thousand five hundred fifty-six'),\n(24199, 22048, 'twenty-two thousand forty-eight'),\n(24200, 3736, 'three thousand seven hundred thirty-six'),\n(24201, 22922, 'twenty-two thousand nine hundred twenty-two'),\n(24202, 27606, 'twenty-seven thousand six hundred six'),\n(24203, 58858, 'fifty-eight thousand eight hundred fifty-eight'),\n(24204, 35903, 'thirty-five thousand nine hundred three'),\n(24205, 70493, 'seventy thousand four hundred ninety-three'),\n(24206, 79557, 'seventy-nine thousand five hundred fifty-seven'),\n(24207, 27052, 'twenty-seven thousand fifty-two'),\n(24208, 54827, 'fifty-four thousand eight hundred twenty-seven'),\n(24209, 65229, 'sixty-five thousand two hundred twenty-nine'),\n(24210, 6719, 'six thousand seven hundred nineteen'),\n(24211, 99976, 'ninety-nine thousand nine hundred seventy-six'),\n(24212, 53084, 'fifty-three thousand eighty-four'),\n(24213, 69262, 'sixty-nine thousand two hundred sixty-two'),\n(24214, 4302, 'four thousand three hundred two'),\n(24215, 1578, 'one thousand five hundred seventy-eight'),\n(24216, 30756, 'thirty thousand seven hundred fifty-six'),\n(24217, 67484, 'sixty-seven thousand four hundred eighty-four'),\n(24218, 77330, 'seventy-seven thousand three hundred thirty'),\n(24219, 84270, 'eighty-four thousand two hundred seventy'),\n(24220, 58522, 'fifty-eight thousand five hundred twenty-two'),\n(24221, 24051, 'twenty-four thousand fifty-one'),\n(24222, 15310, 'fifteen thousand three hundred ten'),\n(24223, 98560, 'ninety-eight thousand five hundred sixty'),\n(24224, 90291, 'ninety thousand two hundred ninety-one'),\n(24225, 64876, 'sixty-four thousand eight hundred seventy-six'),\n(24226, 14106, 'fourteen thousand one hundred six'),\n(24227, 52497, 'fifty-two thousand four hundred ninety-seven'),\n(24228, 45679, 'forty-five thousand six hundred seventy-nine'),\n(24229, 44696, 'forty-four thousand six hundred ninety-six'),\n(24230, 28523, 'twenty-eight thousand five hundred twenty-three'),\n(24231, 75415, 'seventy-five thousand four hundred fifteen'),\n(24232, 43067, 'forty-three thousand sixty-seven'),\n(24233, 42327, 'forty-two thousand three hundred twenty-seven'),\n(24234, 69570, 'sixty-nine thousand five hundred seventy'),\n(24235, 61365, 'sixty-one thousand three hundred sixty-five'),\n(24236, 13113, 'thirteen thousand one hundred thirteen'),\n(24237, 37429, 'thirty-seven thousand four hundred twenty-nine'),\n(24238, 27050, 'twenty-seven thousand fifty'),\n(24239, 70063, 'seventy thousand sixty-three'),\n(24240, 8777, 'eight thousand seven hundred seventy-seven'),\n(24241, 38764, 'thirty-eight thousand seven hundred sixty-four'),\n(24242, 84815, 'eighty-four thousand eight hundred fifteen'),\n(24243, 44912, 'forty-four thousand nine hundred twelve'),\n(24244, 76435, 'seventy-six thousand four hundred thirty-five'),\n(24245, 71544, 'seventy-one thousand five hundred forty-four'),\n(24246, 57188, 'fifty-seven thousand one hundred eighty-eight'),\n(24247, 40211, 'forty thousand two hundred eleven'),\n(24248, 54889, 'fifty-four thousand eight hundred eighty-nine'),\n(24249, 89108, 'eighty-nine thousand one hundred eight'),\n(24250, 79365, 'seventy-nine thousand three hundred sixty-five'),\n(24251, 16951, 'sixteen thousand nine hundred fifty-one'),\n(24252, 94837, 'ninety-four thousand eight hundred thirty-seven'),\n(24253, 44878, 'forty-four thousand eight hundred seventy-eight'),\n(24254, 20616, 'twenty thousand six hundred sixteen'),\n(24255, 45, 'forty-five'),\n(24256, 10067, 'ten thousand sixty-seven'),\n(24257, 85161, 'eighty-five thousand one hundred sixty-one'),\n(24258, 43286, 'forty-three thousand two hundred eighty-six'),\n(24259, 24924, 'twenty-four thousand nine hundred twenty-four'),\n(24260, 40625, 'forty thousand six hundred twenty-five'),\n(24261, 98159, 'ninety-eight thousand one hundred fifty-nine'),\n(24262, 15511, 'fifteen thousand five hundred eleven'),\n(24263, 5203, 'five thousand two hundred three'),\n(24264, 47281, 'forty-seven thousand two hundred eighty-one'),\n(24265, 67079, 'sixty-seven thousand seventy-nine'),\n(24266, 44221, 'forty-four thousand two hundred twenty-one'),\n(24267, 396, 'three hundred ninety-six'),\n(24268, 89886, 'eighty-nine thousand eight hundred eighty-six'),\n(24269, 42051, 'forty-two thousand fifty-one'),\n(24270, 5553, 'five thousand five hundred fifty-three'),\n(24271, 77189, 'seventy-seven thousand one hundred eighty-nine'),\n(24272, 69762, 'sixty-nine thousand seven hundred sixty-two'),\n(24273, 41521, 'forty-one thousand five hundred twenty-one'),\n(24274, 33752, 'thirty-three thousand seven hundred fifty-two'),\n(24275, 23258, 'twenty-three thousand two hundred fifty-eight'),\n(24276, 8996, 'eight thousand nine hundred ninety-six'),\n(24277, 25068, 'twenty-five thousand sixty-eight'),\n(24278, 78685, 'seventy-eight thousand six hundred eighty-five'),\n(24279, 85962, 'eighty-five thousand nine hundred sixty-two'),\n(24280, 28129, 'twenty-eight thousand one hundred twenty-nine'),\n(24281, 58106, 'fifty-eight thousand one hundred six'),\n(24282, 62554, 'sixty-two thousand five hundred fifty-four'),\n(24283, 7769, 'seven thousand seven hundred sixty-nine'),\n(24284, 84373, 'eighty-four thousand three hundred seventy-three'),\n(24285, 83290, 'eighty-three thousand two hundred ninety'),\n(24286, 31042, 'thirty-one thousand forty-two'),\n(24287, 25949, 'twenty-five thousand nine hundred forty-nine'),\n(24288, 82656, 'eighty-two thousand six hundred fifty-six'),\n(24289, 35465, 'thirty-five thousand four hundred sixty-five'),\n(24290, 43763, 'forty-three thousand seven hundred sixty-three'),\n(24291, 69291, 'sixty-nine thousand two hundred ninety-one'),\n(24292, 66388, 'sixty-six thousand three hundred eighty-eight'),\n(24293, 4469, 'four thousand four hundred sixty-nine'),\n(24294, 9967, 'nine thousand nine hundred sixty-seven'),\n(24295, 52222, 'fifty-two thousand two hundred twenty-two'),\n(24296, 16544, 'sixteen thousand five hundred forty-four'),\n(24297, 99931, 'ninety-nine thousand nine hundred thirty-one'),\n(24298, 24789, 'twenty-four thousand seven hundred eighty-nine'),\n(24299, 44188, 'forty-four thousand one hundred eighty-eight'),\n(24300, 11213, 'eleven thousand two hundred thirteen'),\n(24301, 89061, 'eighty-nine thousand sixty-one'),\n(24302, 46400, 'forty-six thousand four hundred'),\n(24303, 57142, 'fifty-seven thousand one hundred forty-two'),\n(24304, 8960, 'eight thousand nine hundred sixty'),\n(24305, 95843, 'ninety-five thousand eight hundred forty-three'),\n(24306, 16392, 'sixteen thousand three hundred ninety-two'),\n(24307, 84055, 'eighty-four thousand fifty-five'),\n(24308, 48466, 'forty-eight thousand four hundred sixty-six'),\n(24309, 80946, 'eighty thousand nine hundred forty-six'),\n(24310, 1523, 'one thousand five hundred twenty-three'),\n(24311, 52308, 'fifty-two thousand three hundred eight'),\n(24312, 12429, 'twelve thousand four hundred twenty-nine'),\n(24313, 84468, 'eighty-four thousand four hundred sixty-eight'),\n(24314, 1480, 'one thousand four hundred eighty'),\n(24315, 98779, 'ninety-eight thousand seven hundred seventy-nine'),\n(24316, 52356, 'fifty-two thousand three hundred fifty-six'),\n(24317, 79847, 'seventy-nine thousand eight hundred forty-seven'),\n(24318, 87210, 'eighty-seven thousand two hundred ten'),\n(24319, 33181, 'thirty-three thousand one hundred eighty-one'),\n(24320, 49379, 'forty-nine thousand three hundred seventy-nine'),\n(24321, 1534, 'one thousand five hundred thirty-four'),\n(24322, 92935, 'ninety-two thousand nine hundred thirty-five'),\n(24323, 6889, 'six thousand eight hundred eighty-nine'),\n(24324, 85100, 'eighty-five thousand one hundred'),\n(24325, 14095, 'fourteen thousand ninety-five'),\n(24326, 80989, 'eighty thousand nine hundred eighty-nine'),\n(24327, 25772, 'twenty-five thousand seven hundred seventy-two'),\n(24328, 17776, 'seventeen thousand seven hundred seventy-six'),\n(24329, 53057, 'fifty-three thousand fifty-seven'),\n(24330, 49253, 'forty-nine thousand two hundred fifty-three'),\n(24331, 85187, 'eighty-five thousand one hundred eighty-seven'),\n(24332, 13337, 'thirteen thousand three hundred thirty-seven'),\n(24333, 15096, 'fifteen thousand ninety-six'),\n(24334, 8400, 'eight thousand four hundred'),\n(24335, 27312, 'twenty-seven thousand three hundred twelve'),\n(24336, 17024, 'seventeen thousand twenty-four'),\n(24337, 95728, 'ninety-five thousand seven hundred twenty-eight'),\n(24338, 40881, 'forty thousand eight hundred eighty-one'),\n(24339, 6300, 'six thousand three hundred'),\n(24340, 38671, 'thirty-eight thousand six hundred seventy-one'),\n(24341, 60007, 'sixty thousand seven'),\n(24342, 68053, 'sixty-eight thousand fifty-three'),\n(24343, 6597, 'six thousand five hundred ninety-seven'),\n(24344, 37402, 'thirty-seven thousand four hundred two'),\n(24345, 57022, 'fifty-seven thousand twenty-two'),\n(24346, 96220, 'ninety-six thousand two hundred twenty'),\n(24347, 49453, 'forty-nine thousand four hundred fifty-three'),\n(24348, 83046, 'eighty-three thousand forty-six'),\n(24349, 80444, 'eighty thousand four hundred forty-four'),\n(24350, 19560, 'nineteen thousand five hundred sixty'),\n(24351, 47100, 'forty-seven thousand one hundred'),\n(24352, 7084, 'seven thousand eighty-four'),\n(24353, 66076, 'sixty-six thousand seventy-six'),\n(24354, 32814, 'thirty-two thousand eight hundred fourteen'),\n(24355, 73585, 'seventy-three thousand five hundred eighty-five'),\n(24356, 96101, 'ninety-six thousand one hundred one'),\n(24357, 72676, 'seventy-two thousand six hundred seventy-six'),\n(24358, 51006, 'fifty-one thousand six'),\n(24359, 74725, 'seventy-four thousand seven hundred twenty-five'),\n(24360, 32659, 'thirty-two thousand six hundred fifty-nine'),\n(24361, 64731, 'sixty-four thousand seven hundred thirty-one'),\n(24362, 63401, 'sixty-three thousand four hundred one'),\n(24363, 32426, 'thirty-two thousand four hundred twenty-six'),\n(24364, 53858, 'fifty-three thousand eight hundred fifty-eight'),\n(24365, 96070, 'ninety-six thousand seventy'),\n(24366, 98435, 'ninety-eight thousand four hundred thirty-five'),\n(24367, 42315, 'forty-two thousand three hundred fifteen'),\n(24368, 14201, 'fourteen thousand two hundred one'),\n(24369, 69602, 'sixty-nine thousand six hundred two'),\n(24370, 6138, 'six thousand one hundred thirty-eight'),\n(24371, 1191, 'one thousand one hundred ninety-one'),\n(24372, 36133, 'thirty-six thousand one hundred thirty-three'),\n(24373, 65074, 'sixty-five thousand seventy-four'),\n(24374, 74922, 'seventy-four thousand nine hundred twenty-two'),\n(24375, 10032, 'ten thousand thirty-two'),\n(24376, 73137, 'seventy-three thousand one hundred thirty-seven'),\n(24377, 49951, 'forty-nine thousand nine hundred fifty-one'),\n(24378, 56493, 'fifty-six thousand four hundred ninety-three'),\n(24379, 43000, 'forty-three thousand'),\n(24380, 6836, 'six thousand eight hundred thirty-six'),\n(24381, 50960, 'fifty thousand nine hundred sixty'),\n(24382, 14348, 'fourteen thousand three hundred forty-eight'),\n(24383, 8185, 'eight thousand one hundred eighty-five'),\n(24384, 37227, 'thirty-seven thousand two hundred twenty-seven'),\n(24385, 30869, 'thirty thousand eight hundred sixty-nine'),\n(24386, 63758, 'sixty-three thousand seven hundred fifty-eight'),\n(24387, 53354, 'fifty-three thousand three hundred fifty-four'),\n(24388, 9886, 'nine thousand eight hundred eighty-six'),\n(24389, 30665, 'thirty thousand six hundred sixty-five'),\n(24390, 10279, 'ten thousand two hundred seventy-nine'),\n(24391, 48870, 'forty-eight thousand eight hundred seventy'),\n(24392, 92268, 'ninety-two thousand two hundred sixty-eight'),\n(24393, 25625, 'twenty-five thousand six hundred twenty-five'),\n(24394, 34199, 'thirty-four thousand one hundred ninety-nine'),\n(24395, 99109, 'ninety-nine thousand one hundred nine'),\n(24396, 60863, 'sixty thousand eight hundred sixty-three'),\n(24397, 94067, 'ninety-four thousand sixty-seven'),\n(24398, 44784, 'forty-four thousand seven hundred eighty-four'),\n(24399, 19092, 'nineteen thousand ninety-two'),\n(24400, 73849, 'seventy-three thousand eight hundred forty-nine'),\n(24401, 71051, 'seventy-one thousand fifty-one'),\n(24402, 58208, 'fifty-eight thousand two hundred eight'),\n(24403, 24007, 'twenty-four thousand seven'),\n(24404, 53808, 'fifty-three thousand eight hundred eight'),\n(24405, 74649, 'seventy-four thousand six hundred forty-nine'),\n(24406, 5863, 'five thousand eight hundred sixty-three'),\n(24407, 11221, 'eleven thousand two hundred twenty-one'),\n(24408, 33922, 'thirty-three thousand nine hundred twenty-two'),\n(24409, 46076, 'forty-six thousand seventy-six'),\n(24410, 50449, 'fifty thousand four hundred forty-nine'),\n(24411, 90879, 'ninety thousand eight hundred seventy-nine'),\n(24412, 35993, 'thirty-five thousand nine hundred ninety-three'),\n(24413, 4939, 'four thousand nine hundred thirty-nine'),\n(24414, 28145, 'twenty-eight thousand one hundred forty-five'),\n(24415, 50552, 'fifty thousand five hundred fifty-two'),\n(24416, 25794, 'twenty-five thousand seven hundred ninety-four'),\n(24417, 19409, 'nineteen thousand four hundred nine'),\n(24418, 83942, 'eighty-three thousand nine hundred forty-two'),\n(24419, 34387, 'thirty-four thousand three hundred eighty-seven'),\n(24420, 2252, 'two thousand two hundred fifty-two'),\n(24421, 61817, 'sixty-one thousand eight hundred seventeen'),\n(24422, 25013, 'twenty-five thousand thirteen'),\n(24423, 54212, 'fifty-four thousand two hundred twelve'),\n(24424, 91790, 'ninety-one thousand seven hundred ninety'),\n(24425, 16492, 'sixteen thousand four hundred ninety-two'),\n(24426, 90482, 'ninety thousand four hundred eighty-two'),\n(24427, 80950, 'eighty thousand nine hundred fifty'),\n(24428, 25917, 'twenty-five thousand nine hundred seventeen'),\n(24429, 34888, 'thirty-four thousand eight hundred eighty-eight'),\n(24430, 51866, 'fifty-one thousand eight hundred sixty-six'),\n(24431, 44287, 'forty-four thousand two hundred eighty-seven'),\n(24432, 35788, 'thirty-five thousand seven hundred eighty-eight'),\n(24433, 16199, 'sixteen thousand one hundred ninety-nine'),\n(24434, 76063, 'seventy-six thousand sixty-three'),\n(24435, 80881, 'eighty thousand eight hundred eighty-one'),\n(24436, 48534, 'forty-eight thousand five hundred thirty-four'),\n(24437, 75694, 'seventy-five thousand six hundred ninety-four'),\n(24438, 83764, 'eighty-three thousand seven hundred sixty-four'),\n(24439, 73316, 'seventy-three thousand three hundred sixteen'),\n(24440, 40161, 'forty thousand one hundred sixty-one'),\n(24441, 26042, 'twenty-six thousand forty-two'),\n(24442, 41177, 'forty-one thousand one hundred seventy-seven'),\n(24443, 31055, 'thirty-one thousand fifty-five'),\n(24444, 32482, 'thirty-two thousand four hundred eighty-two'),\n(24445, 55305, 'fifty-five thousand three hundred five'),\n(24446, 77279, 'seventy-seven thousand two hundred seventy-nine'),\n(24447, 88659, 'eighty-eight thousand six hundred fifty-nine'),\n(24448, 24876, 'twenty-four thousand eight hundred seventy-six'),\n(24449, 32785, 'thirty-two thousand seven hundred eighty-five'),\n(24450, 12269, 'twelve thousand two hundred sixty-nine'),\n(24451, 35916, 'thirty-five thousand nine hundred sixteen'),\n(24452, 47660, 'forty-seven thousand six hundred sixty'),\n(24453, 75253, 'seventy-five thousand two hundred fifty-three'),\n(24454, 61129, 'sixty-one thousand one hundred twenty-nine'),\n(24455, 29439, 'twenty-nine thousand four hundred thirty-nine'),\n(24456, 53333, 'fifty-three thousand three hundred thirty-three'),\n(24457, 41467, 'forty-one thousand four hundred sixty-seven'),\n(24458, 18416, 'eighteen thousand four hundred sixteen'),\n(24459, 20291, 'twenty thousand two hundred ninety-one'),\n(24460, 39835, 'thirty-nine thousand eight hundred thirty-five'),\n(24461, 92051, 'ninety-two thousand fifty-one'),\n(24462, 64638, 'sixty-four thousand six hundred thirty-eight'),\n(24463, 98651, 'ninety-eight thousand six hundred fifty-one'),\n(24464, 94009, 'ninety-four thousand nine'),\n(24465, 37566, 'thirty-seven thousand five hundred sixty-six'),\n(24466, 81018, 'eighty-one thousand eighteen'),\n(24467, 32649, 'thirty-two thousand six hundred forty-nine'),\n(24468, 27737, 'twenty-seven thousand seven hundred thirty-seven'),\n(24469, 56198, 'fifty-six thousand one hundred ninety-eight'),\n(24470, 34203, 'thirty-four thousand two hundred three'),\n(24471, 7344, 'seven thousand three hundred forty-four'),\n(24472, 45478, 'forty-five thousand four hundred seventy-eight'),\n(24473, 44261, 'forty-four thousand two hundred sixty-one'),\n(24474, 28519, 'twenty-eight thousand five hundred nineteen'),\n(24475, 47477, 'forty-seven thousand four hundred seventy-seven'),\n(24476, 42738, 'forty-two thousand seven hundred thirty-eight'),\n(24477, 45637, 'forty-five thousand six hundred thirty-seven'),\n(24478, 28370, 'twenty-eight thousand three hundred seventy'),\n(24479, 89455, 'eighty-nine thousand four hundred fifty-five'),\n(24480, 83443, 'eighty-three thousand four hundred forty-three'),\n(24481, 39599, 'thirty-nine thousand five hundred ninety-nine'),\n(24482, 75551, 'seventy-five thousand five hundred fifty-one'),\n(24483, 11716, 'eleven thousand seven hundred sixteen'),\n(24484, 28734, 'twenty-eight thousand seven hundred thirty-four'),\n(24485, 43429, 'forty-three thousand four hundred twenty-nine'),\n(24486, 20028, 'twenty thousand twenty-eight'),\n(24487, 25054, 'twenty-five thousand fifty-four'),\n(24488, 56472, 'fifty-six thousand four hundred seventy-two'),\n(24489, 70426, 'seventy thousand four hundred twenty-six'),\n(24490, 75902, 'seventy-five thousand nine hundred two'),\n(24491, 832, 'eight hundred thirty-two'),\n(24492, 44553, 'forty-four thousand five hundred fifty-three'),\n(24493, 93630, 'ninety-three thousand six hundred thirty'),\n(24494, 12792, 'twelve thousand seven hundred ninety-two'),\n(24495, 90401, 'ninety thousand four hundred one'),\n(24496, 81560, 'eighty-one thousand five hundred sixty'),\n(24497, 27579, 'twenty-seven thousand five hundred seventy-nine'),\n(24498, 47438, 'forty-seven thousand four hundred thirty-eight'),\n(24499, 82993, 'eighty-two thousand nine hundred ninety-three'),\n(24500, 43687, 'forty-three thousand six hundred eighty-seven'),\n(24501, 84802, 'eighty-four thousand eight hundred two'),\n(24502, 85414, 'eighty-five thousand four hundred fourteen'),\n(24503, 6204, 'six thousand two hundred four'),\n(24504, 83767, 'eighty-three thousand seven hundred sixty-seven'),\n(24505, 52684, 'fifty-two thousand six hundred eighty-four'),\n(24506, 49485, 'forty-nine thousand four hundred eighty-five'),\n(24507, 63100, 'sixty-three thousand one hundred'),\n(24508, 14052, 'fourteen thousand fifty-two'),\n(24509, 57318, 'fifty-seven thousand three hundred eighteen'),\n(24510, 28948, 'twenty-eight thousand nine hundred forty-eight'),\n(24511, 37325, 'thirty-seven thousand three hundred twenty-five'),\n(24512, 78310, 'seventy-eight thousand three hundred ten'),\n(24513, 25187, 'twenty-five thousand one hundred eighty-seven'),\n(24514, 13616, 'thirteen thousand six hundred sixteen'),\n(24515, 51087, 'fifty-one thousand eighty-seven'),\n(24516, 61227, 'sixty-one thousand two hundred twenty-seven'),\n(24517, 23567, 'twenty-three thousand five hundred sixty-seven'),\n(24518, 307, 'three hundred seven'),\n(24519, 5876, 'five thousand eight hundred seventy-six'),\n(24520, 75134, 'seventy-five thousand one hundred thirty-four'),\n(24521, 55945, 'fifty-five thousand nine hundred forty-five'),\n(24522, 73035, 'seventy-three thousand thirty-five'),\n(24523, 48155, 'forty-eight thousand one hundred fifty-five'),\n(24524, 59826, 'fifty-nine thousand eight hundred twenty-six'),\n(24525, 93451, 'ninety-three thousand four hundred fifty-one'),\n(24526, 9593, 'nine thousand five hundred ninety-three'),\n(24527, 38523, 'thirty-eight thousand five hundred twenty-three'),\n(24528, 501, 'five hundred one'),\n(24529, 8665, 'eight thousand six hundred sixty-five'),\n(24530, 57673, 'fifty-seven thousand six hundred seventy-three'),\n(24531, 50327, 'fifty thousand three hundred twenty-seven'),\n(24532, 46369, 'forty-six thousand three hundred sixty-nine'),\n(24533, 57376, 'fifty-seven thousand three hundred seventy-six'),\n(24534, 87448, 'eighty-seven thousand four hundred forty-eight'),\n(24535, 34025, 'thirty-four thousand twenty-five'),\n(24536, 76046, 'seventy-six thousand forty-six'),\n(24537, 8668, 'eight thousand six hundred sixty-eight'),\n(24538, 22879, 'twenty-two thousand eight hundred seventy-nine'),\n(24539, 10883, 'ten thousand eight hundred eighty-three'),\n(24540, 96877, 'ninety-six thousand eight hundred seventy-seven'),\n(24541, 38988, 'thirty-eight thousand nine hundred eighty-eight'),\n(24542, 94028, 'ninety-four thousand twenty-eight'),\n(24543, 32994, 'thirty-two thousand nine hundred ninety-four'),\n(24544, 93475, 'ninety-three thousand four hundred seventy-five'),\n(24545, 53960, 'fifty-three thousand nine hundred sixty'),\n(24546, 62273, 'sixty-two thousand two hundred seventy-three'),\n(24547, 56918, 'fifty-six thousand nine hundred eighteen'),\n(24548, 31256, 'thirty-one thousand two hundred fifty-six'),\n(24549, 94391, 'ninety-four thousand three hundred ninety-one'),\n(24550, 72429, 'seventy-two thousand four hundred twenty-nine'),\n(24551, 42897, 'forty-two thousand eight hundred ninety-seven'),\n(24552, 86610, 'eighty-six thousand six hundred ten'),\n(24553, 58962, 'fifty-eight thousand nine hundred sixty-two'),\n(24554, 36810, 'thirty-six thousand eight hundred ten'),\n(24555, 78103, 'seventy-eight thousand one hundred three'),\n(24556, 64075, 'sixty-four thousand seventy-five'),\n(24557, 23461, 'twenty-three thousand four hundred sixty-one'),\n(24558, 78594, 'seventy-eight thousand five hundred ninety-four'),\n(24559, 436, 'four hundred thirty-six'),\n(24560, 41596, 'forty-one thousand five hundred ninety-six'),\n(24561, 61381, 'sixty-one thousand three hundred eighty-one'),\n(24562, 45659, 'forty-five thousand six hundred fifty-nine'),\n(24563, 57528, 'fifty-seven thousand five hundred twenty-eight'),\n(24564, 32804, 'thirty-two thousand eight hundred four'),\n(24565, 89470, 'eighty-nine thousand four hundred seventy'),\n(24566, 33929, 'thirty-three thousand nine hundred twenty-nine'),\n(24567, 81561, 'eighty-one thousand five hundred sixty-one'),\n(24568, 17849, 'seventeen thousand eight hundred forty-nine'),\n(24569, 43292, 'forty-three thousand two hundred ninety-two'),\n(24570, 14937, 'fourteen thousand nine hundred thirty-seven'),\n(24571, 19044, 'nineteen thousand forty-four'),\n(24572, 41190, 'forty-one thousand one hundred ninety'),\n(24573, 72612, 'seventy-two thousand six hundred twelve'),\n(24574, 33185, 'thirty-three thousand one hundred eighty-five'),\n(24575, 17367, 'seventeen thousand three hundred sixty-seven'),\n(24576, 38761, 'thirty-eight thousand seven hundred sixty-one'),\n(24577, 6943, 'six thousand nine hundred forty-three'),\n(24578, 29988, 'twenty-nine thousand nine hundred eighty-eight'),\n(24579, 23996, 'twenty-three thousand nine hundred ninety-six'),\n(24580, 3296, 'three thousand two hundred ninety-six'),\n(24581, 27027, 'twenty-seven thousand twenty-seven'),\n(24582, 89611, 'eighty-nine thousand six hundred eleven'),\n(24583, 91368, 'ninety-one thousand three hundred sixty-eight'),\n(24584, 49556, 'forty-nine thousand five hundred fifty-six'),\n(24585, 10891, 'ten thousand eight hundred ninety-one'),\n(24586, 53396, 'fifty-three thousand three hundred ninety-six'),\n(24587, 94901, 'ninety-four thousand nine hundred one'),\n(24588, 41428, 'forty-one thousand four hundred twenty-eight'),\n(24589, 18279, 'eighteen thousand two hundred seventy-nine'),\n(24590, 31793, 'thirty-one thousand seven hundred ninety-three'),\n(24591, 58393, 'fifty-eight thousand three hundred ninety-three'),\n(24592, 39049, 'thirty-nine thousand forty-nine'),\n(24593, 63409, 'sixty-three thousand four hundred nine'),\n(24594, 52925, 'fifty-two thousand nine hundred twenty-five'),\n(24595, 79204, 'seventy-nine thousand two hundred four'),\n(24596, 7575, 'seven thousand five hundred seventy-five'),\n(24597, 53306, 'fifty-three thousand three hundred six'),\n(24598, 49172, 'forty-nine thousand one hundred seventy-two'),\n(24599, 66361, 'sixty-six thousand three hundred sixty-one'),\n(24600, 84059, 'eighty-four thousand fifty-nine'),\n(24601, 24805, 'twenty-four thousand eight hundred five'),\n(24602, 4249, 'four thousand two hundred forty-nine'),\n(24603, 29715, 'twenty-nine thousand seven hundred fifteen'),\n(24604, 44339, 'forty-four thousand three hundred thirty-nine'),\n(24605, 68166, 'sixty-eight thousand one hundred sixty-six'),\n(24606, 81901, 'eighty-one thousand nine hundred one'),\n(24607, 55799, 'fifty-five thousand seven hundred ninety-nine'),\n(24608, 35067, 'thirty-five thousand sixty-seven'),\n(24609, 52022, 'fifty-two thousand twenty-two'),\n(24610, 62377, 'sixty-two thousand three hundred seventy-seven'),\n(24611, 27409, 'twenty-seven thousand four hundred nine'),\n(24612, 86314, 'eighty-six thousand three hundred fourteen'),\n(24613, 16236, 'sixteen thousand two hundred thirty-six'),\n(24614, 13410, 'thirteen thousand four hundred ten'),\n(24615, 69711, 'sixty-nine thousand seven hundred eleven'),\n(24616, 14726, 'fourteen thousand seven hundred twenty-six'),\n(24617, 48167, 'forty-eight thousand one hundred sixty-seven'),\n(24618, 89336, 'eighty-nine thousand three hundred thirty-six'),\n(24619, 18157, 'eighteen thousand one hundred fifty-seven'),\n(24620, 57081, 'fifty-seven thousand eighty-one'),\n(24621, 5408, 'five thousand four hundred eight'),\n(24622, 12178, 'twelve thousand one hundred seventy-eight'),\n(24623, 34534, 'thirty-four thousand five hundred thirty-four'),\n(24624, 37731, 'thirty-seven thousand seven hundred thirty-one'),\n(24625, 70876, 'seventy thousand eight hundred seventy-six'),\n(24626, 86007, 'eighty-six thousand seven'),\n(24627, 83752, 'eighty-three thousand seven hundred fifty-two'),\n(24628, 70501, 'seventy thousand five hundred one'),\n(24629, 18667, 'eighteen thousand six hundred sixty-seven'),\n(24630, 28572, 'twenty-eight thousand five hundred seventy-two'),\n(24631, 68557, 'sixty-eight thousand five hundred fifty-seven'),\n(24632, 11343, 'eleven thousand three hundred forty-three'),\n(24633, 1624, 'one thousand six hundred twenty-four'),\n(24634, 59911, 'fifty-nine thousand nine hundred eleven'),\n(24635, 94038, 'ninety-four thousand thirty-eight'),\n(24636, 29603, 'twenty-nine thousand six hundred three'),\n(24637, 88648, 'eighty-eight thousand six hundred forty-eight'),\n(24638, 12736, 'twelve thousand seven hundred thirty-six'),\n(24639, 55683, 'fifty-five thousand six hundred eighty-three'),\n(24640, 54600, 'fifty-four thousand six hundred'),\n(24641, 82259, 'eighty-two thousand two hundred fifty-nine'),\n(24642, 14096, 'fourteen thousand ninety-six'),\n(24643, 36310, 'thirty-six thousand three hundred ten'),\n(24644, 27154, 'twenty-seven thousand one hundred fifty-four'),\n(24645, 54007, 'fifty-four thousand seven'),\n(24646, 82080, 'eighty-two thousand eighty'),\n(24647, 10298, 'ten thousand two hundred ninety-eight'),\n(24648, 4064, 'four thousand sixty-four'),\n(24649, 19725, 'nineteen thousand seven hundred twenty-five'),\n(24650, 94836, 'ninety-four thousand eight hundred thirty-six'),\n(24651, 48533, 'forty-eight thousand five hundred thirty-three'),\n(24652, 5683, 'five thousand six hundred eighty-three'),\n(24653, 75795, 'seventy-five thousand seven hundred ninety-five'),\n(24654, 30463, 'thirty thousand four hundred sixty-three'),\n(24655, 47660, 'forty-seven thousand six hundred sixty'),\n(24656, 17066, 'seventeen thousand sixty-six'),\n(24657, 17779, 'seventeen thousand seven hundred seventy-nine'),\n(24658, 52403, 'fifty-two thousand four hundred three'),\n(24659, 10570, 'ten thousand five hundred seventy'),\n(24660, 83671, 'eighty-three thousand six hundred seventy-one'),\n(24661, 49149, 'forty-nine thousand one hundred forty-nine'),\n(24662, 81420, 'eighty-one thousand four hundred twenty'),\n(24663, 37117, 'thirty-seven thousand one hundred seventeen'),\n(24664, 28783, 'twenty-eight thousand seven hundred eighty-three'),\n(24665, 51320, 'fifty-one thousand three hundred twenty'),\n(24666, 75904, 'seventy-five thousand nine hundred four'),\n(24667, 47329, 'forty-seven thousand three hundred twenty-nine'),\n(24668, 93109, 'ninety-three thousand one hundred nine'),\n(24669, 11161, 'eleven thousand one hundred sixty-one'),\n(24670, 8950, 'eight thousand nine hundred fifty'),\n(24671, 74887, 'seventy-four thousand eight hundred eighty-seven'),\n(24672, 97014, 'ninety-seven thousand fourteen'),\n(24673, 55157, 'fifty-five thousand one hundred fifty-seven'),\n(24674, 36609, 'thirty-six thousand six hundred nine'),\n(24675, 13464, 'thirteen thousand four hundred sixty-four'),\n(24676, 46476, 'forty-six thousand four hundred seventy-six'),\n(24677, 83415, 'eighty-three thousand four hundred fifteen'),\n(24678, 43638, 'forty-three thousand six hundred thirty-eight'),\n(24679, 4917, 'four thousand nine hundred seventeen'),\n(24680, 61061, 'sixty-one thousand sixty-one'),\n(24681, 97632, 'ninety-seven thousand six hundred thirty-two'),\n(24682, 27983, 'twenty-seven thousand nine hundred eighty-three'),\n(24683, 627, 'six hundred twenty-seven'),\n(24684, 6975, 'six thousand nine hundred seventy-five'),\n(24685, 42522, 'forty-two thousand five hundred twenty-two'),\n(24686, 28456, 'twenty-eight thousand four hundred fifty-six'),\n(24687, 43142, 'forty-three thousand one hundred forty-two'),\n(24688, 83057, 'eighty-three thousand fifty-seven'),\n(24689, 57492, 'fifty-seven thousand four hundred ninety-two'),\n(24690, 46542, 'forty-six thousand five hundred forty-two'),\n(24691, 32781, 'thirty-two thousand seven hundred eighty-one'),\n(24692, 29695, 'twenty-nine thousand six hundred ninety-five'),\n(24693, 38962, 'thirty-eight thousand nine hundred sixty-two'),\n(24694, 59941, 'fifty-nine thousand nine hundred forty-one'),\n(24695, 30893, 'thirty thousand eight hundred ninety-three'),\n(24696, 12543, 'twelve thousand five hundred forty-three'),\n(24697, 88669, 'eighty-eight thousand six hundred sixty-nine'),\n(24698, 31890, 'thirty-one thousand eight hundred ninety'),\n(24699, 73975, 'seventy-three thousand nine hundred seventy-five'),\n(24700, 32017, 'thirty-two thousand seventeen'),\n(24701, 74869, 'seventy-four thousand eight hundred sixty-nine'),\n(24702, 90302, 'ninety thousand three hundred two'),\n(24703, 24324, 'twenty-four thousand three hundred twenty-four'),\n(24704, 77141, 'seventy-seven thousand one hundred forty-one'),\n(24705, 805, 'eight hundred five'),\n(24706, 69323, 'sixty-nine thousand three hundred twenty-three'),\n(24707, 47182, 'forty-seven thousand one hundred eighty-two'),\n(24708, 64546, 'sixty-four thousand five hundred forty-six'),\n(24709, 70094, 'seventy thousand ninety-four'),\n(24710, 8800, 'eight thousand eight hundred'),\n(24711, 67164, 'sixty-seven thousand one hundred sixty-four'),\n(24712, 93808, 'ninety-three thousand eight hundred eight'),\n(24713, 24754, 'twenty-four thousand seven hundred fifty-four'),\n(24714, 97489, 'ninety-seven thousand four hundred eighty-nine'),\n(24715, 5602, 'five thousand six hundred two'),\n(24716, 15377, 'fifteen thousand three hundred seventy-seven'),\n(24717, 94085, 'ninety-four thousand eighty-five'),\n(24718, 89097, 'eighty-nine thousand ninety-seven'),\n(24719, 42250, 'forty-two thousand two hundred fifty'),\n(24720, 16428, 'sixteen thousand four hundred twenty-eight'),\n(24721, 20074, 'twenty thousand seventy-four'),\n(24722, 47704, 'forty-seven thousand seven hundred four'),\n(24723, 80575, 'eighty thousand five hundred seventy-five'),\n(24724, 9727, 'nine thousand seven hundred twenty-seven'),\n(24725, 79252, 'seventy-nine thousand two hundred fifty-two'),\n(24726, 70229, 'seventy thousand two hundred twenty-nine'),\n(24727, 58670, 'fifty-eight thousand six hundred seventy'),\n(24728, 26075, 'twenty-six thousand seventy-five'),\n(24729, 2374, 'two thousand three hundred seventy-four'),\n(24730, 16236, 'sixteen thousand two hundred thirty-six'),\n(24731, 51387, 'fifty-one thousand three hundred eighty-seven'),\n(24732, 96158, 'ninety-six thousand one hundred fifty-eight'),\n(24733, 65798, 'sixty-five thousand seven hundred ninety-eight'),\n(24734, 71627, 'seventy-one thousand six hundred twenty-seven'),\n(24735, 93357, 'ninety-three thousand three hundred fifty-seven'),\n(24736, 81299, 'eighty-one thousand two hundred ninety-nine'),\n(24737, 60749, 'sixty thousand seven hundred forty-nine'),\n(24738, 47834, 'forty-seven thousand eight hundred thirty-four'),\n(24739, 36406, 'thirty-six thousand four hundred six'),\n(24740, 33888, 'thirty-three thousand eight hundred eighty-eight'),\n(24741, 96891, 'ninety-six thousand eight hundred ninety-one'),\n(24742, 30897, 'thirty thousand eight hundred ninety-seven'),\n(24743, 88968, 'eighty-eight thousand nine hundred sixty-eight'),\n(24744, 80461, 'eighty thousand four hundred sixty-one'),\n(24745, 95105, 'ninety-five thousand one hundred five'),\n(24746, 33433, 'thirty-three thousand four hundred thirty-three'),\n(24747, 6198, 'six thousand one hundred ninety-eight'),\n(24748, 26097, 'twenty-six thousand ninety-seven'),\n(24749, 96995, 'ninety-six thousand nine hundred ninety-five'),\n(24750, 81911, 'eighty-one thousand nine hundred eleven'),\n(24751, 89519, 'eighty-nine thousand five hundred nineteen'),\n(24752, 66802, 'sixty-six thousand eight hundred two'),\n(24753, 63647, 'sixty-three thousand six hundred forty-seven'),\n(24754, 41202, 'forty-one thousand two hundred two'),\n(24755, 10401, 'ten thousand four hundred one'),\n(24756, 47730, 'forty-seven thousand seven hundred thirty'),\n(24757, 37726, 'thirty-seven thousand seven hundred twenty-six'),\n(24758, 73359, 'seventy-three thousand three hundred fifty-nine'),\n(24759, 98821, 'ninety-eight thousand eight hundred twenty-one'),\n(24760, 23696, 'twenty-three thousand six hundred ninety-six'),\n(24761, 40496, 'forty thousand four hundred ninety-six'),\n(24762, 24417, 'twenty-four thousand four hundred seventeen'),\n(24763, 83001, 'eighty-three thousand one'),\n(24764, 80101, 'eighty thousand one hundred one'),\n(24765, 20058, 'twenty thousand fifty-eight'),\n(24766, 90050, 'ninety thousand fifty'),\n(24767, 67793, 'sixty-seven thousand seven hundred ninety-three'),\n(24768, 21328, 'twenty-one thousand three hundred twenty-eight'),\n(24769, 33026, 'thirty-three thousand twenty-six'),\n(24770, 60248, 'sixty thousand two hundred forty-eight'),\n(24771, 65466, 'sixty-five thousand four hundred sixty-six'),\n(24772, 7600, 'seven thousand six hundred'),\n(24773, 85941, 'eighty-five thousand nine hundred forty-one'),\n(24774, 96865, 'ninety-six thousand eight hundred sixty-five'),\n(24775, 70113, 'seventy thousand one hundred thirteen'),\n(24776, 98788, 'ninety-eight thousand seven hundred eighty-eight'),\n(24777, 31787, 'thirty-one thousand seven hundred eighty-seven'),\n(24778, 62463, 'sixty-two thousand four hundred sixty-three'),\n(24779, 68236, 'sixty-eight thousand two hundred thirty-six'),\n(24780, 3736, 'three thousand seven hundred thirty-six'),\n(24781, 51532, 'fifty-one thousand five hundred thirty-two'),\n(24782, 35548, 'thirty-five thousand five hundred forty-eight'),\n(24783, 14236, 'fourteen thousand two hundred thirty-six'),\n(24784, 84897, 'eighty-four thousand eight hundred ninety-seven'),\n(24785, 31062, 'thirty-one thousand sixty-two'),\n(24786, 93221, 'ninety-three thousand two hundred twenty-one'),\n(24787, 35820, 'thirty-five thousand eight hundred twenty'),\n(24788, 58184, 'fifty-eight thousand one hundred eighty-four'),\n(24789, 41247, 'forty-one thousand two hundred forty-seven'),\n(24790, 30489, 'thirty thousand four hundred eighty-nine'),\n(24791, 25609, 'twenty-five thousand six hundred nine'),\n(24792, 87338, 'eighty-seven thousand three hundred thirty-eight'),\n(24793, 50575, 'fifty thousand five hundred seventy-five'),\n(24794, 24704, 'twenty-four thousand seven hundred four'),\n(24795, 12806, 'twelve thousand eight hundred six'),\n(24796, 44597, 'forty-four thousand five hundred ninety-seven'),\n(24797, 58582, 'fifty-eight thousand five hundred eighty-two'),\n(24798, 11726, 'eleven thousand seven hundred twenty-six'),\n(24799, 13340, 'thirteen thousand three hundred forty'),\n(24800, 24440, 'twenty-four thousand four hundred forty'),\n(24801, 9887, 'nine thousand eight hundred eighty-seven'),\n(24802, 47895, 'forty-seven thousand eight hundred ninety-five'),\n(24803, 54759, 'fifty-four thousand seven hundred fifty-nine'),\n(24804, 71252, 'seventy-one thousand two hundred fifty-two'),\n(24805, 78445, 'seventy-eight thousand four hundred forty-five'),\n(24806, 39941, 'thirty-nine thousand nine hundred forty-one'),\n(24807, 48159, 'forty-eight thousand one hundred fifty-nine'),\n(24808, 2132, 'two thousand one hundred thirty-two'),\n(24809, 44127, 'forty-four thousand one hundred twenty-seven'),\n(24810, 81965, 'eighty-one thousand nine hundred sixty-five'),\n(24811, 75241, 'seventy-five thousand two hundred forty-one'),\n(24812, 89405, 'eighty-nine thousand four hundred five'),\n(24813, 76797, 'seventy-six thousand seven hundred ninety-seven'),\n(24814, 77364, 'seventy-seven thousand three hundred sixty-four'),\n(24815, 22439, 'twenty-two thousand four hundred thirty-nine'),\n(24816, 21848, 'twenty-one thousand eight hundred forty-eight'),\n(24817, 92243, 'ninety-two thousand two hundred forty-three'),\n(24818, 1815, 'one thousand eight hundred fifteen'),\n(24819, 99779, 'ninety-nine thousand seven hundred seventy-nine'),\n(24820, 96172, 'ninety-six thousand one hundred seventy-two'),\n(24821, 431, 'four hundred thirty-one'),\n(24822, 33856, 'thirty-three thousand eight hundred fifty-six'),\n(24823, 93893, 'ninety-three thousand eight hundred ninety-three'),\n(24824, 54344, 'fifty-four thousand three hundred forty-four'),\n(24825, 10331, 'ten thousand three hundred thirty-one'),\n(24826, 8399, 'eight thousand three hundred ninety-nine'),\n(24827, 36038, 'thirty-six thousand thirty-eight'),\n(24828, 95043, 'ninety-five thousand forty-three'),\n(24829, 97022, 'ninety-seven thousand twenty-two'),\n(24830, 3189, 'three thousand one hundred eighty-nine'),\n(24831, 46168, 'forty-six thousand one hundred sixty-eight'),\n(24832, 88559, 'eighty-eight thousand five hundred fifty-nine'),\n(24833, 64144, 'sixty-four thousand one hundred forty-four'),\n(24834, 51730, 'fifty-one thousand seven hundred thirty'),\n(24835, 20174, 'twenty thousand one hundred seventy-four'),\n(24836, 7018, 'seven thousand eighteen'),\n(24837, 18657, 'eighteen thousand six hundred fifty-seven'),\n(24838, 75088, 'seventy-five thousand eighty-eight'),\n(24839, 67326, 'sixty-seven thousand three hundred twenty-six'),\n(24840, 25073, 'twenty-five thousand seventy-three'),\n(24841, 94644, 'ninety-four thousand six hundred forty-four'),\n(24842, 44223, 'forty-four thousand two hundred twenty-three'),\n(24843, 46337, 'forty-six thousand three hundred thirty-seven'),\n(24844, 514, 'five hundred fourteen'),\n(24845, 60951, 'sixty thousand nine hundred fifty-one'),\n(24846, 72709, 'seventy-two thousand seven hundred nine'),\n(24847, 33482, 'thirty-three thousand four hundred eighty-two'),\n(24848, 12069, 'twelve thousand sixty-nine'),\n(24849, 44568, 'forty-four thousand five hundred sixty-eight'),\n(24850, 50881, 'fifty thousand eight hundred eighty-one'),\n(24851, 86189, 'eighty-six thousand one hundred eighty-nine'),\n(24852, 90634, 'ninety thousand six hundred thirty-four'),\n(24853, 29555, 'twenty-nine thousand five hundred fifty-five'),\n(24854, 40451, 'forty thousand four hundred fifty-one'),\n(24855, 56427, 'fifty-six thousand four hundred twenty-seven'),\n(24856, 63501, 'sixty-three thousand five hundred one'),\n(24857, 37562, 'thirty-seven thousand five hundred sixty-two'),\n(24858, 98526, 'ninety-eight thousand five hundred twenty-six'),\n(24859, 91101, 'ninety-one thousand one hundred one'),\n(24860, 60072, 'sixty thousand seventy-two'),\n(24861, 38206, 'thirty-eight thousand two hundred six'),\n(24862, 53377, 'fifty-three thousand three hundred seventy-seven'),\n(24863, 89666, 'eighty-nine thousand six hundred sixty-six'),\n(24864, 10446, 'ten thousand four hundred forty-six'),\n(24865, 92671, 'ninety-two thousand six hundred seventy-one'),\n(24866, 78160, 'seventy-eight thousand one hundred sixty'),\n(24867, 72782, 'seventy-two thousand seven hundred eighty-two'),\n(24868, 57859, 'fifty-seven thousand eight hundred fifty-nine'),\n(24869, 39918, 'thirty-nine thousand nine hundred eighteen'),\n(24870, 25370, 'twenty-five thousand three hundred seventy'),\n(24871, 40814, 'forty thousand eight hundred fourteen'),\n(24872, 21468, 'twenty-one thousand four hundred sixty-eight'),\n(24873, 74690, 'seventy-four thousand six hundred ninety'),\n(24874, 35862, 'thirty-five thousand eight hundred sixty-two'),\n(24875, 92947, 'ninety-two thousand nine hundred forty-seven'),\n(24876, 27385, 'twenty-seven thousand three hundred eighty-five'),\n(24877, 96998, 'ninety-six thousand nine hundred ninety-eight'),\n(24878, 22257, 'twenty-two thousand two hundred fifty-seven'),\n(24879, 39663, 'thirty-nine thousand six hundred sixty-three'),\n(24880, 78932, 'seventy-eight thousand nine hundred thirty-two'),\n(24881, 72715, 'seventy-two thousand seven hundred fifteen'),\n(24882, 78243, 'seventy-eight thousand two hundred forty-three'),\n(24883, 96803, 'ninety-six thousand eight hundred three'),\n(24884, 72654, 'seventy-two thousand six hundred fifty-four'),\n(24885, 19001, 'nineteen thousand one'),\n(24886, 6400, 'six thousand four hundred'),\n(24887, 83047, 'eighty-three thousand forty-seven'),\n(24888, 99857, 'ninety-nine thousand eight hundred fifty-seven'),\n(24889, 85833, 'eighty-five thousand eight hundred thirty-three'),\n(24890, 2089, 'two thousand eighty-nine'),\n(24891, 97218, 'ninety-seven thousand two hundred eighteen'),\n(24892, 36946, 'thirty-six thousand nine hundred forty-six'),\n(24893, 73796, 'seventy-three thousand seven hundred ninety-six'),\n(24894, 51099, 'fifty-one thousand ninety-nine'),\n(24895, 55507, 'fifty-five thousand five hundred seven'),\n(24896, 52925, 'fifty-two thousand nine hundred twenty-five'),\n(24897, 84714, 'eighty-four thousand seven hundred fourteen'),\n(24898, 2326, 'two thousand three hundred twenty-six'),\n(24899, 46073, 'forty-six thousand seventy-three'),\n(24900, 13234, 'thirteen thousand two hundred thirty-four'),\n(24901, 37425, 'thirty-seven thousand four hundred twenty-five'),\n(24902, 94868, 'ninety-four thousand eight hundred sixty-eight'),\n(24903, 49168, 'forty-nine thousand one hundred sixty-eight'),\n(24904, 34573, 'thirty-four thousand five hundred seventy-three'),\n(24905, 81470, 'eighty-one thousand four hundred seventy'),\n(24906, 43976, 'forty-three thousand nine hundred seventy-six'),\n(24907, 53694, 'fifty-three thousand six hundred ninety-four'),\n(24908, 26766, 'twenty-six thousand seven hundred sixty-six'),\n(24909, 24129, 'twenty-four thousand one hundred twenty-nine'),\n(24910, 81742, 'eighty-one thousand seven hundred forty-two'),\n(24911, 82292, 'eighty-two thousand two hundred ninety-two'),\n(24912, 15618, 'fifteen thousand six hundred eighteen'),\n(24913, 63142, 'sixty-three thousand one hundred forty-two'),\n(24914, 72910, 'seventy-two thousand nine hundred ten'),\n(24915, 92621, 'ninety-two thousand six hundred twenty-one'),\n(24916, 66932, 'sixty-six thousand nine hundred thirty-two'),\n(24917, 52781, 'fifty-two thousand seven hundred eighty-one'),\n(24918, 71348, 'seventy-one thousand three hundred forty-eight'),\n(24919, 4847, 'four thousand eight hundred forty-seven'),\n(24920, 37301, 'thirty-seven thousand three hundred one'),\n(24921, 17089, 'seventeen thousand eighty-nine'),\n(24922, 11301, 'eleven thousand three hundred one'),\n(24923, 29841, 'twenty-nine thousand eight hundred forty-one'),\n(24924, 65105, 'sixty-five thousand one hundred five'),\n(24925, 824, 'eight hundred twenty-four'),\n(24926, 95530, 'ninety-five thousand five hundred thirty'),\n(24927, 27877, 'twenty-seven thousand eight hundred seventy-seven'),\n(24928, 38398, 'thirty-eight thousand three hundred ninety-eight'),\n(24929, 24764, 'twenty-four thousand seven hundred sixty-four'),\n(24930, 75532, 'seventy-five thousand five hundred thirty-two'),\n(24931, 85140, 'eighty-five thousand one hundred forty'),\n(24932, 7909, 'seven thousand nine hundred nine'),\n(24933, 35290, 'thirty-five thousand two hundred ninety'),\n(24934, 48260, 'forty-eight thousand two hundred sixty'),\n(24935, 42806, 'forty-two thousand eight hundred six'),\n(24936, 49887, 'forty-nine thousand eight hundred eighty-seven'),\n(24937, 42220, 'forty-two thousand two hundred twenty'),\n(24938, 49147, 'forty-nine thousand one hundred forty-seven'),\n(24939, 5209, 'five thousand two hundred nine'),\n(24940, 90794, 'ninety thousand seven hundred ninety-four'),\n(24941, 82718, 'eighty-two thousand seven hundred eighteen'),\n(24942, 51334, 'fifty-one thousand three hundred thirty-four'),\n(24943, 15932, 'fifteen thousand nine hundred thirty-two'),\n(24944, 59449, 'fifty-nine thousand four hundred forty-nine'),\n(24945, 67625, 'sixty-seven thousand six hundred twenty-five'),\n(24946, 94883, 'ninety-four thousand eight hundred eighty-three'),\n(24947, 45379, 'forty-five thousand three hundred seventy-nine'),\n(24948, 73463, 'seventy-three thousand four hundred sixty-three'),\n(24949, 45213, 'forty-five thousand two hundred thirteen'),\n(24950, 91929, 'ninety-one thousand nine hundred twenty-nine'),\n(24951, 16230, 'sixteen thousand two hundred thirty'),\n(24952, 69883, 'sixty-nine thousand eight hundred eighty-three'),\n(24953, 22804, 'twenty-two thousand eight hundred four'),\n(24954, 3866, 'three thousand eight hundred sixty-six'),\n(24955, 1990, 'one thousand nine hundred ninety'),\n(24956, 51840, 'fifty-one thousand eight hundred forty'),\n(24957, 87111, 'eighty-seven thousand one hundred eleven'),\n(24958, 68843, 'sixty-eight thousand eight hundred forty-three'),\n(24959, 55528, 'fifty-five thousand five hundred twenty-eight'),\n(24960, 53450, 'fifty-three thousand four hundred fifty'),\n(24961, 19612, 'nineteen thousand six hundred twelve'),\n(24962, 35201, 'thirty-five thousand two hundred one'),\n(24963, 16272, 'sixteen thousand two hundred seventy-two'),\n(24964, 99318, 'ninety-nine thousand three hundred eighteen'),\n(24965, 89834, 'eighty-nine thousand eight hundred thirty-four'),\n(24966, 20102, 'twenty thousand one hundred two'),\n(24967, 77296, 'seventy-seven thousand two hundred ninety-six'),\n(24968, 80389, 'eighty thousand three hundred eighty-nine'),\n(24969, 16913, 'sixteen thousand nine hundred thirteen'),\n(24970, 98721, 'ninety-eight thousand seven hundred twenty-one'),\n(24971, 54023, 'fifty-four thousand twenty-three'),\n(24972, 29494, 'twenty-nine thousand four hundred ninety-four'),\n(24973, 9377, 'nine thousand three hundred seventy-seven'),\n(24974, 72823, 'seventy-two thousand eight hundred twenty-three'),\n(24975, 69906, 'sixty-nine thousand nine hundred six'),\n(24976, 55159, 'fifty-five thousand one hundred fifty-nine'),\n(24977, 47047, 'forty-seven thousand forty-seven'),\n(24978, 28733, 'twenty-eight thousand seven hundred thirty-three'),\n(24979, 79866, 'seventy-nine thousand eight hundred sixty-six'),\n(24980, 64361, 'sixty-four thousand three hundred sixty-one'),\n(24981, 86431, 'eighty-six thousand four hundred thirty-one'),\n(24982, 53705, 'fifty-three thousand seven hundred five'),\n(24983, 43067, 'forty-three thousand sixty-seven'),\n(24984, 3320, 'three thousand three hundred twenty'),\n(24985, 15960, 'fifteen thousand nine hundred sixty'),\n(24986, 63272, 'sixty-three thousand two hundred seventy-two'),\n(24987, 2447, 'two thousand four hundred forty-seven'),\n(24988, 13742, 'thirteen thousand seven hundred forty-two'),\n(24989, 18875, 'eighteen thousand eight hundred seventy-five'),\n(24990, 92635, 'ninety-two thousand six hundred thirty-five'),\n(24991, 99535, 'ninety-nine thousand five hundred thirty-five'),\n(24992, 20112, 'twenty thousand one hundred twelve'),\n(24993, 93759, 'ninety-three thousand seven hundred fifty-nine'),\n(24994, 32135, 'thirty-two thousand one hundred thirty-five'),\n(24995, 56099, 'fifty-six thousand ninety-nine'),\n(24996, 14588, 'fourteen thousand five hundred eighty-eight'),\n(24997, 68339, 'sixty-eight thousand three hundred thirty-nine'),\n(24998, 33916, 'thirty-three thousand nine hundred sixteen'),\n(24999, 58227, 'fifty-eight thousand two hundred twenty-seven'),\n(25000, 94446, 'ninety-four thousand four hundred forty-six');\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark2.sql",
    "content": "BEGIN;\nCREATE TABLE t2(a INTEGER, b INTEGER, c VARCHAR(100));\nINSERT INTO t2 VALUES(1, 90584, 'ninety thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(2, 42558, 'forty-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(3, 5904, 'five thousand nine hundred four');\nINSERT INTO t2 VALUES(4, 27011, 'twenty-seven thousand eleven');\nINSERT INTO t2 VALUES(5, 97728, 'ninety-seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(6, 46615, 'forty-six thousand six hundred fifteen');\nINSERT INTO t2 VALUES(7, 28853, 'twenty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(8, 94539, 'ninety-four thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(9, 84536, 'eighty-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(10, 72680, 'seventy-two thousand six hundred eighty');\nINSERT INTO t2 VALUES(11, 93381, 'ninety-three thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(12, 17138, 'seventeen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(13, 29965, 'twenty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(14, 69407, 'sixty-nine thousand four hundred seven');\nINSERT INTO t2 VALUES(15, 61421, 'sixty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(16, 81239, 'eighty-one thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(17, 59865, 'fifty-nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(18, 588, 'five hundred eighty-eight');\nINSERT INTO t2 VALUES(19, 84152, 'eighty-four thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(20, 84124, 'eighty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(21, 12969, 'twelve thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(22, 7253, 'seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(23, 42485, 'forty-two thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(24, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(25, 78100, 'seventy-eight thousand one hundred');\nINSERT INTO t2 VALUES(26, 84160, 'eighty-four thousand one hundred sixty');\nINSERT INTO t2 VALUES(27, 43453, 'forty-three thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(28, 71890, 'seventy-one thousand eight hundred ninety');\nINSERT INTO t2 VALUES(29, 33038, 'thirty-three thousand thirty-eight');\nINSERT INTO t2 VALUES(30, 49437, 'forty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(31, 96549, 'ninety-six thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(32, 23171, 'twenty-three thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(33, 62381, 'sixty-two thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(34, 90815, 'ninety thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(35, 26487, 'twenty-six thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(36, 43321, 'forty-three thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(37, 89020, 'eighty-nine thousand twenty');\nINSERT INTO t2 VALUES(38, 33474, 'thirty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(39, 72198, 'seventy-two thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(40, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t2 VALUES(41, 89777, 'eighty-nine thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(42, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(43, 55191, 'fifty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(44, 73842, 'seventy-three thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(45, 70227, 'seventy thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(46, 65573, 'sixty-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(47, 73518, 'seventy-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(48, 68505, 'sixty-eight thousand five hundred five');\nINSERT INTO t2 VALUES(49, 57185, 'fifty-seven thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(50, 23871, 'twenty-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(51, 89925, 'eighty-nine thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(52, 2387, 'two thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(53, 17526, 'seventeen thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(54, 13016, 'thirteen thousand sixteen');\nINSERT INTO t2 VALUES(55, 74881, 'seventy-four thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(56, 59286, 'fifty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(57, 19244, 'nineteen thousand two hundred forty-four');\nINSERT INTO t2 VALUES(58, 4267, 'four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(59, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(60, 75557, 'seventy-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(61, 48280, 'forty-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(62, 42957, 'forty-two thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(63, 87398, 'eighty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(64, 58372, 'fifty-eight thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(65, 53877, 'fifty-three thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(66, 37922, 'thirty-seven thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(67, 19265, 'nineteen thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(68, 44548, 'forty-four thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(69, 90517, 'ninety thousand five hundred seventeen');\nINSERT INTO t2 VALUES(70, 49280, 'forty-nine thousand two hundred eighty');\nINSERT INTO t2 VALUES(71, 78587, 'seventy-eight thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(72, 50027, 'fifty thousand twenty-seven');\nINSERT INTO t2 VALUES(73, 17279, 'seventeen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(74, 81786, 'eighty-one thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(75, 59408, 'fifty-nine thousand four hundred eight');\nINSERT INTO t2 VALUES(76, 12302, 'twelve thousand three hundred two');\nINSERT INTO t2 VALUES(77, 19245, 'nineteen thousand two hundred forty-five');\nINSERT INTO t2 VALUES(78, 79712, 'seventy-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(79, 39038, 'thirty-nine thousand thirty-eight');\nINSERT INTO t2 VALUES(80, 54293, 'fifty-four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(81, 38489, 'thirty-eight thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(82, 76089, 'seventy-six thousand eighty-nine');\nINSERT INTO t2 VALUES(83, 77661, 'seventy-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(84, 47148, 'forty-seven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(85, 11042, 'eleven thousand forty-two');\nINSERT INTO t2 VALUES(86, 56823, 'fifty-six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(87, 45667, 'forty-five thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(88, 85403, 'eighty-five thousand four hundred three');\nINSERT INTO t2 VALUES(89, 70399, 'seventy thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(90, 70436, 'seventy thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(91, 83893, 'eighty-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(92, 47320, 'forty-seven thousand three hundred twenty');\nINSERT INTO t2 VALUES(93, 99216, 'ninety-nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(94, 90347, 'ninety thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(95, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(96, 28133, 'twenty-eight thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(97, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(98, 93243, 'ninety-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(99, 52352, 'fifty-two thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(100, 66472, 'sixty-six thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(101, 70637, 'seventy thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(102, 99984, 'ninety-nine thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(103, 55281, 'fifty-five thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(104, 57112, 'fifty-seven thousand one hundred twelve');\nINSERT INTO t2 VALUES(105, 69335, 'sixty-nine thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(106, 76289, 'seventy-six thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(107, 58904, 'fifty-eight thousand nine hundred four');\nINSERT INTO t2 VALUES(108, 83931, 'eighty-three thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(109, 96752, 'ninety-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(110, 93887, 'ninety-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(111, 53694, 'fifty-three thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(112, 59470, 'fifty-nine thousand four hundred seventy');\nINSERT INTO t2 VALUES(113, 72610, 'seventy-two thousand six hundred ten');\nINSERT INTO t2 VALUES(114, 4752, 'four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(115, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(116, 10668, 'ten thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(117, 56097, 'fifty-six thousand ninety-seven');\nINSERT INTO t2 VALUES(118, 97324, 'ninety-seven thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(119, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(120, 79763, 'seventy-nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(121, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(122, 19112, 'nineteen thousand one hundred twelve');\nINSERT INTO t2 VALUES(123, 40795, 'forty thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(124, 88896, 'eighty-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(125, 18106, 'eighteen thousand one hundred six');\nINSERT INTO t2 VALUES(126, 35583, 'thirty-five thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(127, 74961, 'seventy-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(128, 39442, 'thirty-nine thousand four hundred forty-two');\nINSERT INTO t2 VALUES(129, 29082, 'twenty-nine thousand eighty-two');\nINSERT INTO t2 VALUES(130, 91292, 'ninety-one thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(131, 99874, 'ninety-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(132, 21091, 'twenty-one thousand ninety-one');\nINSERT INTO t2 VALUES(133, 38291, 'thirty-eight thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(134, 16583, 'sixteen thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(135, 28219, 'twenty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(136, 26561, 'twenty-six thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(137, 96379, 'ninety-six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(138, 86575, 'eighty-six thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(139, 3153, 'three thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(140, 19351, 'nineteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(141, 27410, 'twenty-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(142, 48253, 'forty-eight thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(143, 73697, 'seventy-three thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(144, 72343, 'seventy-two thousand three hundred forty-three');\nINSERT INTO t2 VALUES(145, 36637, 'thirty-six thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(146, 95428, 'ninety-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(147, 82618, 'eighty-two thousand six hundred eighteen');\nINSERT INTO t2 VALUES(148, 21906, 'twenty-one thousand nine hundred six');\nINSERT INTO t2 VALUES(149, 42253, 'forty-two thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(150, 27764, 'twenty-seven thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(151, 39773, 'thirty-nine thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(152, 59859, 'fifty-nine thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(153, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(154, 67737, 'sixty-seven thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(155, 11285, 'eleven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(156, 16564, 'sixteen thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(157, 60721, 'sixty thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(158, 41942, 'forty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(159, 54386, 'fifty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(160, 31102, 'thirty-one thousand one hundred two');\nINSERT INTO t2 VALUES(161, 21277, 'twenty-one thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(162, 13172, 'thirteen thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(163, 19591, 'nineteen thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(164, 14293, 'fourteen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(165, 40877, 'forty thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(166, 79358, 'seventy-nine thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(167, 20675, 'twenty thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(168, 1769, 'one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(169, 1677, 'one thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(170, 32205, 'thirty-two thousand two hundred five');\nINSERT INTO t2 VALUES(171, 81540, 'eighty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(172, 5710, 'five thousand seven hundred ten');\nINSERT INTO t2 VALUES(173, 62299, 'sixty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(174, 85032, 'eighty-five thousand thirty-two');\nINSERT INTO t2 VALUES(175, 3662, 'three thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(176, 58615, 'fifty-eight thousand six hundred fifteen');\nINSERT INTO t2 VALUES(177, 13614, 'thirteen thousand six hundred fourteen');\nINSERT INTO t2 VALUES(178, 62699, 'sixty-two thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(179, 71236, 'seventy-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(180, 88169, 'eighty-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(181, 65385, 'sixty-five thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(182, 99267, 'ninety-nine thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(183, 12606, 'twelve thousand six hundred six');\nINSERT INTO t2 VALUES(184, 30770, 'thirty thousand seven hundred seventy');\nINSERT INTO t2 VALUES(185, 62402, 'sixty-two thousand four hundred two');\nINSERT INTO t2 VALUES(186, 31565, 'thirty-one thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(187, 3692, 'three thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(188, 7186, 'seven thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(189, 99676, 'ninety-nine thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(190, 76164, 'seventy-six thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(191, 9515, 'nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(192, 45987, 'forty-five thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(193, 82888, 'eighty-two thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(194, 6768, 'six thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(195, 40789, 'forty thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(196, 10644, 'ten thousand six hundred forty-four');\nINSERT INTO t2 VALUES(197, 64882, 'sixty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(198, 89204, 'eighty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(199, 31531, 'thirty-one thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(200, 84135, 'eighty-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(201, 40452, 'forty thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(202, 65812, 'sixty-five thousand eight hundred twelve');\nINSERT INTO t2 VALUES(203, 87428, 'eighty-seven thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(204, 81611, 'eighty-one thousand six hundred eleven');\nINSERT INTO t2 VALUES(205, 35606, 'thirty-five thousand six hundred six');\nINSERT INTO t2 VALUES(206, 44800, 'forty-four thousand eight hundred');\nINSERT INTO t2 VALUES(207, 90307, 'ninety thousand three hundred seven');\nINSERT INTO t2 VALUES(208, 49767, 'forty-nine thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(209, 63135, 'sixty-three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(210, 7874, 'seven thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(211, 56052, 'fifty-six thousand fifty-two');\nINSERT INTO t2 VALUES(212, 14101, 'fourteen thousand one hundred one');\nINSERT INTO t2 VALUES(213, 73904, 'seventy-three thousand nine hundred four');\nINSERT INTO t2 VALUES(214, 82013, 'eighty-two thousand thirteen');\nINSERT INTO t2 VALUES(215, 30917, 'thirty thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(216, 43369, 'forty-three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(217, 85482, 'eighty-five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(218, 74531, 'seventy-four thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(219, 68304, 'sixty-eight thousand three hundred four');\nINSERT INTO t2 VALUES(220, 3826, 'three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(221, 47165, 'forty-seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(222, 92990, 'ninety-two thousand nine hundred ninety');\nINSERT INTO t2 VALUES(223, 79000, 'seventy-nine thousand');\nINSERT INTO t2 VALUES(224, 58652, 'fifty-eight thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(225, 48526, 'forty-eight thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(226, 43307, 'forty-three thousand three hundred seven');\nINSERT INTO t2 VALUES(227, 23772, 'twenty-three thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(228, 58846, 'fifty-eight thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(229, 87291, 'eighty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(230, 83004, 'eighty-three thousand four');\nINSERT INTO t2 VALUES(231, 42004, 'forty-two thousand four');\nINSERT INTO t2 VALUES(232, 49969, 'forty-nine thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(233, 23476, 'twenty-three thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(234, 79448, 'seventy-nine thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(235, 50218, 'fifty thousand two hundred eighteen');\nINSERT INTO t2 VALUES(236, 77955, 'seventy-seven thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(237, 38504, 'thirty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(238, 15753, 'fifteen thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(239, 6575, 'six thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(240, 55802, 'fifty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(241, 80168, 'eighty thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(242, 92770, 'ninety-two thousand seven hundred seventy');\nINSERT INTO t2 VALUES(243, 55401, 'fifty-five thousand four hundred one');\nINSERT INTO t2 VALUES(244, 78571, 'seventy-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(245, 35837, 'thirty-five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(246, 31224, 'thirty-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(247, 89769, 'eighty-nine thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(248, 20314, 'twenty thousand three hundred fourteen');\nINSERT INTO t2 VALUES(249, 71697, 'seventy-one thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(250, 22149, 'twenty-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(251, 23262, 'twenty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(252, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(253, 25847, 'twenty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(254, 91292, 'ninety-one thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(255, 7915, 'seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(256, 85245, 'eighty-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(257, 94332, 'ninety-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(258, 39481, 'thirty-nine thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(259, 5269, 'five thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(260, 22338, 'twenty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(261, 74180, 'seventy-four thousand one hundred eighty');\nINSERT INTO t2 VALUES(262, 49430, 'forty-nine thousand four hundred thirty');\nINSERT INTO t2 VALUES(263, 51365, 'fifty-one thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(264, 54313, 'fifty-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(265, 13136, 'thirteen thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(266, 83576, 'eighty-three thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(267, 78663, 'seventy-eight thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(268, 47700, 'forty-seven thousand seven hundred');\nINSERT INTO t2 VALUES(269, 34175, 'thirty-four thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(270, 83792, 'eighty-three thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(271, 24469, 'twenty-four thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(272, 79780, 'seventy-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(273, 68160, 'sixty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(274, 24719, 'twenty-four thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(275, 90627, 'ninety thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(276, 68384, 'sixty-eight thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(277, 2097, 'two thousand ninety-seven');\nINSERT INTO t2 VALUES(278, 91419, 'ninety-one thousand four hundred nineteen');\nINSERT INTO t2 VALUES(279, 490, 'four hundred ninety');\nINSERT INTO t2 VALUES(280, 41320, 'forty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(281, 85136, 'eighty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(282, 58013, 'fifty-eight thousand thirteen');\nINSERT INTO t2 VALUES(283, 64490, 'sixty-four thousand four hundred ninety');\nINSERT INTO t2 VALUES(284, 14584, 'fourteen thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(285, 45558, 'forty-five thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(286, 36464, 'thirty-six thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(287, 9044, 'nine thousand forty-four');\nINSERT INTO t2 VALUES(288, 50280, 'fifty thousand two hundred eighty');\nINSERT INTO t2 VALUES(289, 18306, 'eighteen thousand three hundred six');\nINSERT INTO t2 VALUES(290, 78730, 'seventy-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(291, 44272, 'forty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(292, 43960, 'forty-three thousand nine hundred sixty');\nINSERT INTO t2 VALUES(293, 3488, 'three thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(294, 80135, 'eighty thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(295, 74156, 'seventy-four thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(296, 2359, 'two thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(297, 18621, 'eighteen thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(298, 93144, 'ninety-three thousand one hundred forty-four');\nINSERT INTO t2 VALUES(299, 57458, 'fifty-seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(300, 72223, 'seventy-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(301, 73494, 'seventy-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(302, 24982, 'twenty-four thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(303, 17264, 'seventeen thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(304, 41967, 'forty-one thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(305, 97163, 'ninety-seven thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(306, 89452, 'eighty-nine thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(307, 20167, 'twenty thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(308, 39685, 'thirty-nine thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(309, 93786, 'ninety-three thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(310, 1083, 'one thousand eighty-three');\nINSERT INTO t2 VALUES(311, 91893, 'ninety-one thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(312, 73800, 'seventy-three thousand eight hundred');\nINSERT INTO t2 VALUES(313, 24798, 'twenty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(314, 48791, 'forty-eight thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(315, 90826, 'ninety thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(316, 99175, 'ninety-nine thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(317, 24893, 'twenty-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(318, 43840, 'forty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(319, 98875, 'ninety-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(320, 63936, 'sixty-three thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(321, 42855, 'forty-two thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(322, 47833, 'forty-seven thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(323, 36163, 'thirty-six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(324, 49870, 'forty-nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(325, 81463, 'eighty-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(326, 29346, 'twenty-nine thousand three hundred forty-six');\nINSERT INTO t2 VALUES(327, 66164, 'sixty-six thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(328, 13407, 'thirteen thousand four hundred seven');\nINSERT INTO t2 VALUES(329, 3831, 'three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(330, 47325, 'forty-seven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(331, 55698, 'fifty-five thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(332, 78457, 'seventy-eight thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(333, 42971, 'forty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(334, 23741, 'twenty-three thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(335, 5185, 'five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(336, 5746, 'five thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(337, 25097, 'twenty-five thousand ninety-seven');\nINSERT INTO t2 VALUES(338, 95283, 'ninety-five thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(339, 96875, 'ninety-six thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(340, 98629, 'ninety-eight thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(341, 41267, 'forty-one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(342, 98055, 'ninety-eight thousand fifty-five');\nINSERT INTO t2 VALUES(343, 73830, 'seventy-three thousand eight hundred thirty');\nINSERT INTO t2 VALUES(344, 34985, 'thirty-four thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(345, 24661, 'twenty-four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(346, 44424, 'forty-four thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(347, 74252, 'seventy-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(348, 9490, 'nine thousand four hundred ninety');\nINSERT INTO t2 VALUES(349, 8125, 'eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(350, 39204, 'thirty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(351, 43098, 'forty-three thousand ninety-eight');\nINSERT INTO t2 VALUES(352, 96899, 'ninety-six thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(353, 80442, 'eighty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(354, 7697, 'seven thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(355, 92162, 'ninety-two thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(356, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(357, 81206, 'eighty-one thousand two hundred six');\nINSERT INTO t2 VALUES(358, 6508, 'six thousand five hundred eight');\nINSERT INTO t2 VALUES(359, 3635, 'three thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(360, 66733, 'sixty-six thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(361, 13695, 'thirteen thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(362, 17014, 'seventeen thousand fourteen');\nINSERT INTO t2 VALUES(363, 57870, 'fifty-seven thousand eight hundred seventy');\nINSERT INTO t2 VALUES(364, 23851, 'twenty-three thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(365, 69139, 'sixty-nine thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(366, 14381, 'fourteen thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(367, 39789, 'thirty-nine thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(368, 54204, 'fifty-four thousand two hundred four');\nINSERT INTO t2 VALUES(369, 31110, 'thirty-one thousand one hundred ten');\nINSERT INTO t2 VALUES(370, 30301, 'thirty thousand three hundred one');\nINSERT INTO t2 VALUES(371, 96378, 'ninety-six thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(372, 30520, 'thirty thousand five hundred twenty');\nINSERT INTO t2 VALUES(373, 49432, 'forty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(374, 11167, 'eleven thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(375, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(376, 39142, 'thirty-nine thousand one hundred forty-two');\nINSERT INTO t2 VALUES(377, 45535, 'forty-five thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(378, 60086, 'sixty thousand eighty-six');\nINSERT INTO t2 VALUES(379, 96700, 'ninety-six thousand seven hundred');\nINSERT INTO t2 VALUES(380, 51609, 'fifty-one thousand six hundred nine');\nINSERT INTO t2 VALUES(381, 19465, 'nineteen thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(382, 97496, 'ninety-seven thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(383, 40693, 'forty thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(384, 90384, 'ninety thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(385, 37018, 'thirty-seven thousand eighteen');\nINSERT INTO t2 VALUES(386, 33373, 'thirty-three thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(387, 18129, 'eighteen thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(388, 87088, 'eighty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(389, 38982, 'thirty-eight thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(390, 68852, 'sixty-eight thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(391, 67805, 'sixty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(392, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t2 VALUES(393, 83196, 'eighty-three thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(394, 66916, 'sixty-six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(395, 62729, 'sixty-two thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(396, 40572, 'forty thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(397, 99281, 'ninety-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(398, 13442, 'thirteen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(399, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(400, 88668, 'eighty-eight thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(401, 39319, 'thirty-nine thousand three hundred nineteen');\nINSERT INTO t2 VALUES(402, 54573, 'fifty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(403, 69094, 'sixty-nine thousand ninety-four');\nINSERT INTO t2 VALUES(404, 22750, 'twenty-two thousand seven hundred fifty');\nINSERT INTO t2 VALUES(405, 958, 'nine hundred fifty-eight');\nINSERT INTO t2 VALUES(406, 37812, 'thirty-seven thousand eight hundred twelve');\nINSERT INTO t2 VALUES(407, 27408, 'twenty-seven thousand four hundred eight');\nINSERT INTO t2 VALUES(408, 102, 'one hundred two');\nINSERT INTO t2 VALUES(409, 98842, 'ninety-eight thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(410, 46101, 'forty-six thousand one hundred one');\nINSERT INTO t2 VALUES(411, 47116, 'forty-seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(412, 83820, 'eighty-three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(413, 11037, 'eleven thousand thirty-seven');\nINSERT INTO t2 VALUES(414, 63954, 'sixty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(415, 4143, 'four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(416, 92284, 'ninety-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(417, 13726, 'thirteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(418, 19093, 'nineteen thousand ninety-three');\nINSERT INTO t2 VALUES(419, 5647, 'five thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(420, 59306, 'fifty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(421, 74912, 'seventy-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(422, 57291, 'fifty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(423, 88070, 'eighty-eight thousand seventy');\nINSERT INTO t2 VALUES(424, 17250, 'seventeen thousand two hundred fifty');\nINSERT INTO t2 VALUES(425, 33763, 'thirty-three thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(426, 92165, 'ninety-two thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(427, 71691, 'seventy-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(428, 15409, 'fifteen thousand four hundred nine');\nINSERT INTO t2 VALUES(429, 78545, 'seventy-eight thousand five hundred forty-five');\nINSERT INTO t2 VALUES(430, 35754, 'thirty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(431, 11936, 'eleven thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(432, 5900, 'five thousand nine hundred');\nINSERT INTO t2 VALUES(433, 74035, 'seventy-four thousand thirty-five');\nINSERT INTO t2 VALUES(434, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(435, 75744, 'seventy-five thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(436, 63940, 'sixty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(437, 23980, 'twenty-three thousand nine hundred eighty');\nINSERT INTO t2 VALUES(438, 22051, 'twenty-two thousand fifty-one');\nINSERT INTO t2 VALUES(439, 93445, 'ninety-three thousand four hundred forty-five');\nINSERT INTO t2 VALUES(440, 34736, 'thirty-four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(441, 31454, 'thirty-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(442, 40844, 'forty thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(443, 70304, 'seventy thousand three hundred four');\nINSERT INTO t2 VALUES(444, 10837, 'ten thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(445, 99631, 'ninety-nine thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(446, 72804, 'seventy-two thousand eight hundred four');\nINSERT INTO t2 VALUES(447, 92850, 'ninety-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(448, 63508, 'sixty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(449, 25706, 'twenty-five thousand seven hundred six');\nINSERT INTO t2 VALUES(450, 87944, 'eighty-seven thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(451, 23517, 'twenty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(452, 68961, 'sixty-eight thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(453, 74788, 'seventy-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(454, 16124, 'sixteen thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(455, 93887, 'ninety-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(456, 85421, 'eighty-five thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(457, 91515, 'ninety-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(458, 15437, 'fifteen thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(459, 37400, 'thirty-seven thousand four hundred');\nINSERT INTO t2 VALUES(460, 5002, 'five thousand two');\nINSERT INTO t2 VALUES(461, 79204, 'seventy-nine thousand two hundred four');\nINSERT INTO t2 VALUES(462, 39588, 'thirty-nine thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(463, 19821, 'nineteen thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(464, 23933, 'twenty-three thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(465, 17986, 'seventeen thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(466, 34801, 'thirty-four thousand eight hundred one');\nINSERT INTO t2 VALUES(467, 63154, 'sixty-three thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(468, 76240, 'seventy-six thousand two hundred forty');\nINSERT INTO t2 VALUES(469, 92334, 'ninety-two thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(470, 32094, 'thirty-two thousand ninety-four');\nINSERT INTO t2 VALUES(471, 52504, 'fifty-two thousand five hundred four');\nINSERT INTO t2 VALUES(472, 89226, 'eighty-nine thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(473, 32433, 'thirty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(474, 68219, 'sixty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(475, 22845, 'twenty-two thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(476, 9138, 'nine thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(477, 56540, 'fifty-six thousand five hundred forty');\nINSERT INTO t2 VALUES(478, 60269, 'sixty thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(479, 62693, 'sixty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(480, 31550, 'thirty-one thousand five hundred fifty');\nINSERT INTO t2 VALUES(481, 23224, 'twenty-three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(482, 37671, 'thirty-seven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(483, 60275, 'sixty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(484, 89470, 'eighty-nine thousand four hundred seventy');\nINSERT INTO t2 VALUES(485, 67806, 'sixty-seven thousand eight hundred six');\nINSERT INTO t2 VALUES(486, 45933, 'forty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(487, 34486, 'thirty-four thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(488, 32311, 'thirty-two thousand three hundred eleven');\nINSERT INTO t2 VALUES(489, 27956, 'twenty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(490, 3525, 'three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(491, 97535, 'ninety-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(492, 25332, 'twenty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(493, 32005, 'thirty-two thousand five');\nINSERT INTO t2 VALUES(494, 62842, 'sixty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(495, 97388, 'ninety-seven thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(496, 9955, 'nine thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(497, 16659, 'sixteen thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(498, 36808, 'thirty-six thousand eight hundred eight');\nINSERT INTO t2 VALUES(499, 96556, 'ninety-six thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(500, 97611, 'ninety-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(501, 94797, 'ninety-four thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(502, 55526, 'fifty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(503, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(504, 9578, 'nine thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(505, 66639, 'sixty-six thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(506, 34736, 'thirty-four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(507, 99062, 'ninety-nine thousand sixty-two');\nINSERT INTO t2 VALUES(508, 34421, 'thirty-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(509, 2808, 'two thousand eight hundred eight');\nINSERT INTO t2 VALUES(510, 95578, 'ninety-five thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(511, 59698, 'fifty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(512, 48398, 'forty-eight thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(513, 70979, 'seventy thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(514, 78429, 'seventy-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(515, 54267, 'fifty-four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(516, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(517, 54855, 'fifty-four thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(518, 84027, 'eighty-four thousand twenty-seven');\nINSERT INTO t2 VALUES(519, 65748, 'sixty-five thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(520, 41536, 'forty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(521, 18689, 'eighteen thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(522, 95009, 'ninety-five thousand nine');\nINSERT INTO t2 VALUES(523, 67827, 'sixty-seven thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(524, 73315, 'seventy-three thousand three hundred fifteen');\nINSERT INTO t2 VALUES(525, 69894, 'sixty-nine thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(526, 31763, 'thirty-one thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(527, 95172, 'ninety-five thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(528, 66494, 'sixty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(529, 22046, 'twenty-two thousand forty-six');\nINSERT INTO t2 VALUES(530, 88566, 'eighty-eight thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(531, 67887, 'sixty-seven thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(532, 40199, 'forty thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(533, 59247, 'fifty-nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(534, 68531, 'sixty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(535, 28157, 'twenty-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(536, 40723, 'forty thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(537, 99214, 'ninety-nine thousand two hundred fourteen');\nINSERT INTO t2 VALUES(538, 3380, 'three thousand three hundred eighty');\nINSERT INTO t2 VALUES(539, 71751, 'seventy-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(540, 71340, 'seventy-one thousand three hundred forty');\nINSERT INTO t2 VALUES(541, 96992, 'ninety-six thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(542, 89052, 'eighty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(543, 60936, 'sixty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(544, 75893, 'seventy-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(545, 48708, 'forty-eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(546, 14104, 'fourteen thousand one hundred four');\nINSERT INTO t2 VALUES(547, 45315, 'forty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(548, 95566, 'ninety-five thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(549, 35437, 'thirty-five thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(550, 25022, 'twenty-five thousand twenty-two');\nINSERT INTO t2 VALUES(551, 79698, 'seventy-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(552, 35072, 'thirty-five thousand seventy-two');\nINSERT INTO t2 VALUES(553, 45001, 'forty-five thousand one');\nINSERT INTO t2 VALUES(554, 34803, 'thirty-four thousand eight hundred three');\nINSERT INTO t2 VALUES(555, 26429, 'twenty-six thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(556, 59919, 'fifty-nine thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(557, 74425, 'seventy-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(558, 71306, 'seventy-one thousand three hundred six');\nINSERT INTO t2 VALUES(559, 70169, 'seventy thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(560, 45716, 'forty-five thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(561, 47751, 'forty-seven thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(562, 69698, 'sixty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(563, 40521, 'forty thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(564, 73632, 'seventy-three thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(565, 31778, 'thirty-one thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(566, 78531, 'seventy-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(567, 44561, 'forty-four thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(568, 60621, 'sixty thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(569, 34958, 'thirty-four thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(570, 12259, 'twelve thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(571, 65727, 'sixty-five thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(572, 95688, 'ninety-five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(573, 81733, 'eighty-one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(574, 74957, 'seventy-four thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(575, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t2 VALUES(576, 89103, 'eighty-nine thousand one hundred three');\nINSERT INTO t2 VALUES(577, 86180, 'eighty-six thousand one hundred eighty');\nINSERT INTO t2 VALUES(578, 37290, 'thirty-seven thousand two hundred ninety');\nINSERT INTO t2 VALUES(579, 21170, 'twenty-one thousand one hundred seventy');\nINSERT INTO t2 VALUES(580, 82597, 'eighty-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(581, 84482, 'eighty-four thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(582, 37952, 'thirty-seven thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(583, 86729, 'eighty-six thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(584, 94676, 'ninety-four thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(585, 73021, 'seventy-three thousand twenty-one');\nINSERT INTO t2 VALUES(586, 48024, 'forty-eight thousand twenty-four');\nINSERT INTO t2 VALUES(587, 13143, 'thirteen thousand one hundred forty-three');\nINSERT INTO t2 VALUES(588, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(589, 2489, 'two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(590, 73416, 'seventy-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(591, 73717, 'seventy-three thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(592, 34965, 'thirty-four thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(593, 62107, 'sixty-two thousand one hundred seven');\nINSERT INTO t2 VALUES(594, 56695, 'fifty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(595, 9354, 'nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(596, 85230, 'eighty-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(597, 74110, 'seventy-four thousand one hundred ten');\nINSERT INTO t2 VALUES(598, 11003, 'eleven thousand three');\nINSERT INTO t2 VALUES(599, 78616, 'seventy-eight thousand six hundred sixteen');\nINSERT INTO t2 VALUES(600, 94802, 'ninety-four thousand eight hundred two');\nINSERT INTO t2 VALUES(601, 82730, 'eighty-two thousand seven hundred thirty');\nINSERT INTO t2 VALUES(602, 8566, 'eight thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(603, 99148, 'ninety-nine thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(604, 3426, 'three thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(605, 18875, 'eighteen thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(606, 60437, 'sixty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(607, 54616, 'fifty-four thousand six hundred sixteen');\nINSERT INTO t2 VALUES(608, 9202, 'nine thousand two hundred two');\nINSERT INTO t2 VALUES(609, 59573, 'fifty-nine thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(610, 89791, 'eighty-nine thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(611, 55268, 'fifty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(612, 98308, 'ninety-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(613, 17680, 'seventeen thousand six hundred eighty');\nINSERT INTO t2 VALUES(614, 55025, 'fifty-five thousand twenty-five');\nINSERT INTO t2 VALUES(615, 77294, 'seventy-seven thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(616, 81062, 'eighty-one thousand sixty-two');\nINSERT INTO t2 VALUES(617, 13052, 'thirteen thousand fifty-two');\nINSERT INTO t2 VALUES(618, 91235, 'ninety-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(619, 66678, 'sixty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(620, 56918, 'fifty-six thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(621, 60166, 'sixty thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(622, 75728, 'seventy-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(623, 51475, 'fifty-one thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(624, 18607, 'eighteen thousand six hundred seven');\nINSERT INTO t2 VALUES(625, 70530, 'seventy thousand five hundred thirty');\nINSERT INTO t2 VALUES(626, 99088, 'ninety-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(627, 27360, 'twenty-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(628, 14766, 'fourteen thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(629, 38102, 'thirty-eight thousand one hundred two');\nINSERT INTO t2 VALUES(630, 6368, 'six thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(631, 44679, 'forty-four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(632, 83040, 'eighty-three thousand forty');\nINSERT INTO t2 VALUES(633, 51321, 'fifty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(634, 98071, 'ninety-eight thousand seventy-one');\nINSERT INTO t2 VALUES(635, 90424, 'ninety thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(636, 70779, 'seventy thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(637, 30261, 'thirty thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(638, 96814, 'ninety-six thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(639, 64637, 'sixty-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(640, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(641, 49675, 'forty-nine thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(642, 49154, 'forty-nine thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(643, 31544, 'thirty-one thousand five hundred forty-four');\nINSERT INTO t2 VALUES(644, 71290, 'seventy-one thousand two hundred ninety');\nINSERT INTO t2 VALUES(645, 8215, 'eight thousand two hundred fifteen');\nINSERT INTO t2 VALUES(646, 15898, 'fifteen thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(647, 42066, 'forty-two thousand sixty-six');\nINSERT INTO t2 VALUES(648, 35652, 'thirty-five thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(649, 31326, 'thirty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(650, 63793, 'sixty-three thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(651, 67657, 'sixty-seven thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(652, 39223, 'thirty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(653, 13251, 'thirteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(654, 21579, 'twenty-one thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(655, 83396, 'eighty-three thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(656, 99715, 'ninety-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(657, 16217, 'sixteen thousand two hundred seventeen');\nINSERT INTO t2 VALUES(658, 66339, 'sixty-six thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(659, 57575, 'fifty-seven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(660, 70206, 'seventy thousand two hundred six');\nINSERT INTO t2 VALUES(661, 87963, 'eighty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(662, 17579, 'seventeen thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(663, 87565, 'eighty-seven thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(664, 86056, 'eighty-six thousand fifty-six');\nINSERT INTO t2 VALUES(665, 2494, 'two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(666, 91906, 'ninety-one thousand nine hundred six');\nINSERT INTO t2 VALUES(667, 89821, 'eighty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(668, 30479, 'thirty thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(669, 73187, 'seventy-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(670, 16142, 'sixteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(671, 81278, 'eighty-one thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(672, 74626, 'seventy-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(673, 11136, 'eleven thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(674, 77760, 'seventy-seven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(675, 40761, 'forty thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(676, 77786, 'seventy-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(677, 78878, 'seventy-eight thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(678, 82966, 'eighty-two thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(679, 38243, 'thirty-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(680, 18097, 'eighteen thousand ninety-seven');\nINSERT INTO t2 VALUES(681, 61339, 'sixty-one thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(682, 27517, 'twenty-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(683, 40926, 'forty thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(684, 90996, 'ninety thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(685, 51691, 'fifty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(686, 2081, 'two thousand eighty-one');\nINSERT INTO t2 VALUES(687, 95518, 'ninety-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(688, 84035, 'eighty-four thousand thirty-five');\nINSERT INTO t2 VALUES(689, 61083, 'sixty-one thousand eighty-three');\nINSERT INTO t2 VALUES(690, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(691, 48888, 'forty-eight thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(692, 3728, 'three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(693, 88539, 'eighty-eight thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(694, 24939, 'twenty-four thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(695, 12290, 'twelve thousand two hundred ninety');\nINSERT INTO t2 VALUES(696, 99242, 'ninety-nine thousand two hundred forty-two');\nINSERT INTO t2 VALUES(697, 32165, 'thirty-two thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(698, 47862, 'forty-seven thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(699, 64618, 'sixty-four thousand six hundred eighteen');\nINSERT INTO t2 VALUES(700, 2534, 'two thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(701, 43705, 'forty-three thousand seven hundred five');\nINSERT INTO t2 VALUES(702, 86086, 'eighty-six thousand eighty-six');\nINSERT INTO t2 VALUES(703, 78321, 'seventy-eight thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(704, 30355, 'thirty thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(705, 78108, 'seventy-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(706, 32327, 'thirty-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(707, 66279, 'sixty-six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(708, 99518, 'ninety-nine thousand five hundred eighteen');\nINSERT INTO t2 VALUES(709, 70079, 'seventy thousand seventy-nine');\nINSERT INTO t2 VALUES(710, 36441, 'thirty-six thousand four hundred forty-one');\nINSERT INTO t2 VALUES(711, 2341, 'two thousand three hundred forty-one');\nINSERT INTO t2 VALUES(712, 29186, 'twenty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(713, 43661, 'forty-three thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(714, 87058, 'eighty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(715, 99743, 'ninety-nine thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(716, 89460, 'eighty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(717, 6777, 'six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(718, 12820, 'twelve thousand eight hundred twenty');\nINSERT INTO t2 VALUES(719, 1827, 'one thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(720, 5091, 'five thousand ninety-one');\nINSERT INTO t2 VALUES(721, 78763, 'seventy-eight thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(722, 56599, 'fifty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(723, 80592, 'eighty thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(724, 30909, 'thirty thousand nine hundred nine');\nINSERT INTO t2 VALUES(725, 19797, 'nineteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(726, 62768, 'sixty-two thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(727, 94376, 'ninety-four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(728, 83601, 'eighty-three thousand six hundred one');\nINSERT INTO t2 VALUES(729, 42990, 'forty-two thousand nine hundred ninety');\nINSERT INTO t2 VALUES(730, 7502, 'seven thousand five hundred two');\nINSERT INTO t2 VALUES(731, 53674, 'fifty-three thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(732, 23843, 'twenty-three thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(733, 4838, 'four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(734, 4619, 'four thousand six hundred nineteen');\nINSERT INTO t2 VALUES(735, 59210, 'fifty-nine thousand two hundred ten');\nINSERT INTO t2 VALUES(736, 66035, 'sixty-six thousand thirty-five');\nINSERT INTO t2 VALUES(737, 45307, 'forty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(738, 3816, 'three thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(739, 57908, 'fifty-seven thousand nine hundred eight');\nINSERT INTO t2 VALUES(740, 63148, 'sixty-three thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(741, 62717, 'sixty-two thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(742, 71595, 'seventy-one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(743, 44054, 'forty-four thousand fifty-four');\nINSERT INTO t2 VALUES(744, 69909, 'sixty-nine thousand nine hundred nine');\nINSERT INTO t2 VALUES(745, 91551, 'ninety-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(746, 98216, 'ninety-eight thousand two hundred sixteen');\nINSERT INTO t2 VALUES(747, 48437, 'forty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(748, 15086, 'fifteen thousand eighty-six');\nINSERT INTO t2 VALUES(749, 63624, 'sixty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(750, 57772, 'fifty-seven thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(751, 44176, 'forty-four thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(752, 45849, 'forty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(753, 99996, 'ninety-nine thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(754, 95877, 'ninety-five thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(755, 2437, 'two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(756, 20052, 'twenty thousand fifty-two');\nINSERT INTO t2 VALUES(757, 71853, 'seventy-one thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(758, 29391, 'twenty-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(759, 44050, 'forty-four thousand fifty');\nINSERT INTO t2 VALUES(760, 99141, 'ninety-nine thousand one hundred forty-one');\nINSERT INTO t2 VALUES(761, 23689, 'twenty-three thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(762, 11569, 'eleven thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(763, 24481, 'twenty-four thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(764, 78451, 'seventy-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(765, 76265, 'seventy-six thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(766, 88798, 'eighty-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(767, 88853, 'eighty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(768, 38634, 'thirty-eight thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(769, 68397, 'sixty-eight thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(770, 68598, 'sixty-eight thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(771, 83836, 'eighty-three thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(772, 40637, 'forty thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(773, 19114, 'nineteen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(774, 37463, 'thirty-seven thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(775, 97655, 'ninety-seven thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(776, 95507, 'ninety-five thousand five hundred seven');\nINSERT INTO t2 VALUES(777, 11003, 'eleven thousand three');\nINSERT INTO t2 VALUES(778, 69608, 'sixty-nine thousand six hundred eight');\nINSERT INTO t2 VALUES(779, 51461, 'fifty-one thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(780, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(781, 76235, 'seventy-six thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(782, 95620, 'ninety-five thousand six hundred twenty');\nINSERT INTO t2 VALUES(783, 29170, 'twenty-nine thousand one hundred seventy');\nINSERT INTO t2 VALUES(784, 22082, 'twenty-two thousand eighty-two');\nINSERT INTO t2 VALUES(785, 68667, 'sixty-eight thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(786, 33338, 'thirty-three thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(787, 90234, 'ninety thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(788, 65669, 'sixty-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(789, 38078, 'thirty-eight thousand seventy-eight');\nINSERT INTO t2 VALUES(790, 87264, 'eighty-seven thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(791, 97614, 'ninety-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(792, 59817, 'fifty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(793, 5196, 'five thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(794, 42525, 'forty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(795, 75267, 'seventy-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(796, 59459, 'fifty-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(797, 17927, 'seventeen thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(798, 23710, 'twenty-three thousand seven hundred ten');\nINSERT INTO t2 VALUES(799, 23131, 'twenty-three thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(800, 98268, 'ninety-eight thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(801, 52084, 'fifty-two thousand eighty-four');\nINSERT INTO t2 VALUES(802, 6664, 'six thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(803, 18164, 'eighteen thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(804, 15805, 'fifteen thousand eight hundred five');\nINSERT INTO t2 VALUES(805, 60170, 'sixty thousand one hundred seventy');\nINSERT INTO t2 VALUES(806, 38797, 'thirty-eight thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(807, 6962, 'six thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(808, 54909, 'fifty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(809, 81064, 'eighty-one thousand sixty-four');\nINSERT INTO t2 VALUES(810, 75341, 'seventy-five thousand three hundred forty-one');\nINSERT INTO t2 VALUES(811, 3138, 'three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(812, 37465, 'thirty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(813, 20556, 'twenty thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(814, 9894, 'nine thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(815, 45227, 'forty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(816, 47065, 'forty-seven thousand sixty-five');\nINSERT INTO t2 VALUES(817, 48475, 'forty-eight thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(818, 87766, 'eighty-seven thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(819, 32488, 'thirty-two thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(820, 80760, 'eighty thousand seven hundred sixty');\nINSERT INTO t2 VALUES(821, 72788, 'seventy-two thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(822, 27462, 'twenty-seven thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(823, 95835, 'ninety-five thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(824, 52238, 'fifty-two thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(825, 83682, 'eighty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(826, 71799, 'seventy-one thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(827, 2127, 'two thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(828, 75416, 'seventy-five thousand four hundred sixteen');\nINSERT INTO t2 VALUES(829, 76242, 'seventy-six thousand two hundred forty-two');\nINSERT INTO t2 VALUES(830, 76930, 'seventy-six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(831, 46819, 'forty-six thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(832, 59100, 'fifty-nine thousand one hundred');\nINSERT INTO t2 VALUES(833, 8369, 'eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(834, 97501, 'ninety-seven thousand five hundred one');\nINSERT INTO t2 VALUES(835, 47736, 'forty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(836, 15478, 'fifteen thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(837, 14813, 'fourteen thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(838, 94605, 'ninety-four thousand six hundred five');\nINSERT INTO t2 VALUES(839, 13218, 'thirteen thousand two hundred eighteen');\nINSERT INTO t2 VALUES(840, 41949, 'forty-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(841, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(842, 78744, 'seventy-eight thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(843, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(844, 8523, 'eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(845, 68301, 'sixty-eight thousand three hundred one');\nINSERT INTO t2 VALUES(846, 9328, 'nine thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(847, 25488, 'twenty-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(848, 2392, 'two thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(849, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(850, 93297, 'ninety-three thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(851, 31561, 'thirty-one thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(852, 48403, 'forty-eight thousand four hundred three');\nINSERT INTO t2 VALUES(853, 43405, 'forty-three thousand four hundred five');\nINSERT INTO t2 VALUES(854, 52536, 'fifty-two thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(855, 99828, 'ninety-nine thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(856, 43458, 'forty-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(857, 10517, 'ten thousand five hundred seventeen');\nINSERT INTO t2 VALUES(858, 38607, 'thirty-eight thousand six hundred seven');\nINSERT INTO t2 VALUES(859, 81719, 'eighty-one thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(860, 95780, 'ninety-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(861, 1119, 'one thousand one hundred nineteen');\nINSERT INTO t2 VALUES(862, 42558, 'forty-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(863, 43669, 'forty-three thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(864, 89209, 'eighty-nine thousand two hundred nine');\nINSERT INTO t2 VALUES(865, 33358, 'thirty-three thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(866, 59069, 'fifty-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(867, 13210, 'thirteen thousand two hundred ten');\nINSERT INTO t2 VALUES(868, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(869, 99845, 'ninety-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(870, 92956, 'ninety-two thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(871, 54213, 'fifty-four thousand two hundred thirteen');\nINSERT INTO t2 VALUES(872, 9395, 'nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(873, 80128, 'eighty thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(874, 57995, 'fifty-seven thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(875, 6483, 'six thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(876, 3506, 'three thousand five hundred six');\nINSERT INTO t2 VALUES(877, 1641, 'one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(878, 13790, 'thirteen thousand seven hundred ninety');\nINSERT INTO t2 VALUES(879, 18154, 'eighteen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(880, 24625, 'twenty-four thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(881, 5708, 'five thousand seven hundred eight');\nINSERT INTO t2 VALUES(882, 1038, 'one thousand thirty-eight');\nINSERT INTO t2 VALUES(883, 33150, 'thirty-three thousand one hundred fifty');\nINSERT INTO t2 VALUES(884, 43327, 'forty-three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(885, 53736, 'fifty-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(886, 24084, 'twenty-four thousand eighty-four');\nINSERT INTO t2 VALUES(887, 23309, 'twenty-three thousand three hundred nine');\nINSERT INTO t2 VALUES(888, 85039, 'eighty-five thousand thirty-nine');\nINSERT INTO t2 VALUES(889, 18294, 'eighteen thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(890, 79266, 'seventy-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(891, 14951, 'fourteen thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(892, 99565, 'ninety-nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(893, 45968, 'forty-five thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(894, 65624, 'sixty-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(895, 89551, 'eighty-nine thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(896, 25780, 'twenty-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(897, 39132, 'thirty-nine thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(898, 82475, 'eighty-two thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(899, 44023, 'forty-four thousand twenty-three');\nINSERT INTO t2 VALUES(900, 79229, 'seventy-nine thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(901, 36320, 'thirty-six thousand three hundred twenty');\nINSERT INTO t2 VALUES(902, 99536, 'ninety-nine thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(903, 92326, 'ninety-two thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(904, 53945, 'fifty-three thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(905, 84917, 'eighty-four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(906, 53411, 'fifty-three thousand four hundred eleven');\nINSERT INTO t2 VALUES(907, 67719, 'sixty-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(908, 72065, 'seventy-two thousand sixty-five');\nINSERT INTO t2 VALUES(909, 6847, 'six thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(910, 48807, 'forty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(911, 478, 'four hundred seventy-eight');\nINSERT INTO t2 VALUES(912, 90285, 'ninety thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(913, 60170, 'sixty thousand one hundred seventy');\nINSERT INTO t2 VALUES(914, 64492, 'sixty-four thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(915, 21371, 'twenty-one thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(916, 77422, 'seventy-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(917, 62537, 'sixty-two thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(918, 82323, 'eighty-two thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(919, 79842, 'seventy-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(920, 84346, 'eighty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(921, 43102, 'forty-three thousand one hundred two');\nINSERT INTO t2 VALUES(922, 88617, 'eighty-eight thousand six hundred seventeen');\nINSERT INTO t2 VALUES(923, 53762, 'fifty-three thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(924, 46121, 'forty-six thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(925, 41029, 'forty-one thousand twenty-nine');\nINSERT INTO t2 VALUES(926, 39186, 'thirty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(927, 50573, 'fifty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(928, 13263, 'thirteen thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(929, 2703, 'two thousand seven hundred three');\nINSERT INTO t2 VALUES(930, 34926, 'thirty-four thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(931, 46293, 'forty-six thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(932, 64806, 'sixty-four thousand eight hundred six');\nINSERT INTO t2 VALUES(933, 97369, 'ninety-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(934, 61719, 'sixty-one thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(935, 6760, 'six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(936, 77065, 'seventy-seven thousand sixty-five');\nINSERT INTO t2 VALUES(937, 32514, 'thirty-two thousand five hundred fourteen');\nINSERT INTO t2 VALUES(938, 33417, 'thirty-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(939, 59607, 'fifty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(940, 26987, 'twenty-six thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(941, 78753, 'seventy-eight thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(942, 15316, 'fifteen thousand three hundred sixteen');\nINSERT INTO t2 VALUES(943, 27249, 'twenty-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(944, 33011, 'thirty-three thousand eleven');\nINSERT INTO t2 VALUES(945, 30349, 'thirty thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(946, 16474, 'sixteen thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(947, 91550, 'ninety-one thousand five hundred fifty');\nINSERT INTO t2 VALUES(948, 7229, 'seven thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(949, 55591, 'fifty-five thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(950, 6494, 'six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(951, 61726, 'sixty-one thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(952, 43401, 'forty-three thousand four hundred one');\nINSERT INTO t2 VALUES(953, 35417, 'thirty-five thousand four hundred seventeen');\nINSERT INTO t2 VALUES(954, 81064, 'eighty-one thousand sixty-four');\nINSERT INTO t2 VALUES(955, 98029, 'ninety-eight thousand twenty-nine');\nINSERT INTO t2 VALUES(956, 99459, 'ninety-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(957, 47659, 'forty-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(958, 90562, 'ninety thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(959, 98996, 'ninety-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(960, 36814, 'thirty-six thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(961, 41743, 'forty-one thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(962, 49352, 'forty-nine thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(963, 2867, 'two thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(964, 77404, 'seventy-seven thousand four hundred four');\nINSERT INTO t2 VALUES(965, 52039, 'fifty-two thousand thirty-nine');\nINSERT INTO t2 VALUES(966, 50787, 'fifty thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(967, 72745, 'seventy-two thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(968, 38373, 'thirty-eight thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(969, 9880, 'nine thousand eight hundred eighty');\nINSERT INTO t2 VALUES(970, 23368, 'twenty-three thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(971, 21878, 'twenty-one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(972, 24879, 'twenty-four thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(973, 85139, 'eighty-five thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(974, 92663, 'ninety-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(975, 80314, 'eighty thousand three hundred fourteen');\nINSERT INTO t2 VALUES(976, 68791, 'sixty-eight thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(977, 86587, 'eighty-six thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(978, 84276, 'eighty-four thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(979, 2611, 'two thousand six hundred eleven');\nINSERT INTO t2 VALUES(980, 51394, 'fifty-one thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(981, 41718, 'forty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(982, 74790, 'seventy-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(983, 3722, 'three thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(984, 51099, 'fifty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(985, 43465, 'forty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(986, 80609, 'eighty thousand six hundred nine');\nINSERT INTO t2 VALUES(987, 10740, 'ten thousand seven hundred forty');\nINSERT INTO t2 VALUES(988, 46965, 'forty-six thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(989, 69448, 'sixty-nine thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(990, 7629, 'seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(991, 32001, 'thirty-two thousand one');\nINSERT INTO t2 VALUES(992, 97403, 'ninety-seven thousand four hundred three');\nINSERT INTO t2 VALUES(993, 38424, 'thirty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(994, 91197, 'ninety-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(995, 18954, 'eighteen thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(996, 63716, 'sixty-three thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(997, 47127, 'forty-seven thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(998, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(999, 73385, 'seventy-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(1000, 22356, 'twenty-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(1001, 55538, 'fifty-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(1002, 81376, 'eighty-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1003, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t2 VALUES(1004, 49542, 'forty-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(1005, 74987, 'seventy-four thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(1006, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(1007, 62298, 'sixty-two thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(1008, 93119, 'ninety-three thousand one hundred nineteen');\nINSERT INTO t2 VALUES(1009, 37378, 'thirty-seven thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(1010, 80392, 'eighty thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(1011, 47524, 'forty-seven thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(1012, 68714, 'sixty-eight thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(1013, 95384, 'ninety-five thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(1014, 79821, 'seventy-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(1015, 65915, 'sixty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(1016, 89567, 'eighty-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(1017, 6173, 'six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(1018, 78190, 'seventy-eight thousand one hundred ninety');\nINSERT INTO t2 VALUES(1019, 49620, 'forty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(1020, 314, 'three hundred fourteen');\nINSERT INTO t2 VALUES(1021, 77071, 'seventy-seven thousand seventy-one');\nINSERT INTO t2 VALUES(1022, 34897, 'thirty-four thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(1023, 50194, 'fifty thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(1024, 3962, 'three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(1025, 12995, 'twelve thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(1026, 16574, 'sixteen thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(1027, 13011, 'thirteen thousand eleven');\nINSERT INTO t2 VALUES(1028, 26129, 'twenty-six thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(1029, 25946, 'twenty-five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(1030, 48646, 'forty-eight thousand six hundred forty-six');\nINSERT INTO t2 VALUES(1031, 12877, 'twelve thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(1032, 54792, 'fifty-four thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(1033, 16323, 'sixteen thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(1034, 96597, 'ninety-six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(1035, 12817, 'twelve thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(1036, 17757, 'seventeen thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(1037, 20670, 'twenty thousand six hundred seventy');\nINSERT INTO t2 VALUES(1038, 43032, 'forty-three thousand thirty-two');\nINSERT INTO t2 VALUES(1039, 20753, 'twenty thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(1040, 34704, 'thirty-four thousand seven hundred four');\nINSERT INTO t2 VALUES(1041, 59068, 'fifty-nine thousand sixty-eight');\nINSERT INTO t2 VALUES(1042, 92839, 'ninety-two thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(1043, 63337, 'sixty-three thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(1044, 13702, 'thirteen thousand seven hundred two');\nINSERT INTO t2 VALUES(1045, 8161, 'eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(1046, 36141, 'thirty-six thousand one hundred forty-one');\nINSERT INTO t2 VALUES(1047, 74493, 'seventy-four thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(1048, 93265, 'ninety-three thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1049, 40870, 'forty thousand eight hundred seventy');\nINSERT INTO t2 VALUES(1050, 90720, 'ninety thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1051, 37822, 'thirty-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(1052, 37372, 'thirty-seven thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(1053, 83340, 'eighty-three thousand three hundred forty');\nINSERT INTO t2 VALUES(1054, 65993, 'sixty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(1055, 63063, 'sixty-three thousand sixty-three');\nINSERT INTO t2 VALUES(1056, 96964, 'ninety-six thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(1057, 12363, 'twelve thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(1058, 76130, 'seventy-six thousand one hundred thirty');\nINSERT INTO t2 VALUES(1059, 74871, 'seventy-four thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(1060, 72127, 'seventy-two thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(1061, 58419, 'fifty-eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(1062, 55160, 'fifty-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(1063, 12066, 'twelve thousand sixty-six');\nINSERT INTO t2 VALUES(1064, 60646, 'sixty thousand six hundred forty-six');\nINSERT INTO t2 VALUES(1065, 38295, 'thirty-eight thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(1066, 89409, 'eighty-nine thousand four hundred nine');\nINSERT INTO t2 VALUES(1067, 65373, 'sixty-five thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(1068, 30345, 'thirty thousand three hundred forty-five');\nINSERT INTO t2 VALUES(1069, 2527, 'two thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(1070, 19833, 'nineteen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(1071, 22166, 'twenty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(1072, 45403, 'forty-five thousand four hundred three');\nINSERT INTO t2 VALUES(1073, 13171, 'thirteen thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(1074, 36873, 'thirty-six thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(1075, 50278, 'fifty thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(1076, 61903, 'sixty-one thousand nine hundred three');\nINSERT INTO t2 VALUES(1077, 9080, 'nine thousand eighty');\nINSERT INTO t2 VALUES(1078, 27901, 'twenty-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(1079, 49117, 'forty-nine thousand one hundred seventeen');\nINSERT INTO t2 VALUES(1080, 22201, 'twenty-two thousand two hundred one');\nINSERT INTO t2 VALUES(1081, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(1082, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t2 VALUES(1083, 86819, 'eighty-six thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(1084, 46365, 'forty-six thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(1085, 78771, 'seventy-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(1086, 17448, 'seventeen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(1087, 31391, 'thirty-one thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(1088, 29459, 'twenty-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(1089, 71702, 'seventy-one thousand seven hundred two');\nINSERT INTO t2 VALUES(1090, 61800, 'sixty-one thousand eight hundred');\nINSERT INTO t2 VALUES(1091, 63785, 'sixty-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(1092, 77760, 'seventy-seven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(1093, 41542, 'forty-one thousand five hundred forty-two');\nINSERT INTO t2 VALUES(1094, 90620, 'ninety thousand six hundred twenty');\nINSERT INTO t2 VALUES(1095, 28478, 'twenty-eight thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(1096, 91651, 'ninety-one thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(1097, 65602, 'sixty-five thousand six hundred two');\nINSERT INTO t2 VALUES(1098, 78515, 'seventy-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(1099, 88720, 'eighty-eight thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1100, 28984, 'twenty-eight thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(1101, 1688, 'one thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1102, 12137, 'twelve thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(1103, 5562, 'five thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(1104, 79483, 'seventy-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(1105, 82573, 'eighty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(1106, 9763, 'nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(1107, 32211, 'thirty-two thousand two hundred eleven');\nINSERT INTO t2 VALUES(1108, 4207, 'four thousand two hundred seven');\nINSERT INTO t2 VALUES(1109, 81396, 'eighty-one thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(1110, 43204, 'forty-three thousand two hundred four');\nINSERT INTO t2 VALUES(1111, 44071, 'forty-four thousand seventy-one');\nINSERT INTO t2 VALUES(1112, 43680, 'forty-three thousand six hundred eighty');\nINSERT INTO t2 VALUES(1113, 17553, 'seventeen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(1114, 8265, 'eight thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1115, 77411, 'seventy-seven thousand four hundred eleven');\nINSERT INTO t2 VALUES(1116, 40530, 'forty thousand five hundred thirty');\nINSERT INTO t2 VALUES(1117, 38298, 'thirty-eight thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(1118, 77618, 'seventy-seven thousand six hundred eighteen');\nINSERT INTO t2 VALUES(1119, 78116, 'seventy-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(1120, 71376, 'seventy-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1121, 24103, 'twenty-four thousand one hundred three');\nINSERT INTO t2 VALUES(1122, 54423, 'fifty-four thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(1123, 68801, 'sixty-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(1124, 15256, 'fifteen thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(1125, 20268, 'twenty thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(1126, 16855, 'sixteen thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(1127, 70035, 'seventy thousand thirty-five');\nINSERT INTO t2 VALUES(1128, 89172, 'eighty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(1129, 98060, 'ninety-eight thousand sixty');\nINSERT INTO t2 VALUES(1130, 54557, 'fifty-four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(1131, 68504, 'sixty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(1132, 55531, 'fifty-five thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(1133, 50161, 'fifty thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(1134, 97767, 'ninety-seven thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(1135, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t2 VALUES(1136, 43320, 'forty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(1137, 49341, 'forty-nine thousand three hundred forty-one');\nINSERT INTO t2 VALUES(1138, 97800, 'ninety-seven thousand eight hundred');\nINSERT INTO t2 VALUES(1139, 12026, 'twelve thousand twenty-six');\nINSERT INTO t2 VALUES(1140, 40365, 'forty thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(1141, 78130, 'seventy-eight thousand one hundred thirty');\nINSERT INTO t2 VALUES(1142, 71407, 'seventy-one thousand four hundred seven');\nINSERT INTO t2 VALUES(1143, 88110, 'eighty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(1144, 70075, 'seventy thousand seventy-five');\nINSERT INTO t2 VALUES(1145, 39803, 'thirty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(1146, 36025, 'thirty-six thousand twenty-five');\nINSERT INTO t2 VALUES(1147, 95120, 'ninety-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(1148, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t2 VALUES(1149, 96036, 'ninety-six thousand thirty-six');\nINSERT INTO t2 VALUES(1150, 63963, 'sixty-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(1151, 94898, 'ninety-four thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(1152, 49063, 'forty-nine thousand sixty-three');\nINSERT INTO t2 VALUES(1153, 33733, 'thirty-three thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(1154, 584, 'five hundred eighty-four');\nINSERT INTO t2 VALUES(1155, 6973, 'six thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1156, 70539, 'seventy thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(1157, 56452, 'fifty-six thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(1158, 5590, 'five thousand five hundred ninety');\nINSERT INTO t2 VALUES(1159, 15730, 'fifteen thousand seven hundred thirty');\nINSERT INTO t2 VALUES(1160, 77308, 'seventy-seven thousand three hundred eight');\nINSERT INTO t2 VALUES(1161, 86753, 'eighty-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(1162, 38210, 'thirty-eight thousand two hundred ten');\nINSERT INTO t2 VALUES(1163, 77635, 'seventy-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(1164, 14535, 'fourteen thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(1165, 68957, 'sixty-eight thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(1166, 19623, 'nineteen thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(1167, 5643, 'five thousand six hundred forty-three');\nINSERT INTO t2 VALUES(1168, 77798, 'seventy-seven thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(1169, 69501, 'sixty-nine thousand five hundred one');\nINSERT INTO t2 VALUES(1170, 61192, 'sixty-one thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(1171, 83736, 'eighty-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(1172, 82633, 'eighty-two thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(1173, 50539, 'fifty thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(1174, 87416, 'eighty-seven thousand four hundred sixteen');\nINSERT INTO t2 VALUES(1175, 56737, 'fifty-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(1176, 33997, 'thirty-three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(1177, 37921, 'thirty-seven thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(1178, 10244, 'ten thousand two hundred forty-four');\nINSERT INTO t2 VALUES(1179, 9407, 'nine thousand four hundred seven');\nINSERT INTO t2 VALUES(1180, 70784, 'seventy thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1181, 47705, 'forty-seven thousand seven hundred five');\nINSERT INTO t2 VALUES(1182, 20852, 'twenty thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(1183, 78176, 'seventy-eight thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(1184, 32410, 'thirty-two thousand four hundred ten');\nINSERT INTO t2 VALUES(1185, 39737, 'thirty-nine thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(1186, 5142, 'five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(1187, 35867, 'thirty-five thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(1188, 52773, 'fifty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(1189, 29699, 'twenty-nine thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(1190, 38185, 'thirty-eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(1191, 17648, 'seventeen thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(1192, 31242, 'thirty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(1193, 61161, 'sixty-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(1194, 1135, 'one thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(1195, 61402, 'sixty-one thousand four hundred two');\nINSERT INTO t2 VALUES(1196, 44607, 'forty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(1197, 66253, 'sixty-six thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(1198, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(1199, 81819, 'eighty-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(1200, 56896, 'fifty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(1201, 24164, 'twenty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(1202, 15088, 'fifteen thousand eighty-eight');\nINSERT INTO t2 VALUES(1203, 52962, 'fifty-two thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(1204, 200, 'two hundred');\nINSERT INTO t2 VALUES(1205, 26958, 'twenty-six thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(1206, 91112, 'ninety-one thousand one hundred twelve');\nINSERT INTO t2 VALUES(1207, 48779, 'forty-eight thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(1208, 55622, 'fifty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(1209, 34562, 'thirty-four thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(1210, 88798, 'eighty-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(1211, 84915, 'eighty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(1212, 33609, 'thirty-three thousand six hundred nine');\nINSERT INTO t2 VALUES(1213, 37211, 'thirty-seven thousand two hundred eleven');\nINSERT INTO t2 VALUES(1214, 55843, 'fifty-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(1215, 53764, 'fifty-three thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(1216, 88733, 'eighty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(1217, 5799, 'five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(1218, 92517, 'ninety-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(1219, 91708, 'ninety-one thousand seven hundred eight');\nINSERT INTO t2 VALUES(1220, 19304, 'nineteen thousand three hundred four');\nINSERT INTO t2 VALUES(1221, 5130, 'five thousand one hundred thirty');\nINSERT INTO t2 VALUES(1222, 20649, 'twenty thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(1223, 56010, 'fifty-six thousand ten');\nINSERT INTO t2 VALUES(1224, 61798, 'sixty-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(1225, 65913, 'sixty-five thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(1226, 81863, 'eighty-one thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(1227, 43903, 'forty-three thousand nine hundred three');\nINSERT INTO t2 VALUES(1228, 2201, 'two thousand two hundred one');\nINSERT INTO t2 VALUES(1229, 74772, 'seventy-four thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(1230, 60641, 'sixty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(1231, 59217, 'fifty-nine thousand two hundred seventeen');\nINSERT INTO t2 VALUES(1232, 47443, 'forty-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(1233, 62292, 'sixty-two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(1234, 51084, 'fifty-one thousand eighty-four');\nINSERT INTO t2 VALUES(1235, 34890, 'thirty-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(1236, 66948, 'sixty-six thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(1237, 7314, 'seven thousand three hundred fourteen');\nINSERT INTO t2 VALUES(1238, 7328, 'seven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(1239, 50586, 'fifty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(1240, 81060, 'eighty-one thousand sixty');\nINSERT INTO t2 VALUES(1241, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(1242, 80152, 'eighty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(1243, 89587, 'eighty-nine thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(1244, 83826, 'eighty-three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(1245, 64098, 'sixty-four thousand ninety-eight');\nINSERT INTO t2 VALUES(1246, 77926, 'seventy-seven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(1247, 47897, 'forty-seven thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(1248, 98123, 'ninety-eight thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(1249, 33848, 'thirty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(1250, 35650, 'thirty-five thousand six hundred fifty');\nINSERT INTO t2 VALUES(1251, 3746, 'three thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(1252, 23209, 'twenty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(1253, 92159, 'ninety-two thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(1254, 16517, 'sixteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(1255, 51307, 'fifty-one thousand three hundred seven');\nINSERT INTO t2 VALUES(1256, 52257, 'fifty-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(1257, 35091, 'thirty-five thousand ninety-one');\nINSERT INTO t2 VALUES(1258, 75176, 'seventy-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(1259, 13954, 'thirteen thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1260, 25101, 'twenty-five thousand one hundred one');\nINSERT INTO t2 VALUES(1261, 36297, 'thirty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(1262, 6364, 'six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(1263, 2388, 'two thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(1264, 30295, 'thirty thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(1265, 42865, 'forty-two thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1266, 9279, 'nine thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(1267, 60930, 'sixty thousand nine hundred thirty');\nINSERT INTO t2 VALUES(1268, 36524, 'thirty-six thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(1269, 24362, 'twenty-four thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(1270, 17401, 'seventeen thousand four hundred one');\nINSERT INTO t2 VALUES(1271, 71411, 'seventy-one thousand four hundred eleven');\nINSERT INTO t2 VALUES(1272, 31655, 'thirty-one thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(1273, 5122, 'five thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(1274, 52284, 'fifty-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(1275, 19329, 'nineteen thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(1276, 13660, 'thirteen thousand six hundred sixty');\nINSERT INTO t2 VALUES(1277, 1131, 'one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(1278, 25081, 'twenty-five thousand eighty-one');\nINSERT INTO t2 VALUES(1279, 55153, 'fifty-five thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(1280, 8973, 'eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1281, 58069, 'fifty-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(1282, 79100, 'seventy-nine thousand one hundred');\nINSERT INTO t2 VALUES(1283, 48768, 'forty-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(1284, 60150, 'sixty thousand one hundred fifty');\nINSERT INTO t2 VALUES(1285, 66552, 'sixty-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(1286, 23579, 'twenty-three thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(1287, 18058, 'eighteen thousand fifty-eight');\nINSERT INTO t2 VALUES(1288, 61810, 'sixty-one thousand eight hundred ten');\nINSERT INTO t2 VALUES(1289, 75622, 'seventy-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(1290, 5557, 'five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(1291, 90854, 'ninety thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(1292, 87039, 'eighty-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(1293, 8757, 'eight thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(1294, 76493, 'seventy-six thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(1295, 33508, 'thirty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(1296, 15425, 'fifteen thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(1297, 10447, 'ten thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(1298, 93718, 'ninety-three thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(1299, 60922, 'sixty thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(1300, 11712, 'eleven thousand seven hundred twelve');\nINSERT INTO t2 VALUES(1301, 56828, 'fifty-six thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(1302, 91211, 'ninety-one thousand two hundred eleven');\nINSERT INTO t2 VALUES(1303, 3637, 'three thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(1304, 8958, 'eight thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(1305, 88592, 'eighty-eight thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(1306, 7217, 'seven thousand two hundred seventeen');\nINSERT INTO t2 VALUES(1307, 58735, 'fifty-eight thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(1308, 95778, 'ninety-five thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(1309, 48851, 'forty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(1310, 69104, 'sixty-nine thousand one hundred four');\nINSERT INTO t2 VALUES(1311, 41151, 'forty-one thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1312, 92769, 'ninety-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(1313, 23517, 'twenty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(1314, 3893, 'three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(1315, 60575, 'sixty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(1316, 7296, 'seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(1317, 70279, 'seventy thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(1318, 49134, 'forty-nine thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(1319, 72590, 'seventy-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(1320, 81718, 'eighty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(1321, 94520, 'ninety-four thousand five hundred twenty');\nINSERT INTO t2 VALUES(1322, 90116, 'ninety thousand one hundred sixteen');\nINSERT INTO t2 VALUES(1323, 21056, 'twenty-one thousand fifty-six');\nINSERT INTO t2 VALUES(1324, 97610, 'ninety-seven thousand six hundred ten');\nINSERT INTO t2 VALUES(1325, 2826, 'two thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(1326, 14063, 'fourteen thousand sixty-three');\nINSERT INTO t2 VALUES(1327, 6031, 'six thousand thirty-one');\nINSERT INTO t2 VALUES(1328, 65228, 'sixty-five thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(1329, 83287, 'eighty-three thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(1330, 11688, 'eleven thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1331, 75854, 'seventy-five thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(1332, 4682, 'four thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(1333, 26055, 'twenty-six thousand fifty-five');\nINSERT INTO t2 VALUES(1334, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(1335, 92308, 'ninety-two thousand three hundred eight');\nINSERT INTO t2 VALUES(1336, 21226, 'twenty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(1337, 67369, 'sixty-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(1338, 59051, 'fifty-nine thousand fifty-one');\nINSERT INTO t2 VALUES(1339, 69586, 'sixty-nine thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(1340, 74749, 'seventy-four thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(1341, 93121, 'ninety-three thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(1342, 16000, 'sixteen thousand');\nINSERT INTO t2 VALUES(1343, 44870, 'forty-four thousand eight hundred seventy');\nINSERT INTO t2 VALUES(1344, 5040, 'five thousand forty');\nINSERT INTO t2 VALUES(1345, 33434, 'thirty-three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(1346, 47321, 'forty-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(1347, 55639, 'fifty-five thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(1348, 22157, 'twenty-two thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(1349, 17189, 'seventeen thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1350, 77408, 'seventy-seven thousand four hundred eight');\nINSERT INTO t2 VALUES(1351, 41344, 'forty-one thousand three hundred forty-four');\nINSERT INTO t2 VALUES(1352, 67958, 'sixty-seven thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(1353, 48189, 'forty-eight thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1354, 6938, 'six thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(1355, 36616, 'thirty-six thousand six hundred sixteen');\nINSERT INTO t2 VALUES(1356, 23947, 'twenty-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(1357, 16580, 'sixteen thousand five hundred eighty');\nINSERT INTO t2 VALUES(1358, 33653, 'thirty-three thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(1359, 86494, 'eighty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1360, 8035, 'eight thousand thirty-five');\nINSERT INTO t2 VALUES(1361, 81163, 'eighty-one thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(1362, 39688, 'thirty-nine thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1363, 23191, 'twenty-three thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(1364, 30756, 'thirty thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(1365, 60955, 'sixty thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(1366, 37666, 'thirty-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(1367, 32124, 'thirty-two thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(1368, 37601, 'thirty-seven thousand six hundred one');\nINSERT INTO t2 VALUES(1369, 31697, 'thirty-one thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(1370, 70414, 'seventy thousand four hundred fourteen');\nINSERT INTO t2 VALUES(1371, 83186, 'eighty-three thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(1372, 43212, 'forty-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(1373, 43706, 'forty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(1374, 74425, 'seventy-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(1375, 30805, 'thirty thousand eight hundred five');\nINSERT INTO t2 VALUES(1376, 50862, 'fifty thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(1377, 78835, 'seventy-eight thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(1378, 13974, 'thirteen thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(1379, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(1380, 83685, 'eighty-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(1381, 42925, 'forty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(1382, 52684, 'fifty-two thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(1383, 51846, 'fifty-one thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(1384, 54278, 'fifty-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(1385, 15094, 'fifteen thousand ninety-four');\nINSERT INTO t2 VALUES(1386, 10119, 'ten thousand one hundred nineteen');\nINSERT INTO t2 VALUES(1387, 65471, 'sixty-five thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(1388, 94045, 'ninety-four thousand forty-five');\nINSERT INTO t2 VALUES(1389, 64522, 'sixty-four thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(1390, 16108, 'sixteen thousand one hundred eight');\nINSERT INTO t2 VALUES(1391, 98475, 'ninety-eight thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(1392, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(1393, 85081, 'eighty-five thousand eighty-one');\nINSERT INTO t2 VALUES(1394, 18339, 'eighteen thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(1395, 55412, 'fifty-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(1396, 67410, 'sixty-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(1397, 59049, 'fifty-nine thousand forty-nine');\nINSERT INTO t2 VALUES(1398, 42667, 'forty-two thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(1399, 81480, 'eighty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(1400, 44376, 'forty-four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1401, 17086, 'seventeen thousand eighty-six');\nINSERT INTO t2 VALUES(1402, 42743, 'forty-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(1403, 82977, 'eighty-two thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(1404, 89291, 'eighty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(1405, 91647, 'ninety-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(1406, 42961, 'forty-two thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(1407, 93206, 'ninety-three thousand two hundred six');\nINSERT INTO t2 VALUES(1408, 2809, 'two thousand eight hundred nine');\nINSERT INTO t2 VALUES(1409, 33098, 'thirty-three thousand ninety-eight');\nINSERT INTO t2 VALUES(1410, 4394, 'four thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(1411, 27538, 'twenty-seven thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(1412, 70688, 'seventy thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1413, 1847, 'one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(1414, 64114, 'sixty-four thousand one hundred fourteen');\nINSERT INTO t2 VALUES(1415, 23317, 'twenty-three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(1416, 74072, 'seventy-four thousand seventy-two');\nINSERT INTO t2 VALUES(1417, 43940, 'forty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(1418, 81265, 'eighty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1419, 23520, 'twenty-three thousand five hundred twenty');\nINSERT INTO t2 VALUES(1420, 42393, 'forty-two thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(1421, 69297, 'sixty-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(1422, 30522, 'thirty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(1423, 19990, 'nineteen thousand nine hundred ninety');\nINSERT INTO t2 VALUES(1424, 21630, 'twenty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(1425, 27250, 'twenty-seven thousand two hundred fifty');\nINSERT INTO t2 VALUES(1426, 30634, 'thirty thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(1427, 40678, 'forty thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(1428, 7137, 'seven thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(1429, 31894, 'thirty-one thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(1430, 33397, 'thirty-three thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(1431, 82540, 'eighty-two thousand five hundred forty');\nINSERT INTO t2 VALUES(1432, 58521, 'fifty-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(1433, 86494, 'eighty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1434, 21138, 'twenty-one thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(1435, 4279, 'four thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(1436, 87476, 'eighty-seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(1437, 2346, 'two thousand three hundred forty-six');\nINSERT INTO t2 VALUES(1438, 55613, 'fifty-five thousand six hundred thirteen');\nINSERT INTO t2 VALUES(1439, 62273, 'sixty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(1440, 89495, 'eighty-nine thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(1441, 36912, 'thirty-six thousand nine hundred twelve');\nINSERT INTO t2 VALUES(1442, 97370, 'ninety-seven thousand three hundred seventy');\nINSERT INTO t2 VALUES(1443, 99718, 'ninety-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(1444, 22755, 'twenty-two thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(1445, 25884, 'twenty-five thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(1446, 60650, 'sixty thousand six hundred fifty');\nINSERT INTO t2 VALUES(1447, 63431, 'sixty-three thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(1448, 99037, 'ninety-nine thousand thirty-seven');\nINSERT INTO t2 VALUES(1449, 46683, 'forty-six thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(1450, 18230, 'eighteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(1451, 6169, 'six thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(1452, 93756, 'ninety-three thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(1453, 82602, 'eighty-two thousand six hundred two');\nINSERT INTO t2 VALUES(1454, 91464, 'ninety-one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(1455, 6999, 'six thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(1456, 62243, 'sixty-two thousand two hundred forty-three');\nINSERT INTO t2 VALUES(1457, 76853, 'seventy-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(1458, 34140, 'thirty-four thousand one hundred forty');\nINSERT INTO t2 VALUES(1459, 66544, 'sixty-six thousand five hundred forty-four');\nINSERT INTO t2 VALUES(1460, 28978, 'twenty-eight thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(1461, 60082, 'sixty thousand eighty-two');\nINSERT INTO t2 VALUES(1462, 3594, 'three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(1463, 98376, 'ninety-eight thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1464, 74838, 'seventy-four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(1465, 67943, 'sixty-seven thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(1466, 46797, 'forty-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(1467, 65802, 'sixty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(1468, 16924, 'sixteen thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(1469, 20053, 'twenty thousand fifty-three');\nINSERT INTO t2 VALUES(1470, 79931, 'seventy-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(1471, 49998, 'forty-nine thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(1472, 14258, 'fourteen thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(1473, 51696, 'fifty-one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(1474, 87223, 'eighty-seven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(1475, 55248, 'fifty-five thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(1476, 40943, 'forty thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(1477, 70434, 'seventy thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(1478, 80312, 'eighty thousand three hundred twelve');\nINSERT INTO t2 VALUES(1479, 69166, 'sixty-nine thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(1480, 30197, 'thirty thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(1481, 25526, 'twenty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(1482, 20189, 'twenty thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1483, 32036, 'thirty-two thousand thirty-six');\nINSERT INTO t2 VALUES(1484, 86152, 'eighty-six thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(1485, 35840, 'thirty-five thousand eight hundred forty');\nINSERT INTO t2 VALUES(1486, 3784, 'three thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1487, 30652, 'thirty thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(1488, 76979, 'seventy-six thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(1489, 51493, 'fifty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(1490, 78349, 'seventy-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(1491, 99378, 'ninety-nine thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(1492, 9773, 'nine thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(1493, 15186, 'fifteen thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(1494, 47773, 'forty-seven thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(1495, 56151, 'fifty-six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1496, 15131, 'fifteen thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(1497, 84587, 'eighty-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(1498, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(1499, 32783, 'thirty-two thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(1500, 52117, 'fifty-two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(1501, 72385, 'seventy-two thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(1502, 583, 'five hundred eighty-three');\nINSERT INTO t2 VALUES(1503, 46991, 'forty-six thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(1504, 70432, 'seventy thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(1505, 29874, 'twenty-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(1506, 80205, 'eighty thousand two hundred five');\nINSERT INTO t2 VALUES(1507, 74951, 'seventy-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(1508, 20681, 'twenty thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(1509, 8802, 'eight thousand eight hundred two');\nINSERT INTO t2 VALUES(1510, 56901, 'fifty-six thousand nine hundred one');\nINSERT INTO t2 VALUES(1511, 78776, 'seventy-eight thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(1512, 61720, 'sixty-one thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1513, 46839, 'forty-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(1514, 60429, 'sixty thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(1515, 6138, 'six thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(1516, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(1517, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(1518, 9480, 'nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(1519, 22985, 'twenty-two thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(1520, 66863, 'sixty-six thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(1521, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t2 VALUES(1522, 86911, 'eighty-six thousand nine hundred eleven');\nINSERT INTO t2 VALUES(1523, 23221, 'twenty-three thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(1524, 96124, 'ninety-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(1525, 13993, 'thirteen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(1526, 97899, 'ninety-seven thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(1527, 15403, 'fifteen thousand four hundred three');\nINSERT INTO t2 VALUES(1528, 36095, 'thirty-six thousand ninety-five');\nINSERT INTO t2 VALUES(1529, 42817, 'forty-two thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(1530, 42984, 'forty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(1531, 68757, 'sixty-eight thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(1532, 55896, 'fifty-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(1533, 53311, 'fifty-three thousand three hundred eleven');\nINSERT INTO t2 VALUES(1534, 30057, 'thirty thousand fifty-seven');\nINSERT INTO t2 VALUES(1535, 703, 'seven hundred three');\nINSERT INTO t2 VALUES(1536, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t2 VALUES(1537, 3513, 'three thousand five hundred thirteen');\nINSERT INTO t2 VALUES(1538, 96348, 'ninety-six thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(1539, 90443, 'ninety thousand four hundred forty-three');\nINSERT INTO t2 VALUES(1540, 98539, 'ninety-eight thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(1541, 34909, 'thirty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(1542, 10888, 'ten thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(1543, 22597, 'twenty-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(1544, 72622, 'seventy-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(1545, 8099, 'eight thousand ninety-nine');\nINSERT INTO t2 VALUES(1546, 8945, 'eight thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(1547, 85120, 'eighty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(1548, 3750, 'three thousand seven hundred fifty');\nINSERT INTO t2 VALUES(1549, 98350, 'ninety-eight thousand three hundred fifty');\nINSERT INTO t2 VALUES(1550, 50321, 'fifty thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(1551, 20989, 'twenty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(1552, 74006, 'seventy-four thousand six');\nINSERT INTO t2 VALUES(1553, 53809, 'fifty-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(1554, 95808, 'ninety-five thousand eight hundred eight');\nINSERT INTO t2 VALUES(1555, 19023, 'nineteen thousand twenty-three');\nINSERT INTO t2 VALUES(1556, 94637, 'ninety-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(1557, 34282, 'thirty-four thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(1558, 76004, 'seventy-six thousand four');\nINSERT INTO t2 VALUES(1559, 41024, 'forty-one thousand twenty-four');\nINSERT INTO t2 VALUES(1560, 83730, 'eighty-three thousand seven hundred thirty');\nINSERT INTO t2 VALUES(1561, 42788, 'forty-two thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(1562, 98008, 'ninety-eight thousand eight');\nINSERT INTO t2 VALUES(1563, 81276, 'eighty-one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(1564, 46661, 'forty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(1565, 41606, 'forty-one thousand six hundred six');\nINSERT INTO t2 VALUES(1566, 71937, 'seventy-one thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(1567, 64977, 'sixty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(1568, 717, 'seven hundred seventeen');\nINSERT INTO t2 VALUES(1569, 79266, 'seventy-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(1570, 2784, 'two thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1571, 64149, 'sixty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(1572, 46225, 'forty-six thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(1573, 54485, 'fifty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(1574, 834, 'eight hundred thirty-four');\nINSERT INTO t2 VALUES(1575, 87256, 'eighty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(1576, 50253, 'fifty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(1577, 8079, 'eight thousand seventy-nine');\nINSERT INTO t2 VALUES(1578, 13348, 'thirteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(1579, 96299, 'ninety-six thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(1580, 11791, 'eleven thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(1581, 52010, 'fifty-two thousand ten');\nINSERT INTO t2 VALUES(1582, 75972, 'seventy-five thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(1583, 48694, 'forty-eight thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(1584, 47825, 'forty-seven thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(1585, 16316, 'sixteen thousand three hundred sixteen');\nINSERT INTO t2 VALUES(1586, 36091, 'thirty-six thousand ninety-one');\nINSERT INTO t2 VALUES(1587, 12935, 'twelve thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(1588, 73502, 'seventy-three thousand five hundred two');\nINSERT INTO t2 VALUES(1589, 95386, 'ninety-five thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(1590, 40717, 'forty thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(1591, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(1592, 13031, 'thirteen thousand thirty-one');\nINSERT INTO t2 VALUES(1593, 20833, 'twenty thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(1594, 42830, 'forty-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(1595, 48552, 'forty-eight thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(1596, 25080, 'twenty-five thousand eighty');\nINSERT INTO t2 VALUES(1597, 82047, 'eighty-two thousand forty-seven');\nINSERT INTO t2 VALUES(1598, 17153, 'seventeen thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(1599, 11760, 'eleven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(1600, 77741, 'seventy-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(1601, 33160, 'thirty-three thousand one hundred sixty');\nINSERT INTO t2 VALUES(1602, 59277, 'fifty-nine thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(1603, 46466, 'forty-six thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(1604, 30377, 'thirty thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(1605, 56, 'fifty-six');\nINSERT INTO t2 VALUES(1606, 7002, 'seven thousand two');\nINSERT INTO t2 VALUES(1607, 42546, 'forty-two thousand five hundred forty-six');\nINSERT INTO t2 VALUES(1608, 74812, 'seventy-four thousand eight hundred twelve');\nINSERT INTO t2 VALUES(1609, 34393, 'thirty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(1610, 17906, 'seventeen thousand nine hundred six');\nINSERT INTO t2 VALUES(1611, 88345, 'eighty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(1612, 89151, 'eighty-nine thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1613, 61801, 'sixty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(1614, 91028, 'ninety-one thousand twenty-eight');\nINSERT INTO t2 VALUES(1615, 21377, 'twenty-one thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(1616, 28960, 'twenty-eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(1617, 19222, 'nineteen thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(1618, 57618, 'fifty-seven thousand six hundred eighteen');\nINSERT INTO t2 VALUES(1619, 76240, 'seventy-six thousand two hundred forty');\nINSERT INTO t2 VALUES(1620, 20780, 'twenty thousand seven hundred eighty');\nINSERT INTO t2 VALUES(1621, 8716, 'eight thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(1622, 46543, 'forty-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(1623, 10892, 'ten thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(1624, 17440, 'seventeen thousand four hundred forty');\nINSERT INTO t2 VALUES(1625, 56921, 'fifty-six thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(1626, 1696, 'one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(1627, 16761, 'sixteen thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(1628, 37810, 'thirty-seven thousand eight hundred ten');\nINSERT INTO t2 VALUES(1629, 44518, 'forty-four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(1630, 67520, 'sixty-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(1631, 40923, 'forty thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(1632, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t2 VALUES(1633, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(1634, 79059, 'seventy-nine thousand fifty-nine');\nINSERT INTO t2 VALUES(1635, 626, 'six hundred twenty-six');\nINSERT INTO t2 VALUES(1636, 80537, 'eighty thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(1637, 83954, 'eighty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1638, 17794, 'seventeen thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(1639, 68525, 'sixty-eight thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(1640, 61471, 'sixty-one thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(1641, 39712, 'thirty-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(1642, 60313, 'sixty thousand three hundred thirteen');\nINSERT INTO t2 VALUES(1643, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(1644, 1376, 'one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(1645, 99046, 'ninety-nine thousand forty-six');\nINSERT INTO t2 VALUES(1646, 50354, 'fifty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(1647, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(1648, 46094, 'forty-six thousand ninety-four');\nINSERT INTO t2 VALUES(1649, 42593, 'forty-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(1650, 98973, 'ninety-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1651, 53889, 'fifty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(1652, 930, 'nine hundred thirty');\nINSERT INTO t2 VALUES(1653, 49895, 'forty-nine thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(1654, 82975, 'eighty-two thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(1655, 7731, 'seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(1656, 12858, 'twelve thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(1657, 26697, 'twenty-six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(1658, 86891, 'eighty-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(1659, 19521, 'nineteen thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(1660, 95678, 'ninety-five thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(1661, 59728, 'fifty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(1662, 68585, 'sixty-eight thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(1663, 75485, 'seventy-five thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(1664, 11566, 'eleven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(1665, 23271, 'twenty-three thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(1666, 9462, 'nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(1667, 8978, 'eight thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(1668, 39776, 'thirty-nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(1669, 19840, 'nineteen thousand eight hundred forty');\nINSERT INTO t2 VALUES(1670, 50040, 'fifty thousand forty');\nINSERT INTO t2 VALUES(1671, 81105, 'eighty-one thousand one hundred five');\nINSERT INTO t2 VALUES(1672, 81690, 'eighty-one thousand six hundred ninety');\nINSERT INTO t2 VALUES(1673, 47205, 'forty-seven thousand two hundred five');\nINSERT INTO t2 VALUES(1674, 26859, 'twenty-six thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(1675, 27273, 'twenty-seven thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(1676, 3770, 'three thousand seven hundred seventy');\nINSERT INTO t2 VALUES(1677, 57118, 'fifty-seven thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1678, 5830, 'five thousand eight hundred thirty');\nINSERT INTO t2 VALUES(1679, 44010, 'forty-four thousand ten');\nINSERT INTO t2 VALUES(1680, 107, 'one hundred seven');\nINSERT INTO t2 VALUES(1681, 54866, 'fifty-four thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(1682, 45623, 'forty-five thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(1683, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(1684, 84644, 'eighty-four thousand six hundred forty-four');\nINSERT INTO t2 VALUES(1685, 81116, 'eighty-one thousand one hundred sixteen');\nINSERT INTO t2 VALUES(1686, 6557, 'six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(1687, 504, 'five hundred four');\nINSERT INTO t2 VALUES(1688, 41242, 'forty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(1689, 40898, 'forty thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(1690, 37987, 'thirty-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(1691, 91906, 'ninety-one thousand nine hundred six');\nINSERT INTO t2 VALUES(1692, 74068, 'seventy-four thousand sixty-eight');\nINSERT INTO t2 VALUES(1693, 47393, 'forty-seven thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(1694, 70527, 'seventy thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(1695, 91711, 'ninety-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(1696, 85846, 'eighty-five thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(1697, 49866, 'forty-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(1698, 78048, 'seventy-eight thousand forty-eight');\nINSERT INTO t2 VALUES(1699, 46897, 'forty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(1700, 43123, 'forty-three thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(1701, 83377, 'eighty-three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(1702, 84298, 'eighty-four thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(1703, 13970, 'thirteen thousand nine hundred seventy');\nINSERT INTO t2 VALUES(1704, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(1705, 67777, 'sixty-seven thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(1706, 616, 'six hundred sixteen');\nINSERT INTO t2 VALUES(1707, 40764, 'forty thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(1708, 85767, 'eighty-five thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(1709, 41836, 'forty-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(1710, 79865, 'seventy-nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1711, 96742, 'ninety-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(1712, 80228, 'eighty thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(1713, 44642, 'forty-four thousand six hundred forty-two');\nINSERT INTO t2 VALUES(1714, 70499, 'seventy thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(1715, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(1716, 84267, 'eighty-four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(1717, 99256, 'ninety-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(1718, 50812, 'fifty thousand eight hundred twelve');\nINSERT INTO t2 VALUES(1719, 30175, 'thirty thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(1720, 94760, 'ninety-four thousand seven hundred sixty');\nINSERT INTO t2 VALUES(1721, 43410, 'forty-three thousand four hundred ten');\nINSERT INTO t2 VALUES(1722, 67951, 'sixty-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(1723, 46523, 'forty-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(1724, 23389, 'twenty-three thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(1725, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t2 VALUES(1726, 45909, 'forty-five thousand nine hundred nine');\nINSERT INTO t2 VALUES(1727, 65009, 'sixty-five thousand nine');\nINSERT INTO t2 VALUES(1728, 8080, 'eight thousand eighty');\nINSERT INTO t2 VALUES(1729, 86931, 'eighty-six thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(1730, 85738, 'eighty-five thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(1731, 16610, 'sixteen thousand six hundred ten');\nINSERT INTO t2 VALUES(1732, 6929, 'six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(1733, 47186, 'forty-seven thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(1734, 91792, 'ninety-one thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(1735, 96935, 'ninety-six thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(1736, 71196, 'seventy-one thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(1737, 23429, 'twenty-three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(1738, 72247, 'seventy-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(1739, 44134, 'forty-four thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(1740, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(1741, 23227, 'twenty-three thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(1742, 6111, 'six thousand one hundred eleven');\nINSERT INTO t2 VALUES(1743, 51254, 'fifty-one thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(1744, 39973, 'thirty-nine thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(1745, 46941, 'forty-six thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(1746, 82749, 'eighty-two thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(1747, 27151, 'twenty-seven thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(1748, 51344, 'fifty-one thousand three hundred forty-four');\nINSERT INTO t2 VALUES(1749, 62547, 'sixty-two thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(1750, 397, 'three hundred ninety-seven');\nINSERT INTO t2 VALUES(1751, 65470, 'sixty-five thousand four hundred seventy');\nINSERT INTO t2 VALUES(1752, 66363, 'sixty-six thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(1753, 40795, 'forty thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(1754, 67431, 'sixty-seven thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(1755, 41954, 'forty-one thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1756, 39502, 'thirty-nine thousand five hundred two');\nINSERT INTO t2 VALUES(1757, 39775, 'thirty-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(1758, 90717, 'ninety thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(1759, 35053, 'thirty-five thousand fifty-three');\nINSERT INTO t2 VALUES(1760, 11842, 'eleven thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(1761, 81134, 'eighty-one thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(1762, 75647, 'seventy-five thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(1763, 48715, 'forty-eight thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(1764, 50246, 'fifty thousand two hundred forty-six');\nINSERT INTO t2 VALUES(1765, 74361, 'seventy-four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(1766, 26463, 'twenty-six thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(1767, 85668, 'eighty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(1768, 65693, 'sixty-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(1769, 62536, 'sixty-two thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(1770, 95905, 'ninety-five thousand nine hundred five');\nINSERT INTO t2 VALUES(1771, 73166, 'seventy-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(1772, 59477, 'fifty-nine thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(1773, 1476, 'one thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(1774, 66052, 'sixty-six thousand fifty-two');\nINSERT INTO t2 VALUES(1775, 62223, 'sixty-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(1776, 22572, 'twenty-two thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(1777, 15621, 'fifteen thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(1778, 92966, 'ninety-two thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(1779, 52093, 'fifty-two thousand ninety-three');\nINSERT INTO t2 VALUES(1780, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(1781, 10448, 'ten thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(1782, 98571, 'ninety-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(1783, 74699, 'seventy-four thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(1784, 98871, 'ninety-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(1785, 94583, 'ninety-four thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(1786, 43498, 'forty-three thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(1787, 23619, 'twenty-three thousand six hundred nineteen');\nINSERT INTO t2 VALUES(1788, 54118, 'fifty-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1789, 16473, 'sixteen thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(1790, 50287, 'fifty thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(1791, 31482, 'thirty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(1792, 17518, 'seventeen thousand five hundred eighteen');\nINSERT INTO t2 VALUES(1793, 67865, 'sixty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1794, 89160, 'eighty-nine thousand one hundred sixty');\nINSERT INTO t2 VALUES(1795, 36122, 'thirty-six thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(1796, 93188, 'ninety-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(1797, 44637, 'forty-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(1798, 89043, 'eighty-nine thousand forty-three');\nINSERT INTO t2 VALUES(1799, 6372, 'six thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(1800, 93720, 'ninety-three thousand seven hundred twenty');\nINSERT INTO t2 VALUES(1801, 29153, 'twenty-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(1802, 50586, 'fifty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(1803, 92688, 'ninety-two thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(1804, 56748, 'fifty-six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(1805, 50236, 'fifty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(1806, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t2 VALUES(1807, 37675, 'thirty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(1808, 84293, 'eighty-four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(1809, 60980, 'sixty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(1810, 60251, 'sixty thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(1811, 59472, 'fifty-nine thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(1812, 64149, 'sixty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(1813, 77768, 'seventy-seven thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(1814, 98618, 'ninety-eight thousand six hundred eighteen');\nINSERT INTO t2 VALUES(1815, 56268, 'fifty-six thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(1816, 62427, 'sixty-two thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(1817, 28993, 'twenty-eight thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(1818, 61428, 'sixty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(1819, 49443, 'forty-nine thousand four hundred forty-three');\nINSERT INTO t2 VALUES(1820, 58730, 'fifty-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(1821, 40898, 'forty thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(1822, 12437, 'twelve thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(1823, 72890, 'seventy-two thousand eight hundred ninety');\nINSERT INTO t2 VALUES(1824, 8711, 'eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(1825, 59677, 'fifty-nine thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(1826, 80103, 'eighty thousand one hundred three');\nINSERT INTO t2 VALUES(1827, 40508, 'forty thousand five hundred eight');\nINSERT INTO t2 VALUES(1828, 97476, 'ninety-seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(1829, 43339, 'forty-three thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(1830, 14865, 'fourteen thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(1831, 81064, 'eighty-one thousand sixty-four');\nINSERT INTO t2 VALUES(1832, 48666, 'forty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(1833, 81245, 'eighty-one thousand two hundred forty-five');\nINSERT INTO t2 VALUES(1834, 74794, 'seventy-four thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(1835, 31588, 'thirty-one thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(1836, 22954, 'twenty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(1837, 39485, 'thirty-nine thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(1838, 51863, 'fifty-one thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(1839, 6271, 'six thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(1840, 58099, 'fifty-eight thousand ninety-nine');\nINSERT INTO t2 VALUES(1841, 47285, 'forty-seven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(1842, 69965, 'sixty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(1843, 69698, 'sixty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(1844, 94547, 'ninety-four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(1845, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(1846, 68855, 'sixty-eight thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(1847, 66926, 'sixty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(1848, 36352, 'thirty-six thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(1849, 81428, 'eighty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(1850, 96278, 'ninety-six thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(1851, 77034, 'seventy-seven thousand thirty-four');\nINSERT INTO t2 VALUES(1852, 63118, 'sixty-three thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1853, 79693, 'seventy-nine thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(1854, 95874, 'ninety-five thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(1855, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(1856, 81843, 'eighty-one thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(1857, 33201, 'thirty-three thousand two hundred one');\nINSERT INTO t2 VALUES(1858, 88509, 'eighty-eight thousand five hundred nine');\nINSERT INTO t2 VALUES(1859, 77410, 'seventy-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(1860, 52629, 'fifty-two thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(1861, 57234, 'fifty-seven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(1862, 11373, 'eleven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(1863, 83775, 'eighty-three thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(1864, 22455, 'twenty-two thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(1865, 99903, 'ninety-nine thousand nine hundred three');\nINSERT INTO t2 VALUES(1866, 67182, 'sixty-seven thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(1867, 79194, 'seventy-nine thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(1868, 38445, 'thirty-eight thousand four hundred forty-five');\nINSERT INTO t2 VALUES(1869, 3916, 'three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(1870, 77123, 'seventy-seven thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(1871, 39560, 'thirty-nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(1872, 72667, 'seventy-two thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(1873, 69460, 'sixty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(1874, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(1875, 54783, 'fifty-four thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(1876, 34851, 'thirty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(1877, 12818, 'twelve thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(1878, 42534, 'forty-two thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(1879, 90531, 'ninety thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(1880, 83545, 'eighty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(1881, 41895, 'forty-one thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(1882, 16357, 'sixteen thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(1883, 48074, 'forty-eight thousand seventy-four');\nINSERT INTO t2 VALUES(1884, 65554, 'sixty-five thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(1885, 19168, 'nineteen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(1886, 20457, 'twenty thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(1887, 67074, 'sixty-seven thousand seventy-four');\nINSERT INTO t2 VALUES(1888, 60826, 'sixty thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(1889, 89749, 'eighty-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(1890, 87651, 'eighty-seven thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(1891, 53525, 'fifty-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(1892, 63667, 'sixty-three thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(1893, 34728, 'thirty-four thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(1894, 30650, 'thirty thousand six hundred fifty');\nINSERT INTO t2 VALUES(1895, 38017, 'thirty-eight thousand seventeen');\nINSERT INTO t2 VALUES(1896, 15204, 'fifteen thousand two hundred four');\nINSERT INTO t2 VALUES(1897, 89639, 'eighty-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(1898, 57891, 'fifty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(1899, 47672, 'forty-seven thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(1900, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(1901, 75875, 'seventy-five thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(1902, 25536, 'twenty-five thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(1903, 39855, 'thirty-nine thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(1904, 36141, 'thirty-six thousand one hundred forty-one');\nINSERT INTO t2 VALUES(1905, 72263, 'seventy-two thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(1906, 61262, 'sixty-one thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(1907, 90989, 'ninety thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(1908, 7384, 'seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(1909, 97486, 'ninety-seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(1910, 63833, 'sixty-three thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(1911, 84418, 'eighty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(1912, 1412, 'one thousand four hundred twelve');\nINSERT INTO t2 VALUES(1913, 70670, 'seventy thousand six hundred seventy');\nINSERT INTO t2 VALUES(1914, 69714, 'sixty-nine thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(1915, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(1916, 78087, 'seventy-eight thousand eighty-seven');\nINSERT INTO t2 VALUES(1917, 63997, 'sixty-three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(1918, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(1919, 20635, 'twenty thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(1920, 83870, 'eighty-three thousand eight hundred seventy');\nINSERT INTO t2 VALUES(1921, 64450, 'sixty-four thousand four hundred fifty');\nINSERT INTO t2 VALUES(1922, 52555, 'fifty-two thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(1923, 82175, 'eighty-two thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(1924, 55189, 'fifty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(1925, 76696, 'seventy-six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(1926, 32209, 'thirty-two thousand two hundred nine');\nINSERT INTO t2 VALUES(1927, 72411, 'seventy-two thousand four hundred eleven');\nINSERT INTO t2 VALUES(1928, 70851, 'seventy thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(1929, 60118, 'sixty thousand one hundred eighteen');\nINSERT INTO t2 VALUES(1930, 2840, 'two thousand eight hundred forty');\nINSERT INTO t2 VALUES(1931, 24262, 'twenty-four thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(1932, 79709, 'seventy-nine thousand seven hundred nine');\nINSERT INTO t2 VALUES(1933, 80918, 'eighty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(1934, 74325, 'seventy-four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(1935, 80878, 'eighty thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(1936, 65269, 'sixty-five thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(1937, 35093, 'thirty-five thousand ninety-three');\nINSERT INTO t2 VALUES(1938, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t2 VALUES(1939, 98306, 'ninety-eight thousand three hundred six');\nINSERT INTO t2 VALUES(1940, 70784, 'seventy thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(1941, 63270, 'sixty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(1942, 30152, 'thirty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(1943, 19394, 'nineteen thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(1944, 55571, 'fifty-five thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(1945, 73532, 'seventy-three thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(1946, 26695, 'twenty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(1947, 51444, 'fifty-one thousand four hundred forty-four');\nINSERT INTO t2 VALUES(1948, 90130, 'ninety thousand one hundred thirty');\nINSERT INTO t2 VALUES(1949, 26980, 'twenty-six thousand nine hundred eighty');\nINSERT INTO t2 VALUES(1950, 80759, 'eighty thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(1951, 35243, 'thirty-five thousand two hundred forty-three');\nINSERT INTO t2 VALUES(1952, 40496, 'forty thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(1953, 13009, 'thirteen thousand nine');\nINSERT INTO t2 VALUES(1954, 84010, 'eighty-four thousand ten');\nINSERT INTO t2 VALUES(1955, 42338, 'forty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(1956, 74408, 'seventy-four thousand four hundred eight');\nINSERT INTO t2 VALUES(1957, 7379, 'seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(1958, 53430, 'fifty-three thousand four hundred thirty');\nINSERT INTO t2 VALUES(1959, 12777, 'twelve thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(1960, 46692, 'forty-six thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(1961, 2252, 'two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(1962, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(1963, 36601, 'thirty-six thousand six hundred one');\nINSERT INTO t2 VALUES(1964, 78479, 'seventy-eight thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(1965, 95051, 'ninety-five thousand fifty-one');\nINSERT INTO t2 VALUES(1966, 50334, 'fifty thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(1967, 11478, 'eleven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(1968, 6230, 'six thousand two hundred thirty');\nINSERT INTO t2 VALUES(1969, 9474, 'nine thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(1970, 22551, 'twenty-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(1971, 18731, 'eighteen thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(1972, 87356, 'eighty-seven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(1973, 31204, 'thirty-one thousand two hundred four');\nINSERT INTO t2 VALUES(1974, 70236, 'seventy thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(1975, 90756, 'ninety thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(1976, 31003, 'thirty-one thousand three');\nINSERT INTO t2 VALUES(1977, 72791, 'seventy-two thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(1978, 71381, 'seventy-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(1979, 95904, 'ninety-five thousand nine hundred four');\nINSERT INTO t2 VALUES(1980, 8694, 'eight thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(1981, 6275, 'six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(1982, 59694, 'fifty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(1983, 47519, 'forty-seven thousand five hundred nineteen');\nINSERT INTO t2 VALUES(1984, 94880, 'ninety-four thousand eight hundred eighty');\nINSERT INTO t2 VALUES(1985, 40892, 'forty thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(1986, 71479, 'seventy-one thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(1987, 64232, 'sixty-four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(1988, 32742, 'thirty-two thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(1989, 90228, 'ninety thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(1990, 70201, 'seventy thousand two hundred one');\nINSERT INTO t2 VALUES(1991, 6076, 'six thousand seventy-six');\nINSERT INTO t2 VALUES(1992, 73314, 'seventy-three thousand three hundred fourteen');\nINSERT INTO t2 VALUES(1993, 98832, 'ninety-eight thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(1994, 71299, 'seventy-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(1995, 53494, 'fifty-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1996, 90494, 'ninety thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(1997, 20872, 'twenty thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(1998, 57121, 'fifty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(1999, 69191, 'sixty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2000, 86770, 'eighty-six thousand seven hundred seventy');\nINSERT INTO t2 VALUES(2001, 3752, 'three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(2002, 96753, 'ninety-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(2003, 89259, 'eighty-nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(2004, 87880, 'eighty-seven thousand eight hundred eighty');\nINSERT INTO t2 VALUES(2005, 3264, 'three thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(2006, 12245, 'twelve thousand two hundred forty-five');\nINSERT INTO t2 VALUES(2007, 20809, 'twenty thousand eight hundred nine');\nINSERT INTO t2 VALUES(2008, 90643, 'ninety thousand six hundred forty-three');\nINSERT INTO t2 VALUES(2009, 27602, 'twenty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(2010, 44882, 'forty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(2011, 85915, 'eighty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(2012, 4239, 'four thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(2013, 23915, 'twenty-three thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(2014, 50728, 'fifty thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(2015, 56336, 'fifty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(2016, 35419, 'thirty-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(2017, 31335, 'thirty-one thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(2018, 44501, 'forty-four thousand five hundred one');\nINSERT INTO t2 VALUES(2019, 85963, 'eighty-five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(2020, 32132, 'thirty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(2021, 58756, 'fifty-eight thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(2022, 72895, 'seventy-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(2023, 61577, 'sixty-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(2024, 60470, 'sixty thousand four hundred seventy');\nINSERT INTO t2 VALUES(2025, 13247, 'thirteen thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(2026, 80738, 'eighty thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(2027, 47364, 'forty-seven thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(2028, 71398, 'seventy-one thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(2029, 11309, 'eleven thousand three hundred nine');\nINSERT INTO t2 VALUES(2030, 22150, 'twenty-two thousand one hundred fifty');\nINSERT INTO t2 VALUES(2031, 32179, 'thirty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(2032, 56661, 'fifty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(2033, 64991, 'sixty-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(2034, 61813, 'sixty-one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(2035, 58145, 'fifty-eight thousand one hundred forty-five');\nINSERT INTO t2 VALUES(2036, 24919, 'twenty-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(2037, 88079, 'eighty-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(2038, 87582, 'eighty-seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(2039, 68372, 'sixty-eight thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(2040, 43188, 'forty-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(2041, 9546, 'nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(2042, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(2043, 80437, 'eighty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(2044, 44514, 'forty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(2045, 64110, 'sixty-four thousand one hundred ten');\nINSERT INTO t2 VALUES(2046, 66779, 'sixty-six thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(2047, 29449, 'twenty-nine thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(2048, 27665, 'twenty-seven thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(2049, 43531, 'forty-three thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(2050, 34298, 'thirty-four thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(2051, 18662, 'eighteen thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(2052, 7015, 'seven thousand fifteen');\nINSERT INTO t2 VALUES(2053, 20067, 'twenty thousand sixty-seven');\nINSERT INTO t2 VALUES(2054, 55314, 'fifty-five thousand three hundred fourteen');\nINSERT INTO t2 VALUES(2055, 39696, 'thirty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(2056, 63429, 'sixty-three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(2057, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(2058, 30312, 'thirty thousand three hundred twelve');\nINSERT INTO t2 VALUES(2059, 39502, 'thirty-nine thousand five hundred two');\nINSERT INTO t2 VALUES(2060, 60364, 'sixty thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(2061, 51299, 'fifty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(2062, 37865, 'thirty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(2063, 7407, 'seven thousand four hundred seven');\nINSERT INTO t2 VALUES(2064, 9582, 'nine thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(2065, 58152, 'fifty-eight thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(2066, 79602, 'seventy-nine thousand six hundred two');\nINSERT INTO t2 VALUES(2067, 90566, 'ninety thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(2068, 41424, 'forty-one thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2069, 67171, 'sixty-seven thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(2070, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t2 VALUES(2071, 81457, 'eighty-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(2072, 85944, 'eighty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(2073, 99560, 'ninety-nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(2074, 1276, 'one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(2075, 72906, 'seventy-two thousand nine hundred six');\nINSERT INTO t2 VALUES(2076, 24124, 'twenty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(2077, 14401, 'fourteen thousand four hundred one');\nINSERT INTO t2 VALUES(2078, 18253, 'eighteen thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(2079, 35572, 'thirty-five thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(2080, 71690, 'seventy-one thousand six hundred ninety');\nINSERT INTO t2 VALUES(2081, 39705, 'thirty-nine thousand seven hundred five');\nINSERT INTO t2 VALUES(2082, 82133, 'eighty-two thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(2083, 86963, 'eighty-six thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(2084, 42539, 'forty-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(2085, 85308, 'eighty-five thousand three hundred eight');\nINSERT INTO t2 VALUES(2086, 6880, 'six thousand eight hundred eighty');\nINSERT INTO t2 VALUES(2087, 71638, 'seventy-one thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(2088, 49157, 'forty-nine thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(2089, 60099, 'sixty thousand ninety-nine');\nINSERT INTO t2 VALUES(2090, 35743, 'thirty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(2091, 45104, 'forty-five thousand one hundred four');\nINSERT INTO t2 VALUES(2092, 77407, 'seventy-seven thousand four hundred seven');\nINSERT INTO t2 VALUES(2093, 1195, 'one thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(2094, 26211, 'twenty-six thousand two hundred eleven');\nINSERT INTO t2 VALUES(2095, 54913, 'fifty-four thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(2096, 3, 'three');\nINSERT INTO t2 VALUES(2097, 18998, 'eighteen thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(2098, 20280, 'twenty thousand two hundred eighty');\nINSERT INTO t2 VALUES(2099, 57239, 'fifty-seven thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(2100, 90306, 'ninety thousand three hundred six');\nINSERT INTO t2 VALUES(2101, 10035, 'ten thousand thirty-five');\nINSERT INTO t2 VALUES(2102, 69872, 'sixty-nine thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(2103, 88639, 'eighty-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(2104, 58066, 'fifty-eight thousand sixty-six');\nINSERT INTO t2 VALUES(2105, 93758, 'ninety-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(2106, 87206, 'eighty-seven thousand two hundred six');\nINSERT INTO t2 VALUES(2107, 24001, 'twenty-four thousand one');\nINSERT INTO t2 VALUES(2108, 69318, 'sixty-nine thousand three hundred eighteen');\nINSERT INTO t2 VALUES(2109, 67822, 'sixty-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(2110, 89055, 'eighty-nine thousand fifty-five');\nINSERT INTO t2 VALUES(2111, 2312, 'two thousand three hundred twelve');\nINSERT INTO t2 VALUES(2112, 67472, 'sixty-seven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(2113, 2197, 'two thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(2114, 51272, 'fifty-one thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(2115, 10536, 'ten thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(2116, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(2117, 74010, 'seventy-four thousand ten');\nINSERT INTO t2 VALUES(2118, 67864, 'sixty-seven thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(2119, 83737, 'eighty-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(2120, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t2 VALUES(2121, 93387, 'ninety-three thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(2122, 70188, 'seventy thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(2123, 91976, 'ninety-one thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(2124, 69804, 'sixty-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(2125, 6141, 'six thousand one hundred forty-one');\nINSERT INTO t2 VALUES(2126, 41284, 'forty-one thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(2127, 89238, 'eighty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(2128, 5069, 'five thousand sixty-nine');\nINSERT INTO t2 VALUES(2129, 40242, 'forty thousand two hundred forty-two');\nINSERT INTO t2 VALUES(2130, 82623, 'eighty-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(2131, 21387, 'twenty-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(2132, 13746, 'thirteen thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(2133, 61939, 'sixty-one thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(2134, 64398, 'sixty-four thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(2135, 21549, 'twenty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(2136, 97911, 'ninety-seven thousand nine hundred eleven');\nINSERT INTO t2 VALUES(2137, 35818, 'thirty-five thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(2138, 51233, 'fifty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(2139, 33356, 'thirty-three thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(2140, 38959, 'thirty-eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(2141, 58251, 'fifty-eight thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(2142, 9259, 'nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(2143, 53169, 'fifty-three thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(2144, 49251, 'forty-nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(2145, 43461, 'forty-three thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2146, 34150, 'thirty-four thousand one hundred fifty');\nINSERT INTO t2 VALUES(2147, 55577, 'fifty-five thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(2148, 63376, 'sixty-three thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(2149, 25029, 'twenty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(2150, 28149, 'twenty-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(2151, 28311, 'twenty-eight thousand three hundred eleven');\nINSERT INTO t2 VALUES(2152, 5249, 'five thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(2153, 85526, 'eighty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(2154, 43414, 'forty-three thousand four hundred fourteen');\nINSERT INTO t2 VALUES(2155, 47719, 'forty-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(2156, 39694, 'thirty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(2157, 32096, 'thirty-two thousand ninety-six');\nINSERT INTO t2 VALUES(2158, 27455, 'twenty-seven thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(2159, 61155, 'sixty-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(2160, 9475, 'nine thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(2161, 43672, 'forty-three thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(2162, 56556, 'fifty-six thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(2163, 36973, 'thirty-six thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(2164, 85094, 'eighty-five thousand ninety-four');\nINSERT INTO t2 VALUES(2165, 68290, 'sixty-eight thousand two hundred ninety');\nINSERT INTO t2 VALUES(2166, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(2167, 31592, 'thirty-one thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(2168, 51130, 'fifty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(2169, 74563, 'seventy-four thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(2170, 15013, 'fifteen thousand thirteen');\nINSERT INTO t2 VALUES(2171, 80523, 'eighty thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(2172, 22, 'twenty-two');\nINSERT INTO t2 VALUES(2173, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(2174, 93807, 'ninety-three thousand eight hundred seven');\nINSERT INTO t2 VALUES(2175, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t2 VALUES(2176, 78199, 'seventy-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(2177, 5356, 'five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(2178, 19195, 'nineteen thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(2179, 80433, 'eighty thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(2180, 62456, 'sixty-two thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(2181, 85223, 'eighty-five thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(2182, 72599, 'seventy-two thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(2183, 97420, 'ninety-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(2184, 27856, 'twenty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(2185, 95101, 'ninety-five thousand one hundred one');\nINSERT INTO t2 VALUES(2186, 8371, 'eight thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(2187, 14046, 'fourteen thousand forty-six');\nINSERT INTO t2 VALUES(2188, 6270, 'six thousand two hundred seventy');\nINSERT INTO t2 VALUES(2189, 46201, 'forty-six thousand two hundred one');\nINSERT INTO t2 VALUES(2190, 78681, 'seventy-eight thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(2191, 32539, 'thirty-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(2192, 95630, 'ninety-five thousand six hundred thirty');\nINSERT INTO t2 VALUES(2193, 99263, 'ninety-nine thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(2194, 80471, 'eighty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(2195, 36378, 'thirty-six thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(2196, 36099, 'thirty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(2197, 64056, 'sixty-four thousand fifty-six');\nINSERT INTO t2 VALUES(2198, 7431, 'seven thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(2199, 48623, 'forty-eight thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(2200, 29058, 'twenty-nine thousand fifty-eight');\nINSERT INTO t2 VALUES(2201, 24829, 'twenty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(2202, 65681, 'sixty-five thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(2203, 33971, 'thirty-three thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(2204, 57254, 'fifty-seven thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(2205, 96450, 'ninety-six thousand four hundred fifty');\nINSERT INTO t2 VALUES(2206, 71274, 'seventy-one thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(2207, 61255, 'sixty-one thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(2208, 86567, 'eighty-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(2209, 26341, 'twenty-six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(2210, 35651, 'thirty-five thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(2211, 29930, 'twenty-nine thousand nine hundred thirty');\nINSERT INTO t2 VALUES(2212, 8986, 'eight thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(2213, 70650, 'seventy thousand six hundred fifty');\nINSERT INTO t2 VALUES(2214, 25365, 'twenty-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(2215, 50253, 'fifty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(2216, 22647, 'twenty-two thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(2217, 5939, 'five thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(2218, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(2219, 60173, 'sixty thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(2220, 65345, 'sixty-five thousand three hundred forty-five');\nINSERT INTO t2 VALUES(2221, 17820, 'seventeen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(2222, 65933, 'sixty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(2223, 10228, 'ten thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(2224, 32722, 'thirty-two thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(2225, 19795, 'nineteen thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(2226, 41464, 'forty-one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(2227, 65388, 'sixty-five thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(2228, 19735, 'nineteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(2229, 45011, 'forty-five thousand eleven');\nINSERT INTO t2 VALUES(2230, 37315, 'thirty-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(2231, 53420, 'fifty-three thousand four hundred twenty');\nINSERT INTO t2 VALUES(2232, 13137, 'thirteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(2233, 89350, 'eighty-nine thousand three hundred fifty');\nINSERT INTO t2 VALUES(2234, 11233, 'eleven thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(2235, 64599, 'sixty-four thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(2236, 22046, 'twenty-two thousand forty-six');\nINSERT INTO t2 VALUES(2237, 98274, 'ninety-eight thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(2238, 72470, 'seventy-two thousand four hundred seventy');\nINSERT INTO t2 VALUES(2239, 587, 'five hundred eighty-seven');\nINSERT INTO t2 VALUES(2240, 75875, 'seventy-five thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(2241, 29684, 'twenty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(2242, 89957, 'eighty-nine thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(2243, 37141, 'thirty-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(2244, 42203, 'forty-two thousand two hundred three');\nINSERT INTO t2 VALUES(2245, 7109, 'seven thousand one hundred nine');\nINSERT INTO t2 VALUES(2246, 3368, 'three thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(2247, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(2248, 3344, 'three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(2249, 70493, 'seventy thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(2250, 74214, 'seventy-four thousand two hundred fourteen');\nINSERT INTO t2 VALUES(2251, 36198, 'thirty-six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(2252, 86536, 'eighty-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(2253, 15696, 'fifteen thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(2254, 35018, 'thirty-five thousand eighteen');\nINSERT INTO t2 VALUES(2255, 67545, 'sixty-seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(2256, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(2257, 98082, 'ninety-eight thousand eighty-two');\nINSERT INTO t2 VALUES(2258, 19480, 'nineteen thousand four hundred eighty');\nINSERT INTO t2 VALUES(2259, 64459, 'sixty-four thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(2260, 56855, 'fifty-six thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(2261, 90207, 'ninety thousand two hundred seven');\nINSERT INTO t2 VALUES(2262, 33924, 'thirty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(2263, 97787, 'ninety-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(2264, 9831, 'nine thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(2265, 96341, 'ninety-six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(2266, 94285, 'ninety-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(2267, 38535, 'thirty-eight thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(2268, 18406, 'eighteen thousand four hundred six');\nINSERT INTO t2 VALUES(2269, 41884, 'forty-one thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(2270, 27215, 'twenty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(2271, 78374, 'seventy-eight thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(2272, 70693, 'seventy thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(2273, 96026, 'ninety-six thousand twenty-six');\nINSERT INTO t2 VALUES(2274, 87994, 'eighty-seven thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(2275, 45819, 'forty-five thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(2276, 52336, 'fifty-two thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(2277, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(2278, 90518, 'ninety thousand five hundred eighteen');\nINSERT INTO t2 VALUES(2279, 6198, 'six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(2280, 64602, 'sixty-four thousand six hundred two');\nINSERT INTO t2 VALUES(2281, 74861, 'seventy-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(2282, 99850, 'ninety-nine thousand eight hundred fifty');\nINSERT INTO t2 VALUES(2283, 93344, 'ninety-three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(2284, 83943, 'eighty-three thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(2285, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(2286, 27925, 'twenty-seven thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(2287, 78320, 'seventy-eight thousand three hundred twenty');\nINSERT INTO t2 VALUES(2288, 6201, 'six thousand two hundred one');\nINSERT INTO t2 VALUES(2289, 41579, 'forty-one thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(2290, 70654, 'seventy thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(2291, 44328, 'forty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(2292, 70637, 'seventy thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(2293, 51584, 'fifty-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(2294, 40019, 'forty thousand nineteen');\nINSERT INTO t2 VALUES(2295, 4733, 'four thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(2296, 63893, 'sixty-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(2297, 21551, 'twenty-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(2298, 72776, 'seventy-two thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(2299, 73771, 'seventy-three thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(2300, 26461, 'twenty-six thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2301, 51916, 'fifty-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(2302, 7470, 'seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(2303, 26176, 'twenty-six thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(2304, 28194, 'twenty-eight thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(2305, 71326, 'seventy-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(2306, 19033, 'nineteen thousand thirty-three');\nINSERT INTO t2 VALUES(2307, 10179, 'ten thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(2308, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(2309, 37690, 'thirty-seven thousand six hundred ninety');\nINSERT INTO t2 VALUES(2310, 15021, 'fifteen thousand twenty-one');\nINSERT INTO t2 VALUES(2311, 47954, 'forty-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(2312, 99373, 'ninety-nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(2313, 60636, 'sixty thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(2314, 40008, 'forty thousand eight');\nINSERT INTO t2 VALUES(2315, 23115, 'twenty-three thousand one hundred fifteen');\nINSERT INTO t2 VALUES(2316, 83784, 'eighty-three thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(2317, 97564, 'ninety-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(2318, 23192, 'twenty-three thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(2319, 35700, 'thirty-five thousand seven hundred');\nINSERT INTO t2 VALUES(2320, 23968, 'twenty-three thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(2321, 30846, 'thirty thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(2322, 97968, 'ninety-seven thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(2323, 15842, 'fifteen thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(2324, 13572, 'thirteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(2325, 17630, 'seventeen thousand six hundred thirty');\nINSERT INTO t2 VALUES(2326, 74055, 'seventy-four thousand fifty-five');\nINSERT INTO t2 VALUES(2327, 25273, 'twenty-five thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(2328, 39041, 'thirty-nine thousand forty-one');\nINSERT INTO t2 VALUES(2329, 11972, 'eleven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(2330, 33519, 'thirty-three thousand five hundred nineteen');\nINSERT INTO t2 VALUES(2331, 35065, 'thirty-five thousand sixty-five');\nINSERT INTO t2 VALUES(2332, 65148, 'sixty-five thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(2333, 60959, 'sixty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(2334, 96394, 'ninety-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(2335, 64307, 'sixty-four thousand three hundred seven');\nINSERT INTO t2 VALUES(2336, 45596, 'forty-five thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(2337, 94741, 'ninety-four thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(2338, 315, 'three hundred fifteen');\nINSERT INTO t2 VALUES(2339, 92997, 'ninety-two thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(2340, 61307, 'sixty-one thousand three hundred seven');\nINSERT INTO t2 VALUES(2341, 25247, 'twenty-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(2342, 43658, 'forty-three thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(2343, 76134, 'seventy-six thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(2344, 8727, 'eight thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(2345, 82124, 'eighty-two thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(2346, 94208, 'ninety-four thousand two hundred eight');\nINSERT INTO t2 VALUES(2347, 83546, 'eighty-three thousand five hundred forty-six');\nINSERT INTO t2 VALUES(2348, 80575, 'eighty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(2349, 96566, 'ninety-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(2350, 52045, 'fifty-two thousand forty-five');\nINSERT INTO t2 VALUES(2351, 37304, 'thirty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(2352, 53861, 'fifty-three thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(2353, 40200, 'forty thousand two hundred');\nINSERT INTO t2 VALUES(2354, 67604, 'sixty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(2355, 72285, 'seventy-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(2356, 60117, 'sixty thousand one hundred seventeen');\nINSERT INTO t2 VALUES(2357, 28125, 'twenty-eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(2358, 97088, 'ninety-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(2359, 73809, 'seventy-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(2360, 89593, 'eighty-nine thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(2361, 80981, 'eighty thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(2362, 38214, 'thirty-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(2363, 63465, 'sixty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(2364, 46151, 'forty-six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(2365, 66353, 'sixty-six thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(2366, 27544, 'twenty-seven thousand five hundred forty-four');\nINSERT INTO t2 VALUES(2367, 13517, 'thirteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(2368, 43298, 'forty-three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(2369, 3013, 'three thousand thirteen');\nINSERT INTO t2 VALUES(2370, 43673, 'forty-three thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(2371, 89406, 'eighty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(2372, 16649, 'sixteen thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(2373, 58159, 'fifty-eight thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(2374, 72424, 'seventy-two thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2375, 28780, 'twenty-eight thousand seven hundred eighty');\nINSERT INTO t2 VALUES(2376, 15716, 'fifteen thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(2377, 91549, 'ninety-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(2378, 83986, 'eighty-three thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(2379, 29747, 'twenty-nine thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(2380, 82477, 'eighty-two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(2381, 80074, 'eighty thousand seventy-four');\nINSERT INTO t2 VALUES(2382, 96058, 'ninety-six thousand fifty-eight');\nINSERT INTO t2 VALUES(2383, 89571, 'eighty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(2384, 26561, 'twenty-six thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(2385, 32468, 'thirty-two thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(2386, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(2387, 41302, 'forty-one thousand three hundred two');\nINSERT INTO t2 VALUES(2388, 75807, 'seventy-five thousand eight hundred seven');\nINSERT INTO t2 VALUES(2389, 28804, 'twenty-eight thousand eight hundred four');\nINSERT INTO t2 VALUES(2390, 36879, 'thirty-six thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(2391, 96669, 'ninety-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(2392, 90342, 'ninety thousand three hundred forty-two');\nINSERT INTO t2 VALUES(2393, 7542, 'seven thousand five hundred forty-two');\nINSERT INTO t2 VALUES(2394, 47970, 'forty-seven thousand nine hundred seventy');\nINSERT INTO t2 VALUES(2395, 92076, 'ninety-two thousand seventy-six');\nINSERT INTO t2 VALUES(2396, 39852, 'thirty-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(2397, 38803, 'thirty-eight thousand eight hundred three');\nINSERT INTO t2 VALUES(2398, 19442, 'nineteen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(2399, 78578, 'seventy-eight thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(2400, 74903, 'seventy-four thousand nine hundred three');\nINSERT INTO t2 VALUES(2401, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(2402, 87059, 'eighty-seven thousand fifty-nine');\nINSERT INTO t2 VALUES(2403, 15772, 'fifteen thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(2404, 17631, 'seventeen thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(2405, 15798, 'fifteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(2406, 43104, 'forty-three thousand one hundred four');\nINSERT INTO t2 VALUES(2407, 1195, 'one thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(2408, 43211, 'forty-three thousand two hundred eleven');\nINSERT INTO t2 VALUES(2409, 73078, 'seventy-three thousand seventy-eight');\nINSERT INTO t2 VALUES(2410, 23976, 'twenty-three thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(2411, 63319, 'sixty-three thousand three hundred nineteen');\nINSERT INTO t2 VALUES(2412, 89991, 'eighty-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(2413, 71907, 'seventy-one thousand nine hundred seven');\nINSERT INTO t2 VALUES(2414, 45419, 'forty-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(2415, 51615, 'fifty-one thousand six hundred fifteen');\nINSERT INTO t2 VALUES(2416, 28240, 'twenty-eight thousand two hundred forty');\nINSERT INTO t2 VALUES(2417, 55834, 'fifty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(2418, 77916, 'seventy-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(2419, 81683, 'eighty-one thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(2420, 56127, 'fifty-six thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(2421, 11304, 'eleven thousand three hundred four');\nINSERT INTO t2 VALUES(2422, 48279, 'forty-eight thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(2423, 93430, 'ninety-three thousand four hundred thirty');\nINSERT INTO t2 VALUES(2424, 85293, 'eighty-five thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(2425, 71015, 'seventy-one thousand fifteen');\nINSERT INTO t2 VALUES(2426, 69462, 'sixty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(2427, 27337, 'twenty-seven thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(2428, 12663, 'twelve thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(2429, 20226, 'twenty thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(2430, 52823, 'fifty-two thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(2431, 13894, 'thirteen thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(2432, 15928, 'fifteen thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(2433, 98981, 'ninety-eight thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(2434, 90676, 'ninety thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(2435, 42296, 'forty-two thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(2436, 22083, 'twenty-two thousand eighty-three');\nINSERT INTO t2 VALUES(2437, 75853, 'seventy-five thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(2438, 18942, 'eighteen thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(2439, 81482, 'eighty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2440, 1246, 'one thousand two hundred forty-six');\nINSERT INTO t2 VALUES(2441, 61614, 'sixty-one thousand six hundred fourteen');\nINSERT INTO t2 VALUES(2442, 31021, 'thirty-one thousand twenty-one');\nINSERT INTO t2 VALUES(2443, 98151, 'ninety-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(2444, 6676, 'six thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(2445, 45247, 'forty-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(2446, 54998, 'fifty-four thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(2447, 16592, 'sixteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(2448, 35662, 'thirty-five thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(2449, 76092, 'seventy-six thousand ninety-two');\nINSERT INTO t2 VALUES(2450, 52, 'fifty-two');\nINSERT INTO t2 VALUES(2451, 29506, 'twenty-nine thousand five hundred six');\nINSERT INTO t2 VALUES(2452, 851, 'eight hundred fifty-one');\nINSERT INTO t2 VALUES(2453, 40062, 'forty thousand sixty-two');\nINSERT INTO t2 VALUES(2454, 28317, 'twenty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(2455, 37254, 'thirty-seven thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(2456, 36890, 'thirty-six thousand eight hundred ninety');\nINSERT INTO t2 VALUES(2457, 19283, 'nineteen thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(2458, 36251, 'thirty-six thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(2459, 67984, 'sixty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(2460, 67460, 'sixty-seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(2461, 76465, 'seventy-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(2462, 50543, 'fifty thousand five hundred forty-three');\nINSERT INTO t2 VALUES(2463, 51509, 'fifty-one thousand five hundred nine');\nINSERT INTO t2 VALUES(2464, 98584, 'ninety-eight thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(2465, 4214, 'four thousand two hundred fourteen');\nINSERT INTO t2 VALUES(2466, 93388, 'ninety-three thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(2467, 62723, 'sixty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(2468, 59784, 'fifty-nine thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(2469, 39638, 'thirty-nine thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(2470, 15730, 'fifteen thousand seven hundred thirty');\nINSERT INTO t2 VALUES(2471, 96301, 'ninety-six thousand three hundred one');\nINSERT INTO t2 VALUES(2472, 22050, 'twenty-two thousand fifty');\nINSERT INTO t2 VALUES(2473, 1017, 'one thousand seventeen');\nINSERT INTO t2 VALUES(2474, 24030, 'twenty-four thousand thirty');\nINSERT INTO t2 VALUES(2475, 38099, 'thirty-eight thousand ninety-nine');\nINSERT INTO t2 VALUES(2476, 32218, 'thirty-two thousand two hundred eighteen');\nINSERT INTO t2 VALUES(2477, 20023, 'twenty thousand twenty-three');\nINSERT INTO t2 VALUES(2478, 44951, 'forty-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2479, 72567, 'seventy-two thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(2480, 31626, 'thirty-one thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(2481, 72593, 'seventy-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(2482, 54291, 'fifty-four thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(2483, 83063, 'eighty-three thousand sixty-three');\nINSERT INTO t2 VALUES(2484, 13836, 'thirteen thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(2485, 41860, 'forty-one thousand eight hundred sixty');\nINSERT INTO t2 VALUES(2486, 89723, 'eighty-nine thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(2487, 14732, 'fourteen thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(2488, 15002, 'fifteen thousand two');\nINSERT INTO t2 VALUES(2489, 92065, 'ninety-two thousand sixty-five');\nINSERT INTO t2 VALUES(2490, 40067, 'forty thousand sixty-seven');\nINSERT INTO t2 VALUES(2491, 57828, 'fifty-seven thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(2492, 85335, 'eighty-five thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(2493, 10602, 'ten thousand six hundred two');\nINSERT INTO t2 VALUES(2494, 1476, 'one thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(2495, 93934, 'ninety-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(2496, 78768, 'seventy-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(2497, 71835, 'seventy-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(2498, 55943, 'fifty-five thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(2499, 33941, 'thirty-three thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(2500, 94279, 'ninety-four thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(2501, 15291, 'fifteen thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(2502, 41682, 'forty-one thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2503, 81048, 'eighty-one thousand forty-eight');\nINSERT INTO t2 VALUES(2504, 87177, 'eighty-seven thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(2505, 6726, 'six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(2506, 75433, 'seventy-five thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(2507, 50001, 'fifty thousand one');\nINSERT INTO t2 VALUES(2508, 65321, 'sixty-five thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(2509, 95932, 'ninety-five thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(2510, 50745, 'fifty thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(2511, 44178, 'forty-four thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(2512, 4666, 'four thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(2513, 86217, 'eighty-six thousand two hundred seventeen');\nINSERT INTO t2 VALUES(2514, 29911, 'twenty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(2515, 32937, 'thirty-two thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(2516, 53630, 'fifty-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(2517, 2615, 'two thousand six hundred fifteen');\nINSERT INTO t2 VALUES(2518, 2368, 'two thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(2519, 29127, 'twenty-nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(2520, 5200, 'five thousand two hundred');\nINSERT INTO t2 VALUES(2521, 59612, 'fifty-nine thousand six hundred twelve');\nINSERT INTO t2 VALUES(2522, 28958, 'twenty-eight thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(2523, 5703, 'five thousand seven hundred three');\nINSERT INTO t2 VALUES(2524, 80642, 'eighty thousand six hundred forty-two');\nINSERT INTO t2 VALUES(2525, 45690, 'forty-five thousand six hundred ninety');\nINSERT INTO t2 VALUES(2526, 49569, 'forty-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(2527, 7904, 'seven thousand nine hundred four');\nINSERT INTO t2 VALUES(2528, 11110, 'eleven thousand one hundred ten');\nINSERT INTO t2 VALUES(2529, 98775, 'ninety-eight thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(2530, 20170, 'twenty thousand one hundred seventy');\nINSERT INTO t2 VALUES(2531, 17019, 'seventeen thousand nineteen');\nINSERT INTO t2 VALUES(2532, 96331, 'ninety-six thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(2533, 65337, 'sixty-five thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(2534, 38354, 'thirty-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(2535, 60268, 'sixty thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(2536, 30622, 'thirty thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(2537, 32805, 'thirty-two thousand eight hundred five');\nINSERT INTO t2 VALUES(2538, 49165, 'forty-nine thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(2539, 84538, 'eighty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(2540, 32316, 'thirty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2541, 57707, 'fifty-seven thousand seven hundred seven');\nINSERT INTO t2 VALUES(2542, 95842, 'ninety-five thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(2543, 14067, 'fourteen thousand sixty-seven');\nINSERT INTO t2 VALUES(2544, 45424, 'forty-five thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2545, 13272, 'thirteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(2546, 94806, 'ninety-four thousand eight hundred six');\nINSERT INTO t2 VALUES(2547, 56695, 'fifty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(2548, 41079, 'forty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(2549, 73507, 'seventy-three thousand five hundred seven');\nINSERT INTO t2 VALUES(2550, 49289, 'forty-nine thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(2551, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(2552, 53495, 'fifty-three thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(2553, 33072, 'thirty-three thousand seventy-two');\nINSERT INTO t2 VALUES(2554, 6951, 'six thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2555, 77249, 'seventy-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(2556, 33756, 'thirty-three thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(2557, 95757, 'ninety-five thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(2558, 60092, 'sixty thousand ninety-two');\nINSERT INTO t2 VALUES(2559, 61249, 'sixty-one thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(2560, 34995, 'thirty-four thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(2561, 83682, 'eighty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2562, 57389, 'fifty-seven thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(2563, 12038, 'twelve thousand thirty-eight');\nINSERT INTO t2 VALUES(2564, 25346, 'twenty-five thousand three hundred forty-six');\nINSERT INTO t2 VALUES(2565, 21634, 'twenty-one thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(2566, 90352, 'ninety thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(2567, 908, 'nine hundred eight');\nINSERT INTO t2 VALUES(2568, 29124, 'twenty-nine thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(2569, 13884, 'thirteen thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(2570, 53757, 'fifty-three thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(2571, 76121, 'seventy-six thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(2572, 71727, 'seventy-one thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(2573, 45927, 'forty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(2574, 28338, 'twenty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(2575, 89504, 'eighty-nine thousand five hundred four');\nINSERT INTO t2 VALUES(2576, 73450, 'seventy-three thousand four hundred fifty');\nINSERT INTO t2 VALUES(2577, 19716, 'nineteen thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(2578, 99347, 'ninety-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(2579, 22889, 'twenty-two thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(2580, 68280, 'sixty-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(2581, 13069, 'thirteen thousand sixty-nine');\nINSERT INTO t2 VALUES(2582, 13040, 'thirteen thousand forty');\nINSERT INTO t2 VALUES(2583, 24883, 'twenty-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(2584, 84595, 'eighty-four thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(2585, 42369, 'forty-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(2586, 32863, 'thirty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(2587, 61898, 'sixty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(2588, 80829, 'eighty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(2589, 17682, 'seventeen thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2590, 83951, 'eighty-three thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2591, 97139, 'ninety-seven thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(2592, 62950, 'sixty-two thousand nine hundred fifty');\nINSERT INTO t2 VALUES(2593, 39594, 'thirty-nine thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(2594, 64139, 'sixty-four thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(2595, 8325, 'eight thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(2596, 71097, 'seventy-one thousand ninety-seven');\nINSERT INTO t2 VALUES(2597, 49802, 'forty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(2598, 23014, 'twenty-three thousand fourteen');\nINSERT INTO t2 VALUES(2599, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(2600, 23316, 'twenty-three thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2601, 44319, 'forty-four thousand three hundred nineteen');\nINSERT INTO t2 VALUES(2602, 82480, 'eighty-two thousand four hundred eighty');\nINSERT INTO t2 VALUES(2603, 35403, 'thirty-five thousand four hundred three');\nINSERT INTO t2 VALUES(2604, 13285, 'thirteen thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(2605, 6978, 'six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(2606, 85095, 'eighty-five thousand ninety-five');\nINSERT INTO t2 VALUES(2607, 33866, 'thirty-three thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(2608, 30115, 'thirty thousand one hundred fifteen');\nINSERT INTO t2 VALUES(2609, 92129, 'ninety-two thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(2610, 32864, 'thirty-two thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(2611, 29670, 'twenty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(2612, 75952, 'seventy-five thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(2613, 70948, 'seventy thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(2614, 36324, 'thirty-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(2615, 61684, 'sixty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(2616, 85960, 'eighty-five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(2617, 42441, 'forty-two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(2618, 87302, 'eighty-seven thousand three hundred two');\nINSERT INTO t2 VALUES(2619, 72994, 'seventy-two thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(2620, 86981, 'eighty-six thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(2621, 67309, 'sixty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(2622, 22682, 'twenty-two thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(2623, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t2 VALUES(2624, 42158, 'forty-two thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(2625, 6380, 'six thousand three hundred eighty');\nINSERT INTO t2 VALUES(2626, 83922, 'eighty-three thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(2627, 44702, 'forty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(2628, 45893, 'forty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(2629, 91811, 'ninety-one thousand eight hundred eleven');\nINSERT INTO t2 VALUES(2630, 79655, 'seventy-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(2631, 96322, 'ninety-six thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(2632, 48453, 'forty-eight thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(2633, 37766, 'thirty-seven thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(2634, 66372, 'sixty-six thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(2635, 43911, 'forty-three thousand nine hundred eleven');\nINSERT INTO t2 VALUES(2636, 82376, 'eighty-two thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(2637, 74097, 'seventy-four thousand ninety-seven');\nINSERT INTO t2 VALUES(2638, 98451, 'ninety-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(2639, 56275, 'fifty-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(2640, 58468, 'fifty-eight thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(2641, 41716, 'forty-one thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(2642, 29306, 'twenty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(2643, 9307, 'nine thousand three hundred seven');\nINSERT INTO t2 VALUES(2644, 96633, 'ninety-six thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(2645, 25678, 'twenty-five thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(2646, 58125, 'fifty-eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(2647, 36684, 'thirty-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(2648, 63443, 'sixty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(2649, 95563, 'ninety-five thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(2650, 88490, 'eighty-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(2651, 83347, 'eighty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(2652, 18205, 'eighteen thousand two hundred five');\nINSERT INTO t2 VALUES(2653, 86323, 'eighty-six thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(2654, 49008, 'forty-nine thousand eight');\nINSERT INTO t2 VALUES(2655, 75828, 'seventy-five thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(2656, 92087, 'ninety-two thousand eighty-seven');\nINSERT INTO t2 VALUES(2657, 91487, 'ninety-one thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(2658, 19227, 'nineteen thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(2659, 78893, 'seventy-eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(2660, 89026, 'eighty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(2661, 21292, 'twenty-one thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(2662, 77487, 'seventy-seven thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(2663, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t2 VALUES(2664, 46554, 'forty-six thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(2665, 23977, 'twenty-three thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(2666, 41773, 'forty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(2667, 76832, 'seventy-six thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(2668, 26031, 'twenty-six thousand thirty-one');\nINSERT INTO t2 VALUES(2669, 9187, 'nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(2670, 79422, 'seventy-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(2671, 43130, 'forty-three thousand one hundred thirty');\nINSERT INTO t2 VALUES(2672, 98721, 'ninety-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(2673, 43493, 'forty-three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(2674, 59120, 'fifty-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(2675, 34743, 'thirty-four thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(2676, 5477, 'five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(2677, 95338, 'ninety-five thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(2678, 29313, 'twenty-nine thousand three hundred thirteen');\nINSERT INTO t2 VALUES(2679, 25089, 'twenty-five thousand eighty-nine');\nINSERT INTO t2 VALUES(2680, 97859, 'ninety-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(2681, 54424, 'fifty-four thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(2682, 51457, 'fifty-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(2683, 33256, 'thirty-three thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(2684, 801, 'eight hundred one');\nINSERT INTO t2 VALUES(2685, 31887, 'thirty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(2686, 69467, 'sixty-nine thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(2687, 1670, 'one thousand six hundred seventy');\nINSERT INTO t2 VALUES(2688, 52565, 'fifty-two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(2689, 53710, 'fifty-three thousand seven hundred ten');\nINSERT INTO t2 VALUES(2690, 59890, 'fifty-nine thousand eight hundred ninety');\nINSERT INTO t2 VALUES(2691, 58219, 'fifty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(2692, 32988, 'thirty-two thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(2693, 94147, 'ninety-four thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(2694, 12093, 'twelve thousand ninety-three');\nINSERT INTO t2 VALUES(2695, 35191, 'thirty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2696, 99851, 'ninety-nine thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(2697, 80461, 'eighty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2698, 16576, 'sixteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(2699, 41877, 'forty-one thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(2700, 2675, 'two thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(2701, 1536, 'one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(2702, 37067, 'thirty-seven thousand sixty-seven');\nINSERT INTO t2 VALUES(2703, 30725, 'thirty thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(2704, 94221, 'ninety-four thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(2705, 88398, 'eighty-eight thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(2706, 22793, 'twenty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(2707, 7612, 'seven thousand six hundred twelve');\nINSERT INTO t2 VALUES(2708, 58746, 'fifty-eight thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(2709, 33773, 'thirty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(2710, 99090, 'ninety-nine thousand ninety');\nINSERT INTO t2 VALUES(2711, 47291, 'forty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(2712, 883, 'eight hundred eighty-three');\nINSERT INTO t2 VALUES(2713, 65894, 'sixty-five thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(2714, 83157, 'eighty-three thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(2715, 48742, 'forty-eight thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(2716, 49917, 'forty-nine thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(2717, 86447, 'eighty-six thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(2718, 65548, 'sixty-five thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(2719, 3034, 'three thousand thirty-four');\nINSERT INTO t2 VALUES(2720, 6189, 'six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(2721, 57782, 'fifty-seven thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(2722, 67960, 'sixty-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(2723, 10192, 'ten thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(2724, 56062, 'fifty-six thousand sixty-two');\nINSERT INTO t2 VALUES(2725, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(2726, 64339, 'sixty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(2727, 50834, 'fifty thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(2728, 14544, 'fourteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(2729, 8374, 'eight thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(2730, 93240, 'ninety-three thousand two hundred forty');\nINSERT INTO t2 VALUES(2731, 36156, 'thirty-six thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(2732, 41744, 'forty-one thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(2733, 94738, 'ninety-four thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(2734, 17004, 'seventeen thousand four');\nINSERT INTO t2 VALUES(2735, 85268, 'eighty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(2736, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t2 VALUES(2737, 45120, 'forty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(2738, 92340, 'ninety-two thousand three hundred forty');\nINSERT INTO t2 VALUES(2739, 47942, 'forty-seven thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(2740, 70442, 'seventy thousand four hundred forty-two');\nINSERT INTO t2 VALUES(2741, 86519, 'eighty-six thousand five hundred nineteen');\nINSERT INTO t2 VALUES(2742, 56135, 'fifty-six thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(2743, 12326, 'twelve thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(2744, 50839, 'fifty thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(2745, 43007, 'forty-three thousand seven');\nINSERT INTO t2 VALUES(2746, 97445, 'ninety-seven thousand four hundred forty-five');\nINSERT INTO t2 VALUES(2747, 29497, 'twenty-nine thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(2748, 90283, 'ninety thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(2749, 62830, 'sixty-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(2750, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(2751, 38030, 'thirty-eight thousand thirty');\nINSERT INTO t2 VALUES(2752, 58329, 'fifty-eight thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(2753, 62846, 'sixty-two thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(2754, 63402, 'sixty-three thousand four hundred two');\nINSERT INTO t2 VALUES(2755, 61888, 'sixty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(2756, 30259, 'thirty thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(2757, 78508, 'seventy-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(2758, 19596, 'nineteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(2759, 95602, 'ninety-five thousand six hundred two');\nINSERT INTO t2 VALUES(2760, 50707, 'fifty thousand seven hundred seven');\nINSERT INTO t2 VALUES(2761, 20331, 'twenty thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(2762, 59725, 'fifty-nine thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(2763, 84974, 'eighty-four thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(2764, 83930, 'eighty-three thousand nine hundred thirty');\nINSERT INTO t2 VALUES(2765, 2319, 'two thousand three hundred nineteen');\nINSERT INTO t2 VALUES(2766, 35416, 'thirty-five thousand four hundred sixteen');\nINSERT INTO t2 VALUES(2767, 79852, 'seventy-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(2768, 28726, 'twenty-eight thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(2769, 82891, 'eighty-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(2770, 56494, 'fifty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(2771, 12517, 'twelve thousand five hundred seventeen');\nINSERT INTO t2 VALUES(2772, 55267, 'fifty-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(2773, 49822, 'forty-nine thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(2774, 23222, 'twenty-three thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(2775, 62918, 'sixty-two thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(2776, 74851, 'seventy-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(2777, 59567, 'fifty-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(2778, 63039, 'sixty-three thousand thirty-nine');\nINSERT INTO t2 VALUES(2779, 20437, 'twenty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(2780, 28309, 'twenty-eight thousand three hundred nine');\nINSERT INTO t2 VALUES(2781, 7846, 'seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(2782, 69927, 'sixty-nine thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(2783, 40390, 'forty thousand three hundred ninety');\nINSERT INTO t2 VALUES(2784, 12522, 'twelve thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(2785, 26130, 'twenty-six thousand one hundred thirty');\nINSERT INTO t2 VALUES(2786, 90941, 'ninety thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(2787, 84617, 'eighty-four thousand six hundred seventeen');\nINSERT INTO t2 VALUES(2788, 74245, 'seventy-four thousand two hundred forty-five');\nINSERT INTO t2 VALUES(2789, 71727, 'seventy-one thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(2790, 97787, 'ninety-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(2791, 54779, 'fifty-four thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(2792, 5189, 'five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(2793, 79474, 'seventy-nine thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(2794, 39272, 'thirty-nine thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(2795, 98320, 'ninety-eight thousand three hundred twenty');\nINSERT INTO t2 VALUES(2796, 82818, 'eighty-two thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(2797, 24549, 'twenty-four thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(2798, 11815, 'eleven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(2799, 86821, 'eighty-six thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(2800, 38136, 'thirty-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(2801, 84869, 'eighty-four thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(2802, 59161, 'fifty-nine thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(2803, 41018, 'forty-one thousand eighteen');\nINSERT INTO t2 VALUES(2804, 676, 'six hundred seventy-six');\nINSERT INTO t2 VALUES(2805, 13822, 'thirteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(2806, 58913, 'fifty-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(2807, 74789, 'seventy-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(2808, 82984, 'eighty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(2809, 61949, 'sixty-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(2810, 81568, 'eighty-one thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(2811, 46679, 'forty-six thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(2812, 95766, 'ninety-five thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(2813, 86952, 'eighty-six thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(2814, 87132, 'eighty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(2815, 36084, 'thirty-six thousand eighty-four');\nINSERT INTO t2 VALUES(2816, 7501, 'seven thousand five hundred one');\nINSERT INTO t2 VALUES(2817, 70059, 'seventy thousand fifty-nine');\nINSERT INTO t2 VALUES(2818, 65378, 'sixty-five thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(2819, 97106, 'ninety-seven thousand one hundred six');\nINSERT INTO t2 VALUES(2820, 22396, 'twenty-two thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(2821, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t2 VALUES(2822, 75344, 'seventy-five thousand three hundred forty-four');\nINSERT INTO t2 VALUES(2823, 89444, 'eighty-nine thousand four hundred forty-four');\nINSERT INTO t2 VALUES(2824, 74330, 'seventy-four thousand three hundred thirty');\nINSERT INTO t2 VALUES(2825, 22938, 'twenty-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(2826, 30324, 'thirty thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(2827, 53687, 'fifty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(2828, 26628, 'twenty-six thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(2829, 62886, 'sixty-two thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(2830, 4714, 'four thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(2831, 31562, 'thirty-one thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(2832, 75798, 'seventy-five thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(2833, 30888, 'thirty thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(2834, 27929, 'twenty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(2835, 76758, 'seventy-six thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(2836, 23586, 'twenty-three thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(2837, 22704, 'twenty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(2838, 88191, 'eighty-eight thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2839, 96482, 'ninety-six thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2840, 51547, 'fifty-one thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(2841, 95984, 'ninety-five thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(2842, 64342, 'sixty-four thousand three hundred forty-two');\nINSERT INTO t2 VALUES(2843, 89357, 'eighty-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(2844, 14916, 'fourteen thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(2845, 95624, 'ninety-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(2846, 54191, 'fifty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(2847, 52927, 'fifty-two thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(2848, 13841, 'thirteen thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(2849, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(2850, 49712, 'forty-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(2851, 40343, 'forty thousand three hundred forty-three');\nINSERT INTO t2 VALUES(2852, 11081, 'eleven thousand eighty-one');\nINSERT INTO t2 VALUES(2853, 70945, 'seventy thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(2854, 34152, 'thirty-four thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(2855, 25394, 'twenty-five thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(2856, 75268, 'seventy-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(2857, 91244, 'ninety-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(2858, 55951, 'fifty-five thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2859, 69088, 'sixty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(2860, 56537, 'fifty-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(2861, 30024, 'thirty thousand twenty-four');\nINSERT INTO t2 VALUES(2862, 9283, 'nine thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(2863, 92553, 'ninety-two thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(2864, 59970, 'fifty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(2865, 99232, 'ninety-nine thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(2866, 82397, 'eighty-two thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(2867, 95482, 'ninety-five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2868, 10275, 'ten thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(2869, 36196, 'thirty-six thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(2870, 11444, 'eleven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(2871, 83835, 'eighty-three thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(2872, 74554, 'seventy-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(2873, 64832, 'sixty-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(2874, 17103, 'seventeen thousand one hundred three');\nINSERT INTO t2 VALUES(2875, 69875, 'sixty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(2876, 28025, 'twenty-eight thousand twenty-five');\nINSERT INTO t2 VALUES(2877, 7865, 'seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(2878, 65144, 'sixty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(2879, 87598, 'eighty-seven thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(2880, 20568, 'twenty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(2881, 94521, 'ninety-four thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(2882, 64094, 'sixty-four thousand ninety-four');\nINSERT INTO t2 VALUES(2883, 98433, 'ninety-eight thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(2884, 41316, 'forty-one thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2885, 7100, 'seven thousand one hundred');\nINSERT INTO t2 VALUES(2886, 47901, 'forty-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(2887, 30308, 'thirty thousand three hundred eight');\nINSERT INTO t2 VALUES(2888, 79929, 'seventy-nine thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(2889, 56038, 'fifty-six thousand thirty-eight');\nINSERT INTO t2 VALUES(2890, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(2891, 45780, 'forty-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(2892, 69065, 'sixty-nine thousand sixty-five');\nINSERT INTO t2 VALUES(2893, 66273, 'sixty-six thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(2894, 44563, 'forty-four thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(2895, 58999, 'fifty-eight thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(2896, 5527, 'five thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(2897, 45586, 'forty-five thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(2898, 89539, 'eighty-nine thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(2899, 30454, 'thirty thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(2900, 6674, 'six thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(2901, 92605, 'ninety-two thousand six hundred five');\nINSERT INTO t2 VALUES(2902, 55570, 'fifty-five thousand five hundred seventy');\nINSERT INTO t2 VALUES(2903, 6162, 'six thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(2904, 10969, 'ten thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(2905, 89354, 'eighty-nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(2906, 25114, 'twenty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(2907, 69084, 'sixty-nine thousand eighty-four');\nINSERT INTO t2 VALUES(2908, 56522, 'fifty-six thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(2909, 86596, 'eighty-six thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(2910, 26888, 'twenty-six thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(2911, 66491, 'sixty-six thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(2912, 92173, 'ninety-two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(2913, 99166, 'ninety-nine thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(2914, 48223, 'forty-eight thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(2915, 79492, 'seventy-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(2916, 86920, 'eighty-six thousand nine hundred twenty');\nINSERT INTO t2 VALUES(2917, 19417, 'nineteen thousand four hundred seventeen');\nINSERT INTO t2 VALUES(2918, 69327, 'sixty-nine thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(2919, 93837, 'ninety-three thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(2920, 1199, 'one thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(2921, 5761, 'five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(2922, 34693, 'thirty-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(2923, 88188, 'eighty-eight thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(2924, 81504, 'eighty-one thousand five hundred four');\nINSERT INTO t2 VALUES(2925, 15327, 'fifteen thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(2926, 68540, 'sixty-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(2927, 41482, 'forty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(2928, 82895, 'eighty-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(2929, 7391, 'seven thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(2930, 47800, 'forty-seven thousand eight hundred');\nINSERT INTO t2 VALUES(2931, 7269, 'seven thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(2932, 3707, 'three thousand seven hundred seven');\nINSERT INTO t2 VALUES(2933, 50181, 'fifty thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(2934, 52643, 'fifty-two thousand six hundred forty-three');\nINSERT INTO t2 VALUES(2935, 9980, 'nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(2936, 92621, 'ninety-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(2937, 26730, 'twenty-six thousand seven hundred thirty');\nINSERT INTO t2 VALUES(2938, 12252, 'twelve thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(2939, 70921, 'seventy thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(2940, 66155, 'sixty-six thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(2941, 89187, 'eighty-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(2942, 15042, 'fifteen thousand forty-two');\nINSERT INTO t2 VALUES(2943, 1324, 'one thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(2944, 6341, 'six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(2945, 70686, 'seventy thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(2946, 84209, 'eighty-four thousand two hundred nine');\nINSERT INTO t2 VALUES(2947, 62032, 'sixty-two thousand thirty-two');\nINSERT INTO t2 VALUES(2948, 70316, 'seventy thousand three hundred sixteen');\nINSERT INTO t2 VALUES(2949, 63932, 'sixty-three thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(2950, 64623, 'sixty-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(2951, 30333, 'thirty thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(2952, 54556, 'fifty-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(2953, 64679, 'sixty-four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(2954, 73401, 'seventy-three thousand four hundred one');\nINSERT INTO t2 VALUES(2955, 79027, 'seventy-nine thousand twenty-seven');\nINSERT INTO t2 VALUES(2956, 53565, 'fifty-three thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(2957, 77525, 'seventy-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(2958, 45042, 'forty-five thousand forty-two');\nINSERT INTO t2 VALUES(2959, 440, 'four hundred forty');\nINSERT INTO t2 VALUES(2960, 75038, 'seventy-five thousand thirty-eight');\nINSERT INTO t2 VALUES(2961, 90967, 'ninety thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(2962, 69347, 'sixty-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(2963, 59055, 'fifty-nine thousand fifty-five');\nINSERT INTO t2 VALUES(2964, 40643, 'forty thousand six hundred forty-three');\nINSERT INTO t2 VALUES(2965, 14252, 'fourteen thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(2966, 75808, 'seventy-five thousand eight hundred eight');\nINSERT INTO t2 VALUES(2967, 85630, 'eighty-five thousand six hundred thirty');\nINSERT INTO t2 VALUES(2968, 46255, 'forty-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(2969, 35625, 'thirty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(2970, 89525, 'eighty-nine thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(2971, 44141, 'forty-four thousand one hundred forty-one');\nINSERT INTO t2 VALUES(2972, 42816, 'forty-two thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(2973, 87184, 'eighty-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(2974, 56002, 'fifty-six thousand two');\nINSERT INTO t2 VALUES(2975, 68367, 'sixty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(2976, 44941, 'forty-four thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(2977, 2644, 'two thousand six hundred forty-four');\nINSERT INTO t2 VALUES(2978, 56330, 'fifty-six thousand three hundred thirty');\nINSERT INTO t2 VALUES(2979, 5202, 'five thousand two hundred two');\nINSERT INTO t2 VALUES(2980, 33139, 'thirty-three thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(2981, 51009, 'fifty-one thousand nine');\nINSERT INTO t2 VALUES(2982, 47630, 'forty-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(2983, 7461, 'seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(2984, 22446, 'twenty-two thousand four hundred forty-six');\nINSERT INTO t2 VALUES(2985, 18427, 'eighteen thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(2986, 37025, 'thirty-seven thousand twenty-five');\nINSERT INTO t2 VALUES(2987, 18904, 'eighteen thousand nine hundred four');\nINSERT INTO t2 VALUES(2988, 44794, 'forty-four thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(2989, 88618, 'eighty-eight thousand six hundred eighteen');\nINSERT INTO t2 VALUES(2990, 88401, 'eighty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(2991, 30781, 'thirty thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(2992, 92289, 'ninety-two thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(2993, 58959, 'fifty-eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(2994, 69620, 'sixty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(2995, 29403, 'twenty-nine thousand four hundred three');\nINSERT INTO t2 VALUES(2996, 41951, 'forty-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(2997, 60509, 'sixty thousand five hundred nine');\nINSERT INTO t2 VALUES(2998, 73380, 'seventy-three thousand three hundred eighty');\nINSERT INTO t2 VALUES(2999, 99343, 'ninety-nine thousand three hundred forty-three');\nINSERT INTO t2 VALUES(3000, 75507, 'seventy-five thousand five hundred seven');\nINSERT INTO t2 VALUES(3001, 84133, 'eighty-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(3002, 32238, 'thirty-two thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(3003, 30080, 'thirty thousand eighty');\nINSERT INTO t2 VALUES(3004, 57926, 'fifty-seven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3005, 65770, 'sixty-five thousand seven hundred seventy');\nINSERT INTO t2 VALUES(3006, 53641, 'fifty-three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(3007, 17279, 'seventeen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(3008, 69016, 'sixty-nine thousand sixteen');\nINSERT INTO t2 VALUES(3009, 16784, 'sixteen thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(3010, 22297, 'twenty-two thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(3011, 5860, 'five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(3012, 26805, 'twenty-six thousand eight hundred five');\nINSERT INTO t2 VALUES(3013, 98280, 'ninety-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(3014, 78983, 'seventy-eight thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(3015, 92493, 'ninety-two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(3016, 26180, 'twenty-six thousand one hundred eighty');\nINSERT INTO t2 VALUES(3017, 17372, 'seventeen thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(3018, 70053, 'seventy thousand fifty-three');\nINSERT INTO t2 VALUES(3019, 28581, 'twenty-eight thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(3020, 72946, 'seventy-two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(3021, 89803, 'eighty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(3022, 31505, 'thirty-one thousand five hundred five');\nINSERT INTO t2 VALUES(3023, 98659, 'ninety-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(3024, 63328, 'sixty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3025, 94483, 'ninety-four thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3026, 40984, 'forty thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3027, 38871, 'thirty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(3028, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(3029, 51287, 'fifty-one thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(3030, 37854, 'thirty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(3031, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(3032, 42409, 'forty-two thousand four hundred nine');\nINSERT INTO t2 VALUES(3033, 1586, 'one thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(3034, 35078, 'thirty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(3035, 83651, 'eighty-three thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(3036, 92991, 'ninety-two thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(3037, 26555, 'twenty-six thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(3038, 93330, 'ninety-three thousand three hundred thirty');\nINSERT INTO t2 VALUES(3039, 46824, 'forty-six thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(3040, 99657, 'ninety-nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(3041, 72179, 'seventy-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(3042, 80628, 'eighty thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(3043, 86982, 'eighty-six thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(3044, 12544, 'twelve thousand five hundred forty-four');\nINSERT INTO t2 VALUES(3045, 10801, 'ten thousand eight hundred one');\nINSERT INTO t2 VALUES(3046, 98160, 'ninety-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(3047, 3930, 'three thousand nine hundred thirty');\nINSERT INTO t2 VALUES(3048, 61187, 'sixty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(3049, 27569, 'twenty-seven thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(3050, 39982, 'thirty-nine thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(3051, 97139, 'ninety-seven thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(3052, 70663, 'seventy thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(3053, 53889, 'fifty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(3054, 3199, 'three thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(3055, 52922, 'fifty-two thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(3056, 96163, 'ninety-six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(3057, 40751, 'forty thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3058, 77300, 'seventy-seven thousand three hundred');\nINSERT INTO t2 VALUES(3059, 80671, 'eighty thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(3060, 78230, 'seventy-eight thousand two hundred thirty');\nINSERT INTO t2 VALUES(3061, 76552, 'seventy-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(3062, 25175, 'twenty-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(3063, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(3064, 11043, 'eleven thousand forty-three');\nINSERT INTO t2 VALUES(3065, 87093, 'eighty-seven thousand ninety-three');\nINSERT INTO t2 VALUES(3066, 30506, 'thirty thousand five hundred six');\nINSERT INTO t2 VALUES(3067, 59005, 'fifty-nine thousand five');\nINSERT INTO t2 VALUES(3068, 18562, 'eighteen thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3069, 52926, 'fifty-two thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3070, 6, 'six');\nINSERT INTO t2 VALUES(3071, 77330, 'seventy-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(3072, 37520, 'thirty-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(3073, 36346, 'thirty-six thousand three hundred forty-six');\nINSERT INTO t2 VALUES(3074, 18466, 'eighteen thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(3075, 69047, 'sixty-nine thousand forty-seven');\nINSERT INTO t2 VALUES(3076, 34696, 'thirty-four thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(3077, 40382, 'forty thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(3078, 2283, 'two thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(3079, 19846, 'nineteen thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(3080, 44554, 'forty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(3081, 34252, 'thirty-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(3082, 56518, 'fifty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3083, 22294, 'twenty-two thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(3084, 38897, 'thirty-eight thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(3085, 85535, 'eighty-five thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(3086, 14707, 'fourteen thousand seven hundred seven');\nINSERT INTO t2 VALUES(3087, 54579, 'fifty-four thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(3088, 12030, 'twelve thousand thirty');\nINSERT INTO t2 VALUES(3089, 38198, 'thirty-eight thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(3090, 75697, 'seventy-five thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(3091, 15160, 'fifteen thousand one hundred sixty');\nINSERT INTO t2 VALUES(3092, 33849, 'thirty-three thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(3093, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(3094, 83961, 'eighty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(3095, 14431, 'fourteen thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(3096, 69460, 'sixty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(3097, 35173, 'thirty-five thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(3098, 23838, 'twenty-three thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(3099, 64731, 'sixty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(3100, 42935, 'forty-two thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(3101, 5462, 'five thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(3102, 15907, 'fifteen thousand nine hundred seven');\nINSERT INTO t2 VALUES(3103, 83848, 'eighty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(3104, 55149, 'fifty-five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(3105, 61711, 'sixty-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3106, 10361, 'ten thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(3107, 85958, 'eighty-five thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(3108, 4348, 'four thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(3109, 20926, 'twenty thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3110, 2992, 'two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(3111, 90897, 'ninety thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(3112, 77547, 'seventy-seven thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3113, 74027, 'seventy-four thousand twenty-seven');\nINSERT INTO t2 VALUES(3114, 97541, 'ninety-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(3115, 25939, 'twenty-five thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3116, 83636, 'eighty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(3117, 82314, 'eighty-two thousand three hundred fourteen');\nINSERT INTO t2 VALUES(3118, 20680, 'twenty thousand six hundred eighty');\nINSERT INTO t2 VALUES(3119, 64535, 'sixty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(3120, 21480, 'twenty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(3121, 31413, 'thirty-one thousand four hundred thirteen');\nINSERT INTO t2 VALUES(3122, 71463, 'seventy-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(3123, 93353, 'ninety-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(3124, 42717, 'forty-two thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(3125, 42315, 'forty-two thousand three hundred fifteen');\nINSERT INTO t2 VALUES(3126, 65749, 'sixty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(3127, 50512, 'fifty thousand five hundred twelve');\nINSERT INTO t2 VALUES(3128, 49159, 'forty-nine thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(3129, 5456, 'five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(3130, 44222, 'forty-four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(3131, 52032, 'fifty-two thousand thirty-two');\nINSERT INTO t2 VALUES(3132, 46042, 'forty-six thousand forty-two');\nINSERT INTO t2 VALUES(3133, 33728, 'thirty-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(3134, 74991, 'seventy-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(3135, 38135, 'thirty-eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(3136, 28199, 'twenty-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(3137, 79806, 'seventy-nine thousand eight hundred six');\nINSERT INTO t2 VALUES(3138, 22552, 'twenty-two thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(3139, 20039, 'twenty thousand thirty-nine');\nINSERT INTO t2 VALUES(3140, 70719, 'seventy thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(3141, 43840, 'forty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(3142, 49135, 'forty-nine thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(3143, 24607, 'twenty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(3144, 40095, 'forty thousand ninety-five');\nINSERT INTO t2 VALUES(3145, 8362, 'eight thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(3146, 69275, 'sixty-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(3147, 58609, 'fifty-eight thousand six hundred nine');\nINSERT INTO t2 VALUES(3148, 96202, 'ninety-six thousand two hundred two');\nINSERT INTO t2 VALUES(3149, 59445, 'fifty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(3150, 4348, 'four thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(3151, 87408, 'eighty-seven thousand four hundred eight');\nINSERT INTO t2 VALUES(3152, 11956, 'eleven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(3153, 14715, 'fourteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(3154, 22321, 'twenty-two thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(3155, 29757, 'twenty-nine thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(3156, 91314, 'ninety-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(3157, 332, 'three hundred thirty-two');\nINSERT INTO t2 VALUES(3158, 54578, 'fifty-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(3159, 58943, 'fifty-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(3160, 87984, 'eighty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3161, 92178, 'ninety-two thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(3162, 70526, 'seventy thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(3163, 25602, 'twenty-five thousand six hundred two');\nINSERT INTO t2 VALUES(3164, 54693, 'fifty-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(3165, 56334, 'fifty-six thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3166, 6777, 'six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(3167, 91040, 'ninety-one thousand forty');\nINSERT INTO t2 VALUES(3168, 84644, 'eighty-four thousand six hundred forty-four');\nINSERT INTO t2 VALUES(3169, 25150, 'twenty-five thousand one hundred fifty');\nINSERT INTO t2 VALUES(3170, 81363, 'eighty-one thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(3171, 4907, 'four thousand nine hundred seven');\nINSERT INTO t2 VALUES(3172, 94868, 'ninety-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(3173, 68858, 'sixty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(3174, 64623, 'sixty-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3175, 64151, 'sixty-four thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(3176, 32160, 'thirty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(3177, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(3178, 53017, 'fifty-three thousand seventeen');\nINSERT INTO t2 VALUES(3179, 86194, 'eighty-six thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(3180, 74458, 'seventy-four thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(3181, 69101, 'sixty-nine thousand one hundred one');\nINSERT INTO t2 VALUES(3182, 13817, 'thirteen thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(3183, 64824, 'sixty-four thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(3184, 91744, 'ninety-one thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(3185, 35990, 'thirty-five thousand nine hundred ninety');\nINSERT INTO t2 VALUES(3186, 1836, 'one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(3187, 25180, 'twenty-five thousand one hundred eighty');\nINSERT INTO t2 VALUES(3188, 78297, 'seventy-eight thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(3189, 82526, 'eighty-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(3190, 76726, 'seventy-six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(3191, 18740, 'eighteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(3192, 7650, 'seven thousand six hundred fifty');\nINSERT INTO t2 VALUES(3193, 76060, 'seventy-six thousand sixty');\nINSERT INTO t2 VALUES(3194, 79196, 'seventy-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(3195, 8022, 'eight thousand twenty-two');\nINSERT INTO t2 VALUES(3196, 78197, 'seventy-eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(3197, 32855, 'thirty-two thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(3198, 80157, 'eighty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(3199, 75220, 'seventy-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(3200, 18488, 'eighteen thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(3201, 52992, 'fifty-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(3202, 58682, 'fifty-eight thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(3203, 14531, 'fourteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(3204, 95036, 'ninety-five thousand thirty-six');\nINSERT INTO t2 VALUES(3205, 42685, 'forty-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(3206, 64953, 'sixty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(3207, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(3208, 85672, 'eighty-five thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(3209, 93810, 'ninety-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(3210, 74829, 'seventy-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(3211, 12889, 'twelve thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(3212, 65140, 'sixty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(3213, 17447, 'seventeen thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(3214, 90925, 'ninety thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(3215, 53014, 'fifty-three thousand fourteen');\nINSERT INTO t2 VALUES(3216, 10052, 'ten thousand fifty-two');\nINSERT INTO t2 VALUES(3217, 14944, 'fourteen thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(3218, 36298, 'thirty-six thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(3219, 40955, 'forty thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(3220, 13435, 'thirteen thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(3221, 91099, 'ninety-one thousand ninety-nine');\nINSERT INTO t2 VALUES(3222, 18679, 'eighteen thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(3223, 87088, 'eighty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(3224, 17448, 'seventeen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(3225, 19020, 'nineteen thousand twenty');\nINSERT INTO t2 VALUES(3226, 94901, 'ninety-four thousand nine hundred one');\nINSERT INTO t2 VALUES(3227, 22106, 'twenty-two thousand one hundred six');\nINSERT INTO t2 VALUES(3228, 10683, 'ten thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(3229, 51197, 'fifty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(3230, 70796, 'seventy thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(3231, 11292, 'eleven thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3232, 53471, 'fifty-three thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(3233, 47398, 'forty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(3234, 70134, 'seventy thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(3235, 294, 'two hundred ninety-four');\nINSERT INTO t2 VALUES(3236, 90271, 'ninety thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(3237, 58215, 'fifty-eight thousand two hundred fifteen');\nINSERT INTO t2 VALUES(3238, 17441, 'seventeen thousand four hundred forty-one');\nINSERT INTO t2 VALUES(3239, 6216, 'six thousand two hundred sixteen');\nINSERT INTO t2 VALUES(3240, 88339, 'eighty-eight thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(3241, 75132, 'seventy-five thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(3242, 44848, 'forty-four thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(3243, 95979, 'ninety-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(3244, 43187, 'forty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(3245, 39437, 'thirty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(3246, 59833, 'fifty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(3247, 72946, 'seventy-two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(3248, 76610, 'seventy-six thousand six hundred ten');\nINSERT INTO t2 VALUES(3249, 81396, 'eighty-one thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(3250, 29025, 'twenty-nine thousand twenty-five');\nINSERT INTO t2 VALUES(3251, 10017, 'ten thousand seventeen');\nINSERT INTO t2 VALUES(3252, 34055, 'thirty-four thousand fifty-five');\nINSERT INTO t2 VALUES(3253, 55077, 'fifty-five thousand seventy-seven');\nINSERT INTO t2 VALUES(3254, 49354, 'forty-nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3255, 71539, 'seventy-one thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(3256, 24996, 'twenty-four thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(3257, 6157, 'six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(3258, 99514, 'ninety-nine thousand five hundred fourteen');\nINSERT INTO t2 VALUES(3259, 22638, 'twenty-two thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(3260, 56997, 'fifty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(3261, 58242, 'fifty-eight thousand two hundred forty-two');\nINSERT INTO t2 VALUES(3262, 70538, 'seventy thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(3263, 93371, 'ninety-three thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(3264, 22382, 'twenty-two thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(3265, 6486, 'six thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(3266, 15838, 'fifteen thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(3267, 87220, 'eighty-seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(3268, 99892, 'ninety-nine thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(3269, 77807, 'seventy-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(3270, 14234, 'fourteen thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(3271, 21101, 'twenty-one thousand one hundred one');\nINSERT INTO t2 VALUES(3272, 78289, 'seventy-eight thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(3273, 823, 'eight hundred twenty-three');\nINSERT INTO t2 VALUES(3274, 73770, 'seventy-three thousand seven hundred seventy');\nINSERT INTO t2 VALUES(3275, 93721, 'ninety-three thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(3276, 18846, 'eighteen thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(3277, 56669, 'fifty-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(3278, 62504, 'sixty-two thousand five hundred four');\nINSERT INTO t2 VALUES(3279, 69776, 'sixty-nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(3280, 97518, 'ninety-seven thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3281, 64344, 'sixty-four thousand three hundred forty-four');\nINSERT INTO t2 VALUES(3282, 99638, 'ninety-nine thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(3283, 7818, 'seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(3284, 80077, 'eighty thousand seventy-seven');\nINSERT INTO t2 VALUES(3285, 94195, 'ninety-four thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(3286, 47036, 'forty-seven thousand thirty-six');\nINSERT INTO t2 VALUES(3287, 33729, 'thirty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(3288, 29939, 'twenty-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3289, 9016, 'nine thousand sixteen');\nINSERT INTO t2 VALUES(3290, 1702, 'one thousand seven hundred two');\nINSERT INTO t2 VALUES(3291, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t2 VALUES(3292, 64433, 'sixty-four thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(3293, 37502, 'thirty-seven thousand five hundred two');\nINSERT INTO t2 VALUES(3294, 44939, 'forty-four thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3295, 68966, 'sixty-eight thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(3296, 72482, 'seventy-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(3297, 56929, 'fifty-six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(3298, 97779, 'ninety-seven thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(3299, 73940, 'seventy-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(3300, 31320, 'thirty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(3301, 15230, 'fifteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(3302, 63929, 'sixty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(3303, 66155, 'sixty-six thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(3304, 3099, 'three thousand ninety-nine');\nINSERT INTO t2 VALUES(3305, 71533, 'seventy-one thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(3306, 34756, 'thirty-four thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(3307, 15255, 'fifteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(3308, 11272, 'eleven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(3309, 54549, 'fifty-four thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(3310, 28813, 'twenty-eight thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(3311, 94288, 'ninety-four thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(3312, 92516, 'ninety-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(3313, 70699, 'seventy thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3314, 46623, 'forty-six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3315, 67829, 'sixty-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(3316, 45110, 'forty-five thousand one hundred ten');\nINSERT INTO t2 VALUES(3317, 58246, 'fifty-eight thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3318, 6254, 'six thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(3319, 17050, 'seventeen thousand fifty');\nINSERT INTO t2 VALUES(3320, 20710, 'twenty thousand seven hundred ten');\nINSERT INTO t2 VALUES(3321, 23871, 'twenty-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(3322, 98969, 'ninety-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(3323, 25440, 'twenty-five thousand four hundred forty');\nINSERT INTO t2 VALUES(3324, 56060, 'fifty-six thousand sixty');\nINSERT INTO t2 VALUES(3325, 59720, 'fifty-nine thousand seven hundred twenty');\nINSERT INTO t2 VALUES(3326, 87148, 'eighty-seven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(3327, 60483, 'sixty thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3328, 21966, 'twenty-one thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(3329, 84787, 'eighty-four thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(3330, 79780, 'seventy-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(3331, 96765, 'ninety-six thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(3332, 22987, 'twenty-two thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(3333, 53518, 'fifty-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3334, 62843, 'sixty-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(3335, 25933, 'twenty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(3336, 41646, 'forty-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3337, 45237, 'forty-five thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(3338, 54961, 'fifty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(3339, 85423, 'eighty-five thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(3340, 68927, 'sixty-eight thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(3341, 64734, 'sixty-four thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(3342, 92499, 'ninety-two thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(3343, 26274, 'twenty-six thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(3344, 58419, 'fifty-eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(3345, 36959, 'thirty-six thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(3346, 72623, 'seventy-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3347, 98876, 'ninety-eight thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(3348, 94411, 'ninety-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(3349, 69304, 'sixty-nine thousand three hundred four');\nINSERT INTO t2 VALUES(3350, 13652, 'thirteen thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(3351, 39250, 'thirty-nine thousand two hundred fifty');\nINSERT INTO t2 VALUES(3352, 19459, 'nineteen thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(3353, 66835, 'sixty-six thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(3354, 95903, 'ninety-five thousand nine hundred three');\nINSERT INTO t2 VALUES(3355, 70163, 'seventy thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(3356, 44244, 'forty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(3357, 3362, 'three thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(3358, 738, 'seven hundred thirty-eight');\nINSERT INTO t2 VALUES(3359, 51169, 'fifty-one thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(3360, 28504, 'twenty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(3361, 67979, 'sixty-seven thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(3362, 99613, 'ninety-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(3363, 36511, 'thirty-six thousand five hundred eleven');\nINSERT INTO t2 VALUES(3364, 68904, 'sixty-eight thousand nine hundred four');\nINSERT INTO t2 VALUES(3365, 95165, 'ninety-five thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(3366, 86502, 'eighty-six thousand five hundred two');\nINSERT INTO t2 VALUES(3367, 55373, 'fifty-five thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(3368, 12702, 'twelve thousand seven hundred two');\nINSERT INTO t2 VALUES(3369, 51094, 'fifty-one thousand ninety-four');\nINSERT INTO t2 VALUES(3370, 50423, 'fifty thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(3371, 41766, 'forty-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(3372, 25246, 'twenty-five thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3373, 40366, 'forty thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(3374, 29845, 'twenty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(3375, 32808, 'thirty-two thousand eight hundred eight');\nINSERT INTO t2 VALUES(3376, 52345, 'fifty-two thousand three hundred forty-five');\nINSERT INTO t2 VALUES(3377, 54055, 'fifty-four thousand fifty-five');\nINSERT INTO t2 VALUES(3378, 97214, 'ninety-seven thousand two hundred fourteen');\nINSERT INTO t2 VALUES(3379, 81031, 'eighty-one thousand thirty-one');\nINSERT INTO t2 VALUES(3380, 78559, 'seventy-eight thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(3381, 28423, 'twenty-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(3382, 47909, 'forty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(3383, 31237, 'thirty-one thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(3384, 56385, 'fifty-six thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(3385, 74721, 'seventy-four thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(3386, 82882, 'eighty-two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3387, 99646, 'ninety-nine thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3388, 96020, 'ninety-six thousand twenty');\nINSERT INTO t2 VALUES(3389, 59349, 'fifty-nine thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(3390, 46739, 'forty-six thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(3391, 91953, 'ninety-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(3392, 33637, 'thirty-three thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(3393, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(3394, 53714, 'fifty-three thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(3395, 99581, 'ninety-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(3396, 6327, 'six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(3397, 79238, 'seventy-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(3398, 38798, 'thirty-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(3399, 4125, 'four thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(3400, 20030, 'twenty thousand thirty');\nINSERT INTO t2 VALUES(3401, 31162, 'thirty-one thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(3402, 47698, 'forty-seven thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(3403, 77363, 'seventy-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(3404, 76115, 'seventy-six thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3405, 9146, 'nine thousand one hundred forty-six');\nINSERT INTO t2 VALUES(3406, 36983, 'thirty-six thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(3407, 52519, 'fifty-two thousand five hundred nineteen');\nINSERT INTO t2 VALUES(3408, 7031, 'seven thousand thirty-one');\nINSERT INTO t2 VALUES(3409, 80875, 'eighty thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(3410, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t2 VALUES(3411, 47006, 'forty-seven thousand six');\nINSERT INTO t2 VALUES(3412, 14351, 'fourteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(3413, 16713, 'sixteen thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(3414, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t2 VALUES(3415, 22926, 'twenty-two thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3416, 21751, 'twenty-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3417, 79164, 'seventy-nine thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(3418, 79122, 'seventy-nine thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(3419, 29793, 'twenty-nine thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(3420, 70882, 'seventy thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3421, 58331, 'fifty-eight thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(3422, 77125, 'seventy-seven thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(3423, 57176, 'fifty-seven thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(3424, 55246, 'fifty-five thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3425, 42733, 'forty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3426, 43354, 'forty-three thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3427, 66353, 'sixty-six thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(3428, 61320, 'sixty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(3429, 17328, 'seventeen thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3430, 59504, 'fifty-nine thousand five hundred four');\nINSERT INTO t2 VALUES(3431, 77446, 'seventy-seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(3432, 78882, 'seventy-eight thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3433, 19092, 'nineteen thousand ninety-two');\nINSERT INTO t2 VALUES(3434, 29837, 'twenty-nine thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(3435, 97048, 'ninety-seven thousand forty-eight');\nINSERT INTO t2 VALUES(3436, 3261, 'three thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(3437, 93304, 'ninety-three thousand three hundred four');\nINSERT INTO t2 VALUES(3438, 39311, 'thirty-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(3439, 51098, 'fifty-one thousand ninety-eight');\nINSERT INTO t2 VALUES(3440, 59576, 'fifty-nine thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(3441, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t2 VALUES(3442, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t2 VALUES(3443, 80022, 'eighty thousand twenty-two');\nINSERT INTO t2 VALUES(3444, 18465, 'eighteen thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(3445, 96572, 'ninety-six thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(3446, 40804, 'forty thousand eight hundred four');\nINSERT INTO t2 VALUES(3447, 37781, 'thirty-seven thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(3448, 48292, 'forty-eight thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3449, 8752, 'eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(3450, 92676, 'ninety-two thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(3451, 43207, 'forty-three thousand two hundred seven');\nINSERT INTO t2 VALUES(3452, 613, 'six hundred thirteen');\nINSERT INTO t2 VALUES(3453, 67358, 'sixty-seven thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(3454, 57843, 'fifty-seven thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(3455, 65505, 'sixty-five thousand five hundred five');\nINSERT INTO t2 VALUES(3456, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(3457, 23259, 'twenty-three thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(3458, 59068, 'fifty-nine thousand sixty-eight');\nINSERT INTO t2 VALUES(3459, 18623, 'eighteen thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(3460, 39532, 'thirty-nine thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(3461, 56300, 'fifty-six thousand three hundred');\nINSERT INTO t2 VALUES(3462, 16806, 'sixteen thousand eight hundred six');\nINSERT INTO t2 VALUES(3463, 79329, 'seventy-nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(3464, 80980, 'eighty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(3465, 33166, 'thirty-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(3466, 63230, 'sixty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(3467, 77583, 'seventy-seven thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(3468, 94025, 'ninety-four thousand twenty-five');\nINSERT INTO t2 VALUES(3469, 89483, 'eighty-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3470, 91304, 'ninety-one thousand three hundred four');\nINSERT INTO t2 VALUES(3471, 18692, 'eighteen thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(3472, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(3473, 19362, 'nineteen thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(3474, 64142, 'sixty-four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(3475, 31830, 'thirty-one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(3476, 89311, 'eighty-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(3477, 17025, 'seventeen thousand twenty-five');\nINSERT INTO t2 VALUES(3478, 91668, 'ninety-one thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(3479, 18688, 'eighteen thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(3480, 4247, 'four thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3481, 50185, 'fifty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(3482, 52285, 'fifty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(3483, 3777, 'three thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(3484, 80295, 'eighty thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(3485, 90562, 'ninety thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3486, 10098, 'ten thousand ninety-eight');\nINSERT INTO t2 VALUES(3487, 40706, 'forty thousand seven hundred six');\nINSERT INTO t2 VALUES(3488, 39369, 'thirty-nine thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(3489, 4547, 'four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3490, 10985, 'ten thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(3491, 47247, 'forty-seven thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3492, 36993, 'thirty-six thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(3493, 60076, 'sixty thousand seventy-six');\nINSERT INTO t2 VALUES(3494, 59469, 'fifty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(3495, 31562, 'thirty-one thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3496, 61847, 'sixty-one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(3497, 37215, 'thirty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(3498, 76642, 'seventy-six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(3499, 92402, 'ninety-two thousand four hundred two');\nINSERT INTO t2 VALUES(3500, 41986, 'forty-one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(3501, 2680, 'two thousand six hundred eighty');\nINSERT INTO t2 VALUES(3502, 72800, 'seventy-two thousand eight hundred');\nINSERT INTO t2 VALUES(3503, 98335, 'ninety-eight thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(3504, 71051, 'seventy-one thousand fifty-one');\nINSERT INTO t2 VALUES(3505, 46202, 'forty-six thousand two hundred two');\nINSERT INTO t2 VALUES(3506, 63475, 'sixty-three thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(3507, 71129, 'seventy-one thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(3508, 7246, 'seven thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3509, 64159, 'sixty-four thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(3510, 73764, 'seventy-three thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(3511, 13414, 'thirteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(3512, 94177, 'ninety-four thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(3513, 56445, 'fifty-six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(3514, 11530, 'eleven thousand five hundred thirty');\nINSERT INTO t2 VALUES(3515, 39867, 'thirty-nine thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(3516, 37914, 'thirty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(3517, 62936, 'sixty-two thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(3518, 83949, 'eighty-three thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(3519, 12285, 'twelve thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(3520, 84970, 'eighty-four thousand nine hundred seventy');\nINSERT INTO t2 VALUES(3521, 94285, 'ninety-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(3522, 94582, 'ninety-four thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(3523, 77138, 'seventy-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(3524, 96699, 'ninety-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3525, 92895, 'ninety-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(3526, 46923, 'forty-six thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(3527, 45937, 'forty-five thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(3528, 72410, 'seventy-two thousand four hundred ten');\nINSERT INTO t2 VALUES(3529, 6020, 'six thousand twenty');\nINSERT INTO t2 VALUES(3530, 954, 'nine hundred fifty-four');\nINSERT INTO t2 VALUES(3531, 62276, 'sixty-two thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(3532, 30830, 'thirty thousand eight hundred thirty');\nINSERT INTO t2 VALUES(3533, 15042, 'fifteen thousand forty-two');\nINSERT INTO t2 VALUES(3534, 95069, 'ninety-five thousand sixty-nine');\nINSERT INTO t2 VALUES(3535, 55683, 'fifty-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(3536, 55488, 'fifty-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(3537, 64828, 'sixty-four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3538, 24790, 'twenty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(3539, 19429, 'nineteen thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(3540, 34785, 'thirty-four thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(3541, 21011, 'twenty-one thousand eleven');\nINSERT INTO t2 VALUES(3542, 30700, 'thirty thousand seven hundred');\nINSERT INTO t2 VALUES(3543, 75483, 'seventy-five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3544, 52547, 'fifty-two thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3545, 31185, 'thirty-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(3546, 70808, 'seventy thousand eight hundred eight');\nINSERT INTO t2 VALUES(3547, 30730, 'thirty thousand seven hundred thirty');\nINSERT INTO t2 VALUES(3548, 81751, 'eighty-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3549, 59115, 'fifty-nine thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3550, 5455, 'five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(3551, 75921, 'seventy-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(3552, 58632, 'fifty-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(3553, 7828, 'seven thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3554, 15520, 'fifteen thousand five hundred twenty');\nINSERT INTO t2 VALUES(3555, 1749, 'one thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(3556, 4642, 'four thousand six hundred forty-two');\nINSERT INTO t2 VALUES(3557, 4770, 'four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(3558, 54431, 'fifty-four thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(3559, 20855, 'twenty thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(3560, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t2 VALUES(3561, 40008, 'forty thousand eight');\nINSERT INTO t2 VALUES(3562, 95681, 'ninety-five thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(3563, 75699, 'seventy-five thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3564, 43610, 'forty-three thousand six hundred ten');\nINSERT INTO t2 VALUES(3565, 55614, 'fifty-five thousand six hundred fourteen');\nINSERT INTO t2 VALUES(3566, 34354, 'thirty-four thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3567, 920, 'nine hundred twenty');\nINSERT INTO t2 VALUES(3568, 47582, 'forty-seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(3569, 1028, 'one thousand twenty-eight');\nINSERT INTO t2 VALUES(3570, 30341, 'thirty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(3571, 29131, 'twenty-nine thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(3572, 97796, 'ninety-seven thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(3573, 86793, 'eighty-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(3574, 5320, 'five thousand three hundred twenty');\nINSERT INTO t2 VALUES(3575, 94072, 'ninety-four thousand seventy-two');\nINSERT INTO t2 VALUES(3576, 24303, 'twenty-four thousand three hundred three');\nINSERT INTO t2 VALUES(3577, 93820, 'ninety-three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(3578, 62865, 'sixty-two thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(3579, 38733, 'thirty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3580, 42334, 'forty-two thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3581, 79400, 'seventy-nine thousand four hundred');\nINSERT INTO t2 VALUES(3582, 40253, 'forty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(3583, 69136, 'sixty-nine thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(3584, 54164, 'fifty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(3585, 62394, 'sixty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(3586, 68173, 'sixty-eight thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(3587, 70208, 'seventy thousand two hundred eight');\nINSERT INTO t2 VALUES(3588, 88806, 'eighty-eight thousand eight hundred six');\nINSERT INTO t2 VALUES(3589, 3430, 'three thousand four hundred thirty');\nINSERT INTO t2 VALUES(3590, 91534, 'ninety-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(3591, 7192, 'seven thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(3592, 44758, 'forty-four thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(3593, 57347, 'fifty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(3594, 72945, 'seventy-two thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(3595, 8275, 'eight thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(3596, 35801, 'thirty-five thousand eight hundred one');\nINSERT INTO t2 VALUES(3597, 38557, 'thirty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(3598, 49555, 'forty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(3599, 14262, 'fourteen thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(3600, 43515, 'forty-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(3601, 71059, 'seventy-one thousand fifty-nine');\nINSERT INTO t2 VALUES(3602, 3819, 'three thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(3603, 19583, 'nineteen thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(3604, 34751, 'thirty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3605, 34237, 'thirty-four thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(3606, 33187, 'thirty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(3607, 8186, 'eight thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(3608, 68143, 'sixty-eight thousand one hundred forty-three');\nINSERT INTO t2 VALUES(3609, 92843, 'ninety-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(3610, 82475, 'eighty-two thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(3611, 51131, 'fifty-one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(3612, 62839, 'sixty-two thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(3613, 65849, 'sixty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(3614, 69164, 'sixty-nine thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(3615, 90354, 'ninety thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(3616, 35248, 'thirty-five thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(3617, 8706, 'eight thousand seven hundred six');\nINSERT INTO t2 VALUES(3618, 53867, 'fifty-three thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(3619, 28201, 'twenty-eight thousand two hundred one');\nINSERT INTO t2 VALUES(3620, 38230, 'thirty-eight thousand two hundred thirty');\nINSERT INTO t2 VALUES(3621, 96085, 'ninety-six thousand eighty-five');\nINSERT INTO t2 VALUES(3622, 22493, 'twenty-two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(3623, 11328, 'eleven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3624, 78635, 'seventy-eight thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(3625, 17955, 'seventeen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(3626, 62422, 'sixty-two thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(3627, 39236, 'thirty-nine thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(3628, 1788, 'one thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(3629, 71202, 'seventy-one thousand two hundred two');\nINSERT INTO t2 VALUES(3630, 33719, 'thirty-three thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(3631, 66093, 'sixty-six thousand ninety-three');\nINSERT INTO t2 VALUES(3632, 69927, 'sixty-nine thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(3633, 46523, 'forty-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(3634, 19984, 'nineteen thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3635, 19454, 'nineteen thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(3636, 47699, 'forty-seven thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(3637, 45834, 'forty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(3638, 14846, 'fourteen thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(3639, 20487, 'twenty thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(3640, 57392, 'fifty-seven thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3641, 88772, 'eighty-eight thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(3642, 73118, 'seventy-three thousand one hundred eighteen');\nINSERT INTO t2 VALUES(3643, 29918, 'twenty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(3644, 82863, 'eighty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(3645, 5393, 'five thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(3646, 30713, 'thirty thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(3647, 19325, 'nineteen thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(3648, 11926, 'eleven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(3649, 28917, 'twenty-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(3650, 63194, 'sixty-three thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(3651, 94885, 'ninety-four thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(3652, 26602, 'twenty-six thousand six hundred two');\nINSERT INTO t2 VALUES(3653, 40673, 'forty thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(3654, 70009, 'seventy thousand nine');\nINSERT INTO t2 VALUES(3655, 12997, 'twelve thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(3656, 79751, 'seventy-nine thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3657, 55886, 'fifty-five thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(3658, 25845, 'twenty-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(3659, 23357, 'twenty-three thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(3660, 76086, 'seventy-six thousand eighty-six');\nINSERT INTO t2 VALUES(3661, 48247, 'forty-eight thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3662, 61115, 'sixty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3663, 77283, 'seventy-seven thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(3664, 4435, 'four thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(3665, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(3666, 8807, 'eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(3667, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(3668, 27321, 'twenty-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(3669, 73247, 'seventy-three thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3670, 44684, 'forty-four thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(3671, 59641, 'fifty-nine thousand six hundred forty-one');\nINSERT INTO t2 VALUES(3672, 32592, 'thirty-two thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(3673, 90266, 'ninety thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(3674, 15418, 'fifteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3675, 5464, 'five thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(3676, 19066, 'nineteen thousand sixty-six');\nINSERT INTO t2 VALUES(3677, 70762, 'seventy thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(3678, 7286, 'seven thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(3679, 54476, 'fifty-four thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(3680, 87819, 'eighty-seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(3681, 13560, 'thirteen thousand five hundred sixty');\nINSERT INTO t2 VALUES(3682, 2906, 'two thousand nine hundred six');\nINSERT INTO t2 VALUES(3683, 35785, 'thirty-five thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(3684, 46144, 'forty-six thousand one hundred forty-four');\nINSERT INTO t2 VALUES(3685, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t2 VALUES(3686, 61297, 'sixty-one thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(3687, 38225, 'thirty-eight thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(3688, 72518, 'seventy-two thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3689, 81165, 'eighty-one thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(3690, 93299, 'ninety-three thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(3691, 67364, 'sixty-seven thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(3692, 43724, 'forty-three thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(3693, 64556, 'sixty-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(3694, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(3695, 5257, 'five thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(3696, 67126, 'sixty-seven thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(3697, 53896, 'fifty-three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(3698, 99048, 'ninety-nine thousand forty-eight');\nINSERT INTO t2 VALUES(3699, 29883, 'twenty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(3700, 41000, 'forty-one thousand');\nINSERT INTO t2 VALUES(3701, 98635, 'ninety-eight thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(3702, 29392, 'twenty-nine thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3703, 10692, 'ten thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(3704, 94217, 'ninety-four thousand two hundred seventeen');\nINSERT INTO t2 VALUES(3705, 75692, 'seventy-five thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(3706, 86601, 'eighty-six thousand six hundred one');\nINSERT INTO t2 VALUES(3707, 73873, 'seventy-three thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(3708, 54818, 'fifty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(3709, 25877, 'twenty-five thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(3710, 16828, 'sixteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3711, 8547, 'eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(3712, 53747, 'fifty-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(3713, 17889, 'seventeen thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(3714, 73856, 'seventy-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(3715, 85289, 'eighty-five thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(3716, 15643, 'fifteen thousand six hundred forty-three');\nINSERT INTO t2 VALUES(3717, 8609, 'eight thousand six hundred nine');\nINSERT INTO t2 VALUES(3718, 48670, 'forty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(3719, 54886, 'fifty-four thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(3720, 87184, 'eighty-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(3721, 44125, 'forty-four thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(3722, 81507, 'eighty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(3723, 93093, 'ninety-three thousand ninety-three');\nINSERT INTO t2 VALUES(3724, 88383, 'eighty-eight thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(3725, 69022, 'sixty-nine thousand twenty-two');\nINSERT INTO t2 VALUES(3726, 65629, 'sixty-five thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(3727, 67196, 'sixty-seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(3728, 84243, 'eighty-four thousand two hundred forty-three');\nINSERT INTO t2 VALUES(3729, 42058, 'forty-two thousand fifty-eight');\nINSERT INTO t2 VALUES(3730, 63197, 'sixty-three thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(3731, 22264, 'twenty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(3732, 58744, 'fifty-eight thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(3733, 61203, 'sixty-one thousand two hundred three');\nINSERT INTO t2 VALUES(3734, 57984, 'fifty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(3735, 26082, 'twenty-six thousand eighty-two');\nINSERT INTO t2 VALUES(3736, 80371, 'eighty thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(3737, 63320, 'sixty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(3738, 62875, 'sixty-two thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(3739, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(3740, 14711, 'fourteen thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3741, 69546, 'sixty-nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(3742, 55878, 'fifty-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(3743, 32801, 'thirty-two thousand eight hundred one');\nINSERT INTO t2 VALUES(3744, 67356, 'sixty-seven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(3745, 86036, 'eighty-six thousand thirty-six');\nINSERT INTO t2 VALUES(3746, 24650, 'twenty-four thousand six hundred fifty');\nINSERT INTO t2 VALUES(3747, 83466, 'eighty-three thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(3748, 56492, 'fifty-six thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(3749, 36693, 'thirty-six thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(3750, 66565, 'sixty-six thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(3751, 34868, 'thirty-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(3752, 8102, 'eight thousand one hundred two');\nINSERT INTO t2 VALUES(3753, 40664, 'forty thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(3754, 36053, 'thirty-six thousand fifty-three');\nINSERT INTO t2 VALUES(3755, 13391, 'thirteen thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(3756, 58838, 'fifty-eight thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(3757, 11765, 'eleven thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(3758, 56726, 'fifty-six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(3759, 94366, 'ninety-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(3760, 74777, 'seventy-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(3761, 63537, 'sixty-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(3762, 82316, 'eighty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(3763, 23294, 'twenty-three thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(3764, 68941, 'sixty-eight thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(3765, 81687, 'eighty-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(3766, 95960, 'ninety-five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(3767, 89093, 'eighty-nine thousand ninety-three');\nINSERT INTO t2 VALUES(3768, 71373, 'seventy-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(3769, 67005, 'sixty-seven thousand five');\nINSERT INTO t2 VALUES(3770, 16053, 'sixteen thousand fifty-three');\nINSERT INTO t2 VALUES(3771, 80585, 'eighty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(3772, 35969, 'thirty-five thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(3773, 38560, 'thirty-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(3774, 47373, 'forty-seven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(3775, 45263, 'forty-five thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(3776, 46904, 'forty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(3777, 11243, 'eleven thousand two hundred forty-three');\nINSERT INTO t2 VALUES(3778, 51491, 'fifty-one thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(3779, 68380, 'sixty-eight thousand three hundred eighty');\nINSERT INTO t2 VALUES(3780, 93130, 'ninety-three thousand one hundred thirty');\nINSERT INTO t2 VALUES(3781, 58991, 'fifty-eight thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(3782, 95778, 'ninety-five thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(3783, 97498, 'ninety-seven thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(3784, 60503, 'sixty thousand five hundred three');\nINSERT INTO t2 VALUES(3785, 4096, 'four thousand ninety-six');\nINSERT INTO t2 VALUES(3786, 66463, 'sixty-six thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(3787, 22228, 'twenty-two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(3788, 33099, 'thirty-three thousand ninety-nine');\nINSERT INTO t2 VALUES(3789, 39462, 'thirty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(3790, 76850, 'seventy-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(3791, 62149, 'sixty-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(3792, 85451, 'eighty-five thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(3793, 62002, 'sixty-two thousand two');\nINSERT INTO t2 VALUES(3794, 21938, 'twenty-one thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(3795, 11246, 'eleven thousand two hundred forty-six');\nINSERT INTO t2 VALUES(3796, 43544, 'forty-three thousand five hundred forty-four');\nINSERT INTO t2 VALUES(3797, 60711, 'sixty thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3798, 10079, 'ten thousand seventy-nine');\nINSERT INTO t2 VALUES(3799, 48214, 'forty-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(3800, 99392, 'ninety-nine thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3801, 35166, 'thirty-five thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(3802, 9562, 'nine thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3803, 46966, 'forty-six thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(3804, 55642, 'fifty-five thousand six hundred forty-two');\nINSERT INTO t2 VALUES(3805, 55483, 'fifty-five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(3806, 17111, 'seventeen thousand one hundred eleven');\nINSERT INTO t2 VALUES(3807, 27591, 'twenty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(3808, 87309, 'eighty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(3809, 34334, 'thirty-four thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3810, 60029, 'sixty thousand twenty-nine');\nINSERT INTO t2 VALUES(3811, 52959, 'fifty-two thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(3812, 79293, 'seventy-nine thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(3813, 6312, 'six thousand three hundred twelve');\nINSERT INTO t2 VALUES(3814, 85613, 'eighty-five thousand six hundred thirteen');\nINSERT INTO t2 VALUES(3815, 26533, 'twenty-six thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(3816, 67859, 'sixty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(3817, 34969, 'thirty-four thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(3818, 84178, 'eighty-four thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(3819, 63392, 'sixty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(3820, 17888, 'seventeen thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(3821, 63319, 'sixty-three thousand three hundred nineteen');\nINSERT INTO t2 VALUES(3822, 22573, 'twenty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(3823, 40494, 'forty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(3824, 87258, 'eighty-seven thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(3825, 41353, 'forty-one thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(3826, 16221, 'sixteen thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(3827, 47954, 'forty-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(3828, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t2 VALUES(3829, 42031, 'forty-two thousand thirty-one');\nINSERT INTO t2 VALUES(3830, 91612, 'ninety-one thousand six hundred twelve');\nINSERT INTO t2 VALUES(3831, 1916, 'one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(3832, 67772, 'sixty-seven thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(3833, 71298, 'seventy-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(3834, 45935, 'forty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(3835, 46271, 'forty-six thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(3836, 44317, 'forty-four thousand three hundred seventeen');\nINSERT INTO t2 VALUES(3837, 19746, 'nineteen thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(3838, 63509, 'sixty-three thousand five hundred nine');\nINSERT INTO t2 VALUES(3839, 75428, 'seventy-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(3840, 65418, 'sixty-five thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3841, 99711, 'ninety-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(3842, 84912, 'eighty-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(3843, 91437, 'ninety-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(3844, 94740, 'ninety-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(3845, 90516, 'ninety thousand five hundred sixteen');\nINSERT INTO t2 VALUES(3846, 67898, 'sixty-seven thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(3847, 85588, 'eighty-five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(3848, 32780, 'thirty-two thousand seven hundred eighty');\nINSERT INTO t2 VALUES(3849, 58006, 'fifty-eight thousand six');\nINSERT INTO t2 VALUES(3850, 75005, 'seventy-five thousand five');\nINSERT INTO t2 VALUES(3851, 75615, 'seventy-five thousand six hundred fifteen');\nINSERT INTO t2 VALUES(3852, 76377, 'seventy-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(3853, 968, 'nine hundred sixty-eight');\nINSERT INTO t2 VALUES(3854, 9238, 'nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(3855, 49070, 'forty-nine thousand seventy');\nINSERT INTO t2 VALUES(3856, 96741, 'ninety-six thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(3857, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(3858, 95337, 'ninety-five thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(3859, 52917, 'fifty-two thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(3860, 54334, 'fifty-four thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(3861, 56139, 'fifty-six thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(3862, 93200, 'ninety-three thousand two hundred');\nINSERT INTO t2 VALUES(3863, 19690, 'nineteen thousand six hundred ninety');\nINSERT INTO t2 VALUES(3864, 52828, 'fifty-two thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(3865, 98402, 'ninety-eight thousand four hundred two');\nINSERT INTO t2 VALUES(3866, 2100, 'two thousand one hundred');\nINSERT INTO t2 VALUES(3867, 43675, 'forty-three thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(3868, 10024, 'ten thousand twenty-four');\nINSERT INTO t2 VALUES(3869, 31538, 'thirty-one thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(3870, 21797, 'twenty-one thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(3871, 4973, 'four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(3872, 61882, 'sixty-one thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(3873, 65290, 'sixty-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(3874, 1100, 'one thousand one hundred');\nINSERT INTO t2 VALUES(3875, 71229, 'seventy-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(3876, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(3877, 55184, 'fifty-five thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(3878, 99269, 'ninety-nine thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(3879, 12733, 'twelve thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3880, 62441, 'sixty-two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(3881, 40129, 'forty thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(3882, 83255, 'eighty-three thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(3883, 27820, 'twenty-seven thousand eight hundred twenty');\nINSERT INTO t2 VALUES(3884, 79113, 'seventy-nine thousand one hundred thirteen');\nINSERT INTO t2 VALUES(3885, 14528, 'fourteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(3886, 20056, 'twenty thousand fifty-six');\nINSERT INTO t2 VALUES(3887, 18646, 'eighteen thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3888, 87438, 'eighty-seven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(3889, 9494, 'nine thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(3890, 50518, 'fifty thousand five hundred eighteen');\nINSERT INTO t2 VALUES(3891, 86714, 'eighty-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(3892, 36556, 'thirty-six thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(3893, 75431, 'seventy-five thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(3894, 55646, 'fifty-five thousand six hundred forty-six');\nINSERT INTO t2 VALUES(3895, 37113, 'thirty-seven thousand one hundred thirteen');\nINSERT INTO t2 VALUES(3896, 23366, 'twenty-three thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(3897, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(3898, 94562, 'ninety-four thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(3899, 37519, 'thirty-seven thousand five hundred nineteen');\nINSERT INTO t2 VALUES(3900, 17632, 'seventeen thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(3901, 38403, 'thirty-eight thousand four hundred three');\nINSERT INTO t2 VALUES(3902, 94568, 'ninety-four thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(3903, 45163, 'forty-five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(3904, 43773, 'forty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(3905, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(3906, 22134, 'twenty-two thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(3907, 95176, 'ninety-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(3908, 87972, 'eighty-seven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(3909, 71001, 'seventy-one thousand one');\nINSERT INTO t2 VALUES(3910, 52710, 'fifty-two thousand seven hundred ten');\nINSERT INTO t2 VALUES(3911, 40332, 'forty thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(3912, 75461, 'seventy-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(3913, 69119, 'sixty-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(3914, 3350, 'three thousand three hundred fifty');\nINSERT INTO t2 VALUES(3915, 15054, 'fifteen thousand fifty-four');\nINSERT INTO t2 VALUES(3916, 34744, 'thirty-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(3917, 17681, 'seventeen thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(3918, 6707, 'six thousand seven hundred seven');\nINSERT INTO t2 VALUES(3919, 39451, 'thirty-nine thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(3920, 18487, 'eighteen thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(3921, 70543, 'seventy thousand five hundred forty-three');\nINSERT INTO t2 VALUES(3922, 12007, 'twelve thousand seven');\nINSERT INTO t2 VALUES(3923, 96737, 'ninety-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(3924, 12895, 'twelve thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(3925, 96657, 'ninety-six thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(3926, 38542, 'thirty-eight thousand five hundred forty-two');\nINSERT INTO t2 VALUES(3927, 51115, 'fifty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(3928, 81595, 'eighty-one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(3929, 12185, 'twelve thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(3930, 4835, 'four thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(3931, 61419, 'sixty-one thousand four hundred nineteen');\nINSERT INTO t2 VALUES(3932, 91269, 'ninety-one thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(3933, 52630, 'fifty-two thousand six hundred thirty');\nINSERT INTO t2 VALUES(3934, 93973, 'ninety-three thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(3935, 44786, 'forty-four thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(3936, 27317, 'twenty-seven thousand three hundred seventeen');\nINSERT INTO t2 VALUES(3937, 91548, 'ninety-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(3938, 1328, 'one thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(3939, 71652, 'seventy-one thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(3940, 80418, 'eighty thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3941, 23967, 'twenty-three thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(3942, 9332, 'nine thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(3943, 75044, 'seventy-five thousand forty-four');\nINSERT INTO t2 VALUES(3944, 64751, 'sixty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(3945, 77527, 'seventy-seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(3946, 7631, 'seven thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(3947, 96320, 'ninety-six thousand three hundred twenty');\nINSERT INTO t2 VALUES(3948, 30337, 'thirty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(3949, 22733, 'twenty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(3950, 20506, 'twenty thousand five hundred six');\nINSERT INTO t2 VALUES(3951, 83774, 'eighty-three thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(3952, 80109, 'eighty thousand one hundred nine');\nINSERT INTO t2 VALUES(3953, 5008, 'five thousand eight');\nINSERT INTO t2 VALUES(3954, 3949, 'three thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(3955, 62418, 'sixty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3956, 54088, 'fifty-four thousand eighty-eight');\nINSERT INTO t2 VALUES(3957, 36788, 'thirty-six thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(3958, 24950, 'twenty-four thousand nine hundred fifty');\nINSERT INTO t2 VALUES(3959, 37859, 'thirty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(3960, 67928, 'sixty-seven thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(3961, 65292, 'sixty-five thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3962, 40668, 'forty thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(3963, 46409, 'forty-six thousand four hundred nine');\nINSERT INTO t2 VALUES(3964, 111, 'one hundred eleven');\nINSERT INTO t2 VALUES(3965, 64791, 'sixty-four thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(3966, 84418, 'eighty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(3967, 29140, 'twenty-nine thousand one hundred forty');\nINSERT INTO t2 VALUES(3968, 48763, 'forty-eight thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(3969, 32590, 'thirty-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(3970, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(3971, 76630, 'seventy-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(3972, 32916, 'thirty-two thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(3973, 23346, 'twenty-three thousand three hundred forty-six');\nINSERT INTO t2 VALUES(3974, 80830, 'eighty thousand eight hundred thirty');\nINSERT INTO t2 VALUES(3975, 84532, 'eighty-four thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(3976, 59437, 'fifty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(3977, 69224, 'sixty-nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(3978, 69787, 'sixty-nine thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(3979, 85294, 'eighty-five thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(3980, 28056, 'twenty-eight thousand fifty-six');\nINSERT INTO t2 VALUES(3981, 45672, 'forty-five thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(3982, 57591, 'fifty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(3983, 15427, 'fifteen thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(3984, 79946, 'seventy-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(3985, 9897, 'nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(3986, 10501, 'ten thousand five hundred one');\nINSERT INTO t2 VALUES(3987, 36033, 'thirty-six thousand thirty-three');\nINSERT INTO t2 VALUES(3988, 62130, 'sixty-two thousand one hundred thirty');\nINSERT INTO t2 VALUES(3989, 9579, 'nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(3990, 20713, 'twenty thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(3991, 59247, 'fifty-nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(3992, 36997, 'thirty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(3993, 69292, 'sixty-nine thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(3994, 36219, 'thirty-six thousand two hundred nineteen');\nINSERT INTO t2 VALUES(3995, 20939, 'twenty thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(3996, 17032, 'seventeen thousand thirty-two');\nINSERT INTO t2 VALUES(3997, 6416, 'six thousand four hundred sixteen');\nINSERT INTO t2 VALUES(3998, 97039, 'ninety-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(3999, 28349, 'twenty-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(4000, 85245, 'eighty-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(4001, 83826, 'eighty-three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(4002, 94231, 'ninety-four thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(4003, 58912, 'fifty-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(4004, 781, 'seven hundred eighty-one');\nINSERT INTO t2 VALUES(4005, 13913, 'thirteen thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(4006, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(4007, 19911, 'nineteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(4008, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(4009, 70757, 'seventy thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(4010, 87343, 'eighty-seven thousand three hundred forty-three');\nINSERT INTO t2 VALUES(4011, 23398, 'twenty-three thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(4012, 70196, 'seventy thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(4013, 49130, 'forty-nine thousand one hundred thirty');\nINSERT INTO t2 VALUES(4014, 96997, 'ninety-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(4015, 72451, 'seventy-two thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(4016, 32489, 'thirty-two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(4017, 68117, 'sixty-eight thousand one hundred seventeen');\nINSERT INTO t2 VALUES(4018, 6930, 'six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(4019, 48308, 'forty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(4020, 82773, 'eighty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(4021, 67732, 'sixty-seven thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(4022, 44346, 'forty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(4023, 70109, 'seventy thousand one hundred nine');\nINSERT INTO t2 VALUES(4024, 46332, 'forty-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(4025, 19376, 'nineteen thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(4026, 72044, 'seventy-two thousand forty-four');\nINSERT INTO t2 VALUES(4027, 91391, 'ninety-one thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(4028, 89435, 'eighty-nine thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(4029, 61157, 'sixty-one thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(4030, 67596, 'sixty-seven thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(4031, 29183, 'twenty-nine thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(4032, 73872, 'seventy-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(4033, 19767, 'nineteen thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(4034, 55028, 'fifty-five thousand twenty-eight');\nINSERT INTO t2 VALUES(4035, 70173, 'seventy thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4036, 91983, 'ninety-one thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(4037, 77067, 'seventy-seven thousand sixty-seven');\nINSERT INTO t2 VALUES(4038, 63202, 'sixty-three thousand two hundred two');\nINSERT INTO t2 VALUES(4039, 80705, 'eighty thousand seven hundred five');\nINSERT INTO t2 VALUES(4040, 18086, 'eighteen thousand eighty-six');\nINSERT INTO t2 VALUES(4041, 85624, 'eighty-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(4042, 1454, 'one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(4043, 71581, 'seventy-one thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(4044, 32723, 'thirty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(4045, 39370, 'thirty-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(4046, 46108, 'forty-six thousand one hundred eight');\nINSERT INTO t2 VALUES(4047, 97070, 'ninety-seven thousand seventy');\nINSERT INTO t2 VALUES(4048, 49315, 'forty-nine thousand three hundred fifteen');\nINSERT INTO t2 VALUES(4049, 31128, 'thirty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(4050, 39050, 'thirty-nine thousand fifty');\nINSERT INTO t2 VALUES(4051, 3030, 'three thousand thirty');\nINSERT INTO t2 VALUES(4052, 85921, 'eighty-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(4053, 81196, 'eighty-one thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(4054, 25754, 'twenty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(4055, 4502, 'four thousand five hundred two');\nINSERT INTO t2 VALUES(4056, 57215, 'fifty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(4057, 1265, 'one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(4058, 32390, 'thirty-two thousand three hundred ninety');\nINSERT INTO t2 VALUES(4059, 78528, 'seventy-eight thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4060, 17892, 'seventeen thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(4061, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(4062, 89191, 'eighty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(4063, 75876, 'seventy-five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(4064, 6388, 'six thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(4065, 74466, 'seventy-four thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(4066, 32602, 'thirty-two thousand six hundred two');\nINSERT INTO t2 VALUES(4067, 67555, 'sixty-seven thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(4068, 42344, 'forty-two thousand three hundred forty-four');\nINSERT INTO t2 VALUES(4069, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(4070, 19032, 'nineteen thousand thirty-two');\nINSERT INTO t2 VALUES(4071, 63846, 'sixty-three thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(4072, 11858, 'eleven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(4073, 27380, 'twenty-seven thousand three hundred eighty');\nINSERT INTO t2 VALUES(4074, 79446, 'seventy-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(4075, 90992, 'ninety thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(4076, 56203, 'fifty-six thousand two hundred three');\nINSERT INTO t2 VALUES(4077, 82096, 'eighty-two thousand ninety-six');\nINSERT INTO t2 VALUES(4078, 13686, 'thirteen thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(4079, 88216, 'eighty-eight thousand two hundred sixteen');\nINSERT INTO t2 VALUES(4080, 59528, 'fifty-nine thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4081, 26392, 'twenty-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(4082, 16413, 'sixteen thousand four hundred thirteen');\nINSERT INTO t2 VALUES(4083, 89480, 'eighty-nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(4084, 98345, 'ninety-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(4085, 43473, 'forty-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4086, 72370, 'seventy-two thousand three hundred seventy');\nINSERT INTO t2 VALUES(4087, 619, 'six hundred nineteen');\nINSERT INTO t2 VALUES(4088, 87026, 'eighty-seven thousand twenty-six');\nINSERT INTO t2 VALUES(4089, 17928, 'seventeen thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(4090, 34135, 'thirty-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(4091, 19336, 'nineteen thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(4092, 2809, 'two thousand eight hundred nine');\nINSERT INTO t2 VALUES(4093, 40999, 'forty thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(4094, 50937, 'fifty thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(4095, 83436, 'eighty-three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(4096, 32871, 'thirty-two thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(4097, 13520, 'thirteen thousand five hundred twenty');\nINSERT INTO t2 VALUES(4098, 43081, 'forty-three thousand eighty-one');\nINSERT INTO t2 VALUES(4099, 59338, 'fifty-nine thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(4100, 26710, 'twenty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(4101, 65518, 'sixty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(4102, 44580, 'forty-four thousand five hundred eighty');\nINSERT INTO t2 VALUES(4103, 89932, 'eighty-nine thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(4104, 75034, 'seventy-five thousand thirty-four');\nINSERT INTO t2 VALUES(4105, 79956, 'seventy-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(4106, 13335, 'thirteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(4107, 69733, 'sixty-nine thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(4108, 54576, 'fifty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(4109, 43262, 'forty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(4110, 37057, 'thirty-seven thousand fifty-seven');\nINSERT INTO t2 VALUES(4111, 41140, 'forty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(4112, 193, 'one hundred ninety-three');\nINSERT INTO t2 VALUES(4113, 96651, 'ninety-six thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(4114, 82748, 'eighty-two thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(4115, 40507, 'forty thousand five hundred seven');\nINSERT INTO t2 VALUES(4116, 30983, 'thirty thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(4117, 91685, 'ninety-one thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(4118, 82567, 'eighty-two thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(4119, 95834, 'ninety-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(4120, 90247, 'ninety thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(4121, 95929, 'ninety-five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(4122, 65483, 'sixty-five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(4123, 40857, 'forty thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(4124, 311, 'three hundred eleven');\nINSERT INTO t2 VALUES(4125, 94631, 'ninety-four thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(4126, 43534, 'forty-three thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(4127, 61926, 'sixty-one thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(4128, 89554, 'eighty-nine thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(4129, 96150, 'ninety-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(4130, 22874, 'twenty-two thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(4131, 83759, 'eighty-three thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(4132, 21142, 'twenty-one thousand one hundred forty-two');\nINSERT INTO t2 VALUES(4133, 39229, 'thirty-nine thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(4134, 69965, 'sixty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4135, 55660, 'fifty-five thousand six hundred sixty');\nINSERT INTO t2 VALUES(4136, 64609, 'sixty-four thousand six hundred nine');\nINSERT INTO t2 VALUES(4137, 18269, 'eighteen thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(4138, 39081, 'thirty-nine thousand eighty-one');\nINSERT INTO t2 VALUES(4139, 19721, 'nineteen thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(4140, 46810, 'forty-six thousand eight hundred ten');\nINSERT INTO t2 VALUES(4141, 86435, 'eighty-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(4142, 48824, 'forty-eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(4143, 70499, 'seventy thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(4144, 5703, 'five thousand seven hundred three');\nINSERT INTO t2 VALUES(4145, 89264, 'eighty-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(4146, 97829, 'ninety-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(4147, 32185, 'thirty-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(4148, 29858, 'twenty-nine thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(4149, 23594, 'twenty-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(4150, 41353, 'forty-one thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(4151, 80253, 'eighty thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(4152, 54283, 'fifty-four thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(4153, 7819, 'seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(4154, 45330, 'forty-five thousand three hundred thirty');\nINSERT INTO t2 VALUES(4155, 28019, 'twenty-eight thousand nineteen');\nINSERT INTO t2 VALUES(4156, 88974, 'eighty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(4157, 14929, 'fourteen thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(4158, 32563, 'thirty-two thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(4159, 23270, 'twenty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(4160, 94515, 'ninety-four thousand five hundred fifteen');\nINSERT INTO t2 VALUES(4161, 10611, 'ten thousand six hundred eleven');\nINSERT INTO t2 VALUES(4162, 64006, 'sixty-four thousand six');\nINSERT INTO t2 VALUES(4163, 54926, 'fifty-four thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(4164, 4946, 'four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(4165, 97283, 'ninety-seven thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(4166, 82690, 'eighty-two thousand six hundred ninety');\nINSERT INTO t2 VALUES(4167, 22634, 'twenty-two thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(4168, 36046, 'thirty-six thousand forty-six');\nINSERT INTO t2 VALUES(4169, 10869, 'ten thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(4170, 78937, 'seventy-eight thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(4171, 11669, 'eleven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(4172, 73633, 'seventy-three thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(4173, 79652, 'seventy-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(4174, 50908, 'fifty thousand nine hundred eight');\nINSERT INTO t2 VALUES(4175, 64444, 'sixty-four thousand four hundred forty-four');\nINSERT INTO t2 VALUES(4176, 93448, 'ninety-three thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(4177, 59940, 'fifty-nine thousand nine hundred forty');\nINSERT INTO t2 VALUES(4178, 40447, 'forty thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(4179, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(4180, 91633, 'ninety-one thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(4181, 47018, 'forty-seven thousand eighteen');\nINSERT INTO t2 VALUES(4182, 5185, 'five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(4183, 21179, 'twenty-one thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(4184, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(4185, 27139, 'twenty-seven thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(4186, 86825, 'eighty-six thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(4187, 92794, 'ninety-two thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(4188, 60662, 'sixty thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(4189, 81598, 'eighty-one thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(4190, 41653, 'forty-one thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(4191, 17355, 'seventeen thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(4192, 44720, 'forty-four thousand seven hundred twenty');\nINSERT INTO t2 VALUES(4193, 62909, 'sixty-two thousand nine hundred nine');\nINSERT INTO t2 VALUES(4194, 31575, 'thirty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(4195, 14296, 'fourteen thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(4196, 4185, 'four thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(4197, 45823, 'forty-five thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(4198, 28534, 'twenty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(4199, 3434, 'three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(4200, 37538, 'thirty-seven thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4201, 26790, 'twenty-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4202, 26480, 'twenty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(4203, 36255, 'thirty-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(4204, 85790, 'eighty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4205, 11435, 'eleven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(4206, 86740, 'eighty-six thousand seven hundred forty');\nINSERT INTO t2 VALUES(4207, 56856, 'fifty-six thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(4208, 88237, 'eighty-eight thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(4209, 99331, 'ninety-nine thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(4210, 66586, 'sixty-six thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(4211, 62160, 'sixty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(4212, 37501, 'thirty-seven thousand five hundred one');\nINSERT INTO t2 VALUES(4213, 77064, 'seventy-seven thousand sixty-four');\nINSERT INTO t2 VALUES(4214, 7117, 'seven thousand one hundred seventeen');\nINSERT INTO t2 VALUES(4215, 40749, 'forty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(4216, 78269, 'seventy-eight thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(4217, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(4218, 41621, 'forty-one thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(4219, 30701, 'thirty thousand seven hundred one');\nINSERT INTO t2 VALUES(4220, 18857, 'eighteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(4221, 33627, 'thirty-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(4222, 6785, 'six thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(4223, 35737, 'thirty-five thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(4224, 95335, 'ninety-five thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(4225, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t2 VALUES(4226, 53785, 'fifty-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(4227, 80291, 'eighty thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(4228, 24737, 'twenty-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(4229, 34695, 'thirty-four thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(4230, 73582, 'seventy-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(4231, 62687, 'sixty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(4232, 88414, 'eighty-eight thousand four hundred fourteen');\nINSERT INTO t2 VALUES(4233, 2739, 'two thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(4234, 35654, 'thirty-five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(4235, 20842, 'twenty thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(4236, 71388, 'seventy-one thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(4237, 86025, 'eighty-six thousand twenty-five');\nINSERT INTO t2 VALUES(4238, 12725, 'twelve thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(4239, 81079, 'eighty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(4240, 22652, 'twenty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(4241, 66224, 'sixty-six thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(4242, 94099, 'ninety-four thousand ninety-nine');\nINSERT INTO t2 VALUES(4243, 42084, 'forty-two thousand eighty-four');\nINSERT INTO t2 VALUES(4244, 52525, 'fifty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(4245, 11860, 'eleven thousand eight hundred sixty');\nINSERT INTO t2 VALUES(4246, 58446, 'fifty-eight thousand four hundred forty-six');\nINSERT INTO t2 VALUES(4247, 93814, 'ninety-three thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(4248, 77379, 'seventy-seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(4249, 84313, 'eighty-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(4250, 27472, 'twenty-seven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(4251, 79639, 'seventy-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(4252, 62504, 'sixty-two thousand five hundred four');\nINSERT INTO t2 VALUES(4253, 86553, 'eighty-six thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(4254, 59234, 'fifty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(4255, 22433, 'twenty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(4256, 99964, 'ninety-nine thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(4257, 19492, 'nineteen thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(4258, 44370, 'forty-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(4259, 39734, 'thirty-nine thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(4260, 21789, 'twenty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(4261, 3396, 'three thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(4262, 76944, 'seventy-six thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(4263, 65316, 'sixty-five thousand three hundred sixteen');\nINSERT INTO t2 VALUES(4264, 33849, 'thirty-three thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(4265, 96104, 'ninety-six thousand one hundred four');\nINSERT INTO t2 VALUES(4266, 57630, 'fifty-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(4267, 70522, 'seventy thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(4268, 42601, 'forty-two thousand six hundred one');\nINSERT INTO t2 VALUES(4269, 92053, 'ninety-two thousand fifty-three');\nINSERT INTO t2 VALUES(4270, 45183, 'forty-five thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(4271, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(4272, 15831, 'fifteen thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(4273, 38588, 'thirty-eight thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(4274, 80470, 'eighty thousand four hundred seventy');\nINSERT INTO t2 VALUES(4275, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(4276, 42779, 'forty-two thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(4277, 11918, 'eleven thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(4278, 56420, 'fifty-six thousand four hundred twenty');\nINSERT INTO t2 VALUES(4279, 74416, 'seventy-four thousand four hundred sixteen');\nINSERT INTO t2 VALUES(4280, 58235, 'fifty-eight thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(4281, 87856, 'eighty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(4282, 13448, 'thirteen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(4283, 28916, 'twenty-eight thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(4284, 27490, 'twenty-seven thousand four hundred ninety');\nINSERT INTO t2 VALUES(4285, 83616, 'eighty-three thousand six hundred sixteen');\nINSERT INTO t2 VALUES(4286, 82299, 'eighty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(4287, 83745, 'eighty-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(4288, 58854, 'fifty-eight thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(4289, 712, 'seven hundred twelve');\nINSERT INTO t2 VALUES(4290, 7943, 'seven thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(4291, 80867, 'eighty thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(4292, 61075, 'sixty-one thousand seventy-five');\nINSERT INTO t2 VALUES(4293, 19266, 'nineteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(4294, 87747, 'eighty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(4295, 59620, 'fifty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(4296, 85069, 'eighty-five thousand sixty-nine');\nINSERT INTO t2 VALUES(4297, 3023, 'three thousand twenty-three');\nINSERT INTO t2 VALUES(4298, 3285, 'three thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(4299, 52482, 'fifty-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(4300, 28307, 'twenty-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(4301, 6063, 'six thousand sixty-three');\nINSERT INTO t2 VALUES(4302, 29100, 'twenty-nine thousand one hundred');\nINSERT INTO t2 VALUES(4303, 24071, 'twenty-four thousand seventy-one');\nINSERT INTO t2 VALUES(4304, 7781, 'seven thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(4305, 91968, 'ninety-one thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(4306, 83326, 'eighty-three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(4307, 77121, 'seventy-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(4308, 11898, 'eleven thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(4309, 16455, 'sixteen thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(4310, 21402, 'twenty-one thousand four hundred two');\nINSERT INTO t2 VALUES(4311, 92170, 'ninety-two thousand one hundred seventy');\nINSERT INTO t2 VALUES(4312, 25538, 'twenty-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4313, 57641, 'fifty-seven thousand six hundred forty-one');\nINSERT INTO t2 VALUES(4314, 20659, 'twenty thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(4315, 49460, 'forty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(4316, 52615, 'fifty-two thousand six hundred fifteen');\nINSERT INTO t2 VALUES(4317, 29520, 'twenty-nine thousand five hundred twenty');\nINSERT INTO t2 VALUES(4318, 44000, 'forty-four thousand');\nINSERT INTO t2 VALUES(4319, 31006, 'thirty-one thousand six');\nINSERT INTO t2 VALUES(4320, 75457, 'seventy-five thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(4321, 19739, 'nineteen thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(4322, 46344, 'forty-six thousand three hundred forty-four');\nINSERT INTO t2 VALUES(4323, 83965, 'eighty-three thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4324, 19996, 'nineteen thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(4325, 452, 'four hundred fifty-two');\nINSERT INTO t2 VALUES(4326, 13382, 'thirteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(4327, 14471, 'fourteen thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(4328, 79069, 'seventy-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(4329, 16526, 'sixteen thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(4330, 29052, 'twenty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(4331, 46977, 'forty-six thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(4332, 73327, 'seventy-three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(4333, 44419, 'forty-four thousand four hundred nineteen');\nINSERT INTO t2 VALUES(4334, 4944, 'four thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(4335, 22380, 'twenty-two thousand three hundred eighty');\nINSERT INTO t2 VALUES(4336, 25638, 'twenty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(4337, 7784, 'seven thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(4338, 65425, 'sixty-five thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(4339, 90983, 'ninety thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(4340, 58570, 'fifty-eight thousand five hundred seventy');\nINSERT INTO t2 VALUES(4341, 2038, 'two thousand thirty-eight');\nINSERT INTO t2 VALUES(4342, 63935, 'sixty-three thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(4343, 17875, 'seventeen thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(4344, 15919, 'fifteen thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(4345, 96091, 'ninety-six thousand ninety-one');\nINSERT INTO t2 VALUES(4346, 80985, 'eighty thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(4347, 72594, 'seventy-two thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(4348, 7545, 'seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(4349, 96620, 'ninety-six thousand six hundred twenty');\nINSERT INTO t2 VALUES(4350, 29074, 'twenty-nine thousand seventy-four');\nINSERT INTO t2 VALUES(4351, 86868, 'eighty-six thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(4352, 32658, 'thirty-two thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(4353, 87750, 'eighty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(4354, 57784, 'fifty-seven thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(4355, 77227, 'seventy-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(4356, 56270, 'fifty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(4357, 78163, 'seventy-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(4358, 35, 'thirty-five');\nINSERT INTO t2 VALUES(4359, 99191, 'ninety-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(4360, 72811, 'seventy-two thousand eight hundred eleven');\nINSERT INTO t2 VALUES(4361, 56053, 'fifty-six thousand fifty-three');\nINSERT INTO t2 VALUES(4362, 74813, 'seventy-four thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(4363, 83316, 'eighty-three thousand three hundred sixteen');\nINSERT INTO t2 VALUES(4364, 98263, 'ninety-eight thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(4365, 65848, 'sixty-five thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(4366, 10213, 'ten thousand two hundred thirteen');\nINSERT INTO t2 VALUES(4367, 98246, 'ninety-eight thousand two hundred forty-six');\nINSERT INTO t2 VALUES(4368, 62245, 'sixty-two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(4369, 93505, 'ninety-three thousand five hundred five');\nINSERT INTO t2 VALUES(4370, 8959, 'eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(4371, 37532, 'thirty-seven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(4372, 5761, 'five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(4373, 74102, 'seventy-four thousand one hundred two');\nINSERT INTO t2 VALUES(4374, 34528, 'thirty-four thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4375, 98738, 'ninety-eight thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(4376, 55141, 'fifty-five thousand one hundred forty-one');\nINSERT INTO t2 VALUES(4377, 72199, 'seventy-two thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(4378, 89523, 'eighty-nine thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(4379, 80123, 'eighty thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(4380, 50641, 'fifty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(4381, 48796, 'forty-eight thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(4382, 95851, 'ninety-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(4383, 10712, 'ten thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4384, 40887, 'forty thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(4385, 99523, 'ninety-nine thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(4386, 70303, 'seventy thousand three hundred three');\nINSERT INTO t2 VALUES(4387, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(4388, 31712, 'thirty-one thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4389, 60206, 'sixty thousand two hundred six');\nINSERT INTO t2 VALUES(4390, 9127, 'nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(4391, 23416, 'twenty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(4392, 91711, 'ninety-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(4393, 77730, 'seventy-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(4394, 7848, 'seven thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(4395, 99348, 'ninety-nine thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(4396, 8076, 'eight thousand seventy-six');\nINSERT INTO t2 VALUES(4397, 66494, 'sixty-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(4398, 27738, 'twenty-seven thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(4399, 41187, 'forty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(4400, 28345, 'twenty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(4401, 63280, 'sixty-three thousand two hundred eighty');\nINSERT INTO t2 VALUES(4402, 67785, 'sixty-seven thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(4403, 94473, 'ninety-four thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4404, 94817, 'ninety-four thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(4405, 12443, 'twelve thousand four hundred forty-three');\nINSERT INTO t2 VALUES(4406, 2285, 'two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(4407, 51400, 'fifty-one thousand four hundred');\nINSERT INTO t2 VALUES(4408, 74752, 'seventy-four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(4409, 75142, 'seventy-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(4410, 800, 'eight hundred');\nINSERT INTO t2 VALUES(4411, 43478, 'forty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(4412, 49832, 'forty-nine thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(4413, 11799, 'eleven thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(4414, 82029, 'eighty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(4415, 15467, 'fifteen thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(4416, 81691, 'eighty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(4417, 98280, 'ninety-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(4418, 47788, 'forty-seven thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(4419, 71283, 'seventy-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(4420, 37584, 'thirty-seven thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(4421, 9510, 'nine thousand five hundred ten');\nINSERT INTO t2 VALUES(4422, 85829, 'eighty-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(4423, 61528, 'sixty-one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4424, 17006, 'seventeen thousand six');\nINSERT INTO t2 VALUES(4425, 7205, 'seven thousand two hundred five');\nINSERT INTO t2 VALUES(4426, 18266, 'eighteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(4427, 10165, 'ten thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4428, 96592, 'ninety-six thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(4429, 52225, 'fifty-two thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(4430, 18297, 'eighteen thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(4431, 80152, 'eighty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(4432, 54747, 'fifty-four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(4433, 7097, 'seven thousand ninety-seven');\nINSERT INTO t2 VALUES(4434, 72780, 'seventy-two thousand seven hundred eighty');\nINSERT INTO t2 VALUES(4435, 3665, 'three thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(4436, 63624, 'sixty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(4437, 88424, 'eighty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(4438, 18709, 'eighteen thousand seven hundred nine');\nINSERT INTO t2 VALUES(4439, 14555, 'fourteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(4440, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(4441, 61798, 'sixty-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(4442, 49075, 'forty-nine thousand seventy-five');\nINSERT INTO t2 VALUES(4443, 76517, 'seventy-six thousand five hundred seventeen');\nINSERT INTO t2 VALUES(4444, 71524, 'seventy-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(4445, 79718, 'seventy-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(4446, 35387, 'thirty-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(4447, 2913, 'two thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(4448, 15569, 'fifteen thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(4449, 10143, 'ten thousand one hundred forty-three');\nINSERT INTO t2 VALUES(4450, 3681, 'three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(4451, 62628, 'sixty-two thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(4452, 55345, 'fifty-five thousand three hundred forty-five');\nINSERT INTO t2 VALUES(4453, 74335, 'seventy-four thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(4454, 87541, 'eighty-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(4455, 79989, 'seventy-nine thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(4456, 15788, 'fifteen thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(4457, 45203, 'forty-five thousand two hundred three');\nINSERT INTO t2 VALUES(4458, 15077, 'fifteen thousand seventy-seven');\nINSERT INTO t2 VALUES(4459, 95049, 'ninety-five thousand forty-nine');\nINSERT INTO t2 VALUES(4460, 61922, 'sixty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(4461, 75353, 'seventy-five thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(4462, 90282, 'ninety thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(4463, 86563, 'eighty-six thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(4464, 9224, 'nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(4465, 33026, 'thirty-three thousand twenty-six');\nINSERT INTO t2 VALUES(4466, 30553, 'thirty thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(4467, 61393, 'sixty-one thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(4468, 90975, 'ninety thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(4469, 61005, 'sixty-one thousand five');\nINSERT INTO t2 VALUES(4470, 6497, 'six thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(4471, 66224, 'sixty-six thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(4472, 798, 'seven hundred ninety-eight');\nINSERT INTO t2 VALUES(4473, 41513, 'forty-one thousand five hundred thirteen');\nINSERT INTO t2 VALUES(4474, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(4475, 21, 'twenty-one');\nINSERT INTO t2 VALUES(4476, 88103, 'eighty-eight thousand one hundred three');\nINSERT INTO t2 VALUES(4477, 75495, 'seventy-five thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(4478, 98801, 'ninety-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(4479, 67165, 'sixty-seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4480, 9413, 'nine thousand four hundred thirteen');\nINSERT INTO t2 VALUES(4481, 50214, 'fifty thousand two hundred fourteen');\nINSERT INTO t2 VALUES(4482, 37033, 'thirty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(4483, 25036, 'twenty-five thousand thirty-six');\nINSERT INTO t2 VALUES(4484, 56330, 'fifty-six thousand three hundred thirty');\nINSERT INTO t2 VALUES(4485, 81512, 'eighty-one thousand five hundred twelve');\nINSERT INTO t2 VALUES(4486, 75582, 'seventy-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(4487, 86710, 'eighty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(4488, 76854, 'seventy-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(4489, 27538, 'twenty-seven thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4490, 38898, 'thirty-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(4491, 82087, 'eighty-two thousand eighty-seven');\nINSERT INTO t2 VALUES(4492, 91525, 'ninety-one thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(4493, 69575, 'sixty-nine thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(4494, 46944, 'forty-six thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(4495, 770, 'seven hundred seventy');\nINSERT INTO t2 VALUES(4496, 77589, 'seventy-seven thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(4497, 46484, 'forty-six thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(4498, 26049, 'twenty-six thousand forty-nine');\nINSERT INTO t2 VALUES(4499, 48002, 'forty-eight thousand two');\nINSERT INTO t2 VALUES(4500, 81084, 'eighty-one thousand eighty-four');\nINSERT INTO t2 VALUES(4501, 1240, 'one thousand two hundred forty');\nINSERT INTO t2 VALUES(4502, 2925, 'two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(4503, 24746, 'twenty-four thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(4504, 81521, 'eighty-one thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(4505, 16707, 'sixteen thousand seven hundred seven');\nINSERT INTO t2 VALUES(4506, 96559, 'ninety-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(4507, 36314, 'thirty-six thousand three hundred fourteen');\nINSERT INTO t2 VALUES(4508, 84985, 'eighty-four thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(4509, 41122, 'forty-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(4510, 54909, 'fifty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(4511, 25504, 'twenty-five thousand five hundred four');\nINSERT INTO t2 VALUES(4512, 11813, 'eleven thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(4513, 51895, 'fifty-one thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(4514, 93965, 'ninety-three thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4515, 33573, 'thirty-three thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(4516, 77515, 'seventy-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(4517, 35612, 'thirty-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(4518, 93610, 'ninety-three thousand six hundred ten');\nINSERT INTO t2 VALUES(4519, 75004, 'seventy-five thousand four');\nINSERT INTO t2 VALUES(4520, 97891, 'ninety-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(4521, 14779, 'fourteen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(4522, 32754, 'thirty-two thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(4523, 86256, 'eighty-six thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(4524, 90436, 'ninety thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(4525, 38187, 'thirty-eight thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(4526, 50949, 'fifty thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(4527, 18355, 'eighteen thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(4528, 63070, 'sixty-three thousand seventy');\nINSERT INTO t2 VALUES(4529, 59655, 'fifty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(4530, 33976, 'thirty-three thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(4531, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(4532, 3645, 'three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(4533, 21838, 'twenty-one thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(4534, 95695, 'ninety-five thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(4535, 87327, 'eighty-seven thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(4536, 54228, 'fifty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(4537, 3927, 'three thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(4538, 93132, 'ninety-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(4539, 39703, 'thirty-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(4540, 36547, 'thirty-six thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(4541, 69841, 'sixty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(4542, 29401, 'twenty-nine thousand four hundred one');\nINSERT INTO t2 VALUES(4543, 73235, 'seventy-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(4544, 25054, 'twenty-five thousand fifty-four');\nINSERT INTO t2 VALUES(4545, 93813, 'ninety-three thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(4546, 50627, 'fifty thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(4547, 69063, 'sixty-nine thousand sixty-three');\nINSERT INTO t2 VALUES(4548, 34191, 'thirty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(4549, 81898, 'eighty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(4550, 53809, 'fifty-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(4551, 40278, 'forty thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(4552, 25498, 'twenty-five thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(4553, 85055, 'eighty-five thousand fifty-five');\nINSERT INTO t2 VALUES(4554, 35845, 'thirty-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(4555, 64533, 'sixty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(4556, 28673, 'twenty-eight thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(4557, 13782, 'thirteen thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(4558, 35281, 'thirty-five thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(4559, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(4560, 87363, 'eighty-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(4561, 83666, 'eighty-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(4562, 11621, 'eleven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(4563, 3641, 'three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(4564, 16857, 'sixteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(4565, 5991, 'five thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(4566, 3074, 'three thousand seventy-four');\nINSERT INTO t2 VALUES(4567, 24474, 'twenty-four thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(4568, 75954, 'seventy-five thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(4569, 88426, 'eighty-eight thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(4570, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(4571, 56822, 'fifty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(4572, 61539, 'sixty-one thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(4573, 55173, 'fifty-five thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4574, 46823, 'forty-six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(4575, 57063, 'fifty-seven thousand sixty-three');\nINSERT INTO t2 VALUES(4576, 61109, 'sixty-one thousand one hundred nine');\nINSERT INTO t2 VALUES(4577, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(4578, 84474, 'eighty-four thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(4579, 67682, 'sixty-seven thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(4580, 93659, 'ninety-three thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(4581, 1504, 'one thousand five hundred four');\nINSERT INTO t2 VALUES(4582, 58717, 'fifty-eight thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(4583, 35761, 'thirty-five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(4584, 66392, 'sixty-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(4585, 5477, 'five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(4586, 77005, 'seventy-seven thousand five');\nINSERT INTO t2 VALUES(4587, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t2 VALUES(4588, 25747, 'twenty-five thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(4589, 62765, 'sixty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(4590, 83802, 'eighty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(4591, 14872, 'fourteen thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(4592, 75654, 'seventy-five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(4593, 6280, 'six thousand two hundred eighty');\nINSERT INTO t2 VALUES(4594, 25753, 'twenty-five thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(4595, 14555, 'fourteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(4596, 76324, 'seventy-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(4597, 94278, 'ninety-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(4598, 45729, 'forty-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(4599, 49554, 'forty-nine thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(4600, 57459, 'fifty-seven thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(4601, 90993, 'ninety thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(4602, 46528, 'forty-six thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(4603, 31265, 'thirty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(4604, 90098, 'ninety thousand ninety-eight');\nINSERT INTO t2 VALUES(4605, 26781, 'twenty-six thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(4606, 49781, 'forty-nine thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(4607, 4595, 'four thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(4608, 89477, 'eighty-nine thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(4609, 96900, 'ninety-six thousand nine hundred');\nINSERT INTO t2 VALUES(4610, 60656, 'sixty thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(4611, 54272, 'fifty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(4612, 41189, 'forty-one thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(4613, 56243, 'fifty-six thousand two hundred forty-three');\nINSERT INTO t2 VALUES(4614, 52142, 'fifty-two thousand one hundred forty-two');\nINSERT INTO t2 VALUES(4615, 24729, 'twenty-four thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(4616, 31438, 'thirty-one thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(4617, 89875, 'eighty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(4618, 75762, 'seventy-five thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(4619, 22397, 'twenty-two thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(4620, 49736, 'forty-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(4621, 69296, 'sixty-nine thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(4622, 25552, 'twenty-five thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(4623, 21628, 'twenty-one thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(4624, 52433, 'fifty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(4625, 85636, 'eighty-five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(4626, 61410, 'sixty-one thousand four hundred ten');\nINSERT INTO t2 VALUES(4627, 80073, 'eighty thousand seventy-three');\nINSERT INTO t2 VALUES(4628, 82404, 'eighty-two thousand four hundred four');\nINSERT INTO t2 VALUES(4629, 82304, 'eighty-two thousand three hundred four');\nINSERT INTO t2 VALUES(4630, 29735, 'twenty-nine thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(4631, 48451, 'forty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(4632, 62223, 'sixty-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(4633, 147, 'one hundred forty-seven');\nINSERT INTO t2 VALUES(4634, 6878, 'six thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(4635, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(4636, 56386, 'fifty-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(4637, 86400, 'eighty-six thousand four hundred');\nINSERT INTO t2 VALUES(4638, 86982, 'eighty-six thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(4639, 67607, 'sixty-seven thousand six hundred seven');\nINSERT INTO t2 VALUES(4640, 2173, 'two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4641, 21617, 'twenty-one thousand six hundred seventeen');\nINSERT INTO t2 VALUES(4642, 41225, 'forty-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(4643, 34699, 'thirty-four thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(4644, 2195, 'two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(4645, 80084, 'eighty thousand eighty-four');\nINSERT INTO t2 VALUES(4646, 43347, 'forty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(4647, 41637, 'forty-one thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(4648, 6485, 'six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(4649, 34080, 'thirty-four thousand eighty');\nINSERT INTO t2 VALUES(4650, 64636, 'sixty-four thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(4651, 54189, 'fifty-four thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(4652, 16087, 'sixteen thousand eighty-seven');\nINSERT INTO t2 VALUES(4653, 69549, 'sixty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(4654, 14602, 'fourteen thousand six hundred two');\nINSERT INTO t2 VALUES(4655, 30139, 'thirty thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(4656, 10911, 'ten thousand nine hundred eleven');\nINSERT INTO t2 VALUES(4657, 57195, 'fifty-seven thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(4658, 84212, 'eighty-four thousand two hundred twelve');\nINSERT INTO t2 VALUES(4659, 87960, 'eighty-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(4660, 72679, 'seventy-two thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(4661, 48629, 'forty-eight thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(4662, 74208, 'seventy-four thousand two hundred eight');\nINSERT INTO t2 VALUES(4663, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t2 VALUES(4664, 25138, 'twenty-five thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(4665, 88467, 'eighty-eight thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(4666, 37859, 'thirty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(4667, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(4668, 47276, 'forty-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(4669, 91827, 'ninety-one thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(4670, 97530, 'ninety-seven thousand five hundred thirty');\nINSERT INTO t2 VALUES(4671, 81356, 'eighty-one thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(4672, 12399, 'twelve thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(4673, 48910, 'forty-eight thousand nine hundred ten');\nINSERT INTO t2 VALUES(4674, 55625, 'fifty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(4675, 63024, 'sixty-three thousand twenty-four');\nINSERT INTO t2 VALUES(4676, 46165, 'forty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4677, 7778, 'seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(4678, 27255, 'twenty-seven thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(4679, 31664, 'thirty-one thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(4680, 59626, 'fifty-nine thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(4681, 35045, 'thirty-five thousand forty-five');\nINSERT INTO t2 VALUES(4682, 58962, 'fifty-eight thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(4683, 79613, 'seventy-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(4684, 85752, 'eighty-five thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(4685, 15033, 'fifteen thousand thirty-three');\nINSERT INTO t2 VALUES(4686, 96883, 'ninety-six thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(4687, 21002, 'twenty-one thousand two');\nINSERT INTO t2 VALUES(4688, 37469, 'thirty-seven thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(4689, 16726, 'sixteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(4690, 70997, 'seventy thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(4691, 82097, 'eighty-two thousand ninety-seven');\nINSERT INTO t2 VALUES(4692, 6697, 'six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(4693, 16948, 'sixteen thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(4694, 11934, 'eleven thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(4695, 53419, 'fifty-three thousand four hundred nineteen');\nINSERT INTO t2 VALUES(4696, 75955, 'seventy-five thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(4697, 14845, 'fourteen thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(4698, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(4699, 61614, 'sixty-one thousand six hundred fourteen');\nINSERT INTO t2 VALUES(4700, 70358, 'seventy thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(4701, 7950, 'seven thousand nine hundred fifty');\nINSERT INTO t2 VALUES(4702, 72071, 'seventy-two thousand seventy-one');\nINSERT INTO t2 VALUES(4703, 41427, 'forty-one thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(4704, 5793, 'five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(4705, 99509, 'ninety-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(4706, 66725, 'sixty-six thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(4707, 80187, 'eighty thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(4708, 87891, 'eighty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(4709, 56902, 'fifty-six thousand nine hundred two');\nINSERT INTO t2 VALUES(4710, 7062, 'seven thousand sixty-two');\nINSERT INTO t2 VALUES(4711, 55492, 'fifty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(4712, 81473, 'eighty-one thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4713, 58945, 'fifty-eight thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(4714, 37392, 'thirty-seven thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(4715, 52085, 'fifty-two thousand eighty-five');\nINSERT INTO t2 VALUES(4716, 77280, 'seventy-seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(4717, 12164, 'twelve thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(4718, 39604, 'thirty-nine thousand six hundred four');\nINSERT INTO t2 VALUES(4719, 56620, 'fifty-six thousand six hundred twenty');\nINSERT INTO t2 VALUES(4720, 80749, 'eighty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(4721, 29119, 'twenty-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(4722, 8157, 'eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(4723, 72769, 'seventy-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(4724, 91723, 'ninety-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(4725, 91965, 'ninety-one thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(4726, 52001, 'fifty-two thousand one');\nINSERT INTO t2 VALUES(4727, 42827, 'forty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(4728, 17563, 'seventeen thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(4729, 28505, 'twenty-eight thousand five hundred five');\nINSERT INTO t2 VALUES(4730, 69035, 'sixty-nine thousand thirty-five');\nINSERT INTO t2 VALUES(4731, 7523, 'seven thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(4732, 61903, 'sixty-one thousand nine hundred three');\nINSERT INTO t2 VALUES(4733, 82398, 'eighty-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(4734, 85492, 'eighty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(4735, 2186, 'two thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(4736, 99572, 'ninety-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(4737, 29294, 'twenty-nine thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(4738, 3750, 'three thousand seven hundred fifty');\nINSERT INTO t2 VALUES(4739, 56326, 'fifty-six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(4740, 52409, 'fifty-two thousand four hundred nine');\nINSERT INTO t2 VALUES(4741, 19675, 'nineteen thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(4742, 47832, 'forty-seven thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(4743, 82499, 'eighty-two thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(4744, 48009, 'forty-eight thousand nine');\nINSERT INTO t2 VALUES(4745, 9329, 'nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(4746, 32273, 'thirty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(4747, 24342, 'twenty-four thousand three hundred forty-two');\nINSERT INTO t2 VALUES(4748, 53164, 'fifty-three thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(4749, 38214, 'thirty-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(4750, 24790, 'twenty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4751, 51209, 'fifty-one thousand two hundred nine');\nINSERT INTO t2 VALUES(4752, 31913, 'thirty-one thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(4753, 5221, 'five thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(4754, 24833, 'twenty-four thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(4755, 63212, 'sixty-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(4756, 86686, 'eighty-six thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(4757, 49829, 'forty-nine thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(4758, 45560, 'forty-five thousand five hundred sixty');\nINSERT INTO t2 VALUES(4759, 83083, 'eighty-three thousand eighty-three');\nINSERT INTO t2 VALUES(4760, 30804, 'thirty thousand eight hundred four');\nINSERT INTO t2 VALUES(4761, 83416, 'eighty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(4762, 13225, 'thirteen thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(4763, 78037, 'seventy-eight thousand thirty-seven');\nINSERT INTO t2 VALUES(4764, 91227, 'ninety-one thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(4765, 51755, 'fifty-one thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(4766, 22163, 'twenty-two thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(4767, 70509, 'seventy thousand five hundred nine');\nINSERT INTO t2 VALUES(4768, 79537, 'seventy-nine thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(4769, 44627, 'forty-four thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(4770, 92844, 'ninety-two thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(4771, 20804, 'twenty thousand eight hundred four');\nINSERT INTO t2 VALUES(4772, 53296, 'fifty-three thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(4773, 98831, 'ninety-eight thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(4774, 22003, 'twenty-two thousand three');\nINSERT INTO t2 VALUES(4775, 17198, 'seventeen thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(4776, 48790, 'forty-eight thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4777, 10162, 'ten thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(4778, 77362, 'seventy-seven thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(4779, 4143, 'four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(4780, 42531, 'forty-two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(4781, 33238, 'thirty-three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(4782, 65677, 'sixty-five thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(4783, 94766, 'ninety-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(4784, 85655, 'eighty-five thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(4785, 72849, 'seventy-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(4786, 59333, 'fifty-nine thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(4787, 84413, 'eighty-four thousand four hundred thirteen');\nINSERT INTO t2 VALUES(4788, 60015, 'sixty thousand fifteen');\nINSERT INTO t2 VALUES(4789, 77987, 'seventy-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(4790, 49079, 'forty-nine thousand seventy-nine');\nINSERT INTO t2 VALUES(4791, 16080, 'sixteen thousand eighty');\nINSERT INTO t2 VALUES(4792, 64104, 'sixty-four thousand one hundred four');\nINSERT INTO t2 VALUES(4793, 93471, 'ninety-three thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(4794, 38891, 'thirty-eight thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(4795, 91732, 'ninety-one thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(4796, 37815, 'thirty-seven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(4797, 62190, 'sixty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(4798, 48543, 'forty-eight thousand five hundred forty-three');\nINSERT INTO t2 VALUES(4799, 97640, 'ninety-seven thousand six hundred forty');\nINSERT INTO t2 VALUES(4800, 28116, 'twenty-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(4801, 58220, 'fifty-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(4802, 55682, 'fifty-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(4803, 79669, 'seventy-nine thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(4804, 875, 'eight hundred seventy-five');\nINSERT INTO t2 VALUES(4805, 37484, 'thirty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(4806, 60499, 'sixty thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(4807, 39708, 'thirty-nine thousand seven hundred eight');\nINSERT INTO t2 VALUES(4808, 42126, 'forty-two thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(4809, 44099, 'forty-four thousand ninety-nine');\nINSERT INTO t2 VALUES(4810, 22129, 'twenty-two thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(4811, 28170, 'twenty-eight thousand one hundred seventy');\nINSERT INTO t2 VALUES(4812, 44039, 'forty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(4813, 15200, 'fifteen thousand two hundred');\nINSERT INTO t2 VALUES(4814, 76217, 'seventy-six thousand two hundred seventeen');\nINSERT INTO t2 VALUES(4815, 1680, 'one thousand six hundred eighty');\nINSERT INTO t2 VALUES(4816, 24500, 'twenty-four thousand five hundred');\nINSERT INTO t2 VALUES(4817, 41140, 'forty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(4818, 26863, 'twenty-six thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(4819, 97029, 'ninety-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(4820, 10602, 'ten thousand six hundred two');\nINSERT INTO t2 VALUES(4821, 42379, 'forty-two thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(4822, 14969, 'fourteen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(4823, 76245, 'seventy-six thousand two hundred forty-five');\nINSERT INTO t2 VALUES(4824, 66360, 'sixty-six thousand three hundred sixty');\nINSERT INTO t2 VALUES(4825, 75475, 'seventy-five thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(4826, 34858, 'thirty-four thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(4827, 74993, 'seventy-four thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(4828, 19014, 'nineteen thousand fourteen');\nINSERT INTO t2 VALUES(4829, 80289, 'eighty thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(4830, 23267, 'twenty-three thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(4831, 3825, 'three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(4832, 52691, 'fifty-two thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(4833, 94716, 'ninety-four thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(4834, 37475, 'thirty-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(4835, 10097, 'ten thousand ninety-seven');\nINSERT INTO t2 VALUES(4836, 34612, 'thirty-four thousand six hundred twelve');\nINSERT INTO t2 VALUES(4837, 6177, 'six thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(4838, 79949, 'seventy-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(4839, 2101, 'two thousand one hundred one');\nINSERT INTO t2 VALUES(4840, 92602, 'ninety-two thousand six hundred two');\nINSERT INTO t2 VALUES(4841, 86662, 'eighty-six thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(4842, 4550, 'four thousand five hundred fifty');\nINSERT INTO t2 VALUES(4843, 19952, 'nineteen thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(4844, 85057, 'eighty-five thousand fifty-seven');\nINSERT INTO t2 VALUES(4845, 89932, 'eighty-nine thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(4846, 88702, 'eighty-eight thousand seven hundred two');\nINSERT INTO t2 VALUES(4847, 6053, 'six thousand fifty-three');\nINSERT INTO t2 VALUES(4848, 14956, 'fourteen thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(4849, 82044, 'eighty-two thousand forty-four');\nINSERT INTO t2 VALUES(4850, 40502, 'forty thousand five hundred two');\nINSERT INTO t2 VALUES(4851, 66270, 'sixty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(4852, 67502, 'sixty-seven thousand five hundred two');\nINSERT INTO t2 VALUES(4853, 16700, 'sixteen thousand seven hundred');\nINSERT INTO t2 VALUES(4854, 3480, 'three thousand four hundred eighty');\nINSERT INTO t2 VALUES(4855, 54407, 'fifty-four thousand four hundred seven');\nINSERT INTO t2 VALUES(4856, 17013, 'seventeen thousand thirteen');\nINSERT INTO t2 VALUES(4857, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(4858, 12000, 'twelve thousand');\nINSERT INTO t2 VALUES(4859, 80035, 'eighty thousand thirty-five');\nINSERT INTO t2 VALUES(4860, 49411, 'forty-nine thousand four hundred eleven');\nINSERT INTO t2 VALUES(4861, 6612, 'six thousand six hundred twelve');\nINSERT INTO t2 VALUES(4862, 35349, 'thirty-five thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(4863, 78876, 'seventy-eight thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(4864, 15385, 'fifteen thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(4865, 67216, 'sixty-seven thousand two hundred sixteen');\nINSERT INTO t2 VALUES(4866, 20820, 'twenty thousand eight hundred twenty');\nINSERT INTO t2 VALUES(4867, 57372, 'fifty-seven thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(4868, 92182, 'ninety-two thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(4869, 11215, 'eleven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(4870, 71712, 'seventy-one thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4871, 96324, 'ninety-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(4872, 59297, 'fifty-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(4873, 41951, 'forty-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(4874, 94949, 'ninety-four thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(4875, 89547, 'eighty-nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(4876, 62632, 'sixty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(4877, 73077, 'seventy-three thousand seventy-seven');\nINSERT INTO t2 VALUES(4878, 92981, 'ninety-two thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(4879, 6659, 'six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(4880, 70080, 'seventy thousand eighty');\nINSERT INTO t2 VALUES(4881, 46383, 'forty-six thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(4882, 46585, 'forty-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(4883, 18286, 'eighteen thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(4884, 54538, 'fifty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(4885, 36581, 'thirty-six thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(4886, 98167, 'ninety-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(4887, 88869, 'eighty-eight thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(4888, 25749, 'twenty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(4889, 63033, 'sixty-three thousand thirty-three');\nINSERT INTO t2 VALUES(4890, 35900, 'thirty-five thousand nine hundred');\nINSERT INTO t2 VALUES(4891, 7486, 'seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(4892, 94932, 'ninety-four thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(4893, 3554, 'three thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(4894, 30294, 'thirty thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(4895, 83844, 'eighty-three thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(4896, 38278, 'thirty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(4897, 39034, 'thirty-nine thousand thirty-four');\nINSERT INTO t2 VALUES(4898, 27746, 'twenty-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(4899, 43092, 'forty-three thousand ninety-two');\nINSERT INTO t2 VALUES(4900, 21265, 'twenty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(4901, 63625, 'sixty-three thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(4902, 5078, 'five thousand seventy-eight');\nINSERT INTO t2 VALUES(4903, 52275, 'fifty-two thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(4904, 46559, 'forty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(4905, 96165, 'ninety-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(4906, 64208, 'sixty-four thousand two hundred eight');\nINSERT INTO t2 VALUES(4907, 92308, 'ninety-two thousand three hundred eight');\nINSERT INTO t2 VALUES(4908, 12430, 'twelve thousand four hundred thirty');\nINSERT INTO t2 VALUES(4909, 15531, 'fifteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(4910, 24735, 'twenty-four thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(4911, 67909, 'sixty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(4912, 82301, 'eighty-two thousand three hundred one');\nINSERT INTO t2 VALUES(4913, 92672, 'ninety-two thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(4914, 85586, 'eighty-five thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(4915, 28340, 'twenty-eight thousand three hundred forty');\nINSERT INTO t2 VALUES(4916, 61592, 'sixty-one thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(4917, 19250, 'nineteen thousand two hundred fifty');\nINSERT INTO t2 VALUES(4918, 23888, 'twenty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(4919, 2292, 'two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(4920, 95415, 'ninety-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(4921, 41490, 'forty-one thousand four hundred ninety');\nINSERT INTO t2 VALUES(4922, 68044, 'sixty-eight thousand forty-four');\nINSERT INTO t2 VALUES(4923, 71962, 'seventy-one thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(4924, 26763, 'twenty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(4925, 99728, 'ninety-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(4926, 61207, 'sixty-one thousand two hundred seven');\nINSERT INTO t2 VALUES(4927, 45953, 'forty-five thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(4928, 99391, 'ninety-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(4929, 9812, 'nine thousand eight hundred twelve');\nINSERT INTO t2 VALUES(4930, 17705, 'seventeen thousand seven hundred five');\nINSERT INTO t2 VALUES(4931, 27902, 'twenty-seven thousand nine hundred two');\nINSERT INTO t2 VALUES(4932, 95210, 'ninety-five thousand two hundred ten');\nINSERT INTO t2 VALUES(4933, 49364, 'forty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(4934, 52670, 'fifty-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(4935, 92511, 'ninety-two thousand five hundred eleven');\nINSERT INTO t2 VALUES(4936, 97673, 'ninety-seven thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(4937, 54223, 'fifty-four thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(4938, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(4939, 21130, 'twenty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(4940, 35937, 'thirty-five thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(4941, 77114, 'seventy-seven thousand one hundred fourteen');\nINSERT INTO t2 VALUES(4942, 67387, 'sixty-seven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(4943, 37801, 'thirty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(4944, 77073, 'seventy-seven thousand seventy-three');\nINSERT INTO t2 VALUES(4945, 30190, 'thirty thousand one hundred ninety');\nINSERT INTO t2 VALUES(4946, 95547, 'ninety-five thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(4947, 38975, 'thirty-eight thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(4948, 68527, 'sixty-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(4949, 20626, 'twenty thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(4950, 2671, 'two thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(4951, 46834, 'forty-six thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(4952, 70999, 'seventy thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(4953, 39790, 'thirty-nine thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4954, 25000, 'twenty-five thousand');\nINSERT INTO t2 VALUES(4955, 1183, 'one thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(4956, 68473, 'sixty-eight thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(4957, 7251, 'seven thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(4958, 43609, 'forty-three thousand six hundred nine');\nINSERT INTO t2 VALUES(4959, 5859, 'five thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(4960, 48938, 'forty-eight thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(4961, 70491, 'seventy thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(4962, 36344, 'thirty-six thousand three hundred forty-four');\nINSERT INTO t2 VALUES(4963, 25136, 'twenty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(4964, 5483, 'five thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(4965, 59782, 'fifty-nine thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(4966, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t2 VALUES(4967, 23464, 'twenty-three thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(4968, 44027, 'forty-four thousand twenty-seven');\nINSERT INTO t2 VALUES(4969, 43114, 'forty-three thousand one hundred fourteen');\nINSERT INTO t2 VALUES(4970, 21173, 'twenty-one thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(4971, 73577, 'seventy-three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(4972, 25946, 'twenty-five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(4973, 80055, 'eighty thousand fifty-five');\nINSERT INTO t2 VALUES(4974, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(4975, 72656, 'seventy-two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(4976, 10775, 'ten thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(4977, 50830, 'fifty thousand eight hundred thirty');\nINSERT INTO t2 VALUES(4978, 22257, 'twenty-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(4979, 22434, 'twenty-two thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(4980, 44815, 'forty-four thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(4981, 74790, 'seventy-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(4982, 26020, 'twenty-six thousand twenty');\nINSERT INTO t2 VALUES(4983, 74226, 'seventy-four thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(4984, 4612, 'four thousand six hundred twelve');\nINSERT INTO t2 VALUES(4985, 15622, 'fifteen thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(4986, 40404, 'forty thousand four hundred four');\nINSERT INTO t2 VALUES(4987, 57422, 'fifty-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(4988, 29900, 'twenty-nine thousand nine hundred');\nINSERT INTO t2 VALUES(4989, 76359, 'seventy-six thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(4990, 55289, 'fifty-five thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(4991, 47993, 'forty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(4992, 66117, 'sixty-six thousand one hundred seventeen');\nINSERT INTO t2 VALUES(4993, 54833, 'fifty-four thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(4994, 54347, 'fifty-four thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(4995, 48578, 'forty-eight thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(4996, 21743, 'twenty-one thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(4997, 65712, 'sixty-five thousand seven hundred twelve');\nINSERT INTO t2 VALUES(4998, 99309, 'ninety-nine thousand three hundred nine');\nINSERT INTO t2 VALUES(4999, 56777, 'fifty-six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(5000, 76006, 'seventy-six thousand six');\nINSERT INTO t2 VALUES(5001, 54584, 'fifty-four thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(5002, 39790, 'thirty-nine thousand seven hundred ninety');\nINSERT INTO t2 VALUES(5003, 76793, 'seventy-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(5004, 38354, 'thirty-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(5005, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(5006, 35674, 'thirty-five thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(5007, 69052, 'sixty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(5008, 37592, 'thirty-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(5009, 19592, 'nineteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(5010, 41696, 'forty-one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(5011, 46847, 'forty-six thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(5012, 5559, 'five thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(5013, 13973, 'thirteen thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(5014, 85494, 'eighty-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5015, 10036, 'ten thousand thirty-six');\nINSERT INTO t2 VALUES(5016, 3631, 'three thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(5017, 4271, 'four thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(5018, 15463, 'fifteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(5019, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5020, 84615, 'eighty-four thousand six hundred fifteen');\nINSERT INTO t2 VALUES(5021, 13213, 'thirteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(5022, 71979, 'seventy-one thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(5023, 20880, 'twenty thousand eight hundred eighty');\nINSERT INTO t2 VALUES(5024, 33689, 'thirty-three thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(5025, 2246, 'two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(5026, 53994, 'fifty-three thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(5027, 5916, 'five thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(5028, 43769, 'forty-three thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(5029, 23461, 'twenty-three thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(5030, 29527, 'twenty-nine thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(5031, 25637, 'twenty-five thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(5032, 23596, 'twenty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(5033, 58673, 'fifty-eight thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(5034, 56218, 'fifty-six thousand two hundred eighteen');\nINSERT INTO t2 VALUES(5035, 15854, 'fifteen thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(5036, 13049, 'thirteen thousand forty-nine');\nINSERT INTO t2 VALUES(5037, 11890, 'eleven thousand eight hundred ninety');\nINSERT INTO t2 VALUES(5038, 90603, 'ninety thousand six hundred three');\nINSERT INTO t2 VALUES(5039, 7377, 'seven thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(5040, 81798, 'eighty-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(5041, 45721, 'forty-five thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(5042, 76444, 'seventy-six thousand four hundred forty-four');\nINSERT INTO t2 VALUES(5043, 59561, 'fifty-nine thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(5044, 56704, 'fifty-six thousand seven hundred four');\nINSERT INTO t2 VALUES(5045, 23426, 'twenty-three thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(5046, 83766, 'eighty-three thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(5047, 85627, 'eighty-five thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(5048, 89080, 'eighty-nine thousand eighty');\nINSERT INTO t2 VALUES(5049, 78973, 'seventy-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(5050, 83165, 'eighty-three thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(5051, 69505, 'sixty-nine thousand five hundred five');\nINSERT INTO t2 VALUES(5052, 10825, 'ten thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(5053, 84581, 'eighty-four thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(5054, 60573, 'sixty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(5055, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t2 VALUES(5056, 21178, 'twenty-one thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(5057, 55881, 'fifty-five thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(5058, 65284, 'sixty-five thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(5059, 75245, 'seventy-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(5060, 97129, 'ninety-seven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(5061, 51314, 'fifty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(5062, 56590, 'fifty-six thousand five hundred ninety');\nINSERT INTO t2 VALUES(5063, 80409, 'eighty thousand four hundred nine');\nINSERT INTO t2 VALUES(5064, 90545, 'ninety thousand five hundred forty-five');\nINSERT INTO t2 VALUES(5065, 11948, 'eleven thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(5066, 75688, 'seventy-five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(5067, 42655, 'forty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(5068, 48614, 'forty-eight thousand six hundred fourteen');\nINSERT INTO t2 VALUES(5069, 86866, 'eighty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5070, 17972, 'seventeen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(5071, 92293, 'ninety-two thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(5072, 26566, 'twenty-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(5073, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(5074, 40950, 'forty thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5075, 67035, 'sixty-seven thousand thirty-five');\nINSERT INTO t2 VALUES(5076, 30157, 'thirty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(5077, 90995, 'ninety thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(5078, 23306, 'twenty-three thousand three hundred six');\nINSERT INTO t2 VALUES(5079, 23727, 'twenty-three thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(5080, 28854, 'twenty-eight thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(5081, 5609, 'five thousand six hundred nine');\nINSERT INTO t2 VALUES(5082, 69635, 'sixty-nine thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(5083, 75082, 'seventy-five thousand eighty-two');\nINSERT INTO t2 VALUES(5084, 61201, 'sixty-one thousand two hundred one');\nINSERT INTO t2 VALUES(5085, 64915, 'sixty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(5086, 34554, 'thirty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(5087, 39827, 'thirty-nine thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(5088, 36853, 'thirty-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(5089, 25298, 'twenty-five thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(5090, 47949, 'forty-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(5091, 55069, 'fifty-five thousand sixty-nine');\nINSERT INTO t2 VALUES(5092, 41503, 'forty-one thousand five hundred three');\nINSERT INTO t2 VALUES(5093, 561, 'five hundred sixty-one');\nINSERT INTO t2 VALUES(5094, 13146, 'thirteen thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5095, 51192, 'fifty-one thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(5096, 19, 'nineteen');\nINSERT INTO t2 VALUES(5097, 23490, 'twenty-three thousand four hundred ninety');\nINSERT INTO t2 VALUES(5098, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(5099, 53051, 'fifty-three thousand fifty-one');\nINSERT INTO t2 VALUES(5100, 97504, 'ninety-seven thousand five hundred four');\nINSERT INTO t2 VALUES(5101, 53810, 'fifty-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(5102, 38016, 'thirty-eight thousand sixteen');\nINSERT INTO t2 VALUES(5103, 94589, 'ninety-four thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(5104, 64425, 'sixty-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(5105, 77528, 'seventy-seven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(5106, 97225, 'ninety-seven thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(5107, 98349, 'ninety-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(5108, 80922, 'eighty thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5109, 17451, 'seventeen thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(5110, 70869, 'seventy thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(5111, 41319, 'forty-one thousand three hundred nineteen');\nINSERT INTO t2 VALUES(5112, 31242, 'thirty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(5113, 31776, 'thirty-one thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(5114, 93588, 'ninety-three thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(5115, 67748, 'sixty-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(5116, 84330, 'eighty-four thousand three hundred thirty');\nINSERT INTO t2 VALUES(5117, 80165, 'eighty thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(5118, 83666, 'eighty-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(5119, 62516, 'sixty-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(5120, 24093, 'twenty-four thousand ninety-three');\nINSERT INTO t2 VALUES(5121, 33489, 'thirty-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(5122, 38940, 'thirty-eight thousand nine hundred forty');\nINSERT INTO t2 VALUES(5123, 36679, 'thirty-six thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(5124, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t2 VALUES(5125, 51646, 'fifty-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(5126, 91814, 'ninety-one thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(5127, 59360, 'fifty-nine thousand three hundred sixty');\nINSERT INTO t2 VALUES(5128, 17219, 'seventeen thousand two hundred nineteen');\nINSERT INTO t2 VALUES(5129, 54693, 'fifty-four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(5130, 88067, 'eighty-eight thousand sixty-seven');\nINSERT INTO t2 VALUES(5131, 78746, 'seventy-eight thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(5132, 40542, 'forty thousand five hundred forty-two');\nINSERT INTO t2 VALUES(5133, 82944, 'eighty-two thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(5134, 36885, 'thirty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(5135, 6810, 'six thousand eight hundred ten');\nINSERT INTO t2 VALUES(5136, 2586, 'two thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(5137, 26637, 'twenty-six thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(5138, 27621, 'twenty-seven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(5139, 8355, 'eight thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(5140, 84173, 'eighty-four thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(5141, 36366, 'thirty-six thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(5142, 91644, 'ninety-one thousand six hundred forty-four');\nINSERT INTO t2 VALUES(5143, 87484, 'eighty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(5144, 46132, 'forty-six thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5145, 60494, 'sixty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5146, 76727, 'seventy-six thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(5147, 50231, 'fifty thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(5148, 58520, 'fifty-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(5149, 87954, 'eighty-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(5150, 79266, 'seventy-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(5151, 79677, 'seventy-nine thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(5152, 93605, 'ninety-three thousand six hundred five');\nINSERT INTO t2 VALUES(5153, 56204, 'fifty-six thousand two hundred four');\nINSERT INTO t2 VALUES(5154, 21078, 'twenty-one thousand seventy-eight');\nINSERT INTO t2 VALUES(5155, 73086, 'seventy-three thousand eighty-six');\nINSERT INTO t2 VALUES(5156, 78933, 'seventy-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5157, 79104, 'seventy-nine thousand one hundred four');\nINSERT INTO t2 VALUES(5158, 9544, 'nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(5159, 49912, 'forty-nine thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5160, 93064, 'ninety-three thousand sixty-four');\nINSERT INTO t2 VALUES(5161, 35041, 'thirty-five thousand forty-one');\nINSERT INTO t2 VALUES(5162, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(5163, 52072, 'fifty-two thousand seventy-two');\nINSERT INTO t2 VALUES(5164, 6455, 'six thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(5165, 42472, 'forty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(5166, 47328, 'forty-seven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(5167, 69741, 'sixty-nine thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(5168, 83016, 'eighty-three thousand sixteen');\nINSERT INTO t2 VALUES(5169, 74810, 'seventy-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(5170, 18469, 'eighteen thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(5171, 32678, 'thirty-two thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(5172, 87525, 'eighty-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(5173, 17571, 'seventeen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(5174, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(5175, 92721, 'ninety-two thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(5176, 89026, 'eighty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(5177, 77797, 'seventy-seven thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(5178, 38063, 'thirty-eight thousand sixty-three');\nINSERT INTO t2 VALUES(5179, 5244, 'five thousand two hundred forty-four');\nINSERT INTO t2 VALUES(5180, 67173, 'sixty-seven thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(5181, 65154, 'sixty-five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(5182, 79458, 'seventy-nine thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(5183, 24147, 'twenty-four thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(5184, 8676, 'eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(5185, 73329, 'seventy-three thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(5186, 2066, 'two thousand sixty-six');\nINSERT INTO t2 VALUES(5187, 76724, 'seventy-six thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(5188, 44702, 'forty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(5189, 41851, 'forty-one thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(5190, 48920, 'forty-eight thousand nine hundred twenty');\nINSERT INTO t2 VALUES(5191, 15050, 'fifteen thousand fifty');\nINSERT INTO t2 VALUES(5192, 54443, 'fifty-four thousand four hundred forty-three');\nINSERT INTO t2 VALUES(5193, 53268, 'fifty-three thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(5194, 8007, 'eight thousand seven');\nINSERT INTO t2 VALUES(5195, 28339, 'twenty-eight thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(5196, 10340, 'ten thousand three hundred forty');\nINSERT INTO t2 VALUES(5197, 84652, 'eighty-four thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(5198, 86770, 'eighty-six thousand seven hundred seventy');\nINSERT INTO t2 VALUES(5199, 71747, 'seventy-one thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(5200, 35653, 'thirty-five thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(5201, 97934, 'ninety-seven thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(5202, 76458, 'seventy-six thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(5203, 61364, 'sixty-one thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(5204, 39435, 'thirty-nine thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(5205, 9286, 'nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(5206, 32518, 'thirty-two thousand five hundred eighteen');\nINSERT INTO t2 VALUES(5207, 88687, 'eighty-eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5208, 13900, 'thirteen thousand nine hundred');\nINSERT INTO t2 VALUES(5209, 87256, 'eighty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(5210, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(5211, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5212, 13386, 'thirteen thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(5213, 81764, 'eighty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(5214, 32266, 'thirty-two thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(5215, 51612, 'fifty-one thousand six hundred twelve');\nINSERT INTO t2 VALUES(5216, 89157, 'eighty-nine thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(5217, 55315, 'fifty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(5218, 92005, 'ninety-two thousand five');\nINSERT INTO t2 VALUES(5219, 27552, 'twenty-seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(5220, 92540, 'ninety-two thousand five hundred forty');\nINSERT INTO t2 VALUES(5221, 70516, 'seventy thousand five hundred sixteen');\nINSERT INTO t2 VALUES(5222, 85849, 'eighty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(5223, 97216, 'ninety-seven thousand two hundred sixteen');\nINSERT INTO t2 VALUES(5224, 30165, 'thirty thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(5225, 40762, 'forty thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(5226, 56910, 'fifty-six thousand nine hundred ten');\nINSERT INTO t2 VALUES(5227, 54585, 'fifty-four thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5228, 13498, 'thirteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(5229, 97417, 'ninety-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(5230, 42402, 'forty-two thousand four hundred two');\nINSERT INTO t2 VALUES(5231, 18751, 'eighteen thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(5232, 42342, 'forty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(5233, 86201, 'eighty-six thousand two hundred one');\nINSERT INTO t2 VALUES(5234, 10814, 'ten thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(5235, 72891, 'seventy-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(5236, 86595, 'eighty-six thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(5237, 2117, 'two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(5238, 80556, 'eighty thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(5239, 16822, 'sixteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(5240, 28227, 'twenty-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(5241, 86732, 'eighty-six thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(5242, 27483, 'twenty-seven thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(5243, 90741, 'ninety thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(5244, 76751, 'seventy-six thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(5245, 51783, 'fifty-one thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(5246, 71838, 'seventy-one thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5247, 38091, 'thirty-eight thousand ninety-one');\nINSERT INTO t2 VALUES(5248, 17093, 'seventeen thousand ninety-three');\nINSERT INTO t2 VALUES(5249, 93920, 'ninety-three thousand nine hundred twenty');\nINSERT INTO t2 VALUES(5250, 52613, 'fifty-two thousand six hundred thirteen');\nINSERT INTO t2 VALUES(5251, 86579, 'eighty-six thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(5252, 56256, 'fifty-six thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(5253, 98577, 'ninety-eight thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(5254, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5255, 24810, 'twenty-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(5256, 6151, 'six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(5257, 75612, 'seventy-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(5258, 85805, 'eighty-five thousand eight hundred five');\nINSERT INTO t2 VALUES(5259, 56894, 'fifty-six thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(5260, 35404, 'thirty-five thousand four hundred four');\nINSERT INTO t2 VALUES(5261, 88306, 'eighty-eight thousand three hundred six');\nINSERT INTO t2 VALUES(5262, 15494, 'fifteen thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5263, 74473, 'seventy-four thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5264, 12515, 'twelve thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5265, 52947, 'fifty-two thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(5266, 15232, 'fifteen thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(5267, 49211, 'forty-nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(5268, 56245, 'fifty-six thousand two hundred forty-five');\nINSERT INTO t2 VALUES(5269, 17399, 'seventeen thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(5270, 91665, 'ninety-one thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(5271, 25665, 'twenty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(5272, 13642, 'thirteen thousand six hundred forty-two');\nINSERT INTO t2 VALUES(5273, 48906, 'forty-eight thousand nine hundred six');\nINSERT INTO t2 VALUES(5274, 98863, 'ninety-eight thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(5275, 70699, 'seventy thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(5276, 95159, 'ninety-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(5277, 46816, 'forty-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(5278, 29965, 'twenty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(5279, 38079, 'thirty-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(5280, 78684, 'seventy-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(5281, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t2 VALUES(5282, 84140, 'eighty-four thousand one hundred forty');\nINSERT INTO t2 VALUES(5283, 67008, 'sixty-seven thousand eight');\nINSERT INTO t2 VALUES(5284, 31002, 'thirty-one thousand two');\nINSERT INTO t2 VALUES(5285, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(5286, 36661, 'thirty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(5287, 20725, 'twenty thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(5288, 71532, 'seventy-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(5289, 3593, 'three thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(5290, 50285, 'fifty thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(5291, 58550, 'fifty-eight thousand five hundred fifty');\nINSERT INTO t2 VALUES(5292, 71421, 'seventy-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(5293, 96097, 'ninety-six thousand ninety-seven');\nINSERT INTO t2 VALUES(5294, 4435, 'four thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(5295, 3892, 'three thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(5296, 51210, 'fifty-one thousand two hundred ten');\nINSERT INTO t2 VALUES(5297, 53839, 'fifty-three thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(5298, 87236, 'eighty-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(5299, 16280, 'sixteen thousand two hundred eighty');\nINSERT INTO t2 VALUES(5300, 52159, 'fifty-two thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(5301, 82213, 'eighty-two thousand two hundred thirteen');\nINSERT INTO t2 VALUES(5302, 26845, 'twenty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(5303, 61810, 'sixty-one thousand eight hundred ten');\nINSERT INTO t2 VALUES(5304, 9123, 'nine thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(5305, 81912, 'eighty-one thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5306, 76933, 'seventy-six thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5307, 59179, 'fifty-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(5308, 5154, 'five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(5309, 15991, 'fifteen thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(5310, 26294, 'twenty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(5311, 63443, 'sixty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(5312, 66173, 'sixty-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(5313, 92104, 'ninety-two thousand one hundred four');\nINSERT INTO t2 VALUES(5314, 10510, 'ten thousand five hundred ten');\nINSERT INTO t2 VALUES(5315, 16649, 'sixteen thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(5316, 43854, 'forty-three thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(5317, 19392, 'nineteen thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(5318, 21171, 'twenty-one thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(5319, 25855, 'twenty-five thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(5320, 95460, 'ninety-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(5321, 47633, 'forty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(5322, 18779, 'eighteen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(5323, 84801, 'eighty-four thousand eight hundred one');\nINSERT INTO t2 VALUES(5324, 22188, 'twenty-two thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(5325, 6775, 'six thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(5326, 81569, 'eighty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(5327, 6448, 'six thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(5328, 48952, 'forty-eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(5329, 46673, 'forty-six thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(5330, 89818, 'eighty-nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(5331, 26596, 'twenty-six thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(5332, 75812, 'seventy-five thousand eight hundred twelve');\nINSERT INTO t2 VALUES(5333, 10302, 'ten thousand three hundred two');\nINSERT INTO t2 VALUES(5334, 10591, 'ten thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(5335, 61893, 'sixty-one thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(5336, 38316, 'thirty-eight thousand three hundred sixteen');\nINSERT INTO t2 VALUES(5337, 61177, 'sixty-one thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(5338, 10551, 'ten thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(5339, 42025, 'forty-two thousand twenty-five');\nINSERT INTO t2 VALUES(5340, 87494, 'eighty-seven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5341, 4547, 'four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(5342, 46428, 'forty-six thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5343, 79016, 'seventy-nine thousand sixteen');\nINSERT INTO t2 VALUES(5344, 92130, 'ninety-two thousand one hundred thirty');\nINSERT INTO t2 VALUES(5345, 79710, 'seventy-nine thousand seven hundred ten');\nINSERT INTO t2 VALUES(5346, 22620, 'twenty-two thousand six hundred twenty');\nINSERT INTO t2 VALUES(5347, 27008, 'twenty-seven thousand eight');\nINSERT INTO t2 VALUES(5348, 57971, 'fifty-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(5349, 80720, 'eighty thousand seven hundred twenty');\nINSERT INTO t2 VALUES(5350, 70781, 'seventy thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(5351, 75601, 'seventy-five thousand six hundred one');\nINSERT INTO t2 VALUES(5352, 53397, 'fifty-three thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(5353, 88942, 'eighty-eight thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(5354, 94640, 'ninety-four thousand six hundred forty');\nINSERT INTO t2 VALUES(5355, 11939, 'eleven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(5356, 40217, 'forty thousand two hundred seventeen');\nINSERT INTO t2 VALUES(5357, 6737, 'six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(5358, 4726, 'four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(5359, 81980, 'eighty-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(5360, 60457, 'sixty thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(5361, 18045, 'eighteen thousand forty-five');\nINSERT INTO t2 VALUES(5362, 29445, 'twenty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(5363, 91888, 'ninety-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(5364, 88004, 'eighty-eight thousand four');\nINSERT INTO t2 VALUES(5365, 57146, 'fifty-seven thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5366, 37922, 'thirty-seven thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5367, 88257, 'eighty-eight thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(5368, 30211, 'thirty thousand two hundred eleven');\nINSERT INTO t2 VALUES(5369, 10159, 'ten thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(5370, 4876, 'four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(5371, 43935, 'forty-three thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(5372, 12446, 'twelve thousand four hundred forty-six');\nINSERT INTO t2 VALUES(5373, 64890, 'sixty-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(5374, 80042, 'eighty thousand forty-two');\nINSERT INTO t2 VALUES(5375, 14013, 'fourteen thousand thirteen');\nINSERT INTO t2 VALUES(5376, 29042, 'twenty-nine thousand forty-two');\nINSERT INTO t2 VALUES(5377, 29986, 'twenty-nine thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(5378, 84562, 'eighty-four thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(5379, 82043, 'eighty-two thousand forty-three');\nINSERT INTO t2 VALUES(5380, 31130, 'thirty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(5381, 13528, 'thirteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(5382, 14565, 'fourteen thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(5383, 6903, 'six thousand nine hundred three');\nINSERT INTO t2 VALUES(5384, 93742, 'ninety-three thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(5385, 11882, 'eleven thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(5386, 21475, 'twenty-one thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(5387, 49950, 'forty-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5388, 57661, 'fifty-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(5389, 7120, 'seven thousand one hundred twenty');\nINSERT INTO t2 VALUES(5390, 43494, 'forty-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5391, 18687, 'eighteen thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5392, 44254, 'forty-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(5393, 65021, 'sixty-five thousand twenty-one');\nINSERT INTO t2 VALUES(5394, 94232, 'ninety-four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(5395, 94726, 'ninety-four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(5396, 60279, 'sixty thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(5397, 21576, 'twenty-one thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(5398, 52825, 'fifty-two thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(5399, 79015, 'seventy-nine thousand fifteen');\nINSERT INTO t2 VALUES(5400, 66967, 'sixty-six thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(5401, 24511, 'twenty-four thousand five hundred eleven');\nINSERT INTO t2 VALUES(5402, 48642, 'forty-eight thousand six hundred forty-two');\nINSERT INTO t2 VALUES(5403, 53963, 'fifty-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(5404, 87270, 'eighty-seven thousand two hundred seventy');\nINSERT INTO t2 VALUES(5405, 58494, 'fifty-eight thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5406, 19483, 'nineteen thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(5407, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t2 VALUES(5408, 11120, 'eleven thousand one hundred twenty');\nINSERT INTO t2 VALUES(5409, 13105, 'thirteen thousand one hundred five');\nINSERT INTO t2 VALUES(5410, 57833, 'fifty-seven thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(5411, 62579, 'sixty-two thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(5412, 58150, 'fifty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(5413, 48699, 'forty-eight thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(5414, 51358, 'fifty-one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(5415, 64428, 'sixty-four thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5416, 66843, 'sixty-six thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(5417, 78413, 'seventy-eight thousand four hundred thirteen');\nINSERT INTO t2 VALUES(5418, 11829, 'eleven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(5419, 15371, 'fifteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5420, 15426, 'fifteen thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(5421, 31964, 'thirty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(5422, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(5423, 62210, 'sixty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(5424, 65849, 'sixty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(5425, 50671, 'fifty thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(5426, 3958, 'three thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(5427, 86753, 'eighty-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(5428, 2371, 'two thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5429, 40468, 'forty thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(5430, 58504, 'fifty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(5431, 57238, 'fifty-seven thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(5432, 31687, 'thirty-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(5433, 24129, 'twenty-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(5434, 64691, 'sixty-four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(5435, 18869, 'eighteen thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(5436, 26724, 'twenty-six thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(5437, 36431, 'thirty-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(5438, 42625, 'forty-two thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(5439, 57801, 'fifty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(5440, 99459, 'ninety-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(5441, 49376, 'forty-nine thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(5442, 96477, 'ninety-six thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(5443, 77880, 'seventy-seven thousand eight hundred eighty');\nINSERT INTO t2 VALUES(5444, 86640, 'eighty-six thousand six hundred forty');\nINSERT INTO t2 VALUES(5445, 73522, 'seventy-three thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(5446, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(5447, 68835, 'sixty-eight thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(5448, 88990, 'eighty-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(5449, 63962, 'sixty-three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(5450, 55163, 'fifty-five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(5451, 87425, 'eighty-seven thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(5452, 29853, 'twenty-nine thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(5453, 37715, 'thirty-seven thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(5454, 44952, 'forty-four thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(5455, 65607, 'sixty-five thousand six hundred seven');\nINSERT INTO t2 VALUES(5456, 6073, 'six thousand seventy-three');\nINSERT INTO t2 VALUES(5457, 9230, 'nine thousand two hundred thirty');\nINSERT INTO t2 VALUES(5458, 46462, 'forty-six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(5459, 59262, 'fifty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(5460, 94289, 'ninety-four thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(5461, 98634, 'ninety-eight thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(5462, 23407, 'twenty-three thousand four hundred seven');\nINSERT INTO t2 VALUES(5463, 40593, 'forty thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(5464, 20043, 'twenty thousand forty-three');\nINSERT INTO t2 VALUES(5465, 49286, 'forty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(5466, 95838, 'ninety-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5467, 54130, 'fifty-four thousand one hundred thirty');\nINSERT INTO t2 VALUES(5468, 48392, 'forty-eight thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(5469, 20104, 'twenty thousand one hundred four');\nINSERT INTO t2 VALUES(5470, 30773, 'thirty thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(5471, 4376, 'four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(5472, 77786, 'seventy-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(5473, 76515, 'seventy-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5474, 68599, 'sixty-eight thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(5475, 63128, 'sixty-three thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(5476, 90837, 'ninety thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(5477, 88521, 'eighty-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(5478, 87382, 'eighty-seven thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(5479, 70390, 'seventy thousand three hundred ninety');\nINSERT INTO t2 VALUES(5480, 36387, 'thirty-six thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(5481, 59666, 'fifty-nine thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(5482, 47147, 'forty-seven thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(5483, 19549, 'nineteen thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(5484, 95069, 'ninety-five thousand sixty-nine');\nINSERT INTO t2 VALUES(5485, 17021, 'seventeen thousand twenty-one');\nINSERT INTO t2 VALUES(5486, 77406, 'seventy-seven thousand four hundred six');\nINSERT INTO t2 VALUES(5487, 73802, 'seventy-three thousand eight hundred two');\nINSERT INTO t2 VALUES(5488, 14418, 'fourteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(5489, 88608, 'eighty-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(5490, 29278, 'twenty-nine thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(5491, 88753, 'eighty-eight thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(5492, 50061, 'fifty thousand sixty-one');\nINSERT INTO t2 VALUES(5493, 17050, 'seventeen thousand fifty');\nINSERT INTO t2 VALUES(5494, 95011, 'ninety-five thousand eleven');\nINSERT INTO t2 VALUES(5495, 51750, 'fifty-one thousand seven hundred fifty');\nINSERT INTO t2 VALUES(5496, 80705, 'eighty thousand seven hundred five');\nINSERT INTO t2 VALUES(5497, 44345, 'forty-four thousand three hundred forty-five');\nINSERT INTO t2 VALUES(5498, 38521, 'thirty-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(5499, 72242, 'seventy-two thousand two hundred forty-two');\nINSERT INTO t2 VALUES(5500, 3791, 'three thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(5501, 79979, 'seventy-nine thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(5502, 34828, 'thirty-four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(5503, 59868, 'fifty-nine thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(5504, 71739, 'seventy-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(5505, 15740, 'fifteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(5506, 76279, 'seventy-six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(5507, 31368, 'thirty-one thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(5508, 81182, 'eighty-one thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(5509, 84862, 'eighty-four thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(5510, 46421, 'forty-six thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(5511, 74788, 'seventy-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(5512, 84992, 'eighty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(5513, 88537, 'eighty-eight thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(5514, 2609, 'two thousand six hundred nine');\nINSERT INTO t2 VALUES(5515, 34928, 'thirty-four thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(5516, 82221, 'eighty-two thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(5517, 52138, 'fifty-two thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(5518, 73310, 'seventy-three thousand three hundred ten');\nINSERT INTO t2 VALUES(5519, 89282, 'eighty-nine thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(5520, 33292, 'thirty-three thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(5521, 88606, 'eighty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(5522, 35217, 'thirty-five thousand two hundred seventeen');\nINSERT INTO t2 VALUES(5523, 18997, 'eighteen thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(5524, 53975, 'fifty-three thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(5525, 66917, 'sixty-six thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(5526, 11438, 'eleven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(5527, 94326, 'ninety-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(5528, 62255, 'sixty-two thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(5529, 21, 'twenty-one');\nINSERT INTO t2 VALUES(5530, 38807, 'thirty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(5531, 96504, 'ninety-six thousand five hundred four');\nINSERT INTO t2 VALUES(5532, 30282, 'thirty thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(5533, 38200, 'thirty-eight thousand two hundred');\nINSERT INTO t2 VALUES(5534, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(5535, 12441, 'twelve thousand four hundred forty-one');\nINSERT INTO t2 VALUES(5536, 7669, 'seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(5537, 54797, 'fifty-four thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(5538, 97746, 'ninety-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(5539, 3746, 'three thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(5540, 83599, 'eighty-three thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(5541, 85428, 'eighty-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5542, 30066, 'thirty thousand sixty-six');\nINSERT INTO t2 VALUES(5543, 17243, 'seventeen thousand two hundred forty-three');\nINSERT INTO t2 VALUES(5544, 75160, 'seventy-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(5545, 55203, 'fifty-five thousand two hundred three');\nINSERT INTO t2 VALUES(5546, 42604, 'forty-two thousand six hundred four');\nINSERT INTO t2 VALUES(5547, 47921, 'forty-seven thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(5548, 16561, 'sixteen thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(5549, 35959, 'thirty-five thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(5550, 82256, 'eighty-two thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(5551, 32316, 'thirty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(5552, 48684, 'forty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(5553, 94375, 'ninety-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(5554, 2530, 'two thousand five hundred thirty');\nINSERT INTO t2 VALUES(5555, 34569, 'thirty-four thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(5556, 69306, 'sixty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(5557, 76109, 'seventy-six thousand one hundred nine');\nINSERT INTO t2 VALUES(5558, 34619, 'thirty-four thousand six hundred nineteen');\nINSERT INTO t2 VALUES(5559, 55537, 'fifty-five thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(5560, 9274, 'nine thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(5561, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(5562, 88660, 'eighty-eight thousand six hundred sixty');\nINSERT INTO t2 VALUES(5563, 86713, 'eighty-six thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(5564, 26428, 'twenty-six thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(5565, 30644, 'thirty thousand six hundred forty-four');\nINSERT INTO t2 VALUES(5566, 79211, 'seventy-nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(5567, 2184, 'two thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(5568, 13264, 'thirteen thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(5569, 21110, 'twenty-one thousand one hundred ten');\nINSERT INTO t2 VALUES(5570, 30463, 'thirty thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(5571, 43812, 'forty-three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(5572, 74889, 'seventy-four thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(5573, 77347, 'seventy-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(5574, 75806, 'seventy-five thousand eight hundred six');\nINSERT INTO t2 VALUES(5575, 35751, 'thirty-five thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(5576, 98489, 'ninety-eight thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(5577, 20337, 'twenty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(5578, 59570, 'fifty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(5579, 67132, 'sixty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5580, 64587, 'sixty-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(5581, 57435, 'fifty-seven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(5582, 52733, 'fifty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(5583, 10025, 'ten thousand twenty-five');\nINSERT INTO t2 VALUES(5584, 14289, 'fourteen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(5585, 25234, 'twenty-five thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(5586, 47838, 'forty-seven thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5587, 6962, 'six thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(5588, 64479, 'sixty-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(5589, 92528, 'ninety-two thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(5590, 21696, 'twenty-one thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(5591, 48013, 'forty-eight thousand thirteen');\nINSERT INTO t2 VALUES(5592, 14313, 'fourteen thousand three hundred thirteen');\nINSERT INTO t2 VALUES(5593, 62297, 'sixty-two thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(5594, 19885, 'nineteen thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(5595, 17912, 'seventeen thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5596, 72982, 'seventy-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(5597, 64728, 'sixty-four thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(5598, 42807, 'forty-two thousand eight hundred seven');\nINSERT INTO t2 VALUES(5599, 6279, 'six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(5600, 83004, 'eighty-three thousand four');\nINSERT INTO t2 VALUES(5601, 94580, 'ninety-four thousand five hundred eighty');\nINSERT INTO t2 VALUES(5602, 2075, 'two thousand seventy-five');\nINSERT INTO t2 VALUES(5603, 86052, 'eighty-six thousand fifty-two');\nINSERT INTO t2 VALUES(5604, 88043, 'eighty-eight thousand forty-three');\nINSERT INTO t2 VALUES(5605, 61411, 'sixty-one thousand four hundred eleven');\nINSERT INTO t2 VALUES(5606, 39811, 'thirty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(5607, 1233, 'one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(5608, 51964, 'fifty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(5609, 27144, 'twenty-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(5610, 84692, 'eighty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(5611, 71114, 'seventy-one thousand one hundred fourteen');\nINSERT INTO t2 VALUES(5612, 72220, 'seventy-two thousand two hundred twenty');\nINSERT INTO t2 VALUES(5613, 8548, 'eight thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(5614, 52494, 'fifty-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(5615, 73369, 'seventy-three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(5616, 50877, 'fifty thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(5617, 26020, 'twenty-six thousand twenty');\nINSERT INTO t2 VALUES(5618, 35550, 'thirty-five thousand five hundred fifty');\nINSERT INTO t2 VALUES(5619, 75390, 'seventy-five thousand three hundred ninety');\nINSERT INTO t2 VALUES(5620, 89370, 'eighty-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(5621, 51799, 'fifty-one thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(5622, 27167, 'twenty-seven thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(5623, 5311, 'five thousand three hundred eleven');\nINSERT INTO t2 VALUES(5624, 82590, 'eighty-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(5625, 92976, 'ninety-two thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(5626, 29196, 'twenty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(5627, 90019, 'ninety thousand nineteen');\nINSERT INTO t2 VALUES(5628, 62474, 'sixty-two thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(5629, 47399, 'forty-seven thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(5630, 37931, 'thirty-seven thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(5631, 28533, 'twenty-eight thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(5632, 12769, 'twelve thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(5633, 28849, 'twenty-eight thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(5634, 91354, 'ninety-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(5635, 91866, 'ninety-one thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5636, 56549, 'fifty-six thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(5637, 5482, 'five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(5638, 40913, 'forty thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(5639, 47215, 'forty-seven thousand two hundred fifteen');\nINSERT INTO t2 VALUES(5640, 94146, 'ninety-four thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5641, 13639, 'thirteen thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(5642, 62598, 'sixty-two thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(5643, 94310, 'ninety-four thousand three hundred ten');\nINSERT INTO t2 VALUES(5644, 94628, 'ninety-four thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(5645, 15036, 'fifteen thousand thirty-six');\nINSERT INTO t2 VALUES(5646, 42773, 'forty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(5647, 7253, 'seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(5648, 39697, 'thirty-nine thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(5649, 9149, 'nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(5650, 76585, 'seventy-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5651, 82012, 'eighty-two thousand twelve');\nINSERT INTO t2 VALUES(5652, 70626, 'seventy thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(5653, 54755, 'fifty-four thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(5654, 61226, 'sixty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(5655, 87628, 'eighty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(5656, 29111, 'twenty-nine thousand one hundred eleven');\nINSERT INTO t2 VALUES(5657, 64680, 'sixty-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(5658, 51856, 'fifty-one thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(5659, 9707, 'nine thousand seven hundred seven');\nINSERT INTO t2 VALUES(5660, 19498, 'nineteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(5661, 50049, 'fifty thousand forty-nine');\nINSERT INTO t2 VALUES(5662, 49736, 'forty-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(5663, 51997, 'fifty-one thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(5664, 8382, 'eight thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(5665, 90227, 'ninety thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(5666, 42003, 'forty-two thousand three');\nINSERT INTO t2 VALUES(5667, 19768, 'nineteen thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(5668, 82300, 'eighty-two thousand three hundred');\nINSERT INTO t2 VALUES(5669, 88870, 'eighty-eight thousand eight hundred seventy');\nINSERT INTO t2 VALUES(5670, 8585, 'eight thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5671, 17982, 'seventeen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(5672, 10390, 'ten thousand three hundred ninety');\nINSERT INTO t2 VALUES(5673, 19909, 'nineteen thousand nine hundred nine');\nINSERT INTO t2 VALUES(5674, 13185, 'thirteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(5675, 83473, 'eighty-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5676, 59359, 'fifty-nine thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(5677, 17032, 'seventeen thousand thirty-two');\nINSERT INTO t2 VALUES(5678, 41473, 'forty-one thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5679, 23169, 'twenty-three thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(5680, 10812, 'ten thousand eight hundred twelve');\nINSERT INTO t2 VALUES(5681, 70626, 'seventy thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(5682, 7388, 'seven thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(5683, 47260, 'forty-seven thousand two hundred sixty');\nINSERT INTO t2 VALUES(5684, 51023, 'fifty-one thousand twenty-three');\nINSERT INTO t2 VALUES(5685, 42904, 'forty-two thousand nine hundred four');\nINSERT INTO t2 VALUES(5686, 10625, 'ten thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(5687, 36720, 'thirty-six thousand seven hundred twenty');\nINSERT INTO t2 VALUES(5688, 87672, 'eighty-seven thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(5689, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t2 VALUES(5690, 10534, 'ten thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(5691, 73056, 'seventy-three thousand fifty-six');\nINSERT INTO t2 VALUES(5692, 58175, 'fifty-eight thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(5693, 12859, 'twelve thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(5694, 48898, 'forty-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(5695, 86126, 'eighty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(5696, 23356, 'twenty-three thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(5697, 51453, 'fifty-one thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(5698, 59643, 'fifty-nine thousand six hundred forty-three');\nINSERT INTO t2 VALUES(5699, 27465, 'twenty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(5700, 19676, 'nineteen thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(5701, 31987, 'thirty-one thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(5702, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t2 VALUES(5703, 10652, 'ten thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(5704, 16723, 'sixteen thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(5705, 14371, 'fourteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5706, 50190, 'fifty thousand one hundred ninety');\nINSERT INTO t2 VALUES(5707, 9026, 'nine thousand twenty-six');\nINSERT INTO t2 VALUES(5708, 941, 'nine hundred forty-one');\nINSERT INTO t2 VALUES(5709, 41496, 'forty-one thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(5710, 52655, 'fifty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(5711, 2334, 'two thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(5712, 80961, 'eighty thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(5713, 96316, 'ninety-six thousand three hundred sixteen');\nINSERT INTO t2 VALUES(5714, 1632, 'one thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(5715, 71922, 'seventy-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5716, 1507, 'one thousand five hundred seven');\nINSERT INTO t2 VALUES(5717, 22565, 'twenty-two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(5718, 67371, 'sixty-seven thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(5719, 84523, 'eighty-four thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(5720, 29016, 'twenty-nine thousand sixteen');\nINSERT INTO t2 VALUES(5721, 81168, 'eighty-one thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(5722, 49427, 'forty-nine thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(5723, 53836, 'fifty-three thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(5724, 84933, 'eighty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5725, 63137, 'sixty-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(5726, 7373, 'seven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(5727, 79127, 'seventy-nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(5728, 39734, 'thirty-nine thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(5729, 10029, 'ten thousand twenty-nine');\nINSERT INTO t2 VALUES(5730, 78553, 'seventy-eight thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(5731, 70221, 'seventy thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(5732, 63243, 'sixty-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(5733, 52157, 'fifty-two thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(5734, 3629, 'three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(5735, 31609, 'thirty-one thousand six hundred nine');\nINSERT INTO t2 VALUES(5736, 69956, 'sixty-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(5737, 97363, 'ninety-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(5738, 59052, 'fifty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(5739, 46851, 'forty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(5740, 14338, 'fourteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(5741, 82874, 'eighty-two thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(5742, 91348, 'ninety-one thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(5743, 27262, 'twenty-seven thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(5744, 68926, 'sixty-eight thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(5745, 36886, 'thirty-six thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(5746, 97824, 'ninety-seven thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(5747, 85933, 'eighty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(5748, 40448, 'forty thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(5749, 846, 'eight hundred forty-six');\nINSERT INTO t2 VALUES(5750, 67578, 'sixty-seven thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(5751, 15841, 'fifteen thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(5752, 57787, 'fifty-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(5753, 44717, 'forty-four thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(5754, 51403, 'fifty-one thousand four hundred three');\nINSERT INTO t2 VALUES(5755, 13002, 'thirteen thousand two');\nINSERT INTO t2 VALUES(5756, 44434, 'forty-four thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(5757, 69179, 'sixty-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(5758, 77078, 'seventy-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(5759, 82419, 'eighty-two thousand four hundred nineteen');\nINSERT INTO t2 VALUES(5760, 46290, 'forty-six thousand two hundred ninety');\nINSERT INTO t2 VALUES(5761, 60816, 'sixty thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(5762, 99965, 'ninety-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(5763, 74132, 'seventy-four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5764, 33057, 'thirty-three thousand fifty-seven');\nINSERT INTO t2 VALUES(5765, 45990, 'forty-five thousand nine hundred ninety');\nINSERT INTO t2 VALUES(5766, 26984, 'twenty-six thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(5767, 81966, 'eighty-one thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(5768, 45035, 'forty-five thousand thirty-five');\nINSERT INTO t2 VALUES(5769, 86738, 'eighty-six thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(5770, 63919, 'sixty-three thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(5771, 42917, 'forty-two thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(5772, 27805, 'twenty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(5773, 86436, 'eighty-six thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(5774, 32285, 'thirty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(5775, 36315, 'thirty-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(5776, 90019, 'ninety thousand nineteen');\nINSERT INTO t2 VALUES(5777, 98523, 'ninety-eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(5778, 56126, 'fifty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(5779, 78930, 'seventy-eight thousand nine hundred thirty');\nINSERT INTO t2 VALUES(5780, 75669, 'seventy-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(5781, 4198, 'four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(5782, 72105, 'seventy-two thousand one hundred five');\nINSERT INTO t2 VALUES(5783, 39464, 'thirty-nine thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(5784, 28769, 'twenty-eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(5785, 7472, 'seven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(5786, 60441, 'sixty thousand four hundred forty-one');\nINSERT INTO t2 VALUES(5787, 24585, 'twenty-four thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(5788, 31623, 'thirty-one thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(5789, 85058, 'eighty-five thousand fifty-eight');\nINSERT INTO t2 VALUES(5790, 85102, 'eighty-five thousand one hundred two');\nINSERT INTO t2 VALUES(5791, 97914, 'ninety-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(5792, 90224, 'ninety thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(5793, 79027, 'seventy-nine thousand twenty-seven');\nINSERT INTO t2 VALUES(5794, 30402, 'thirty thousand four hundred two');\nINSERT INTO t2 VALUES(5795, 11111, 'eleven thousand one hundred eleven');\nINSERT INTO t2 VALUES(5796, 99857, 'ninety-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(5797, 48669, 'forty-eight thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(5798, 36480, 'thirty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(5799, 30138, 'thirty thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(5800, 872, 'eight hundred seventy-two');\nINSERT INTO t2 VALUES(5801, 89029, 'eighty-nine thousand twenty-nine');\nINSERT INTO t2 VALUES(5802, 76871, 'seventy-six thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(5803, 80311, 'eighty thousand three hundred eleven');\nINSERT INTO t2 VALUES(5804, 98490, 'ninety-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(5805, 73212, 'seventy-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(5806, 64838, 'sixty-four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(5807, 45609, 'forty-five thousand six hundred nine');\nINSERT INTO t2 VALUES(5808, 65790, 'sixty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(5809, 83912, 'eighty-three thousand nine hundred twelve');\nINSERT INTO t2 VALUES(5810, 32688, 'thirty-two thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(5811, 22842, 'twenty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(5812, 26301, 'twenty-six thousand three hundred one');\nINSERT INTO t2 VALUES(5813, 22177, 'twenty-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(5814, 45336, 'forty-five thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(5815, 29344, 'twenty-nine thousand three hundred forty-four');\nINSERT INTO t2 VALUES(5816, 70758, 'seventy thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(5817, 84901, 'eighty-four thousand nine hundred one');\nINSERT INTO t2 VALUES(5818, 5045, 'five thousand forty-five');\nINSERT INTO t2 VALUES(5819, 56709, 'fifty-six thousand seven hundred nine');\nINSERT INTO t2 VALUES(5820, 99891, 'ninety-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(5821, 31764, 'thirty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(5822, 11183, 'eleven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(5823, 56719, 'fifty-six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(5824, 62526, 'sixty-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(5825, 54338, 'fifty-four thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(5826, 14141, 'fourteen thousand one hundred forty-one');\nINSERT INTO t2 VALUES(5827, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(5828, 94641, 'ninety-four thousand six hundred forty-one');\nINSERT INTO t2 VALUES(5829, 87078, 'eighty-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(5830, 99739, 'ninety-nine thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(5831, 71819, 'seventy-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(5832, 74240, 'seventy-four thousand two hundred forty');\nINSERT INTO t2 VALUES(5833, 94852, 'ninety-four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(5834, 33726, 'thirty-three thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(5835, 44672, 'forty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(5836, 11904, 'eleven thousand nine hundred four');\nINSERT INTO t2 VALUES(5837, 89703, 'eighty-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(5838, 16338, 'sixteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(5839, 41804, 'forty-one thousand eight hundred four');\nINSERT INTO t2 VALUES(5840, 40911, 'forty thousand nine hundred eleven');\nINSERT INTO t2 VALUES(5841, 15050, 'fifteen thousand fifty');\nINSERT INTO t2 VALUES(5842, 85635, 'eighty-five thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(5843, 35557, 'thirty-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(5844, 65950, 'sixty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5845, 56027, 'fifty-six thousand twenty-seven');\nINSERT INTO t2 VALUES(5846, 68922, 'sixty-eight thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(5847, 30224, 'thirty thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(5848, 98817, 'ninety-eight thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(5849, 19188, 'nineteen thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(5850, 931, 'nine hundred thirty-one');\nINSERT INTO t2 VALUES(5851, 12938, 'twelve thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(5852, 23261, 'twenty-three thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(5853, 28415, 'twenty-eight thousand four hundred fifteen');\nINSERT INTO t2 VALUES(5854, 64072, 'sixty-four thousand seventy-two');\nINSERT INTO t2 VALUES(5855, 89865, 'eighty-nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(5856, 73778, 'seventy-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(5857, 60778, 'sixty thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(5858, 57636, 'fifty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(5859, 42387, 'forty-two thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(5860, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(5861, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(5862, 37132, 'thirty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(5863, 17041, 'seventeen thousand forty-one');\nINSERT INTO t2 VALUES(5864, 77915, 'seventy-seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(5865, 52053, 'fifty-two thousand fifty-three');\nINSERT INTO t2 VALUES(5866, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(5867, 15972, 'fifteen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(5868, 90493, 'ninety thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(5869, 23068, 'twenty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(5870, 18255, 'eighteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(5871, 81621, 'eighty-one thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(5872, 31045, 'thirty-one thousand forty-five');\nINSERT INTO t2 VALUES(5873, 8164, 'eight thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(5874, 41047, 'forty-one thousand forty-seven');\nINSERT INTO t2 VALUES(5875, 348, 'three hundred forty-eight');\nINSERT INTO t2 VALUES(5876, 34285, 'thirty-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(5877, 77993, 'seventy-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(5878, 68007, 'sixty-eight thousand seven');\nINSERT INTO t2 VALUES(5879, 35477, 'thirty-five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(5880, 70752, 'seventy thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(5881, 88070, 'eighty-eight thousand seventy');\nINSERT INTO t2 VALUES(5882, 24859, 'twenty-four thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(5883, 50863, 'fifty thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(5884, 48723, 'forty-eight thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(5885, 27659, 'twenty-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(5886, 76093, 'seventy-six thousand ninety-three');\nINSERT INTO t2 VALUES(5887, 78651, 'seventy-eight thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(5888, 2010, 'two thousand ten');\nINSERT INTO t2 VALUES(5889, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t2 VALUES(5890, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(5891, 20255, 'twenty thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(5892, 40719, 'forty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(5893, 21383, 'twenty-one thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(5894, 32610, 'thirty-two thousand six hundred ten');\nINSERT INTO t2 VALUES(5895, 77054, 'seventy-seven thousand fifty-four');\nINSERT INTO t2 VALUES(5896, 14270, 'fourteen thousand two hundred seventy');\nINSERT INTO t2 VALUES(5897, 4693, 'four thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(5898, 14193, 'fourteen thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(5899, 51630, 'fifty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(5900, 55445, 'fifty-five thousand four hundred forty-five');\nINSERT INTO t2 VALUES(5901, 25083, 'twenty-five thousand eighty-three');\nINSERT INTO t2 VALUES(5902, 77234, 'seventy-seven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(5903, 55286, 'fifty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(5904, 78967, 'seventy-eight thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(5905, 47180, 'forty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(5906, 10379, 'ten thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(5907, 25455, 'twenty-five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(5908, 83985, 'eighty-three thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(5909, 94826, 'ninety-four thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(5910, 28744, 'twenty-eight thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(5911, 75957, 'seventy-five thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(5912, 67724, 'sixty-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(5913, 29467, 'twenty-nine thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(5914, 66281, 'sixty-six thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(5915, 68890, 'sixty-eight thousand eight hundred ninety');\nINSERT INTO t2 VALUES(5916, 49025, 'forty-nine thousand twenty-five');\nINSERT INTO t2 VALUES(5917, 82293, 'eighty-two thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(5918, 39840, 'thirty-nine thousand eight hundred forty');\nINSERT INTO t2 VALUES(5919, 66006, 'sixty-six thousand six');\nINSERT INTO t2 VALUES(5920, 61281, 'sixty-one thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(5921, 84817, 'eighty-four thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(5922, 89674, 'eighty-nine thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(5923, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(5924, 7219, 'seven thousand two hundred nineteen');\nINSERT INTO t2 VALUES(5925, 68104, 'sixty-eight thousand one hundred four');\nINSERT INTO t2 VALUES(5926, 34043, 'thirty-four thousand forty-three');\nINSERT INTO t2 VALUES(5927, 13408, 'thirteen thousand four hundred eight');\nINSERT INTO t2 VALUES(5928, 23392, 'twenty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(5929, 67417, 'sixty-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(5930, 46930, 'forty-six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(5931, 20384, 'twenty thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(5932, 61278, 'sixty-one thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(5933, 6445, 'six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(5934, 56211, 'fifty-six thousand two hundred eleven');\nINSERT INTO t2 VALUES(5935, 66186, 'sixty-six thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(5936, 31908, 'thirty-one thousand nine hundred eight');\nINSERT INTO t2 VALUES(5937, 95878, 'ninety-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(5938, 72616, 'seventy-two thousand six hundred sixteen');\nINSERT INTO t2 VALUES(5939, 96212, 'ninety-six thousand two hundred twelve');\nINSERT INTO t2 VALUES(5940, 28866, 'twenty-eight thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5941, 26146, 'twenty-six thousand one hundred forty-six');\nINSERT INTO t2 VALUES(5942, 95562, 'ninety-five thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(5943, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(5944, 59658, 'fifty-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(5945, 83779, 'eighty-three thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(5946, 16381, 'sixteen thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(5947, 29106, 'twenty-nine thousand one hundred six');\nINSERT INTO t2 VALUES(5948, 65974, 'sixty-five thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(5949, 99460, 'ninety-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(5950, 15546, 'fifteen thousand five hundred forty-six');\nINSERT INTO t2 VALUES(5951, 41211, 'forty-one thousand two hundred eleven');\nINSERT INTO t2 VALUES(5952, 74537, 'seventy-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(5953, 63166, 'sixty-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(5954, 82473, 'eighty-two thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(5955, 48878, 'forty-eight thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(5956, 45189, 'forty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(5957, 77752, 'seventy-seven thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(5958, 87932, 'eighty-seven thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(5959, 86277, 'eighty-six thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(5960, 20980, 'twenty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(5961, 37265, 'thirty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(5962, 81942, 'eighty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(5963, 4031, 'four thousand thirty-one');\nINSERT INTO t2 VALUES(5964, 86426, 'eighty-six thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(5965, 80515, 'eighty thousand five hundred fifteen');\nINSERT INTO t2 VALUES(5966, 73665, 'seventy-three thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(5967, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t2 VALUES(5968, 26935, 'twenty-six thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(5969, 9950, 'nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(5970, 42306, 'forty-two thousand three hundred six');\nINSERT INTO t2 VALUES(5971, 45431, 'forty-five thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(5972, 79241, 'seventy-nine thousand two hundred forty-one');\nINSERT INTO t2 VALUES(5973, 87674, 'eighty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(5974, 70856, 'seventy thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(5975, 56129, 'fifty-six thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(5976, 85673, 'eighty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(5977, 91795, 'ninety-one thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(5978, 67317, 'sixty-seven thousand three hundred seventeen');\nINSERT INTO t2 VALUES(5979, 22747, 'twenty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(5980, 96091, 'ninety-six thousand ninety-one');\nINSERT INTO t2 VALUES(5981, 61118, 'sixty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(5982, 84339, 'eighty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(5983, 99440, 'ninety-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(5984, 98795, 'ninety-eight thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(5985, 62418, 'sixty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(5986, 99509, 'ninety-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(5987, 23436, 'twenty-three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(5988, 27488, 'twenty-seven thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(5989, 96075, 'ninety-six thousand seventy-five');\nINSERT INTO t2 VALUES(5990, 28324, 'twenty-eight thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(5991, 28772, 'twenty-eight thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(5992, 20689, 'twenty thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(5993, 81518, 'eighty-one thousand five hundred eighteen');\nINSERT INTO t2 VALUES(5994, 34810, 'thirty-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(5995, 39866, 'thirty-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(5996, 68643, 'sixty-eight thousand six hundred forty-three');\nINSERT INTO t2 VALUES(5997, 99629, 'ninety-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(5998, 43539, 'forty-three thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(5999, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(6000, 24293, 'twenty-four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(6001, 9911, 'nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(6002, 32820, 'thirty-two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(6003, 33855, 'thirty-three thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(6004, 32863, 'thirty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(6005, 10257, 'ten thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(6006, 17293, 'seventeen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(6007, 25948, 'twenty-five thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(6008, 76148, 'seventy-six thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(6009, 80989, 'eighty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(6010, 13138, 'thirteen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(6011, 18117, 'eighteen thousand one hundred seventeen');\nINSERT INTO t2 VALUES(6012, 37625, 'thirty-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(6013, 11651, 'eleven thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(6014, 4414, 'four thousand four hundred fourteen');\nINSERT INTO t2 VALUES(6015, 96168, 'ninety-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(6016, 30176, 'thirty thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(6017, 16592, 'sixteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(6018, 19934, 'nineteen thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(6019, 61088, 'sixty-one thousand eighty-eight');\nINSERT INTO t2 VALUES(6020, 41073, 'forty-one thousand seventy-three');\nINSERT INTO t2 VALUES(6021, 10321, 'ten thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(6022, 42882, 'forty-two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(6023, 38439, 'thirty-eight thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(6024, 67141, 'sixty-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(6025, 29710, 'twenty-nine thousand seven hundred ten');\nINSERT INTO t2 VALUES(6026, 7026, 'seven thousand twenty-six');\nINSERT INTO t2 VALUES(6027, 64730, 'sixty-four thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6028, 982, 'nine hundred eighty-two');\nINSERT INTO t2 VALUES(6029, 54154, 'fifty-four thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(6030, 79999, 'seventy-nine thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(6031, 20139, 'twenty thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(6032, 20049, 'twenty thousand forty-nine');\nINSERT INTO t2 VALUES(6033, 61382, 'sixty-one thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(6034, 27733, 'twenty-seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(6035, 30448, 'thirty thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(6036, 85772, 'eighty-five thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(6037, 84090, 'eighty-four thousand ninety');\nINSERT INTO t2 VALUES(6038, 64591, 'sixty-four thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(6039, 95903, 'ninety-five thousand nine hundred three');\nINSERT INTO t2 VALUES(6040, 31880, 'thirty-one thousand eight hundred eighty');\nINSERT INTO t2 VALUES(6041, 81271, 'eighty-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(6042, 38059, 'thirty-eight thousand fifty-nine');\nINSERT INTO t2 VALUES(6043, 31397, 'thirty-one thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(6044, 32793, 'thirty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(6045, 72215, 'seventy-two thousand two hundred fifteen');\nINSERT INTO t2 VALUES(6046, 79398, 'seventy-nine thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(6047, 53081, 'fifty-three thousand eighty-one');\nINSERT INTO t2 VALUES(6048, 43060, 'forty-three thousand sixty');\nINSERT INTO t2 VALUES(6049, 71821, 'seventy-one thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6050, 70482, 'seventy thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(6051, 84735, 'eighty-four thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(6052, 98167, 'ninety-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(6053, 5447, 'five thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(6054, 18422, 'eighteen thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(6055, 806, 'eight hundred six');\nINSERT INTO t2 VALUES(6056, 65999, 'sixty-five thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(6057, 71788, 'seventy-one thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(6058, 45743, 'forty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(6059, 26377, 'twenty-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(6060, 34155, 'thirty-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(6061, 11997, 'eleven thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(6062, 88909, 'eighty-eight thousand nine hundred nine');\nINSERT INTO t2 VALUES(6063, 39965, 'thirty-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(6064, 39701, 'thirty-nine thousand seven hundred one');\nINSERT INTO t2 VALUES(6065, 7664, 'seven thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(6066, 11472, 'eleven thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(6067, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(6068, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(6069, 43682, 'forty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(6070, 40818, 'forty thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(6071, 8498, 'eight thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(6072, 6551, 'six thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(6073, 99301, 'ninety-nine thousand three hundred one');\nINSERT INTO t2 VALUES(6074, 75171, 'seventy-five thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(6075, 58286, 'fifty-eight thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(6076, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(6077, 50119, 'fifty thousand one hundred nineteen');\nINSERT INTO t2 VALUES(6078, 20595, 'twenty thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(6079, 91569, 'ninety-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(6080, 30325, 'thirty thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(6081, 14633, 'fourteen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(6082, 95828, 'ninety-five thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(6083, 12233, 'twelve thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(6084, 56433, 'fifty-six thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(6085, 94134, 'ninety-four thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(6086, 63406, 'sixty-three thousand four hundred six');\nINSERT INTO t2 VALUES(6087, 9358, 'nine thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(6088, 88736, 'eighty-eight thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(6089, 37829, 'thirty-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(6090, 58055, 'fifty-eight thousand fifty-five');\nINSERT INTO t2 VALUES(6091, 19211, 'nineteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(6092, 9621, 'nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(6093, 43331, 'forty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(6094, 3025, 'three thousand twenty-five');\nINSERT INTO t2 VALUES(6095, 65156, 'sixty-five thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(6096, 89529, 'eighty-nine thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(6097, 44712, 'forty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(6098, 60314, 'sixty thousand three hundred fourteen');\nINSERT INTO t2 VALUES(6099, 98299, 'ninety-eight thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(6100, 84243, 'eighty-four thousand two hundred forty-three');\nINSERT INTO t2 VALUES(6101, 74533, 'seventy-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(6102, 10785, 'ten thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(6103, 74129, 'seventy-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(6104, 8076, 'eight thousand seventy-six');\nINSERT INTO t2 VALUES(6105, 16801, 'sixteen thousand eight hundred one');\nINSERT INTO t2 VALUES(6106, 11420, 'eleven thousand four hundred twenty');\nINSERT INTO t2 VALUES(6107, 62746, 'sixty-two thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(6108, 47304, 'forty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(6109, 11714, 'eleven thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(6110, 97748, 'ninety-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(6111, 82057, 'eighty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(6112, 44645, 'forty-four thousand six hundred forty-five');\nINSERT INTO t2 VALUES(6113, 49904, 'forty-nine thousand nine hundred four');\nINSERT INTO t2 VALUES(6114, 17530, 'seventeen thousand five hundred thirty');\nINSERT INTO t2 VALUES(6115, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(6116, 27698, 'twenty-seven thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(6117, 1333, 'one thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(6118, 93574, 'ninety-three thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6119, 81450, 'eighty-one thousand four hundred fifty');\nINSERT INTO t2 VALUES(6120, 75877, 'seventy-five thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(6121, 60516, 'sixty thousand five hundred sixteen');\nINSERT INTO t2 VALUES(6122, 30442, 'thirty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(6123, 27029, 'twenty-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(6124, 12630, 'twelve thousand six hundred thirty');\nINSERT INTO t2 VALUES(6125, 3017, 'three thousand seventeen');\nINSERT INTO t2 VALUES(6126, 12658, 'twelve thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(6127, 96183, 'ninety-six thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(6128, 99065, 'ninety-nine thousand sixty-five');\nINSERT INTO t2 VALUES(6129, 66995, 'sixty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(6130, 5298, 'five thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(6131, 64425, 'sixty-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(6132, 844, 'eight hundred forty-four');\nINSERT INTO t2 VALUES(6133, 21930, 'twenty-one thousand nine hundred thirty');\nINSERT INTO t2 VALUES(6134, 23684, 'twenty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(6135, 35982, 'thirty-five thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(6136, 11008, 'eleven thousand eight');\nINSERT INTO t2 VALUES(6137, 19763, 'nineteen thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(6138, 60512, 'sixty thousand five hundred twelve');\nINSERT INTO t2 VALUES(6139, 21885, 'twenty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(6140, 83640, 'eighty-three thousand six hundred forty');\nINSERT INTO t2 VALUES(6141, 94539, 'ninety-four thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(6142, 52823, 'fifty-two thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(6143, 6389, 'six thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(6144, 19177, 'nineteen thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(6145, 89475, 'eighty-nine thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(6146, 20380, 'twenty thousand three hundred eighty');\nINSERT INTO t2 VALUES(6147, 87303, 'eighty-seven thousand three hundred three');\nINSERT INTO t2 VALUES(6148, 52516, 'fifty-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(6149, 14393, 'fourteen thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(6150, 68834, 'sixty-eight thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(6151, 85944, 'eighty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(6152, 78341, 'seventy-eight thousand three hundred forty-one');\nINSERT INTO t2 VALUES(6153, 82521, 'eighty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(6154, 48666, 'forty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(6155, 57268, 'fifty-seven thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(6156, 29428, 'twenty-nine thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(6157, 91941, 'ninety-one thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(6158, 55696, 'fifty-five thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(6159, 10591, 'ten thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(6160, 73189, 'seventy-three thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(6161, 5545, 'five thousand five hundred forty-five');\nINSERT INTO t2 VALUES(6162, 71766, 'seventy-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(6163, 60261, 'sixty thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(6164, 6771, 'six thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(6165, 61833, 'sixty-one thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(6166, 42807, 'forty-two thousand eight hundred seven');\nINSERT INTO t2 VALUES(6167, 12021, 'twelve thousand twenty-one');\nINSERT INTO t2 VALUES(6168, 47884, 'forty-seven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(6169, 24662, 'twenty-four thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(6170, 98069, 'ninety-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(6171, 2270, 'two thousand two hundred seventy');\nINSERT INTO t2 VALUES(6172, 26039, 'twenty-six thousand thirty-nine');\nINSERT INTO t2 VALUES(6173, 65640, 'sixty-five thousand six hundred forty');\nINSERT INTO t2 VALUES(6174, 46988, 'forty-six thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6175, 88153, 'eighty-eight thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(6176, 89564, 'eighty-nine thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(6177, 25319, 'twenty-five thousand three hundred nineteen');\nINSERT INTO t2 VALUES(6178, 12171, 'twelve thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(6179, 27465, 'twenty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(6180, 36456, 'thirty-six thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(6181, 70611, 'seventy thousand six hundred eleven');\nINSERT INTO t2 VALUES(6182, 43880, 'forty-three thousand eight hundred eighty');\nINSERT INTO t2 VALUES(6183, 62758, 'sixty-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(6184, 38437, 'thirty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(6185, 43518, 'forty-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(6186, 44228, 'forty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(6187, 17698, 'seventeen thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(6188, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(6189, 32407, 'thirty-two thousand four hundred seven');\nINSERT INTO t2 VALUES(6190, 19508, 'nineteen thousand five hundred eight');\nINSERT INTO t2 VALUES(6191, 25144, 'twenty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(6192, 40712, 'forty thousand seven hundred twelve');\nINSERT INTO t2 VALUES(6193, 80425, 'eighty thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(6194, 11179, 'eleven thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(6195, 27124, 'twenty-seven thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(6196, 15279, 'fifteen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(6197, 42399, 'forty-two thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(6198, 726, 'seven hundred twenty-six');\nINSERT INTO t2 VALUES(6199, 80053, 'eighty thousand fifty-three');\nINSERT INTO t2 VALUES(6200, 37164, 'thirty-seven thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(6201, 1416, 'one thousand four hundred sixteen');\nINSERT INTO t2 VALUES(6202, 86978, 'eighty-six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(6203, 74014, 'seventy-four thousand fourteen');\nINSERT INTO t2 VALUES(6204, 88463, 'eighty-eight thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(6205, 45408, 'forty-five thousand four hundred eight');\nINSERT INTO t2 VALUES(6206, 92533, 'ninety-two thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(6207, 83478, 'eighty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(6208, 53937, 'fifty-three thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(6209, 79527, 'seventy-nine thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6210, 70018, 'seventy thousand eighteen');\nINSERT INTO t2 VALUES(6211, 55734, 'fifty-five thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(6212, 45979, 'forty-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(6213, 35933, 'thirty-five thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(6214, 32057, 'thirty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(6215, 81084, 'eighty-one thousand eighty-four');\nINSERT INTO t2 VALUES(6216, 48355, 'forty-eight thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(6217, 95606, 'ninety-five thousand six hundred six');\nINSERT INTO t2 VALUES(6218, 81945, 'eighty-one thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(6219, 84258, 'eighty-four thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(6220, 40989, 'forty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(6221, 54235, 'fifty-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(6222, 28354, 'twenty-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(6223, 23029, 'twenty-three thousand twenty-nine');\nINSERT INTO t2 VALUES(6224, 28527, 'twenty-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6225, 54782, 'fifty-four thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(6226, 63834, 'sixty-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(6227, 31714, 'thirty-one thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(6228, 1076, 'one thousand seventy-six');\nINSERT INTO t2 VALUES(6229, 72732, 'seventy-two thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(6230, 98839, 'ninety-eight thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(6231, 87124, 'eighty-seven thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(6232, 66213, 'sixty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(6233, 23091, 'twenty-three thousand ninety-one');\nINSERT INTO t2 VALUES(6234, 43627, 'forty-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(6235, 76741, 'seventy-six thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(6236, 86983, 'eighty-six thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(6237, 66646, 'sixty-six thousand six hundred forty-six');\nINSERT INTO t2 VALUES(6238, 4490, 'four thousand four hundred ninety');\nINSERT INTO t2 VALUES(6239, 72257, 'seventy-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(6240, 89622, 'eighty-nine thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(6241, 13763, 'thirteen thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(6242, 65227, 'sixty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(6243, 25420, 'twenty-five thousand four hundred twenty');\nINSERT INTO t2 VALUES(6244, 32765, 'thirty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(6245, 87872, 'eighty-seven thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(6246, 33704, 'thirty-three thousand seven hundred four');\nINSERT INTO t2 VALUES(6247, 92939, 'ninety-two thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(6248, 5830, 'five thousand eight hundred thirty');\nINSERT INTO t2 VALUES(6249, 12851, 'twelve thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(6250, 42166, 'forty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(6251, 55694, 'fifty-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(6252, 14530, 'fourteen thousand five hundred thirty');\nINSERT INTO t2 VALUES(6253, 56005, 'fifty-six thousand five');\nINSERT INTO t2 VALUES(6254, 76667, 'seventy-six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(6255, 47309, 'forty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(6256, 60041, 'sixty thousand forty-one');\nINSERT INTO t2 VALUES(6257, 98988, 'ninety-eight thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6258, 87103, 'eighty-seven thousand one hundred three');\nINSERT INTO t2 VALUES(6259, 43646, 'forty-three thousand six hundred forty-six');\nINSERT INTO t2 VALUES(6260, 58177, 'fifty-eight thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(6261, 10901, 'ten thousand nine hundred one');\nINSERT INTO t2 VALUES(6262, 97988, 'ninety-seven thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6263, 15056, 'fifteen thousand fifty-six');\nINSERT INTO t2 VALUES(6264, 57504, 'fifty-seven thousand five hundred four');\nINSERT INTO t2 VALUES(6265, 49228, 'forty-nine thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(6266, 13081, 'thirteen thousand eighty-one');\nINSERT INTO t2 VALUES(6267, 42925, 'forty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(6268, 89450, 'eighty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(6269, 28088, 'twenty-eight thousand eighty-eight');\nINSERT INTO t2 VALUES(6270, 13883, 'thirteen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(6271, 62491, 'sixty-two thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(6272, 54510, 'fifty-four thousand five hundred ten');\nINSERT INTO t2 VALUES(6273, 25477, 'twenty-five thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(6274, 36892, 'thirty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(6275, 44686, 'forty-four thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(6276, 623, 'six hundred twenty-three');\nINSERT INTO t2 VALUES(6277, 74026, 'seventy-four thousand twenty-six');\nINSERT INTO t2 VALUES(6278, 6620, 'six thousand six hundred twenty');\nINSERT INTO t2 VALUES(6279, 97614, 'ninety-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(6280, 87690, 'eighty-seven thousand six hundred ninety');\nINSERT INTO t2 VALUES(6281, 37529, 'thirty-seven thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(6282, 61052, 'sixty-one thousand fifty-two');\nINSERT INTO t2 VALUES(6283, 33322, 'thirty-three thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(6284, 14694, 'fourteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(6285, 68015, 'sixty-eight thousand fifteen');\nINSERT INTO t2 VALUES(6286, 247, 'two hundred forty-seven');\nINSERT INTO t2 VALUES(6287, 33736, 'thirty-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(6288, 86318, 'eighty-six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(6289, 67992, 'sixty-seven thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(6290, 2689, 'two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(6291, 73700, 'seventy-three thousand seven hundred');\nINSERT INTO t2 VALUES(6292, 50034, 'fifty thousand thirty-four');\nINSERT INTO t2 VALUES(6293, 26225, 'twenty-six thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(6294, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(6295, 82917, 'eighty-two thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(6296, 88035, 'eighty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(6297, 31791, 'thirty-one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(6298, 90092, 'ninety thousand ninety-two');\nINSERT INTO t2 VALUES(6299, 80174, 'eighty thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(6300, 4836, 'four thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(6301, 53563, 'fifty-three thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(6302, 39432, 'thirty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(6303, 29551, 'twenty-nine thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(6304, 75845, 'seventy-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(6305, 38821, 'thirty-eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6306, 56215, 'fifty-six thousand two hundred fifteen');\nINSERT INTO t2 VALUES(6307, 59089, 'fifty-nine thousand eighty-nine');\nINSERT INTO t2 VALUES(6308, 96917, 'ninety-six thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(6309, 28136, 'twenty-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(6310, 62247, 'sixty-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(6311, 92031, 'ninety-two thousand thirty-one');\nINSERT INTO t2 VALUES(6312, 22252, 'twenty-two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(6313, 14414, 'fourteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(6314, 88576, 'eighty-eight thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(6315, 42941, 'forty-two thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(6316, 80753, 'eighty thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(6317, 63991, 'sixty-three thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(6318, 81264, 'eighty-one thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(6319, 21916, 'twenty-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(6320, 78785, 'seventy-eight thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(6321, 9211, 'nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(6322, 60477, 'sixty thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(6323, 11677, 'eleven thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(6324, 99402, 'ninety-nine thousand four hundred two');\nINSERT INTO t2 VALUES(6325, 45164, 'forty-five thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(6326, 2457, 'two thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(6327, 4987, 'four thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(6328, 99422, 'ninety-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(6329, 84484, 'eighty-four thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(6330, 96512, 'ninety-six thousand five hundred twelve');\nINSERT INTO t2 VALUES(6331, 74147, 'seventy-four thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(6332, 46153, 'forty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(6333, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(6334, 65540, 'sixty-five thousand five hundred forty');\nINSERT INTO t2 VALUES(6335, 28107, 'twenty-eight thousand one hundred seven');\nINSERT INTO t2 VALUES(6336, 29441, 'twenty-nine thousand four hundred forty-one');\nINSERT INTO t2 VALUES(6337, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t2 VALUES(6338, 79738, 'seventy-nine thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(6339, 69030, 'sixty-nine thousand thirty');\nINSERT INTO t2 VALUES(6340, 95058, 'ninety-five thousand fifty-eight');\nINSERT INTO t2 VALUES(6341, 40977, 'forty thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6342, 93352, 'ninety-three thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(6343, 59833, 'fifty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(6344, 45957, 'forty-five thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(6345, 96727, 'ninety-six thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(6346, 34117, 'thirty-four thousand one hundred seventeen');\nINSERT INTO t2 VALUES(6347, 99900, 'ninety-nine thousand nine hundred');\nINSERT INTO t2 VALUES(6348, 22656, 'twenty-two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(6349, 36404, 'thirty-six thousand four hundred four');\nINSERT INTO t2 VALUES(6350, 80787, 'eighty thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(6351, 96035, 'ninety-six thousand thirty-five');\nINSERT INTO t2 VALUES(6352, 697, 'six hundred ninety-seven');\nINSERT INTO t2 VALUES(6353, 7210, 'seven thousand two hundred ten');\nINSERT INTO t2 VALUES(6354, 14584, 'fourteen thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(6355, 15248, 'fifteen thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(6356, 159, 'one hundred fifty-nine');\nINSERT INTO t2 VALUES(6357, 39531, 'thirty-nine thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(6358, 29322, 'twenty-nine thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(6359, 52603, 'fifty-two thousand six hundred three');\nINSERT INTO t2 VALUES(6360, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(6361, 51069, 'fifty-one thousand sixty-nine');\nINSERT INTO t2 VALUES(6362, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(6363, 40547, 'forty thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(6364, 8011, 'eight thousand eleven');\nINSERT INTO t2 VALUES(6365, 15798, 'fifteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(6366, 8431, 'eight thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(6367, 54606, 'fifty-four thousand six hundred six');\nINSERT INTO t2 VALUES(6368, 6730, 'six thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6369, 74250, 'seventy-four thousand two hundred fifty');\nINSERT INTO t2 VALUES(6370, 98563, 'ninety-eight thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(6371, 23258, 'twenty-three thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(6372, 79820, 'seventy-nine thousand eight hundred twenty');\nINSERT INTO t2 VALUES(6373, 66722, 'sixty-six thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(6374, 32083, 'thirty-two thousand eighty-three');\nINSERT INTO t2 VALUES(6375, 38101, 'thirty-eight thousand one hundred one');\nINSERT INTO t2 VALUES(6376, 97170, 'ninety-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(6377, 62549, 'sixty-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(6378, 10450, 'ten thousand four hundred fifty');\nINSERT INTO t2 VALUES(6379, 2058, 'two thousand fifty-eight');\nINSERT INTO t2 VALUES(6380, 63483, 'sixty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(6381, 76032, 'seventy-six thousand thirty-two');\nINSERT INTO t2 VALUES(6382, 65603, 'sixty-five thousand six hundred three');\nINSERT INTO t2 VALUES(6383, 32631, 'thirty-two thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(6384, 86527, 'eighty-six thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6385, 42345, 'forty-two thousand three hundred forty-five');\nINSERT INTO t2 VALUES(6386, 76644, 'seventy-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(6387, 8509, 'eight thousand five hundred nine');\nINSERT INTO t2 VALUES(6388, 48035, 'forty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(6389, 40802, 'forty thousand eight hundred two');\nINSERT INTO t2 VALUES(6390, 2238, 'two thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(6391, 66518, 'sixty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(6392, 42723, 'forty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(6393, 411, 'four hundred eleven');\nINSERT INTO t2 VALUES(6394, 71064, 'seventy-one thousand sixty-four');\nINSERT INTO t2 VALUES(6395, 75111, 'seventy-five thousand one hundred eleven');\nINSERT INTO t2 VALUES(6396, 29646, 'twenty-nine thousand six hundred forty-six');\nINSERT INTO t2 VALUES(6397, 25777, 'twenty-five thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(6398, 95760, 'ninety-five thousand seven hundred sixty');\nINSERT INTO t2 VALUES(6399, 26311, 'twenty-six thousand three hundred eleven');\nINSERT INTO t2 VALUES(6400, 68057, 'sixty-eight thousand fifty-seven');\nINSERT INTO t2 VALUES(6401, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(6402, 56758, 'fifty-six thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(6403, 98766, 'ninety-eight thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(6404, 85045, 'eighty-five thousand forty-five');\nINSERT INTO t2 VALUES(6405, 38693, 'thirty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(6406, 88482, 'eighty-eight thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(6407, 27747, 'twenty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(6408, 85182, 'eighty-five thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(6409, 32398, 'thirty-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(6410, 55913, 'fifty-five thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(6411, 31702, 'thirty-one thousand seven hundred two');\nINSERT INTO t2 VALUES(6412, 98943, 'ninety-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(6413, 70579, 'seventy thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(6414, 90523, 'ninety thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(6415, 81321, 'eighty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(6416, 93603, 'ninety-three thousand six hundred three');\nINSERT INTO t2 VALUES(6417, 84198, 'eighty-four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(6418, 19537, 'nineteen thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6419, 72503, 'seventy-two thousand five hundred three');\nINSERT INTO t2 VALUES(6420, 91695, 'ninety-one thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(6421, 70579, 'seventy thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(6422, 14607, 'fourteen thousand six hundred seven');\nINSERT INTO t2 VALUES(6423, 22638, 'twenty-two thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(6424, 70894, 'seventy thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(6425, 87045, 'eighty-seven thousand forty-five');\nINSERT INTO t2 VALUES(6426, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t2 VALUES(6427, 9012, 'nine thousand twelve');\nINSERT INTO t2 VALUES(6428, 32693, 'thirty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(6429, 16281, 'sixteen thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(6430, 86034, 'eighty-six thousand thirty-four');\nINSERT INTO t2 VALUES(6431, 81060, 'eighty-one thousand sixty');\nINSERT INTO t2 VALUES(6432, 81880, 'eighty-one thousand eight hundred eighty');\nINSERT INTO t2 VALUES(6433, 69098, 'sixty-nine thousand ninety-eight');\nINSERT INTO t2 VALUES(6434, 96616, 'ninety-six thousand six hundred sixteen');\nINSERT INTO t2 VALUES(6435, 17714, 'seventeen thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(6436, 96329, 'ninety-six thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(6437, 21702, 'twenty-one thousand seven hundred two');\nINSERT INTO t2 VALUES(6438, 65357, 'sixty-five thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(6439, 53554, 'fifty-three thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(6440, 84396, 'eighty-four thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(6441, 98027, 'ninety-eight thousand twenty-seven');\nINSERT INTO t2 VALUES(6442, 58883, 'fifty-eight thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(6443, 86208, 'eighty-six thousand two hundred eight');\nINSERT INTO t2 VALUES(6444, 10831, 'ten thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(6445, 22454, 'twenty-two thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(6446, 24336, 'twenty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(6447, 94127, 'ninety-four thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(6448, 77752, 'seventy-seven thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(6449, 30211, 'thirty thousand two hundred eleven');\nINSERT INTO t2 VALUES(6450, 72104, 'seventy-two thousand one hundred four');\nINSERT INTO t2 VALUES(6451, 14312, 'fourteen thousand three hundred twelve');\nINSERT INTO t2 VALUES(6452, 30821, 'thirty thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6453, 88440, 'eighty-eight thousand four hundred forty');\nINSERT INTO t2 VALUES(6454, 80336, 'eighty thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(6455, 17921, 'seventeen thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(6456, 72075, 'seventy-two thousand seventy-five');\nINSERT INTO t2 VALUES(6457, 68952, 'sixty-eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(6458, 50976, 'fifty thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(6459, 17339, 'seventeen thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(6460, 76275, 'seventy-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(6461, 5063, 'five thousand sixty-three');\nINSERT INTO t2 VALUES(6462, 56282, 'fifty-six thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(6463, 58924, 'fifty-eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(6464, 61997, 'sixty-one thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(6465, 6748, 'six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(6466, 2445, 'two thousand four hundred forty-five');\nINSERT INTO t2 VALUES(6467, 95279, 'ninety-five thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(6468, 58370, 'fifty-eight thousand three hundred seventy');\nINSERT INTO t2 VALUES(6469, 79648, 'seventy-nine thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(6470, 19836, 'nineteen thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(6471, 26488, 'twenty-six thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(6472, 46300, 'forty-six thousand three hundred');\nINSERT INTO t2 VALUES(6473, 59242, 'fifty-nine thousand two hundred forty-two');\nINSERT INTO t2 VALUES(6474, 94537, 'ninety-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6475, 48770, 'forty-eight thousand seven hundred seventy');\nINSERT INTO t2 VALUES(6476, 73293, 'seventy-three thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(6477, 71587, 'seventy-one thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(6478, 34578, 'thirty-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(6479, 395, 'three hundred ninety-five');\nINSERT INTO t2 VALUES(6480, 49738, 'forty-nine thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(6481, 39372, 'thirty-nine thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(6482, 58806, 'fifty-eight thousand eight hundred six');\nINSERT INTO t2 VALUES(6483, 81494, 'eighty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(6484, 50298, 'fifty thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(6485, 91193, 'ninety-one thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(6486, 84418, 'eighty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(6487, 43246, 'forty-three thousand two hundred forty-six');\nINSERT INTO t2 VALUES(6488, 99111, 'ninety-nine thousand one hundred eleven');\nINSERT INTO t2 VALUES(6489, 87337, 'eighty-seven thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(6490, 353, 'three hundred fifty-three');\nINSERT INTO t2 VALUES(6491, 20434, 'twenty thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(6492, 63428, 'sixty-three thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(6493, 33969, 'thirty-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(6494, 3224, 'three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(6495, 64553, 'sixty-four thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(6496, 950, 'nine hundred fifty');\nINSERT INTO t2 VALUES(6497, 47927, 'forty-seven thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6498, 5149, 'five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(6499, 30719, 'thirty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(6500, 50162, 'fifty thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(6501, 76386, 'seventy-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(6502, 5514, 'five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(6503, 98674, 'ninety-eight thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(6504, 7134, 'seven thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(6505, 43648, 'forty-three thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(6506, 63879, 'sixty-three thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(6507, 5557, 'five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(6508, 48890, 'forty-eight thousand eight hundred ninety');\nINSERT INTO t2 VALUES(6509, 18033, 'eighteen thousand thirty-three');\nINSERT INTO t2 VALUES(6510, 72800, 'seventy-two thousand eight hundred');\nINSERT INTO t2 VALUES(6511, 45062, 'forty-five thousand sixty-two');\nINSERT INTO t2 VALUES(6512, 89541, 'eighty-nine thousand five hundred forty-one');\nINSERT INTO t2 VALUES(6513, 337, 'three hundred thirty-seven');\nINSERT INTO t2 VALUES(6514, 42970, 'forty-two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(6515, 5347, 'five thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(6516, 13576, 'thirteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(6517, 69606, 'sixty-nine thousand six hundred six');\nINSERT INTO t2 VALUES(6518, 52446, 'fifty-two thousand four hundred forty-six');\nINSERT INTO t2 VALUES(6519, 36405, 'thirty-six thousand four hundred five');\nINSERT INTO t2 VALUES(6520, 35661, 'thirty-five thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(6521, 46459, 'forty-six thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(6522, 77111, 'seventy-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(6523, 12640, 'twelve thousand six hundred forty');\nINSERT INTO t2 VALUES(6524, 90869, 'ninety thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(6525, 71557, 'seventy-one thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(6526, 714, 'seven hundred fourteen');\nINSERT INTO t2 VALUES(6527, 95355, 'ninety-five thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(6528, 10730, 'ten thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6529, 6696, 'six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(6530, 96869, 'ninety-six thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(6531, 68136, 'sixty-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(6532, 67764, 'sixty-seven thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(6533, 12977, 'twelve thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6534, 64121, 'sixty-four thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(6535, 29262, 'twenty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(6536, 8828, 'eight thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(6537, 11408, 'eleven thousand four hundred eight');\nINSERT INTO t2 VALUES(6538, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(6539, 42095, 'forty-two thousand ninety-five');\nINSERT INTO t2 VALUES(6540, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(6541, 17618, 'seventeen thousand six hundred eighteen');\nINSERT INTO t2 VALUES(6542, 91229, 'ninety-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(6543, 93349, 'ninety-three thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(6544, 40588, 'forty thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(6545, 93831, 'ninety-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(6546, 83235, 'eighty-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(6547, 98016, 'ninety-eight thousand sixteen');\nINSERT INTO t2 VALUES(6548, 78127, 'seventy-eight thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(6549, 65915, 'sixty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(6550, 35927, 'thirty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6551, 81793, 'eighty-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(6552, 4105, 'four thousand one hundred five');\nINSERT INTO t2 VALUES(6553, 98613, 'ninety-eight thousand six hundred thirteen');\nINSERT INTO t2 VALUES(6554, 31952, 'thirty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(6555, 18668, 'eighteen thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(6556, 70762, 'seventy thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(6557, 37556, 'thirty-seven thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(6558, 64423, 'sixty-four thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(6559, 61176, 'sixty-one thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(6560, 27820, 'twenty-seven thousand eight hundred twenty');\nINSERT INTO t2 VALUES(6561, 29432, 'twenty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(6562, 67897, 'sixty-seven thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(6563, 75938, 'seventy-five thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(6564, 35003, 'thirty-five thousand three');\nINSERT INTO t2 VALUES(6565, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(6566, 12470, 'twelve thousand four hundred seventy');\nINSERT INTO t2 VALUES(6567, 71891, 'seventy-one thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(6568, 2784, 'two thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(6569, 22162, 'twenty-two thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(6570, 52367, 'fifty-two thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(6571, 50157, 'fifty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(6572, 20175, 'twenty thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(6573, 25136, 'twenty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(6574, 67773, 'sixty-seven thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(6575, 22905, 'twenty-two thousand nine hundred five');\nINSERT INTO t2 VALUES(6576, 7527, 'seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(6577, 99972, 'ninety-nine thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(6578, 26244, 'twenty-six thousand two hundred forty-four');\nINSERT INTO t2 VALUES(6579, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6580, 78093, 'seventy-eight thousand ninety-three');\nINSERT INTO t2 VALUES(6581, 51433, 'fifty-one thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(6582, 46328, 'forty-six thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(6583, 86139, 'eighty-six thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(6584, 4370, 'four thousand three hundred seventy');\nINSERT INTO t2 VALUES(6585, 6155, 'six thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(6586, 44537, 'forty-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6587, 61247, 'sixty-one thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(6588, 81676, 'eighty-one thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(6589, 82034, 'eighty-two thousand thirty-four');\nINSERT INTO t2 VALUES(6590, 51474, 'fifty-one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(6591, 57140, 'fifty-seven thousand one hundred forty');\nINSERT INTO t2 VALUES(6592, 77032, 'seventy-seven thousand thirty-two');\nINSERT INTO t2 VALUES(6593, 85202, 'eighty-five thousand two hundred two');\nINSERT INTO t2 VALUES(6594, 97387, 'ninety-seven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(6595, 36699, 'thirty-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(6596, 95494, 'ninety-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(6597, 60862, 'sixty thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(6598, 12721, 'twelve thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(6599, 46185, 'forty-six thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(6600, 5960, 'five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(6601, 59841, 'fifty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(6602, 20040, 'twenty thousand forty');\nINSERT INTO t2 VALUES(6603, 52851, 'fifty-two thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(6604, 98369, 'ninety-eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(6605, 47209, 'forty-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(6606, 1166, 'one thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(6607, 94770, 'ninety-four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(6608, 89349, 'eighty-nine thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(6609, 7611, 'seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(6610, 12467, 'twelve thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(6611, 93893, 'ninety-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(6612, 59941, 'fifty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(6613, 42902, 'forty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(6614, 57172, 'fifty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(6615, 61256, 'sixty-one thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(6616, 38110, 'thirty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(6617, 35078, 'thirty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(6618, 57155, 'fifty-seven thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(6619, 29333, 'twenty-nine thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(6620, 3543, 'three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(6621, 55935, 'fifty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(6622, 28858, 'twenty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(6623, 94101, 'ninety-four thousand one hundred one');\nINSERT INTO t2 VALUES(6624, 91360, 'ninety-one thousand three hundred sixty');\nINSERT INTO t2 VALUES(6625, 79815, 'seventy-nine thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(6626, 14822, 'fourteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(6627, 23427, 'twenty-three thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(6628, 51242, 'fifty-one thousand two hundred forty-two');\nINSERT INTO t2 VALUES(6629, 7058, 'seven thousand fifty-eight');\nINSERT INTO t2 VALUES(6630, 89467, 'eighty-nine thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(6631, 79717, 'seventy-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(6632, 16821, 'sixteen thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6633, 33223, 'thirty-three thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(6634, 96635, 'ninety-six thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(6635, 19409, 'nineteen thousand four hundred nine');\nINSERT INTO t2 VALUES(6636, 45622, 'forty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(6637, 70150, 'seventy thousand one hundred fifty');\nINSERT INTO t2 VALUES(6638, 17916, 'seventeen thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(6639, 84015, 'eighty-four thousand fifteen');\nINSERT INTO t2 VALUES(6640, 52708, 'fifty-two thousand seven hundred eight');\nINSERT INTO t2 VALUES(6641, 79712, 'seventy-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(6642, 52733, 'fifty-two thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(6643, 10721, 'ten thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(6644, 63701, 'sixty-three thousand seven hundred one');\nINSERT INTO t2 VALUES(6645, 71130, 'seventy-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(6646, 99480, 'ninety-nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(6647, 92378, 'ninety-two thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(6648, 26104, 'twenty-six thousand one hundred four');\nINSERT INTO t2 VALUES(6649, 9611, 'nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(6650, 55174, 'fifty-five thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(6651, 5313, 'five thousand three hundred thirteen');\nINSERT INTO t2 VALUES(6652, 73525, 'seventy-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6653, 76530, 'seventy-six thousand five hundred thirty');\nINSERT INTO t2 VALUES(6654, 39395, 'thirty-nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(6655, 21956, 'twenty-one thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(6656, 78486, 'seventy-eight thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(6657, 14857, 'fourteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(6658, 53768, 'fifty-three thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(6659, 39320, 'thirty-nine thousand three hundred twenty');\nINSERT INTO t2 VALUES(6660, 15883, 'fifteen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(6661, 4770, 'four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(6662, 72020, 'seventy-two thousand twenty');\nINSERT INTO t2 VALUES(6663, 26000, 'twenty-six thousand');\nINSERT INTO t2 VALUES(6664, 95474, 'ninety-five thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(6665, 95154, 'ninety-five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(6666, 53852, 'fifty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(6667, 53561, 'fifty-three thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(6668, 76098, 'seventy-six thousand ninety-eight');\nINSERT INTO t2 VALUES(6669, 19230, 'nineteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(6670, 2424, 'two thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(6671, 33583, 'thirty-three thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(6672, 30537, 'thirty thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(6673, 95682, 'ninety-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(6674, 89282, 'eighty-nine thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(6675, 57914, 'fifty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(6676, 19324, 'nineteen thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(6677, 38619, 'thirty-eight thousand six hundred nineteen');\nINSERT INTO t2 VALUES(6678, 4945, 'four thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(6679, 10780, 'ten thousand seven hundred eighty');\nINSERT INTO t2 VALUES(6680, 4347, 'four thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(6681, 24282, 'twenty-four thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(6682, 7485, 'seven thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(6683, 58345, 'fifty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(6684, 68449, 'sixty-eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(6685, 28984, 'twenty-eight thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(6686, 91546, 'ninety-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(6687, 61582, 'sixty-one thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(6688, 30617, 'thirty thousand six hundred seventeen');\nINSERT INTO t2 VALUES(6689, 23961, 'twenty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(6690, 52806, 'fifty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(6691, 96082, 'ninety-six thousand eighty-two');\nINSERT INTO t2 VALUES(6692, 56194, 'fifty-six thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(6693, 22806, 'twenty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(6694, 46566, 'forty-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(6695, 3627, 'three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(6696, 14933, 'fourteen thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(6697, 37558, 'thirty-seven thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(6698, 33543, 'thirty-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(6699, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t2 VALUES(6700, 86573, 'eighty-six thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(6701, 1830, 'one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(6702, 89933, 'eighty-nine thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(6703, 26476, 'twenty-six thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(6704, 32688, 'thirty-two thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(6705, 79443, 'seventy-nine thousand four hundred forty-three');\nINSERT INTO t2 VALUES(6706, 51404, 'fifty-one thousand four hundred four');\nINSERT INTO t2 VALUES(6707, 92220, 'ninety-two thousand two hundred twenty');\nINSERT INTO t2 VALUES(6708, 19932, 'nineteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(6709, 77340, 'seventy-seven thousand three hundred forty');\nINSERT INTO t2 VALUES(6710, 78238, 'seventy-eight thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(6711, 54462, 'fifty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(6712, 69871, 'sixty-nine thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(6713, 70202, 'seventy thousand two hundred two');\nINSERT INTO t2 VALUES(6714, 77044, 'seventy-seven thousand forty-four');\nINSERT INTO t2 VALUES(6715, 8101, 'eight thousand one hundred one');\nINSERT INTO t2 VALUES(6716, 50150, 'fifty thousand one hundred fifty');\nINSERT INTO t2 VALUES(6717, 53488, 'fifty-three thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(6718, 82723, 'eighty-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(6719, 38840, 'thirty-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(6720, 36854, 'thirty-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(6721, 73289, 'seventy-three thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(6722, 5460, 'five thousand four hundred sixty');\nINSERT INTO t2 VALUES(6723, 86116, 'eighty-six thousand one hundred sixteen');\nINSERT INTO t2 VALUES(6724, 91671, 'ninety-one thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(6725, 25718, 'twenty-five thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(6726, 49405, 'forty-nine thousand four hundred five');\nINSERT INTO t2 VALUES(6727, 2805, 'two thousand eight hundred five');\nINSERT INTO t2 VALUES(6728, 63907, 'sixty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(6729, 44633, 'forty-four thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(6730, 83729, 'eighty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(6731, 98111, 'ninety-eight thousand one hundred eleven');\nINSERT INTO t2 VALUES(6732, 84927, 'eighty-four thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6733, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(6734, 65523, 'sixty-five thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(6735, 39927, 'thirty-nine thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(6736, 26574, 'twenty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6737, 95730, 'ninety-five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(6738, 77103, 'seventy-seven thousand one hundred three');\nINSERT INTO t2 VALUES(6739, 94895, 'ninety-four thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(6740, 12374, 'twelve thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(6741, 84618, 'eighty-four thousand six hundred eighteen');\nINSERT INTO t2 VALUES(6742, 70940, 'seventy thousand nine hundred forty');\nINSERT INTO t2 VALUES(6743, 95197, 'ninety-five thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(6744, 8114, 'eight thousand one hundred fourteen');\nINSERT INTO t2 VALUES(6745, 48574, 'forty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6746, 41804, 'forty-one thousand eight hundred four');\nINSERT INTO t2 VALUES(6747, 18518, 'eighteen thousand five hundred eighteen');\nINSERT INTO t2 VALUES(6748, 39717, 'thirty-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(6749, 54606, 'fifty-four thousand six hundred six');\nINSERT INTO t2 VALUES(6750, 75763, 'seventy-five thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(6751, 8546, 'eight thousand five hundred forty-six');\nINSERT INTO t2 VALUES(6752, 37046, 'thirty-seven thousand forty-six');\nINSERT INTO t2 VALUES(6753, 76160, 'seventy-six thousand one hundred sixty');\nINSERT INTO t2 VALUES(6754, 79606, 'seventy-nine thousand six hundred six');\nINSERT INTO t2 VALUES(6755, 77839, 'seventy-seven thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(6756, 20977, 'twenty thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6757, 5614, 'five thousand six hundred fourteen');\nINSERT INTO t2 VALUES(6758, 45285, 'forty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(6759, 75021, 'seventy-five thousand twenty-one');\nINSERT INTO t2 VALUES(6760, 75872, 'seventy-five thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(6761, 40849, 'forty thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(6762, 24484, 'twenty-four thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(6763, 27909, 'twenty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(6764, 78913, 'seventy-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(6765, 88805, 'eighty-eight thousand eight hundred five');\nINSERT INTO t2 VALUES(6766, 63580, 'sixty-three thousand five hundred eighty');\nINSERT INTO t2 VALUES(6767, 7919, 'seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(6768, 93222, 'ninety-three thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(6769, 24430, 'twenty-four thousand four hundred thirty');\nINSERT INTO t2 VALUES(6770, 43950, 'forty-three thousand nine hundred fifty');\nINSERT INTO t2 VALUES(6771, 1310, 'one thousand three hundred ten');\nINSERT INTO t2 VALUES(6772, 70080, 'seventy thousand eighty');\nINSERT INTO t2 VALUES(6773, 81148, 'eighty-one thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(6774, 62541, 'sixty-two thousand five hundred forty-one');\nINSERT INTO t2 VALUES(6775, 19398, 'nineteen thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(6776, 97179, 'ninety-seven thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(6777, 34684, 'thirty-four thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(6778, 88874, 'eighty-eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(6779, 57409, 'fifty-seven thousand four hundred nine');\nINSERT INTO t2 VALUES(6780, 49870, 'forty-nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(6781, 35463, 'thirty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(6782, 36057, 'thirty-six thousand fifty-seven');\nINSERT INTO t2 VALUES(6783, 65851, 'sixty-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(6784, 13579, 'thirteen thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(6785, 47773, 'forty-seven thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(6786, 32848, 'thirty-two thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(6787, 79542, 'seventy-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(6788, 90578, 'ninety thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(6789, 35204, 'thirty-five thousand two hundred four');\nINSERT INTO t2 VALUES(6790, 95491, 'ninety-five thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(6791, 7086, 'seven thousand eighty-six');\nINSERT INTO t2 VALUES(6792, 70457, 'seventy thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(6793, 34926, 'thirty-four thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(6794, 36612, 'thirty-six thousand six hundred twelve');\nINSERT INTO t2 VALUES(6795, 99637, 'ninety-nine thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(6796, 82112, 'eighty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(6797, 15285, 'fifteen thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(6798, 90602, 'ninety thousand six hundred two');\nINSERT INTO t2 VALUES(6799, 79256, 'seventy-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(6800, 35128, 'thirty-five thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(6801, 12135, 'twelve thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(6802, 4111, 'four thousand one hundred eleven');\nINSERT INTO t2 VALUES(6803, 66888, 'sixty-six thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(6804, 13525, 'thirteen thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6805, 6429, 'six thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(6806, 9298, 'nine thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(6807, 69879, 'sixty-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(6808, 95797, 'ninety-five thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(6809, 1046, 'one thousand forty-six');\nINSERT INTO t2 VALUES(6810, 44336, 'forty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(6811, 48541, 'forty-eight thousand five hundred forty-one');\nINSERT INTO t2 VALUES(6812, 17256, 'seventeen thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(6813, 23456, 'twenty-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(6814, 32192, 'thirty-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(6815, 78220, 'seventy-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(6816, 78461, 'seventy-eight thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(6817, 87653, 'eighty-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(6818, 45130, 'forty-five thousand one hundred thirty');\nINSERT INTO t2 VALUES(6819, 80243, 'eighty thousand two hundred forty-three');\nINSERT INTO t2 VALUES(6820, 46284, 'forty-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(6821, 75250, 'seventy-five thousand two hundred fifty');\nINSERT INTO t2 VALUES(6822, 66744, 'sixty-six thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(6823, 37184, 'thirty-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(6824, 58755, 'fifty-eight thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(6825, 63300, 'sixty-three thousand three hundred');\nINSERT INTO t2 VALUES(6826, 62363, 'sixty-two thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(6827, 8186, 'eight thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(6828, 50989, 'fifty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(6829, 30688, 'thirty thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(6830, 72070, 'seventy-two thousand seventy');\nINSERT INTO t2 VALUES(6831, 87929, 'eighty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(6832, 81492, 'eighty-one thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(6833, 90838, 'ninety thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(6834, 3276, 'three thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(6835, 74391, 'seventy-four thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(6836, 47180, 'forty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(6837, 16898, 'sixteen thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(6838, 42432, 'forty-two thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(6839, 61035, 'sixty-one thousand thirty-five');\nINSERT INTO t2 VALUES(6840, 17760, 'seventeen thousand seven hundred sixty');\nINSERT INTO t2 VALUES(6841, 12117, 'twelve thousand one hundred seventeen');\nINSERT INTO t2 VALUES(6842, 65747, 'sixty-five thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(6843, 32344, 'thirty-two thousand three hundred forty-four');\nINSERT INTO t2 VALUES(6844, 73543, 'seventy-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(6845, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(6846, 5895, 'five thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(6847, 85829, 'eighty-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(6848, 9788, 'nine thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(6849, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(6850, 21778, 'twenty-one thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(6851, 98821, 'ninety-eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(6852, 27493, 'twenty-seven thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(6853, 49087, 'forty-nine thousand eighty-seven');\nINSERT INTO t2 VALUES(6854, 20492, 'twenty thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(6855, 34648, 'thirty-four thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(6856, 63848, 'sixty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(6857, 10977, 'ten thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(6858, 39101, 'thirty-nine thousand one hundred one');\nINSERT INTO t2 VALUES(6859, 56572, 'fifty-six thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(6860, 16325, 'sixteen thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(6861, 34890, 'thirty-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(6862, 8901, 'eight thousand nine hundred one');\nINSERT INTO t2 VALUES(6863, 58120, 'fifty-eight thousand one hundred twenty');\nINSERT INTO t2 VALUES(6864, 9539, 'nine thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(6865, 18936, 'eighteen thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(6866, 67666, 'sixty-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(6867, 43303, 'forty-three thousand three hundred three');\nINSERT INTO t2 VALUES(6868, 67804, 'sixty-seven thousand eight hundred four');\nINSERT INTO t2 VALUES(6869, 33925, 'thirty-three thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(6870, 86284, 'eighty-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(6871, 582, 'five hundred eighty-two');\nINSERT INTO t2 VALUES(6872, 48012, 'forty-eight thousand twelve');\nINSERT INTO t2 VALUES(6873, 56226, 'fifty-six thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(6874, 83017, 'eighty-three thousand seventeen');\nINSERT INTO t2 VALUES(6875, 52765, 'fifty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(6876, 9757, 'nine thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(6877, 95014, 'ninety-five thousand fourteen');\nINSERT INTO t2 VALUES(6878, 8705, 'eight thousand seven hundred five');\nINSERT INTO t2 VALUES(6879, 99481, 'ninety-nine thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(6880, 26805, 'twenty-six thousand eight hundred five');\nINSERT INTO t2 VALUES(6881, 54671, 'fifty-four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(6882, 77647, 'seventy-seven thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(6883, 47193, 'forty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(6884, 17244, 'seventeen thousand two hundred forty-four');\nINSERT INTO t2 VALUES(6885, 76324, 'seventy-six thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(6886, 35193, 'thirty-five thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(6887, 28642, 'twenty-eight thousand six hundred forty-two');\nINSERT INTO t2 VALUES(6888, 53149, 'fifty-three thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(6889, 53230, 'fifty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(6890, 448, 'four hundred forty-eight');\nINSERT INTO t2 VALUES(6891, 81316, 'eighty-one thousand three hundred sixteen');\nINSERT INTO t2 VALUES(6892, 89411, 'eighty-nine thousand four hundred eleven');\nINSERT INTO t2 VALUES(6893, 90177, 'ninety thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(6894, 60157, 'sixty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(6895, 52740, 'fifty-two thousand seven hundred forty');\nINSERT INTO t2 VALUES(6896, 12324, 'twelve thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(6897, 90240, 'ninety thousand two hundred forty');\nINSERT INTO t2 VALUES(6898, 46272, 'forty-six thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(6899, 3926, 'three thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(6900, 66331, 'sixty-six thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(6901, 39669, 'thirty-nine thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(6902, 96184, 'ninety-six thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(6903, 8073, 'eight thousand seventy-three');\nINSERT INTO t2 VALUES(6904, 28504, 'twenty-eight thousand five hundred four');\nINSERT INTO t2 VALUES(6905, 39372, 'thirty-nine thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(6906, 14669, 'fourteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(6907, 59393, 'fifty-nine thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(6908, 36396, 'thirty-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(6909, 99219, 'ninety-nine thousand two hundred nineteen');\nINSERT INTO t2 VALUES(6910, 31371, 'thirty-one thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(6911, 35693, 'thirty-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(6912, 58788, 'fifty-eight thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(6913, 41832, 'forty-one thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(6914, 75661, 'seventy-five thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(6915, 47359, 'forty-seven thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(6916, 73195, 'seventy-three thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(6917, 80499, 'eighty thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(6918, 5963, 'five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(6919, 27733, 'twenty-seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(6920, 86525, 'eighty-six thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6921, 44667, 'forty-four thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(6922, 23624, 'twenty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(6923, 49974, 'forty-nine thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(6924, 30988, 'thirty thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(6925, 52525, 'fifty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(6926, 7567, 'seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(6927, 29063, 'twenty-nine thousand sixty-three');\nINSERT INTO t2 VALUES(6928, 59760, 'fifty-nine thousand seven hundred sixty');\nINSERT INTO t2 VALUES(6929, 64774, 'sixty-four thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(6930, 56241, 'fifty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(6931, 21318, 'twenty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(6932, 29993, 'twenty-nine thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(6933, 13052, 'thirteen thousand fifty-two');\nINSERT INTO t2 VALUES(6934, 63940, 'sixty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(6935, 10944, 'ten thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(6936, 53517, 'fifty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(6937, 3365, 'three thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(6938, 78936, 'seventy-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(6939, 19479, 'nineteen thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(6940, 75930, 'seventy-five thousand nine hundred thirty');\nINSERT INTO t2 VALUES(6941, 37705, 'thirty-seven thousand seven hundred five');\nINSERT INTO t2 VALUES(6942, 69175, 'sixty-nine thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(6943, 22232, 'twenty-two thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(6944, 28248, 'twenty-eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(6945, 25273, 'twenty-five thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(6946, 63132, 'sixty-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(6947, 65891, 'sixty-five thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(6948, 38574, 'thirty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(6949, 68375, 'sixty-eight thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(6950, 22814, 'twenty-two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(6951, 12251, 'twelve thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(6952, 67307, 'sixty-seven thousand three hundred seven');\nINSERT INTO t2 VALUES(6953, 91833, 'ninety-one thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(6954, 89215, 'eighty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(6955, 9285, 'nine thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(6956, 84710, 'eighty-four thousand seven hundred ten');\nINSERT INTO t2 VALUES(6957, 14144, 'fourteen thousand one hundred forty-four');\nINSERT INTO t2 VALUES(6958, 45960, 'forty-five thousand nine hundred sixty');\nINSERT INTO t2 VALUES(6959, 9668, 'nine thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(6960, 52309, 'fifty-two thousand three hundred nine');\nINSERT INTO t2 VALUES(6961, 79198, 'seventy-nine thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(6962, 8711, 'eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(6963, 31513, 'thirty-one thousand five hundred thirteen');\nINSERT INTO t2 VALUES(6964, 68737, 'sixty-eight thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(6965, 7604, 'seven thousand six hundred four');\nINSERT INTO t2 VALUES(6966, 51620, 'fifty-one thousand six hundred twenty');\nINSERT INTO t2 VALUES(6967, 10426, 'ten thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(6968, 17702, 'seventeen thousand seven hundred two');\nINSERT INTO t2 VALUES(6969, 42070, 'forty-two thousand seventy');\nINSERT INTO t2 VALUES(6970, 10874, 'ten thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(6971, 25463, 'twenty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(6972, 43564, 'forty-three thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(6973, 91781, 'ninety-one thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(6974, 5253, 'five thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(6975, 4171, 'four thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(6976, 26368, 'twenty-six thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(6977, 32680, 'thirty-two thousand six hundred eighty');\nINSERT INTO t2 VALUES(6978, 74249, 'seventy-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(6979, 61362, 'sixty-one thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(6980, 65168, 'sixty-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(6981, 4076, 'four thousand seventy-six');\nINSERT INTO t2 VALUES(6982, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(6983, 71973, 'seventy-one thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(6984, 36830, 'thirty-six thousand eight hundred thirty');\nINSERT INTO t2 VALUES(6985, 91370, 'ninety-one thousand three hundred seventy');\nINSERT INTO t2 VALUES(6986, 64732, 'sixty-four thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(6987, 14905, 'fourteen thousand nine hundred five');\nINSERT INTO t2 VALUES(6988, 35130, 'thirty-five thousand one hundred thirty');\nINSERT INTO t2 VALUES(6989, 41914, 'forty-one thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(6990, 51521, 'fifty-one thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(6991, 58490, 'fifty-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(6992, 49421, 'forty-nine thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(6993, 98396, 'ninety-eight thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(6994, 50358, 'fifty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(6995, 57482, 'fifty-seven thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(6996, 46105, 'forty-six thousand one hundred five');\nINSERT INTO t2 VALUES(6997, 847, 'eight hundred forty-seven');\nINSERT INTO t2 VALUES(6998, 40844, 'forty thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(6999, 87739, 'eighty-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(7000, 37428, 'thirty-seven thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(7001, 49604, 'forty-nine thousand six hundred four');\nINSERT INTO t2 VALUES(7002, 78936, 'seventy-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(7003, 89645, 'eighty-nine thousand six hundred forty-five');\nINSERT INTO t2 VALUES(7004, 86177, 'eighty-six thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(7005, 17366, 'seventeen thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(7006, 31491, 'thirty-one thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(7007, 41212, 'forty-one thousand two hundred twelve');\nINSERT INTO t2 VALUES(7008, 43175, 'forty-three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(7009, 2477, 'two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(7010, 6010, 'six thousand ten');\nINSERT INTO t2 VALUES(7011, 69722, 'sixty-nine thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(7012, 27385, 'twenty-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(7013, 45249, 'forty-five thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(7014, 28782, 'twenty-eight thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(7015, 141, 'one hundred forty-one');\nINSERT INTO t2 VALUES(7016, 80806, 'eighty thousand eight hundred six');\nINSERT INTO t2 VALUES(7017, 84533, 'eighty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(7018, 12518, 'twelve thousand five hundred eighteen');\nINSERT INTO t2 VALUES(7019, 91872, 'ninety-one thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(7020, 72529, 'seventy-two thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(7021, 21474, 'twenty-one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(7022, 23707, 'twenty-three thousand seven hundred seven');\nINSERT INTO t2 VALUES(7023, 52041, 'fifty-two thousand forty-one');\nINSERT INTO t2 VALUES(7024, 36648, 'thirty-six thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(7025, 39847, 'thirty-nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(7026, 53629, 'fifty-three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(7027, 7427, 'seven thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(7028, 75143, 'seventy-five thousand one hundred forty-three');\nINSERT INTO t2 VALUES(7029, 54824, 'fifty-four thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(7030, 36351, 'thirty-six thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(7031, 93789, 'ninety-three thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(7032, 95852, 'ninety-five thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(7033, 32725, 'thirty-two thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(7034, 48260, 'forty-eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(7035, 68480, 'sixty-eight thousand four hundred eighty');\nINSERT INTO t2 VALUES(7036, 33039, 'thirty-three thousand thirty-nine');\nINSERT INTO t2 VALUES(7037, 50746, 'fifty thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(7038, 62754, 'sixty-two thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(7039, 26859, 'twenty-six thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(7040, 32622, 'thirty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(7041, 1123, 'one thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(7042, 73551, 'seventy-three thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(7043, 87616, 'eighty-seven thousand six hundred sixteen');\nINSERT INTO t2 VALUES(7044, 78741, 'seventy-eight thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(7045, 15746, 'fifteen thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(7046, 75876, 'seventy-five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(7047, 47990, 'forty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(7048, 15987, 'fifteen thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(7049, 13907, 'thirteen thousand nine hundred seven');\nINSERT INTO t2 VALUES(7050, 7052, 'seven thousand fifty-two');\nINSERT INTO t2 VALUES(7051, 73916, 'seventy-three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(7052, 4671, 'four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(7053, 72315, 'seventy-two thousand three hundred fifteen');\nINSERT INTO t2 VALUES(7054, 74506, 'seventy-four thousand five hundred six');\nINSERT INTO t2 VALUES(7055, 11918, 'eleven thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(7056, 57309, 'fifty-seven thousand three hundred nine');\nINSERT INTO t2 VALUES(7057, 13626, 'thirteen thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7058, 48392, 'forty-eight thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(7059, 47636, 'forty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(7060, 18743, 'eighteen thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(7061, 38692, 'thirty-eight thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(7062, 70530, 'seventy thousand five hundred thirty');\nINSERT INTO t2 VALUES(7063, 62964, 'sixty-two thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(7064, 73613, 'seventy-three thousand six hundred thirteen');\nINSERT INTO t2 VALUES(7065, 59421, 'fifty-nine thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(7066, 5700, 'five thousand seven hundred');\nINSERT INTO t2 VALUES(7067, 27176, 'twenty-seven thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(7068, 48998, 'forty-eight thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(7069, 79311, 'seventy-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(7070, 73508, 'seventy-three thousand five hundred eight');\nINSERT INTO t2 VALUES(7071, 2711, 'two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(7072, 25577, 'twenty-five thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(7073, 61225, 'sixty-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(7074, 64789, 'sixty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(7075, 74509, 'seventy-four thousand five hundred nine');\nINSERT INTO t2 VALUES(7076, 29661, 'twenty-nine thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(7077, 82521, 'eighty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(7078, 83901, 'eighty-three thousand nine hundred one');\nINSERT INTO t2 VALUES(7079, 82200, 'eighty-two thousand two hundred');\nINSERT INTO t2 VALUES(7080, 81811, 'eighty-one thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7081, 41680, 'forty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(7082, 83328, 'eighty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(7083, 15653, 'fifteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(7084, 56438, 'fifty-six thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(7085, 58737, 'fifty-eight thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(7086, 41835, 'forty-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(7087, 28160, 'twenty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(7088, 65510, 'sixty-five thousand five hundred ten');\nINSERT INTO t2 VALUES(7089, 56165, 'fifty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(7090, 25838, 'twenty-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(7091, 61693, 'sixty-one thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(7092, 36263, 'thirty-six thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(7093, 24346, 'twenty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(7094, 97724, 'ninety-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(7095, 47865, 'forty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(7096, 80729, 'eighty thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(7097, 60014, 'sixty thousand fourteen');\nINSERT INTO t2 VALUES(7098, 33462, 'thirty-three thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(7099, 60569, 'sixty thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(7100, 55267, 'fifty-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(7101, 96726, 'ninety-six thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(7102, 11627, 'eleven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(7103, 95666, 'ninety-five thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(7104, 90785, 'ninety thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7105, 46858, 'forty-six thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(7106, 23384, 'twenty-three thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(7107, 97789, 'ninety-seven thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(7108, 59434, 'fifty-nine thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(7109, 79464, 'seventy-nine thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(7110, 76330, 'seventy-six thousand three hundred thirty');\nINSERT INTO t2 VALUES(7111, 53787, 'fifty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(7112, 69766, 'sixty-nine thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(7113, 52806, 'fifty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(7114, 45628, 'forty-five thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(7115, 3361, 'three thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(7116, 75441, 'seventy-five thousand four hundred forty-one');\nINSERT INTO t2 VALUES(7117, 75175, 'seventy-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(7118, 74744, 'seventy-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(7119, 54538, 'fifty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(7120, 76323, 'seventy-six thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(7121, 72204, 'seventy-two thousand two hundred four');\nINSERT INTO t2 VALUES(7122, 86654, 'eighty-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(7123, 28364, 'twenty-eight thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(7124, 32182, 'thirty-two thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(7125, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t2 VALUES(7126, 48162, 'forty-eight thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(7127, 5968, 'five thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(7128, 11580, 'eleven thousand five hundred eighty');\nINSERT INTO t2 VALUES(7129, 30605, 'thirty thousand six hundred five');\nINSERT INTO t2 VALUES(7130, 71480, 'seventy-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(7131, 98055, 'ninety-eight thousand fifty-five');\nINSERT INTO t2 VALUES(7132, 53802, 'fifty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(7133, 78630, 'seventy-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(7134, 77822, 'seventy-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(7135, 61816, 'sixty-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(7136, 41188, 'forty-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(7137, 96746, 'ninety-six thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(7138, 57021, 'fifty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(7139, 74719, 'seventy-four thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(7140, 21455, 'twenty-one thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(7141, 21564, 'twenty-one thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(7142, 58682, 'fifty-eight thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(7143, 98656, 'ninety-eight thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(7144, 95290, 'ninety-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(7145, 59429, 'fifty-nine thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(7146, 52039, 'fifty-two thousand thirty-nine');\nINSERT INTO t2 VALUES(7147, 26126, 'twenty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(7148, 76788, 'seventy-six thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(7149, 54726, 'fifty-four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(7150, 87468, 'eighty-seven thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(7151, 96623, 'ninety-six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(7152, 52206, 'fifty-two thousand two hundred six');\nINSERT INTO t2 VALUES(7153, 90161, 'ninety thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(7154, 28158, 'twenty-eight thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(7155, 72176, 'seventy-two thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(7156, 5698, 'five thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(7157, 8426, 'eight thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(7158, 92481, 'ninety-two thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(7159, 2162, 'two thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(7160, 19418, 'nineteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(7161, 83044, 'eighty-three thousand forty-four');\nINSERT INTO t2 VALUES(7162, 83576, 'eighty-three thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(7163, 1767, 'one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(7164, 96772, 'ninety-six thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(7165, 22264, 'twenty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(7166, 77369, 'seventy-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(7167, 15079, 'fifteen thousand seventy-nine');\nINSERT INTO t2 VALUES(7168, 60060, 'sixty thousand sixty');\nINSERT INTO t2 VALUES(7169, 35293, 'thirty-five thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(7170, 18806, 'eighteen thousand eight hundred six');\nINSERT INTO t2 VALUES(7171, 2635, 'two thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(7172, 68586, 'sixty-eight thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(7173, 90063, 'ninety thousand sixty-three');\nINSERT INTO t2 VALUES(7174, 27121, 'twenty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(7175, 23663, 'twenty-three thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(7176, 12320, 'twelve thousand three hundred twenty');\nINSERT INTO t2 VALUES(7177, 47548, 'forty-seven thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(7178, 73974, 'seventy-three thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(7179, 72131, 'seventy-two thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(7180, 63094, 'sixty-three thousand ninety-four');\nINSERT INTO t2 VALUES(7181, 70707, 'seventy thousand seven hundred seven');\nINSERT INTO t2 VALUES(7182, 83552, 'eighty-three thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(7183, 1399, 'one thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(7184, 17442, 'seventeen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(7185, 48623, 'forty-eight thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(7186, 23729, 'twenty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(7187, 72285, 'seventy-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(7188, 39670, 'thirty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(7189, 60904, 'sixty thousand nine hundred four');\nINSERT INTO t2 VALUES(7190, 1785, 'one thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7191, 84436, 'eighty-four thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(7192, 70556, 'seventy thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(7193, 32525, 'thirty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(7194, 41107, 'forty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(7195, 71807, 'seventy-one thousand eight hundred seven');\nINSERT INTO t2 VALUES(7196, 22727, 'twenty-two thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(7197, 70424, 'seventy thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(7198, 92449, 'ninety-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(7199, 52643, 'fifty-two thousand six hundred forty-three');\nINSERT INTO t2 VALUES(7200, 16081, 'sixteen thousand eighty-one');\nINSERT INTO t2 VALUES(7201, 60250, 'sixty thousand two hundred fifty');\nINSERT INTO t2 VALUES(7202, 94701, 'ninety-four thousand seven hundred one');\nINSERT INTO t2 VALUES(7203, 90475, 'ninety thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(7204, 12219, 'twelve thousand two hundred nineteen');\nINSERT INTO t2 VALUES(7205, 36279, 'thirty-six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(7206, 43716, 'forty-three thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(7207, 52901, 'fifty-two thousand nine hundred one');\nINSERT INTO t2 VALUES(7208, 78651, 'seventy-eight thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(7209, 48687, 'forty-eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(7210, 28557, 'twenty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7211, 90629, 'ninety thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(7212, 27021, 'twenty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(7213, 31323, 'thirty-one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(7214, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(7215, 8334, 'eight thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(7216, 59740, 'fifty-nine thousand seven hundred forty');\nINSERT INTO t2 VALUES(7217, 42329, 'forty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(7218, 52985, 'fifty-two thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(7219, 22678, 'twenty-two thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(7220, 53115, 'fifty-three thousand one hundred fifteen');\nINSERT INTO t2 VALUES(7221, 85625, 'eighty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(7222, 44904, 'forty-four thousand nine hundred four');\nINSERT INTO t2 VALUES(7223, 57919, 'fifty-seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(7224, 81652, 'eighty-one thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(7225, 29091, 'twenty-nine thousand ninety-one');\nINSERT INTO t2 VALUES(7226, 35671, 'thirty-five thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(7227, 8807, 'eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(7228, 56823, 'fifty-six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(7229, 39061, 'thirty-nine thousand sixty-one');\nINSERT INTO t2 VALUES(7230, 52089, 'fifty-two thousand eighty-nine');\nINSERT INTO t2 VALUES(7231, 25385, 'twenty-five thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(7232, 56523, 'fifty-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(7233, 1270, 'one thousand two hundred seventy');\nINSERT INTO t2 VALUES(7234, 69681, 'sixty-nine thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(7235, 34725, 'thirty-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(7236, 14204, 'fourteen thousand two hundred four');\nINSERT INTO t2 VALUES(7237, 31187, 'thirty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7238, 3064, 'three thousand sixty-four');\nINSERT INTO t2 VALUES(7239, 41116, 'forty-one thousand one hundred sixteen');\nINSERT INTO t2 VALUES(7240, 32053, 'thirty-two thousand fifty-three');\nINSERT INTO t2 VALUES(7241, 37747, 'thirty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(7242, 51524, 'fifty-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(7243, 70906, 'seventy thousand nine hundred six');\nINSERT INTO t2 VALUES(7244, 57027, 'fifty-seven thousand twenty-seven');\nINSERT INTO t2 VALUES(7245, 12947, 'twelve thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(7246, 15873, 'fifteen thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(7247, 14092, 'fourteen thousand ninety-two');\nINSERT INTO t2 VALUES(7248, 28021, 'twenty-eight thousand twenty-one');\nINSERT INTO t2 VALUES(7249, 68997, 'sixty-eight thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(7250, 60229, 'sixty thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(7251, 23600, 'twenty-three thousand six hundred');\nINSERT INTO t2 VALUES(7252, 21443, 'twenty-one thousand four hundred forty-three');\nINSERT INTO t2 VALUES(7253, 88451, 'eighty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7254, 22689, 'twenty-two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(7255, 85222, 'eighty-five thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(7256, 39886, 'thirty-nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7257, 9680, 'nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(7258, 50619, 'fifty thousand six hundred nineteen');\nINSERT INTO t2 VALUES(7259, 73014, 'seventy-three thousand fourteen');\nINSERT INTO t2 VALUES(7260, 10557, 'ten thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7261, 23929, 'twenty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(7262, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(7263, 70513, 'seventy thousand five hundred thirteen');\nINSERT INTO t2 VALUES(7264, 31217, 'thirty-one thousand two hundred seventeen');\nINSERT INTO t2 VALUES(7265, 24165, 'twenty-four thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(7266, 74008, 'seventy-four thousand eight');\nINSERT INTO t2 VALUES(7267, 69773, 'sixty-nine thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(7268, 326, 'three hundred twenty-six');\nINSERT INTO t2 VALUES(7269, 94924, 'ninety-four thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(7270, 79707, 'seventy-nine thousand seven hundred seven');\nINSERT INTO t2 VALUES(7271, 51429, 'fifty-one thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(7272, 22659, 'twenty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(7273, 87289, 'eighty-seven thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(7274, 90894, 'ninety thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(7275, 74629, 'seventy-four thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(7276, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(7277, 95848, 'ninety-five thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(7278, 58163, 'fifty-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(7279, 50309, 'fifty thousand three hundred nine');\nINSERT INTO t2 VALUES(7280, 20537, 'twenty thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(7281, 28395, 'twenty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(7282, 53961, 'fifty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(7283, 47561, 'forty-seven thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(7284, 28769, 'twenty-eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(7285, 86346, 'eighty-six thousand three hundred forty-six');\nINSERT INTO t2 VALUES(7286, 6277, 'six thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(7287, 49920, 'forty-nine thousand nine hundred twenty');\nINSERT INTO t2 VALUES(7288, 43192, 'forty-three thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(7289, 24672, 'twenty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(7290, 31494, 'thirty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(7291, 55066, 'fifty-five thousand sixty-six');\nINSERT INTO t2 VALUES(7292, 96699, 'ninety-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(7293, 79530, 'seventy-nine thousand five hundred thirty');\nINSERT INTO t2 VALUES(7294, 43758, 'forty-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(7295, 67039, 'sixty-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(7296, 48547, 'forty-eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(7297, 50040, 'fifty thousand forty');\nINSERT INTO t2 VALUES(7298, 66898, 'sixty-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(7299, 58823, 'fifty-eight thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(7300, 85770, 'eighty-five thousand seven hundred seventy');\nINSERT INTO t2 VALUES(7301, 44663, 'forty-four thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(7302, 18667, 'eighteen thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(7303, 29835, 'twenty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(7304, 56850, 'fifty-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(7305, 62411, 'sixty-two thousand four hundred eleven');\nINSERT INTO t2 VALUES(7306, 33775, 'thirty-three thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(7307, 90386, 'ninety thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(7308, 70117, 'seventy thousand one hundred seventeen');\nINSERT INTO t2 VALUES(7309, 74740, 'seventy-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(7310, 6417, 'six thousand four hundred seventeen');\nINSERT INTO t2 VALUES(7311, 32319, 'thirty-two thousand three hundred nineteen');\nINSERT INTO t2 VALUES(7312, 50577, 'fifty thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(7313, 2107, 'two thousand one hundred seven');\nINSERT INTO t2 VALUES(7314, 75768, 'seventy-five thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(7315, 12697, 'twelve thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(7316, 38568, 'thirty-eight thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(7317, 34363, 'thirty-four thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(7318, 27633, 'twenty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(7319, 25184, 'twenty-five thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7320, 90043, 'ninety thousand forty-three');\nINSERT INTO t2 VALUES(7321, 15466, 'fifteen thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(7322, 98395, 'ninety-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(7323, 86939, 'eighty-six thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(7324, 71406, 'seventy-one thousand four hundred six');\nINSERT INTO t2 VALUES(7325, 34343, 'thirty-four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(7326, 69196, 'sixty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(7327, 28252, 'twenty-eight thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(7328, 38711, 'thirty-eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(7329, 60611, 'sixty thousand six hundred eleven');\nINSERT INTO t2 VALUES(7330, 31187, 'thirty-one thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7331, 73989, 'seventy-three thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(7332, 12806, 'twelve thousand eight hundred six');\nINSERT INTO t2 VALUES(7333, 4428, 'four thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(7334, 52658, 'fifty-two thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(7335, 26588, 'twenty-six thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(7336, 93535, 'ninety-three thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(7337, 65359, 'sixty-five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(7338, 66113, 'sixty-six thousand one hundred thirteen');\nINSERT INTO t2 VALUES(7339, 39558, 'thirty-nine thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(7340, 11391, 'eleven thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(7341, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(7342, 3581, 'three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(7343, 69696, 'sixty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7344, 81121, 'eighty-one thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(7345, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(7346, 74050, 'seventy-four thousand fifty');\nINSERT INTO t2 VALUES(7347, 60829, 'sixty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(7348, 6834, 'six thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(7349, 64576, 'sixty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(7350, 13583, 'thirteen thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(7351, 56388, 'fifty-six thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(7352, 62811, 'sixty-two thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7353, 37727, 'thirty-seven thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(7354, 4532, 'four thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(7355, 14187, 'fourteen thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7356, 69094, 'sixty-nine thousand ninety-four');\nINSERT INTO t2 VALUES(7357, 31945, 'thirty-one thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(7358, 2093, 'two thousand ninety-three');\nINSERT INTO t2 VALUES(7359, 3369, 'three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(7360, 18640, 'eighteen thousand six hundred forty');\nINSERT INTO t2 VALUES(7361, 25004, 'twenty-five thousand four');\nINSERT INTO t2 VALUES(7362, 12074, 'twelve thousand seventy-four');\nINSERT INTO t2 VALUES(7363, 34016, 'thirty-four thousand sixteen');\nINSERT INTO t2 VALUES(7364, 40014, 'forty thousand fourteen');\nINSERT INTO t2 VALUES(7365, 64857, 'sixty-four thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(7366, 51079, 'fifty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(7367, 88576, 'eighty-eight thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(7368, 9726, 'nine thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(7369, 8822, 'eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(7370, 34811, 'thirty-four thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7371, 80758, 'eighty thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(7372, 54617, 'fifty-four thousand six hundred seventeen');\nINSERT INTO t2 VALUES(7373, 42541, 'forty-two thousand five hundred forty-one');\nINSERT INTO t2 VALUES(7374, 3815, 'three thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(7375, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(7376, 5202, 'five thousand two hundred two');\nINSERT INTO t2 VALUES(7377, 50572, 'fifty thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(7378, 65409, 'sixty-five thousand four hundred nine');\nINSERT INTO t2 VALUES(7379, 70497, 'seventy thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(7380, 96842, 'ninety-six thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(7381, 46539, 'forty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(7382, 1095, 'one thousand ninety-five');\nINSERT INTO t2 VALUES(7383, 97422, 'ninety-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(7384, 88070, 'eighty-eight thousand seventy');\nINSERT INTO t2 VALUES(7385, 13150, 'thirteen thousand one hundred fifty');\nINSERT INTO t2 VALUES(7386, 52772, 'fifty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(7387, 37085, 'thirty-seven thousand eighty-five');\nINSERT INTO t2 VALUES(7388, 1011, 'one thousand eleven');\nINSERT INTO t2 VALUES(7389, 15563, 'fifteen thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(7390, 38544, 'thirty-eight thousand five hundred forty-four');\nINSERT INTO t2 VALUES(7391, 55831, 'fifty-five thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(7392, 27070, 'twenty-seven thousand seventy');\nINSERT INTO t2 VALUES(7393, 15441, 'fifteen thousand four hundred forty-one');\nINSERT INTO t2 VALUES(7394, 70654, 'seventy thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(7395, 52382, 'fifty-two thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(7396, 54344, 'fifty-four thousand three hundred forty-four');\nINSERT INTO t2 VALUES(7397, 17325, 'seventeen thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(7398, 58157, 'fifty-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(7399, 47176, 'forty-seven thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(7400, 55736, 'fifty-five thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(7401, 26334, 'twenty-six thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(7402, 99781, 'ninety-nine thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(7403, 57477, 'fifty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(7404, 29110, 'twenty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(7405, 21429, 'twenty-one thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(7406, 76884, 'seventy-six thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(7407, 47046, 'forty-seven thousand forty-six');\nINSERT INTO t2 VALUES(7408, 48753, 'forty-eight thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(7409, 63093, 'sixty-three thousand ninety-three');\nINSERT INTO t2 VALUES(7410, 69577, 'sixty-nine thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(7411, 48992, 'forty-eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(7412, 43715, 'forty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(7413, 82980, 'eighty-two thousand nine hundred eighty');\nINSERT INTO t2 VALUES(7414, 89305, 'eighty-nine thousand three hundred five');\nINSERT INTO t2 VALUES(7415, 66707, 'sixty-six thousand seven hundred seven');\nINSERT INTO t2 VALUES(7416, 67756, 'sixty-seven thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(7417, 47398, 'forty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(7418, 72037, 'seventy-two thousand thirty-seven');\nINSERT INTO t2 VALUES(7419, 50845, 'fifty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(7420, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(7421, 18579, 'eighteen thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(7422, 38300, 'thirty-eight thousand three hundred');\nINSERT INTO t2 VALUES(7423, 17222, 'seventeen thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(7424, 49143, 'forty-nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(7425, 87515, 'eighty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7426, 73305, 'seventy-three thousand three hundred five');\nINSERT INTO t2 VALUES(7427, 53735, 'fifty-three thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(7428, 95473, 'ninety-five thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(7429, 50421, 'fifty thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(7430, 2980, 'two thousand nine hundred eighty');\nINSERT INTO t2 VALUES(7431, 50521, 'fifty thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(7432, 5811, 'five thousand eight hundred eleven');\nINSERT INTO t2 VALUES(7433, 78960, 'seventy-eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(7434, 72439, 'seventy-two thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(7435, 76914, 'seventy-six thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(7436, 41540, 'forty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(7437, 43029, 'forty-three thousand twenty-nine');\nINSERT INTO t2 VALUES(7438, 24933, 'twenty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(7439, 49859, 'forty-nine thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(7440, 8913, 'eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(7441, 30415, 'thirty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(7442, 41776, 'forty-one thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(7443, 20000, 'twenty thousand');\nINSERT INTO t2 VALUES(7444, 34964, 'thirty-four thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(7445, 51821, 'fifty-one thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(7446, 40249, 'forty thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(7447, 47510, 'forty-seven thousand five hundred ten');\nINSERT INTO t2 VALUES(7448, 95059, 'ninety-five thousand fifty-nine');\nINSERT INTO t2 VALUES(7449, 84450, 'eighty-four thousand four hundred fifty');\nINSERT INTO t2 VALUES(7450, 72587, 'seventy-two thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(7451, 21355, 'twenty-one thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(7452, 87515, 'eighty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7453, 23870, 'twenty-three thousand eight hundred seventy');\nINSERT INTO t2 VALUES(7454, 21133, 'twenty-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(7455, 15582, 'fifteen thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(7456, 81860, 'eighty-one thousand eight hundred sixty');\nINSERT INTO t2 VALUES(7457, 48135, 'forty-eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(7458, 47787, 'forty-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(7459, 30531, 'thirty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(7460, 97144, 'ninety-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(7461, 66513, 'sixty-six thousand five hundred thirteen');\nINSERT INTO t2 VALUES(7462, 96659, 'ninety-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(7463, 45617, 'forty-five thousand six hundred seventeen');\nINSERT INTO t2 VALUES(7464, 43237, 'forty-three thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(7465, 2471, 'two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(7466, 82236, 'eighty-two thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7467, 62891, 'sixty-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(7468, 15829, 'fifteen thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(7469, 57841, 'fifty-seven thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(7470, 21213, 'twenty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(7471, 76853, 'seventy-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(7472, 25941, 'twenty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(7473, 82358, 'eighty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(7474, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7475, 73642, 'seventy-three thousand six hundred forty-two');\nINSERT INTO t2 VALUES(7476, 69275, 'sixty-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(7477, 23645, 'twenty-three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(7478, 23681, 'twenty-three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(7479, 14696, 'fourteen thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7480, 27515, 'twenty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7481, 62466, 'sixty-two thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(7482, 75667, 'seventy-five thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(7483, 81874, 'eighty-one thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(7484, 95866, 'ninety-five thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(7485, 36386, 'thirty-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(7486, 64485, 'sixty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(7487, 90022, 'ninety thousand twenty-two');\nINSERT INTO t2 VALUES(7488, 51619, 'fifty-one thousand six hundred nineteen');\nINSERT INTO t2 VALUES(7489, 27169, 'twenty-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(7490, 17655, 'seventeen thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(7491, 67188, 'sixty-seven thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(7492, 17321, 'seventeen thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(7493, 95245, 'ninety-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(7494, 48780, 'forty-eight thousand seven hundred eighty');\nINSERT INTO t2 VALUES(7495, 33982, 'thirty-three thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(7496, 61939, 'sixty-one thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(7497, 69069, 'sixty-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(7498, 62713, 'sixty-two thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(7499, 43685, 'forty-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(7500, 57927, 'fifty-seven thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(7501, 96470, 'ninety-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(7502, 35948, 'thirty-five thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(7503, 63060, 'sixty-three thousand sixty');\nINSERT INTO t2 VALUES(7504, 44399, 'forty-four thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(7505, 97397, 'ninety-seven thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(7506, 89584, 'eighty-nine thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(7507, 58673, 'fifty-eight thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(7508, 89552, 'eighty-nine thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(7509, 53729, 'fifty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(7510, 16507, 'sixteen thousand five hundred seven');\nINSERT INTO t2 VALUES(7511, 68717, 'sixty-eight thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(7512, 80771, 'eighty thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(7513, 41974, 'forty-one thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(7514, 52507, 'fifty-two thousand five hundred seven');\nINSERT INTO t2 VALUES(7515, 22505, 'twenty-two thousand five hundred five');\nINSERT INTO t2 VALUES(7516, 28179, 'twenty-eight thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(7517, 42313, 'forty-two thousand three hundred thirteen');\nINSERT INTO t2 VALUES(7518, 73205, 'seventy-three thousand two hundred five');\nINSERT INTO t2 VALUES(7519, 35773, 'thirty-five thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(7520, 3191, 'three thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(7521, 99153, 'ninety-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(7522, 36884, 'thirty-six thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(7523, 33393, 'thirty-three thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(7524, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(7525, 33427, 'thirty-three thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(7526, 92166, 'ninety-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(7527, 57863, 'fifty-seven thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(7528, 48513, 'forty-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(7529, 64604, 'sixty-four thousand six hundred four');\nINSERT INTO t2 VALUES(7530, 42568, 'forty-two thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(7531, 40599, 'forty thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(7532, 26112, 'twenty-six thousand one hundred twelve');\nINSERT INTO t2 VALUES(7533, 64220, 'sixty-four thousand two hundred twenty');\nINSERT INTO t2 VALUES(7534, 15706, 'fifteen thousand seven hundred six');\nINSERT INTO t2 VALUES(7535, 40185, 'forty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(7536, 1528, 'one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(7537, 42906, 'forty-two thousand nine hundred six');\nINSERT INTO t2 VALUES(7538, 33416, 'thirty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(7539, 12521, 'twelve thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(7540, 10976, 'ten thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(7541, 31686, 'thirty-one thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(7542, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t2 VALUES(7543, 49056, 'forty-nine thousand fifty-six');\nINSERT INTO t2 VALUES(7544, 61375, 'sixty-one thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(7545, 70557, 'seventy thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7546, 41451, 'forty-one thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7547, 67002, 'sixty-seven thousand two');\nINSERT INTO t2 VALUES(7548, 78676, 'seventy-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(7549, 34278, 'thirty-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(7550, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(7551, 10020, 'ten thousand twenty');\nINSERT INTO t2 VALUES(7552, 66557, 'sixty-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(7553, 58425, 'fifty-eight thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(7554, 31844, 'thirty-one thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(7555, 38934, 'thirty-eight thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(7556, 3768, 'three thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(7557, 11387, 'eleven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(7558, 51096, 'fifty-one thousand ninety-six');\nINSERT INTO t2 VALUES(7559, 2040, 'two thousand forty');\nINSERT INTO t2 VALUES(7560, 73370, 'seventy-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(7561, 63765, 'sixty-three thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(7562, 5630, 'five thousand six hundred thirty');\nINSERT INTO t2 VALUES(7563, 48149, 'forty-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7564, 65940, 'sixty-five thousand nine hundred forty');\nINSERT INTO t2 VALUES(7565, 14696, 'fourteen thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7566, 84264, 'eighty-four thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(7567, 28148, 'twenty-eight thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(7568, 56964, 'fifty-six thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(7569, 77611, 'seventy-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(7570, 38955, 'thirty-eight thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(7571, 42357, 'forty-two thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(7572, 68317, 'sixty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(7573, 9676, 'nine thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(7574, 97886, 'ninety-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7575, 5372, 'five thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(7576, 65924, 'sixty-five thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(7577, 33045, 'thirty-three thousand forty-five');\nINSERT INTO t2 VALUES(7578, 49238, 'forty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(7579, 2480, 'two thousand four hundred eighty');\nINSERT INTO t2 VALUES(7580, 39492, 'thirty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(7581, 91785, 'ninety-one thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7582, 50532, 'fifty thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(7583, 57073, 'fifty-seven thousand seventy-three');\nINSERT INTO t2 VALUES(7584, 37226, 'thirty-seven thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(7585, 44803, 'forty-four thousand eight hundred three');\nINSERT INTO t2 VALUES(7586, 81713, 'eighty-one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(7587, 85593, 'eighty-five thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(7588, 9911, 'nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(7589, 81534, 'eighty-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(7590, 48184, 'forty-eight thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7591, 8434, 'eight thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(7592, 97111, 'ninety-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(7593, 81993, 'eighty-one thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(7594, 6325, 'six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(7595, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(7596, 95168, 'ninety-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(7597, 92244, 'ninety-two thousand two hundred forty-four');\nINSERT INTO t2 VALUES(7598, 14998, 'fourteen thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(7599, 26106, 'twenty-six thousand one hundred six');\nINSERT INTO t2 VALUES(7600, 89553, 'eighty-nine thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(7601, 88785, 'eighty-eight thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(7602, 37747, 'thirty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(7603, 28314, 'twenty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(7604, 94690, 'ninety-four thousand six hundred ninety');\nINSERT INTO t2 VALUES(7605, 85341, 'eighty-five thousand three hundred forty-one');\nINSERT INTO t2 VALUES(7606, 71559, 'seventy-one thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(7607, 44200, 'forty-four thousand two hundred');\nINSERT INTO t2 VALUES(7608, 27012, 'twenty-seven thousand twelve');\nINSERT INTO t2 VALUES(7609, 85555, 'eighty-five thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(7610, 66236, 'sixty-six thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7611, 50861, 'fifty thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(7612, 58399, 'fifty-eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(7613, 88626, 'eighty-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7614, 2970, 'two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(7615, 45944, 'forty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(7616, 97327, 'ninety-seven thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(7617, 51299, 'fifty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(7618, 65136, 'sixty-five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(7619, 41212, 'forty-one thousand two hundred twelve');\nINSERT INTO t2 VALUES(7620, 24046, 'twenty-four thousand forty-six');\nINSERT INTO t2 VALUES(7621, 34768, 'thirty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(7622, 43164, 'forty-three thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(7623, 46960, 'forty-six thousand nine hundred sixty');\nINSERT INTO t2 VALUES(7624, 93105, 'ninety-three thousand one hundred five');\nINSERT INTO t2 VALUES(7625, 59291, 'fifty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(7626, 94936, 'ninety-four thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(7627, 33012, 'thirty-three thousand twelve');\nINSERT INTO t2 VALUES(7628, 57210, 'fifty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(7629, 89151, 'eighty-nine thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(7630, 37067, 'thirty-seven thousand sixty-seven');\nINSERT INTO t2 VALUES(7631, 83823, 'eighty-three thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(7632, 43281, 'forty-three thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(7633, 43502, 'forty-three thousand five hundred two');\nINSERT INTO t2 VALUES(7634, 88432, 'eighty-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(7635, 96282, 'ninety-six thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(7636, 22310, 'twenty-two thousand three hundred ten');\nINSERT INTO t2 VALUES(7637, 63184, 'sixty-three thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7638, 38854, 'thirty-eight thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(7639, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t2 VALUES(7640, 47591, 'forty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(7641, 66203, 'sixty-six thousand two hundred three');\nINSERT INTO t2 VALUES(7642, 10901, 'ten thousand nine hundred one');\nINSERT INTO t2 VALUES(7643, 63363, 'sixty-three thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(7644, 40060, 'forty thousand sixty');\nINSERT INTO t2 VALUES(7645, 89536, 'eighty-nine thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(7646, 13, 'thirteen');\nINSERT INTO t2 VALUES(7647, 52827, 'fifty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(7648, 76482, 'seventy-six thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(7649, 48210, 'forty-eight thousand two hundred ten');\nINSERT INTO t2 VALUES(7650, 52849, 'fifty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(7651, 33200, 'thirty-three thousand two hundred');\nINSERT INTO t2 VALUES(7652, 58898, 'fifty-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(7653, 24149, 'twenty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7654, 81107, 'eighty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(7655, 35910, 'thirty-five thousand nine hundred ten');\nINSERT INTO t2 VALUES(7656, 38307, 'thirty-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(7657, 54300, 'fifty-four thousand three hundred');\nINSERT INTO t2 VALUES(7658, 31626, 'thirty-one thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(7659, 4551, 'four thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(7660, 5962, 'five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(7661, 2501, 'two thousand five hundred one');\nINSERT INTO t2 VALUES(7662, 96696, 'ninety-six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(7663, 88731, 'eighty-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(7664, 74200, 'seventy-four thousand two hundred');\nINSERT INTO t2 VALUES(7665, 17154, 'seventeen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(7666, 13238, 'thirteen thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(7667, 48064, 'forty-eight thousand sixty-four');\nINSERT INTO t2 VALUES(7668, 7940, 'seven thousand nine hundred forty');\nINSERT INTO t2 VALUES(7669, 14029, 'fourteen thousand twenty-nine');\nINSERT INTO t2 VALUES(7670, 40366, 'forty thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(7671, 39973, 'thirty-nine thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(7672, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(7673, 39000, 'thirty-nine thousand');\nINSERT INTO t2 VALUES(7674, 39485, 'thirty-nine thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(7675, 84542, 'eighty-four thousand five hundred forty-two');\nINSERT INTO t2 VALUES(7676, 61773, 'sixty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(7677, 41641, 'forty-one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(7678, 7886, 'seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7679, 30700, 'thirty thousand seven hundred');\nINSERT INTO t2 VALUES(7680, 95970, 'ninety-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(7681, 64922, 'sixty-four thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(7682, 14021, 'fourteen thousand twenty-one');\nINSERT INTO t2 VALUES(7683, 99256, 'ninety-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(7684, 91940, 'ninety-one thousand nine hundred forty');\nINSERT INTO t2 VALUES(7685, 27372, 'twenty-seven thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(7686, 57008, 'fifty-seven thousand eight');\nINSERT INTO t2 VALUES(7687, 69222, 'sixty-nine thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(7688, 7614, 'seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(7689, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(7690, 60236, 'sixty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7691, 95005, 'ninety-five thousand five');\nINSERT INTO t2 VALUES(7692, 70671, 'seventy thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(7693, 18886, 'eighteen thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(7694, 80435, 'eighty thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(7695, 77160, 'seventy-seven thousand one hundred sixty');\nINSERT INTO t2 VALUES(7696, 29415, 'twenty-nine thousand four hundred fifteen');\nINSERT INTO t2 VALUES(7697, 72605, 'seventy-two thousand six hundred five');\nINSERT INTO t2 VALUES(7698, 64737, 'sixty-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(7699, 46033, 'forty-six thousand thirty-three');\nINSERT INTO t2 VALUES(7700, 1345, 'one thousand three hundred forty-five');\nINSERT INTO t2 VALUES(7701, 76566, 'seventy-six thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(7702, 24009, 'twenty-four thousand nine');\nINSERT INTO t2 VALUES(7703, 748, 'seven hundred forty-eight');\nINSERT INTO t2 VALUES(7704, 6824, 'six thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(7705, 41462, 'forty-one thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(7706, 25743, 'twenty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(7707, 11884, 'eleven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(7708, 48287, 'forty-eight thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(7709, 12828, 'twelve thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(7710, 55232, 'fifty-five thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(7711, 7121, 'seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(7712, 64242, 'sixty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(7713, 24992, 'twenty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(7714, 34382, 'thirty-four thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(7715, 70019, 'seventy thousand nineteen');\nINSERT INTO t2 VALUES(7716, 96928, 'ninety-six thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(7717, 99259, 'ninety-nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(7718, 74890, 'seventy-four thousand eight hundred ninety');\nINSERT INTO t2 VALUES(7719, 31251, 'thirty-one thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(7720, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t2 VALUES(7721, 80806, 'eighty thousand eight hundred six');\nINSERT INTO t2 VALUES(7722, 15184, 'fifteen thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(7723, 83156, 'eighty-three thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(7724, 46068, 'forty-six thousand sixty-eight');\nINSERT INTO t2 VALUES(7725, 54273, 'fifty-four thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(7726, 33264, 'thirty-three thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(7727, 91237, 'ninety-one thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(7728, 50759, 'fifty thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(7729, 59848, 'fifty-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(7730, 46658, 'forty-six thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(7731, 23471, 'twenty-three thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(7732, 99924, 'ninety-nine thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(7733, 84228, 'eighty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(7734, 64993, 'sixty-four thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(7735, 35824, 'thirty-five thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(7736, 86124, 'eighty-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(7737, 1997, 'one thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(7738, 30925, 'thirty thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(7739, 9794, 'nine thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(7740, 21703, 'twenty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(7741, 47667, 'forty-seven thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(7742, 78875, 'seventy-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(7743, 68845, 'sixty-eight thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(7744, 75832, 'seventy-five thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(7745, 4127, 'four thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(7746, 92351, 'ninety-two thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(7747, 36960, 'thirty-six thousand nine hundred sixty');\nINSERT INTO t2 VALUES(7748, 53797, 'fifty-three thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(7749, 22166, 'twenty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(7750, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(7751, 30846, 'thirty thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(7752, 30187, 'thirty thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7753, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(7754, 16967, 'sixteen thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(7755, 89961, 'eighty-nine thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(7756, 13958, 'thirteen thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(7757, 86908, 'eighty-six thousand nine hundred eight');\nINSERT INTO t2 VALUES(7758, 78938, 'seventy-eight thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(7759, 81787, 'eighty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(7760, 73914, 'seventy-three thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(7761, 81978, 'eighty-one thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(7762, 76608, 'seventy-six thousand six hundred eight');\nINSERT INTO t2 VALUES(7763, 40940, 'forty thousand nine hundred forty');\nINSERT INTO t2 VALUES(7764, 21769, 'twenty-one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(7765, 64411, 'sixty-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(7766, 12013, 'twelve thousand thirteen');\nINSERT INTO t2 VALUES(7767, 44515, 'forty-four thousand five hundred fifteen');\nINSERT INTO t2 VALUES(7768, 64042, 'sixty-four thousand forty-two');\nINSERT INTO t2 VALUES(7769, 95415, 'ninety-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(7770, 46241, 'forty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(7771, 38038, 'thirty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(7772, 29915, 'twenty-nine thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(7773, 47079, 'forty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(7774, 40975, 'forty thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(7775, 25189, 'twenty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(7776, 84219, 'eighty-four thousand two hundred nineteen');\nINSERT INTO t2 VALUES(7777, 65775, 'sixty-five thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(7778, 83133, 'eighty-three thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(7779, 18759, 'eighteen thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(7780, 24673, 'twenty-four thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(7781, 89363, 'eighty-nine thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(7782, 94126, 'ninety-four thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(7783, 736, 'seven hundred thirty-six');\nINSERT INTO t2 VALUES(7784, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t2 VALUES(7785, 7486, 'seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(7786, 67916, 'sixty-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(7787, 17289, 'seventeen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(7788, 47031, 'forty-seven thousand thirty-one');\nINSERT INTO t2 VALUES(7789, 22555, 'twenty-two thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(7790, 55086, 'fifty-five thousand eighty-six');\nINSERT INTO t2 VALUES(7791, 47896, 'forty-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(7792, 24885, 'twenty-four thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(7793, 12920, 'twelve thousand nine hundred twenty');\nINSERT INTO t2 VALUES(7794, 749, 'seven hundred forty-nine');\nINSERT INTO t2 VALUES(7795, 55204, 'fifty-five thousand two hundred four');\nINSERT INTO t2 VALUES(7796, 5101, 'five thousand one hundred one');\nINSERT INTO t2 VALUES(7797, 70030, 'seventy thousand thirty');\nINSERT INTO t2 VALUES(7798, 7459, 'seven thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(7799, 48899, 'forty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(7800, 93683, 'ninety-three thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(7801, 16451, 'sixteen thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7802, 25104, 'twenty-five thousand one hundred four');\nINSERT INTO t2 VALUES(7803, 9893, 'nine thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(7804, 14245, 'fourteen thousand two hundred forty-five');\nINSERT INTO t2 VALUES(7805, 5970, 'five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(7806, 34885, 'thirty-four thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(7807, 16332, 'sixteen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(7808, 54012, 'fifty-four thousand twelve');\nINSERT INTO t2 VALUES(7809, 11996, 'eleven thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(7810, 21344, 'twenty-one thousand three hundred forty-four');\nINSERT INTO t2 VALUES(7811, 35258, 'thirty-five thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(7812, 9275, 'nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(7813, 85031, 'eighty-five thousand thirty-one');\nINSERT INTO t2 VALUES(7814, 29581, 'twenty-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(7815, 37798, 'thirty-seven thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(7816, 43311, 'forty-three thousand three hundred eleven');\nINSERT INTO t2 VALUES(7817, 26374, 'twenty-six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(7818, 44818, 'forty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(7819, 44149, 'forty-four thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7820, 54167, 'fifty-four thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(7821, 80354, 'eighty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(7822, 72843, 'seventy-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(7823, 3938, 'three thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(7824, 67512, 'sixty-seven thousand five hundred twelve');\nINSERT INTO t2 VALUES(7825, 54793, 'fifty-four thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(7826, 78915, 'seventy-eight thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(7827, 87426, 'eighty-seven thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(7828, 76112, 'seventy-six thousand one hundred twelve');\nINSERT INTO t2 VALUES(7829, 46418, 'forty-six thousand four hundred eighteen');\nINSERT INTO t2 VALUES(7830, 63056, 'sixty-three thousand fifty-six');\nINSERT INTO t2 VALUES(7831, 18738, 'eighteen thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(7832, 71922, 'seventy-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(7833, 10485, 'ten thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(7834, 30335, 'thirty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(7835, 68428, 'sixty-eight thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(7836, 28843, 'twenty-eight thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(7837, 11189, 'eleven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(7838, 27674, 'twenty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(7839, 8179, 'eight thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(7840, 62895, 'sixty-two thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(7841, 37338, 'thirty-seven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(7842, 31953, 'thirty-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(7843, 32622, 'thirty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(7844, 76187, 'seventy-six thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(7845, 43656, 'forty-three thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(7846, 87332, 'eighty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(7847, 92268, 'ninety-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(7848, 95283, 'ninety-five thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(7849, 50468, 'fifty thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(7850, 91856, 'ninety-one thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(7851, 69233, 'sixty-nine thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(7852, 17016, 'seventeen thousand sixteen');\nINSERT INTO t2 VALUES(7853, 96332, 'ninety-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(7854, 76291, 'seventy-six thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(7855, 34565, 'thirty-four thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(7856, 39586, 'thirty-nine thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(7857, 61213, 'sixty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(7858, 18928, 'eighteen thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(7859, 21888, 'twenty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(7860, 51536, 'fifty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(7861, 81074, 'eighty-one thousand seventy-four');\nINSERT INTO t2 VALUES(7862, 21568, 'twenty-one thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(7863, 48621, 'forty-eight thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(7864, 90284, 'ninety thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(7865, 6140, 'six thousand one hundred forty');\nINSERT INTO t2 VALUES(7866, 3388, 'three thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(7867, 54350, 'fifty-four thousand three hundred fifty');\nINSERT INTO t2 VALUES(7868, 88335, 'eighty-eight thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(7869, 55056, 'fifty-five thousand fifty-six');\nINSERT INTO t2 VALUES(7870, 80523, 'eighty thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(7871, 36453, 'thirty-six thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(7872, 637, 'six hundred thirty-seven');\nINSERT INTO t2 VALUES(7873, 46560, 'forty-six thousand five hundred sixty');\nINSERT INTO t2 VALUES(7874, 64868, 'sixty-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(7875, 80928, 'eighty thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(7876, 73574, 'seventy-three thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(7877, 17541, 'seventeen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(7878, 94826, 'ninety-four thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(7879, 65383, 'sixty-five thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(7880, 82342, 'eighty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(7881, 37458, 'thirty-seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(7882, 99149, 'ninety-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(7883, 71689, 'seventy-one thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(7884, 78085, 'seventy-eight thousand eighty-five');\nINSERT INTO t2 VALUES(7885, 57552, 'fifty-seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(7886, 2761, 'two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(7887, 45520, 'forty-five thousand five hundred twenty');\nINSERT INTO t2 VALUES(7888, 45625, 'forty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(7889, 4598, 'four thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(7890, 55, 'fifty-five');\nINSERT INTO t2 VALUES(7891, 35004, 'thirty-five thousand four');\nINSERT INTO t2 VALUES(7892, 55327, 'fifty-five thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(7893, 11166, 'eleven thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(7894, 26140, 'twenty-six thousand one hundred forty');\nINSERT INTO t2 VALUES(7895, 91477, 'ninety-one thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(7896, 42203, 'forty-two thousand two hundred three');\nINSERT INTO t2 VALUES(7897, 84780, 'eighty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(7898, 67536, 'sixty-seven thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(7899, 19055, 'nineteen thousand fifty-five');\nINSERT INTO t2 VALUES(7900, 59432, 'fifty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(7901, 21613, 'twenty-one thousand six hundred thirteen');\nINSERT INTO t2 VALUES(7902, 61666, 'sixty-one thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(7903, 77311, 'seventy-seven thousand three hundred eleven');\nINSERT INTO t2 VALUES(7904, 27206, 'twenty-seven thousand two hundred six');\nINSERT INTO t2 VALUES(7905, 92854, 'ninety-two thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(7906, 35248, 'thirty-five thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(7907, 61592, 'sixty-one thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(7908, 98527, 'ninety-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(7909, 48236, 'forty-eight thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(7910, 9447, 'nine thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(7911, 30822, 'thirty thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(7912, 14984, 'fourteen thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(7913, 31991, 'thirty-one thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(7914, 54422, 'fifty-four thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(7915, 79383, 'seventy-nine thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(7916, 73590, 'seventy-three thousand five hundred ninety');\nINSERT INTO t2 VALUES(7917, 95713, 'ninety-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(7918, 18969, 'eighteen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(7919, 14662, 'fourteen thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(7920, 45256, 'forty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(7921, 37455, 'thirty-seven thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(7922, 10143, 'ten thousand one hundred forty-three');\nINSERT INTO t2 VALUES(7923, 97947, 'ninety-seven thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(7924, 48008, 'forty-eight thousand eight');\nINSERT INTO t2 VALUES(7925, 62549, 'sixty-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(7926, 45256, 'forty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(7927, 40634, 'forty thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(7928, 10988, 'ten thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(7929, 33825, 'thirty-three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(7930, 96608, 'ninety-six thousand six hundred eight');\nINSERT INTO t2 VALUES(7931, 5533, 'five thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(7932, 26864, 'twenty-six thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(7933, 85451, 'eighty-five thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(7934, 26640, 'twenty-six thousand six hundred forty');\nINSERT INTO t2 VALUES(7935, 51622, 'fifty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(7936, 14219, 'fourteen thousand two hundred nineteen');\nINSERT INTO t2 VALUES(7937, 6403, 'six thousand four hundred three');\nINSERT INTO t2 VALUES(7938, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(7939, 57470, 'fifty-seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(7940, 70153, 'seventy thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(7941, 84092, 'eighty-four thousand ninety-two');\nINSERT INTO t2 VALUES(7942, 40361, 'forty thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(7943, 55743, 'fifty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(7944, 98943, 'ninety-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(7945, 44077, 'forty-four thousand seventy-seven');\nINSERT INTO t2 VALUES(7946, 15704, 'fifteen thousand seven hundred four');\nINSERT INTO t2 VALUES(7947, 33561, 'thirty-three thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(7948, 19774, 'nineteen thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(7949, 41637, 'forty-one thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(7950, 66247, 'sixty-six thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(7951, 49218, 'forty-nine thousand two hundred eighteen');\nINSERT INTO t2 VALUES(7952, 36083, 'thirty-six thousand eighty-three');\nINSERT INTO t2 VALUES(7953, 95461, 'ninety-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(7954, 72804, 'seventy-two thousand eight hundred four');\nINSERT INTO t2 VALUES(7955, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(7956, 73606, 'seventy-three thousand six hundred six');\nINSERT INTO t2 VALUES(7957, 93155, 'ninety-three thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(7958, 55561, 'fifty-five thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(7959, 89373, 'eighty-nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(7960, 7478, 'seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(7961, 32969, 'thirty-two thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(7962, 16085, 'sixteen thousand eighty-five');\nINSERT INTO t2 VALUES(7963, 24821, 'twenty-four thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(7964, 17232, 'seventeen thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(7965, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(7966, 1280, 'one thousand two hundred eighty');\nINSERT INTO t2 VALUES(7967, 93357, 'ninety-three thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(7968, 62662, 'sixty-two thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(7969, 69554, 'sixty-nine thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(7970, 68837, 'sixty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(7971, 49333, 'forty-nine thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(7972, 61065, 'sixty-one thousand sixty-five');\nINSERT INTO t2 VALUES(7973, 45391, 'forty-five thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(7974, 12556, 'twelve thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(7975, 5031, 'five thousand thirty-one');\nINSERT INTO t2 VALUES(7976, 62986, 'sixty-two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(7977, 25975, 'twenty-five thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(7978, 33655, 'thirty-three thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(7979, 6028, 'six thousand twenty-eight');\nINSERT INTO t2 VALUES(7980, 36020, 'thirty-six thousand twenty');\nINSERT INTO t2 VALUES(7981, 41558, 'forty-one thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(7982, 87946, 'eighty-seven thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(7983, 21756, 'twenty-one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(7984, 44874, 'forty-four thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(7985, 7220, 'seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(7986, 94122, 'ninety-four thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(7987, 43802, 'forty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(7988, 36249, 'thirty-six thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(7989, 39796, 'thirty-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(7990, 54710, 'fifty-four thousand seven hundred ten');\nINSERT INTO t2 VALUES(7991, 71277, 'seventy-one thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(7992, 8893, 'eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(7993, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(7994, 3436, 'three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(7995, 5482, 'five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(7996, 16251, 'sixteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(7997, 33887, 'thirty-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(7998, 49286, 'forty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(7999, 16522, 'sixteen thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(8000, 89509, 'eighty-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(8001, 84684, 'eighty-four thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(8002, 81188, 'eighty-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8003, 14015, 'fourteen thousand fifteen');\nINSERT INTO t2 VALUES(8004, 34039, 'thirty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(8005, 49709, 'forty-nine thousand seven hundred nine');\nINSERT INTO t2 VALUES(8006, 39236, 'thirty-nine thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(8007, 59391, 'fifty-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(8008, 76537, 'seventy-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(8009, 85992, 'eighty-five thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(8010, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(8011, 66771, 'sixty-six thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(8012, 88442, 'eighty-eight thousand four hundred forty-two');\nINSERT INTO t2 VALUES(8013, 9094, 'nine thousand ninety-four');\nINSERT INTO t2 VALUES(8014, 90515, 'ninety thousand five hundred fifteen');\nINSERT INTO t2 VALUES(8015, 8703, 'eight thousand seven hundred three');\nINSERT INTO t2 VALUES(8016, 21314, 'twenty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(8017, 98166, 'ninety-eight thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(8018, 5343, 'five thousand three hundred forty-three');\nINSERT INTO t2 VALUES(8019, 24040, 'twenty-four thousand forty');\nINSERT INTO t2 VALUES(8020, 70025, 'seventy thousand twenty-five');\nINSERT INTO t2 VALUES(8021, 57450, 'fifty-seven thousand four hundred fifty');\nINSERT INTO t2 VALUES(8022, 91323, 'ninety-one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(8023, 67726, 'sixty-seven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(8024, 33298, 'thirty-three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(8025, 8794, 'eight thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(8026, 57450, 'fifty-seven thousand four hundred fifty');\nINSERT INTO t2 VALUES(8027, 16655, 'sixteen thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(8028, 84049, 'eighty-four thousand forty-nine');\nINSERT INTO t2 VALUES(8029, 49266, 'forty-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8030, 31481, 'thirty-one thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(8031, 30149, 'thirty thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(8032, 45816, 'forty-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(8033, 59526, 'fifty-nine thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(8034, 79025, 'seventy-nine thousand twenty-five');\nINSERT INTO t2 VALUES(8035, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8036, 75727, 'seventy-five thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(8037, 37740, 'thirty-seven thousand seven hundred forty');\nINSERT INTO t2 VALUES(8038, 69474, 'sixty-nine thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(8039, 51373, 'fifty-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(8040, 17139, 'seventeen thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(8041, 40365, 'forty thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(8042, 4212, 'four thousand two hundred twelve');\nINSERT INTO t2 VALUES(8043, 49019, 'forty-nine thousand nineteen');\nINSERT INTO t2 VALUES(8044, 11575, 'eleven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(8045, 28312, 'twenty-eight thousand three hundred twelve');\nINSERT INTO t2 VALUES(8046, 84096, 'eighty-four thousand ninety-six');\nINSERT INTO t2 VALUES(8047, 65289, 'sixty-five thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8048, 5827, 'five thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(8049, 51448, 'fifty-one thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(8050, 67755, 'sixty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(8051, 27094, 'twenty-seven thousand ninety-four');\nINSERT INTO t2 VALUES(8052, 7500, 'seven thousand five hundred');\nINSERT INTO t2 VALUES(8053, 70116, 'seventy thousand one hundred sixteen');\nINSERT INTO t2 VALUES(8054, 16929, 'sixteen thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(8055, 11348, 'eleven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(8056, 98296, 'ninety-eight thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(8057, 6597, 'six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(8058, 93592, 'ninety-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(8059, 44437, 'forty-four thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(8060, 27975, 'twenty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(8061, 72177, 'seventy-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(8062, 29195, 'twenty-nine thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(8063, 24306, 'twenty-four thousand three hundred six');\nINSERT INTO t2 VALUES(8064, 75219, 'seventy-five thousand two hundred nineteen');\nINSERT INTO t2 VALUES(8065, 35188, 'thirty-five thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8066, 22006, 'twenty-two thousand six');\nINSERT INTO t2 VALUES(8067, 90157, 'ninety thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(8068, 13172, 'thirteen thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8069, 74536, 'seventy-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(8070, 87353, 'eighty-seven thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(8071, 9950, 'nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(8072, 22537, 'twenty-two thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(8073, 10732, 'ten thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(8074, 10571, 'ten thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(8075, 98607, 'ninety-eight thousand six hundred seven');\nINSERT INTO t2 VALUES(8076, 53888, 'fifty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(8077, 3175, 'three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(8078, 12578, 'twelve thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(8079, 93344, 'ninety-three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(8080, 87802, 'eighty-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(8081, 60090, 'sixty thousand ninety');\nINSERT INTO t2 VALUES(8082, 59423, 'fifty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(8083, 47984, 'forty-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(8084, 56162, 'fifty-six thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(8085, 23863, 'twenty-three thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(8086, 4487, 'four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(8087, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t2 VALUES(8088, 86519, 'eighty-six thousand five hundred nineteen');\nINSERT INTO t2 VALUES(8089, 71098, 'seventy-one thousand ninety-eight');\nINSERT INTO t2 VALUES(8090, 28632, 'twenty-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(8091, 93932, 'ninety-three thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(8092, 20421, 'twenty thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(8093, 29267, 'twenty-nine thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(8094, 74567, 'seventy-four thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(8095, 99457, 'ninety-nine thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(8096, 59667, 'fifty-nine thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(8097, 60872, 'sixty thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(8098, 53594, 'fifty-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(8099, 66800, 'sixty-six thousand eight hundred');\nINSERT INTO t2 VALUES(8100, 81708, 'eighty-one thousand seven hundred eight');\nINSERT INTO t2 VALUES(8101, 82388, 'eighty-two thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(8102, 31922, 'thirty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(8103, 28907, 'twenty-eight thousand nine hundred seven');\nINSERT INTO t2 VALUES(8104, 33393, 'thirty-three thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(8105, 82827, 'eighty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(8106, 16882, 'sixteen thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(8107, 61644, 'sixty-one thousand six hundred forty-four');\nINSERT INTO t2 VALUES(8108, 71826, 'seventy-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(8109, 19410, 'nineteen thousand four hundred ten');\nINSERT INTO t2 VALUES(8110, 81318, 'eighty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(8111, 65374, 'sixty-five thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(8112, 66995, 'sixty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(8113, 94637, 'ninety-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(8114, 78707, 'seventy-eight thousand seven hundred seven');\nINSERT INTO t2 VALUES(8115, 98440, 'ninety-eight thousand four hundred forty');\nINSERT INTO t2 VALUES(8116, 60845, 'sixty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(8117, 36430, 'thirty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(8118, 74905, 'seventy-four thousand nine hundred five');\nINSERT INTO t2 VALUES(8119, 5597, 'five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(8120, 26767, 'twenty-six thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(8121, 83070, 'eighty-three thousand seventy');\nINSERT INTO t2 VALUES(8122, 67202, 'sixty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(8123, 86283, 'eighty-six thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(8124, 96463, 'ninety-six thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(8125, 14179, 'fourteen thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(8126, 64056, 'sixty-four thousand fifty-six');\nINSERT INTO t2 VALUES(8127, 58519, 'fifty-eight thousand five hundred nineteen');\nINSERT INTO t2 VALUES(8128, 18920, 'eighteen thousand nine hundred twenty');\nINSERT INTO t2 VALUES(8129, 69584, 'sixty-nine thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(8130, 27796, 'twenty-seven thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(8131, 45307, 'forty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(8132, 28813, 'twenty-eight thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(8133, 99647, 'ninety-nine thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(8134, 16545, 'sixteen thousand five hundred forty-five');\nINSERT INTO t2 VALUES(8135, 74537, 'seventy-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(8136, 90134, 'ninety thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(8137, 45851, 'forty-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(8138, 38243, 'thirty-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(8139, 31534, 'thirty-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(8140, 1804, 'one thousand eight hundred four');\nINSERT INTO t2 VALUES(8141, 71584, 'seventy-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(8142, 44572, 'forty-four thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(8143, 27202, 'twenty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(8144, 70639, 'seventy thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(8145, 42204, 'forty-two thousand two hundred four');\nINSERT INTO t2 VALUES(8146, 76588, 'seventy-six thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(8147, 79050, 'seventy-nine thousand fifty');\nINSERT INTO t2 VALUES(8148, 55518, 'fifty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(8149, 26840, 'twenty-six thousand eight hundred forty');\nINSERT INTO t2 VALUES(8150, 25692, 'twenty-five thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(8151, 28384, 'twenty-eight thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(8152, 24195, 'twenty-four thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(8153, 81289, 'eighty-one thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8154, 56024, 'fifty-six thousand twenty-four');\nINSERT INTO t2 VALUES(8155, 91563, 'ninety-one thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(8156, 55950, 'fifty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(8157, 28486, 'twenty-eight thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(8158, 98589, 'ninety-eight thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(8159, 9670, 'nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(8160, 37363, 'thirty-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(8161, 50339, 'fifty thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(8162, 19513, 'nineteen thousand five hundred thirteen');\nINSERT INTO t2 VALUES(8163, 22954, 'twenty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(8164, 96959, 'ninety-six thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(8165, 28263, 'twenty-eight thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(8166, 88725, 'eighty-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(8167, 19414, 'nineteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(8168, 83966, 'eighty-three thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(8169, 46804, 'forty-six thousand eight hundred four');\nINSERT INTO t2 VALUES(8170, 72825, 'seventy-two thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(8171, 49946, 'forty-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8172, 1105, 'one thousand one hundred five');\nINSERT INTO t2 VALUES(8173, 32495, 'thirty-two thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(8174, 62329, 'sixty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(8175, 43010, 'forty-three thousand ten');\nINSERT INTO t2 VALUES(8176, 94084, 'ninety-four thousand eighty-four');\nINSERT INTO t2 VALUES(8177, 59631, 'fifty-nine thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(8178, 6291, 'six thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(8179, 24610, 'twenty-four thousand six hundred ten');\nINSERT INTO t2 VALUES(8180, 7376, 'seven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(8181, 75663, 'seventy-five thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(8182, 20917, 'twenty thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(8183, 90871, 'ninety thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(8184, 84249, 'eighty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(8185, 11208, 'eleven thousand two hundred eight');\nINSERT INTO t2 VALUES(8186, 16820, 'sixteen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(8187, 87115, 'eighty-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(8188, 14205, 'fourteen thousand two hundred five');\nINSERT INTO t2 VALUES(8189, 49986, 'forty-nine thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(8190, 32588, 'thirty-two thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(8191, 77871, 'seventy-seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(8192, 88917, 'eighty-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(8193, 73062, 'seventy-three thousand sixty-two');\nINSERT INTO t2 VALUES(8194, 69440, 'sixty-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(8195, 90830, 'ninety thousand eight hundred thirty');\nINSERT INTO t2 VALUES(8196, 38787, 'thirty-eight thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(8197, 32760, 'thirty-two thousand seven hundred sixty');\nINSERT INTO t2 VALUES(8198, 22170, 'twenty-two thousand one hundred seventy');\nINSERT INTO t2 VALUES(8199, 83455, 'eighty-three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(8200, 73609, 'seventy-three thousand six hundred nine');\nINSERT INTO t2 VALUES(8201, 8014, 'eight thousand fourteen');\nINSERT INTO t2 VALUES(8202, 57772, 'fifty-seven thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(8203, 29503, 'twenty-nine thousand five hundred three');\nINSERT INTO t2 VALUES(8204, 27966, 'twenty-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(8205, 95704, 'ninety-five thousand seven hundred four');\nINSERT INTO t2 VALUES(8206, 95989, 'ninety-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(8207, 53489, 'fifty-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(8208, 8600, 'eight thousand six hundred');\nINSERT INTO t2 VALUES(8209, 46229, 'forty-six thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(8210, 69907, 'sixty-nine thousand nine hundred seven');\nINSERT INTO t2 VALUES(8211, 93903, 'ninety-three thousand nine hundred three');\nINSERT INTO t2 VALUES(8212, 96791, 'ninety-six thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(8213, 8081, 'eight thousand eighty-one');\nINSERT INTO t2 VALUES(8214, 84716, 'eighty-four thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(8215, 61370, 'sixty-one thousand three hundred seventy');\nINSERT INTO t2 VALUES(8216, 26047, 'twenty-six thousand forty-seven');\nINSERT INTO t2 VALUES(8217, 80025, 'eighty thousand twenty-five');\nINSERT INTO t2 VALUES(8218, 73171, 'seventy-three thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(8219, 39985, 'thirty-nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(8220, 98244, 'ninety-eight thousand two hundred forty-four');\nINSERT INTO t2 VALUES(8221, 33072, 'thirty-three thousand seventy-two');\nINSERT INTO t2 VALUES(8222, 95789, 'ninety-five thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(8223, 10495, 'ten thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(8224, 51058, 'fifty-one thousand fifty-eight');\nINSERT INTO t2 VALUES(8225, 77375, 'seventy-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(8226, 46019, 'forty-six thousand nineteen');\nINSERT INTO t2 VALUES(8227, 15747, 'fifteen thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(8228, 81964, 'eighty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(8229, 24858, 'twenty-four thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(8230, 23459, 'twenty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(8231, 79754, 'seventy-nine thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(8232, 54760, 'fifty-four thousand seven hundred sixty');\nINSERT INTO t2 VALUES(8233, 95811, 'ninety-five thousand eight hundred eleven');\nINSERT INTO t2 VALUES(8234, 5062, 'five thousand sixty-two');\nINSERT INTO t2 VALUES(8235, 7109, 'seven thousand one hundred nine');\nINSERT INTO t2 VALUES(8236, 51387, 'fifty-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(8237, 71637, 'seventy-one thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(8238, 73206, 'seventy-three thousand two hundred six');\nINSERT INTO t2 VALUES(8239, 46295, 'forty-six thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(8240, 13009, 'thirteen thousand nine');\nINSERT INTO t2 VALUES(8241, 60087, 'sixty thousand eighty-seven');\nINSERT INTO t2 VALUES(8242, 25923, 'twenty-five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(8243, 9805, 'nine thousand eight hundred five');\nINSERT INTO t2 VALUES(8244, 30861, 'thirty thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(8245, 32953, 'thirty-two thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(8246, 67589, 'sixty-seven thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(8247, 27326, 'twenty-seven thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(8248, 69656, 'sixty-nine thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(8249, 16501, 'sixteen thousand five hundred one');\nINSERT INTO t2 VALUES(8250, 37315, 'thirty-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(8251, 89883, 'eighty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(8252, 36652, 'thirty-six thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(8253, 31530, 'thirty-one thousand five hundred thirty');\nINSERT INTO t2 VALUES(8254, 86312, 'eighty-six thousand three hundred twelve');\nINSERT INTO t2 VALUES(8255, 95217, 'ninety-five thousand two hundred seventeen');\nINSERT INTO t2 VALUES(8256, 62570, 'sixty-two thousand five hundred seventy');\nINSERT INTO t2 VALUES(8257, 62573, 'sixty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(8258, 97, 'ninety-seven');\nINSERT INTO t2 VALUES(8259, 8161, 'eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(8260, 78891, 'seventy-eight thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(8261, 23796, 'twenty-three thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(8262, 86320, 'eighty-six thousand three hundred twenty');\nINSERT INTO t2 VALUES(8263, 15800, 'fifteen thousand eight hundred');\nINSERT INTO t2 VALUES(8264, 39336, 'thirty-nine thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(8265, 8304, 'eight thousand three hundred four');\nINSERT INTO t2 VALUES(8266, 85651, 'eighty-five thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(8267, 28403, 'twenty-eight thousand four hundred three');\nINSERT INTO t2 VALUES(8268, 1622, 'one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(8269, 38657, 'thirty-eight thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(8270, 81801, 'eighty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(8271, 78027, 'seventy-eight thousand twenty-seven');\nINSERT INTO t2 VALUES(8272, 55338, 'fifty-five thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(8273, 66066, 'sixty-six thousand sixty-six');\nINSERT INTO t2 VALUES(8274, 48209, 'forty-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(8275, 51056, 'fifty-one thousand fifty-six');\nINSERT INTO t2 VALUES(8276, 17367, 'seventeen thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(8277, 42270, 'forty-two thousand two hundred seventy');\nINSERT INTO t2 VALUES(8278, 69366, 'sixty-nine thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(8279, 24319, 'twenty-four thousand three hundred nineteen');\nINSERT INTO t2 VALUES(8280, 85464, 'eighty-five thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(8281, 25889, 'twenty-five thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(8282, 74094, 'seventy-four thousand ninety-four');\nINSERT INTO t2 VALUES(8283, 47837, 'forty-seven thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(8284, 38957, 'thirty-eight thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(8285, 7458, 'seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(8286, 95300, 'ninety-five thousand three hundred');\nINSERT INTO t2 VALUES(8287, 29642, 'twenty-nine thousand six hundred forty-two');\nINSERT INTO t2 VALUES(8288, 14033, 'fourteen thousand thirty-three');\nINSERT INTO t2 VALUES(8289, 37044, 'thirty-seven thousand forty-four');\nINSERT INTO t2 VALUES(8290, 26910, 'twenty-six thousand nine hundred ten');\nINSERT INTO t2 VALUES(8291, 87193, 'eighty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8292, 32544, 'thirty-two thousand five hundred forty-four');\nINSERT INTO t2 VALUES(8293, 56606, 'fifty-six thousand six hundred six');\nINSERT INTO t2 VALUES(8294, 5305, 'five thousand three hundred five');\nINSERT INTO t2 VALUES(8295, 99438, 'ninety-nine thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(8296, 90665, 'ninety thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(8297, 38974, 'thirty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8298, 68109, 'sixty-eight thousand one hundred nine');\nINSERT INTO t2 VALUES(8299, 15877, 'fifteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(8300, 52230, 'fifty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(8301, 47332, 'forty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(8302, 48457, 'forty-eight thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(8303, 34780, 'thirty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(8304, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(8305, 59943, 'fifty-nine thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(8306, 1094, 'one thousand ninety-four');\nINSERT INTO t2 VALUES(8307, 92145, 'ninety-two thousand one hundred forty-five');\nINSERT INTO t2 VALUES(8308, 74060, 'seventy-four thousand sixty');\nINSERT INTO t2 VALUES(8309, 38193, 'thirty-eight thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8310, 20192, 'twenty thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(8311, 45702, 'forty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(8312, 97277, 'ninety-seven thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(8313, 43935, 'forty-three thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(8314, 32421, 'thirty-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(8315, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t2 VALUES(8316, 73382, 'seventy-three thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(8317, 10733, 'ten thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(8318, 97129, 'ninety-seven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(8319, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(8320, 10259, 'ten thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(8321, 39614, 'thirty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(8322, 27633, 'twenty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(8323, 69950, 'sixty-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(8324, 8919, 'eight thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(8325, 28733, 'twenty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(8326, 20390, 'twenty thousand three hundred ninety');\nINSERT INTO t2 VALUES(8327, 77228, 'seventy-seven thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(8328, 35351, 'thirty-five thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(8329, 13857, 'thirteen thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(8330, 42468, 'forty-two thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(8331, 84999, 'eighty-four thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(8332, 72470, 'seventy-two thousand four hundred seventy');\nINSERT INTO t2 VALUES(8333, 72452, 'seventy-two thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(8334, 94155, 'ninety-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(8335, 6664, 'six thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(8336, 18849, 'eighteen thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(8337, 68314, 'sixty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(8338, 94744, 'ninety-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(8339, 92363, 'ninety-two thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(8340, 93019, 'ninety-three thousand nineteen');\nINSERT INTO t2 VALUES(8341, 78500, 'seventy-eight thousand five hundred');\nINSERT INTO t2 VALUES(8342, 44088, 'forty-four thousand eighty-eight');\nINSERT INTO t2 VALUES(8343, 75584, 'seventy-five thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(8344, 84360, 'eighty-four thousand three hundred sixty');\nINSERT INTO t2 VALUES(8345, 70735, 'seventy thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(8346, 12457, 'twelve thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(8347, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(8348, 1204, 'one thousand two hundred four');\nINSERT INTO t2 VALUES(8349, 80695, 'eighty thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(8350, 62627, 'sixty-two thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(8351, 21967, 'twenty-one thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(8352, 45548, 'forty-five thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(8353, 33384, 'thirty-three thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(8354, 23888, 'twenty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(8355, 90151, 'ninety thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(8356, 97427, 'ninety-seven thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(8357, 51779, 'fifty-one thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(8358, 86397, 'eighty-six thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(8359, 59564, 'fifty-nine thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(8360, 38636, 'thirty-eight thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(8361, 64780, 'sixty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(8362, 37535, 'thirty-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(8363, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(8364, 4100, 'four thousand one hundred');\nINSERT INTO t2 VALUES(8365, 30252, 'thirty thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(8366, 84723, 'eighty-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(8367, 20077, 'twenty thousand seventy-seven');\nINSERT INTO t2 VALUES(8368, 34092, 'thirty-four thousand ninety-two');\nINSERT INTO t2 VALUES(8369, 35114, 'thirty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(8370, 86839, 'eighty-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(8371, 95103, 'ninety-five thousand one hundred three');\nINSERT INTO t2 VALUES(8372, 36892, 'thirty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(8373, 99387, 'ninety-nine thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(8374, 88180, 'eighty-eight thousand one hundred eighty');\nINSERT INTO t2 VALUES(8375, 75130, 'seventy-five thousand one hundred thirty');\nINSERT INTO t2 VALUES(8376, 72000, 'seventy-two thousand');\nINSERT INTO t2 VALUES(8377, 52097, 'fifty-two thousand ninety-seven');\nINSERT INTO t2 VALUES(8378, 93419, 'ninety-three thousand four hundred nineteen');\nINSERT INTO t2 VALUES(8379, 55083, 'fifty-five thousand eighty-three');\nINSERT INTO t2 VALUES(8380, 55503, 'fifty-five thousand five hundred three');\nINSERT INTO t2 VALUES(8381, 81232, 'eighty-one thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(8382, 95887, 'ninety-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(8383, 32005, 'thirty-two thousand five');\nINSERT INTO t2 VALUES(8384, 5590, 'five thousand five hundred ninety');\nINSERT INTO t2 VALUES(8385, 53004, 'fifty-three thousand four');\nINSERT INTO t2 VALUES(8386, 60414, 'sixty thousand four hundred fourteen');\nINSERT INTO t2 VALUES(8387, 39286, 'thirty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(8388, 61723, 'sixty-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(8389, 28696, 'twenty-eight thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(8390, 30502, 'thirty thousand five hundred two');\nINSERT INTO t2 VALUES(8391, 40868, 'forty thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(8392, 56747, 'fifty-six thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(8393, 72695, 'seventy-two thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(8394, 90719, 'ninety thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(8395, 22263, 'twenty-two thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(8396, 10971, 'ten thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(8397, 67956, 'sixty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(8398, 5266, 'five thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8399, 65629, 'sixty-five thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(8400, 60456, 'sixty thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(8401, 52701, 'fifty-two thousand seven hundred one');\nINSERT INTO t2 VALUES(8402, 11101, 'eleven thousand one hundred one');\nINSERT INTO t2 VALUES(8403, 31802, 'thirty-one thousand eight hundred two');\nINSERT INTO t2 VALUES(8404, 57050, 'fifty-seven thousand fifty');\nINSERT INTO t2 VALUES(8405, 57178, 'fifty-seven thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(8406, 43050, 'forty-three thousand fifty');\nINSERT INTO t2 VALUES(8407, 54219, 'fifty-four thousand two hundred nineteen');\nINSERT INTO t2 VALUES(8408, 30077, 'thirty thousand seventy-seven');\nINSERT INTO t2 VALUES(8409, 26188, 'twenty-six thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8410, 86172, 'eighty-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8411, 50520, 'fifty thousand five hundred twenty');\nINSERT INTO t2 VALUES(8412, 71227, 'seventy-one thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(8413, 9944, 'nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(8414, 24896, 'twenty-four thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(8415, 98924, 'ninety-eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(8416, 23715, 'twenty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(8417, 85708, 'eighty-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(8418, 65832, 'sixty-five thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(8419, 71091, 'seventy-one thousand ninety-one');\nINSERT INTO t2 VALUES(8420, 45450, 'forty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(8421, 72707, 'seventy-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(8422, 4941, 'four thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(8423, 59988, 'fifty-nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(8424, 74020, 'seventy-four thousand twenty');\nINSERT INTO t2 VALUES(8425, 47480, 'forty-seven thousand four hundred eighty');\nINSERT INTO t2 VALUES(8426, 29522, 'twenty-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(8427, 28655, 'twenty-eight thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(8428, 50172, 'fifty thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8429, 91225, 'ninety-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(8430, 51844, 'fifty-one thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(8431, 40306, 'forty thousand three hundred six');\nINSERT INTO t2 VALUES(8432, 42886, 'forty-two thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(8433, 96895, 'ninety-six thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(8434, 75928, 'seventy-five thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(8435, 30316, 'thirty thousand three hundred sixteen');\nINSERT INTO t2 VALUES(8436, 83563, 'eighty-three thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(8437, 82660, 'eighty-two thousand six hundred sixty');\nINSERT INTO t2 VALUES(8438, 85621, 'eighty-five thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(8439, 42335, 'forty-two thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(8440, 79863, 'seventy-nine thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(8441, 3905, 'three thousand nine hundred five');\nINSERT INTO t2 VALUES(8442, 93351, 'ninety-three thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(8443, 14415, 'fourteen thousand four hundred fifteen');\nINSERT INTO t2 VALUES(8444, 38678, 'thirty-eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(8445, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8446, 86197, 'eighty-six thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(8447, 358, 'three hundred fifty-eight');\nINSERT INTO t2 VALUES(8448, 87031, 'eighty-seven thousand thirty-one');\nINSERT INTO t2 VALUES(8449, 83811, 'eighty-three thousand eight hundred eleven');\nINSERT INTO t2 VALUES(8450, 11528, 'eleven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(8451, 54017, 'fifty-four thousand seventeen');\nINSERT INTO t2 VALUES(8452, 17978, 'seventeen thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(8453, 22946, 'twenty-two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8454, 52647, 'fifty-two thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(8455, 62893, 'sixty-two thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(8456, 45727, 'forty-five thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(8457, 27751, 'twenty-seven thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(8458, 9583, 'nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(8459, 74362, 'seventy-four thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(8460, 18952, 'eighteen thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(8461, 78973, 'seventy-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(8462, 84630, 'eighty-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(8463, 90779, 'ninety thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(8464, 40841, 'forty thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(8465, 17142, 'seventeen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(8466, 92416, 'ninety-two thousand four hundred sixteen');\nINSERT INTO t2 VALUES(8467, 72365, 'seventy-two thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(8468, 33423, 'thirty-three thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(8469, 336, 'three hundred thirty-six');\nINSERT INTO t2 VALUES(8470, 99184, 'ninety-nine thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(8471, 59078, 'fifty-nine thousand seventy-eight');\nINSERT INTO t2 VALUES(8472, 49452, 'forty-nine thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(8473, 95896, 'ninety-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(8474, 51552, 'fifty-one thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(8475, 69558, 'sixty-nine thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(8476, 12738, 'twelve thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(8477, 19046, 'nineteen thousand forty-six');\nINSERT INTO t2 VALUES(8478, 76213, 'seventy-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(8479, 48274, 'forty-eight thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(8480, 15545, 'fifteen thousand five hundred forty-five');\nINSERT INTO t2 VALUES(8481, 61304, 'sixty-one thousand three hundred four');\nINSERT INTO t2 VALUES(8482, 94968, 'ninety-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(8483, 19481, 'nineteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(8484, 93482, 'ninety-three thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(8485, 6179, 'six thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(8486, 43347, 'forty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(8487, 77653, 'seventy-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(8488, 20406, 'twenty thousand four hundred six');\nINSERT INTO t2 VALUES(8489, 62035, 'sixty-two thousand thirty-five');\nINSERT INTO t2 VALUES(8490, 90587, 'ninety thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(8491, 2946, 'two thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8492, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t2 VALUES(8493, 10132, 'ten thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(8494, 77462, 'seventy-seven thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(8495, 58595, 'fifty-eight thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(8496, 79911, 'seventy-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(8497, 25078, 'twenty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(8498, 9200, 'nine thousand two hundred');\nINSERT INTO t2 VALUES(8499, 60512, 'sixty thousand five hundred twelve');\nINSERT INTO t2 VALUES(8500, 96701, 'ninety-six thousand seven hundred one');\nINSERT INTO t2 VALUES(8501, 72934, 'seventy-two thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(8502, 34124, 'thirty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(8503, 95356, 'ninety-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(8504, 69879, 'sixty-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(8505, 71591, 'seventy-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(8506, 44776, 'forty-four thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(8507, 6508, 'six thousand five hundred eight');\nINSERT INTO t2 VALUES(8508, 36488, 'thirty-six thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(8509, 12847, 'twelve thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(8510, 74853, 'seventy-four thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(8511, 84745, 'eighty-four thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8512, 80531, 'eighty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(8513, 94078, 'ninety-four thousand seventy-eight');\nINSERT INTO t2 VALUES(8514, 93822, 'ninety-three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(8515, 88476, 'eighty-eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(8516, 84245, 'eighty-four thousand two hundred forty-five');\nINSERT INTO t2 VALUES(8517, 84395, 'eighty-four thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(8518, 2007, 'two thousand seven');\nINSERT INTO t2 VALUES(8519, 70123, 'seventy thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(8520, 3056, 'three thousand fifty-six');\nINSERT INTO t2 VALUES(8521, 10942, 'ten thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(8522, 10013, 'ten thousand thirteen');\nINSERT INTO t2 VALUES(8523, 61214, 'sixty-one thousand two hundred fourteen');\nINSERT INTO t2 VALUES(8524, 54374, 'fifty-four thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(8525, 43644, 'forty-three thousand six hundred forty-four');\nINSERT INTO t2 VALUES(8526, 69136, 'sixty-nine thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(8527, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(8528, 40148, 'forty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(8529, 67790, 'sixty-seven thousand seven hundred ninety');\nINSERT INTO t2 VALUES(8530, 91834, 'ninety-one thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(8531, 35669, 'thirty-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(8532, 35187, 'thirty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8533, 2047, 'two thousand forty-seven');\nINSERT INTO t2 VALUES(8534, 10640, 'ten thousand six hundred forty');\nINSERT INTO t2 VALUES(8535, 92444, 'ninety-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(8536, 5582, 'five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(8537, 25235, 'twenty-five thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(8538, 51952, 'fifty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(8539, 17616, 'seventeen thousand six hundred sixteen');\nINSERT INTO t2 VALUES(8540, 71144, 'seventy-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(8541, 16618, 'sixteen thousand six hundred eighteen');\nINSERT INTO t2 VALUES(8542, 18205, 'eighteen thousand two hundred five');\nINSERT INTO t2 VALUES(8543, 80186, 'eighty thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(8544, 61942, 'sixty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(8545, 61044, 'sixty-one thousand forty-four');\nINSERT INTO t2 VALUES(8546, 27629, 'twenty-seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(8547, 21920, 'twenty-one thousand nine hundred twenty');\nINSERT INTO t2 VALUES(8548, 18074, 'eighteen thousand seventy-four');\nINSERT INTO t2 VALUES(8549, 77500, 'seventy-seven thousand five hundred');\nINSERT INTO t2 VALUES(8550, 7506, 'seven thousand five hundred six');\nINSERT INTO t2 VALUES(8551, 1172, 'one thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8552, 82477, 'eighty-two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(8553, 53691, 'fifty-three thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(8554, 72027, 'seventy-two thousand twenty-seven');\nINSERT INTO t2 VALUES(8555, 31763, 'thirty-one thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(8556, 35087, 'thirty-five thousand eighty-seven');\nINSERT INTO t2 VALUES(8557, 58296, 'fifty-eight thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(8558, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(8559, 16043, 'sixteen thousand forty-three');\nINSERT INTO t2 VALUES(8560, 76737, 'seventy-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(8561, 75570, 'seventy-five thousand five hundred seventy');\nINSERT INTO t2 VALUES(8562, 95820, 'ninety-five thousand eight hundred twenty');\nINSERT INTO t2 VALUES(8563, 45974, 'forty-five thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8564, 56270, 'fifty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(8565, 97244, 'ninety-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(8566, 85545, 'eighty-five thousand five hundred forty-five');\nINSERT INTO t2 VALUES(8567, 14500, 'fourteen thousand five hundred');\nINSERT INTO t2 VALUES(8568, 53416, 'fifty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(8569, 81913, 'eighty-one thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(8570, 82487, 'eighty-two thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(8571, 50845, 'fifty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(8572, 57160, 'fifty-seven thousand one hundred sixty');\nINSERT INTO t2 VALUES(8573, 29717, 'twenty-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(8574, 76, 'seventy-six');\nINSERT INTO t2 VALUES(8575, 55307, 'fifty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(8576, 48259, 'forty-eight thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(8577, 17068, 'seventeen thousand sixty-eight');\nINSERT INTO t2 VALUES(8578, 50442, 'fifty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(8579, 48056, 'forty-eight thousand fifty-six');\nINSERT INTO t2 VALUES(8580, 99483, 'ninety-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(8581, 233, 'two hundred thirty-three');\nINSERT INTO t2 VALUES(8582, 24262, 'twenty-four thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(8583, 7703, 'seven thousand seven hundred three');\nINSERT INTO t2 VALUES(8584, 48131, 'forty-eight thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(8585, 76997, 'seventy-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(8586, 25102, 'twenty-five thousand one hundred two');\nINSERT INTO t2 VALUES(8587, 74011, 'seventy-four thousand eleven');\nINSERT INTO t2 VALUES(8588, 29487, 'twenty-nine thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(8589, 54798, 'fifty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(8590, 42449, 'forty-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(8591, 49835, 'forty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(8592, 48213, 'forty-eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(8593, 70699, 'seventy thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(8594, 77261, 'seventy-seven thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(8595, 28770, 'twenty-eight thousand seven hundred seventy');\nINSERT INTO t2 VALUES(8596, 78418, 'seventy-eight thousand four hundred eighteen');\nINSERT INTO t2 VALUES(8597, 1713, 'one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(8598, 18612, 'eighteen thousand six hundred twelve');\nINSERT INTO t2 VALUES(8599, 86638, 'eighty-six thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(8600, 45093, 'forty-five thousand ninety-three');\nINSERT INTO t2 VALUES(8601, 47829, 'forty-seven thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(8602, 95589, 'ninety-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(8603, 13318, 'thirteen thousand three hundred eighteen');\nINSERT INTO t2 VALUES(8604, 96785, 'ninety-six thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(8605, 2152, 'two thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(8606, 45752, 'forty-five thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(8607, 12506, 'twelve thousand five hundred six');\nINSERT INTO t2 VALUES(8608, 47588, 'forty-seven thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(8609, 62692, 'sixty-two thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(8610, 26224, 'twenty-six thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(8611, 44256, 'forty-four thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(8612, 57118, 'fifty-seven thousand one hundred eighteen');\nINSERT INTO t2 VALUES(8613, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(8614, 96929, 'ninety-six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(8615, 49830, 'forty-nine thousand eight hundred thirty');\nINSERT INTO t2 VALUES(8616, 21745, 'twenty-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8617, 79088, 'seventy-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(8618, 76255, 'seventy-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(8619, 61846, 'sixty-one thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(8620, 84031, 'eighty-four thousand thirty-one');\nINSERT INTO t2 VALUES(8621, 45812, 'forty-five thousand eight hundred twelve');\nINSERT INTO t2 VALUES(8622, 62552, 'sixty-two thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(8623, 2926, 'two thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(8624, 50694, 'fifty thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(8625, 16077, 'sixteen thousand seventy-seven');\nINSERT INTO t2 VALUES(8626, 46748, 'forty-six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(8627, 30989, 'thirty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(8628, 63812, 'sixty-three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(8629, 89220, 'eighty-nine thousand two hundred twenty');\nINSERT INTO t2 VALUES(8630, 48440, 'forty-eight thousand four hundred forty');\nINSERT INTO t2 VALUES(8631, 37696, 'thirty-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(8632, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(8633, 26063, 'twenty-six thousand sixty-three');\nINSERT INTO t2 VALUES(8634, 26615, 'twenty-six thousand six hundred fifteen');\nINSERT INTO t2 VALUES(8635, 7384, 'seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(8636, 77258, 'seventy-seven thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(8637, 95407, 'ninety-five thousand four hundred seven');\nINSERT INTO t2 VALUES(8638, 68228, 'sixty-eight thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(8639, 34816, 'thirty-four thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(8640, 89065, 'eighty-nine thousand sixty-five');\nINSERT INTO t2 VALUES(8641, 45247, 'forty-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(8642, 92187, 'ninety-two thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8643, 27567, 'twenty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(8644, 16730, 'sixteen thousand seven hundred thirty');\nINSERT INTO t2 VALUES(8645, 13930, 'thirteen thousand nine hundred thirty');\nINSERT INTO t2 VALUES(8646, 23266, 'twenty-three thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8647, 56009, 'fifty-six thousand nine');\nINSERT INTO t2 VALUES(8648, 34112, 'thirty-four thousand one hundred twelve');\nINSERT INTO t2 VALUES(8649, 83188, 'eighty-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(8650, 72338, 'seventy-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(8651, 17468, 'seventeen thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(8652, 45092, 'forty-five thousand ninety-two');\nINSERT INTO t2 VALUES(8653, 94057, 'ninety-four thousand fifty-seven');\nINSERT INTO t2 VALUES(8654, 83202, 'eighty-three thousand two hundred two');\nINSERT INTO t2 VALUES(8655, 92984, 'ninety-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(8656, 77442, 'seventy-seven thousand four hundred forty-two');\nINSERT INTO t2 VALUES(8657, 22530, 'twenty-two thousand five hundred thirty');\nINSERT INTO t2 VALUES(8658, 90172, 'ninety thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8659, 58338, 'fifty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(8660, 80604, 'eighty thousand six hundred four');\nINSERT INTO t2 VALUES(8661, 89556, 'eighty-nine thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(8662, 17999, 'seventeen thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(8663, 45559, 'forty-five thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(8664, 11687, 'eleven thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(8665, 36697, 'thirty-six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(8666, 33682, 'thirty-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(8667, 13180, 'thirteen thousand one hundred eighty');\nINSERT INTO t2 VALUES(8668, 34928, 'thirty-four thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(8669, 17627, 'seventeen thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(8670, 20085, 'twenty thousand eighty-five');\nINSERT INTO t2 VALUES(8671, 86689, 'eighty-six thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(8672, 17955, 'seventeen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(8673, 19842, 'nineteen thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(8674, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(8675, 53152, 'fifty-three thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(8676, 81107, 'eighty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(8677, 35428, 'thirty-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(8678, 72530, 'seventy-two thousand five hundred thirty');\nINSERT INTO t2 VALUES(8679, 43305, 'forty-three thousand three hundred five');\nINSERT INTO t2 VALUES(8680, 2974, 'two thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8681, 48008, 'forty-eight thousand eight');\nINSERT INTO t2 VALUES(8682, 6103, 'six thousand one hundred three');\nINSERT INTO t2 VALUES(8683, 59783, 'fifty-nine thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(8684, 15411, 'fifteen thousand four hundred eleven');\nINSERT INTO t2 VALUES(8685, 2820, 'two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(8686, 83120, 'eighty-three thousand one hundred twenty');\nINSERT INTO t2 VALUES(8687, 6211, 'six thousand two hundred eleven');\nINSERT INTO t2 VALUES(8688, 92685, 'ninety-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(8689, 17114, 'seventeen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(8690, 71302, 'seventy-one thousand three hundred two');\nINSERT INTO t2 VALUES(8691, 6916, 'six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(8692, 70097, 'seventy thousand ninety-seven');\nINSERT INTO t2 VALUES(8693, 10476, 'ten thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(8694, 94509, 'ninety-four thousand five hundred nine');\nINSERT INTO t2 VALUES(8695, 19795, 'nineteen thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(8696, 56289, 'fifty-six thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8697, 28884, 'twenty-eight thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(8698, 22976, 'twenty-two thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(8699, 32841, 'thirty-two thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(8700, 21053, 'twenty-one thousand fifty-three');\nINSERT INTO t2 VALUES(8701, 30033, 'thirty thousand thirty-three');\nINSERT INTO t2 VALUES(8702, 54554, 'fifty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(8703, 56229, 'fifty-six thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(8704, 45239, 'forty-five thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(8705, 54039, 'fifty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(8706, 45041, 'forty-five thousand forty-one');\nINSERT INTO t2 VALUES(8707, 28822, 'twenty-eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(8708, 94080, 'ninety-four thousand eighty');\nINSERT INTO t2 VALUES(8709, 91265, 'ninety-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(8710, 94998, 'ninety-four thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(8711, 64507, 'sixty-four thousand five hundred seven');\nINSERT INTO t2 VALUES(8712, 25414, 'twenty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(8713, 50479, 'fifty thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(8714, 55078, 'fifty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(8715, 21183, 'twenty-one thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(8716, 83990, 'eighty-three thousand nine hundred ninety');\nINSERT INTO t2 VALUES(8717, 68150, 'sixty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(8718, 87764, 'eighty-seven thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(8719, 16736, 'sixteen thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(8720, 95461, 'ninety-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8721, 81193, 'eighty-one thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8722, 17999, 'seventeen thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(8723, 44183, 'forty-four thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(8724, 35526, 'thirty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(8725, 20312, 'twenty thousand three hundred twelve');\nINSERT INTO t2 VALUES(8726, 56297, 'fifty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(8727, 35769, 'thirty-five thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(8728, 48461, 'forty-eight thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8729, 23810, 'twenty-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(8730, 74838, 'seventy-four thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(8731, 77600, 'seventy-seven thousand six hundred');\nINSERT INTO t2 VALUES(8732, 85446, 'eighty-five thousand four hundred forty-six');\nINSERT INTO t2 VALUES(8733, 1154, 'one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(8734, 18177, 'eighteen thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(8735, 3336, 'three thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(8736, 56829, 'fifty-six thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(8737, 24010, 'twenty-four thousand ten');\nINSERT INTO t2 VALUES(8738, 42910, 'forty-two thousand nine hundred ten');\nINSERT INTO t2 VALUES(8739, 8378, 'eight thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(8740, 59197, 'fifty-nine thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(8741, 91327, 'ninety-one thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(8742, 76659, 'seventy-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(8743, 36896, 'thirty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(8744, 87615, 'eighty-seven thousand six hundred fifteen');\nINSERT INTO t2 VALUES(8745, 11755, 'eleven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(8746, 79658, 'seventy-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(8747, 56728, 'fifty-six thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(8748, 32266, 'thirty-two thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8749, 6088, 'six thousand eighty-eight');\nINSERT INTO t2 VALUES(8750, 35046, 'thirty-five thousand forty-six');\nINSERT INTO t2 VALUES(8751, 19133, 'nineteen thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(8752, 81608, 'eighty-one thousand six hundred eight');\nINSERT INTO t2 VALUES(8753, 8352, 'eight thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(8754, 97987, 'ninety-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(8755, 12939, 'twelve thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(8756, 36514, 'thirty-six thousand five hundred fourteen');\nINSERT INTO t2 VALUES(8757, 41168, 'forty-one thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(8758, 39249, 'thirty-nine thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(8759, 98313, 'ninety-eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(8760, 46874, 'forty-six thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(8761, 80452, 'eighty thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(8762, 3514, 'three thousand five hundred fourteen');\nINSERT INTO t2 VALUES(8763, 31558, 'thirty-one thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(8764, 20051, 'twenty thousand fifty-one');\nINSERT INTO t2 VALUES(8765, 174, 'one hundred seventy-four');\nINSERT INTO t2 VALUES(8766, 26461, 'twenty-six thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8767, 68367, 'sixty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(8768, 98050, 'ninety-eight thousand fifty');\nINSERT INTO t2 VALUES(8769, 96396, 'ninety-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(8770, 87274, 'eighty-seven thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(8771, 85993, 'eighty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(8772, 29446, 'twenty-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(8773, 53555, 'fifty-three thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(8774, 43621, 'forty-three thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(8775, 16216, 'sixteen thousand two hundred sixteen');\nINSERT INTO t2 VALUES(8776, 4240, 'four thousand two hundred forty');\nINSERT INTO t2 VALUES(8777, 95429, 'ninety-five thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(8778, 36099, 'thirty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(8779, 22866, 'twenty-two thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(8780, 26070, 'twenty-six thousand seventy');\nINSERT INTO t2 VALUES(8781, 15960, 'fifteen thousand nine hundred sixty');\nINSERT INTO t2 VALUES(8782, 31071, 'thirty-one thousand seventy-one');\nINSERT INTO t2 VALUES(8783, 69365, 'sixty-nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(8784, 6348, 'six thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(8785, 7231, 'seven thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(8786, 80596, 'eighty thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(8787, 62860, 'sixty-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(8788, 21329, 'twenty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(8789, 80341, 'eighty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(8790, 39607, 'thirty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(8791, 33663, 'thirty-three thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(8792, 68265, 'sixty-eight thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(8793, 48596, 'forty-eight thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(8794, 93676, 'ninety-three thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(8795, 64289, 'sixty-four thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(8796, 54742, 'fifty-four thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(8797, 25770, 'twenty-five thousand seven hundred seventy');\nINSERT INTO t2 VALUES(8798, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(8799, 24809, 'twenty-four thousand eight hundred nine');\nINSERT INTO t2 VALUES(8800, 47728, 'forty-seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(8801, 69116, 'sixty-nine thousand one hundred sixteen');\nINSERT INTO t2 VALUES(8802, 2508, 'two thousand five hundred eight');\nINSERT INTO t2 VALUES(8803, 94461, 'ninety-four thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(8804, 43526, 'forty-three thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(8805, 85148, 'eighty-five thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(8806, 68809, 'sixty-eight thousand eight hundred nine');\nINSERT INTO t2 VALUES(8807, 21229, 'twenty-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(8808, 20926, 'twenty thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(8809, 95358, 'ninety-five thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(8810, 24603, 'twenty-four thousand six hundred three');\nINSERT INTO t2 VALUES(8811, 20601, 'twenty thousand six hundred one');\nINSERT INTO t2 VALUES(8812, 21149, 'twenty-one thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(8813, 16401, 'sixteen thousand four hundred one');\nINSERT INTO t2 VALUES(8814, 36559, 'thirty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(8815, 61493, 'sixty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(8816, 92910, 'ninety-two thousand nine hundred ten');\nINSERT INTO t2 VALUES(8817, 47394, 'forty-seven thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(8818, 7008, 'seven thousand eight');\nINSERT INTO t2 VALUES(8819, 6667, 'six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(8820, 51875, 'fifty-one thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(8821, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(8822, 1291, 'one thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(8823, 92609, 'ninety-two thousand six hundred nine');\nINSERT INTO t2 VALUES(8824, 49897, 'forty-nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(8825, 19672, 'nineteen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(8826, 33905, 'thirty-three thousand nine hundred five');\nINSERT INTO t2 VALUES(8827, 25063, 'twenty-five thousand sixty-three');\nINSERT INTO t2 VALUES(8828, 26354, 'twenty-six thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(8829, 62055, 'sixty-two thousand fifty-five');\nINSERT INTO t2 VALUES(8830, 48191, 'forty-eight thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(8831, 2531, 'two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(8832, 97209, 'ninety-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(8833, 83353, 'eighty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(8834, 21619, 'twenty-one thousand six hundred nineteen');\nINSERT INTO t2 VALUES(8835, 81317, 'eighty-one thousand three hundred seventeen');\nINSERT INTO t2 VALUES(8836, 45325, 'forty-five thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(8837, 83136, 'eighty-three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(8838, 89377, 'eighty-nine thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(8839, 47721, 'forty-seven thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(8840, 6441, 'six thousand four hundred forty-one');\nINSERT INTO t2 VALUES(8841, 92087, 'ninety-two thousand eighty-seven');\nINSERT INTO t2 VALUES(8842, 10737, 'ten thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(8843, 97666, 'ninety-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(8844, 75539, 'seventy-five thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(8845, 65961, 'sixty-five thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(8846, 7786, 'seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(8847, 66364, 'sixty-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(8848, 96654, 'ninety-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(8849, 11049, 'eleven thousand forty-nine');\nINSERT INTO t2 VALUES(8850, 11569, 'eleven thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(8851, 55142, 'fifty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(8852, 85985, 'eighty-five thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(8853, 82146, 'eighty-two thousand one hundred forty-six');\nINSERT INTO t2 VALUES(8854, 13656, 'thirteen thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(8855, 10304, 'ten thousand three hundred four');\nINSERT INTO t2 VALUES(8856, 49971, 'forty-nine thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(8857, 47467, 'forty-seven thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(8858, 44903, 'forty-four thousand nine hundred three');\nINSERT INTO t2 VALUES(8859, 70403, 'seventy thousand four hundred three');\nINSERT INTO t2 VALUES(8860, 96926, 'ninety-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(8861, 44974, 'forty-four thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(8862, 51428, 'fifty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(8863, 77303, 'seventy-seven thousand three hundred three');\nINSERT INTO t2 VALUES(8864, 64539, 'sixty-four thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(8865, 8197, 'eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(8866, 46172, 'forty-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8867, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(8868, 96213, 'ninety-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(8869, 78942, 'seventy-eight thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(8870, 50775, 'fifty thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(8871, 59875, 'fifty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(8872, 25186, 'twenty-five thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(8873, 62320, 'sixty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(8874, 51320, 'fifty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(8875, 65552, 'sixty-five thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(8876, 80498, 'eighty thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(8877, 6865, 'six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(8878, 39692, 'thirty-nine thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(8879, 65024, 'sixty-five thousand twenty-four');\nINSERT INTO t2 VALUES(8880, 39564, 'thirty-nine thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(8881, 88474, 'eighty-eight thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(8882, 79744, 'seventy-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(8883, 76880, 'seventy-six thousand eight hundred eighty');\nINSERT INTO t2 VALUES(8884, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(8885, 13497, 'thirteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(8886, 68912, 'sixty-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(8887, 58536, 'fifty-eight thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(8888, 49032, 'forty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(8889, 91048, 'ninety-one thousand forty-eight');\nINSERT INTO t2 VALUES(8890, 27109, 'twenty-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(8891, 62303, 'sixty-two thousand three hundred three');\nINSERT INTO t2 VALUES(8892, 46713, 'forty-six thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(8893, 29509, 'twenty-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(8894, 97802, 'ninety-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(8895, 44556, 'forty-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(8896, 5497, 'five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(8897, 25520, 'twenty-five thousand five hundred twenty');\nINSERT INTO t2 VALUES(8898, 59553, 'fifty-nine thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(8899, 47547, 'forty-seven thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(8900, 98328, 'ninety-eight thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(8901, 43350, 'forty-three thousand three hundred fifty');\nINSERT INTO t2 VALUES(8902, 70041, 'seventy thousand forty-one');\nINSERT INTO t2 VALUES(8903, 46790, 'forty-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(8904, 63700, 'sixty-three thousand seven hundred');\nINSERT INTO t2 VALUES(8905, 1874, 'one thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(8906, 76509, 'seventy-six thousand five hundred nine');\nINSERT INTO t2 VALUES(8907, 11677, 'eleven thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(8908, 9172, 'nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(8909, 97636, 'ninety-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(8910, 43749, 'forty-three thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(8911, 40142, 'forty thousand one hundred forty-two');\nINSERT INTO t2 VALUES(8912, 84893, 'eighty-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(8913, 69096, 'sixty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(8914, 21742, 'twenty-one thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(8915, 2143, 'two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(8916, 5636, 'five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(8917, 35218, 'thirty-five thousand two hundred eighteen');\nINSERT INTO t2 VALUES(8918, 54891, 'fifty-four thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(8919, 84106, 'eighty-four thousand one hundred six');\nINSERT INTO t2 VALUES(8920, 10062, 'ten thousand sixty-two');\nINSERT INTO t2 VALUES(8921, 53287, 'fifty-three thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(8922, 29599, 'twenty-nine thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(8923, 28047, 'twenty-eight thousand forty-seven');\nINSERT INTO t2 VALUES(8924, 72747, 'seventy-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(8925, 94010, 'ninety-four thousand ten');\nINSERT INTO t2 VALUES(8926, 71607, 'seventy-one thousand six hundred seven');\nINSERT INTO t2 VALUES(8927, 58411, 'fifty-eight thousand four hundred eleven');\nINSERT INTO t2 VALUES(8928, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(8929, 2245, 'two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(8930, 94946, 'ninety-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(8931, 72192, 'seventy-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(8932, 74118, 'seventy-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(8933, 18975, 'eighteen thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(8934, 19624, 'nineteen thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(8935, 27786, 'twenty-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(8936, 66755, 'sixty-six thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(8937, 75729, 'seventy-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(8938, 16637, 'sixteen thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(8939, 8952, 'eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(8940, 50266, 'fifty thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(8941, 39453, 'thirty-nine thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(8942, 98307, 'ninety-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(8943, 52979, 'fifty-two thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(8944, 1207, 'one thousand two hundred seven');\nINSERT INTO t2 VALUES(8945, 41546, 'forty-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(8946, 45453, 'forty-five thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(8947, 59251, 'fifty-nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(8948, 6339, 'six thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(8949, 13732, 'thirteen thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(8950, 71798, 'seventy-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(8951, 14864, 'fourteen thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(8952, 56612, 'fifty-six thousand six hundred twelve');\nINSERT INTO t2 VALUES(8953, 78046, 'seventy-eight thousand forty-six');\nINSERT INTO t2 VALUES(8954, 18800, 'eighteen thousand eight hundred');\nINSERT INTO t2 VALUES(8955, 22659, 'twenty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(8956, 33144, 'thirty-three thousand one hundred forty-four');\nINSERT INTO t2 VALUES(8957, 64103, 'sixty-four thousand one hundred three');\nINSERT INTO t2 VALUES(8958, 96543, 'ninety-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(8959, 79466, 'seventy-nine thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(8960, 64542, 'sixty-four thousand five hundred forty-two');\nINSERT INTO t2 VALUES(8961, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t2 VALUES(8962, 92088, 'ninety-two thousand eighty-eight');\nINSERT INTO t2 VALUES(8963, 87731, 'eighty-seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(8964, 10933, 'ten thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(8965, 79658, 'seventy-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(8966, 39486, 'thirty-nine thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(8967, 27642, 'twenty-seven thousand six hundred forty-two');\nINSERT INTO t2 VALUES(8968, 18531, 'eighteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(8969, 65412, 'sixty-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(8970, 43478, 'forty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(8971, 50522, 'fifty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(8972, 74117, 'seventy-four thousand one hundred seventeen');\nINSERT INTO t2 VALUES(8973, 90745, 'ninety thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(8974, 23237, 'twenty-three thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(8975, 57047, 'fifty-seven thousand forty-seven');\nINSERT INTO t2 VALUES(8976, 1198, 'one thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(8977, 13445, 'thirteen thousand four hundred forty-five');\nINSERT INTO t2 VALUES(8978, 21928, 'twenty-one thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(8979, 65524, 'sixty-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(8980, 76433, 'seventy-six thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(8981, 27187, 'twenty-seven thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(8982, 1220, 'one thousand two hundred twenty');\nINSERT INTO t2 VALUES(8983, 65201, 'sixty-five thousand two hundred one');\nINSERT INTO t2 VALUES(8984, 33508, 'thirty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(8985, 79567, 'seventy-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(8986, 57891, 'fifty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(8987, 88043, 'eighty-eight thousand forty-three');\nINSERT INTO t2 VALUES(8988, 67273, 'sixty-seven thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(8989, 59250, 'fifty-nine thousand two hundred fifty');\nINSERT INTO t2 VALUES(8990, 16652, 'sixteen thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(8991, 8824, 'eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(8992, 71409, 'seventy-one thousand four hundred nine');\nINSERT INTO t2 VALUES(8993, 26349, 'twenty-six thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(8994, 70580, 'seventy thousand five hundred eighty');\nINSERT INTO t2 VALUES(8995, 42193, 'forty-two thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(8996, 18168, 'eighteen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(8997, 2223, 'two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(8998, 42209, 'forty-two thousand two hundred nine');\nINSERT INTO t2 VALUES(8999, 41704, 'forty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(9000, 47265, 'forty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9001, 72545, 'seventy-two thousand five hundred forty-five');\nINSERT INTO t2 VALUES(9002, 44849, 'forty-four thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(9003, 30204, 'thirty thousand two hundred four');\nINSERT INTO t2 VALUES(9004, 8644, 'eight thousand six hundred forty-four');\nINSERT INTO t2 VALUES(9005, 98294, 'ninety-eight thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(9006, 72624, 'seventy-two thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(9007, 24537, 'twenty-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(9008, 82120, 'eighty-two thousand one hundred twenty');\nINSERT INTO t2 VALUES(9009, 77601, 'seventy-seven thousand six hundred one');\nINSERT INTO t2 VALUES(9010, 75426, 'seventy-five thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(9011, 13571, 'thirteen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(9012, 15433, 'fifteen thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(9013, 87400, 'eighty-seven thousand four hundred');\nINSERT INTO t2 VALUES(9014, 70696, 'seventy thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(9015, 64448, 'sixty-four thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(9016, 5710, 'five thousand seven hundred ten');\nINSERT INTO t2 VALUES(9017, 77765, 'seventy-seven thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(9018, 14911, 'fourteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(9019, 95192, 'ninety-five thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(9020, 12800, 'twelve thousand eight hundred');\nINSERT INTO t2 VALUES(9021, 11553, 'eleven thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(9022, 20986, 'twenty thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(9023, 45636, 'forty-five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(9024, 15259, 'fifteen thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(9025, 85665, 'eighty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(9026, 94631, 'ninety-four thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(9027, 18275, 'eighteen thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(9028, 17479, 'seventeen thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(9029, 29074, 'twenty-nine thousand seventy-four');\nINSERT INTO t2 VALUES(9030, 36288, 'thirty-six thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(9031, 38724, 'thirty-eight thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(9032, 36917, 'thirty-six thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(9033, 50959, 'fifty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(9034, 40294, 'forty thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(9035, 13877, 'thirteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9036, 21680, 'twenty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(9037, 47588, 'forty-seven thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(9038, 68859, 'sixty-eight thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(9039, 1388, 'one thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(9040, 39594, 'thirty-nine thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(9041, 34961, 'thirty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(9042, 58399, 'fifty-eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(9043, 60409, 'sixty thousand four hundred nine');\nINSERT INTO t2 VALUES(9044, 92031, 'ninety-two thousand thirty-one');\nINSERT INTO t2 VALUES(9045, 81569, 'eighty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(9046, 69272, 'sixty-nine thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(9047, 63080, 'sixty-three thousand eighty');\nINSERT INTO t2 VALUES(9048, 72366, 'seventy-two thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(9049, 78403, 'seventy-eight thousand four hundred three');\nINSERT INTO t2 VALUES(9050, 74272, 'seventy-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(9051, 92504, 'ninety-two thousand five hundred four');\nINSERT INTO t2 VALUES(9052, 52040, 'fifty-two thousand forty');\nINSERT INTO t2 VALUES(9053, 16682, 'sixteen thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(9054, 84420, 'eighty-four thousand four hundred twenty');\nINSERT INTO t2 VALUES(9055, 22051, 'twenty-two thousand fifty-one');\nINSERT INTO t2 VALUES(9056, 25728, 'twenty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(9057, 9062, 'nine thousand sixty-two');\nINSERT INTO t2 VALUES(9058, 83578, 'eighty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(9059, 16698, 'sixteen thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(9060, 90904, 'ninety thousand nine hundred four');\nINSERT INTO t2 VALUES(9061, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(9062, 41489, 'forty-one thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(9063, 41463, 'forty-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(9064, 56285, 'fifty-six thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(9065, 9501, 'nine thousand five hundred one');\nINSERT INTO t2 VALUES(9066, 8798, 'eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(9067, 52952, 'fifty-two thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(9068, 19648, 'nineteen thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(9069, 46538, 'forty-six thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(9070, 84859, 'eighty-four thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(9071, 89801, 'eighty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(9072, 83337, 'eighty-three thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(9073, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t2 VALUES(9074, 41944, 'forty-one thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(9075, 28894, 'twenty-eight thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(9076, 11182, 'eleven thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9077, 4470, 'four thousand four hundred seventy');\nINSERT INTO t2 VALUES(9078, 6545, 'six thousand five hundred forty-five');\nINSERT INTO t2 VALUES(9079, 18450, 'eighteen thousand four hundred fifty');\nINSERT INTO t2 VALUES(9080, 59891, 'fifty-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(9081, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t2 VALUES(9082, 493, 'four hundred ninety-three');\nINSERT INTO t2 VALUES(9083, 51059, 'fifty-one thousand fifty-nine');\nINSERT INTO t2 VALUES(9084, 69569, 'sixty-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(9085, 48058, 'forty-eight thousand fifty-eight');\nINSERT INTO t2 VALUES(9086, 93376, 'ninety-three thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(9087, 3512, 'three thousand five hundred twelve');\nINSERT INTO t2 VALUES(9088, 34603, 'thirty-four thousand six hundred three');\nINSERT INTO t2 VALUES(9089, 37577, 'thirty-seven thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(9090, 96520, 'ninety-six thousand five hundred twenty');\nINSERT INTO t2 VALUES(9091, 94347, 'ninety-four thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(9092, 36664, 'thirty-six thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(9093, 66240, 'sixty-six thousand two hundred forty');\nINSERT INTO t2 VALUES(9094, 98725, 'ninety-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(9095, 53715, 'fifty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(9096, 3137, 'three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(9097, 44103, 'forty-four thousand one hundred three');\nINSERT INTO t2 VALUES(9098, 87368, 'eighty-seven thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(9099, 57042, 'fifty-seven thousand forty-two');\nINSERT INTO t2 VALUES(9100, 29761, 'twenty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(9101, 87985, 'eighty-seven thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(9102, 63277, 'sixty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(9103, 84961, 'eighty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(9104, 75307, 'seventy-five thousand three hundred seven');\nINSERT INTO t2 VALUES(9105, 42729, 'forty-two thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(9106, 85873, 'eighty-five thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(9107, 3983, 'three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(9108, 36607, 'thirty-six thousand six hundred seven');\nINSERT INTO t2 VALUES(9109, 55814, 'fifty-five thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(9110, 18117, 'eighteen thousand one hundred seventeen');\nINSERT INTO t2 VALUES(9111, 12887, 'twelve thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9112, 30494, 'thirty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(9113, 52338, 'fifty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9114, 80206, 'eighty thousand two hundred six');\nINSERT INTO t2 VALUES(9115, 24533, 'twenty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(9116, 44832, 'forty-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(9117, 47489, 'forty-seven thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(9118, 8504, 'eight thousand five hundred four');\nINSERT INTO t2 VALUES(9119, 47621, 'forty-seven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(9120, 10406, 'ten thousand four hundred six');\nINSERT INTO t2 VALUES(9121, 38895, 'thirty-eight thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(9122, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(9123, 35635, 'thirty-five thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(9124, 18576, 'eighteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(9125, 81105, 'eighty-one thousand one hundred five');\nINSERT INTO t2 VALUES(9126, 66310, 'sixty-six thousand three hundred ten');\nINSERT INTO t2 VALUES(9127, 55519, 'fifty-five thousand five hundred nineteen');\nINSERT INTO t2 VALUES(9128, 75799, 'seventy-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(9129, 97585, 'ninety-seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(9130, 4743, 'four thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(9131, 19892, 'nineteen thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(9132, 36848, 'thirty-six thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(9133, 58513, 'fifty-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9134, 34212, 'thirty-four thousand two hundred twelve');\nINSERT INTO t2 VALUES(9135, 66454, 'sixty-six thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(9136, 32685, 'thirty-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(9137, 29310, 'twenty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(9138, 87268, 'eighty-seven thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(9139, 45023, 'forty-five thousand twenty-three');\nINSERT INTO t2 VALUES(9140, 71538, 'seventy-one thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(9141, 96983, 'ninety-six thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(9142, 70920, 'seventy thousand nine hundred twenty');\nINSERT INTO t2 VALUES(9143, 15194, 'fifteen thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(9144, 31297, 'thirty-one thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(9145, 96061, 'ninety-six thousand sixty-one');\nINSERT INTO t2 VALUES(9146, 45673, 'forty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(9147, 13200, 'thirteen thousand two hundred');\nINSERT INTO t2 VALUES(9148, 37673, 'thirty-seven thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(9149, 21236, 'twenty-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(9150, 80021, 'eighty thousand twenty-one');\nINSERT INTO t2 VALUES(9151, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(9152, 24400, 'twenty-four thousand four hundred');\nINSERT INTO t2 VALUES(9153, 4740, 'four thousand seven hundred forty');\nINSERT INTO t2 VALUES(9154, 68401, 'sixty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(9155, 63470, 'sixty-three thousand four hundred seventy');\nINSERT INTO t2 VALUES(9156, 13977, 'thirteen thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(9157, 14138, 'fourteen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(9158, 30075, 'thirty thousand seventy-five');\nINSERT INTO t2 VALUES(9159, 7684, 'seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(9160, 37382, 'thirty-seven thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(9161, 51074, 'fifty-one thousand seventy-four');\nINSERT INTO t2 VALUES(9162, 32413, 'thirty-two thousand four hundred thirteen');\nINSERT INTO t2 VALUES(9163, 95519, 'ninety-five thousand five hundred nineteen');\nINSERT INTO t2 VALUES(9164, 81342, 'eighty-one thousand three hundred forty-two');\nINSERT INTO t2 VALUES(9165, 83870, 'eighty-three thousand eight hundred seventy');\nINSERT INTO t2 VALUES(9166, 97186, 'ninety-seven thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(9167, 28563, 'twenty-eight thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(9168, 55274, 'fifty-five thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(9169, 66171, 'sixty-six thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(9170, 51477, 'fifty-one thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(9171, 85345, 'eighty-five thousand three hundred forty-five');\nINSERT INTO t2 VALUES(9172, 17918, 'seventeen thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(9173, 3711, 'three thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9174, 65063, 'sixty-five thousand sixty-three');\nINSERT INTO t2 VALUES(9175, 77979, 'seventy-seven thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(9176, 74922, 'seventy-four thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(9177, 35549, 'thirty-five thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(9178, 17908, 'seventeen thousand nine hundred eight');\nINSERT INTO t2 VALUES(9179, 40312, 'forty thousand three hundred twelve');\nINSERT INTO t2 VALUES(9180, 57888, 'fifty-seven thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(9181, 94800, 'ninety-four thousand eight hundred');\nINSERT INTO t2 VALUES(9182, 88574, 'eighty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(9183, 49016, 'forty-nine thousand sixteen');\nINSERT INTO t2 VALUES(9184, 23742, 'twenty-three thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(9185, 86656, 'eighty-six thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(9186, 50749, 'fifty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(9187, 12446, 'twelve thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9188, 98024, 'ninety-eight thousand twenty-four');\nINSERT INTO t2 VALUES(9189, 57253, 'fifty-seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(9190, 69315, 'sixty-nine thousand three hundred fifteen');\nINSERT INTO t2 VALUES(9191, 92635, 'ninety-two thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(9192, 19044, 'nineteen thousand forty-four');\nINSERT INTO t2 VALUES(9193, 50229, 'fifty thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(9194, 7691, 'seven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(9195, 31349, 'thirty-one thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(9196, 21118, 'twenty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(9197, 97045, 'ninety-seven thousand forty-five');\nINSERT INTO t2 VALUES(9198, 5454, 'five thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(9199, 68766, 'sixty-eight thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(9200, 50406, 'fifty thousand four hundred six');\nINSERT INTO t2 VALUES(9201, 92867, 'ninety-two thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(9202, 18343, 'eighteen thousand three hundred forty-three');\nINSERT INTO t2 VALUES(9203, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(9204, 39519, 'thirty-nine thousand five hundred nineteen');\nINSERT INTO t2 VALUES(9205, 91687, 'ninety-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(9206, 30626, 'thirty thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(9207, 77896, 'seventy-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(9208, 5713, 'five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(9209, 70211, 'seventy thousand two hundred eleven');\nINSERT INTO t2 VALUES(9210, 52132, 'fifty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(9211, 71921, 'seventy-one thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(9212, 85753, 'eighty-five thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(9213, 22211, 'twenty-two thousand two hundred eleven');\nINSERT INTO t2 VALUES(9214, 14714, 'fourteen thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(9215, 47957, 'forty-seven thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(9216, 67867, 'sixty-seven thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(9217, 4372, 'four thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(9218, 3134, 'three thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(9219, 38687, 'thirty-eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(9220, 4799, 'four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(9221, 38295, 'thirty-eight thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(9222, 70443, 'seventy thousand four hundred forty-three');\nINSERT INTO t2 VALUES(9223, 33871, 'thirty-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(9224, 45367, 'forty-five thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(9225, 81287, 'eighty-one thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(9226, 73414, 'seventy-three thousand four hundred fourteen');\nINSERT INTO t2 VALUES(9227, 73746, 'seventy-three thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(9228, 7579, 'seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(9229, 42253, 'forty-two thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(9230, 19213, 'nineteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(9231, 79120, 'seventy-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(9232, 17001, 'seventeen thousand one');\nINSERT INTO t2 VALUES(9233, 82992, 'eighty-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(9234, 39801, 'thirty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(9235, 39907, 'thirty-nine thousand nine hundred seven');\nINSERT INTO t2 VALUES(9236, 97892, 'ninety-seven thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(9237, 51197, 'fifty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9238, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(9239, 87649, 'eighty-seven thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(9240, 90576, 'ninety thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(9241, 26048, 'twenty-six thousand forty-eight');\nINSERT INTO t2 VALUES(9242, 76114, 'seventy-six thousand one hundred fourteen');\nINSERT INTO t2 VALUES(9243, 58204, 'fifty-eight thousand two hundred four');\nINSERT INTO t2 VALUES(9244, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(9245, 86470, 'eighty-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(9246, 78258, 'seventy-eight thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(9247, 11347, 'eleven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(9248, 26374, 'twenty-six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(9249, 96647, 'ninety-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(9250, 95816, 'ninety-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(9251, 27239, 'twenty-seven thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9252, 22610, 'twenty-two thousand six hundred ten');\nINSERT INTO t2 VALUES(9253, 44620, 'forty-four thousand six hundred twenty');\nINSERT INTO t2 VALUES(9254, 26021, 'twenty-six thousand twenty-one');\nINSERT INTO t2 VALUES(9255, 24197, 'twenty-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9256, 42183, 'forty-two thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(9257, 72526, 'seventy-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(9258, 35207, 'thirty-five thousand two hundred seven');\nINSERT INTO t2 VALUES(9259, 92524, 'ninety-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(9260, 95185, 'ninety-five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(9261, 38071, 'thirty-eight thousand seventy-one');\nINSERT INTO t2 VALUES(9262, 9049, 'nine thousand forty-nine');\nINSERT INTO t2 VALUES(9263, 47693, 'forty-seven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(9264, 83846, 'eighty-three thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(9265, 11549, 'eleven thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(9266, 36414, 'thirty-six thousand four hundred fourteen');\nINSERT INTO t2 VALUES(9267, 78632, 'seventy-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(9268, 33438, 'thirty-three thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(9269, 50465, 'fifty thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(9270, 64075, 'sixty-four thousand seventy-five');\nINSERT INTO t2 VALUES(9271, 99695, 'ninety-nine thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(9272, 83342, 'eighty-three thousand three hundred forty-two');\nINSERT INTO t2 VALUES(9273, 6498, 'six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(9274, 25008, 'twenty-five thousand eight');\nINSERT INTO t2 VALUES(9275, 56233, 'fifty-six thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(9276, 61233, 'sixty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(9277, 52338, 'fifty-two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9278, 65044, 'sixty-five thousand forty-four');\nINSERT INTO t2 VALUES(9279, 13969, 'thirteen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(9280, 98431, 'ninety-eight thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(9281, 60655, 'sixty thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(9282, 78662, 'seventy-eight thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(9283, 19926, 'nineteen thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(9284, 40295, 'forty thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(9285, 73494, 'seventy-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(9286, 47895, 'forty-seven thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(9287, 74753, 'seventy-four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(9288, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9289, 15540, 'fifteen thousand five hundred forty');\nINSERT INTO t2 VALUES(9290, 62565, 'sixty-two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(9291, 67677, 'sixty-seven thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(9292, 78102, 'seventy-eight thousand one hundred two');\nINSERT INTO t2 VALUES(9293, 11197, 'eleven thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9294, 35893, 'thirty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(9295, 7969, 'seven thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(9296, 24802, 'twenty-four thousand eight hundred two');\nINSERT INTO t2 VALUES(9297, 48936, 'forty-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(9298, 5711, 'five thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9299, 63335, 'sixty-three thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(9300, 92230, 'ninety-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(9301, 71216, 'seventy-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(9302, 40874, 'forty thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(9303, 4409, 'four thousand four hundred nine');\nINSERT INTO t2 VALUES(9304, 1767, 'one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(9305, 25589, 'twenty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(9306, 33929, 'thirty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(9307, 12472, 'twelve thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(9308, 80058, 'eighty thousand fifty-eight');\nINSERT INTO t2 VALUES(9309, 21499, 'twenty-one thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(9310, 34393, 'thirty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(9311, 98529, 'ninety-eight thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(9312, 27375, 'twenty-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(9313, 83557, 'eighty-three thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(9314, 33473, 'thirty-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(9315, 10352, 'ten thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(9316, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9317, 10750, 'ten thousand seven hundred fifty');\nINSERT INTO t2 VALUES(9318, 42903, 'forty-two thousand nine hundred three');\nINSERT INTO t2 VALUES(9319, 60628, 'sixty thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(9320, 82460, 'eighty-two thousand four hundred sixty');\nINSERT INTO t2 VALUES(9321, 41144, 'forty-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(9322, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(9323, 39817, 'thirty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(9324, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9325, 68058, 'sixty-eight thousand fifty-eight');\nINSERT INTO t2 VALUES(9326, 23224, 'twenty-three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(9327, 6304, 'six thousand three hundred four');\nINSERT INTO t2 VALUES(9328, 31083, 'thirty-one thousand eighty-three');\nINSERT INTO t2 VALUES(9329, 87939, 'eighty-seven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(9330, 38949, 'thirty-eight thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(9331, 26294, 'twenty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(9332, 34191, 'thirty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(9333, 80000, 'eighty thousand');\nINSERT INTO t2 VALUES(9334, 16885, 'sixteen thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(9335, 96173, 'ninety-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(9336, 68596, 'sixty-eight thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(9337, 72711, 'seventy-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9338, 71545, 'seventy-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(9339, 61996, 'sixty-one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(9340, 68801, 'sixty-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(9341, 26792, 'twenty-six thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(9342, 73947, 'seventy-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(9343, 14713, 'fourteen thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(9344, 79149, 'seventy-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(9345, 10711, 'ten thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9346, 42410, 'forty-two thousand four hundred ten');\nINSERT INTO t2 VALUES(9347, 27736, 'twenty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(9348, 48017, 'forty-eight thousand seventeen');\nINSERT INTO t2 VALUES(9349, 14655, 'fourteen thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(9350, 37513, 'thirty-seven thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9351, 56325, 'fifty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(9352, 36251, 'thirty-six thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(9353, 84050, 'eighty-four thousand fifty');\nINSERT INTO t2 VALUES(9354, 99886, 'ninety-nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(9355, 36997, 'thirty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(9356, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(9357, 99736, 'ninety-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(9358, 20499, 'twenty thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(9359, 70636, 'seventy thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(9360, 55045, 'fifty-five thousand forty-five');\nINSERT INTO t2 VALUES(9361, 83284, 'eighty-three thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(9362, 95381, 'ninety-five thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(9363, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(9364, 35334, 'thirty-five thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(9365, 98581, 'ninety-eight thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(9366, 74836, 'seventy-four thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(9367, 31911, 'thirty-one thousand nine hundred eleven');\nINSERT INTO t2 VALUES(9368, 83550, 'eighty-three thousand five hundred fifty');\nINSERT INTO t2 VALUES(9369, 59749, 'fifty-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(9370, 22048, 'twenty-two thousand forty-eight');\nINSERT INTO t2 VALUES(9371, 77168, 'seventy-seven thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9372, 34265, 'thirty-four thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9373, 64598, 'sixty-four thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(9374, 56825, 'fifty-six thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(9375, 6105, 'six thousand one hundred five');\nINSERT INTO t2 VALUES(9376, 50099, 'fifty thousand ninety-nine');\nINSERT INTO t2 VALUES(9377, 7719, 'seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(9378, 78128, 'seventy-eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(9379, 29798, 'twenty-nine thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(9380, 29342, 'twenty-nine thousand three hundred forty-two');\nINSERT INTO t2 VALUES(9381, 929, 'nine hundred twenty-nine');\nINSERT INTO t2 VALUES(9382, 75085, 'seventy-five thousand eighty-five');\nINSERT INTO t2 VALUES(9383, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(9384, 42080, 'forty-two thousand eighty');\nINSERT INTO t2 VALUES(9385, 96706, 'ninety-six thousand seven hundred six');\nINSERT INTO t2 VALUES(9386, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(9387, 56614, 'fifty-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(9388, 8128, 'eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(9389, 47893, 'forty-seven thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(9390, 21491, 'twenty-one thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(9391, 98349, 'ninety-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(9392, 2600, 'two thousand six hundred');\nINSERT INTO t2 VALUES(9393, 62776, 'sixty-two thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(9394, 235, 'two hundred thirty-five');\nINSERT INTO t2 VALUES(9395, 24642, 'twenty-four thousand six hundred forty-two');\nINSERT INTO t2 VALUES(9396, 8573, 'eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9397, 4973, 'four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(9398, 10118, 'ten thousand one hundred eighteen');\nINSERT INTO t2 VALUES(9399, 68282, 'sixty-eight thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(9400, 25461, 'twenty-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(9401, 88512, 'eighty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(9402, 57955, 'fifty-seven thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(9403, 29978, 'twenty-nine thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(9404, 4266, 'four thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(9405, 81952, 'eighty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(9406, 80372, 'eighty thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(9407, 41591, 'forty-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(9408, 32117, 'thirty-two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(9409, 8638, 'eight thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(9410, 3751, 'three thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(9411, 96206, 'ninety-six thousand two hundred six');\nINSERT INTO t2 VALUES(9412, 12973, 'twelve thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(9413, 26453, 'twenty-six thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(9414, 77494, 'seventy-seven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(9415, 55029, 'fifty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(9416, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t2 VALUES(9417, 64801, 'sixty-four thousand eight hundred one');\nINSERT INTO t2 VALUES(9418, 31111, 'thirty-one thousand one hundred eleven');\nINSERT INTO t2 VALUES(9419, 13869, 'thirteen thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(9420, 59804, 'fifty-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(9421, 99583, 'ninety-nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(9422, 94327, 'ninety-four thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(9423, 88312, 'eighty-eight thousand three hundred twelve');\nINSERT INTO t2 VALUES(9424, 75793, 'seventy-five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(9425, 98157, 'ninety-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(9426, 65820, 'sixty-five thousand eight hundred twenty');\nINSERT INTO t2 VALUES(9427, 92481, 'ninety-two thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(9428, 76234, 'seventy-six thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(9429, 96895, 'ninety-six thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(9430, 81425, 'eighty-one thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(9431, 62758, 'sixty-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(9432, 37220, 'thirty-seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(9433, 26325, 'twenty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(9434, 8769, 'eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(9435, 46716, 'forty-six thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(9436, 6459, 'six thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(9437, 21174, 'twenty-one thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(9438, 92097, 'ninety-two thousand ninety-seven');\nINSERT INTO t2 VALUES(9439, 16150, 'sixteen thousand one hundred fifty');\nINSERT INTO t2 VALUES(9440, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t2 VALUES(9441, 71836, 'seventy-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(9442, 65805, 'sixty-five thousand eight hundred five');\nINSERT INTO t2 VALUES(9443, 84411, 'eighty-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(9444, 97540, 'ninety-seven thousand five hundred forty');\nINSERT INTO t2 VALUES(9445, 74195, 'seventy-four thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(9446, 52156, 'fifty-two thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(9447, 35694, 'thirty-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(9448, 51467, 'fifty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(9449, 34703, 'thirty-four thousand seven hundred three');\nINSERT INTO t2 VALUES(9450, 13358, 'thirteen thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(9451, 82038, 'eighty-two thousand thirty-eight');\nINSERT INTO t2 VALUES(9452, 38386, 'thirty-eight thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(9453, 3177, 'three thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(9454, 43645, 'forty-three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(9455, 99522, 'ninety-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(9456, 20315, 'twenty thousand three hundred fifteen');\nINSERT INTO t2 VALUES(9457, 1802, 'one thousand eight hundred two');\nINSERT INTO t2 VALUES(9458, 49795, 'forty-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(9459, 35616, 'thirty-five thousand six hundred sixteen');\nINSERT INTO t2 VALUES(9460, 71746, 'seventy-one thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(9461, 74082, 'seventy-four thousand eighty-two');\nINSERT INTO t2 VALUES(9462, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(9463, 63345, 'sixty-three thousand three hundred forty-five');\nINSERT INTO t2 VALUES(9464, 44605, 'forty-four thousand six hundred five');\nINSERT INTO t2 VALUES(9465, 8098, 'eight thousand ninety-eight');\nINSERT INTO t2 VALUES(9466, 41926, 'forty-one thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(9467, 37074, 'thirty-seven thousand seventy-four');\nINSERT INTO t2 VALUES(9468, 70002, 'seventy thousand two');\nINSERT INTO t2 VALUES(9469, 17521, 'seventeen thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(9470, 58169, 'fifty-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(9471, 83810, 'eighty-three thousand eight hundred ten');\nINSERT INTO t2 VALUES(9472, 89578, 'eighty-nine thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(9473, 71207, 'seventy-one thousand two hundred seven');\nINSERT INTO t2 VALUES(9474, 97719, 'ninety-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(9475, 17989, 'seventeen thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(9476, 39086, 'thirty-nine thousand eighty-six');\nINSERT INTO t2 VALUES(9477, 17877, 'seventeen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9478, 38203, 'thirty-eight thousand two hundred three');\nINSERT INTO t2 VALUES(9479, 19397, 'nineteen thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(9480, 20033, 'twenty thousand thirty-three');\nINSERT INTO t2 VALUES(9481, 71427, 'seventy-one thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(9482, 25944, 'twenty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(9483, 54851, 'fifty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9484, 37141, 'thirty-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(9485, 29557, 'twenty-nine thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(9486, 11738, 'eleven thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(9487, 85734, 'eighty-five thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(9488, 63877, 'sixty-three thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9489, 58775, 'fifty-eight thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(9490, 30173, 'thirty thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(9491, 49119, 'forty-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(9492, 33005, 'thirty-three thousand five');\nINSERT INTO t2 VALUES(9493, 83050, 'eighty-three thousand fifty');\nINSERT INTO t2 VALUES(9494, 47003, 'forty-seven thousand three');\nINSERT INTO t2 VALUES(9495, 58182, 'fifty-eight thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9496, 21381, 'twenty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(9497, 45927, 'forty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(9498, 43288, 'forty-three thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(9499, 40391, 'forty thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(9500, 72427, 'seventy-two thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(9501, 30415, 'thirty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(9502, 30057, 'thirty thousand fifty-seven');\nINSERT INTO t2 VALUES(9503, 47369, 'forty-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9504, 32613, 'thirty-two thousand six hundred thirteen');\nINSERT INTO t2 VALUES(9505, 27530, 'twenty-seven thousand five hundred thirty');\nINSERT INTO t2 VALUES(9506, 93003, 'ninety-three thousand three');\nINSERT INTO t2 VALUES(9507, 51684, 'fifty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(9508, 82316, 'eighty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(9509, 30442, 'thirty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(9510, 8476, 'eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(9511, 74375, 'seventy-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(9512, 42314, 'forty-two thousand three hundred fourteen');\nINSERT INTO t2 VALUES(9513, 79144, 'seventy-nine thousand one hundred forty-four');\nINSERT INTO t2 VALUES(9514, 78205, 'seventy-eight thousand two hundred five');\nINSERT INTO t2 VALUES(9515, 44246, 'forty-four thousand two hundred forty-six');\nINSERT INTO t2 VALUES(9516, 13712, 'thirteen thousand seven hundred twelve');\nINSERT INTO t2 VALUES(9517, 71308, 'seventy-one thousand three hundred eight');\nINSERT INTO t2 VALUES(9518, 85869, 'eighty-five thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(9519, 94064, 'ninety-four thousand sixty-four');\nINSERT INTO t2 VALUES(9520, 36711, 'thirty-six thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9521, 9489, 'nine thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(9522, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9523, 18452, 'eighteen thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(9524, 74370, 'seventy-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(9525, 58042, 'fifty-eight thousand forty-two');\nINSERT INTO t2 VALUES(9526, 63639, 'sixty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(9527, 1474, 'one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(9528, 32040, 'thirty-two thousand forty');\nINSERT INTO t2 VALUES(9529, 72021, 'seventy-two thousand twenty-one');\nINSERT INTO t2 VALUES(9530, 54244, 'fifty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(9531, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(9532, 42751, 'forty-two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(9533, 23841, 'twenty-three thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(9534, 47028, 'forty-seven thousand twenty-eight');\nINSERT INTO t2 VALUES(9535, 39364, 'thirty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(9536, 16957, 'sixteen thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(9537, 26435, 'twenty-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(9538, 57264, 'fifty-seven thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(9539, 15807, 'fifteen thousand eight hundred seven');\nINSERT INTO t2 VALUES(9540, 88338, 'eighty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(9541, 79107, 'seventy-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(9542, 10166, 'ten thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(9543, 18201, 'eighteen thousand two hundred one');\nINSERT INTO t2 VALUES(9544, 68522, 'sixty-eight thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(9545, 2822, 'two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(9546, 5756, 'five thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(9547, 71527, 'seventy-one thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(9548, 82622, 'eighty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(9549, 82385, 'eighty-two thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(9550, 95123, 'ninety-five thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(9551, 28331, 'twenty-eight thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(9552, 21298, 'twenty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(9553, 63107, 'sixty-three thousand one hundred seven');\nINSERT INTO t2 VALUES(9554, 89693, 'eighty-nine thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(9555, 63053, 'sixty-three thousand fifty-three');\nINSERT INTO t2 VALUES(9556, 77658, 'seventy-seven thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(9557, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(9558, 7231, 'seven thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(9559, 97234, 'ninety-seven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(9560, 61062, 'sixty-one thousand sixty-two');\nINSERT INTO t2 VALUES(9561, 78573, 'seventy-eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9562, 44875, 'forty-four thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(9563, 4498, 'four thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(9564, 63052, 'sixty-three thousand fifty-two');\nINSERT INTO t2 VALUES(9565, 31595, 'thirty-one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(9566, 18072, 'eighteen thousand seventy-two');\nINSERT INTO t2 VALUES(9567, 64680, 'sixty-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(9568, 19117, 'nineteen thousand one hundred seventeen');\nINSERT INTO t2 VALUES(9569, 80586, 'eighty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(9570, 28520, 'twenty-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(9571, 83391, 'eighty-three thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(9572, 74098, 'seventy-four thousand ninety-eight');\nINSERT INTO t2 VALUES(9573, 69761, 'sixty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(9574, 93558, 'ninety-three thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(9575, 43576, 'forty-three thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(9576, 71034, 'seventy-one thousand thirty-four');\nINSERT INTO t2 VALUES(9577, 4764, 'four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(9578, 19011, 'nineteen thousand eleven');\nINSERT INTO t2 VALUES(9579, 18241, 'eighteen thousand two hundred forty-one');\nINSERT INTO t2 VALUES(9580, 53064, 'fifty-three thousand sixty-four');\nINSERT INTO t2 VALUES(9581, 97427, 'ninety-seven thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(9582, 38042, 'thirty-eight thousand forty-two');\nINSERT INTO t2 VALUES(9583, 18513, 'eighteen thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9584, 76654, 'seventy-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(9585, 2036, 'two thousand thirty-six');\nINSERT INTO t2 VALUES(9586, 36887, 'thirty-six thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9587, 11745, 'eleven thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(9588, 19822, 'nineteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(9589, 38271, 'thirty-eight thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(9590, 62637, 'sixty-two thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(9591, 45137, 'forty-five thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(9592, 11251, 'eleven thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(9593, 49827, 'forty-nine thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(9594, 34370, 'thirty-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(9595, 5848, 'five thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(9596, 42684, 'forty-two thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(9597, 55186, 'fifty-five thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(9598, 76470, 'seventy-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(9599, 71701, 'seventy-one thousand seven hundred one');\nINSERT INTO t2 VALUES(9600, 37517, 'thirty-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(9601, 6431, 'six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(9602, 9515, 'nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(9603, 65573, 'sixty-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9604, 38146, 'thirty-eight thousand one hundred forty-six');\nINSERT INTO t2 VALUES(9605, 36234, 'thirty-six thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(9606, 58725, 'fifty-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(9607, 79791, 'seventy-nine thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(9608, 93627, 'ninety-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(9609, 47049, 'forty-seven thousand forty-nine');\nINSERT INTO t2 VALUES(9610, 68872, 'sixty-eight thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(9611, 83787, 'eighty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(9612, 91188, 'ninety-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(9613, 2014, 'two thousand fourteen');\nINSERT INTO t2 VALUES(9614, 44487, 'forty-four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(9615, 56038, 'fifty-six thousand thirty-eight');\nINSERT INTO t2 VALUES(9616, 82029, 'eighty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(9617, 4887, 'four thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9618, 31410, 'thirty-one thousand four hundred ten');\nINSERT INTO t2 VALUES(9619, 19337, 'nineteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(9620, 4546, 'four thousand five hundred forty-six');\nINSERT INTO t2 VALUES(9621, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9622, 58470, 'fifty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(9623, 16420, 'sixteen thousand four hundred twenty');\nINSERT INTO t2 VALUES(9624, 5149, 'five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(9625, 55887, 'fifty-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(9626, 76622, 'seventy-six thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(9627, 13516, 'thirteen thousand five hundred sixteen');\nINSERT INTO t2 VALUES(9628, 16472, 'sixteen thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(9629, 23940, 'twenty-three thousand nine hundred forty');\nINSERT INTO t2 VALUES(9630, 44666, 'forty-four thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(9631, 74694, 'seventy-four thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(9632, 57541, 'fifty-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(9633, 84917, 'eighty-four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(9634, 65400, 'sixty-five thousand four hundred');\nINSERT INTO t2 VALUES(9635, 40485, 'forty thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(9636, 57426, 'fifty-seven thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(9637, 36843, 'thirty-six thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(9638, 54970, 'fifty-four thousand nine hundred seventy');\nINSERT INTO t2 VALUES(9639, 505, 'five hundred five');\nINSERT INTO t2 VALUES(9640, 99275, 'ninety-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(9641, 81986, 'eighty-one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(9642, 4001, 'four thousand one');\nINSERT INTO t2 VALUES(9643, 72323, 'seventy-two thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(9644, 8637, 'eight thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(9645, 38278, 'thirty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(9646, 34157, 'thirty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(9647, 82456, 'eighty-two thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(9648, 75899, 'seventy-five thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(9649, 69900, 'sixty-nine thousand nine hundred');\nINSERT INTO t2 VALUES(9650, 28219, 'twenty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(9651, 39732, 'thirty-nine thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(9652, 44157, 'forty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(9653, 88485, 'eighty-eight thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(9654, 28815, 'twenty-eight thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(9655, 55922, 'fifty-five thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(9656, 16694, 'sixteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(9657, 85307, 'eighty-five thousand three hundred seven');\nINSERT INTO t2 VALUES(9658, 69030, 'sixty-nine thousand thirty');\nINSERT INTO t2 VALUES(9659, 35486, 'thirty-five thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(9660, 8239, 'eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9661, 45034, 'forty-five thousand thirty-four');\nINSERT INTO t2 VALUES(9662, 50057, 'fifty thousand fifty-seven');\nINSERT INTO t2 VALUES(9663, 97937, 'ninety-seven thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(9664, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(9665, 78106, 'seventy-eight thousand one hundred six');\nINSERT INTO t2 VALUES(9666, 5327, 'five thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(9667, 76445, 'seventy-six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(9668, 37700, 'thirty-seven thousand seven hundred');\nINSERT INTO t2 VALUES(9669, 74825, 'seventy-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(9670, 28573, 'twenty-eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(9671, 35683, 'thirty-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(9672, 28758, 'twenty-eight thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(9673, 78116, 'seventy-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(9674, 79955, 'seventy-nine thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(9675, 78044, 'seventy-eight thousand forty-four');\nINSERT INTO t2 VALUES(9676, 675, 'six hundred seventy-five');\nINSERT INTO t2 VALUES(9677, 1789, 'one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(9678, 92206, 'ninety-two thousand two hundred six');\nINSERT INTO t2 VALUES(9679, 68014, 'sixty-eight thousand fourteen');\nINSERT INTO t2 VALUES(9680, 30145, 'thirty thousand one hundred forty-five');\nINSERT INTO t2 VALUES(9681, 45648, 'forty-five thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(9682, 60284, 'sixty thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(9683, 28878, 'twenty-eight thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(9684, 28138, 'twenty-eight thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(9685, 61885, 'sixty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(9686, 94810, 'ninety-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(9687, 65845, 'sixty-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(9688, 61143, 'sixty-one thousand one hundred forty-three');\nINSERT INTO t2 VALUES(9689, 9851, 'nine thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9690, 42245, 'forty-two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(9691, 10692, 'ten thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(9692, 22345, 'twenty-two thousand three hundred forty-five');\nINSERT INTO t2 VALUES(9693, 75615, 'seventy-five thousand six hundred fifteen');\nINSERT INTO t2 VALUES(9694, 79866, 'seventy-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(9695, 12699, 'twelve thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(9696, 58122, 'fifty-eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(9697, 11746, 'eleven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(9698, 50624, 'fifty thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(9699, 40387, 'forty thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(9700, 85919, 'eighty-five thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(9701, 8174, 'eight thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(9702, 55142, 'fifty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(9703, 68303, 'sixty-eight thousand three hundred three');\nINSERT INTO t2 VALUES(9704, 17335, 'seventeen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(9705, 78513, 'seventy-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(9706, 29582, 'twenty-nine thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(9707, 49634, 'forty-nine thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(9708, 34458, 'thirty-four thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(9709, 10180, 'ten thousand one hundred eighty');\nINSERT INTO t2 VALUES(9710, 88642, 'eighty-eight thousand six hundred forty-two');\nINSERT INTO t2 VALUES(9711, 2390, 'two thousand three hundred ninety');\nINSERT INTO t2 VALUES(9712, 51507, 'fifty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(9713, 7460, 'seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(9714, 35102, 'thirty-five thousand one hundred two');\nINSERT INTO t2 VALUES(9715, 32204, 'thirty-two thousand two hundred four');\nINSERT INTO t2 VALUES(9716, 76392, 'seventy-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(9717, 70336, 'seventy thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(9718, 50161, 'fifty thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(9719, 30585, 'thirty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(9720, 35284, 'thirty-five thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(9721, 23587, 'twenty-three thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(9722, 78092, 'seventy-eight thousand ninety-two');\nINSERT INTO t2 VALUES(9723, 8243, 'eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(9724, 54607, 'fifty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(9725, 36361, 'thirty-six thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(9726, 88933, 'eighty-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(9727, 78190, 'seventy-eight thousand one hundred ninety');\nINSERT INTO t2 VALUES(9728, 96301, 'ninety-six thousand three hundred one');\nINSERT INTO t2 VALUES(9729, 44856, 'forty-four thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(9730, 43572, 'forty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(9731, 32711, 'thirty-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(9732, 28725, 'twenty-eight thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(9733, 55115, 'fifty-five thousand one hundred fifteen');\nINSERT INTO t2 VALUES(9734, 88085, 'eighty-eight thousand eighty-five');\nINSERT INTO t2 VALUES(9735, 68574, 'sixty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(9736, 95856, 'ninety-five thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(9737, 81099, 'eighty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(9738, 42379, 'forty-two thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(9739, 99904, 'ninety-nine thousand nine hundred four');\nINSERT INTO t2 VALUES(9740, 16858, 'sixteen thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(9741, 49841, 'forty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(9742, 93672, 'ninety-three thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(9743, 92965, 'ninety-two thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(9744, 50582, 'fifty thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(9745, 71144, 'seventy-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(9746, 71120, 'seventy-one thousand one hundred twenty');\nINSERT INTO t2 VALUES(9747, 57022, 'fifty-seven thousand twenty-two');\nINSERT INTO t2 VALUES(9748, 10747, 'ten thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(9749, 63470, 'sixty-three thousand four hundred seventy');\nINSERT INTO t2 VALUES(9750, 20061, 'twenty thousand sixty-one');\nINSERT INTO t2 VALUES(9751, 98579, 'ninety-eight thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(9752, 76644, 'seventy-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(9753, 82180, 'eighty-two thousand one hundred eighty');\nINSERT INTO t2 VALUES(9754, 71048, 'seventy-one thousand forty-eight');\nINSERT INTO t2 VALUES(9755, 19490, 'nineteen thousand four hundred ninety');\nINSERT INTO t2 VALUES(9756, 447, 'four hundred forty-seven');\nINSERT INTO t2 VALUES(9757, 54146, 'fifty-four thousand one hundred forty-six');\nINSERT INTO t2 VALUES(9758, 73685, 'seventy-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(9759, 4764, 'four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(9760, 91378, 'ninety-one thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(9761, 40529, 'forty thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(9762, 55119, 'fifty-five thousand one hundred nineteen');\nINSERT INTO t2 VALUES(9763, 14168, 'fourteen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9764, 75876, 'seventy-five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(9765, 50908, 'fifty thousand nine hundred eight');\nINSERT INTO t2 VALUES(9766, 42444, 'forty-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(9767, 62467, 'sixty-two thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(9768, 79928, 'seventy-nine thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(9769, 65733, 'sixty-five thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(9770, 90346, 'ninety thousand three hundred forty-six');\nINSERT INTO t2 VALUES(9771, 72647, 'seventy-two thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(9772, 99071, 'ninety-nine thousand seventy-one');\nINSERT INTO t2 VALUES(9773, 99461, 'ninety-nine thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(9774, 77471, 'seventy-seven thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(9775, 44708, 'forty-four thousand seven hundred eight');\nINSERT INTO t2 VALUES(9776, 88340, 'eighty-eight thousand three hundred forty');\nINSERT INTO t2 VALUES(9777, 12533, 'twelve thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(9778, 88424, 'eighty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(9779, 80718, 'eighty thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(9780, 3636, 'three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(9781, 86715, 'eighty-six thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(9782, 70985, 'seventy thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(9783, 89054, 'eighty-nine thousand fifty-four');\nINSERT INTO t2 VALUES(9784, 55579, 'fifty-five thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(9785, 26745, 'twenty-six thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(9786, 67271, 'sixty-seven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(9787, 24548, 'twenty-four thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(9788, 32762, 'thirty-two thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(9789, 23787, 'twenty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(9790, 52358, 'fifty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(9791, 64224, 'sixty-four thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(9792, 88096, 'eighty-eight thousand ninety-six');\nINSERT INTO t2 VALUES(9793, 45220, 'forty-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(9794, 68875, 'sixty-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(9795, 6662, 'six thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(9796, 16645, 'sixteen thousand six hundred forty-five');\nINSERT INTO t2 VALUES(9797, 63361, 'sixty-three thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(9798, 8274, 'eight thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(9799, 6532, 'six thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(9800, 19965, 'nineteen thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(9801, 80285, 'eighty thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(9802, 60856, 'sixty thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(9803, 67409, 'sixty-seven thousand four hundred nine');\nINSERT INTO t2 VALUES(9804, 20871, 'twenty thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(9805, 72000, 'seventy-two thousand');\nINSERT INTO t2 VALUES(9806, 15279, 'fifteen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(9807, 42589, 'forty-two thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(9808, 42872, 'forty-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(9809, 8091, 'eight thousand ninety-one');\nINSERT INTO t2 VALUES(9810, 40812, 'forty thousand eight hundred twelve');\nINSERT INTO t2 VALUES(9811, 74285, 'seventy-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(9812, 3039, 'three thousand thirty-nine');\nINSERT INTO t2 VALUES(9813, 91575, 'ninety-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(9814, 69928, 'sixty-nine thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(9815, 11574, 'eleven thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(9816, 87237, 'eighty-seven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(9817, 85439, 'eighty-five thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(9818, 78822, 'seventy-eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(9819, 30048, 'thirty thousand forty-eight');\nINSERT INTO t2 VALUES(9820, 79138, 'seventy-nine thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(9821, 9060, 'nine thousand sixty');\nINSERT INTO t2 VALUES(9822, 5465, 'five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(9823, 26276, 'twenty-six thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(9824, 85783, 'eighty-five thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(9825, 80145, 'eighty thousand one hundred forty-five');\nINSERT INTO t2 VALUES(9826, 41733, 'forty-one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(9827, 88913, 'eighty-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(9828, 10742, 'ten thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(9829, 6810, 'six thousand eight hundred ten');\nINSERT INTO t2 VALUES(9830, 69735, 'sixty-nine thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(9831, 98911, 'ninety-eight thousand nine hundred eleven');\nINSERT INTO t2 VALUES(9832, 37083, 'thirty-seven thousand eighty-three');\nINSERT INTO t2 VALUES(9833, 72333, 'seventy-two thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(9834, 19909, 'nineteen thousand nine hundred nine');\nINSERT INTO t2 VALUES(9835, 15371, 'fifteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(9836, 33627, 'thirty-three thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(9837, 79364, 'seventy-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(9838, 17020, 'seventeen thousand twenty');\nINSERT INTO t2 VALUES(9839, 2514, 'two thousand five hundred fourteen');\nINSERT INTO t2 VALUES(9840, 220, 'two hundred twenty');\nINSERT INTO t2 VALUES(9841, 85011, 'eighty-five thousand eleven');\nINSERT INTO t2 VALUES(9842, 86302, 'eighty-six thousand three hundred two');\nINSERT INTO t2 VALUES(9843, 36977, 'thirty-six thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(9844, 33081, 'thirty-three thousand eighty-one');\nINSERT INTO t2 VALUES(9845, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(9846, 30006, 'thirty thousand six');\nINSERT INTO t2 VALUES(9847, 47967, 'forty-seven thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(9848, 44090, 'forty-four thousand ninety');\nINSERT INTO t2 VALUES(9849, 88043, 'eighty-eight thousand forty-three');\nINSERT INTO t2 VALUES(9850, 63998, 'sixty-three thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(9851, 67265, 'sixty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9852, 78154, 'seventy-eight thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(9853, 27541, 'twenty-seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(9854, 16935, 'sixteen thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(9855, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(9856, 12951, 'twelve thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(9857, 39670, 'thirty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(9858, 93047, 'ninety-three thousand forty-seven');\nINSERT INTO t2 VALUES(9859, 78639, 'seventy-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(9860, 5202, 'five thousand two hundred two');\nINSERT INTO t2 VALUES(9861, 17204, 'seventeen thousand two hundred four');\nINSERT INTO t2 VALUES(9862, 39432, 'thirty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(9863, 44518, 'forty-four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(9864, 91369, 'ninety-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9865, 40140, 'forty thousand one hundred forty');\nINSERT INTO t2 VALUES(9866, 19559, 'nineteen thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(9867, 26216, 'twenty-six thousand two hundred sixteen');\nINSERT INTO t2 VALUES(9868, 8647, 'eight thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(9869, 28889, 'twenty-eight thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(9870, 46851, 'forty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9871, 13014, 'thirteen thousand fourteen');\nINSERT INTO t2 VALUES(9872, 77239, 'seventy-seven thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9873, 41515, 'forty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(9874, 25126, 'twenty-five thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(9875, 24678, 'twenty-four thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(9876, 22524, 'twenty-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(9877, 36719, 'thirty-six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(9878, 90976, 'ninety thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(9879, 45387, 'forty-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(9880, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(9881, 4799, 'four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(9882, 90468, 'ninety thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(9883, 35652, 'thirty-five thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(9884, 84626, 'eighty-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(9885, 73446, 'seventy-three thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9886, 18877, 'eighteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(9887, 2012, 'two thousand twelve');\nINSERT INTO t2 VALUES(9888, 38502, 'thirty-eight thousand five hundred two');\nINSERT INTO t2 VALUES(9889, 2784, 'two thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(9890, 11098, 'eleven thousand ninety-eight');\nINSERT INTO t2 VALUES(9891, 96913, 'ninety-six thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(9892, 65007, 'sixty-five thousand seven');\nINSERT INTO t2 VALUES(9893, 4446, 'four thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9894, 13760, 'thirteen thousand seven hundred sixty');\nINSERT INTO t2 VALUES(9895, 15589, 'fifteen thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(9896, 13053, 'thirteen thousand fifty-three');\nINSERT INTO t2 VALUES(9897, 46297, 'forty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(9898, 32446, 'thirty-two thousand four hundred forty-six');\nINSERT INTO t2 VALUES(9899, 46298, 'forty-six thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(9900, 31498, 'thirty-one thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(9901, 53844, 'fifty-three thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(9902, 22677, 'twenty-two thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(9903, 32112, 'thirty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(9904, 78055, 'seventy-eight thousand fifty-five');\nINSERT INTO t2 VALUES(9905, 37196, 'thirty-seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(9906, 17198, 'seventeen thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(9907, 26387, 'twenty-six thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(9908, 66172, 'sixty-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(9909, 2890, 'two thousand eight hundred ninety');\nINSERT INTO t2 VALUES(9910, 78349, 'seventy-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(9911, 73305, 'seventy-three thousand three hundred five');\nINSERT INTO t2 VALUES(9912, 46865, 'forty-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(9913, 51014, 'fifty-one thousand fourteen');\nINSERT INTO t2 VALUES(9914, 57484, 'fifty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(9915, 95182, 'ninety-five thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(9916, 47178, 'forty-seven thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(9917, 61210, 'sixty-one thousand two hundred ten');\nINSERT INTO t2 VALUES(9918, 2861, 'two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(9919, 42747, 'forty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(9920, 2524, 'two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(9921, 33984, 'thirty-three thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(9922, 70995, 'seventy thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(9923, 2751, 'two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(9924, 17949, 'seventeen thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(9925, 83674, 'eighty-three thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(9926, 62038, 'sixty-two thousand thirty-eight');\nINSERT INTO t2 VALUES(9927, 91191, 'ninety-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(9928, 62705, 'sixty-two thousand seven hundred five');\nINSERT INTO t2 VALUES(9929, 15215, 'fifteen thousand two hundred fifteen');\nINSERT INTO t2 VALUES(9930, 11635, 'eleven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(9931, 83994, 'eighty-three thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(9932, 76669, 'seventy-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(9933, 7591, 'seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(9934, 58851, 'fifty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(9935, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(9936, 74312, 'seventy-four thousand three hundred twelve');\nINSERT INTO t2 VALUES(9937, 29583, 'twenty-nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(9938, 98197, 'ninety-eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(9939, 65908, 'sixty-five thousand nine hundred eight');\nINSERT INTO t2 VALUES(9940, 87238, 'eighty-seven thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(9941, 54069, 'fifty-four thousand sixty-nine');\nINSERT INTO t2 VALUES(9942, 23443, 'twenty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(9943, 10265, 'ten thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(9944, 94297, 'ninety-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(9945, 54499, 'fifty-four thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(9946, 10995, 'ten thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(9947, 16429, 'sixteen thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(9948, 45090, 'forty-five thousand ninety');\nINSERT INTO t2 VALUES(9949, 2196, 'two thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(9950, 15974, 'fifteen thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(9951, 72950, 'seventy-two thousand nine hundred fifty');\nINSERT INTO t2 VALUES(9952, 86199, 'eighty-six thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(9953, 8768, 'eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(9954, 94335, 'ninety-four thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(9955, 73289, 'seventy-three thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(9956, 8369, 'eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(9957, 20192, 'twenty thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(9958, 70239, 'seventy thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(9959, 52640, 'fifty-two thousand six hundred forty');\nINSERT INTO t2 VALUES(9960, 42186, 'forty-two thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(9961, 94872, 'ninety-four thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(9962, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t2 VALUES(9963, 92597, 'ninety-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(9964, 98430, 'ninety-eight thousand four hundred thirty');\nINSERT INTO t2 VALUES(9965, 33505, 'thirty-three thousand five hundred five');\nINSERT INTO t2 VALUES(9966, 10796, 'ten thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(9967, 45097, 'forty-five thousand ninety-seven');\nINSERT INTO t2 VALUES(9968, 60873, 'sixty thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(9969, 72539, 'seventy-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(9970, 74421, 'seventy-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(9971, 11566, 'eleven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(9972, 45366, 'forty-five thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(9973, 10507, 'ten thousand five hundred seven');\nINSERT INTO t2 VALUES(9974, 40969, 'forty thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(9975, 26089, 'twenty-six thousand eighty-nine');\nINSERT INTO t2 VALUES(9976, 94907, 'ninety-four thousand nine hundred seven');\nINSERT INTO t2 VALUES(9977, 67663, 'sixty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(9978, 59388, 'fifty-nine thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(9979, 67936, 'sixty-seven thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(9980, 1514, 'one thousand five hundred fourteen');\nINSERT INTO t2 VALUES(9981, 83008, 'eighty-three thousand eight');\nINSERT INTO t2 VALUES(9982, 52449, 'fifty-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(9983, 35805, 'thirty-five thousand eight hundred five');\nINSERT INTO t2 VALUES(9984, 89354, 'eighty-nine thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(9985, 28275, 'twenty-eight thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(9986, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(9987, 70733, 'seventy thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(9988, 1525, 'one thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(9989, 88430, 'eighty-eight thousand four hundred thirty');\nINSERT INTO t2 VALUES(9990, 93781, 'ninety-three thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(9991, 83529, 'eighty-three thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(9992, 15257, 'fifteen thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(9993, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(9994, 12762, 'twelve thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(9995, 32485, 'thirty-two thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(9996, 25438, 'twenty-five thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(9997, 7362, 'seven thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(9998, 9721, 'nine thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(9999, 44707, 'forty-four thousand seven hundred seven');\nINSERT INTO t2 VALUES(10000, 43668, 'forty-three thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(10001, 93422, 'ninety-three thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(10002, 78511, 'seventy-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(10003, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(10004, 37643, 'thirty-seven thousand six hundred forty-three');\nINSERT INTO t2 VALUES(10005, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(10006, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t2 VALUES(10007, 71239, 'seventy-one thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(10008, 18194, 'eighteen thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(10009, 51355, 'fifty-one thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(10010, 98261, 'ninety-eight thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(10011, 83984, 'eighty-three thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(10012, 44407, 'forty-four thousand four hundred seven');\nINSERT INTO t2 VALUES(10013, 19078, 'nineteen thousand seventy-eight');\nINSERT INTO t2 VALUES(10014, 70902, 'seventy thousand nine hundred two');\nINSERT INTO t2 VALUES(10015, 16982, 'sixteen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(10016, 95419, 'ninety-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(10017, 33354, 'thirty-three thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(10018, 50334, 'fifty thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(10019, 82156, 'eighty-two thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(10020, 89745, 'eighty-nine thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(10021, 20522, 'twenty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(10022, 63411, 'sixty-three thousand four hundred eleven');\nINSERT INTO t2 VALUES(10023, 54961, 'fifty-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(10024, 40258, 'forty thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(10025, 46240, 'forty-six thousand two hundred forty');\nINSERT INTO t2 VALUES(10026, 24737, 'twenty-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10027, 45625, 'forty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(10028, 88518, 'eighty-eight thousand five hundred eighteen');\nINSERT INTO t2 VALUES(10029, 37460, 'thirty-seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(10030, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(10031, 37456, 'thirty-seven thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(10032, 40991, 'forty thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(10033, 96882, 'ninety-six thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(10034, 96794, 'ninety-six thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(10035, 10767, 'ten thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(10036, 29290, 'twenty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(10037, 85526, 'eighty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(10038, 77321, 'seventy-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(10039, 22133, 'twenty-two thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(10040, 40317, 'forty thousand three hundred seventeen');\nINSERT INTO t2 VALUES(10041, 60739, 'sixty thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(10042, 51801, 'fifty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(10043, 69537, 'sixty-nine thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(10044, 31020, 'thirty-one thousand twenty');\nINSERT INTO t2 VALUES(10045, 7191, 'seven thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(10046, 14202, 'fourteen thousand two hundred two');\nINSERT INTO t2 VALUES(10047, 27420, 'twenty-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(10048, 59056, 'fifty-nine thousand fifty-six');\nINSERT INTO t2 VALUES(10049, 13581, 'thirteen thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(10050, 43958, 'forty-three thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(10051, 95227, 'ninety-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(10052, 29350, 'twenty-nine thousand three hundred fifty');\nINSERT INTO t2 VALUES(10053, 5887, 'five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(10054, 2986, 'two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(10055, 95791, 'ninety-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(10056, 35488, 'thirty-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(10057, 65926, 'sixty-five thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(10058, 26652, 'twenty-six thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(10059, 75019, 'seventy-five thousand nineteen');\nINSERT INTO t2 VALUES(10060, 48662, 'forty-eight thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(10061, 25582, 'twenty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(10062, 62775, 'sixty-two thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(10063, 82872, 'eighty-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(10064, 87807, 'eighty-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(10065, 82316, 'eighty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(10066, 36033, 'thirty-six thousand thirty-three');\nINSERT INTO t2 VALUES(10067, 64136, 'sixty-four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(10068, 36927, 'thirty-six thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(10069, 27451, 'twenty-seven thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(10070, 18288, 'eighteen thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(10071, 70862, 'seventy thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(10072, 58332, 'fifty-eight thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(10073, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t2 VALUES(10074, 14209, 'fourteen thousand two hundred nine');\nINSERT INTO t2 VALUES(10075, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(10076, 90453, 'ninety thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(10077, 89961, 'eighty-nine thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(10078, 29873, 'twenty-nine thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(10079, 95342, 'ninety-five thousand three hundred forty-two');\nINSERT INTO t2 VALUES(10080, 28876, 'twenty-eight thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(10081, 38591, 'thirty-eight thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(10082, 22255, 'twenty-two thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(10083, 32250, 'thirty-two thousand two hundred fifty');\nINSERT INTO t2 VALUES(10084, 60760, 'sixty thousand seven hundred sixty');\nINSERT INTO t2 VALUES(10085, 60606, 'sixty thousand six hundred six');\nINSERT INTO t2 VALUES(10086, 28914, 'twenty-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10087, 48145, 'forty-eight thousand one hundred forty-five');\nINSERT INTO t2 VALUES(10088, 67051, 'sixty-seven thousand fifty-one');\nINSERT INTO t2 VALUES(10089, 80224, 'eighty thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(10090, 67729, 'sixty-seven thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(10091, 91224, 'ninety-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(10092, 25412, 'twenty-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(10093, 21678, 'twenty-one thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(10094, 85068, 'eighty-five thousand sixty-eight');\nINSERT INTO t2 VALUES(10095, 40462, 'forty thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(10096, 6854, 'six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(10097, 31721, 'thirty-one thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(10098, 12954, 'twelve thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(10099, 22132, 'twenty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(10100, 11088, 'eleven thousand eighty-eight');\nINSERT INTO t2 VALUES(10101, 56936, 'fifty-six thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(10102, 4088, 'four thousand eighty-eight');\nINSERT INTO t2 VALUES(10103, 71434, 'seventy-one thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(10104, 30525, 'thirty thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(10105, 10768, 'ten thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(10106, 59864, 'fifty-nine thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(10107, 86995, 'eighty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(10108, 46828, 'forty-six thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(10109, 92437, 'ninety-two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(10110, 67956, 'sixty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(10111, 3135, 'three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(10112, 17166, 'seventeen thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(10113, 95375, 'ninety-five thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(10114, 10317, 'ten thousand three hundred seventeen');\nINSERT INTO t2 VALUES(10115, 92095, 'ninety-two thousand ninety-five');\nINSERT INTO t2 VALUES(10116, 15089, 'fifteen thousand eighty-nine');\nINSERT INTO t2 VALUES(10117, 22295, 'twenty-two thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(10118, 69161, 'sixty-nine thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(10119, 6487, 'six thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(10120, 10844, 'ten thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(10121, 96110, 'ninety-six thousand one hundred ten');\nINSERT INTO t2 VALUES(10122, 18819, 'eighteen thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(10123, 10972, 'ten thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(10124, 33732, 'thirty-three thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(10125, 52138, 'fifty-two thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(10126, 48624, 'forty-eight thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(10127, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t2 VALUES(10128, 42108, 'forty-two thousand one hundred eight');\nINSERT INTO t2 VALUES(10129, 41793, 'forty-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10130, 64579, 'sixty-four thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(10131, 41902, 'forty-one thousand nine hundred two');\nINSERT INTO t2 VALUES(10132, 9141, 'nine thousand one hundred forty-one');\nINSERT INTO t2 VALUES(10133, 69247, 'sixty-nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(10134, 64837, 'sixty-four thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(10135, 44654, 'forty-four thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(10136, 17940, 'seventeen thousand nine hundred forty');\nINSERT INTO t2 VALUES(10137, 67097, 'sixty-seven thousand ninety-seven');\nINSERT INTO t2 VALUES(10138, 94388, 'ninety-four thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(10139, 97454, 'ninety-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(10140, 49395, 'forty-nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(10141, 28209, 'twenty-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(10142, 94587, 'ninety-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(10143, 76900, 'seventy-six thousand nine hundred');\nINSERT INTO t2 VALUES(10144, 50976, 'fifty thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(10145, 42009, 'forty-two thousand nine');\nINSERT INTO t2 VALUES(10146, 55337, 'fifty-five thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(10147, 43386, 'forty-three thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(10148, 71133, 'seventy-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(10149, 18762, 'eighteen thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(10150, 83631, 'eighty-three thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(10151, 48583, 'forty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(10152, 37275, 'thirty-seven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(10153, 74334, 'seventy-four thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(10154, 2982, 'two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(10155, 6976, 'six thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(10156, 39273, 'thirty-nine thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(10157, 27624, 'twenty-seven thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(10158, 98848, 'ninety-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(10159, 27469, 'twenty-seven thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(10160, 84326, 'eighty-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(10161, 63020, 'sixty-three thousand twenty');\nINSERT INTO t2 VALUES(10162, 75022, 'seventy-five thousand twenty-two');\nINSERT INTO t2 VALUES(10163, 27420, 'twenty-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(10164, 41052, 'forty-one thousand fifty-two');\nINSERT INTO t2 VALUES(10165, 21534, 'twenty-one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(10166, 71154, 'seventy-one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(10167, 98187, 'ninety-eight thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(10168, 67507, 'sixty-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(10169, 29966, 'twenty-nine thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(10170, 25408, 'twenty-five thousand four hundred eight');\nINSERT INTO t2 VALUES(10171, 18694, 'eighteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(10172, 44142, 'forty-four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(10173, 89828, 'eighty-nine thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(10174, 42489, 'forty-two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(10175, 56553, 'fifty-six thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(10176, 21233, 'twenty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(10177, 71442, 'seventy-one thousand four hundred forty-two');\nINSERT INTO t2 VALUES(10178, 94227, 'ninety-four thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(10179, 31597, 'thirty-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(10180, 93967, 'ninety-three thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(10181, 60897, 'sixty thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(10182, 43723, 'forty-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(10183, 82011, 'eighty-two thousand eleven');\nINSERT INTO t2 VALUES(10184, 86358, 'eighty-six thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(10185, 78704, 'seventy-eight thousand seven hundred four');\nINSERT INTO t2 VALUES(10186, 51381, 'fifty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(10187, 9489, 'nine thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(10188, 32395, 'thirty-two thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(10189, 66736, 'sixty-six thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(10190, 72421, 'seventy-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(10191, 20505, 'twenty thousand five hundred five');\nINSERT INTO t2 VALUES(10192, 60892, 'sixty thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(10193, 86125, 'eighty-six thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(10194, 16480, 'sixteen thousand four hundred eighty');\nINSERT INTO t2 VALUES(10195, 67149, 'sixty-seven thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(10196, 49960, 'forty-nine thousand nine hundred sixty');\nINSERT INTO t2 VALUES(10197, 43029, 'forty-three thousand twenty-nine');\nINSERT INTO t2 VALUES(10198, 5057, 'five thousand fifty-seven');\nINSERT INTO t2 VALUES(10199, 29649, 'twenty-nine thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(10200, 62197, 'sixty-two thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(10201, 98587, 'ninety-eight thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(10202, 32622, 'thirty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(10203, 31145, 'thirty-one thousand one hundred forty-five');\nINSERT INTO t2 VALUES(10204, 56582, 'fifty-six thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(10205, 8708, 'eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(10206, 80782, 'eighty thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(10207, 1834, 'one thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(10208, 21888, 'twenty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10209, 52793, 'fifty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10210, 98913, 'ninety-eight thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(10211, 788, 'seven hundred eighty-eight');\nINSERT INTO t2 VALUES(10212, 78848, 'seventy-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(10213, 43230, 'forty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(10214, 8799, 'eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(10215, 54038, 'fifty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(10216, 92344, 'ninety-two thousand three hundred forty-four');\nINSERT INTO t2 VALUES(10217, 19882, 'nineteen thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(10218, 66941, 'sixty-six thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(10219, 90274, 'ninety thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(10220, 70729, 'seventy thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(10221, 41013, 'forty-one thousand thirteen');\nINSERT INTO t2 VALUES(10222, 65717, 'sixty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(10223, 6157, 'six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(10224, 52191, 'fifty-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(10225, 77086, 'seventy-seven thousand eighty-six');\nINSERT INTO t2 VALUES(10226, 92092, 'ninety-two thousand ninety-two');\nINSERT INTO t2 VALUES(10227, 98823, 'ninety-eight thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(10228, 19498, 'nineteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(10229, 14181, 'fourteen thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(10230, 53665, 'fifty-three thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(10231, 38861, 'thirty-eight thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(10232, 512, 'five hundred twelve');\nINSERT INTO t2 VALUES(10233, 99022, 'ninety-nine thousand twenty-two');\nINSERT INTO t2 VALUES(10234, 77947, 'seventy-seven thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(10235, 45582, 'forty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(10236, 17177, 'seventeen thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(10237, 83840, 'eighty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(10238, 92528, 'ninety-two thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(10239, 22333, 'twenty-two thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(10240, 80183, 'eighty thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(10241, 91124, 'ninety-one thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(10242, 50219, 'fifty thousand two hundred nineteen');\nINSERT INTO t2 VALUES(10243, 86522, 'eighty-six thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(10244, 91434, 'ninety-one thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(10245, 43887, 'forty-three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(10246, 33478, 'thirty-three thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(10247, 62924, 'sixty-two thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(10248, 89057, 'eighty-nine thousand fifty-seven');\nINSERT INTO t2 VALUES(10249, 46407, 'forty-six thousand four hundred seven');\nINSERT INTO t2 VALUES(10250, 90629, 'ninety thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(10251, 63581, 'sixty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(10252, 5364, 'five thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(10253, 22919, 'twenty-two thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(10254, 93301, 'ninety-three thousand three hundred one');\nINSERT INTO t2 VALUES(10255, 47925, 'forty-seven thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(10256, 62950, 'sixty-two thousand nine hundred fifty');\nINSERT INTO t2 VALUES(10257, 72924, 'seventy-two thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(10258, 55715, 'fifty-five thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(10259, 29794, 'twenty-nine thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(10260, 87159, 'eighty-seven thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(10261, 35726, 'thirty-five thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(10262, 25290, 'twenty-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(10263, 71038, 'seventy-one thousand thirty-eight');\nINSERT INTO t2 VALUES(10264, 27862, 'twenty-seven thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(10265, 23841, 'twenty-three thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(10266, 60438, 'sixty thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(10267, 83993, 'eighty-three thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(10268, 62405, 'sixty-two thousand four hundred five');\nINSERT INTO t2 VALUES(10269, 24054, 'twenty-four thousand fifty-four');\nINSERT INTO t2 VALUES(10270, 57272, 'fifty-seven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10271, 11856, 'eleven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(10272, 57422, 'fifty-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(10273, 11750, 'eleven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(10274, 73859, 'seventy-three thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(10275, 68654, 'sixty-eight thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(10276, 20089, 'twenty thousand eighty-nine');\nINSERT INTO t2 VALUES(10277, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(10278, 49931, 'forty-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(10279, 54876, 'fifty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(10280, 46280, 'forty-six thousand two hundred eighty');\nINSERT INTO t2 VALUES(10281, 24422, 'twenty-four thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(10282, 48733, 'forty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(10283, 13374, 'thirteen thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(10284, 57736, 'fifty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(10285, 37380, 'thirty-seven thousand three hundred eighty');\nINSERT INTO t2 VALUES(10286, 96731, 'ninety-six thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(10287, 97572, 'ninety-seven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(10288, 72194, 'seventy-two thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(10289, 44460, 'forty-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(10290, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(10291, 8786, 'eight thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(10292, 4737, 'four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10293, 68178, 'sixty-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(10294, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(10295, 49195, 'forty-nine thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(10296, 81421, 'eighty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(10297, 97365, 'ninety-seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(10298, 87319, 'eighty-seven thousand three hundred nineteen');\nINSERT INTO t2 VALUES(10299, 30615, 'thirty thousand six hundred fifteen');\nINSERT INTO t2 VALUES(10300, 86579, 'eighty-six thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(10301, 40921, 'forty thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(10302, 89272, 'eighty-nine thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10303, 50023, 'fifty thousand twenty-three');\nINSERT INTO t2 VALUES(10304, 95552, 'ninety-five thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(10305, 77200, 'seventy-seven thousand two hundred');\nINSERT INTO t2 VALUES(10306, 80643, 'eighty thousand six hundred forty-three');\nINSERT INTO t2 VALUES(10307, 88530, 'eighty-eight thousand five hundred thirty');\nINSERT INTO t2 VALUES(10308, 52392, 'fifty-two thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(10309, 88186, 'eighty-eight thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(10310, 35070, 'thirty-five thousand seventy');\nINSERT INTO t2 VALUES(10311, 72151, 'seventy-two thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(10312, 88942, 'eighty-eight thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(10313, 84646, 'eighty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(10314, 3944, 'three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10315, 20533, 'twenty thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(10316, 28512, 'twenty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(10317, 79617, 'seventy-nine thousand six hundred seventeen');\nINSERT INTO t2 VALUES(10318, 345, 'three hundred forty-five');\nINSERT INTO t2 VALUES(10319, 48197, 'forty-eight thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(10320, 73820, 'seventy-three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(10321, 73203, 'seventy-three thousand two hundred three');\nINSERT INTO t2 VALUES(10322, 79567, 'seventy-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(10323, 7196, 'seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(10324, 46206, 'forty-six thousand two hundred six');\nINSERT INTO t2 VALUES(10325, 44181, 'forty-four thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(10326, 11792, 'eleven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(10327, 12881, 'twelve thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(10328, 95524, 'ninety-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(10329, 72593, 'seventy-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(10330, 80211, 'eighty thousand two hundred eleven');\nINSERT INTO t2 VALUES(10331, 48611, 'forty-eight thousand six hundred eleven');\nINSERT INTO t2 VALUES(10332, 82047, 'eighty-two thousand forty-seven');\nINSERT INTO t2 VALUES(10333, 77177, 'seventy-seven thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(10334, 257, 'two hundred fifty-seven');\nINSERT INTO t2 VALUES(10335, 36466, 'thirty-six thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(10336, 14574, 'fourteen thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(10337, 45098, 'forty-five thousand ninety-eight');\nINSERT INTO t2 VALUES(10338, 77630, 'seventy-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(10339, 71570, 'seventy-one thousand five hundred seventy');\nINSERT INTO t2 VALUES(10340, 97718, 'ninety-seven thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(10341, 47146, 'forty-seven thousand one hundred forty-six');\nINSERT INTO t2 VALUES(10342, 29410, 'twenty-nine thousand four hundred ten');\nINSERT INTO t2 VALUES(10343, 4725, 'four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(10344, 61692, 'sixty-one thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(10345, 91558, 'ninety-one thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(10346, 77971, 'seventy-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(10347, 35749, 'thirty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(10348, 58875, 'fifty-eight thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(10349, 22918, 'twenty-two thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(10350, 86802, 'eighty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(10351, 87662, 'eighty-seven thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(10352, 76394, 'seventy-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(10353, 2366, 'two thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(10354, 69310, 'sixty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(10355, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(10356, 39756, 'thirty-nine thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(10357, 58155, 'fifty-eight thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(10358, 70934, 'seventy thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(10359, 24249, 'twenty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(10360, 67762, 'sixty-seven thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(10361, 22437, 'twenty-two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(10362, 81112, 'eighty-one thousand one hundred twelve');\nINSERT INTO t2 VALUES(10363, 51440, 'fifty-one thousand four hundred forty');\nINSERT INTO t2 VALUES(10364, 94451, 'ninety-four thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(10365, 23046, 'twenty-three thousand forty-six');\nINSERT INTO t2 VALUES(10366, 36970, 'thirty-six thousand nine hundred seventy');\nINSERT INTO t2 VALUES(10367, 26965, 'twenty-six thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(10368, 71037, 'seventy-one thousand thirty-seven');\nINSERT INTO t2 VALUES(10369, 85529, 'eighty-five thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(10370, 57720, 'fifty-seven thousand seven hundred twenty');\nINSERT INTO t2 VALUES(10371, 68703, 'sixty-eight thousand seven hundred three');\nINSERT INTO t2 VALUES(10372, 48093, 'forty-eight thousand ninety-three');\nINSERT INTO t2 VALUES(10373, 32222, 'thirty-two thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(10374, 24780, 'twenty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(10375, 98605, 'ninety-eight thousand six hundred five');\nINSERT INTO t2 VALUES(10376, 80788, 'eighty thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(10377, 78338, 'seventy-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(10378, 2806, 'two thousand eight hundred six');\nINSERT INTO t2 VALUES(10379, 80487, 'eighty thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(10380, 512, 'five hundred twelve');\nINSERT INTO t2 VALUES(10381, 86173, 'eighty-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(10382, 82160, 'eighty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(10383, 77475, 'seventy-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(10384, 17441, 'seventeen thousand four hundred forty-one');\nINSERT INTO t2 VALUES(10385, 9143, 'nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(10386, 47682, 'forty-seven thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(10387, 45608, 'forty-five thousand six hundred eight');\nINSERT INTO t2 VALUES(10388, 25793, 'twenty-five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10389, 97514, 'ninety-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10390, 68165, 'sixty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(10391, 69801, 'sixty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(10392, 41587, 'forty-one thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(10393, 13432, 'thirteen thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(10394, 89619, 'eighty-nine thousand six hundred nineteen');\nINSERT INTO t2 VALUES(10395, 41244, 'forty-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(10396, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t2 VALUES(10397, 30914, 'thirty thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10398, 45369, 'forty-five thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(10399, 81742, 'eighty-one thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(10400, 76009, 'seventy-six thousand nine');\nINSERT INTO t2 VALUES(10401, 38569, 'thirty-eight thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(10402, 13362, 'thirteen thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(10403, 84025, 'eighty-four thousand twenty-five');\nINSERT INTO t2 VALUES(10404, 56985, 'fifty-six thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(10405, 11889, 'eleven thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(10406, 74233, 'seventy-four thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(10407, 6279, 'six thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(10408, 10398, 'ten thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(10409, 54466, 'fifty-four thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(10410, 83572, 'eighty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(10411, 68894, 'sixty-eight thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(10412, 49574, 'forty-nine thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(10413, 32964, 'thirty-two thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(10414, 55112, 'fifty-five thousand one hundred twelve');\nINSERT INTO t2 VALUES(10415, 57379, 'fifty-seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(10416, 56799, 'fifty-six thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(10417, 59788, 'fifty-nine thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(10418, 40118, 'forty thousand one hundred eighteen');\nINSERT INTO t2 VALUES(10419, 9262, 'nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(10420, 91864, 'ninety-one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(10421, 83889, 'eighty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(10422, 64947, 'sixty-four thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(10423, 40464, 'forty thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(10424, 65685, 'sixty-five thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(10425, 1184, 'one thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(10426, 73744, 'seventy-three thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(10427, 43448, 'forty-three thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(10428, 9633, 'nine thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(10429, 82246, 'eighty-two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(10430, 44276, 'forty-four thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(10431, 98338, 'ninety-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(10432, 35746, 'thirty-five thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(10433, 34509, 'thirty-four thousand five hundred nine');\nINSERT INTO t2 VALUES(10434, 50233, 'fifty thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(10435, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(10436, 62096, 'sixty-two thousand ninety-six');\nINSERT INTO t2 VALUES(10437, 45120, 'forty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(10438, 10384, 'ten thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(10439, 58412, 'fifty-eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(10440, 6210, 'six thousand two hundred ten');\nINSERT INTO t2 VALUES(10441, 92060, 'ninety-two thousand sixty');\nINSERT INTO t2 VALUES(10442, 22549, 'twenty-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(10443, 14654, 'fourteen thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(10444, 79862, 'seventy-nine thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(10445, 13827, 'thirteen thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10446, 70994, 'seventy thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(10447, 29434, 'twenty-nine thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(10448, 27259, 'twenty-seven thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(10449, 99804, 'ninety-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(10450, 45028, 'forty-five thousand twenty-eight');\nINSERT INTO t2 VALUES(10451, 11398, 'eleven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(10452, 55444, 'fifty-five thousand four hundred forty-four');\nINSERT INTO t2 VALUES(10453, 99800, 'ninety-nine thousand eight hundred');\nINSERT INTO t2 VALUES(10454, 58161, 'fifty-eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(10455, 40784, 'forty thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(10456, 95158, 'ninety-five thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(10457, 82507, 'eighty-two thousand five hundred seven');\nINSERT INTO t2 VALUES(10458, 61525, 'sixty-one thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(10459, 98305, 'ninety-eight thousand three hundred five');\nINSERT INTO t2 VALUES(10460, 78610, 'seventy-eight thousand six hundred ten');\nINSERT INTO t2 VALUES(10461, 887, 'eight hundred eighty-seven');\nINSERT INTO t2 VALUES(10462, 30663, 'thirty thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(10463, 24156, 'twenty-four thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(10464, 89993, 'eighty-nine thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(10465, 62451, 'sixty-two thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(10466, 32897, 'thirty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(10467, 72206, 'seventy-two thousand two hundred six');\nINSERT INTO t2 VALUES(10468, 85870, 'eighty-five thousand eight hundred seventy');\nINSERT INTO t2 VALUES(10469, 10562, 'ten thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(10470, 90397, 'ninety thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(10471, 40363, 'forty thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(10472, 43581, 'forty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(10473, 63066, 'sixty-three thousand sixty-six');\nINSERT INTO t2 VALUES(10474, 63630, 'sixty-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(10475, 59944, 'fifty-nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10476, 79379, 'seventy-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(10477, 56319, 'fifty-six thousand three hundred nineteen');\nINSERT INTO t2 VALUES(10478, 25832, 'twenty-five thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(10479, 69714, 'sixty-nine thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(10480, 72589, 'seventy-two thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(10481, 64426, 'sixty-four thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(10482, 15595, 'fifteen thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(10483, 94937, 'ninety-four thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(10484, 20544, 'twenty thousand five hundred forty-four');\nINSERT INTO t2 VALUES(10485, 73212, 'seventy-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(10486, 78272, 'seventy-eight thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10487, 96263, 'ninety-six thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(10488, 57888, 'fifty-seven thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10489, 6577, 'six thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(10490, 87243, 'eighty-seven thousand two hundred forty-three');\nINSERT INTO t2 VALUES(10491, 45050, 'forty-five thousand fifty');\nINSERT INTO t2 VALUES(10492, 47420, 'forty-seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(10493, 22551, 'twenty-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(10494, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(10495, 57365, 'fifty-seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(10496, 70310, 'seventy thousand three hundred ten');\nINSERT INTO t2 VALUES(10497, 7280, 'seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(10498, 92371, 'ninety-two thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(10499, 94230, 'ninety-four thousand two hundred thirty');\nINSERT INTO t2 VALUES(10500, 92527, 'ninety-two thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(10501, 47272, 'forty-seven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10502, 3044, 'three thousand forty-four');\nINSERT INTO t2 VALUES(10503, 36605, 'thirty-six thousand six hundred five');\nINSERT INTO t2 VALUES(10504, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(10505, 46589, 'forty-six thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(10506, 4232, 'four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(10507, 13303, 'thirteen thousand three hundred three');\nINSERT INTO t2 VALUES(10508, 18564, 'eighteen thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(10509, 35064, 'thirty-five thousand sixty-four');\nINSERT INTO t2 VALUES(10510, 16968, 'sixteen thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(10511, 20300, 'twenty thousand three hundred');\nINSERT INTO t2 VALUES(10512, 31944, 'thirty-one thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10513, 15710, 'fifteen thousand seven hundred ten');\nINSERT INTO t2 VALUES(10514, 99425, 'ninety-nine thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(10515, 57071, 'fifty-seven thousand seventy-one');\nINSERT INTO t2 VALUES(10516, 42888, 'forty-two thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10517, 90675, 'ninety thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(10518, 13798, 'thirteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(10519, 72321, 'seventy-two thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(10520, 70031, 'seventy thousand thirty-one');\nINSERT INTO t2 VALUES(10521, 38013, 'thirty-eight thousand thirteen');\nINSERT INTO t2 VALUES(10522, 29874, 'twenty-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(10523, 96220, 'ninety-six thousand two hundred twenty');\nINSERT INTO t2 VALUES(10524, 21856, 'twenty-one thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(10525, 28721, 'twenty-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(10526, 11024, 'eleven thousand twenty-four');\nINSERT INTO t2 VALUES(10527, 26017, 'twenty-six thousand seventeen');\nINSERT INTO t2 VALUES(10528, 2275, 'two thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(10529, 29804, 'twenty-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(10530, 41864, 'forty-one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(10531, 77439, 'seventy-seven thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(10532, 37600, 'thirty-seven thousand six hundred');\nINSERT INTO t2 VALUES(10533, 88606, 'eighty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(10534, 57478, 'fifty-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(10535, 96296, 'ninety-six thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(10536, 96516, 'ninety-six thousand five hundred sixteen');\nINSERT INTO t2 VALUES(10537, 59728, 'fifty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(10538, 47356, 'forty-seven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(10539, 22521, 'twenty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(10540, 41674, 'forty-one thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(10541, 16290, 'sixteen thousand two hundred ninety');\nINSERT INTO t2 VALUES(10542, 41543, 'forty-one thousand five hundred forty-three');\nINSERT INTO t2 VALUES(10543, 44586, 'forty-four thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(10544, 90745, 'ninety thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(10545, 35670, 'thirty-five thousand six hundred seventy');\nINSERT INTO t2 VALUES(10546, 67549, 'sixty-seven thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(10547, 730, 'seven hundred thirty');\nINSERT INTO t2 VALUES(10548, 59043, 'fifty-nine thousand forty-three');\nINSERT INTO t2 VALUES(10549, 73793, 'seventy-three thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10550, 98827, 'ninety-eight thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10551, 71793, 'seventy-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10552, 29182, 'twenty-nine thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(10553, 176, 'one hundred seventy-six');\nINSERT INTO t2 VALUES(10554, 21840, 'twenty-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(10555, 28531, 'twenty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(10556, 22179, 'twenty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(10557, 16960, 'sixteen thousand nine hundred sixty');\nINSERT INTO t2 VALUES(10558, 64718, 'sixty-four thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(10559, 84285, 'eighty-four thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(10560, 73736, 'seventy-three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(10561, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(10562, 19906, 'nineteen thousand nine hundred six');\nINSERT INTO t2 VALUES(10563, 82494, 'eighty-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(10564, 13709, 'thirteen thousand seven hundred nine');\nINSERT INTO t2 VALUES(10565, 85142, 'eighty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(10566, 17599, 'seventeen thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(10567, 58182, 'fifty-eight thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(10568, 97223, 'ninety-seven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(10569, 43151, 'forty-three thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(10570, 92278, 'ninety-two thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(10571, 15314, 'fifteen thousand three hundred fourteen');\nINSERT INTO t2 VALUES(10572, 8992, 'eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(10573, 49577, 'forty-nine thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(10574, 84386, 'eighty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(10575, 28630, 'twenty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(10576, 99953, 'ninety-nine thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(10577, 80631, 'eighty thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(10578, 38218, 'thirty-eight thousand two hundred eighteen');\nINSERT INTO t2 VALUES(10579, 39377, 'thirty-nine thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(10580, 40538, 'forty thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(10581, 20431, 'twenty thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(10582, 69201, 'sixty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(10583, 78909, 'seventy-eight thousand nine hundred nine');\nINSERT INTO t2 VALUES(10584, 28408, 'twenty-eight thousand four hundred eight');\nINSERT INTO t2 VALUES(10585, 59650, 'fifty-nine thousand six hundred fifty');\nINSERT INTO t2 VALUES(10586, 79370, 'seventy-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(10587, 89798, 'eighty-nine thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(10588, 53262, 'fifty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(10589, 27597, 'twenty-seven thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(10590, 66559, 'sixty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(10591, 67211, 'sixty-seven thousand two hundred eleven');\nINSERT INTO t2 VALUES(10592, 7642, 'seven thousand six hundred forty-two');\nINSERT INTO t2 VALUES(10593, 47231, 'forty-seven thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(10594, 18254, 'eighteen thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(10595, 41055, 'forty-one thousand fifty-five');\nINSERT INTO t2 VALUES(10596, 28738, 'twenty-eight thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(10597, 44634, 'forty-four thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(10598, 31702, 'thirty-one thousand seven hundred two');\nINSERT INTO t2 VALUES(10599, 97882, 'ninety-seven thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(10600, 71255, 'seventy-one thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(10601, 69403, 'sixty-nine thousand four hundred three');\nINSERT INTO t2 VALUES(10602, 72524, 'seventy-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(10603, 11006, 'eleven thousand six');\nINSERT INTO t2 VALUES(10604, 77631, 'seventy-seven thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(10605, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(10606, 56683, 'fifty-six thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(10607, 7541, 'seven thousand five hundred forty-one');\nINSERT INTO t2 VALUES(10608, 25996, 'twenty-five thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(10609, 45750, 'forty-five thousand seven hundred fifty');\nINSERT INTO t2 VALUES(10610, 77245, 'seventy-seven thousand two hundred forty-five');\nINSERT INTO t2 VALUES(10611, 15069, 'fifteen thousand sixty-nine');\nINSERT INTO t2 VALUES(10612, 40452, 'forty thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(10613, 11630, 'eleven thousand six hundred thirty');\nINSERT INTO t2 VALUES(10614, 68728, 'sixty-eight thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(10615, 11092, 'eleven thousand ninety-two');\nINSERT INTO t2 VALUES(10616, 67431, 'sixty-seven thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(10617, 58899, 'fifty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(10618, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10619, 68706, 'sixty-eight thousand seven hundred six');\nINSERT INTO t2 VALUES(10620, 21084, 'twenty-one thousand eighty-four');\nINSERT INTO t2 VALUES(10621, 48157, 'forty-eight thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(10622, 69309, 'sixty-nine thousand three hundred nine');\nINSERT INTO t2 VALUES(10623, 6823, 'six thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(10624, 47851, 'forty-seven thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(10625, 61922, 'sixty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(10626, 39528, 'thirty-nine thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(10627, 83483, 'eighty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(10628, 18146, 'eighteen thousand one hundred forty-six');\nINSERT INTO t2 VALUES(10629, 28857, 'twenty-eight thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(10630, 60797, 'sixty thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(10631, 34235, 'thirty-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(10632, 7846, 'seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(10633, 82029, 'eighty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(10634, 34976, 'thirty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(10635, 64398, 'sixty-four thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(10636, 89786, 'eighty-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(10637, 55503, 'fifty-five thousand five hundred three');\nINSERT INTO t2 VALUES(10638, 9319, 'nine thousand three hundred nineteen');\nINSERT INTO t2 VALUES(10639, 94828, 'ninety-four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(10640, 37753, 'thirty-seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(10641, 38692, 'thirty-eight thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(10642, 64692, 'sixty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(10643, 74697, 'seventy-four thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(10644, 17303, 'seventeen thousand three hundred three');\nINSERT INTO t2 VALUES(10645, 63072, 'sixty-three thousand seventy-two');\nINSERT INTO t2 VALUES(10646, 11344, 'eleven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(10647, 74468, 'seventy-four thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(10648, 89290, 'eighty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(10649, 4172, 'four thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(10650, 60904, 'sixty thousand nine hundred four');\nINSERT INTO t2 VALUES(10651, 14303, 'fourteen thousand three hundred three');\nINSERT INTO t2 VALUES(10652, 77367, 'seventy-seven thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(10653, 27700, 'twenty-seven thousand seven hundred');\nINSERT INTO t2 VALUES(10654, 29665, 'twenty-nine thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(10655, 1738, 'one thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(10656, 32214, 'thirty-two thousand two hundred fourteen');\nINSERT INTO t2 VALUES(10657, 72124, 'seventy-two thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(10658, 88569, 'eighty-eight thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(10659, 75708, 'seventy-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(10660, 38860, 'thirty-eight thousand eight hundred sixty');\nINSERT INTO t2 VALUES(10661, 59928, 'fifty-nine thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(10662, 37915, 'thirty-seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(10663, 83641, 'eighty-three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(10664, 92471, 'ninety-two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(10665, 49483, 'forty-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(10666, 43960, 'forty-three thousand nine hundred sixty');\nINSERT INTO t2 VALUES(10667, 4448, 'four thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(10668, 69225, 'sixty-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(10669, 59130, 'fifty-nine thousand one hundred thirty');\nINSERT INTO t2 VALUES(10670, 72997, 'seventy-two thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(10671, 83128, 'eighty-three thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(10672, 69655, 'sixty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(10673, 88838, 'eighty-eight thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(10674, 55192, 'fifty-five thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(10675, 38515, 'thirty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(10676, 56034, 'fifty-six thousand thirty-four');\nINSERT INTO t2 VALUES(10677, 65644, 'sixty-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(10678, 89931, 'eighty-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(10679, 37174, 'thirty-seven thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(10680, 71928, 'seventy-one thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(10681, 26192, 'twenty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(10682, 89994, 'eighty-nine thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(10683, 24821, 'twenty-four thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(10684, 52649, 'fifty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(10685, 25694, 'twenty-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(10686, 72433, 'seventy-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(10687, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(10688, 13395, 'thirteen thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(10689, 25126, 'twenty-five thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(10690, 88564, 'eighty-eight thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(10691, 47447, 'forty-seven thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(10692, 50203, 'fifty thousand two hundred three');\nINSERT INTO t2 VALUES(10693, 93609, 'ninety-three thousand six hundred nine');\nINSERT INTO t2 VALUES(10694, 28282, 'twenty-eight thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(10695, 340, 'three hundred forty');\nINSERT INTO t2 VALUES(10696, 56672, 'fifty-six thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(10697, 54043, 'fifty-four thousand forty-three');\nINSERT INTO t2 VALUES(10698, 60470, 'sixty thousand four hundred seventy');\nINSERT INTO t2 VALUES(10699, 36094, 'thirty-six thousand ninety-four');\nINSERT INTO t2 VALUES(10700, 67389, 'sixty-seven thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(10701, 63320, 'sixty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(10702, 65356, 'sixty-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(10703, 76204, 'seventy-six thousand two hundred four');\nINSERT INTO t2 VALUES(10704, 58666, 'fifty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(10705, 36466, 'thirty-six thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(10706, 4679, 'four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(10707, 27467, 'twenty-seven thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(10708, 28724, 'twenty-eight thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(10709, 27094, 'twenty-seven thousand ninety-four');\nINSERT INTO t2 VALUES(10710, 59500, 'fifty-nine thousand five hundred');\nINSERT INTO t2 VALUES(10711, 26473, 'twenty-six thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(10712, 14153, 'fourteen thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(10713, 88585, 'eighty-eight thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(10714, 97716, 'ninety-seven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(10715, 48671, 'forty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(10716, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(10717, 56084, 'fifty-six thousand eighty-four');\nINSERT INTO t2 VALUES(10718, 11175, 'eleven thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(10719, 23375, 'twenty-three thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(10720, 58311, 'fifty-eight thousand three hundred eleven');\nINSERT INTO t2 VALUES(10721, 51404, 'fifty-one thousand four hundred four');\nINSERT INTO t2 VALUES(10722, 67711, 'sixty-seven thousand seven hundred eleven');\nINSERT INTO t2 VALUES(10723, 12209, 'twelve thousand two hundred nine');\nINSERT INTO t2 VALUES(10724, 39613, 'thirty-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(10725, 87999, 'eighty-seven thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(10726, 3514, 'three thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10727, 18092, 'eighteen thousand ninety-two');\nINSERT INTO t2 VALUES(10728, 43583, 'forty-three thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(10729, 23103, 'twenty-three thousand one hundred three');\nINSERT INTO t2 VALUES(10730, 81384, 'eighty-one thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(10731, 26286, 'twenty-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(10732, 94855, 'ninety-four thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(10733, 75849, 'seventy-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10734, 18198, 'eighteen thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(10735, 92810, 'ninety-two thousand eight hundred ten');\nINSERT INTO t2 VALUES(10736, 7140, 'seven thousand one hundred forty');\nINSERT INTO t2 VALUES(10737, 75210, 'seventy-five thousand two hundred ten');\nINSERT INTO t2 VALUES(10738, 10530, 'ten thousand five hundred thirty');\nINSERT INTO t2 VALUES(10739, 24349, 'twenty-four thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(10740, 18551, 'eighteen thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(10741, 35815, 'thirty-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(10742, 55969, 'fifty-five thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(10743, 34475, 'thirty-four thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(10744, 52758, 'fifty-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(10745, 14418, 'fourteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(10746, 84544, 'eighty-four thousand five hundred forty-four');\nINSERT INTO t2 VALUES(10747, 92836, 'ninety-two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(10748, 19636, 'nineteen thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(10749, 63412, 'sixty-three thousand four hundred twelve');\nINSERT INTO t2 VALUES(10750, 28284, 'twenty-eight thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(10751, 79234, 'seventy-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(10752, 8164, 'eight thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(10753, 74914, 'seventy-four thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10754, 31733, 'thirty-one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(10755, 69954, 'sixty-nine thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(10756, 44118, 'forty-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(10757, 73454, 'seventy-three thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(10758, 38685, 'thirty-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(10759, 61503, 'sixty-one thousand five hundred three');\nINSERT INTO t2 VALUES(10760, 6231, 'six thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(10761, 60366, 'sixty thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(10762, 50989, 'fifty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(10763, 21423, 'twenty-one thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(10764, 78163, 'seventy-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(10765, 4930, 'four thousand nine hundred thirty');\nINSERT INTO t2 VALUES(10766, 68137, 'sixty-eight thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(10767, 70190, 'seventy thousand one hundred ninety');\nINSERT INTO t2 VALUES(10768, 24999, 'twenty-four thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(10769, 26462, 'twenty-six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(10770, 22526, 'twenty-two thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(10771, 98808, 'ninety-eight thousand eight hundred eight');\nINSERT INTO t2 VALUES(10772, 87470, 'eighty-seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(10773, 6252, 'six thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(10774, 37938, 'thirty-seven thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(10775, 88639, 'eighty-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(10776, 57730, 'fifty-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(10777, 28511, 'twenty-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(10778, 66067, 'sixty-six thousand sixty-seven');\nINSERT INTO t2 VALUES(10779, 18084, 'eighteen thousand eighty-four');\nINSERT INTO t2 VALUES(10780, 67669, 'sixty-seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(10781, 6972, 'six thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(10782, 34181, 'thirty-four thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(10783, 89491, 'eighty-nine thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(10784, 99624, 'ninety-nine thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(10785, 72356, 'seventy-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(10786, 79924, 'seventy-nine thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(10787, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(10788, 83639, 'eighty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(10789, 89510, 'eighty-nine thousand five hundred ten');\nINSERT INTO t2 VALUES(10790, 13745, 'thirteen thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(10791, 31065, 'thirty-one thousand sixty-five');\nINSERT INTO t2 VALUES(10792, 30323, 'thirty thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(10793, 5997, 'five thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(10794, 55682, 'fifty-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(10795, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(10796, 31681, 'thirty-one thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(10797, 62939, 'sixty-two thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(10798, 12121, 'twelve thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(10799, 94852, 'ninety-four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(10800, 99297, 'ninety-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(10801, 34861, 'thirty-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(10802, 79531, 'seventy-nine thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(10803, 89549, 'eighty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(10804, 43943, 'forty-three thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(10805, 42746, 'forty-two thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(10806, 41285, 'forty-one thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(10807, 92272, 'ninety-two thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(10808, 1800, 'one thousand eight hundred');\nINSERT INTO t2 VALUES(10809, 99991, 'ninety-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(10810, 21516, 'twenty-one thousand five hundred sixteen');\nINSERT INTO t2 VALUES(10811, 36026, 'thirty-six thousand twenty-six');\nINSERT INTO t2 VALUES(10812, 21447, 'twenty-one thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(10813, 50457, 'fifty thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(10814, 3694, 'three thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(10815, 82787, 'eighty-two thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(10816, 54403, 'fifty-four thousand four hundred three');\nINSERT INTO t2 VALUES(10817, 84102, 'eighty-four thousand one hundred two');\nINSERT INTO t2 VALUES(10818, 38996, 'thirty-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(10819, 15596, 'fifteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(10820, 43086, 'forty-three thousand eighty-six');\nINSERT INTO t2 VALUES(10821, 50109, 'fifty thousand one hundred nine');\nINSERT INTO t2 VALUES(10822, 79831, 'seventy-nine thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(10823, 96309, 'ninety-six thousand three hundred nine');\nINSERT INTO t2 VALUES(10824, 86256, 'eighty-six thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(10825, 3893, 'three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(10826, 79264, 'seventy-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(10827, 76783, 'seventy-six thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(10828, 19945, 'nineteen thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(10829, 77444, 'seventy-seven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(10830, 77707, 'seventy-seven thousand seven hundred seven');\nINSERT INTO t2 VALUES(10831, 22474, 'twenty-two thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(10832, 69607, 'sixty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(10833, 13592, 'thirteen thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(10834, 63966, 'sixty-three thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(10835, 99606, 'ninety-nine thousand six hundred six');\nINSERT INTO t2 VALUES(10836, 76777, 'seventy-six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(10837, 60483, 'sixty thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(10838, 83488, 'eighty-three thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(10839, 16832, 'sixteen thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(10840, 95683, 'ninety-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(10841, 92213, 'ninety-two thousand two hundred thirteen');\nINSERT INTO t2 VALUES(10842, 52507, 'fifty-two thousand five hundred seven');\nINSERT INTO t2 VALUES(10843, 72085, 'seventy-two thousand eighty-five');\nINSERT INTO t2 VALUES(10844, 86689, 'eighty-six thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(10845, 48476, 'forty-eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(10846, 53168, 'fifty-three thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(10847, 27474, 'twenty-seven thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(10848, 42524, 'forty-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(10849, 23269, 'twenty-three thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(10850, 79452, 'seventy-nine thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(10851, 69910, 'sixty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(10852, 16739, 'sixteen thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(10853, 48765, 'forty-eight thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(10854, 66684, 'sixty-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(10855, 83353, 'eighty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(10856, 18824, 'eighteen thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(10857, 64499, 'sixty-four thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(10858, 1897, 'one thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(10859, 24645, 'twenty-four thousand six hundred forty-five');\nINSERT INTO t2 VALUES(10860, 84415, 'eighty-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(10861, 80293, 'eighty thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(10862, 83655, 'eighty-three thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(10863, 77079, 'seventy-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(10864, 87494, 'eighty-seven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(10865, 20426, 'twenty thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(10866, 25450, 'twenty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(10867, 46757, 'forty-six thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(10868, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(10869, 76854, 'seventy-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(10870, 42256, 'forty-two thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(10871, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(10872, 76827, 'seventy-six thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10873, 56774, 'fifty-six thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(10874, 20271, 'twenty thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(10875, 33737, 'thirty-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10876, 49849, 'forty-nine thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10877, 71387, 'seventy-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(10878, 84244, 'eighty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(10879, 23404, 'twenty-three thousand four hundred four');\nINSERT INTO t2 VALUES(10880, 57105, 'fifty-seven thousand one hundred five');\nINSERT INTO t2 VALUES(10881, 10308, 'ten thousand three hundred eight');\nINSERT INTO t2 VALUES(10882, 53225, 'fifty-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(10883, 22316, 'twenty-two thousand three hundred sixteen');\nINSERT INTO t2 VALUES(10884, 55519, 'fifty-five thousand five hundred nineteen');\nINSERT INTO t2 VALUES(10885, 62031, 'sixty-two thousand thirty-one');\nINSERT INTO t2 VALUES(10886, 98416, 'ninety-eight thousand four hundred sixteen');\nINSERT INTO t2 VALUES(10887, 78805, 'seventy-eight thousand eight hundred five');\nINSERT INTO t2 VALUES(10888, 91010, 'ninety-one thousand ten');\nINSERT INTO t2 VALUES(10889, 91909, 'ninety-one thousand nine hundred nine');\nINSERT INTO t2 VALUES(10890, 24768, 'twenty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(10891, 7446, 'seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(10892, 68281, 'sixty-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(10893, 56866, 'fifty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(10894, 87152, 'eighty-seven thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(10895, 27620, 'twenty-seven thousand six hundred twenty');\nINSERT INTO t2 VALUES(10896, 97035, 'ninety-seven thousand thirty-five');\nINSERT INTO t2 VALUES(10897, 60815, 'sixty thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(10898, 6009, 'six thousand nine');\nINSERT INTO t2 VALUES(10899, 14173, 'fourteen thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(10900, 29077, 'twenty-nine thousand seventy-seven');\nINSERT INTO t2 VALUES(10901, 12808, 'twelve thousand eight hundred eight');\nINSERT INTO t2 VALUES(10902, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10903, 97966, 'ninety-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(10904, 687, 'six hundred eighty-seven');\nINSERT INTO t2 VALUES(10905, 16722, 'sixteen thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(10906, 52339, 'fifty-two thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(10907, 11129, 'eleven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(10908, 12667, 'twelve thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(10909, 76205, 'seventy-six thousand two hundred five');\nINSERT INTO t2 VALUES(10910, 95793, 'ninety-five thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(10911, 24445, 'twenty-four thousand four hundred forty-five');\nINSERT INTO t2 VALUES(10912, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(10913, 50407, 'fifty thousand four hundred seven');\nINSERT INTO t2 VALUES(10914, 22850, 'twenty-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(10915, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(10916, 36678, 'thirty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(10917, 31718, 'thirty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(10918, 77318, 'seventy-seven thousand three hundred eighteen');\nINSERT INTO t2 VALUES(10919, 30829, 'thirty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10920, 21796, 'twenty-one thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(10921, 43332, 'forty-three thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(10922, 85776, 'eighty-five thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(10923, 88671, 'eighty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(10924, 13810, 'thirteen thousand eight hundred ten');\nINSERT INTO t2 VALUES(10925, 45766, 'forty-five thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(10926, 13213, 'thirteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(10927, 46815, 'forty-six thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(10928, 17776, 'seventeen thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(10929, 79604, 'seventy-nine thousand six hundred four');\nINSERT INTO t2 VALUES(10930, 56394, 'fifty-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(10931, 97400, 'ninety-seven thousand four hundred');\nINSERT INTO t2 VALUES(10932, 88192, 'eighty-eight thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(10933, 73944, 'seventy-three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(10934, 19323, 'nineteen thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(10935, 48364, 'forty-eight thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(10936, 68051, 'sixty-eight thousand fifty-one');\nINSERT INTO t2 VALUES(10937, 69280, 'sixty-nine thousand two hundred eighty');\nINSERT INTO t2 VALUES(10938, 25227, 'twenty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(10939, 20913, 'twenty thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(10940, 95092, 'ninety-five thousand ninety-two');\nINSERT INTO t2 VALUES(10941, 97423, 'ninety-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(10942, 86661, 'eighty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(10943, 81235, 'eighty-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(10944, 74133, 'seventy-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(10945, 66947, 'sixty-six thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(10946, 59842, 'fifty-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(10947, 28041, 'twenty-eight thousand forty-one');\nINSERT INTO t2 VALUES(10948, 71678, 'seventy-one thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(10949, 17366, 'seventeen thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(10950, 69829, 'sixty-nine thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10951, 79703, 'seventy-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(10952, 88285, 'eighty-eight thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(10953, 12128, 'twelve thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(10954, 61107, 'sixty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(10955, 46535, 'forty-six thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(10956, 50874, 'fifty thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(10957, 31829, 'thirty-one thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(10958, 25709, 'twenty-five thousand seven hundred nine');\nINSERT INTO t2 VALUES(10959, 98403, 'ninety-eight thousand four hundred three');\nINSERT INTO t2 VALUES(10960, 18546, 'eighteen thousand five hundred forty-six');\nINSERT INTO t2 VALUES(10961, 96806, 'ninety-six thousand eight hundred six');\nINSERT INTO t2 VALUES(10962, 51320, 'fifty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(10963, 68888, 'sixty-eight thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(10964, 29801, 'twenty-nine thousand eight hundred one');\nINSERT INTO t2 VALUES(10965, 82083, 'eighty-two thousand eighty-three');\nINSERT INTO t2 VALUES(10966, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(10967, 25599, 'twenty-five thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(10968, 99441, 'ninety-nine thousand four hundred forty-one');\nINSERT INTO t2 VALUES(10969, 67990, 'sixty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(10970, 86872, 'eighty-six thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(10971, 38112, 'thirty-eight thousand one hundred twelve');\nINSERT INTO t2 VALUES(10972, 83330, 'eighty-three thousand three hundred thirty');\nINSERT INTO t2 VALUES(10973, 23907, 'twenty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(10974, 92240, 'ninety-two thousand two hundred forty');\nINSERT INTO t2 VALUES(10975, 87860, 'eighty-seven thousand eight hundred sixty');\nINSERT INTO t2 VALUES(10976, 80781, 'eighty thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(10977, 33514, 'thirty-three thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10978, 89202, 'eighty-nine thousand two hundred two');\nINSERT INTO t2 VALUES(10979, 51134, 'fifty-one thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(10980, 13255, 'thirteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(10981, 48732, 'forty-eight thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(10982, 71919, 'seventy-one thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(10983, 83827, 'eighty-three thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(10984, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t2 VALUES(10985, 16502, 'sixteen thousand five hundred two');\nINSERT INTO t2 VALUES(10986, 71914, 'seventy-one thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(10987, 77896, 'seventy-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(10988, 52849, 'fifty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(10989, 76570, 'seventy-six thousand five hundred seventy');\nINSERT INTO t2 VALUES(10990, 27514, 'twenty-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(10991, 50267, 'fifty thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(10992, 70041, 'seventy thousand forty-one');\nINSERT INTO t2 VALUES(10993, 70264, 'seventy thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(10994, 17474, 'seventeen thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(10995, 71737, 'seventy-one thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(10996, 51956, 'fifty-one thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(10997, 30555, 'thirty thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(10998, 51404, 'fifty-one thousand four hundred four');\nINSERT INTO t2 VALUES(10999, 65603, 'sixty-five thousand six hundred three');\nINSERT INTO t2 VALUES(11000, 89946, 'eighty-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(11001, 95690, 'ninety-five thousand six hundred ninety');\nINSERT INTO t2 VALUES(11002, 44375, 'forty-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(11003, 80579, 'eighty thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(11004, 55264, 'fifty-five thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11005, 5664, 'five thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(11006, 71180, 'seventy-one thousand one hundred eighty');\nINSERT INTO t2 VALUES(11007, 29479, 'twenty-nine thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(11008, 81332, 'eighty-one thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(11009, 74558, 'seventy-four thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(11010, 30712, 'thirty thousand seven hundred twelve');\nINSERT INTO t2 VALUES(11011, 25073, 'twenty-five thousand seventy-three');\nINSERT INTO t2 VALUES(11012, 99322, 'ninety-nine thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(11013, 10091, 'ten thousand ninety-one');\nINSERT INTO t2 VALUES(11014, 54073, 'fifty-four thousand seventy-three');\nINSERT INTO t2 VALUES(11015, 35525, 'thirty-five thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(11016, 38115, 'thirty-eight thousand one hundred fifteen');\nINSERT INTO t2 VALUES(11017, 53515, 'fifty-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11018, 54383, 'fifty-four thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(11019, 78708, 'seventy-eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(11020, 70507, 'seventy thousand five hundred seven');\nINSERT INTO t2 VALUES(11021, 86465, 'eighty-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(11022, 53726, 'fifty-three thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(11023, 83728, 'eighty-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(11024, 98432, 'ninety-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(11025, 72654, 'seventy-two thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(11026, 17398, 'seventeen thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(11027, 93682, 'ninety-three thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(11028, 17142, 'seventeen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(11029, 90899, 'ninety thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(11030, 88618, 'eighty-eight thousand six hundred eighteen');\nINSERT INTO t2 VALUES(11031, 10818, 'ten thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(11032, 11278, 'eleven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(11033, 49406, 'forty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(11034, 25370, 'twenty-five thousand three hundred seventy');\nINSERT INTO t2 VALUES(11035, 60755, 'sixty thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(11036, 9455, 'nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(11037, 52054, 'fifty-two thousand fifty-four');\nINSERT INTO t2 VALUES(11038, 29373, 'twenty-nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(11039, 81464, 'eighty-one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(11040, 78036, 'seventy-eight thousand thirty-six');\nINSERT INTO t2 VALUES(11041, 86589, 'eighty-six thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(11042, 92884, 'ninety-two thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(11043, 20886, 'twenty thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(11044, 45433, 'forty-five thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(11045, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(11046, 97624, 'ninety-seven thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(11047, 35001, 'thirty-five thousand one');\nINSERT INTO t2 VALUES(11048, 2896, 'two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(11049, 2623, 'two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(11050, 48313, 'forty-eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(11051, 19472, 'nineteen thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(11052, 65149, 'sixty-five thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11053, 63538, 'sixty-three thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(11054, 68727, 'sixty-eight thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(11055, 78802, 'seventy-eight thousand eight hundred two');\nINSERT INTO t2 VALUES(11056, 64430, 'sixty-four thousand four hundred thirty');\nINSERT INTO t2 VALUES(11057, 93158, 'ninety-three thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(11058, 77277, 'seventy-seven thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(11059, 30571, 'thirty thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(11060, 6045, 'six thousand forty-five');\nINSERT INTO t2 VALUES(11061, 94702, 'ninety-four thousand seven hundred two');\nINSERT INTO t2 VALUES(11062, 49535, 'forty-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(11063, 35387, 'thirty-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(11064, 57822, 'fifty-seven thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(11065, 57331, 'fifty-seven thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(11066, 26207, 'twenty-six thousand two hundred seven');\nINSERT INTO t2 VALUES(11067, 98731, 'ninety-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(11068, 19871, 'nineteen thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(11069, 80542, 'eighty thousand five hundred forty-two');\nINSERT INTO t2 VALUES(11070, 93010, 'ninety-three thousand ten');\nINSERT INTO t2 VALUES(11071, 65983, 'sixty-five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(11072, 98626, 'ninety-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(11073, 44205, 'forty-four thousand two hundred five');\nINSERT INTO t2 VALUES(11074, 73955, 'seventy-three thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(11075, 68851, 'sixty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(11076, 83412, 'eighty-three thousand four hundred twelve');\nINSERT INTO t2 VALUES(11077, 65024, 'sixty-five thousand twenty-four');\nINSERT INTO t2 VALUES(11078, 56643, 'fifty-six thousand six hundred forty-three');\nINSERT INTO t2 VALUES(11079, 8944, 'eight thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(11080, 81046, 'eighty-one thousand forty-six');\nINSERT INTO t2 VALUES(11081, 31978, 'thirty-one thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(11082, 26444, 'twenty-six thousand four hundred forty-four');\nINSERT INTO t2 VALUES(11083, 37187, 'thirty-seven thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11084, 29012, 'twenty-nine thousand twelve');\nINSERT INTO t2 VALUES(11085, 63489, 'sixty-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(11086, 25285, 'twenty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(11087, 69593, 'sixty-nine thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(11088, 73612, 'seventy-three thousand six hundred twelve');\nINSERT INTO t2 VALUES(11089, 80948, 'eighty thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11090, 1773, 'one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(11091, 21454, 'twenty-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11092, 94047, 'ninety-four thousand forty-seven');\nINSERT INTO t2 VALUES(11093, 82533, 'eighty-two thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(11094, 94783, 'ninety-four thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(11095, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(11096, 26287, 'twenty-six thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(11097, 13571, 'thirteen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(11098, 84086, 'eighty-four thousand eighty-six');\nINSERT INTO t2 VALUES(11099, 29013, 'twenty-nine thousand thirteen');\nINSERT INTO t2 VALUES(11100, 37013, 'thirty-seven thousand thirteen');\nINSERT INTO t2 VALUES(11101, 2412, 'two thousand four hundred twelve');\nINSERT INTO t2 VALUES(11102, 70505, 'seventy thousand five hundred five');\nINSERT INTO t2 VALUES(11103, 92981, 'ninety-two thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(11104, 655, 'six hundred fifty-five');\nINSERT INTO t2 VALUES(11105, 24216, 'twenty-four thousand two hundred sixteen');\nINSERT INTO t2 VALUES(11106, 72354, 'seventy-two thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(11107, 66760, 'sixty-six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(11108, 73648, 'seventy-three thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(11109, 66951, 'sixty-six thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11110, 82632, 'eighty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(11111, 14724, 'fourteen thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(11112, 4917, 'four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(11113, 62041, 'sixty-two thousand forty-one');\nINSERT INTO t2 VALUES(11114, 42471, 'forty-two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(11115, 14534, 'fourteen thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(11116, 58190, 'fifty-eight thousand one hundred ninety');\nINSERT INTO t2 VALUES(11117, 49776, 'forty-nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(11118, 94313, 'ninety-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(11119, 84177, 'eighty-four thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(11120, 30738, 'thirty thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(11121, 57318, 'fifty-seven thousand three hundred eighteen');\nINSERT INTO t2 VALUES(11122, 95043, 'ninety-five thousand forty-three');\nINSERT INTO t2 VALUES(11123, 58830, 'fifty-eight thousand eight hundred thirty');\nINSERT INTO t2 VALUES(11124, 24284, 'twenty-four thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(11125, 98477, 'ninety-eight thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(11126, 12613, 'twelve thousand six hundred thirteen');\nINSERT INTO t2 VALUES(11127, 37619, 'thirty-seven thousand six hundred nineteen');\nINSERT INTO t2 VALUES(11128, 11500, 'eleven thousand five hundred');\nINSERT INTO t2 VALUES(11129, 55604, 'fifty-five thousand six hundred four');\nINSERT INTO t2 VALUES(11130, 22877, 'twenty-two thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(11131, 16749, 'sixteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(11132, 18828, 'eighteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11133, 60940, 'sixty thousand nine hundred forty');\nINSERT INTO t2 VALUES(11134, 48183, 'forty-eight thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(11135, 58944, 'fifty-eight thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(11136, 15084, 'fifteen thousand eighty-four');\nINSERT INTO t2 VALUES(11137, 44036, 'forty-four thousand thirty-six');\nINSERT INTO t2 VALUES(11138, 42693, 'forty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(11139, 54940, 'fifty-four thousand nine hundred forty');\nINSERT INTO t2 VALUES(11140, 23992, 'twenty-three thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(11141, 1492, 'one thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(11142, 31980, 'thirty-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(11143, 83912, 'eighty-three thousand nine hundred twelve');\nINSERT INTO t2 VALUES(11144, 77782, 'seventy-seven thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(11145, 27882, 'twenty-seven thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(11146, 93825, 'ninety-three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(11147, 37891, 'thirty-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11148, 72808, 'seventy-two thousand eight hundred eight');\nINSERT INTO t2 VALUES(11149, 8201, 'eight thousand two hundred one');\nINSERT INTO t2 VALUES(11150, 73251, 'seventy-three thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(11151, 51390, 'fifty-one thousand three hundred ninety');\nINSERT INTO t2 VALUES(11152, 3938, 'three thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(11153, 57, 'fifty-seven');\nINSERT INTO t2 VALUES(11154, 63034, 'sixty-three thousand thirty-four');\nINSERT INTO t2 VALUES(11155, 57609, 'fifty-seven thousand six hundred nine');\nINSERT INTO t2 VALUES(11156, 59675, 'fifty-nine thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(11157, 34098, 'thirty-four thousand ninety-eight');\nINSERT INTO t2 VALUES(11158, 57002, 'fifty-seven thousand two');\nINSERT INTO t2 VALUES(11159, 11066, 'eleven thousand sixty-six');\nINSERT INTO t2 VALUES(11160, 39384, 'thirty-nine thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(11161, 68040, 'sixty-eight thousand forty');\nINSERT INTO t2 VALUES(11162, 35644, 'thirty-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(11163, 39798, 'thirty-nine thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(11164, 87549, 'eighty-seven thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(11165, 1478, 'one thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(11166, 91272, 'ninety-one thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(11167, 59416, 'fifty-nine thousand four hundred sixteen');\nINSERT INTO t2 VALUES(11168, 66762, 'sixty-six thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(11169, 53341, 'fifty-three thousand three hundred forty-one');\nINSERT INTO t2 VALUES(11170, 38118, 'thirty-eight thousand one hundred eighteen');\nINSERT INTO t2 VALUES(11171, 99703, 'ninety-nine thousand seven hundred three');\nINSERT INTO t2 VALUES(11172, 95658, 'ninety-five thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(11173, 42111, 'forty-two thousand one hundred eleven');\nINSERT INTO t2 VALUES(11174, 37474, 'thirty-seven thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(11175, 5121, 'five thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(11176, 3951, 'three thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11177, 60485, 'sixty thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(11178, 47007, 'forty-seven thousand seven');\nINSERT INTO t2 VALUES(11179, 19326, 'nineteen thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(11180, 73597, 'seventy-three thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(11181, 3136, 'three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(11182, 34164, 'thirty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(11183, 40361, 'forty thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(11184, 91454, 'ninety-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11185, 91800, 'ninety-one thousand eight hundred');\nINSERT INTO t2 VALUES(11186, 49879, 'forty-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(11187, 97187, 'ninety-seven thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11188, 53084, 'fifty-three thousand eighty-four');\nINSERT INTO t2 VALUES(11189, 44839, 'forty-four thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(11190, 8010, 'eight thousand ten');\nINSERT INTO t2 VALUES(11191, 88273, 'eighty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(11192, 82247, 'eighty-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(11193, 38086, 'thirty-eight thousand eighty-six');\nINSERT INTO t2 VALUES(11194, 78740, 'seventy-eight thousand seven hundred forty');\nINSERT INTO t2 VALUES(11195, 80562, 'eighty thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(11196, 17653, 'seventeen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(11197, 84794, 'eighty-four thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(11198, 19449, 'nineteen thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(11199, 82418, 'eighty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11200, 50280, 'fifty thousand two hundred eighty');\nINSERT INTO t2 VALUES(11201, 44819, 'forty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(11202, 44731, 'forty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(11203, 45659, 'forty-five thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(11204, 88278, 'eighty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(11205, 62226, 'sixty-two thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(11206, 67097, 'sixty-seven thousand ninety-seven');\nINSERT INTO t2 VALUES(11207, 56630, 'fifty-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(11208, 98209, 'ninety-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(11209, 4773, 'four thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(11210, 78222, 'seventy-eight thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(11211, 65454, 'sixty-five thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11212, 16231, 'sixteen thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(11213, 98520, 'ninety-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(11214, 45929, 'forty-five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(11215, 71350, 'seventy-one thousand three hundred fifty');\nINSERT INTO t2 VALUES(11216, 91623, 'ninety-one thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(11217, 69422, 'sixty-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11218, 45140, 'forty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(11219, 9926, 'nine thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(11220, 25606, 'twenty-five thousand six hundred six');\nINSERT INTO t2 VALUES(11221, 67415, 'sixty-seven thousand four hundred fifteen');\nINSERT INTO t2 VALUES(11222, 4901, 'four thousand nine hundred one');\nINSERT INTO t2 VALUES(11223, 54286, 'fifty-four thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(11224, 43243, 'forty-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(11225, 97005, 'ninety-seven thousand five');\nINSERT INTO t2 VALUES(11226, 58465, 'fifty-eight thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(11227, 23787, 'twenty-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(11228, 44946, 'forty-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(11229, 13309, 'thirteen thousand three hundred nine');\nINSERT INTO t2 VALUES(11230, 79963, 'seventy-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(11231, 96714, 'ninety-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(11232, 12624, 'twelve thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(11233, 24612, 'twenty-four thousand six hundred twelve');\nINSERT INTO t2 VALUES(11234, 54446, 'fifty-four thousand four hundred forty-six');\nINSERT INTO t2 VALUES(11235, 50194, 'fifty thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(11236, 70959, 'seventy thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(11237, 8674, 'eight thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(11238, 32088, 'thirty-two thousand eighty-eight');\nINSERT INTO t2 VALUES(11239, 22540, 'twenty-two thousand five hundred forty');\nINSERT INTO t2 VALUES(11240, 74948, 'seventy-four thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11241, 52210, 'fifty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(11242, 97912, 'ninety-seven thousand nine hundred twelve');\nINSERT INTO t2 VALUES(11243, 36294, 'thirty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(11244, 9121, 'nine thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(11245, 8471, 'eight thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(11246, 40388, 'forty thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(11247, 27986, 'twenty-seven thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(11248, 81506, 'eighty-one thousand five hundred six');\nINSERT INTO t2 VALUES(11249, 4755, 'four thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(11250, 2410, 'two thousand four hundred ten');\nINSERT INTO t2 VALUES(11251, 77363, 'seventy-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(11252, 96853, 'ninety-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(11253, 34296, 'thirty-four thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(11254, 65621, 'sixty-five thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11255, 70002, 'seventy thousand two');\nINSERT INTO t2 VALUES(11256, 53791, 'fifty-three thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(11257, 82414, 'eighty-two thousand four hundred fourteen');\nINSERT INTO t2 VALUES(11258, 5405, 'five thousand four hundred five');\nINSERT INTO t2 VALUES(11259, 87720, 'eighty-seven thousand seven hundred twenty');\nINSERT INTO t2 VALUES(11260, 63913, 'sixty-three thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(11261, 77891, 'seventy-seven thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11262, 94606, 'ninety-four thousand six hundred six');\nINSERT INTO t2 VALUES(11263, 85213, 'eighty-five thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11264, 38974, 'thirty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(11265, 99226, 'ninety-nine thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(11266, 9572, 'nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(11267, 57776, 'fifty-seven thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(11268, 51724, 'fifty-one thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(11269, 16859, 'sixteen thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(11270, 18462, 'eighteen thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11271, 12263, 'twelve thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(11272, 3997, 'three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(11273, 79652, 'seventy-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(11274, 43995, 'forty-three thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(11275, 11411, 'eleven thousand four hundred eleven');\nINSERT INTO t2 VALUES(11276, 39174, 'thirty-nine thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(11277, 46702, 'forty-six thousand seven hundred two');\nINSERT INTO t2 VALUES(11278, 79103, 'seventy-nine thousand one hundred three');\nINSERT INTO t2 VALUES(11279, 49238, 'forty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(11280, 55764, 'fifty-five thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(11281, 86412, 'eighty-six thousand four hundred twelve');\nINSERT INTO t2 VALUES(11282, 21709, 'twenty-one thousand seven hundred nine');\nINSERT INTO t2 VALUES(11283, 70217, 'seventy thousand two hundred seventeen');\nINSERT INTO t2 VALUES(11284, 64361, 'sixty-four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(11285, 51986, 'fifty-one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(11286, 68338, 'sixty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(11287, 76554, 'seventy-six thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(11288, 49223, 'forty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(11289, 66987, 'sixty-six thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(11290, 56180, 'fifty-six thousand one hundred eighty');\nINSERT INTO t2 VALUES(11291, 12501, 'twelve thousand five hundred one');\nINSERT INTO t2 VALUES(11292, 18213, 'eighteen thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11293, 4998, 'four thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(11294, 71028, 'seventy-one thousand twenty-eight');\nINSERT INTO t2 VALUES(11295, 682, 'six hundred eighty-two');\nINSERT INTO t2 VALUES(11296, 69445, 'sixty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(11297, 96604, 'ninety-six thousand six hundred four');\nINSERT INTO t2 VALUES(11298, 72066, 'seventy-two thousand sixty-six');\nINSERT INTO t2 VALUES(11299, 41132, 'forty-one thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(11300, 97323, 'ninety-seven thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(11301, 17820, 'seventeen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(11302, 26196, 'twenty-six thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(11303, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(11304, 49685, 'forty-nine thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(11305, 81597, 'eighty-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(11306, 48301, 'forty-eight thousand three hundred one');\nINSERT INTO t2 VALUES(11307, 99068, 'ninety-nine thousand sixty-eight');\nINSERT INTO t2 VALUES(11308, 55647, 'fifty-five thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(11309, 95134, 'ninety-five thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(11310, 58462, 'fifty-eight thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11311, 60162, 'sixty thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(11312, 37805, 'thirty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(11313, 87966, 'eighty-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(11314, 19272, 'nineteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(11315, 5036, 'five thousand thirty-six');\nINSERT INTO t2 VALUES(11316, 25234, 'twenty-five thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11317, 99980, 'ninety-nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(11318, 18415, 'eighteen thousand four hundred fifteen');\nINSERT INTO t2 VALUES(11319, 99659, 'ninety-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(11320, 8262, 'eight thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(11321, 63517, 'sixty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(11322, 93941, 'ninety-three thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(11323, 41639, 'forty-one thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(11324, 58264, 'fifty-eight thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11325, 43052, 'forty-three thousand fifty-two');\nINSERT INTO t2 VALUES(11326, 17263, 'seventeen thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(11327, 84864, 'eighty-four thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(11328, 95325, 'ninety-five thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11329, 39384, 'thirty-nine thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(11330, 86682, 'eighty-six thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(11331, 94815, 'ninety-four thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(11332, 34357, 'thirty-four thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(11333, 18962, 'eighteen thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(11334, 92813, 'ninety-two thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(11335, 20683, 'twenty thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(11336, 67774, 'sixty-seven thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(11337, 2195, 'two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(11338, 44505, 'forty-four thousand five hundred five');\nINSERT INTO t2 VALUES(11339, 32619, 'thirty-two thousand six hundred nineteen');\nINSERT INTO t2 VALUES(11340, 97144, 'ninety-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(11341, 65466, 'sixty-five thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(11342, 93088, 'ninety-three thousand eighty-eight');\nINSERT INTO t2 VALUES(11343, 82054, 'eighty-two thousand fifty-four');\nINSERT INTO t2 VALUES(11344, 44290, 'forty-four thousand two hundred ninety');\nINSERT INTO t2 VALUES(11345, 90710, 'ninety thousand seven hundred ten');\nINSERT INTO t2 VALUES(11346, 78039, 'seventy-eight thousand thirty-nine');\nINSERT INTO t2 VALUES(11347, 97936, 'ninety-seven thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(11348, 84543, 'eighty-four thousand five hundred forty-three');\nINSERT INTO t2 VALUES(11349, 4454, 'four thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11350, 64766, 'sixty-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(11351, 98230, 'ninety-eight thousand two hundred thirty');\nINSERT INTO t2 VALUES(11352, 80456, 'eighty thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(11353, 97469, 'ninety-seven thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(11354, 29708, 'twenty-nine thousand seven hundred eight');\nINSERT INTO t2 VALUES(11355, 72899, 'seventy-two thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(11356, 84166, 'eighty-four thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(11357, 44137, 'forty-four thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(11358, 90092, 'ninety thousand ninety-two');\nINSERT INTO t2 VALUES(11359, 25981, 'twenty-five thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(11360, 54521, 'fifty-four thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(11361, 10960, 'ten thousand nine hundred sixty');\nINSERT INTO t2 VALUES(11362, 97533, 'ninety-seven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(11363, 38415, 'thirty-eight thousand four hundred fifteen');\nINSERT INTO t2 VALUES(11364, 82531, 'eighty-two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(11365, 25737, 'twenty-five thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(11366, 72723, 'seventy-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(11367, 11245, 'eleven thousand two hundred forty-five');\nINSERT INTO t2 VALUES(11368, 72638, 'seventy-two thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(11369, 35158, 'thirty-five thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(11370, 10151, 'ten thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(11371, 98778, 'ninety-eight thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(11372, 64933, 'sixty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(11373, 5031, 'five thousand thirty-one');\nINSERT INTO t2 VALUES(11374, 57671, 'fifty-seven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(11375, 89451, 'eighty-nine thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(11376, 97789, 'ninety-seven thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(11377, 22269, 'twenty-two thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(11378, 28418, 'twenty-eight thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11379, 79055, 'seventy-nine thousand fifty-five');\nINSERT INTO t2 VALUES(11380, 53497, 'fifty-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(11381, 73553, 'seventy-three thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(11382, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(11383, 44596, 'forty-four thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(11384, 32902, 'thirty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(11385, 75976, 'seventy-five thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(11386, 24375, 'twenty-four thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(11387, 19413, 'nineteen thousand four hundred thirteen');\nINSERT INTO t2 VALUES(11388, 30768, 'thirty thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(11389, 54280, 'fifty-four thousand two hundred eighty');\nINSERT INTO t2 VALUES(11390, 92101, 'ninety-two thousand one hundred one');\nINSERT INTO t2 VALUES(11391, 63374, 'sixty-three thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(11392, 46798, 'forty-six thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(11393, 67780, 'sixty-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(11394, 91916, 'ninety-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(11395, 15311, 'fifteen thousand three hundred eleven');\nINSERT INTO t2 VALUES(11396, 36292, 'thirty-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11397, 1411, 'one thousand four hundred eleven');\nINSERT INTO t2 VALUES(11398, 48828, 'forty-eight thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11399, 74199, 'seventy-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(11400, 38939, 'thirty-eight thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(11401, 8412, 'eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(11402, 64788, 'sixty-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(11403, 27639, 'twenty-seven thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(11404, 2082, 'two thousand eighty-two');\nINSERT INTO t2 VALUES(11405, 60516, 'sixty thousand five hundred sixteen');\nINSERT INTO t2 VALUES(11406, 41992, 'forty-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(11407, 63459, 'sixty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(11408, 22722, 'twenty-two thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(11409, 5917, 'five thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(11410, 19909, 'nineteen thousand nine hundred nine');\nINSERT INTO t2 VALUES(11411, 30427, 'thirty thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(11412, 96446, 'ninety-six thousand four hundred forty-six');\nINSERT INTO t2 VALUES(11413, 18572, 'eighteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(11414, 15934, 'fifteen thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(11415, 50971, 'fifty thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(11416, 11234, 'eleven thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11417, 70857, 'seventy thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(11418, 47694, 'forty-seven thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(11419, 69520, 'sixty-nine thousand five hundred twenty');\nINSERT INTO t2 VALUES(11420, 35356, 'thirty-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(11421, 33500, 'thirty-three thousand five hundred');\nINSERT INTO t2 VALUES(11422, 58444, 'fifty-eight thousand four hundred forty-four');\nINSERT INTO t2 VALUES(11423, 77609, 'seventy-seven thousand six hundred nine');\nINSERT INTO t2 VALUES(11424, 69195, 'sixty-nine thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(11425, 26739, 'twenty-six thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(11426, 83383, 'eighty-three thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(11427, 78422, 'seventy-eight thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11428, 84205, 'eighty-four thousand two hundred five');\nINSERT INTO t2 VALUES(11429, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(11430, 39264, 'thirty-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11431, 28084, 'twenty-eight thousand eighty-four');\nINSERT INTO t2 VALUES(11432, 82944, 'eighty-two thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(11433, 83718, 'eighty-three thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(11434, 89759, 'eighty-nine thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(11435, 91386, 'ninety-one thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(11436, 10329, 'ten thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(11437, 55462, 'fifty-five thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11438, 58996, 'fifty-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(11439, 26648, 'twenty-six thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(11440, 29325, 'twenty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11441, 72918, 'seventy-two thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(11442, 14732, 'fourteen thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(11443, 3321, 'three thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(11444, 47202, 'forty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(11445, 37812, 'thirty-seven thousand eight hundred twelve');\nINSERT INTO t2 VALUES(11446, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t2 VALUES(11447, 81871, 'eighty-one thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(11448, 50975, 'fifty thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(11449, 57084, 'fifty-seven thousand eighty-four');\nINSERT INTO t2 VALUES(11450, 33860, 'thirty-three thousand eight hundred sixty');\nINSERT INTO t2 VALUES(11451, 8294, 'eight thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(11452, 50084, 'fifty thousand eighty-four');\nINSERT INTO t2 VALUES(11453, 21911, 'twenty-one thousand nine hundred eleven');\nINSERT INTO t2 VALUES(11454, 36990, 'thirty-six thousand nine hundred ninety');\nINSERT INTO t2 VALUES(11455, 94253, 'ninety-four thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(11456, 11338, 'eleven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(11457, 92754, 'ninety-two thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(11458, 98163, 'ninety-eight thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(11459, 27244, 'twenty-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(11460, 24958, 'twenty-four thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(11461, 40685, 'forty thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(11462, 52858, 'fifty-two thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(11463, 18989, 'eighteen thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(11464, 49621, 'forty-nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11465, 3621, 'three thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11466, 17378, 'seventeen thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(11467, 15046, 'fifteen thousand forty-six');\nINSERT INTO t2 VALUES(11468, 41537, 'forty-one thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(11469, 4487, 'four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(11470, 28446, 'twenty-eight thousand four hundred forty-six');\nINSERT INTO t2 VALUES(11471, 87330, 'eighty-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(11472, 9864, 'nine thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(11473, 78678, 'seventy-eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(11474, 61738, 'sixty-one thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(11475, 32515, 'thirty-two thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11476, 54501, 'fifty-four thousand five hundred one');\nINSERT INTO t2 VALUES(11477, 28080, 'twenty-eight thousand eighty');\nINSERT INTO t2 VALUES(11478, 80667, 'eighty thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(11479, 41590, 'forty-one thousand five hundred ninety');\nINSERT INTO t2 VALUES(11480, 59287, 'fifty-nine thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(11481, 29845, 'twenty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(11482, 19612, 'nineteen thousand six hundred twelve');\nINSERT INTO t2 VALUES(11483, 56760, 'fifty-six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(11484, 59205, 'fifty-nine thousand two hundred five');\nINSERT INTO t2 VALUES(11485, 3400, 'three thousand four hundred');\nINSERT INTO t2 VALUES(11486, 6700, 'six thousand seven hundred');\nINSERT INTO t2 VALUES(11487, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(11488, 19886, 'nineteen thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(11489, 74984, 'seventy-four thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(11490, 3878, 'three thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(11491, 93780, 'ninety-three thousand seven hundred eighty');\nINSERT INTO t2 VALUES(11492, 76292, 'seventy-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11493, 57769, 'fifty-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(11494, 11048, 'eleven thousand forty-eight');\nINSERT INTO t2 VALUES(11495, 87273, 'eighty-seven thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(11496, 82585, 'eighty-two thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(11497, 40590, 'forty thousand five hundred ninety');\nINSERT INTO t2 VALUES(11498, 86326, 'eighty-six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(11499, 71296, 'seventy-one thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(11500, 75529, 'seventy-five thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(11501, 22983, 'twenty-two thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(11502, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(11503, 22661, 'twenty-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(11504, 15292, 'fifteen thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11505, 33737, 'thirty-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(11506, 86442, 'eighty-six thousand four hundred forty-two');\nINSERT INTO t2 VALUES(11507, 38103, 'thirty-eight thousand one hundred three');\nINSERT INTO t2 VALUES(11508, 12856, 'twelve thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(11509, 91418, 'ninety-one thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11510, 41216, 'forty-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(11511, 88053, 'eighty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(11512, 16632, 'sixteen thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(11513, 3301, 'three thousand three hundred one');\nINSERT INTO t2 VALUES(11514, 40509, 'forty thousand five hundred nine');\nINSERT INTO t2 VALUES(11515, 55230, 'fifty-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(11516, 48768, 'forty-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(11517, 25557, 'twenty-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(11518, 99963, 'ninety-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(11519, 87785, 'eighty-seven thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(11520, 22195, 'twenty-two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(11521, 22650, 'twenty-two thousand six hundred fifty');\nINSERT INTO t2 VALUES(11522, 78557, 'seventy-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(11523, 27753, 'twenty-seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(11524, 13636, 'thirteen thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(11525, 78658, 'seventy-eight thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(11526, 11699, 'eleven thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(11527, 28448, 'twenty-eight thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(11528, 55043, 'fifty-five thousand forty-three');\nINSERT INTO t2 VALUES(11529, 99425, 'ninety-nine thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(11530, 39744, 'thirty-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(11531, 50342, 'fifty thousand three hundred forty-two');\nINSERT INTO t2 VALUES(11532, 77911, 'seventy-seven thousand nine hundred eleven');\nINSERT INTO t2 VALUES(11533, 88221, 'eighty-eight thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(11534, 81782, 'eighty-one thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(11535, 40313, 'forty thousand three hundred thirteen');\nINSERT INTO t2 VALUES(11536, 30474, 'thirty thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(11537, 81654, 'eighty-one thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(11538, 46081, 'forty-six thousand eighty-one');\nINSERT INTO t2 VALUES(11539, 55466, 'fifty-five thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(11540, 48454, 'forty-eight thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11541, 66152, 'sixty-six thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(11542, 27506, 'twenty-seven thousand five hundred six');\nINSERT INTO t2 VALUES(11543, 95044, 'ninety-five thousand forty-four');\nINSERT INTO t2 VALUES(11544, 94203, 'ninety-four thousand two hundred three');\nINSERT INTO t2 VALUES(11545, 78778, 'seventy-eight thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(11546, 45039, 'forty-five thousand thirty-nine');\nINSERT INTO t2 VALUES(11547, 39406, 'thirty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(11548, 86168, 'eighty-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(11549, 43540, 'forty-three thousand five hundred forty');\nINSERT INTO t2 VALUES(11550, 27572, 'twenty-seven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(11551, 73728, 'seventy-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(11552, 25816, 'twenty-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(11553, 36768, 'thirty-six thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(11554, 34951, 'thirty-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11555, 95059, 'ninety-five thousand fifty-nine');\nINSERT INTO t2 VALUES(11556, 30835, 'thirty thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(11557, 60341, 'sixty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(11558, 82900, 'eighty-two thousand nine hundred');\nINSERT INTO t2 VALUES(11559, 81691, 'eighty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(11560, 25799, 'twenty-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(11561, 94758, 'ninety-four thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(11562, 69261, 'sixty-nine thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(11563, 29110, 'twenty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(11564, 65144, 'sixty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(11565, 74266, 'seventy-four thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(11566, 94472, 'ninety-four thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(11567, 58557, 'fifty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(11568, 915, 'nine hundred fifteen');\nINSERT INTO t2 VALUES(11569, 70276, 'seventy thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(11570, 24671, 'twenty-four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(11571, 53119, 'fifty-three thousand one hundred nineteen');\nINSERT INTO t2 VALUES(11572, 37604, 'thirty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(11573, 55582, 'fifty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(11574, 77352, 'seventy-seven thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(11575, 21073, 'twenty-one thousand seventy-three');\nINSERT INTO t2 VALUES(11576, 2906, 'two thousand nine hundred six');\nINSERT INTO t2 VALUES(11577, 25103, 'twenty-five thousand one hundred three');\nINSERT INTO t2 VALUES(11578, 78848, 'seventy-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(11579, 93961, 'ninety-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(11580, 24452, 'twenty-four thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(11581, 655, 'six hundred fifty-five');\nINSERT INTO t2 VALUES(11582, 23581, 'twenty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(11583, 11271, 'eleven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(11584, 3988, 'three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(11585, 47170, 'forty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(11586, 7551, 'seven thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(11587, 89706, 'eighty-nine thousand seven hundred six');\nINSERT INTO t2 VALUES(11588, 2722, 'two thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(11589, 5827, 'five thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(11590, 37014, 'thirty-seven thousand fourteen');\nINSERT INTO t2 VALUES(11591, 80512, 'eighty thousand five hundred twelve');\nINSERT INTO t2 VALUES(11592, 86931, 'eighty-six thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(11593, 3692, 'three thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(11594, 35041, 'thirty-five thousand forty-one');\nINSERT INTO t2 VALUES(11595, 79204, 'seventy-nine thousand two hundred four');\nINSERT INTO t2 VALUES(11596, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(11597, 93917, 'ninety-three thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(11598, 17719, 'seventeen thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(11599, 38939, 'thirty-eight thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(11600, 65091, 'sixty-five thousand ninety-one');\nINSERT INTO t2 VALUES(11601, 88889, 'eighty-eight thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(11602, 90521, 'ninety thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(11603, 9186, 'nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(11604, 99879, 'ninety-nine thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(11605, 19362, 'nineteen thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(11606, 39854, 'thirty-nine thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(11607, 35175, 'thirty-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(11608, 80696, 'eighty thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(11609, 82112, 'eighty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(11610, 62532, 'sixty-two thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(11611, 86508, 'eighty-six thousand five hundred eight');\nINSERT INTO t2 VALUES(11612, 22622, 'twenty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11613, 53400, 'fifty-three thousand four hundred');\nINSERT INTO t2 VALUES(11614, 97074, 'ninety-seven thousand seventy-four');\nINSERT INTO t2 VALUES(11615, 7015, 'seven thousand fifteen');\nINSERT INTO t2 VALUES(11616, 96968, 'ninety-six thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(11617, 50906, 'fifty thousand nine hundred six');\nINSERT INTO t2 VALUES(11618, 43056, 'forty-three thousand fifty-six');\nINSERT INTO t2 VALUES(11619, 88245, 'eighty-eight thousand two hundred forty-five');\nINSERT INTO t2 VALUES(11620, 94630, 'ninety-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(11621, 19938, 'nineteen thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(11622, 58807, 'fifty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(11623, 3789, 'three thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(11624, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(11625, 5078, 'five thousand seventy-eight');\nINSERT INTO t2 VALUES(11626, 97253, 'ninety-seven thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(11627, 12749, 'twelve thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(11628, 59149, 'fifty-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11629, 1930, 'one thousand nine hundred thirty');\nINSERT INTO t2 VALUES(11630, 11491, 'eleven thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(11631, 92160, 'ninety-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(11632, 78798, 'seventy-eight thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(11633, 99457, 'ninety-nine thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(11634, 88198, 'eighty-eight thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(11635, 83208, 'eighty-three thousand two hundred eight');\nINSERT INTO t2 VALUES(11636, 55187, 'fifty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11637, 14457, 'fourteen thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(11638, 36275, 'thirty-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(11639, 19125, 'nineteen thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(11640, 57261, 'fifty-seven thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(11641, 79264, 'seventy-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(11642, 27963, 'twenty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(11643, 97746, 'ninety-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(11644, 59654, 'fifty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(11645, 85754, 'eighty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(11646, 95921, 'ninety-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(11647, 63436, 'sixty-three thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(11648, 14110, 'fourteen thousand one hundred ten');\nINSERT INTO t2 VALUES(11649, 61418, 'sixty-one thousand four hundred eighteen');\nINSERT INTO t2 VALUES(11650, 31755, 'thirty-one thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(11651, 67385, 'sixty-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(11652, 20453, 'twenty thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(11653, 69497, 'sixty-nine thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(11654, 74906, 'seventy-four thousand nine hundred six');\nINSERT INTO t2 VALUES(11655, 79118, 'seventy-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(11656, 80095, 'eighty thousand ninety-five');\nINSERT INTO t2 VALUES(11657, 51949, 'fifty-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(11658, 42010, 'forty-two thousand ten');\nINSERT INTO t2 VALUES(11659, 97668, 'ninety-seven thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(11660, 11900, 'eleven thousand nine hundred');\nINSERT INTO t2 VALUES(11661, 79948, 'seventy-nine thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11662, 27477, 'twenty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(11663, 84663, 'eighty-four thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(11664, 12813, 'twelve thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(11665, 14113, 'fourteen thousand one hundred thirteen');\nINSERT INTO t2 VALUES(11666, 78422, 'seventy-eight thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11667, 62573, 'sixty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(11668, 93457, 'ninety-three thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(11669, 3905, 'three thousand nine hundred five');\nINSERT INTO t2 VALUES(11670, 96751, 'ninety-six thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(11671, 27515, 'twenty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11672, 89238, 'eighty-nine thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(11673, 79207, 'seventy-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(11674, 52155, 'fifty-two thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(11675, 66379, 'sixty-six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(11676, 82828, 'eighty-two thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11677, 28213, 'twenty-eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11678, 14871, 'fourteen thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(11679, 56550, 'fifty-six thousand five hundred fifty');\nINSERT INTO t2 VALUES(11680, 52816, 'fifty-two thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(11681, 18178, 'eighteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(11682, 69353, 'sixty-nine thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(11683, 59914, 'fifty-nine thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(11684, 562, 'five hundred sixty-two');\nINSERT INTO t2 VALUES(11685, 45702, 'forty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(11686, 82182, 'eighty-two thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(11687, 13595, 'thirteen thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(11688, 24475, 'twenty-four thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(11689, 59214, 'fifty-nine thousand two hundred fourteen');\nINSERT INTO t2 VALUES(11690, 10141, 'ten thousand one hundred forty-one');\nINSERT INTO t2 VALUES(11691, 75815, 'seventy-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(11692, 34818, 'thirty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(11693, 33234, 'thirty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11694, 44507, 'forty-four thousand five hundred seven');\nINSERT INTO t2 VALUES(11695, 38488, 'thirty-eight thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(11696, 14629, 'fourteen thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(11697, 39234, 'thirty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11698, 44093, 'forty-four thousand ninety-three');\nINSERT INTO t2 VALUES(11699, 64442, 'sixty-four thousand four hundred forty-two');\nINSERT INTO t2 VALUES(11700, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(11701, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(11702, 91737, 'ninety-one thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(11703, 13863, 'thirteen thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(11704, 89828, 'eighty-nine thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(11705, 75670, 'seventy-five thousand six hundred seventy');\nINSERT INTO t2 VALUES(11706, 26145, 'twenty-six thousand one hundred forty-five');\nINSERT INTO t2 VALUES(11707, 79179, 'seventy-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(11708, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(11709, 31213, 'thirty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(11710, 31000, 'thirty-one thousand');\nINSERT INTO t2 VALUES(11711, 13600, 'thirteen thousand six hundred');\nINSERT INTO t2 VALUES(11712, 2726, 'two thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(11713, 11741, 'eleven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(11714, 33712, 'thirty-three thousand seven hundred twelve');\nINSERT INTO t2 VALUES(11715, 8952, 'eight thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(11716, 48531, 'forty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(11717, 17784, 'seventeen thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(11718, 42203, 'forty-two thousand two hundred three');\nINSERT INTO t2 VALUES(11719, 40299, 'forty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(11720, 11575, 'eleven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(11721, 70826, 'seventy thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(11722, 39325, 'thirty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11723, 12430, 'twelve thousand four hundred thirty');\nINSERT INTO t2 VALUES(11724, 20568, 'twenty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(11725, 46411, 'forty-six thousand four hundred eleven');\nINSERT INTO t2 VALUES(11726, 43225, 'forty-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(11727, 74946, 'seventy-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(11728, 38168, 'thirty-eight thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(11729, 97285, 'ninety-seven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(11730, 25114, 'twenty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(11731, 97553, 'ninety-seven thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(11732, 55344, 'fifty-five thousand three hundred forty-four');\nINSERT INTO t2 VALUES(11733, 46716, 'forty-six thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(11734, 1349, 'one thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(11735, 18571, 'eighteen thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(11736, 81118, 'eighty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(11737, 2245, 'two thousand two hundred forty-five');\nINSERT INTO t2 VALUES(11738, 43621, 'forty-three thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11739, 53745, 'fifty-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(11740, 19570, 'nineteen thousand five hundred seventy');\nINSERT INTO t2 VALUES(11741, 95121, 'ninety-five thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(11742, 41019, 'forty-one thousand nineteen');\nINSERT INTO t2 VALUES(11743, 84235, 'eighty-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(11744, 62069, 'sixty-two thousand sixty-nine');\nINSERT INTO t2 VALUES(11745, 12518, 'twelve thousand five hundred eighteen');\nINSERT INTO t2 VALUES(11746, 32230, 'thirty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(11747, 47606, 'forty-seven thousand six hundred six');\nINSERT INTO t2 VALUES(11748, 36829, 'thirty-six thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(11749, 53947, 'fifty-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(11750, 76149, 'seventy-six thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11751, 62405, 'sixty-two thousand four hundred five');\nINSERT INTO t2 VALUES(11752, 69111, 'sixty-nine thousand one hundred eleven');\nINSERT INTO t2 VALUES(11753, 1164, 'one thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(11754, 11790, 'eleven thousand seven hundred ninety');\nINSERT INTO t2 VALUES(11755, 31454, 'thirty-one thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(11756, 76515, 'seventy-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(11757, 91747, 'ninety-one thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(11758, 49758, 'forty-nine thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(11759, 49956, 'forty-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(11760, 16991, 'sixteen thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(11761, 32057, 'thirty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(11762, 97275, 'ninety-seven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(11763, 9684, 'nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(11764, 75187, 'seventy-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(11765, 58824, 'fifty-eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(11766, 37976, 'thirty-seven thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(11767, 95642, 'ninety-five thousand six hundred forty-two');\nINSERT INTO t2 VALUES(11768, 15224, 'fifteen thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(11769, 81348, 'eighty-one thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(11770, 53234, 'fifty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(11771, 86414, 'eighty-six thousand four hundred fourteen');\nINSERT INTO t2 VALUES(11772, 8898, 'eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(11773, 64085, 'sixty-four thousand eighty-five');\nINSERT INTO t2 VALUES(11774, 97702, 'ninety-seven thousand seven hundred two');\nINSERT INTO t2 VALUES(11775, 966, 'nine hundred sixty-six');\nINSERT INTO t2 VALUES(11776, 84065, 'eighty-four thousand sixty-five');\nINSERT INTO t2 VALUES(11777, 70166, 'seventy thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(11778, 41677, 'forty-one thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(11779, 88721, 'eighty-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(11780, 92083, 'ninety-two thousand eighty-three');\nINSERT INTO t2 VALUES(11781, 24249, 'twenty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(11782, 32369, 'thirty-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(11783, 67490, 'sixty-seven thousand four hundred ninety');\nINSERT INTO t2 VALUES(11784, 92358, 'ninety-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(11785, 97952, 'ninety-seven thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(11786, 8684, 'eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(11787, 96902, 'ninety-six thousand nine hundred two');\nINSERT INTO t2 VALUES(11788, 25621, 'twenty-five thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(11789, 94190, 'ninety-four thousand one hundred ninety');\nINSERT INTO t2 VALUES(11790, 79891, 'seventy-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11791, 18128, 'eighteen thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(11792, 57520, 'fifty-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(11793, 31279, 'thirty-one thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(11794, 24861, 'twenty-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(11795, 41493, 'forty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(11796, 70009, 'seventy thousand nine');\nINSERT INTO t2 VALUES(11797, 84847, 'eighty-four thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(11798, 49539, 'forty-nine thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(11799, 39700, 'thirty-nine thousand seven hundred');\nINSERT INTO t2 VALUES(11800, 69440, 'sixty-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(11801, 47244, 'forty-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(11802, 16192, 'sixteen thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(11803, 99894, 'ninety-nine thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(11804, 71204, 'seventy-one thousand two hundred four');\nINSERT INTO t2 VALUES(11805, 36631, 'thirty-six thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(11806, 99249, 'ninety-nine thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(11807, 23762, 'twenty-three thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(11808, 84769, 'eighty-four thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(11809, 26880, 'twenty-six thousand eight hundred eighty');\nINSERT INTO t2 VALUES(11810, 49808, 'forty-nine thousand eight hundred eight');\nINSERT INTO t2 VALUES(11811, 84554, 'eighty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(11812, 77249, 'seventy-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(11813, 71398, 'seventy-one thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(11814, 52325, 'fifty-two thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(11815, 59096, 'fifty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(11816, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t2 VALUES(11817, 63116, 'sixty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(11818, 35076, 'thirty-five thousand seventy-six');\nINSERT INTO t2 VALUES(11819, 47678, 'forty-seven thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(11820, 5183, 'five thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(11821, 45622, 'forty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11822, 17876, 'seventeen thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(11823, 31904, 'thirty-one thousand nine hundred four');\nINSERT INTO t2 VALUES(11824, 31790, 'thirty-one thousand seven hundred ninety');\nINSERT INTO t2 VALUES(11825, 30066, 'thirty thousand sixty-six');\nINSERT INTO t2 VALUES(11826, 64004, 'sixty-four thousand four');\nINSERT INTO t2 VALUES(11827, 67585, 'sixty-seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(11828, 15185, 'fifteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(11829, 52327, 'fifty-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(11830, 82876, 'eighty-two thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(11831, 54559, 'fifty-four thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(11832, 9727, 'nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(11833, 20149, 'twenty thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(11834, 25430, 'twenty-five thousand four hundred thirty');\nINSERT INTO t2 VALUES(11835, 19266, 'nineteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(11836, 33438, 'thirty-three thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(11837, 41013, 'forty-one thousand thirteen');\nINSERT INTO t2 VALUES(11838, 98248, 'ninety-eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(11839, 18937, 'eighteen thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(11840, 47637, 'forty-seven thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(11841, 9573, 'nine thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(11842, 31136, 'thirty-one thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(11843, 52945, 'fifty-two thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(11844, 32821, 'thirty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(11845, 4434, 'four thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(11846, 96124, 'ninety-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(11847, 99069, 'ninety-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(11848, 31254, 'thirty-one thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(11849, 98873, 'ninety-eight thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(11850, 38549, 'thirty-eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(11851, 49908, 'forty-nine thousand nine hundred eight');\nINSERT INTO t2 VALUES(11852, 45663, 'forty-five thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(11853, 2026, 'two thousand twenty-six');\nINSERT INTO t2 VALUES(11854, 14456, 'fourteen thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(11855, 77276, 'seventy-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(11856, 53456, 'fifty-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(11857, 57725, 'fifty-seven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(11858, 76567, 'seventy-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(11859, 8924, 'eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(11860, 29174, 'twenty-nine thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(11861, 23749, 'twenty-three thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(11862, 8948, 'eight thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(11863, 47281, 'forty-seven thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(11864, 97353, 'ninety-seven thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(11865, 95489, 'ninety-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(11866, 22196, 'twenty-two thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(11867, 35474, 'thirty-five thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(11868, 58670, 'fifty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(11869, 11890, 'eleven thousand eight hundred ninety');\nINSERT INTO t2 VALUES(11870, 17015, 'seventeen thousand fifteen');\nINSERT INTO t2 VALUES(11871, 6450, 'six thousand four hundred fifty');\nINSERT INTO t2 VALUES(11872, 43611, 'forty-three thousand six hundred eleven');\nINSERT INTO t2 VALUES(11873, 45989, 'forty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(11874, 76160, 'seventy-six thousand one hundred sixty');\nINSERT INTO t2 VALUES(11875, 12144, 'twelve thousand one hundred forty-four');\nINSERT INTO t2 VALUES(11876, 27854, 'twenty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(11877, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(11878, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t2 VALUES(11879, 31444, 'thirty-one thousand four hundred forty-four');\nINSERT INTO t2 VALUES(11880, 71191, 'seventy-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(11881, 72558, 'seventy-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(11882, 14077, 'fourteen thousand seventy-seven');\nINSERT INTO t2 VALUES(11883, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t2 VALUES(11884, 30009, 'thirty thousand nine');\nINSERT INTO t2 VALUES(11885, 40839, 'forty thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(11886, 46701, 'forty-six thousand seven hundred one');\nINSERT INTO t2 VALUES(11887, 97943, 'ninety-seven thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(11888, 98288, 'ninety-eight thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(11889, 28912, 'twenty-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(11890, 86088, 'eighty-six thousand eighty-eight');\nINSERT INTO t2 VALUES(11891, 43432, 'forty-three thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(11892, 141, 'one hundred forty-one');\nINSERT INTO t2 VALUES(11893, 16512, 'sixteen thousand five hundred twelve');\nINSERT INTO t2 VALUES(11894, 61314, 'sixty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(11895, 31222, 'thirty-one thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(11896, 25684, 'twenty-five thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(11897, 54535, 'fifty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(11898, 71056, 'seventy-one thousand fifty-six');\nINSERT INTO t2 VALUES(11899, 9672, 'nine thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(11900, 57088, 'fifty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(11901, 54500, 'fifty-four thousand five hundred');\nINSERT INTO t2 VALUES(11902, 53216, 'fifty-three thousand two hundred sixteen');\nINSERT INTO t2 VALUES(11903, 66047, 'sixty-six thousand forty-seven');\nINSERT INTO t2 VALUES(11904, 43537, 'forty-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(11905, 79581, 'seventy-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(11906, 55622, 'fifty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11907, 31563, 'thirty-one thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(11908, 40715, 'forty thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(11909, 25270, 'twenty-five thousand two hundred seventy');\nINSERT INTO t2 VALUES(11910, 71683, 'seventy-one thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(11911, 46112, 'forty-six thousand one hundred twelve');\nINSERT INTO t2 VALUES(11912, 69541, 'sixty-nine thousand five hundred forty-one');\nINSERT INTO t2 VALUES(11913, 39070, 'thirty-nine thousand seventy');\nINSERT INTO t2 VALUES(11914, 92860, 'ninety-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(11915, 51286, 'fifty-one thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(11916, 89662, 'eighty-nine thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(11917, 63997, 'sixty-three thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(11918, 61622, 'sixty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(11919, 71599, 'seventy-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(11920, 66126, 'sixty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(11921, 17672, 'seventeen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(11922, 63136, 'sixty-three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(11923, 30246, 'thirty thousand two hundred forty-six');\nINSERT INTO t2 VALUES(11924, 652, 'six hundred fifty-two');\nINSERT INTO t2 VALUES(11925, 68252, 'sixty-eight thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(11926, 98243, 'ninety-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(11927, 1528, 'one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(11928, 46700, 'forty-six thousand seven hundred');\nINSERT INTO t2 VALUES(11929, 20258, 'twenty thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(11930, 28333, 'twenty-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(11931, 74623, 'seventy-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(11932, 73797, 'seventy-three thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(11933, 44919, 'forty-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(11934, 45484, 'forty-five thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(11935, 74024, 'seventy-four thousand twenty-four');\nINSERT INTO t2 VALUES(11936, 23851, 'twenty-three thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(11937, 34416, 'thirty-four thousand four hundred sixteen');\nINSERT INTO t2 VALUES(11938, 18345, 'eighteen thousand three hundred forty-five');\nINSERT INTO t2 VALUES(11939, 74186, 'seventy-four thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(11940, 15208, 'fifteen thousand two hundred eight');\nINSERT INTO t2 VALUES(11941, 88294, 'eighty-eight thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(11942, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(11943, 85941, 'eighty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(11944, 72767, 'seventy-two thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(11945, 82383, 'eighty-two thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(11946, 13687, 'thirteen thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(11947, 61670, 'sixty-one thousand six hundred seventy');\nINSERT INTO t2 VALUES(11948, 27324, 'twenty-seven thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(11949, 94486, 'ninety-four thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(11950, 60133, 'sixty thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(11951, 33852, 'thirty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(11952, 40356, 'forty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(11953, 36392, 'thirty-six thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(11954, 45489, 'forty-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(11955, 59903, 'fifty-nine thousand nine hundred three');\nINSERT INTO t2 VALUES(11956, 36891, 'thirty-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(11957, 59980, 'fifty-nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(11958, 30197, 'thirty thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(11959, 74634, 'seventy-four thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(11960, 85306, 'eighty-five thousand three hundred six');\nINSERT INTO t2 VALUES(11961, 80605, 'eighty thousand six hundred five');\nINSERT INTO t2 VALUES(11962, 61051, 'sixty-one thousand fifty-one');\nINSERT INTO t2 VALUES(11963, 90780, 'ninety thousand seven hundred eighty');\nINSERT INTO t2 VALUES(11964, 80431, 'eighty thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(11965, 85074, 'eighty-five thousand seventy-four');\nINSERT INTO t2 VALUES(11966, 7006, 'seven thousand six');\nINSERT INTO t2 VALUES(11967, 22805, 'twenty-two thousand eight hundred five');\nINSERT INTO t2 VALUES(11968, 12958, 'twelve thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(11969, 89558, 'eighty-nine thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(11970, 54607, 'fifty-four thousand six hundred seven');\nINSERT INTO t2 VALUES(11971, 79718, 'seventy-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(11972, 2951, 'two thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(11973, 81787, 'eighty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(11974, 93892, 'ninety-three thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(11975, 54587, 'fifty-four thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(11976, 61550, 'sixty-one thousand five hundred fifty');\nINSERT INTO t2 VALUES(11977, 8255, 'eight thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(11978, 32437, 'thirty-two thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(11979, 31627, 'thirty-one thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(11980, 51876, 'fifty-one thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(11981, 76292, 'seventy-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(11982, 84070, 'eighty-four thousand seventy');\nINSERT INTO t2 VALUES(11983, 77462, 'seventy-seven thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(11984, 93584, 'ninety-three thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(11985, 9629, 'nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(11986, 86058, 'eighty-six thousand fifty-eight');\nINSERT INTO t2 VALUES(11987, 27023, 'twenty-seven thousand twenty-three');\nINSERT INTO t2 VALUES(11988, 96387, 'ninety-six thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(11989, 57237, 'fifty-seven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(11990, 77443, 'seventy-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(11991, 13032, 'thirteen thousand thirty-two');\nINSERT INTO t2 VALUES(11992, 75312, 'seventy-five thousand three hundred twelve');\nINSERT INTO t2 VALUES(11993, 74218, 'seventy-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(11994, 52174, 'fifty-two thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(11995, 82639, 'eighty-two thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(11996, 64422, 'sixty-four thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(11997, 98138, 'ninety-eight thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(11998, 96761, 'ninety-six thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(11999, 4582, 'four thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(12000, 6209, 'six thousand two hundred nine');\nINSERT INTO t2 VALUES(12001, 78080, 'seventy-eight thousand eighty');\nINSERT INTO t2 VALUES(12002, 35352, 'thirty-five thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(12003, 78899, 'seventy-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(12004, 17227, 'seventeen thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(12005, 4726, 'four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12006, 74902, 'seventy-four thousand nine hundred two');\nINSERT INTO t2 VALUES(12007, 75582, 'seventy-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(12008, 3597, 'three thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(12009, 23732, 'twenty-three thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(12010, 21848, 'twenty-one thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12011, 1842, 'one thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(12012, 62225, 'sixty-two thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(12013, 98303, 'ninety-eight thousand three hundred three');\nINSERT INTO t2 VALUES(12014, 67860, 'sixty-seven thousand eight hundred sixty');\nINSERT INTO t2 VALUES(12015, 87733, 'eighty-seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(12016, 44193, 'forty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(12017, 5024, 'five thousand twenty-four');\nINSERT INTO t2 VALUES(12018, 80503, 'eighty thousand five hundred three');\nINSERT INTO t2 VALUES(12019, 44968, 'forty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(12020, 1775, 'one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(12021, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12022, 32791, 'thirty-two thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(12023, 88837, 'eighty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(12024, 66802, 'sixty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(12025, 93401, 'ninety-three thousand four hundred one');\nINSERT INTO t2 VALUES(12026, 56424, 'fifty-six thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(12027, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(12028, 95190, 'ninety-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(12029, 55994, 'fifty-five thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(12030, 21357, 'twenty-one thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(12031, 71324, 'seventy-one thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(12032, 92769, 'ninety-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(12033, 19257, 'nineteen thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(12034, 28154, 'twenty-eight thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(12035, 79926, 'seventy-nine thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(12036, 3807, 'three thousand eight hundred seven');\nINSERT INTO t2 VALUES(12037, 92542, 'ninety-two thousand five hundred forty-two');\nINSERT INTO t2 VALUES(12038, 41857, 'forty-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(12039, 99224, 'ninety-nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(12040, 28124, 'twenty-eight thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(12041, 24823, 'twenty-four thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(12042, 39786, 'thirty-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(12043, 30406, 'thirty thousand four hundred six');\nINSERT INTO t2 VALUES(12044, 95118, 'ninety-five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(12045, 94458, 'ninety-four thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(12046, 23326, 'twenty-three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(12047, 81287, 'eighty-one thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(12048, 35749, 'thirty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(12049, 13223, 'thirteen thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(12050, 28907, 'twenty-eight thousand nine hundred seven');\nINSERT INTO t2 VALUES(12051, 27947, 'twenty-seven thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(12052, 58608, 'fifty-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(12053, 92961, 'ninety-two thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(12054, 69605, 'sixty-nine thousand six hundred five');\nINSERT INTO t2 VALUES(12055, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(12056, 93458, 'ninety-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(12057, 70854, 'seventy thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(12058, 13130, 'thirteen thousand one hundred thirty');\nINSERT INTO t2 VALUES(12059, 41633, 'forty-one thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(12060, 18300, 'eighteen thousand three hundred');\nINSERT INTO t2 VALUES(12061, 52547, 'fifty-two thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(12062, 13523, 'thirteen thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(12063, 84997, 'eighty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(12064, 64646, 'sixty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(12065, 11803, 'eleven thousand eight hundred three');\nINSERT INTO t2 VALUES(12066, 53679, 'fifty-three thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12067, 29379, 'twenty-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(12068, 59549, 'fifty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12069, 96219, 'ninety-six thousand two hundred nineteen');\nINSERT INTO t2 VALUES(12070, 56954, 'fifty-six thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(12071, 79549, 'seventy-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12072, 77960, 'seventy-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(12073, 62591, 'sixty-two thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(12074, 72297, 'seventy-two thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(12075, 1606, 'one thousand six hundred six');\nINSERT INTO t2 VALUES(12076, 36496, 'thirty-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(12077, 52053, 'fifty-two thousand fifty-three');\nINSERT INTO t2 VALUES(12078, 85304, 'eighty-five thousand three hundred four');\nINSERT INTO t2 VALUES(12079, 2493, 'two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(12080, 47966, 'forty-seven thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(12081, 35092, 'thirty-five thousand ninety-two');\nINSERT INTO t2 VALUES(12082, 74571, 'seventy-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(12083, 85359, 'eighty-five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(12084, 30082, 'thirty thousand eighty-two');\nINSERT INTO t2 VALUES(12085, 14735, 'fourteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12086, 93257, 'ninety-three thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(12087, 53666, 'fifty-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(12088, 74083, 'seventy-four thousand eighty-three');\nINSERT INTO t2 VALUES(12089, 86892, 'eighty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(12090, 91726, 'ninety-one thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12091, 28735, 'twenty-eight thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12092, 39033, 'thirty-nine thousand thirty-three');\nINSERT INTO t2 VALUES(12093, 21608, 'twenty-one thousand six hundred eight');\nINSERT INTO t2 VALUES(12094, 30588, 'thirty thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(12095, 36846, 'thirty-six thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(12096, 92425, 'ninety-two thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(12097, 55883, 'fifty-five thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(12098, 22250, 'twenty-two thousand two hundred fifty');\nINSERT INTO t2 VALUES(12099, 45860, 'forty-five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(12100, 30744, 'thirty thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(12101, 34829, 'thirty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(12102, 96978, 'ninety-six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(12103, 24470, 'twenty-four thousand four hundred seventy');\nINSERT INTO t2 VALUES(12104, 33096, 'thirty-three thousand ninety-six');\nINSERT INTO t2 VALUES(12105, 49415, 'forty-nine thousand four hundred fifteen');\nINSERT INTO t2 VALUES(12106, 5216, 'five thousand two hundred sixteen');\nINSERT INTO t2 VALUES(12107, 9347, 'nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12108, 9865, 'nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(12109, 93190, 'ninety-three thousand one hundred ninety');\nINSERT INTO t2 VALUES(12110, 63217, 'sixty-three thousand two hundred seventeen');\nINSERT INTO t2 VALUES(12111, 36516, 'thirty-six thousand five hundred sixteen');\nINSERT INTO t2 VALUES(12112, 62330, 'sixty-two thousand three hundred thirty');\nINSERT INTO t2 VALUES(12113, 786, 'seven hundred eighty-six');\nINSERT INTO t2 VALUES(12114, 99356, 'ninety-nine thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(12115, 54332, 'fifty-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(12116, 71533, 'seventy-one thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(12117, 68263, 'sixty-eight thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(12118, 86100, 'eighty-six thousand one hundred');\nINSERT INTO t2 VALUES(12119, 16879, 'sixteen thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(12120, 72121, 'seventy-two thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(12121, 54512, 'fifty-four thousand five hundred twelve');\nINSERT INTO t2 VALUES(12122, 25791, 'twenty-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(12123, 8576, 'eight thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(12124, 64064, 'sixty-four thousand sixty-four');\nINSERT INTO t2 VALUES(12125, 83319, 'eighty-three thousand three hundred nineteen');\nINSERT INTO t2 VALUES(12126, 88386, 'eighty-eight thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12127, 33513, 'thirty-three thousand five hundred thirteen');\nINSERT INTO t2 VALUES(12128, 88564, 'eighty-eight thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(12129, 65299, 'sixty-five thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(12130, 52720, 'fifty-two thousand seven hundred twenty');\nINSERT INTO t2 VALUES(12131, 23604, 'twenty-three thousand six hundred four');\nINSERT INTO t2 VALUES(12132, 42959, 'forty-two thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(12133, 26637, 'twenty-six thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(12134, 90758, 'ninety thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(12135, 39463, 'thirty-nine thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(12136, 67973, 'sixty-seven thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12137, 35897, 'thirty-five thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(12138, 25051, 'twenty-five thousand fifty-one');\nINSERT INTO t2 VALUES(12139, 92027, 'ninety-two thousand twenty-seven');\nINSERT INTO t2 VALUES(12140, 76551, 'seventy-six thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12141, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t2 VALUES(12142, 78730, 'seventy-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(12143, 2327, 'two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(12144, 49857, 'forty-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(12145, 71071, 'seventy-one thousand seventy-one');\nINSERT INTO t2 VALUES(12146, 62878, 'sixty-two thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(12147, 64558, 'sixty-four thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(12148, 97507, 'ninety-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(12149, 1813, 'one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(12150, 6176, 'six thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(12151, 24817, 'twenty-four thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(12152, 50946, 'fifty thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(12153, 55529, 'fifty-five thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(12154, 8122, 'eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12155, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(12156, 47924, 'forty-seven thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(12157, 44175, 'forty-four thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(12158, 45190, 'forty-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(12159, 73238, 'seventy-three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(12160, 7085, 'seven thousand eighty-five');\nINSERT INTO t2 VALUES(12161, 3607, 'three thousand six hundred seven');\nINSERT INTO t2 VALUES(12162, 2122, 'two thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12163, 58362, 'fifty-eight thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(12164, 60497, 'sixty thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(12165, 70062, 'seventy thousand sixty-two');\nINSERT INTO t2 VALUES(12166, 60827, 'sixty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12167, 18172, 'eighteen thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(12168, 74207, 'seventy-four thousand two hundred seven');\nINSERT INTO t2 VALUES(12169, 71080, 'seventy-one thousand eighty');\nINSERT INTO t2 VALUES(12170, 13839, 'thirteen thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(12171, 89290, 'eighty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(12172, 39482, 'thirty-nine thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(12173, 67801, 'sixty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(12174, 25226, 'twenty-five thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(12175, 19676, 'nineteen thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(12176, 72848, 'seventy-two thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12177, 28054, 'twenty-eight thousand fifty-four');\nINSERT INTO t2 VALUES(12178, 76639, 'seventy-six thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(12179, 42445, 'forty-two thousand four hundred forty-five');\nINSERT INTO t2 VALUES(12180, 30299, 'thirty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(12181, 55329, 'fifty-five thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(12182, 40899, 'forty thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(12183, 29180, 'twenty-nine thousand one hundred eighty');\nINSERT INTO t2 VALUES(12184, 52892, 'fifty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(12185, 52002, 'fifty-two thousand two');\nINSERT INTO t2 VALUES(12186, 84816, 'eighty-four thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(12187, 29265, 'twenty-nine thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(12188, 43137, 'forty-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(12189, 96602, 'ninety-six thousand six hundred two');\nINSERT INTO t2 VALUES(12190, 19642, 'nineteen thousand six hundred forty-two');\nINSERT INTO t2 VALUES(12191, 30171, 'thirty thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(12192, 23830, 'twenty-three thousand eight hundred thirty');\nINSERT INTO t2 VALUES(12193, 30552, 'thirty thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(12194, 25989, 'twenty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(12195, 71307, 'seventy-one thousand three hundred seven');\nINSERT INTO t2 VALUES(12196, 73492, 'seventy-three thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(12197, 56640, 'fifty-six thousand six hundred forty');\nINSERT INTO t2 VALUES(12198, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(12199, 91713, 'ninety-one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(12200, 83528, 'eighty-three thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(12201, 52843, 'fifty-two thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(12202, 1420, 'one thousand four hundred twenty');\nINSERT INTO t2 VALUES(12203, 48160, 'forty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(12204, 48789, 'forty-eight thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(12205, 80881, 'eighty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(12206, 86454, 'eighty-six thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(12207, 55861, 'fifty-five thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(12208, 73894, 'seventy-three thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(12209, 25268, 'twenty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(12210, 63367, 'sixty-three thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(12211, 6405, 'six thousand four hundred five');\nINSERT INTO t2 VALUES(12212, 19080, 'nineteen thousand eighty');\nINSERT INTO t2 VALUES(12213, 33111, 'thirty-three thousand one hundred eleven');\nINSERT INTO t2 VALUES(12214, 41973, 'forty-one thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12215, 75260, 'seventy-five thousand two hundred sixty');\nINSERT INTO t2 VALUES(12216, 5754, 'five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(12217, 84202, 'eighty-four thousand two hundred two');\nINSERT INTO t2 VALUES(12218, 91018, 'ninety-one thousand eighteen');\nINSERT INTO t2 VALUES(12219, 22588, 'twenty-two thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(12220, 63973, 'sixty-three thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12221, 19906, 'nineteen thousand nine hundred six');\nINSERT INTO t2 VALUES(12222, 98196, 'ninety-eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(12223, 14860, 'fourteen thousand eight hundred sixty');\nINSERT INTO t2 VALUES(12224, 51848, 'fifty-one thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12225, 34090, 'thirty-four thousand ninety');\nINSERT INTO t2 VALUES(12226, 11671, 'eleven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(12227, 6585, 'six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(12228, 40686, 'forty thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(12229, 84118, 'eighty-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(12230, 58590, 'fifty-eight thousand five hundred ninety');\nINSERT INTO t2 VALUES(12231, 98857, 'ninety-eight thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(12232, 89544, 'eighty-nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(12233, 53821, 'fifty-three thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(12234, 33318, 'thirty-three thousand three hundred eighteen');\nINSERT INTO t2 VALUES(12235, 26043, 'twenty-six thousand forty-three');\nINSERT INTO t2 VALUES(12236, 48281, 'forty-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(12237, 29938, 'twenty-nine thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(12238, 6697, 'six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(12239, 62781, 'sixty-two thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(12240, 54537, 'fifty-four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(12241, 51026, 'fifty-one thousand twenty-six');\nINSERT INTO t2 VALUES(12242, 31972, 'thirty-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(12243, 82938, 'eighty-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(12244, 9145, 'nine thousand one hundred forty-five');\nINSERT INTO t2 VALUES(12245, 37567, 'thirty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12246, 30936, 'thirty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(12247, 10344, 'ten thousand three hundred forty-four');\nINSERT INTO t2 VALUES(12248, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(12249, 28529, 'twenty-eight thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(12250, 41079, 'forty-one thousand seventy-nine');\nINSERT INTO t2 VALUES(12251, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t2 VALUES(12252, 42259, 'forty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(12253, 41989, 'forty-one thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(12254, 70215, 'seventy thousand two hundred fifteen');\nINSERT INTO t2 VALUES(12255, 11850, 'eleven thousand eight hundred fifty');\nINSERT INTO t2 VALUES(12256, 13274, 'thirteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(12257, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(12258, 99859, 'ninety-nine thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(12259, 75423, 'seventy-five thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(12260, 52447, 'fifty-two thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(12261, 63383, 'sixty-three thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(12262, 79578, 'seventy-nine thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(12263, 31439, 'thirty-one thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(12264, 54486, 'fifty-four thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(12265, 86599, 'eighty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(12266, 10536, 'ten thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(12267, 52046, 'fifty-two thousand forty-six');\nINSERT INTO t2 VALUES(12268, 3438, 'three thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(12269, 78848, 'seventy-eight thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(12270, 25318, 'twenty-five thousand three hundred eighteen');\nINSERT INTO t2 VALUES(12271, 25220, 'twenty-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(12272, 82668, 'eighty-two thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(12273, 10255, 'ten thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(12274, 53838, 'fifty-three thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(12275, 58037, 'fifty-eight thousand thirty-seven');\nINSERT INTO t2 VALUES(12276, 12809, 'twelve thousand eight hundred nine');\nINSERT INTO t2 VALUES(12277, 89671, 'eighty-nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(12278, 96811, 'ninety-six thousand eight hundred eleven');\nINSERT INTO t2 VALUES(12279, 69244, 'sixty-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(12280, 35057, 'thirty-five thousand fifty-seven');\nINSERT INTO t2 VALUES(12281, 71045, 'seventy-one thousand forty-five');\nINSERT INTO t2 VALUES(12282, 82984, 'eighty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(12283, 95160, 'ninety-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(12284, 7287, 'seven thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(12285, 51887, 'fifty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(12286, 20786, 'twenty thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(12287, 69513, 'sixty-nine thousand five hundred thirteen');\nINSERT INTO t2 VALUES(12288, 57050, 'fifty-seven thousand fifty');\nINSERT INTO t2 VALUES(12289, 85885, 'eighty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12290, 7933, 'seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(12291, 49332, 'forty-nine thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(12292, 25889, 'twenty-five thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(12293, 18142, 'eighteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(12294, 15069, 'fifteen thousand sixty-nine');\nINSERT INTO t2 VALUES(12295, 76497, 'seventy-six thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(12296, 6859, 'six thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(12297, 51426, 'fifty-one thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(12298, 54449, 'fifty-four thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(12299, 39365, 'thirty-nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(12300, 80565, 'eighty thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(12301, 84310, 'eighty-four thousand three hundred ten');\nINSERT INTO t2 VALUES(12302, 81282, 'eighty-one thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(12303, 47045, 'forty-seven thousand forty-five');\nINSERT INTO t2 VALUES(12304, 25644, 'twenty-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(12305, 54249, 'fifty-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(12306, 78917, 'seventy-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(12307, 24516, 'twenty-four thousand five hundred sixteen');\nINSERT INTO t2 VALUES(12308, 56776, 'fifty-six thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(12309, 59310, 'fifty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(12310, 6642, 'six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(12311, 92751, 'ninety-two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(12312, 43548, 'forty-three thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12313, 10328, 'ten thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(12314, 4504, 'four thousand five hundred four');\nINSERT INTO t2 VALUES(12315, 34368, 'thirty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(12316, 5429, 'five thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(12317, 11693, 'eleven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(12318, 58070, 'fifty-eight thousand seventy');\nINSERT INTO t2 VALUES(12319, 5743, 'five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(12320, 33981, 'thirty-three thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(12321, 81115, 'eighty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(12322, 66923, 'sixty-six thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(12323, 85256, 'eighty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(12324, 17389, 'seventeen thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(12325, 51630, 'fifty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(12326, 2347, 'two thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12327, 10001, 'ten thousand one');\nINSERT INTO t2 VALUES(12328, 13498, 'thirteen thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(12329, 90259, 'ninety thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(12330, 77607, 'seventy-seven thousand six hundred seven');\nINSERT INTO t2 VALUES(12331, 83392, 'eighty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(12332, 8612, 'eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(12333, 87856, 'eighty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(12334, 79804, 'seventy-nine thousand eight hundred four');\nINSERT INTO t2 VALUES(12335, 79144, 'seventy-nine thousand one hundred forty-four');\nINSERT INTO t2 VALUES(12336, 99885, 'ninety-nine thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12337, 89617, 'eighty-nine thousand six hundred seventeen');\nINSERT INTO t2 VALUES(12338, 72743, 'seventy-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(12339, 29473, 'twenty-nine thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(12340, 65606, 'sixty-five thousand six hundred six');\nINSERT INTO t2 VALUES(12341, 82093, 'eighty-two thousand ninety-three');\nINSERT INTO t2 VALUES(12342, 75704, 'seventy-five thousand seven hundred four');\nINSERT INTO t2 VALUES(12343, 51583, 'fifty-one thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(12344, 87750, 'eighty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(12345, 30807, 'thirty thousand eight hundred seven');\nINSERT INTO t2 VALUES(12346, 43634, 'forty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(12347, 63906, 'sixty-three thousand nine hundred six');\nINSERT INTO t2 VALUES(12348, 48042, 'forty-eight thousand forty-two');\nINSERT INTO t2 VALUES(12349, 13080, 'thirteen thousand eighty');\nINSERT INTO t2 VALUES(12350, 46924, 'forty-six thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(12351, 4705, 'four thousand seven hundred five');\nINSERT INTO t2 VALUES(12352, 24807, 'twenty-four thousand eight hundred seven');\nINSERT INTO t2 VALUES(12353, 15508, 'fifteen thousand five hundred eight');\nINSERT INTO t2 VALUES(12354, 78974, 'seventy-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(12355, 67963, 'sixty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(12356, 9967, 'nine thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(12357, 29620, 'twenty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(12358, 97574, 'ninety-seven thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(12359, 46898, 'forty-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(12360, 91949, 'ninety-one thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(12361, 24001, 'twenty-four thousand one');\nINSERT INTO t2 VALUES(12362, 37340, 'thirty-seven thousand three hundred forty');\nINSERT INTO t2 VALUES(12363, 74190, 'seventy-four thousand one hundred ninety');\nINSERT INTO t2 VALUES(12364, 90123, 'ninety thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(12365, 74066, 'seventy-four thousand sixty-six');\nINSERT INTO t2 VALUES(12366, 53244, 'fifty-three thousand two hundred forty-four');\nINSERT INTO t2 VALUES(12367, 78664, 'seventy-eight thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(12368, 5096, 'five thousand ninety-six');\nINSERT INTO t2 VALUES(12369, 84981, 'eighty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(12370, 78508, 'seventy-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(12371, 56274, 'fifty-six thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(12372, 11935, 'eleven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(12373, 47434, 'forty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(12374, 5929, 'five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(12375, 49918, 'forty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(12376, 55855, 'fifty-five thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(12377, 79168, 'seventy-nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(12378, 48938, 'forty-eight thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(12379, 55363, 'fifty-five thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(12380, 87819, 'eighty-seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(12381, 53080, 'fifty-three thousand eighty');\nINSERT INTO t2 VALUES(12382, 14882, 'fourteen thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(12383, 6312, 'six thousand three hundred twelve');\nINSERT INTO t2 VALUES(12384, 79339, 'seventy-nine thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(12385, 6538, 'six thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(12386, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(12387, 18912, 'eighteen thousand nine hundred twelve');\nINSERT INTO t2 VALUES(12388, 37735, 'thirty-seven thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12389, 22348, 'twenty-two thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(12390, 96195, 'ninety-six thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(12391, 98151, 'ninety-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12392, 43135, 'forty-three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12393, 16904, 'sixteen thousand nine hundred four');\nINSERT INTO t2 VALUES(12394, 27160, 'twenty-seven thousand one hundred sixty');\nINSERT INTO t2 VALUES(12395, 71701, 'seventy-one thousand seven hundred one');\nINSERT INTO t2 VALUES(12396, 46695, 'forty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(12397, 37360, 'thirty-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(12398, 72023, 'seventy-two thousand twenty-three');\nINSERT INTO t2 VALUES(12399, 99512, 'ninety-nine thousand five hundred twelve');\nINSERT INTO t2 VALUES(12400, 59230, 'fifty-nine thousand two hundred thirty');\nINSERT INTO t2 VALUES(12401, 89088, 'eighty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(12402, 5179, 'five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(12403, 22065, 'twenty-two thousand sixty-five');\nINSERT INTO t2 VALUES(12404, 83182, 'eighty-three thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(12405, 44080, 'forty-four thousand eighty');\nINSERT INTO t2 VALUES(12406, 87365, 'eighty-seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(12407, 21815, 'twenty-one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(12408, 48128, 'forty-eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(12409, 11797, 'eleven thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(12410, 34523, 'thirty-four thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(12411, 43112, 'forty-three thousand one hundred twelve');\nINSERT INTO t2 VALUES(12412, 7165, 'seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(12413, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(12414, 85802, 'eighty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(12415, 8449, 'eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(12416, 44829, 'forty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(12417, 76544, 'seventy-six thousand five hundred forty-four');\nINSERT INTO t2 VALUES(12418, 36108, 'thirty-six thousand one hundred eight');\nINSERT INTO t2 VALUES(12419, 58122, 'fifty-eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12420, 94531, 'ninety-four thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(12421, 79127, 'seventy-nine thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(12422, 81039, 'eighty-one thousand thirty-nine');\nINSERT INTO t2 VALUES(12423, 54386, 'fifty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12424, 96969, 'ninety-six thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12425, 65374, 'sixty-five thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(12426, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(12427, 57308, 'fifty-seven thousand three hundred eight');\nINSERT INTO t2 VALUES(12428, 87415, 'eighty-seven thousand four hundred fifteen');\nINSERT INTO t2 VALUES(12429, 47818, 'forty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(12430, 88685, 'eighty-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(12431, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t2 VALUES(12432, 88831, 'eighty-eight thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(12433, 99896, 'ninety-nine thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(12434, 4614, 'four thousand six hundred fourteen');\nINSERT INTO t2 VALUES(12435, 16059, 'sixteen thousand fifty-nine');\nINSERT INTO t2 VALUES(12436, 21699, 'twenty-one thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(12437, 76496, 'seventy-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(12438, 54927, 'fifty-four thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(12439, 57888, 'fifty-seven thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(12440, 98713, 'ninety-eight thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(12441, 10039, 'ten thousand thirty-nine');\nINSERT INTO t2 VALUES(12442, 74768, 'seventy-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(12443, 31123, 'thirty-one thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(12444, 3117, 'three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(12445, 71809, 'seventy-one thousand eight hundred nine');\nINSERT INTO t2 VALUES(12446, 20612, 'twenty thousand six hundred twelve');\nINSERT INTO t2 VALUES(12447, 33991, 'thirty-three thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(12448, 17885, 'seventeen thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12449, 55950, 'fifty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(12450, 79687, 'seventy-nine thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12451, 64151, 'sixty-four thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12452, 91814, 'ninety-one thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(12453, 47908, 'forty-seven thousand nine hundred eight');\nINSERT INTO t2 VALUES(12454, 42794, 'forty-two thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(12455, 19303, 'nineteen thousand three hundred three');\nINSERT INTO t2 VALUES(12456, 77083, 'seventy-seven thousand eighty-three');\nINSERT INTO t2 VALUES(12457, 49044, 'forty-nine thousand forty-four');\nINSERT INTO t2 VALUES(12458, 7847, 'seven thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(12459, 43587, 'forty-three thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(12460, 94462, 'ninety-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(12461, 15135, 'fifteen thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12462, 76030, 'seventy-six thousand thirty');\nINSERT INTO t2 VALUES(12463, 94328, 'ninety-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(12464, 74772, 'seventy-four thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(12465, 11991, 'eleven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(12466, 44574, 'forty-four thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(12467, 68432, 'sixty-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(12468, 72767, 'seventy-two thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(12469, 64969, 'sixty-four thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12470, 88069, 'eighty-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(12471, 1759, 'one thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(12472, 88080, 'eighty-eight thousand eighty');\nINSERT INTO t2 VALUES(12473, 71548, 'seventy-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12474, 4462, 'four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(12475, 2842, 'two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(12476, 96629, 'ninety-six thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(12477, 62891, 'sixty-two thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(12478, 2039, 'two thousand thirty-nine');\nINSERT INTO t2 VALUES(12479, 50274, 'fifty thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(12480, 85582, 'eighty-five thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(12481, 22884, 'twenty-two thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(12482, 97906, 'ninety-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(12483, 827, 'eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12484, 16137, 'sixteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(12485, 87666, 'eighty-seven thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(12486, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t2 VALUES(12487, 55716, 'fifty-five thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(12488, 72454, 'seventy-two thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(12489, 98179, 'ninety-eight thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(12490, 86153, 'eighty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(12491, 55534, 'fifty-five thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(12492, 39347, 'thirty-nine thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12493, 66116, 'sixty-six thousand one hundred sixteen');\nINSERT INTO t2 VALUES(12494, 74248, 'seventy-four thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(12495, 28155, 'twenty-eight thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(12496, 56934, 'fifty-six thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(12497, 61751, 'sixty-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(12498, 45333, 'forty-five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(12499, 22112, 'twenty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(12500, 99531, 'ninety-nine thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(12501, 14744, 'fourteen thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(12502, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(12503, 61578, 'sixty-one thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(12504, 75814, 'seventy-five thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(12505, 87361, 'eighty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(12506, 58065, 'fifty-eight thousand sixty-five');\nINSERT INTO t2 VALUES(12507, 19902, 'nineteen thousand nine hundred two');\nINSERT INTO t2 VALUES(12508, 97460, 'ninety-seven thousand four hundred sixty');\nINSERT INTO t2 VALUES(12509, 72898, 'seventy-two thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(12510, 70929, 'seventy thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(12511, 26760, 'twenty-six thousand seven hundred sixty');\nINSERT INTO t2 VALUES(12512, 51622, 'fifty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(12513, 71772, 'seventy-one thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(12514, 81545, 'eighty-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(12515, 67980, 'sixty-seven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(12516, 46599, 'forty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(12517, 46621, 'forty-six thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12518, 7074, 'seven thousand seventy-four');\nINSERT INTO t2 VALUES(12519, 41885, 'forty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12520, 37138, 'thirty-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(12521, 60585, 'sixty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(12522, 68583, 'sixty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(12523, 40974, 'forty thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(12524, 32852, 'thirty-two thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(12525, 98517, 'ninety-eight thousand five hundred seventeen');\nINSERT INTO t2 VALUES(12526, 81161, 'eighty-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(12527, 65708, 'sixty-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(12528, 14574, 'fourteen thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(12529, 15982, 'fifteen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(12530, 69951, 'sixty-nine thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(12531, 31094, 'thirty-one thousand ninety-four');\nINSERT INTO t2 VALUES(12532, 70790, 'seventy thousand seven hundred ninety');\nINSERT INTO t2 VALUES(12533, 37653, 'thirty-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(12534, 94366, 'ninety-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(12535, 99168, 'ninety-nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(12536, 85889, 'eighty-five thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(12537, 47104, 'forty-seven thousand one hundred four');\nINSERT INTO t2 VALUES(12538, 45987, 'forty-five thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(12539, 68900, 'sixty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(12540, 55151, 'fifty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12541, 49375, 'forty-nine thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(12542, 56738, 'fifty-six thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(12543, 71529, 'seventy-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(12544, 39153, 'thirty-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(12545, 89096, 'eighty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(12546, 72827, 'seventy-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12547, 39486, 'thirty-nine thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(12548, 57301, 'fifty-seven thousand three hundred one');\nINSERT INTO t2 VALUES(12549, 64846, 'sixty-four thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(12550, 37189, 'thirty-seven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(12551, 45679, 'forty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12552, 39682, 'thirty-nine thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(12553, 63872, 'sixty-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(12554, 93567, 'ninety-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12555, 85240, 'eighty-five thousand two hundred forty');\nINSERT INTO t2 VALUES(12556, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12557, 27413, 'twenty-seven thousand four hundred thirteen');\nINSERT INTO t2 VALUES(12558, 54510, 'fifty-four thousand five hundred ten');\nINSERT INTO t2 VALUES(12559, 84298, 'eighty-four thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(12560, 97063, 'ninety-seven thousand sixty-three');\nINSERT INTO t2 VALUES(12561, 29551, 'twenty-nine thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12562, 94326, 'ninety-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(12563, 13148, 'thirteen thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(12564, 6692, 'six thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(12565, 17839, 'seventeen thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(12566, 22602, 'twenty-two thousand six hundred two');\nINSERT INTO t2 VALUES(12567, 75301, 'seventy-five thousand three hundred one');\nINSERT INTO t2 VALUES(12568, 17279, 'seventeen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(12569, 26062, 'twenty-six thousand sixty-two');\nINSERT INTO t2 VALUES(12570, 89010, 'eighty-nine thousand ten');\nINSERT INTO t2 VALUES(12571, 65833, 'sixty-five thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(12572, 11717, 'eleven thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(12573, 2836, 'two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(12574, 27468, 'twenty-seven thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(12575, 85048, 'eighty-five thousand forty-eight');\nINSERT INTO t2 VALUES(12576, 10335, 'ten thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(12577, 21872, 'twenty-one thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(12578, 6750, 'six thousand seven hundred fifty');\nINSERT INTO t2 VALUES(12579, 41564, 'forty-one thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(12580, 28302, 'twenty-eight thousand three hundred two');\nINSERT INTO t2 VALUES(12581, 87662, 'eighty-seven thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(12582, 76996, 'seventy-six thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(12583, 30131, 'thirty thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(12584, 60259, 'sixty thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(12585, 36278, 'thirty-six thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(12586, 32818, 'thirty-two thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(12587, 73372, 'seventy-three thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(12588, 12590, 'twelve thousand five hundred ninety');\nINSERT INTO t2 VALUES(12589, 28038, 'twenty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(12590, 87755, 'eighty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(12591, 30461, 'thirty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(12592, 6063, 'six thousand sixty-three');\nINSERT INTO t2 VALUES(12593, 25807, 'twenty-five thousand eight hundred seven');\nINSERT INTO t2 VALUES(12594, 44551, 'forty-four thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12595, 3422, 'three thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(12596, 73881, 'seventy-three thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(12597, 59737, 'fifty-nine thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(12598, 33448, 'thirty-three thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(12599, 37697, 'thirty-seven thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(12600, 81875, 'eighty-one thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(12601, 341, 'three hundred forty-one');\nINSERT INTO t2 VALUES(12602, 12096, 'twelve thousand ninety-six');\nINSERT INTO t2 VALUES(12603, 33300, 'thirty-three thousand three hundred');\nINSERT INTO t2 VALUES(12604, 82707, 'eighty-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(12605, 36654, 'thirty-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(12606, 57164, 'fifty-seven thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(12607, 38579, 'thirty-eight thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(12608, 55103, 'fifty-five thousand one hundred three');\nINSERT INTO t2 VALUES(12609, 49, 'forty-nine');\nINSERT INTO t2 VALUES(12610, 89120, 'eighty-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(12611, 64031, 'sixty-four thousand thirty-one');\nINSERT INTO t2 VALUES(12612, 81715, 'eighty-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(12613, 74140, 'seventy-four thousand one hundred forty');\nINSERT INTO t2 VALUES(12614, 77810, 'seventy-seven thousand eight hundred ten');\nINSERT INTO t2 VALUES(12615, 23874, 'twenty-three thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(12616, 11269, 'eleven thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(12617, 48975, 'forty-eight thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(12618, 34702, 'thirty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(12619, 31495, 'thirty-one thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(12620, 33985, 'thirty-three thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(12621, 55958, 'fifty-five thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(12622, 64040, 'sixty-four thousand forty');\nINSERT INTO t2 VALUES(12623, 15700, 'fifteen thousand seven hundred');\nINSERT INTO t2 VALUES(12624, 91866, 'ninety-one thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(12625, 48729, 'forty-eight thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(12626, 50735, 'fifty thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(12627, 27221, 'twenty-seven thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(12628, 89406, 'eighty-nine thousand four hundred six');\nINSERT INTO t2 VALUES(12629, 7412, 'seven thousand four hundred twelve');\nINSERT INTO t2 VALUES(12630, 84827, 'eighty-four thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(12631, 58206, 'fifty-eight thousand two hundred six');\nINSERT INTO t2 VALUES(12632, 77286, 'seventy-seven thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(12633, 57636, 'fifty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(12634, 28745, 'twenty-eight thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(12635, 1221, 'one thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(12636, 42082, 'forty-two thousand eighty-two');\nINSERT INTO t2 VALUES(12637, 23456, 'twenty-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(12638, 25511, 'twenty-five thousand five hundred eleven');\nINSERT INTO t2 VALUES(12639, 94709, 'ninety-four thousand seven hundred nine');\nINSERT INTO t2 VALUES(12640, 32505, 'thirty-two thousand five hundred five');\nINSERT INTO t2 VALUES(12641, 38679, 'thirty-eight thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12642, 60015, 'sixty thousand fifteen');\nINSERT INTO t2 VALUES(12643, 17694, 'seventeen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(12644, 55634, 'fifty-five thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(12645, 54043, 'fifty-four thousand forty-three');\nINSERT INTO t2 VALUES(12646, 55354, 'fifty-five thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(12647, 59841, 'fifty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(12648, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(12649, 29103, 'twenty-nine thousand one hundred three');\nINSERT INTO t2 VALUES(12650, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(12651, 38232, 'thirty-eight thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(12652, 67203, 'sixty-seven thousand two hundred three');\nINSERT INTO t2 VALUES(12653, 98305, 'ninety-eight thousand three hundred five');\nINSERT INTO t2 VALUES(12654, 75262, 'seventy-five thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(12655, 51044, 'fifty-one thousand forty-four');\nINSERT INTO t2 VALUES(12656, 24410, 'twenty-four thousand four hundred ten');\nINSERT INTO t2 VALUES(12657, 46431, 'forty-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(12658, 60254, 'sixty thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(12659, 98685, 'ninety-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(12660, 75358, 'seventy-five thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(12661, 87741, 'eighty-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(12662, 48253, 'forty-eight thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(12663, 83092, 'eighty-three thousand ninety-two');\nINSERT INTO t2 VALUES(12664, 32609, 'thirty-two thousand six hundred nine');\nINSERT INTO t2 VALUES(12665, 76744, 'seventy-six thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(12666, 31524, 'thirty-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(12667, 68959, 'sixty-eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(12668, 31549, 'thirty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12669, 19074, 'nineteen thousand seventy-four');\nINSERT INTO t2 VALUES(12670, 99788, 'ninety-nine thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(12671, 98808, 'ninety-eight thousand eight hundred eight');\nINSERT INTO t2 VALUES(12672, 71340, 'seventy-one thousand three hundred forty');\nINSERT INTO t2 VALUES(12673, 78608, 'seventy-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(12674, 54074, 'fifty-four thousand seventy-four');\nINSERT INTO t2 VALUES(12675, 18310, 'eighteen thousand three hundred ten');\nINSERT INTO t2 VALUES(12676, 8874, 'eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(12677, 51017, 'fifty-one thousand seventeen');\nINSERT INTO t2 VALUES(12678, 45090, 'forty-five thousand ninety');\nINSERT INTO t2 VALUES(12679, 87858, 'eighty-seven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(12680, 62932, 'sixty-two thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(12681, 71313, 'seventy-one thousand three hundred thirteen');\nINSERT INTO t2 VALUES(12682, 17523, 'seventeen thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(12683, 47376, 'forty-seven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(12684, 10065, 'ten thousand sixty-five');\nINSERT INTO t2 VALUES(12685, 82308, 'eighty-two thousand three hundred eight');\nINSERT INTO t2 VALUES(12686, 48199, 'forty-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(12687, 55931, 'fifty-five thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(12688, 15461, 'fifteen thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(12689, 13502, 'thirteen thousand five hundred two');\nINSERT INTO t2 VALUES(12690, 68126, 'sixty-eight thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(12691, 84777, 'eighty-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(12692, 24947, 'twenty-four thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(12693, 84968, 'eighty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(12694, 27249, 'twenty-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(12695, 3025, 'three thousand twenty-five');\nINSERT INTO t2 VALUES(12696, 56981, 'fifty-six thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(12697, 97479, 'ninety-seven thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(12698, 80969, 'eighty thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12699, 71722, 'seventy-one thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(12700, 17833, 'seventeen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(12701, 72092, 'seventy-two thousand ninety-two');\nINSERT INTO t2 VALUES(12702, 27657, 'twenty-seven thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(12703, 48708, 'forty-eight thousand seven hundred eight');\nINSERT INTO t2 VALUES(12704, 72549, 'seventy-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12705, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t2 VALUES(12706, 3320, 'three thousand three hundred twenty');\nINSERT INTO t2 VALUES(12707, 73978, 'seventy-three thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(12708, 80083, 'eighty thousand eighty-three');\nINSERT INTO t2 VALUES(12709, 45347, 'forty-five thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(12710, 23713, 'twenty-three thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(12711, 91256, 'ninety-one thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(12712, 84112, 'eighty-four thousand one hundred twelve');\nINSERT INTO t2 VALUES(12713, 88280, 'eighty-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(12714, 84621, 'eighty-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12715, 63263, 'sixty-three thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(12716, 39124, 'thirty-nine thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(12717, 42785, 'forty-two thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(12718, 26797, 'twenty-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(12719, 62518, 'sixty-two thousand five hundred eighteen');\nINSERT INTO t2 VALUES(12720, 8640, 'eight thousand six hundred forty');\nINSERT INTO t2 VALUES(12721, 25589, 'twenty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(12722, 351, 'three hundred fifty-one');\nINSERT INTO t2 VALUES(12723, 22904, 'twenty-two thousand nine hundred four');\nINSERT INTO t2 VALUES(12724, 5160, 'five thousand one hundred sixty');\nINSERT INTO t2 VALUES(12725, 91646, 'ninety-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(12726, 61314, 'sixty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(12727, 93782, 'ninety-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(12728, 37006, 'thirty-seven thousand six');\nINSERT INTO t2 VALUES(12729, 38451, 'thirty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(12730, 35434, 'thirty-five thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(12731, 85499, 'eighty-five thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(12732, 48641, 'forty-eight thousand six hundred forty-one');\nINSERT INTO t2 VALUES(12733, 273, 'two hundred seventy-three');\nINSERT INTO t2 VALUES(12734, 29340, 'twenty-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(12735, 5279, 'five thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(12736, 84050, 'eighty-four thousand fifty');\nINSERT INTO t2 VALUES(12737, 17282, 'seventeen thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(12738, 28789, 'twenty-eight thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(12739, 17097, 'seventeen thousand ninety-seven');\nINSERT INTO t2 VALUES(12740, 22432, 'twenty-two thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(12741, 16820, 'sixteen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(12742, 53508, 'fifty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(12743, 94135, 'ninety-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12744, 75030, 'seventy-five thousand thirty');\nINSERT INTO t2 VALUES(12745, 84367, 'eighty-four thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(12746, 37510, 'thirty-seven thousand five hundred ten');\nINSERT INTO t2 VALUES(12747, 15447, 'fifteen thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(12748, 50394, 'fifty thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(12749, 53109, 'fifty-three thousand one hundred nine');\nINSERT INTO t2 VALUES(12750, 94074, 'ninety-four thousand seventy-four');\nINSERT INTO t2 VALUES(12751, 44533, 'forty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(12752, 46988, 'forty-six thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(12753, 94799, 'ninety-four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(12754, 90383, 'ninety thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(12755, 84364, 'eighty-four thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(12756, 53591, 'fifty-three thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(12757, 86335, 'eighty-six thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(12758, 1902, 'one thousand nine hundred two');\nINSERT INTO t2 VALUES(12759, 38419, 'thirty-eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(12760, 34700, 'thirty-four thousand seven hundred');\nINSERT INTO t2 VALUES(12761, 99480, 'ninety-nine thousand four hundred eighty');\nINSERT INTO t2 VALUES(12762, 11679, 'eleven thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(12763, 38545, 'thirty-eight thousand five hundred forty-five');\nINSERT INTO t2 VALUES(12764, 95644, 'ninety-five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(12765, 1290, 'one thousand two hundred ninety');\nINSERT INTO t2 VALUES(12766, 59726, 'fifty-nine thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12767, 94997, 'ninety-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(12768, 67254, 'sixty-seven thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(12769, 14653, 'fourteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(12770, 88412, 'eighty-eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(12771, 33937, 'thirty-three thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(12772, 19610, 'nineteen thousand six hundred ten');\nINSERT INTO t2 VALUES(12773, 90505, 'ninety thousand five hundred five');\nINSERT INTO t2 VALUES(12774, 9043, 'nine thousand forty-three');\nINSERT INTO t2 VALUES(12775, 38038, 'thirty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(12776, 73223, 'seventy-three thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(12777, 12215, 'twelve thousand two hundred fifteen');\nINSERT INTO t2 VALUES(12778, 42517, 'forty-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(12779, 97719, 'ninety-seven thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(12780, 82493, 'eighty-two thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(12781, 1465, 'one thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(12782, 65935, 'sixty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(12783, 10752, 'ten thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(12784, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t2 VALUES(12785, 14670, 'fourteen thousand six hundred seventy');\nINSERT INTO t2 VALUES(12786, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12787, 42904, 'forty-two thousand nine hundred four');\nINSERT INTO t2 VALUES(12788, 48511, 'forty-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(12789, 8135, 'eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(12790, 77551, 'seventy-seven thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(12791, 40575, 'forty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(12792, 38451, 'thirty-eight thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(12793, 87935, 'eighty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(12794, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(12795, 25292, 'twenty-five thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(12796, 66157, 'sixty-six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(12797, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(12798, 29664, 'twenty-nine thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(12799, 68150, 'sixty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(12800, 42576, 'forty-two thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(12801, 54257, 'fifty-four thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(12802, 91548, 'ninety-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12803, 19302, 'nineteen thousand three hundred two');\nINSERT INTO t2 VALUES(12804, 14043, 'fourteen thousand forty-three');\nINSERT INTO t2 VALUES(12805, 50292, 'fifty thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(12806, 82995, 'eighty-two thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(12807, 74002, 'seventy-four thousand two');\nINSERT INTO t2 VALUES(12808, 32517, 'thirty-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(12809, 26885, 'twenty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(12810, 92621, 'ninety-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12811, 57417, 'fifty-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(12812, 33465, 'thirty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(12813, 20416, 'twenty thousand four hundred sixteen');\nINSERT INTO t2 VALUES(12814, 56124, 'fifty-six thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(12815, 46067, 'forty-six thousand sixty-seven');\nINSERT INTO t2 VALUES(12816, 39386, 'thirty-nine thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12817, 79949, 'seventy-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(12818, 91960, 'ninety-one thousand nine hundred sixty');\nINSERT INTO t2 VALUES(12819, 72770, 'seventy-two thousand seven hundred seventy');\nINSERT INTO t2 VALUES(12820, 71993, 'seventy-one thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(12821, 84252, 'eighty-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(12822, 19078, 'nineteen thousand seventy-eight');\nINSERT INTO t2 VALUES(12823, 67071, 'sixty-seven thousand seventy-one');\nINSERT INTO t2 VALUES(12824, 25905, 'twenty-five thousand nine hundred five');\nINSERT INTO t2 VALUES(12825, 24508, 'twenty-four thousand five hundred eight');\nINSERT INTO t2 VALUES(12826, 5443, 'five thousand four hundred forty-three');\nINSERT INTO t2 VALUES(12827, 92870, 'ninety-two thousand eight hundred seventy');\nINSERT INTO t2 VALUES(12828, 56853, 'fifty-six thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(12829, 24852, 'twenty-four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(12830, 13687, 'thirteen thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(12831, 17332, 'seventeen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(12832, 14460, 'fourteen thousand four hundred sixty');\nINSERT INTO t2 VALUES(12833, 81086, 'eighty-one thousand eighty-six');\nINSERT INTO t2 VALUES(12834, 7884, 'seven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(12835, 83508, 'eighty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(12836, 69657, 'sixty-nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(12837, 44143, 'forty-four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(12838, 81363, 'eighty-one thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(12839, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t2 VALUES(12840, 18734, 'eighteen thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(12841, 44796, 'forty-four thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(12842, 19063, 'nineteen thousand sixty-three');\nINSERT INTO t2 VALUES(12843, 36851, 'thirty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(12844, 6243, 'six thousand two hundred forty-three');\nINSERT INTO t2 VALUES(12845, 80756, 'eighty thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(12846, 76024, 'seventy-six thousand twenty-four');\nINSERT INTO t2 VALUES(12847, 65444, 'sixty-five thousand four hundred forty-four');\nINSERT INTO t2 VALUES(12848, 74297, 'seventy-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(12849, 61080, 'sixty-one thousand eighty');\nINSERT INTO t2 VALUES(12850, 47659, 'forty-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(12851, 51887, 'fifty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(12852, 21369, 'twenty-one thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(12853, 63464, 'sixty-three thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(12854, 73265, 'seventy-three thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(12855, 81129, 'eighty-one thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(12856, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(12857, 86379, 'eighty-six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(12858, 90964, 'ninety thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(12859, 62673, 'sixty-two thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(12860, 82954, 'eighty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(12861, 36211, 'thirty-six thousand two hundred eleven');\nINSERT INTO t2 VALUES(12862, 18351, 'eighteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(12863, 79590, 'seventy-nine thousand five hundred ninety');\nINSERT INTO t2 VALUES(12864, 77315, 'seventy-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(12865, 88413, 'eighty-eight thousand four hundred thirteen');\nINSERT INTO t2 VALUES(12866, 14572, 'fourteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(12867, 42962, 'forty-two thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(12868, 26686, 'twenty-six thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(12869, 52599, 'fifty-two thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(12870, 36091, 'thirty-six thousand ninety-one');\nINSERT INTO t2 VALUES(12871, 75689, 'seventy-five thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(12872, 58595, 'fifty-eight thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(12873, 96901, 'ninety-six thousand nine hundred one');\nINSERT INTO t2 VALUES(12874, 58548, 'fifty-eight thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(12875, 89596, 'eighty-nine thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(12876, 38378, 'thirty-eight thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(12877, 29383, 'twenty-nine thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(12878, 41611, 'forty-one thousand six hundred eleven');\nINSERT INTO t2 VALUES(12879, 7871, 'seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(12880, 28664, 'twenty-eight thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(12881, 22282, 'twenty-two thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(12882, 64291, 'sixty-four thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(12883, 63841, 'sixty-three thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(12884, 5644, 'five thousand six hundred forty-four');\nINSERT INTO t2 VALUES(12885, 87763, 'eighty-seven thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(12886, 71258, 'seventy-one thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(12887, 98969, 'ninety-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12888, 97564, 'ninety-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(12889, 89038, 'eighty-nine thousand thirty-eight');\nINSERT INTO t2 VALUES(12890, 70619, 'seventy thousand six hundred nineteen');\nINSERT INTO t2 VALUES(12891, 31542, 'thirty-one thousand five hundred forty-two');\nINSERT INTO t2 VALUES(12892, 89204, 'eighty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(12893, 88392, 'eighty-eight thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(12894, 16625, 'sixteen thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(12895, 4785, 'four thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(12896, 47685, 'forty-seven thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(12897, 11192, 'eleven thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(12898, 32073, 'thirty-two thousand seventy-three');\nINSERT INTO t2 VALUES(12899, 78085, 'seventy-eight thousand eighty-five');\nINSERT INTO t2 VALUES(12900, 503, 'five hundred three');\nINSERT INTO t2 VALUES(12901, 46088, 'forty-six thousand eighty-eight');\nINSERT INTO t2 VALUES(12902, 94004, 'ninety-four thousand four');\nINSERT INTO t2 VALUES(12903, 22694, 'twenty-two thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(12904, 56386, 'fifty-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(12905, 2151, 'two thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(12906, 71433, 'seventy-one thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(12907, 70973, 'seventy thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12908, 77969, 'seventy-seven thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(12909, 57592, 'fifty-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(12910, 54666, 'fifty-four thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(12911, 49893, 'forty-nine thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(12912, 6148, 'six thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(12913, 60475, 'sixty thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(12914, 76054, 'seventy-six thousand fifty-four');\nINSERT INTO t2 VALUES(12915, 89714, 'eighty-nine thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(12916, 90057, 'ninety thousand fifty-seven');\nINSERT INTO t2 VALUES(12917, 93441, 'ninety-three thousand four hundred forty-one');\nINSERT INTO t2 VALUES(12918, 77868, 'seventy-seven thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(12919, 52884, 'fifty-two thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(12920, 42957, 'forty-two thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(12921, 80056, 'eighty thousand fifty-six');\nINSERT INTO t2 VALUES(12922, 94672, 'ninety-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(12923, 69476, 'sixty-nine thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(12924, 47443, 'forty-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(12925, 1464, 'one thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(12926, 59499, 'fifty-nine thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(12927, 20766, 'twenty thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(12928, 35904, 'thirty-five thousand nine hundred four');\nINSERT INTO t2 VALUES(12929, 16391, 'sixteen thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(12930, 14525, 'fourteen thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(12931, 61799, 'sixty-one thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(12932, 58118, 'fifty-eight thousand one hundred eighteen');\nINSERT INTO t2 VALUES(12933, 86526, 'eighty-six thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(12934, 31895, 'thirty-one thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(12935, 45567, 'forty-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(12936, 29187, 'twenty-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(12937, 29988, 'twenty-nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(12938, 77665, 'seventy-seven thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(12939, 91083, 'ninety-one thousand eighty-three');\nINSERT INTO t2 VALUES(12940, 80714, 'eighty thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(12941, 98362, 'ninety-eight thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(12942, 8985, 'eight thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(12943, 42413, 'forty-two thousand four hundred thirteen');\nINSERT INTO t2 VALUES(12944, 32181, 'thirty-two thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(12945, 96375, 'ninety-six thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(12946, 7972, 'seven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(12947, 78864, 'seventy-eight thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(12948, 43524, 'forty-three thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(12949, 54870, 'fifty-four thousand eight hundred seventy');\nINSERT INTO t2 VALUES(12950, 9549, 'nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(12951, 71122, 'seventy-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(12952, 74872, 'seventy-four thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(12953, 67421, 'sixty-seven thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(12954, 91784, 'ninety-one thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(12955, 93531, 'ninety-three thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(12956, 89621, 'eighty-nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(12957, 80613, 'eighty thousand six hundred thirteen');\nINSERT INTO t2 VALUES(12958, 4054, 'four thousand fifty-four');\nINSERT INTO t2 VALUES(12959, 40155, 'forty thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(12960, 53778, 'fifty-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(12961, 75829, 'seventy-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(12962, 75078, 'seventy-five thousand seventy-eight');\nINSERT INTO t2 VALUES(12963, 14544, 'fourteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(12964, 95138, 'ninety-five thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(12965, 40098, 'forty thousand ninety-eight');\nINSERT INTO t2 VALUES(12966, 70972, 'seventy thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(12967, 3327, 'three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(12968, 54851, 'fifty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(12969, 48095, 'forty-eight thousand ninety-five');\nINSERT INTO t2 VALUES(12970, 74296, 'seventy-four thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(12971, 72389, 'seventy-two thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(12972, 20726, 'twenty thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(12973, 76543, 'seventy-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(12974, 20326, 'twenty thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(12975, 63210, 'sixty-three thousand two hundred ten');\nINSERT INTO t2 VALUES(12976, 5038, 'five thousand thirty-eight');\nINSERT INTO t2 VALUES(12977, 75155, 'seventy-five thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(12978, 6163, 'six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(12979, 50030, 'fifty thousand thirty');\nINSERT INTO t2 VALUES(12980, 98458, 'ninety-eight thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(12981, 97940, 'ninety-seven thousand nine hundred forty');\nINSERT INTO t2 VALUES(12982, 22001, 'twenty-two thousand one');\nINSERT INTO t2 VALUES(12983, 11763, 'eleven thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(12984, 72730, 'seventy-two thousand seven hundred thirty');\nINSERT INTO t2 VALUES(12985, 95710, 'ninety-five thousand seven hundred ten');\nINSERT INTO t2 VALUES(12986, 51318, 'fifty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(12987, 43493, 'forty-three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(12988, 24425, 'twenty-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(12989, 30973, 'thirty thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(12990, 15094, 'fifteen thousand ninety-four');\nINSERT INTO t2 VALUES(12991, 44550, 'forty-four thousand five hundred fifty');\nINSERT INTO t2 VALUES(12992, 39778, 'thirty-nine thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(12993, 3393, 'three thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(12994, 99931, 'ninety-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(12995, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(12996, 52057, 'fifty-two thousand fifty-seven');\nINSERT INTO t2 VALUES(12997, 30194, 'thirty thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(12998, 90986, 'ninety thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(12999, 43629, 'forty-three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(13000, 25038, 'twenty-five thousand thirty-eight');\nINSERT INTO t2 VALUES(13001, 55729, 'fifty-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(13002, 88732, 'eighty-eight thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(13003, 68437, 'sixty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(13004, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t2 VALUES(13005, 53387, 'fifty-three thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(13006, 82609, 'eighty-two thousand six hundred nine');\nINSERT INTO t2 VALUES(13007, 13864, 'thirteen thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(13008, 91106, 'ninety-one thousand one hundred six');\nINSERT INTO t2 VALUES(13009, 35798, 'thirty-five thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(13010, 77114, 'seventy-seven thousand one hundred fourteen');\nINSERT INTO t2 VALUES(13011, 59246, 'fifty-nine thousand two hundred forty-six');\nINSERT INTO t2 VALUES(13012, 25971, 'twenty-five thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(13013, 21001, 'twenty-one thousand one');\nINSERT INTO t2 VALUES(13014, 17681, 'seventeen thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(13015, 10887, 'ten thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(13016, 3308, 'three thousand three hundred eight');\nINSERT INTO t2 VALUES(13017, 16851, 'sixteen thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(13018, 73626, 'seventy-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(13019, 39209, 'thirty-nine thousand two hundred nine');\nINSERT INTO t2 VALUES(13020, 44747, 'forty-four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13021, 48379, 'forty-eight thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(13022, 95384, 'ninety-five thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(13023, 9559, 'nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(13024, 22617, 'twenty-two thousand six hundred seventeen');\nINSERT INTO t2 VALUES(13025, 26012, 'twenty-six thousand twelve');\nINSERT INTO t2 VALUES(13026, 98347, 'ninety-eight thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(13027, 37304, 'thirty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(13028, 38813, 'thirty-eight thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(13029, 46145, 'forty-six thousand one hundred forty-five');\nINSERT INTO t2 VALUES(13030, 46570, 'forty-six thousand five hundred seventy');\nINSERT INTO t2 VALUES(13031, 50681, 'fifty thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(13032, 84182, 'eighty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(13033, 39559, 'thirty-nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(13034, 63151, 'sixty-three thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(13035, 5028, 'five thousand twenty-eight');\nINSERT INTO t2 VALUES(13036, 77886, 'seventy-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(13037, 68258, 'sixty-eight thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(13038, 66907, 'sixty-six thousand nine hundred seven');\nINSERT INTO t2 VALUES(13039, 88, 'eighty-eight');\nINSERT INTO t2 VALUES(13040, 7729, 'seven thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(13041, 30994, 'thirty thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(13042, 27415, 'twenty-seven thousand four hundred fifteen');\nINSERT INTO t2 VALUES(13043, 67390, 'sixty-seven thousand three hundred ninety');\nINSERT INTO t2 VALUES(13044, 30356, 'thirty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(13045, 10276, 'ten thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(13046, 94756, 'ninety-four thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(13047, 31440, 'thirty-one thousand four hundred forty');\nINSERT INTO t2 VALUES(13048, 7856, 'seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(13049, 52568, 'fifty-two thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(13050, 16510, 'sixteen thousand five hundred ten');\nINSERT INTO t2 VALUES(13051, 72650, 'seventy-two thousand six hundred fifty');\nINSERT INTO t2 VALUES(13052, 70648, 'seventy thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(13053, 83477, 'eighty-three thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(13054, 6684, 'six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(13055, 93352, 'ninety-three thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(13056, 39802, 'thirty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(13057, 34203, 'thirty-four thousand two hundred three');\nINSERT INTO t2 VALUES(13058, 65817, 'sixty-five thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(13059, 33706, 'thirty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(13060, 6095, 'six thousand ninety-five');\nINSERT INTO t2 VALUES(13061, 99711, 'ninety-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(13062, 97379, 'ninety-seven thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(13063, 59598, 'fifty-nine thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(13064, 44929, 'forty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13065, 50358, 'fifty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(13066, 55998, 'fifty-five thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(13067, 24931, 'twenty-four thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(13068, 1909, 'one thousand nine hundred nine');\nINSERT INTO t2 VALUES(13069, 13762, 'thirteen thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(13070, 82104, 'eighty-two thousand one hundred four');\nINSERT INTO t2 VALUES(13071, 98747, 'ninety-eight thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13072, 77978, 'seventy-seven thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13073, 11771, 'eleven thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(13074, 11831, 'eleven thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(13075, 3838, 'three thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(13076, 36656, 'thirty-six thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(13077, 81809, 'eighty-one thousand eight hundred nine');\nINSERT INTO t2 VALUES(13078, 59234, 'fifty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(13079, 48911, 'forty-eight thousand nine hundred eleven');\nINSERT INTO t2 VALUES(13080, 10925, 'ten thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(13081, 33733, 'thirty-three thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(13082, 10417, 'ten thousand four hundred seventeen');\nINSERT INTO t2 VALUES(13083, 4775, 'four thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(13084, 27816, 'twenty-seven thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(13085, 57227, 'fifty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(13086, 51662, 'fifty-one thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(13087, 18961, 'eighteen thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(13088, 17700, 'seventeen thousand seven hundred');\nINSERT INTO t2 VALUES(13089, 5420, 'five thousand four hundred twenty');\nINSERT INTO t2 VALUES(13090, 55440, 'fifty-five thousand four hundred forty');\nINSERT INTO t2 VALUES(13091, 66680, 'sixty-six thousand six hundred eighty');\nINSERT INTO t2 VALUES(13092, 5923, 'five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(13093, 49544, 'forty-nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(13094, 34480, 'thirty-four thousand four hundred eighty');\nINSERT INTO t2 VALUES(13095, 13248, 'thirteen thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(13096, 36359, 'thirty-six thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(13097, 42391, 'forty-two thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(13098, 90361, 'ninety thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(13099, 78799, 'seventy-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(13100, 85497, 'eighty-five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(13101, 70559, 'seventy thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(13102, 66041, 'sixty-six thousand forty-one');\nINSERT INTO t2 VALUES(13103, 24343, 'twenty-four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(13104, 61475, 'sixty-one thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(13105, 10975, 'ten thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(13106, 69803, 'sixty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(13107, 98004, 'ninety-eight thousand four');\nINSERT INTO t2 VALUES(13108, 16349, 'sixteen thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(13109, 9929, 'nine thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13110, 36080, 'thirty-six thousand eighty');\nINSERT INTO t2 VALUES(13111, 12242, 'twelve thousand two hundred forty-two');\nINSERT INTO t2 VALUES(13112, 97028, 'ninety-seven thousand twenty-eight');\nINSERT INTO t2 VALUES(13113, 29384, 'twenty-nine thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(13114, 38221, 'thirty-eight thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(13115, 53447, 'fifty-three thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(13116, 98000, 'ninety-eight thousand');\nINSERT INTO t2 VALUES(13117, 68425, 'sixty-eight thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(13118, 4350, 'four thousand three hundred fifty');\nINSERT INTO t2 VALUES(13119, 1708, 'one thousand seven hundred eight');\nINSERT INTO t2 VALUES(13120, 28134, 'twenty-eight thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(13121, 4813, 'four thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(13122, 93787, 'ninety-three thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(13123, 8822, 'eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(13124, 72982, 'seventy-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(13125, 33244, 'thirty-three thousand two hundred forty-four');\nINSERT INTO t2 VALUES(13126, 48771, 'forty-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(13127, 48958, 'forty-eight thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(13128, 10980, 'ten thousand nine hundred eighty');\nINSERT INTO t2 VALUES(13129, 23503, 'twenty-three thousand five hundred three');\nINSERT INTO t2 VALUES(13130, 97517, 'ninety-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(13131, 75226, 'seventy-five thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(13132, 65680, 'sixty-five thousand six hundred eighty');\nINSERT INTO t2 VALUES(13133, 81768, 'eighty-one thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(13134, 26780, 'twenty-six thousand seven hundred eighty');\nINSERT INTO t2 VALUES(13135, 13112, 'thirteen thousand one hundred twelve');\nINSERT INTO t2 VALUES(13136, 30779, 'thirty thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(13137, 69018, 'sixty-nine thousand eighteen');\nINSERT INTO t2 VALUES(13138, 54064, 'fifty-four thousand sixty-four');\nINSERT INTO t2 VALUES(13139, 64860, 'sixty-four thousand eight hundred sixty');\nINSERT INTO t2 VALUES(13140, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(13141, 2837, 'two thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(13142, 36341, 'thirty-six thousand three hundred forty-one');\nINSERT INTO t2 VALUES(13143, 1197, 'one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13144, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13145, 87437, 'eighty-seven thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(13146, 73747, 'seventy-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13147, 3822, 'three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(13148, 63132, 'sixty-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(13149, 74858, 'seventy-four thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(13150, 60719, 'sixty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(13151, 11534, 'eleven thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(13152, 89423, 'eighty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(13153, 64825, 'sixty-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(13154, 67448, 'sixty-seven thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(13155, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(13156, 9647, 'nine thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(13157, 35185, 'thirty-five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(13158, 8076, 'eight thousand seventy-six');\nINSERT INTO t2 VALUES(13159, 50827, 'fifty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(13160, 56347, 'fifty-six thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(13161, 63542, 'sixty-three thousand five hundred forty-two');\nINSERT INTO t2 VALUES(13162, 36439, 'thirty-six thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(13163, 17371, 'seventeen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(13164, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(13165, 87903, 'eighty-seven thousand nine hundred three');\nINSERT INTO t2 VALUES(13166, 95923, 'ninety-five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(13167, 90815, 'ninety thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13168, 22562, 'twenty-two thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(13169, 50782, 'fifty thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(13170, 82861, 'eighty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(13171, 70222, 'seventy thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(13172, 12179, 'twelve thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(13173, 54493, 'fifty-four thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(13174, 78149, 'seventy-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(13175, 46002, 'forty-six thousand two');\nINSERT INTO t2 VALUES(13176, 7700, 'seven thousand seven hundred');\nINSERT INTO t2 VALUES(13177, 77620, 'seventy-seven thousand six hundred twenty');\nINSERT INTO t2 VALUES(13178, 3474, 'three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(13179, 73851, 'seventy-three thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(13180, 15905, 'fifteen thousand nine hundred five');\nINSERT INTO t2 VALUES(13181, 59004, 'fifty-nine thousand four');\nINSERT INTO t2 VALUES(13182, 96704, 'ninety-six thousand seven hundred four');\nINSERT INTO t2 VALUES(13183, 36024, 'thirty-six thousand twenty-four');\nINSERT INTO t2 VALUES(13184, 28203, 'twenty-eight thousand two hundred three');\nINSERT INTO t2 VALUES(13185, 52029, 'fifty-two thousand twenty-nine');\nINSERT INTO t2 VALUES(13186, 78390, 'seventy-eight thousand three hundred ninety');\nINSERT INTO t2 VALUES(13187, 87978, 'eighty-seven thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13188, 17610, 'seventeen thousand six hundred ten');\nINSERT INTO t2 VALUES(13189, 72739, 'seventy-two thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(13190, 34316, 'thirty-four thousand three hundred sixteen');\nINSERT INTO t2 VALUES(13191, 24071, 'twenty-four thousand seventy-one');\nINSERT INTO t2 VALUES(13192, 53318, 'fifty-three thousand three hundred eighteen');\nINSERT INTO t2 VALUES(13193, 75735, 'seventy-five thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(13194, 41541, 'forty-one thousand five hundred forty-one');\nINSERT INTO t2 VALUES(13195, 32100, 'thirty-two thousand one hundred');\nINSERT INTO t2 VALUES(13196, 61417, 'sixty-one thousand four hundred seventeen');\nINSERT INTO t2 VALUES(13197, 11863, 'eleven thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13198, 29375, 'twenty-nine thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(13199, 37859, 'thirty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(13200, 87694, 'eighty-seven thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(13201, 26526, 'twenty-six thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(13202, 15888, 'fifteen thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(13203, 70807, 'seventy thousand eight hundred seven');\nINSERT INTO t2 VALUES(13204, 94343, 'ninety-four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(13205, 81494, 'eighty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(13206, 29740, 'twenty-nine thousand seven hundred forty');\nINSERT INTO t2 VALUES(13207, 23823, 'twenty-three thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(13208, 59185, 'fifty-nine thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(13209, 20678, 'twenty thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(13210, 29307, 'twenty-nine thousand three hundred seven');\nINSERT INTO t2 VALUES(13211, 13134, 'thirteen thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(13212, 4661, 'four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(13213, 35977, 'thirty-five thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(13214, 50793, 'fifty thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(13215, 61478, 'sixty-one thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(13216, 98202, 'ninety-eight thousand two hundred two');\nINSERT INTO t2 VALUES(13217, 69740, 'sixty-nine thousand seven hundred forty');\nINSERT INTO t2 VALUES(13218, 75275, 'seventy-five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(13219, 56925, 'fifty-six thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(13220, 60715, 'sixty thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(13221, 64929, 'sixty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13222, 27801, 'twenty-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(13223, 18972, 'eighteen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(13224, 11691, 'eleven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13225, 341, 'three hundred forty-one');\nINSERT INTO t2 VALUES(13226, 19298, 'nineteen thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(13227, 40105, 'forty thousand one hundred five');\nINSERT INTO t2 VALUES(13228, 26635, 'twenty-six thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(13229, 24978, 'twenty-four thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13230, 47689, 'forty-seven thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(13231, 11586, 'eleven thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(13232, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(13233, 123, 'one hundred twenty-three');\nINSERT INTO t2 VALUES(13234, 8505, 'eight thousand five hundred five');\nINSERT INTO t2 VALUES(13235, 49402, 'forty-nine thousand four hundred two');\nINSERT INTO t2 VALUES(13236, 26740, 'twenty-six thousand seven hundred forty');\nINSERT INTO t2 VALUES(13237, 83351, 'eighty-three thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(13238, 35659, 'thirty-five thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(13239, 87846, 'eighty-seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(13240, 16244, 'sixteen thousand two hundred forty-four');\nINSERT INTO t2 VALUES(13241, 6127, 'six thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(13242, 12441, 'twelve thousand four hundred forty-one');\nINSERT INTO t2 VALUES(13243, 27672, 'twenty-seven thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(13244, 41610, 'forty-one thousand six hundred ten');\nINSERT INTO t2 VALUES(13245, 77801, 'seventy-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(13246, 64605, 'sixty-four thousand six hundred five');\nINSERT INTO t2 VALUES(13247, 55341, 'fifty-five thousand three hundred forty-one');\nINSERT INTO t2 VALUES(13248, 38208, 'thirty-eight thousand two hundred eight');\nINSERT INTO t2 VALUES(13249, 31076, 'thirty-one thousand seventy-six');\nINSERT INTO t2 VALUES(13250, 10181, 'ten thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(13251, 5654, 'five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(13252, 14005, 'fourteen thousand five');\nINSERT INTO t2 VALUES(13253, 84968, 'eighty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(13254, 21314, 'twenty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(13255, 62093, 'sixty-two thousand ninety-three');\nINSERT INTO t2 VALUES(13256, 37291, 'thirty-seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(13257, 97748, 'ninety-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(13258, 71656, 'seventy-one thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(13259, 71265, 'seventy-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(13260, 48969, 'forty-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(13261, 53751, 'fifty-three thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(13262, 57532, 'fifty-seven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(13263, 36202, 'thirty-six thousand two hundred two');\nINSERT INTO t2 VALUES(13264, 76502, 'seventy-six thousand five hundred two');\nINSERT INTO t2 VALUES(13265, 74362, 'seventy-four thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(13266, 99653, 'ninety-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(13267, 69060, 'sixty-nine thousand sixty');\nINSERT INTO t2 VALUES(13268, 75713, 'seventy-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(13269, 76046, 'seventy-six thousand forty-six');\nINSERT INTO t2 VALUES(13270, 61747, 'sixty-one thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13271, 10396, 'ten thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(13272, 71149, 'seventy-one thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(13273, 75232, 'seventy-five thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(13274, 83474, 'eighty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(13275, 16281, 'sixteen thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(13276, 30919, 'thirty thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(13277, 65978, 'sixty-five thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13278, 20388, 'twenty thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(13279, 52887, 'fifty-two thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(13280, 74633, 'seventy-four thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(13281, 25362, 'twenty-five thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(13282, 89761, 'eighty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(13283, 96460, 'ninety-six thousand four hundred sixty');\nINSERT INTO t2 VALUES(13284, 9072, 'nine thousand seventy-two');\nINSERT INTO t2 VALUES(13285, 20196, 'twenty thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(13286, 35750, 'thirty-five thousand seven hundred fifty');\nINSERT INTO t2 VALUES(13287, 34201, 'thirty-four thousand two hundred one');\nINSERT INTO t2 VALUES(13288, 71435, 'seventy-one thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(13289, 12565, 'twelve thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(13290, 15407, 'fifteen thousand four hundred seven');\nINSERT INTO t2 VALUES(13291, 60897, 'sixty thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(13292, 97271, 'ninety-seven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(13293, 42621, 'forty-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(13294, 21222, 'twenty-one thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(13295, 97913, 'ninety-seven thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(13296, 58094, 'fifty-eight thousand ninety-four');\nINSERT INTO t2 VALUES(13297, 2904, 'two thousand nine hundred four');\nINSERT INTO t2 VALUES(13298, 42591, 'forty-two thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(13299, 55707, 'fifty-five thousand seven hundred seven');\nINSERT INTO t2 VALUES(13300, 16614, 'sixteen thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13301, 37020, 'thirty-seven thousand twenty');\nINSERT INTO t2 VALUES(13302, 13345, 'thirteen thousand three hundred forty-five');\nINSERT INTO t2 VALUES(13303, 79461, 'seventy-nine thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(13304, 45382, 'forty-five thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(13305, 6165, 'six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(13306, 3455, 'three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(13307, 17674, 'seventeen thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(13308, 61058, 'sixty-one thousand fifty-eight');\nINSERT INTO t2 VALUES(13309, 15826, 'fifteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(13310, 92302, 'ninety-two thousand three hundred two');\nINSERT INTO t2 VALUES(13311, 27210, 'twenty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(13312, 36885, 'thirty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(13313, 92064, 'ninety-two thousand sixty-four');\nINSERT INTO t2 VALUES(13314, 12520, 'twelve thousand five hundred twenty');\nINSERT INTO t2 VALUES(13315, 69500, 'sixty-nine thousand five hundred');\nINSERT INTO t2 VALUES(13316, 24016, 'twenty-four thousand sixteen');\nINSERT INTO t2 VALUES(13317, 31056, 'thirty-one thousand fifty-six');\nINSERT INTO t2 VALUES(13318, 59995, 'fifty-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(13319, 24884, 'twenty-four thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(13320, 24883, 'twenty-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(13321, 76276, 'seventy-six thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(13322, 2489, 'two thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(13323, 64878, 'sixty-four thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(13324, 44163, 'forty-four thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(13325, 77423, 'seventy-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(13326, 40235, 'forty thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(13327, 27180, 'twenty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(13328, 43594, 'forty-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(13329, 3690, 'three thousand six hundred ninety');\nINSERT INTO t2 VALUES(13330, 11373, 'eleven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(13331, 43537, 'forty-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(13332, 17400, 'seventeen thousand four hundred');\nINSERT INTO t2 VALUES(13333, 54819, 'fifty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(13334, 19330, 'nineteen thousand three hundred thirty');\nINSERT INTO t2 VALUES(13335, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(13336, 47395, 'forty-seven thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(13337, 99786, 'ninety-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(13338, 32878, 'thirty-two thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(13339, 90252, 'ninety thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(13340, 67410, 'sixty-seven thousand four hundred ten');\nINSERT INTO t2 VALUES(13341, 46816, 'forty-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(13342, 42763, 'forty-two thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(13343, 13614, 'thirteen thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13344, 79965, 'seventy-nine thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(13345, 43649, 'forty-three thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(13346, 55494, 'fifty-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(13347, 643, 'six hundred forty-three');\nINSERT INTO t2 VALUES(13348, 24370, 'twenty-four thousand three hundred seventy');\nINSERT INTO t2 VALUES(13349, 88900, 'eighty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(13350, 45332, 'forty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13351, 87119, 'eighty-seven thousand one hundred nineteen');\nINSERT INTO t2 VALUES(13352, 5424, 'five thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(13353, 6691, 'six thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13354, 82112, 'eighty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(13355, 15691, 'fifteen thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13356, 68239, 'sixty-eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(13357, 7515, 'seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(13358, 19529, 'nineteen thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(13359, 30609, 'thirty thousand six hundred nine');\nINSERT INTO t2 VALUES(13360, 49734, 'forty-nine thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(13361, 81504, 'eighty-one thousand five hundred four');\nINSERT INTO t2 VALUES(13362, 92661, 'ninety-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(13363, 24630, 'twenty-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(13364, 11629, 'eleven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(13365, 90377, 'ninety thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(13366, 29404, 'twenty-nine thousand four hundred four');\nINSERT INTO t2 VALUES(13367, 4049, 'four thousand forty-nine');\nINSERT INTO t2 VALUES(13368, 85679, 'eighty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(13369, 50669, 'fifty thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(13370, 39943, 'thirty-nine thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(13371, 61686, 'sixty-one thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(13372, 95689, 'ninety-five thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(13373, 13156, 'thirteen thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(13374, 85078, 'eighty-five thousand seventy-eight');\nINSERT INTO t2 VALUES(13375, 43209, 'forty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(13376, 24774, 'twenty-four thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(13377, 1892, 'one thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(13378, 95840, 'ninety-five thousand eight hundred forty');\nINSERT INTO t2 VALUES(13379, 78703, 'seventy-eight thousand seven hundred three');\nINSERT INTO t2 VALUES(13380, 88084, 'eighty-eight thousand eighty-four');\nINSERT INTO t2 VALUES(13381, 32355, 'thirty-two thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(13382, 90626, 'ninety thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(13383, 85351, 'eighty-five thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(13384, 58896, 'fifty-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(13385, 96485, 'ninety-six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(13386, 64726, 'sixty-four thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(13387, 23011, 'twenty-three thousand eleven');\nINSERT INTO t2 VALUES(13388, 31760, 'thirty-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(13389, 73563, 'seventy-three thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(13390, 1457, 'one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(13391, 54956, 'fifty-four thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(13392, 97576, 'ninety-seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(13393, 18120, 'eighteen thousand one hundred twenty');\nINSERT INTO t2 VALUES(13394, 11749, 'eleven thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(13395, 11871, 'eleven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(13396, 46306, 'forty-six thousand three hundred six');\nINSERT INTO t2 VALUES(13397, 4920, 'four thousand nine hundred twenty');\nINSERT INTO t2 VALUES(13398, 86397, 'eighty-six thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(13399, 4421, 'four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(13400, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(13401, 18312, 'eighteen thousand three hundred twelve');\nINSERT INTO t2 VALUES(13402, 19119, 'nineteen thousand one hundred nineteen');\nINSERT INTO t2 VALUES(13403, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(13404, 41345, 'forty-one thousand three hundred forty-five');\nINSERT INTO t2 VALUES(13405, 31791, 'thirty-one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(13406, 9790, 'nine thousand seven hundred ninety');\nINSERT INTO t2 VALUES(13407, 33943, 'thirty-three thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(13408, 13551, 'thirteen thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(13409, 21684, 'twenty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(13410, 34528, 'thirty-four thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(13411, 34653, 'thirty-four thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(13412, 2531, 'two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(13413, 55823, 'fifty-five thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(13414, 247, 'two hundred forty-seven');\nINSERT INTO t2 VALUES(13415, 58488, 'fifty-eight thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(13416, 24881, 'twenty-four thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(13417, 80859, 'eighty thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(13418, 35264, 'thirty-five thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(13419, 82193, 'eighty-two thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(13420, 51840, 'fifty-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(13421, 64702, 'sixty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(13422, 38351, 'thirty-eight thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(13423, 71390, 'seventy-one thousand three hundred ninety');\nINSERT INTO t2 VALUES(13424, 91759, 'ninety-one thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(13425, 9395, 'nine thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(13426, 14921, 'fourteen thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(13427, 82772, 'eighty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(13428, 42233, 'forty-two thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(13429, 21197, 'twenty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13430, 27454, 'twenty-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(13431, 24640, 'twenty-four thousand six hundred forty');\nINSERT INTO t2 VALUES(13432, 64911, 'sixty-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(13433, 55943, 'fifty-five thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(13434, 74409, 'seventy-four thousand four hundred nine');\nINSERT INTO t2 VALUES(13435, 98584, 'ninety-eight thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(13436, 50969, 'fifty thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(13437, 17820, 'seventeen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(13438, 1380, 'one thousand three hundred eighty');\nINSERT INTO t2 VALUES(13439, 75904, 'seventy-five thousand nine hundred four');\nINSERT INTO t2 VALUES(13440, 58169, 'fifty-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(13441, 89505, 'eighty-nine thousand five hundred five');\nINSERT INTO t2 VALUES(13442, 76161, 'seventy-six thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(13443, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(13444, 3654, 'three thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(13445, 7270, 'seven thousand two hundred seventy');\nINSERT INTO t2 VALUES(13446, 58449, 'fifty-eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(13447, 18421, 'eighteen thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(13448, 87540, 'eighty-seven thousand five hundred forty');\nINSERT INTO t2 VALUES(13449, 64988, 'sixty-four thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(13450, 62539, 'sixty-two thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(13451, 5489, 'five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(13452, 11447, 'eleven thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(13453, 12538, 'twelve thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(13454, 84432, 'eighty-four thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(13455, 43221, 'forty-three thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(13456, 73702, 'seventy-three thousand seven hundred two');\nINSERT INTO t2 VALUES(13457, 62350, 'sixty-two thousand three hundred fifty');\nINSERT INTO t2 VALUES(13458, 90981, 'ninety thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(13459, 84845, 'eighty-four thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(13460, 52796, 'fifty-two thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(13461, 66773, 'sixty-six thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(13462, 41435, 'forty-one thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(13463, 7761, 'seven thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(13464, 28007, 'twenty-eight thousand seven');\nINSERT INTO t2 VALUES(13465, 96963, 'ninety-six thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(13466, 93009, 'ninety-three thousand nine');\nINSERT INTO t2 VALUES(13467, 2819, 'two thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(13468, 924, 'nine hundred twenty-four');\nINSERT INTO t2 VALUES(13469, 24234, 'twenty-four thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(13470, 80264, 'eighty thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(13471, 84051, 'eighty-four thousand fifty-one');\nINSERT INTO t2 VALUES(13472, 1310, 'one thousand three hundred ten');\nINSERT INTO t2 VALUES(13473, 2837, 'two thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(13474, 87686, 'eighty-seven thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(13475, 15872, 'fifteen thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(13476, 84167, 'eighty-four thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(13477, 59391, 'fifty-nine thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(13478, 85732, 'eighty-five thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(13479, 37927, 'thirty-seven thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(13480, 2578, 'two thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(13481, 44012, 'forty-four thousand twelve');\nINSERT INTO t2 VALUES(13482, 14290, 'fourteen thousand two hundred ninety');\nINSERT INTO t2 VALUES(13483, 25567, 'twenty-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(13484, 38059, 'thirty-eight thousand fifty-nine');\nINSERT INTO t2 VALUES(13485, 59733, 'fifty-nine thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(13486, 32897, 'thirty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(13487, 12843, 'twelve thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(13488, 25993, 'twenty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(13489, 84519, 'eighty-four thousand five hundred nineteen');\nINSERT INTO t2 VALUES(13490, 22645, 'twenty-two thousand six hundred forty-five');\nINSERT INTO t2 VALUES(13491, 40121, 'forty thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(13492, 31797, 'thirty-one thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(13493, 67194, 'sixty-seven thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(13494, 41318, 'forty-one thousand three hundred eighteen');\nINSERT INTO t2 VALUES(13495, 23003, 'twenty-three thousand three');\nINSERT INTO t2 VALUES(13496, 27605, 'twenty-seven thousand six hundred five');\nINSERT INTO t2 VALUES(13497, 93482, 'ninety-three thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(13498, 75579, 'seventy-five thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(13499, 1265, 'one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(13500, 19780, 'nineteen thousand seven hundred eighty');\nINSERT INTO t2 VALUES(13501, 85838, 'eighty-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(13502, 65705, 'sixty-five thousand seven hundred five');\nINSERT INTO t2 VALUES(13503, 4730, 'four thousand seven hundred thirty');\nINSERT INTO t2 VALUES(13504, 15590, 'fifteen thousand five hundred ninety');\nINSERT INTO t2 VALUES(13505, 16963, 'sixteen thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(13506, 71713, 'seventy-one thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(13507, 69032, 'sixty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(13508, 8635, 'eight thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(13509, 47461, 'forty-seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(13510, 34107, 'thirty-four thousand one hundred seven');\nINSERT INTO t2 VALUES(13511, 13665, 'thirteen thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(13512, 10762, 'ten thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(13513, 94365, 'ninety-four thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(13514, 11060, 'eleven thousand sixty');\nINSERT INTO t2 VALUES(13515, 58344, 'fifty-eight thousand three hundred forty-four');\nINSERT INTO t2 VALUES(13516, 74773, 'seventy-four thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(13517, 19797, 'nineteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(13518, 38729, 'thirty-eight thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(13519, 69522, 'sixty-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(13520, 62413, 'sixty-two thousand four hundred thirteen');\nINSERT INTO t2 VALUES(13521, 86445, 'eighty-six thousand four hundred forty-five');\nINSERT INTO t2 VALUES(13522, 94331, 'ninety-four thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13523, 78354, 'seventy-eight thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(13524, 6332, 'six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13525, 45405, 'forty-five thousand four hundred five');\nINSERT INTO t2 VALUES(13526, 19955, 'nineteen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(13527, 21999, 'twenty-one thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(13528, 81769, 'eighty-one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(13529, 28807, 'twenty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(13530, 45547, 'forty-five thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(13531, 16980, 'sixteen thousand nine hundred eighty');\nINSERT INTO t2 VALUES(13532, 63331, 'sixty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13533, 43602, 'forty-three thousand six hundred two');\nINSERT INTO t2 VALUES(13534, 31850, 'thirty-one thousand eight hundred fifty');\nINSERT INTO t2 VALUES(13535, 25922, 'twenty-five thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(13536, 86241, 'eighty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(13537, 23191, 'twenty-three thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(13538, 45128, 'forty-five thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(13539, 32189, 'thirty-two thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(13540, 15541, 'fifteen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(13541, 73582, 'seventy-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(13542, 34331, 'thirty-four thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13543, 33372, 'thirty-three thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(13544, 79229, 'seventy-nine thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(13545, 96487, 'ninety-six thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13546, 35287, 'thirty-five thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(13547, 66978, 'sixty-six thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13548, 17467, 'seventeen thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(13549, 7598, 'seven thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(13550, 81921, 'eighty-one thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(13551, 14983, 'fourteen thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(13552, 54865, 'fifty-four thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(13553, 42039, 'forty-two thousand thirty-nine');\nINSERT INTO t2 VALUES(13554, 46505, 'forty-six thousand five hundred five');\nINSERT INTO t2 VALUES(13555, 30935, 'thirty thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(13556, 42183, 'forty-two thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(13557, 14094, 'fourteen thousand ninety-four');\nINSERT INTO t2 VALUES(13558, 29876, 'twenty-nine thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(13559, 57726, 'fifty-seven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(13560, 7731, 'seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(13561, 30694, 'thirty thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(13562, 53227, 'fifty-three thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(13563, 85669, 'eighty-five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(13564, 90753, 'ninety thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(13565, 45573, 'forty-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(13566, 38817, 'thirty-eight thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(13567, 91332, 'ninety-one thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13568, 76530, 'seventy-six thousand five hundred thirty');\nINSERT INTO t2 VALUES(13569, 80829, 'eighty thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(13570, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(13571, 69575, 'sixty-nine thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(13572, 60932, 'sixty thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(13573, 91394, 'ninety-one thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(13574, 9005, 'nine thousand five');\nINSERT INTO t2 VALUES(13575, 61146, 'sixty-one thousand one hundred forty-six');\nINSERT INTO t2 VALUES(13576, 66212, 'sixty-six thousand two hundred twelve');\nINSERT INTO t2 VALUES(13577, 50640, 'fifty thousand six hundred forty');\nINSERT INTO t2 VALUES(13578, 50146, 'fifty thousand one hundred forty-six');\nINSERT INTO t2 VALUES(13579, 25970, 'twenty-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(13580, 63852, 'sixty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(13581, 24647, 'twenty-four thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(13582, 15971, 'fifteen thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(13583, 70457, 'seventy thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(13584, 54764, 'fifty-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(13585, 24990, 'twenty-four thousand nine hundred ninety');\nINSERT INTO t2 VALUES(13586, 69399, 'sixty-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(13587, 90990, 'ninety thousand nine hundred ninety');\nINSERT INTO t2 VALUES(13588, 67029, 'sixty-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(13589, 77976, 'seventy-seven thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(13590, 91331, 'ninety-one thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(13591, 76717, 'seventy-six thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(13592, 51540, 'fifty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(13593, 8526, 'eight thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(13594, 41123, 'forty-one thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(13595, 94873, 'ninety-four thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(13596, 24189, 'twenty-four thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(13597, 48310, 'forty-eight thousand three hundred ten');\nINSERT INTO t2 VALUES(13598, 13437, 'thirteen thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(13599, 48614, 'forty-eight thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13600, 65706, 'sixty-five thousand seven hundred six');\nINSERT INTO t2 VALUES(13601, 40556, 'forty thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(13602, 65902, 'sixty-five thousand nine hundred two');\nINSERT INTO t2 VALUES(13603, 95212, 'ninety-five thousand two hundred twelve');\nINSERT INTO t2 VALUES(13604, 475, 'four hundred seventy-five');\nINSERT INTO t2 VALUES(13605, 63035, 'sixty-three thousand thirty-five');\nINSERT INTO t2 VALUES(13606, 22866, 'twenty-two thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(13607, 71775, 'seventy-one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(13608, 89843, 'eighty-nine thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(13609, 43237, 'forty-three thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(13610, 8653, 'eight thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(13611, 79069, 'seventy-nine thousand sixty-nine');\nINSERT INTO t2 VALUES(13612, 987, 'nine hundred eighty-seven');\nINSERT INTO t2 VALUES(13613, 17396, 'seventeen thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(13614, 57167, 'fifty-seven thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(13615, 13001, 'thirteen thousand one');\nINSERT INTO t2 VALUES(13616, 25197, 'twenty-five thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13617, 76542, 'seventy-six thousand five hundred forty-two');\nINSERT INTO t2 VALUES(13618, 66067, 'sixty-six thousand sixty-seven');\nINSERT INTO t2 VALUES(13619, 68736, 'sixty-eight thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(13620, 94207, 'ninety-four thousand two hundred seven');\nINSERT INTO t2 VALUES(13621, 37605, 'thirty-seven thousand six hundred five');\nINSERT INTO t2 VALUES(13622, 1482, 'one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(13623, 90353, 'ninety thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(13624, 70863, 'seventy thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13625, 66587, 'sixty-six thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(13626, 96557, 'ninety-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(13627, 4233, 'four thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(13628, 50958, 'fifty thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(13629, 11156, 'eleven thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(13630, 84869, 'eighty-four thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(13631, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t2 VALUES(13632, 70414, 'seventy thousand four hundred fourteen');\nINSERT INTO t2 VALUES(13633, 10625, 'ten thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(13634, 88677, 'eighty-eight thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(13635, 51460, 'fifty-one thousand four hundred sixty');\nINSERT INTO t2 VALUES(13636, 30192, 'thirty thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(13637, 45114, 'forty-five thousand one hundred fourteen');\nINSERT INTO t2 VALUES(13638, 50980, 'fifty thousand nine hundred eighty');\nINSERT INTO t2 VALUES(13639, 79041, 'seventy-nine thousand forty-one');\nINSERT INTO t2 VALUES(13640, 13333, 'thirteen thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(13641, 8134, 'eight thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(13642, 71735, 'seventy-one thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(13643, 52192, 'fifty-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(13644, 84157, 'eighty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(13645, 50936, 'fifty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(13646, 14307, 'fourteen thousand three hundred seven');\nINSERT INTO t2 VALUES(13647, 25668, 'twenty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(13648, 44503, 'forty-four thousand five hundred three');\nINSERT INTO t2 VALUES(13649, 20978, 'twenty thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13650, 59805, 'fifty-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(13651, 53483, 'fifty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(13652, 33857, 'thirty-three thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(13653, 95460, 'ninety-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(13654, 59699, 'fifty-nine thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(13655, 23865, 'twenty-three thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(13656, 86569, 'eighty-six thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(13657, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(13658, 22081, 'twenty-two thousand eighty-one');\nINSERT INTO t2 VALUES(13659, 14997, 'fourteen thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(13660, 30873, 'thirty thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(13661, 57839, 'fifty-seven thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(13662, 80026, 'eighty thousand twenty-six');\nINSERT INTO t2 VALUES(13663, 66472, 'sixty-six thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(13664, 13000, 'thirteen thousand');\nINSERT INTO t2 VALUES(13665, 40121, 'forty thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(13666, 15251, 'fifteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(13667, 30927, 'thirty thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(13668, 78140, 'seventy-eight thousand one hundred forty');\nINSERT INTO t2 VALUES(13669, 84081, 'eighty-four thousand eighty-one');\nINSERT INTO t2 VALUES(13670, 50335, 'fifty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(13671, 92674, 'ninety-two thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(13672, 33679, 'thirty-three thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(13673, 7606, 'seven thousand six hundred six');\nINSERT INTO t2 VALUES(13674, 92005, 'ninety-two thousand five');\nINSERT INTO t2 VALUES(13675, 5434, 'five thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(13676, 13517, 'thirteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(13677, 12443, 'twelve thousand four hundred forty-three');\nINSERT INTO t2 VALUES(13678, 46815, 'forty-six thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13679, 7753, 'seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(13680, 82427, 'eighty-two thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(13681, 47973, 'forty-seven thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(13682, 98467, 'ninety-eight thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(13683, 60533, 'sixty thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(13684, 52394, 'fifty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(13685, 71816, 'seventy-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(13686, 8326, 'eight thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(13687, 65632, 'sixty-five thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(13688, 59581, 'fifty-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(13689, 91354, 'ninety-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(13690, 56213, 'fifty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(13691, 31000, 'thirty-one thousand');\nINSERT INTO t2 VALUES(13692, 38897, 'thirty-eight thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(13693, 62487, 'sixty-two thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13694, 72147, 'seventy-two thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(13695, 14074, 'fourteen thousand seventy-four');\nINSERT INTO t2 VALUES(13696, 40583, 'forty thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(13697, 72494, 'seventy-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(13698, 62041, 'sixty-two thousand forty-one');\nINSERT INTO t2 VALUES(13699, 63286, 'sixty-three thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(13700, 34725, 'thirty-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(13701, 77753, 'seventy-seven thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(13702, 45506, 'forty-five thousand five hundred six');\nINSERT INTO t2 VALUES(13703, 94021, 'ninety-four thousand twenty-one');\nINSERT INTO t2 VALUES(13704, 52052, 'fifty-two thousand fifty-two');\nINSERT INTO t2 VALUES(13705, 91936, 'ninety-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(13706, 60384, 'sixty thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(13707, 9721, 'nine thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(13708, 31031, 'thirty-one thousand thirty-one');\nINSERT INTO t2 VALUES(13709, 74978, 'seventy-four thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(13710, 22814, 'twenty-two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(13711, 67919, 'sixty-seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(13712, 37144, 'thirty-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(13713, 77122, 'seventy-seven thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(13714, 83969, 'eighty-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(13715, 67269, 'sixty-seven thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(13716, 39758, 'thirty-nine thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(13717, 32750, 'thirty-two thousand seven hundred fifty');\nINSERT INTO t2 VALUES(13718, 15333, 'fifteen thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(13719, 14699, 'fourteen thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(13720, 28863, 'twenty-eight thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13721, 19065, 'nineteen thousand sixty-five');\nINSERT INTO t2 VALUES(13722, 65366, 'sixty-five thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(13723, 31543, 'thirty-one thousand five hundred forty-three');\nINSERT INTO t2 VALUES(13724, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(13725, 31089, 'thirty-one thousand eighty-nine');\nINSERT INTO t2 VALUES(13726, 92292, 'ninety-two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(13727, 45605, 'forty-five thousand six hundred five');\nINSERT INTO t2 VALUES(13728, 39718, 'thirty-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(13729, 50362, 'fifty thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(13730, 71154, 'seventy-one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(13731, 34712, 'thirty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(13732, 18775, 'eighteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(13733, 67596, 'sixty-seven thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(13734, 44008, 'forty-four thousand eight');\nINSERT INTO t2 VALUES(13735, 13487, 'thirteen thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13736, 81686, 'eighty-one thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(13737, 93496, 'ninety-three thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(13738, 68425, 'sixty-eight thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(13739, 19463, 'nineteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(13740, 25695, 'twenty-five thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(13741, 72636, 'seventy-two thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(13742, 56790, 'fifty-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(13743, 81229, 'eighty-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(13744, 85159, 'eighty-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(13745, 49307, 'forty-nine thousand three hundred seven');\nINSERT INTO t2 VALUES(13746, 2207, 'two thousand two hundred seven');\nINSERT INTO t2 VALUES(13747, 72435, 'seventy-two thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(13748, 40335, 'forty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(13749, 26055, 'twenty-six thousand fifty-five');\nINSERT INTO t2 VALUES(13750, 1511, 'one thousand five hundred eleven');\nINSERT INTO t2 VALUES(13751, 84572, 'eighty-four thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(13752, 61971, 'sixty-one thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(13753, 70945, 'seventy thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(13754, 61648, 'sixty-one thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(13755, 938, 'nine hundred thirty-eight');\nINSERT INTO t2 VALUES(13756, 43068, 'forty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(13757, 27896, 'twenty-seven thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(13758, 52616, 'fifty-two thousand six hundred sixteen');\nINSERT INTO t2 VALUES(13759, 48165, 'forty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(13760, 2164, 'two thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(13761, 23721, 'twenty-three thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(13762, 52476, 'fifty-two thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(13763, 62231, 'sixty-two thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(13764, 33567, 'thirty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(13765, 57681, 'fifty-seven thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(13766, 88349, 'eighty-eight thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(13767, 19735, 'nineteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(13768, 47280, 'forty-seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(13769, 83506, 'eighty-three thousand five hundred six');\nINSERT INTO t2 VALUES(13770, 21295, 'twenty-one thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(13771, 26390, 'twenty-six thousand three hundred ninety');\nINSERT INTO t2 VALUES(13772, 40762, 'forty thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(13773, 62863, 'sixty-two thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(13774, 28296, 'twenty-eight thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(13775, 38257, 'thirty-eight thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(13776, 36423, 'thirty-six thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(13777, 31282, 'thirty-one thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(13778, 76158, 'seventy-six thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(13779, 15672, 'fifteen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(13780, 93834, 'ninety-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(13781, 63963, 'sixty-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(13782, 83022, 'eighty-three thousand twenty-two');\nINSERT INTO t2 VALUES(13783, 72549, 'seventy-two thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(13784, 61398, 'sixty-one thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(13785, 65676, 'sixty-five thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(13786, 51490, 'fifty-one thousand four hundred ninety');\nINSERT INTO t2 VALUES(13787, 43370, 'forty-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(13788, 5813, 'five thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(13789, 75003, 'seventy-five thousand three');\nINSERT INTO t2 VALUES(13790, 53449, 'fifty-three thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(13791, 77865, 'seventy-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(13792, 83687, 'eighty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(13793, 96305, 'ninety-six thousand three hundred five');\nINSERT INTO t2 VALUES(13794, 49568, 'forty-nine thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(13795, 15967, 'fifteen thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(13796, 89032, 'eighty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(13797, 20415, 'twenty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(13798, 80226, 'eighty thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(13799, 93558, 'ninety-three thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(13800, 93706, 'ninety-three thousand seven hundred six');\nINSERT INTO t2 VALUES(13801, 27507, 'twenty-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(13802, 88167, 'eighty-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(13803, 23815, 'twenty-three thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13804, 9192, 'nine thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(13805, 95524, 'ninety-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(13806, 33704, 'thirty-three thousand seven hundred four');\nINSERT INTO t2 VALUES(13807, 54328, 'fifty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(13808, 94822, 'ninety-four thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(13809, 82078, 'eighty-two thousand seventy-eight');\nINSERT INTO t2 VALUES(13810, 42892, 'forty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(13811, 9847, 'nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(13812, 51487, 'fifty-one thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(13813, 73613, 'seventy-three thousand six hundred thirteen');\nINSERT INTO t2 VALUES(13814, 11225, 'eleven thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(13815, 21855, 'twenty-one thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(13816, 56850, 'fifty-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(13817, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(13818, 64832, 'sixty-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(13819, 49910, 'forty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(13820, 40944, 'forty thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(13821, 91430, 'ninety-one thousand four hundred thirty');\nINSERT INTO t2 VALUES(13822, 85725, 'eighty-five thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(13823, 88200, 'eighty-eight thousand two hundred');\nINSERT INTO t2 VALUES(13824, 85983, 'eighty-five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(13825, 2003, 'two thousand three');\nINSERT INTO t2 VALUES(13826, 97278, 'ninety-seven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(13827, 64222, 'sixty-four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(13828, 99213, 'ninety-nine thousand two hundred thirteen');\nINSERT INTO t2 VALUES(13829, 11659, 'eleven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(13830, 50991, 'fifty thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(13831, 29481, 'twenty-nine thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(13832, 54400, 'fifty-four thousand four hundred');\nINSERT INTO t2 VALUES(13833, 40258, 'forty thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(13834, 95042, 'ninety-five thousand forty-two');\nINSERT INTO t2 VALUES(13835, 8704, 'eight thousand seven hundred four');\nINSERT INTO t2 VALUES(13836, 42689, 'forty-two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(13837, 78620, 'seventy-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(13838, 52949, 'fifty-two thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(13839, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(13840, 68254, 'sixty-eight thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(13841, 33211, 'thirty-three thousand two hundred eleven');\nINSERT INTO t2 VALUES(13842, 80035, 'eighty thousand thirty-five');\nINSERT INTO t2 VALUES(13843, 87332, 'eighty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(13844, 79933, 'seventy-nine thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(13845, 52004, 'fifty-two thousand four');\nINSERT INTO t2 VALUES(13846, 1440, 'one thousand four hundred forty');\nINSERT INTO t2 VALUES(13847, 91185, 'ninety-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(13848, 9933, 'nine thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(13849, 34667, 'thirty-four thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(13850, 97866, 'ninety-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(13851, 82399, 'eighty-two thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(13852, 41453, 'forty-one thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(13853, 88606, 'eighty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(13854, 98991, 'ninety-eight thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(13855, 74902, 'seventy-four thousand nine hundred two');\nINSERT INTO t2 VALUES(13856, 99281, 'ninety-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(13857, 73926, 'seventy-three thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(13858, 45190, 'forty-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(13859, 41484, 'forty-one thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(13860, 70994, 'seventy thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(13861, 21271, 'twenty-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(13862, 51480, 'fifty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(13863, 51347, 'fifty-one thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(13864, 61407, 'sixty-one thousand four hundred seven');\nINSERT INTO t2 VALUES(13865, 36644, 'thirty-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(13866, 24674, 'twenty-four thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(13867, 83153, 'eighty-three thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(13868, 46673, 'forty-six thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(13869, 37895, 'thirty-seven thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(13870, 30440, 'thirty thousand four hundred forty');\nINSERT INTO t2 VALUES(13871, 16861, 'sixteen thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(13872, 78951, 'seventy-eight thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(13873, 78606, 'seventy-eight thousand six hundred six');\nINSERT INTO t2 VALUES(13874, 61033, 'sixty-one thousand thirty-three');\nINSERT INTO t2 VALUES(13875, 30587, 'thirty thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(13876, 88874, 'eighty-eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(13877, 93154, 'ninety-three thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(13878, 34811, 'thirty-four thousand eight hundred eleven');\nINSERT INTO t2 VALUES(13879, 2338, 'two thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(13880, 43317, 'forty-three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(13881, 53449, 'fifty-three thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(13882, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(13883, 34807, 'thirty-four thousand eight hundred seven');\nINSERT INTO t2 VALUES(13884, 34968, 'thirty-four thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(13885, 68556, 'sixty-eight thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(13886, 6349, 'six thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(13887, 56051, 'fifty-six thousand fifty-one');\nINSERT INTO t2 VALUES(13888, 73344, 'seventy-three thousand three hundred forty-four');\nINSERT INTO t2 VALUES(13889, 40586, 'forty thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(13890, 19476, 'nineteen thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(13891, 38249, 'thirty-eight thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(13892, 97501, 'ninety-seven thousand five hundred one');\nINSERT INTO t2 VALUES(13893, 63302, 'sixty-three thousand three hundred two');\nINSERT INTO t2 VALUES(13894, 90758, 'ninety thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(13895, 72862, 'seventy-two thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(13896, 58676, 'fifty-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(13897, 36707, 'thirty-six thousand seven hundred seven');\nINSERT INTO t2 VALUES(13898, 17956, 'seventeen thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(13899, 72766, 'seventy-two thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(13900, 89128, 'eighty-nine thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(13901, 83385, 'eighty-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(13902, 25194, 'twenty-five thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(13903, 44013, 'forty-four thousand thirteen');\nINSERT INTO t2 VALUES(13904, 89011, 'eighty-nine thousand eleven');\nINSERT INTO t2 VALUES(13905, 51016, 'fifty-one thousand sixteen');\nINSERT INTO t2 VALUES(13906, 35996, 'thirty-five thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(13907, 27611, 'twenty-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(13908, 57361, 'fifty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(13909, 86452, 'eighty-six thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(13910, 77518, 'seventy-seven thousand five hundred eighteen');\nINSERT INTO t2 VALUES(13911, 80973, 'eighty thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(13912, 61964, 'sixty-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(13913, 3251, 'three thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(13914, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t2 VALUES(13915, 53350, 'fifty-three thousand three hundred fifty');\nINSERT INTO t2 VALUES(13916, 99154, 'ninety-nine thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(13917, 43555, 'forty-three thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(13918, 96295, 'ninety-six thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(13919, 86465, 'eighty-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(13920, 91632, 'ninety-one thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(13921, 91836, 'ninety-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(13922, 71253, 'seventy-one thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(13923, 36697, 'thirty-six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(13924, 23856, 'twenty-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(13925, 49197, 'forty-nine thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(13926, 38104, 'thirty-eight thousand one hundred four');\nINSERT INTO t2 VALUES(13927, 71804, 'seventy-one thousand eight hundred four');\nINSERT INTO t2 VALUES(13928, 15065, 'fifteen thousand sixty-five');\nINSERT INTO t2 VALUES(13929, 12796, 'twelve thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(13930, 15274, 'fifteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(13931, 17301, 'seventeen thousand three hundred one');\nINSERT INTO t2 VALUES(13932, 87202, 'eighty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(13933, 8047, 'eight thousand forty-seven');\nINSERT INTO t2 VALUES(13934, 94508, 'ninety-four thousand five hundred eight');\nINSERT INTO t2 VALUES(13935, 7695, 'seven thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(13936, 57747, 'fifty-seven thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(13937, 76757, 'seventy-six thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(13938, 86236, 'eighty-six thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(13939, 83947, 'eighty-three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(13940, 97702, 'ninety-seven thousand seven hundred two');\nINSERT INTO t2 VALUES(13941, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(13942, 27691, 'twenty-seven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(13943, 34740, 'thirty-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(13944, 2386, 'two thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(13945, 90130, 'ninety thousand one hundred thirty');\nINSERT INTO t2 VALUES(13946, 48987, 'forty-eight thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(13947, 98125, 'ninety-eight thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(13948, 78467, 'seventy-eight thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(13949, 70854, 'seventy thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(13950, 48218, 'forty-eight thousand two hundred eighteen');\nINSERT INTO t2 VALUES(13951, 5946, 'five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(13952, 11519, 'eleven thousand five hundred nineteen');\nINSERT INTO t2 VALUES(13953, 60573, 'sixty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(13954, 35881, 'thirty-five thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(13955, 47791, 'forty-seven thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(13956, 99904, 'ninety-nine thousand nine hundred four');\nINSERT INTO t2 VALUES(13957, 36866, 'thirty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(13958, 89614, 'eighty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(13959, 859, 'eight hundred fifty-nine');\nINSERT INTO t2 VALUES(13960, 62675, 'sixty-two thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(13961, 37473, 'thirty-seven thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(13962, 76363, 'seventy-six thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(13963, 46688, 'forty-six thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(13964, 30725, 'thirty thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(13965, 23868, 'twenty-three thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(13966, 24462, 'twenty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(13967, 76391, 'seventy-six thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(13968, 8677, 'eight thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(13969, 57181, 'fifty-seven thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(13970, 34929, 'thirty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(13971, 31327, 'thirty-one thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(13972, 87922, 'eighty-seven thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(13973, 52613, 'fifty-two thousand six hundred thirteen');\nINSERT INTO t2 VALUES(13974, 74791, 'seventy-four thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(13975, 15088, 'fifteen thousand eighty-eight');\nINSERT INTO t2 VALUES(13976, 50704, 'fifty thousand seven hundred four');\nINSERT INTO t2 VALUES(13977, 36698, 'thirty-six thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(13978, 79795, 'seventy-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(13979, 39883, 'thirty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(13980, 45815, 'forty-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(13981, 96733, 'ninety-six thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(13982, 77956, 'seventy-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(13983, 46657, 'forty-six thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(13984, 96364, 'ninety-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(13985, 97613, 'ninety-seven thousand six hundred thirteen');\nINSERT INTO t2 VALUES(13986, 57521, 'fifty-seven thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(13987, 73702, 'seventy-three thousand seven hundred two');\nINSERT INTO t2 VALUES(13988, 21268, 'twenty-one thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(13989, 91936, 'ninety-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(13990, 35456, 'thirty-five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(13991, 30104, 'thirty thousand one hundred four');\nINSERT INTO t2 VALUES(13992, 57361, 'fifty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(13993, 25314, 'twenty-five thousand three hundred fourteen');\nINSERT INTO t2 VALUES(13994, 10812, 'ten thousand eight hundred twelve');\nINSERT INTO t2 VALUES(13995, 78032, 'seventy-eight thousand thirty-two');\nINSERT INTO t2 VALUES(13996, 11893, 'eleven thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(13997, 94525, 'ninety-four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(13998, 764, 'seven hundred sixty-four');\nINSERT INTO t2 VALUES(13999, 26473, 'twenty-six thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(14000, 93524, 'ninety-three thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(14001, 48089, 'forty-eight thousand eighty-nine');\nINSERT INTO t2 VALUES(14002, 33084, 'thirty-three thousand eighty-four');\nINSERT INTO t2 VALUES(14003, 70651, 'seventy thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(14004, 44699, 'forty-four thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(14005, 88393, 'eighty-eight thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(14006, 26194, 'twenty-six thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(14007, 27517, 'twenty-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(14008, 22053, 'twenty-two thousand fifty-three');\nINSERT INTO t2 VALUES(14009, 67449, 'sixty-seven thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(14010, 43377, 'forty-three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(14011, 30918, 'thirty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(14012, 81078, 'eighty-one thousand seventy-eight');\nINSERT INTO t2 VALUES(14013, 81845, 'eighty-one thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(14014, 86146, 'eighty-six thousand one hundred forty-six');\nINSERT INTO t2 VALUES(14015, 24503, 'twenty-four thousand five hundred three');\nINSERT INTO t2 VALUES(14016, 85140, 'eighty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(14017, 24264, 'twenty-four thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(14018, 71489, 'seventy-one thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14019, 89328, 'eighty-nine thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(14020, 43416, 'forty-three thousand four hundred sixteen');\nINSERT INTO t2 VALUES(14021, 19290, 'nineteen thousand two hundred ninety');\nINSERT INTO t2 VALUES(14022, 51317, 'fifty-one thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14023, 30745, 'thirty thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(14024, 6893, 'six thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(14025, 7728, 'seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(14026, 30853, 'thirty thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(14027, 56696, 'fifty-six thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(14028, 30697, 'thirty thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(14029, 85100, 'eighty-five thousand one hundred');\nINSERT INTO t2 VALUES(14030, 81131, 'eighty-one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(14031, 70351, 'seventy thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(14032, 75388, 'seventy-five thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(14033, 78371, 'seventy-eight thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(14034, 97449, 'ninety-seven thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(14035, 49630, 'forty-nine thousand six hundred thirty');\nINSERT INTO t2 VALUES(14036, 8596, 'eight thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(14037, 20871, 'twenty thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(14038, 31609, 'thirty-one thousand six hundred nine');\nINSERT INTO t2 VALUES(14039, 6120, 'six thousand one hundred twenty');\nINSERT INTO t2 VALUES(14040, 67128, 'sixty-seven thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14041, 59450, 'fifty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(14042, 77594, 'seventy-seven thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(14043, 51131, 'fifty-one thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(14044, 25044, 'twenty-five thousand forty-four');\nINSERT INTO t2 VALUES(14045, 60734, 'sixty thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(14046, 20548, 'twenty thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(14047, 95306, 'ninety-five thousand three hundred six');\nINSERT INTO t2 VALUES(14048, 1528, 'one thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(14049, 3190, 'three thousand one hundred ninety');\nINSERT INTO t2 VALUES(14050, 94084, 'ninety-four thousand eighty-four');\nINSERT INTO t2 VALUES(14051, 77125, 'seventy-seven thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(14052, 74287, 'seventy-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(14053, 17486, 'seventeen thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(14054, 7105, 'seven thousand one hundred five');\nINSERT INTO t2 VALUES(14055, 8205, 'eight thousand two hundred five');\nINSERT INTO t2 VALUES(14056, 61936, 'sixty-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(14057, 8605, 'eight thousand six hundred five');\nINSERT INTO t2 VALUES(14058, 38360, 'thirty-eight thousand three hundred sixty');\nINSERT INTO t2 VALUES(14059, 41533, 'forty-one thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(14060, 41766, 'forty-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(14061, 19976, 'nineteen thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(14062, 42147, 'forty-two thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(14063, 34098, 'thirty-four thousand ninety-eight');\nINSERT INTO t2 VALUES(14064, 9611, 'nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(14065, 6548, 'six thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(14066, 30058, 'thirty thousand fifty-eight');\nINSERT INTO t2 VALUES(14067, 60331, 'sixty thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(14068, 74256, 'seventy-four thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(14069, 19062, 'nineteen thousand sixty-two');\nINSERT INTO t2 VALUES(14070, 1283, 'one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(14071, 89259, 'eighty-nine thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(14072, 13353, 'thirteen thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14073, 32996, 'thirty-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(14074, 89448, 'eighty-nine thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(14075, 28879, 'twenty-eight thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(14076, 90619, 'ninety thousand six hundred nineteen');\nINSERT INTO t2 VALUES(14077, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t2 VALUES(14078, 61589, 'sixty-one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(14079, 99359, 'ninety-nine thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(14080, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t2 VALUES(14081, 87138, 'eighty-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(14082, 46461, 'forty-six thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(14083, 83799, 'eighty-three thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(14084, 35463, 'thirty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(14085, 79998, 'seventy-nine thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(14086, 22968, 'twenty-two thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(14087, 37241, 'thirty-seven thousand two hundred forty-one');\nINSERT INTO t2 VALUES(14088, 28563, 'twenty-eight thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(14089, 39317, 'thirty-nine thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14090, 5442, 'five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(14091, 11532, 'eleven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(14092, 87055, 'eighty-seven thousand fifty-five');\nINSERT INTO t2 VALUES(14093, 50842, 'fifty thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(14094, 6020, 'six thousand twenty');\nINSERT INTO t2 VALUES(14095, 8566, 'eight thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(14096, 22534, 'twenty-two thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(14097, 61450, 'sixty-one thousand four hundred fifty');\nINSERT INTO t2 VALUES(14098, 11539, 'eleven thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(14099, 80554, 'eighty thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(14100, 95489, 'ninety-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14101, 15518, 'fifteen thousand five hundred eighteen');\nINSERT INTO t2 VALUES(14102, 45826, 'forty-five thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(14103, 22357, 'twenty-two thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(14104, 37115, 'thirty-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(14105, 23129, 'twenty-three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(14106, 91289, 'ninety-one thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(14107, 41531, 'forty-one thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(14108, 32849, 'thirty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(14109, 57653, 'fifty-seven thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(14110, 512, 'five hundred twelve');\nINSERT INTO t2 VALUES(14111, 91709, 'ninety-one thousand seven hundred nine');\nINSERT INTO t2 VALUES(14112, 56868, 'fifty-six thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(14113, 74964, 'seventy-four thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(14114, 11532, 'eleven thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(14115, 11820, 'eleven thousand eight hundred twenty');\nINSERT INTO t2 VALUES(14116, 7363, 'seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(14117, 9014, 'nine thousand fourteen');\nINSERT INTO t2 VALUES(14118, 61128, 'sixty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14119, 25673, 'twenty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(14120, 95259, 'ninety-five thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(14121, 7436, 'seven thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(14122, 76903, 'seventy-six thousand nine hundred three');\nINSERT INTO t2 VALUES(14123, 24080, 'twenty-four thousand eighty');\nINSERT INTO t2 VALUES(14124, 99231, 'ninety-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(14125, 42743, 'forty-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(14126, 24811, 'twenty-four thousand eight hundred eleven');\nINSERT INTO t2 VALUES(14127, 76524, 'seventy-six thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(14128, 1170, 'one thousand one hundred seventy');\nINSERT INTO t2 VALUES(14129, 84350, 'eighty-four thousand three hundred fifty');\nINSERT INTO t2 VALUES(14130, 91746, 'ninety-one thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(14131, 61122, 'sixty-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(14132, 70522, 'seventy thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(14133, 82880, 'eighty-two thousand eight hundred eighty');\nINSERT INTO t2 VALUES(14134, 27328, 'twenty-seven thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(14135, 12200, 'twelve thousand two hundred');\nINSERT INTO t2 VALUES(14136, 38289, 'thirty-eight thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(14137, 98483, 'ninety-eight thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(14138, 968, 'nine hundred sixty-eight');\nINSERT INTO t2 VALUES(14139, 57611, 'fifty-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(14140, 27068, 'twenty-seven thousand sixty-eight');\nINSERT INTO t2 VALUES(14141, 43525, 'forty-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14142, 56185, 'fifty-six thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(14143, 73749, 'seventy-three thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14144, 83889, 'eighty-three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(14145, 4452, 'four thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(14146, 34514, 'thirty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(14147, 60337, 'sixty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(14148, 20242, 'twenty thousand two hundred forty-two');\nINSERT INTO t2 VALUES(14149, 16080, 'sixteen thousand eighty');\nINSERT INTO t2 VALUES(14150, 93294, 'ninety-three thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(14151, 68110, 'sixty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(14152, 11205, 'eleven thousand two hundred five');\nINSERT INTO t2 VALUES(14153, 19978, 'nineteen thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14154, 96160, 'ninety-six thousand one hundred sixty');\nINSERT INTO t2 VALUES(14155, 20747, 'twenty thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(14156, 1801, 'one thousand eight hundred one');\nINSERT INTO t2 VALUES(14157, 87128, 'eighty-seven thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14158, 70350, 'seventy thousand three hundred fifty');\nINSERT INTO t2 VALUES(14159, 22719, 'twenty-two thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(14160, 29784, 'twenty-nine thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(14161, 26890, 'twenty-six thousand eight hundred ninety');\nINSERT INTO t2 VALUES(14162, 43136, 'forty-three thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(14163, 70386, 'seventy thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(14164, 67975, 'sixty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(14165, 67604, 'sixty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(14166, 77550, 'seventy-seven thousand five hundred fifty');\nINSERT INTO t2 VALUES(14167, 57899, 'fifty-seven thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(14168, 17634, 'seventeen thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(14169, 18196, 'eighteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(14170, 81286, 'eighty-one thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(14171, 6009, 'six thousand nine');\nINSERT INTO t2 VALUES(14172, 23234, 'twenty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(14173, 48608, 'forty-eight thousand six hundred eight');\nINSERT INTO t2 VALUES(14174, 36683, 'thirty-six thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(14175, 23910, 'twenty-three thousand nine hundred ten');\nINSERT INTO t2 VALUES(14176, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14177, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(14178, 11693, 'eleven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(14179, 93013, 'ninety-three thousand thirteen');\nINSERT INTO t2 VALUES(14180, 35463, 'thirty-five thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(14181, 64911, 'sixty-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(14182, 55910, 'fifty-five thousand nine hundred ten');\nINSERT INTO t2 VALUES(14183, 40828, 'forty thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(14184, 81764, 'eighty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(14185, 3213, 'three thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14186, 68229, 'sixty-eight thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(14187, 16544, 'sixteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(14188, 71522, 'seventy-one thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(14189, 84980, 'eighty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(14190, 77805, 'seventy-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(14191, 14741, 'fourteen thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(14192, 10054, 'ten thousand fifty-four');\nINSERT INTO t2 VALUES(14193, 33356, 'thirty-three thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(14194, 65755, 'sixty-five thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(14195, 34429, 'thirty-four thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(14196, 30076, 'thirty thousand seventy-six');\nINSERT INTO t2 VALUES(14197, 19415, 'nineteen thousand four hundred fifteen');\nINSERT INTO t2 VALUES(14198, 22449, 'twenty-two thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(14199, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(14200, 40212, 'forty thousand two hundred twelve');\nINSERT INTO t2 VALUES(14201, 24713, 'twenty-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(14202, 92904, 'ninety-two thousand nine hundred four');\nINSERT INTO t2 VALUES(14203, 56418, 'fifty-six thousand four hundred eighteen');\nINSERT INTO t2 VALUES(14204, 90773, 'ninety thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(14205, 56940, 'fifty-six thousand nine hundred forty');\nINSERT INTO t2 VALUES(14206, 760, 'seven hundred sixty');\nINSERT INTO t2 VALUES(14207, 83622, 'eighty-three thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(14208, 51504, 'fifty-one thousand five hundred four');\nINSERT INTO t2 VALUES(14209, 91729, 'ninety-one thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(14210, 5714, 'five thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(14211, 49926, 'forty-nine thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(14212, 91641, 'ninety-one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(14213, 84900, 'eighty-four thousand nine hundred');\nINSERT INTO t2 VALUES(14214, 14352, 'fourteen thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(14215, 3609, 'three thousand six hundred nine');\nINSERT INTO t2 VALUES(14216, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t2 VALUES(14217, 48185, 'forty-eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(14218, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(14219, 75816, 'seventy-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(14220, 62682, 'sixty-two thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(14221, 80745, 'eighty thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(14222, 7627, 'seven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14223, 60213, 'sixty thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14224, 30625, 'thirty thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(14225, 59323, 'fifty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(14226, 58273, 'fifty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(14227, 44194, 'forty-four thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(14228, 27674, 'twenty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(14229, 80797, 'eighty thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(14230, 16078, 'sixteen thousand seventy-eight');\nINSERT INTO t2 VALUES(14231, 96698, 'ninety-six thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(14232, 62663, 'sixty-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(14233, 87183, 'eighty-seven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(14234, 77227, 'seventy-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(14235, 2866, 'two thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(14236, 44393, 'forty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(14237, 82492, 'eighty-two thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(14238, 48620, 'forty-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(14239, 6027, 'six thousand twenty-seven');\nINSERT INTO t2 VALUES(14240, 72042, 'seventy-two thousand forty-two');\nINSERT INTO t2 VALUES(14241, 56110, 'fifty-six thousand one hundred ten');\nINSERT INTO t2 VALUES(14242, 54009, 'fifty-four thousand nine');\nINSERT INTO t2 VALUES(14243, 72301, 'seventy-two thousand three hundred one');\nINSERT INTO t2 VALUES(14244, 87768, 'eighty-seven thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(14245, 45056, 'forty-five thousand fifty-six');\nINSERT INTO t2 VALUES(14246, 24933, 'twenty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(14247, 980, 'nine hundred eighty');\nINSERT INTO t2 VALUES(14248, 83370, 'eighty-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(14249, 1898, 'one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(14250, 66101, 'sixty-six thousand one hundred one');\nINSERT INTO t2 VALUES(14251, 9898, 'nine thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(14252, 47523, 'forty-seven thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(14253, 4472, 'four thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(14254, 64133, 'sixty-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(14255, 69064, 'sixty-nine thousand sixty-four');\nINSERT INTO t2 VALUES(14256, 35841, 'thirty-five thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(14257, 16050, 'sixteen thousand fifty');\nINSERT INTO t2 VALUES(14258, 76394, 'seventy-six thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(14259, 207, 'two hundred seven');\nINSERT INTO t2 VALUES(14260, 74962, 'seventy-four thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(14261, 38036, 'thirty-eight thousand thirty-six');\nINSERT INTO t2 VALUES(14262, 33511, 'thirty-three thousand five hundred eleven');\nINSERT INTO t2 VALUES(14263, 53831, 'fifty-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(14264, 56955, 'fifty-six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(14265, 71888, 'seventy-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(14266, 65549, 'sixty-five thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(14267, 47599, 'forty-seven thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(14268, 44616, 'forty-four thousand six hundred sixteen');\nINSERT INTO t2 VALUES(14269, 91995, 'ninety-one thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(14270, 50058, 'fifty thousand fifty-eight');\nINSERT INTO t2 VALUES(14271, 58460, 'fifty-eight thousand four hundred sixty');\nINSERT INTO t2 VALUES(14272, 25941, 'twenty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(14273, 36118, 'thirty-six thousand one hundred eighteen');\nINSERT INTO t2 VALUES(14274, 34262, 'thirty-four thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(14275, 79120, 'seventy-nine thousand one hundred twenty');\nINSERT INTO t2 VALUES(14276, 82177, 'eighty-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(14277, 23589, 'twenty-three thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(14278, 38250, 'thirty-eight thousand two hundred fifty');\nINSERT INTO t2 VALUES(14279, 46963, 'forty-six thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(14280, 846, 'eight hundred forty-six');\nINSERT INTO t2 VALUES(14281, 3120, 'three thousand one hundred twenty');\nINSERT INTO t2 VALUES(14282, 69995, 'sixty-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(14283, 40276, 'forty thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(14284, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(14285, 65011, 'sixty-five thousand eleven');\nINSERT INTO t2 VALUES(14286, 1580, 'one thousand five hundred eighty');\nINSERT INTO t2 VALUES(14287, 747, 'seven hundred forty-seven');\nINSERT INTO t2 VALUES(14288, 28151, 'twenty-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(14289, 27755, 'twenty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(14290, 78382, 'seventy-eight thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(14291, 59977, 'fifty-nine thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(14292, 74822, 'seventy-four thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(14293, 57591, 'fifty-seven thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(14294, 56999, 'fifty-six thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(14295, 65638, 'sixty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(14296, 96840, 'ninety-six thousand eight hundred forty');\nINSERT INTO t2 VALUES(14297, 33353, 'thirty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14298, 96614, 'ninety-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(14299, 62892, 'sixty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(14300, 67802, 'sixty-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(14301, 46035, 'forty-six thousand thirty-five');\nINSERT INTO t2 VALUES(14302, 43939, 'forty-three thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(14303, 25508, 'twenty-five thousand five hundred eight');\nINSERT INTO t2 VALUES(14304, 97792, 'ninety-seven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(14305, 43848, 'forty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(14306, 56644, 'fifty-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(14307, 28126, 'twenty-eight thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(14308, 99115, 'ninety-nine thousand one hundred fifteen');\nINSERT INTO t2 VALUES(14309, 42923, 'forty-two thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(14310, 18702, 'eighteen thousand seven hundred two');\nINSERT INTO t2 VALUES(14311, 67108, 'sixty-seven thousand one hundred eight');\nINSERT INTO t2 VALUES(14312, 50270, 'fifty thousand two hundred seventy');\nINSERT INTO t2 VALUES(14313, 47478, 'forty-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(14314, 74111, 'seventy-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(14315, 68941, 'sixty-eight thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(14316, 16402, 'sixteen thousand four hundred two');\nINSERT INTO t2 VALUES(14317, 46934, 'forty-six thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(14318, 83113, 'eighty-three thousand one hundred thirteen');\nINSERT INTO t2 VALUES(14319, 74555, 'seventy-four thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(14320, 30249, 'thirty thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(14321, 6033, 'six thousand thirty-three');\nINSERT INTO t2 VALUES(14322, 10896, 'ten thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(14323, 44308, 'forty-four thousand three hundred eight');\nINSERT INTO t2 VALUES(14324, 44712, 'forty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(14325, 60887, 'sixty thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(14326, 90686, 'ninety thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(14327, 86099, 'eighty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(14328, 16600, 'sixteen thousand six hundred');\nINSERT INTO t2 VALUES(14329, 79994, 'seventy-nine thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(14330, 6058, 'six thousand fifty-eight');\nINSERT INTO t2 VALUES(14331, 55816, 'fifty-five thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(14332, 28277, 'twenty-eight thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(14333, 93195, 'ninety-three thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(14334, 41347, 'forty-one thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(14335, 73114, 'seventy-three thousand one hundred fourteen');\nINSERT INTO t2 VALUES(14336, 73852, 'seventy-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(14337, 14877, 'fourteen thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(14338, 94235, 'ninety-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(14339, 63341, 'sixty-three thousand three hundred forty-one');\nINSERT INTO t2 VALUES(14340, 47527, 'forty-seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(14341, 53322, 'fifty-three thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14342, 31321, 'thirty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(14343, 76309, 'seventy-six thousand three hundred nine');\nINSERT INTO t2 VALUES(14344, 30000, 'thirty thousand');\nINSERT INTO t2 VALUES(14345, 30073, 'thirty thousand seventy-three');\nINSERT INTO t2 VALUES(14346, 64561, 'sixty-four thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(14347, 12210, 'twelve thousand two hundred ten');\nINSERT INTO t2 VALUES(14348, 16779, 'sixteen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(14349, 60070, 'sixty thousand seventy');\nINSERT INTO t2 VALUES(14350, 74369, 'seventy-four thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(14351, 18823, 'eighteen thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(14352, 21267, 'twenty-one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(14353, 20966, 'twenty thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(14354, 68562, 'sixty-eight thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(14355, 1375, 'one thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(14356, 10454, 'ten thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(14357, 65954, 'sixty-five thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(14358, 55940, 'fifty-five thousand nine hundred forty');\nINSERT INTO t2 VALUES(14359, 77322, 'seventy-seven thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14360, 86742, 'eighty-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(14361, 70675, 'seventy thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(14362, 92018, 'ninety-two thousand eighteen');\nINSERT INTO t2 VALUES(14363, 86063, 'eighty-six thousand sixty-three');\nINSERT INTO t2 VALUES(14364, 97294, 'ninety-seven thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(14365, 23091, 'twenty-three thousand ninety-one');\nINSERT INTO t2 VALUES(14366, 44814, 'forty-four thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(14367, 93664, 'ninety-three thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(14368, 77366, 'seventy-seven thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(14369, 4818, 'four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14370, 29353, 'twenty-nine thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14371, 6908, 'six thousand nine hundred eight');\nINSERT INTO t2 VALUES(14372, 23857, 'twenty-three thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(14373, 73945, 'seventy-three thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(14374, 95923, 'ninety-five thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(14375, 88534, 'eighty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(14376, 1044, 'one thousand forty-four');\nINSERT INTO t2 VALUES(14377, 33068, 'thirty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(14378, 96724, 'ninety-six thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14379, 21204, 'twenty-one thousand two hundred four');\nINSERT INTO t2 VALUES(14380, 8359, 'eight thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(14381, 29818, 'twenty-nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14382, 81248, 'eighty-one thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(14383, 79900, 'seventy-nine thousand nine hundred');\nINSERT INTO t2 VALUES(14384, 21224, 'twenty-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(14385, 29076, 'twenty-nine thousand seventy-six');\nINSERT INTO t2 VALUES(14386, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14387, 41380, 'forty-one thousand three hundred eighty');\nINSERT INTO t2 VALUES(14388, 6662, 'six thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(14389, 85533, 'eighty-five thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(14390, 52747, 'fifty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(14391, 99424, 'ninety-nine thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(14392, 99569, 'ninety-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(14393, 76915, 'seventy-six thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(14394, 98238, 'ninety-eight thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(14395, 3643, 'three thousand six hundred forty-three');\nINSERT INTO t2 VALUES(14396, 10580, 'ten thousand five hundred eighty');\nINSERT INTO t2 VALUES(14397, 27369, 'twenty-seven thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(14398, 19576, 'nineteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(14399, 17462, 'seventeen thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(14400, 27190, 'twenty-seven thousand one hundred ninety');\nINSERT INTO t2 VALUES(14401, 57559, 'fifty-seven thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(14402, 38918, 'thirty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(14403, 18910, 'eighteen thousand nine hundred ten');\nINSERT INTO t2 VALUES(14404, 58855, 'fifty-eight thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(14405, 51161, 'fifty-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(14406, 45122, 'forty-five thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(14407, 25422, 'twenty-five thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(14408, 50018, 'fifty thousand eighteen');\nINSERT INTO t2 VALUES(14409, 88341, 'eighty-eight thousand three hundred forty-one');\nINSERT INTO t2 VALUES(14410, 41047, 'forty-one thousand forty-seven');\nINSERT INTO t2 VALUES(14411, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(14412, 7018, 'seven thousand eighteen');\nINSERT INTO t2 VALUES(14413, 14324, 'fourteen thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(14414, 15849, 'fifteen thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(14415, 47940, 'forty-seven thousand nine hundred forty');\nINSERT INTO t2 VALUES(14416, 49096, 'forty-nine thousand ninety-six');\nINSERT INTO t2 VALUES(14417, 21937, 'twenty-one thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(14418, 90158, 'ninety thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(14419, 4770, 'four thousand seven hundred seventy');\nINSERT INTO t2 VALUES(14420, 80185, 'eighty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(14421, 30812, 'thirty thousand eight hundred twelve');\nINSERT INTO t2 VALUES(14422, 88137, 'eighty-eight thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(14423, 18892, 'eighteen thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(14424, 31402, 'thirty-one thousand four hundred two');\nINSERT INTO t2 VALUES(14425, 67043, 'sixty-seven thousand forty-three');\nINSERT INTO t2 VALUES(14426, 96734, 'ninety-six thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(14427, 35005, 'thirty-five thousand five');\nINSERT INTO t2 VALUES(14428, 42841, 'forty-two thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(14429, 15230, 'fifteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(14430, 13797, 'thirteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(14431, 6752, 'six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(14432, 65526, 'sixty-five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(14433, 39873, 'thirty-nine thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(14434, 4606, 'four thousand six hundred six');\nINSERT INTO t2 VALUES(14435, 39525, 'thirty-nine thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14436, 27048, 'twenty-seven thousand forty-eight');\nINSERT INTO t2 VALUES(14437, 25952, 'twenty-five thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(14438, 33402, 'thirty-three thousand four hundred two');\nINSERT INTO t2 VALUES(14439, 31317, 'thirty-one thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14440, 24397, 'twenty-four thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(14441, 65864, 'sixty-five thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(14442, 9789, 'nine thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(14443, 58604, 'fifty-eight thousand six hundred four');\nINSERT INTO t2 VALUES(14444, 34957, 'thirty-four thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(14445, 70353, 'seventy thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14446, 97333, 'ninety-seven thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(14447, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(14448, 94679, 'ninety-four thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(14449, 77060, 'seventy-seven thousand sixty');\nINSERT INTO t2 VALUES(14450, 90869, 'ninety thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(14451, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(14452, 37198, 'thirty-seven thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(14453, 13044, 'thirteen thousand forty-four');\nINSERT INTO t2 VALUES(14454, 51680, 'fifty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(14455, 28456, 'twenty-eight thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(14456, 46979, 'forty-six thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(14457, 268, 'two hundred sixty-eight');\nINSERT INTO t2 VALUES(14458, 59496, 'fifty-nine thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(14459, 47830, 'forty-seven thousand eight hundred thirty');\nINSERT INTO t2 VALUES(14460, 72576, 'seventy-two thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(14461, 89045, 'eighty-nine thousand forty-five');\nINSERT INTO t2 VALUES(14462, 9247, 'nine thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(14463, 45771, 'forty-five thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(14464, 9818, 'nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14465, 80356, 'eighty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(14466, 77184, 'seventy-seven thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(14467, 95275, 'ninety-five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(14468, 14950, 'fourteen thousand nine hundred fifty');\nINSERT INTO t2 VALUES(14469, 25886, 'twenty-five thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(14470, 76665, 'seventy-six thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(14471, 93690, 'ninety-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(14472, 59731, 'fifty-nine thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(14473, 84252, 'eighty-four thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(14474, 50778, 'fifty thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(14475, 85611, 'eighty-five thousand six hundred eleven');\nINSERT INTO t2 VALUES(14476, 64788, 'sixty-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(14477, 1364, 'one thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(14478, 95924, 'ninety-five thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(14479, 77564, 'seventy-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(14480, 16477, 'sixteen thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(14481, 57138, 'fifty-seven thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(14482, 5847, 'five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(14483, 39001, 'thirty-nine thousand one');\nINSERT INTO t2 VALUES(14484, 2050, 'two thousand fifty');\nINSERT INTO t2 VALUES(14485, 33564, 'thirty-three thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(14486, 4178, 'four thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(14487, 78178, 'seventy-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(14488, 49514, 'forty-nine thousand five hundred fourteen');\nINSERT INTO t2 VALUES(14489, 78921, 'seventy-eight thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(14490, 71208, 'seventy-one thousand two hundred eight');\nINSERT INTO t2 VALUES(14491, 38465, 'thirty-eight thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(14492, 86416, 'eighty-six thousand four hundred sixteen');\nINSERT INTO t2 VALUES(14493, 93193, 'ninety-three thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14494, 61818, 'sixty-one thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(14495, 5089, 'five thousand eighty-nine');\nINSERT INTO t2 VALUES(14496, 36936, 'thirty-six thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(14497, 95692, 'ninety-five thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(14498, 33382, 'thirty-three thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(14499, 59107, 'fifty-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(14500, 71623, 'seventy-one thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(14501, 69461, 'sixty-nine thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(14502, 7733, 'seven thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(14503, 73507, 'seventy-three thousand five hundred seven');\nINSERT INTO t2 VALUES(14504, 58103, 'fifty-eight thousand one hundred three');\nINSERT INTO t2 VALUES(14505, 86934, 'eighty-six thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(14506, 75588, 'seventy-five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(14507, 21769, 'twenty-one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(14508, 31140, 'thirty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(14509, 19322, 'nineteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14510, 33203, 'thirty-three thousand two hundred three');\nINSERT INTO t2 VALUES(14511, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t2 VALUES(14512, 49083, 'forty-nine thousand eighty-three');\nINSERT INTO t2 VALUES(14513, 76586, 'seventy-six thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(14514, 50635, 'fifty thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(14515, 76844, 'seventy-six thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(14516, 41924, 'forty-one thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(14517, 5724, 'five thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14518, 15808, 'fifteen thousand eight hundred eight');\nINSERT INTO t2 VALUES(14519, 22083, 'twenty-two thousand eighty-three');\nINSERT INTO t2 VALUES(14520, 97749, 'ninety-seven thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14521, 33479, 'thirty-three thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(14522, 23304, 'twenty-three thousand three hundred four');\nINSERT INTO t2 VALUES(14523, 37432, 'thirty-seven thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(14524, 8914, 'eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(14525, 98746, 'ninety-eight thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(14526, 84990, 'eighty-four thousand nine hundred ninety');\nINSERT INTO t2 VALUES(14527, 31971, 'thirty-one thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(14528, 73077, 'seventy-three thousand seventy-seven');\nINSERT INTO t2 VALUES(14529, 23102, 'twenty-three thousand one hundred two');\nINSERT INTO t2 VALUES(14530, 72328, 'seventy-two thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(14531, 25679, 'twenty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(14532, 25580, 'twenty-five thousand five hundred eighty');\nINSERT INTO t2 VALUES(14533, 79422, 'seventy-nine thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(14534, 96682, 'ninety-six thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(14535, 44352, 'forty-four thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(14536, 49609, 'forty-nine thousand six hundred nine');\nINSERT INTO t2 VALUES(14537, 16865, 'sixteen thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(14538, 64205, 'sixty-four thousand two hundred five');\nINSERT INTO t2 VALUES(14539, 56860, 'fifty-six thousand eight hundred sixty');\nINSERT INTO t2 VALUES(14540, 8452, 'eight thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(14541, 75790, 'seventy-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(14542, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(14543, 9540, 'nine thousand five hundred forty');\nINSERT INTO t2 VALUES(14544, 56970, 'fifty-six thousand nine hundred seventy');\nINSERT INTO t2 VALUES(14545, 57375, 'fifty-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(14546, 83455, 'eighty-three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(14547, 52887, 'fifty-two thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(14548, 66815, 'sixty-six thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(14549, 52147, 'fifty-two thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(14550, 36436, 'thirty-six thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(14551, 1746, 'one thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(14552, 19615, 'nineteen thousand six hundred fifteen');\nINSERT INTO t2 VALUES(14553, 75751, 'seventy-five thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(14554, 81234, 'eighty-one thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(14555, 9563, 'nine thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(14556, 89360, 'eighty-nine thousand three hundred sixty');\nINSERT INTO t2 VALUES(14557, 49508, 'forty-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(14558, 35066, 'thirty-five thousand sixty-six');\nINSERT INTO t2 VALUES(14559, 32617, 'thirty-two thousand six hundred seventeen');\nINSERT INTO t2 VALUES(14560, 83483, 'eighty-three thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(14561, 39994, 'thirty-nine thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(14562, 30187, 'thirty thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(14563, 27214, 'twenty-seven thousand two hundred fourteen');\nINSERT INTO t2 VALUES(14564, 92335, 'ninety-two thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(14565, 22552, 'twenty-two thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(14566, 30410, 'thirty thousand four hundred ten');\nINSERT INTO t2 VALUES(14567, 37347, 'thirty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(14568, 54313, 'fifty-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(14569, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(14570, 16804, 'sixteen thousand eight hundred four');\nINSERT INTO t2 VALUES(14571, 23093, 'twenty-three thousand ninety-three');\nINSERT INTO t2 VALUES(14572, 61173, 'sixty-one thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(14573, 44, 'forty-four');\nINSERT INTO t2 VALUES(14574, 47884, 'forty-seven thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(14575, 5983, 'five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(14576, 92504, 'ninety-two thousand five hundred four');\nINSERT INTO t2 VALUES(14577, 10497, 'ten thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(14578, 85725, 'eighty-five thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(14579, 49351, 'forty-nine thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(14580, 39541, 'thirty-nine thousand five hundred forty-one');\nINSERT INTO t2 VALUES(14581, 39732, 'thirty-nine thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(14582, 69622, 'sixty-nine thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(14583, 81213, 'eighty-one thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14584, 30193, 'thirty thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14585, 94533, 'ninety-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(14586, 78540, 'seventy-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(14587, 12224, 'twelve thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(14588, 79454, 'seventy-nine thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(14589, 19749, 'nineteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14590, 75920, 'seventy-five thousand nine hundred twenty');\nINSERT INTO t2 VALUES(14591, 77552, 'seventy-seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(14592, 28470, 'twenty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(14593, 23457, 'twenty-three thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(14594, 89400, 'eighty-nine thousand four hundred');\nINSERT INTO t2 VALUES(14595, 41108, 'forty-one thousand one hundred eight');\nINSERT INTO t2 VALUES(14596, 67525, 'sixty-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14597, 99322, 'ninety-nine thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(14598, 76627, 'seventy-six thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14599, 47635, 'forty-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(14600, 2882, 'two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(14601, 84683, 'eighty-four thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(14602, 554, 'five hundred fifty-four');\nINSERT INTO t2 VALUES(14603, 62019, 'sixty-two thousand nineteen');\nINSERT INTO t2 VALUES(14604, 45721, 'forty-five thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(14605, 4448, 'four thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(14606, 28686, 'twenty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(14607, 3705, 'three thousand seven hundred five');\nINSERT INTO t2 VALUES(14608, 18731, 'eighteen thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(14609, 84238, 'eighty-four thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(14610, 20284, 'twenty thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(14611, 71682, 'seventy-one thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(14612, 47259, 'forty-seven thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(14613, 30209, 'thirty thousand two hundred nine');\nINSERT INTO t2 VALUES(14614, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14615, 15266, 'fifteen thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(14616, 49968, 'forty-nine thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(14617, 64851, 'sixty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(14618, 92183, 'ninety-two thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(14619, 84467, 'eighty-four thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(14620, 45437, 'forty-five thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(14621, 68933, 'sixty-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(14622, 6125, 'six thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(14623, 10108, 'ten thousand one hundred eight');\nINSERT INTO t2 VALUES(14624, 33129, 'thirty-three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(14625, 67935, 'sixty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(14626, 92622, 'ninety-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(14627, 48124, 'forty-eight thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(14628, 9437, 'nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(14629, 52731, 'fifty-two thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(14630, 72782, 'seventy-two thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(14631, 85991, 'eighty-five thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(14632, 34199, 'thirty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(14633, 19327, 'nineteen thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(14634, 29821, 'twenty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(14635, 22018, 'twenty-two thousand eighteen');\nINSERT INTO t2 VALUES(14636, 95469, 'ninety-five thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(14637, 35270, 'thirty-five thousand two hundred seventy');\nINSERT INTO t2 VALUES(14638, 21753, 'twenty-one thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(14639, 41787, 'forty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(14640, 80088, 'eighty thousand eighty-eight');\nINSERT INTO t2 VALUES(14641, 18458, 'eighteen thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(14642, 78593, 'seventy-eight thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(14643, 37960, 'thirty-seven thousand nine hundred sixty');\nINSERT INTO t2 VALUES(14644, 79870, 'seventy-nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(14645, 84724, 'eighty-four thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14646, 31792, 'thirty-one thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(14647, 59671, 'fifty-nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(14648, 6769, 'six thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(14649, 89178, 'eighty-nine thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(14650, 6896, 'six thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(14651, 16672, 'sixteen thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(14652, 43227, 'forty-three thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(14653, 61393, 'sixty-one thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(14654, 15848, 'fifteen thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(14655, 15662, 'fifteen thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(14656, 15993, 'fifteen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(14657, 35739, 'thirty-five thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(14658, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(14659, 85900, 'eighty-five thousand nine hundred');\nINSERT INTO t2 VALUES(14660, 87213, 'eighty-seven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(14661, 41971, 'forty-one thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(14662, 98755, 'ninety-eight thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(14663, 87227, 'eighty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(14664, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(14665, 9866, 'nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(14666, 18765, 'eighteen thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(14667, 37507, 'thirty-seven thousand five hundred seven');\nINSERT INTO t2 VALUES(14668, 93594, 'ninety-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(14669, 71161, 'seventy-one thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(14670, 13162, 'thirteen thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(14671, 30257, 'thirty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(14672, 72955, 'seventy-two thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(14673, 24431, 'twenty-four thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(14674, 92187, 'ninety-two thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(14675, 71340, 'seventy-one thousand three hundred forty');\nINSERT INTO t2 VALUES(14676, 91891, 'ninety-one thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(14677, 46095, 'forty-six thousand ninety-five');\nINSERT INTO t2 VALUES(14678, 51437, 'fifty-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(14679, 57660, 'fifty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(14680, 79428, 'seventy-nine thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(14681, 32269, 'thirty-two thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(14682, 83066, 'eighty-three thousand sixty-six');\nINSERT INTO t2 VALUES(14683, 4752, 'four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(14684, 50841, 'fifty thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(14685, 83277, 'eighty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(14686, 80797, 'eighty thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(14687, 24346, 'twenty-four thousand three hundred forty-six');\nINSERT INTO t2 VALUES(14688, 55514, 'fifty-five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(14689, 75013, 'seventy-five thousand thirteen');\nINSERT INTO t2 VALUES(14690, 97262, 'ninety-seven thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(14691, 22236, 'twenty-two thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(14692, 97617, 'ninety-seven thousand six hundred seventeen');\nINSERT INTO t2 VALUES(14693, 63703, 'sixty-three thousand seven hundred three');\nINSERT INTO t2 VALUES(14694, 42773, 'forty-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(14695, 69803, 'sixty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(14696, 87220, 'eighty-seven thousand two hundred twenty');\nINSERT INTO t2 VALUES(14697, 38313, 'thirty-eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(14698, 39602, 'thirty-nine thousand six hundred two');\nINSERT INTO t2 VALUES(14699, 91627, 'ninety-one thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14700, 94788, 'ninety-four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(14701, 94296, 'ninety-four thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(14702, 90119, 'ninety thousand one hundred nineteen');\nINSERT INTO t2 VALUES(14703, 59321, 'fifty-nine thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(14704, 40631, 'forty thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(14705, 11223, 'eleven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(14706, 96046, 'ninety-six thousand forty-six');\nINSERT INTO t2 VALUES(14707, 45279, 'forty-five thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(14708, 80973, 'eighty thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(14709, 33518, 'thirty-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(14710, 44180, 'forty-four thousand one hundred eighty');\nINSERT INTO t2 VALUES(14711, 22497, 'twenty-two thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(14712, 90451, 'ninety thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(14713, 43890, 'forty-three thousand eight hundred ninety');\nINSERT INTO t2 VALUES(14714, 54182, 'fifty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(14715, 5065, 'five thousand sixty-five');\nINSERT INTO t2 VALUES(14716, 16813, 'sixteen thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(14717, 48067, 'forty-eight thousand sixty-seven');\nINSERT INTO t2 VALUES(14718, 3549, 'three thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(14719, 4978, 'four thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14720, 98801, 'ninety-eight thousand eight hundred one');\nINSERT INTO t2 VALUES(14721, 8691, 'eight thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(14722, 28395, 'twenty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(14723, 3896, 'three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(14724, 8632, 'eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(14725, 23899, 'twenty-three thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(14726, 41455, 'forty-one thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(14727, 61002, 'sixty-one thousand two');\nINSERT INTO t2 VALUES(14728, 52544, 'fifty-two thousand five hundred forty-four');\nINSERT INTO t2 VALUES(14729, 35834, 'thirty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(14730, 17708, 'seventeen thousand seven hundred eight');\nINSERT INTO t2 VALUES(14731, 25189, 'twenty-five thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(14732, 60534, 'sixty thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(14733, 62842, 'sixty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(14734, 41457, 'forty-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(14735, 88861, 'eighty-eight thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(14736, 44132, 'forty-four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(14737, 71118, 'seventy-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(14738, 57340, 'fifty-seven thousand three hundred forty');\nINSERT INTO t2 VALUES(14739, 57778, 'fifty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(14740, 51943, 'fifty-one thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(14741, 27593, 'twenty-seven thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(14742, 53238, 'fifty-three thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(14743, 74640, 'seventy-four thousand six hundred forty');\nINSERT INTO t2 VALUES(14744, 50657, 'fifty thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(14745, 66555, 'sixty-six thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(14746, 22670, 'twenty-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(14747, 29122, 'twenty-nine thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(14748, 31386, 'thirty-one thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(14749, 19318, 'nineteen thousand three hundred eighteen');\nINSERT INTO t2 VALUES(14750, 43989, 'forty-three thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(14751, 70279, 'seventy thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(14752, 128, 'one hundred twenty-eight');\nINSERT INTO t2 VALUES(14753, 93486, 'ninety-three thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(14754, 48970, 'forty-eight thousand nine hundred seventy');\nINSERT INTO t2 VALUES(14755, 60722, 'sixty thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(14756, 68139, 'sixty-eight thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(14757, 52036, 'fifty-two thousand thirty-six');\nINSERT INTO t2 VALUES(14758, 24053, 'twenty-four thousand fifty-three');\nINSERT INTO t2 VALUES(14759, 44905, 'forty-four thousand nine hundred five');\nINSERT INTO t2 VALUES(14760, 66280, 'sixty-six thousand two hundred eighty');\nINSERT INTO t2 VALUES(14761, 55151, 'fifty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(14762, 41343, 'forty-one thousand three hundred forty-three');\nINSERT INTO t2 VALUES(14763, 72538, 'seventy-two thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(14764, 44348, 'forty-four thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(14765, 79547, 'seventy-nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(14766, 30808, 'thirty thousand eight hundred eight');\nINSERT INTO t2 VALUES(14767, 27990, 'twenty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(14768, 62192, 'sixty-two thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(14769, 23859, 'twenty-three thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(14770, 15552, 'fifteen thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(14771, 55528, 'fifty-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(14772, 85365, 'eighty-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(14773, 42672, 'forty-two thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(14774, 25794, 'twenty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(14775, 49961, 'forty-nine thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(14776, 27547, 'twenty-seven thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(14777, 86964, 'eighty-six thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(14778, 49007, 'forty-nine thousand seven');\nINSERT INTO t2 VALUES(14779, 78423, 'seventy-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(14780, 28165, 'twenty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(14781, 19329, 'nineteen thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(14782, 10369, 'ten thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(14783, 66493, 'sixty-six thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(14784, 17724, 'seventeen thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(14785, 79241, 'seventy-nine thousand two hundred forty-one');\nINSERT INTO t2 VALUES(14786, 80382, 'eighty thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(14787, 25588, 'twenty-five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(14788, 59566, 'fifty-nine thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(14789, 70032, 'seventy thousand thirty-two');\nINSERT INTO t2 VALUES(14790, 84071, 'eighty-four thousand seventy-one');\nINSERT INTO t2 VALUES(14791, 17353, 'seventeen thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(14792, 28303, 'twenty-eight thousand three hundred three');\nINSERT INTO t2 VALUES(14793, 75399, 'seventy-five thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(14794, 37078, 'thirty-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(14795, 75173, 'seventy-five thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(14796, 12391, 'twelve thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(14797, 21236, 'twenty-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(14798, 66286, 'sixty-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(14799, 25510, 'twenty-five thousand five hundred ten');\nINSERT INTO t2 VALUES(14800, 99877, 'ninety-nine thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(14801, 75418, 'seventy-five thousand four hundred eighteen');\nINSERT INTO t2 VALUES(14802, 10969, 'ten thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(14803, 8020, 'eight thousand twenty');\nINSERT INTO t2 VALUES(14804, 6590, 'six thousand five hundred ninety');\nINSERT INTO t2 VALUES(14805, 85993, 'eighty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(14806, 83083, 'eighty-three thousand eighty-three');\nINSERT INTO t2 VALUES(14807, 89009, 'eighty-nine thousand nine');\nINSERT INTO t2 VALUES(14808, 54416, 'fifty-four thousand four hundred sixteen');\nINSERT INTO t2 VALUES(14809, 28310, 'twenty-eight thousand three hundred ten');\nINSERT INTO t2 VALUES(14810, 39845, 'thirty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(14811, 18317, 'eighteen thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14812, 42100, 'forty-two thousand one hundred');\nINSERT INTO t2 VALUES(14813, 80698, 'eighty thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(14814, 66337, 'sixty-six thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(14815, 61059, 'sixty-one thousand fifty-nine');\nINSERT INTO t2 VALUES(14816, 54376, 'fifty-four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(14817, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(14818, 60827, 'sixty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(14819, 46299, 'forty-six thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(14820, 84933, 'eighty-four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(14821, 28730, 'twenty-eight thousand seven hundred thirty');\nINSERT INTO t2 VALUES(14822, 8060, 'eight thousand sixty');\nINSERT INTO t2 VALUES(14823, 79376, 'seventy-nine thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(14824, 36887, 'thirty-six thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(14825, 84973, 'eighty-four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(14826, 38684, 'thirty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(14827, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(14828, 75108, 'seventy-five thousand one hundred eight');\nINSERT INTO t2 VALUES(14829, 87237, 'eighty-seven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(14830, 58693, 'fifty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(14831, 43371, 'forty-three thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(14832, 2894, 'two thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(14833, 49611, 'forty-nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(14834, 28226, 'twenty-eight thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(14835, 33043, 'thirty-three thousand forty-three');\nINSERT INTO t2 VALUES(14836, 13541, 'thirteen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(14837, 28871, 'twenty-eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(14838, 20181, 'twenty thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(14839, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t2 VALUES(14840, 43040, 'forty-three thousand forty');\nINSERT INTO t2 VALUES(14841, 7590, 'seven thousand five hundred ninety');\nINSERT INTO t2 VALUES(14842, 65978, 'sixty-five thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14843, 91188, 'ninety-one thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(14844, 98032, 'ninety-eight thousand thirty-two');\nINSERT INTO t2 VALUES(14845, 39240, 'thirty-nine thousand two hundred forty');\nINSERT INTO t2 VALUES(14846, 21482, 'twenty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(14847, 88160, 'eighty-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(14848, 16389, 'sixteen thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(14849, 24738, 'twenty-four thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(14850, 39290, 'thirty-nine thousand two hundred ninety');\nINSERT INTO t2 VALUES(14851, 54251, 'fifty-four thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(14852, 38312, 'thirty-eight thousand three hundred twelve');\nINSERT INTO t2 VALUES(14853, 33579, 'thirty-three thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(14854, 66306, 'sixty-six thousand three hundred six');\nINSERT INTO t2 VALUES(14855, 83598, 'eighty-three thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(14856, 18308, 'eighteen thousand three hundred eight');\nINSERT INTO t2 VALUES(14857, 81083, 'eighty-one thousand eighty-three');\nINSERT INTO t2 VALUES(14858, 13799, 'thirteen thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(14859, 1751, 'one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(14860, 43130, 'forty-three thousand one hundred thirty');\nINSERT INTO t2 VALUES(14861, 14252, 'fourteen thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(14862, 40845, 'forty thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(14863, 137, 'one hundred thirty-seven');\nINSERT INTO t2 VALUES(14864, 38375, 'thirty-eight thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(14865, 93507, 'ninety-three thousand five hundred seven');\nINSERT INTO t2 VALUES(14866, 68768, 'sixty-eight thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(14867, 41546, 'forty-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(14868, 39802, 'thirty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(14869, 82342, 'eighty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(14870, 18338, 'eighteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(14871, 12695, 'twelve thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(14872, 33942, 'thirty-three thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(14873, 55081, 'fifty-five thousand eighty-one');\nINSERT INTO t2 VALUES(14874, 94942, 'ninety-four thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(14875, 89156, 'eighty-nine thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(14876, 51544, 'fifty-one thousand five hundred forty-four');\nINSERT INTO t2 VALUES(14877, 67560, 'sixty-seven thousand five hundred sixty');\nINSERT INTO t2 VALUES(14878, 8687, 'eight thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(14879, 43582, 'forty-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(14880, 20648, 'twenty thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(14881, 18081, 'eighteen thousand eighty-one');\nINSERT INTO t2 VALUES(14882, 65047, 'sixty-five thousand forty-seven');\nINSERT INTO t2 VALUES(14883, 99684, 'ninety-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(14884, 97758, 'ninety-seven thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(14885, 4171, 'four thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(14886, 79899, 'seventy-nine thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(14887, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(14888, 54068, 'fifty-four thousand sixty-eight');\nINSERT INTO t2 VALUES(14889, 75627, 'seventy-five thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14890, 50157, 'fifty thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(14891, 6893, 'six thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(14892, 92589, 'ninety-two thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(14893, 6833, 'six thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(14894, 37330, 'thirty-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(14895, 92032, 'ninety-two thousand thirty-two');\nINSERT INTO t2 VALUES(14896, 85158, 'eighty-five thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(14897, 83664, 'eighty-three thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(14898, 40988, 'forty thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(14899, 74366, 'seventy-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(14900, 75343, 'seventy-five thousand three hundred forty-three');\nINSERT INTO t2 VALUES(14901, 50935, 'fifty thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(14902, 85815, 'eighty-five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(14903, 54240, 'fifty-four thousand two hundred forty');\nINSERT INTO t2 VALUES(14904, 87892, 'eighty-seven thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(14905, 40957, 'forty thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(14906, 82076, 'eighty-two thousand seventy-six');\nINSERT INTO t2 VALUES(14907, 75856, 'seventy-five thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(14908, 14385, 'fourteen thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(14909, 97969, 'ninety-seven thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(14910, 5575, 'five thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(14911, 74463, 'seventy-four thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(14912, 13970, 'thirteen thousand nine hundred seventy');\nINSERT INTO t2 VALUES(14913, 53165, 'fifty-three thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(14914, 8372, 'eight thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(14915, 24049, 'twenty-four thousand forty-nine');\nINSERT INTO t2 VALUES(14916, 56316, 'fifty-six thousand three hundred sixteen');\nINSERT INTO t2 VALUES(14917, 17773, 'seventeen thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(14918, 66781, 'sixty-six thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(14919, 44535, 'forty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(14920, 92205, 'ninety-two thousand two hundred five');\nINSERT INTO t2 VALUES(14921, 60210, 'sixty thousand two hundred ten');\nINSERT INTO t2 VALUES(14922, 14668, 'fourteen thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(14923, 17568, 'seventeen thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(14924, 12673, 'twelve thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(14925, 72966, 'seventy-two thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(14926, 94656, 'ninety-four thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(14927, 59749, 'fifty-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(14928, 78924, 'seventy-eight thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(14929, 13228, 'thirteen thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(14930, 51270, 'fifty-one thousand two hundred seventy');\nINSERT INTO t2 VALUES(14931, 88752, 'eighty-eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(14932, 54559, 'fifty-four thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(14933, 31468, 'thirty-one thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(14934, 17891, 'seventeen thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(14935, 53675, 'fifty-three thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(14936, 53525, 'fifty-three thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(14937, 15904, 'fifteen thousand nine hundred four');\nINSERT INTO t2 VALUES(14938, 88317, 'eighty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(14939, 84193, 'eighty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(14940, 92710, 'ninety-two thousand seven hundred ten');\nINSERT INTO t2 VALUES(14941, 12551, 'twelve thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(14942, 64502, 'sixty-four thousand five hundred two');\nINSERT INTO t2 VALUES(14943, 94730, 'ninety-four thousand seven hundred thirty');\nINSERT INTO t2 VALUES(14944, 83729, 'eighty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(14945, 57078, 'fifty-seven thousand seventy-eight');\nINSERT INTO t2 VALUES(14946, 11601, 'eleven thousand six hundred one');\nINSERT INTO t2 VALUES(14947, 15255, 'fifteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(14948, 41045, 'forty-one thousand forty-five');\nINSERT INTO t2 VALUES(14949, 69736, 'sixty-nine thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(14950, 87368, 'eighty-seven thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(14951, 71634, 'seventy-one thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(14952, 22893, 'twenty-two thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(14953, 67128, 'sixty-seven thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(14954, 9599, 'nine thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(14955, 82583, 'eighty-two thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(14956, 74237, 'seventy-four thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(14957, 80721, 'eighty thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(14958, 16870, 'sixteen thousand eight hundred seventy');\nINSERT INTO t2 VALUES(14959, 13515, 'thirteen thousand five hundred fifteen');\nINSERT INTO t2 VALUES(14960, 1932, 'one thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(14961, 47699, 'forty-seven thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(14962, 44529, 'forty-four thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(14963, 18489, 'eighteen thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(14964, 92906, 'ninety-two thousand nine hundred six');\nINSERT INTO t2 VALUES(14965, 10703, 'ten thousand seven hundred three');\nINSERT INTO t2 VALUES(14966, 40741, 'forty thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(14967, 16068, 'sixteen thousand sixty-eight');\nINSERT INTO t2 VALUES(14968, 40236, 'forty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(14969, 51691, 'fifty-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(14970, 17276, 'seventeen thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(14971, 70934, 'seventy thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(14972, 27180, 'twenty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(14973, 13627, 'thirteen thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(14974, 47417, 'forty-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(14975, 76436, 'seventy-six thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(14976, 30513, 'thirty thousand five hundred thirteen');\nINSERT INTO t2 VALUES(14977, 23691, 'twenty-three thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(14978, 88469, 'eighty-eight thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(14979, 32252, 'thirty-two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(14980, 42581, 'forty-two thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(14981, 10119, 'ten thousand one hundred nineteen');\nINSERT INTO t2 VALUES(14982, 83578, 'eighty-three thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(14983, 59346, 'fifty-nine thousand three hundred forty-six');\nINSERT INTO t2 VALUES(14984, 50595, 'fifty thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(14985, 61599, 'sixty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(14986, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(14987, 3882, 'three thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(14988, 59778, 'fifty-nine thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(14989, 50978, 'fifty thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(14990, 10198, 'ten thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(14991, 17030, 'seventeen thousand thirty');\nINSERT INTO t2 VALUES(14992, 74677, 'seventy-four thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(14993, 70154, 'seventy thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(14994, 34025, 'thirty-four thousand twenty-five');\nINSERT INTO t2 VALUES(14995, 88399, 'eighty-eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(14996, 13547, 'thirteen thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(14997, 75524, 'seventy-five thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(14998, 54179, 'fifty-four thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(14999, 55756, 'fifty-five thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(15000, 43850, 'forty-three thousand eight hundred fifty');\nINSERT INTO t2 VALUES(15001, 22374, 'twenty-two thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(15002, 46758, 'forty-six thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(15003, 7508, 'seven thousand five hundred eight');\nINSERT INTO t2 VALUES(15004, 17290, 'seventeen thousand two hundred ninety');\nINSERT INTO t2 VALUES(15005, 76910, 'seventy-six thousand nine hundred ten');\nINSERT INTO t2 VALUES(15006, 50603, 'fifty thousand six hundred three');\nINSERT INTO t2 VALUES(15007, 10383, 'ten thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(15008, 32156, 'thirty-two thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(15009, 68438, 'sixty-eight thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(15010, 27612, 'twenty-seven thousand six hundred twelve');\nINSERT INTO t2 VALUES(15011, 39143, 'thirty-nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(15012, 98547, 'ninety-eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(15013, 48307, 'forty-eight thousand three hundred seven');\nINSERT INTO t2 VALUES(15014, 17969, 'seventeen thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(15015, 76793, 'seventy-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(15016, 93091, 'ninety-three thousand ninety-one');\nINSERT INTO t2 VALUES(15017, 47612, 'forty-seven thousand six hundred twelve');\nINSERT INTO t2 VALUES(15018, 63439, 'sixty-three thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15019, 81077, 'eighty-one thousand seventy-seven');\nINSERT INTO t2 VALUES(15020, 62653, 'sixty-two thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(15021, 69399, 'sixty-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(15022, 12431, 'twelve thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(15023, 39932, 'thirty-nine thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15024, 59592, 'fifty-nine thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(15025, 44789, 'forty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(15026, 75520, 'seventy-five thousand five hundred twenty');\nINSERT INTO t2 VALUES(15027, 48424, 'forty-eight thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15028, 30984, 'thirty thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(15029, 89003, 'eighty-nine thousand three');\nINSERT INTO t2 VALUES(15030, 77770, 'seventy-seven thousand seven hundred seventy');\nINSERT INTO t2 VALUES(15031, 76647, 'seventy-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(15032, 82707, 'eighty-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(15033, 44158, 'forty-four thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(15034, 74164, 'seventy-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(15035, 48329, 'forty-eight thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(15036, 40291, 'forty thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(15037, 19669, 'nineteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(15038, 77524, 'seventy-seven thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(15039, 62050, 'sixty-two thousand fifty');\nINSERT INTO t2 VALUES(15040, 76706, 'seventy-six thousand seven hundred six');\nINSERT INTO t2 VALUES(15041, 25442, 'twenty-five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(15042, 29584, 'twenty-nine thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(15043, 78280, 'seventy-eight thousand two hundred eighty');\nINSERT INTO t2 VALUES(15044, 65004, 'sixty-five thousand four');\nINSERT INTO t2 VALUES(15045, 27679, 'twenty-seven thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(15046, 13080, 'thirteen thousand eighty');\nINSERT INTO t2 VALUES(15047, 54692, 'fifty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(15048, 36284, 'thirty-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(15049, 57009, 'fifty-seven thousand nine');\nINSERT INTO t2 VALUES(15050, 44112, 'forty-four thousand one hundred twelve');\nINSERT INTO t2 VALUES(15051, 13598, 'thirteen thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(15052, 1432, 'one thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(15053, 16430, 'sixteen thousand four hundred thirty');\nINSERT INTO t2 VALUES(15054, 25656, 'twenty-five thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(15055, 82356, 'eighty-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(15056, 18364, 'eighteen thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(15057, 19485, 'nineteen thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(15058, 21280, 'twenty-one thousand two hundred eighty');\nINSERT INTO t2 VALUES(15059, 5880, 'five thousand eight hundred eighty');\nINSERT INTO t2 VALUES(15060, 3051, 'three thousand fifty-one');\nINSERT INTO t2 VALUES(15061, 91744, 'ninety-one thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15062, 7056, 'seven thousand fifty-six');\nINSERT INTO t2 VALUES(15063, 21495, 'twenty-one thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(15064, 18694, 'eighteen thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(15065, 54635, 'fifty-four thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(15066, 91735, 'ninety-one thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(15067, 65049, 'sixty-five thousand forty-nine');\nINSERT INTO t2 VALUES(15068, 4716, 'four thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(15069, 90635, 'ninety thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(15070, 60723, 'sixty thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(15071, 99959, 'ninety-nine thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(15072, 27602, 'twenty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(15073, 38150, 'thirty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(15074, 27266, 'twenty-seven thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(15075, 5634, 'five thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(15076, 40735, 'forty thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(15077, 35728, 'thirty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(15078, 88799, 'eighty-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(15079, 76820, 'seventy-six thousand eight hundred twenty');\nINSERT INTO t2 VALUES(15080, 22403, 'twenty-two thousand four hundred three');\nINSERT INTO t2 VALUES(15081, 77299, 'seventy-seven thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(15082, 32372, 'thirty-two thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(15083, 32383, 'thirty-two thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(15084, 59041, 'fifty-nine thousand forty-one');\nINSERT INTO t2 VALUES(15085, 44132, 'forty-four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(15086, 5942, 'five thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(15087, 9132, 'nine thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(15088, 60139, 'sixty thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(15089, 60443, 'sixty thousand four hundred forty-three');\nINSERT INTO t2 VALUES(15090, 82142, 'eighty-two thousand one hundred forty-two');\nINSERT INTO t2 VALUES(15091, 42971, 'forty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(15092, 79414, 'seventy-nine thousand four hundred fourteen');\nINSERT INTO t2 VALUES(15093, 37209, 'thirty-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(15094, 98057, 'ninety-eight thousand fifty-seven');\nINSERT INTO t2 VALUES(15095, 17434, 'seventeen thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(15096, 75387, 'seventy-five thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(15097, 35237, 'thirty-five thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(15098, 49659, 'forty-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(15099, 86761, 'eighty-six thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(15100, 46207, 'forty-six thousand two hundred seven');\nINSERT INTO t2 VALUES(15101, 39626, 'thirty-nine thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15102, 87094, 'eighty-seven thousand ninety-four');\nINSERT INTO t2 VALUES(15103, 98995, 'ninety-eight thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(15104, 32231, 'thirty-two thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(15105, 51801, 'fifty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(15106, 51335, 'fifty-one thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(15107, 56, 'fifty-six');\nINSERT INTO t2 VALUES(15108, 52259, 'fifty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(15109, 49545, 'forty-nine thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15110, 82724, 'eighty-two thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(15111, 16479, 'sixteen thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(15112, 84442, 'eighty-four thousand four hundred forty-two');\nINSERT INTO t2 VALUES(15113, 95210, 'ninety-five thousand two hundred ten');\nINSERT INTO t2 VALUES(15114, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(15115, 78560, 'seventy-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(15116, 69718, 'sixty-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(15117, 88444, 'eighty-eight thousand four hundred forty-four');\nINSERT INTO t2 VALUES(15118, 43758, 'forty-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(15119, 56154, 'fifty-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(15120, 69000, 'sixty-nine thousand');\nINSERT INTO t2 VALUES(15121, 75221, 'seventy-five thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(15122, 66822, 'sixty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(15123, 66617, 'sixty-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(15124, 68022, 'sixty-eight thousand twenty-two');\nINSERT INTO t2 VALUES(15125, 85016, 'eighty-five thousand sixteen');\nINSERT INTO t2 VALUES(15126, 45801, 'forty-five thousand eight hundred one');\nINSERT INTO t2 VALUES(15127, 95672, 'ninety-five thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(15128, 96871, 'ninety-six thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(15129, 87468, 'eighty-seven thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(15130, 53152, 'fifty-three thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(15131, 95677, 'ninety-five thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(15132, 63568, 'sixty-three thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(15133, 87628, 'eighty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(15134, 13785, 'thirteen thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(15135, 15039, 'fifteen thousand thirty-nine');\nINSERT INTO t2 VALUES(15136, 77330, 'seventy-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(15137, 42267, 'forty-two thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(15138, 97874, 'ninety-seven thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(15139, 51193, 'fifty-one thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(15140, 73062, 'seventy-three thousand sixty-two');\nINSERT INTO t2 VALUES(15141, 98436, 'ninety-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(15142, 82620, 'eighty-two thousand six hundred twenty');\nINSERT INTO t2 VALUES(15143, 36742, 'thirty-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(15144, 60906, 'sixty thousand nine hundred six');\nINSERT INTO t2 VALUES(15145, 39809, 'thirty-nine thousand eight hundred nine');\nINSERT INTO t2 VALUES(15146, 69883, 'sixty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(15147, 15032, 'fifteen thousand thirty-two');\nINSERT INTO t2 VALUES(15148, 63924, 'sixty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(15149, 13744, 'thirteen thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15150, 949, 'nine hundred forty-nine');\nINSERT INTO t2 VALUES(15151, 60203, 'sixty thousand two hundred three');\nINSERT INTO t2 VALUES(15152, 91944, 'ninety-one thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15153, 28432, 'twenty-eight thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(15154, 29038, 'twenty-nine thousand thirty-eight');\nINSERT INTO t2 VALUES(15155, 66625, 'sixty-six thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(15156, 99063, 'ninety-nine thousand sixty-three');\nINSERT INTO t2 VALUES(15157, 8946, 'eight thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(15158, 51651, 'fifty-one thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(15159, 34876, 'thirty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(15160, 88950, 'eighty-eight thousand nine hundred fifty');\nINSERT INTO t2 VALUES(15161, 90025, 'ninety thousand twenty-five');\nINSERT INTO t2 VALUES(15162, 82170, 'eighty-two thousand one hundred seventy');\nINSERT INTO t2 VALUES(15163, 19233, 'nineteen thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(15164, 2705, 'two thousand seven hundred five');\nINSERT INTO t2 VALUES(15165, 47370, 'forty-seven thousand three hundred seventy');\nINSERT INTO t2 VALUES(15166, 97939, 'ninety-seven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(15167, 80568, 'eighty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(15168, 53886, 'fifty-three thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(15169, 80045, 'eighty thousand forty-five');\nINSERT INTO t2 VALUES(15170, 90212, 'ninety thousand two hundred twelve');\nINSERT INTO t2 VALUES(15171, 91703, 'ninety-one thousand seven hundred three');\nINSERT INTO t2 VALUES(15172, 43816, 'forty-three thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(15173, 16798, 'sixteen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(15174, 35487, 'thirty-five thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(15175, 16395, 'sixteen thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(15176, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(15177, 39963, 'thirty-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(15178, 138, 'one hundred thirty-eight');\nINSERT INTO t2 VALUES(15179, 8295, 'eight thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15180, 54714, 'fifty-four thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(15181, 58020, 'fifty-eight thousand twenty');\nINSERT INTO t2 VALUES(15182, 49458, 'forty-nine thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(15183, 9303, 'nine thousand three hundred three');\nINSERT INTO t2 VALUES(15184, 4736, 'four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(15185, 11424, 'eleven thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15186, 93132, 'ninety-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(15187, 23626, 'twenty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15188, 10794, 'ten thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(15189, 6668, 'six thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(15190, 8121, 'eight thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(15191, 32573, 'thirty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(15192, 34386, 'thirty-four thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(15193, 33288, 'thirty-three thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(15194, 4142, 'four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(15195, 39571, 'thirty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(15196, 66014, 'sixty-six thousand fourteen');\nINSERT INTO t2 VALUES(15197, 73969, 'seventy-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(15198, 69570, 'sixty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(15199, 39659, 'thirty-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(15200, 21545, 'twenty-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15201, 88646, 'eighty-eight thousand six hundred forty-six');\nINSERT INTO t2 VALUES(15202, 99188, 'ninety-nine thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(15203, 43045, 'forty-three thousand forty-five');\nINSERT INTO t2 VALUES(15204, 94952, 'ninety-four thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(15205, 77797, 'seventy-seven thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(15206, 82065, 'eighty-two thousand sixty-five');\nINSERT INTO t2 VALUES(15207, 97625, 'ninety-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(15208, 59614, 'fifty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(15209, 25885, 'twenty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(15210, 71065, 'seventy-one thousand sixty-five');\nINSERT INTO t2 VALUES(15211, 4361, 'four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(15212, 18097, 'eighteen thousand ninety-seven');\nINSERT INTO t2 VALUES(15213, 78333, 'seventy-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(15214, 74844, 'seventy-four thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(15215, 93932, 'ninety-three thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15216, 72185, 'seventy-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15217, 62820, 'sixty-two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(15218, 6529, 'six thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(15219, 92800, 'ninety-two thousand eight hundred');\nINSERT INTO t2 VALUES(15220, 47066, 'forty-seven thousand sixty-six');\nINSERT INTO t2 VALUES(15221, 13814, 'thirteen thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(15222, 43089, 'forty-three thousand eighty-nine');\nINSERT INTO t2 VALUES(15223, 22362, 'twenty-two thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(15224, 17489, 'seventeen thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(15225, 65027, 'sixty-five thousand twenty-seven');\nINSERT INTO t2 VALUES(15226, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(15227, 48508, 'forty-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(15228, 13113, 'thirteen thousand one hundred thirteen');\nINSERT INTO t2 VALUES(15229, 73212, 'seventy-three thousand two hundred twelve');\nINSERT INTO t2 VALUES(15230, 92011, 'ninety-two thousand eleven');\nINSERT INTO t2 VALUES(15231, 16123, 'sixteen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(15232, 20854, 'twenty thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(15233, 57608, 'fifty-seven thousand six hundred eight');\nINSERT INTO t2 VALUES(15234, 55653, 'fifty-five thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(15235, 68135, 'sixty-eight thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(15236, 28956, 'twenty-eight thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(15237, 28837, 'twenty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(15238, 28260, 'twenty-eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(15239, 13693, 'thirteen thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(15240, 878, 'eight hundred seventy-eight');\nINSERT INTO t2 VALUES(15241, 11061, 'eleven thousand sixty-one');\nINSERT INTO t2 VALUES(15242, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(15243, 43988, 'forty-three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(15244, 62841, 'sixty-two thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(15245, 841, 'eight hundred forty-one');\nINSERT INTO t2 VALUES(15246, 98046, 'ninety-eight thousand forty-six');\nINSERT INTO t2 VALUES(15247, 27528, 'twenty-seven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(15248, 22751, 'twenty-two thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(15249, 61470, 'sixty-one thousand four hundred seventy');\nINSERT INTO t2 VALUES(15250, 51588, 'fifty-one thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(15251, 4367, 'four thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(15252, 77357, 'seventy-seven thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(15253, 23607, 'twenty-three thousand six hundred seven');\nINSERT INTO t2 VALUES(15254, 86336, 'eighty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(15255, 26424, 'twenty-six thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15256, 66565, 'sixty-six thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(15257, 54626, 'fifty-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15258, 70193, 'seventy thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(15259, 61363, 'sixty-one thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(15260, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t2 VALUES(15261, 98196, 'ninety-eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(15262, 73709, 'seventy-three thousand seven hundred nine');\nINSERT INTO t2 VALUES(15263, 77095, 'seventy-seven thousand ninety-five');\nINSERT INTO t2 VALUES(15264, 68693, 'sixty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(15265, 18144, 'eighteen thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15266, 35983, 'thirty-five thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(15267, 25990, 'twenty-five thousand nine hundred ninety');\nINSERT INTO t2 VALUES(15268, 57263, 'fifty-seven thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(15269, 10204, 'ten thousand two hundred four');\nINSERT INTO t2 VALUES(15270, 18355, 'eighteen thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(15271, 23545, 'twenty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15272, 94662, 'ninety-four thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(15273, 71068, 'seventy-one thousand sixty-eight');\nINSERT INTO t2 VALUES(15274, 38716, 'thirty-eight thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(15275, 61144, 'sixty-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15276, 56982, 'fifty-six thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(15277, 79055, 'seventy-nine thousand fifty-five');\nINSERT INTO t2 VALUES(15278, 11257, 'eleven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(15279, 48219, 'forty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15280, 25441, 'twenty-five thousand four hundred forty-one');\nINSERT INTO t2 VALUES(15281, 27190, 'twenty-seven thousand one hundred ninety');\nINSERT INTO t2 VALUES(15282, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(15283, 17797, 'seventeen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(15284, 29156, 'twenty-nine thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(15285, 88189, 'eighty-eight thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(15286, 38575, 'thirty-eight thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(15287, 92783, 'ninety-two thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(15288, 5750, 'five thousand seven hundred fifty');\nINSERT INTO t2 VALUES(15289, 22181, 'twenty-two thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(15290, 75427, 'seventy-five thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(15291, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(15292, 75943, 'seventy-five thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(15293, 3790, 'three thousand seven hundred ninety');\nINSERT INTO t2 VALUES(15294, 63545, 'sixty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(15295, 74078, 'seventy-four thousand seventy-eight');\nINSERT INTO t2 VALUES(15296, 47475, 'forty-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(15297, 12016, 'twelve thousand sixteen');\nINSERT INTO t2 VALUES(15298, 17015, 'seventeen thousand fifteen');\nINSERT INTO t2 VALUES(15299, 99357, 'ninety-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(15300, 43847, 'forty-three thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(15301, 96848, 'ninety-six thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(15302, 10492, 'ten thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(15303, 37781, 'thirty-seven thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(15304, 4824, 'four thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(15305, 66562, 'sixty-six thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(15306, 4622, 'four thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(15307, 79546, 'seventy-nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(15308, 90717, 'ninety thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(15309, 36082, 'thirty-six thousand eighty-two');\nINSERT INTO t2 VALUES(15310, 18416, 'eighteen thousand four hundred sixteen');\nINSERT INTO t2 VALUES(15311, 8373, 'eight thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(15312, 38161, 'thirty-eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(15313, 67157, 'sixty-seven thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(15314, 1751, 'one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(15315, 30673, 'thirty thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(15316, 43865, 'forty-three thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(15317, 73724, 'seventy-three thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(15318, 22982, 'twenty-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(15319, 82190, 'eighty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(15320, 42632, 'forty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(15321, 31231, 'thirty-one thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(15322, 19622, 'nineteen thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(15323, 27495, 'twenty-seven thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(15324, 5385, 'five thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(15325, 94076, 'ninety-four thousand seventy-six');\nINSERT INTO t2 VALUES(15326, 44504, 'forty-four thousand five hundred four');\nINSERT INTO t2 VALUES(15327, 96536, 'ninety-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15328, 42248, 'forty-two thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(15329, 29206, 'twenty-nine thousand two hundred six');\nINSERT INTO t2 VALUES(15330, 75455, 'seventy-five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(15331, 87854, 'eighty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(15332, 90815, 'ninety thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(15333, 94246, 'ninety-four thousand two hundred forty-six');\nINSERT INTO t2 VALUES(15334, 76187, 'seventy-six thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(15335, 28407, 'twenty-eight thousand four hundred seven');\nINSERT INTO t2 VALUES(15336, 44191, 'forty-four thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(15337, 3637, 'three thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(15338, 46981, 'forty-six thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(15339, 73004, 'seventy-three thousand four');\nINSERT INTO t2 VALUES(15340, 7098, 'seven thousand ninety-eight');\nINSERT INTO t2 VALUES(15341, 147, 'one hundred forty-seven');\nINSERT INTO t2 VALUES(15342, 90561, 'ninety thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(15343, 20089, 'twenty thousand eighty-nine');\nINSERT INTO t2 VALUES(15344, 37149, 'thirty-seven thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(15345, 7301, 'seven thousand three hundred one');\nINSERT INTO t2 VALUES(15346, 59134, 'fifty-nine thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(15347, 65023, 'sixty-five thousand twenty-three');\nINSERT INTO t2 VALUES(15348, 90823, 'ninety thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(15349, 54893, 'fifty-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(15350, 58271, 'fifty-eight thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(15351, 92604, 'ninety-two thousand six hundred four');\nINSERT INTO t2 VALUES(15352, 50255, 'fifty thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(15353, 84628, 'eighty-four thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(15354, 65434, 'sixty-five thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(15355, 17633, 'seventeen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(15356, 92894, 'ninety-two thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(15357, 48623, 'forty-eight thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(15358, 87876, 'eighty-seven thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(15359, 62902, 'sixty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(15360, 43327, 'forty-three thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(15361, 67439, 'sixty-seven thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15362, 12642, 'twelve thousand six hundred forty-two');\nINSERT INTO t2 VALUES(15363, 24981, 'twenty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(15364, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(15365, 60299, 'sixty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(15366, 89200, 'eighty-nine thousand two hundred');\nINSERT INTO t2 VALUES(15367, 8050, 'eight thousand fifty');\nINSERT INTO t2 VALUES(15368, 11423, 'eleven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(15369, 62777, 'sixty-two thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(15370, 89835, 'eighty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(15371, 25405, 'twenty-five thousand four hundred five');\nINSERT INTO t2 VALUES(15372, 30195, 'thirty thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(15373, 50933, 'fifty thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(15374, 39237, 'thirty-nine thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(15375, 11106, 'eleven thousand one hundred six');\nINSERT INTO t2 VALUES(15376, 97238, 'ninety-seven thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(15377, 34956, 'thirty-four thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(15378, 83366, 'eighty-three thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(15379, 34877, 'thirty-four thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(15380, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(15381, 22663, 'twenty-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(15382, 25887, 'twenty-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(15383, 30447, 'thirty thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(15384, 19410, 'nineteen thousand four hundred ten');\nINSERT INTO t2 VALUES(15385, 59787, 'fifty-nine thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(15386, 77755, 'seventy-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(15387, 67147, 'sixty-seven thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(15388, 69423, 'sixty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(15389, 43649, 'forty-three thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(15390, 74525, 'seventy-four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(15391, 20720, 'twenty thousand seven hundred twenty');\nINSERT INTO t2 VALUES(15392, 24305, 'twenty-four thousand three hundred five');\nINSERT INTO t2 VALUES(15393, 92612, 'ninety-two thousand six hundred twelve');\nINSERT INTO t2 VALUES(15394, 10940, 'ten thousand nine hundred forty');\nINSERT INTO t2 VALUES(15395, 18822, 'eighteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(15396, 18216, 'eighteen thousand two hundred sixteen');\nINSERT INTO t2 VALUES(15397, 20286, 'twenty thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(15398, 89727, 'eighty-nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(15399, 48711, 'forty-eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(15400, 96866, 'ninety-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(15401, 52295, 'fifty-two thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15402, 55393, 'fifty-five thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(15403, 65285, 'sixty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(15404, 70250, 'seventy thousand two hundred fifty');\nINSERT INTO t2 VALUES(15405, 93421, 'ninety-three thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(15406, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(15407, 99667, 'ninety-nine thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(15408, 31507, 'thirty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(15409, 93969, 'ninety-three thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(15410, 24546, 'twenty-four thousand five hundred forty-six');\nINSERT INTO t2 VALUES(15411, 50689, 'fifty thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(15412, 95878, 'ninety-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(15413, 40319, 'forty thousand three hundred nineteen');\nINSERT INTO t2 VALUES(15414, 42772, 'forty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(15415, 22352, 'twenty-two thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(15416, 11198, 'eleven thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(15417, 98627, 'ninety-eight thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(15418, 54516, 'fifty-four thousand five hundred sixteen');\nINSERT INTO t2 VALUES(15419, 46274, 'forty-six thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(15420, 43755, 'forty-three thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(15421, 50050, 'fifty thousand fifty');\nINSERT INTO t2 VALUES(15422, 11996, 'eleven thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15423, 99752, 'ninety-nine thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(15424, 1868, 'one thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(15425, 55366, 'fifty-five thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(15426, 29855, 'twenty-nine thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(15427, 72464, 'seventy-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(15428, 60158, 'sixty thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(15429, 39867, 'thirty-nine thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(15430, 92860, 'ninety-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(15431, 61580, 'sixty-one thousand five hundred eighty');\nINSERT INTO t2 VALUES(15432, 6212, 'six thousand two hundred twelve');\nINSERT INTO t2 VALUES(15433, 82828, 'eighty-two thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(15434, 62919, 'sixty-two thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(15435, 15465, 'fifteen thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(15436, 93209, 'ninety-three thousand two hundred nine');\nINSERT INTO t2 VALUES(15437, 53891, 'fifty-three thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(15438, 67834, 'sixty-seven thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(15439, 82459, 'eighty-two thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(15440, 42603, 'forty-two thousand six hundred three');\nINSERT INTO t2 VALUES(15441, 90595, 'ninety thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(15442, 93731, 'ninety-three thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(15443, 96385, 'ninety-six thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(15444, 93702, 'ninety-three thousand seven hundred two');\nINSERT INTO t2 VALUES(15445, 47292, 'forty-seven thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(15446, 84439, 'eighty-four thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15447, 52088, 'fifty-two thousand eighty-eight');\nINSERT INTO t2 VALUES(15448, 63151, 'sixty-three thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(15449, 34454, 'thirty-four thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(15450, 50805, 'fifty thousand eight hundred five');\nINSERT INTO t2 VALUES(15451, 57924, 'fifty-seven thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(15452, 54111, 'fifty-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(15453, 59615, 'fifty-nine thousand six hundred fifteen');\nINSERT INTO t2 VALUES(15454, 67802, 'sixty-seven thousand eight hundred two');\nINSERT INTO t2 VALUES(15455, 47508, 'forty-seven thousand five hundred eight');\nINSERT INTO t2 VALUES(15456, 59560, 'fifty-nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(15457, 63565, 'sixty-three thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(15458, 77048, 'seventy-seven thousand forty-eight');\nINSERT INTO t2 VALUES(15459, 51269, 'fifty-one thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(15460, 83568, 'eighty-three thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(15461, 68846, 'sixty-eight thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(15462, 67516, 'sixty-seven thousand five hundred sixteen');\nINSERT INTO t2 VALUES(15463, 19922, 'nineteen thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(15464, 52611, 'fifty-two thousand six hundred eleven');\nINSERT INTO t2 VALUES(15465, 24338, 'twenty-four thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(15466, 64661, 'sixty-four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(15467, 95295, 'ninety-five thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15468, 3510, 'three thousand five hundred ten');\nINSERT INTO t2 VALUES(15469, 60057, 'sixty thousand fifty-seven');\nINSERT INTO t2 VALUES(15470, 39376, 'thirty-nine thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(15471, 72066, 'seventy-two thousand sixty-six');\nINSERT INTO t2 VALUES(15472, 24803, 'twenty-four thousand eight hundred three');\nINSERT INTO t2 VALUES(15473, 37056, 'thirty-seven thousand fifty-six');\nINSERT INTO t2 VALUES(15474, 51195, 'fifty-one thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(15475, 98889, 'ninety-eight thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(15476, 75488, 'seventy-five thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(15477, 42469, 'forty-two thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(15478, 49150, 'forty-nine thousand one hundred fifty');\nINSERT INTO t2 VALUES(15479, 85066, 'eighty-five thousand sixty-six');\nINSERT INTO t2 VALUES(15480, 54015, 'fifty-four thousand fifteen');\nINSERT INTO t2 VALUES(15481, 81555, 'eighty-one thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(15482, 97357, 'ninety-seven thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(15483, 66744, 'sixty-six thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15484, 32806, 'thirty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(15485, 11632, 'eleven thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(15486, 96839, 'ninety-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(15487, 88098, 'eighty-eight thousand ninety-eight');\nINSERT INTO t2 VALUES(15488, 60489, 'sixty thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(15489, 22812, 'twenty-two thousand eight hundred twelve');\nINSERT INTO t2 VALUES(15490, 52056, 'fifty-two thousand fifty-six');\nINSERT INTO t2 VALUES(15491, 15199, 'fifteen thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(15492, 45295, 'forty-five thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(15493, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t2 VALUES(15494, 1270, 'one thousand two hundred seventy');\nINSERT INTO t2 VALUES(15495, 31235, 'thirty-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(15496, 31310, 'thirty-one thousand three hundred ten');\nINSERT INTO t2 VALUES(15497, 69567, 'sixty-nine thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(15498, 7552, 'seven thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(15499, 81760, 'eighty-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(15500, 24472, 'twenty-four thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(15501, 12944, 'twelve thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15502, 15917, 'fifteen thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(15503, 59459, 'fifty-nine thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(15504, 81424, 'eighty-one thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(15505, 77348, 'seventy-seven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(15506, 99429, 'ninety-nine thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(15507, 25494, 'twenty-five thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(15508, 65411, 'sixty-five thousand four hundred eleven');\nINSERT INTO t2 VALUES(15509, 93643, 'ninety-three thousand six hundred forty-three');\nINSERT INTO t2 VALUES(15510, 29963, 'twenty-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(15511, 83596, 'eighty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(15512, 64819, 'sixty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(15513, 68713, 'sixty-eight thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(15514, 37885, 'thirty-seven thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(15515, 41922, 'forty-one thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(15516, 15729, 'fifteen thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(15517, 77893, 'seventy-seven thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(15518, 46203, 'forty-six thousand two hundred three');\nINSERT INTO t2 VALUES(15519, 46226, 'forty-six thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(15520, 97826, 'ninety-seven thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(15521, 26589, 'twenty-six thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(15522, 83990, 'eighty-three thousand nine hundred ninety');\nINSERT INTO t2 VALUES(15523, 72646, 'seventy-two thousand six hundred forty-six');\nINSERT INTO t2 VALUES(15524, 2105, 'two thousand one hundred five');\nINSERT INTO t2 VALUES(15525, 22161, 'twenty-two thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(15526, 84899, 'eighty-four thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(15527, 2102, 'two thousand one hundred two');\nINSERT INTO t2 VALUES(15528, 36255, 'thirty-six thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(15529, 25618, 'twenty-five thousand six hundred eighteen');\nINSERT INTO t2 VALUES(15530, 14837, 'fourteen thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(15531, 87808, 'eighty-seven thousand eight hundred eight');\nINSERT INTO t2 VALUES(15532, 98142, 'ninety-eight thousand one hundred forty-two');\nINSERT INTO t2 VALUES(15533, 36292, 'thirty-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(15534, 3279, 'three thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(15535, 78626, 'seventy-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(15536, 26768, 'twenty-six thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(15537, 80691, 'eighty thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(15538, 50597, 'fifty thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(15539, 90986, 'ninety thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(15540, 52652, 'fifty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(15541, 52101, 'fifty-two thousand one hundred one');\nINSERT INTO t2 VALUES(15542, 41309, 'forty-one thousand three hundred nine');\nINSERT INTO t2 VALUES(15543, 68436, 'sixty-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(15544, 61824, 'sixty-one thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(15545, 21345, 'twenty-one thousand three hundred forty-five');\nINSERT INTO t2 VALUES(15546, 17744, 'seventeen thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(15547, 16263, 'sixteen thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(15548, 94070, 'ninety-four thousand seventy');\nINSERT INTO t2 VALUES(15549, 48117, 'forty-eight thousand one hundred seventeen');\nINSERT INTO t2 VALUES(15550, 59852, 'fifty-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(15551, 90850, 'ninety thousand eight hundred fifty');\nINSERT INTO t2 VALUES(15552, 60815, 'sixty thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(15553, 51835, 'fifty-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(15554, 55658, 'fifty-five thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(15555, 98621, 'ninety-eight thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(15556, 55698, 'fifty-five thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(15557, 37635, 'thirty-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(15558, 64378, 'sixty-four thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(15559, 89291, 'eighty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(15560, 88040, 'eighty-eight thousand forty');\nINSERT INTO t2 VALUES(15561, 76340, 'seventy-six thousand three hundred forty');\nINSERT INTO t2 VALUES(15562, 47161, 'forty-seven thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(15563, 28387, 'twenty-eight thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(15564, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(15565, 14403, 'fourteen thousand four hundred three');\nINSERT INTO t2 VALUES(15566, 9579, 'nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(15567, 4936, 'four thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(15568, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(15569, 1756, 'one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(15570, 92144, 'ninety-two thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15571, 44931, 'forty-four thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(15572, 16544, 'sixteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(15573, 79428, 'seventy-nine thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(15574, 11404, 'eleven thousand four hundred four');\nINSERT INTO t2 VALUES(15575, 31449, 'thirty-one thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(15576, 4270, 'four thousand two hundred seventy');\nINSERT INTO t2 VALUES(15577, 45029, 'forty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(15578, 39026, 'thirty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(15579, 4605, 'four thousand six hundred five');\nINSERT INTO t2 VALUES(15580, 5860, 'five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(15581, 64363, 'sixty-four thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(15582, 58297, 'fifty-eight thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(15583, 33459, 'thirty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(15584, 59193, 'fifty-nine thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(15585, 81536, 'eighty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15586, 76947, 'seventy-six thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(15587, 44471, 'forty-four thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(15588, 69851, 'sixty-nine thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(15589, 45895, 'forty-five thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(15590, 92759, 'ninety-two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(15591, 40856, 'forty thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(15592, 11506, 'eleven thousand five hundred six');\nINSERT INTO t2 VALUES(15593, 5862, 'five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(15594, 70418, 'seventy thousand four hundred eighteen');\nINSERT INTO t2 VALUES(15595, 29836, 'twenty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(15596, 5514, 'five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(15597, 57932, 'fifty-seven thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15598, 84976, 'eighty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(15599, 68439, 'sixty-eight thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(15600, 99490, 'ninety-nine thousand four hundred ninety');\nINSERT INTO t2 VALUES(15601, 94135, 'ninety-four thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(15602, 30823, 'thirty thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(15603, 27451, 'twenty-seven thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(15604, 71974, 'seventy-one thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(15605, 34816, 'thirty-four thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(15606, 57497, 'fifty-seven thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(15607, 43596, 'forty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(15608, 17797, 'seventeen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(15609, 87723, 'eighty-seven thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(15610, 44052, 'forty-four thousand fifty-two');\nINSERT INTO t2 VALUES(15611, 71816, 'seventy-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(15612, 63176, 'sixty-three thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(15613, 61880, 'sixty-one thousand eight hundred eighty');\nINSERT INTO t2 VALUES(15614, 11725, 'eleven thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(15615, 18665, 'eighteen thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(15616, 18215, 'eighteen thousand two hundred fifteen');\nINSERT INTO t2 VALUES(15617, 76647, 'seventy-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(15618, 94777, 'ninety-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(15619, 12571, 'twelve thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(15620, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t2 VALUES(15621, 69675, 'sixty-nine thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(15622, 3555, 'three thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(15623, 63435, 'sixty-three thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(15624, 64818, 'sixty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(15625, 11605, 'eleven thousand six hundred five');\nINSERT INTO t2 VALUES(15626, 7872, 'seven thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(15627, 61547, 'sixty-one thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(15628, 43116, 'forty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(15629, 48788, 'forty-eight thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(15630, 79748, 'seventy-nine thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(15631, 53201, 'fifty-three thousand two hundred one');\nINSERT INTO t2 VALUES(15632, 39735, 'thirty-nine thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(15633, 62759, 'sixty-two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(15634, 42749, 'forty-two thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(15635, 35018, 'thirty-five thousand eighteen');\nINSERT INTO t2 VALUES(15636, 68053, 'sixty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(15637, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(15638, 86110, 'eighty-six thousand one hundred ten');\nINSERT INTO t2 VALUES(15639, 17467, 'seventeen thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(15640, 79544, 'seventy-nine thousand five hundred forty-four');\nINSERT INTO t2 VALUES(15641, 25175, 'twenty-five thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(15642, 85717, 'eighty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(15643, 48374, 'forty-eight thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(15644, 38063, 'thirty-eight thousand sixty-three');\nINSERT INTO t2 VALUES(15645, 19210, 'nineteen thousand two hundred ten');\nINSERT INTO t2 VALUES(15646, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(15647, 29209, 'twenty-nine thousand two hundred nine');\nINSERT INTO t2 VALUES(15648, 81531, 'eighty-one thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(15649, 32174, 'thirty-two thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(15650, 4973, 'four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(15651, 49262, 'forty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(15652, 95542, 'ninety-five thousand five hundred forty-two');\nINSERT INTO t2 VALUES(15653, 88219, 'eighty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15654, 16996, 'sixteen thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15655, 63924, 'sixty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(15656, 69687, 'sixty-nine thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(15657, 20597, 'twenty thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(15658, 31839, 'thirty-one thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(15659, 11766, 'eleven thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(15660, 91155, 'ninety-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(15661, 4188, 'four thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(15662, 66933, 'sixty-six thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(15663, 72850, 'seventy-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(15664, 80618, 'eighty thousand six hundred eighteen');\nINSERT INTO t2 VALUES(15665, 21622, 'twenty-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(15666, 37043, 'thirty-seven thousand forty-three');\nINSERT INTO t2 VALUES(15667, 12766, 'twelve thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(15668, 43165, 'forty-three thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(15669, 85152, 'eighty-five thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(15670, 36120, 'thirty-six thousand one hundred twenty');\nINSERT INTO t2 VALUES(15671, 65436, 'sixty-five thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(15672, 19332, 'nineteen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(15673, 49216, 'forty-nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(15674, 61322, 'sixty-one thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(15675, 41147, 'forty-one thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(15676, 63864, 'sixty-three thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(15677, 19328, 'nineteen thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(15678, 92877, 'ninety-two thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(15679, 42696, 'forty-two thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(15680, 89108, 'eighty-nine thousand one hundred eight');\nINSERT INTO t2 VALUES(15681, 22031, 'twenty-two thousand thirty-one');\nINSERT INTO t2 VALUES(15682, 39057, 'thirty-nine thousand fifty-seven');\nINSERT INTO t2 VALUES(15683, 58551, 'fifty-eight thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(15684, 44747, 'forty-four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(15685, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(15686, 52888, 'fifty-two thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(15687, 16704, 'sixteen thousand seven hundred four');\nINSERT INTO t2 VALUES(15688, 41197, 'forty-one thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(15689, 46288, 'forty-six thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(15690, 72820, 'seventy-two thousand eight hundred twenty');\nINSERT INTO t2 VALUES(15691, 24914, 'twenty-four thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(15692, 40832, 'forty thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(15693, 65655, 'sixty-five thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(15694, 45081, 'forty-five thousand eighty-one');\nINSERT INTO t2 VALUES(15695, 27034, 'twenty-seven thousand thirty-four');\nINSERT INTO t2 VALUES(15696, 34997, 'thirty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(15697, 37604, 'thirty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(15698, 91329, 'ninety-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(15699, 81517, 'eighty-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(15700, 55791, 'fifty-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(15701, 43675, 'forty-three thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(15702, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(15703, 21633, 'twenty-one thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(15704, 53911, 'fifty-three thousand nine hundred eleven');\nINSERT INTO t2 VALUES(15705, 32666, 'thirty-two thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(15706, 66059, 'sixty-six thousand fifty-nine');\nINSERT INTO t2 VALUES(15707, 93468, 'ninety-three thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(15708, 69825, 'sixty-nine thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(15709, 59698, 'fifty-nine thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(15710, 26718, 'twenty-six thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(15711, 43706, 'forty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(15712, 94219, 'ninety-four thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15713, 13486, 'thirteen thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(15714, 67202, 'sixty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(15715, 74060, 'seventy-four thousand sixty');\nINSERT INTO t2 VALUES(15716, 77731, 'seventy-seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(15717, 77732, 'seventy-seven thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(15718, 28718, 'twenty-eight thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(15719, 96642, 'ninety-six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(15720, 54665, 'fifty-four thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(15721, 64256, 'sixty-four thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(15722, 52600, 'fifty-two thousand six hundred');\nINSERT INTO t2 VALUES(15723, 98974, 'ninety-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(15724, 69925, 'sixty-nine thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(15725, 42561, 'forty-two thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(15726, 91144, 'ninety-one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(15727, 65572, 'sixty-five thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(15728, 31857, 'thirty-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(15729, 99414, 'ninety-nine thousand four hundred fourteen');\nINSERT INTO t2 VALUES(15730, 92586, 'ninety-two thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(15731, 4229, 'four thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(15732, 92992, 'ninety-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(15733, 25972, 'twenty-five thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(15734, 59536, 'fifty-nine thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15735, 29525, 'twenty-nine thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(15736, 58306, 'fifty-eight thousand three hundred six');\nINSERT INTO t2 VALUES(15737, 38178, 'thirty-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(15738, 24258, 'twenty-four thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(15739, 4210, 'four thousand two hundred ten');\nINSERT INTO t2 VALUES(15740, 37326, 'thirty-seven thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(15741, 48560, 'forty-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(15742, 40522, 'forty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(15743, 87111, 'eighty-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(15744, 93856, 'ninety-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(15745, 40944, 'forty thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15746, 34745, 'thirty-four thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(15747, 91884, 'ninety-one thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(15748, 33277, 'thirty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(15749, 98638, 'ninety-eight thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(15750, 35790, 'thirty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(15751, 25847, 'twenty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(15752, 74394, 'seventy-four thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(15753, 75598, 'seventy-five thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(15754, 93823, 'ninety-three thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(15755, 43607, 'forty-three thousand six hundred seven');\nINSERT INTO t2 VALUES(15756, 1996, 'one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15757, 43585, 'forty-three thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(15758, 25498, 'twenty-five thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(15759, 6693, 'six thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(15760, 5413, 'five thousand four hundred thirteen');\nINSERT INTO t2 VALUES(15761, 98080, 'ninety-eight thousand eighty');\nINSERT INTO t2 VALUES(15762, 90212, 'ninety thousand two hundred twelve');\nINSERT INTO t2 VALUES(15763, 80334, 'eighty thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(15764, 66086, 'sixty-six thousand eighty-six');\nINSERT INTO t2 VALUES(15765, 25179, 'twenty-five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(15766, 17907, 'seventeen thousand nine hundred seven');\nINSERT INTO t2 VALUES(15767, 12495, 'twelve thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(15768, 65610, 'sixty-five thousand six hundred ten');\nINSERT INTO t2 VALUES(15769, 21380, 'twenty-one thousand three hundred eighty');\nINSERT INTO t2 VALUES(15770, 58684, 'fifty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(15771, 11175, 'eleven thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(15772, 23235, 'twenty-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(15773, 75318, 'seventy-five thousand three hundred eighteen');\nINSERT INTO t2 VALUES(15774, 72185, 'seventy-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15775, 72689, 'seventy-two thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(15776, 92985, 'ninety-two thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(15777, 59223, 'fifty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(15778, 4445, 'four thousand four hundred forty-five');\nINSERT INTO t2 VALUES(15779, 83347, 'eighty-three thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(15780, 84382, 'eighty-four thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(15781, 40426, 'forty thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(15782, 26994, 'twenty-six thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(15783, 2096, 'two thousand ninety-six');\nINSERT INTO t2 VALUES(15784, 53119, 'fifty-three thousand one hundred nineteen');\nINSERT INTO t2 VALUES(15785, 83994, 'eighty-three thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(15786, 98841, 'ninety-eight thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(15787, 33638, 'thirty-three thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(15788, 50104, 'fifty thousand one hundred four');\nINSERT INTO t2 VALUES(15789, 4557, 'four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(15790, 71155, 'seventy-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(15791, 39118, 'thirty-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(15792, 92201, 'ninety-two thousand two hundred one');\nINSERT INTO t2 VALUES(15793, 93141, 'ninety-three thousand one hundred forty-one');\nINSERT INTO t2 VALUES(15794, 43521, 'forty-three thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(15795, 67315, 'sixty-seven thousand three hundred fifteen');\nINSERT INTO t2 VALUES(15796, 78521, 'seventy-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(15797, 24113, 'twenty-four thousand one hundred thirteen');\nINSERT INTO t2 VALUES(15798, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(15799, 61865, 'sixty-one thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(15800, 46165, 'forty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(15801, 14418, 'fourteen thousand four hundred eighteen');\nINSERT INTO t2 VALUES(15802, 61208, 'sixty-one thousand two hundred eight');\nINSERT INTO t2 VALUES(15803, 99043, 'ninety-nine thousand forty-three');\nINSERT INTO t2 VALUES(15804, 20662, 'twenty thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(15805, 21396, 'twenty-one thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(15806, 56437, 'fifty-six thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(15807, 43992, 'forty-three thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(15808, 84982, 'eighty-four thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(15809, 62228, 'sixty-two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(15810, 68314, 'sixty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(15811, 9211, 'nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(15812, 34369, 'thirty-four thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(15813, 38328, 'thirty-eight thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(15814, 42354, 'forty-two thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(15815, 95668, 'ninety-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(15816, 17301, 'seventeen thousand three hundred one');\nINSERT INTO t2 VALUES(15817, 99826, 'ninety-nine thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(15818, 91260, 'ninety-one thousand two hundred sixty');\nINSERT INTO t2 VALUES(15819, 16815, 'sixteen thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(15820, 49040, 'forty-nine thousand forty');\nINSERT INTO t2 VALUES(15821, 17261, 'seventeen thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(15822, 10944, 'ten thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(15823, 96146, 'ninety-six thousand one hundred forty-six');\nINSERT INTO t2 VALUES(15824, 80399, 'eighty thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(15825, 15139, 'fifteen thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(15826, 97864, 'ninety-seven thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(15827, 70054, 'seventy thousand fifty-four');\nINSERT INTO t2 VALUES(15828, 79807, 'seventy-nine thousand eight hundred seven');\nINSERT INTO t2 VALUES(15829, 40204, 'forty thousand two hundred four');\nINSERT INTO t2 VALUES(15830, 50679, 'fifty thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(15831, 52273, 'fifty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(15832, 68219, 'sixty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(15833, 78023, 'seventy-eight thousand twenty-three');\nINSERT INTO t2 VALUES(15834, 43634, 'forty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(15835, 5211, 'five thousand two hundred eleven');\nINSERT INTO t2 VALUES(15836, 39783, 'thirty-nine thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(15837, 2122, 'two thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(15838, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(15839, 603, 'six hundred three');\nINSERT INTO t2 VALUES(15840, 17301, 'seventeen thousand three hundred one');\nINSERT INTO t2 VALUES(15841, 51333, 'fifty-one thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(15842, 96097, 'ninety-six thousand ninety-seven');\nINSERT INTO t2 VALUES(15843, 98866, 'ninety-eight thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(15844, 53335, 'fifty-three thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(15845, 96912, 'ninety-six thousand nine hundred twelve');\nINSERT INTO t2 VALUES(15846, 64573, 'sixty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(15847, 46755, 'forty-six thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(15848, 798, 'seven hundred ninety-eight');\nINSERT INTO t2 VALUES(15849, 64921, 'sixty-four thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(15850, 33689, 'thirty-three thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(15851, 39179, 'thirty-nine thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(15852, 82318, 'eighty-two thousand three hundred eighteen');\nINSERT INTO t2 VALUES(15853, 3840, 'three thousand eight hundred forty');\nINSERT INTO t2 VALUES(15854, 55927, 'fifty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(15855, 9776, 'nine thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(15856, 65450, 'sixty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(15857, 61984, 'sixty-one thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(15858, 60152, 'sixty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(15859, 66670, 'sixty-six thousand six hundred seventy');\nINSERT INTO t2 VALUES(15860, 49118, 'forty-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(15861, 78227, 'seventy-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(15862, 744, 'seven hundred forty-four');\nINSERT INTO t2 VALUES(15863, 11166, 'eleven thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(15864, 47097, 'forty-seven thousand ninety-seven');\nINSERT INTO t2 VALUES(15865, 57886, 'fifty-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(15866, 87623, 'eighty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(15867, 97491, 'ninety-seven thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(15868, 30058, 'thirty thousand fifty-eight');\nINSERT INTO t2 VALUES(15869, 1551, 'one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(15870, 31301, 'thirty-one thousand three hundred one');\nINSERT INTO t2 VALUES(15871, 84567, 'eighty-four thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(15872, 77068, 'seventy-seven thousand sixty-eight');\nINSERT INTO t2 VALUES(15873, 76172, 'seventy-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(15874, 36069, 'thirty-six thousand sixty-nine');\nINSERT INTO t2 VALUES(15875, 93185, 'ninety-three thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15876, 69686, 'sixty-nine thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(15877, 99235, 'ninety-nine thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(15878, 83211, 'eighty-three thousand two hundred eleven');\nINSERT INTO t2 VALUES(15879, 76908, 'seventy-six thousand nine hundred eight');\nINSERT INTO t2 VALUES(15880, 36042, 'thirty-six thousand forty-two');\nINSERT INTO t2 VALUES(15881, 8421, 'eight thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(15882, 7780, 'seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(15883, 77417, 'seventy-seven thousand four hundred seventeen');\nINSERT INTO t2 VALUES(15884, 90133, 'ninety thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(15885, 78079, 'seventy-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(15886, 54830, 'fifty-four thousand eight hundred thirty');\nINSERT INTO t2 VALUES(15887, 24977, 'twenty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(15888, 70974, 'seventy thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(15889, 77095, 'seventy-seven thousand ninety-five');\nINSERT INTO t2 VALUES(15890, 51306, 'fifty-one thousand three hundred six');\nINSERT INTO t2 VALUES(15891, 58044, 'fifty-eight thousand forty-four');\nINSERT INTO t2 VALUES(15892, 88308, 'eighty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(15893, 1551, 'one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(15894, 29311, 'twenty-nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(15895, 79399, 'seventy-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(15896, 62728, 'sixty-two thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(15897, 27716, 'twenty-seven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(15898, 91020, 'ninety-one thousand twenty');\nINSERT INTO t2 VALUES(15899, 22067, 'twenty-two thousand sixty-seven');\nINSERT INTO t2 VALUES(15900, 29936, 'twenty-nine thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(15901, 81032, 'eighty-one thousand thirty-two');\nINSERT INTO t2 VALUES(15902, 73073, 'seventy-three thousand seventy-three');\nINSERT INTO t2 VALUES(15903, 17993, 'seventeen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(15904, 70475, 'seventy thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(15905, 91139, 'ninety-one thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(15906, 93044, 'ninety-three thousand forty-four');\nINSERT INTO t2 VALUES(15907, 56672, 'fifty-six thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(15908, 8574, 'eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(15909, 99775, 'ninety-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(15910, 98409, 'ninety-eight thousand four hundred nine');\nINSERT INTO t2 VALUES(15911, 52874, 'fifty-two thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(15912, 60677, 'sixty thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(15913, 74511, 'seventy-four thousand five hundred eleven');\nINSERT INTO t2 VALUES(15914, 38728, 'thirty-eight thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(15915, 5302, 'five thousand three hundred two');\nINSERT INTO t2 VALUES(15916, 50159, 'fifty thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(15917, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t2 VALUES(15918, 68110, 'sixty-eight thousand one hundred ten');\nINSERT INTO t2 VALUES(15919, 89350, 'eighty-nine thousand three hundred fifty');\nINSERT INTO t2 VALUES(15920, 70579, 'seventy thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(15921, 17149, 'seventeen thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(15922, 57276, 'fifty-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(15923, 9657, 'nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(15924, 51466, 'fifty-one thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(15925, 36532, 'thirty-six thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(15926, 60852, 'sixty thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(15927, 76838, 'seventy-six thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(15928, 48278, 'forty-eight thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(15929, 44557, 'forty-four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(15930, 93247, 'ninety-three thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(15931, 25113, 'twenty-five thousand one hundred thirteen');\nINSERT INTO t2 VALUES(15932, 27324, 'twenty-seven thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(15933, 67270, 'sixty-seven thousand two hundred seventy');\nINSERT INTO t2 VALUES(15934, 86752, 'eighty-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(15935, 86862, 'eighty-six thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(15936, 69694, 'sixty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(15937, 16990, 'sixteen thousand nine hundred ninety');\nINSERT INTO t2 VALUES(15938, 37531, 'thirty-seven thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(15939, 37787, 'thirty-seven thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(15940, 52082, 'fifty-two thousand eighty-two');\nINSERT INTO t2 VALUES(15941, 4136, 'four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(15942, 97125, 'ninety-seven thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(15943, 39025, 'thirty-nine thousand twenty-five');\nINSERT INTO t2 VALUES(15944, 43628, 'forty-three thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(15945, 24790, 'twenty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(15946, 90849, 'ninety thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(15947, 28804, 'twenty-eight thousand eight hundred four');\nINSERT INTO t2 VALUES(15948, 26308, 'twenty-six thousand three hundred eight');\nINSERT INTO t2 VALUES(15949, 97680, 'ninety-seven thousand six hundred eighty');\nINSERT INTO t2 VALUES(15950, 97444, 'ninety-seven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(15951, 3829, 'three thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(15952, 69996, 'sixty-nine thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(15953, 93038, 'ninety-three thousand thirty-eight');\nINSERT INTO t2 VALUES(15954, 97206, 'ninety-seven thousand two hundred six');\nINSERT INTO t2 VALUES(15955, 52615, 'fifty-two thousand six hundred fifteen');\nINSERT INTO t2 VALUES(15956, 34883, 'thirty-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(15957, 26101, 'twenty-six thousand one hundred one');\nINSERT INTO t2 VALUES(15958, 73641, 'seventy-three thousand six hundred forty-one');\nINSERT INTO t2 VALUES(15959, 41882, 'forty-one thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(15960, 45415, 'forty-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(15961, 22395, 'twenty-two thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(15962, 8821, 'eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(15963, 55844, 'fifty-five thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(15964, 46763, 'forty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(15965, 78945, 'seventy-eight thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(15966, 55236, 'fifty-five thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(15967, 61422, 'sixty-one thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(15968, 76060, 'seventy-six thousand sixty');\nINSERT INTO t2 VALUES(15969, 30024, 'thirty thousand twenty-four');\nINSERT INTO t2 VALUES(15970, 54977, 'fifty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(15971, 39697, 'thirty-nine thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(15972, 4943, 'four thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(15973, 75830, 'seventy-five thousand eight hundred thirty');\nINSERT INTO t2 VALUES(15974, 75024, 'seventy-five thousand twenty-four');\nINSERT INTO t2 VALUES(15975, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(15976, 54814, 'fifty-four thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(15977, 99572, 'ninety-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(15978, 40185, 'forty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(15979, 9988, 'nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(15980, 51925, 'fifty-one thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(15981, 37191, 'thirty-seven thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(15982, 91240, 'ninety-one thousand two hundred forty');\nINSERT INTO t2 VALUES(15983, 83574, 'eighty-three thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(15984, 46447, 'forty-six thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(15985, 84079, 'eighty-four thousand seventy-nine');\nINSERT INTO t2 VALUES(15986, 68993, 'sixty-eight thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(15987, 50877, 'fifty thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(15988, 46667, 'forty-six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(15989, 58255, 'fifty-eight thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(15990, 5215, 'five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(15991, 2736, 'two thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(15992, 45885, 'forty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(15993, 52343, 'fifty-two thousand three hundred forty-three');\nINSERT INTO t2 VALUES(15994, 1900, 'one thousand nine hundred');\nINSERT INTO t2 VALUES(15995, 52932, 'fifty-two thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(15996, 48382, 'forty-eight thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(15997, 55256, 'fifty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(15998, 73536, 'seventy-three thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(15999, 62821, 'sixty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(16000, 71480, 'seventy-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(16001, 92908, 'ninety-two thousand nine hundred eight');\nINSERT INTO t2 VALUES(16002, 40281, 'forty thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(16003, 60055, 'sixty thousand fifty-five');\nINSERT INTO t2 VALUES(16004, 59310, 'fifty-nine thousand three hundred ten');\nINSERT INTO t2 VALUES(16005, 98080, 'ninety-eight thousand eighty');\nINSERT INTO t2 VALUES(16006, 63368, 'sixty-three thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(16007, 89021, 'eighty-nine thousand twenty-one');\nINSERT INTO t2 VALUES(16008, 59499, 'fifty-nine thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16009, 22050, 'twenty-two thousand fifty');\nINSERT INTO t2 VALUES(16010, 60758, 'sixty thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(16011, 98253, 'ninety-eight thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(16012, 175, 'one hundred seventy-five');\nINSERT INTO t2 VALUES(16013, 2030, 'two thousand thirty');\nINSERT INTO t2 VALUES(16014, 80948, 'eighty thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(16015, 36059, 'thirty-six thousand fifty-nine');\nINSERT INTO t2 VALUES(16016, 52071, 'fifty-two thousand seventy-one');\nINSERT INTO t2 VALUES(16017, 83705, 'eighty-three thousand seven hundred five');\nINSERT INTO t2 VALUES(16018, 60985, 'sixty thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(16019, 61632, 'sixty-one thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(16020, 34740, 'thirty-four thousand seven hundred forty');\nINSERT INTO t2 VALUES(16021, 19212, 'nineteen thousand two hundred twelve');\nINSERT INTO t2 VALUES(16022, 12860, 'twelve thousand eight hundred sixty');\nINSERT INTO t2 VALUES(16023, 99628, 'ninety-nine thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(16024, 62177, 'sixty-two thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(16025, 85818, 'eighty-five thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(16026, 17621, 'seventeen thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(16027, 452, 'four hundred fifty-two');\nINSERT INTO t2 VALUES(16028, 61336, 'sixty-one thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16029, 17500, 'seventeen thousand five hundred');\nINSERT INTO t2 VALUES(16030, 22747, 'twenty-two thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(16031, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(16032, 93359, 'ninety-three thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(16033, 49357, 'forty-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(16034, 64020, 'sixty-four thousand twenty');\nINSERT INTO t2 VALUES(16035, 12282, 'twelve thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(16036, 44106, 'forty-four thousand one hundred six');\nINSERT INTO t2 VALUES(16037, 85472, 'eighty-five thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(16038, 43586, 'forty-three thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(16039, 50717, 'fifty thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(16040, 21904, 'twenty-one thousand nine hundred four');\nINSERT INTO t2 VALUES(16041, 19973, 'nineteen thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(16042, 32010, 'thirty-two thousand ten');\nINSERT INTO t2 VALUES(16043, 7681, 'seven thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(16044, 43907, 'forty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(16045, 92559, 'ninety-two thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(16046, 74737, 'seventy-four thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(16047, 41361, 'forty-one thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(16048, 63652, 'sixty-three thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(16049, 95499, 'ninety-five thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16050, 11250, 'eleven thousand two hundred fifty');\nINSERT INTO t2 VALUES(16051, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(16052, 50887, 'fifty thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(16053, 75120, 'seventy-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(16054, 70541, 'seventy thousand five hundred forty-one');\nINSERT INTO t2 VALUES(16055, 16164, 'sixteen thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(16056, 77795, 'seventy-seven thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(16057, 94479, 'ninety-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(16058, 71824, 'seventy-one thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(16059, 82936, 'eighty-two thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(16060, 540, 'five hundred forty');\nINSERT INTO t2 VALUES(16061, 87563, 'eighty-seven thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(16062, 56827, 'fifty-six thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(16063, 17633, 'seventeen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(16064, 39580, 'thirty-nine thousand five hundred eighty');\nINSERT INTO t2 VALUES(16065, 44379, 'forty-four thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(16066, 42202, 'forty-two thousand two hundred two');\nINSERT INTO t2 VALUES(16067, 489, 'four hundred eighty-nine');\nINSERT INTO t2 VALUES(16068, 21410, 'twenty-one thousand four hundred ten');\nINSERT INTO t2 VALUES(16069, 24792, 'twenty-four thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(16070, 64478, 'sixty-four thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(16071, 16835, 'sixteen thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(16072, 98735, 'ninety-eight thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(16073, 4138, 'four thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(16074, 16230, 'sixteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(16075, 46317, 'forty-six thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16076, 20244, 'twenty thousand two hundred forty-four');\nINSERT INTO t2 VALUES(16077, 76262, 'seventy-six thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(16078, 61887, 'sixty-one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(16079, 38336, 'thirty-eight thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16080, 60960, 'sixty thousand nine hundred sixty');\nINSERT INTO t2 VALUES(16081, 57789, 'fifty-seven thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(16082, 99854, 'ninety-nine thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(16083, 52051, 'fifty-two thousand fifty-one');\nINSERT INTO t2 VALUES(16084, 53572, 'fifty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16085, 7476, 'seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(16086, 78317, 'seventy-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16087, 91767, 'ninety-one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(16088, 67706, 'sixty-seven thousand seven hundred six');\nINSERT INTO t2 VALUES(16089, 92031, 'ninety-two thousand thirty-one');\nINSERT INTO t2 VALUES(16090, 69508, 'sixty-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(16091, 26314, 'twenty-six thousand three hundred fourteen');\nINSERT INTO t2 VALUES(16092, 58858, 'fifty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(16093, 13599, 'thirteen thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(16094, 18515, 'eighteen thousand five hundred fifteen');\nINSERT INTO t2 VALUES(16095, 73374, 'seventy-three thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(16096, 49281, 'forty-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(16097, 77458, 'seventy-seven thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(16098, 61112, 'sixty-one thousand one hundred twelve');\nINSERT INTO t2 VALUES(16099, 71786, 'seventy-one thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(16100, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16101, 43700, 'forty-three thousand seven hundred');\nINSERT INTO t2 VALUES(16102, 37603, 'thirty-seven thousand six hundred three');\nINSERT INTO t2 VALUES(16103, 59207, 'fifty-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(16104, 16234, 'sixteen thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(16105, 69260, 'sixty-nine thousand two hundred sixty');\nINSERT INTO t2 VALUES(16106, 85665, 'eighty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(16107, 22662, 'twenty-two thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(16108, 56317, 'fifty-six thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16109, 94136, 'ninety-four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(16110, 89060, 'eighty-nine thousand sixty');\nINSERT INTO t2 VALUES(16111, 99324, 'ninety-nine thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(16112, 40323, 'forty thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(16113, 25227, 'twenty-five thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(16114, 79601, 'seventy-nine thousand six hundred one');\nINSERT INTO t2 VALUES(16115, 17795, 'seventeen thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(16116, 27280, 'twenty-seven thousand two hundred eighty');\nINSERT INTO t2 VALUES(16117, 6623, 'six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(16118, 44016, 'forty-four thousand sixteen');\nINSERT INTO t2 VALUES(16119, 47457, 'forty-seven thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(16120, 49815, 'forty-nine thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(16121, 6374, 'six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(16122, 32173, 'thirty-two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(16123, 31527, 'thirty-one thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(16124, 22886, 'twenty-two thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(16125, 6343, 'six thousand three hundred forty-three');\nINSERT INTO t2 VALUES(16126, 82249, 'eighty-two thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(16127, 38617, 'thirty-eight thousand six hundred seventeen');\nINSERT INTO t2 VALUES(16128, 93634, 'ninety-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(16129, 67769, 'sixty-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(16130, 23369, 'twenty-three thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(16131, 87506, 'eighty-seven thousand five hundred six');\nINSERT INTO t2 VALUES(16132, 39817, 'thirty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(16133, 5730, 'five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(16134, 94254, 'ninety-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(16135, 99119, 'ninety-nine thousand one hundred nineteen');\nINSERT INTO t2 VALUES(16136, 2980, 'two thousand nine hundred eighty');\nINSERT INTO t2 VALUES(16137, 98050, 'ninety-eight thousand fifty');\nINSERT INTO t2 VALUES(16138, 40896, 'forty thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(16139, 4640, 'four thousand six hundred forty');\nINSERT INTO t2 VALUES(16140, 92837, 'ninety-two thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(16141, 14735, 'fourteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(16142, 55717, 'fifty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(16143, 23711, 'twenty-three thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16144, 78552, 'seventy-eight thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(16145, 32368, 'thirty-two thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(16146, 97189, 'ninety-seven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(16147, 3220, 'three thousand two hundred twenty');\nINSERT INTO t2 VALUES(16148, 20461, 'twenty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(16149, 14066, 'fourteen thousand sixty-six');\nINSERT INTO t2 VALUES(16150, 1397, 'one thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(16151, 54977, 'fifty-four thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(16152, 52195, 'fifty-two thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(16153, 82346, 'eighty-two thousand three hundred forty-six');\nINSERT INTO t2 VALUES(16154, 8844, 'eight thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(16155, 55534, 'fifty-five thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(16156, 12301, 'twelve thousand three hundred one');\nINSERT INTO t2 VALUES(16157, 86108, 'eighty-six thousand one hundred eight');\nINSERT INTO t2 VALUES(16158, 3085, 'three thousand eighty-five');\nINSERT INTO t2 VALUES(16159, 12289, 'twelve thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(16160, 89357, 'eighty-nine thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(16161, 13666, 'thirteen thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(16162, 83477, 'eighty-three thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(16163, 95107, 'ninety-five thousand one hundred seven');\nINSERT INTO t2 VALUES(16164, 8315, 'eight thousand three hundred fifteen');\nINSERT INTO t2 VALUES(16165, 44988, 'forty-four thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(16166, 94529, 'ninety-four thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(16167, 3042, 'three thousand forty-two');\nINSERT INTO t2 VALUES(16168, 61932, 'sixty-one thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(16169, 59615, 'fifty-nine thousand six hundred fifteen');\nINSERT INTO t2 VALUES(16170, 46488, 'forty-six thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(16171, 41124, 'forty-one thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(16172, 71428, 'seventy-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(16173, 40727, 'forty thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(16174, 89654, 'eighty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(16175, 27757, 'twenty-seven thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(16176, 85031, 'eighty-five thousand thirty-one');\nINSERT INTO t2 VALUES(16177, 74155, 'seventy-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(16178, 26689, 'twenty-six thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(16179, 44332, 'forty-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(16180, 92054, 'ninety-two thousand fifty-four');\nINSERT INTO t2 VALUES(16181, 65503, 'sixty-five thousand five hundred three');\nINSERT INTO t2 VALUES(16182, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(16183, 69557, 'sixty-nine thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(16184, 19050, 'nineteen thousand fifty');\nINSERT INTO t2 VALUES(16185, 18021, 'eighteen thousand twenty-one');\nINSERT INTO t2 VALUES(16186, 14458, 'fourteen thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(16187, 76327, 'seventy-six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(16188, 79846, 'seventy-nine thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(16189, 19131, 'nineteen thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(16190, 5839, 'five thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(16191, 44043, 'forty-four thousand forty-three');\nINSERT INTO t2 VALUES(16192, 63405, 'sixty-three thousand four hundred five');\nINSERT INTO t2 VALUES(16193, 30066, 'thirty thousand sixty-six');\nINSERT INTO t2 VALUES(16194, 47142, 'forty-seven thousand one hundred forty-two');\nINSERT INTO t2 VALUES(16195, 87465, 'eighty-seven thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(16196, 57878, 'fifty-seven thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(16197, 23196, 'twenty-three thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(16198, 50816, 'fifty thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(16199, 38194, 'thirty-eight thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(16200, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16201, 97601, 'ninety-seven thousand six hundred one');\nINSERT INTO t2 VALUES(16202, 58317, 'fifty-eight thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16203, 97255, 'ninety-seven thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(16204, 8056, 'eight thousand fifty-six');\nINSERT INTO t2 VALUES(16205, 95081, 'ninety-five thousand eighty-one');\nINSERT INTO t2 VALUES(16206, 12946, 'twelve thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(16207, 74745, 'seventy-four thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(16208, 51215, 'fifty-one thousand two hundred fifteen');\nINSERT INTO t2 VALUES(16209, 18338, 'eighteen thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(16210, 93590, 'ninety-three thousand five hundred ninety');\nINSERT INTO t2 VALUES(16211, 44736, 'forty-four thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(16212, 18104, 'eighteen thousand one hundred four');\nINSERT INTO t2 VALUES(16213, 66016, 'sixty-six thousand sixteen');\nINSERT INTO t2 VALUES(16214, 60424, 'sixty thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(16215, 69008, 'sixty-nine thousand eight');\nINSERT INTO t2 VALUES(16216, 2809, 'two thousand eight hundred nine');\nINSERT INTO t2 VALUES(16217, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(16218, 62527, 'sixty-two thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(16219, 91785, 'ninety-one thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(16220, 50726, 'fifty thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(16221, 67174, 'sixty-seven thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(16222, 54032, 'fifty-four thousand thirty-two');\nINSERT INTO t2 VALUES(16223, 17883, 'seventeen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(16224, 41373, 'forty-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(16225, 972, 'nine hundred seventy-two');\nINSERT INTO t2 VALUES(16226, 88410, 'eighty-eight thousand four hundred ten');\nINSERT INTO t2 VALUES(16227, 26306, 'twenty-six thousand three hundred six');\nINSERT INTO t2 VALUES(16228, 43858, 'forty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(16229, 27039, 'twenty-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(16230, 6953, 'six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(16231, 85665, 'eighty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(16232, 52992, 'fifty-two thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16233, 59727, 'fifty-nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(16234, 45860, 'forty-five thousand eight hundred sixty');\nINSERT INTO t2 VALUES(16235, 91271, 'ninety-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(16236, 60752, 'sixty thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(16237, 87274, 'eighty-seven thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(16238, 87060, 'eighty-seven thousand sixty');\nINSERT INTO t2 VALUES(16239, 77805, 'seventy-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(16240, 2814, 'two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(16241, 59542, 'fifty-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(16242, 43225, 'forty-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(16243, 87456, 'eighty-seven thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(16244, 43361, 'forty-three thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(16245, 62392, 'sixty-two thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(16246, 31119, 'thirty-one thousand one hundred nineteen');\nINSERT INTO t2 VALUES(16247, 72847, 'seventy-two thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(16248, 49466, 'forty-nine thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(16249, 14930, 'fourteen thousand nine hundred thirty');\nINSERT INTO t2 VALUES(16250, 55942, 'fifty-five thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(16251, 14274, 'fourteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(16252, 57987, 'fifty-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(16253, 98842, 'ninety-eight thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(16254, 71280, 'seventy-one thousand two hundred eighty');\nINSERT INTO t2 VALUES(16255, 91828, 'ninety-one thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(16256, 89036, 'eighty-nine thousand thirty-six');\nINSERT INTO t2 VALUES(16257, 32711, 'thirty-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16258, 10873, 'ten thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(16259, 29863, 'twenty-nine thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(16260, 78799, 'seventy-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(16261, 10873, 'ten thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(16262, 90157, 'ninety thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(16263, 5204, 'five thousand two hundred four');\nINSERT INTO t2 VALUES(16264, 49483, 'forty-nine thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(16265, 45161, 'forty-five thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16266, 65961, 'sixty-five thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(16267, 43300, 'forty-three thousand three hundred');\nINSERT INTO t2 VALUES(16268, 95356, 'ninety-five thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(16269, 72773, 'seventy-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16270, 54822, 'fifty-four thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(16271, 2113, 'two thousand one hundred thirteen');\nINSERT INTO t2 VALUES(16272, 5442, 'five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(16273, 66294, 'sixty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(16274, 42545, 'forty-two thousand five hundred forty-five');\nINSERT INTO t2 VALUES(16275, 59123, 'fifty-nine thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16276, 69177, 'sixty-nine thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(16277, 69706, 'sixty-nine thousand seven hundred six');\nINSERT INTO t2 VALUES(16278, 27256, 'twenty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(16279, 26192, 'twenty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(16280, 48549, 'forty-eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(16281, 23144, 'twenty-three thousand one hundred forty-four');\nINSERT INTO t2 VALUES(16282, 651, 'six hundred fifty-one');\nINSERT INTO t2 VALUES(16283, 37920, 'thirty-seven thousand nine hundred twenty');\nINSERT INTO t2 VALUES(16284, 42319, 'forty-two thousand three hundred nineteen');\nINSERT INTO t2 VALUES(16285, 34174, 'thirty-four thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(16286, 10483, 'ten thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(16287, 21220, 'twenty-one thousand two hundred twenty');\nINSERT INTO t2 VALUES(16288, 84490, 'eighty-four thousand four hundred ninety');\nINSERT INTO t2 VALUES(16289, 62444, 'sixty-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(16290, 28703, 'twenty-eight thousand seven hundred three');\nINSERT INTO t2 VALUES(16291, 75606, 'seventy-five thousand six hundred six');\nINSERT INTO t2 VALUES(16292, 90353, 'ninety thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(16293, 33493, 'thirty-three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(16294, 39382, 'thirty-nine thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(16295, 18619, 'eighteen thousand six hundred nineteen');\nINSERT INTO t2 VALUES(16296, 59367, 'fifty-nine thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(16297, 65457, 'sixty-five thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(16298, 67637, 'sixty-seven thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(16299, 96162, 'ninety-six thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(16300, 4175, 'four thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(16301, 33759, 'thirty-three thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(16302, 62597, 'sixty-two thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(16303, 6885, 'six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(16304, 67623, 'sixty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(16305, 50288, 'fifty thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(16306, 73792, 'seventy-three thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(16307, 29088, 'twenty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(16308, 61366, 'sixty-one thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(16309, 57577, 'fifty-seven thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(16310, 35627, 'thirty-five thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(16311, 33607, 'thirty-three thousand six hundred seven');\nINSERT INTO t2 VALUES(16312, 38930, 'thirty-eight thousand nine hundred thirty');\nINSERT INTO t2 VALUES(16313, 82055, 'eighty-two thousand fifty-five');\nINSERT INTO t2 VALUES(16314, 83614, 'eighty-three thousand six hundred fourteen');\nINSERT INTO t2 VALUES(16315, 30726, 'thirty thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(16316, 83908, 'eighty-three thousand nine hundred eight');\nINSERT INTO t2 VALUES(16317, 55766, 'fifty-five thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(16318, 83773, 'eighty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16319, 23891, 'twenty-three thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(16320, 39398, 'thirty-nine thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(16321, 67260, 'sixty-seven thousand two hundred sixty');\nINSERT INTO t2 VALUES(16322, 80283, 'eighty thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(16323, 55617, 'fifty-five thousand six hundred seventeen');\nINSERT INTO t2 VALUES(16324, 65215, 'sixty-five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(16325, 437, 'four hundred thirty-seven');\nINSERT INTO t2 VALUES(16326, 56810, 'fifty-six thousand eight hundred ten');\nINSERT INTO t2 VALUES(16327, 438, 'four hundred thirty-eight');\nINSERT INTO t2 VALUES(16328, 88671, 'eighty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(16329, 29397, 'twenty-nine thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(16330, 91946, 'ninety-one thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(16331, 1841, 'one thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(16332, 44648, 'forty-four thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(16333, 58631, 'fifty-eight thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(16334, 9334, 'nine thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(16335, 93055, 'ninety-three thousand fifty-five');\nINSERT INTO t2 VALUES(16336, 70389, 'seventy thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(16337, 86675, 'eighty-six thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(16338, 42012, 'forty-two thousand twelve');\nINSERT INTO t2 VALUES(16339, 38035, 'thirty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(16340, 42707, 'forty-two thousand seven hundred seven');\nINSERT INTO t2 VALUES(16341, 96258, 'ninety-six thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(16342, 85244, 'eighty-five thousand two hundred forty-four');\nINSERT INTO t2 VALUES(16343, 67037, 'sixty-seven thousand thirty-seven');\nINSERT INTO t2 VALUES(16344, 15659, 'fifteen thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(16345, 30025, 'thirty thousand twenty-five');\nINSERT INTO t2 VALUES(16346, 26793, 'twenty-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(16347, 15654, 'fifteen thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(16348, 15482, 'fifteen thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(16349, 35324, 'thirty-five thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(16350, 90616, 'ninety thousand six hundred sixteen');\nINSERT INTO t2 VALUES(16351, 7671, 'seven thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(16352, 89670, 'eighty-nine thousand six hundred seventy');\nINSERT INTO t2 VALUES(16353, 60029, 'sixty thousand twenty-nine');\nINSERT INTO t2 VALUES(16354, 83944, 'eighty-three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(16355, 79726, 'seventy-nine thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(16356, 75123, 'seventy-five thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16357, 94220, 'ninety-four thousand two hundred twenty');\nINSERT INTO t2 VALUES(16358, 1618, 'one thousand six hundred eighteen');\nINSERT INTO t2 VALUES(16359, 1007, 'one thousand seven');\nINSERT INTO t2 VALUES(16360, 8037, 'eight thousand thirty-seven');\nINSERT INTO t2 VALUES(16361, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(16362, 76616, 'seventy-six thousand six hundred sixteen');\nINSERT INTO t2 VALUES(16363, 52655, 'fifty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(16364, 53270, 'fifty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(16365, 67386, 'sixty-seven thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(16366, 13735, 'thirteen thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(16367, 4217, 'four thousand two hundred seventeen');\nINSERT INTO t2 VALUES(16368, 36915, 'thirty-six thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(16369, 93171, 'ninety-three thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(16370, 42370, 'forty-two thousand three hundred seventy');\nINSERT INTO t2 VALUES(16371, 45498, 'forty-five thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(16372, 65950, 'sixty-five thousand nine hundred fifty');\nINSERT INTO t2 VALUES(16373, 70214, 'seventy thousand two hundred fourteen');\nINSERT INTO t2 VALUES(16374, 55707, 'fifty-five thousand seven hundred seven');\nINSERT INTO t2 VALUES(16375, 77836, 'seventy-seven thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(16376, 30633, 'thirty thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(16377, 47063, 'forty-seven thousand sixty-three');\nINSERT INTO t2 VALUES(16378, 37314, 'thirty-seven thousand three hundred fourteen');\nINSERT INTO t2 VALUES(16379, 75521, 'seventy-five thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(16380, 54752, 'fifty-four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(16381, 52610, 'fifty-two thousand six hundred ten');\nINSERT INTO t2 VALUES(16382, 55893, 'fifty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(16383, 34842, 'thirty-four thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(16384, 77317, 'seventy-seven thousand three hundred seventeen');\nINSERT INTO t2 VALUES(16385, 37717, 'thirty-seven thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(16386, 8909, 'eight thousand nine hundred nine');\nINSERT INTO t2 VALUES(16387, 53752, 'fifty-three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(16388, 4216, 'four thousand two hundred sixteen');\nINSERT INTO t2 VALUES(16389, 69445, 'sixty-nine thousand four hundred forty-five');\nINSERT INTO t2 VALUES(16390, 24744, 'twenty-four thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(16391, 689, 'six hundred eighty-nine');\nINSERT INTO t2 VALUES(16392, 73776, 'seventy-three thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(16393, 35784, 'thirty-five thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(16394, 26517, 'twenty-six thousand five hundred seventeen');\nINSERT INTO t2 VALUES(16395, 36715, 'thirty-six thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16396, 62011, 'sixty-two thousand eleven');\nINSERT INTO t2 VALUES(16397, 82038, 'eighty-two thousand thirty-eight');\nINSERT INTO t2 VALUES(16398, 65734, 'sixty-five thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(16399, 99683, 'ninety-nine thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(16400, 92561, 'ninety-two thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(16401, 81422, 'eighty-one thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(16402, 89360, 'eighty-nine thousand three hundred sixty');\nINSERT INTO t2 VALUES(16403, 71584, 'seventy-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(16404, 67622, 'sixty-seven thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(16405, 16749, 'sixteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(16406, 68108, 'sixty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(16407, 40276, 'forty thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(16408, 88928, 'eighty-eight thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(16409, 53328, 'fifty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(16410, 13428, 'thirteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(16411, 51950, 'fifty-one thousand nine hundred fifty');\nINSERT INTO t2 VALUES(16412, 56220, 'fifty-six thousand two hundred twenty');\nINSERT INTO t2 VALUES(16413, 84591, 'eighty-four thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(16414, 48035, 'forty-eight thousand thirty-five');\nINSERT INTO t2 VALUES(16415, 98654, 'ninety-eight thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(16416, 3088, 'three thousand eighty-eight');\nINSERT INTO t2 VALUES(16417, 73261, 'seventy-three thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(16418, 61489, 'sixty-one thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(16419, 52502, 'fifty-two thousand five hundred two');\nINSERT INTO t2 VALUES(16420, 58633, 'fifty-eight thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(16421, 88204, 'eighty-eight thousand two hundred four');\nINSERT INTO t2 VALUES(16422, 41549, 'forty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(16423, 55414, 'fifty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(16424, 40902, 'forty thousand nine hundred two');\nINSERT INTO t2 VALUES(16425, 89970, 'eighty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(16426, 73233, 'seventy-three thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(16427, 80971, 'eighty thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(16428, 88587, 'eighty-eight thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(16429, 34164, 'thirty-four thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(16430, 23612, 'twenty-three thousand six hundred twelve');\nINSERT INTO t2 VALUES(16431, 71749, 'seventy-one thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(16432, 98149, 'ninety-eight thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(16433, 48951, 'forty-eight thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(16434, 90645, 'ninety thousand six hundred forty-five');\nINSERT INTO t2 VALUES(16435, 50664, 'fifty thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(16436, 23111, 'twenty-three thousand one hundred eleven');\nINSERT INTO t2 VALUES(16437, 18775, 'eighteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(16438, 34702, 'thirty-four thousand seven hundred two');\nINSERT INTO t2 VALUES(16439, 87310, 'eighty-seven thousand three hundred ten');\nINSERT INTO t2 VALUES(16440, 77109, 'seventy-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(16441, 96710, 'ninety-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(16442, 65213, 'sixty-five thousand two hundred thirteen');\nINSERT INTO t2 VALUES(16443, 77656, 'seventy-seven thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(16444, 33076, 'thirty-three thousand seventy-six');\nINSERT INTO t2 VALUES(16445, 54161, 'fifty-four thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16446, 2367, 'two thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(16447, 21023, 'twenty-one thousand twenty-three');\nINSERT INTO t2 VALUES(16448, 16137, 'sixteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(16449, 68626, 'sixty-eight thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(16450, 41773, 'forty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16451, 72723, 'seventy-two thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(16452, 39225, 'thirty-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(16453, 89941, 'eighty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(16454, 38076, 'thirty-eight thousand seventy-six');\nINSERT INTO t2 VALUES(16455, 94996, 'ninety-four thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(16456, 30319, 'thirty thousand three hundred nineteen');\nINSERT INTO t2 VALUES(16457, 33596, 'thirty-three thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(16458, 45240, 'forty-five thousand two hundred forty');\nINSERT INTO t2 VALUES(16459, 87914, 'eighty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(16460, 31557, 'thirty-one thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(16461, 20954, 'twenty thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(16462, 48338, 'forty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(16463, 80992, 'eighty thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16464, 70979, 'seventy thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(16465, 42578, 'forty-two thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(16466, 50789, 'fifty thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(16467, 59835, 'fifty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(16468, 64635, 'sixty-four thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(16469, 81816, 'eighty-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(16470, 70787, 'seventy thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(16471, 97583, 'ninety-seven thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(16472, 93716, 'ninety-three thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(16473, 91414, 'ninety-one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(16474, 40471, 'forty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(16475, 91223, 'ninety-one thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(16476, 90427, 'ninety thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(16477, 3320, 'three thousand three hundred twenty');\nINSERT INTO t2 VALUES(16478, 56499, 'fifty-six thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16479, 85799, 'eighty-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(16480, 51833, 'fifty-one thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(16481, 71941, 'seventy-one thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(16482, 66293, 'sixty-six thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(16483, 40203, 'forty thousand two hundred three');\nINSERT INTO t2 VALUES(16484, 46343, 'forty-six thousand three hundred forty-three');\nINSERT INTO t2 VALUES(16485, 9820, 'nine thousand eight hundred twenty');\nINSERT INTO t2 VALUES(16486, 19316, 'nineteen thousand three hundred sixteen');\nINSERT INTO t2 VALUES(16487, 18298, 'eighteen thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(16488, 36507, 'thirty-six thousand five hundred seven');\nINSERT INTO t2 VALUES(16489, 26218, 'twenty-six thousand two hundred eighteen');\nINSERT INTO t2 VALUES(16490, 63782, 'sixty-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(16491, 18218, 'eighteen thousand two hundred eighteen');\nINSERT INTO t2 VALUES(16492, 95986, 'ninety-five thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(16493, 67780, 'sixty-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(16494, 12942, 'twelve thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(16495, 32681, 'thirty-two thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(16496, 80359, 'eighty thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(16497, 24729, 'twenty-four thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(16498, 27548, 'twenty-seven thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(16499, 48161, 'forty-eight thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16500, 50494, 'fifty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(16501, 48162, 'forty-eight thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(16502, 33647, 'thirty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(16503, 58346, 'fifty-eight thousand three hundred forty-six');\nINSERT INTO t2 VALUES(16504, 19370, 'nineteen thousand three hundred seventy');\nINSERT INTO t2 VALUES(16505, 75765, 'seventy-five thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(16506, 45323, 'forty-five thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(16507, 67482, 'sixty-seven thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(16508, 37911, 'thirty-seven thousand nine hundred eleven');\nINSERT INTO t2 VALUES(16509, 56614, 'fifty-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(16510, 65081, 'sixty-five thousand eighty-one');\nINSERT INTO t2 VALUES(16511, 67355, 'sixty-seven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(16512, 72157, 'seventy-two thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(16513, 64123, 'sixty-four thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16514, 7643, 'seven thousand six hundred forty-three');\nINSERT INTO t2 VALUES(16515, 42302, 'forty-two thousand three hundred two');\nINSERT INTO t2 VALUES(16516, 80053, 'eighty thousand fifty-three');\nINSERT INTO t2 VALUES(16517, 92982, 'ninety-two thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(16518, 432, 'four hundred thirty-two');\nINSERT INTO t2 VALUES(16519, 37292, 'thirty-seven thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(16520, 94118, 'ninety-four thousand one hundred eighteen');\nINSERT INTO t2 VALUES(16521, 70572, 'seventy thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16522, 81383, 'eighty-one thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(16523, 21709, 'twenty-one thousand seven hundred nine');\nINSERT INTO t2 VALUES(16524, 55450, 'fifty-five thousand four hundred fifty');\nINSERT INTO t2 VALUES(16525, 5086, 'five thousand eighty-six');\nINSERT INTO t2 VALUES(16526, 66669, 'sixty-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(16527, 42869, 'forty-two thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(16528, 72745, 'seventy-two thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(16529, 14828, 'fourteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(16530, 4621, 'four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(16531, 47935, 'forty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(16532, 31775, 'thirty-one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(16533, 55028, 'fifty-five thousand twenty-eight');\nINSERT INTO t2 VALUES(16534, 47991, 'forty-seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(16535, 62429, 'sixty-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(16536, 97285, 'ninety-seven thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(16537, 32210, 'thirty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(16538, 22698, 'twenty-two thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(16539, 81414, 'eighty-one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(16540, 82896, 'eighty-two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(16541, 20290, 'twenty thousand two hundred ninety');\nINSERT INTO t2 VALUES(16542, 39712, 'thirty-nine thousand seven hundred twelve');\nINSERT INTO t2 VALUES(16543, 65256, 'sixty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(16544, 5118, 'five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(16545, 39196, 'thirty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(16546, 40806, 'forty thousand eight hundred six');\nINSERT INTO t2 VALUES(16547, 62391, 'sixty-two thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(16548, 50223, 'fifty thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(16549, 43614, 'forty-three thousand six hundred fourteen');\nINSERT INTO t2 VALUES(16550, 3586, 'three thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(16551, 3193, 'three thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(16552, 84122, 'eighty-four thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(16553, 22070, 'twenty-two thousand seventy');\nINSERT INTO t2 VALUES(16554, 68449, 'sixty-eight thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(16555, 95168, 'ninety-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(16556, 77287, 'seventy-seven thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(16557, 83653, 'eighty-three thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(16558, 12220, 'twelve thousand two hundred twenty');\nINSERT INTO t2 VALUES(16559, 58862, 'fifty-eight thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(16560, 34558, 'thirty-four thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(16561, 96997, 'ninety-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(16562, 18883, 'eighteen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(16563, 69662, 'sixty-nine thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(16564, 62622, 'sixty-two thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(16565, 70972, 'seventy thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(16566, 37525, 'thirty-seven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(16567, 38447, 'thirty-eight thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(16568, 76784, 'seventy-six thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(16569, 53760, 'fifty-three thousand seven hundred sixty');\nINSERT INTO t2 VALUES(16570, 79674, 'seventy-nine thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(16571, 59939, 'fifty-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(16572, 7210, 'seven thousand two hundred ten');\nINSERT INTO t2 VALUES(16573, 29992, 'twenty-nine thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16574, 64170, 'sixty-four thousand one hundred seventy');\nINSERT INTO t2 VALUES(16575, 87277, 'eighty-seven thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(16576, 74012, 'seventy-four thousand twelve');\nINSERT INTO t2 VALUES(16577, 62299, 'sixty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(16578, 968, 'nine hundred sixty-eight');\nINSERT INTO t2 VALUES(16579, 73274, 'seventy-three thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(16580, 75610, 'seventy-five thousand six hundred ten');\nINSERT INTO t2 VALUES(16581, 49036, 'forty-nine thousand thirty-six');\nINSERT INTO t2 VALUES(16582, 75544, 'seventy-five thousand five hundred forty-four');\nINSERT INTO t2 VALUES(16583, 8656, 'eight thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(16584, 98333, 'ninety-eight thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(16585, 90721, 'ninety thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(16586, 83856, 'eighty-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(16587, 6477, 'six thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(16588, 25813, 'twenty-five thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(16589, 94111, 'ninety-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(16590, 53899, 'fifty-three thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(16591, 87576, 'eighty-seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(16592, 37205, 'thirty-seven thousand two hundred five');\nINSERT INTO t2 VALUES(16593, 66518, 'sixty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(16594, 49213, 'forty-nine thousand two hundred thirteen');\nINSERT INTO t2 VALUES(16595, 3034, 'three thousand thirty-four');\nINSERT INTO t2 VALUES(16596, 97592, 'ninety-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(16597, 49342, 'forty-nine thousand three hundred forty-two');\nINSERT INTO t2 VALUES(16598, 43565, 'forty-three thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(16599, 34861, 'thirty-four thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(16600, 54894, 'fifty-four thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(16601, 95894, 'ninety-five thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(16602, 33603, 'thirty-three thousand six hundred three');\nINSERT INTO t2 VALUES(16603, 17876, 'seventeen thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(16604, 37795, 'thirty-seven thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(16605, 1571, 'one thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(16606, 52715, 'fifty-two thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16607, 44981, 'forty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(16608, 13627, 'thirteen thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(16609, 23786, 'twenty-three thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(16610, 67684, 'sixty-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(16611, 31972, 'thirty-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(16612, 45826, 'forty-five thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(16613, 33690, 'thirty-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(16614, 24457, 'twenty-four thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(16615, 7291, 'seven thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(16616, 30936, 'thirty thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(16617, 92212, 'ninety-two thousand two hundred twelve');\nINSERT INTO t2 VALUES(16618, 12305, 'twelve thousand three hundred five');\nINSERT INTO t2 VALUES(16619, 26396, 'twenty-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(16620, 42394, 'forty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(16621, 87865, 'eighty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(16622, 65060, 'sixty-five thousand sixty');\nINSERT INTO t2 VALUES(16623, 82099, 'eighty-two thousand ninety-nine');\nINSERT INTO t2 VALUES(16624, 45080, 'forty-five thousand eighty');\nINSERT INTO t2 VALUES(16625, 29100, 'twenty-nine thousand one hundred');\nINSERT INTO t2 VALUES(16626, 32059, 'thirty-two thousand fifty-nine');\nINSERT INTO t2 VALUES(16627, 41599, 'forty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(16628, 64331, 'sixty-four thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(16629, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16630, 11325, 'eleven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(16631, 15835, 'fifteen thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(16632, 59196, 'fifty-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(16633, 80805, 'eighty thousand eight hundred five');\nINSERT INTO t2 VALUES(16634, 42990, 'forty-two thousand nine hundred ninety');\nINSERT INTO t2 VALUES(16635, 63146, 'sixty-three thousand one hundred forty-six');\nINSERT INTO t2 VALUES(16636, 5053, 'five thousand fifty-three');\nINSERT INTO t2 VALUES(16637, 27481, 'twenty-seven thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(16638, 15489, 'fifteen thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(16639, 53241, 'fifty-three thousand two hundred forty-one');\nINSERT INTO t2 VALUES(16640, 35502, 'thirty-five thousand five hundred two');\nINSERT INTO t2 VALUES(16641, 97716, 'ninety-seven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(16642, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16643, 50003, 'fifty thousand three');\nINSERT INTO t2 VALUES(16644, 70356, 'seventy thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(16645, 99225, 'ninety-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(16646, 95867, 'ninety-five thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(16647, 25365, 'twenty-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(16648, 87161, 'eighty-seven thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(16649, 10321, 'ten thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(16650, 89143, 'eighty-nine thousand one hundred forty-three');\nINSERT INTO t2 VALUES(16651, 77604, 'seventy-seven thousand six hundred four');\nINSERT INTO t2 VALUES(16652, 76229, 'seventy-six thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(16653, 8943, 'eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(16654, 91992, 'ninety-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(16655, 60568, 'sixty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(16656, 58897, 'fifty-eight thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(16657, 50100, 'fifty thousand one hundred');\nINSERT INTO t2 VALUES(16658, 25836, 'twenty-five thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(16659, 9845, 'nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(16660, 77823, 'seventy-seven thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(16661, 95567, 'ninety-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(16662, 5665, 'five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(16663, 47644, 'forty-seven thousand six hundred forty-four');\nINSERT INTO t2 VALUES(16664, 78534, 'seventy-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(16665, 98272, 'ninety-eight thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(16666, 71964, 'seventy-one thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(16667, 56251, 'fifty-six thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(16668, 11740, 'eleven thousand seven hundred forty');\nINSERT INTO t2 VALUES(16669, 36362, 'thirty-six thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(16670, 1351, 'one thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(16671, 99147, 'ninety-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(16672, 5910, 'five thousand nine hundred ten');\nINSERT INTO t2 VALUES(16673, 20392, 'twenty thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(16674, 10597, 'ten thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(16675, 80237, 'eighty thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(16676, 22963, 'twenty-two thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(16677, 20732, 'twenty thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(16678, 29366, 'twenty-nine thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(16679, 32, 'thirty-two');\nINSERT INTO t2 VALUES(16680, 76150, 'seventy-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(16681, 10297, 'ten thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(16682, 4496, 'four thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(16683, 91830, 'ninety-one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(16684, 79050, 'seventy-nine thousand fifty');\nINSERT INTO t2 VALUES(16685, 32127, 'thirty-two thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(16686, 2648, 'two thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(16687, 16962, 'sixteen thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(16688, 94946, 'ninety-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(16689, 78936, 'seventy-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(16690, 56866, 'fifty-six thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(16691, 77976, 'seventy-seven thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(16692, 6955, 'six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(16693, 59775, 'fifty-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(16694, 26897, 'twenty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(16695, 73649, 'seventy-three thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(16696, 96955, 'ninety-six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(16697, 6287, 'six thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(16698, 50941, 'fifty thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(16699, 71342, 'seventy-one thousand three hundred forty-two');\nINSERT INTO t2 VALUES(16700, 20010, 'twenty thousand ten');\nINSERT INTO t2 VALUES(16701, 24081, 'twenty-four thousand eighty-one');\nINSERT INTO t2 VALUES(16702, 94590, 'ninety-four thousand five hundred ninety');\nINSERT INTO t2 VALUES(16703, 69908, 'sixty-nine thousand nine hundred eight');\nINSERT INTO t2 VALUES(16704, 46576, 'forty-six thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(16705, 89833, 'eighty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(16706, 13367, 'thirteen thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(16707, 49059, 'forty-nine thousand fifty-nine');\nINSERT INTO t2 VALUES(16708, 3060, 'three thousand sixty');\nINSERT INTO t2 VALUES(16709, 86590, 'eighty-six thousand five hundred ninety');\nINSERT INTO t2 VALUES(16710, 48071, 'forty-eight thousand seventy-one');\nINSERT INTO t2 VALUES(16711, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(16712, 57486, 'fifty-seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(16713, 31330, 'thirty-one thousand three hundred thirty');\nINSERT INTO t2 VALUES(16714, 23312, 'twenty-three thousand three hundred twelve');\nINSERT INTO t2 VALUES(16715, 47545, 'forty-seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(16716, 33706, 'thirty-three thousand seven hundred six');\nINSERT INTO t2 VALUES(16717, 85785, 'eighty-five thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(16718, 13463, 'thirteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(16719, 33548, 'thirty-three thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(16720, 48986, 'forty-eight thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(16721, 63924, 'sixty-three thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(16722, 40236, 'forty thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(16723, 11759, 'eleven thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(16724, 54573, 'fifty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(16725, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(16726, 3023, 'three thousand twenty-three');\nINSERT INTO t2 VALUES(16727, 26456, 'twenty-six thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(16728, 73494, 'seventy-three thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(16729, 85219, 'eighty-five thousand two hundred nineteen');\nINSERT INTO t2 VALUES(16730, 20045, 'twenty thousand forty-five');\nINSERT INTO t2 VALUES(16731, 6444, 'six thousand four hundred forty-four');\nINSERT INTO t2 VALUES(16732, 53572, 'fifty-three thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16733, 224, 'two hundred twenty-four');\nINSERT INTO t2 VALUES(16734, 80802, 'eighty thousand eight hundred two');\nINSERT INTO t2 VALUES(16735, 50393, 'fifty thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(16736, 72125, 'seventy-two thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(16737, 95693, 'ninety-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(16738, 90252, 'ninety thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(16739, 94316, 'ninety-four thousand three hundred sixteen');\nINSERT INTO t2 VALUES(16740, 96754, 'ninety-six thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(16741, 96154, 'ninety-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(16742, 82511, 'eighty-two thousand five hundred eleven');\nINSERT INTO t2 VALUES(16743, 35499, 'thirty-five thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(16744, 69425, 'sixty-nine thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(16745, 82509, 'eighty-two thousand five hundred nine');\nINSERT INTO t2 VALUES(16746, 66258, 'sixty-six thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(16747, 66468, 'sixty-six thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(16748, 758, 'seven hundred fifty-eight');\nINSERT INTO t2 VALUES(16749, 96114, 'ninety-six thousand one hundred fourteen');\nINSERT INTO t2 VALUES(16750, 55282, 'fifty-five thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(16751, 21404, 'twenty-one thousand four hundred four');\nINSERT INTO t2 VALUES(16752, 31650, 'thirty-one thousand six hundred fifty');\nINSERT INTO t2 VALUES(16753, 89569, 'eighty-nine thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(16754, 17534, 'seventeen thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(16755, 71289, 'seventy-one thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(16756, 79638, 'seventy-nine thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(16757, 26632, 'twenty-six thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(16758, 75796, 'seventy-five thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(16759, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(16760, 895, 'eight hundred ninety-five');\nINSERT INTO t2 VALUES(16761, 74284, 'seventy-four thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(16762, 5200, 'five thousand two hundred');\nINSERT INTO t2 VALUES(16763, 28231, 'twenty-eight thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(16764, 50740, 'fifty thousand seven hundred forty');\nINSERT INTO t2 VALUES(16765, 38771, 'thirty-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(16766, 21789, 'twenty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(16767, 29552, 'twenty-nine thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(16768, 34713, 'thirty-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(16769, 29363, 'twenty-nine thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(16770, 35504, 'thirty-five thousand five hundred four');\nINSERT INTO t2 VALUES(16771, 36599, 'thirty-six thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(16772, 97777, 'ninety-seven thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(16773, 38018, 'thirty-eight thousand eighteen');\nINSERT INTO t2 VALUES(16774, 26574, 'twenty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(16775, 93001, 'ninety-three thousand one');\nINSERT INTO t2 VALUES(16776, 8248, 'eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(16777, 48301, 'forty-eight thousand three hundred one');\nINSERT INTO t2 VALUES(16778, 92101, 'ninety-two thousand one hundred one');\nINSERT INTO t2 VALUES(16779, 59231, 'fifty-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(16780, 73737, 'seventy-three thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(16781, 20087, 'twenty thousand eighty-seven');\nINSERT INTO t2 VALUES(16782, 85653, 'eighty-five thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(16783, 98769, 'ninety-eight thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(16784, 99625, 'ninety-nine thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(16785, 79337, 'seventy-nine thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(16786, 88711, 'eighty-eight thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16787, 9546, 'nine thousand five hundred forty-six');\nINSERT INTO t2 VALUES(16788, 91864, 'ninety-one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(16789, 19490, 'nineteen thousand four hundred ninety');\nINSERT INTO t2 VALUES(16790, 17966, 'seventeen thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(16791, 98496, 'ninety-eight thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(16792, 59780, 'fifty-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(16793, 86695, 'eighty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(16794, 43773, 'forty-three thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(16795, 93708, 'ninety-three thousand seven hundred eight');\nINSERT INTO t2 VALUES(16796, 51788, 'fifty-one thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(16797, 22670, 'twenty-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(16798, 3298, 'three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(16799, 56189, 'fifty-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(16800, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(16801, 83858, 'eighty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(16802, 63661, 'sixty-three thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(16803, 54273, 'fifty-four thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16804, 69968, 'sixty-nine thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(16805, 93309, 'ninety-three thousand three hundred nine');\nINSERT INTO t2 VALUES(16806, 36574, 'thirty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(16807, 69948, 'sixty-nine thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(16808, 53272, 'fifty-three thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(16809, 99938, 'ninety-nine thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(16810, 39910, 'thirty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(16811, 78303, 'seventy-eight thousand three hundred three');\nINSERT INTO t2 VALUES(16812, 92131, 'ninety-two thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(16813, 30429, 'thirty thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(16814, 5163, 'five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(16815, 83452, 'eighty-three thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(16816, 67769, 'sixty-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(16817, 4818, 'four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(16818, 21035, 'twenty-one thousand thirty-five');\nINSERT INTO t2 VALUES(16819, 7568, 'seven thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(16820, 50553, 'fifty thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(16821, 46052, 'forty-six thousand fifty-two');\nINSERT INTO t2 VALUES(16822, 92711, 'ninety-two thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16823, 56309, 'fifty-six thousand three hundred nine');\nINSERT INTO t2 VALUES(16824, 83852, 'eighty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(16825, 77424, 'seventy-seven thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(16826, 71271, 'seventy-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(16827, 46684, 'forty-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(16828, 80565, 'eighty thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(16829, 53575, 'fifty-three thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(16830, 25129, 'twenty-five thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(16831, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(16832, 81577, 'eighty-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(16833, 78030, 'seventy-eight thousand thirty');\nINSERT INTO t2 VALUES(16834, 60487, 'sixty thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(16835, 38143, 'thirty-eight thousand one hundred forty-three');\nINSERT INTO t2 VALUES(16836, 26690, 'twenty-six thousand six hundred ninety');\nINSERT INTO t2 VALUES(16837, 20257, 'twenty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(16838, 51050, 'fifty-one thousand fifty');\nINSERT INTO t2 VALUES(16839, 84275, 'eighty-four thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(16840, 9355, 'nine thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(16841, 79084, 'seventy-nine thousand eighty-four');\nINSERT INTO t2 VALUES(16842, 48511, 'forty-eight thousand five hundred eleven');\nINSERT INTO t2 VALUES(16843, 38572, 'thirty-eight thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(16844, 17542, 'seventeen thousand five hundred forty-two');\nINSERT INTO t2 VALUES(16845, 84312, 'eighty-four thousand three hundred twelve');\nINSERT INTO t2 VALUES(16846, 84045, 'eighty-four thousand forty-five');\nINSERT INTO t2 VALUES(16847, 34557, 'thirty-four thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(16848, 43150, 'forty-three thousand one hundred fifty');\nINSERT INTO t2 VALUES(16849, 30884, 'thirty thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(16850, 79738, 'seventy-nine thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(16851, 59708, 'fifty-nine thousand seven hundred eight');\nINSERT INTO t2 VALUES(16852, 79036, 'seventy-nine thousand thirty-six');\nINSERT INTO t2 VALUES(16853, 7889, 'seven thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(16854, 59194, 'fifty-nine thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(16855, 59006, 'fifty-nine thousand six');\nINSERT INTO t2 VALUES(16856, 61520, 'sixty-one thousand five hundred twenty');\nINSERT INTO t2 VALUES(16857, 66134, 'sixty-six thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(16858, 55137, 'fifty-five thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(16859, 78653, 'seventy-eight thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(16860, 144, 'one hundred forty-four');\nINSERT INTO t2 VALUES(16861, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t2 VALUES(16862, 17291, 'seventeen thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(16863, 63251, 'sixty-three thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(16864, 50649, 'fifty thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(16865, 58273, 'fifty-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16866, 80823, 'eighty thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(16867, 21500, 'twenty-one thousand five hundred');\nINSERT INTO t2 VALUES(16868, 69765, 'sixty-nine thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(16869, 96778, 'ninety-six thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(16870, 24095, 'twenty-four thousand ninety-five');\nINSERT INTO t2 VALUES(16871, 2249, 'two thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(16872, 57226, 'fifty-seven thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(16873, 11711, 'eleven thousand seven hundred eleven');\nINSERT INTO t2 VALUES(16874, 77965, 'seventy-seven thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(16875, 50856, 'fifty thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(16876, 81998, 'eighty-one thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(16877, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(16878, 55263, 'fifty-five thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(16879, 19610, 'nineteen thousand six hundred ten');\nINSERT INTO t2 VALUES(16880, 8199, 'eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(16881, 88536, 'eighty-eight thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(16882, 537, 'five hundred thirty-seven');\nINSERT INTO t2 VALUES(16883, 84043, 'eighty-four thousand forty-three');\nINSERT INTO t2 VALUES(16884, 72479, 'seventy-two thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(16885, 99147, 'ninety-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(16886, 80163, 'eighty thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(16887, 84818, 'eighty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(16888, 26336, 'twenty-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(16889, 13715, 'thirteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(16890, 46663, 'forty-six thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(16891, 77217, 'seventy-seven thousand two hundred seventeen');\nINSERT INTO t2 VALUES(16892, 32708, 'thirty-two thousand seven hundred eight');\nINSERT INTO t2 VALUES(16893, 52817, 'fifty-two thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(16894, 3123, 'three thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16895, 28899, 'twenty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(16896, 20344, 'twenty thousand three hundred forty-four');\nINSERT INTO t2 VALUES(16897, 23896, 'twenty-three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(16898, 41436, 'forty-one thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(16899, 73642, 'seventy-three thousand six hundred forty-two');\nINSERT INTO t2 VALUES(16900, 20949, 'twenty thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(16901, 82973, 'eighty-two thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(16902, 54094, 'fifty-four thousand ninety-four');\nINSERT INTO t2 VALUES(16903, 61723, 'sixty-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(16904, 53202, 'fifty-three thousand two hundred two');\nINSERT INTO t2 VALUES(16905, 32281, 'thirty-two thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(16906, 18216, 'eighteen thousand two hundred sixteen');\nINSERT INTO t2 VALUES(16907, 72970, 'seventy-two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(16908, 39624, 'thirty-nine thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(16909, 44485, 'forty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(16910, 73003, 'seventy-three thousand three');\nINSERT INTO t2 VALUES(16911, 38199, 'thirty-eight thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(16912, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(16913, 35176, 'thirty-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(16914, 86845, 'eighty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(16915, 75568, 'seventy-five thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(16916, 51429, 'fifty-one thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(16917, 83650, 'eighty-three thousand six hundred fifty');\nINSERT INTO t2 VALUES(16918, 62219, 'sixty-two thousand two hundred nineteen');\nINSERT INTO t2 VALUES(16919, 43170, 'forty-three thousand one hundred seventy');\nINSERT INTO t2 VALUES(16920, 66911, 'sixty-six thousand nine hundred eleven');\nINSERT INTO t2 VALUES(16921, 73434, 'seventy-three thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(16922, 69968, 'sixty-nine thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(16923, 74481, 'seventy-four thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(16924, 71262, 'seventy-one thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(16925, 92144, 'ninety-two thousand one hundred forty-four');\nINSERT INTO t2 VALUES(16926, 43944, 'forty-three thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(16927, 40176, 'forty thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(16928, 21060, 'twenty-one thousand sixty');\nINSERT INTO t2 VALUES(16929, 64531, 'sixty-four thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(16930, 59645, 'fifty-nine thousand six hundred forty-five');\nINSERT INTO t2 VALUES(16931, 82117, 'eighty-two thousand one hundred seventeen');\nINSERT INTO t2 VALUES(16932, 17350, 'seventeen thousand three hundred fifty');\nINSERT INTO t2 VALUES(16933, 26518, 'twenty-six thousand five hundred eighteen');\nINSERT INTO t2 VALUES(16934, 72553, 'seventy-two thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(16935, 75415, 'seventy-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(16936, 91622, 'ninety-one thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(16937, 66857, 'sixty-six thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(16938, 21786, 'twenty-one thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(16939, 47193, 'forty-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(16940, 64820, 'sixty-four thousand eight hundred twenty');\nINSERT INTO t2 VALUES(16941, 54833, 'fifty-four thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(16942, 1033, 'one thousand thirty-three');\nINSERT INTO t2 VALUES(16943, 50329, 'fifty thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(16944, 40680, 'forty thousand six hundred eighty');\nINSERT INTO t2 VALUES(16945, 79601, 'seventy-nine thousand six hundred one');\nINSERT INTO t2 VALUES(16946, 50810, 'fifty thousand eight hundred ten');\nINSERT INTO t2 VALUES(16947, 48369, 'forty-eight thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(16948, 64124, 'sixty-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(16949, 96680, 'ninety-six thousand six hundred eighty');\nINSERT INTO t2 VALUES(16950, 37033, 'thirty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(16951, 80560, 'eighty thousand five hundred sixty');\nINSERT INTO t2 VALUES(16952, 80273, 'eighty thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(16953, 40447, 'forty thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(16954, 26470, 'twenty-six thousand four hundred seventy');\nINSERT INTO t2 VALUES(16955, 69188, 'sixty-nine thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(16956, 91406, 'ninety-one thousand four hundred six');\nINSERT INTO t2 VALUES(16957, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(16958, 96640, 'ninety-six thousand six hundred forty');\nINSERT INTO t2 VALUES(16959, 95479, 'ninety-five thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(16960, 84319, 'eighty-four thousand three hundred nineteen');\nINSERT INTO t2 VALUES(16961, 80870, 'eighty thousand eight hundred seventy');\nINSERT INTO t2 VALUES(16962, 5162, 'five thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(16963, 30566, 'thirty thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(16964, 9985, 'nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(16965, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t2 VALUES(16966, 42246, 'forty-two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(16967, 7420, 'seven thousand four hundred twenty');\nINSERT INTO t2 VALUES(16968, 75893, 'seventy-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(16969, 42667, 'forty-two thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(16970, 1333, 'one thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(16971, 4574, 'four thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(16972, 84825, 'eighty-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(16973, 68546, 'sixty-eight thousand five hundred forty-six');\nINSERT INTO t2 VALUES(16974, 91310, 'ninety-one thousand three hundred ten');\nINSERT INTO t2 VALUES(16975, 94755, 'ninety-four thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(16976, 63474, 'sixty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(16977, 55404, 'fifty-five thousand four hundred four');\nINSERT INTO t2 VALUES(16978, 67332, 'sixty-seven thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(16979, 51974, 'fifty-one thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(16980, 4123, 'four thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(16981, 97780, 'ninety-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(16982, 7005, 'seven thousand five');\nINSERT INTO t2 VALUES(16983, 95316, 'ninety-five thousand three hundred sixteen');\nINSERT INTO t2 VALUES(16984, 21480, 'twenty-one thousand four hundred eighty');\nINSERT INTO t2 VALUES(16985, 11413, 'eleven thousand four hundred thirteen');\nINSERT INTO t2 VALUES(16986, 88116, 'eighty-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(16987, 40724, 'forty thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(16988, 66342, 'sixty-six thousand three hundred forty-two');\nINSERT INTO t2 VALUES(16989, 79624, 'seventy-nine thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(16990, 65664, 'sixty-five thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(16991, 89811, 'eighty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(16992, 85186, 'eighty-five thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(16993, 70255, 'seventy thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(16994, 24962, 'twenty-four thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(16995, 700, 'seven hundred');\nINSERT INTO t2 VALUES(16996, 94613, 'ninety-four thousand six hundred thirteen');\nINSERT INTO t2 VALUES(16997, 55395, 'fifty-five thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(16998, 41440, 'forty-one thousand four hundred forty');\nINSERT INTO t2 VALUES(16999, 83895, 'eighty-three thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(17000, 76898, 'seventy-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(17001, 65305, 'sixty-five thousand three hundred five');\nINSERT INTO t2 VALUES(17002, 21110, 'twenty-one thousand one hundred ten');\nINSERT INTO t2 VALUES(17003, 4343, 'four thousand three hundred forty-three');\nINSERT INTO t2 VALUES(17004, 78814, 'seventy-eight thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(17005, 34056, 'thirty-four thousand fifty-six');\nINSERT INTO t2 VALUES(17006, 17606, 'seventeen thousand six hundred six');\nINSERT INTO t2 VALUES(17007, 54536, 'fifty-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(17008, 3280, 'three thousand two hundred eighty');\nINSERT INTO t2 VALUES(17009, 33053, 'thirty-three thousand fifty-three');\nINSERT INTO t2 VALUES(17010, 73540, 'seventy-three thousand five hundred forty');\nINSERT INTO t2 VALUES(17011, 15375, 'fifteen thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(17012, 46052, 'forty-six thousand fifty-two');\nINSERT INTO t2 VALUES(17013, 76222, 'seventy-six thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(17014, 90058, 'ninety thousand fifty-eight');\nINSERT INTO t2 VALUES(17015, 30522, 'thirty thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(17016, 58042, 'fifty-eight thousand forty-two');\nINSERT INTO t2 VALUES(17017, 71365, 'seventy-one thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17018, 81584, 'eighty-one thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(17019, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(17020, 901, 'nine hundred one');\nINSERT INTO t2 VALUES(17021, 92202, 'ninety-two thousand two hundred two');\nINSERT INTO t2 VALUES(17022, 68063, 'sixty-eight thousand sixty-three');\nINSERT INTO t2 VALUES(17023, 15472, 'fifteen thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(17024, 92864, 'ninety-two thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(17025, 85073, 'eighty-five thousand seventy-three');\nINSERT INTO t2 VALUES(17026, 61548, 'sixty-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17027, 88037, 'eighty-eight thousand thirty-seven');\nINSERT INTO t2 VALUES(17028, 35407, 'thirty-five thousand four hundred seven');\nINSERT INTO t2 VALUES(17029, 58611, 'fifty-eight thousand six hundred eleven');\nINSERT INTO t2 VALUES(17030, 51455, 'fifty-one thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(17031, 97984, 'ninety-seven thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(17032, 83554, 'eighty-three thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(17033, 31688, 'thirty-one thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(17034, 57555, 'fifty-seven thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(17035, 54533, 'fifty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(17036, 57271, 'fifty-seven thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(17037, 18957, 'eighteen thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(17038, 72477, 'seventy-two thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(17039, 30217, 'thirty thousand two hundred seventeen');\nINSERT INTO t2 VALUES(17040, 67737, 'sixty-seven thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(17041, 31267, 'thirty-one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17042, 28796, 'twenty-eight thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(17043, 56667, 'fifty-six thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(17044, 39204, 'thirty-nine thousand two hundred four');\nINSERT INTO t2 VALUES(17045, 11674, 'eleven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(17046, 27446, 'twenty-seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(17047, 41105, 'forty-one thousand one hundred five');\nINSERT INTO t2 VALUES(17048, 98525, 'ninety-eight thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(17049, 89806, 'eighty-nine thousand eight hundred six');\nINSERT INTO t2 VALUES(17050, 46997, 'forty-six thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(17051, 87564, 'eighty-seven thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(17052, 73223, 'seventy-three thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(17053, 31891, 'thirty-one thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(17054, 66762, 'sixty-six thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(17055, 30880, 'thirty thousand eight hundred eighty');\nINSERT INTO t2 VALUES(17056, 76386, 'seventy-six thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(17057, 25093, 'twenty-five thousand ninety-three');\nINSERT INTO t2 VALUES(17058, 94667, 'ninety-four thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(17059, 8108, 'eight thousand one hundred eight');\nINSERT INTO t2 VALUES(17060, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(17061, 66480, 'sixty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(17062, 66167, 'sixty-six thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(17063, 74152, 'seventy-four thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(17064, 863, 'eight hundred sixty-three');\nINSERT INTO t2 VALUES(17065, 638, 'six hundred thirty-eight');\nINSERT INTO t2 VALUES(17066, 7758, 'seven thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(17067, 41152, 'forty-one thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(17068, 52229, 'fifty-two thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(17069, 6799, 'six thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(17070, 26714, 'twenty-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(17071, 45046, 'forty-five thousand forty-six');\nINSERT INTO t2 VALUES(17072, 3503, 'three thousand five hundred three');\nINSERT INTO t2 VALUES(17073, 58650, 'fifty-eight thousand six hundred fifty');\nINSERT INTO t2 VALUES(17074, 81376, 'eighty-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(17075, 33971, 'thirty-three thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(17076, 8329, 'eight thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(17077, 87736, 'eighty-seven thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(17078, 54033, 'fifty-four thousand thirty-three');\nINSERT INTO t2 VALUES(17079, 46063, 'forty-six thousand sixty-three');\nINSERT INTO t2 VALUES(17080, 30563, 'thirty thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(17081, 56526, 'fifty-six thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(17082, 62197, 'sixty-two thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(17083, 84182, 'eighty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(17084, 89052, 'eighty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(17085, 56765, 'fifty-six thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(17086, 73509, 'seventy-three thousand five hundred nine');\nINSERT INTO t2 VALUES(17087, 86672, 'eighty-six thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(17088, 91559, 'ninety-one thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(17089, 29836, 'twenty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(17090, 81734, 'eighty-one thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17091, 7602, 'seven thousand six hundred two');\nINSERT INTO t2 VALUES(17092, 19578, 'nineteen thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(17093, 67603, 'sixty-seven thousand six hundred three');\nINSERT INTO t2 VALUES(17094, 86777, 'eighty-six thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(17095, 68304, 'sixty-eight thousand three hundred four');\nINSERT INTO t2 VALUES(17096, 74266, 'seventy-four thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(17097, 77659, 'seventy-seven thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(17098, 84722, 'eighty-four thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(17099, 90542, 'ninety thousand five hundred forty-two');\nINSERT INTO t2 VALUES(17100, 78766, 'seventy-eight thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(17101, 34798, 'thirty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(17102, 34228, 'thirty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(17103, 54264, 'fifty-four thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(17104, 46084, 'forty-six thousand eighty-four');\nINSERT INTO t2 VALUES(17105, 55182, 'fifty-five thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(17106, 32264, 'thirty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(17107, 48309, 'forty-eight thousand three hundred nine');\nINSERT INTO t2 VALUES(17108, 36498, 'thirty-six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(17109, 43392, 'forty-three thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(17110, 62051, 'sixty-two thousand fifty-one');\nINSERT INTO t2 VALUES(17111, 45687, 'forty-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(17112, 68579, 'sixty-eight thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(17113, 93920, 'ninety-three thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17114, 13601, 'thirteen thousand six hundred one');\nINSERT INTO t2 VALUES(17115, 82078, 'eighty-two thousand seventy-eight');\nINSERT INTO t2 VALUES(17116, 69420, 'sixty-nine thousand four hundred twenty');\nINSERT INTO t2 VALUES(17117, 76797, 'seventy-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(17118, 35405, 'thirty-five thousand four hundred five');\nINSERT INTO t2 VALUES(17119, 63872, 'sixty-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(17120, 91641, 'ninety-one thousand six hundred forty-one');\nINSERT INTO t2 VALUES(17121, 70224, 'seventy thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(17122, 72907, 'seventy-two thousand nine hundred seven');\nINSERT INTO t2 VALUES(17123, 8900, 'eight thousand nine hundred');\nINSERT INTO t2 VALUES(17124, 43506, 'forty-three thousand five hundred six');\nINSERT INTO t2 VALUES(17125, 88184, 'eighty-eight thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(17126, 14156, 'fourteen thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(17127, 83988, 'eighty-three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(17128, 95863, 'ninety-five thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(17129, 85501, 'eighty-five thousand five hundred one');\nINSERT INTO t2 VALUES(17130, 25377, 'twenty-five thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(17131, 42550, 'forty-two thousand five hundred fifty');\nINSERT INTO t2 VALUES(17132, 23031, 'twenty-three thousand thirty-one');\nINSERT INTO t2 VALUES(17133, 8499, 'eight thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(17134, 88478, 'eighty-eight thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(17135, 27972, 'twenty-seven thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(17136, 95246, 'ninety-five thousand two hundred forty-six');\nINSERT INTO t2 VALUES(17137, 32861, 'thirty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(17138, 81529, 'eighty-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17139, 84892, 'eighty-four thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(17140, 86423, 'eighty-six thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(17141, 39653, 'thirty-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(17142, 12833, 'twelve thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(17143, 3016, 'three thousand sixteen');\nINSERT INTO t2 VALUES(17144, 91532, 'ninety-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(17145, 98187, 'ninety-eight thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(17146, 4900, 'four thousand nine hundred');\nINSERT INTO t2 VALUES(17147, 22506, 'twenty-two thousand five hundred six');\nINSERT INTO t2 VALUES(17148, 42714, 'forty-two thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(17149, 12858, 'twelve thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(17150, 86395, 'eighty-six thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(17151, 75314, 'seventy-five thousand three hundred fourteen');\nINSERT INTO t2 VALUES(17152, 18464, 'eighteen thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(17153, 16178, 'sixteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(17154, 55292, 'fifty-five thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(17155, 74300, 'seventy-four thousand three hundred');\nINSERT INTO t2 VALUES(17156, 14345, 'fourteen thousand three hundred forty-five');\nINSERT INTO t2 VALUES(17157, 79716, 'seventy-nine thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(17158, 56450, 'fifty-six thousand four hundred fifty');\nINSERT INTO t2 VALUES(17159, 70772, 'seventy thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(17160, 1548, 'one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17161, 44228, 'forty-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(17162, 93200, 'ninety-three thousand two hundred');\nINSERT INTO t2 VALUES(17163, 2014, 'two thousand fourteen');\nINSERT INTO t2 VALUES(17164, 12596, 'twelve thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(17165, 83499, 'eighty-three thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(17166, 12749, 'twelve thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(17167, 76654, 'seventy-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(17168, 15145, 'fifteen thousand one hundred forty-five');\nINSERT INTO t2 VALUES(17169, 4215, 'four thousand two hundred fifteen');\nINSERT INTO t2 VALUES(17170, 33778, 'thirty-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(17171, 49717, 'forty-nine thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(17172, 68017, 'sixty-eight thousand seventeen');\nINSERT INTO t2 VALUES(17173, 64708, 'sixty-four thousand seven hundred eight');\nINSERT INTO t2 VALUES(17174, 41002, 'forty-one thousand two');\nINSERT INTO t2 VALUES(17175, 62181, 'sixty-two thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(17176, 92058, 'ninety-two thousand fifty-eight');\nINSERT INTO t2 VALUES(17177, 4886, 'four thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(17178, 64723, 'sixty-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(17179, 87866, 'eighty-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(17180, 90830, 'ninety thousand eight hundred thirty');\nINSERT INTO t2 VALUES(17181, 211, 'two hundred eleven');\nINSERT INTO t2 VALUES(17182, 84668, 'eighty-four thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(17183, 69983, 'sixty-nine thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(17184, 53817, 'fifty-three thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(17185, 41119, 'forty-one thousand one hundred nineteen');\nINSERT INTO t2 VALUES(17186, 97739, 'ninety-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(17187, 5976, 'five thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17188, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(17189, 83498, 'eighty-three thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(17190, 52981, 'fifty-two thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(17191, 82111, 'eighty-two thousand one hundred eleven');\nINSERT INTO t2 VALUES(17192, 69991, 'sixty-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(17193, 15580, 'fifteen thousand five hundred eighty');\nINSERT INTO t2 VALUES(17194, 34385, 'thirty-four thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(17195, 11275, 'eleven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17196, 98676, 'ninety-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(17197, 10751, 'ten thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(17198, 93225, 'ninety-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(17199, 83639, 'eighty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(17200, 6676, 'six thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(17201, 66995, 'sixty-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(17202, 61324, 'sixty-one thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(17203, 80165, 'eighty thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(17204, 57070, 'fifty-seven thousand seventy');\nINSERT INTO t2 VALUES(17205, 21613, 'twenty-one thousand six hundred thirteen');\nINSERT INTO t2 VALUES(17206, 65455, 'sixty-five thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(17207, 68220, 'sixty-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(17208, 53120, 'fifty-three thousand one hundred twenty');\nINSERT INTO t2 VALUES(17209, 77174, 'seventy-seven thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(17210, 12018, 'twelve thousand eighteen');\nINSERT INTO t2 VALUES(17211, 25315, 'twenty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(17212, 80467, 'eighty thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(17213, 57054, 'fifty-seven thousand fifty-four');\nINSERT INTO t2 VALUES(17214, 74832, 'seventy-four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(17215, 37741, 'thirty-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(17216, 25135, 'twenty-five thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(17217, 69785, 'sixty-nine thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(17218, 99936, 'ninety-nine thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(17219, 14674, 'fourteen thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(17220, 8674, 'eight thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(17221, 77319, 'seventy-seven thousand three hundred nineteen');\nINSERT INTO t2 VALUES(17222, 93747, 'ninety-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(17223, 74611, 'seventy-four thousand six hundred eleven');\nINSERT INTO t2 VALUES(17224, 4687, 'four thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(17225, 54571, 'fifty-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(17226, 73353, 'seventy-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(17227, 20275, 'twenty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17228, 13140, 'thirteen thousand one hundred forty');\nINSERT INTO t2 VALUES(17229, 89521, 'eighty-nine thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(17230, 29135, 'twenty-nine thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(17231, 38123, 'thirty-eight thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(17232, 68568, 'sixty-eight thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(17233, 42529, 'forty-two thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17234, 22732, 'twenty-two thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(17235, 42081, 'forty-two thousand eighty-one');\nINSERT INTO t2 VALUES(17236, 27247, 'twenty-seven thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(17237, 85138, 'eighty-five thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(17238, 86157, 'eighty-six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(17239, 41461, 'forty-one thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(17240, 34570, 'thirty-four thousand five hundred seventy');\nINSERT INTO t2 VALUES(17241, 52775, 'fifty-two thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(17242, 25624, 'twenty-five thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(17243, 4443, 'four thousand four hundred forty-three');\nINSERT INTO t2 VALUES(17244, 43970, 'forty-three thousand nine hundred seventy');\nINSERT INTO t2 VALUES(17245, 76497, 'seventy-six thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(17246, 75163, 'seventy-five thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(17247, 68324, 'sixty-eight thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(17248, 32366, 'thirty-two thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(17249, 46515, 'forty-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(17250, 72462, 'seventy-two thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(17251, 73690, 'seventy-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(17252, 78971, 'seventy-eight thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(17253, 53915, 'fifty-three thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(17254, 45379, 'forty-five thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(17255, 8151, 'eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(17256, 74124, 'seventy-four thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(17257, 42208, 'forty-two thousand two hundred eight');\nINSERT INTO t2 VALUES(17258, 64365, 'sixty-four thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17259, 62381, 'sixty-two thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(17260, 6153, 'six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(17261, 96485, 'ninety-six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(17262, 78041, 'seventy-eight thousand forty-one');\nINSERT INTO t2 VALUES(17263, 64751, 'sixty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(17264, 16555, 'sixteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(17265, 59323, 'fifty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(17266, 83636, 'eighty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(17267, 97504, 'ninety-seven thousand five hundred four');\nINSERT INTO t2 VALUES(17268, 15840, 'fifteen thousand eight hundred forty');\nINSERT INTO t2 VALUES(17269, 95684, 'ninety-five thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(17270, 64917, 'sixty-four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(17271, 51726, 'fifty-one thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(17272, 41265, 'forty-one thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(17273, 86079, 'eighty-six thousand seventy-nine');\nINSERT INTO t2 VALUES(17274, 19818, 'nineteen thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(17275, 3601, 'three thousand six hundred one');\nINSERT INTO t2 VALUES(17276, 63636, 'sixty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(17277, 98518, 'ninety-eight thousand five hundred eighteen');\nINSERT INTO t2 VALUES(17278, 99102, 'ninety-nine thousand one hundred two');\nINSERT INTO t2 VALUES(17279, 79815, 'seventy-nine thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(17280, 92037, 'ninety-two thousand thirty-seven');\nINSERT INTO t2 VALUES(17281, 76336, 'seventy-six thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(17282, 54144, 'fifty-four thousand one hundred forty-four');\nINSERT INTO t2 VALUES(17283, 68520, 'sixty-eight thousand five hundred twenty');\nINSERT INTO t2 VALUES(17284, 97240, 'ninety-seven thousand two hundred forty');\nINSERT INTO t2 VALUES(17285, 69414, 'sixty-nine thousand four hundred fourteen');\nINSERT INTO t2 VALUES(17286, 73228, 'seventy-three thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(17287, 47121, 'forty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(17288, 25047, 'twenty-five thousand forty-seven');\nINSERT INTO t2 VALUES(17289, 74276, 'seventy-four thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(17290, 78508, 'seventy-eight thousand five hundred eight');\nINSERT INTO t2 VALUES(17291, 18493, 'eighteen thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(17292, 38166, 'thirty-eight thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(17293, 4325, 'four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(17294, 29170, 'twenty-nine thousand one hundred seventy');\nINSERT INTO t2 VALUES(17295, 99618, 'ninety-nine thousand six hundred eighteen');\nINSERT INTO t2 VALUES(17296, 12260, 'twelve thousand two hundred sixty');\nINSERT INTO t2 VALUES(17297, 78527, 'seventy-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17298, 77638, 'seventy-seven thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(17299, 51436, 'fifty-one thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(17300, 13708, 'thirteen thousand seven hundred eight');\nINSERT INTO t2 VALUES(17301, 80836, 'eighty thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(17302, 60009, 'sixty thousand nine');\nINSERT INTO t2 VALUES(17303, 78734, 'seventy-eight thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17304, 21329, 'twenty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(17305, 2069, 'two thousand sixty-nine');\nINSERT INTO t2 VALUES(17306, 74423, 'seventy-four thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(17307, 17643, 'seventeen thousand six hundred forty-three');\nINSERT INTO t2 VALUES(17308, 19965, 'nineteen thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(17309, 97627, 'ninety-seven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(17310, 65989, 'sixty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(17311, 23138, 'twenty-three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(17312, 9974, 'nine thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(17313, 33534, 'thirty-three thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(17314, 33175, 'thirty-three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(17315, 56319, 'fifty-six thousand three hundred nineteen');\nINSERT INTO t2 VALUES(17316, 96535, 'ninety-six thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(17317, 82944, 'eighty-two thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(17318, 98273, 'ninety-eight thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(17319, 19810, 'nineteen thousand eight hundred ten');\nINSERT INTO t2 VALUES(17320, 2565, 'two thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(17321, 30171, 'thirty thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(17322, 33775, 'thirty-three thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(17323, 29606, 'twenty-nine thousand six hundred six');\nINSERT INTO t2 VALUES(17324, 18029, 'eighteen thousand twenty-nine');\nINSERT INTO t2 VALUES(17325, 3869, 'three thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(17326, 90548, 'ninety thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17327, 71791, 'seventy-one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(17328, 5031, 'five thousand thirty-one');\nINSERT INTO t2 VALUES(17329, 53723, 'fifty-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(17330, 46932, 'forty-six thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(17331, 95528, 'ninety-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(17332, 93529, 'ninety-three thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17333, 7926, 'seven thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(17334, 81680, 'eighty-one thousand six hundred eighty');\nINSERT INTO t2 VALUES(17335, 22336, 'twenty-two thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(17336, 21718, 'twenty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(17337, 70106, 'seventy thousand one hundred six');\nINSERT INTO t2 VALUES(17338, 45527, 'forty-five thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17339, 22561, 'twenty-two thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(17340, 688, 'six hundred eighty-eight');\nINSERT INTO t2 VALUES(17341, 52976, 'fifty-two thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17342, 90461, 'ninety thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(17343, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(17344, 70554, 'seventy thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(17345, 41115, 'forty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17346, 98998, 'ninety-eight thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(17347, 78136, 'seventy-eight thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(17348, 52418, 'fifty-two thousand four hundred eighteen');\nINSERT INTO t2 VALUES(17349, 55026, 'fifty-five thousand twenty-six');\nINSERT INTO t2 VALUES(17350, 93818, 'ninety-three thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(17351, 82360, 'eighty-two thousand three hundred sixty');\nINSERT INTO t2 VALUES(17352, 81551, 'eighty-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(17353, 55924, 'fifty-five thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(17354, 19569, 'nineteen thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(17355, 1090, 'one thousand ninety');\nINSERT INTO t2 VALUES(17356, 22790, 'twenty-two thousand seven hundred ninety');\nINSERT INTO t2 VALUES(17357, 3355, 'three thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(17358, 74313, 'seventy-four thousand three hundred thirteen');\nINSERT INTO t2 VALUES(17359, 87548, 'eighty-seven thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17360, 40000, 'forty thousand');\nINSERT INTO t2 VALUES(17361, 81975, 'eighty-one thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(17362, 59330, 'fifty-nine thousand three hundred thirty');\nINSERT INTO t2 VALUES(17363, 17792, 'seventeen thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(17364, 50008, 'fifty thousand eight');\nINSERT INTO t2 VALUES(17365, 28168, 'twenty-eight thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(17366, 87561, 'eighty-seven thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(17367, 53163, 'fifty-three thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(17368, 16819, 'sixteen thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(17369, 41086, 'forty-one thousand eighty-six');\nINSERT INTO t2 VALUES(17370, 30976, 'thirty thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17371, 39645, 'thirty-nine thousand six hundred forty-five');\nINSERT INTO t2 VALUES(17372, 4872, 'four thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(17373, 21678, 'twenty-one thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(17374, 4820, 'four thousand eight hundred twenty');\nINSERT INTO t2 VALUES(17375, 90094, 'ninety thousand ninety-four');\nINSERT INTO t2 VALUES(17376, 23632, 'twenty-three thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(17377, 25243, 'twenty-five thousand two hundred forty-three');\nINSERT INTO t2 VALUES(17378, 73537, 'seventy-three thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(17379, 33276, 'thirty-three thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(17380, 24621, 'twenty-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(17381, 64038, 'sixty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(17382, 67006, 'sixty-seven thousand six');\nINSERT INTO t2 VALUES(17383, 28470, 'twenty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(17384, 23544, 'twenty-three thousand five hundred forty-four');\nINSERT INTO t2 VALUES(17385, 22191, 'twenty-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(17386, 34798, 'thirty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(17387, 75247, 'seventy-five thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(17388, 19299, 'nineteen thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(17389, 81115, 'eighty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17390, 44912, 'forty-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(17391, 68529, 'sixty-eight thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17392, 87856, 'eighty-seven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(17393, 40439, 'forty thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(17394, 8472, 'eight thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(17395, 18075, 'eighteen thousand seventy-five');\nINSERT INTO t2 VALUES(17396, 34365, 'thirty-four thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17397, 6748, 'six thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(17398, 60657, 'sixty thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(17399, 23229, 'twenty-three thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(17400, 47854, 'forty-seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(17401, 32587, 'thirty-two thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(17402, 69613, 'sixty-nine thousand six hundred thirteen');\nINSERT INTO t2 VALUES(17403, 53980, 'fifty-three thousand nine hundred eighty');\nINSERT INTO t2 VALUES(17404, 73534, 'seventy-three thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(17405, 61194, 'sixty-one thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(17406, 55794, 'fifty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(17407, 87123, 'eighty-seven thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(17408, 51183, 'fifty-one thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(17409, 78046, 'seventy-eight thousand forty-six');\nINSERT INTO t2 VALUES(17410, 8089, 'eight thousand eighty-nine');\nINSERT INTO t2 VALUES(17411, 59953, 'fifty-nine thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(17412, 54022, 'fifty-four thousand twenty-two');\nINSERT INTO t2 VALUES(17413, 63243, 'sixty-three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(17414, 49922, 'forty-nine thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(17415, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(17416, 593, 'five hundred ninety-three');\nINSERT INTO t2 VALUES(17417, 78631, 'seventy-eight thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(17418, 39771, 'thirty-nine thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17419, 592, 'five hundred ninety-two');\nINSERT INTO t2 VALUES(17420, 69837, 'sixty-nine thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(17421, 80466, 'eighty thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(17422, 68067, 'sixty-eight thousand sixty-seven');\nINSERT INTO t2 VALUES(17423, 75514, 'seventy-five thousand five hundred fourteen');\nINSERT INTO t2 VALUES(17424, 48793, 'forty-eight thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(17425, 77150, 'seventy-seven thousand one hundred fifty');\nINSERT INTO t2 VALUES(17426, 21912, 'twenty-one thousand nine hundred twelve');\nINSERT INTO t2 VALUES(17427, 32284, 'thirty-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(17428, 15178, 'fifteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(17429, 75465, 'seventy-five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(17430, 74181, 'seventy-four thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(17431, 85713, 'eighty-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(17432, 13154, 'thirteen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(17433, 31601, 'thirty-one thousand six hundred one');\nINSERT INTO t2 VALUES(17434, 43690, 'forty-three thousand six hundred ninety');\nINSERT INTO t2 VALUES(17435, 13959, 'thirteen thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(17436, 15305, 'fifteen thousand three hundred five');\nINSERT INTO t2 VALUES(17437, 16736, 'sixteen thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(17438, 58541, 'fifty-eight thousand five hundred forty-one');\nINSERT INTO t2 VALUES(17439, 86269, 'eighty-six thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(17440, 34013, 'thirty-four thousand thirteen');\nINSERT INTO t2 VALUES(17441, 61139, 'sixty-one thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(17442, 74970, 'seventy-four thousand nine hundred seventy');\nINSERT INTO t2 VALUES(17443, 14037, 'fourteen thousand thirty-seven');\nINSERT INTO t2 VALUES(17444, 61203, 'sixty-one thousand two hundred three');\nINSERT INTO t2 VALUES(17445, 6286, 'six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(17446, 87866, 'eighty-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(17447, 64733, 'sixty-four thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(17448, 98527, 'ninety-eight thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17449, 82137, 'eighty-two thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(17450, 11654, 'eleven thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(17451, 34752, 'thirty-four thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(17452, 38514, 'thirty-eight thousand five hundred fourteen');\nINSERT INTO t2 VALUES(17453, 29696, 'twenty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(17454, 42080, 'forty-two thousand eighty');\nINSERT INTO t2 VALUES(17455, 60695, 'sixty thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(17456, 76575, 'seventy-six thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(17457, 65233, 'sixty-five thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(17458, 47021, 'forty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(17459, 48397, 'forty-eight thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(17460, 81046, 'eighty-one thousand forty-six');\nINSERT INTO t2 VALUES(17461, 99274, 'ninety-nine thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(17462, 60267, 'sixty thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17463, 94097, 'ninety-four thousand ninety-seven');\nINSERT INTO t2 VALUES(17464, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(17465, 26676, 'twenty-six thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(17466, 95851, 'ninety-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(17467, 2585, 'two thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(17468, 4803, 'four thousand eight hundred three');\nINSERT INTO t2 VALUES(17469, 16920, 'sixteen thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17470, 60986, 'sixty thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(17471, 55847, 'fifty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(17472, 68490, 'sixty-eight thousand four hundred ninety');\nINSERT INTO t2 VALUES(17473, 69215, 'sixty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(17474, 10660, 'ten thousand six hundred sixty');\nINSERT INTO t2 VALUES(17475, 29114, 'twenty-nine thousand one hundred fourteen');\nINSERT INTO t2 VALUES(17476, 31781, 'thirty-one thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(17477, 29191, 'twenty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(17478, 52378, 'fifty-two thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(17479, 14022, 'fourteen thousand twenty-two');\nINSERT INTO t2 VALUES(17480, 36873, 'thirty-six thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(17481, 81951, 'eighty-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(17482, 1003, 'one thousand three');\nINSERT INTO t2 VALUES(17483, 87526, 'eighty-seven thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(17484, 74753, 'seventy-four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(17485, 79057, 'seventy-nine thousand fifty-seven');\nINSERT INTO t2 VALUES(17486, 13075, 'thirteen thousand seventy-five');\nINSERT INTO t2 VALUES(17487, 51381, 'fifty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(17488, 83654, 'eighty-three thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(17489, 18811, 'eighteen thousand eight hundred eleven');\nINSERT INTO t2 VALUES(17490, 98219, 'ninety-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(17491, 80679, 'eighty thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(17492, 60515, 'sixty thousand five hundred fifteen');\nINSERT INTO t2 VALUES(17493, 32984, 'thirty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(17494, 75016, 'seventy-five thousand sixteen');\nINSERT INTO t2 VALUES(17495, 20309, 'twenty thousand three hundred nine');\nINSERT INTO t2 VALUES(17496, 25709, 'twenty-five thousand seven hundred nine');\nINSERT INTO t2 VALUES(17497, 23825, 'twenty-three thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(17498, 46275, 'forty-six thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17499, 26567, 'twenty-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(17500, 18382, 'eighteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(17501, 90156, 'ninety thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(17502, 39556, 'thirty-nine thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(17503, 26543, 'twenty-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(17504, 42789, 'forty-two thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(17505, 8036, 'eight thousand thirty-six');\nINSERT INTO t2 VALUES(17506, 7760, 'seven thousand seven hundred sixty');\nINSERT INTO t2 VALUES(17507, 67082, 'sixty-seven thousand eighty-two');\nINSERT INTO t2 VALUES(17508, 43117, 'forty-three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(17509, 74691, 'seventy-four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(17510, 74995, 'seventy-four thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(17511, 75096, 'seventy-five thousand ninety-six');\nINSERT INTO t2 VALUES(17512, 14771, 'fourteen thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17513, 92557, 'ninety-two thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(17514, 86848, 'eighty-six thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(17515, 69858, 'sixty-nine thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(17516, 51142, 'fifty-one thousand one hundred forty-two');\nINSERT INTO t2 VALUES(17517, 88028, 'eighty-eight thousand twenty-eight');\nINSERT INTO t2 VALUES(17518, 32494, 'thirty-two thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(17519, 65874, 'sixty-five thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(17520, 42536, 'forty-two thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(17521, 45844, 'forty-five thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(17522, 87207, 'eighty-seven thousand two hundred seven');\nINSERT INTO t2 VALUES(17523, 47107, 'forty-seven thousand one hundred seven');\nINSERT INTO t2 VALUES(17524, 69097, 'sixty-nine thousand ninety-seven');\nINSERT INTO t2 VALUES(17525, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t2 VALUES(17526, 31850, 'thirty-one thousand eight hundred fifty');\nINSERT INTO t2 VALUES(17527, 784, 'seven hundred eighty-four');\nINSERT INTO t2 VALUES(17528, 63301, 'sixty-three thousand three hundred one');\nINSERT INTO t2 VALUES(17529, 53734, 'fifty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17530, 65987, 'sixty-five thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(17531, 10, 'ten');\nINSERT INTO t2 VALUES(17532, 8151, 'eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(17533, 30655, 'thirty thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(17534, 9301, 'nine thousand three hundred one');\nINSERT INTO t2 VALUES(17535, 53040, 'fifty-three thousand forty');\nINSERT INTO t2 VALUES(17536, 63417, 'sixty-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(17537, 90407, 'ninety thousand four hundred seven');\nINSERT INTO t2 VALUES(17538, 53487, 'fifty-three thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(17539, 48281, 'forty-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(17540, 11619, 'eleven thousand six hundred nineteen');\nINSERT INTO t2 VALUES(17541, 57508, 'fifty-seven thousand five hundred eight');\nINSERT INTO t2 VALUES(17542, 78920, 'seventy-eight thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17543, 33433, 'thirty-three thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(17544, 14615, 'fourteen thousand six hundred fifteen');\nINSERT INTO t2 VALUES(17545, 91128, 'ninety-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(17546, 63688, 'sixty-three thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(17547, 20464, 'twenty thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(17548, 57080, 'fifty-seven thousand eighty');\nINSERT INTO t2 VALUES(17549, 75088, 'seventy-five thousand eighty-eight');\nINSERT INTO t2 VALUES(17550, 53567, 'fifty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(17551, 98573, 'ninety-eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(17552, 10065, 'ten thousand sixty-five');\nINSERT INTO t2 VALUES(17553, 71457, 'seventy-one thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(17554, 18394, 'eighteen thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(17555, 81965, 'eighty-one thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(17556, 60340, 'sixty thousand three hundred forty');\nINSERT INTO t2 VALUES(17557, 87855, 'eighty-seven thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(17558, 34763, 'thirty-four thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(17559, 50361, 'fifty thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(17560, 35538, 'thirty-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(17561, 85747, 'eighty-five thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(17562, 50403, 'fifty thousand four hundred three');\nINSERT INTO t2 VALUES(17563, 5505, 'five thousand five hundred five');\nINSERT INTO t2 VALUES(17564, 42224, 'forty-two thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(17565, 1640, 'one thousand six hundred forty');\nINSERT INTO t2 VALUES(17566, 69530, 'sixty-nine thousand five hundred thirty');\nINSERT INTO t2 VALUES(17567, 3996, 'three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(17568, 94782, 'ninety-four thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(17569, 64938, 'sixty-four thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(17570, 83231, 'eighty-three thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(17571, 96826, 'ninety-six thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(17572, 46506, 'forty-six thousand five hundred six');\nINSERT INTO t2 VALUES(17573, 91450, 'ninety-one thousand four hundred fifty');\nINSERT INTO t2 VALUES(17574, 55155, 'fifty-five thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(17575, 73726, 'seventy-three thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(17576, 42395, 'forty-two thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(17577, 33837, 'thirty-three thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(17578, 35891, 'thirty-five thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(17579, 80658, 'eighty thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(17580, 5275, 'five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17581, 34057, 'thirty-four thousand fifty-seven');\nINSERT INTO t2 VALUES(17582, 28571, 'twenty-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(17583, 80810, 'eighty thousand eight hundred ten');\nINSERT INTO t2 VALUES(17584, 29970, 'twenty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(17585, 93375, 'ninety-three thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(17586, 60814, 'sixty thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(17587, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(17588, 66959, 'sixty-six thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(17589, 94576, 'ninety-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(17590, 7204, 'seven thousand two hundred four');\nINSERT INTO t2 VALUES(17591, 58077, 'fifty-eight thousand seventy-seven');\nINSERT INTO t2 VALUES(17592, 69262, 'sixty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(17593, 39440, 'thirty-nine thousand four hundred forty');\nINSERT INTO t2 VALUES(17594, 5776, 'five thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(17595, 3577, 'three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(17596, 62317, 'sixty-two thousand three hundred seventeen');\nINSERT INTO t2 VALUES(17597, 28699, 'twenty-eight thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(17598, 47334, 'forty-seven thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(17599, 7365, 'seven thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(17600, 32115, 'thirty-two thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17601, 81957, 'eighty-one thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(17602, 95412, 'ninety-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(17603, 57706, 'fifty-seven thousand seven hundred six');\nINSERT INTO t2 VALUES(17604, 43495, 'forty-three thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(17605, 7886, 'seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(17606, 84909, 'eighty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(17607, 62411, 'sixty-two thousand four hundred eleven');\nINSERT INTO t2 VALUES(17608, 2932, 'two thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(17609, 59963, 'fifty-nine thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(17610, 81409, 'eighty-one thousand four hundred nine');\nINSERT INTO t2 VALUES(17611, 39271, 'thirty-nine thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(17612, 68812, 'sixty-eight thousand eight hundred twelve');\nINSERT INTO t2 VALUES(17613, 86126, 'eighty-six thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(17614, 56839, 'fifty-six thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(17615, 97575, 'ninety-seven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(17616, 20757, 'twenty thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(17617, 92670, 'ninety-two thousand six hundred seventy');\nINSERT INTO t2 VALUES(17618, 18335, 'eighteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(17619, 50036, 'fifty thousand thirty-six');\nINSERT INTO t2 VALUES(17620, 62174, 'sixty-two thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(17621, 28314, 'twenty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(17622, 89834, 'eighty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(17623, 30820, 'thirty thousand eight hundred twenty');\nINSERT INTO t2 VALUES(17624, 29684, 'twenty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(17625, 57920, 'fifty-seven thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17626, 71996, 'seventy-one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(17627, 86372, 'eighty-six thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(17628, 41908, 'forty-one thousand nine hundred eight');\nINSERT INTO t2 VALUES(17629, 64805, 'sixty-four thousand eight hundred five');\nINSERT INTO t2 VALUES(17630, 56776, 'fifty-six thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(17631, 77770, 'seventy-seven thousand seven hundred seventy');\nINSERT INTO t2 VALUES(17632, 2377, 'two thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(17633, 25462, 'twenty-five thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(17634, 43426, 'forty-three thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(17635, 56638, 'fifty-six thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(17636, 9466, 'nine thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(17637, 45623, 'forty-five thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(17638, 37195, 'thirty-seven thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(17639, 54882, 'fifty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(17640, 88345, 'eighty-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(17641, 47347, 'forty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(17642, 95118, 'ninety-five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(17643, 32358, 'thirty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(17644, 90089, 'ninety thousand eighty-nine');\nINSERT INTO t2 VALUES(17645, 1529, 'one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(17646, 35685, 'thirty-five thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(17647, 39437, 'thirty-nine thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(17648, 18190, 'eighteen thousand one hundred ninety');\nINSERT INTO t2 VALUES(17649, 38978, 'thirty-eight thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(17650, 1791, 'one thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(17651, 74754, 'seventy-four thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(17652, 91202, 'ninety-one thousand two hundred two');\nINSERT INTO t2 VALUES(17653, 21518, 'twenty-one thousand five hundred eighteen');\nINSERT INTO t2 VALUES(17654, 20430, 'twenty thousand four hundred thirty');\nINSERT INTO t2 VALUES(17655, 2415, 'two thousand four hundred fifteen');\nINSERT INTO t2 VALUES(17656, 92893, 'ninety-two thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(17657, 89810, 'eighty-nine thousand eight hundred ten');\nINSERT INTO t2 VALUES(17658, 11670, 'eleven thousand six hundred seventy');\nINSERT INTO t2 VALUES(17659, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(17660, 99042, 'ninety-nine thousand forty-two');\nINSERT INTO t2 VALUES(17661, 94584, 'ninety-four thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(17662, 86757, 'eighty-six thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(17663, 58473, 'fifty-eight thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(17664, 28482, 'twenty-eight thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(17665, 50879, 'fifty thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(17666, 88914, 'eighty-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(17667, 49203, 'forty-nine thousand two hundred three');\nINSERT INTO t2 VALUES(17668, 69985, 'sixty-nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(17669, 67933, 'sixty-seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(17670, 50267, 'fifty thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17671, 18242, 'eighteen thousand two hundred forty-two');\nINSERT INTO t2 VALUES(17672, 28220, 'twenty-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(17673, 8581, 'eight thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(17674, 31099, 'thirty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(17675, 1358, 'one thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(17676, 94548, 'ninety-four thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(17677, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t2 VALUES(17678, 50616, 'fifty thousand six hundred sixteen');\nINSERT INTO t2 VALUES(17679, 40611, 'forty thousand six hundred eleven');\nINSERT INTO t2 VALUES(17680, 30701, 'thirty thousand seven hundred one');\nINSERT INTO t2 VALUES(17681, 6558, 'six thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(17682, 10011, 'ten thousand eleven');\nINSERT INTO t2 VALUES(17683, 64410, 'sixty-four thousand four hundred ten');\nINSERT INTO t2 VALUES(17684, 22672, 'twenty-two thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(17685, 62046, 'sixty-two thousand forty-six');\nINSERT INTO t2 VALUES(17686, 73322, 'seventy-three thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(17687, 35780, 'thirty-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(17688, 21756, 'twenty-one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(17689, 86908, 'eighty-six thousand nine hundred eight');\nINSERT INTO t2 VALUES(17690, 82599, 'eighty-two thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(17691, 83141, 'eighty-three thousand one hundred forty-one');\nINSERT INTO t2 VALUES(17692, 91794, 'ninety-one thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(17693, 58591, 'fifty-eight thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(17694, 20080, 'twenty thousand eighty');\nINSERT INTO t2 VALUES(17695, 80911, 'eighty thousand nine hundred eleven');\nINSERT INTO t2 VALUES(17696, 77428, 'seventy-seven thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(17697, 90445, 'ninety thousand four hundred forty-five');\nINSERT INTO t2 VALUES(17698, 19983, 'nineteen thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(17699, 93323, 'ninety-three thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(17700, 30613, 'thirty thousand six hundred thirteen');\nINSERT INTO t2 VALUES(17701, 48193, 'forty-eight thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(17702, 12920, 'twelve thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17703, 97445, 'ninety-seven thousand four hundred forty-five');\nINSERT INTO t2 VALUES(17704, 22573, 'twenty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(17705, 56968, 'fifty-six thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(17706, 27375, 'twenty-seven thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(17707, 56745, 'fifty-six thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(17708, 86035, 'eighty-six thousand thirty-five');\nINSERT INTO t2 VALUES(17709, 70811, 'seventy thousand eight hundred eleven');\nINSERT INTO t2 VALUES(17710, 48482, 'forty-eight thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(17711, 34173, 'thirty-four thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(17712, 39888, 'thirty-nine thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(17713, 41643, 'forty-one thousand six hundred forty-three');\nINSERT INTO t2 VALUES(17714, 13073, 'thirteen thousand seventy-three');\nINSERT INTO t2 VALUES(17715, 71444, 'seventy-one thousand four hundred forty-four');\nINSERT INTO t2 VALUES(17716, 76947, 'seventy-six thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(17717, 94255, 'ninety-four thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(17718, 8891, 'eight thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(17719, 17896, 'seventeen thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(17720, 85157, 'eighty-five thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(17721, 54433, 'fifty-four thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(17722, 85159, 'eighty-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(17723, 33390, 'thirty-three thousand three hundred ninety');\nINSERT INTO t2 VALUES(17724, 47652, 'forty-seven thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(17725, 50918, 'fifty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(17726, 47557, 'forty-seven thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(17727, 20422, 'twenty thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(17728, 95736, 'ninety-five thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(17729, 67572, 'sixty-seven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(17730, 22268, 'twenty-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(17731, 47115, 'forty-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(17732, 248, 'two hundred forty-eight');\nINSERT INTO t2 VALUES(17733, 42577, 'forty-two thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(17734, 11162, 'eleven thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(17735, 27281, 'twenty-seven thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(17736, 76521, 'seventy-six thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(17737, 49789, 'forty-nine thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(17738, 87521, 'eighty-seven thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(17739, 42104, 'forty-two thousand one hundred four');\nINSERT INTO t2 VALUES(17740, 67454, 'sixty-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(17741, 37768, 'thirty-seven thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(17742, 65332, 'sixty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(17743, 67693, 'sixty-seven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(17744, 20146, 'twenty thousand one hundred forty-six');\nINSERT INTO t2 VALUES(17745, 40333, 'forty thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(17746, 40196, 'forty thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(17747, 60754, 'sixty thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(17748, 35794, 'thirty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(17749, 34985, 'thirty-four thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(17750, 10447, 'ten thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(17751, 9496, 'nine thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(17752, 68533, 'sixty-eight thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(17753, 38678, 'thirty-eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(17754, 27527, 'twenty-seven thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(17755, 15490, 'fifteen thousand four hundred ninety');\nINSERT INTO t2 VALUES(17756, 3588, 'three thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(17757, 33010, 'thirty-three thousand ten');\nINSERT INTO t2 VALUES(17758, 96746, 'ninety-six thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(17759, 27566, 'twenty-seven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(17760, 11148, 'eleven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(17761, 25407, 'twenty-five thousand four hundred seven');\nINSERT INTO t2 VALUES(17762, 1267, 'one thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(17763, 72450, 'seventy-two thousand four hundred fifty');\nINSERT INTO t2 VALUES(17764, 72779, 'seventy-two thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(17765, 18050, 'eighteen thousand fifty');\nINSERT INTO t2 VALUES(17766, 89190, 'eighty-nine thousand one hundred ninety');\nINSERT INTO t2 VALUES(17767, 93864, 'ninety-three thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(17768, 56843, 'fifty-six thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(17769, 50247, 'fifty thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(17770, 5133, 'five thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(17771, 25791, 'twenty-five thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(17772, 27109, 'twenty-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(17773, 40378, 'forty thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(17774, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t2 VALUES(17775, 96991, 'ninety-six thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(17776, 59920, 'fifty-nine thousand nine hundred twenty');\nINSERT INTO t2 VALUES(17777, 40919, 'forty thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(17778, 28516, 'twenty-eight thousand five hundred sixteen');\nINSERT INTO t2 VALUES(17779, 31281, 'thirty-one thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(17780, 29335, 'twenty-nine thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(17781, 52496, 'fifty-two thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(17782, 88620, 'eighty-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(17783, 36927, 'thirty-six thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(17784, 10315, 'ten thousand three hundred fifteen');\nINSERT INTO t2 VALUES(17785, 34723, 'thirty-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(17786, 62596, 'sixty-two thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(17787, 14434, 'fourteen thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(17788, 53148, 'fifty-three thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(17789, 55478, 'fifty-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(17790, 63181, 'sixty-three thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(17791, 81577, 'eighty-one thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(17792, 62462, 'sixty-two thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(17793, 6561, 'six thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(17794, 57054, 'fifty-seven thousand fifty-four');\nINSERT INTO t2 VALUES(17795, 50885, 'fifty thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(17796, 27445, 'twenty-seven thousand four hundred forty-five');\nINSERT INTO t2 VALUES(17797, 39053, 'thirty-nine thousand fifty-three');\nINSERT INTO t2 VALUES(17798, 61207, 'sixty-one thousand two hundred seven');\nINSERT INTO t2 VALUES(17799, 43877, 'forty-three thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(17800, 36530, 'thirty-six thousand five hundred thirty');\nINSERT INTO t2 VALUES(17801, 10200, 'ten thousand two hundred');\nINSERT INTO t2 VALUES(17802, 79093, 'seventy-nine thousand ninety-three');\nINSERT INTO t2 VALUES(17803, 87354, 'eighty-seven thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(17804, 29405, 'twenty-nine thousand four hundred five');\nINSERT INTO t2 VALUES(17805, 7329, 'seven thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(17806, 78214, 'seventy-eight thousand two hundred fourteen');\nINSERT INTO t2 VALUES(17807, 65092, 'sixty-five thousand ninety-two');\nINSERT INTO t2 VALUES(17808, 94549, 'ninety-four thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(17809, 30555, 'thirty thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(17810, 65847, 'sixty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(17811, 54402, 'fifty-four thousand four hundred two');\nINSERT INTO t2 VALUES(17812, 86122, 'eighty-six thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(17813, 64421, 'sixty-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(17814, 12171, 'twelve thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(17815, 3917, 'three thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(17816, 13016, 'thirteen thousand sixteen');\nINSERT INTO t2 VALUES(17817, 37537, 'thirty-seven thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(17818, 32908, 'thirty-two thousand nine hundred eight');\nINSERT INTO t2 VALUES(17819, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(17820, 97279, 'ninety-seven thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(17821, 63860, 'sixty-three thousand eight hundred sixty');\nINSERT INTO t2 VALUES(17822, 13388, 'thirteen thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(17823, 26429, 'twenty-six thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(17824, 22111, 'twenty-two thousand one hundred eleven');\nINSERT INTO t2 VALUES(17825, 74317, 'seventy-four thousand three hundred seventeen');\nINSERT INTO t2 VALUES(17826, 82535, 'eighty-two thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(17827, 32396, 'thirty-two thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(17828, 15348, 'fifteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(17829, 55403, 'fifty-five thousand four hundred three');\nINSERT INTO t2 VALUES(17830, 16606, 'sixteen thousand six hundred six');\nINSERT INTO t2 VALUES(17831, 32068, 'thirty-two thousand sixty-eight');\nINSERT INTO t2 VALUES(17832, 82729, 'eighty-two thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(17833, 40022, 'forty thousand twenty-two');\nINSERT INTO t2 VALUES(17834, 24520, 'twenty-four thousand five hundred twenty');\nINSERT INTO t2 VALUES(17835, 32486, 'thirty-two thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(17836, 70518, 'seventy thousand five hundred eighteen');\nINSERT INTO t2 VALUES(17837, 23219, 'twenty-three thousand two hundred nineteen');\nINSERT INTO t2 VALUES(17838, 37991, 'thirty-seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(17839, 67004, 'sixty-seven thousand four');\nINSERT INTO t2 VALUES(17840, 77068, 'seventy-seven thousand sixty-eight');\nINSERT INTO t2 VALUES(17841, 872, 'eight hundred seventy-two');\nINSERT INTO t2 VALUES(17842, 56930, 'fifty-six thousand nine hundred thirty');\nINSERT INTO t2 VALUES(17843, 32275, 'thirty-two thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17844, 45873, 'forty-five thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(17845, 90608, 'ninety thousand six hundred eight');\nINSERT INTO t2 VALUES(17846, 64738, 'sixty-four thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(17847, 53831, 'fifty-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(17848, 52433, 'fifty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(17849, 43735, 'forty-three thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(17850, 14348, 'fourteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(17851, 10042, 'ten thousand forty-two');\nINSERT INTO t2 VALUES(17852, 20370, 'twenty thousand three hundred seventy');\nINSERT INTO t2 VALUES(17853, 90275, 'ninety thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(17854, 22466, 'twenty-two thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(17855, 52097, 'fifty-two thousand ninety-seven');\nINSERT INTO t2 VALUES(17856, 37542, 'thirty-seven thousand five hundred forty-two');\nINSERT INTO t2 VALUES(17857, 62769, 'sixty-two thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(17858, 51605, 'fifty-one thousand six hundred five');\nINSERT INTO t2 VALUES(17859, 29792, 'twenty-nine thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(17860, 90454, 'ninety thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(17861, 95382, 'ninety-five thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(17862, 27144, 'twenty-seven thousand one hundred forty-four');\nINSERT INTO t2 VALUES(17863, 66977, 'sixty-six thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(17864, 94268, 'ninety-four thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(17865, 13611, 'thirteen thousand six hundred eleven');\nINSERT INTO t2 VALUES(17866, 71186, 'seventy-one thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(17867, 64571, 'sixty-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(17868, 58990, 'fifty-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(17869, 157, 'one hundred fifty-seven');\nINSERT INTO t2 VALUES(17870, 10606, 'ten thousand six hundred six');\nINSERT INTO t2 VALUES(17871, 74402, 'seventy-four thousand four hundred two');\nINSERT INTO t2 VALUES(17872, 11844, 'eleven thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(17873, 25479, 'twenty-five thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(17874, 33863, 'thirty-three thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(17875, 32873, 'thirty-two thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(17876, 65041, 'sixty-five thousand forty-one');\nINSERT INTO t2 VALUES(17877, 14210, 'fourteen thousand two hundred ten');\nINSERT INTO t2 VALUES(17878, 11718, 'eleven thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(17879, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(17880, 2636, 'two thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(17881, 61898, 'sixty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(17882, 77091, 'seventy-seven thousand ninety-one');\nINSERT INTO t2 VALUES(17883, 63332, 'sixty-three thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(17884, 12141, 'twelve thousand one hundred forty-one');\nINSERT INTO t2 VALUES(17885, 49258, 'forty-nine thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(17886, 97641, 'ninety-seven thousand six hundred forty-one');\nINSERT INTO t2 VALUES(17887, 96816, 'ninety-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(17888, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t2 VALUES(17889, 80779, 'eighty thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(17890, 487, 'four hundred eighty-seven');\nINSERT INTO t2 VALUES(17891, 42645, 'forty-two thousand six hundred forty-five');\nINSERT INTO t2 VALUES(17892, 23915, 'twenty-three thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(17893, 60290, 'sixty thousand two hundred ninety');\nINSERT INTO t2 VALUES(17894, 70154, 'seventy thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(17895, 36921, 'thirty-six thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(17896, 46074, 'forty-six thousand seventy-four');\nINSERT INTO t2 VALUES(17897, 76865, 'seventy-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(17898, 38338, 'thirty-eight thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(17899, 71718, 'seventy-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(17900, 14949, 'fourteen thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(17901, 60348, 'sixty thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(17902, 12581, 'twelve thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(17903, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t2 VALUES(17904, 43194, 'forty-three thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(17905, 21354, 'twenty-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(17906, 59475, 'fifty-nine thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(17907, 97593, 'ninety-seven thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(17908, 47316, 'forty-seven thousand three hundred sixteen');\nINSERT INTO t2 VALUES(17909, 20038, 'twenty thousand thirty-eight');\nINSERT INTO t2 VALUES(17910, 10123, 'ten thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(17911, 65713, 'sixty-five thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(17912, 78976, 'seventy-eight thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(17913, 87792, 'eighty-seven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(17914, 65029, 'sixty-five thousand twenty-nine');\nINSERT INTO t2 VALUES(17915, 34278, 'thirty-four thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(17916, 16956, 'sixteen thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(17917, 58622, 'fifty-eight thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(17918, 26614, 'twenty-six thousand six hundred fourteen');\nINSERT INTO t2 VALUES(17919, 63734, 'sixty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(17920, 45065, 'forty-five thousand sixty-five');\nINSERT INTO t2 VALUES(17921, 64259, 'sixty-four thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(17922, 57639, 'fifty-seven thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(17923, 29609, 'twenty-nine thousand six hundred nine');\nINSERT INTO t2 VALUES(17924, 21771, 'twenty-one thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17925, 88757, 'eighty-eight thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(17926, 52284, 'fifty-two thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(17927, 1777, 'one thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(17928, 152, 'one hundred fifty-two');\nINSERT INTO t2 VALUES(17929, 21701, 'twenty-one thousand seven hundred one');\nINSERT INTO t2 VALUES(17930, 5853, 'five thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(17931, 46708, 'forty-six thousand seven hundred eight');\nINSERT INTO t2 VALUES(17932, 69319, 'sixty-nine thousand three hundred nineteen');\nINSERT INTO t2 VALUES(17933, 42168, 'forty-two thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(17934, 58380, 'fifty-eight thousand three hundred eighty');\nINSERT INTO t2 VALUES(17935, 39463, 'thirty-nine thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(17936, 44739, 'forty-four thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(17937, 23642, 'twenty-three thousand six hundred forty-two');\nINSERT INTO t2 VALUES(17938, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(17939, 56881, 'fifty-six thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(17940, 52282, 'fifty-two thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(17941, 95481, 'ninety-five thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(17942, 99683, 'ninety-nine thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(17943, 35120, 'thirty-five thousand one hundred twenty');\nINSERT INTO t2 VALUES(17944, 20986, 'twenty thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(17945, 52171, 'fifty-two thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(17946, 94489, 'ninety-four thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(17947, 97093, 'ninety-seven thousand ninety-three');\nINSERT INTO t2 VALUES(17948, 86752, 'eighty-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(17949, 80924, 'eighty thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(17950, 50412, 'fifty thousand four hundred twelve');\nINSERT INTO t2 VALUES(17951, 38262, 'thirty-eight thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(17952, 40808, 'forty thousand eight hundred eight');\nINSERT INTO t2 VALUES(17953, 92467, 'ninety-two thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(17954, 53853, 'fifty-three thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(17955, 5696, 'five thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(17956, 37384, 'thirty-seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(17957, 99104, 'ninety-nine thousand one hundred four');\nINSERT INTO t2 VALUES(17958, 63154, 'sixty-three thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(17959, 68905, 'sixty-eight thousand nine hundred five');\nINSERT INTO t2 VALUES(17960, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(17961, 9729, 'nine thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(17962, 78016, 'seventy-eight thousand sixteen');\nINSERT INTO t2 VALUES(17963, 99492, 'ninety-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(17964, 35081, 'thirty-five thousand eighty-one');\nINSERT INTO t2 VALUES(17965, 39297, 'thirty-nine thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(17966, 81024, 'eighty-one thousand twenty-four');\nINSERT INTO t2 VALUES(17967, 3950, 'three thousand nine hundred fifty');\nINSERT INTO t2 VALUES(17968, 45067, 'forty-five thousand sixty-seven');\nINSERT INTO t2 VALUES(17969, 52812, 'fifty-two thousand eight hundred twelve');\nINSERT INTO t2 VALUES(17970, 55743, 'fifty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(17971, 69439, 'sixty-nine thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(17972, 52771, 'fifty-two thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(17973, 70455, 'seventy thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(17974, 3820, 'three thousand eight hundred twenty');\nINSERT INTO t2 VALUES(17975, 91813, 'ninety-one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(17976, 69818, 'sixty-nine thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(17977, 55919, 'fifty-five thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(17978, 98893, 'ninety-eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(17979, 64366, 'sixty-four thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(17980, 82159, 'eighty-two thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(17981, 55522, 'fifty-five thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(17982, 91460, 'ninety-one thousand four hundred sixty');\nINSERT INTO t2 VALUES(17983, 8503, 'eight thousand five hundred three');\nINSERT INTO t2 VALUES(17984, 3069, 'three thousand sixty-nine');\nINSERT INTO t2 VALUES(17985, 67114, 'sixty-seven thousand one hundred fourteen');\nINSERT INTO t2 VALUES(17986, 37930, 'thirty-seven thousand nine hundred thirty');\nINSERT INTO t2 VALUES(17987, 8077, 'eight thousand seventy-seven');\nINSERT INTO t2 VALUES(17988, 89288, 'eighty-nine thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(17989, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t2 VALUES(17990, 35574, 'thirty-five thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(17991, 75908, 'seventy-five thousand nine hundred eight');\nINSERT INTO t2 VALUES(17992, 60655, 'sixty thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(17993, 93094, 'ninety-three thousand ninety-four');\nINSERT INTO t2 VALUES(17994, 5406, 'five thousand four hundred six');\nINSERT INTO t2 VALUES(17995, 58503, 'fifty-eight thousand five hundred three');\nINSERT INTO t2 VALUES(17996, 33109, 'thirty-three thousand one hundred nine');\nINSERT INTO t2 VALUES(17997, 52908, 'fifty-two thousand nine hundred eight');\nINSERT INTO t2 VALUES(17998, 78264, 'seventy-eight thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(17999, 19820, 'nineteen thousand eight hundred twenty');\nINSERT INTO t2 VALUES(18000, 69222, 'sixty-nine thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(18001, 11344, 'eleven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(18002, 16549, 'sixteen thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(18003, 32202, 'thirty-two thousand two hundred two');\nINSERT INTO t2 VALUES(18004, 71942, 'seventy-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(18005, 82521, 'eighty-two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(18006, 68078, 'sixty-eight thousand seventy-eight');\nINSERT INTO t2 VALUES(18007, 65688, 'sixty-five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(18008, 49403, 'forty-nine thousand four hundred three');\nINSERT INTO t2 VALUES(18009, 77360, 'seventy-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(18010, 18164, 'eighteen thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(18011, 73993, 'seventy-three thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(18012, 19775, 'nineteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(18013, 69957, 'sixty-nine thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(18014, 33962, 'thirty-three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(18015, 82716, 'eighty-two thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(18016, 29186, 'twenty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(18017, 67157, 'sixty-seven thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18018, 49874, 'forty-nine thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(18019, 66754, 'sixty-six thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(18020, 66623, 'sixty-six thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(18021, 64804, 'sixty-four thousand eight hundred four');\nINSERT INTO t2 VALUES(18022, 64670, 'sixty-four thousand six hundred seventy');\nINSERT INTO t2 VALUES(18023, 8471, 'eight thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(18024, 53459, 'fifty-three thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(18025, 61326, 'sixty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(18026, 47055, 'forty-seven thousand fifty-five');\nINSERT INTO t2 VALUES(18027, 240, 'two hundred forty');\nINSERT INTO t2 VALUES(18028, 79895, 'seventy-nine thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(18029, 8113, 'eight thousand one hundred thirteen');\nINSERT INTO t2 VALUES(18030, 31497, 'thirty-one thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18031, 41529, 'forty-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(18032, 98580, 'ninety-eight thousand five hundred eighty');\nINSERT INTO t2 VALUES(18033, 32902, 'thirty-two thousand nine hundred two');\nINSERT INTO t2 VALUES(18034, 31551, 'thirty-one thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(18035, 57650, 'fifty-seven thousand six hundred fifty');\nINSERT INTO t2 VALUES(18036, 91597, 'ninety-one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(18037, 70813, 'seventy thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18038, 96030, 'ninety-six thousand thirty');\nINSERT INTO t2 VALUES(18039, 94049, 'ninety-four thousand forty-nine');\nINSERT INTO t2 VALUES(18040, 14632, 'fourteen thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(18041, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(18042, 49202, 'forty-nine thousand two hundred two');\nINSERT INTO t2 VALUES(18043, 12388, 'twelve thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(18044, 89225, 'eighty-nine thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(18045, 69657, 'sixty-nine thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(18046, 48643, 'forty-eight thousand six hundred forty-three');\nINSERT INTO t2 VALUES(18047, 98850, 'ninety-eight thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18048, 51890, 'fifty-one thousand eight hundred ninety');\nINSERT INTO t2 VALUES(18049, 25730, 'twenty-five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(18050, 13491, 'thirteen thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(18051, 29215, 'twenty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(18052, 75378, 'seventy-five thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(18053, 12394, 'twelve thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(18054, 62517, 'sixty-two thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18055, 21796, 'twenty-one thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(18056, 92824, 'ninety-two thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(18057, 83018, 'eighty-three thousand eighteen');\nINSERT INTO t2 VALUES(18058, 84938, 'eighty-four thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(18059, 73132, 'seventy-three thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(18060, 82761, 'eighty-two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(18061, 10641, 'ten thousand six hundred forty-one');\nINSERT INTO t2 VALUES(18062, 92567, 'ninety-two thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18063, 99559, 'ninety-nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(18064, 53723, 'fifty-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(18065, 31493, 'thirty-one thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(18066, 10340, 'ten thousand three hundred forty');\nINSERT INTO t2 VALUES(18067, 28405, 'twenty-eight thousand four hundred five');\nINSERT INTO t2 VALUES(18068, 59210, 'fifty-nine thousand two hundred ten');\nINSERT INTO t2 VALUES(18069, 98540, 'ninety-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(18070, 70488, 'seventy thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(18071, 67152, 'sixty-seven thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(18072, 5995, 'five thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(18073, 41583, 'forty-one thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(18074, 15155, 'fifteen thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(18075, 7412, 'seven thousand four hundred twelve');\nINSERT INTO t2 VALUES(18076, 83748, 'eighty-three thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(18077, 80117, 'eighty thousand one hundred seventeen');\nINSERT INTO t2 VALUES(18078, 86084, 'eighty-six thousand eighty-four');\nINSERT INTO t2 VALUES(18079, 39231, 'thirty-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(18080, 82455, 'eighty-two thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(18081, 13541, 'thirteen thousand five hundred forty-one');\nINSERT INTO t2 VALUES(18082, 71737, 'seventy-one thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(18083, 34045, 'thirty-four thousand forty-five');\nINSERT INTO t2 VALUES(18084, 56671, 'fifty-six thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(18085, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(18086, 40852, 'forty thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(18087, 31524, 'thirty-one thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(18088, 36714, 'thirty-six thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(18089, 77971, 'seventy-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(18090, 46440, 'forty-six thousand four hundred forty');\nINSERT INTO t2 VALUES(18091, 83734, 'eighty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(18092, 28864, 'twenty-eight thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(18093, 87334, 'eighty-seven thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(18094, 59821, 'fifty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(18095, 58367, 'fifty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(18096, 57033, 'fifty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(18097, 77686, 'seventy-seven thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(18098, 31095, 'thirty-one thousand ninety-five');\nINSERT INTO t2 VALUES(18099, 83822, 'eighty-three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(18100, 38240, 'thirty-eight thousand two hundred forty');\nINSERT INTO t2 VALUES(18101, 69205, 'sixty-nine thousand two hundred five');\nINSERT INTO t2 VALUES(18102, 69114, 'sixty-nine thousand one hundred fourteen');\nINSERT INTO t2 VALUES(18103, 83844, 'eighty-three thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(18104, 25945, 'twenty-five thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(18105, 16850, 'sixteen thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18106, 35607, 'thirty-five thousand six hundred seven');\nINSERT INTO t2 VALUES(18107, 29803, 'twenty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(18108, 52399, 'fifty-two thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(18109, 52957, 'fifty-two thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(18110, 86802, 'eighty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(18111, 32652, 'thirty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(18112, 23084, 'twenty-three thousand eighty-four');\nINSERT INTO t2 VALUES(18113, 24066, 'twenty-four thousand sixty-six');\nINSERT INTO t2 VALUES(18114, 37875, 'thirty-seven thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(18115, 77684, 'seventy-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(18116, 22519, 'twenty-two thousand five hundred nineteen');\nINSERT INTO t2 VALUES(18117, 66477, 'sixty-six thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(18118, 11312, 'eleven thousand three hundred twelve');\nINSERT INTO t2 VALUES(18119, 42113, 'forty-two thousand one hundred thirteen');\nINSERT INTO t2 VALUES(18120, 10071, 'ten thousand seventy-one');\nINSERT INTO t2 VALUES(18121, 78343, 'seventy-eight thousand three hundred forty-three');\nINSERT INTO t2 VALUES(18122, 76358, 'seventy-six thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(18123, 38064, 'thirty-eight thousand sixty-four');\nINSERT INTO t2 VALUES(18124, 5225, 'five thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(18125, 75410, 'seventy-five thousand four hundred ten');\nINSERT INTO t2 VALUES(18126, 22516, 'twenty-two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(18127, 94831, 'ninety-four thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(18128, 68601, 'sixty-eight thousand six hundred one');\nINSERT INTO t2 VALUES(18129, 40943, 'forty thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(18130, 71809, 'seventy-one thousand eight hundred nine');\nINSERT INTO t2 VALUES(18131, 49824, 'forty-nine thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(18132, 34991, 'thirty-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(18133, 28434, 'twenty-eight thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(18134, 839, 'eight hundred thirty-nine');\nINSERT INTO t2 VALUES(18135, 40123, 'forty thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(18136, 52661, 'fifty-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(18137, 68593, 'sixty-eight thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(18138, 79340, 'seventy-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(18139, 96850, 'ninety-six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18140, 19722, 'nineteen thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(18141, 81963, 'eighty-one thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(18142, 42237, 'forty-two thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(18143, 53259, 'fifty-three thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(18144, 8696, 'eight thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(18145, 89432, 'eighty-nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(18146, 34865, 'thirty-four thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(18147, 778, 'seven hundred seventy-eight');\nINSERT INTO t2 VALUES(18148, 3752, 'three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(18149, 80337, 'eighty thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(18150, 60257, 'sixty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(18151, 12644, 'twelve thousand six hundred forty-four');\nINSERT INTO t2 VALUES(18152, 22016, 'twenty-two thousand sixteen');\nINSERT INTO t2 VALUES(18153, 41847, 'forty-one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(18154, 55242, 'fifty-five thousand two hundred forty-two');\nINSERT INTO t2 VALUES(18155, 77675, 'seventy-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(18156, 93515, 'ninety-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(18157, 19247, 'nineteen thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(18158, 31076, 'thirty-one thousand seventy-six');\nINSERT INTO t2 VALUES(18159, 57615, 'fifty-seven thousand six hundred fifteen');\nINSERT INTO t2 VALUES(18160, 6157, 'six thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18161, 7705, 'seven thousand seven hundred five');\nINSERT INTO t2 VALUES(18162, 45019, 'forty-five thousand nineteen');\nINSERT INTO t2 VALUES(18163, 52243, 'fifty-two thousand two hundred forty-three');\nINSERT INTO t2 VALUES(18164, 72361, 'seventy-two thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(18165, 28395, 'twenty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(18166, 17535, 'seventeen thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(18167, 99667, 'ninety-nine thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(18168, 51057, 'fifty-one thousand fifty-seven');\nINSERT INTO t2 VALUES(18169, 65821, 'sixty-five thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(18170, 35024, 'thirty-five thousand twenty-four');\nINSERT INTO t2 VALUES(18171, 28036, 'twenty-eight thousand thirty-six');\nINSERT INTO t2 VALUES(18172, 9423, 'nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(18173, 676, 'six hundred seventy-six');\nINSERT INTO t2 VALUES(18174, 1979, 'one thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(18175, 92631, 'ninety-two thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(18176, 587, 'five hundred eighty-seven');\nINSERT INTO t2 VALUES(18177, 53312, 'fifty-three thousand three hundred twelve');\nINSERT INTO t2 VALUES(18178, 86244, 'eighty-six thousand two hundred forty-four');\nINSERT INTO t2 VALUES(18179, 47708, 'forty-seven thousand seven hundred eight');\nINSERT INTO t2 VALUES(18180, 69902, 'sixty-nine thousand nine hundred two');\nINSERT INTO t2 VALUES(18181, 18642, 'eighteen thousand six hundred forty-two');\nINSERT INTO t2 VALUES(18182, 3677, 'three thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(18183, 48693, 'forty-eight thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(18184, 54616, 'fifty-four thousand six hundred sixteen');\nINSERT INTO t2 VALUES(18185, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(18186, 26769, 'twenty-six thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(18187, 88681, 'eighty-eight thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(18188, 13297, 'thirteen thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(18189, 2813, 'two thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18190, 99334, 'ninety-nine thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(18191, 35489, 'thirty-five thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(18192, 83455, 'eighty-three thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(18193, 74751, 'seventy-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(18194, 31216, 'thirty-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(18195, 41458, 'forty-one thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(18196, 22365, 'twenty-two thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(18197, 28797, 'twenty-eight thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(18198, 70043, 'seventy thousand forty-three');\nINSERT INTO t2 VALUES(18199, 34360, 'thirty-four thousand three hundred sixty');\nINSERT INTO t2 VALUES(18200, 84768, 'eighty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(18201, 1763, 'one thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(18202, 17630, 'seventeen thousand six hundred thirty');\nINSERT INTO t2 VALUES(18203, 94790, 'ninety-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(18204, 52108, 'fifty-two thousand one hundred eight');\nINSERT INTO t2 VALUES(18205, 78884, 'seventy-eight thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(18206, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(18207, 6545, 'six thousand five hundred forty-five');\nINSERT INTO t2 VALUES(18208, 46144, 'forty-six thousand one hundred forty-four');\nINSERT INTO t2 VALUES(18209, 68943, 'sixty-eight thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(18210, 85902, 'eighty-five thousand nine hundred two');\nINSERT INTO t2 VALUES(18211, 36142, 'thirty-six thousand one hundred forty-two');\nINSERT INTO t2 VALUES(18212, 18879, 'eighteen thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(18213, 49729, 'forty-nine thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(18214, 77988, 'seventy-seven thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(18215, 54039, 'fifty-four thousand thirty-nine');\nINSERT INTO t2 VALUES(18216, 49744, 'forty-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(18217, 36567, 'thirty-six thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18218, 95884, 'ninety-five thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(18219, 36545, 'thirty-six thousand five hundred forty-five');\nINSERT INTO t2 VALUES(18220, 17832, 'seventeen thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18221, 4554, 'four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(18222, 91185, 'ninety-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(18223, 36481, 'thirty-six thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(18224, 91760, 'ninety-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(18225, 18298, 'eighteen thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(18226, 274, 'two hundred seventy-four');\nINSERT INTO t2 VALUES(18227, 19481, 'nineteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(18228, 87851, 'eighty-seven thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(18229, 29251, 'twenty-nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(18230, 67116, 'sixty-seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(18231, 17167, 'seventeen thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(18232, 45900, 'forty-five thousand nine hundred');\nINSERT INTO t2 VALUES(18233, 10692, 'ten thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(18234, 40811, 'forty thousand eight hundred eleven');\nINSERT INTO t2 VALUES(18235, 72354, 'seventy-two thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(18236, 71532, 'seventy-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(18237, 16272, 'sixteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(18238, 4062, 'four thousand sixty-two');\nINSERT INTO t2 VALUES(18239, 20263, 'twenty thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18240, 81813, 'eighty-one thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18241, 16476, 'sixteen thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(18242, 75110, 'seventy-five thousand one hundred ten');\nINSERT INTO t2 VALUES(18243, 99463, 'ninety-nine thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(18244, 73235, 'seventy-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(18245, 45277, 'forty-five thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(18246, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t2 VALUES(18247, 18211, 'eighteen thousand two hundred eleven');\nINSERT INTO t2 VALUES(18248, 91367, 'ninety-one thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(18249, 5333, 'five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(18250, 18915, 'eighteen thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(18251, 5699, 'five thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(18252, 40111, 'forty thousand one hundred eleven');\nINSERT INTO t2 VALUES(18253, 85893, 'eighty-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(18254, 41574, 'forty-one thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(18255, 84297, 'eighty-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(18256, 27290, 'twenty-seven thousand two hundred ninety');\nINSERT INTO t2 VALUES(18257, 69072, 'sixty-nine thousand seventy-two');\nINSERT INTO t2 VALUES(18258, 10164, 'ten thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(18259, 6548, 'six thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(18260, 20490, 'twenty thousand four hundred ninety');\nINSERT INTO t2 VALUES(18261, 67949, 'sixty-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(18262, 87172, 'eighty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(18263, 8892, 'eight thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(18264, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(18265, 46688, 'forty-six thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(18266, 87914, 'eighty-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(18267, 84136, 'eighty-four thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(18268, 71777, 'seventy-one thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(18269, 94267, 'ninety-four thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(18270, 63858, 'sixty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(18271, 92642, 'ninety-two thousand six hundred forty-two');\nINSERT INTO t2 VALUES(18272, 14729, 'fourteen thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(18273, 98973, 'ninety-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(18274, 48860, 'forty-eight thousand eight hundred sixty');\nINSERT INTO t2 VALUES(18275, 37651, 'thirty-seven thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(18276, 69811, 'sixty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(18277, 11237, 'eleven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(18278, 70313, 'seventy thousand three hundred thirteen');\nINSERT INTO t2 VALUES(18279, 65118, 'sixty-five thousand one hundred eighteen');\nINSERT INTO t2 VALUES(18280, 14955, 'fourteen thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(18281, 98985, 'ninety-eight thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(18282, 99399, 'ninety-nine thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(18283, 57169, 'fifty-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(18284, 1567, 'one thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18285, 27944, 'twenty-seven thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(18286, 36695, 'thirty-six thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(18287, 1291, 'one thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(18288, 73497, 'seventy-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18289, 37604, 'thirty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(18290, 7905, 'seven thousand nine hundred five');\nINSERT INTO t2 VALUES(18291, 64460, 'sixty-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(18292, 83021, 'eighty-three thousand twenty-one');\nINSERT INTO t2 VALUES(18293, 71975, 'seventy-one thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(18294, 70278, 'seventy thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(18295, 83557, 'eighty-three thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(18296, 3290, 'three thousand two hundred ninety');\nINSERT INTO t2 VALUES(18297, 16423, 'sixteen thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(18298, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t2 VALUES(18299, 40651, 'forty thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(18300, 25838, 'twenty-five thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(18301, 48834, 'forty-eight thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(18302, 23328, 'twenty-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(18303, 39680, 'thirty-nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(18304, 51819, 'fifty-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(18305, 18813, 'eighteen thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(18306, 97323, 'ninety-seven thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18307, 66364, 'sixty-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(18308, 39522, 'thirty-nine thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(18309, 77707, 'seventy-seven thousand seven hundred seven');\nINSERT INTO t2 VALUES(18310, 71715, 'seventy-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(18311, 33025, 'thirty-three thousand twenty-five');\nINSERT INTO t2 VALUES(18312, 79680, 'seventy-nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(18313, 18046, 'eighteen thousand forty-six');\nINSERT INTO t2 VALUES(18314, 49728, 'forty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(18315, 59022, 'fifty-nine thousand twenty-two');\nINSERT INTO t2 VALUES(18316, 9095, 'nine thousand ninety-five');\nINSERT INTO t2 VALUES(18317, 71199, 'seventy-one thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(18318, 30752, 'thirty thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(18319, 54095, 'fifty-four thousand ninety-five');\nINSERT INTO t2 VALUES(18320, 1270, 'one thousand two hundred seventy');\nINSERT INTO t2 VALUES(18321, 59571, 'fifty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(18322, 4220, 'four thousand two hundred twenty');\nINSERT INTO t2 VALUES(18323, 80585, 'eighty thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(18324, 49780, 'forty-nine thousand seven hundred eighty');\nINSERT INTO t2 VALUES(18325, 47903, 'forty-seven thousand nine hundred three');\nINSERT INTO t2 VALUES(18326, 25873, 'twenty-five thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(18327, 97236, 'ninety-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(18328, 34016, 'thirty-four thousand sixteen');\nINSERT INTO t2 VALUES(18329, 48672, 'forty-eight thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(18330, 23157, 'twenty-three thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18331, 29013, 'twenty-nine thousand thirteen');\nINSERT INTO t2 VALUES(18332, 73871, 'seventy-three thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(18333, 54368, 'fifty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(18334, 15501, 'fifteen thousand five hundred one');\nINSERT INTO t2 VALUES(18335, 27693, 'twenty-seven thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(18336, 53497, 'fifty-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18337, 54265, 'fifty-four thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(18338, 11577, 'eleven thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(18339, 69842, 'sixty-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(18340, 47179, 'forty-seven thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18341, 70405, 'seventy thousand four hundred five');\nINSERT INTO t2 VALUES(18342, 92551, 'ninety-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(18343, 95152, 'ninety-five thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(18344, 76207, 'seventy-six thousand two hundred seven');\nINSERT INTO t2 VALUES(18345, 12115, 'twelve thousand one hundred fifteen');\nINSERT INTO t2 VALUES(18346, 66037, 'sixty-six thousand thirty-seven');\nINSERT INTO t2 VALUES(18347, 10383, 'ten thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(18348, 73366, 'seventy-three thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(18349, 69571, 'sixty-nine thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(18350, 60840, 'sixty thousand eight hundred forty');\nINSERT INTO t2 VALUES(18351, 52305, 'fifty-two thousand three hundred five');\nINSERT INTO t2 VALUES(18352, 92931, 'ninety-two thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(18353, 79433, 'seventy-nine thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(18354, 24661, 'twenty-four thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(18355, 72030, 'seventy-two thousand thirty');\nINSERT INTO t2 VALUES(18356, 94222, 'ninety-four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(18357, 773, 'seven hundred seventy-three');\nINSERT INTO t2 VALUES(18358, 16424, 'sixteen thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(18359, 56226, 'fifty-six thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(18360, 731, 'seven hundred thirty-one');\nINSERT INTO t2 VALUES(18361, 10683, 'ten thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(18362, 31441, 'thirty-one thousand four hundred forty-one');\nINSERT INTO t2 VALUES(18363, 34988, 'thirty-four thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(18364, 36140, 'thirty-six thousand one hundred forty');\nINSERT INTO t2 VALUES(18365, 78345, 'seventy-eight thousand three hundred forty-five');\nINSERT INTO t2 VALUES(18366, 5815, 'five thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(18367, 83776, 'eighty-three thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(18368, 46842, 'forty-six thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(18369, 42829, 'forty-two thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(18370, 27079, 'twenty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(18371, 97533, 'ninety-seven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(18372, 9006, 'nine thousand six');\nINSERT INTO t2 VALUES(18373, 57559, 'fifty-seven thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(18374, 67778, 'sixty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(18375, 29581, 'twenty-nine thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(18376, 91225, 'ninety-one thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(18377, 95131, 'ninety-five thousand one hundred thirty-one');\nINSERT INTO t2 VALUES(18378, 52717, 'fifty-two thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(18379, 48972, 'forty-eight thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(18380, 453, 'four hundred fifty-three');\nINSERT INTO t2 VALUES(18381, 21128, 'twenty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(18382, 47788, 'forty-seven thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(18383, 99462, 'ninety-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(18384, 21760, 'twenty-one thousand seven hundred sixty');\nINSERT INTO t2 VALUES(18385, 36089, 'thirty-six thousand eighty-nine');\nINSERT INTO t2 VALUES(18386, 92991, 'ninety-two thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(18387, 48698, 'forty-eight thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(18388, 85285, 'eighty-five thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(18389, 32287, 'thirty-two thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(18390, 38926, 'thirty-eight thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(18391, 642, 'six hundred forty-two');\nINSERT INTO t2 VALUES(18392, 44543, 'forty-four thousand five hundred forty-three');\nINSERT INTO t2 VALUES(18393, 63281, 'sixty-three thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(18394, 112, 'one hundred twelve');\nINSERT INTO t2 VALUES(18395, 91476, 'ninety-one thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(18396, 82160, 'eighty-two thousand one hundred sixty');\nINSERT INTO t2 VALUES(18397, 25391, 'twenty-five thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(18398, 66435, 'sixty-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(18399, 96523, 'ninety-six thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(18400, 37965, 'thirty-seven thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(18401, 48181, 'forty-eight thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(18402, 40891, 'forty thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(18403, 20979, 'twenty thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(18404, 76332, 'seventy-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(18405, 73666, 'seventy-three thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(18406, 15137, 'fifteen thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(18407, 20201, 'twenty thousand two hundred one');\nINSERT INTO t2 VALUES(18408, 71520, 'seventy-one thousand five hundred twenty');\nINSERT INTO t2 VALUES(18409, 68896, 'sixty-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(18410, 77980, 'seventy-seven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18411, 42240, 'forty-two thousand two hundred forty');\nINSERT INTO t2 VALUES(18412, 73414, 'seventy-three thousand four hundred fourteen');\nINSERT INTO t2 VALUES(18413, 36228, 'thirty-six thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(18414, 53431, 'fifty-three thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(18415, 65419, 'sixty-five thousand four hundred nineteen');\nINSERT INTO t2 VALUES(18416, 12234, 'twelve thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(18417, 34417, 'thirty-four thousand four hundred seventeen');\nINSERT INTO t2 VALUES(18418, 22648, 'twenty-two thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(18419, 90857, 'ninety thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(18420, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(18421, 76857, 'seventy-six thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(18422, 52915, 'fifty-two thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(18423, 60994, 'sixty thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(18424, 58900, 'fifty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(18425, 49329, 'forty-nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(18426, 95885, 'ninety-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(18427, 8966, 'eight thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(18428, 20307, 'twenty thousand three hundred seven');\nINSERT INTO t2 VALUES(18429, 98936, 'ninety-eight thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(18430, 78825, 'seventy-eight thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(18431, 99762, 'ninety-nine thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(18432, 58314, 'fifty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(18433, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(18434, 44479, 'forty-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(18435, 8871, 'eight thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(18436, 46605, 'forty-six thousand six hundred five');\nINSERT INTO t2 VALUES(18437, 73824, 'seventy-three thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(18438, 67113, 'sixty-seven thousand one hundred thirteen');\nINSERT INTO t2 VALUES(18439, 15026, 'fifteen thousand twenty-six');\nINSERT INTO t2 VALUES(18440, 41522, 'forty-one thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(18441, 40006, 'forty thousand six');\nINSERT INTO t2 VALUES(18442, 24713, 'twenty-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(18443, 87002, 'eighty-seven thousand two');\nINSERT INTO t2 VALUES(18444, 77684, 'seventy-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(18445, 22088, 'twenty-two thousand eighty-eight');\nINSERT INTO t2 VALUES(18446, 41906, 'forty-one thousand nine hundred six');\nINSERT INTO t2 VALUES(18447, 81118, 'eighty-one thousand one hundred eighteen');\nINSERT INTO t2 VALUES(18448, 68019, 'sixty-eight thousand nineteen');\nINSERT INTO t2 VALUES(18449, 27091, 'twenty-seven thousand ninety-one');\nINSERT INTO t2 VALUES(18450, 269, 'two hundred sixty-nine');\nINSERT INTO t2 VALUES(18451, 45754, 'forty-five thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(18452, 52984, 'fifty-two thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(18453, 47739, 'forty-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18454, 92242, 'ninety-two thousand two hundred forty-two');\nINSERT INTO t2 VALUES(18455, 44980, 'forty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18456, 85263, 'eighty-five thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18457, 33523, 'thirty-three thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(18458, 61498, 'sixty-one thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(18459, 11967, 'eleven thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(18460, 86916, 'eighty-six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(18461, 66604, 'sixty-six thousand six hundred four');\nINSERT INTO t2 VALUES(18462, 11573, 'eleven thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(18463, 95539, 'ninety-five thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(18464, 63919, 'sixty-three thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(18465, 33303, 'thirty-three thousand three hundred three');\nINSERT INTO t2 VALUES(18466, 11044, 'eleven thousand forty-four');\nINSERT INTO t2 VALUES(18467, 42204, 'forty-two thousand two hundred four');\nINSERT INTO t2 VALUES(18468, 1980, 'one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18469, 91357, 'ninety-one thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(18470, 77608, 'seventy-seven thousand six hundred eight');\nINSERT INTO t2 VALUES(18471, 90179, 'ninety thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18472, 95179, 'ninety-five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18473, 19139, 'nineteen thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(18474, 72643, 'seventy-two thousand six hundred forty-three');\nINSERT INTO t2 VALUES(18475, 90378, 'ninety thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(18476, 45013, 'forty-five thousand thirteen');\nINSERT INTO t2 VALUES(18477, 40148, 'forty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(18478, 43707, 'forty-three thousand seven hundred seven');\nINSERT INTO t2 VALUES(18479, 71646, 'seventy-one thousand six hundred forty-six');\nINSERT INTO t2 VALUES(18480, 95245, 'ninety-five thousand two hundred forty-five');\nINSERT INTO t2 VALUES(18481, 43246, 'forty-three thousand two hundred forty-six');\nINSERT INTO t2 VALUES(18482, 365, 'three hundred sixty-five');\nINSERT INTO t2 VALUES(18483, 51969, 'fifty-one thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(18484, 5843, 'five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(18485, 3828, 'three thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(18486, 58379, 'fifty-eight thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(18487, 74200, 'seventy-four thousand two hundred');\nINSERT INTO t2 VALUES(18488, 59107, 'fifty-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(18489, 76795, 'seventy-six thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(18490, 48598, 'forty-eight thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18491, 91706, 'ninety-one thousand seven hundred six');\nINSERT INTO t2 VALUES(18492, 42898, 'forty-two thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(18493, 65592, 'sixty-five thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(18494, 96537, 'ninety-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(18495, 48672, 'forty-eight thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(18496, 23875, 'twenty-three thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(18497, 83166, 'eighty-three thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(18498, 42429, 'forty-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(18499, 18568, 'eighteen thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(18500, 57129, 'fifty-seven thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(18501, 61487, 'sixty-one thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(18502, 69362, 'sixty-nine thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(18503, 77196, 'seventy-seven thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(18504, 6345, 'six thousand three hundred forty-five');\nINSERT INTO t2 VALUES(18505, 29764, 'twenty-nine thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(18506, 64701, 'sixty-four thousand seven hundred one');\nINSERT INTO t2 VALUES(18507, 94106, 'ninety-four thousand one hundred six');\nINSERT INTO t2 VALUES(18508, 82139, 'eighty-two thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(18509, 13942, 'thirteen thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(18510, 54637, 'fifty-four thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(18511, 91858, 'ninety-one thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(18512, 22644, 'twenty-two thousand six hundred forty-four');\nINSERT INTO t2 VALUES(18513, 6650, 'six thousand six hundred fifty');\nINSERT INTO t2 VALUES(18514, 26503, 'twenty-six thousand five hundred three');\nINSERT INTO t2 VALUES(18515, 10175, 'ten thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(18516, 28465, 'twenty-eight thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(18517, 67619, 'sixty-seven thousand six hundred nineteen');\nINSERT INTO t2 VALUES(18518, 8101, 'eight thousand one hundred one');\nINSERT INTO t2 VALUES(18519, 51724, 'fifty-one thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(18520, 41982, 'forty-one thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(18521, 38074, 'thirty-eight thousand seventy-four');\nINSERT INTO t2 VALUES(18522, 65986, 'sixty-five thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(18523, 3129, 'three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(18524, 84377, 'eighty-four thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(18525, 65259, 'sixty-five thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(18526, 75261, 'seventy-five thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(18527, 65940, 'sixty-five thousand nine hundred forty');\nINSERT INTO t2 VALUES(18528, 59338, 'fifty-nine thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(18529, 5876, 'five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(18530, 20579, 'twenty thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(18531, 48540, 'forty-eight thousand five hundred forty');\nINSERT INTO t2 VALUES(18532, 32525, 'thirty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(18533, 88647, 'eighty-eight thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(18534, 95211, 'ninety-five thousand two hundred eleven');\nINSERT INTO t2 VALUES(18535, 27514, 'twenty-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(18536, 36100, 'thirty-six thousand one hundred');\nINSERT INTO t2 VALUES(18537, 94982, 'ninety-four thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(18538, 89385, 'eighty-nine thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(18539, 93106, 'ninety-three thousand one hundred six');\nINSERT INTO t2 VALUES(18540, 53853, 'fifty-three thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(18541, 92085, 'ninety-two thousand eighty-five');\nINSERT INTO t2 VALUES(18542, 56081, 'fifty-six thousand eighty-one');\nINSERT INTO t2 VALUES(18543, 97739, 'ninety-seven thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18544, 73183, 'seventy-three thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(18545, 12467, 'twelve thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(18546, 90255, 'ninety thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(18547, 85859, 'eighty-five thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(18548, 61442, 'sixty-one thousand four hundred forty-two');\nINSERT INTO t2 VALUES(18549, 16110, 'sixteen thousand one hundred ten');\nINSERT INTO t2 VALUES(18550, 78169, 'seventy-eight thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(18551, 23116, 'twenty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(18552, 20721, 'twenty thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(18553, 84712, 'eighty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(18554, 24409, 'twenty-four thousand four hundred nine');\nINSERT INTO t2 VALUES(18555, 77579, 'seventy-seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(18556, 21145, 'twenty-one thousand one hundred forty-five');\nINSERT INTO t2 VALUES(18557, 55837, 'fifty-five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(18558, 93883, 'ninety-three thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(18559, 38706, 'thirty-eight thousand seven hundred six');\nINSERT INTO t2 VALUES(18560, 57058, 'fifty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(18561, 36434, 'thirty-six thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(18562, 92663, 'ninety-two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(18563, 84145, 'eighty-four thousand one hundred forty-five');\nINSERT INTO t2 VALUES(18564, 71327, 'seventy-one thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(18565, 77240, 'seventy-seven thousand two hundred forty');\nINSERT INTO t2 VALUES(18566, 83331, 'eighty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(18567, 94907, 'ninety-four thousand nine hundred seven');\nINSERT INTO t2 VALUES(18568, 62003, 'sixty-two thousand three');\nINSERT INTO t2 VALUES(18569, 56659, 'fifty-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(18570, 97384, 'ninety-seven thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(18571, 68455, 'sixty-eight thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(18572, 29622, 'twenty-nine thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(18573, 55847, 'fifty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(18574, 26537, 'twenty-six thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(18575, 66035, 'sixty-six thousand thirty-five');\nINSERT INTO t2 VALUES(18576, 47454, 'forty-seven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(18577, 23839, 'twenty-three thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(18578, 69033, 'sixty-nine thousand thirty-three');\nINSERT INTO t2 VALUES(18579, 78914, 'seventy-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(18580, 50252, 'fifty thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(18581, 2307, 'two thousand three hundred seven');\nINSERT INTO t2 VALUES(18582, 58588, 'fifty-eight thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(18583, 98427, 'ninety-eight thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(18584, 1793, 'one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(18585, 62900, 'sixty-two thousand nine hundred');\nINSERT INTO t2 VALUES(18586, 82209, 'eighty-two thousand two hundred nine');\nINSERT INTO t2 VALUES(18587, 79054, 'seventy-nine thousand fifty-four');\nINSERT INTO t2 VALUES(18588, 21329, 'twenty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(18589, 8775, 'eight thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(18590, 67466, 'sixty-seven thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(18591, 65686, 'sixty-five thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(18592, 83934, 'eighty-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(18593, 26678, 'twenty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(18594, 63786, 'sixty-three thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(18595, 47475, 'forty-seven thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(18596, 19359, 'nineteen thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(18597, 55237, 'fifty-five thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(18598, 59231, 'fifty-nine thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(18599, 77603, 'seventy-seven thousand six hundred three');\nINSERT INTO t2 VALUES(18600, 61299, 'sixty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(18601, 93489, 'ninety-three thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(18602, 96309, 'ninety-six thousand three hundred nine');\nINSERT INTO t2 VALUES(18603, 90300, 'ninety thousand three hundred');\nINSERT INTO t2 VALUES(18604, 50215, 'fifty thousand two hundred fifteen');\nINSERT INTO t2 VALUES(18605, 67750, 'sixty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(18606, 28571, 'twenty-eight thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(18607, 61326, 'sixty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(18608, 84577, 'eighty-four thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(18609, 15631, 'fifteen thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(18610, 69316, 'sixty-nine thousand three hundred sixteen');\nINSERT INTO t2 VALUES(18611, 43954, 'forty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(18612, 34538, 'thirty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(18613, 97738, 'ninety-seven thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(18614, 40210, 'forty thousand two hundred ten');\nINSERT INTO t2 VALUES(18615, 6042, 'six thousand forty-two');\nINSERT INTO t2 VALUES(18616, 66239, 'sixty-six thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(18617, 62056, 'sixty-two thousand fifty-six');\nINSERT INTO t2 VALUES(18618, 1981, 'one thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(18619, 51704, 'fifty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(18620, 34157, 'thirty-four thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18621, 9763, 'nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(18622, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(18623, 20044, 'twenty thousand forty-four');\nINSERT INTO t2 VALUES(18624, 89128, 'eighty-nine thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(18625, 81508, 'eighty-one thousand five hundred eight');\nINSERT INTO t2 VALUES(18626, 3473, 'three thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(18627, 8503, 'eight thousand five hundred three');\nINSERT INTO t2 VALUES(18628, 13097, 'thirteen thousand ninety-seven');\nINSERT INTO t2 VALUES(18629, 39206, 'thirty-nine thousand two hundred six');\nINSERT INTO t2 VALUES(18630, 21739, 'twenty-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18631, 67295, 'sixty-seven thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(18632, 20358, 'twenty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(18633, 52274, 'fifty-two thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(18634, 53056, 'fifty-three thousand fifty-six');\nINSERT INTO t2 VALUES(18635, 80750, 'eighty thousand seven hundred fifty');\nINSERT INTO t2 VALUES(18636, 85084, 'eighty-five thousand eighty-four');\nINSERT INTO t2 VALUES(18637, 5926, 'five thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(18638, 87945, 'eighty-seven thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(18639, 96042, 'ninety-six thousand forty-two');\nINSERT INTO t2 VALUES(18640, 72083, 'seventy-two thousand eighty-three');\nINSERT INTO t2 VALUES(18641, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18642, 58251, 'fifty-eight thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(18643, 17566, 'seventeen thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(18644, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(18645, 98985, 'ninety-eight thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(18646, 16796, 'sixteen thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(18647, 39379, 'thirty-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(18648, 39380, 'thirty-nine thousand three hundred eighty');\nINSERT INTO t2 VALUES(18649, 82948, 'eighty-two thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(18650, 7854, 'seven thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(18651, 7308, 'seven thousand three hundred eight');\nINSERT INTO t2 VALUES(18652, 94650, 'ninety-four thousand six hundred fifty');\nINSERT INTO t2 VALUES(18653, 59034, 'fifty-nine thousand thirty-four');\nINSERT INTO t2 VALUES(18654, 43598, 'forty-three thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18655, 37405, 'thirty-seven thousand four hundred five');\nINSERT INTO t2 VALUES(18656, 22872, 'twenty-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18657, 24592, 'twenty-four thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(18658, 39243, 'thirty-nine thousand two hundred forty-three');\nINSERT INTO t2 VALUES(18659, 4120, 'four thousand one hundred twenty');\nINSERT INTO t2 VALUES(18660, 74950, 'seventy-four thousand nine hundred fifty');\nINSERT INTO t2 VALUES(18661, 83333, 'eighty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(18662, 83157, 'eighty-three thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(18663, 67567, 'sixty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(18664, 87579, 'eighty-seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(18665, 91246, 'ninety-one thousand two hundred forty-six');\nINSERT INTO t2 VALUES(18666, 66539, 'sixty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(18667, 83293, 'eighty-three thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(18668, 52342, 'fifty-two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(18669, 29678, 'twenty-nine thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(18670, 37210, 'thirty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(18671, 90276, 'ninety thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(18672, 44350, 'forty-four thousand three hundred fifty');\nINSERT INTO t2 VALUES(18673, 44241, 'forty-four thousand two hundred forty-one');\nINSERT INTO t2 VALUES(18674, 66086, 'sixty-six thousand eighty-six');\nINSERT INTO t2 VALUES(18675, 15280, 'fifteen thousand two hundred eighty');\nINSERT INTO t2 VALUES(18676, 84374, 'eighty-four thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(18677, 81132, 'eighty-one thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(18678, 39694, 'thirty-nine thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(18679, 81179, 'eighty-one thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(18680, 42861, 'forty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(18681, 93983, 'ninety-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(18682, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(18683, 12486, 'twelve thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(18684, 82452, 'eighty-two thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18685, 6399, 'six thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(18686, 58448, 'fifty-eight thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(18687, 22074, 'twenty-two thousand seventy-four');\nINSERT INTO t2 VALUES(18688, 24913, 'twenty-four thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(18689, 89605, 'eighty-nine thousand six hundred five');\nINSERT INTO t2 VALUES(18690, 86248, 'eighty-six thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(18691, 38484, 'thirty-eight thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(18692, 57865, 'fifty-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(18693, 49110, 'forty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(18694, 39104, 'thirty-nine thousand one hundred four');\nINSERT INTO t2 VALUES(18695, 73831, 'seventy-three thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(18696, 68340, 'sixty-eight thousand three hundred forty');\nINSERT INTO t2 VALUES(18697, 69172, 'sixty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(18698, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18699, 91381, 'ninety-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(18700, 16952, 'sixteen thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(18701, 50080, 'fifty thousand eighty');\nINSERT INTO t2 VALUES(18702, 36745, 'thirty-six thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(18703, 36373, 'thirty-six thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(18704, 24046, 'twenty-four thousand forty-six');\nINSERT INTO t2 VALUES(18705, 36647, 'thirty-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(18706, 39396, 'thirty-nine thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(18707, 35907, 'thirty-five thousand nine hundred seven');\nINSERT INTO t2 VALUES(18708, 96731, 'ninety-six thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(18709, 5654, 'five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(18710, 46087, 'forty-six thousand eighty-seven');\nINSERT INTO t2 VALUES(18711, 87602, 'eighty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(18712, 60015, 'sixty thousand fifteen');\nINSERT INTO t2 VALUES(18713, 23547, 'twenty-three thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(18714, 14953, 'fourteen thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(18715, 7654, 'seven thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(18716, 83481, 'eighty-three thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(18717, 98558, 'ninety-eight thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(18718, 30836, 'thirty thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(18719, 70424, 'seventy thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(18720, 84554, 'eighty-four thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(18721, 24047, 'twenty-four thousand forty-seven');\nINSERT INTO t2 VALUES(18722, 91840, 'ninety-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(18723, 39872, 'thirty-nine thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18724, 50273, 'fifty thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(18725, 50130, 'fifty thousand one hundred thirty');\nINSERT INTO t2 VALUES(18726, 88720, 'eighty-eight thousand seven hundred twenty');\nINSERT INTO t2 VALUES(18727, 65194, 'sixty-five thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(18728, 87478, 'eighty-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(18729, 77463, 'seventy-seven thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(18730, 90659, 'ninety thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(18731, 74621, 'seventy-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(18732, 96558, 'ninety-six thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(18733, 29388, 'twenty-nine thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(18734, 77584, 'seventy-seven thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(18735, 19517, 'nineteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18736, 29673, 'twenty-nine thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(18737, 11652, 'eleven thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(18738, 99629, 'ninety-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(18739, 98497, 'ninety-eight thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(18740, 70677, 'seventy thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(18741, 56885, 'fifty-six thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(18742, 50300, 'fifty thousand three hundred');\nINSERT INTO t2 VALUES(18743, 88670, 'eighty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(18744, 65077, 'sixty-five thousand seventy-seven');\nINSERT INTO t2 VALUES(18745, 2047, 'two thousand forty-seven');\nINSERT INTO t2 VALUES(18746, 61124, 'sixty-one thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(18747, 10165, 'ten thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(18748, 27550, 'twenty-seven thousand five hundred fifty');\nINSERT INTO t2 VALUES(18749, 34580, 'thirty-four thousand five hundred eighty');\nINSERT INTO t2 VALUES(18750, 99940, 'ninety-nine thousand nine hundred forty');\nINSERT INTO t2 VALUES(18751, 98411, 'ninety-eight thousand four hundred eleven');\nINSERT INTO t2 VALUES(18752, 97643, 'ninety-seven thousand six hundred forty-three');\nINSERT INTO t2 VALUES(18753, 6033, 'six thousand thirty-three');\nINSERT INTO t2 VALUES(18754, 25087, 'twenty-five thousand eighty-seven');\nINSERT INTO t2 VALUES(18755, 29830, 'twenty-nine thousand eight hundred thirty');\nINSERT INTO t2 VALUES(18756, 30176, 'thirty thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(18757, 81701, 'eighty-one thousand seven hundred one');\nINSERT INTO t2 VALUES(18758, 82815, 'eighty-two thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(18759, 34076, 'thirty-four thousand seventy-six');\nINSERT INTO t2 VALUES(18760, 93687, 'ninety-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(18761, 9092, 'nine thousand ninety-two');\nINSERT INTO t2 VALUES(18762, 13389, 'thirteen thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(18763, 249, 'two hundred forty-nine');\nINSERT INTO t2 VALUES(18764, 51285, 'fifty-one thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(18765, 21602, 'twenty-one thousand six hundred two');\nINSERT INTO t2 VALUES(18766, 11, 'eleven');\nINSERT INTO t2 VALUES(18767, 6955, 'six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(18768, 34289, 'thirty-four thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(18769, 3155, 'three thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(18770, 45927, 'forty-five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(18771, 45515, 'forty-five thousand five hundred fifteen');\nINSERT INTO t2 VALUES(18772, 5901, 'five thousand nine hundred one');\nINSERT INTO t2 VALUES(18773, 29983, 'twenty-nine thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(18774, 3029, 'three thousand twenty-nine');\nINSERT INTO t2 VALUES(18775, 5043, 'five thousand forty-three');\nINSERT INTO t2 VALUES(18776, 53633, 'fifty-three thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(18777, 65066, 'sixty-five thousand sixty-six');\nINSERT INTO t2 VALUES(18778, 73856, 'seventy-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(18779, 83138, 'eighty-three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(18780, 80891, 'eighty thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(18781, 9830, 'nine thousand eight hundred thirty');\nINSERT INTO t2 VALUES(18782, 41074, 'forty-one thousand seventy-four');\nINSERT INTO t2 VALUES(18783, 85980, 'eighty-five thousand nine hundred eighty');\nINSERT INTO t2 VALUES(18784, 75946, 'seventy-five thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(18785, 977, 'nine hundred seventy-seven');\nINSERT INTO t2 VALUES(18786, 93832, 'ninety-three thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18787, 68079, 'sixty-eight thousand seventy-nine');\nINSERT INTO t2 VALUES(18788, 78524, 'seventy-eight thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(18789, 66498, 'sixty-six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(18790, 10305, 'ten thousand three hundred five');\nINSERT INTO t2 VALUES(18791, 47656, 'forty-seven thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(18792, 62053, 'sixty-two thousand fifty-three');\nINSERT INTO t2 VALUES(18793, 514, 'five hundred fourteen');\nINSERT INTO t2 VALUES(18794, 46264, 'forty-six thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(18795, 87502, 'eighty-seven thousand five hundred two');\nINSERT INTO t2 VALUES(18796, 38452, 'thirty-eight thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18797, 35515, 'thirty-five thousand five hundred fifteen');\nINSERT INTO t2 VALUES(18798, 40423, 'forty thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(18799, 99524, 'ninety-nine thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(18800, 77832, 'seventy-seven thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18801, 71463, 'seventy-one thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(18802, 41421, 'forty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(18803, 72748, 'seventy-two thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(18804, 19888, 'nineteen thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(18805, 89845, 'eighty-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(18806, 29159, 'twenty-nine thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(18807, 97771, 'ninety-seven thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(18808, 15300, 'fifteen thousand three hundred');\nINSERT INTO t2 VALUES(18809, 37323, 'thirty-seven thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18810, 6598, 'six thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18811, 56937, 'fifty-six thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(18812, 34564, 'thirty-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(18813, 46600, 'forty-six thousand six hundred');\nINSERT INTO t2 VALUES(18814, 26017, 'twenty-six thousand seventeen');\nINSERT INTO t2 VALUES(18815, 41326, 'forty-one thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(18816, 15241, 'fifteen thousand two hundred forty-one');\nINSERT INTO t2 VALUES(18817, 42026, 'forty-two thousand twenty-six');\nINSERT INTO t2 VALUES(18818, 59163, 'fifty-nine thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(18819, 38012, 'thirty-eight thousand twelve');\nINSERT INTO t2 VALUES(18820, 54765, 'fifty-four thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(18821, 99795, 'ninety-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(18822, 99092, 'ninety-nine thousand ninety-two');\nINSERT INTO t2 VALUES(18823, 8715, 'eight thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(18824, 73440, 'seventy-three thousand four hundred forty');\nINSERT INTO t2 VALUES(18825, 71756, 'seventy-one thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(18826, 8910, 'eight thousand nine hundred ten');\nINSERT INTO t2 VALUES(18827, 3117, 'three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(18828, 16094, 'sixteen thousand ninety-four');\nINSERT INTO t2 VALUES(18829, 83916, 'eighty-three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(18830, 17671, 'seventeen thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(18831, 878, 'eight hundred seventy-eight');\nINSERT INTO t2 VALUES(18832, 10788, 'ten thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(18833, 97871, 'ninety-seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(18834, 27623, 'twenty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(18835, 94876, 'ninety-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(18836, 3106, 'three thousand one hundred six');\nINSERT INTO t2 VALUES(18837, 39224, 'thirty-nine thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(18838, 58444, 'fifty-eight thousand four hundred forty-four');\nINSERT INTO t2 VALUES(18839, 14452, 'fourteen thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18840, 29211, 'twenty-nine thousand two hundred eleven');\nINSERT INTO t2 VALUES(18841, 35892, 'thirty-five thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(18842, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(18843, 87443, 'eighty-seven thousand four hundred forty-three');\nINSERT INTO t2 VALUES(18844, 68228, 'sixty-eight thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(18845, 37597, 'thirty-seven thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(18846, 61031, 'sixty-one thousand thirty-one');\nINSERT INTO t2 VALUES(18847, 33517, 'thirty-three thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18848, 90411, 'ninety thousand four hundred eleven');\nINSERT INTO t2 VALUES(18849, 58083, 'fifty-eight thousand eighty-three');\nINSERT INTO t2 VALUES(18850, 17349, 'seventeen thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(18851, 84115, 'eighty-four thousand one hundred fifteen');\nINSERT INTO t2 VALUES(18852, 79451, 'seventy-nine thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(18853, 70685, 'seventy thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(18854, 53320, 'fifty-three thousand three hundred twenty');\nINSERT INTO t2 VALUES(18855, 36845, 'thirty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(18856, 18337, 'eighteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(18857, 97153, 'ninety-seven thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(18858, 79596, 'seventy-nine thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(18859, 29565, 'twenty-nine thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(18860, 39715, 'thirty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(18861, 45640, 'forty-five thousand six hundred forty');\nINSERT INTO t2 VALUES(18862, 87335, 'eighty-seven thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(18863, 60625, 'sixty thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(18864, 15626, 'fifteen thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(18865, 92850, 'ninety-two thousand eight hundred fifty');\nINSERT INTO t2 VALUES(18866, 42716, 'forty-two thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(18867, 52742, 'fifty-two thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(18868, 55667, 'fifty-five thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(18869, 19032, 'nineteen thousand thirty-two');\nINSERT INTO t2 VALUES(18870, 99178, 'ninety-nine thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(18871, 51263, 'fifty-one thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18872, 91787, 'ninety-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(18873, 53781, 'fifty-three thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(18874, 52400, 'fifty-two thousand four hundred');\nINSERT INTO t2 VALUES(18875, 62631, 'sixty-two thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(18876, 63636, 'sixty-three thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(18877, 29864, 'twenty-nine thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(18878, 22760, 'twenty-two thousand seven hundred sixty');\nINSERT INTO t2 VALUES(18879, 40055, 'forty thousand fifty-five');\nINSERT INTO t2 VALUES(18880, 48697, 'forty-eight thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(18881, 38560, 'thirty-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(18882, 20775, 'twenty thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(18883, 42998, 'forty-two thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(18884, 80624, 'eighty thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(18885, 41739, 'forty-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(18886, 14934, 'fourteen thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(18887, 12255, 'twelve thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(18888, 81374, 'eighty-one thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(18889, 34287, 'thirty-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(18890, 12624, 'twelve thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(18891, 64354, 'sixty-four thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(18892, 52825, 'fifty-two thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(18893, 19958, 'nineteen thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(18894, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t2 VALUES(18895, 9671, 'nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(18896, 96751, 'ninety-six thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(18897, 24420, 'twenty-four thousand four hundred twenty');\nINSERT INTO t2 VALUES(18898, 68507, 'sixty-eight thousand five hundred seven');\nINSERT INTO t2 VALUES(18899, 82598, 'eighty-two thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(18900, 12017, 'twelve thousand seventeen');\nINSERT INTO t2 VALUES(18901, 64991, 'sixty-four thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(18902, 52247, 'fifty-two thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(18903, 76658, 'seventy-six thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(18904, 77452, 'seventy-seven thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(18905, 63547, 'sixty-three thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(18906, 18299, 'eighteen thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(18907, 83659, 'eighty-three thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(18908, 95758, 'ninety-five thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(18909, 54484, 'fifty-four thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(18910, 8547, 'eight thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(18911, 55616, 'fifty-five thousand six hundred sixteen');\nINSERT INTO t2 VALUES(18912, 22436, 'twenty-two thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(18913, 56354, 'fifty-six thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(18914, 48276, 'forty-eight thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(18915, 26876, 'twenty-six thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(18916, 8676, 'eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(18917, 69218, 'sixty-nine thousand two hundred eighteen');\nINSERT INTO t2 VALUES(18918, 77478, 'seventy-seven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(18919, 59658, 'fifty-nine thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(18920, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t2 VALUES(18921, 35129, 'thirty-five thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(18922, 26263, 'twenty-six thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(18923, 80335, 'eighty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(18924, 39566, 'thirty-nine thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(18925, 99649, 'ninety-nine thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(18926, 46261, 'forty-six thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(18927, 3305, 'three thousand three hundred five');\nINSERT INTO t2 VALUES(18928, 14787, 'fourteen thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(18929, 39940, 'thirty-nine thousand nine hundred forty');\nINSERT INTO t2 VALUES(18930, 17261, 'seventeen thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(18931, 49417, 'forty-nine thousand four hundred seventeen');\nINSERT INTO t2 VALUES(18932, 32668, 'thirty-two thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(18933, 31290, 'thirty-one thousand two hundred ninety');\nINSERT INTO t2 VALUES(18934, 44232, 'forty-four thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(18935, 50531, 'fifty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(18936, 65895, 'sixty-five thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(18937, 52227, 'fifty-two thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(18938, 75235, 'seventy-five thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(18939, 45151, 'forty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(18940, 44494, 'forty-four thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(18941, 65286, 'sixty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(18942, 49716, 'forty-nine thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(18943, 45708, 'forty-five thousand seven hundred eight');\nINSERT INTO t2 VALUES(18944, 9136, 'nine thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(18945, 21538, 'twenty-one thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(18946, 4381, 'four thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(18947, 49958, 'forty-nine thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(18948, 5912, 'five thousand nine hundred twelve');\nINSERT INTO t2 VALUES(18949, 85077, 'eighty-five thousand seventy-seven');\nINSERT INTO t2 VALUES(18950, 1854, 'one thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(18951, 89035, 'eighty-nine thousand thirty-five');\nINSERT INTO t2 VALUES(18952, 64295, 'sixty-four thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(18953, 85437, 'eighty-five thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(18954, 82909, 'eighty-two thousand nine hundred nine');\nINSERT INTO t2 VALUES(18955, 20692, 'twenty thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(18956, 25026, 'twenty-five thousand twenty-six');\nINSERT INTO t2 VALUES(18957, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t2 VALUES(18958, 29832, 'twenty-nine thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(18959, 12228, 'twelve thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(18960, 37710, 'thirty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(18961, 27001, 'twenty-seven thousand one');\nINSERT INTO t2 VALUES(18962, 54140, 'fifty-four thousand one hundred forty');\nINSERT INTO t2 VALUES(18963, 77872, 'seventy-seven thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(18964, 34254, 'thirty-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(18965, 12869, 'twelve thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(18966, 53837, 'fifty-three thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(18967, 44302, 'forty-four thousand three hundred two');\nINSERT INTO t2 VALUES(18968, 71988, 'seventy-one thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(18969, 59052, 'fifty-nine thousand fifty-two');\nINSERT INTO t2 VALUES(18970, 81771, 'eighty-one thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(18971, 65920, 'sixty-five thousand nine hundred twenty');\nINSERT INTO t2 VALUES(18972, 20014, 'twenty thousand fourteen');\nINSERT INTO t2 VALUES(18973, 58262, 'fifty-eight thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(18974, 4498, 'four thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(18975, 45523, 'forty-five thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(18976, 26741, 'twenty-six thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(18977, 90323, 'ninety thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18978, 95532, 'ninety-five thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(18979, 11494, 'eleven thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(18980, 51732, 'fifty-one thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(18981, 64287, 'sixty-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(18982, 87066, 'eighty-seven thousand sixty-six');\nINSERT INTO t2 VALUES(18983, 58939, 'fifty-eight thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(18984, 60175, 'sixty thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(18985, 4656, 'four thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(18986, 44600, 'forty-four thousand six hundred');\nINSERT INTO t2 VALUES(18987, 55426, 'fifty-five thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(18988, 59201, 'fifty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(18989, 57906, 'fifty-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(18990, 32790, 'thirty-two thousand seven hundred ninety');\nINSERT INTO t2 VALUES(18991, 51625, 'fifty-one thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(18992, 38843, 'thirty-eight thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(18993, 88356, 'eighty-eight thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(18994, 14911, 'fourteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(18995, 6240, 'six thousand two hundred forty');\nINSERT INTO t2 VALUES(18996, 8196, 'eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(18997, 69323, 'sixty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(18998, 21472, 'twenty-one thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(18999, 42759, 'forty-two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(19000, 95694, 'ninety-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(19001, 7868, 'seven thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(19002, 56355, 'fifty-six thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19003, 84603, 'eighty-four thousand six hundred three');\nINSERT INTO t2 VALUES(19004, 36516, 'thirty-six thousand five hundred sixteen');\nINSERT INTO t2 VALUES(19005, 47060, 'forty-seven thousand sixty');\nINSERT INTO t2 VALUES(19006, 5579, 'five thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(19007, 97001, 'ninety-seven thousand one');\nINSERT INTO t2 VALUES(19008, 3206, 'three thousand two hundred six');\nINSERT INTO t2 VALUES(19009, 84535, 'eighty-four thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(19010, 63355, 'sixty-three thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19011, 20955, 'twenty thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(19012, 68146, 'sixty-eight thousand one hundred forty-six');\nINSERT INTO t2 VALUES(19013, 35059, 'thirty-five thousand fifty-nine');\nINSERT INTO t2 VALUES(19014, 36380, 'thirty-six thousand three hundred eighty');\nINSERT INTO t2 VALUES(19015, 26685, 'twenty-six thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(19016, 18344, 'eighteen thousand three hundred forty-four');\nINSERT INTO t2 VALUES(19017, 33545, 'thirty-three thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19018, 41479, 'forty-one thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(19019, 19622, 'nineteen thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(19020, 83640, 'eighty-three thousand six hundred forty');\nINSERT INTO t2 VALUES(19021, 33865, 'thirty-three thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(19022, 2777, 'two thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(19023, 45928, 'forty-five thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(19024, 67567, 'sixty-seven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(19025, 89509, 'eighty-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(19026, 14363, 'fourteen thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(19027, 13142, 'thirteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(19028, 74945, 'seventy-four thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(19029, 30508, 'thirty thousand five hundred eight');\nINSERT INTO t2 VALUES(19030, 41484, 'forty-one thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(19031, 3995, 'three thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19032, 54071, 'fifty-four thousand seventy-one');\nINSERT INTO t2 VALUES(19033, 66377, 'sixty-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(19034, 18931, 'eighteen thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(19035, 81728, 'eighty-one thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(19036, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(19037, 63077, 'sixty-three thousand seventy-seven');\nINSERT INTO t2 VALUES(19038, 75760, 'seventy-five thousand seven hundred sixty');\nINSERT INTO t2 VALUES(19039, 45176, 'forty-five thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(19040, 49495, 'forty-nine thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(19041, 23953, 'twenty-three thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(19042, 30807, 'thirty thousand eight hundred seven');\nINSERT INTO t2 VALUES(19043, 84432, 'eighty-four thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(19044, 6884, 'six thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(19045, 71966, 'seventy-one thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(19046, 65569, 'sixty-five thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(19047, 15617, 'fifteen thousand six hundred seventeen');\nINSERT INTO t2 VALUES(19048, 49244, 'forty-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(19049, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t2 VALUES(19050, 51806, 'fifty-one thousand eight hundred six');\nINSERT INTO t2 VALUES(19051, 53389, 'fifty-three thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(19052, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t2 VALUES(19053, 63209, 'sixty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(19054, 9826, 'nine thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(19055, 75631, 'seventy-five thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(19056, 15555, 'fifteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(19057, 79187, 'seventy-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(19058, 75915, 'seventy-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(19059, 33512, 'thirty-three thousand five hundred twelve');\nINSERT INTO t2 VALUES(19060, 22996, 'twenty-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(19061, 20687, 'twenty thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(19062, 37828, 'thirty-seven thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(19063, 46900, 'forty-six thousand nine hundred');\nINSERT INTO t2 VALUES(19064, 25811, 'twenty-five thousand eight hundred eleven');\nINSERT INTO t2 VALUES(19065, 93443, 'ninety-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(19066, 53314, 'fifty-three thousand three hundred fourteen');\nINSERT INTO t2 VALUES(19067, 19042, 'nineteen thousand forty-two');\nINSERT INTO t2 VALUES(19068, 80681, 'eighty thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(19069, 62655, 'sixty-two thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(19070, 64478, 'sixty-four thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(19071, 93568, 'ninety-three thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(19072, 71184, 'seventy-one thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(19073, 46349, 'forty-six thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(19074, 17332, 'seventeen thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(19075, 3078, 'three thousand seventy-eight');\nINSERT INTO t2 VALUES(19076, 70995, 'seventy thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19077, 5056, 'five thousand fifty-six');\nINSERT INTO t2 VALUES(19078, 68252, 'sixty-eight thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(19079, 6002, 'six thousand two');\nINSERT INTO t2 VALUES(19080, 50714, 'fifty thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(19081, 12655, 'twelve thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(19082, 44405, 'forty-four thousand four hundred five');\nINSERT INTO t2 VALUES(19083, 66729, 'sixty-six thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(19084, 83802, 'eighty-three thousand eight hundred two');\nINSERT INTO t2 VALUES(19085, 88524, 'eighty-eight thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(19086, 53687, 'fifty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(19087, 20075, 'twenty thousand seventy-five');\nINSERT INTO t2 VALUES(19088, 23867, 'twenty-three thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(19089, 45296, 'forty-five thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(19090, 68474, 'sixty-eight thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(19091, 64963, 'sixty-four thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(19092, 63629, 'sixty-three thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(19093, 68918, 'sixty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(19094, 84979, 'eighty-four thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(19095, 46533, 'forty-six thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(19096, 5738, 'five thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19097, 64281, 'sixty-four thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(19098, 23618, 'twenty-three thousand six hundred eighteen');\nINSERT INTO t2 VALUES(19099, 18092, 'eighteen thousand ninety-two');\nINSERT INTO t2 VALUES(19100, 91857, 'ninety-one thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(19101, 86699, 'eighty-six thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(19102, 77769, 'seventy-seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(19103, 53988, 'fifty-three thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(19104, 51167, 'fifty-one thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(19105, 621, 'six hundred twenty-one');\nINSERT INTO t2 VALUES(19106, 73178, 'seventy-three thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(19107, 35166, 'thirty-five thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(19108, 6609, 'six thousand six hundred nine');\nINSERT INTO t2 VALUES(19109, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(19110, 15511, 'fifteen thousand five hundred eleven');\nINSERT INTO t2 VALUES(19111, 53648, 'fifty-three thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(19112, 83729, 'eighty-three thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(19113, 55438, 'fifty-five thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(19114, 61437, 'sixty-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(19115, 28033, 'twenty-eight thousand thirty-three');\nINSERT INTO t2 VALUES(19116, 33323, 'thirty-three thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(19117, 4828, 'four thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(19118, 47205, 'forty-seven thousand two hundred five');\nINSERT INTO t2 VALUES(19119, 58332, 'fifty-eight thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(19120, 41066, 'forty-one thousand sixty-six');\nINSERT INTO t2 VALUES(19121, 94989, 'ninety-four thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(19122, 94426, 'ninety-four thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(19123, 22059, 'twenty-two thousand fifty-nine');\nINSERT INTO t2 VALUES(19124, 91133, 'ninety-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19125, 92327, 'ninety-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(19126, 51599, 'fifty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(19127, 43984, 'forty-three thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(19128, 30427, 'thirty thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(19129, 75376, 'seventy-five thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(19130, 69139, 'sixty-nine thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(19131, 4525, 'four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(19132, 54018, 'fifty-four thousand eighteen');\nINSERT INTO t2 VALUES(19133, 47735, 'forty-seven thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(19134, 11168, 'eleven thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(19135, 70787, 'seventy thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(19136, 84789, 'eighty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(19137, 27344, 'twenty-seven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(19138, 38401, 'thirty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(19139, 88983, 'eighty-eight thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(19140, 59937, 'fifty-nine thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(19141, 97464, 'ninety-seven thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(19142, 27361, 'twenty-seven thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(19143, 68881, 'sixty-eight thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(19144, 93728, 'ninety-three thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(19145, 67674, 'sixty-seven thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(19146, 60647, 'sixty thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19147, 47812, 'forty-seven thousand eight hundred twelve');\nINSERT INTO t2 VALUES(19148, 52620, 'fifty-two thousand six hundred twenty');\nINSERT INTO t2 VALUES(19149, 55378, 'fifty-five thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(19150, 1983, 'one thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(19151, 55759, 'fifty-five thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(19152, 51276, 'fifty-one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(19153, 2656, 'two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(19154, 21718, 'twenty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(19155, 81395, 'eighty-one thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(19156, 45772, 'forty-five thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(19157, 40801, 'forty thousand eight hundred one');\nINSERT INTO t2 VALUES(19158, 61516, 'sixty-one thousand five hundred sixteen');\nINSERT INTO t2 VALUES(19159, 98103, 'ninety-eight thousand one hundred three');\nINSERT INTO t2 VALUES(19160, 92758, 'ninety-two thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(19161, 78281, 'seventy-eight thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(19162, 81014, 'eighty-one thousand fourteen');\nINSERT INTO t2 VALUES(19163, 43639, 'forty-three thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(19164, 56325, 'fifty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(19165, 16505, 'sixteen thousand five hundred five');\nINSERT INTO t2 VALUES(19166, 99756, 'ninety-nine thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(19167, 76540, 'seventy-six thousand five hundred forty');\nINSERT INTO t2 VALUES(19168, 79601, 'seventy-nine thousand six hundred one');\nINSERT INTO t2 VALUES(19169, 32571, 'thirty-two thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(19170, 53496, 'fifty-three thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(19171, 52103, 'fifty-two thousand one hundred three');\nINSERT INTO t2 VALUES(19172, 48441, 'forty-eight thousand four hundred forty-one');\nINSERT INTO t2 VALUES(19173, 11183, 'eleven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(19174, 11999, 'eleven thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(19175, 64784, 'sixty-four thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(19176, 57648, 'fifty-seven thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(19177, 93896, 'ninety-three thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(19178, 86705, 'eighty-six thousand seven hundred five');\nINSERT INTO t2 VALUES(19179, 56557, 'fifty-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19180, 85082, 'eighty-five thousand eighty-two');\nINSERT INTO t2 VALUES(19181, 44066, 'forty-four thousand sixty-six');\nINSERT INTO t2 VALUES(19182, 79643, 'seventy-nine thousand six hundred forty-three');\nINSERT INTO t2 VALUES(19183, 26669, 'twenty-six thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(19184, 7086, 'seven thousand eighty-six');\nINSERT INTO t2 VALUES(19185, 72203, 'seventy-two thousand two hundred three');\nINSERT INTO t2 VALUES(19186, 26621, 'twenty-six thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(19187, 35360, 'thirty-five thousand three hundred sixty');\nINSERT INTO t2 VALUES(19188, 25153, 'twenty-five thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(19189, 89327, 'eighty-nine thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(19190, 14725, 'fourteen thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(19191, 4851, 'four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(19192, 51849, 'fifty-one thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(19193, 43102, 'forty-three thousand one hundred two');\nINSERT INTO t2 VALUES(19194, 43324, 'forty-three thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(19195, 17926, 'seventeen thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(19196, 92550, 'ninety-two thousand five hundred fifty');\nINSERT INTO t2 VALUES(19197, 43796, 'forty-three thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19198, 40213, 'forty thousand two hundred thirteen');\nINSERT INTO t2 VALUES(19199, 61732, 'sixty-one thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(19200, 205, 'two hundred five');\nINSERT INTO t2 VALUES(19201, 10938, 'ten thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(19202, 24595, 'twenty-four thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(19203, 24242, 'twenty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(19204, 9634, 'nine thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(19205, 47434, 'forty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(19206, 39636, 'thirty-nine thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(19207, 9980, 'nine thousand nine hundred eighty');\nINSERT INTO t2 VALUES(19208, 14582, 'fourteen thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(19209, 67735, 'sixty-seven thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(19210, 64889, 'sixty-four thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(19211, 96877, 'ninety-six thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(19212, 19382, 'nineteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19213, 48212, 'forty-eight thousand two hundred twelve');\nINSERT INTO t2 VALUES(19214, 48582, 'forty-eight thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(19215, 24328, 'twenty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(19216, 23197, 'twenty-three thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(19217, 98912, 'ninety-eight thousand nine hundred twelve');\nINSERT INTO t2 VALUES(19218, 48167, 'forty-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(19219, 25883, 'twenty-five thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(19220, 54818, 'fifty-four thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(19221, 40567, 'forty thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(19222, 77049, 'seventy-seven thousand forty-nine');\nINSERT INTO t2 VALUES(19223, 33584, 'thirty-three thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(19224, 5195, 'five thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(19225, 74944, 'seventy-four thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(19226, 69132, 'sixty-nine thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19227, 77605, 'seventy-seven thousand six hundred five');\nINSERT INTO t2 VALUES(19228, 70128, 'seventy thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(19229, 30240, 'thirty thousand two hundred forty');\nINSERT INTO t2 VALUES(19230, 1878, 'one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(19231, 40839, 'forty thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(19232, 4747, 'four thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(19233, 50732, 'fifty thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(19234, 8809, 'eight thousand eight hundred nine');\nINSERT INTO t2 VALUES(19235, 80568, 'eighty thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(19236, 86070, 'eighty-six thousand seventy');\nINSERT INTO t2 VALUES(19237, 38015, 'thirty-eight thousand fifteen');\nINSERT INTO t2 VALUES(19238, 89633, 'eighty-nine thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(19239, 37092, 'thirty-seven thousand ninety-two');\nINSERT INTO t2 VALUES(19240, 2970, 'two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(19241, 69240, 'sixty-nine thousand two hundred forty');\nINSERT INTO t2 VALUES(19242, 91051, 'ninety-one thousand fifty-one');\nINSERT INTO t2 VALUES(19243, 17647, 'seventeen thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19244, 91738, 'ninety-one thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19245, 26665, 'twenty-six thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(19246, 70403, 'seventy thousand four hundred three');\nINSERT INTO t2 VALUES(19247, 75347, 'seventy-five thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(19248, 56070, 'fifty-six thousand seventy');\nINSERT INTO t2 VALUES(19249, 7900, 'seven thousand nine hundred');\nINSERT INTO t2 VALUES(19250, 28888, 'twenty-eight thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(19251, 65215, 'sixty-five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(19252, 55049, 'fifty-five thousand forty-nine');\nINSERT INTO t2 VALUES(19253, 77193, 'seventy-seven thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(19254, 61672, 'sixty-one thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19255, 65044, 'sixty-five thousand forty-four');\nINSERT INTO t2 VALUES(19256, 49607, 'forty-nine thousand six hundred seven');\nINSERT INTO t2 VALUES(19257, 65861, 'sixty-five thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(19258, 34911, 'thirty-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(19259, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(19260, 36633, 'thirty-six thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(19261, 19044, 'nineteen thousand forty-four');\nINSERT INTO t2 VALUES(19262, 62796, 'sixty-two thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19263, 2099, 'two thousand ninety-nine');\nINSERT INTO t2 VALUES(19264, 21442, 'twenty-one thousand four hundred forty-two');\nINSERT INTO t2 VALUES(19265, 1105, 'one thousand one hundred five');\nINSERT INTO t2 VALUES(19266, 9088, 'nine thousand eighty-eight');\nINSERT INTO t2 VALUES(19267, 32553, 'thirty-two thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(19268, 45639, 'forty-five thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(19269, 83968, 'eighty-three thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(19270, 74415, 'seventy-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(19271, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t2 VALUES(19272, 83611, 'eighty-three thousand six hundred eleven');\nINSERT INTO t2 VALUES(19273, 72558, 'seventy-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(19274, 70563, 'seventy thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(19275, 89775, 'eighty-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(19276, 30899, 'thirty thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(19277, 36201, 'thirty-six thousand two hundred one');\nINSERT INTO t2 VALUES(19278, 11355, 'eleven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19279, 11681, 'eleven thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(19280, 51729, 'fifty-one thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(19281, 9610, 'nine thousand six hundred ten');\nINSERT INTO t2 VALUES(19282, 76630, 'seventy-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(19283, 54242, 'fifty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(19284, 43089, 'forty-three thousand eighty-nine');\nINSERT INTO t2 VALUES(19285, 20028, 'twenty thousand twenty-eight');\nINSERT INTO t2 VALUES(19286, 44382, 'forty-four thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19287, 24297, 'twenty-four thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(19288, 42826, 'forty-two thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(19289, 32397, 'thirty-two thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(19290, 27360, 'twenty-seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(19291, 68466, 'sixty-eight thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(19292, 43800, 'forty-three thousand eight hundred');\nINSERT INTO t2 VALUES(19293, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t2 VALUES(19294, 96719, 'ninety-six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(19295, 22882, 'twenty-two thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(19296, 56150, 'fifty-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(19297, 7635, 'seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(19298, 96949, 'ninety-six thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(19299, 48472, 'forty-eight thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(19300, 50260, 'fifty thousand two hundred sixty');\nINSERT INTO t2 VALUES(19301, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t2 VALUES(19302, 67692, 'sixty-seven thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(19303, 23852, 'twenty-three thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(19304, 43309, 'forty-three thousand three hundred nine');\nINSERT INTO t2 VALUES(19305, 1511, 'one thousand five hundred eleven');\nINSERT INTO t2 VALUES(19306, 47202, 'forty-seven thousand two hundred two');\nINSERT INTO t2 VALUES(19307, 46243, 'forty-six thousand two hundred forty-three');\nINSERT INTO t2 VALUES(19308, 5669, 'five thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(19309, 94119, 'ninety-four thousand one hundred nineteen');\nINSERT INTO t2 VALUES(19310, 32175, 'thirty-two thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(19311, 32083, 'thirty-two thousand eighty-three');\nINSERT INTO t2 VALUES(19312, 22509, 'twenty-two thousand five hundred nine');\nINSERT INTO t2 VALUES(19313, 25422, 'twenty-five thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(19314, 4357, 'four thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(19315, 52869, 'fifty-two thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(19316, 17900, 'seventeen thousand nine hundred');\nINSERT INTO t2 VALUES(19317, 70938, 'seventy thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(19318, 2002, 'two thousand two');\nINSERT INTO t2 VALUES(19319, 33008, 'thirty-three thousand eight');\nINSERT INTO t2 VALUES(19320, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t2 VALUES(19321, 28239, 'twenty-eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19322, 49620, 'forty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(19323, 50859, 'fifty thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(19324, 43373, 'forty-three thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(19325, 45449, 'forty-five thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(19326, 99210, 'ninety-nine thousand two hundred ten');\nINSERT INTO t2 VALUES(19327, 59515, 'fifty-nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(19328, 15559, 'fifteen thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(19329, 75239, 'seventy-five thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19330, 61016, 'sixty-one thousand sixteen');\nINSERT INTO t2 VALUES(19331, 13073, 'thirteen thousand seventy-three');\nINSERT INTO t2 VALUES(19332, 17545, 'seventeen thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19333, 48173, 'forty-eight thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(19334, 46919, 'forty-six thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(19335, 40774, 'forty thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(19336, 10810, 'ten thousand eight hundred ten');\nINSERT INTO t2 VALUES(19337, 10772, 'ten thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(19338, 31839, 'thirty-one thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(19339, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t2 VALUES(19340, 25507, 'twenty-five thousand five hundred seven');\nINSERT INTO t2 VALUES(19341, 24718, 'twenty-four thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(19342, 96088, 'ninety-six thousand eighty-eight');\nINSERT INTO t2 VALUES(19343, 37808, 'thirty-seven thousand eight hundred eight');\nINSERT INTO t2 VALUES(19344, 28096, 'twenty-eight thousand ninety-six');\nINSERT INTO t2 VALUES(19345, 47087, 'forty-seven thousand eighty-seven');\nINSERT INTO t2 VALUES(19346, 89794, 'eighty-nine thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(19347, 43305, 'forty-three thousand three hundred five');\nINSERT INTO t2 VALUES(19348, 51530, 'fifty-one thousand five hundred thirty');\nINSERT INTO t2 VALUES(19349, 72237, 'seventy-two thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(19350, 48165, 'forty-eight thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(19351, 87052, 'eighty-seven thousand fifty-two');\nINSERT INTO t2 VALUES(19352, 91088, 'ninety-one thousand eighty-eight');\nINSERT INTO t2 VALUES(19353, 21787, 'twenty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(19354, 7438, 'seven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(19355, 93809, 'ninety-three thousand eight hundred nine');\nINSERT INTO t2 VALUES(19356, 53387, 'fifty-three thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(19357, 50148, 'fifty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(19358, 2324, 'two thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(19359, 62523, 'sixty-two thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(19360, 79984, 'seventy-nine thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(19361, 39614, 'thirty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(19362, 95101, 'ninety-five thousand one hundred one');\nINSERT INTO t2 VALUES(19363, 66708, 'sixty-six thousand seven hundred eight');\nINSERT INTO t2 VALUES(19364, 46374, 'forty-six thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(19365, 49233, 'forty-nine thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(19366, 41598, 'forty-one thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(19367, 35646, 'thirty-five thousand six hundred forty-six');\nINSERT INTO t2 VALUES(19368, 42860, 'forty-two thousand eight hundred sixty');\nINSERT INTO t2 VALUES(19369, 32294, 'thirty-two thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(19370, 43382, 'forty-three thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19371, 93880, 'ninety-three thousand eight hundred eighty');\nINSERT INTO t2 VALUES(19372, 73122, 'seventy-three thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(19373, 73350, 'seventy-three thousand three hundred fifty');\nINSERT INTO t2 VALUES(19374, 2592, 'two thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(19375, 31114, 'thirty-one thousand one hundred fourteen');\nINSERT INTO t2 VALUES(19376, 18208, 'eighteen thousand two hundred eight');\nINSERT INTO t2 VALUES(19377, 66715, 'sixty-six thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(19378, 87081, 'eighty-seven thousand eighty-one');\nINSERT INTO t2 VALUES(19379, 63922, 'sixty-three thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(19380, 65135, 'sixty-five thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(19381, 34806, 'thirty-four thousand eight hundred six');\nINSERT INTO t2 VALUES(19382, 16721, 'sixteen thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(19383, 201, 'two hundred one');\nINSERT INTO t2 VALUES(19384, 26400, 'twenty-six thousand four hundred');\nINSERT INTO t2 VALUES(19385, 33252, 'thirty-three thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(19386, 28363, 'twenty-eight thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(19387, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(19388, 92145, 'ninety-two thousand one hundred forty-five');\nINSERT INTO t2 VALUES(19389, 84960, 'eighty-four thousand nine hundred sixty');\nINSERT INTO t2 VALUES(19390, 66476, 'sixty-six thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(19391, 19786, 'nineteen thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(19392, 95230, 'ninety-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(19393, 43209, 'forty-three thousand two hundred nine');\nINSERT INTO t2 VALUES(19394, 52268, 'fifty-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(19395, 62133, 'sixty-two thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19396, 49167, 'forty-nine thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(19397, 10010, 'ten thousand ten');\nINSERT INTO t2 VALUES(19398, 10877, 'ten thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(19399, 48856, 'forty-eight thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(19400, 83792, 'eighty-three thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(19401, 70348, 'seventy thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(19402, 47192, 'forty-seven thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(19403, 14386, 'fourteen thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(19404, 66552, 'sixty-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(19405, 71672, 'seventy-one thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19406, 52616, 'fifty-two thousand six hundred sixteen');\nINSERT INTO t2 VALUES(19407, 4293, 'four thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(19408, 51794, 'fifty-one thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(19409, 66831, 'sixty-six thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(19410, 32429, 'thirty-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(19411, 47330, 'forty-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(19412, 6712, 'six thousand seven hundred twelve');\nINSERT INTO t2 VALUES(19413, 22318, 'twenty-two thousand three hundred eighteen');\nINSERT INTO t2 VALUES(19414, 81768, 'eighty-one thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(19415, 17420, 'seventeen thousand four hundred twenty');\nINSERT INTO t2 VALUES(19416, 52444, 'fifty-two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(19417, 66892, 'sixty-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(19418, 9876, 'nine thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(19419, 97886, 'ninety-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19420, 48250, 'forty-eight thousand two hundred fifty');\nINSERT INTO t2 VALUES(19421, 2444, 'two thousand four hundred forty-four');\nINSERT INTO t2 VALUES(19422, 25141, 'twenty-five thousand one hundred forty-one');\nINSERT INTO t2 VALUES(19423, 76082, 'seventy-six thousand eighty-two');\nINSERT INTO t2 VALUES(19424, 65144, 'sixty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(19425, 97353, 'ninety-seven thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(19426, 90269, 'ninety thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(19427, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19428, 72658, 'seventy-two thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(19429, 11347, 'eleven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(19430, 56510, 'fifty-six thousand five hundred ten');\nINSERT INTO t2 VALUES(19431, 45481, 'forty-five thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(19432, 22, 'twenty-two');\nINSERT INTO t2 VALUES(19433, 28940, 'twenty-eight thousand nine hundred forty');\nINSERT INTO t2 VALUES(19434, 91707, 'ninety-one thousand seven hundred seven');\nINSERT INTO t2 VALUES(19435, 90242, 'ninety thousand two hundred forty-two');\nINSERT INTO t2 VALUES(19436, 83129, 'eighty-three thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(19437, 14988, 'fourteen thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(19438, 59144, 'fifty-nine thousand one hundred forty-four');\nINSERT INTO t2 VALUES(19439, 89946, 'eighty-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(19440, 1864, 'one thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(19441, 94618, 'ninety-four thousand six hundred eighteen');\nINSERT INTO t2 VALUES(19442, 62704, 'sixty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(19443, 48949, 'forty-eight thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(19444, 57557, 'fifty-seven thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19445, 99652, 'ninety-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(19446, 65442, 'sixty-five thousand four hundred forty-two');\nINSERT INTO t2 VALUES(19447, 86076, 'eighty-six thousand seventy-six');\nINSERT INTO t2 VALUES(19448, 67110, 'sixty-seven thousand one hundred ten');\nINSERT INTO t2 VALUES(19449, 48685, 'forty-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(19450, 7597, 'seven thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(19451, 61705, 'sixty-one thousand seven hundred five');\nINSERT INTO t2 VALUES(19452, 28462, 'twenty-eight thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(19453, 68515, 'sixty-eight thousand five hundred fifteen');\nINSERT INTO t2 VALUES(19454, 28122, 'twenty-eight thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(19455, 57963, 'fifty-seven thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(19456, 22132, 'twenty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19457, 80751, 'eighty thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(19458, 95004, 'ninety-five thousand four');\nINSERT INTO t2 VALUES(19459, 41140, 'forty-one thousand one hundred forty');\nINSERT INTO t2 VALUES(19460, 64038, 'sixty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(19461, 62227, 'sixty-two thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(19462, 64229, 'sixty-four thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(19463, 96822, 'ninety-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(19464, 39952, 'thirty-nine thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(19465, 23326, 'twenty-three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(19466, 75334, 'seventy-five thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(19467, 19972, 'nineteen thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(19468, 67975, 'sixty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(19469, 69206, 'sixty-nine thousand two hundred six');\nINSERT INTO t2 VALUES(19470, 30012, 'thirty thousand twelve');\nINSERT INTO t2 VALUES(19471, 10368, 'ten thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(19472, 79123, 'seventy-nine thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(19473, 96431, 'ninety-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(19474, 72369, 'seventy-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(19475, 42306, 'forty-two thousand three hundred six');\nINSERT INTO t2 VALUES(19476, 21722, 'twenty-one thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(19477, 74826, 'seventy-four thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(19478, 91822, 'ninety-one thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(19479, 25361, 'twenty-five thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(19480, 80880, 'eighty thousand eight hundred eighty');\nINSERT INTO t2 VALUES(19481, 19020, 'nineteen thousand twenty');\nINSERT INTO t2 VALUES(19482, 26467, 'twenty-six thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(19483, 55168, 'fifty-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(19484, 27838, 'twenty-seven thousand eight hundred thirty-eight');\nINSERT INTO t2 VALUES(19485, 75097, 'seventy-five thousand ninety-seven');\nINSERT INTO t2 VALUES(19486, 58121, 'fifty-eight thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(19487, 67684, 'sixty-seven thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19488, 34533, 'thirty-four thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(19489, 65004, 'sixty-five thousand four');\nINSERT INTO t2 VALUES(19490, 81753, 'eighty-one thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(19491, 22928, 'twenty-two thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(19492, 89768, 'eighty-nine thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(19493, 80066, 'eighty thousand sixty-six');\nINSERT INTO t2 VALUES(19494, 63, 'sixty-three');\nINSERT INTO t2 VALUES(19495, 81133, 'eighty-one thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19496, 62368, 'sixty-two thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(19497, 96655, 'ninety-six thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(19498, 58355, 'fifty-eight thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(19499, 57203, 'fifty-seven thousand two hundred three');\nINSERT INTO t2 VALUES(19500, 4648, 'four thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(19501, 61347, 'sixty-one thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(19502, 25546, 'twenty-five thousand five hundred forty-six');\nINSERT INTO t2 VALUES(19503, 96284, 'ninety-six thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(19504, 41149, 'forty-one thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(19505, 4904, 'four thousand nine hundred four');\nINSERT INTO t2 VALUES(19506, 18995, 'eighteen thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19507, 96790, 'ninety-six thousand seven hundred ninety');\nINSERT INTO t2 VALUES(19508, 92836, 'ninety-two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(19509, 8992, 'eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(19510, 69370, 'sixty-nine thousand three hundred seventy');\nINSERT INTO t2 VALUES(19511, 60765, 'sixty thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(19512, 16653, 'sixteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(19513, 10060, 'ten thousand sixty');\nINSERT INTO t2 VALUES(19514, 35796, 'thirty-five thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19515, 93618, 'ninety-three thousand six hundred eighteen');\nINSERT INTO t2 VALUES(19516, 80694, 'eighty thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(19517, 20147, 'twenty thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(19518, 3429, 'three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(19519, 83564, 'eighty-three thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(19520, 88829, 'eighty-eight thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(19521, 77754, 'seventy-seven thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(19522, 12284, 'twelve thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(19523, 35935, 'thirty-five thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(19524, 27183, 'twenty-seven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(19525, 64198, 'sixty-four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(19526, 38675, 'thirty-eight thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(19527, 70844, 'seventy thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(19528, 22704, 'twenty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(19529, 79958, 'seventy-nine thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(19530, 95929, 'ninety-five thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(19531, 6916, 'six thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(19532, 54743, 'fifty-four thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(19533, 60604, 'sixty thousand six hundred four');\nINSERT INTO t2 VALUES(19534, 22325, 'twenty-two thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(19535, 26066, 'twenty-six thousand sixty-six');\nINSERT INTO t2 VALUES(19536, 25068, 'twenty-five thousand sixty-eight');\nINSERT INTO t2 VALUES(19537, 73999, 'seventy-three thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(19538, 90102, 'ninety thousand one hundred two');\nINSERT INTO t2 VALUES(19539, 50796, 'fifty thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19540, 56825, 'fifty-six thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(19541, 94460, 'ninety-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(19542, 16262, 'sixteen thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(19543, 28322, 'twenty-eight thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(19544, 34284, 'thirty-four thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(19545, 32065, 'thirty-two thousand sixty-five');\nINSERT INTO t2 VALUES(19546, 77081, 'seventy-seven thousand eighty-one');\nINSERT INTO t2 VALUES(19547, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(19548, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(19549, 82703, 'eighty-two thousand seven hundred three');\nINSERT INTO t2 VALUES(19550, 48669, 'forty-eight thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(19551, 20707, 'twenty thousand seven hundred seven');\nINSERT INTO t2 VALUES(19552, 41545, 'forty-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19553, 27933, 'twenty-seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(19554, 66292, 'sixty-six thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(19555, 24202, 'twenty-four thousand two hundred two');\nINSERT INTO t2 VALUES(19556, 62431, 'sixty-two thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(19557, 78840, 'seventy-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(19558, 16413, 'sixteen thousand four hundred thirteen');\nINSERT INTO t2 VALUES(19559, 70175, 'seventy thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(19560, 60832, 'sixty thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(19561, 23019, 'twenty-three thousand nineteen');\nINSERT INTO t2 VALUES(19562, 12209, 'twelve thousand two hundred nine');\nINSERT INTO t2 VALUES(19563, 80853, 'eighty thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(19564, 92697, 'ninety-two thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(19565, 28415, 'twenty-eight thousand four hundred fifteen');\nINSERT INTO t2 VALUES(19566, 32499, 'thirty-two thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(19567, 27750, 'twenty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(19568, 76482, 'seventy-six thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(19569, 61990, 'sixty-one thousand nine hundred ninety');\nINSERT INTO t2 VALUES(19570, 45851, 'forty-five thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(19571, 70133, 'seventy thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19572, 10924, 'ten thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(19573, 14232, 'fourteen thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(19574, 42897, 'forty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(19575, 43859, 'forty-three thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(19576, 45896, 'forty-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(19577, 80573, 'eighty thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(19578, 33263, 'thirty-three thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(19579, 11309, 'eleven thousand three hundred nine');\nINSERT INTO t2 VALUES(19580, 51548, 'fifty-one thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(19581, 84810, 'eighty-four thousand eight hundred ten');\nINSERT INTO t2 VALUES(19582, 5351, 'five thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(19583, 49954, 'forty-nine thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(19584, 77970, 'seventy-seven thousand nine hundred seventy');\nINSERT INTO t2 VALUES(19585, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(19586, 84518, 'eighty-four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(19587, 77835, 'seventy-seven thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(19588, 79133, 'seventy-nine thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19589, 66653, 'sixty-six thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(19590, 66560, 'sixty-six thousand five hundred sixty');\nINSERT INTO t2 VALUES(19591, 49271, 'forty-nine thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(19592, 51718, 'fifty-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(19593, 29659, 'twenty-nine thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(19594, 95580, 'ninety-five thousand five hundred eighty');\nINSERT INTO t2 VALUES(19595, 96407, 'ninety-six thousand four hundred seven');\nINSERT INTO t2 VALUES(19596, 10534, 'ten thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(19597, 87778, 'eighty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(19598, 15207, 'fifteen thousand two hundred seven');\nINSERT INTO t2 VALUES(19599, 34221, 'thirty-four thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(19600, 94870, 'ninety-four thousand eight hundred seventy');\nINSERT INTO t2 VALUES(19601, 58996, 'fifty-eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(19602, 60626, 'sixty thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(19603, 53579, 'fifty-three thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(19604, 23647, 'twenty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19605, 68599, 'sixty-eight thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(19606, 58470, 'fifty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(19607, 14979, 'fourteen thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(19608, 92082, 'ninety-two thousand eighty-two');\nINSERT INTO t2 VALUES(19609, 89164, 'eighty-nine thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(19610, 8578, 'eight thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(19611, 21507, 'twenty-one thousand five hundred seven');\nINSERT INTO t2 VALUES(19612, 78285, 'seventy-eight thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(19613, 28293, 'twenty-eight thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(19614, 93758, 'ninety-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(19615, 94719, 'ninety-four thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(19616, 51661, 'fifty-one thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(19617, 82080, 'eighty-two thousand eighty');\nINSERT INTO t2 VALUES(19618, 10941, 'ten thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(19619, 17836, 'seventeen thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(19620, 28320, 'twenty-eight thousand three hundred twenty');\nINSERT INTO t2 VALUES(19621, 83908, 'eighty-three thousand nine hundred eight');\nINSERT INTO t2 VALUES(19622, 60471, 'sixty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(19623, 91459, 'ninety-one thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(19624, 82685, 'eighty-two thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(19625, 19443, 'nineteen thousand four hundred forty-three');\nINSERT INTO t2 VALUES(19626, 91953, 'ninety-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(19627, 3738, 'three thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19628, 56988, 'fifty-six thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(19629, 96647, 'ninety-six thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19630, 43647, 'forty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(19631, 85166, 'eighty-five thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(19632, 12253, 'twelve thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(19633, 74525, 'seventy-four thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(19634, 90349, 'ninety thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(19635, 74598, 'seventy-four thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(19636, 1249, 'one thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(19637, 50478, 'fifty thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(19638, 2228, 'two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(19639, 52153, 'fifty-two thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(19640, 27915, 'twenty-seven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(19641, 11883, 'eleven thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(19642, 30767, 'thirty thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(19643, 97278, 'ninety-seven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(19644, 16183, 'sixteen thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(19645, 54272, 'fifty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(19646, 10524, 'ten thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(19647, 91389, 'ninety-one thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(19648, 30152, 'thirty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(19649, 42300, 'forty-two thousand three hundred');\nINSERT INTO t2 VALUES(19650, 66381, 'sixty-six thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(19651, 61423, 'sixty-one thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(19652, 2439, 'two thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(19653, 38459, 'thirty-eight thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(19654, 18236, 'eighteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(19655, 59684, 'fifty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19656, 81523, 'eighty-one thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(19657, 13311, 'thirteen thousand three hundred eleven');\nINSERT INTO t2 VALUES(19658, 64452, 'sixty-four thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(19659, 38101, 'thirty-eight thousand one hundred one');\nINSERT INTO t2 VALUES(19660, 47148, 'forty-seven thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(19661, 11105, 'eleven thousand one hundred five');\nINSERT INTO t2 VALUES(19662, 12623, 'twelve thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(19663, 19114, 'nineteen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(19664, 55521, 'fifty-five thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(19665, 61789, 'sixty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(19666, 95109, 'ninety-five thousand one hundred nine');\nINSERT INTO t2 VALUES(19667, 6761, 'six thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(19668, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(19669, 26772, 'twenty-six thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(19670, 27451, 'twenty-seven thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(19671, 21995, 'twenty-one thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19672, 59876, 'fifty-nine thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(19673, 13762, 'thirteen thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(19674, 26792, 'twenty-six thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(19675, 81084, 'eighty-one thousand eighty-four');\nINSERT INTO t2 VALUES(19676, 37351, 'thirty-seven thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(19677, 65250, 'sixty-five thousand two hundred fifty');\nINSERT INTO t2 VALUES(19678, 81527, 'eighty-one thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(19679, 36905, 'thirty-six thousand nine hundred five');\nINSERT INTO t2 VALUES(19680, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(19681, 22995, 'twenty-two thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(19682, 19225, 'nineteen thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(19683, 2693, 'two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(19684, 64964, 'sixty-four thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(19685, 91691, 'ninety-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(19686, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(19687, 67817, 'sixty-seven thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(19688, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t2 VALUES(19689, 11356, 'eleven thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(19690, 6504, 'six thousand five hundred four');\nINSERT INTO t2 VALUES(19691, 97517, 'ninety-seven thousand five hundred seventeen');\nINSERT INTO t2 VALUES(19692, 98220, 'ninety-eight thousand two hundred twenty');\nINSERT INTO t2 VALUES(19693, 71863, 'seventy-one thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(19694, 85460, 'eighty-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(19695, 28314, 'twenty-eight thousand three hundred fourteen');\nINSERT INTO t2 VALUES(19696, 3256, 'three thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(19697, 58069, 'fifty-eight thousand sixty-nine');\nINSERT INTO t2 VALUES(19698, 94678, 'ninety-four thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(19699, 54302, 'fifty-four thousand three hundred two');\nINSERT INTO t2 VALUES(19700, 25576, 'twenty-five thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(19701, 35569, 'thirty-five thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(19702, 61789, 'sixty-one thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(19703, 99265, 'ninety-nine thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(19704, 16493, 'sixteen thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(19705, 86940, 'eighty-six thousand nine hundred forty');\nINSERT INTO t2 VALUES(19706, 4691, 'four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(19707, 99848, 'ninety-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(19708, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(19709, 7584, 'seven thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(19710, 61591, 'sixty-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(19711, 48565, 'forty-eight thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(19712, 30013, 'thirty thousand thirteen');\nINSERT INTO t2 VALUES(19713, 43751, 'forty-three thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(19714, 94680, 'ninety-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(19715, 8761, 'eight thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(19716, 6462, 'six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(19717, 52834, 'fifty-two thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(19718, 29130, 'twenty-nine thousand one hundred thirty');\nINSERT INTO t2 VALUES(19719, 46559, 'forty-six thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(19720, 58524, 'fifty-eight thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(19721, 30948, 'thirty thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(19722, 83340, 'eighty-three thousand three hundred forty');\nINSERT INTO t2 VALUES(19723, 33399, 'thirty-three thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(19724, 35963, 'thirty-five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(19725, 53570, 'fifty-three thousand five hundred seventy');\nINSERT INTO t2 VALUES(19726, 22531, 'twenty-two thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(19727, 65702, 'sixty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(19728, 6151, 'six thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(19729, 22564, 'twenty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(19730, 51186, 'fifty-one thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(19731, 4282, 'four thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(19732, 18315, 'eighteen thousand three hundred fifteen');\nINSERT INTO t2 VALUES(19733, 76796, 'seventy-six thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(19734, 72166, 'seventy-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(19735, 53644, 'fifty-three thousand six hundred forty-four');\nINSERT INTO t2 VALUES(19736, 10619, 'ten thousand six hundred nineteen');\nINSERT INTO t2 VALUES(19737, 64997, 'sixty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(19738, 22161, 'twenty-two thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(19739, 8142, 'eight thousand one hundred forty-two');\nINSERT INTO t2 VALUES(19740, 10780, 'ten thousand seven hundred eighty');\nINSERT INTO t2 VALUES(19741, 69248, 'sixty-nine thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(19742, 56786, 'fifty-six thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(19743, 53398, 'fifty-three thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(19744, 84795, 'eighty-four thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(19745, 4636, 'four thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(19746, 6238, 'six thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(19747, 3622, 'three thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(19748, 48162, 'forty-eight thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(19749, 2440, 'two thousand four hundred forty');\nINSERT INTO t2 VALUES(19750, 77308, 'seventy-seven thousand three hundred eight');\nINSERT INTO t2 VALUES(19751, 94800, 'ninety-four thousand eight hundred');\nINSERT INTO t2 VALUES(19752, 24943, 'twenty-four thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(19753, 53543, 'fifty-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(19754, 57778, 'fifty-seven thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(19755, 1733, 'one thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(19756, 38360, 'thirty-eight thousand three hundred sixty');\nINSERT INTO t2 VALUES(19757, 32098, 'thirty-two thousand ninety-eight');\nINSERT INTO t2 VALUES(19758, 66809, 'sixty-six thousand eight hundred nine');\nINSERT INTO t2 VALUES(19759, 18557, 'eighteen thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19760, 45597, 'forty-five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(19761, 19556, 'nineteen thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(19762, 82911, 'eighty-two thousand nine hundred eleven');\nINSERT INTO t2 VALUES(19763, 6948, 'six thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(19764, 22761, 'twenty-two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(19765, 19630, 'nineteen thousand six hundred thirty');\nINSERT INTO t2 VALUES(19766, 56186, 'fifty-six thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(19767, 35048, 'thirty-five thousand forty-eight');\nINSERT INTO t2 VALUES(19768, 95893, 'ninety-five thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(19769, 79559, 'seventy-nine thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(19770, 455, 'four hundred fifty-five');\nINSERT INTO t2 VALUES(19771, 13704, 'thirteen thousand seven hundred four');\nINSERT INTO t2 VALUES(19772, 84552, 'eighty-four thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(19773, 79148, 'seventy-nine thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(19774, 79150, 'seventy-nine thousand one hundred fifty');\nINSERT INTO t2 VALUES(19775, 707, 'seven hundred seven');\nINSERT INTO t2 VALUES(19776, 85901, 'eighty-five thousand nine hundred one');\nINSERT INTO t2 VALUES(19777, 27109, 'twenty-seven thousand one hundred nine');\nINSERT INTO t2 VALUES(19778, 21154, 'twenty-one thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(19779, 50486, 'fifty thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(19780, 41518, 'forty-one thousand five hundred eighteen');\nINSERT INTO t2 VALUES(19781, 85460, 'eighty-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(19782, 9865, 'nine thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(19783, 3551, 'three thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(19784, 14149, 'fourteen thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(19785, 11263, 'eleven thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(19786, 29249, 'twenty-nine thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(19787, 92742, 'ninety-two thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(19788, 23738, 'twenty-three thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(19789, 8569, 'eight thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(19790, 73611, 'seventy-three thousand six hundred eleven');\nINSERT INTO t2 VALUES(19791, 17528, 'seventeen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(19792, 87132, 'eighty-seven thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19793, 89576, 'eighty-nine thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(19794, 58548, 'fifty-eight thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(19795, 76515, 'seventy-six thousand five hundred fifteen');\nINSERT INTO t2 VALUES(19796, 85275, 'eighty-five thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(19797, 74078, 'seventy-four thousand seventy-eight');\nINSERT INTO t2 VALUES(19798, 92504, 'ninety-two thousand five hundred four');\nINSERT INTO t2 VALUES(19799, 22474, 'twenty-two thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(19800, 80380, 'eighty thousand three hundred eighty');\nINSERT INTO t2 VALUES(19801, 82322, 'eighty-two thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(19802, 2313, 'two thousand three hundred thirteen');\nINSERT INTO t2 VALUES(19803, 79813, 'seventy-nine thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(19804, 47837, 'forty-seven thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(19805, 2108, 'two thousand one hundred eight');\nINSERT INTO t2 VALUES(19806, 16093, 'sixteen thousand ninety-three');\nINSERT INTO t2 VALUES(19807, 60147, 'sixty thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(19808, 20895, 'twenty thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(19809, 74249, 'seventy-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(19810, 55563, 'fifty-five thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(19811, 10747, 'ten thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(19812, 6585, 'six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(19813, 29215, 'twenty-nine thousand two hundred fifteen');\nINSERT INTO t2 VALUES(19814, 76396, 'seventy-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(19815, 85241, 'eighty-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(19816, 2360, 'two thousand three hundred sixty');\nINSERT INTO t2 VALUES(19817, 53226, 'fifty-three thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(19818, 51942, 'fifty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(19819, 26759, 'twenty-six thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(19820, 59110, 'fifty-nine thousand one hundred ten');\nINSERT INTO t2 VALUES(19821, 35304, 'thirty-five thousand three hundred four');\nINSERT INTO t2 VALUES(19822, 8459, 'eight thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(19823, 69970, 'sixty-nine thousand nine hundred seventy');\nINSERT INTO t2 VALUES(19824, 41987, 'forty-one thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(19825, 27392, 'twenty-seven thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(19826, 85072, 'eighty-five thousand seventy-two');\nINSERT INTO t2 VALUES(19827, 78015, 'seventy-eight thousand fifteen');\nINSERT INTO t2 VALUES(19828, 71128, 'seventy-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(19829, 78156, 'seventy-eight thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(19830, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(19831, 86028, 'eighty-six thousand twenty-eight');\nINSERT INTO t2 VALUES(19832, 97658, 'ninety-seven thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(19833, 22026, 'twenty-two thousand twenty-six');\nINSERT INTO t2 VALUES(19834, 60160, 'sixty thousand one hundred sixty');\nINSERT INTO t2 VALUES(19835, 78417, 'seventy-eight thousand four hundred seventeen');\nINSERT INTO t2 VALUES(19836, 32551, 'thirty-two thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(19837, 61239, 'sixty-one thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19838, 73367, 'seventy-three thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(19839, 46572, 'forty-six thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(19840, 72377, 'seventy-two thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(19841, 862, 'eight hundred sixty-two');\nINSERT INTO t2 VALUES(19842, 18676, 'eighteen thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(19843, 64473, 'sixty-four thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(19844, 42674, 'forty-two thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(19845, 59521, 'fifty-nine thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(19846, 30886, 'thirty thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19847, 79158, 'seventy-nine thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(19848, 88093, 'eighty-eight thousand ninety-three');\nINSERT INTO t2 VALUES(19849, 32744, 'thirty-two thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(19850, 50025, 'fifty thousand twenty-five');\nINSERT INTO t2 VALUES(19851, 41811, 'forty-one thousand eight hundred eleven');\nINSERT INTO t2 VALUES(19852, 73961, 'seventy-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(19853, 60616, 'sixty thousand six hundred sixteen');\nINSERT INTO t2 VALUES(19854, 84485, 'eighty-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(19855, 26608, 'twenty-six thousand six hundred eight');\nINSERT INTO t2 VALUES(19856, 48960, 'forty-eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(19857, 54946, 'fifty-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(19858, 38908, 'thirty-eight thousand nine hundred eight');\nINSERT INTO t2 VALUES(19859, 4862, 'four thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(19860, 26032, 'twenty-six thousand thirty-two');\nINSERT INTO t2 VALUES(19861, 17124, 'seventeen thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(19862, 4788, 'four thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(19863, 34230, 'thirty-four thousand two hundred thirty');\nINSERT INTO t2 VALUES(19864, 14896, 'fourteen thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(19865, 96684, 'ninety-six thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(19866, 281, 'two hundred eighty-one');\nINSERT INTO t2 VALUES(19867, 78748, 'seventy-eight thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(19868, 71545, 'seventy-one thousand five hundred forty-five');\nINSERT INTO t2 VALUES(19869, 3317, 'three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(19870, 32683, 'thirty-two thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(19871, 32391, 'thirty-two thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(19872, 98739, 'ninety-eight thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(19873, 30040, 'thirty thousand forty');\nINSERT INTO t2 VALUES(19874, 42821, 'forty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(19875, 43253, 'forty-three thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(19876, 54301, 'fifty-four thousand three hundred one');\nINSERT INTO t2 VALUES(19877, 74672, 'seventy-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19878, 43022, 'forty-three thousand twenty-two');\nINSERT INTO t2 VALUES(19879, 85675, 'eighty-five thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(19880, 33331, 'thirty-three thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(19881, 16335, 'sixteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(19882, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(19883, 77461, 'seventy-seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(19884, 29652, 'twenty-nine thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(19885, 10484, 'ten thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(19886, 44133, 'forty-four thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(19887, 13265, 'thirteen thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(19888, 52115, 'fifty-two thousand one hundred fifteen');\nINSERT INTO t2 VALUES(19889, 75885, 'seventy-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(19890, 2600, 'two thousand six hundred');\nINSERT INTO t2 VALUES(19891, 61847, 'sixty-one thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(19892, 72430, 'seventy-two thousand four hundred thirty');\nINSERT INTO t2 VALUES(19893, 55107, 'fifty-five thousand one hundred seven');\nINSERT INTO t2 VALUES(19894, 5971, 'five thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(19895, 6481, 'six thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(19896, 55638, 'fifty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(19897, 48151, 'forty-eight thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(19898, 84748, 'eighty-four thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(19899, 19029, 'nineteen thousand twenty-nine');\nINSERT INTO t2 VALUES(19900, 7061, 'seven thousand sixty-one');\nINSERT INTO t2 VALUES(19901, 94578, 'ninety-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(19902, 3663, 'three thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(19903, 66318, 'sixty-six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(19904, 31563, 'thirty-one thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(19905, 79248, 'seventy-nine thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(19906, 25074, 'twenty-five thousand seventy-four');\nINSERT INTO t2 VALUES(19907, 98071, 'ninety-eight thousand seventy-one');\nINSERT INTO t2 VALUES(19908, 24780, 'twenty-four thousand seven hundred eighty');\nINSERT INTO t2 VALUES(19909, 77806, 'seventy-seven thousand eight hundred six');\nINSERT INTO t2 VALUES(19910, 58941, 'fifty-eight thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(19911, 2663, 'two thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(19912, 31506, 'thirty-one thousand five hundred six');\nINSERT INTO t2 VALUES(19913, 75696, 'seventy-five thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(19914, 54651, 'fifty-four thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(19915, 71359, 'seventy-one thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(19916, 69997, 'sixty-nine thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(19917, 12752, 'twelve thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(19918, 65267, 'sixty-five thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(19919, 65878, 'sixty-five thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(19920, 65887, 'sixty-five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(19921, 46064, 'forty-six thousand sixty-four');\nINSERT INTO t2 VALUES(19922, 19555, 'nineteen thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(19923, 65599, 'sixty-five thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(19924, 20196, 'twenty thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(19925, 90752, 'ninety thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(19926, 17180, 'seventeen thousand one hundred eighty');\nINSERT INTO t2 VALUES(19927, 65179, 'sixty-five thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(19928, 5079, 'five thousand seventy-nine');\nINSERT INTO t2 VALUES(19929, 30209, 'thirty thousand two hundred nine');\nINSERT INTO t2 VALUES(19930, 84827, 'eighty-four thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(19931, 11487, 'eleven thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(19932, 27339, 'twenty-seven thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(19933, 57949, 'fifty-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(19934, 47261, 'forty-seven thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(19935, 44199, 'forty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(19936, 86673, 'eighty-six thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(19937, 7578, 'seven thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(19938, 41773, 'forty-one thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(19939, 91968, 'ninety-one thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(19940, 2132, 'two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(19941, 83697, 'eighty-three thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(19942, 87742, 'eighty-seven thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(19943, 55557, 'fifty-five thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(19944, 63580, 'sixty-three thousand five hundred eighty');\nINSERT INTO t2 VALUES(19945, 1672, 'one thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(19946, 65420, 'sixty-five thousand four hundred twenty');\nINSERT INTO t2 VALUES(19947, 29197, 'twenty-nine thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(19948, 62945, 'sixty-two thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(19949, 9304, 'nine thousand three hundred four');\nINSERT INTO t2 VALUES(19950, 9521, 'nine thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(19951, 36574, 'thirty-six thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(19952, 89705, 'eighty-nine thousand seven hundred five');\nINSERT INTO t2 VALUES(19953, 33556, 'thirty-three thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(19954, 59207, 'fifty-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(19955, 49013, 'forty-nine thousand thirteen');\nINSERT INTO t2 VALUES(19956, 61215, 'sixty-one thousand two hundred fifteen');\nINSERT INTO t2 VALUES(19957, 30798, 'thirty thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(19958, 43824, 'forty-three thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(19959, 64218, 'sixty-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(19960, 40424, 'forty thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(19961, 4351, 'four thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(19962, 81330, 'eighty-one thousand three hundred thirty');\nINSERT INTO t2 VALUES(19963, 86096, 'eighty-six thousand ninety-six');\nINSERT INTO t2 VALUES(19964, 30436, 'thirty thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(19965, 72176, 'seventy-two thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(19966, 69239, 'sixty-nine thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(19967, 68840, 'sixty-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(19968, 49386, 'forty-nine thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(19969, 2031, 'two thousand thirty-one');\nINSERT INTO t2 VALUES(19970, 14886, 'fourteen thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19971, 56536, 'fifty-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(19972, 80156, 'eighty thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(19973, 75291, 'seventy-five thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(19974, 90942, 'ninety thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(19975, 45226, 'forty-five thousand two hundred twenty-six');\nINSERT INTO t2 VALUES(19976, 12983, 'twelve thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(19977, 18267, 'eighteen thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(19978, 45047, 'forty-five thousand forty-seven');\nINSERT INTO t2 VALUES(19979, 99153, 'ninety-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(19980, 3947, 'three thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(19981, 61329, 'sixty-one thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(19982, 281, 'two hundred eighty-one');\nINSERT INTO t2 VALUES(19983, 86403, 'eighty-six thousand four hundred three');\nINSERT INTO t2 VALUES(19984, 99446, 'ninety-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(19985, 32030, 'thirty-two thousand thirty');\nINSERT INTO t2 VALUES(19986, 48799, 'forty-eight thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(19987, 57741, 'fifty-seven thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(19988, 41067, 'forty-one thousand sixty-seven');\nINSERT INTO t2 VALUES(19989, 52472, 'fifty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(19990, 27076, 'twenty-seven thousand seventy-six');\nINSERT INTO t2 VALUES(19991, 56150, 'fifty-six thousand one hundred fifty');\nINSERT INTO t2 VALUES(19992, 96902, 'ninety-six thousand nine hundred two');\nINSERT INTO t2 VALUES(19993, 4169, 'four thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(19994, 75886, 'seventy-five thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(19995, 5044, 'five thousand forty-four');\nINSERT INTO t2 VALUES(19996, 15261, 'fifteen thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(19997, 9837, 'nine thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(19998, 93782, 'ninety-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(19999, 1390, 'one thousand three hundred ninety');\nINSERT INTO t2 VALUES(20000, 17798, 'seventeen thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(20001, 42503, 'forty-two thousand five hundred three');\nINSERT INTO t2 VALUES(20002, 38557, 'thirty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20003, 34048, 'thirty-four thousand forty-eight');\nINSERT INTO t2 VALUES(20004, 99840, 'ninety-nine thousand eight hundred forty');\nINSERT INTO t2 VALUES(20005, 31007, 'thirty-one thousand seven');\nINSERT INTO t2 VALUES(20006, 30240, 'thirty thousand two hundred forty');\nINSERT INTO t2 VALUES(20007, 26524, 'twenty-six thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(20008, 31543, 'thirty-one thousand five hundred forty-three');\nINSERT INTO t2 VALUES(20009, 64768, 'sixty-four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(20010, 54272, 'fifty-four thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(20011, 88423, 'eighty-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(20012, 58659, 'fifty-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(20013, 61602, 'sixty-one thousand six hundred two');\nINSERT INTO t2 VALUES(20014, 17823, 'seventeen thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(20015, 29058, 'twenty-nine thousand fifty-eight');\nINSERT INTO t2 VALUES(20016, 24299, 'twenty-four thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(20017, 10527, 'ten thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(20018, 28501, 'twenty-eight thousand five hundred one');\nINSERT INTO t2 VALUES(20019, 60591, 'sixty thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(20020, 13557, 'thirteen thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20021, 55375, 'fifty-five thousand three hundred seventy-five');\nINSERT INTO t2 VALUES(20022, 76017, 'seventy-six thousand seventeen');\nINSERT INTO t2 VALUES(20023, 89706, 'eighty-nine thousand seven hundred six');\nINSERT INTO t2 VALUES(20024, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(20025, 84953, 'eighty-four thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(20026, 37602, 'thirty-seven thousand six hundred two');\nINSERT INTO t2 VALUES(20027, 32115, 'thirty-two thousand one hundred fifteen');\nINSERT INTO t2 VALUES(20028, 44930, 'forty-four thousand nine hundred thirty');\nINSERT INTO t2 VALUES(20029, 20967, 'twenty thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(20030, 13195, 'thirteen thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(20031, 92107, 'ninety-two thousand one hundred seven');\nINSERT INTO t2 VALUES(20032, 11648, 'eleven thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(20033, 49707, 'forty-nine thousand seven hundred seven');\nINSERT INTO t2 VALUES(20034, 70924, 'seventy thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(20035, 77205, 'seventy-seven thousand two hundred five');\nINSERT INTO t2 VALUES(20036, 62144, 'sixty-two thousand one hundred forty-four');\nINSERT INTO t2 VALUES(20037, 2889, 'two thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(20038, 20793, 'twenty thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(20039, 13352, 'thirteen thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(20040, 99327, 'ninety-nine thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(20041, 76507, 'seventy-six thousand five hundred seven');\nINSERT INTO t2 VALUES(20042, 40658, 'forty thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(20043, 63959, 'sixty-three thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(20044, 3508, 'three thousand five hundred eight');\nINSERT INTO t2 VALUES(20045, 30481, 'thirty thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(20046, 62331, 'sixty-two thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(20047, 56441, 'fifty-six thousand four hundred forty-one');\nINSERT INTO t2 VALUES(20048, 70111, 'seventy thousand one hundred eleven');\nINSERT INTO t2 VALUES(20049, 40543, 'forty thousand five hundred forty-three');\nINSERT INTO t2 VALUES(20050, 81236, 'eighty-one thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(20051, 1887, 'one thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(20052, 78388, 'seventy-eight thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(20053, 59594, 'fifty-nine thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(20054, 25612, 'twenty-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(20055, 97881, 'ninety-seven thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(20056, 84065, 'eighty-four thousand sixty-five');\nINSERT INTO t2 VALUES(20057, 20841, 'twenty thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(20058, 70864, 'seventy thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(20059, 24, 'twenty-four');\nINSERT INTO t2 VALUES(20060, 59460, 'fifty-nine thousand four hundred sixty');\nINSERT INTO t2 VALUES(20061, 36940, 'thirty-six thousand nine hundred forty');\nINSERT INTO t2 VALUES(20062, 31766, 'thirty-one thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(20063, 99651, 'ninety-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(20064, 32179, 'thirty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(20065, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(20066, 47691, 'forty-seven thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(20067, 58807, 'fifty-eight thousand eight hundred seven');\nINSERT INTO t2 VALUES(20068, 54156, 'fifty-four thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(20069, 91741, 'ninety-one thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20070, 20641, 'twenty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(20071, 74369, 'seventy-four thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(20072, 56627, 'fifty-six thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(20073, 55334, 'fifty-five thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(20074, 39563, 'thirty-nine thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(20075, 51001, 'fifty-one thousand one');\nINSERT INTO t2 VALUES(20076, 35125, 'thirty-five thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(20077, 4518, 'four thousand five hundred eighteen');\nINSERT INTO t2 VALUES(20078, 492, 'four hundred ninety-two');\nINSERT INTO t2 VALUES(20079, 84850, 'eighty-four thousand eight hundred fifty');\nINSERT INTO t2 VALUES(20080, 9344, 'nine thousand three hundred forty-four');\nINSERT INTO t2 VALUES(20081, 20218, 'twenty thousand two hundred eighteen');\nINSERT INTO t2 VALUES(20082, 70399, 'seventy thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(20083, 4405, 'four thousand four hundred five');\nINSERT INTO t2 VALUES(20084, 36926, 'thirty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(20085, 24812, 'twenty-four thousand eight hundred twelve');\nINSERT INTO t2 VALUES(20086, 61510, 'sixty-one thousand five hundred ten');\nINSERT INTO t2 VALUES(20087, 13932, 'thirteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(20088, 68178, 'sixty-eight thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(20089, 65749, 'sixty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(20090, 76233, 'seventy-six thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(20091, 40858, 'forty thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(20092, 58206, 'fifty-eight thousand two hundred six');\nINSERT INTO t2 VALUES(20093, 62129, 'sixty-two thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(20094, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(20095, 88659, 'eighty-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(20096, 77263, 'seventy-seven thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(20097, 27296, 'twenty-seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(20098, 61605, 'sixty-one thousand six hundred five');\nINSERT INTO t2 VALUES(20099, 1597, 'one thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(20100, 54857, 'fifty-four thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(20101, 52421, 'fifty-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(20102, 60895, 'sixty thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(20103, 92149, 'ninety-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(20104, 8905, 'eight thousand nine hundred five');\nINSERT INTO t2 VALUES(20105, 53444, 'fifty-three thousand four hundred forty-four');\nINSERT INTO t2 VALUES(20106, 43750, 'forty-three thousand seven hundred fifty');\nINSERT INTO t2 VALUES(20107, 2619, 'two thousand six hundred nineteen');\nINSERT INTO t2 VALUES(20108, 30994, 'thirty thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(20109, 59684, 'fifty-nine thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(20110, 50801, 'fifty thousand eight hundred one');\nINSERT INTO t2 VALUES(20111, 9781, 'nine thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(20112, 56016, 'fifty-six thousand sixteen');\nINSERT INTO t2 VALUES(20113, 68971, 'sixty-eight thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(20114, 97782, 'ninety-seven thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(20115, 49862, 'forty-nine thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(20116, 72948, 'seventy-two thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(20117, 75898, 'seventy-five thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(20118, 50373, 'fifty thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(20119, 57588, 'fifty-seven thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(20120, 45271, 'forty-five thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(20121, 81570, 'eighty-one thousand five hundred seventy');\nINSERT INTO t2 VALUES(20122, 22299, 'twenty-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(20123, 23548, 'twenty-three thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(20124, 19814, 'nineteen thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(20125, 53403, 'fifty-three thousand four hundred three');\nINSERT INTO t2 VALUES(20126, 52996, 'fifty-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20127, 85266, 'eighty-five thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(20128, 52259, 'fifty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(20129, 19140, 'nineteen thousand one hundred forty');\nINSERT INTO t2 VALUES(20130, 18919, 'eighteen thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20131, 53499, 'fifty-three thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(20132, 5135, 'five thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(20133, 13267, 'thirteen thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(20134, 9012, 'nine thousand twelve');\nINSERT INTO t2 VALUES(20135, 46791, 'forty-six thousand seven hundred ninety-one');\nINSERT INTO t2 VALUES(20136, 75896, 'seventy-five thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(20137, 90172, 'ninety thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(20138, 28825, 'twenty-eight thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(20139, 31334, 'thirty-one thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(20140, 69579, 'sixty-nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(20141, 82442, 'eighty-two thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20142, 34421, 'thirty-four thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(20143, 74961, 'seventy-four thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(20144, 85862, 'eighty-five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(20145, 90481, 'ninety thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(20146, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(20147, 8445, 'eight thousand four hundred forty-five');\nINSERT INTO t2 VALUES(20148, 38830, 'thirty-eight thousand eight hundred thirty');\nINSERT INTO t2 VALUES(20149, 11034, 'eleven thousand thirty-four');\nINSERT INTO t2 VALUES(20150, 31231, 'thirty-one thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(20151, 22335, 'twenty-two thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(20152, 59186, 'fifty-nine thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(20153, 17706, 'seventeen thousand seven hundred six');\nINSERT INTO t2 VALUES(20154, 22502, 'twenty-two thousand five hundred two');\nINSERT INTO t2 VALUES(20155, 61252, 'sixty-one thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20156, 94795, 'ninety-four thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(20157, 97363, 'ninety-seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(20158, 2586, 'two thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(20159, 85084, 'eighty-five thousand eighty-four');\nINSERT INTO t2 VALUES(20160, 82312, 'eighty-two thousand three hundred twelve');\nINSERT INTO t2 VALUES(20161, 64735, 'sixty-four thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(20162, 17168, 'seventeen thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20163, 23309, 'twenty-three thousand three hundred nine');\nINSERT INTO t2 VALUES(20164, 43513, 'forty-three thousand five hundred thirteen');\nINSERT INTO t2 VALUES(20165, 23799, 'twenty-three thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(20166, 3217, 'three thousand two hundred seventeen');\nINSERT INTO t2 VALUES(20167, 95340, 'ninety-five thousand three hundred forty');\nINSERT INTO t2 VALUES(20168, 70602, 'seventy thousand six hundred two');\nINSERT INTO t2 VALUES(20169, 20351, 'twenty thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(20170, 24845, 'twenty-four thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(20171, 35949, 'thirty-five thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20172, 50394, 'fifty thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(20173, 79107, 'seventy-nine thousand one hundred seven');\nINSERT INTO t2 VALUES(20174, 35970, 'thirty-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(20175, 70893, 'seventy thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20176, 98818, 'ninety-eight thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(20177, 21591, 'twenty-one thousand five hundred ninety-one');\nINSERT INTO t2 VALUES(20178, 30420, 'thirty thousand four hundred twenty');\nINSERT INTO t2 VALUES(20179, 53188, 'fifty-three thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(20180, 5982, 'five thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(20181, 90666, 'ninety thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(20182, 9432, 'nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(20183, 93587, 'ninety-three thousand five hundred eighty-seven');\nINSERT INTO t2 VALUES(20184, 97535, 'ninety-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(20185, 82558, 'eighty-two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(20186, 91057, 'ninety-one thousand fifty-seven');\nINSERT INTO t2 VALUES(20187, 5136, 'five thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(20188, 58203, 'fifty-eight thousand two hundred three');\nINSERT INTO t2 VALUES(20189, 27930, 'twenty-seven thousand nine hundred thirty');\nINSERT INTO t2 VALUES(20190, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t2 VALUES(20191, 28240, 'twenty-eight thousand two hundred forty');\nINSERT INTO t2 VALUES(20192, 35740, 'thirty-five thousand seven hundred forty');\nINSERT INTO t2 VALUES(20193, 5761, 'five thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20194, 95035, 'ninety-five thousand thirty-five');\nINSERT INTO t2 VALUES(20195, 41961, 'forty-one thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(20196, 80072, 'eighty thousand seventy-two');\nINSERT INTO t2 VALUES(20197, 19463, 'nineteen thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(20198, 83077, 'eighty-three thousand seventy-seven');\nINSERT INTO t2 VALUES(20199, 18275, 'eighteen thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(20200, 10747, 'ten thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(20201, 44058, 'forty-four thousand fifty-eight');\nINSERT INTO t2 VALUES(20202, 57614, 'fifty-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20203, 71589, 'seventy-one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(20204, 54440, 'fifty-four thousand four hundred forty');\nINSERT INTO t2 VALUES(20205, 13715, 'thirteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20206, 6479, 'six thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20207, 71980, 'seventy-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(20208, 12738, 'twelve thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(20209, 58303, 'fifty-eight thousand three hundred three');\nINSERT INTO t2 VALUES(20210, 76557, 'seventy-six thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20211, 79044, 'seventy-nine thousand forty-four');\nINSERT INTO t2 VALUES(20212, 80736, 'eighty thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(20213, 45741, 'forty-five thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20214, 92739, 'ninety-two thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(20215, 45169, 'forty-five thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(20216, 41351, 'forty-one thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(20217, 90996, 'ninety thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20218, 21494, 'twenty-one thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(20219, 88697, 'eighty-eight thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(20220, 43073, 'forty-three thousand seventy-three');\nINSERT INTO t2 VALUES(20221, 69997, 'sixty-nine thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(20222, 20907, 'twenty thousand nine hundred seven');\nINSERT INTO t2 VALUES(20223, 73037, 'seventy-three thousand thirty-seven');\nINSERT INTO t2 VALUES(20224, 45704, 'forty-five thousand seven hundred four');\nINSERT INTO t2 VALUES(20225, 59100, 'fifty-nine thousand one hundred');\nINSERT INTO t2 VALUES(20226, 36816, 'thirty-six thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(20227, 50966, 'fifty thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(20228, 98003, 'ninety-eight thousand three');\nINSERT INTO t2 VALUES(20229, 84626, 'eighty-four thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(20230, 26257, 'twenty-six thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(20231, 60629, 'sixty thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20232, 49680, 'forty-nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(20233, 70114, 'seventy thousand one hundred fourteen');\nINSERT INTO t2 VALUES(20234, 58637, 'fifty-eight thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(20235, 62562, 'sixty-two thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(20236, 54682, 'fifty-four thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(20237, 54353, 'fifty-four thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(20238, 92896, 'ninety-two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(20239, 94425, 'ninety-four thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(20240, 80353, 'eighty thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(20241, 65809, 'sixty-five thousand eight hundred nine');\nINSERT INTO t2 VALUES(20242, 49786, 'forty-nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(20243, 65147, 'sixty-five thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(20244, 31331, 'thirty-one thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(20245, 49542, 'forty-nine thousand five hundred forty-two');\nINSERT INTO t2 VALUES(20246, 6856, 'six thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(20247, 76064, 'seventy-six thousand sixty-four');\nINSERT INTO t2 VALUES(20248, 60702, 'sixty thousand seven hundred two');\nINSERT INTO t2 VALUES(20249, 21229, 'twenty-one thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(20250, 2003, 'two thousand three');\nINSERT INTO t2 VALUES(20251, 17884, 'seventeen thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(20252, 10085, 'ten thousand eighty-five');\nINSERT INTO t2 VALUES(20253, 36315, 'thirty-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(20254, 64835, 'sixty-four thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(20255, 58745, 'fifty-eight thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(20256, 13245, 'thirteen thousand two hundred forty-five');\nINSERT INTO t2 VALUES(20257, 2753, 'two thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(20258, 16625, 'sixteen thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(20259, 86585, 'eighty-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(20260, 8156, 'eight thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(20261, 73769, 'seventy-three thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(20262, 2438, 'two thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(20263, 81168, 'eighty-one thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20264, 53391, 'fifty-three thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(20265, 89153, 'eighty-nine thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(20266, 10212, 'ten thousand two hundred twelve');\nINSERT INTO t2 VALUES(20267, 2484, 'two thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(20268, 70558, 'seventy thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(20269, 51682, 'fifty-one thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(20270, 29301, 'twenty-nine thousand three hundred one');\nINSERT INTO t2 VALUES(20271, 90159, 'ninety thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(20272, 5497, 'five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20273, 24146, 'twenty-four thousand one hundred forty-six');\nINSERT INTO t2 VALUES(20274, 64063, 'sixty-four thousand sixty-three');\nINSERT INTO t2 VALUES(20275, 13840, 'thirteen thousand eight hundred forty');\nINSERT INTO t2 VALUES(20276, 79603, 'seventy-nine thousand six hundred three');\nINSERT INTO t2 VALUES(20277, 14101, 'fourteen thousand one hundred one');\nINSERT INTO t2 VALUES(20278, 70381, 'seventy thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(20279, 63229, 'sixty-three thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(20280, 40294, 'forty thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(20281, 13414, 'thirteen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20282, 8670, 'eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(20283, 51517, 'fifty-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(20284, 29134, 'twenty-nine thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(20285, 10901, 'ten thousand nine hundred one');\nINSERT INTO t2 VALUES(20286, 6581, 'six thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(20287, 87225, 'eighty-seven thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(20288, 75868, 'seventy-five thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(20289, 72804, 'seventy-two thousand eight hundred four');\nINSERT INTO t2 VALUES(20290, 23544, 'twenty-three thousand five hundred forty-four');\nINSERT INTO t2 VALUES(20291, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(20292, 48227, 'forty-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(20293, 17071, 'seventeen thousand seventy-one');\nINSERT INTO t2 VALUES(20294, 1319, 'one thousand three hundred nineteen');\nINSERT INTO t2 VALUES(20295, 91479, 'ninety-one thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20296, 87657, 'eighty-seven thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(20297, 41603, 'forty-one thousand six hundred three');\nINSERT INTO t2 VALUES(20298, 174, 'one hundred seventy-four');\nINSERT INTO t2 VALUES(20299, 48224, 'forty-eight thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(20300, 54888, 'fifty-four thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(20301, 54929, 'fifty-four thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(20302, 96010, 'ninety-six thousand ten');\nINSERT INTO t2 VALUES(20303, 2593, 'two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(20304, 16481, 'sixteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(20305, 56432, 'fifty-six thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(20306, 82761, 'eighty-two thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20307, 25441, 'twenty-five thousand four hundred forty-one');\nINSERT INTO t2 VALUES(20308, 81835, 'eighty-one thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(20309, 30207, 'thirty thousand two hundred seven');\nINSERT INTO t2 VALUES(20310, 55306, 'fifty-five thousand three hundred six');\nINSERT INTO t2 VALUES(20311, 13397, 'thirteen thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(20312, 55484, 'fifty-five thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(20313, 23271, 'twenty-three thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(20314, 81517, 'eighty-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(20315, 65882, 'sixty-five thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(20316, 43002, 'forty-three thousand two');\nINSERT INTO t2 VALUES(20317, 55469, 'fifty-five thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(20318, 48602, 'forty-eight thousand six hundred two');\nINSERT INTO t2 VALUES(20319, 34597, 'thirty-four thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(20320, 70213, 'seventy thousand two hundred thirteen');\nINSERT INTO t2 VALUES(20321, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(20322, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t2 VALUES(20323, 73173, 'seventy-three thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(20324, 15528, 'fifteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(20325, 43515, 'forty-three thousand five hundred fifteen');\nINSERT INTO t2 VALUES(20326, 3817, 'three thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(20327, 39286, 'thirty-nine thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20328, 37847, 'thirty-seven thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(20329, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(20330, 90816, 'ninety thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(20331, 12593, 'twelve thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(20332, 6190, 'six thousand one hundred ninety');\nINSERT INTO t2 VALUES(20333, 50553, 'fifty thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(20334, 30029, 'thirty thousand twenty-nine');\nINSERT INTO t2 VALUES(20335, 65562, 'sixty-five thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(20336, 53107, 'fifty-three thousand one hundred seven');\nINSERT INTO t2 VALUES(20337, 14726, 'fourteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(20338, 48302, 'forty-eight thousand three hundred two');\nINSERT INTO t2 VALUES(20339, 52743, 'fifty-two thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(20340, 53337, 'fifty-three thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(20341, 1414, 'one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20342, 77952, 'seventy-seven thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(20343, 65802, 'sixty-five thousand eight hundred two');\nINSERT INTO t2 VALUES(20344, 69572, 'sixty-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20345, 57233, 'fifty-seven thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(20346, 6468, 'six thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(20347, 46107, 'forty-six thousand one hundred seven');\nINSERT INTO t2 VALUES(20348, 11913, 'eleven thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(20349, 5465, 'five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(20350, 8829, 'eight thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(20351, 79857, 'seventy-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(20352, 44479, 'forty-four thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20353, 51139, 'fifty-one thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(20354, 12021, 'twelve thousand twenty-one');\nINSERT INTO t2 VALUES(20355, 63039, 'sixty-three thousand thirty-nine');\nINSERT INTO t2 VALUES(20356, 25638, 'twenty-five thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(20357, 44006, 'forty-four thousand six');\nINSERT INTO t2 VALUES(20358, 36836, 'thirty-six thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(20359, 48347, 'forty-eight thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(20360, 96654, 'ninety-six thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(20361, 26944, 'twenty-six thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20362, 32915, 'thirty-two thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(20363, 35790, 'thirty-five thousand seven hundred ninety');\nINSERT INTO t2 VALUES(20364, 53996, 'fifty-three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20365, 42199, 'forty-two thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(20366, 41593, 'forty-one thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(20367, 56532, 'fifty-six thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(20368, 43214, 'forty-three thousand two hundred fourteen');\nINSERT INTO t2 VALUES(20369, 37436, 'thirty-seven thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(20370, 19747, 'nineteen thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(20371, 47188, 'forty-seven thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(20372, 73553, 'seventy-three thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(20373, 18596, 'eighteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(20374, 67614, 'sixty-seven thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20375, 85304, 'eighty-five thousand three hundred four');\nINSERT INTO t2 VALUES(20376, 63543, 'sixty-three thousand five hundred forty-three');\nINSERT INTO t2 VALUES(20377, 87483, 'eighty-seven thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(20378, 48989, 'forty-eight thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(20379, 24757, 'twenty-four thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(20380, 19155, 'nineteen thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(20381, 67853, 'sixty-seven thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(20382, 26459, 'twenty-six thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(20383, 65209, 'sixty-five thousand two hundred nine');\nINSERT INTO t2 VALUES(20384, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(20385, 44750, 'forty-four thousand seven hundred fifty');\nINSERT INTO t2 VALUES(20386, 30488, 'thirty thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(20387, 4768, 'four thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(20388, 52651, 'fifty-two thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(20389, 84459, 'eighty-four thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(20390, 65066, 'sixty-five thousand sixty-six');\nINSERT INTO t2 VALUES(20391, 37166, 'thirty-seven thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(20392, 79846, 'seventy-nine thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(20393, 32541, 'thirty-two thousand five hundred forty-one');\nINSERT INTO t2 VALUES(20394, 54373, 'fifty-four thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(20395, 13305, 'thirteen thousand three hundred five');\nINSERT INTO t2 VALUES(20396, 63929, 'sixty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(20397, 95045, 'ninety-five thousand forty-five');\nINSERT INTO t2 VALUES(20398, 67461, 'sixty-seven thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(20399, 73774, 'seventy-three thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(20400, 57650, 'fifty-seven thousand six hundred fifty');\nINSERT INTO t2 VALUES(20401, 70015, 'seventy thousand fifteen');\nINSERT INTO t2 VALUES(20402, 67994, 'sixty-seven thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(20403, 31402, 'thirty-one thousand four hundred two');\nINSERT INTO t2 VALUES(20404, 27349, 'twenty-seven thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(20405, 55286, 'fifty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20406, 28182, 'twenty-eight thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(20407, 3493, 'three thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(20408, 48055, 'forty-eight thousand fifty-five');\nINSERT INTO t2 VALUES(20409, 21244, 'twenty-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(20410, 38154, 'thirty-eight thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(20411, 80265, 'eighty thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(20412, 71723, 'seventy-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(20413, 61343, 'sixty-one thousand three hundred forty-three');\nINSERT INTO t2 VALUES(20414, 74919, 'seventy-four thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20415, 46577, 'forty-six thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(20416, 2346, 'two thousand three hundred forty-six');\nINSERT INTO t2 VALUES(20417, 85906, 'eighty-five thousand nine hundred six');\nINSERT INTO t2 VALUES(20418, 740, 'seven hundred forty');\nINSERT INTO t2 VALUES(20419, 4222, 'four thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(20420, 64629, 'sixty-four thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20421, 19167, 'nineteen thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(20422, 5588, 'five thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(20423, 34908, 'thirty-four thousand nine hundred eight');\nINSERT INTO t2 VALUES(20424, 81549, 'eighty-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(20425, 16148, 'sixteen thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(20426, 73594, 'seventy-three thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(20427, 17111, 'seventeen thousand one hundred eleven');\nINSERT INTO t2 VALUES(20428, 64030, 'sixty-four thousand thirty');\nINSERT INTO t2 VALUES(20429, 37696, 'thirty-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(20430, 32476, 'thirty-two thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(20431, 55253, 'fifty-five thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(20432, 65532, 'sixty-five thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(20433, 35628, 'thirty-five thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(20434, 27576, 'twenty-seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(20435, 71745, 'seventy-one thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(20436, 69337, 'sixty-nine thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(20437, 82296, 'eighty-two thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(20438, 99081, 'ninety-nine thousand eighty-one');\nINSERT INTO t2 VALUES(20439, 37373, 'thirty-seven thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(20440, 84280, 'eighty-four thousand two hundred eighty');\nINSERT INTO t2 VALUES(20441, 66241, 'sixty-six thousand two hundred forty-one');\nINSERT INTO t2 VALUES(20442, 38969, 'thirty-eight thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(20443, 93769, 'ninety-three thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(20444, 35005, 'thirty-five thousand five');\nINSERT INTO t2 VALUES(20445, 71445, 'seventy-one thousand four hundred forty-five');\nINSERT INTO t2 VALUES(20446, 23630, 'twenty-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(20447, 93688, 'ninety-three thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(20448, 86919, 'eighty-six thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20449, 54085, 'fifty-four thousand eighty-five');\nINSERT INTO t2 VALUES(20450, 71980, 'seventy-one thousand nine hundred eighty');\nINSERT INTO t2 VALUES(20451, 6168, 'six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20452, 99993, 'ninety-nine thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(20453, 59193, 'fifty-nine thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(20454, 47886, 'forty-seven thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(20455, 48562, 'forty-eight thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(20456, 17577, 'seventeen thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(20457, 79387, 'seventy-nine thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(20458, 51301, 'fifty-one thousand three hundred one');\nINSERT INTO t2 VALUES(20459, 36297, 'thirty-six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(20460, 12403, 'twelve thousand four hundred three');\nINSERT INTO t2 VALUES(20461, 14094, 'fourteen thousand ninety-four');\nINSERT INTO t2 VALUES(20462, 48613, 'forty-eight thousand six hundred thirteen');\nINSERT INTO t2 VALUES(20463, 22479, 'twenty-two thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20464, 43908, 'forty-three thousand nine hundred eight');\nINSERT INTO t2 VALUES(20465, 20918, 'twenty thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(20466, 33085, 'thirty-three thousand eighty-five');\nINSERT INTO t2 VALUES(20467, 40252, 'forty thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20468, 75693, 'seventy-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(20469, 36604, 'thirty-six thousand six hundred four');\nINSERT INTO t2 VALUES(20470, 93522, 'ninety-three thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(20471, 29917, 'twenty-nine thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(20472, 41927, 'forty-one thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(20473, 66167, 'sixty-six thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(20474, 96824, 'ninety-six thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(20475, 45615, 'forty-five thousand six hundred fifteen');\nINSERT INTO t2 VALUES(20476, 79201, 'seventy-nine thousand two hundred one');\nINSERT INTO t2 VALUES(20477, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t2 VALUES(20478, 18572, 'eighteen thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20479, 59586, 'fifty-nine thousand five hundred eighty-six');\nINSERT INTO t2 VALUES(20480, 60391, 'sixty thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(20481, 61283, 'sixty-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(20482, 36969, 'thirty-six thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(20483, 91934, 'ninety-one thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(20484, 9812, 'nine thousand eight hundred twelve');\nINSERT INTO t2 VALUES(20485, 90435, 'ninety thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(20486, 62554, 'sixty-two thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(20487, 49650, 'forty-nine thousand six hundred fifty');\nINSERT INTO t2 VALUES(20488, 24294, 'twenty-four thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(20489, 8400, 'eight thousand four hundred');\nINSERT INTO t2 VALUES(20490, 20463, 'twenty thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(20491, 46201, 'forty-six thousand two hundred one');\nINSERT INTO t2 VALUES(20492, 5944, 'five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20493, 92271, 'ninety-two thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(20494, 63635, 'sixty-three thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(20495, 32087, 'thirty-two thousand eighty-seven');\nINSERT INTO t2 VALUES(20496, 47807, 'forty-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(20497, 94715, 'ninety-four thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20498, 94015, 'ninety-four thousand fifteen');\nINSERT INTO t2 VALUES(20499, 54414, 'fifty-four thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20500, 1588, 'one thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(20501, 63834, 'sixty-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(20502, 22239, 'twenty-two thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(20503, 97228, 'ninety-seven thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(20504, 10328, 'ten thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(20505, 76898, 'seventy-six thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(20506, 23497, 'twenty-three thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20507, 14411, 'fourteen thousand four hundred eleven');\nINSERT INTO t2 VALUES(20508, 91734, 'ninety-one thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(20509, 20831, 'twenty thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(20510, 14442, 'fourteen thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20511, 96949, 'ninety-six thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20512, 3557, 'three thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(20513, 24705, 'twenty-four thousand seven hundred five');\nINSERT INTO t2 VALUES(20514, 5967, 'five thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(20515, 58437, 'fifty-eight thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(20516, 67809, 'sixty-seven thousand eight hundred nine');\nINSERT INTO t2 VALUES(20517, 62234, 'sixty-two thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(20518, 13333, 'thirteen thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(20519, 8676, 'eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(20520, 14835, 'fourteen thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(20521, 99775, 'ninety-nine thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(20522, 74954, 'seventy-four thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(20523, 40919, 'forty thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(20524, 19816, 'nineteen thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(20525, 57962, 'fifty-seven thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(20526, 16068, 'sixteen thousand sixty-eight');\nINSERT INTO t2 VALUES(20527, 72056, 'seventy-two thousand fifty-six');\nINSERT INTO t2 VALUES(20528, 23015, 'twenty-three thousand fifteen');\nINSERT INTO t2 VALUES(20529, 380, 'three hundred eighty');\nINSERT INTO t2 VALUES(20530, 99922, 'ninety-nine thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(20531, 36592, 'thirty-six thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(20532, 96929, 'ninety-six thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(20533, 68176, 'sixty-eight thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(20534, 27542, 'twenty-seven thousand five hundred forty-two');\nINSERT INTO t2 VALUES(20535, 18933, 'eighteen thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(20536, 10965, 'ten thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(20537, 36763, 'thirty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(20538, 47900, 'forty-seven thousand nine hundred');\nINSERT INTO t2 VALUES(20539, 95142, 'ninety-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(20540, 34310, 'thirty-four thousand three hundred ten');\nINSERT INTO t2 VALUES(20541, 17033, 'seventeen thousand thirty-three');\nINSERT INTO t2 VALUES(20542, 17959, 'seventeen thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(20543, 63214, 'sixty-three thousand two hundred fourteen');\nINSERT INTO t2 VALUES(20544, 54462, 'fifty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(20545, 36364, 'thirty-six thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(20546, 83234, 'eighty-three thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(20547, 51418, 'fifty-one thousand four hundred eighteen');\nINSERT INTO t2 VALUES(20548, 69847, 'sixty-nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(20549, 99572, 'ninety-nine thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20550, 55268, 'fifty-five thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(20551, 68857, 'sixty-eight thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(20552, 44393, 'forty-four thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(20553, 98973, 'ninety-eight thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(20554, 76854, 'seventy-six thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(20555, 89530, 'eighty-nine thousand five hundred thirty');\nINSERT INTO t2 VALUES(20556, 32166, 'thirty-two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(20557, 63760, 'sixty-three thousand seven hundred sixty');\nINSERT INTO t2 VALUES(20558, 72352, 'seventy-two thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(20559, 94578, 'ninety-four thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(20560, 73423, 'seventy-three thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(20561, 20202, 'twenty thousand two hundred two');\nINSERT INTO t2 VALUES(20562, 73422, 'seventy-three thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(20563, 2379, 'two thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(20564, 79916, 'seventy-nine thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(20565, 85728, 'eighty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20566, 48934, 'forty-eight thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(20567, 38606, 'thirty-eight thousand six hundred six');\nINSERT INTO t2 VALUES(20568, 15497, 'fifteen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20569, 54742, 'fifty-four thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(20570, 30257, 'thirty thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(20571, 64408, 'sixty-four thousand four hundred eight');\nINSERT INTO t2 VALUES(20572, 47405, 'forty-seven thousand four hundred five');\nINSERT INTO t2 VALUES(20573, 77402, 'seventy-seven thousand four hundred two');\nINSERT INTO t2 VALUES(20574, 99103, 'ninety-nine thousand one hundred three');\nINSERT INTO t2 VALUES(20575, 79651, 'seventy-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(20576, 99402, 'ninety-nine thousand four hundred two');\nINSERT INTO t2 VALUES(20577, 89598, 'eighty-nine thousand five hundred ninety-eight');\nINSERT INTO t2 VALUES(20578, 90249, 'ninety thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(20579, 93415, 'ninety-three thousand four hundred fifteen');\nINSERT INTO t2 VALUES(20580, 42630, 'forty-two thousand six hundred thirty');\nINSERT INTO t2 VALUES(20581, 32661, 'thirty-two thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(20582, 37103, 'thirty-seven thousand one hundred three');\nINSERT INTO t2 VALUES(20583, 16978, 'sixteen thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(20584, 38616, 'thirty-eight thousand six hundred sixteen');\nINSERT INTO t2 VALUES(20585, 22704, 'twenty-two thousand seven hundred four');\nINSERT INTO t2 VALUES(20586, 61541, 'sixty-one thousand five hundred forty-one');\nINSERT INTO t2 VALUES(20587, 21899, 'twenty-one thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(20588, 43049, 'forty-three thousand forty-nine');\nINSERT INTO t2 VALUES(20589, 13190, 'thirteen thousand one hundred ninety');\nINSERT INTO t2 VALUES(20590, 66828, 'sixty-six thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(20591, 49570, 'forty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(20592, 90522, 'ninety thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(20593, 17497, 'seventeen thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20594, 35635, 'thirty-five thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(20595, 12377, 'twelve thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(20596, 86218, 'eighty-six thousand two hundred eighteen');\nINSERT INTO t2 VALUES(20597, 90538, 'ninety thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(20598, 62472, 'sixty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(20599, 98352, 'ninety-eight thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(20600, 55944, 'fifty-five thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20601, 11704, 'eleven thousand seven hundred four');\nINSERT INTO t2 VALUES(20602, 89408, 'eighty-nine thousand four hundred eight');\nINSERT INTO t2 VALUES(20603, 96286, 'ninety-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20604, 87256, 'eighty-seven thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(20605, 48108, 'forty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(20606, 67272, 'sixty-seven thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(20607, 36700, 'thirty-six thousand seven hundred');\nINSERT INTO t2 VALUES(20608, 62652, 'sixty-two thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(20609, 47604, 'forty-seven thousand six hundred four');\nINSERT INTO t2 VALUES(20610, 19087, 'nineteen thousand eighty-seven');\nINSERT INTO t2 VALUES(20611, 6356, 'six thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(20612, 54976, 'fifty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(20613, 44614, 'forty-four thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20614, 22210, 'twenty-two thousand two hundred ten');\nINSERT INTO t2 VALUES(20615, 12100, 'twelve thousand one hundred');\nINSERT INTO t2 VALUES(20616, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(20617, 74125, 'seventy-four thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(20618, 90307, 'ninety thousand three hundred seven');\nINSERT INTO t2 VALUES(20619, 75986, 'seventy-five thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(20620, 91921, 'ninety-one thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(20621, 93963, 'ninety-three thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(20622, 30547, 'thirty thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(20623, 53953, 'fifty-three thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(20624, 10012, 'ten thousand twelve');\nINSERT INTO t2 VALUES(20625, 1702, 'one thousand seven hundred two');\nINSERT INTO t2 VALUES(20626, 96494, 'ninety-six thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(20627, 23928, 'twenty-three thousand nine hundred twenty-eight');\nINSERT INTO t2 VALUES(20628, 35320, 'thirty-five thousand three hundred twenty');\nINSERT INTO t2 VALUES(20629, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(20630, 5584, 'five thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(20631, 58202, 'fifty-eight thousand two hundred two');\nINSERT INTO t2 VALUES(20632, 94107, 'ninety-four thousand one hundred seven');\nINSERT INTO t2 VALUES(20633, 85456, 'eighty-five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(20634, 24056, 'twenty-four thousand fifty-six');\nINSERT INTO t2 VALUES(20635, 5636, 'five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(20636, 73041, 'seventy-three thousand forty-one');\nINSERT INTO t2 VALUES(20637, 69817, 'sixty-nine thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(20638, 21038, 'twenty-one thousand thirty-eight');\nINSERT INTO t2 VALUES(20639, 30275, 'thirty thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(20640, 27675, 'twenty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(20641, 94480, 'ninety-four thousand four hundred eighty');\nINSERT INTO t2 VALUES(20642, 15516, 'fifteen thousand five hundred sixteen');\nINSERT INTO t2 VALUES(20643, 11572, 'eleven thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(20644, 45252, 'forty-five thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20645, 43435, 'forty-three thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(20646, 78990, 'seventy-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(20647, 20933, 'twenty thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(20648, 93998, 'ninety-three thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(20649, 33684, 'thirty-three thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(20650, 84349, 'eighty-four thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(20651, 97732, 'ninety-seven thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(20652, 69606, 'sixty-nine thousand six hundred six');\nINSERT INTO t2 VALUES(20653, 1497, 'one thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(20654, 75230, 'seventy-five thousand two hundred thirty');\nINSERT INTO t2 VALUES(20655, 6955, 'six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(20656, 76200, 'seventy-six thousand two hundred');\nINSERT INTO t2 VALUES(20657, 98056, 'ninety-eight thousand fifty-six');\nINSERT INTO t2 VALUES(20658, 29783, 'twenty-nine thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(20659, 85478, 'eighty-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(20660, 87819, 'eighty-seven thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(20661, 32190, 'thirty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(20662, 72822, 'seventy-two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(20663, 80514, 'eighty thousand five hundred fourteen');\nINSERT INTO t2 VALUES(20664, 90920, 'ninety thousand nine hundred twenty');\nINSERT INTO t2 VALUES(20665, 47466, 'forty-seven thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(20666, 88710, 'eighty-eight thousand seven hundred ten');\nINSERT INTO t2 VALUES(20667, 56286, 'fifty-six thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(20668, 32668, 'thirty-two thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(20669, 91516, 'ninety-one thousand five hundred sixteen');\nINSERT INTO t2 VALUES(20670, 14851, 'fourteen thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(20671, 69855, 'sixty-nine thousand eight hundred fifty-five');\nINSERT INTO t2 VALUES(20672, 9617, 'nine thousand six hundred seventeen');\nINSERT INTO t2 VALUES(20673, 24029, 'twenty-four thousand twenty-nine');\nINSERT INTO t2 VALUES(20674, 53782, 'fifty-three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(20675, 14005, 'fourteen thousand five');\nINSERT INTO t2 VALUES(20676, 8690, 'eight thousand six hundred ninety');\nINSERT INTO t2 VALUES(20677, 61739, 'sixty-one thousand seven hundred thirty-nine');\nINSERT INTO t2 VALUES(20678, 39679, 'thirty-nine thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(20679, 69941, 'sixty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(20680, 29547, 'twenty-nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(20681, 96030, 'ninety-six thousand thirty');\nINSERT INTO t2 VALUES(20682, 3431, 'three thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(20683, 99589, 'ninety-nine thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(20684, 79761, 'seventy-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20685, 95908, 'ninety-five thousand nine hundred eight');\nINSERT INTO t2 VALUES(20686, 84673, 'eighty-four thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(20687, 49314, 'forty-nine thousand three hundred fourteen');\nINSERT INTO t2 VALUES(20688, 8988, 'eight thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(20689, 63741, 'sixty-three thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20690, 3640, 'three thousand six hundred forty');\nINSERT INTO t2 VALUES(20691, 86596, 'eighty-six thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(20692, 4697, 'four thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(20693, 30021, 'thirty thousand twenty-one');\nINSERT INTO t2 VALUES(20694, 45842, 'forty-five thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(20695, 95024, 'ninety-five thousand twenty-four');\nINSERT INTO t2 VALUES(20696, 59861, 'fifty-nine thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(20697, 39266, 'thirty-nine thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(20698, 4396, 'four thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(20699, 55728, 'fifty-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20700, 71628, 'seventy-one thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(20701, 90861, 'ninety thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(20702, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(20703, 36270, 'thirty-six thousand two hundred seventy');\nINSERT INTO t2 VALUES(20704, 70632, 'seventy thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(20705, 70912, 'seventy thousand nine hundred twelve');\nINSERT INTO t2 VALUES(20706, 6578, 'six thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(20707, 25011, 'twenty-five thousand eleven');\nINSERT INTO t2 VALUES(20708, 1724, 'one thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(20709, 40909, 'forty thousand nine hundred nine');\nINSERT INTO t2 VALUES(20710, 28152, 'twenty-eight thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(20711, 80649, 'eighty thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(20712, 64096, 'sixty-four thousand ninety-six');\nINSERT INTO t2 VALUES(20713, 91258, 'ninety-one thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(20714, 6001, 'six thousand one');\nINSERT INTO t2 VALUES(20715, 28212, 'twenty-eight thousand two hundred twelve');\nINSERT INTO t2 VALUES(20716, 38634, 'thirty-eight thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(20717, 44682, 'forty-four thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(20718, 13774, 'thirteen thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(20719, 72830, 'seventy-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(20720, 16510, 'sixteen thousand five hundred ten');\nINSERT INTO t2 VALUES(20721, 81935, 'eighty-one thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(20722, 2153, 'two thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(20723, 54733, 'fifty-four thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(20724, 80109, 'eighty thousand one hundred nine');\nINSERT INTO t2 VALUES(20725, 32962, 'thirty-two thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(20726, 65516, 'sixty-five thousand five hundred sixteen');\nINSERT INTO t2 VALUES(20727, 32228, 'thirty-two thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(20728, 36502, 'thirty-six thousand five hundred two');\nINSERT INTO t2 VALUES(20729, 89620, 'eighty-nine thousand six hundred twenty');\nINSERT INTO t2 VALUES(20730, 48893, 'forty-eight thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20731, 42827, 'forty-two thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(20732, 29125, 'twenty-nine thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(20733, 27007, 'twenty-seven thousand seven');\nINSERT INTO t2 VALUES(20734, 9560, 'nine thousand five hundred sixty');\nINSERT INTO t2 VALUES(20735, 41094, 'forty-one thousand ninety-four');\nINSERT INTO t2 VALUES(20736, 57818, 'fifty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(20737, 71140, 'seventy-one thousand one hundred forty');\nINSERT INTO t2 VALUES(20738, 27027, 'twenty-seven thousand twenty-seven');\nINSERT INTO t2 VALUES(20739, 8063, 'eight thousand sixty-three');\nINSERT INTO t2 VALUES(20740, 93266, 'ninety-three thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(20741, 72355, 'seventy-two thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(20742, 13654, 'thirteen thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(20743, 45002, 'forty-five thousand two');\nINSERT INTO t2 VALUES(20744, 24665, 'twenty-four thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(20745, 88343, 'eighty-eight thousand three hundred forty-three');\nINSERT INTO t2 VALUES(20746, 33168, 'thirty-three thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(20747, 80145, 'eighty thousand one hundred forty-five');\nINSERT INTO t2 VALUES(20748, 13097, 'thirteen thousand ninety-seven');\nINSERT INTO t2 VALUES(20749, 14021, 'fourteen thousand twenty-one');\nINSERT INTO t2 VALUES(20750, 92067, 'ninety-two thousand sixty-seven');\nINSERT INTO t2 VALUES(20751, 87599, 'eighty-seven thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(20752, 21009, 'twenty-one thousand nine');\nINSERT INTO t2 VALUES(20753, 16556, 'sixteen thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(20754, 59066, 'fifty-nine thousand sixty-six');\nINSERT INTO t2 VALUES(20755, 92223, 'ninety-two thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(20756, 67805, 'sixty-seven thousand eight hundred five');\nINSERT INTO t2 VALUES(20757, 81185, 'eighty-one thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(20758, 19893, 'nineteen thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20759, 40442, 'forty thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20760, 22420, 'twenty-two thousand four hundred twenty');\nINSERT INTO t2 VALUES(20761, 89833, 'eighty-nine thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(20762, 47442, 'forty-seven thousand four hundred forty-two');\nINSERT INTO t2 VALUES(20763, 64418, 'sixty-four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(20764, 56734, 'fifty-six thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(20765, 48198, 'forty-eight thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(20766, 74803, 'seventy-four thousand eight hundred three');\nINSERT INTO t2 VALUES(20767, 54310, 'fifty-four thousand three hundred ten');\nINSERT INTO t2 VALUES(20768, 42749, 'forty-two thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(20769, 1595, 'one thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(20770, 37104, 'thirty-seven thousand one hundred four');\nINSERT INTO t2 VALUES(20771, 93970, 'ninety-three thousand nine hundred seventy');\nINSERT INTO t2 VALUES(20772, 77004, 'seventy-seven thousand four');\nINSERT INTO t2 VALUES(20773, 38077, 'thirty-eight thousand seventy-seven');\nINSERT INTO t2 VALUES(20774, 4318, 'four thousand three hundred eighteen');\nINSERT INTO t2 VALUES(20775, 30259, 'thirty thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(20776, 60477, 'sixty thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(20777, 29986, 'twenty-nine thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(20778, 56814, 'fifty-six thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(20779, 57633, 'fifty-seven thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(20780, 50036, 'fifty thousand thirty-six');\nINSERT INTO t2 VALUES(20781, 60730, 'sixty thousand seven hundred thirty');\nINSERT INTO t2 VALUES(20782, 35100, 'thirty-five thousand one hundred');\nINSERT INTO t2 VALUES(20783, 61113, 'sixty-one thousand one hundred thirteen');\nINSERT INTO t2 VALUES(20784, 140, 'one hundred forty');\nINSERT INTO t2 VALUES(20785, 35784, 'thirty-five thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(20786, 87422, 'eighty-seven thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(20787, 28128, 'twenty-eight thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(20788, 66213, 'sixty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(20789, 44242, 'forty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(20790, 2525, 'two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(20791, 60800, 'sixty thousand eight hundred');\nINSERT INTO t2 VALUES(20792, 86046, 'eighty-six thousand forty-six');\nINSERT INTO t2 VALUES(20793, 77259, 'seventy-seven thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(20794, 18484, 'eighteen thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(20795, 32691, 'thirty-two thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(20796, 89681, 'eighty-nine thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(20797, 19743, 'nineteen thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(20798, 2558, 'two thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(20799, 54514, 'fifty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(20800, 11525, 'eleven thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(20801, 96249, 'ninety-six thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(20802, 33893, 'thirty-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(20803, 82190, 'eighty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(20804, 23297, 'twenty-three thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(20805, 59761, 'fifty-nine thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20806, 5879, 'five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(20807, 68389, 'sixty-eight thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(20808, 2624, 'two thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(20809, 17414, 'seventeen thousand four hundred fourteen');\nINSERT INTO t2 VALUES(20810, 45899, 'forty-five thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(20811, 43977, 'forty-three thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(20812, 98925, 'ninety-eight thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(20813, 99535, 'ninety-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(20814, 47119, 'forty-seven thousand one hundred nineteen');\nINSERT INTO t2 VALUES(20815, 92398, 'ninety-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(20816, 33278, 'thirty-three thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(20817, 10689, 'ten thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(20818, 5457, 'five thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(20819, 76584, 'seventy-six thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(20820, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(20821, 89407, 'eighty-nine thousand four hundred seven');\nINSERT INTO t2 VALUES(20822, 87257, 'eighty-seven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(20823, 28309, 'twenty-eight thousand three hundred nine');\nINSERT INTO t2 VALUES(20824, 63524, 'sixty-three thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(20825, 44844, 'forty-four thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(20826, 61006, 'sixty-one thousand six');\nINSERT INTO t2 VALUES(20827, 79538, 'seventy-nine thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(20828, 97949, 'ninety-seven thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20829, 8632, 'eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(20830, 35741, 'thirty-five thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(20831, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t2 VALUES(20832, 92970, 'ninety-two thousand nine hundred seventy');\nINSERT INTO t2 VALUES(20833, 42735, 'forty-two thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(20834, 7119, 'seven thousand one hundred nineteen');\nINSERT INTO t2 VALUES(20835, 33845, 'thirty-three thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(20836, 47212, 'forty-seven thousand two hundred twelve');\nINSERT INTO t2 VALUES(20837, 13536, 'thirteen thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(20838, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(20839, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(20840, 60169, 'sixty thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(20841, 49256, 'forty-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(20842, 76036, 'seventy-six thousand thirty-six');\nINSERT INTO t2 VALUES(20843, 25276, 'twenty-five thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(20844, 83041, 'eighty-three thousand forty-one');\nINSERT INTO t2 VALUES(20845, 66167, 'sixty-six thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(20846, 95728, 'ninety-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20847, 88389, 'eighty-eight thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(20848, 92996, 'ninety-two thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(20849, 66252, 'sixty-six thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(20850, 67792, 'sixty-seven thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(20851, 28765, 'twenty-eight thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(20852, 53846, 'fifty-three thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(20853, 33826, 'thirty-three thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(20854, 3869, 'three thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(20855, 63720, 'sixty-three thousand seven hundred twenty');\nINSERT INTO t2 VALUES(20856, 58814, 'fifty-eight thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(20857, 86750, 'eighty-six thousand seven hundred fifty');\nINSERT INTO t2 VALUES(20858, 45743, 'forty-five thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(20859, 81728, 'eighty-one thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(20860, 72524, 'seventy-two thousand five hundred twenty-four');\nINSERT INTO t2 VALUES(20861, 7697, 'seven thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(20862, 25890, 'twenty-five thousand eight hundred ninety');\nINSERT INTO t2 VALUES(20863, 60615, 'sixty thousand six hundred fifteen');\nINSERT INTO t2 VALUES(20864, 42107, 'forty-two thousand one hundred seven');\nINSERT INTO t2 VALUES(20865, 30406, 'thirty thousand four hundred six');\nINSERT INTO t2 VALUES(20866, 86830, 'eighty-six thousand eight hundred thirty');\nINSERT INTO t2 VALUES(20867, 90896, 'ninety thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(20868, 70747, 'seventy thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(20869, 64799, 'sixty-four thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(20870, 73710, 'seventy-three thousand seven hundred ten');\nINSERT INTO t2 VALUES(20871, 50208, 'fifty thousand two hundred eight');\nINSERT INTO t2 VALUES(20872, 68686, 'sixty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(20873, 74764, 'seventy-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(20874, 18007, 'eighteen thousand seven');\nINSERT INTO t2 VALUES(20875, 91354, 'ninety-one thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(20876, 47944, 'forty-seven thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(20877, 48147, 'forty-eight thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(20878, 91253, 'ninety-one thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(20879, 33500, 'thirty-three thousand five hundred');\nINSERT INTO t2 VALUES(20880, 21392, 'twenty-one thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(20881, 15667, 'fifteen thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(20882, 36411, 'thirty-six thousand four hundred eleven');\nINSERT INTO t2 VALUES(20883, 25926, 'twenty-five thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(20884, 12885, 'twelve thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(20885, 10333, 'ten thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(20886, 10415, 'ten thousand four hundred fifteen');\nINSERT INTO t2 VALUES(20887, 77629, 'seventy-seven thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20888, 72451, 'seventy-two thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(20889, 26811, 'twenty-six thousand eight hundred eleven');\nINSERT INTO t2 VALUES(20890, 61104, 'sixty-one thousand one hundred four');\nINSERT INTO t2 VALUES(20891, 49890, 'forty-nine thousand eight hundred ninety');\nINSERT INTO t2 VALUES(20892, 31323, 'thirty-one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(20893, 3812, 'three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(20894, 98522, 'ninety-eight thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(20895, 54182, 'fifty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(20896, 86784, 'eighty-six thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(20897, 99745, 'ninety-nine thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(20898, 33437, 'thirty-three thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(20899, 59842, 'fifty-nine thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(20900, 90550, 'ninety thousand five hundred fifty');\nINSERT INTO t2 VALUES(20901, 29505, 'twenty-nine thousand five hundred five');\nINSERT INTO t2 VALUES(20902, 83879, 'eighty-three thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(20903, 46479, 'forty-six thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(20904, 24359, 'twenty-four thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(20905, 17176, 'seventeen thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(20906, 65318, 'sixty-five thousand three hundred eighteen');\nINSERT INTO t2 VALUES(20907, 51389, 'fifty-one thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(20908, 67213, 'sixty-seven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(20909, 27654, 'twenty-seven thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(20910, 32583, 'thirty-two thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(20911, 30785, 'thirty thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(20912, 48418, 'forty-eight thousand four hundred eighteen');\nINSERT INTO t2 VALUES(20913, 34069, 'thirty-four thousand sixty-nine');\nINSERT INTO t2 VALUES(20914, 76752, 'seventy-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(20915, 35915, 'thirty-five thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(20916, 44142, 'forty-four thousand one hundred forty-two');\nINSERT INTO t2 VALUES(20917, 67133, 'sixty-seven thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(20918, 97971, 'ninety-seven thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(20919, 43465, 'forty-three thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(20920, 73100, 'seventy-three thousand one hundred');\nINSERT INTO t2 VALUES(20921, 45014, 'forty-five thousand fourteen');\nINSERT INTO t2 VALUES(20922, 27457, 'twenty-seven thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(20923, 48786, 'forty-eight thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(20924, 49949, 'forty-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(20925, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20926, 30083, 'thirty thousand eighty-three');\nINSERT INTO t2 VALUES(20927, 36179, 'thirty-six thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(20928, 49258, 'forty-nine thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(20929, 76085, 'seventy-six thousand eighty-five');\nINSERT INTO t2 VALUES(20930, 90842, 'ninety thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(20931, 3301, 'three thousand three hundred one');\nINSERT INTO t2 VALUES(20932, 79447, 'seventy-nine thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(20933, 16649, 'sixteen thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(20934, 74228, 'seventy-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(20935, 97208, 'ninety-seven thousand two hundred eight');\nINSERT INTO t2 VALUES(20936, 83384, 'eighty-three thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(20937, 10761, 'ten thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(20938, 64732, 'sixty-four thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(20939, 21700, 'twenty-one thousand seven hundred');\nINSERT INTO t2 VALUES(20940, 32143, 'thirty-two thousand one hundred forty-three');\nINSERT INTO t2 VALUES(20941, 1986, 'one thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(20942, 19251, 'nineteen thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(20943, 52724, 'fifty-two thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(20944, 34691, 'thirty-four thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(20945, 80799, 'eighty thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(20946, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(20947, 11915, 'eleven thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(20948, 12871, 'twelve thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(20949, 48325, 'forty-eight thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(20950, 74847, 'seventy-four thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(20951, 94237, 'ninety-four thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(20952, 46860, 'forty-six thousand eight hundred sixty');\nINSERT INTO t2 VALUES(20953, 21807, 'twenty-one thousand eight hundred seven');\nINSERT INTO t2 VALUES(20954, 87440, 'eighty-seven thousand four hundred forty');\nINSERT INTO t2 VALUES(20955, 71782, 'seventy-one thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(20956, 21321, 'twenty-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(20957, 30951, 'thirty thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(20958, 11856, 'eleven thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(20959, 49811, 'forty-nine thousand eight hundred eleven');\nINSERT INTO t2 VALUES(20960, 79749, 'seventy-nine thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(20961, 11170, 'eleven thousand one hundred seventy');\nINSERT INTO t2 VALUES(20962, 99629, 'ninety-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(20963, 65371, 'sixty-five thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(20964, 34244, 'thirty-four thousand two hundred forty-four');\nINSERT INTO t2 VALUES(20965, 3781, 'three thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(20966, 24686, 'twenty-four thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(20967, 59903, 'fifty-nine thousand nine hundred three');\nINSERT INTO t2 VALUES(20968, 62614, 'sixty-two thousand six hundred fourteen');\nINSERT INTO t2 VALUES(20969, 92050, 'ninety-two thousand fifty');\nINSERT INTO t2 VALUES(20970, 98544, 'ninety-eight thousand five hundred forty-four');\nINSERT INTO t2 VALUES(20971, 28740, 'twenty-eight thousand seven hundred forty');\nINSERT INTO t2 VALUES(20972, 24024, 'twenty-four thousand twenty-four');\nINSERT INTO t2 VALUES(20973, 92000, 'ninety-two thousand');\nINSERT INTO t2 VALUES(20974, 40715, 'forty thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20975, 52113, 'fifty-two thousand one hundred thirteen');\nINSERT INTO t2 VALUES(20976, 68404, 'sixty-eight thousand four hundred four');\nINSERT INTO t2 VALUES(20977, 85410, 'eighty-five thousand four hundred ten');\nINSERT INTO t2 VALUES(20978, 54851, 'fifty-four thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(20979, 22821, 'twenty-two thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(20980, 41283, 'forty-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(20981, 46991, 'forty-six thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(20982, 4852, 'four thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(20983, 79635, 'seventy-nine thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(20984, 88412, 'eighty-eight thousand four hundred twelve');\nINSERT INTO t2 VALUES(20985, 93051, 'ninety-three thousand fifty-one');\nINSERT INTO t2 VALUES(20986, 81058, 'eighty-one thousand fifty-eight');\nINSERT INTO t2 VALUES(20987, 41569, 'forty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(20988, 61945, 'sixty-one thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(20989, 62609, 'sixty-two thousand six hundred nine');\nINSERT INTO t2 VALUES(20990, 13715, 'thirteen thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(20991, 2046, 'two thousand forty-six');\nINSERT INTO t2 VALUES(20992, 22876, 'twenty-two thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(20993, 27636, 'twenty-seven thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(20994, 85744, 'eighty-five thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(20995, 8027, 'eight thousand twenty-seven');\nINSERT INTO t2 VALUES(20996, 18531, 'eighteen thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(20997, 30469, 'thirty thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(20998, 88361, 'eighty-eight thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(20999, 3939, 'three thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(21000, 96075, 'ninety-six thousand seventy-five');\nINSERT INTO t2 VALUES(21001, 59400, 'fifty-nine thousand four hundred');\nINSERT INTO t2 VALUES(21002, 16789, 'sixteen thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(21003, 43998, 'forty-three thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(21004, 11203, 'eleven thousand two hundred three');\nINSERT INTO t2 VALUES(21005, 12690, 'twelve thousand six hundred ninety');\nINSERT INTO t2 VALUES(21006, 45157, 'forty-five thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(21007, 28750, 'twenty-eight thousand seven hundred fifty');\nINSERT INTO t2 VALUES(21008, 2560, 'two thousand five hundred sixty');\nINSERT INTO t2 VALUES(21009, 21191, 'twenty-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(21010, 29201, 'twenty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(21011, 37956, 'thirty-seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(21012, 39641, 'thirty-nine thousand six hundred forty-one');\nINSERT INTO t2 VALUES(21013, 65272, 'sixty-five thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(21014, 27780, 'twenty-seven thousand seven hundred eighty');\nINSERT INTO t2 VALUES(21015, 91818, 'ninety-one thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(21016, 51822, 'fifty-one thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21017, 64487, 'sixty-four thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(21018, 91951, 'ninety-one thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21019, 92209, 'ninety-two thousand two hundred nine');\nINSERT INTO t2 VALUES(21020, 38116, 'thirty-eight thousand one hundred sixteen');\nINSERT INTO t2 VALUES(21021, 10384, 'ten thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(21022, 42093, 'forty-two thousand ninety-three');\nINSERT INTO t2 VALUES(21023, 64506, 'sixty-four thousand five hundred six');\nINSERT INTO t2 VALUES(21024, 80152, 'eighty thousand one hundred fifty-two');\nINSERT INTO t2 VALUES(21025, 20984, 'twenty thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(21026, 76875, 'seventy-six thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(21027, 95590, 'ninety-five thousand five hundred ninety');\nINSERT INTO t2 VALUES(21028, 51070, 'fifty-one thousand seventy');\nINSERT INTO t2 VALUES(21029, 90143, 'ninety thousand one hundred forty-three');\nINSERT INTO t2 VALUES(21030, 26787, 'twenty-six thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(21031, 50854, 'fifty thousand eight hundred fifty-four');\nINSERT INTO t2 VALUES(21032, 96583, 'ninety-six thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(21033, 31976, 'thirty-one thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(21034, 80099, 'eighty thousand ninety-nine');\nINSERT INTO t2 VALUES(21035, 90856, 'ninety thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(21036, 39443, 'thirty-nine thousand four hundred forty-three');\nINSERT INTO t2 VALUES(21037, 10934, 'ten thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(21038, 94505, 'ninety-four thousand five hundred five');\nINSERT INTO t2 VALUES(21039, 95538, 'ninety-five thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(21040, 36148, 'thirty-six thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(21041, 50446, 'fifty thousand four hundred forty-six');\nINSERT INTO t2 VALUES(21042, 91321, 'ninety-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(21043, 73528, 'seventy-three thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(21044, 89995, 'eighty-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(21045, 58200, 'fifty-eight thousand two hundred');\nINSERT INTO t2 VALUES(21046, 54511, 'fifty-four thousand five hundred eleven');\nINSERT INTO t2 VALUES(21047, 24946, 'twenty-four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(21048, 66204, 'sixty-six thousand two hundred four');\nINSERT INTO t2 VALUES(21049, 26736, 'twenty-six thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(21050, 90899, 'ninety thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(21051, 73705, 'seventy-three thousand seven hundred five');\nINSERT INTO t2 VALUES(21052, 5359, 'five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(21053, 42040, 'forty-two thousand forty');\nINSERT INTO t2 VALUES(21054, 21404, 'twenty-one thousand four hundred four');\nINSERT INTO t2 VALUES(21055, 63277, 'sixty-three thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(21056, 10171, 'ten thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(21057, 76362, 'seventy-six thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(21058, 83499, 'eighty-three thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(21059, 77224, 'seventy-seven thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21060, 29364, 'twenty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(21061, 67887, 'sixty-seven thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(21062, 84419, 'eighty-four thousand four hundred nineteen');\nINSERT INTO t2 VALUES(21063, 989, 'nine hundred eighty-nine');\nINSERT INTO t2 VALUES(21064, 89289, 'eighty-nine thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(21065, 73225, 'seventy-three thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(21066, 60805, 'sixty thousand eight hundred five');\nINSERT INTO t2 VALUES(21067, 70338, 'seventy thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(21068, 58899, 'fifty-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(21069, 30776, 'thirty thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(21070, 78990, 'seventy-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(21071, 1323, 'one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(21072, 61781, 'sixty-one thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(21073, 9719, 'nine thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(21074, 58428, 'fifty-eight thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(21075, 38991, 'thirty-eight thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(21076, 75192, 'seventy-five thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(21077, 27483, 'twenty-seven thousand four hundred eighty-three');\nINSERT INTO t2 VALUES(21078, 86624, 'eighty-six thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(21079, 17538, 'seventeen thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(21080, 11774, 'eleven thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(21081, 92822, 'ninety-two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21082, 68637, 'sixty-eight thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(21083, 45636, 'forty-five thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(21084, 40243, 'forty thousand two hundred forty-three');\nINSERT INTO t2 VALUES(21085, 37951, 'thirty-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21086, 96551, 'ninety-six thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(21087, 78207, 'seventy-eight thousand two hundred seven');\nINSERT INTO t2 VALUES(21088, 81023, 'eighty-one thousand twenty-three');\nINSERT INTO t2 VALUES(21089, 90870, 'ninety thousand eight hundred seventy');\nINSERT INTO t2 VALUES(21090, 44646, 'forty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(21091, 5083, 'five thousand eighty-three');\nINSERT INTO t2 VALUES(21092, 48450, 'forty-eight thousand four hundred fifty');\nINSERT INTO t2 VALUES(21093, 44014, 'forty-four thousand fourteen');\nINSERT INTO t2 VALUES(21094, 53634, 'fifty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21095, 39553, 'thirty-nine thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(21096, 10217, 'ten thousand two hundred seventeen');\nINSERT INTO t2 VALUES(21097, 56822, 'fifty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21098, 77396, 'seventy-seven thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(21099, 18154, 'eighteen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(21100, 7991, 'seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(21101, 27470, 'twenty-seven thousand four hundred seventy');\nINSERT INTO t2 VALUES(21102, 18907, 'eighteen thousand nine hundred seven');\nINSERT INTO t2 VALUES(21103, 44731, 'forty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(21104, 25789, 'twenty-five thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(21105, 84915, 'eighty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(21106, 94332, 'ninety-four thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(21107, 30353, 'thirty thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(21108, 55869, 'fifty-five thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(21109, 44163, 'forty-four thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(21110, 79040, 'seventy-nine thousand forty');\nINSERT INTO t2 VALUES(21111, 53292, 'fifty-three thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(21112, 65622, 'sixty-five thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(21113, 78480, 'seventy-eight thousand four hundred eighty');\nINSERT INTO t2 VALUES(21114, 56182, 'fifty-six thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(21115, 65323, 'sixty-five thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(21116, 18055, 'eighteen thousand fifty-five');\nINSERT INTO t2 VALUES(21117, 4132, 'four thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(21118, 75164, 'seventy-five thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(21119, 81427, 'eighty-one thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(21120, 88603, 'eighty-eight thousand six hundred three');\nINSERT INTO t2 VALUES(21121, 40013, 'forty thousand thirteen');\nINSERT INTO t2 VALUES(21122, 40354, 'forty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(21123, 30922, 'thirty thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(21124, 23584, 'twenty-three thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(21125, 98815, 'ninety-eight thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(21126, 28833, 'twenty-eight thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(21127, 89423, 'eighty-nine thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(21128, 98822, 'ninety-eight thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21129, 93222, 'ninety-three thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(21130, 94260, 'ninety-four thousand two hundred sixty');\nINSERT INTO t2 VALUES(21131, 71873, 'seventy-one thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(21132, 18273, 'eighteen thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(21133, 25543, 'twenty-five thousand five hundred forty-three');\nINSERT INTO t2 VALUES(21134, 95612, 'ninety-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(21135, 89785, 'eighty-nine thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(21136, 45190, 'forty-five thousand one hundred ninety');\nINSERT INTO t2 VALUES(21137, 36832, 'thirty-six thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(21138, 13275, 'thirteen thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(21139, 41657, 'forty-one thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(21140, 85651, 'eighty-five thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(21141, 35829, 'thirty-five thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21142, 7360, 'seven thousand three hundred sixty');\nINSERT INTO t2 VALUES(21143, 4330, 'four thousand three hundred thirty');\nINSERT INTO t2 VALUES(21144, 78095, 'seventy-eight thousand ninety-five');\nINSERT INTO t2 VALUES(21145, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(21146, 68720, 'sixty-eight thousand seven hundred twenty');\nINSERT INTO t2 VALUES(21147, 21431, 'twenty-one thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(21148, 55612, 'fifty-five thousand six hundred twelve');\nINSERT INTO t2 VALUES(21149, 95643, 'ninety-five thousand six hundred forty-three');\nINSERT INTO t2 VALUES(21150, 8216, 'eight thousand two hundred sixteen');\nINSERT INTO t2 VALUES(21151, 20356, 'twenty thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(21152, 65, 'sixty-five');\nINSERT INTO t2 VALUES(21153, 70899, 'seventy thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(21154, 18384, 'eighteen thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(21155, 8512, 'eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(21156, 66153, 'sixty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(21157, 19821, 'nineteen thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(21158, 39067, 'thirty-nine thousand sixty-seven');\nINSERT INTO t2 VALUES(21159, 62279, 'sixty-two thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(21160, 36119, 'thirty-six thousand one hundred nineteen');\nINSERT INTO t2 VALUES(21161, 30107, 'thirty thousand one hundred seven');\nINSERT INTO t2 VALUES(21162, 26583, 'twenty-six thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(21163, 66013, 'sixty-six thousand thirteen');\nINSERT INTO t2 VALUES(21164, 14233, 'fourteen thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(21165, 4193, 'four thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(21166, 778, 'seven hundred seventy-eight');\nINSERT INTO t2 VALUES(21167, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(21168, 94713, 'ninety-four thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(21169, 34564, 'thirty-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(21170, 54520, 'fifty-four thousand five hundred twenty');\nINSERT INTO t2 VALUES(21171, 62952, 'sixty-two thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(21172, 69621, 'sixty-nine thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(21173, 88499, 'eighty-eight thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(21174, 49397, 'forty-nine thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(21175, 28574, 'twenty-eight thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(21176, 11480, 'eleven thousand four hundred eighty');\nINSERT INTO t2 VALUES(21177, 40208, 'forty thousand two hundred eight');\nINSERT INTO t2 VALUES(21178, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t2 VALUES(21179, 83957, 'eighty-three thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(21180, 27247, 'twenty-seven thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(21181, 97307, 'ninety-seven thousand three hundred seven');\nINSERT INTO t2 VALUES(21182, 39555, 'thirty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(21183, 93027, 'ninety-three thousand twenty-seven');\nINSERT INTO t2 VALUES(21184, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t2 VALUES(21185, 96966, 'ninety-six thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(21186, 6905, 'six thousand nine hundred five');\nINSERT INTO t2 VALUES(21187, 96377, 'ninety-six thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(21188, 67033, 'sixty-seven thousand thirty-three');\nINSERT INTO t2 VALUES(21189, 31372, 'thirty-one thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(21190, 86793, 'eighty-six thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(21191, 15123, 'fifteen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(21192, 78993, 'seventy-eight thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(21193, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t2 VALUES(21194, 15481, 'fifteen thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(21195, 918, 'nine hundred eighteen');\nINSERT INTO t2 VALUES(21196, 63836, 'sixty-three thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(21197, 33745, 'thirty-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(21198, 8756, 'eight thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(21199, 41975, 'forty-one thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(21200, 23231, 'twenty-three thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21201, 17286, 'seventeen thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(21202, 30531, 'thirty thousand five hundred thirty-one');\nINSERT INTO t2 VALUES(21203, 15593, 'fifteen thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(21204, 12905, 'twelve thousand nine hundred five');\nINSERT INTO t2 VALUES(21205, 83139, 'eighty-three thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(21206, 33667, 'thirty-three thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(21207, 66932, 'sixty-six thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(21208, 64229, 'sixty-four thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(21209, 63294, 'sixty-three thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(21210, 64787, 'sixty-four thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(21211, 13033, 'thirteen thousand thirty-three');\nINSERT INTO t2 VALUES(21212, 65534, 'sixty-five thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(21213, 15872, 'fifteen thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(21214, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(21215, 41443, 'forty-one thousand four hundred forty-three');\nINSERT INTO t2 VALUES(21216, 77748, 'seventy-seven thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(21217, 18982, 'eighteen thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(21218, 88649, 'eighty-eight thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(21219, 34980, 'thirty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(21220, 89340, 'eighty-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(21221, 38330, 'thirty-eight thousand three hundred thirty');\nINSERT INTO t2 VALUES(21222, 69647, 'sixty-nine thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(21223, 74253, 'seventy-four thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(21224, 86753, 'eighty-six thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(21225, 75315, 'seventy-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(21226, 84576, 'eighty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(21227, 38737, 'thirty-eight thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(21228, 28108, 'twenty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(21229, 74630, 'seventy-four thousand six hundred thirty');\nINSERT INTO t2 VALUES(21230, 69834, 'sixty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(21231, 42819, 'forty-two thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(21232, 95634, 'ninety-five thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21233, 17095, 'seventeen thousand ninety-five');\nINSERT INTO t2 VALUES(21234, 29655, 'twenty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(21235, 97871, 'ninety-seven thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(21236, 98896, 'ninety-eight thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(21237, 53044, 'fifty-three thousand forty-four');\nINSERT INTO t2 VALUES(21238, 37909, 'thirty-seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(21239, 4426, 'four thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(21240, 87378, 'eighty-seven thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(21241, 9786, 'nine thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(21242, 81767, 'eighty-one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(21243, 58327, 'fifty-eight thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(21244, 33417, 'thirty-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(21245, 4418, 'four thousand four hundred eighteen');\nINSERT INTO t2 VALUES(21246, 82809, 'eighty-two thousand eight hundred nine');\nINSERT INTO t2 VALUES(21247, 52214, 'fifty-two thousand two hundred fourteen');\nINSERT INTO t2 VALUES(21248, 43581, 'forty-three thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(21249, 6297, 'six thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(21250, 53086, 'fifty-three thousand eighty-six');\nINSERT INTO t2 VALUES(21251, 58003, 'fifty-eight thousand three');\nINSERT INTO t2 VALUES(21252, 29632, 'twenty-nine thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(21253, 17891, 'seventeen thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(21254, 19034, 'nineteen thousand thirty-four');\nINSERT INTO t2 VALUES(21255, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(21256, 64871, 'sixty-four thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(21257, 9277, 'nine thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(21258, 10050, 'ten thousand fifty');\nINSERT INTO t2 VALUES(21259, 1699, 'one thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(21260, 55181, 'fifty-five thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(21261, 25210, 'twenty-five thousand two hundred ten');\nINSERT INTO t2 VALUES(21262, 56763, 'fifty-six thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(21263, 28872, 'twenty-eight thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(21264, 54701, 'fifty-four thousand seven hundred one');\nINSERT INTO t2 VALUES(21265, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(21266, 59133, 'fifty-nine thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(21267, 33068, 'thirty-three thousand sixty-eight');\nINSERT INTO t2 VALUES(21268, 70074, 'seventy thousand seventy-four');\nINSERT INTO t2 VALUES(21269, 11454, 'eleven thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(21270, 37929, 'thirty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(21271, 36406, 'thirty-six thousand four hundred six');\nINSERT INTO t2 VALUES(21272, 16624, 'sixteen thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(21273, 31066, 'thirty-one thousand sixty-six');\nINSERT INTO t2 VALUES(21274, 77724, 'seventy-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(21275, 92829, 'ninety-two thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21276, 40185, 'forty thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(21277, 98611, 'ninety-eight thousand six hundred eleven');\nINSERT INTO t2 VALUES(21278, 10970, 'ten thousand nine hundred seventy');\nINSERT INTO t2 VALUES(21279, 56091, 'fifty-six thousand ninety-one');\nINSERT INTO t2 VALUES(21280, 64390, 'sixty-four thousand three hundred ninety');\nINSERT INTO t2 VALUES(21281, 15563, 'fifteen thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(21282, 64571, 'sixty-four thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(21283, 46171, 'forty-six thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(21284, 86247, 'eighty-six thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(21285, 44435, 'forty-four thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(21286, 55059, 'fifty-five thousand fifty-nine');\nINSERT INTO t2 VALUES(21287, 22013, 'twenty-two thousand thirteen');\nINSERT INTO t2 VALUES(21288, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(21289, 16025, 'sixteen thousand twenty-five');\nINSERT INTO t2 VALUES(21290, 55038, 'fifty-five thousand thirty-eight');\nINSERT INTO t2 VALUES(21291, 25601, 'twenty-five thousand six hundred one');\nINSERT INTO t2 VALUES(21292, 90923, 'ninety thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(21293, 242, 'two hundred forty-two');\nINSERT INTO t2 VALUES(21294, 15322, 'fifteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(21295, 22266, 'twenty-two thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21296, 75970, 'seventy-five thousand nine hundred seventy');\nINSERT INTO t2 VALUES(21297, 63345, 'sixty-three thousand three hundred forty-five');\nINSERT INTO t2 VALUES(21298, 47058, 'forty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(21299, 70461, 'seventy thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(21300, 62271, 'sixty-two thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(21301, 10355, 'ten thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(21302, 43830, 'forty-three thousand eight hundred thirty');\nINSERT INTO t2 VALUES(21303, 55963, 'fifty-five thousand nine hundred sixty-three');\nINSERT INTO t2 VALUES(21304, 44179, 'forty-four thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(21305, 70526, 'seventy thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(21306, 66918, 'sixty-six thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21307, 74563, 'seventy-four thousand five hundred sixty-three');\nINSERT INTO t2 VALUES(21308, 55721, 'fifty-five thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(21309, 80998, 'eighty thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(21310, 75092, 'seventy-five thousand ninety-two');\nINSERT INTO t2 VALUES(21311, 63547, 'sixty-three thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(21312, 42808, 'forty-two thousand eight hundred eight');\nINSERT INTO t2 VALUES(21313, 51127, 'fifty-one thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(21314, 57628, 'fifty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(21315, 5571, 'five thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(21316, 34951, 'thirty-four thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21317, 49653, 'forty-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(21318, 9291, 'nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21319, 4081, 'four thousand eighty-one');\nINSERT INTO t2 VALUES(21320, 19663, 'nineteen thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(21321, 48925, 'forty-eight thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(21322, 79509, 'seventy-nine thousand five hundred nine');\nINSERT INTO t2 VALUES(21323, 79806, 'seventy-nine thousand eight hundred six');\nINSERT INTO t2 VALUES(21324, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(21325, 84902, 'eighty-four thousand nine hundred two');\nINSERT INTO t2 VALUES(21326, 99888, 'ninety-nine thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(21327, 3522, 'three thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(21328, 21109, 'twenty-one thousand one hundred nine');\nINSERT INTO t2 VALUES(21329, 98058, 'ninety-eight thousand fifty-eight');\nINSERT INTO t2 VALUES(21330, 54186, 'fifty-four thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(21331, 39741, 'thirty-nine thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(21332, 43235, 'forty-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(21333, 19156, 'nineteen thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(21334, 10510, 'ten thousand five hundred ten');\nINSERT INTO t2 VALUES(21335, 31643, 'thirty-one thousand six hundred forty-three');\nINSERT INTO t2 VALUES(21336, 9566, 'nine thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(21337, 50288, 'fifty thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(21338, 28715, 'twenty-eight thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(21339, 84507, 'eighty-four thousand five hundred seven');\nINSERT INTO t2 VALUES(21340, 45444, 'forty-five thousand four hundred forty-four');\nINSERT INTO t2 VALUES(21341, 21281, 'twenty-one thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(21342, 24159, 'twenty-four thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(21343, 5508, 'five thousand five hundred eight');\nINSERT INTO t2 VALUES(21344, 58175, 'fifty-eight thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(21345, 48224, 'forty-eight thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21346, 13788, 'thirteen thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(21347, 68088, 'sixty-eight thousand eighty-eight');\nINSERT INTO t2 VALUES(21348, 71271, 'seventy-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(21349, 20924, 'twenty thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(21350, 74144, 'seventy-four thousand one hundred forty-four');\nINSERT INTO t2 VALUES(21351, 67743, 'sixty-seven thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(21352, 26943, 'twenty-six thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21353, 87055, 'eighty-seven thousand fifty-five');\nINSERT INTO t2 VALUES(21354, 59757, 'fifty-nine thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(21355, 7255, 'seven thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(21356, 47065, 'forty-seven thousand sixty-five');\nINSERT INTO t2 VALUES(21357, 45059, 'forty-five thousand fifty-nine');\nINSERT INTO t2 VALUES(21358, 58405, 'fifty-eight thousand four hundred five');\nINSERT INTO t2 VALUES(21359, 71883, 'seventy-one thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(21360, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(21361, 27295, 'twenty-seven thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(21362, 28052, 'twenty-eight thousand fifty-two');\nINSERT INTO t2 VALUES(21363, 3389, 'three thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(21364, 12103, 'twelve thousand one hundred three');\nINSERT INTO t2 VALUES(21365, 60780, 'sixty thousand seven hundred eighty');\nINSERT INTO t2 VALUES(21366, 25568, 'twenty-five thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(21367, 55703, 'fifty-five thousand seven hundred three');\nINSERT INTO t2 VALUES(21368, 40029, 'forty thousand twenty-nine');\nINSERT INTO t2 VALUES(21369, 94415, 'ninety-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(21370, 35220, 'thirty-five thousand two hundred twenty');\nINSERT INTO t2 VALUES(21371, 93551, 'ninety-three thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(21372, 84038, 'eighty-four thousand thirty-eight');\nINSERT INTO t2 VALUES(21373, 69803, 'sixty-nine thousand eight hundred three');\nINSERT INTO t2 VALUES(21374, 951, 'nine hundred fifty-one');\nINSERT INTO t2 VALUES(21375, 61826, 'sixty-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(21376, 72289, 'seventy-two thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(21377, 84471, 'eighty-four thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(21378, 92601, 'ninety-two thousand six hundred one');\nINSERT INTO t2 VALUES(21379, 67244, 'sixty-seven thousand two hundred forty-four');\nINSERT INTO t2 VALUES(21380, 42765, 'forty-two thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(21381, 66064, 'sixty-six thousand sixty-four');\nINSERT INTO t2 VALUES(21382, 22320, 'twenty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(21383, 18236, 'eighteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(21384, 91917, 'ninety-one thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(21385, 2662, 'two thousand six hundred sixty-two');\nINSERT INTO t2 VALUES(21386, 37101, 'thirty-seven thousand one hundred one');\nINSERT INTO t2 VALUES(21387, 66798, 'sixty-six thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(21388, 76035, 'seventy-six thousand thirty-five');\nINSERT INTO t2 VALUES(21389, 2521, 'two thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(21390, 97257, 'ninety-seven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(21391, 40530, 'forty thousand five hundred thirty');\nINSERT INTO t2 VALUES(21392, 14260, 'fourteen thousand two hundred sixty');\nINSERT INTO t2 VALUES(21393, 16119, 'sixteen thousand one hundred nineteen');\nINSERT INTO t2 VALUES(21394, 36036, 'thirty-six thousand thirty-six');\nINSERT INTO t2 VALUES(21395, 41565, 'forty-one thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(21396, 37810, 'thirty-seven thousand eight hundred ten');\nINSERT INTO t2 VALUES(21397, 50550, 'fifty thousand five hundred fifty');\nINSERT INTO t2 VALUES(21398, 49577, 'forty-nine thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(21399, 27680, 'twenty-seven thousand six hundred eighty');\nINSERT INTO t2 VALUES(21400, 10926, 'ten thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(21401, 45283, 'forty-five thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(21402, 68537, 'sixty-eight thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(21403, 26617, 'twenty-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(21404, 18740, 'eighteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(21405, 42463, 'forty-two thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(21406, 12532, 'twelve thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(21407, 80124, 'eighty thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(21408, 19826, 'nineteen thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(21409, 69897, 'sixty-nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(21410, 78470, 'seventy-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(21411, 56030, 'fifty-six thousand thirty');\nINSERT INTO t2 VALUES(21412, 83918, 'eighty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21413, 75789, 'seventy-five thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(21414, 1233, 'one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(21415, 5891, 'five thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(21416, 46630, 'forty-six thousand six hundred thirty');\nINSERT INTO t2 VALUES(21417, 23254, 'twenty-three thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(21418, 48640, 'forty-eight thousand six hundred forty');\nINSERT INTO t2 VALUES(21419, 86325, 'eighty-six thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(21420, 82811, 'eighty-two thousand eight hundred eleven');\nINSERT INTO t2 VALUES(21421, 71513, 'seventy-one thousand five hundred thirteen');\nINSERT INTO t2 VALUES(21422, 1958, 'one thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(21423, 77865, 'seventy-seven thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(21424, 9870, 'nine thousand eight hundred seventy');\nINSERT INTO t2 VALUES(21425, 10100, 'ten thousand one hundred');\nINSERT INTO t2 VALUES(21426, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(21427, 9168, 'nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(21428, 9365, 'nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(21429, 62112, 'sixty-two thousand one hundred twelve');\nINSERT INTO t2 VALUES(21430, 79294, 'seventy-nine thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(21431, 30245, 'thirty thousand two hundred forty-five');\nINSERT INTO t2 VALUES(21432, 95801, 'ninety-five thousand eight hundred one');\nINSERT INTO t2 VALUES(21433, 28917, 'twenty-eight thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(21434, 17123, 'seventeen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(21435, 25328, 'twenty-five thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(21436, 32028, 'thirty-two thousand twenty-eight');\nINSERT INTO t2 VALUES(21437, 16943, 'sixteen thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21438, 81412, 'eighty-one thousand four hundred twelve');\nINSERT INTO t2 VALUES(21439, 79792, 'seventy-nine thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(21440, 83297, 'eighty-three thousand two hundred ninety-seven');\nINSERT INTO t2 VALUES(21441, 43353, 'forty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(21442, 83353, 'eighty-three thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(21443, 89275, 'eighty-nine thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(21444, 64523, 'sixty-four thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(21445, 23035, 'twenty-three thousand thirty-five');\nINSERT INTO t2 VALUES(21446, 81500, 'eighty-one thousand five hundred');\nINSERT INTO t2 VALUES(21447, 55266, 'fifty-five thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21448, 31283, 'thirty-one thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(21449, 89949, 'eighty-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(21450, 41992, 'forty-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(21451, 72819, 'seventy-two thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(21452, 39944, 'thirty-nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(21453, 45443, 'forty-five thousand four hundred forty-three');\nINSERT INTO t2 VALUES(21454, 34981, 'thirty-four thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(21455, 76882, 'seventy-six thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(21456, 90010, 'ninety thousand ten');\nINSERT INTO t2 VALUES(21457, 10649, 'ten thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(21458, 45460, 'forty-five thousand four hundred sixty');\nINSERT INTO t2 VALUES(21459, 75712, 'seventy-five thousand seven hundred twelve');\nINSERT INTO t2 VALUES(21460, 30529, 'thirty thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(21461, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t2 VALUES(21462, 99946, 'ninety-nine thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(21463, 6187, 'six thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(21464, 35559, 'thirty-five thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(21465, 77222, 'seventy-seven thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(21466, 64109, 'sixty-four thousand one hundred nine');\nINSERT INTO t2 VALUES(21467, 87951, 'eighty-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21468, 29678, 'twenty-nine thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(21469, 81420, 'eighty-one thousand four hundred twenty');\nINSERT INTO t2 VALUES(21470, 16756, 'sixteen thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(21471, 60707, 'sixty thousand seven hundred seven');\nINSERT INTO t2 VALUES(21472, 71565, 'seventy-one thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(21473, 57669, 'fifty-seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(21474, 25236, 'twenty-five thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(21475, 73592, 'seventy-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(21476, 45065, 'forty-five thousand sixty-five');\nINSERT INTO t2 VALUES(21477, 77407, 'seventy-seven thousand four hundred seven');\nINSERT INTO t2 VALUES(21478, 18740, 'eighteen thousand seven hundred forty');\nINSERT INTO t2 VALUES(21479, 33472, 'thirty-three thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(21480, 6584, 'six thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(21481, 43009, 'forty-three thousand nine');\nINSERT INTO t2 VALUES(21482, 12734, 'twelve thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(21483, 93723, 'ninety-three thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(21484, 69125, 'sixty-nine thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(21485, 88676, 'eighty-eight thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(21486, 86508, 'eighty-six thousand five hundred eight');\nINSERT INTO t2 VALUES(21487, 88232, 'eighty-eight thousand two hundred thirty-two');\nINSERT INTO t2 VALUES(21488, 38620, 'thirty-eight thousand six hundred twenty');\nINSERT INTO t2 VALUES(21489, 93937, 'ninety-three thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(21490, 58918, 'fifty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21491, 76830, 'seventy-six thousand eight hundred thirty');\nINSERT INTO t2 VALUES(21492, 57407, 'fifty-seven thousand four hundred seven');\nINSERT INTO t2 VALUES(21493, 66109, 'sixty-six thousand one hundred nine');\nINSERT INTO t2 VALUES(21494, 91703, 'ninety-one thousand seven hundred three');\nINSERT INTO t2 VALUES(21495, 57177, 'fifty-seven thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(21496, 67011, 'sixty-seven thousand eleven');\nINSERT INTO t2 VALUES(21497, 84999, 'eighty-four thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(21498, 89840, 'eighty-nine thousand eight hundred forty');\nINSERT INTO t2 VALUES(21499, 6576, 'six thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(21500, 43553, 'forty-three thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(21501, 43230, 'forty-three thousand two hundred thirty');\nINSERT INTO t2 VALUES(21502, 96068, 'ninety-six thousand sixty-eight');\nINSERT INTO t2 VALUES(21503, 30703, 'thirty thousand seven hundred three');\nINSERT INTO t2 VALUES(21504, 32280, 'thirty-two thousand two hundred eighty');\nINSERT INTO t2 VALUES(21505, 33298, 'thirty-three thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(21506, 116, 'one hundred sixteen');\nINSERT INTO t2 VALUES(21507, 27980, 'twenty-seven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(21508, 88998, 'eighty-eight thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(21509, 6671, 'six thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(21510, 77334, 'seventy-seven thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(21511, 52785, 'fifty-two thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(21512, 98105, 'ninety-eight thousand one hundred five');\nINSERT INTO t2 VALUES(21513, 69644, 'sixty-nine thousand six hundred forty-four');\nINSERT INTO t2 VALUES(21514, 74249, 'seventy-four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(21515, 16255, 'sixteen thousand two hundred fifty-five');\nINSERT INTO t2 VALUES(21516, 52519, 'fifty-two thousand five hundred nineteen');\nINSERT INTO t2 VALUES(21517, 46078, 'forty-six thousand seventy-eight');\nINSERT INTO t2 VALUES(21518, 5927, 'five thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(21519, 22752, 'twenty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(21520, 10649, 'ten thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(21521, 63954, 'sixty-three thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(21522, 4592, 'four thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(21523, 49700, 'forty-nine thousand seven hundred');\nINSERT INTO t2 VALUES(21524, 55095, 'fifty-five thousand ninety-five');\nINSERT INTO t2 VALUES(21525, 38976, 'thirty-eight thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(21526, 94723, 'ninety-four thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(21527, 408, 'four hundred eight');\nINSERT INTO t2 VALUES(21528, 38388, 'thirty-eight thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(21529, 47010, 'forty-seven thousand ten');\nINSERT INTO t2 VALUES(21530, 84061, 'eighty-four thousand sixty-one');\nINSERT INTO t2 VALUES(21531, 74309, 'seventy-four thousand three hundred nine');\nINSERT INTO t2 VALUES(21532, 56711, 'fifty-six thousand seven hundred eleven');\nINSERT INTO t2 VALUES(21533, 66772, 'sixty-six thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(21534, 44829, 'forty-four thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21535, 8300, 'eight thousand three hundred');\nINSERT INTO t2 VALUES(21536, 95808, 'ninety-five thousand eight hundred eight');\nINSERT INTO t2 VALUES(21537, 20464, 'twenty thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(21538, 27975, 'twenty-seven thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(21539, 76707, 'seventy-six thousand seven hundred seven');\nINSERT INTO t2 VALUES(21540, 35786, 'thirty-five thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(21541, 35084, 'thirty-five thousand eighty-four');\nINSERT INTO t2 VALUES(21542, 54583, 'fifty-four thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(21543, 69139, 'sixty-nine thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(21544, 96266, 'ninety-six thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21545, 35711, 'thirty-five thousand seven hundred eleven');\nINSERT INTO t2 VALUES(21546, 89930, 'eighty-nine thousand nine hundred thirty');\nINSERT INTO t2 VALUES(21547, 60631, 'sixty thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(21548, 24819, 'twenty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(21549, 54954, 'fifty-four thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(21550, 6180, 'six thousand one hundred eighty');\nINSERT INTO t2 VALUES(21551, 47423, 'forty-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(21552, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(21553, 24326, 'twenty-four thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(21554, 68429, 'sixty-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(21555, 36851, 'thirty-six thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(21556, 43300, 'forty-three thousand three hundred');\nINSERT INTO t2 VALUES(21557, 24218, 'twenty-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(21558, 42179, 'forty-two thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(21559, 10842, 'ten thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(21560, 60317, 'sixty thousand three hundred seventeen');\nINSERT INTO t2 VALUES(21561, 71231, 'seventy-one thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21562, 96755, 'ninety-six thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(21563, 12073, 'twelve thousand seventy-three');\nINSERT INTO t2 VALUES(21564, 21163, 'twenty-one thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(21565, 75360, 'seventy-five thousand three hundred sixty');\nINSERT INTO t2 VALUES(21566, 51552, 'fifty-one thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(21567, 36510, 'thirty-six thousand five hundred ten');\nINSERT INTO t2 VALUES(21568, 37249, 'thirty-seven thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(21569, 63270, 'sixty-three thousand two hundred seventy');\nINSERT INTO t2 VALUES(21570, 16033, 'sixteen thousand thirty-three');\nINSERT INTO t2 VALUES(21571, 7032, 'seven thousand thirty-two');\nINSERT INTO t2 VALUES(21572, 92291, 'ninety-two thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21573, 56017, 'fifty-six thousand seventeen');\nINSERT INTO t2 VALUES(21574, 4585, 'four thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(21575, 56625, 'fifty-six thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(21576, 6612, 'six thousand six hundred twelve');\nINSERT INTO t2 VALUES(21577, 47209, 'forty-seven thousand two hundred nine');\nINSERT INTO t2 VALUES(21578, 14142, 'fourteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(21579, 51063, 'fifty-one thousand sixty-three');\nINSERT INTO t2 VALUES(21580, 24900, 'twenty-four thousand nine hundred');\nINSERT INTO t2 VALUES(21581, 39629, 'thirty-nine thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(21582, 72295, 'seventy-two thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(21583, 98051, 'ninety-eight thousand fifty-one');\nINSERT INTO t2 VALUES(21584, 71596, 'seventy-one thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(21585, 23687, 'twenty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(21586, 34442, 'thirty-four thousand four hundred forty-two');\nINSERT INTO t2 VALUES(21587, 18350, 'eighteen thousand three hundred fifty');\nINSERT INTO t2 VALUES(21588, 72191, 'seventy-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(21589, 91121, 'ninety-one thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(21590, 3782, 'three thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(21591, 59975, 'fifty-nine thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(21592, 27149, 'twenty-seven thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(21593, 67852, 'sixty-seven thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(21594, 43474, 'forty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(21595, 51697, 'fifty-one thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(21596, 20393, 'twenty thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(21597, 83618, 'eighty-three thousand six hundred eighteen');\nINSERT INTO t2 VALUES(21598, 38053, 'thirty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(21599, 45218, 'forty-five thousand two hundred eighteen');\nINSERT INTO t2 VALUES(21600, 74579, 'seventy-four thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(21601, 31325, 'thirty-one thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(21602, 33140, 'thirty-three thousand one hundred forty');\nINSERT INTO t2 VALUES(21603, 41784, 'forty-one thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(21604, 53609, 'fifty-three thousand six hundred nine');\nINSERT INTO t2 VALUES(21605, 74438, 'seventy-four thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(21606, 56396, 'fifty-six thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(21607, 37728, 'thirty-seven thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(21608, 63645, 'sixty-three thousand six hundred forty-five');\nINSERT INTO t2 VALUES(21609, 44882, 'forty-four thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(21610, 97523, 'ninety-seven thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(21611, 45885, 'forty-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(21612, 56069, 'fifty-six thousand sixty-nine');\nINSERT INTO t2 VALUES(21613, 30273, 'thirty thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(21614, 36231, 'thirty-six thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21615, 70235, 'seventy thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(21616, 19374, 'nineteen thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(21617, 48150, 'forty-eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(21618, 86039, 'eighty-six thousand thirty-nine');\nINSERT INTO t2 VALUES(21619, 33692, 'thirty-three thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(21620, 18126, 'eighteen thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(21621, 9590, 'nine thousand five hundred ninety');\nINSERT INTO t2 VALUES(21622, 52473, 'fifty-two thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(21623, 88196, 'eighty-eight thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(21624, 72036, 'seventy-two thousand thirty-six');\nINSERT INTO t2 VALUES(21625, 6648, 'six thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(21626, 22042, 'twenty-two thousand forty-two');\nINSERT INTO t2 VALUES(21627, 55284, 'fifty-five thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(21628, 58590, 'fifty-eight thousand five hundred ninety');\nINSERT INTO t2 VALUES(21629, 75661, 'seventy-five thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(21630, 19633, 'nineteen thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(21631, 93634, 'ninety-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21632, 5846, 'five thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(21633, 63757, 'sixty-three thousand seven hundred fifty-seven');\nINSERT INTO t2 VALUES(21634, 19301, 'nineteen thousand three hundred one');\nINSERT INTO t2 VALUES(21635, 23088, 'twenty-three thousand eighty-eight');\nINSERT INTO t2 VALUES(21636, 21377, 'twenty-one thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(21637, 22607, 'twenty-two thousand six hundred seven');\nINSERT INTO t2 VALUES(21638, 71996, 'seventy-one thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(21639, 93096, 'ninety-three thousand ninety-six');\nINSERT INTO t2 VALUES(21640, 67957, 'sixty-seven thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(21641, 40901, 'forty thousand nine hundred one');\nINSERT INTO t2 VALUES(21642, 21383, 'twenty-one thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(21643, 38487, 'thirty-eight thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(21644, 11345, 'eleven thousand three hundred forty-five');\nINSERT INTO t2 VALUES(21645, 46675, 'forty-six thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(21646, 54171, 'fifty-four thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(21647, 48164, 'forty-eight thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(21648, 82545, 'eighty-two thousand five hundred forty-five');\nINSERT INTO t2 VALUES(21649, 76308, 'seventy-six thousand three hundred eight');\nINSERT INTO t2 VALUES(21650, 87557, 'eighty-seven thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(21651, 2003, 'two thousand three');\nINSERT INTO t2 VALUES(21652, 25270, 'twenty-five thousand two hundred seventy');\nINSERT INTO t2 VALUES(21653, 44270, 'forty-four thousand two hundred seventy');\nINSERT INTO t2 VALUES(21654, 44094, 'forty-four thousand ninety-four');\nINSERT INTO t2 VALUES(21655, 90136, 'ninety thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(21656, 23592, 'twenty-three thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(21657, 61371, 'sixty-one thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(21658, 7358, 'seven thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(21659, 48185, 'forty-eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(21660, 44888, 'forty-four thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(21661, 98955, 'ninety-eight thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(21662, 79753, 'seventy-nine thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(21663, 56902, 'fifty-six thousand nine hundred two');\nINSERT INTO t2 VALUES(21664, 89821, 'eighty-nine thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(21665, 68030, 'sixty-eight thousand thirty');\nINSERT INTO t2 VALUES(21666, 11478, 'eleven thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(21667, 27302, 'twenty-seven thousand three hundred two');\nINSERT INTO t2 VALUES(21668, 55906, 'fifty-five thousand nine hundred six');\nINSERT INTO t2 VALUES(21669, 87981, 'eighty-seven thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(21670, 57950, 'fifty-seven thousand nine hundred fifty');\nINSERT INTO t2 VALUES(21671, 97520, 'ninety-seven thousand five hundred twenty');\nINSERT INTO t2 VALUES(21672, 6202, 'six thousand two hundred two');\nINSERT INTO t2 VALUES(21673, 3889, 'three thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(21674, 3999, 'three thousand nine hundred ninety-nine');\nINSERT INTO t2 VALUES(21675, 13411, 'thirteen thousand four hundred eleven');\nINSERT INTO t2 VALUES(21676, 93780, 'ninety-three thousand seven hundred eighty');\nINSERT INTO t2 VALUES(21677, 49455, 'forty-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(21678, 77355, 'seventy-seven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(21679, 7582, 'seven thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(21680, 82564, 'eighty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(21681, 22752, 'twenty-two thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(21682, 43913, 'forty-three thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(21683, 896, 'eight hundred ninety-six');\nINSERT INTO t2 VALUES(21684, 17095, 'seventeen thousand ninety-five');\nINSERT INTO t2 VALUES(21685, 76382, 'seventy-six thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(21686, 57089, 'fifty-seven thousand eighty-nine');\nINSERT INTO t2 VALUES(21687, 25359, 'twenty-five thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(21688, 97498, 'ninety-seven thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(21689, 82681, 'eighty-two thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(21690, 91903, 'ninety-one thousand nine hundred three');\nINSERT INTO t2 VALUES(21691, 53041, 'fifty-three thousand forty-one');\nINSERT INTO t2 VALUES(21692, 18997, 'eighteen thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(21693, 11013, 'eleven thousand thirteen');\nINSERT INTO t2 VALUES(21694, 90225, 'ninety thousand two hundred twenty-five');\nINSERT INTO t2 VALUES(21695, 51074, 'fifty-one thousand seventy-four');\nINSERT INTO t2 VALUES(21696, 51715, 'fifty-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(21697, 95875, 'ninety-five thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(21698, 35354, 'thirty-five thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(21699, 76788, 'seventy-six thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(21700, 68918, 'sixty-eight thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(21701, 94228, 'ninety-four thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(21702, 59766, 'fifty-nine thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(21703, 33003, 'thirty-three thousand three');\nINSERT INTO t2 VALUES(21704, 98826, 'ninety-eight thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(21705, 42836, 'forty-two thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(21706, 8421, 'eight thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(21707, 18343, 'eighteen thousand three hundred forty-three');\nINSERT INTO t2 VALUES(21708, 31312, 'thirty-one thousand three hundred twelve');\nINSERT INTO t2 VALUES(21709, 24263, 'twenty-four thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(21710, 6077, 'six thousand seventy-seven');\nINSERT INTO t2 VALUES(21711, 85141, 'eighty-five thousand one hundred forty-one');\nINSERT INTO t2 VALUES(21712, 93503, 'ninety-three thousand five hundred three');\nINSERT INTO t2 VALUES(21713, 27763, 'twenty-seven thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(21714, 59264, 'fifty-nine thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(21715, 86597, 'eighty-six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(21716, 21684, 'twenty-one thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(21717, 84336, 'eighty-four thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(21718, 39006, 'thirty-nine thousand six');\nINSERT INTO t2 VALUES(21719, 75448, 'seventy-five thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(21720, 64955, 'sixty-four thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(21721, 80306, 'eighty thousand three hundred six');\nINSERT INTO t2 VALUES(21722, 4259, 'four thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(21723, 20127, 'twenty thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(21724, 54455, 'fifty-four thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(21725, 53094, 'fifty-three thousand ninety-four');\nINSERT INTO t2 VALUES(21726, 44155, 'forty-four thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(21727, 55567, 'fifty-five thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(21728, 42008, 'forty-two thousand eight');\nINSERT INTO t2 VALUES(21729, 61458, 'sixty-one thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(21730, 62861, 'sixty-two thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(21731, 45073, 'forty-five thousand seventy-three');\nINSERT INTO t2 VALUES(21732, 56154, 'fifty-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(21733, 57795, 'fifty-seven thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(21734, 16759, 'sixteen thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(21735, 81128, 'eighty-one thousand one hundred twenty-eight');\nINSERT INTO t2 VALUES(21736, 15609, 'fifteen thousand six hundred nine');\nINSERT INTO t2 VALUES(21737, 21224, 'twenty-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21738, 70196, 'seventy thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(21739, 70886, 'seventy thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(21740, 95113, 'ninety-five thousand one hundred thirteen');\nINSERT INTO t2 VALUES(21741, 89945, 'eighty-nine thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(21742, 55340, 'fifty-five thousand three hundred forty');\nINSERT INTO t2 VALUES(21743, 24318, 'twenty-four thousand three hundred eighteen');\nINSERT INTO t2 VALUES(21744, 47877, 'forty-seven thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(21745, 48828, 'forty-eight thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(21746, 58394, 'fifty-eight thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(21747, 97857, 'ninety-seven thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(21748, 54130, 'fifty-four thousand one hundred thirty');\nINSERT INTO t2 VALUES(21749, 47990, 'forty-seven thousand nine hundred ninety');\nINSERT INTO t2 VALUES(21750, 45847, 'forty-five thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(21751, 72573, 'seventy-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(21752, 6878, 'six thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(21753, 98074, 'ninety-eight thousand seventy-four');\nINSERT INTO t2 VALUES(21754, 83681, 'eighty-three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(21755, 37513, 'thirty-seven thousand five hundred thirteen');\nINSERT INTO t2 VALUES(21756, 71943, 'seventy-one thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21757, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t2 VALUES(21758, 5865, 'five thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(21759, 78366, 'seventy-eight thousand three hundred sixty-six');\nINSERT INTO t2 VALUES(21760, 87169, 'eighty-seven thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(21761, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(21762, 82291, 'eighty-two thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21763, 63016, 'sixty-three thousand sixteen');\nINSERT INTO t2 VALUES(21764, 16322, 'sixteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(21765, 92715, 'ninety-two thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(21766, 92702, 'ninety-two thousand seven hundred two');\nINSERT INTO t2 VALUES(21767, 71967, 'seventy-one thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(21768, 47045, 'forty-seven thousand forty-five');\nINSERT INTO t2 VALUES(21769, 27418, 'twenty-seven thousand four hundred eighteen');\nINSERT INTO t2 VALUES(21770, 75177, 'seventy-five thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(21771, 4830, 'four thousand eight hundred thirty');\nINSERT INTO t2 VALUES(21772, 88469, 'eighty-eight thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(21773, 59759, 'fifty-nine thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(21774, 34590, 'thirty-four thousand five hundred ninety');\nINSERT INTO t2 VALUES(21775, 53479, 'fifty-three thousand four hundred seventy-nine');\nINSERT INTO t2 VALUES(21776, 91276, 'ninety-one thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(21777, 37153, 'thirty-seven thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(21778, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(21779, 15184, 'fifteen thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(21780, 81515, 'eighty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(21781, 30383, 'thirty thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(21782, 29014, 'twenty-nine thousand fourteen');\nINSERT INTO t2 VALUES(21783, 30867, 'thirty thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(21784, 70006, 'seventy thousand six');\nINSERT INTO t2 VALUES(21785, 15993, 'fifteen thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(21786, 32971, 'thirty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(21787, 41041, 'forty-one thousand forty-one');\nINSERT INTO t2 VALUES(21788, 70971, 'seventy thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(21789, 73748, 'seventy-three thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(21790, 96042, 'ninety-six thousand forty-two');\nINSERT INTO t2 VALUES(21791, 42693, 'forty-two thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(21792, 45091, 'forty-five thousand ninety-one');\nINSERT INTO t2 VALUES(21793, 27338, 'twenty-seven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(21794, 6813, 'six thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(21795, 71006, 'seventy-one thousand six');\nINSERT INTO t2 VALUES(21796, 7348, 'seven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(21797, 15337, 'fifteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(21798, 15195, 'fifteen thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(21799, 2759, 'two thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(21800, 57493, 'fifty-seven thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(21801, 51435, 'fifty-one thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(21802, 88032, 'eighty-eight thousand thirty-two');\nINSERT INTO t2 VALUES(21803, 96420, 'ninety-six thousand four hundred twenty');\nINSERT INTO t2 VALUES(21804, 3243, 'three thousand two hundred forty-three');\nINSERT INTO t2 VALUES(21805, 15372, 'fifteen thousand three hundred seventy-two');\nINSERT INTO t2 VALUES(21806, 30027, 'thirty thousand twenty-seven');\nINSERT INTO t2 VALUES(21807, 22357, 'twenty-two thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(21808, 45717, 'forty-five thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(21809, 86727, 'eighty-six thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(21810, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(21811, 15970, 'fifteen thousand nine hundred seventy');\nINSERT INTO t2 VALUES(21812, 35482, 'thirty-five thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(21813, 17327, 'seventeen thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(21814, 83067, 'eighty-three thousand sixty-seven');\nINSERT INTO t2 VALUES(21815, 69417, 'sixty-nine thousand four hundred seventeen');\nINSERT INTO t2 VALUES(21816, 80719, 'eighty thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(21817, 17721, 'seventeen thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(21818, 40205, 'forty thousand two hundred five');\nINSERT INTO t2 VALUES(21819, 54727, 'fifty-four thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(21820, 64993, 'sixty-four thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(21821, 52018, 'fifty-two thousand eighteen');\nINSERT INTO t2 VALUES(21822, 18158, 'eighteen thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(21823, 10825, 'ten thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(21824, 75146, 'seventy-five thousand one hundred forty-six');\nINSERT INTO t2 VALUES(21825, 17154, 'seventeen thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(21826, 13380, 'thirteen thousand three hundred eighty');\nINSERT INTO t2 VALUES(21827, 65122, 'sixty-five thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(21828, 10834, 'ten thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(21829, 84986, 'eighty-four thousand nine hundred eighty-six');\nINSERT INTO t2 VALUES(21830, 7418, 'seven thousand four hundred eighteen');\nINSERT INTO t2 VALUES(21831, 89234, 'eighty-nine thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(21832, 43613, 'forty-three thousand six hundred thirteen');\nINSERT INTO t2 VALUES(21833, 10496, 'ten thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(21834, 71044, 'seventy-one thousand forty-four');\nINSERT INTO t2 VALUES(21835, 8959, 'eight thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(21836, 66992, 'sixty-six thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(21837, 95021, 'ninety-five thousand twenty-one');\nINSERT INTO t2 VALUES(21838, 47158, 'forty-seven thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(21839, 7794, 'seven thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(21840, 90488, 'ninety thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(21841, 71718, 'seventy-one thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(21842, 44411, 'forty-four thousand four hundred eleven');\nINSERT INTO t2 VALUES(21843, 6845, 'six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(21844, 50752, 'fifty thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(21845, 51346, 'fifty-one thousand three hundred forty-six');\nINSERT INTO t2 VALUES(21846, 29765, 'twenty-nine thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(21847, 10943, 'ten thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(21848, 54093, 'fifty-four thousand ninety-three');\nINSERT INTO t2 VALUES(21849, 44924, 'forty-four thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(21850, 14378, 'fourteen thousand three hundred seventy-eight');\nINSERT INTO t2 VALUES(21851, 44930, 'forty-four thousand nine hundred thirty');\nINSERT INTO t2 VALUES(21852, 61027, 'sixty-one thousand twenty-seven');\nINSERT INTO t2 VALUES(21853, 51011, 'fifty-one thousand eleven');\nINSERT INTO t2 VALUES(21854, 14274, 'fourteen thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(21855, 30475, 'thirty thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(21856, 577, 'five hundred seventy-seven');\nINSERT INTO t2 VALUES(21857, 52683, 'fifty-two thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(21858, 80265, 'eighty thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(21859, 50849, 'fifty thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(21860, 22498, 'twenty-two thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(21861, 20172, 'twenty thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(21862, 1224, 'one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21863, 93405, 'ninety-three thousand four hundred five');\nINSERT INTO t2 VALUES(21864, 80266, 'eighty thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(21865, 66113, 'sixty-six thousand one hundred thirteen');\nINSERT INTO t2 VALUES(21866, 53898, 'fifty-three thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(21867, 92036, 'ninety-two thousand thirty-six');\nINSERT INTO t2 VALUES(21868, 17306, 'seventeen thousand three hundred six');\nINSERT INTO t2 VALUES(21869, 71224, 'seventy-one thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(21870, 33162, 'thirty-three thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(21871, 44034, 'forty-four thousand thirty-four');\nINSERT INTO t2 VALUES(21872, 87085, 'eighty-seven thousand eighty-five');\nINSERT INTO t2 VALUES(21873, 6318, 'six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(21874, 33370, 'thirty-three thousand three hundred seventy');\nINSERT INTO t2 VALUES(21875, 23193, 'twenty-three thousand one hundred ninety-three');\nINSERT INTO t2 VALUES(21876, 50420, 'fifty thousand four hundred twenty');\nINSERT INTO t2 VALUES(21877, 88812, 'eighty-eight thousand eight hundred twelve');\nINSERT INTO t2 VALUES(21878, 40410, 'forty thousand four hundred ten');\nINSERT INTO t2 VALUES(21879, 85410, 'eighty-five thousand four hundred ten');\nINSERT INTO t2 VALUES(21880, 72488, 'seventy-two thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(21881, 5319, 'five thousand three hundred nineteen');\nINSERT INTO t2 VALUES(21882, 48327, 'forty-eight thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(21883, 12073, 'twelve thousand seventy-three');\nINSERT INTO t2 VALUES(21884, 49639, 'forty-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(21885, 14911, 'fourteen thousand nine hundred eleven');\nINSERT INTO t2 VALUES(21886, 40335, 'forty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(21887, 95325, 'ninety-five thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(21888, 74576, 'seventy-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(21889, 25168, 'twenty-five thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(21890, 27347, 'twenty-seven thousand three hundred forty-seven');\nINSERT INTO t2 VALUES(21891, 18439, 'eighteen thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(21892, 5233, 'five thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(21893, 57698, 'fifty-seven thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(21894, 57402, 'fifty-seven thousand four hundred two');\nINSERT INTO t2 VALUES(21895, 4832, 'four thousand eight hundred thirty-two');\nINSERT INTO t2 VALUES(21896, 45902, 'forty-five thousand nine hundred two');\nINSERT INTO t2 VALUES(21897, 34049, 'thirty-four thousand forty-nine');\nINSERT INTO t2 VALUES(21898, 84462, 'eighty-four thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(21899, 95616, 'ninety-five thousand six hundred sixteen');\nINSERT INTO t2 VALUES(21900, 12024, 'twelve thousand twenty-four');\nINSERT INTO t2 VALUES(21901, 98842, 'ninety-eight thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(21902, 94643, 'ninety-four thousand six hundred forty-three');\nINSERT INTO t2 VALUES(21903, 85409, 'eighty-five thousand four hundred nine');\nINSERT INTO t2 VALUES(21904, 99178, 'ninety-nine thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(21905, 87776, 'eighty-seven thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(21906, 60231, 'sixty thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(21907, 32094, 'thirty-two thousand ninety-four');\nINSERT INTO t2 VALUES(21908, 56176, 'fifty-six thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(21909, 56485, 'fifty-six thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(21910, 99822, 'ninety-nine thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(21911, 68217, 'sixty-eight thousand two hundred seventeen');\nINSERT INTO t2 VALUES(21912, 5074, 'five thousand seventy-four');\nINSERT INTO t2 VALUES(21913, 42960, 'forty-two thousand nine hundred sixty');\nINSERT INTO t2 VALUES(21914, 97703, 'ninety-seven thousand seven hundred three');\nINSERT INTO t2 VALUES(21915, 88512, 'eighty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(21916, 57447, 'fifty-seven thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(21917, 76208, 'seventy-six thousand two hundred eight');\nINSERT INTO t2 VALUES(21918, 3829, 'three thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(21919, 39949, 'thirty-nine thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(21920, 25143, 'twenty-five thousand one hundred forty-three');\nINSERT INTO t2 VALUES(21921, 34174, 'thirty-four thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(21922, 56170, 'fifty-six thousand one hundred seventy');\nINSERT INTO t2 VALUES(21923, 41775, 'forty-one thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(21924, 62020, 'sixty-two thousand twenty');\nINSERT INTO t2 VALUES(21925, 39601, 'thirty-nine thousand six hundred one');\nINSERT INTO t2 VALUES(21926, 90291, 'ninety thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(21927, 11348, 'eleven thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(21928, 44779, 'forty-four thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(21929, 16196, 'sixteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(21930, 30082, 'thirty thousand eighty-two');\nINSERT INTO t2 VALUES(21931, 331, 'three hundred thirty-one');\nINSERT INTO t2 VALUES(21932, 94197, 'ninety-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(21933, 44647, 'forty-four thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(21934, 13987, 'thirteen thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(21935, 75456, 'seventy-five thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(21936, 93328, 'ninety-three thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(21937, 77801, 'seventy-seven thousand eight hundred one');\nINSERT INTO t2 VALUES(21938, 37686, 'thirty-seven thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(21939, 6634, 'six thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(21940, 97951, 'ninety-seven thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(21941, 99364, 'ninety-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(21942, 96015, 'ninety-six thousand fifteen');\nINSERT INTO t2 VALUES(21943, 20453, 'twenty thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(21944, 74139, 'seventy-four thousand one hundred thirty-nine');\nINSERT INTO t2 VALUES(21945, 357, 'three hundred fifty-seven');\nINSERT INTO t2 VALUES(21946, 31582, 'thirty-one thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(21947, 9979, 'nine thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(21948, 93020, 'ninety-three thousand twenty');\nINSERT INTO t2 VALUES(21949, 10926, 'ten thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(21950, 59299, 'fifty-nine thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(21951, 98702, 'ninety-eight thousand seven hundred two');\nINSERT INTO t2 VALUES(21952, 82263, 'eighty-two thousand two hundred sixty-three');\nINSERT INTO t2 VALUES(21953, 10773, 'ten thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(21954, 15341, 'fifteen thousand three hundred forty-one');\nINSERT INTO t2 VALUES(21955, 68265, 'sixty-eight thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(21956, 77955, 'seventy-seven thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(21957, 58731, 'fifty-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(21958, 14185, 'fourteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(21959, 85254, 'eighty-five thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(21960, 61502, 'sixty-one thousand five hundred two');\nINSERT INTO t2 VALUES(21961, 86552, 'eighty-six thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(21962, 41630, 'forty-one thousand six hundred thirty');\nINSERT INTO t2 VALUES(21963, 41950, 'forty-one thousand nine hundred fifty');\nINSERT INTO t2 VALUES(21964, 57939, 'fifty-seven thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(21965, 40000, 'forty thousand');\nINSERT INTO t2 VALUES(21966, 60530, 'sixty thousand five hundred thirty');\nINSERT INTO t2 VALUES(21967, 18034, 'eighteen thousand thirty-four');\nINSERT INTO t2 VALUES(21968, 84431, 'eighty-four thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(21969, 15179, 'fifteen thousand one hundred seventy-nine');\nINSERT INTO t2 VALUES(21970, 74911, 'seventy-four thousand nine hundred eleven');\nINSERT INTO t2 VALUES(21971, 84538, 'eighty-four thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(21972, 2799, 'two thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(21973, 85043, 'eighty-five thousand forty-three');\nINSERT INTO t2 VALUES(21974, 42748, 'forty-two thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(21975, 84672, 'eighty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(21976, 21016, 'twenty-one thousand sixteen');\nINSERT INTO t2 VALUES(21977, 91151, 'ninety-one thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(21978, 31399, 'thirty-one thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(21979, 582, 'five hundred eighty-two');\nINSERT INTO t2 VALUES(21980, 77696, 'seventy-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(21981, 15770, 'fifteen thousand seven hundred seventy');\nINSERT INTO t2 VALUES(21982, 77355, 'seventy-seven thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(21983, 78835, 'seventy-eight thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(21984, 49318, 'forty-nine thousand three hundred eighteen');\nINSERT INTO t2 VALUES(21985, 38851, 'thirty-eight thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(21986, 95041, 'ninety-five thousand forty-one');\nINSERT INTO t2 VALUES(21987, 17660, 'seventeen thousand six hundred sixty');\nINSERT INTO t2 VALUES(21988, 36904, 'thirty-six thousand nine hundred four');\nINSERT INTO t2 VALUES(21989, 18448, 'eighteen thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(21990, 32593, 'thirty-two thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(21991, 30738, 'thirty thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(21992, 51261, 'fifty-one thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(21993, 31530, 'thirty-one thousand five hundred thirty');\nINSERT INTO t2 VALUES(21994, 7079, 'seven thousand seventy-nine');\nINSERT INTO t2 VALUES(21995, 24763, 'twenty-four thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(21996, 13091, 'thirteen thousand ninety-one');\nINSERT INTO t2 VALUES(21997, 83091, 'eighty-three thousand ninety-one');\nINSERT INTO t2 VALUES(21998, 86734, 'eighty-six thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(21999, 97011, 'ninety-seven thousand eleven');\nINSERT INTO t2 VALUES(22000, 69655, 'sixty-nine thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(22001, 93224, 'ninety-three thousand two hundred twenty-four');\nINSERT INTO t2 VALUES(22002, 47303, 'forty-seven thousand three hundred three');\nINSERT INTO t2 VALUES(22003, 82881, 'eighty-two thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(22004, 76860, 'seventy-six thousand eight hundred sixty');\nINSERT INTO t2 VALUES(22005, 32044, 'thirty-two thousand forty-four');\nINSERT INTO t2 VALUES(22006, 34741, 'thirty-four thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(22007, 4946, 'four thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(22008, 93278, 'ninety-three thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22009, 99396, 'ninety-nine thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(22010, 66752, 'sixty-six thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(22011, 73630, 'seventy-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(22012, 49462, 'forty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22013, 12303, 'twelve thousand three hundred three');\nINSERT INTO t2 VALUES(22014, 60299, 'sixty thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(22015, 33698, 'thirty-three thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(22016, 94715, 'ninety-four thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(22017, 69889, 'sixty-nine thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(22018, 78804, 'seventy-eight thousand eight hundred four');\nINSERT INTO t2 VALUES(22019, 31610, 'thirty-one thousand six hundred ten');\nINSERT INTO t2 VALUES(22020, 75894, 'seventy-five thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(22021, 13506, 'thirteen thousand five hundred six');\nINSERT INTO t2 VALUES(22022, 37136, 'thirty-seven thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(22023, 73834, 'seventy-three thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22024, 18252, 'eighteen thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(22025, 7241, 'seven thousand two hundred forty-one');\nINSERT INTO t2 VALUES(22026, 21953, 'twenty-one thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22027, 15659, 'fifteen thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(22028, 4825, 'four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(22029, 40827, 'forty thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(22030, 94097, 'ninety-four thousand ninety-seven');\nINSERT INTO t2 VALUES(22031, 22920, 'twenty-two thousand nine hundred twenty');\nINSERT INTO t2 VALUES(22032, 86926, 'eighty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(22033, 4580, 'four thousand five hundred eighty');\nINSERT INTO t2 VALUES(22034, 17248, 'seventeen thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(22035, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(22036, 55195, 'fifty-five thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(22037, 31872, 'thirty-one thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(22038, 57767, 'fifty-seven thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(22039, 53819, 'fifty-three thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(22040, 92343, 'ninety-two thousand three hundred forty-three');\nINSERT INTO t2 VALUES(22041, 20570, 'twenty thousand five hundred seventy');\nINSERT INTO t2 VALUES(22042, 34785, 'thirty-four thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(22043, 6321, 'six thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(22044, 55777, 'fifty-five thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(22045, 56007, 'fifty-six thousand seven');\nINSERT INTO t2 VALUES(22046, 80652, 'eighty thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(22047, 87857, 'eighty-seven thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22048, 55133, 'fifty-five thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(22049, 81629, 'eighty-one thousand six hundred twenty-nine');\nINSERT INTO t2 VALUES(22050, 94774, 'ninety-four thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(22051, 83117, 'eighty-three thousand one hundred seventeen');\nINSERT INTO t2 VALUES(22052, 96431, 'ninety-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(22053, 14775, 'fourteen thousand seven hundred seventy-five');\nINSERT INTO t2 VALUES(22054, 3913, 'three thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(22055, 56632, 'fifty-six thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(22056, 24913, 'twenty-four thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(22057, 49614, 'forty-nine thousand six hundred fourteen');\nINSERT INTO t2 VALUES(22058, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(22059, 96327, 'ninety-six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(22060, 59990, 'fifty-nine thousand nine hundred ninety');\nINSERT INTO t2 VALUES(22061, 49349, 'forty-nine thousand three hundred forty-nine');\nINSERT INTO t2 VALUES(22062, 7848, 'seven thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(22063, 93977, 'ninety-three thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(22064, 6369, 'six thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(22065, 84992, 'eighty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(22066, 25892, 'twenty-five thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(22067, 59508, 'fifty-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(22068, 54796, 'fifty-four thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22069, 51376, 'fifty-one thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(22070, 98728, 'ninety-eight thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(22071, 603, 'six hundred three');\nINSERT INTO t2 VALUES(22072, 3197, 'three thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(22073, 2058, 'two thousand fifty-eight');\nINSERT INTO t2 VALUES(22074, 63116, 'sixty-three thousand one hundred sixteen');\nINSERT INTO t2 VALUES(22075, 32420, 'thirty-two thousand four hundred twenty');\nINSERT INTO t2 VALUES(22076, 21816, 'twenty-one thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(22077, 55083, 'fifty-five thousand eighty-three');\nINSERT INTO t2 VALUES(22078, 24875, 'twenty-four thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(22079, 17915, 'seventeen thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(22080, 6023, 'six thousand twenty-three');\nINSERT INTO t2 VALUES(22081, 18300, 'eighteen thousand three hundred');\nINSERT INTO t2 VALUES(22082, 25723, 'twenty-five thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(22083, 46304, 'forty-six thousand three hundred four');\nINSERT INTO t2 VALUES(22084, 99753, 'ninety-nine thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(22085, 84480, 'eighty-four thousand four hundred eighty');\nINSERT INTO t2 VALUES(22086, 74206, 'seventy-four thousand two hundred six');\nINSERT INTO t2 VALUES(22087, 21578, 'twenty-one thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(22088, 99796, 'ninety-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22089, 4436, 'four thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(22090, 9006, 'nine thousand six');\nINSERT INTO t2 VALUES(22091, 78406, 'seventy-eight thousand four hundred six');\nINSERT INTO t2 VALUES(22092, 40100, 'forty thousand one hundred');\nINSERT INTO t2 VALUES(22093, 57556, 'fifty-seven thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(22094, 17043, 'seventeen thousand forty-three');\nINSERT INTO t2 VALUES(22095, 46318, 'forty-six thousand three hundred eighteen');\nINSERT INTO t2 VALUES(22096, 62851, 'sixty-two thousand eight hundred fifty-one');\nINSERT INTO t2 VALUES(22097, 85693, 'eighty-five thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22098, 3326, 'three thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22099, 67248, 'sixty-seven thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(22100, 31801, 'thirty-one thousand eight hundred one');\nINSERT INTO t2 VALUES(22101, 98229, 'ninety-eight thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(22102, 94234, 'ninety-four thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(22103, 71103, 'seventy-one thousand one hundred three');\nINSERT INTO t2 VALUES(22104, 30672, 'thirty thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(22105, 80423, 'eighty thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(22106, 65196, 'sixty-five thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(22107, 21399, 'twenty-one thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(22108, 86154, 'eighty-six thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(22109, 23339, 'twenty-three thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(22110, 71764, 'seventy-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(22111, 38476, 'thirty-eight thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(22112, 63054, 'sixty-three thousand fifty-four');\nINSERT INTO t2 VALUES(22113, 52770, 'fifty-two thousand seven hundred seventy');\nINSERT INTO t2 VALUES(22114, 70640, 'seventy thousand six hundred forty');\nINSERT INTO t2 VALUES(22115, 17870, 'seventeen thousand eight hundred seventy');\nINSERT INTO t2 VALUES(22116, 52605, 'fifty-two thousand six hundred five');\nINSERT INTO t2 VALUES(22117, 81158, 'eighty-one thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(22118, 44655, 'forty-four thousand six hundred fifty-five');\nINSERT INTO t2 VALUES(22119, 84621, 'eighty-four thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(22120, 64086, 'sixty-four thousand eighty-six');\nINSERT INTO t2 VALUES(22121, 85673, 'eighty-five thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(22122, 10842, 'ten thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(22123, 36601, 'thirty-six thousand six hundred one');\nINSERT INTO t2 VALUES(22124, 52509, 'fifty-two thousand five hundred nine');\nINSERT INTO t2 VALUES(22125, 4652, 'four thousand six hundred fifty-two');\nINSERT INTO t2 VALUES(22126, 54570, 'fifty-four thousand five hundred seventy');\nINSERT INTO t2 VALUES(22127, 21673, 'twenty-one thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(22128, 20264, 'twenty thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22129, 74680, 'seventy-four thousand six hundred eighty');\nINSERT INTO t2 VALUES(22130, 83816, 'eighty-three thousand eight hundred sixteen');\nINSERT INTO t2 VALUES(22131, 10604, 'ten thousand six hundred four');\nINSERT INTO t2 VALUES(22132, 34949, 'thirty-four thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(22133, 24980, 'twenty-four thousand nine hundred eighty');\nINSERT INTO t2 VALUES(22134, 86003, 'eighty-six thousand three');\nINSERT INTO t2 VALUES(22135, 94893, 'ninety-four thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(22136, 70909, 'seventy thousand nine hundred nine');\nINSERT INTO t2 VALUES(22137, 2554, 'two thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(22138, 59340, 'fifty-nine thousand three hundred forty');\nINSERT INTO t2 VALUES(22139, 42055, 'forty-two thousand fifty-five');\nINSERT INTO t2 VALUES(22140, 72185, 'seventy-two thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(22141, 3377, 'three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(22142, 23210, 'twenty-three thousand two hundred ten');\nINSERT INTO t2 VALUES(22143, 25843, 'twenty-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(22144, 59450, 'fifty-nine thousand four hundred fifty');\nINSERT INTO t2 VALUES(22145, 79508, 'seventy-nine thousand five hundred eight');\nINSERT INTO t2 VALUES(22146, 48953, 'forty-eight thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22147, 59022, 'fifty-nine thousand twenty-two');\nINSERT INTO t2 VALUES(22148, 57755, 'fifty-seven thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(22149, 67545, 'sixty-seven thousand five hundred forty-five');\nINSERT INTO t2 VALUES(22150, 12884, 'twelve thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(22151, 25185, 'twenty-five thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(22152, 99814, 'ninety-nine thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(22153, 59583, 'fifty-nine thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(22154, 5526, 'five thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(22155, 51770, 'fifty-one thousand seven hundred seventy');\nINSERT INTO t2 VALUES(22156, 60081, 'sixty thousand eighty-one');\nINSERT INTO t2 VALUES(22157, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t2 VALUES(22158, 57611, 'fifty-seven thousand six hundred eleven');\nINSERT INTO t2 VALUES(22159, 19059, 'nineteen thousand fifty-nine');\nINSERT INTO t2 VALUES(22160, 99523, 'ninety-nine thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(22161, 69602, 'sixty-nine thousand six hundred two');\nINSERT INTO t2 VALUES(22162, 9373, 'nine thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(22163, 81414, 'eighty-one thousand four hundred fourteen');\nINSERT INTO t2 VALUES(22164, 16185, 'sixteen thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(22165, 71585, 'seventy-one thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(22166, 40341, 'forty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(22167, 31501, 'thirty-one thousand five hundred one');\nINSERT INTO t2 VALUES(22168, 68361, 'sixty-eight thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(22169, 96746, 'ninety-six thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(22170, 59386, 'fifty-nine thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(22171, 41805, 'forty-one thousand eight hundred five');\nINSERT INTO t2 VALUES(22172, 37704, 'thirty-seven thousand seven hundred four');\nINSERT INTO t2 VALUES(22173, 85682, 'eighty-five thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(22174, 84377, 'eighty-four thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(22175, 88395, 'eighty-eight thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(22176, 79787, 'seventy-nine thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(22177, 28358, 'twenty-eight thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(22178, 84915, 'eighty-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(22179, 3348, 'three thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(22180, 99217, 'ninety-nine thousand two hundred seventeen');\nINSERT INTO t2 VALUES(22181, 79639, 'seventy-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22182, 81589, 'eighty-one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(22183, 34880, 'thirty-four thousand eight hundred eighty');\nINSERT INTO t2 VALUES(22184, 10562, 'ten thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(22185, 70863, 'seventy thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(22186, 27485, 'twenty-seven thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(22187, 67005, 'sixty-seven thousand five');\nINSERT INTO t2 VALUES(22188, 33244, 'thirty-three thousand two hundred forty-four');\nINSERT INTO t2 VALUES(22189, 449, 'four hundred forty-nine');\nINSERT INTO t2 VALUES(22190, 53850, 'fifty-three thousand eight hundred fifty');\nINSERT INTO t2 VALUES(22191, 71572, 'seventy-one thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(22192, 26332, 'twenty-six thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(22193, 89696, 'eighty-nine thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(22194, 67745, 'sixty-seven thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(22195, 39639, 'thirty-nine thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22196, 18833, 'eighteen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(22197, 48640, 'forty-eight thousand six hundred forty');\nINSERT INTO t2 VALUES(22198, 73821, 'seventy-three thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(22199, 19825, 'nineteen thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(22200, 99062, 'ninety-nine thousand sixty-two');\nINSERT INTO t2 VALUES(22201, 72691, 'seventy-two thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(22202, 68914, 'sixty-eight thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(22203, 1589, 'one thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(22204, 93983, 'ninety-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(22205, 85496, 'eighty-five thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22206, 68038, 'sixty-eight thousand thirty-eight');\nINSERT INTO t2 VALUES(22207, 70007, 'seventy thousand seven');\nINSERT INTO t2 VALUES(22208, 35298, 'thirty-five thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(22209, 90026, 'ninety thousand twenty-six');\nINSERT INTO t2 VALUES(22210, 80100, 'eighty thousand one hundred');\nINSERT INTO t2 VALUES(22211, 57088, 'fifty-seven thousand eighty-eight');\nINSERT INTO t2 VALUES(22212, 88140, 'eighty-eight thousand one hundred forty');\nINSERT INTO t2 VALUES(22213, 49802, 'forty-nine thousand eight hundred two');\nINSERT INTO t2 VALUES(22214, 38558, 'thirty-eight thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(22215, 39918, 'thirty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(22216, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(22217, 43163, 'forty-three thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(22218, 28423, 'twenty-eight thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(22219, 54784, 'fifty-four thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(22220, 64184, 'sixty-four thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(22221, 46153, 'forty-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(22222, 61830, 'sixty-one thousand eight hundred thirty');\nINSERT INTO t2 VALUES(22223, 3681, 'three thousand six hundred eighty-one');\nINSERT INTO t2 VALUES(22224, 92648, 'ninety-two thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(22225, 25961, 'twenty-five thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(22226, 5779, 'five thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(22227, 83983, 'eighty-three thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(22228, 23458, 'twenty-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(22229, 71798, 'seventy-one thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(22230, 58639, 'fifty-eight thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22231, 5810, 'five thousand eight hundred ten');\nINSERT INTO t2 VALUES(22232, 55041, 'fifty-five thousand forty-one');\nINSERT INTO t2 VALUES(22233, 34314, 'thirty-four thousand three hundred fourteen');\nINSERT INTO t2 VALUES(22234, 8678, 'eight thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(22235, 67566, 'sixty-seven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(22236, 7956, 'seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(22237, 22705, 'twenty-two thousand seven hundred five');\nINSERT INTO t2 VALUES(22238, 86646, 'eighty-six thousand six hundred forty-six');\nINSERT INTO t2 VALUES(22239, 15199, 'fifteen thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(22240, 21826, 'twenty-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(22241, 13080, 'thirteen thousand eighty');\nINSERT INTO t2 VALUES(22242, 89796, 'eighty-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22243, 28269, 'twenty-eight thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(22244, 80456, 'eighty thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(22245, 85916, 'eighty-five thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(22246, 72154, 'seventy-two thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(22247, 89795, 'eighty-nine thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(22248, 42254, 'forty-two thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(22249, 55296, 'fifty-five thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(22250, 12220, 'twelve thousand two hundred twenty');\nINSERT INTO t2 VALUES(22251, 56534, 'fifty-six thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(22252, 29834, 'twenty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22253, 10798, 'ten thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(22254, 9685, 'nine thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(22255, 23872, 'twenty-three thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(22256, 25837, 'twenty-five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(22257, 93897, 'ninety-three thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(22258, 77450, 'seventy-seven thousand four hundred fifty');\nINSERT INTO t2 VALUES(22259, 98521, 'ninety-eight thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(22260, 76892, 'seventy-six thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(22261, 29619, 'twenty-nine thousand six hundred nineteen');\nINSERT INTO t2 VALUES(22262, 48101, 'forty-eight thousand one hundred one');\nINSERT INTO t2 VALUES(22263, 16804, 'sixteen thousand eight hundred four');\nINSERT INTO t2 VALUES(22264, 83536, 'eighty-three thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(22265, 18391, 'eighteen thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(22266, 37038, 'thirty-seven thousand thirty-eight');\nINSERT INTO t2 VALUES(22267, 61421, 'sixty-one thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(22268, 15063, 'fifteen thousand sixty-three');\nINSERT INTO t2 VALUES(22269, 48907, 'forty-eight thousand nine hundred seven');\nINSERT INTO t2 VALUES(22270, 17658, 'seventeen thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(22271, 49716, 'forty-nine thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(22272, 28176, 'twenty-eight thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(22273, 22096, 'twenty-two thousand ninety-six');\nINSERT INTO t2 VALUES(22274, 43822, 'forty-three thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22275, 50437, 'fifty thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(22276, 23342, 'twenty-three thousand three hundred forty-two');\nINSERT INTO t2 VALUES(22277, 21826, 'twenty-one thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(22278, 40730, 'forty thousand seven hundred thirty');\nINSERT INTO t2 VALUES(22279, 29191, 'twenty-nine thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(22280, 24973, 'twenty-four thousand nine hundred seventy-three');\nINSERT INTO t2 VALUES(22281, 77396, 'seventy-seven thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(22282, 8419, 'eight thousand four hundred nineteen');\nINSERT INTO t2 VALUES(22283, 12609, 'twelve thousand six hundred nine');\nINSERT INTO t2 VALUES(22284, 14178, 'fourteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(22285, 97916, 'ninety-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(22286, 9432, 'nine thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(22287, 35508, 'thirty-five thousand five hundred eight');\nINSERT INTO t2 VALUES(22288, 31643, 'thirty-one thousand six hundred forty-three');\nINSERT INTO t2 VALUES(22289, 6604, 'six thousand six hundred four');\nINSERT INTO t2 VALUES(22290, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t2 VALUES(22291, 41466, 'forty-one thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(22292, 78205, 'seventy-eight thousand two hundred five');\nINSERT INTO t2 VALUES(22293, 21247, 'twenty-one thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(22294, 84108, 'eighty-four thousand one hundred eight');\nINSERT INTO t2 VALUES(22295, 86633, 'eighty-six thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(22296, 57645, 'fifty-seven thousand six hundred forty-five');\nINSERT INTO t2 VALUES(22297, 63918, 'sixty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(22298, 54042, 'fifty-four thousand forty-two');\nINSERT INTO t2 VALUES(22299, 6605, 'six thousand six hundred five');\nINSERT INTO t2 VALUES(22300, 64502, 'sixty-four thousand five hundred two');\nINSERT INTO t2 VALUES(22301, 63918, 'sixty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(22302, 86611, 'eighty-six thousand six hundred eleven');\nINSERT INTO t2 VALUES(22303, 1451, 'one thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(22304, 47419, 'forty-seven thousand four hundred nineteen');\nINSERT INTO t2 VALUES(22305, 57464, 'fifty-seven thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(22306, 46897, 'forty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(22307, 94455, 'ninety-four thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(22308, 34717, 'thirty-four thousand seven hundred seventeen');\nINSERT INTO t2 VALUES(22309, 60931, 'sixty thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(22310, 51191, 'fifty-one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(22311, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t2 VALUES(22312, 13138, 'thirteen thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(22313, 76315, 'seventy-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(22314, 82068, 'eighty-two thousand sixty-eight');\nINSERT INTO t2 VALUES(22315, 80865, 'eighty thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(22316, 98648, 'ninety-eight thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(22317, 18623, 'eighteen thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(22318, 54551, 'fifty-four thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(22319, 22386, 'twenty-two thousand three hundred eighty-six');\nINSERT INTO t2 VALUES(22320, 38516, 'thirty-eight thousand five hundred sixteen');\nINSERT INTO t2 VALUES(22321, 87051, 'eighty-seven thousand fifty-one');\nINSERT INTO t2 VALUES(22322, 38865, 'thirty-eight thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(22323, 3770, 'three thousand seven hundred seventy');\nINSERT INTO t2 VALUES(22324, 3409, 'three thousand four hundred nine');\nINSERT INTO t2 VALUES(22325, 76197, 'seventy-six thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(22326, 27638, 'twenty-seven thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(22327, 72267, 'seventy-two thousand two hundred sixty-seven');\nINSERT INTO t2 VALUES(22328, 49201, 'forty-nine thousand two hundred one');\nINSERT INTO t2 VALUES(22329, 51957, 'fifty-one thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(22330, 95407, 'ninety-five thousand four hundred seven');\nINSERT INTO t2 VALUES(22331, 494, 'four hundred ninety-four');\nINSERT INTO t2 VALUES(22332, 19769, 'nineteen thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(22333, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t2 VALUES(22334, 5150, 'five thousand one hundred fifty');\nINSERT INTO t2 VALUES(22335, 2342, 'two thousand three hundred forty-two');\nINSERT INTO t2 VALUES(22336, 56163, 'fifty-six thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(22337, 4604, 'four thousand six hundred four');\nINSERT INTO t2 VALUES(22338, 69693, 'sixty-nine thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22339, 88292, 'eighty-eight thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(22340, 65142, 'sixty-five thousand one hundred forty-two');\nINSERT INTO t2 VALUES(22341, 75426, 'seventy-five thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(22342, 15423, 'fifteen thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(22343, 80547, 'eighty thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(22344, 88201, 'eighty-eight thousand two hundred one');\nINSERT INTO t2 VALUES(22345, 52965, 'fifty-two thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(22346, 96199, 'ninety-six thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(22347, 54514, 'fifty-four thousand five hundred fourteen');\nINSERT INTO t2 VALUES(22348, 1238, 'one thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(22349, 97621, 'ninety-seven thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(22350, 35730, 'thirty-five thousand seven hundred thirty');\nINSERT INTO t2 VALUES(22351, 14932, 'fourteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(22352, 43812, 'forty-three thousand eight hundred twelve');\nINSERT INTO t2 VALUES(22353, 6577, 'six thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(22354, 62010, 'sixty-two thousand ten');\nINSERT INTO t2 VALUES(22355, 91955, 'ninety-one thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(22356, 18085, 'eighteen thousand eighty-five');\nINSERT INTO t2 VALUES(22357, 45931, 'forty-five thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(22358, 79207, 'seventy-nine thousand two hundred seven');\nINSERT INTO t2 VALUES(22359, 11729, 'eleven thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(22360, 26329, 'twenty-six thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(22361, 19065, 'nineteen thousand sixty-five');\nINSERT INTO t2 VALUES(22362, 92482, 'ninety-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(22363, 34050, 'thirty-four thousand fifty');\nINSERT INTO t2 VALUES(22364, 15749, 'fifteen thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(22365, 66165, 'sixty-six thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(22366, 36505, 'thirty-six thousand five hundred five');\nINSERT INTO t2 VALUES(22367, 131, 'one hundred thirty-one');\nINSERT INTO t2 VALUES(22368, 69597, 'sixty-nine thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(22369, 46427, 'forty-six thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(22370, 8874, 'eight thousand eight hundred seventy-four');\nINSERT INTO t2 VALUES(22371, 85392, 'eighty-five thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(22372, 56348, 'fifty-six thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(22373, 84536, 'eighty-four thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(22374, 11474, 'eleven thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(22375, 1278, 'one thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22376, 66671, 'sixty-six thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(22377, 78884, 'seventy-eight thousand eight hundred eighty-four');\nINSERT INTO t2 VALUES(22378, 3512, 'three thousand five hundred twelve');\nINSERT INTO t2 VALUES(22379, 11434, 'eleven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(22380, 87002, 'eighty-seven thousand two');\nINSERT INTO t2 VALUES(22381, 55430, 'fifty-five thousand four hundred thirty');\nINSERT INTO t2 VALUES(22382, 69635, 'sixty-nine thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(22383, 3510, 'three thousand five hundred ten');\nINSERT INTO t2 VALUES(22384, 82464, 'eighty-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(22385, 14576, 'fourteen thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(22386, 26189, 'twenty-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(22387, 18114, 'eighteen thousand one hundred fourteen');\nINSERT INTO t2 VALUES(22388, 88458, 'eighty-eight thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(22389, 97696, 'ninety-seven thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(22390, 20326, 'twenty thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22391, 61539, 'sixty-one thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(22392, 41704, 'forty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(22393, 62173, 'sixty-two thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(22394, 36659, 'thirty-six thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(22395, 39339, 'thirty-nine thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(22396, 35492, 'thirty-five thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(22397, 84672, 'eighty-four thousand six hundred seventy-two');\nINSERT INTO t2 VALUES(22398, 62140, 'sixty-two thousand one hundred forty');\nINSERT INTO t2 VALUES(22399, 39728, 'thirty-nine thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(22400, 63508, 'sixty-three thousand five hundred eight');\nINSERT INTO t2 VALUES(22401, 2118, 'two thousand one hundred eighteen');\nINSERT INTO t2 VALUES(22402, 45989, 'forty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(22403, 29906, 'twenty-nine thousand nine hundred six');\nINSERT INTO t2 VALUES(22404, 24720, 'twenty-four thousand seven hundred twenty');\nINSERT INTO t2 VALUES(22405, 28470, 'twenty-eight thousand four hundred seventy');\nINSERT INTO t2 VALUES(22406, 53785, 'fifty-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(22407, 86742, 'eighty-six thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(22408, 70868, 'seventy thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(22409, 9745, 'nine thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(22410, 52889, 'fifty-two thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(22411, 2810, 'two thousand eight hundred ten');\nINSERT INTO t2 VALUES(22412, 81529, 'eighty-one thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(22413, 95495, 'ninety-five thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(22414, 32732, 'thirty-two thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(22415, 75278, 'seventy-five thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22416, 52264, 'fifty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22417, 99252, 'ninety-nine thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(22418, 94074, 'ninety-four thousand seventy-four');\nINSERT INTO t2 VALUES(22419, 47933, 'forty-seven thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(22420, 59535, 'fifty-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(22421, 29172, 'twenty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(22422, 43086, 'forty-three thousand eighty-six');\nINSERT INTO t2 VALUES(22423, 48602, 'forty-eight thousand six hundred two');\nINSERT INTO t2 VALUES(22424, 17942, 'seventeen thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(22425, 86946, 'eighty-six thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(22426, 28083, 'twenty-eight thousand eighty-three');\nINSERT INTO t2 VALUES(22427, 25869, 'twenty-five thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(22428, 6886, 'six thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(22429, 55286, 'fifty-five thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(22430, 47264, 'forty-seven thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22431, 3180, 'three thousand one hundred eighty');\nINSERT INTO t2 VALUES(22432, 98092, 'ninety-eight thousand ninety-two');\nINSERT INTO t2 VALUES(22433, 90141, 'ninety thousand one hundred forty-one');\nINSERT INTO t2 VALUES(22434, 57581, 'fifty-seven thousand five hundred eighty-one');\nINSERT INTO t2 VALUES(22435, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(22436, 30778, 'thirty thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(22437, 74100, 'seventy-four thousand one hundred');\nINSERT INTO t2 VALUES(22438, 12810, 'twelve thousand eight hundred ten');\nINSERT INTO t2 VALUES(22439, 65540, 'sixty-five thousand five hundred forty');\nINSERT INTO t2 VALUES(22440, 32744, 'thirty-two thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(22441, 41062, 'forty-one thousand sixty-two');\nINSERT INTO t2 VALUES(22442, 30471, 'thirty thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(22443, 27794, 'twenty-seven thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(22444, 56417, 'fifty-six thousand four hundred seventeen');\nINSERT INTO t2 VALUES(22445, 4596, 'four thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(22446, 57387, 'fifty-seven thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(22447, 907, 'nine hundred seven');\nINSERT INTO t2 VALUES(22448, 81107, 'eighty-one thousand one hundred seven');\nINSERT INTO t2 VALUES(22449, 22607, 'twenty-two thousand six hundred seven');\nINSERT INTO t2 VALUES(22450, 6645, 'six thousand six hundred forty-five');\nINSERT INTO t2 VALUES(22451, 65171, 'sixty-five thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(22452, 77201, 'seventy-seven thousand two hundred one');\nINSERT INTO t2 VALUES(22453, 96260, 'ninety-six thousand two hundred sixty');\nINSERT INTO t2 VALUES(22454, 4800, 'four thousand eight hundred');\nINSERT INTO t2 VALUES(22455, 46822, 'forty-six thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22456, 34151, 'thirty-four thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(22457, 87858, 'eighty-seven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(22458, 81437, 'eighty-one thousand four hundred thirty-seven');\nINSERT INTO t2 VALUES(22459, 37041, 'thirty-seven thousand forty-one');\nINSERT INTO t2 VALUES(22460, 43433, 'forty-three thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(22461, 62264, 'sixty-two thousand two hundred sixty-four');\nINSERT INTO t2 VALUES(22462, 19210, 'nineteen thousand two hundred ten');\nINSERT INTO t2 VALUES(22463, 29407, 'twenty-nine thousand four hundred seven');\nINSERT INTO t2 VALUES(22464, 6829, 'six thousand eight hundred twenty-nine');\nINSERT INTO t2 VALUES(22465, 79493, 'seventy-nine thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(22466, 64460, 'sixty-four thousand four hundred sixty');\nINSERT INTO t2 VALUES(22467, 4376, 'four thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(22468, 42564, 'forty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(22469, 63570, 'sixty-three thousand five hundred seventy');\nINSERT INTO t2 VALUES(22470, 15802, 'fifteen thousand eight hundred two');\nINSERT INTO t2 VALUES(22471, 45518, 'forty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(22472, 68015, 'sixty-eight thousand fifteen');\nINSERT INTO t2 VALUES(22473, 92654, 'ninety-two thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(22474, 7576, 'seven thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(22475, 24404, 'twenty-four thousand four hundred four');\nINSERT INTO t2 VALUES(22476, 21253, 'twenty-one thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(22477, 72234, 'seventy-two thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(22478, 21266, 'twenty-one thousand two hundred sixty-six');\nINSERT INTO t2 VALUES(22479, 13822, 'thirteen thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22480, 20035, 'twenty thousand thirty-five');\nINSERT INTO t2 VALUES(22481, 86539, 'eighty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(22482, 98016, 'ninety-eight thousand sixteen');\nINSERT INTO t2 VALUES(22483, 19081, 'nineteen thousand eighty-one');\nINSERT INTO t2 VALUES(22484, 42285, 'forty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(22485, 6786, 'six thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(22486, 8017, 'eight thousand seventeen');\nINSERT INTO t2 VALUES(22487, 40663, 'forty thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(22488, 64819, 'sixty-four thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(22489, 71485, 'seventy-one thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(22490, 20107, 'twenty thousand one hundred seven');\nINSERT INTO t2 VALUES(22491, 64211, 'sixty-four thousand two hundred eleven');\nINSERT INTO t2 VALUES(22492, 42281, 'forty-two thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(22493, 15844, 'fifteen thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(22494, 56296, 'fifty-six thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(22495, 14693, 'fourteen thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22496, 78055, 'seventy-eight thousand fifty-five');\nINSERT INTO t2 VALUES(22497, 23911, 'twenty-three thousand nine hundred eleven');\nINSERT INTO t2 VALUES(22498, 35824, 'thirty-five thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(22499, 11405, 'eleven thousand four hundred five');\nINSERT INTO t2 VALUES(22500, 85625, 'eighty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(22501, 80429, 'eighty thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(22502, 44783, 'forty-four thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(22503, 56005, 'fifty-six thousand five');\nINSERT INTO t2 VALUES(22504, 69813, 'sixty-nine thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(22505, 40183, 'forty thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(22506, 16055, 'sixteen thousand fifty-five');\nINSERT INTO t2 VALUES(22507, 77031, 'seventy-seven thousand thirty-one');\nINSERT INTO t2 VALUES(22508, 90278, 'ninety thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22509, 45414, 'forty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(22510, 39654, 'thirty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(22511, 19673, 'nineteen thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(22512, 70631, 'seventy thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(22513, 55329, 'fifty-five thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(22514, 516, 'five hundred sixteen');\nINSERT INTO t2 VALUES(22515, 79159, 'seventy-nine thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(22516, 7658, 'seven thousand six hundred fifty-eight');\nINSERT INTO t2 VALUES(22517, 38668, 'thirty-eight thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(22518, 53385, 'fifty-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(22519, 50034, 'fifty thousand thirty-four');\nINSERT INTO t2 VALUES(22520, 65668, 'sixty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(22521, 84646, 'eighty-four thousand six hundred forty-six');\nINSERT INTO t2 VALUES(22522, 52564, 'fifty-two thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(22523, 10899, 'ten thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(22524, 42573, 'forty-two thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(22525, 38401, 'thirty-eight thousand four hundred one');\nINSERT INTO t2 VALUES(22526, 88565, 'eighty-eight thousand five hundred sixty-five');\nINSERT INTO t2 VALUES(22527, 381, 'three hundred eighty-one');\nINSERT INTO t2 VALUES(22528, 21216, 'twenty-one thousand two hundred sixteen');\nINSERT INTO t2 VALUES(22529, 95817, 'ninety-five thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(22530, 1165, 'one thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(22531, 53861, 'fifty-three thousand eight hundred sixty-one');\nINSERT INTO t2 VALUES(22532, 50490, 'fifty thousand four hundred ninety');\nINSERT INTO t2 VALUES(22533, 25127, 'twenty-five thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(22534, 15595, 'fifteen thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(22535, 84808, 'eighty-four thousand eight hundred eight');\nINSERT INTO t2 VALUES(22536, 9311, 'nine thousand three hundred eleven');\nINSERT INTO t2 VALUES(22537, 53187, 'fifty-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(22538, 45109, 'forty-five thousand one hundred nine');\nINSERT INTO t2 VALUES(22539, 98859, 'ninety-eight thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(22540, 30692, 'thirty thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(22541, 56062, 'fifty-six thousand sixty-two');\nINSERT INTO t2 VALUES(22542, 18326, 'eighteen thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22543, 68792, 'sixty-eight thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(22544, 77571, 'seventy-seven thousand five hundred seventy-one');\nINSERT INTO t2 VALUES(22545, 47630, 'forty-seven thousand six hundred thirty');\nINSERT INTO t2 VALUES(22546, 35447, 'thirty-five thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(22547, 92822, 'ninety-two thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(22548, 4965, 'four thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(22549, 22923, 'twenty-two thousand nine hundred twenty-three');\nINSERT INTO t2 VALUES(22550, 54997, 'fifty-four thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(22551, 76657, 'seventy-six thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(22552, 61704, 'sixty-one thousand seven hundred four');\nINSERT INTO t2 VALUES(22553, 6399, 'six thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(22554, 87246, 'eighty-seven thousand two hundred forty-six');\nINSERT INTO t2 VALUES(22555, 70422, 'seventy thousand four hundred twenty-two');\nINSERT INTO t2 VALUES(22556, 87675, 'eighty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(22557, 73009, 'seventy-three thousand nine');\nINSERT INTO t2 VALUES(22558, 71043, 'seventy-one thousand forty-three');\nINSERT INTO t2 VALUES(22559, 24841, 'twenty-four thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(22560, 72324, 'seventy-two thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(22561, 1343, 'one thousand three hundred forty-three');\nINSERT INTO t2 VALUES(22562, 96980, 'ninety-six thousand nine hundred eighty');\nINSERT INTO t2 VALUES(22563, 46845, 'forty-six thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(22564, 12364, 'twelve thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(22565, 88731, 'eighty-eight thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(22566, 80641, 'eighty thousand six hundred forty-one');\nINSERT INTO t2 VALUES(22567, 13653, 'thirteen thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(22568, 96138, 'ninety-six thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(22569, 16727, 'sixteen thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(22570, 32793, 'thirty-two thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(22571, 14371, 'fourteen thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(22572, 45857, 'forty-five thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22573, 6766, 'six thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(22574, 64805, 'sixty-four thousand eight hundred five');\nINSERT INTO t2 VALUES(22575, 13462, 'thirteen thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22576, 23840, 'twenty-three thousand eight hundred forty');\nINSERT INTO t2 VALUES(22577, 39545, 'thirty-nine thousand five hundred forty-five');\nINSERT INTO t2 VALUES(22578, 15053, 'fifteen thousand fifty-three');\nINSERT INTO t2 VALUES(22579, 15590, 'fifteen thousand five hundred ninety');\nINSERT INTO t2 VALUES(22580, 87021, 'eighty-seven thousand twenty-one');\nINSERT INTO t2 VALUES(22581, 64698, 'sixty-four thousand six hundred ninety-eight');\nINSERT INTO t2 VALUES(22582, 75271, 'seventy-five thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(22583, 65984, 'sixty-five thousand nine hundred eighty-four');\nINSERT INTO t2 VALUES(22584, 21130, 'twenty-one thousand one hundred thirty');\nINSERT INTO t2 VALUES(22585, 35160, 'thirty-five thousand one hundred sixty');\nINSERT INTO t2 VALUES(22586, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(22587, 85332, 'eighty-five thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(22588, 88219, 'eighty-eight thousand two hundred nineteen');\nINSERT INTO t2 VALUES(22589, 99848, 'ninety-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(22590, 30292, 'thirty thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(22591, 57879, 'fifty-seven thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(22592, 56974, 'fifty-six thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(22593, 27398, 'twenty-seven thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(22594, 95470, 'ninety-five thousand four hundred seventy');\nINSERT INTO t2 VALUES(22595, 3801, 'three thousand eight hundred one');\nINSERT INTO t2 VALUES(22596, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(22597, 32582, 'thirty-two thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(22598, 42082, 'forty-two thousand eighty-two');\nINSERT INTO t2 VALUES(22599, 84096, 'eighty-four thousand ninety-six');\nINSERT INTO t2 VALUES(22600, 91235, 'ninety-one thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(22601, 68877, 'sixty-eight thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(22602, 75178, 'seventy-five thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(22603, 27786, 'twenty-seven thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(22604, 14675, 'fourteen thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(22605, 44198, 'forty-four thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(22606, 64766, 'sixty-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(22607, 57594, 'fifty-seven thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(22608, 25195, 'twenty-five thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(22609, 78269, 'seventy-eight thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(22610, 12876, 'twelve thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(22611, 70858, 'seventy thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(22612, 8704, 'eight thousand seven hundred four');\nINSERT INTO t2 VALUES(22613, 77585, 'seventy-seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(22614, 13116, 'thirteen thousand one hundred sixteen');\nINSERT INTO t2 VALUES(22615, 32525, 'thirty-two thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(22616, 87846, 'eighty-seven thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(22617, 42320, 'forty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(22618, 75749, 'seventy-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(22619, 91169, 'ninety-one thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(22620, 57533, 'fifty-seven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(22621, 28429, 'twenty-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(22622, 30517, 'thirty thousand five hundred seventeen');\nINSERT INTO t2 VALUES(22623, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t2 VALUES(22624, 24449, 'twenty-four thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(22625, 84461, 'eighty-four thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(22626, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t2 VALUES(22627, 38957, 'thirty-eight thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(22628, 49516, 'forty-nine thousand five hundred sixteen');\nINSERT INTO t2 VALUES(22629, 78211, 'seventy-eight thousand two hundred eleven');\nINSERT INTO t2 VALUES(22630, 31370, 'thirty-one thousand three hundred seventy');\nINSERT INTO t2 VALUES(22631, 88630, 'eighty-eight thousand six hundred thirty');\nINSERT INTO t2 VALUES(22632, 29902, 'twenty-nine thousand nine hundred two');\nINSERT INTO t2 VALUES(22633, 25505, 'twenty-five thousand five hundred five');\nINSERT INTO t2 VALUES(22634, 53570, 'fifty-three thousand five hundred seventy');\nINSERT INTO t2 VALUES(22635, 53582, 'fifty-three thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(22636, 29462, 'twenty-nine thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22637, 37866, 'thirty-seven thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(22638, 21474, 'twenty-one thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(22639, 52971, 'fifty-two thousand nine hundred seventy-one');\nINSERT INTO t2 VALUES(22640, 70905, 'seventy thousand nine hundred five');\nINSERT INTO t2 VALUES(22641, 83229, 'eighty-three thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(22642, 79718, 'seventy-nine thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(22643, 49910, 'forty-nine thousand nine hundred ten');\nINSERT INTO t2 VALUES(22644, 56269, 'fifty-six thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(22645, 73311, 'seventy-three thousand three hundred eleven');\nINSERT INTO t2 VALUES(22646, 65921, 'sixty-five thousand nine hundred twenty-one');\nINSERT INTO t2 VALUES(22647, 20012, 'twenty thousand twelve');\nINSERT INTO t2 VALUES(22648, 61431, 'sixty-one thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(22649, 8282, 'eight thousand two hundred eighty-two');\nINSERT INTO t2 VALUES(22650, 86294, 'eighty-six thousand two hundred ninety-four');\nINSERT INTO t2 VALUES(22651, 4933, 'four thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(22652, 75845, 'seventy-five thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(22653, 37304, 'thirty-seven thousand three hundred four');\nINSERT INTO t2 VALUES(22654, 11567, 'eleven thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(22655, 19968, 'nineteen thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(22656, 36357, 'thirty-six thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(22657, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(22658, 16701, 'sixteen thousand seven hundred one');\nINSERT INTO t2 VALUES(22659, 96936, 'ninety-six thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(22660, 96704, 'ninety-six thousand seven hundred four');\nINSERT INTO t2 VALUES(22661, 56132, 'fifty-six thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(22662, 85705, 'eighty-five thousand seven hundred five');\nINSERT INTO t2 VALUES(22663, 44559, 'forty-four thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(22664, 61115, 'sixty-one thousand one hundred fifteen');\nINSERT INTO t2 VALUES(22665, 76535, 'seventy-six thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(22666, 49746, 'forty-nine thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(22667, 81703, 'eighty-one thousand seven hundred three');\nINSERT INTO t2 VALUES(22668, 99890, 'ninety-nine thousand eight hundred ninety');\nINSERT INTO t2 VALUES(22669, 3305, 'three thousand three hundred five');\nINSERT INTO t2 VALUES(22670, 13818, 'thirteen thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(22671, 18036, 'eighteen thousand thirty-six');\nINSERT INTO t2 VALUES(22672, 90569, 'ninety thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(22673, 41553, 'forty-one thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(22674, 23961, 'twenty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(22675, 6125, 'six thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(22676, 15828, 'fifteen thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(22677, 28117, 'twenty-eight thousand one hundred seventeen');\nINSERT INTO t2 VALUES(22678, 36107, 'thirty-six thousand one hundred seven');\nINSERT INTO t2 VALUES(22679, 37818, 'thirty-seven thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(22680, 16647, 'sixteen thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(22681, 47321, 'forty-seven thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(22682, 12129, 'twelve thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(22683, 65834, 'sixty-five thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22684, 82125, 'eighty-two thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(22685, 11331, 'eleven thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(22686, 19893, 'nineteen thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(22687, 71576, 'seventy-one thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(22688, 37467, 'thirty-seven thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(22689, 63848, 'sixty-three thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(22690, 80468, 'eighty thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(22691, 68487, 'sixty-eight thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(22692, 19796, 'nineteen thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(22693, 87706, 'eighty-seven thousand seven hundred six');\nINSERT INTO t2 VALUES(22694, 49653, 'forty-nine thousand six hundred fifty-three');\nINSERT INTO t2 VALUES(22695, 9824, 'nine thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(22696, 53907, 'fifty-three thousand nine hundred seven');\nINSERT INTO t2 VALUES(22697, 89329, 'eighty-nine thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(22698, 8588, 'eight thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(22699, 25857, 'twenty-five thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22700, 79112, 'seventy-nine thousand one hundred twelve');\nINSERT INTO t2 VALUES(22701, 8040, 'eight thousand forty');\nINSERT INTO t2 VALUES(22702, 95478, 'ninety-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(22703, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(22704, 32132, 'thirty-two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(22705, 18797, 'eighteen thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(22706, 28030, 'twenty-eight thousand thirty');\nINSERT INTO t2 VALUES(22707, 1323, 'one thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(22708, 30808, 'thirty thousand eight hundred eight');\nINSERT INTO t2 VALUES(22709, 6079, 'six thousand seventy-nine');\nINSERT INTO t2 VALUES(22710, 46536, 'forty-six thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(22711, 76287, 'seventy-six thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(22712, 57813, 'fifty-seven thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(22713, 62394, 'sixty-two thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(22714, 50309, 'fifty thousand three hundred nine');\nINSERT INTO t2 VALUES(22715, 46511, 'forty-six thousand five hundred eleven');\nINSERT INTO t2 VALUES(22716, 4176, 'four thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(22717, 2166, 'two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(22718, 60138, 'sixty thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(22719, 47204, 'forty-seven thousand two hundred four');\nINSERT INTO t2 VALUES(22720, 5887, 'five thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(22721, 10844, 'ten thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(22722, 91767, 'ninety-one thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(22723, 65745, 'sixty-five thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(22724, 30415, 'thirty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(22725, 76189, 'seventy-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(22726, 92590, 'ninety-two thousand five hundred ninety');\nINSERT INTO t2 VALUES(22727, 12506, 'twelve thousand five hundred six');\nINSERT INTO t2 VALUES(22728, 39380, 'thirty-nine thousand three hundred eighty');\nINSERT INTO t2 VALUES(22729, 25274, 'twenty-five thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(22730, 50617, 'fifty thousand six hundred seventeen');\nINSERT INTO t2 VALUES(22731, 27056, 'twenty-seven thousand fifty-six');\nINSERT INTO t2 VALUES(22732, 61862, 'sixty-one thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(22733, 96762, 'ninety-six thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(22734, 53827, 'fifty-three thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(22735, 61995, 'sixty-one thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(22736, 67195, 'sixty-seven thousand one hundred ninety-five');\nINSERT INTO t2 VALUES(22737, 48008, 'forty-eight thousand eight');\nINSERT INTO t2 VALUES(22738, 89985, 'eighty-nine thousand nine hundred eighty-five');\nINSERT INTO t2 VALUES(22739, 435, 'four hundred thirty-five');\nINSERT INTO t2 VALUES(22740, 19428, 'nineteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(22741, 85496, 'eighty-five thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22742, 34992, 'thirty-four thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(22743, 24690, 'twenty-four thousand six hundred ninety');\nINSERT INTO t2 VALUES(22744, 1355, 'one thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(22745, 29772, 'twenty-nine thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(22746, 39939, 'thirty-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(22747, 98514, 'ninety-eight thousand five hundred fourteen');\nINSERT INTO t2 VALUES(22748, 21934, 'twenty-one thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(22749, 46496, 'forty-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22750, 76462, 'seventy-six thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(22751, 11453, 'eleven thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(22752, 70704, 'seventy thousand seven hundred four');\nINSERT INTO t2 VALUES(22753, 58256, 'fifty-eight thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(22754, 79070, 'seventy-nine thousand seventy');\nINSERT INTO t2 VALUES(22755, 67296, 'sixty-seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(22756, 66720, 'sixty-six thousand seven hundred twenty');\nINSERT INTO t2 VALUES(22757, 16196, 'sixteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(22758, 53301, 'fifty-three thousand three hundred one');\nINSERT INTO t2 VALUES(22759, 76635, 'seventy-six thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(22760, 57885, 'fifty-seven thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(22761, 51936, 'fifty-one thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(22762, 70894, 'seventy thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(22763, 49654, 'forty-nine thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(22764, 15893, 'fifteen thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(22765, 94215, 'ninety-four thousand two hundred fifteen');\nINSERT INTO t2 VALUES(22766, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(22767, 27876, 'twenty-seven thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(22768, 80188, 'eighty thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(22769, 37257, 'thirty-seven thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(22770, 21780, 'twenty-one thousand seven hundred eighty');\nINSERT INTO t2 VALUES(22771, 22190, 'twenty-two thousand one hundred ninety');\nINSERT INTO t2 VALUES(22772, 41992, 'forty-one thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(22773, 76421, 'seventy-six thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(22774, 25668, 'twenty-five thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(22775, 74821, 'seventy-four thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(22776, 77595, 'seventy-seven thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(22777, 12547, 'twelve thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(22778, 15981, 'fifteen thousand nine hundred eighty-one');\nINSERT INTO t2 VALUES(22779, 14650, 'fourteen thousand six hundred fifty');\nINSERT INTO t2 VALUES(22780, 86030, 'eighty-six thousand thirty');\nINSERT INTO t2 VALUES(22781, 8573, 'eight thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(22782, 83953, 'eighty-three thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22783, 54106, 'fifty-four thousand one hundred six');\nINSERT INTO t2 VALUES(22784, 65870, 'sixty-five thousand eight hundred seventy');\nINSERT INTO t2 VALUES(22785, 99636, 'ninety-nine thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(22786, 81594, 'eighty-one thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(22787, 11533, 'eleven thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(22788, 38593, 'thirty-eight thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(22789, 1144, 'one thousand one hundred forty-four');\nINSERT INTO t2 VALUES(22790, 28326, 'twenty-eight thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(22791, 25026, 'twenty-five thousand twenty-six');\nINSERT INTO t2 VALUES(22792, 66295, 'sixty-six thousand two hundred ninety-five');\nINSERT INTO t2 VALUES(22793, 8260, 'eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(22794, 45959, 'forty-five thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(22795, 81761, 'eighty-one thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(22796, 92331, 'ninety-two thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(22797, 972, 'nine hundred seventy-two');\nINSERT INTO t2 VALUES(22798, 16129, 'sixteen thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(22799, 8741, 'eight thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(22800, 72896, 'seventy-two thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(22801, 47476, 'forty-seven thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(22802, 85425, 'eighty-five thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(22803, 83021, 'eighty-three thousand twenty-one');\nINSERT INTO t2 VALUES(22804, 91693, 'ninety-one thousand six hundred ninety-three');\nINSERT INTO t2 VALUES(22805, 59651, 'fifty-nine thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(22806, 49497, 'forty-nine thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(22807, 96922, 'ninety-six thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(22808, 46116, 'forty-six thousand one hundred sixteen');\nINSERT INTO t2 VALUES(22809, 9276, 'nine thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(22810, 91549, 'ninety-one thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(22811, 26804, 'twenty-six thousand eight hundred four');\nINSERT INTO t2 VALUES(22812, 79506, 'seventy-nine thousand five hundred six');\nINSERT INTO t2 VALUES(22813, 54230, 'fifty-four thousand two hundred thirty');\nINSERT INTO t2 VALUES(22814, 69856, 'sixty-nine thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(22815, 72125, 'seventy-two thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(22816, 3303, 'three thousand three hundred three');\nINSERT INTO t2 VALUES(22817, 35150, 'thirty-five thousand one hundred fifty');\nINSERT INTO t2 VALUES(22818, 23818, 'twenty-three thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(22819, 55339, 'fifty-five thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(22820, 38752, 'thirty-eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(22821, 80010, 'eighty thousand ten');\nINSERT INTO t2 VALUES(22822, 26406, 'twenty-six thousand four hundred six');\nINSERT INTO t2 VALUES(22823, 2166, 'two thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(22824, 3860, 'three thousand eight hundred sixty');\nINSERT INTO t2 VALUES(22825, 71503, 'seventy-one thousand five hundred three');\nINSERT INTO t2 VALUES(22826, 89306, 'eighty-nine thousand three hundred six');\nINSERT INTO t2 VALUES(22827, 97412, 'ninety-seven thousand four hundred twelve');\nINSERT INTO t2 VALUES(22828, 36496, 'thirty-six thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(22829, 48977, 'forty-eight thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(22830, 91389, 'ninety-one thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(22831, 73674, 'seventy-three thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(22832, 77394, 'seventy-seven thousand three hundred ninety-four');\nINSERT INTO t2 VALUES(22833, 9022, 'nine thousand twenty-two');\nINSERT INTO t2 VALUES(22834, 99427, 'ninety-nine thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(22835, 13674, 'thirteen thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(22836, 65124, 'sixty-five thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(22837, 85527, 'eighty-five thousand five hundred twenty-seven');\nINSERT INTO t2 VALUES(22838, 69958, 'sixty-nine thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(22839, 45333, 'forty-five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(22840, 91751, 'ninety-one thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(22841, 57515, 'fifty-seven thousand five hundred fifteen');\nINSERT INTO t2 VALUES(22842, 58534, 'fifty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(22843, 24830, 'twenty-four thousand eight hundred thirty');\nINSERT INTO t2 VALUES(22844, 4542, 'four thousand five hundred forty-two');\nINSERT INTO t2 VALUES(22845, 72566, 'seventy-two thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(22846, 66017, 'sixty-six thousand seventeen');\nINSERT INTO t2 VALUES(22847, 55165, 'fifty-five thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(22848, 79596, 'seventy-nine thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(22849, 1769, 'one thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(22850, 27029, 'twenty-seven thousand twenty-nine');\nINSERT INTO t2 VALUES(22851, 16453, 'sixteen thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(22852, 21237, 'twenty-one thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(22853, 30819, 'thirty thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(22854, 52924, 'fifty-two thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(22855, 95885, 'ninety-five thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(22856, 63388, 'sixty-three thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(22857, 93858, 'ninety-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(22858, 80768, 'eighty thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(22859, 40403, 'forty thousand four hundred three');\nINSERT INTO t2 VALUES(22860, 31916, 'thirty-one thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(22861, 39014, 'thirty-nine thousand fourteen');\nINSERT INTO t2 VALUES(22862, 90400, 'ninety thousand four hundred');\nINSERT INTO t2 VALUES(22863, 36661, 'thirty-six thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(22864, 59823, 'fifty-nine thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(22865, 80667, 'eighty thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(22866, 70332, 'seventy thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(22867, 52839, 'fifty-two thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(22868, 70809, 'seventy thousand eight hundred nine');\nINSERT INTO t2 VALUES(22869, 77446, 'seventy-seven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(22870, 43213, 'forty-three thousand two hundred thirteen');\nINSERT INTO t2 VALUES(22871, 54445, 'fifty-four thousand four hundred forty-five');\nINSERT INTO t2 VALUES(22872, 44703, 'forty-four thousand seven hundred three');\nINSERT INTO t2 VALUES(22873, 51092, 'fifty-one thousand ninety-two');\nINSERT INTO t2 VALUES(22874, 30687, 'thirty thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(22875, 4231, 'four thousand two hundred thirty-one');\nINSERT INTO t2 VALUES(22876, 60219, 'sixty thousand two hundred nineteen');\nINSERT INTO t2 VALUES(22877, 44950, 'forty-four thousand nine hundred fifty');\nINSERT INTO t2 VALUES(22878, 74259, 'seventy-four thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(22879, 95412, 'ninety-five thousand four hundred twelve');\nINSERT INTO t2 VALUES(22880, 61892, 'sixty-one thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(22881, 25428, 'twenty-five thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(22882, 97444, 'ninety-seven thousand four hundred forty-four');\nINSERT INTO t2 VALUES(22883, 26834, 'twenty-six thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(22884, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(22885, 50566, 'fifty thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(22886, 69857, 'sixty-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22887, 92753, 'ninety-two thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(22888, 68584, 'sixty-eight thousand five hundred eighty-four');\nINSERT INTO t2 VALUES(22889, 53835, 'fifty-three thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(22890, 37172, 'thirty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(22891, 86737, 'eighty-six thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(22892, 40891, 'forty thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(22893, 7585, 'seven thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(22894, 52351, 'fifty-two thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(22895, 44100, 'forty-four thousand one hundred');\nINSERT INTO t2 VALUES(22896, 69309, 'sixty-nine thousand three hundred nine');\nINSERT INTO t2 VALUES(22897, 12446, 'twelve thousand four hundred forty-six');\nINSERT INTO t2 VALUES(22898, 94491, 'ninety-four thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(22899, 56215, 'fifty-six thousand two hundred fifteen');\nINSERT INTO t2 VALUES(22900, 90637, 'ninety thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(22901, 7853, 'seven thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(22902, 61270, 'sixty-one thousand two hundred seventy');\nINSERT INTO t2 VALUES(22903, 29492, 'twenty-nine thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(22904, 48686, 'forty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(22905, 44041, 'forty-four thousand forty-one');\nINSERT INTO t2 VALUES(22906, 12946, 'twelve thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(22907, 62708, 'sixty-two thousand seven hundred eight');\nINSERT INTO t2 VALUES(22908, 51438, 'fifty-one thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(22909, 17330, 'seventeen thousand three hundred thirty');\nINSERT INTO t2 VALUES(22910, 56953, 'fifty-six thousand nine hundred fifty-three');\nINSERT INTO t2 VALUES(22911, 71972, 'seventy-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(22912, 10397, 'ten thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(22913, 52242, 'fifty-two thousand two hundred forty-two');\nINSERT INTO t2 VALUES(22914, 97039, 'ninety-seven thousand thirty-nine');\nINSERT INTO t2 VALUES(22915, 73760, 'seventy-three thousand seven hundred sixty');\nINSERT INTO t2 VALUES(22916, 86967, 'eighty-six thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(22917, 18344, 'eighteen thousand three hundred forty-four');\nINSERT INTO t2 VALUES(22918, 62047, 'sixty-two thousand forty-seven');\nINSERT INTO t2 VALUES(22919, 31898, 'thirty-one thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(22920, 44725, 'forty-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(22921, 74150, 'seventy-four thousand one hundred fifty');\nINSERT INTO t2 VALUES(22922, 95639, 'ninety-five thousand six hundred thirty-nine');\nINSERT INTO t2 VALUES(22923, 89281, 'eighty-nine thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(22924, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t2 VALUES(22925, 19988, 'nineteen thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(22926, 82130, 'eighty-two thousand one hundred thirty');\nINSERT INTO t2 VALUES(22927, 53395, 'fifty-three thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(22928, 57286, 'fifty-seven thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(22929, 17722, 'seventeen thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(22930, 80735, 'eighty thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(22931, 77289, 'seventy-seven thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(22932, 98249, 'ninety-eight thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(22933, 46373, 'forty-six thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(22934, 90674, 'ninety thousand six hundred seventy-four');\nINSERT INTO t2 VALUES(22935, 81182, 'eighty-one thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(22936, 18431, 'eighteen thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(22937, 28765, 'twenty-eight thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(22938, 2879, 'two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(22939, 33744, 'thirty-three thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(22940, 77644, 'seventy-seven thousand six hundred forty-four');\nINSERT INTO t2 VALUES(22941, 68473, 'sixty-eight thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(22942, 85705, 'eighty-five thousand seven hundred five');\nINSERT INTO t2 VALUES(22943, 27411, 'twenty-seven thousand four hundred eleven');\nINSERT INTO t2 VALUES(22944, 27622, 'twenty-seven thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(22945, 97346, 'ninety-seven thousand three hundred forty-six');\nINSERT INTO t2 VALUES(22946, 99408, 'ninety-nine thousand four hundred eight');\nINSERT INTO t2 VALUES(22947, 9867, 'nine thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(22948, 46306, 'forty-six thousand three hundred six');\nINSERT INTO t2 VALUES(22949, 76594, 'seventy-six thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(22950, 12188, 'twelve thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(22951, 11604, 'eleven thousand six hundred four');\nINSERT INTO t2 VALUES(22952, 15351, 'fifteen thousand three hundred fifty-one');\nINSERT INTO t2 VALUES(22953, 74509, 'seventy-four thousand five hundred nine');\nINSERT INTO t2 VALUES(22954, 63495, 'sixty-three thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(22955, 28987, 'twenty-eight thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(22956, 81720, 'eighty-one thousand seven hundred twenty');\nINSERT INTO t2 VALUES(22957, 8213, 'eight thousand two hundred thirteen');\nINSERT INTO t2 VALUES(22958, 66792, 'sixty-six thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(22959, 88436, 'eighty-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(22960, 75240, 'seventy-five thousand two hundred forty');\nINSERT INTO t2 VALUES(22961, 81797, 'eighty-one thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(22962, 12798, 'twelve thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(22963, 2271, 'two thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(22964, 76117, 'seventy-six thousand one hundred seventeen');\nINSERT INTO t2 VALUES(22965, 22369, 'twenty-two thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(22966, 51683, 'fifty-one thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(22967, 2881, 'two thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(22968, 10453, 'ten thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(22969, 79244, 'seventy-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(22970, 44471, 'forty-four thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(22971, 78990, 'seventy-eight thousand nine hundred ninety');\nINSERT INTO t2 VALUES(22972, 93235, 'ninety-three thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(22973, 41515, 'forty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(22974, 45959, 'forty-five thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(22975, 67278, 'sixty-seven thousand two hundred seventy-eight');\nINSERT INTO t2 VALUES(22976, 8773, 'eight thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(22977, 35032, 'thirty-five thousand thirty-two');\nINSERT INTO t2 VALUES(22978, 41934, 'forty-one thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(22979, 69223, 'sixty-nine thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(22980, 9680, 'nine thousand six hundred eighty');\nINSERT INTO t2 VALUES(22981, 56174, 'fifty-six thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(22982, 63774, 'sixty-three thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(22983, 29600, 'twenty-nine thousand six hundred');\nINSERT INTO t2 VALUES(22984, 9767, 'nine thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(22985, 27676, 'twenty-seven thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(22986, 49857, 'forty-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(22987, 22099, 'twenty-two thousand ninety-nine');\nINSERT INTO t2 VALUES(22988, 45041, 'forty-five thousand forty-one');\nINSERT INTO t2 VALUES(22989, 5922, 'five thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(22990, 42504, 'forty-two thousand five hundred four');\nINSERT INTO t2 VALUES(22991, 64111, 'sixty-four thousand one hundred eleven');\nINSERT INTO t2 VALUES(22992, 90671, 'ninety thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(22993, 96008, 'ninety-six thousand eight');\nINSERT INTO t2 VALUES(22994, 75511, 'seventy-five thousand five hundred eleven');\nINSERT INTO t2 VALUES(22995, 19239, 'nineteen thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(22996, 10052, 'ten thousand fifty-two');\nINSERT INTO t2 VALUES(22997, 5846, 'five thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(22998, 32954, 'thirty-two thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(22999, 31536, 'thirty-one thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(23000, 51687, 'fifty-one thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(23001, 87535, 'eighty-seven thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(23002, 74485, 'seventy-four thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(23003, 10049, 'ten thousand forty-nine');\nINSERT INTO t2 VALUES(23004, 7853, 'seven thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(23005, 14943, 'fourteen thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(23006, 83839, 'eighty-three thousand eight hundred thirty-nine');\nINSERT INTO t2 VALUES(23007, 44199, 'forty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(23008, 85503, 'eighty-five thousand five hundred three');\nINSERT INTO t2 VALUES(23009, 43577, 'forty-three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(23010, 42649, 'forty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(23011, 68429, 'sixty-eight thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(23012, 53685, 'fifty-three thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(23013, 41878, 'forty-one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(23014, 54519, 'fifty-four thousand five hundred nineteen');\nINSERT INTO t2 VALUES(23015, 82833, 'eighty-two thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(23016, 36780, 'thirty-six thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23017, 24165, 'twenty-four thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(23018, 57477, 'fifty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(23019, 51711, 'fifty-one thousand seven hundred eleven');\nINSERT INTO t2 VALUES(23020, 97385, 'ninety-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(23021, 99814, 'ninety-nine thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(23022, 68742, 'sixty-eight thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(23023, 95500, 'ninety-five thousand five hundred');\nINSERT INTO t2 VALUES(23024, 22495, 'twenty-two thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(23025, 44383, 'forty-four thousand three hundred eighty-three');\nINSERT INTO t2 VALUES(23026, 86042, 'eighty-six thousand forty-two');\nINSERT INTO t2 VALUES(23027, 41488, 'forty-one thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(23028, 39763, 'thirty-nine thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(23029, 87210, 'eighty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(23030, 48895, 'forty-eight thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(23031, 22355, 'twenty-two thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(23032, 45702, 'forty-five thousand seven hundred two');\nINSERT INTO t2 VALUES(23033, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(23034, 78428, 'seventy-eight thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23035, 30354, 'thirty thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(23036, 34218, 'thirty-four thousand two hundred eighteen');\nINSERT INTO t2 VALUES(23037, 10700, 'ten thousand seven hundred');\nINSERT INTO t2 VALUES(23038, 9858, 'nine thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23039, 40459, 'forty thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(23040, 50640, 'fifty thousand six hundred forty');\nINSERT INTO t2 VALUES(23041, 15459, 'fifteen thousand four hundred fifty-nine');\nINSERT INTO t2 VALUES(23042, 23395, 'twenty-three thousand three hundred ninety-five');\nINSERT INTO t2 VALUES(23043, 97730, 'ninety-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(23044, 8721, 'eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(23045, 30962, 'thirty thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(23046, 66533, 'sixty-six thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(23047, 46713, 'forty-six thousand seven hundred thirteen');\nINSERT INTO t2 VALUES(23048, 22230, 'twenty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(23049, 5688, 'five thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(23050, 61020, 'sixty-one thousand twenty');\nINSERT INTO t2 VALUES(23051, 59727, 'fifty-nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(23052, 86044, 'eighty-six thousand forty-four');\nINSERT INTO t2 VALUES(23053, 12779, 'twelve thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(23054, 49, 'forty-nine');\nINSERT INTO t2 VALUES(23055, 95573, 'ninety-five thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(23056, 3577, 'three thousand five hundred seventy-seven');\nINSERT INTO t2 VALUES(23057, 61515, 'sixty-one thousand five hundred fifteen');\nINSERT INTO t2 VALUES(23058, 61021, 'sixty-one thousand twenty-one');\nINSERT INTO t2 VALUES(23059, 68684, 'sixty-eight thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(23060, 59819, 'fifty-nine thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(23061, 69086, 'sixty-nine thousand eighty-six');\nINSERT INTO t2 VALUES(23062, 34650, 'thirty-four thousand six hundred fifty');\nINSERT INTO t2 VALUES(23063, 55319, 'fifty-five thousand three hundred nineteen');\nINSERT INTO t2 VALUES(23064, 55718, 'fifty-five thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(23065, 51828, 'fifty-one thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(23066, 61824, 'sixty-one thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(23067, 27957, 'twenty-seven thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(23068, 40053, 'forty thousand fifty-three');\nINSERT INTO t2 VALUES(23069, 64049, 'sixty-four thousand forty-nine');\nINSERT INTO t2 VALUES(23070, 85640, 'eighty-five thousand six hundred forty');\nINSERT INTO t2 VALUES(23071, 20675, 'twenty thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(23072, 12096, 'twelve thousand ninety-six');\nINSERT INTO t2 VALUES(23073, 65541, 'sixty-five thousand five hundred forty-one');\nINSERT INTO t2 VALUES(23074, 68654, 'sixty-eight thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(23075, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t2 VALUES(23076, 67788, 'sixty-seven thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(23077, 41714, 'forty-one thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(23078, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(23079, 92042, 'ninety-two thousand forty-two');\nINSERT INTO t2 VALUES(23080, 72495, 'seventy-two thousand four hundred ninety-five');\nINSERT INTO t2 VALUES(23081, 39616, 'thirty-nine thousand six hundred sixteen');\nINSERT INTO t2 VALUES(23082, 14636, 'fourteen thousand six hundred thirty-six');\nINSERT INTO t2 VALUES(23083, 2885, 'two thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(23084, 29187, 'twenty-nine thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(23085, 27628, 'twenty-seven thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(23086, 63766, 'sixty-three thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(23087, 50074, 'fifty thousand seventy-four');\nINSERT INTO t2 VALUES(23088, 44576, 'forty-four thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(23089, 99995, 'ninety-nine thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(23090, 14771, 'fourteen thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23091, 28008, 'twenty-eight thousand eight');\nINSERT INTO t2 VALUES(23092, 94786, 'ninety-four thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(23093, 35200, 'thirty-five thousand two hundred');\nINSERT INTO t2 VALUES(23094, 283, 'two hundred eighty-three');\nINSERT INTO t2 VALUES(23095, 66428, 'sixty-six thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23096, 60029, 'sixty thousand twenty-nine');\nINSERT INTO t2 VALUES(23097, 34878, 'thirty-four thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(23098, 84825, 'eighty-four thousand eight hundred twenty-five');\nINSERT INTO t2 VALUES(23099, 21888, 'twenty-one thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(23100, 94021, 'ninety-four thousand twenty-one');\nINSERT INTO t2 VALUES(23101, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t2 VALUES(23102, 24113, 'twenty-four thousand one hundred thirteen');\nINSERT INTO t2 VALUES(23103, 3818, 'three thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(23104, 63062, 'sixty-three thousand sixty-two');\nINSERT INTO t2 VALUES(23105, 86277, 'eighty-six thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(23106, 25322, 'twenty-five thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23107, 43668, 'forty-three thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(23108, 3952, 'three thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(23109, 70535, 'seventy thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(23110, 25918, 'twenty-five thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(23111, 27229, 'twenty-seven thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(23112, 48752, 'forty-eight thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(23113, 44881, 'forty-four thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(23114, 64414, 'sixty-four thousand four hundred fourteen');\nINSERT INTO t2 VALUES(23115, 35939, 'thirty-five thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(23116, 23918, 'twenty-three thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(23117, 25125, 'twenty-five thousand one hundred twenty-five');\nINSERT INTO t2 VALUES(23118, 12526, 'twelve thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(23119, 74712, 'seventy-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(23120, 70777, 'seventy thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(23121, 91875, 'ninety-one thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23122, 41314, 'forty-one thousand three hundred fourteen');\nINSERT INTO t2 VALUES(23123, 9547, 'nine thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(23124, 37162, 'thirty-seven thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(23125, 51172, 'fifty-one thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(23126, 7064, 'seven thousand sixty-four');\nINSERT INTO t2 VALUES(23127, 52566, 'fifty-two thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(23128, 39018, 'thirty-nine thousand eighteen');\nINSERT INTO t2 VALUES(23129, 99950, 'ninety-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23130, 73518, 'seventy-three thousand five hundred eighteen');\nINSERT INTO t2 VALUES(23131, 28550, 'twenty-eight thousand five hundred fifty');\nINSERT INTO t2 VALUES(23132, 94915, 'ninety-four thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(23133, 46027, 'forty-six thousand twenty-seven');\nINSERT INTO t2 VALUES(23134, 61076, 'sixty-one thousand seventy-six');\nINSERT INTO t2 VALUES(23135, 70354, 'seventy thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(23136, 70643, 'seventy thousand six hundred forty-three');\nINSERT INTO t2 VALUES(23137, 71184, 'seventy-one thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(23138, 36771, 'thirty-six thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23139, 41954, 'forty-one thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(23140, 49244, 'forty-nine thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23141, 28770, 'twenty-eight thousand seven hundred seventy');\nINSERT INTO t2 VALUES(23142, 83008, 'eighty-three thousand eight');\nINSERT INTO t2 VALUES(23143, 82772, 'eighty-two thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(23144, 3962, 'three thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(23145, 82433, 'eighty-two thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(23146, 64003, 'sixty-four thousand three');\nINSERT INTO t2 VALUES(23147, 1353, 'one thousand three hundred fifty-three');\nINSERT INTO t2 VALUES(23148, 41889, 'forty-one thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(23149, 49364, 'forty-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(23150, 5333, 'five thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(23151, 62073, 'sixty-two thousand seventy-three');\nINSERT INTO t2 VALUES(23152, 79364, 'seventy-nine thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(23153, 6326, 'six thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(23154, 74235, 'seventy-four thousand two hundred thirty-five');\nINSERT INTO t2 VALUES(23155, 14801, 'fourteen thousand eight hundred one');\nINSERT INTO t2 VALUES(23156, 12219, 'twelve thousand two hundred nineteen');\nINSERT INTO t2 VALUES(23157, 91148, 'ninety-one thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23158, 15650, 'fifteen thousand six hundred fifty');\nINSERT INTO t2 VALUES(23159, 62682, 'sixty-two thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(23160, 64143, 'sixty-four thousand one hundred forty-three');\nINSERT INTO t2 VALUES(23161, 60222, 'sixty thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(23162, 62003, 'sixty-two thousand three');\nINSERT INTO t2 VALUES(23163, 7956, 'seven thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(23164, 89732, 'eighty-nine thousand seven hundred thirty-two');\nINSERT INTO t2 VALUES(23165, 29260, 'twenty-nine thousand two hundred sixty');\nINSERT INTO t2 VALUES(23166, 340, 'three hundred forty');\nINSERT INTO t2 VALUES(23167, 20013, 'twenty thousand thirteen');\nINSERT INTO t2 VALUES(23168, 50160, 'fifty thousand one hundred sixty');\nINSERT INTO t2 VALUES(23169, 98632, 'ninety-eight thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(23170, 33961, 'thirty-three thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(23171, 13335, 'thirteen thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(23172, 12894, 'twelve thousand eight hundred ninety-four');\nINSERT INTO t2 VALUES(23173, 58239, 'fifty-eight thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(23174, 70723, 'seventy thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(23175, 99321, 'ninety-nine thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(23176, 90602, 'ninety thousand six hundred two');\nINSERT INTO t2 VALUES(23177, 72498, 'seventy-two thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(23178, 73856, 'seventy-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(23179, 60896, 'sixty thousand eight hundred ninety-six');\nINSERT INTO t2 VALUES(23180, 26178, 'twenty-six thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(23181, 50638, 'fifty thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(23182, 42217, 'forty-two thousand two hundred seventeen');\nINSERT INTO t2 VALUES(23183, 48850, 'forty-eight thousand eight hundred fifty');\nINSERT INTO t2 VALUES(23184, 14551, 'fourteen thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(23185, 70040, 'seventy thousand forty');\nINSERT INTO t2 VALUES(23186, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t2 VALUES(23187, 15926, 'fifteen thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(23188, 93520, 'ninety-three thousand five hundred twenty');\nINSERT INTO t2 VALUES(23189, 75962, 'seventy-five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(23190, 73934, 'seventy-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(23191, 70159, 'seventy thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(23192, 13031, 'thirteen thousand thirty-one');\nINSERT INTO t2 VALUES(23193, 52877, 'fifty-two thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(23194, 80595, 'eighty thousand five hundred ninety-five');\nINSERT INTO t2 VALUES(23195, 84094, 'eighty-four thousand ninety-four');\nINSERT INTO t2 VALUES(23196, 14341, 'fourteen thousand three hundred forty-one');\nINSERT INTO t2 VALUES(23197, 45913, 'forty-five thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(23198, 77661, 'seventy-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(23199, 36192, 'thirty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(23200, 87079, 'eighty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(23201, 55866, 'fifty-five thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(23202, 83091, 'eighty-three thousand ninety-one');\nINSERT INTO t2 VALUES(23203, 60716, 'sixty thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(23204, 53476, 'fifty-three thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(23205, 54866, 'fifty-four thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(23206, 93785, 'ninety-three thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(23207, 12637, 'twelve thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(23208, 65905, 'sixty-five thousand nine hundred five');\nINSERT INTO t2 VALUES(23209, 66465, 'sixty-six thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(23210, 15780, 'fifteen thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23211, 78610, 'seventy-eight thousand six hundred ten');\nINSERT INTO t2 VALUES(23212, 77539, 'seventy-seven thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(23213, 16648, 'sixteen thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(23214, 39501, 'thirty-nine thousand five hundred one');\nINSERT INTO t2 VALUES(23215, 87397, 'eighty-seven thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(23216, 48532, 'forty-eight thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(23217, 25608, 'twenty-five thousand six hundred eight');\nINSERT INTO t2 VALUES(23218, 68758, 'sixty-eight thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(23219, 88549, 'eighty-eight thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(23220, 50415, 'fifty thousand four hundred fifteen');\nINSERT INTO t2 VALUES(23221, 1315, 'one thousand three hundred fifteen');\nINSERT INTO t2 VALUES(23222, 40435, 'forty thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(23223, 93417, 'ninety-three thousand four hundred seventeen');\nINSERT INTO t2 VALUES(23224, 36041, 'thirty-six thousand forty-one');\nINSERT INTO t2 VALUES(23225, 77042, 'seventy-seven thousand forty-two');\nINSERT INTO t2 VALUES(23226, 65596, 'sixty-five thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(23227, 19594, 'nineteen thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(23228, 2365, 'two thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(23229, 10810, 'ten thousand eight hundred ten');\nINSERT INTO t2 VALUES(23230, 1325, 'one thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(23231, 73187, 'seventy-three thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(23232, 24339, 'twenty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(23233, 71648, 'seventy-one thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(23234, 30917, 'thirty thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(23235, 73703, 'seventy-three thousand seven hundred three');\nINSERT INTO t2 VALUES(23236, 18596, 'eighteen thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(23237, 40060, 'forty thousand sixty');\nINSERT INTO t2 VALUES(23238, 23659, 'twenty-three thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(23239, 36972, 'thirty-six thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(23240, 90048, 'ninety thousand forty-eight');\nINSERT INTO t2 VALUES(23241, 43474, 'forty-three thousand four hundred seventy-four');\nINSERT INTO t2 VALUES(23242, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(23243, 50968, 'fifty thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(23244, 25849, 'twenty-five thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(23245, 76173, 'seventy-six thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(23246, 93012, 'ninety-three thousand twelve');\nINSERT INTO t2 VALUES(23247, 56171, 'fifty-six thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(23248, 34374, 'thirty-four thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(23249, 98205, 'ninety-eight thousand two hundred five');\nINSERT INTO t2 VALUES(23250, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t2 VALUES(23251, 17743, 'seventeen thousand seven hundred forty-three');\nINSERT INTO t2 VALUES(23252, 87661, 'eighty-seven thousand six hundred sixty-one');\nINSERT INTO t2 VALUES(23253, 21120, 'twenty-one thousand one hundred twenty');\nINSERT INTO t2 VALUES(23254, 83074, 'eighty-three thousand seventy-four');\nINSERT INTO t2 VALUES(23255, 35249, 'thirty-five thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(23256, 26539, 'twenty-six thousand five hundred thirty-nine');\nINSERT INTO t2 VALUES(23257, 82484, 'eighty-two thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(23258, 49268, 'forty-nine thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(23259, 1011, 'one thousand eleven');\nINSERT INTO t2 VALUES(23260, 84316, 'eighty-four thousand three hundred sixteen');\nINSERT INTO t2 VALUES(23261, 70974, 'seventy thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(23262, 84233, 'eighty-four thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(23263, 10520, 'ten thousand five hundred twenty');\nINSERT INTO t2 VALUES(23264, 87044, 'eighty-seven thousand forty-four');\nINSERT INTO t2 VALUES(23265, 97954, 'ninety-seven thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(23266, 45841, 'forty-five thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(23267, 22141, 'twenty-two thousand one hundred forty-one');\nINSERT INTO t2 VALUES(23268, 14182, 'fourteen thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(23269, 98147, 'ninety-eight thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23270, 36319, 'thirty-six thousand three hundred nineteen');\nINSERT INTO t2 VALUES(23271, 70837, 'seventy thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(23272, 90692, 'ninety thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(23273, 67121, 'sixty-seven thousand one hundred twenty-one');\nINSERT INTO t2 VALUES(23274, 28666, 'twenty-eight thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(23275, 33530, 'thirty-three thousand five hundred thirty');\nINSERT INTO t2 VALUES(23276, 7183, 'seven thousand one hundred eighty-three');\nINSERT INTO t2 VALUES(23277, 5236, 'five thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(23278, 80548, 'eighty thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(23279, 16777, 'sixteen thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(23280, 97967, 'ninety-seven thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(23281, 67165, 'sixty-seven thousand one hundred sixty-five');\nINSERT INTO t2 VALUES(23282, 25256, 'twenty-five thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(23283, 15170, 'fifteen thousand one hundred seventy');\nINSERT INTO t2 VALUES(23284, 9796, 'nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(23285, 76480, 'seventy-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(23286, 3630, 'three thousand six hundred thirty');\nINSERT INTO t2 VALUES(23287, 28011, 'twenty-eight thousand eleven');\nINSERT INTO t2 VALUES(23288, 21575, 'twenty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(23289, 10048, 'ten thousand forty-eight');\nINSERT INTO t2 VALUES(23290, 88933, 'eighty-eight thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(23291, 2812, 'two thousand eight hundred twelve');\nINSERT INTO t2 VALUES(23292, 33735, 'thirty-three thousand seven hundred thirty-five');\nINSERT INTO t2 VALUES(23293, 21127, 'twenty-one thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(23294, 14258, 'fourteen thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(23295, 43699, 'forty-three thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(23296, 32905, 'thirty-two thousand nine hundred five');\nINSERT INTO t2 VALUES(23297, 21878, 'twenty-one thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(23298, 73355, 'seventy-three thousand three hundred fifty-five');\nINSERT INTO t2 VALUES(23299, 29446, 'twenty-nine thousand four hundred forty-six');\nINSERT INTO t2 VALUES(23300, 3401, 'three thousand four hundred one');\nINSERT INTO t2 VALUES(23301, 27017, 'twenty-seven thousand seventeen');\nINSERT INTO t2 VALUES(23302, 52191, 'fifty-two thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(23303, 38679, 'thirty-eight thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(23304, 77794, 'seventy-seven thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(23305, 87916, 'eighty-seven thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(23306, 47688, 'forty-seven thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(23307, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(23308, 4886, 'four thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(23309, 44796, 'forty-four thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(23310, 67938, 'sixty-seven thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(23311, 91025, 'ninety-one thousand twenty-five');\nINSERT INTO t2 VALUES(23312, 72844, 'seventy-two thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(23313, 67287, 'sixty-seven thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(23314, 21271, 'twenty-one thousand two hundred seventy-one');\nINSERT INTO t2 VALUES(23315, 96367, 'ninety-six thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(23316, 23512, 'twenty-three thousand five hundred twelve');\nINSERT INTO t2 VALUES(23317, 90773, 'ninety thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(23318, 69436, 'sixty-nine thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(23319, 58555, 'fifty-eight thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(23320, 14073, 'fourteen thousand seventy-three');\nINSERT INTO t2 VALUES(23321, 58627, 'fifty-eight thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23322, 69549, 'sixty-nine thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(23323, 47929, 'forty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(23324, 89922, 'eighty-nine thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(23325, 29449, 'twenty-nine thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(23326, 37493, 'thirty-seven thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(23327, 74623, 'seventy-four thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(23328, 92064, 'ninety-two thousand sixty-four');\nINSERT INTO t2 VALUES(23329, 44323, 'forty-four thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(23330, 63265, 'sixty-three thousand two hundred sixty-five');\nINSERT INTO t2 VALUES(23331, 69513, 'sixty-nine thousand five hundred thirteen');\nINSERT INTO t2 VALUES(23332, 32218, 'thirty-two thousand two hundred eighteen');\nINSERT INTO t2 VALUES(23333, 95799, 'ninety-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(23334, 63059, 'sixty-three thousand fifty-nine');\nINSERT INTO t2 VALUES(23335, 22578, 'twenty-two thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(23336, 64359, 'sixty-four thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(23337, 85406, 'eighty-five thousand four hundred six');\nINSERT INTO t2 VALUES(23338, 23385, 'twenty-three thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(23339, 17516, 'seventeen thousand five hundred sixteen');\nINSERT INTO t2 VALUES(23340, 63428, 'sixty-three thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23341, 77530, 'seventy-seven thousand five hundred thirty');\nINSERT INTO t2 VALUES(23342, 38638, 'thirty-eight thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(23343, 28771, 'twenty-eight thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23344, 94593, 'ninety-four thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(23345, 49314, 'forty-nine thousand three hundred fourteen');\nINSERT INTO t2 VALUES(23346, 14806, 'fourteen thousand eight hundred six');\nINSERT INTO t2 VALUES(23347, 2977, 'two thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23348, 68209, 'sixty-eight thousand two hundred nine');\nINSERT INTO t2 VALUES(23349, 56244, 'fifty-six thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23350, 40404, 'forty thousand four hundred four');\nINSERT INTO t2 VALUES(23351, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(23352, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(23353, 31710, 'thirty-one thousand seven hundred ten');\nINSERT INTO t2 VALUES(23354, 89808, 'eighty-nine thousand eight hundred eight');\nINSERT INTO t2 VALUES(23355, 55056, 'fifty-five thousand fifty-six');\nINSERT INTO t2 VALUES(23356, 60341, 'sixty thousand three hundred forty-one');\nINSERT INTO t2 VALUES(23357, 69529, 'sixty-nine thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(23358, 49484, 'forty-nine thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(23359, 46290, 'forty-six thousand two hundred ninety');\nINSERT INTO t2 VALUES(23360, 9014, 'nine thousand fourteen');\nINSERT INTO t2 VALUES(23361, 17870, 'seventeen thousand eight hundred seventy');\nINSERT INTO t2 VALUES(23362, 20207, 'twenty thousand two hundred seven');\nINSERT INTO t2 VALUES(23363, 96086, 'ninety-six thousand eighty-six');\nINSERT INTO t2 VALUES(23364, 58840, 'fifty-eight thousand eight hundred forty');\nINSERT INTO t2 VALUES(23365, 73828, 'seventy-three thousand eight hundred twenty-eight');\nINSERT INTO t2 VALUES(23366, 26844, 'twenty-six thousand eight hundred forty-four');\nINSERT INTO t2 VALUES(23367, 17427, 'seventeen thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(23368, 17354, 'seventeen thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(23369, 89537, 'eighty-nine thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(23370, 25912, 'twenty-five thousand nine hundred twelve');\nINSERT INTO t2 VALUES(23371, 66085, 'sixty-six thousand eighty-five');\nINSERT INTO t2 VALUES(23372, 65729, 'sixty-five thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(23373, 6498, 'six thousand four hundred ninety-eight');\nINSERT INTO t2 VALUES(23374, 47987, 'forty-seven thousand nine hundred eighty-seven');\nINSERT INTO t2 VALUES(23375, 35867, 'thirty-five thousand eight hundred sixty-seven');\nINSERT INTO t2 VALUES(23376, 8285, 'eight thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(23377, 9778, 'nine thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(23378, 10338, 'ten thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(23379, 77276, 'seventy-seven thousand two hundred seventy-six');\nINSERT INTO t2 VALUES(23380, 31120, 'thirty-one thousand one hundred twenty');\nINSERT INTO t2 VALUES(23381, 8997, 'eight thousand nine hundred ninety-seven');\nINSERT INTO t2 VALUES(23382, 9251, 'nine thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(23383, 18729, 'eighteen thousand seven hundred twenty-nine');\nINSERT INTO t2 VALUES(23384, 24129, 'twenty-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(23385, 76296, 'seventy-six thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(23386, 59601, 'fifty-nine thousand six hundred one');\nINSERT INTO t2 VALUES(23387, 48361, 'forty-eight thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(23388, 53964, 'fifty-three thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(23389, 89733, 'eighty-nine thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(23390, 90936, 'ninety thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(23391, 52230, 'fifty-two thousand two hundred thirty');\nINSERT INTO t2 VALUES(23392, 30685, 'thirty thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(23393, 90448, 'ninety thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(23394, 95786, 'ninety-five thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(23395, 21699, 'twenty-one thousand six hundred ninety-nine');\nINSERT INTO t2 VALUES(23396, 89012, 'eighty-nine thousand twelve');\nINSERT INTO t2 VALUES(23397, 60818, 'sixty thousand eight hundred eighteen');\nINSERT INTO t2 VALUES(23398, 78439, 'seventy-eight thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(23399, 34945, 'thirty-four thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(23400, 7363, 'seven thousand three hundred sixty-three');\nINSERT INTO t2 VALUES(23401, 60322, 'sixty thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23402, 72677, 'seventy-two thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(23403, 39897, 'thirty-nine thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23404, 21031, 'twenty-one thousand thirty-one');\nINSERT INTO t2 VALUES(23405, 45966, 'forty-five thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(23406, 603, 'six hundred three');\nINSERT INTO t2 VALUES(23407, 4356, 'four thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(23408, 51175, 'fifty-one thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(23409, 16461, 'sixteen thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(23410, 59916, 'fifty-nine thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(23411, 79711, 'seventy-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(23412, 10576, 'ten thousand five hundred seventy-six');\nINSERT INTO t2 VALUES(23413, 23845, 'twenty-three thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(23414, 20890, 'twenty thousand eight hundred ninety');\nINSERT INTO t2 VALUES(23415, 17833, 'seventeen thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(23416, 21473, 'twenty-one thousand four hundred seventy-three');\nINSERT INTO t2 VALUES(23417, 73194, 'seventy-three thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(23418, 16145, 'sixteen thousand one hundred forty-five');\nINSERT INTO t2 VALUES(23419, 99939, 'ninety-nine thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(23420, 68436, 'sixty-eight thousand four hundred thirty-six');\nINSERT INTO t2 VALUES(23421, 53173, 'fifty-three thousand one hundred seventy-three');\nINSERT INTO t2 VALUES(23422, 82340, 'eighty-two thousand three hundred forty');\nINSERT INTO t2 VALUES(23423, 45949, 'forty-five thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(23424, 35528, 'thirty-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(23425, 14954, 'fourteen thousand nine hundred fifty-four');\nINSERT INTO t2 VALUES(23426, 94254, 'ninety-four thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(23427, 94556, 'ninety-four thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23428, 37592, 'thirty-seven thousand five hundred ninety-two');\nINSERT INTO t2 VALUES(23429, 34491, 'thirty-four thousand four hundred ninety-one');\nINSERT INTO t2 VALUES(23430, 70638, 'seventy thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(23431, 60238, 'sixty thousand two hundred thirty-eight');\nINSERT INTO t2 VALUES(23432, 67919, 'sixty-seven thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(23433, 71969, 'seventy-one thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(23434, 23137, 'twenty-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(23435, 31243, 'thirty-one thousand two hundred forty-three');\nINSERT INTO t2 VALUES(23436, 30148, 'thirty thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23437, 44688, 'forty-four thousand six hundred eighty-eight');\nINSERT INTO t2 VALUES(23438, 19428, 'nineteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(23439, 6511, 'six thousand five hundred eleven');\nINSERT INTO t2 VALUES(23440, 17315, 'seventeen thousand three hundred fifteen');\nINSERT INTO t2 VALUES(23441, 43771, 'forty-three thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23442, 89891, 'eighty-nine thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(23443, 66871, 'sixty-six thousand eight hundred seventy-one');\nINSERT INTO t2 VALUES(23444, 97850, 'ninety-seven thousand eight hundred fifty');\nINSERT INTO t2 VALUES(23445, 30494, 'thirty thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(23446, 79671, 'seventy-nine thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(23447, 35547, 'thirty-five thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(23448, 35879, 'thirty-five thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(23449, 19382, 'nineteen thousand three hundred eighty-two');\nINSERT INTO t2 VALUES(23450, 69964, 'sixty-nine thousand nine hundred sixty-four');\nINSERT INTO t2 VALUES(23451, 94777, 'ninety-four thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(23452, 6338, 'six thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(23453, 66622, 'sixty-six thousand six hundred twenty-two');\nINSERT INTO t2 VALUES(23454, 65071, 'sixty-five thousand seventy-one');\nINSERT INTO t2 VALUES(23455, 33206, 'thirty-three thousand two hundred six');\nINSERT INTO t2 VALUES(23456, 38021, 'thirty-eight thousand twenty-one');\nINSERT INTO t2 VALUES(23457, 28627, 'twenty-eight thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23458, 88694, 'eighty-eight thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(23459, 67536, 'sixty-seven thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(23460, 44753, 'forty-four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(23461, 40647, 'forty thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(23462, 34094, 'thirty-four thousand ninety-four');\nINSERT INTO t2 VALUES(23463, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(23464, 20284, 'twenty thousand two hundred eighty-four');\nINSERT INTO t2 VALUES(23465, 62965, 'sixty-two thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(23466, 22488, 'twenty-two thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(23467, 45920, 'forty-five thousand nine hundred twenty');\nINSERT INTO t2 VALUES(23468, 83014, 'eighty-three thousand fourteen');\nINSERT INTO t2 VALUES(23469, 82421, 'eighty-two thousand four hundred twenty-one');\nINSERT INTO t2 VALUES(23470, 27319, 'twenty-seven thousand three hundred nineteen');\nINSERT INTO t2 VALUES(23471, 26644, 'twenty-six thousand six hundred forty-four');\nINSERT INTO t2 VALUES(23472, 28950, 'twenty-eight thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23473, 15142, 'fifteen thousand one hundred forty-two');\nINSERT INTO t2 VALUES(23474, 14758, 'fourteen thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(23475, 68043, 'sixty-eight thousand forty-three');\nINSERT INTO t2 VALUES(23476, 42649, 'forty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(23477, 46511, 'forty-six thousand five hundred eleven');\nINSERT INTO t2 VALUES(23478, 60710, 'sixty thousand seven hundred ten');\nINSERT INTO t2 VALUES(23479, 50800, 'fifty thousand eight hundred');\nINSERT INTO t2 VALUES(23480, 6379, 'six thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(23481, 43034, 'forty-three thousand thirty-four');\nINSERT INTO t2 VALUES(23482, 49416, 'forty-nine thousand four hundred sixteen');\nINSERT INTO t2 VALUES(23483, 99256, 'ninety-nine thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(23484, 28556, 'twenty-eight thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23485, 5809, 'five thousand eight hundred nine');\nINSERT INTO t2 VALUES(23486, 51409, 'fifty-one thousand four hundred nine');\nINSERT INTO t2 VALUES(23487, 840, 'eight hundred forty');\nINSERT INTO t2 VALUES(23488, 13140, 'thirteen thousand one hundred forty');\nINSERT INTO t2 VALUES(23489, 53747, 'fifty-three thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(23490, 72919, 'seventy-two thousand nine hundred nineteen');\nINSERT INTO t2 VALUES(23491, 16609, 'sixteen thousand six hundred nine');\nINSERT INTO t2 VALUES(23492, 80700, 'eighty thousand seven hundred');\nINSERT INTO t2 VALUES(23493, 44492, 'forty-four thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(23494, 93934, 'ninety-three thousand nine hundred thirty-four');\nINSERT INTO t2 VALUES(23495, 80016, 'eighty thousand sixteen');\nINSERT INTO t2 VALUES(23496, 94779, 'ninety-four thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(23497, 29719, 'twenty-nine thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(23498, 11594, 'eleven thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(23499, 15766, 'fifteen thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(23500, 98228, 'ninety-eight thousand two hundred twenty-eight');\nINSERT INTO t2 VALUES(23501, 80538, 'eighty thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(23502, 49852, 'forty-nine thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(23503, 29929, 'twenty-nine thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(23504, 67227, 'sixty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(23505, 77702, 'seventy-seven thousand seven hundred two');\nINSERT INTO t2 VALUES(23506, 11464, 'eleven thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(23507, 18588, 'eighteen thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(23508, 91089, 'ninety-one thousand eighty-nine');\nINSERT INTO t2 VALUES(23509, 43218, 'forty-three thousand two hundred eighteen');\nINSERT INTO t2 VALUES(23510, 67325, 'sixty-seven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(23511, 278, 'two hundred seventy-eight');\nINSERT INTO t2 VALUES(23512, 49032, 'forty-nine thousand thirty-two');\nINSERT INTO t2 VALUES(23513, 44547, 'forty-four thousand five hundred forty-seven');\nINSERT INTO t2 VALUES(23514, 83138, 'eighty-three thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(23515, 12927, 'twelve thousand nine hundred twenty-seven');\nINSERT INTO t2 VALUES(23516, 92786, 'ninety-two thousand seven hundred eighty-six');\nINSERT INTO t2 VALUES(23517, 51758, 'fifty-one thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(23518, 31122, 'thirty-one thousand one hundred twenty-two');\nINSERT INTO t2 VALUES(23519, 73317, 'seventy-three thousand three hundred seventeen');\nINSERT INTO t2 VALUES(23520, 53734, 'fifty-three thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(23521, 66048, 'sixty-six thousand forty-eight');\nINSERT INTO t2 VALUES(23522, 20213, 'twenty thousand two hundred thirteen');\nINSERT INTO t2 VALUES(23523, 52858, 'fifty-two thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23524, 15831, 'fifteen thousand eight hundred thirty-one');\nINSERT INTO t2 VALUES(23525, 53469, 'fifty-three thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(23526, 6111, 'six thousand one hundred eleven');\nINSERT INTO t2 VALUES(23527, 78455, 'seventy-eight thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23528, 3147, 'three thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23529, 17883, 'seventeen thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(23530, 37172, 'thirty-seven thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(23531, 2148, 'two thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23532, 20027, 'twenty thousand twenty-seven');\nINSERT INTO t2 VALUES(23533, 37991, 'thirty-seven thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(23534, 96979, 'ninety-six thousand nine hundred seventy-nine');\nINSERT INTO t2 VALUES(23535, 49088, 'forty-nine thousand eighty-eight');\nINSERT INTO t2 VALUES(23536, 52540, 'fifty-two thousand five hundred forty');\nINSERT INTO t2 VALUES(23537, 73241, 'seventy-three thousand two hundred forty-one');\nINSERT INTO t2 VALUES(23538, 85859, 'eighty-five thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(23539, 42215, 'forty-two thousand two hundred fifteen');\nINSERT INTO t2 VALUES(23540, 45025, 'forty-five thousand twenty-five');\nINSERT INTO t2 VALUES(23541, 10244, 'ten thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23542, 49909, 'forty-nine thousand nine hundred nine');\nINSERT INTO t2 VALUES(23543, 63897, 'sixty-three thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23544, 75501, 'seventy-five thousand five hundred one');\nINSERT INTO t2 VALUES(23545, 33003, 'thirty-three thousand three');\nINSERT INTO t2 VALUES(23546, 6611, 'six thousand six hundred eleven');\nINSERT INTO t2 VALUES(23547, 42644, 'forty-two thousand six hundred forty-four');\nINSERT INTO t2 VALUES(23548, 29415, 'twenty-nine thousand four hundred fifteen');\nINSERT INTO t2 VALUES(23549, 8102, 'eight thousand one hundred two');\nINSERT INTO t2 VALUES(23550, 21815, 'twenty-one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(23551, 83430, 'eighty-three thousand four hundred thirty');\nINSERT INTO t2 VALUES(23552, 8043, 'eight thousand forty-three');\nINSERT INTO t2 VALUES(23553, 36525, 'thirty-six thousand five hundred twenty-five');\nINSERT INTO t2 VALUES(23554, 24614, 'twenty-four thousand six hundred fourteen');\nINSERT INTO t2 VALUES(23555, 34006, 'thirty-four thousand six');\nINSERT INTO t2 VALUES(23556, 63020, 'sixty-three thousand twenty');\nINSERT INTO t2 VALUES(23557, 10745, 'ten thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(23558, 20771, 'twenty thousand seven hundred seventy-one');\nINSERT INTO t2 VALUES(23559, 59083, 'fifty-nine thousand eighty-three');\nINSERT INTO t2 VALUES(23560, 52303, 'fifty-two thousand three hundred three');\nINSERT INTO t2 VALUES(23561, 65518, 'sixty-five thousand five hundred eighteen');\nINSERT INTO t2 VALUES(23562, 78898, 'seventy-eight thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(23563, 74657, 'seventy-four thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(23564, 76094, 'seventy-six thousand ninety-four');\nINSERT INTO t2 VALUES(23565, 18293, 'eighteen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(23566, 36063, 'thirty-six thousand sixty-three');\nINSERT INTO t2 VALUES(23567, 7299, 'seven thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(23568, 3868, 'three thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(23569, 40627, 'forty thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23570, 84909, 'eighty-four thousand nine hundred nine');\nINSERT INTO t2 VALUES(23571, 70715, 'seventy thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(23572, 24432, 'twenty-four thousand four hundred thirty-two');\nINSERT INTO t2 VALUES(23573, 30419, 'thirty thousand four hundred nineteen');\nINSERT INTO t2 VALUES(23574, 42933, 'forty-two thousand nine hundred thirty-three');\nINSERT INTO t2 VALUES(23575, 62358, 'sixty-two thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(23576, 98352, 'ninety-eight thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(23577, 49148, 'forty-nine thousand one hundred forty-eight');\nINSERT INTO t2 VALUES(23578, 49457, 'forty-nine thousand four hundred fifty-seven');\nINSERT INTO t2 VALUES(23579, 77901, 'seventy-seven thousand nine hundred one');\nINSERT INTO t2 VALUES(23580, 24942, 'twenty-four thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(23581, 40659, 'forty thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(23582, 59441, 'fifty-nine thousand four hundred forty-one');\nINSERT INTO t2 VALUES(23583, 36020, 'thirty-six thousand twenty');\nINSERT INTO t2 VALUES(23584, 85865, 'eighty-five thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(23585, 27664, 'twenty-seven thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(23586, 32849, 'thirty-two thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(23587, 19881, 'nineteen thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(23588, 31546, 'thirty-one thousand five hundred forty-six');\nINSERT INTO t2 VALUES(23589, 22977, 'twenty-two thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23590, 89488, 'eighty-nine thousand four hundred eighty-eight');\nINSERT INTO t2 VALUES(23591, 47010, 'forty-seven thousand ten');\nINSERT INTO t2 VALUES(23592, 89848, 'eighty-nine thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(23593, 95780, 'ninety-five thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23594, 33380, 'thirty-three thousand three hundred eighty');\nINSERT INTO t2 VALUES(23595, 91505, 'ninety-one thousand five hundred five');\nINSERT INTO t2 VALUES(23596, 77283, 'seventy-seven thousand two hundred eighty-three');\nINSERT INTO t2 VALUES(23597, 6903, 'six thousand nine hundred three');\nINSERT INTO t2 VALUES(23598, 62239, 'sixty-two thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(23599, 4753, 'four thousand seven hundred fifty-three');\nINSERT INTO t2 VALUES(23600, 24834, 'twenty-four thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(23601, 66446, 'sixty-six thousand four hundred forty-six');\nINSERT INTO t2 VALUES(23602, 82830, 'eighty-two thousand eight hundred thirty');\nINSERT INTO t2 VALUES(23603, 45352, 'forty-five thousand three hundred fifty-two');\nINSERT INTO t2 VALUES(23604, 62285, 'sixty-two thousand two hundred eighty-five');\nINSERT INTO t2 VALUES(23605, 73778, 'seventy-three thousand seven hundred seventy-eight');\nINSERT INTO t2 VALUES(23606, 22763, 'twenty-two thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(23607, 44766, 'forty-four thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(23608, 99597, 'ninety-nine thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(23609, 63864, 'sixty-three thousand eight hundred sixty-four');\nINSERT INTO t2 VALUES(23610, 7637, 'seven thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(23611, 89977, 'eighty-nine thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23612, 57362, 'fifty-seven thousand three hundred sixty-two');\nINSERT INTO t2 VALUES(23613, 68992, 'sixty-eight thousand nine hundred ninety-two');\nINSERT INTO t2 VALUES(23614, 6093, 'six thousand ninety-three');\nINSERT INTO t2 VALUES(23615, 81853, 'eighty-one thousand eight hundred fifty-three');\nINSERT INTO t2 VALUES(23616, 32792, 'thirty-two thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(23617, 77313, 'seventy-seven thousand three hundred thirteen');\nINSERT INTO t2 VALUES(23618, 21819, 'twenty-one thousand eight hundred nineteen');\nINSERT INTO t2 VALUES(23619, 31603, 'thirty-one thousand six hundred three');\nINSERT INTO t2 VALUES(23620, 2469, 'two thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(23621, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(23622, 89796, 'eighty-nine thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(23623, 59227, 'fifty-nine thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(23624, 60582, 'sixty thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(23625, 73042, 'seventy-three thousand forty-two');\nINSERT INTO t2 VALUES(23626, 63668, 'sixty-three thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(23627, 72324, 'seventy-two thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(23628, 55144, 'fifty-five thousand one hundred forty-four');\nINSERT INTO t2 VALUES(23629, 96203, 'ninety-six thousand two hundred three');\nINSERT INTO t2 VALUES(23630, 56852, 'fifty-six thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(23631, 87405, 'eighty-seven thousand four hundred five');\nINSERT INTO t2 VALUES(23632, 88324, 'eighty-eight thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(23633, 24106, 'twenty-four thousand one hundred six');\nINSERT INTO t2 VALUES(23634, 94920, 'ninety-four thousand nine hundred twenty');\nINSERT INTO t2 VALUES(23635, 25677, 'twenty-five thousand six hundred seventy-seven');\nINSERT INTO t2 VALUES(23636, 34123, 'thirty-four thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(23637, 21569, 'twenty-one thousand five hundred sixty-nine');\nINSERT INTO t2 VALUES(23638, 40566, 'forty thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(23639, 36835, 'thirty-six thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(23640, 36804, 'thirty-six thousand eight hundred four');\nINSERT INTO t2 VALUES(23641, 5660, 'five thousand six hundred sixty');\nINSERT INTO t2 VALUES(23642, 75358, 'seventy-five thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(23643, 37675, 'thirty-seven thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(23644, 16032, 'sixteen thousand thirty-two');\nINSERT INTO t2 VALUES(23645, 71169, 'seventy-one thousand one hundred sixty-nine');\nINSERT INTO t2 VALUES(23646, 57750, 'fifty-seven thousand seven hundred fifty');\nINSERT INTO t2 VALUES(23647, 64651, 'sixty-four thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(23648, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t2 VALUES(23649, 17447, 'seventeen thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(23650, 90467, 'ninety thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(23651, 79518, 'seventy-nine thousand five hundred eighteen');\nINSERT INTO t2 VALUES(23652, 46322, 'forty-six thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23653, 32213, 'thirty-two thousand two hundred thirteen');\nINSERT INTO t2 VALUES(23654, 70610, 'seventy thousand six hundred ten');\nINSERT INTO t2 VALUES(23655, 43007, 'forty-three thousand seven');\nINSERT INTO t2 VALUES(23656, 90529, 'ninety thousand five hundred twenty-nine');\nINSERT INTO t2 VALUES(23657, 58455, 'fifty-eight thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23658, 81952, 'eighty-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(23659, 51665, 'fifty-one thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(23660, 59875, 'fifty-nine thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23661, 70100, 'seventy thousand one hundred');\nINSERT INTO t2 VALUES(23662, 95042, 'ninety-five thousand forty-two');\nINSERT INTO t2 VALUES(23663, 3887, 'three thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(23664, 91723, 'ninety-one thousand seven hundred twenty-three');\nINSERT INTO t2 VALUES(23665, 19865, 'nineteen thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(23666, 7573, 'seven thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(23667, 48248, 'forty-eight thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(23668, 37151, 'thirty-seven thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(23669, 42660, 'forty-two thousand six hundred sixty');\nINSERT INTO t2 VALUES(23670, 75322, 'seventy-five thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23671, 32626, 'thirty-two thousand six hundred twenty-six');\nINSERT INTO t2 VALUES(23672, 22580, 'twenty-two thousand five hundred eighty');\nINSERT INTO t2 VALUES(23673, 74270, 'seventy-four thousand two hundred seventy');\nINSERT INTO t2 VALUES(23674, 12635, 'twelve thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(23675, 86073, 'eighty-six thousand seventy-three');\nINSERT INTO t2 VALUES(23676, 42051, 'forty-two thousand fifty-one');\nINSERT INTO t2 VALUES(23677, 52471, 'fifty-two thousand four hundred seventy-one');\nINSERT INTO t2 VALUES(23678, 35151, 'thirty-five thousand one hundred fifty-one');\nINSERT INTO t2 VALUES(23679, 79147, 'seventy-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23680, 32574, 'thirty-two thousand five hundred seventy-four');\nINSERT INTO t2 VALUES(23681, 86365, 'eighty-six thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(23682, 93214, 'ninety-three thousand two hundred fourteen');\nINSERT INTO t2 VALUES(23683, 36900, 'thirty-six thousand nine hundred');\nINSERT INTO t2 VALUES(23684, 35602, 'thirty-five thousand six hundred two');\nINSERT INTO t2 VALUES(23685, 93566, 'ninety-three thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(23686, 44976, 'forty-four thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(23687, 22623, 'twenty-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(23688, 55070, 'fifty-five thousand seventy');\nINSERT INTO t2 VALUES(23689, 33558, 'thirty-three thousand five hundred fifty-eight');\nINSERT INTO t2 VALUES(23690, 32010, 'thirty-two thousand ten');\nINSERT INTO t2 VALUES(23691, 14196, 'fourteen thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(23692, 77627, 'seventy-seven thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(23693, 71600, 'seventy-one thousand six hundred');\nINSERT INTO t2 VALUES(23694, 41196, 'forty-one thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(23695, 789, 'seven hundred eighty-nine');\nINSERT INTO t2 VALUES(23696, 13293, 'thirteen thousand two hundred ninety-three');\nINSERT INTO t2 VALUES(23697, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(23698, 69455, 'sixty-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23699, 34415, 'thirty-four thousand four hundred fifteen');\nINSERT INTO t2 VALUES(23700, 86678, 'eighty-six thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(23701, 48949, 'forty-eight thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(23702, 67793, 'sixty-seven thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(23703, 16517, 'sixteen thousand five hundred seventeen');\nINSERT INTO t2 VALUES(23704, 31942, 'thirty-one thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(23705, 95072, 'ninety-five thousand seventy-two');\nINSERT INTO t2 VALUES(23706, 38961, 'thirty-eight thousand nine hundred sixty-one');\nINSERT INTO t2 VALUES(23707, 18289, 'eighteen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(23708, 93881, 'ninety-three thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(23709, 36679, 'thirty-six thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(23710, 32755, 'thirty-two thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(23711, 75969, 'seventy-five thousand nine hundred sixty-nine');\nINSERT INTO t2 VALUES(23712, 23807, 'twenty-three thousand eight hundred seven');\nINSERT INTO t2 VALUES(23713, 87929, 'eighty-seven thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(23714, 44764, 'forty-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(23715, 54311, 'fifty-four thousand three hundred eleven');\nINSERT INTO t2 VALUES(23716, 95398, 'ninety-five thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23717, 52780, 'fifty-two thousand seven hundred eighty');\nINSERT INTO t2 VALUES(23718, 18123, 'eighteen thousand one hundred twenty-three');\nINSERT INTO t2 VALUES(23719, 88078, 'eighty-eight thousand seventy-eight');\nINSERT INTO t2 VALUES(23720, 23996, 'twenty-three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(23721, 71691, 'seventy-one thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(23722, 63458, 'sixty-three thousand four hundred fifty-eight');\nINSERT INTO t2 VALUES(23723, 65329, 'sixty-five thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(23724, 47236, 'forty-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(23725, 30448, 'thirty thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(23726, 68705, 'sixty-eight thousand seven hundred five');\nINSERT INTO t2 VALUES(23727, 98390, 'ninety-eight thousand three hundred ninety');\nINSERT INTO t2 VALUES(23728, 66897, 'sixty-six thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23729, 31564, 'thirty-one thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(23730, 1852, 'one thousand eight hundred fifty-two');\nINSERT INTO t2 VALUES(23731, 42690, 'forty-two thousand six hundred ninety');\nINSERT INTO t2 VALUES(23732, 73950, 'seventy-three thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23733, 34879, 'thirty-four thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(23734, 3343, 'three thousand three hundred forty-three');\nINSERT INTO t2 VALUES(23735, 11376, 'eleven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(23736, 16759, 'sixteen thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(23737, 81244, 'eighty-one thousand two hundred forty-four');\nINSERT INTO t2 VALUES(23738, 99543, 'ninety-nine thousand five hundred forty-three');\nINSERT INTO t2 VALUES(23739, 61186, 'sixty-one thousand one hundred eighty-six');\nINSERT INTO t2 VALUES(23740, 82312, 'eighty-two thousand three hundred twelve');\nINSERT INTO t2 VALUES(23741, 83516, 'eighty-three thousand five hundred sixteen');\nINSERT INTO t2 VALUES(23742, 57423, 'fifty-seven thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(23743, 58512, 'fifty-eight thousand five hundred twelve');\nINSERT INTO t2 VALUES(23744, 6095, 'six thousand ninety-five');\nINSERT INTO t2 VALUES(23745, 40789, 'forty thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(23746, 33542, 'thirty-three thousand five hundred forty-two');\nINSERT INTO t2 VALUES(23747, 34692, 'thirty-four thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(23748, 14631, 'fourteen thousand six hundred thirty-one');\nINSERT INTO t2 VALUES(23749, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(23750, 37212, 'thirty-seven thousand two hundred twelve');\nINSERT INTO t2 VALUES(23751, 95251, 'ninety-five thousand two hundred fifty-one');\nINSERT INTO t2 VALUES(23752, 97223, 'ninety-seven thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(23753, 53083, 'fifty-three thousand eighty-three');\nINSERT INTO t2 VALUES(23754, 56974, 'fifty-six thousand nine hundred seventy-four');\nINSERT INTO t2 VALUES(23755, 15773, 'fifteen thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(23756, 22892, 'twenty-two thousand eight hundred ninety-two');\nINSERT INTO t2 VALUES(23757, 29061, 'twenty-nine thousand sixty-one');\nINSERT INTO t2 VALUES(23758, 62149, 'sixty-two thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(23759, 45768, 'forty-five thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(23760, 75691, 'seventy-five thousand six hundred ninety-one');\nINSERT INTO t2 VALUES(23761, 72773, 'seventy-two thousand seven hundred seventy-three');\nINSERT INTO t2 VALUES(23762, 82435, 'eighty-two thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(23763, 14322, 'fourteen thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23764, 62835, 'sixty-two thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(23765, 12427, 'twelve thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(23766, 42239, 'forty-two thousand two hundred thirty-nine');\nINSERT INTO t2 VALUES(23767, 6850, 'six thousand eight hundred fifty');\nINSERT INTO t2 VALUES(23768, 23542, 'twenty-three thousand five hundred forty-two');\nINSERT INTO t2 VALUES(23769, 45862, 'forty-five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(23770, 61367, 'sixty-one thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(23771, 71147, 'seventy-one thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(23772, 69515, 'sixty-nine thousand five hundred fifteen');\nINSERT INTO t2 VALUES(23773, 80632, 'eighty thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(23774, 65315, 'sixty-five thousand three hundred fifteen');\nINSERT INTO t2 VALUES(23775, 52435, 'fifty-two thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(23776, 88682, 'eighty-eight thousand six hundred eighty-two');\nINSERT INTO t2 VALUES(23777, 82398, 'eighty-two thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23778, 47977, 'forty-seven thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(23779, 50958, 'fifty thousand nine hundred fifty-eight');\nINSERT INTO t2 VALUES(23780, 67910, 'sixty-seven thousand nine hundred ten');\nINSERT INTO t2 VALUES(23781, 39956, 'thirty-nine thousand nine hundred fifty-six');\nINSERT INTO t2 VALUES(23782, 38722, 'thirty-eight thousand seven hundred twenty-two');\nINSERT INTO t2 VALUES(23783, 41373, 'forty-one thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(23784, 49216, 'forty-nine thousand two hundred sixteen');\nINSERT INTO t2 VALUES(23785, 85948, 'eighty-five thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(23786, 64712, 'sixty-four thousand seven hundred twelve');\nINSERT INTO t2 VALUES(23787, 23108, 'twenty-three thousand one hundred eight');\nINSERT INTO t2 VALUES(23788, 79115, 'seventy-nine thousand one hundred fifteen');\nINSERT INTO t2 VALUES(23789, 88965, 'eighty-eight thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(23790, 80358, 'eighty thousand three hundred fifty-eight');\nINSERT INTO t2 VALUES(23791, 41171, 'forty-one thousand one hundred seventy-one');\nINSERT INTO t2 VALUES(23792, 47724, 'forty-seven thousand seven hundred twenty-four');\nINSERT INTO t2 VALUES(23793, 93046, 'ninety-three thousand forty-six');\nINSERT INTO t2 VALUES(23794, 19086, 'nineteen thousand eighty-six');\nINSERT INTO t2 VALUES(23795, 50397, 'fifty thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(23796, 67236, 'sixty-seven thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(23797, 65701, 'sixty-five thousand seven hundred one');\nINSERT INTO t2 VALUES(23798, 26642, 'twenty-six thousand six hundred forty-two');\nINSERT INTO t2 VALUES(23799, 93456, 'ninety-three thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(23800, 49822, 'forty-nine thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(23801, 5731, 'five thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(23802, 88205, 'eighty-eight thousand two hundred five');\nINSERT INTO t2 VALUES(23803, 74105, 'seventy-four thousand one hundred five');\nINSERT INTO t2 VALUES(23804, 29950, 'twenty-nine thousand nine hundred fifty');\nINSERT INTO t2 VALUES(23805, 76624, 'seventy-six thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(23806, 41277, 'forty-one thousand two hundred seventy-seven');\nINSERT INTO t2 VALUES(23807, 48675, 'forty-eight thousand six hundred seventy-five');\nINSERT INTO t2 VALUES(23808, 27434, 'twenty-seven thousand four hundred thirty-four');\nINSERT INTO t2 VALUES(23809, 76153, 'seventy-six thousand one hundred fifty-three');\nINSERT INTO t2 VALUES(23810, 55201, 'fifty-five thousand two hundred one');\nINSERT INTO t2 VALUES(23811, 89808, 'eighty-nine thousand eight hundred eight');\nINSERT INTO t2 VALUES(23812, 24751, 'twenty-four thousand seven hundred fifty-one');\nINSERT INTO t2 VALUES(23813, 44322, 'forty-four thousand three hundred twenty-two');\nINSERT INTO t2 VALUES(23814, 47086, 'forty-seven thousand eighty-six');\nINSERT INTO t2 VALUES(23815, 9080, 'nine thousand eighty');\nINSERT INTO t2 VALUES(23816, 33135, 'thirty-three thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(23817, 37551, 'thirty-seven thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(23818, 99455, 'ninety-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(23819, 97054, 'ninety-seven thousand fifty-four');\nINSERT INTO t2 VALUES(23820, 10423, 'ten thousand four hundred twenty-three');\nINSERT INTO t2 VALUES(23821, 77115, 'seventy-seven thousand one hundred fifteen');\nINSERT INTO t2 VALUES(23822, 18406, 'eighteen thousand four hundred six');\nINSERT INTO t2 VALUES(23823, 46891, 'forty-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(23824, 37070, 'thirty-seven thousand seventy');\nINSERT INTO t2 VALUES(23825, 77815, 'seventy-seven thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(23826, 37058, 'thirty-seven thousand fifty-eight');\nINSERT INTO t2 VALUES(23827, 73536, 'seventy-three thousand five hundred thirty-six');\nINSERT INTO t2 VALUES(23828, 55398, 'fifty-five thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23829, 55589, 'fifty-five thousand five hundred eighty-nine');\nINSERT INTO t2 VALUES(23830, 44875, 'forty-four thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23831, 70243, 'seventy thousand two hundred forty-three');\nINSERT INTO t2 VALUES(23832, 10259, 'ten thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(23833, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(23834, 90768, 'ninety thousand seven hundred sixty-eight');\nINSERT INTO t2 VALUES(23835, 79845, 'seventy-nine thousand eight hundred forty-five');\nINSERT INTO t2 VALUES(23836, 20397, 'twenty thousand three hundred ninety-seven');\nINSERT INTO t2 VALUES(23837, 85843, 'eighty-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(23838, 68367, 'sixty-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(23839, 73404, 'seventy-three thousand four hundred four');\nINSERT INTO t2 VALUES(23840, 77669, 'seventy-seven thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(23841, 74037, 'seventy-four thousand thirty-seven');\nINSERT INTO t2 VALUES(23842, 95613, 'ninety-five thousand six hundred thirteen');\nINSERT INTO t2 VALUES(23843, 60628, 'sixty thousand six hundred twenty-eight');\nINSERT INTO t2 VALUES(23844, 89118, 'eighty-nine thousand one hundred eighteen');\nINSERT INTO t2 VALUES(23845, 12213, 'twelve thousand two hundred thirteen');\nINSERT INTO t2 VALUES(23846, 54328, 'fifty-four thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(23847, 8805, 'eight thousand eight hundred five');\nINSERT INTO t2 VALUES(23848, 31462, 'thirty-one thousand four hundred sixty-two');\nINSERT INTO t2 VALUES(23849, 22472, 'twenty-two thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(23850, 11237, 'eleven thousand two hundred thirty-seven');\nINSERT INTO t2 VALUES(23851, 77377, 'seventy-seven thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(23852, 97709, 'ninety-seven thousand seven hundred nine');\nINSERT INTO t2 VALUES(23853, 98556, 'ninety-eight thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23854, 37873, 'thirty-seven thousand eight hundred seventy-three');\nINSERT INTO t2 VALUES(23855, 79324, 'seventy-nine thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(23856, 36012, 'thirty-six thousand twelve');\nINSERT INTO t2 VALUES(23857, 30384, 'thirty thousand three hundred eighty-four');\nINSERT INTO t2 VALUES(23858, 43741, 'forty-three thousand seven hundred forty-one');\nINSERT INTO t2 VALUES(23859, 71836, 'seventy-one thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(23860, 93253, 'ninety-three thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(23861, 38824, 'thirty-eight thousand eight hundred twenty-four');\nINSERT INTO t2 VALUES(23862, 4537, 'four thousand five hundred thirty-seven');\nINSERT INTO t2 VALUES(23863, 85654, 'eighty-five thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(23864, 89774, 'eighty-nine thousand seven hundred seventy-four');\nINSERT INTO t2 VALUES(23865, 47705, 'forty-seven thousand seven hundred five');\nINSERT INTO t2 VALUES(23866, 34959, 'thirty-four thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(23867, 53620, 'fifty-three thousand six hundred twenty');\nINSERT INTO t2 VALUES(23868, 32001, 'thirty-two thousand one');\nINSERT INTO t2 VALUES(23869, 84323, 'eighty-four thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(23870, 61540, 'sixty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(23871, 45254, 'forty-five thousand two hundred fifty-four');\nINSERT INTO t2 VALUES(23872, 85752, 'eighty-five thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(23873, 7583, 'seven thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(23874, 8400, 'eight thousand four hundred');\nINSERT INTO t2 VALUES(23875, 2441, 'two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(23876, 71972, 'seventy-one thousand nine hundred seventy-two');\nINSERT INTO t2 VALUES(23877, 74633, 'seventy-four thousand six hundred thirty-three');\nINSERT INTO t2 VALUES(23878, 78982, 'seventy-eight thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(23879, 62875, 'sixty-two thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(23880, 69705, 'sixty-nine thousand seven hundred five');\nINSERT INTO t2 VALUES(23881, 81730, 'eighty-one thousand seven hundred thirty');\nINSERT INTO t2 VALUES(23882, 78643, 'seventy-eight thousand six hundred forty-three');\nINSERT INTO t2 VALUES(23883, 4368, 'four thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(23884, 62441, 'sixty-two thousand four hundred forty-one');\nINSERT INTO t2 VALUES(23885, 93748, 'ninety-three thousand seven hundred forty-eight');\nINSERT INTO t2 VALUES(23886, 8313, 'eight thousand three hundred thirteen');\nINSERT INTO t2 VALUES(23887, 16240, 'sixteen thousand two hundred forty');\nINSERT INTO t2 VALUES(23888, 33098, 'thirty-three thousand ninety-eight');\nINSERT INTO t2 VALUES(23889, 44936, 'forty-four thousand nine hundred thirty-six');\nINSERT INTO t2 VALUES(23890, 99663, 'ninety-nine thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(23891, 18012, 'eighteen thousand twelve');\nINSERT INTO t2 VALUES(23892, 2126, 'two thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(23893, 34137, 'thirty-four thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(23894, 47858, 'forty-seven thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23895, 43400, 'forty-three thousand four hundred');\nINSERT INTO t2 VALUES(23896, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(23897, 11424, 'eleven thousand four hundred twenty-four');\nINSERT INTO t2 VALUES(23898, 32501, 'thirty-two thousand five hundred one');\nINSERT INTO t2 VALUES(23899, 15068, 'fifteen thousand sixty-eight');\nINSERT INTO t2 VALUES(23900, 43538, 'forty-three thousand five hundred thirty-eight');\nINSERT INTO t2 VALUES(23901, 75215, 'seventy-five thousand two hundred fifteen');\nINSERT INTO t2 VALUES(23902, 99920, 'ninety-nine thousand nine hundred twenty');\nINSERT INTO t2 VALUES(23903, 33715, 'thirty-three thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(23904, 71047, 'seventy-one thousand forty-seven');\nINSERT INTO t2 VALUES(23905, 54671, 'fifty-four thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(23906, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t2 VALUES(23907, 51155, 'fifty-one thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(23908, 28290, 'twenty-eight thousand two hundred ninety');\nINSERT INTO t2 VALUES(23909, 3813, 'three thousand eight hundred thirteen');\nINSERT INTO t2 VALUES(23910, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(23911, 13750, 'thirteen thousand seven hundred fifty');\nINSERT INTO t2 VALUES(23912, 78402, 'seventy-eight thousand four hundred two');\nINSERT INTO t2 VALUES(23913, 18915, 'eighteen thousand nine hundred fifteen');\nINSERT INTO t2 VALUES(23914, 74564, 'seventy-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(23915, 1068, 'one thousand sixty-eight');\nINSERT INTO t2 VALUES(23916, 14806, 'fourteen thousand eight hundred six');\nINSERT INTO t2 VALUES(23917, 39258, 'thirty-nine thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(23918, 13523, 'thirteen thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(23919, 9274, 'nine thousand two hundred seventy-four');\nINSERT INTO t2 VALUES(23920, 47402, 'forty-seven thousand four hundred two');\nINSERT INTO t2 VALUES(23921, 29944, 'twenty-nine thousand nine hundred forty-four');\nINSERT INTO t2 VALUES(23922, 13412, 'thirteen thousand four hundred twelve');\nINSERT INTO t2 VALUES(23923, 15767, 'fifteen thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(23924, 15289, 'fifteen thousand two hundred eighty-nine');\nINSERT INTO t2 VALUES(23925, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(23926, 65665, 'sixty-five thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(23927, 84502, 'eighty-four thousand five hundred two');\nINSERT INTO t2 VALUES(23928, 30790, 'thirty thousand seven hundred ninety');\nINSERT INTO t2 VALUES(23929, 13593, 'thirteen thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(23930, 55911, 'fifty-five thousand nine hundred eleven');\nINSERT INTO t2 VALUES(23931, 73745, 'seventy-three thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(23932, 71056, 'seventy-one thousand fifty-six');\nINSERT INTO t2 VALUES(23933, 89113, 'eighty-nine thousand one hundred thirteen');\nINSERT INTO t2 VALUES(23934, 34897, 'thirty-four thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(23935, 47143, 'forty-seven thousand one hundred forty-three');\nINSERT INTO t2 VALUES(23936, 19646, 'nineteen thousand six hundred forty-six');\nINSERT INTO t2 VALUES(23937, 86543, 'eighty-six thousand five hundred forty-three');\nINSERT INTO t2 VALUES(23938, 98090, 'ninety-eight thousand ninety');\nINSERT INTO t2 VALUES(23939, 10449, 'ten thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(23940, 57180, 'fifty-seven thousand one hundred eighty');\nINSERT INTO t2 VALUES(23941, 71321, 'seventy-one thousand three hundred twenty-one');\nINSERT INTO t2 VALUES(23942, 62916, 'sixty-two thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(23943, 40159, 'forty thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(23944, 50990, 'fifty thousand nine hundred ninety');\nINSERT INTO t2 VALUES(23945, 87906, 'eighty-seven thousand nine hundred six');\nINSERT INTO t2 VALUES(23946, 8150, 'eight thousand one hundred fifty');\nINSERT INTO t2 VALUES(23947, 96339, 'ninety-six thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(23948, 41842, 'forty-one thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(23949, 18126, 'eighteen thousand one hundred twenty-six');\nINSERT INTO t2 VALUES(23950, 63175, 'sixty-three thousand one hundred seventy-five');\nINSERT INTO t2 VALUES(23951, 30323, 'thirty thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(23952, 84341, 'eighty-four thousand three hundred forty-one');\nINSERT INTO t2 VALUES(23953, 781, 'seven hundred eighty-one');\nINSERT INTO t2 VALUES(23954, 99163, 'ninety-nine thousand one hundred sixty-three');\nINSERT INTO t2 VALUES(23955, 8747, 'eight thousand seven hundred forty-seven');\nINSERT INTO t2 VALUES(23956, 7136, 'seven thousand one hundred thirty-six');\nINSERT INTO t2 VALUES(23957, 42556, 'forty-two thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(23958, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t2 VALUES(23959, 83886, 'eighty-three thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(23960, 82803, 'eighty-two thousand eight hundred three');\nINSERT INTO t2 VALUES(23961, 95233, 'ninety-five thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(23962, 39371, 'thirty-nine thousand three hundred seventy-one');\nINSERT INTO t2 VALUES(23963, 11452, 'eleven thousand four hundred fifty-two');\nINSERT INTO t2 VALUES(23964, 63603, 'sixty-three thousand six hundred three');\nINSERT INTO t2 VALUES(23965, 19755, 'nineteen thousand seven hundred fifty-five');\nINSERT INTO t2 VALUES(23966, 9145, 'nine thousand one hundred forty-five');\nINSERT INTO t2 VALUES(23967, 41599, 'forty-one thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(23968, 97, 'ninety-seven');\nINSERT INTO t2 VALUES(23969, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t2 VALUES(23970, 27101, 'twenty-seven thousand one hundred one');\nINSERT INTO t2 VALUES(23971, 16528, 'sixteen thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(23972, 25107, 'twenty-five thousand one hundred seven');\nINSERT INTO t2 VALUES(23973, 17038, 'seventeen thousand thirty-eight');\nINSERT INTO t2 VALUES(23974, 27807, 'twenty-seven thousand eight hundred seven');\nINSERT INTO t2 VALUES(23975, 10454, 'ten thousand four hundred fifty-four');\nINSERT INTO t2 VALUES(23976, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(23977, 10772, 'ten thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(23978, 4846, 'four thousand eight hundred forty-six');\nINSERT INTO t2 VALUES(23979, 64427, 'sixty-four thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(23980, 6697, 'six thousand six hundred ninety-seven');\nINSERT INTO t2 VALUES(23981, 18765, 'eighteen thousand seven hundred sixty-five');\nINSERT INTO t2 VALUES(23982, 61411, 'sixty-one thousand four hundred eleven');\nINSERT INTO t2 VALUES(23983, 85951, 'eighty-five thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(23984, 14781, 'fourteen thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(23985, 85989, 'eighty-five thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(23986, 81858, 'eighty-one thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(23987, 47016, 'forty-seven thousand sixteen');\nINSERT INTO t2 VALUES(23988, 24500, 'twenty-four thousand five hundred');\nINSERT INTO t2 VALUES(23989, 12325, 'twelve thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(23990, 44041, 'forty-four thousand forty-one');\nINSERT INTO t2 VALUES(23991, 91952, 'ninety-one thousand nine hundred fifty-two');\nINSERT INTO t2 VALUES(23992, 56585, 'fifty-six thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(23993, 25156, 'twenty-five thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(23994, 77625, 'seventy-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(23995, 41727, 'forty-one thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(23996, 92857, 'ninety-two thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(23997, 31540, 'thirty-one thousand five hundred forty');\nINSERT INTO t2 VALUES(23998, 40398, 'forty thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(23999, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t2 VALUES(24000, 49668, 'forty-nine thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(24001, 99196, 'ninety-nine thousand one hundred ninety-six');\nINSERT INTO t2 VALUES(24002, 58453, 'fifty-eight thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(24003, 31182, 'thirty-one thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(24004, 84959, 'eighty-four thousand nine hundred fifty-nine');\nINSERT INTO t2 VALUES(24005, 22412, 'twenty-two thousand four hundred twelve');\nINSERT INTO t2 VALUES(24006, 66721, 'sixty-six thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(24007, 88726, 'eighty-eight thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24008, 17102, 'seventeen thousand one hundred two');\nINSERT INTO t2 VALUES(24009, 96223, 'ninety-six thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(24010, 41725, 'forty-one thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(24011, 62632, 'sixty-two thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(24012, 98008, 'ninety-eight thousand eight');\nINSERT INTO t2 VALUES(24013, 54966, 'fifty-four thousand nine hundred sixty-six');\nINSERT INTO t2 VALUES(24014, 56803, 'fifty-six thousand eight hundred three');\nINSERT INTO t2 VALUES(24015, 84704, 'eighty-four thousand seven hundred four');\nINSERT INTO t2 VALUES(24016, 54093, 'fifty-four thousand ninety-three');\nINSERT INTO t2 VALUES(24017, 67014, 'sixty-seven thousand fourteen');\nINSERT INTO t2 VALUES(24018, 10579, 'ten thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(24019, 1736, 'one thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24020, 66754, 'sixty-six thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(24021, 30320, 'thirty thousand three hundred twenty');\nINSERT INTO t2 VALUES(24022, 42044, 'forty-two thousand forty-four');\nINSERT INTO t2 VALUES(24023, 40118, 'forty thousand one hundred eighteen');\nINSERT INTO t2 VALUES(24024, 52339, 'fifty-two thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24025, 92978, 'ninety-two thousand nine hundred seventy-eight');\nINSERT INTO t2 VALUES(24026, 56799, 'fifty-six thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(24027, 23142, 'twenty-three thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24028, 75365, 'seventy-five thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(24029, 95497, 'ninety-five thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(24030, 72464, 'seventy-two thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(24031, 80634, 'eighty thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(24032, 68600, 'sixty-eight thousand six hundred');\nINSERT INTO t2 VALUES(24033, 3141, 'three thousand one hundred forty-one');\nINSERT INTO t2 VALUES(24034, 1116, 'one thousand one hundred sixteen');\nINSERT INTO t2 VALUES(24035, 76879, 'seventy-six thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(24036, 49199, 'forty-nine thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(24037, 86649, 'eighty-six thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(24038, 67605, 'sixty-seven thousand six hundred five');\nINSERT INTO t2 VALUES(24039, 26213, 'twenty-six thousand two hundred thirteen');\nINSERT INTO t2 VALUES(24040, 28929, 'twenty-eight thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(24041, 28763, 'twenty-eight thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(24042, 56313, 'fifty-six thousand three hundred thirteen');\nINSERT INTO t2 VALUES(24043, 20074, 'twenty thousand seventy-four');\nINSERT INTO t2 VALUES(24044, 95091, 'ninety-five thousand ninety-one');\nINSERT INTO t2 VALUES(24045, 76766, 'seventy-six thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(24046, 98367, 'ninety-eight thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(24047, 95804, 'ninety-five thousand eight hundred four');\nINSERT INTO t2 VALUES(24048, 11446, 'eleven thousand four hundred forty-six');\nINSERT INTO t2 VALUES(24049, 57905, 'fifty-seven thousand nine hundred five');\nINSERT INTO t2 VALUES(24050, 76037, 'seventy-six thousand thirty-seven');\nINSERT INTO t2 VALUES(24051, 64054, 'sixty-four thousand fifty-four');\nINSERT INTO t2 VALUES(24052, 20583, 'twenty thousand five hundred eighty-three');\nINSERT INTO t2 VALUES(24053, 30335, 'thirty thousand three hundred thirty-five');\nINSERT INTO t2 VALUES(24054, 60913, 'sixty thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(24055, 42269, 'forty-two thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(24056, 10312, 'ten thousand three hundred twelve');\nINSERT INTO t2 VALUES(24057, 61075, 'sixty-one thousand seventy-five');\nINSERT INTO t2 VALUES(24058, 14602, 'fourteen thousand six hundred two');\nINSERT INTO t2 VALUES(24059, 18859, 'eighteen thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(24060, 98156, 'ninety-eight thousand one hundred fifty-six');\nINSERT INTO t2 VALUES(24061, 41339, 'forty-one thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24062, 46192, 'forty-six thousand one hundred ninety-two');\nINSERT INTO t2 VALUES(24063, 26327, 'twenty-six thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(24064, 63472, 'sixty-three thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(24065, 97835, 'ninety-seven thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(24066, 19134, 'nineteen thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(24067, 54564, 'fifty-four thousand five hundred sixty-four');\nINSERT INTO t2 VALUES(24068, 46890, 'forty-six thousand eight hundred ninety');\nINSERT INTO t2 VALUES(24069, 7486, 'seven thousand four hundred eighty-six');\nINSERT INTO t2 VALUES(24070, 61885, 'sixty-one thousand eight hundred eighty-five');\nINSERT INTO t2 VALUES(24071, 67275, 'sixty-seven thousand two hundred seventy-five');\nINSERT INTO t2 VALUES(24072, 17977, 'seventeen thousand nine hundred seventy-seven');\nINSERT INTO t2 VALUES(24073, 44689, 'forty-four thousand six hundred eighty-nine');\nINSERT INTO t2 VALUES(24074, 52623, 'fifty-two thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(24075, 45737, 'forty-five thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(24076, 15573, 'fifteen thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(24077, 97635, 'ninety-seven thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(24078, 23614, 'twenty-three thousand six hundred fourteen');\nINSERT INTO t2 VALUES(24079, 45067, 'forty-five thousand sixty-seven');\nINSERT INTO t2 VALUES(24080, 67746, 'sixty-seven thousand seven hundred forty-six');\nINSERT INTO t2 VALUES(24081, 95903, 'ninety-five thousand nine hundred three');\nINSERT INTO t2 VALUES(24082, 54242, 'fifty-four thousand two hundred forty-two');\nINSERT INTO t2 VALUES(24083, 79345, 'seventy-nine thousand three hundred forty-five');\nINSERT INTO t2 VALUES(24084, 12413, 'twelve thousand four hundred thirteen');\nINSERT INTO t2 VALUES(24085, 21764, 'twenty-one thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24086, 11980, 'eleven thousand nine hundred eighty');\nINSERT INTO t2 VALUES(24087, 78024, 'seventy-eight thousand twenty-four');\nINSERT INTO t2 VALUES(24088, 65304, 'sixty-five thousand three hundred four');\nINSERT INTO t2 VALUES(24089, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(24090, 67433, 'sixty-seven thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(24091, 13401, 'thirteen thousand four hundred one');\nINSERT INTO t2 VALUES(24092, 5405, 'five thousand four hundred five');\nINSERT INTO t2 VALUES(24093, 63001, 'sixty-three thousand one');\nINSERT INTO t2 VALUES(24094, 4887, 'four thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24095, 2516, 'two thousand five hundred sixteen');\nINSERT INTO t2 VALUES(24096, 87710, 'eighty-seven thousand seven hundred ten');\nINSERT INTO t2 VALUES(24097, 58108, 'fifty-eight thousand one hundred eight');\nINSERT INTO t2 VALUES(24098, 53071, 'fifty-three thousand seventy-one');\nINSERT INTO t2 VALUES(24099, 39872, 'thirty-nine thousand eight hundred seventy-two');\nINSERT INTO t2 VALUES(24100, 30304, 'thirty thousand three hundred four');\nINSERT INTO t2 VALUES(24101, 54130, 'fifty-four thousand one hundred thirty');\nINSERT INTO t2 VALUES(24102, 64790, 'sixty-four thousand seven hundred ninety');\nINSERT INTO t2 VALUES(24103, 16348, 'sixteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(24104, 97914, 'ninety-seven thousand nine hundred fourteen');\nINSERT INTO t2 VALUES(24105, 58480, 'fifty-eight thousand four hundred eighty');\nINSERT INTO t2 VALUES(24106, 36315, 'thirty-six thousand three hundred fifteen');\nINSERT INTO t2 VALUES(24107, 5837, 'five thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(24108, 17645, 'seventeen thousand six hundred forty-five');\nINSERT INTO t2 VALUES(24109, 61482, 'sixty-one thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24110, 27120, 'twenty-seven thousand one hundred twenty');\nINSERT INTO t2 VALUES(24111, 192, 'one hundred ninety-two');\nINSERT INTO t2 VALUES(24112, 16876, 'sixteen thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24113, 80002, 'eighty thousand two');\nINSERT INTO t2 VALUES(24114, 94040, 'ninety-four thousand forty');\nINSERT INTO t2 VALUES(24115, 52659, 'fifty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24116, 84835, 'eighty-four thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(24117, 75678, 'seventy-five thousand six hundred seventy-eight');\nINSERT INTO t2 VALUES(24118, 2024, 'two thousand twenty-four');\nINSERT INTO t2 VALUES(24119, 16178, 'sixteen thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(24120, 17149, 'seventeen thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(24121, 57359, 'fifty-seven thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(24122, 67859, 'sixty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(24123, 73443, 'seventy-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(24124, 49342, 'forty-nine thousand three hundred forty-two');\nINSERT INTO t2 VALUES(24125, 16399, 'sixteen thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(24126, 79129, 'seventy-nine thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24127, 39093, 'thirty-nine thousand ninety-three');\nINSERT INTO t2 VALUES(24128, 70342, 'seventy thousand three hundred forty-two');\nINSERT INTO t2 VALUES(24129, 14116, 'fourteen thousand one hundred sixteen');\nINSERT INTO t2 VALUES(24130, 82288, 'eighty-two thousand two hundred eighty-eight');\nINSERT INTO t2 VALUES(24131, 39476, 'thirty-nine thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(24132, 56447, 'fifty-six thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(24133, 69487, 'sixty-nine thousand four hundred eighty-seven');\nINSERT INTO t2 VALUES(24134, 29744, 'twenty-nine thousand seven hundred forty-four');\nINSERT INTO t2 VALUES(24135, 93585, 'ninety-three thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(24136, 99044, 'ninety-nine thousand forty-four');\nINSERT INTO t2 VALUES(24137, 66480, 'sixty-six thousand four hundred eighty');\nINSERT INTO t2 VALUES(24138, 15549, 'fifteen thousand five hundred forty-nine');\nINSERT INTO t2 VALUES(24139, 72299, 'seventy-two thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(24140, 83470, 'eighty-three thousand four hundred seventy');\nINSERT INTO t2 VALUES(24141, 48391, 'forty-eight thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(24142, 25162, 'twenty-five thousand one hundred sixty-two');\nINSERT INTO t2 VALUES(24143, 88696, 'eighty-eight thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(24144, 64798, 'sixty-four thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(24145, 11920, 'eleven thousand nine hundred twenty');\nINSERT INTO t2 VALUES(24146, 26467, 'twenty-six thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(24147, 74197, 'seventy-four thousand one hundred ninety-seven');\nINSERT INTO t2 VALUES(24148, 4957, 'four thousand nine hundred fifty-seven');\nINSERT INTO t2 VALUES(24149, 22323, 'twenty-two thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(24150, 52478, 'fifty-two thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(24151, 74664, 'seventy-four thousand six hundred sixty-four');\nINSERT INTO t2 VALUES(24152, 89026, 'eighty-nine thousand twenty-six');\nINSERT INTO t2 VALUES(24153, 21882, 'twenty-one thousand eight hundred eighty-two');\nINSERT INTO t2 VALUES(24154, 69055, 'sixty-nine thousand fifty-five');\nINSERT INTO t2 VALUES(24155, 89039, 'eighty-nine thousand thirty-nine');\nINSERT INTO t2 VALUES(24156, 12949, 'twelve thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(24157, 83603, 'eighty-three thousand six hundred three');\nINSERT INTO t2 VALUES(24158, 20332, 'twenty thousand three hundred thirty-two');\nINSERT INTO t2 VALUES(24159, 24206, 'twenty-four thousand two hundred six');\nINSERT INTO t2 VALUES(24160, 75671, 'seventy-five thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24161, 39010, 'thirty-nine thousand ten');\nINSERT INTO t2 VALUES(24162, 91517, 'ninety-one thousand five hundred seventeen');\nINSERT INTO t2 VALUES(24163, 78899, 'seventy-eight thousand eight hundred ninety-nine');\nINSERT INTO t2 VALUES(24164, 36955, 'thirty-six thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(24165, 68124, 'sixty-eight thousand one hundred twenty-four');\nINSERT INTO t2 VALUES(24166, 50597, 'fifty thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(24167, 94731, 'ninety-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(24168, 31499, 'thirty-one thousand four hundred ninety-nine');\nINSERT INTO t2 VALUES(24169, 32475, 'thirty-two thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(24170, 62745, 'sixty-two thousand seven hundred forty-five');\nINSERT INTO t2 VALUES(24171, 88692, 'eighty-eight thousand six hundred ninety-two');\nINSERT INTO t2 VALUES(24172, 63624, 'sixty-three thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(24173, 67623, 'sixty-seven thousand six hundred twenty-three');\nINSERT INTO t2 VALUES(24174, 74032, 'seventy-four thousand thirty-two');\nINSERT INTO t2 VALUES(24175, 83391, 'eighty-three thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(24176, 40650, 'forty thousand six hundred fifty');\nINSERT INTO t2 VALUES(24177, 76408, 'seventy-six thousand four hundred eight');\nINSERT INTO t2 VALUES(24178, 11917, 'eleven thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(24179, 63262, 'sixty-three thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(24180, 74605, 'seventy-four thousand six hundred five');\nINSERT INTO t2 VALUES(24181, 55540, 'fifty-five thousand five hundred forty');\nINSERT INTO t2 VALUES(24182, 23777, 'twenty-three thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(24183, 89059, 'eighty-nine thousand fifty-nine');\nINSERT INTO t2 VALUES(24184, 90176, 'ninety thousand one hundred seventy-six');\nINSERT INTO t2 VALUES(24185, 82320, 'eighty-two thousand three hundred twenty');\nINSERT INTO t2 VALUES(24186, 62842, 'sixty-two thousand eight hundred forty-two');\nINSERT INTO t2 VALUES(24187, 55749, 'fifty-five thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(24188, 35982, 'thirty-five thousand nine hundred eighty-two');\nINSERT INTO t2 VALUES(24189, 53634, 'fifty-three thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(24190, 94544, 'ninety-four thousand five hundred forty-four');\nINSERT INTO t2 VALUES(24191, 9898, 'nine thousand eight hundred ninety-eight');\nINSERT INTO t2 VALUES(24192, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t2 VALUES(24193, 81822, 'eighty-one thousand eight hundred twenty-two');\nINSERT INTO t2 VALUES(24194, 8194, 'eight thousand one hundred ninety-four');\nINSERT INTO t2 VALUES(24195, 85955, 'eighty-five thousand nine hundred fifty-five');\nINSERT INTO t2 VALUES(24196, 95216, 'ninety-five thousand two hundred sixteen');\nINSERT INTO t2 VALUES(24197, 12572, 'twelve thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(24198, 51556, 'fifty-one thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(24199, 22048, 'twenty-two thousand forty-eight');\nINSERT INTO t2 VALUES(24200, 3736, 'three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24201, 22922, 'twenty-two thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(24202, 27606, 'twenty-seven thousand six hundred six');\nINSERT INTO t2 VALUES(24203, 58858, 'fifty-eight thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(24204, 35903, 'thirty-five thousand nine hundred three');\nINSERT INTO t2 VALUES(24205, 70493, 'seventy thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(24206, 79557, 'seventy-nine thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(24207, 27052, 'twenty-seven thousand fifty-two');\nINSERT INTO t2 VALUES(24208, 54827, 'fifty-four thousand eight hundred twenty-seven');\nINSERT INTO t2 VALUES(24209, 65229, 'sixty-five thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(24210, 6719, 'six thousand seven hundred nineteen');\nINSERT INTO t2 VALUES(24211, 99976, 'ninety-nine thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(24212, 53084, 'fifty-three thousand eighty-four');\nINSERT INTO t2 VALUES(24213, 69262, 'sixty-nine thousand two hundred sixty-two');\nINSERT INTO t2 VALUES(24214, 4302, 'four thousand three hundred two');\nINSERT INTO t2 VALUES(24215, 1578, 'one thousand five hundred seventy-eight');\nINSERT INTO t2 VALUES(24216, 30756, 'thirty thousand seven hundred fifty-six');\nINSERT INTO t2 VALUES(24217, 67484, 'sixty-seven thousand four hundred eighty-four');\nINSERT INTO t2 VALUES(24218, 77330, 'seventy-seven thousand three hundred thirty');\nINSERT INTO t2 VALUES(24219, 84270, 'eighty-four thousand two hundred seventy');\nINSERT INTO t2 VALUES(24220, 58522, 'fifty-eight thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(24221, 24051, 'twenty-four thousand fifty-one');\nINSERT INTO t2 VALUES(24222, 15310, 'fifteen thousand three hundred ten');\nINSERT INTO t2 VALUES(24223, 98560, 'ninety-eight thousand five hundred sixty');\nINSERT INTO t2 VALUES(24224, 90291, 'ninety thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(24225, 64876, 'sixty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24226, 14106, 'fourteen thousand one hundred six');\nINSERT INTO t2 VALUES(24227, 52497, 'fifty-two thousand four hundred ninety-seven');\nINSERT INTO t2 VALUES(24228, 45679, 'forty-five thousand six hundred seventy-nine');\nINSERT INTO t2 VALUES(24229, 44696, 'forty-four thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(24230, 28523, 'twenty-eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(24231, 75415, 'seventy-five thousand four hundred fifteen');\nINSERT INTO t2 VALUES(24232, 43067, 'forty-three thousand sixty-seven');\nINSERT INTO t2 VALUES(24233, 42327, 'forty-two thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(24234, 69570, 'sixty-nine thousand five hundred seventy');\nINSERT INTO t2 VALUES(24235, 61365, 'sixty-one thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(24236, 13113, 'thirteen thousand one hundred thirteen');\nINSERT INTO t2 VALUES(24237, 37429, 'thirty-seven thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24238, 27050, 'twenty-seven thousand fifty');\nINSERT INTO t2 VALUES(24239, 70063, 'seventy thousand sixty-three');\nINSERT INTO t2 VALUES(24240, 8777, 'eight thousand seven hundred seventy-seven');\nINSERT INTO t2 VALUES(24241, 38764, 'thirty-eight thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24242, 84815, 'eighty-four thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(24243, 44912, 'forty-four thousand nine hundred twelve');\nINSERT INTO t2 VALUES(24244, 76435, 'seventy-six thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(24245, 71544, 'seventy-one thousand five hundred forty-four');\nINSERT INTO t2 VALUES(24246, 57188, 'fifty-seven thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(24247, 40211, 'forty thousand two hundred eleven');\nINSERT INTO t2 VALUES(24248, 54889, 'fifty-four thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(24249, 89108, 'eighty-nine thousand one hundred eight');\nINSERT INTO t2 VALUES(24250, 79365, 'seventy-nine thousand three hundred sixty-five');\nINSERT INTO t2 VALUES(24251, 16951, 'sixteen thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(24252, 94837, 'ninety-four thousand eight hundred thirty-seven');\nINSERT INTO t2 VALUES(24253, 44878, 'forty-four thousand eight hundred seventy-eight');\nINSERT INTO t2 VALUES(24254, 20616, 'twenty thousand six hundred sixteen');\nINSERT INTO t2 VALUES(24255, 45, 'forty-five');\nINSERT INTO t2 VALUES(24256, 10067, 'ten thousand sixty-seven');\nINSERT INTO t2 VALUES(24257, 85161, 'eighty-five thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(24258, 43286, 'forty-three thousand two hundred eighty-six');\nINSERT INTO t2 VALUES(24259, 24924, 'twenty-four thousand nine hundred twenty-four');\nINSERT INTO t2 VALUES(24260, 40625, 'forty thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(24261, 98159, 'ninety-eight thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(24262, 15511, 'fifteen thousand five hundred eleven');\nINSERT INTO t2 VALUES(24263, 5203, 'five thousand two hundred three');\nINSERT INTO t2 VALUES(24264, 47281, 'forty-seven thousand two hundred eighty-one');\nINSERT INTO t2 VALUES(24265, 67079, 'sixty-seven thousand seventy-nine');\nINSERT INTO t2 VALUES(24266, 44221, 'forty-four thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(24267, 396, 'three hundred ninety-six');\nINSERT INTO t2 VALUES(24268, 89886, 'eighty-nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(24269, 42051, 'forty-two thousand fifty-one');\nINSERT INTO t2 VALUES(24270, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(24271, 77189, 'seventy-seven thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(24272, 69762, 'sixty-nine thousand seven hundred sixty-two');\nINSERT INTO t2 VALUES(24273, 41521, 'forty-one thousand five hundred twenty-one');\nINSERT INTO t2 VALUES(24274, 33752, 'thirty-three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(24275, 23258, 'twenty-three thousand two hundred fifty-eight');\nINSERT INTO t2 VALUES(24276, 8996, 'eight thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(24277, 25068, 'twenty-five thousand sixty-eight');\nINSERT INTO t2 VALUES(24278, 78685, 'seventy-eight thousand six hundred eighty-five');\nINSERT INTO t2 VALUES(24279, 85962, 'eighty-five thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(24280, 28129, 'twenty-eight thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24281, 58106, 'fifty-eight thousand one hundred six');\nINSERT INTO t2 VALUES(24282, 62554, 'sixty-two thousand five hundred fifty-four');\nINSERT INTO t2 VALUES(24283, 7769, 'seven thousand seven hundred sixty-nine');\nINSERT INTO t2 VALUES(24284, 84373, 'eighty-four thousand three hundred seventy-three');\nINSERT INTO t2 VALUES(24285, 83290, 'eighty-three thousand two hundred ninety');\nINSERT INTO t2 VALUES(24286, 31042, 'thirty-one thousand forty-two');\nINSERT INTO t2 VALUES(24287, 25949, 'twenty-five thousand nine hundred forty-nine');\nINSERT INTO t2 VALUES(24288, 82656, 'eighty-two thousand six hundred fifty-six');\nINSERT INTO t2 VALUES(24289, 35465, 'thirty-five thousand four hundred sixty-five');\nINSERT INTO t2 VALUES(24290, 43763, 'forty-three thousand seven hundred sixty-three');\nINSERT INTO t2 VALUES(24291, 69291, 'sixty-nine thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(24292, 66388, 'sixty-six thousand three hundred eighty-eight');\nINSERT INTO t2 VALUES(24293, 4469, 'four thousand four hundred sixty-nine');\nINSERT INTO t2 VALUES(24294, 9967, 'nine thousand nine hundred sixty-seven');\nINSERT INTO t2 VALUES(24295, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t2 VALUES(24296, 16544, 'sixteen thousand five hundred forty-four');\nINSERT INTO t2 VALUES(24297, 99931, 'ninety-nine thousand nine hundred thirty-one');\nINSERT INTO t2 VALUES(24298, 24789, 'twenty-four thousand seven hundred eighty-nine');\nINSERT INTO t2 VALUES(24299, 44188, 'forty-four thousand one hundred eighty-eight');\nINSERT INTO t2 VALUES(24300, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t2 VALUES(24301, 89061, 'eighty-nine thousand sixty-one');\nINSERT INTO t2 VALUES(24302, 46400, 'forty-six thousand four hundred');\nINSERT INTO t2 VALUES(24303, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24304, 8960, 'eight thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24305, 95843, 'ninety-five thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(24306, 16392, 'sixteen thousand three hundred ninety-two');\nINSERT INTO t2 VALUES(24307, 84055, 'eighty-four thousand fifty-five');\nINSERT INTO t2 VALUES(24308, 48466, 'forty-eight thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(24309, 80946, 'eighty thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(24310, 1523, 'one thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(24311, 52308, 'fifty-two thousand three hundred eight');\nINSERT INTO t2 VALUES(24312, 12429, 'twelve thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24313, 84468, 'eighty-four thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(24314, 1480, 'one thousand four hundred eighty');\nINSERT INTO t2 VALUES(24315, 98779, 'ninety-eight thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(24316, 52356, 'fifty-two thousand three hundred fifty-six');\nINSERT INTO t2 VALUES(24317, 79847, 'seventy-nine thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(24318, 87210, 'eighty-seven thousand two hundred ten');\nINSERT INTO t2 VALUES(24319, 33181, 'thirty-three thousand one hundred eighty-one');\nINSERT INTO t2 VALUES(24320, 49379, 'forty-nine thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(24321, 1534, 'one thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(24322, 92935, 'ninety-two thousand nine hundred thirty-five');\nINSERT INTO t2 VALUES(24323, 6889, 'six thousand eight hundred eighty-nine');\nINSERT INTO t2 VALUES(24324, 85100, 'eighty-five thousand one hundred');\nINSERT INTO t2 VALUES(24325, 14095, 'fourteen thousand ninety-five');\nINSERT INTO t2 VALUES(24326, 80989, 'eighty thousand nine hundred eighty-nine');\nINSERT INTO t2 VALUES(24327, 25772, 'twenty-five thousand seven hundred seventy-two');\nINSERT INTO t2 VALUES(24328, 17776, 'seventeen thousand seven hundred seventy-six');\nINSERT INTO t2 VALUES(24329, 53057, 'fifty-three thousand fifty-seven');\nINSERT INTO t2 VALUES(24330, 49253, 'forty-nine thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(24331, 85187, 'eighty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(24332, 13337, 'thirteen thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(24333, 15096, 'fifteen thousand ninety-six');\nINSERT INTO t2 VALUES(24334, 8400, 'eight thousand four hundred');\nINSERT INTO t2 VALUES(24335, 27312, 'twenty-seven thousand three hundred twelve');\nINSERT INTO t2 VALUES(24336, 17024, 'seventeen thousand twenty-four');\nINSERT INTO t2 VALUES(24337, 95728, 'ninety-five thousand seven hundred twenty-eight');\nINSERT INTO t2 VALUES(24338, 40881, 'forty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(24339, 6300, 'six thousand three hundred');\nINSERT INTO t2 VALUES(24340, 38671, 'thirty-eight thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24341, 60007, 'sixty thousand seven');\nINSERT INTO t2 VALUES(24342, 68053, 'sixty-eight thousand fifty-three');\nINSERT INTO t2 VALUES(24343, 6597, 'six thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(24344, 37402, 'thirty-seven thousand four hundred two');\nINSERT INTO t2 VALUES(24345, 57022, 'fifty-seven thousand twenty-two');\nINSERT INTO t2 VALUES(24346, 96220, 'ninety-six thousand two hundred twenty');\nINSERT INTO t2 VALUES(24347, 49453, 'forty-nine thousand four hundred fifty-three');\nINSERT INTO t2 VALUES(24348, 83046, 'eighty-three thousand forty-six');\nINSERT INTO t2 VALUES(24349, 80444, 'eighty thousand four hundred forty-four');\nINSERT INTO t2 VALUES(24350, 19560, 'nineteen thousand five hundred sixty');\nINSERT INTO t2 VALUES(24351, 47100, 'forty-seven thousand one hundred');\nINSERT INTO t2 VALUES(24352, 7084, 'seven thousand eighty-four');\nINSERT INTO t2 VALUES(24353, 66076, 'sixty-six thousand seventy-six');\nINSERT INTO t2 VALUES(24354, 32814, 'thirty-two thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(24355, 73585, 'seventy-three thousand five hundred eighty-five');\nINSERT INTO t2 VALUES(24356, 96101, 'ninety-six thousand one hundred one');\nINSERT INTO t2 VALUES(24357, 72676, 'seventy-two thousand six hundred seventy-six');\nINSERT INTO t2 VALUES(24358, 51006, 'fifty-one thousand six');\nINSERT INTO t2 VALUES(24359, 74725, 'seventy-four thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(24360, 32659, 'thirty-two thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24361, 64731, 'sixty-four thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(24362, 63401, 'sixty-three thousand four hundred one');\nINSERT INTO t2 VALUES(24363, 32426, 'thirty-two thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(24364, 53858, 'fifty-three thousand eight hundred fifty-eight');\nINSERT INTO t2 VALUES(24365, 96070, 'ninety-six thousand seventy');\nINSERT INTO t2 VALUES(24366, 98435, 'ninety-eight thousand four hundred thirty-five');\nINSERT INTO t2 VALUES(24367, 42315, 'forty-two thousand three hundred fifteen');\nINSERT INTO t2 VALUES(24368, 14201, 'fourteen thousand two hundred one');\nINSERT INTO t2 VALUES(24369, 69602, 'sixty-nine thousand six hundred two');\nINSERT INTO t2 VALUES(24370, 6138, 'six thousand one hundred thirty-eight');\nINSERT INTO t2 VALUES(24371, 1191, 'one thousand one hundred ninety-one');\nINSERT INTO t2 VALUES(24372, 36133, 'thirty-six thousand one hundred thirty-three');\nINSERT INTO t2 VALUES(24373, 65074, 'sixty-five thousand seventy-four');\nINSERT INTO t2 VALUES(24374, 74922, 'seventy-four thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(24375, 10032, 'ten thousand thirty-two');\nINSERT INTO t2 VALUES(24376, 73137, 'seventy-three thousand one hundred thirty-seven');\nINSERT INTO t2 VALUES(24377, 49951, 'forty-nine thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(24378, 56493, 'fifty-six thousand four hundred ninety-three');\nINSERT INTO t2 VALUES(24379, 43000, 'forty-three thousand');\nINSERT INTO t2 VALUES(24380, 6836, 'six thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(24381, 50960, 'fifty thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24382, 14348, 'fourteen thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(24383, 8185, 'eight thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(24384, 37227, 'thirty-seven thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(24385, 30869, 'thirty thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(24386, 63758, 'sixty-three thousand seven hundred fifty-eight');\nINSERT INTO t2 VALUES(24387, 53354, 'fifty-three thousand three hundred fifty-four');\nINSERT INTO t2 VALUES(24388, 9886, 'nine thousand eight hundred eighty-six');\nINSERT INTO t2 VALUES(24389, 30665, 'thirty thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(24390, 10279, 'ten thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(24391, 48870, 'forty-eight thousand eight hundred seventy');\nINSERT INTO t2 VALUES(24392, 92268, 'ninety-two thousand two hundred sixty-eight');\nINSERT INTO t2 VALUES(24393, 25625, 'twenty-five thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(24394, 34199, 'thirty-four thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(24395, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t2 VALUES(24396, 60863, 'sixty thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(24397, 94067, 'ninety-four thousand sixty-seven');\nINSERT INTO t2 VALUES(24398, 44784, 'forty-four thousand seven hundred eighty-four');\nINSERT INTO t2 VALUES(24399, 19092, 'nineteen thousand ninety-two');\nINSERT INTO t2 VALUES(24400, 73849, 'seventy-three thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(24401, 71051, 'seventy-one thousand fifty-one');\nINSERT INTO t2 VALUES(24402, 58208, 'fifty-eight thousand two hundred eight');\nINSERT INTO t2 VALUES(24403, 24007, 'twenty-four thousand seven');\nINSERT INTO t2 VALUES(24404, 53808, 'fifty-three thousand eight hundred eight');\nINSERT INTO t2 VALUES(24405, 74649, 'seventy-four thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(24406, 5863, 'five thousand eight hundred sixty-three');\nINSERT INTO t2 VALUES(24407, 11221, 'eleven thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(24408, 33922, 'thirty-three thousand nine hundred twenty-two');\nINSERT INTO t2 VALUES(24409, 46076, 'forty-six thousand seventy-six');\nINSERT INTO t2 VALUES(24410, 50449, 'fifty thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(24411, 90879, 'ninety thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(24412, 35993, 'thirty-five thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(24413, 4939, 'four thousand nine hundred thirty-nine');\nINSERT INTO t2 VALUES(24414, 28145, 'twenty-eight thousand one hundred forty-five');\nINSERT INTO t2 VALUES(24415, 50552, 'fifty thousand five hundred fifty-two');\nINSERT INTO t2 VALUES(24416, 25794, 'twenty-five thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(24417, 19409, 'nineteen thousand four hundred nine');\nINSERT INTO t2 VALUES(24418, 83942, 'eighty-three thousand nine hundred forty-two');\nINSERT INTO t2 VALUES(24419, 34387, 'thirty-four thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(24420, 2252, 'two thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(24421, 61817, 'sixty-one thousand eight hundred seventeen');\nINSERT INTO t2 VALUES(24422, 25013, 'twenty-five thousand thirteen');\nINSERT INTO t2 VALUES(24423, 54212, 'fifty-four thousand two hundred twelve');\nINSERT INTO t2 VALUES(24424, 91790, 'ninety-one thousand seven hundred ninety');\nINSERT INTO t2 VALUES(24425, 16492, 'sixteen thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(24426, 90482, 'ninety thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24427, 80950, 'eighty thousand nine hundred fifty');\nINSERT INTO t2 VALUES(24428, 25917, 'twenty-five thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(24429, 34888, 'thirty-four thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(24430, 51866, 'fifty-one thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(24431, 44287, 'forty-four thousand two hundred eighty-seven');\nINSERT INTO t2 VALUES(24432, 35788, 'thirty-five thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(24433, 16199, 'sixteen thousand one hundred ninety-nine');\nINSERT INTO t2 VALUES(24434, 76063, 'seventy-six thousand sixty-three');\nINSERT INTO t2 VALUES(24435, 80881, 'eighty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(24436, 48534, 'forty-eight thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(24437, 75694, 'seventy-five thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(24438, 83764, 'eighty-three thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24439, 73316, 'seventy-three thousand three hundred sixteen');\nINSERT INTO t2 VALUES(24440, 40161, 'forty thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(24441, 26042, 'twenty-six thousand forty-two');\nINSERT INTO t2 VALUES(24442, 41177, 'forty-one thousand one hundred seventy-seven');\nINSERT INTO t2 VALUES(24443, 31055, 'thirty-one thousand fifty-five');\nINSERT INTO t2 VALUES(24444, 32482, 'thirty-two thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24445, 55305, 'fifty-five thousand three hundred five');\nINSERT INTO t2 VALUES(24446, 77279, 'seventy-seven thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(24447, 88659, 'eighty-eight thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24448, 24876, 'twenty-four thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24449, 32785, 'thirty-two thousand seven hundred eighty-five');\nINSERT INTO t2 VALUES(24450, 12269, 'twelve thousand two hundred sixty-nine');\nINSERT INTO t2 VALUES(24451, 35916, 'thirty-five thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(24452, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(24453, 75253, 'seventy-five thousand two hundred fifty-three');\nINSERT INTO t2 VALUES(24454, 61129, 'sixty-one thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24455, 29439, 'twenty-nine thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(24456, 53333, 'fifty-three thousand three hundred thirty-three');\nINSERT INTO t2 VALUES(24457, 41467, 'forty-one thousand four hundred sixty-seven');\nINSERT INTO t2 VALUES(24458, 18416, 'eighteen thousand four hundred sixteen');\nINSERT INTO t2 VALUES(24459, 20291, 'twenty thousand two hundred ninety-one');\nINSERT INTO t2 VALUES(24460, 39835, 'thirty-nine thousand eight hundred thirty-five');\nINSERT INTO t2 VALUES(24461, 92051, 'ninety-two thousand fifty-one');\nINSERT INTO t2 VALUES(24462, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(24463, 98651, 'ninety-eight thousand six hundred fifty-one');\nINSERT INTO t2 VALUES(24464, 94009, 'ninety-four thousand nine');\nINSERT INTO t2 VALUES(24465, 37566, 'thirty-seven thousand five hundred sixty-six');\nINSERT INTO t2 VALUES(24466, 81018, 'eighty-one thousand eighteen');\nINSERT INTO t2 VALUES(24467, 32649, 'thirty-two thousand six hundred forty-nine');\nINSERT INTO t2 VALUES(24468, 27737, 'twenty-seven thousand seven hundred thirty-seven');\nINSERT INTO t2 VALUES(24469, 56198, 'fifty-six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(24470, 34203, 'thirty-four thousand two hundred three');\nINSERT INTO t2 VALUES(24471, 7344, 'seven thousand three hundred forty-four');\nINSERT INTO t2 VALUES(24472, 45478, 'forty-five thousand four hundred seventy-eight');\nINSERT INTO t2 VALUES(24473, 44261, 'forty-four thousand two hundred sixty-one');\nINSERT INTO t2 VALUES(24474, 28519, 'twenty-eight thousand five hundred nineteen');\nINSERT INTO t2 VALUES(24475, 47477, 'forty-seven thousand four hundred seventy-seven');\nINSERT INTO t2 VALUES(24476, 42738, 'forty-two thousand seven hundred thirty-eight');\nINSERT INTO t2 VALUES(24477, 45637, 'forty-five thousand six hundred thirty-seven');\nINSERT INTO t2 VALUES(24478, 28370, 'twenty-eight thousand three hundred seventy');\nINSERT INTO t2 VALUES(24479, 89455, 'eighty-nine thousand four hundred fifty-five');\nINSERT INTO t2 VALUES(24480, 83443, 'eighty-three thousand four hundred forty-three');\nINSERT INTO t2 VALUES(24481, 39599, 'thirty-nine thousand five hundred ninety-nine');\nINSERT INTO t2 VALUES(24482, 75551, 'seventy-five thousand five hundred fifty-one');\nINSERT INTO t2 VALUES(24483, 11716, 'eleven thousand seven hundred sixteen');\nINSERT INTO t2 VALUES(24484, 28734, 'twenty-eight thousand seven hundred thirty-four');\nINSERT INTO t2 VALUES(24485, 43429, 'forty-three thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24486, 20028, 'twenty thousand twenty-eight');\nINSERT INTO t2 VALUES(24487, 25054, 'twenty-five thousand fifty-four');\nINSERT INTO t2 VALUES(24488, 56472, 'fifty-six thousand four hundred seventy-two');\nINSERT INTO t2 VALUES(24489, 70426, 'seventy thousand four hundred twenty-six');\nINSERT INTO t2 VALUES(24490, 75902, 'seventy-five thousand nine hundred two');\nINSERT INTO t2 VALUES(24491, 832, 'eight hundred thirty-two');\nINSERT INTO t2 VALUES(24492, 44553, 'forty-four thousand five hundred fifty-three');\nINSERT INTO t2 VALUES(24493, 93630, 'ninety-three thousand six hundred thirty');\nINSERT INTO t2 VALUES(24494, 12792, 'twelve thousand seven hundred ninety-two');\nINSERT INTO t2 VALUES(24495, 90401, 'ninety thousand four hundred one');\nINSERT INTO t2 VALUES(24496, 81560, 'eighty-one thousand five hundred sixty');\nINSERT INTO t2 VALUES(24497, 27579, 'twenty-seven thousand five hundred seventy-nine');\nINSERT INTO t2 VALUES(24498, 47438, 'forty-seven thousand four hundred thirty-eight');\nINSERT INTO t2 VALUES(24499, 82993, 'eighty-two thousand nine hundred ninety-three');\nINSERT INTO t2 VALUES(24500, 43687, 'forty-three thousand six hundred eighty-seven');\nINSERT INTO t2 VALUES(24501, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t2 VALUES(24502, 85414, 'eighty-five thousand four hundred fourteen');\nINSERT INTO t2 VALUES(24503, 6204, 'six thousand two hundred four');\nINSERT INTO t2 VALUES(24504, 83767, 'eighty-three thousand seven hundred sixty-seven');\nINSERT INTO t2 VALUES(24505, 52684, 'fifty-two thousand six hundred eighty-four');\nINSERT INTO t2 VALUES(24506, 49485, 'forty-nine thousand four hundred eighty-five');\nINSERT INTO t2 VALUES(24507, 63100, 'sixty-three thousand one hundred');\nINSERT INTO t2 VALUES(24508, 14052, 'fourteen thousand fifty-two');\nINSERT INTO t2 VALUES(24509, 57318, 'fifty-seven thousand three hundred eighteen');\nINSERT INTO t2 VALUES(24510, 28948, 'twenty-eight thousand nine hundred forty-eight');\nINSERT INTO t2 VALUES(24511, 37325, 'thirty-seven thousand three hundred twenty-five');\nINSERT INTO t2 VALUES(24512, 78310, 'seventy-eight thousand three hundred ten');\nINSERT INTO t2 VALUES(24513, 25187, 'twenty-five thousand one hundred eighty-seven');\nINSERT INTO t2 VALUES(24514, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t2 VALUES(24515, 51087, 'fifty-one thousand eighty-seven');\nINSERT INTO t2 VALUES(24516, 61227, 'sixty-one thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(24517, 23567, 'twenty-three thousand five hundred sixty-seven');\nINSERT INTO t2 VALUES(24518, 307, 'three hundred seven');\nINSERT INTO t2 VALUES(24519, 5876, 'five thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24520, 75134, 'seventy-five thousand one hundred thirty-four');\nINSERT INTO t2 VALUES(24521, 55945, 'fifty-five thousand nine hundred forty-five');\nINSERT INTO t2 VALUES(24522, 73035, 'seventy-three thousand thirty-five');\nINSERT INTO t2 VALUES(24523, 48155, 'forty-eight thousand one hundred fifty-five');\nINSERT INTO t2 VALUES(24524, 59826, 'fifty-nine thousand eight hundred twenty-six');\nINSERT INTO t2 VALUES(24525, 93451, 'ninety-three thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(24526, 9593, 'nine thousand five hundred ninety-three');\nINSERT INTO t2 VALUES(24527, 38523, 'thirty-eight thousand five hundred twenty-three');\nINSERT INTO t2 VALUES(24528, 501, 'five hundred one');\nINSERT INTO t2 VALUES(24529, 8665, 'eight thousand six hundred sixty-five');\nINSERT INTO t2 VALUES(24530, 57673, 'fifty-seven thousand six hundred seventy-three');\nINSERT INTO t2 VALUES(24531, 50327, 'fifty thousand three hundred twenty-seven');\nINSERT INTO t2 VALUES(24532, 46369, 'forty-six thousand three hundred sixty-nine');\nINSERT INTO t2 VALUES(24533, 57376, 'fifty-seven thousand three hundred seventy-six');\nINSERT INTO t2 VALUES(24534, 87448, 'eighty-seven thousand four hundred forty-eight');\nINSERT INTO t2 VALUES(24535, 34025, 'thirty-four thousand twenty-five');\nINSERT INTO t2 VALUES(24536, 76046, 'seventy-six thousand forty-six');\nINSERT INTO t2 VALUES(24537, 8668, 'eight thousand six hundred sixty-eight');\nINSERT INTO t2 VALUES(24538, 22879, 'twenty-two thousand eight hundred seventy-nine');\nINSERT INTO t2 VALUES(24539, 10883, 'ten thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(24540, 96877, 'ninety-six thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(24541, 38988, 'thirty-eight thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(24542, 94028, 'ninety-four thousand twenty-eight');\nINSERT INTO t2 VALUES(24543, 32994, 'thirty-two thousand nine hundred ninety-four');\nINSERT INTO t2 VALUES(24544, 93475, 'ninety-three thousand four hundred seventy-five');\nINSERT INTO t2 VALUES(24545, 53960, 'fifty-three thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24546, 62273, 'sixty-two thousand two hundred seventy-three');\nINSERT INTO t2 VALUES(24547, 56918, 'fifty-six thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(24548, 31256, 'thirty-one thousand two hundred fifty-six');\nINSERT INTO t2 VALUES(24549, 94391, 'ninety-four thousand three hundred ninety-one');\nINSERT INTO t2 VALUES(24550, 72429, 'seventy-two thousand four hundred twenty-nine');\nINSERT INTO t2 VALUES(24551, 42897, 'forty-two thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(24552, 86610, 'eighty-six thousand six hundred ten');\nINSERT INTO t2 VALUES(24553, 58962, 'fifty-eight thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(24554, 36810, 'thirty-six thousand eight hundred ten');\nINSERT INTO t2 VALUES(24555, 78103, 'seventy-eight thousand one hundred three');\nINSERT INTO t2 VALUES(24556, 64075, 'sixty-four thousand seventy-five');\nINSERT INTO t2 VALUES(24557, 23461, 'twenty-three thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(24558, 78594, 'seventy-eight thousand five hundred ninety-four');\nINSERT INTO t2 VALUES(24559, 436, 'four hundred thirty-six');\nINSERT INTO t2 VALUES(24560, 41596, 'forty-one thousand five hundred ninety-six');\nINSERT INTO t2 VALUES(24561, 61381, 'sixty-one thousand three hundred eighty-one');\nINSERT INTO t2 VALUES(24562, 45659, 'forty-five thousand six hundred fifty-nine');\nINSERT INTO t2 VALUES(24563, 57528, 'fifty-seven thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(24564, 32804, 'thirty-two thousand eight hundred four');\nINSERT INTO t2 VALUES(24565, 89470, 'eighty-nine thousand four hundred seventy');\nINSERT INTO t2 VALUES(24566, 33929, 'thirty-three thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(24567, 81561, 'eighty-one thousand five hundred sixty-one');\nINSERT INTO t2 VALUES(24568, 17849, 'seventeen thousand eight hundred forty-nine');\nINSERT INTO t2 VALUES(24569, 43292, 'forty-three thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(24570, 14937, 'fourteen thousand nine hundred thirty-seven');\nINSERT INTO t2 VALUES(24571, 19044, 'nineteen thousand forty-four');\nINSERT INTO t2 VALUES(24572, 41190, 'forty-one thousand one hundred ninety');\nINSERT INTO t2 VALUES(24573, 72612, 'seventy-two thousand six hundred twelve');\nINSERT INTO t2 VALUES(24574, 33185, 'thirty-three thousand one hundred eighty-five');\nINSERT INTO t2 VALUES(24575, 17367, 'seventeen thousand three hundred sixty-seven');\nINSERT INTO t2 VALUES(24576, 38761, 'thirty-eight thousand seven hundred sixty-one');\nINSERT INTO t2 VALUES(24577, 6943, 'six thousand nine hundred forty-three');\nINSERT INTO t2 VALUES(24578, 29988, 'twenty-nine thousand nine hundred eighty-eight');\nINSERT INTO t2 VALUES(24579, 23996, 'twenty-three thousand nine hundred ninety-six');\nINSERT INTO t2 VALUES(24580, 3296, 'three thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(24581, 27027, 'twenty-seven thousand twenty-seven');\nINSERT INTO t2 VALUES(24582, 89611, 'eighty-nine thousand six hundred eleven');\nINSERT INTO t2 VALUES(24583, 91368, 'ninety-one thousand three hundred sixty-eight');\nINSERT INTO t2 VALUES(24584, 49556, 'forty-nine thousand five hundred fifty-six');\nINSERT INTO t2 VALUES(24585, 10891, 'ten thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(24586, 53396, 'fifty-three thousand three hundred ninety-six');\nINSERT INTO t2 VALUES(24587, 94901, 'ninety-four thousand nine hundred one');\nINSERT INTO t2 VALUES(24588, 41428, 'forty-one thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(24589, 18279, 'eighteen thousand two hundred seventy-nine');\nINSERT INTO t2 VALUES(24590, 31793, 'thirty-one thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(24591, 58393, 'fifty-eight thousand three hundred ninety-three');\nINSERT INTO t2 VALUES(24592, 39049, 'thirty-nine thousand forty-nine');\nINSERT INTO t2 VALUES(24593, 63409, 'sixty-three thousand four hundred nine');\nINSERT INTO t2 VALUES(24594, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(24595, 79204, 'seventy-nine thousand two hundred four');\nINSERT INTO t2 VALUES(24596, 7575, 'seven thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(24597, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t2 VALUES(24598, 49172, 'forty-nine thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(24599, 66361, 'sixty-six thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(24600, 84059, 'eighty-four thousand fifty-nine');\nINSERT INTO t2 VALUES(24601, 24805, 'twenty-four thousand eight hundred five');\nINSERT INTO t2 VALUES(24602, 4249, 'four thousand two hundred forty-nine');\nINSERT INTO t2 VALUES(24603, 29715, 'twenty-nine thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(24604, 44339, 'forty-four thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24605, 68166, 'sixty-eight thousand one hundred sixty-six');\nINSERT INTO t2 VALUES(24606, 81901, 'eighty-one thousand nine hundred one');\nINSERT INTO t2 VALUES(24607, 55799, 'fifty-five thousand seven hundred ninety-nine');\nINSERT INTO t2 VALUES(24608, 35067, 'thirty-five thousand sixty-seven');\nINSERT INTO t2 VALUES(24609, 52022, 'fifty-two thousand twenty-two');\nINSERT INTO t2 VALUES(24610, 62377, 'sixty-two thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24611, 27409, 'twenty-seven thousand four hundred nine');\nINSERT INTO t2 VALUES(24612, 86314, 'eighty-six thousand three hundred fourteen');\nINSERT INTO t2 VALUES(24613, 16236, 'sixteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24614, 13410, 'thirteen thousand four hundred ten');\nINSERT INTO t2 VALUES(24615, 69711, 'sixty-nine thousand seven hundred eleven');\nINSERT INTO t2 VALUES(24616, 14726, 'fourteen thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24617, 48167, 'forty-eight thousand one hundred sixty-seven');\nINSERT INTO t2 VALUES(24618, 89336, 'eighty-nine thousand three hundred thirty-six');\nINSERT INTO t2 VALUES(24619, 18157, 'eighteen thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(24620, 57081, 'fifty-seven thousand eighty-one');\nINSERT INTO t2 VALUES(24621, 5408, 'five thousand four hundred eight');\nINSERT INTO t2 VALUES(24622, 12178, 'twelve thousand one hundred seventy-eight');\nINSERT INTO t2 VALUES(24623, 34534, 'thirty-four thousand five hundred thirty-four');\nINSERT INTO t2 VALUES(24624, 37731, 'thirty-seven thousand seven hundred thirty-one');\nINSERT INTO t2 VALUES(24625, 70876, 'seventy thousand eight hundred seventy-six');\nINSERT INTO t2 VALUES(24626, 86007, 'eighty-six thousand seven');\nINSERT INTO t2 VALUES(24627, 83752, 'eighty-three thousand seven hundred fifty-two');\nINSERT INTO t2 VALUES(24628, 70501, 'seventy thousand five hundred one');\nINSERT INTO t2 VALUES(24629, 18667, 'eighteen thousand six hundred sixty-seven');\nINSERT INTO t2 VALUES(24630, 28572, 'twenty-eight thousand five hundred seventy-two');\nINSERT INTO t2 VALUES(24631, 68557, 'sixty-eight thousand five hundred fifty-seven');\nINSERT INTO t2 VALUES(24632, 11343, 'eleven thousand three hundred forty-three');\nINSERT INTO t2 VALUES(24633, 1624, 'one thousand six hundred twenty-four');\nINSERT INTO t2 VALUES(24634, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t2 VALUES(24635, 94038, 'ninety-four thousand thirty-eight');\nINSERT INTO t2 VALUES(24636, 29603, 'twenty-nine thousand six hundred three');\nINSERT INTO t2 VALUES(24637, 88648, 'eighty-eight thousand six hundred forty-eight');\nINSERT INTO t2 VALUES(24638, 12736, 'twelve thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24639, 55683, 'fifty-five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(24640, 54600, 'fifty-four thousand six hundred');\nINSERT INTO t2 VALUES(24641, 82259, 'eighty-two thousand two hundred fifty-nine');\nINSERT INTO t2 VALUES(24642, 14096, 'fourteen thousand ninety-six');\nINSERT INTO t2 VALUES(24643, 36310, 'thirty-six thousand three hundred ten');\nINSERT INTO t2 VALUES(24644, 27154, 'twenty-seven thousand one hundred fifty-four');\nINSERT INTO t2 VALUES(24645, 54007, 'fifty-four thousand seven');\nINSERT INTO t2 VALUES(24646, 82080, 'eighty-two thousand eighty');\nINSERT INTO t2 VALUES(24647, 10298, 'ten thousand two hundred ninety-eight');\nINSERT INTO t2 VALUES(24648, 4064, 'four thousand sixty-four');\nINSERT INTO t2 VALUES(24649, 19725, 'nineteen thousand seven hundred twenty-five');\nINSERT INTO t2 VALUES(24650, 94836, 'ninety-four thousand eight hundred thirty-six');\nINSERT INTO t2 VALUES(24651, 48533, 'forty-eight thousand five hundred thirty-three');\nINSERT INTO t2 VALUES(24652, 5683, 'five thousand six hundred eighty-three');\nINSERT INTO t2 VALUES(24653, 75795, 'seventy-five thousand seven hundred ninety-five');\nINSERT INTO t2 VALUES(24654, 30463, 'thirty thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(24655, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t2 VALUES(24656, 17066, 'seventeen thousand sixty-six');\nINSERT INTO t2 VALUES(24657, 17779, 'seventeen thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(24658, 52403, 'fifty-two thousand four hundred three');\nINSERT INTO t2 VALUES(24659, 10570, 'ten thousand five hundred seventy');\nINSERT INTO t2 VALUES(24660, 83671, 'eighty-three thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24661, 49149, 'forty-nine thousand one hundred forty-nine');\nINSERT INTO t2 VALUES(24662, 81420, 'eighty-one thousand four hundred twenty');\nINSERT INTO t2 VALUES(24663, 37117, 'thirty-seven thousand one hundred seventeen');\nINSERT INTO t2 VALUES(24664, 28783, 'twenty-eight thousand seven hundred eighty-three');\nINSERT INTO t2 VALUES(24665, 51320, 'fifty-one thousand three hundred twenty');\nINSERT INTO t2 VALUES(24666, 75904, 'seventy-five thousand nine hundred four');\nINSERT INTO t2 VALUES(24667, 47329, 'forty-seven thousand three hundred twenty-nine');\nINSERT INTO t2 VALUES(24668, 93109, 'ninety-three thousand one hundred nine');\nINSERT INTO t2 VALUES(24669, 11161, 'eleven thousand one hundred sixty-one');\nINSERT INTO t2 VALUES(24670, 8950, 'eight thousand nine hundred fifty');\nINSERT INTO t2 VALUES(24671, 74887, 'seventy-four thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24672, 97014, 'ninety-seven thousand fourteen');\nINSERT INTO t2 VALUES(24673, 55157, 'fifty-five thousand one hundred fifty-seven');\nINSERT INTO t2 VALUES(24674, 36609, 'thirty-six thousand six hundred nine');\nINSERT INTO t2 VALUES(24675, 13464, 'thirteen thousand four hundred sixty-four');\nINSERT INTO t2 VALUES(24676, 46476, 'forty-six thousand four hundred seventy-six');\nINSERT INTO t2 VALUES(24677, 83415, 'eighty-three thousand four hundred fifteen');\nINSERT INTO t2 VALUES(24678, 43638, 'forty-three thousand six hundred thirty-eight');\nINSERT INTO t2 VALUES(24679, 4917, 'four thousand nine hundred seventeen');\nINSERT INTO t2 VALUES(24680, 61061, 'sixty-one thousand sixty-one');\nINSERT INTO t2 VALUES(24681, 97632, 'ninety-seven thousand six hundred thirty-two');\nINSERT INTO t2 VALUES(24682, 27983, 'twenty-seven thousand nine hundred eighty-three');\nINSERT INTO t2 VALUES(24683, 627, 'six hundred twenty-seven');\nINSERT INTO t2 VALUES(24684, 6975, 'six thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(24685, 42522, 'forty-two thousand five hundred twenty-two');\nINSERT INTO t2 VALUES(24686, 28456, 'twenty-eight thousand four hundred fifty-six');\nINSERT INTO t2 VALUES(24687, 43142, 'forty-three thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24688, 83057, 'eighty-three thousand fifty-seven');\nINSERT INTO t2 VALUES(24689, 57492, 'fifty-seven thousand four hundred ninety-two');\nINSERT INTO t2 VALUES(24690, 46542, 'forty-six thousand five hundred forty-two');\nINSERT INTO t2 VALUES(24691, 32781, 'thirty-two thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(24692, 29695, 'twenty-nine thousand six hundred ninety-five');\nINSERT INTO t2 VALUES(24693, 38962, 'thirty-eight thousand nine hundred sixty-two');\nINSERT INTO t2 VALUES(24694, 59941, 'fifty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(24695, 30893, 'thirty thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(24696, 12543, 'twelve thousand five hundred forty-three');\nINSERT INTO t2 VALUES(24697, 88669, 'eighty-eight thousand six hundred sixty-nine');\nINSERT INTO t2 VALUES(24698, 31890, 'thirty-one thousand eight hundred ninety');\nINSERT INTO t2 VALUES(24699, 73975, 'seventy-three thousand nine hundred seventy-five');\nINSERT INTO t2 VALUES(24700, 32017, 'thirty-two thousand seventeen');\nINSERT INTO t2 VALUES(24701, 74869, 'seventy-four thousand eight hundred sixty-nine');\nINSERT INTO t2 VALUES(24702, 90302, 'ninety thousand three hundred two');\nINSERT INTO t2 VALUES(24703, 24324, 'twenty-four thousand three hundred twenty-four');\nINSERT INTO t2 VALUES(24704, 77141, 'seventy-seven thousand one hundred forty-one');\nINSERT INTO t2 VALUES(24705, 805, 'eight hundred five');\nINSERT INTO t2 VALUES(24706, 69323, 'sixty-nine thousand three hundred twenty-three');\nINSERT INTO t2 VALUES(24707, 47182, 'forty-seven thousand one hundred eighty-two');\nINSERT INTO t2 VALUES(24708, 64546, 'sixty-four thousand five hundred forty-six');\nINSERT INTO t2 VALUES(24709, 70094, 'seventy thousand ninety-four');\nINSERT INTO t2 VALUES(24710, 8800, 'eight thousand eight hundred');\nINSERT INTO t2 VALUES(24711, 67164, 'sixty-seven thousand one hundred sixty-four');\nINSERT INTO t2 VALUES(24712, 93808, 'ninety-three thousand eight hundred eight');\nINSERT INTO t2 VALUES(24713, 24754, 'twenty-four thousand seven hundred fifty-four');\nINSERT INTO t2 VALUES(24714, 97489, 'ninety-seven thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(24715, 5602, 'five thousand six hundred two');\nINSERT INTO t2 VALUES(24716, 15377, 'fifteen thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24717, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t2 VALUES(24718, 89097, 'eighty-nine thousand ninety-seven');\nINSERT INTO t2 VALUES(24719, 42250, 'forty-two thousand two hundred fifty');\nINSERT INTO t2 VALUES(24720, 16428, 'sixteen thousand four hundred twenty-eight');\nINSERT INTO t2 VALUES(24721, 20074, 'twenty thousand seventy-four');\nINSERT INTO t2 VALUES(24722, 47704, 'forty-seven thousand seven hundred four');\nINSERT INTO t2 VALUES(24723, 80575, 'eighty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(24724, 9727, 'nine thousand seven hundred twenty-seven');\nINSERT INTO t2 VALUES(24725, 79252, 'seventy-nine thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(24726, 70229, 'seventy thousand two hundred twenty-nine');\nINSERT INTO t2 VALUES(24727, 58670, 'fifty-eight thousand six hundred seventy');\nINSERT INTO t2 VALUES(24728, 26075, 'twenty-six thousand seventy-five');\nINSERT INTO t2 VALUES(24729, 2374, 'two thousand three hundred seventy-four');\nINSERT INTO t2 VALUES(24730, 16236, 'sixteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24731, 51387, 'fifty-one thousand three hundred eighty-seven');\nINSERT INTO t2 VALUES(24732, 96158, 'ninety-six thousand one hundred fifty-eight');\nINSERT INTO t2 VALUES(24733, 65798, 'sixty-five thousand seven hundred ninety-eight');\nINSERT INTO t2 VALUES(24734, 71627, 'seventy-one thousand six hundred twenty-seven');\nINSERT INTO t2 VALUES(24735, 93357, 'ninety-three thousand three hundred fifty-seven');\nINSERT INTO t2 VALUES(24736, 81299, 'eighty-one thousand two hundred ninety-nine');\nINSERT INTO t2 VALUES(24737, 60749, 'sixty thousand seven hundred forty-nine');\nINSERT INTO t2 VALUES(24738, 47834, 'forty-seven thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(24739, 36406, 'thirty-six thousand four hundred six');\nINSERT INTO t2 VALUES(24740, 33888, 'thirty-three thousand eight hundred eighty-eight');\nINSERT INTO t2 VALUES(24741, 96891, 'ninety-six thousand eight hundred ninety-one');\nINSERT INTO t2 VALUES(24742, 30897, 'thirty thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(24743, 88968, 'eighty-eight thousand nine hundred sixty-eight');\nINSERT INTO t2 VALUES(24744, 80461, 'eighty thousand four hundred sixty-one');\nINSERT INTO t2 VALUES(24745, 95105, 'ninety-five thousand one hundred five');\nINSERT INTO t2 VALUES(24746, 33433, 'thirty-three thousand four hundred thirty-three');\nINSERT INTO t2 VALUES(24747, 6198, 'six thousand one hundred ninety-eight');\nINSERT INTO t2 VALUES(24748, 26097, 'twenty-six thousand ninety-seven');\nINSERT INTO t2 VALUES(24749, 96995, 'ninety-six thousand nine hundred ninety-five');\nINSERT INTO t2 VALUES(24750, 81911, 'eighty-one thousand nine hundred eleven');\nINSERT INTO t2 VALUES(24751, 89519, 'eighty-nine thousand five hundred nineteen');\nINSERT INTO t2 VALUES(24752, 66802, 'sixty-six thousand eight hundred two');\nINSERT INTO t2 VALUES(24753, 63647, 'sixty-three thousand six hundred forty-seven');\nINSERT INTO t2 VALUES(24754, 41202, 'forty-one thousand two hundred two');\nINSERT INTO t2 VALUES(24755, 10401, 'ten thousand four hundred one');\nINSERT INTO t2 VALUES(24756, 47730, 'forty-seven thousand seven hundred thirty');\nINSERT INTO t2 VALUES(24757, 37726, 'thirty-seven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24758, 73359, 'seventy-three thousand three hundred fifty-nine');\nINSERT INTO t2 VALUES(24759, 98821, 'ninety-eight thousand eight hundred twenty-one');\nINSERT INTO t2 VALUES(24760, 23696, 'twenty-three thousand six hundred ninety-six');\nINSERT INTO t2 VALUES(24761, 40496, 'forty thousand four hundred ninety-six');\nINSERT INTO t2 VALUES(24762, 24417, 'twenty-four thousand four hundred seventeen');\nINSERT INTO t2 VALUES(24763, 83001, 'eighty-three thousand one');\nINSERT INTO t2 VALUES(24764, 80101, 'eighty thousand one hundred one');\nINSERT INTO t2 VALUES(24765, 20058, 'twenty thousand fifty-eight');\nINSERT INTO t2 VALUES(24766, 90050, 'ninety thousand fifty');\nINSERT INTO t2 VALUES(24767, 67793, 'sixty-seven thousand seven hundred ninety-three');\nINSERT INTO t2 VALUES(24768, 21328, 'twenty-one thousand three hundred twenty-eight');\nINSERT INTO t2 VALUES(24769, 33026, 'thirty-three thousand twenty-six');\nINSERT INTO t2 VALUES(24770, 60248, 'sixty thousand two hundred forty-eight');\nINSERT INTO t2 VALUES(24771, 65466, 'sixty-five thousand four hundred sixty-six');\nINSERT INTO t2 VALUES(24772, 7600, 'seven thousand six hundred');\nINSERT INTO t2 VALUES(24773, 85941, 'eighty-five thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(24774, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t2 VALUES(24775, 70113, 'seventy thousand one hundred thirteen');\nINSERT INTO t2 VALUES(24776, 98788, 'ninety-eight thousand seven hundred eighty-eight');\nINSERT INTO t2 VALUES(24777, 31787, 'thirty-one thousand seven hundred eighty-seven');\nINSERT INTO t2 VALUES(24778, 62463, 'sixty-two thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(24779, 68236, 'sixty-eight thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24780, 3736, 'three thousand seven hundred thirty-six');\nINSERT INTO t2 VALUES(24781, 51532, 'fifty-one thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(24782, 35548, 'thirty-five thousand five hundred forty-eight');\nINSERT INTO t2 VALUES(24783, 14236, 'fourteen thousand two hundred thirty-six');\nINSERT INTO t2 VALUES(24784, 84897, 'eighty-four thousand eight hundred ninety-seven');\nINSERT INTO t2 VALUES(24785, 31062, 'thirty-one thousand sixty-two');\nINSERT INTO t2 VALUES(24786, 93221, 'ninety-three thousand two hundred twenty-one');\nINSERT INTO t2 VALUES(24787, 35820, 'thirty-five thousand eight hundred twenty');\nINSERT INTO t2 VALUES(24788, 58184, 'fifty-eight thousand one hundred eighty-four');\nINSERT INTO t2 VALUES(24789, 41247, 'forty-one thousand two hundred forty-seven');\nINSERT INTO t2 VALUES(24790, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t2 VALUES(24791, 25609, 'twenty-five thousand six hundred nine');\nINSERT INTO t2 VALUES(24792, 87338, 'eighty-seven thousand three hundred thirty-eight');\nINSERT INTO t2 VALUES(24793, 50575, 'fifty thousand five hundred seventy-five');\nINSERT INTO t2 VALUES(24794, 24704, 'twenty-four thousand seven hundred four');\nINSERT INTO t2 VALUES(24795, 12806, 'twelve thousand eight hundred six');\nINSERT INTO t2 VALUES(24796, 44597, 'forty-four thousand five hundred ninety-seven');\nINSERT INTO t2 VALUES(24797, 58582, 'fifty-eight thousand five hundred eighty-two');\nINSERT INTO t2 VALUES(24798, 11726, 'eleven thousand seven hundred twenty-six');\nINSERT INTO t2 VALUES(24799, 13340, 'thirteen thousand three hundred forty');\nINSERT INTO t2 VALUES(24800, 24440, 'twenty-four thousand four hundred forty');\nINSERT INTO t2 VALUES(24801, 9887, 'nine thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24802, 47895, 'forty-seven thousand eight hundred ninety-five');\nINSERT INTO t2 VALUES(24803, 54759, 'fifty-four thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(24804, 71252, 'seventy-one thousand two hundred fifty-two');\nINSERT INTO t2 VALUES(24805, 78445, 'seventy-eight thousand four hundred forty-five');\nINSERT INTO t2 VALUES(24806, 39941, 'thirty-nine thousand nine hundred forty-one');\nINSERT INTO t2 VALUES(24807, 48159, 'forty-eight thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(24808, 2132, 'two thousand one hundred thirty-two');\nINSERT INTO t2 VALUES(24809, 44127, 'forty-four thousand one hundred twenty-seven');\nINSERT INTO t2 VALUES(24810, 81965, 'eighty-one thousand nine hundred sixty-five');\nINSERT INTO t2 VALUES(24811, 75241, 'seventy-five thousand two hundred forty-one');\nINSERT INTO t2 VALUES(24812, 89405, 'eighty-nine thousand four hundred five');\nINSERT INTO t2 VALUES(24813, 76797, 'seventy-six thousand seven hundred ninety-seven');\nINSERT INTO t2 VALUES(24814, 77364, 'seventy-seven thousand three hundred sixty-four');\nINSERT INTO t2 VALUES(24815, 22439, 'twenty-two thousand four hundred thirty-nine');\nINSERT INTO t2 VALUES(24816, 21848, 'twenty-one thousand eight hundred forty-eight');\nINSERT INTO t2 VALUES(24817, 92243, 'ninety-two thousand two hundred forty-three');\nINSERT INTO t2 VALUES(24818, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t2 VALUES(24819, 99779, 'ninety-nine thousand seven hundred seventy-nine');\nINSERT INTO t2 VALUES(24820, 96172, 'ninety-six thousand one hundred seventy-two');\nINSERT INTO t2 VALUES(24821, 431, 'four hundred thirty-one');\nINSERT INTO t2 VALUES(24822, 33856, 'thirty-three thousand eight hundred fifty-six');\nINSERT INTO t2 VALUES(24823, 93893, 'ninety-three thousand eight hundred ninety-three');\nINSERT INTO t2 VALUES(24824, 54344, 'fifty-four thousand three hundred forty-four');\nINSERT INTO t2 VALUES(24825, 10331, 'ten thousand three hundred thirty-one');\nINSERT INTO t2 VALUES(24826, 8399, 'eight thousand three hundred ninety-nine');\nINSERT INTO t2 VALUES(24827, 36038, 'thirty-six thousand thirty-eight');\nINSERT INTO t2 VALUES(24828, 95043, 'ninety-five thousand forty-three');\nINSERT INTO t2 VALUES(24829, 97022, 'ninety-seven thousand twenty-two');\nINSERT INTO t2 VALUES(24830, 3189, 'three thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(24831, 46168, 'forty-six thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(24832, 88559, 'eighty-eight thousand five hundred fifty-nine');\nINSERT INTO t2 VALUES(24833, 64144, 'sixty-four thousand one hundred forty-four');\nINSERT INTO t2 VALUES(24834, 51730, 'fifty-one thousand seven hundred thirty');\nINSERT INTO t2 VALUES(24835, 20174, 'twenty thousand one hundred seventy-four');\nINSERT INTO t2 VALUES(24836, 7018, 'seven thousand eighteen');\nINSERT INTO t2 VALUES(24837, 18657, 'eighteen thousand six hundred fifty-seven');\nINSERT INTO t2 VALUES(24838, 75088, 'seventy-five thousand eighty-eight');\nINSERT INTO t2 VALUES(24839, 67326, 'sixty-seven thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(24840, 25073, 'twenty-five thousand seventy-three');\nINSERT INTO t2 VALUES(24841, 94644, 'ninety-four thousand six hundred forty-four');\nINSERT INTO t2 VALUES(24842, 44223, 'forty-four thousand two hundred twenty-three');\nINSERT INTO t2 VALUES(24843, 46337, 'forty-six thousand three hundred thirty-seven');\nINSERT INTO t2 VALUES(24844, 514, 'five hundred fourteen');\nINSERT INTO t2 VALUES(24845, 60951, 'sixty thousand nine hundred fifty-one');\nINSERT INTO t2 VALUES(24846, 72709, 'seventy-two thousand seven hundred nine');\nINSERT INTO t2 VALUES(24847, 33482, 'thirty-three thousand four hundred eighty-two');\nINSERT INTO t2 VALUES(24848, 12069, 'twelve thousand sixty-nine');\nINSERT INTO t2 VALUES(24849, 44568, 'forty-four thousand five hundred sixty-eight');\nINSERT INTO t2 VALUES(24850, 50881, 'fifty thousand eight hundred eighty-one');\nINSERT INTO t2 VALUES(24851, 86189, 'eighty-six thousand one hundred eighty-nine');\nINSERT INTO t2 VALUES(24852, 90634, 'ninety thousand six hundred thirty-four');\nINSERT INTO t2 VALUES(24853, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t2 VALUES(24854, 40451, 'forty thousand four hundred fifty-one');\nINSERT INTO t2 VALUES(24855, 56427, 'fifty-six thousand four hundred twenty-seven');\nINSERT INTO t2 VALUES(24856, 63501, 'sixty-three thousand five hundred one');\nINSERT INTO t2 VALUES(24857, 37562, 'thirty-seven thousand five hundred sixty-two');\nINSERT INTO t2 VALUES(24858, 98526, 'ninety-eight thousand five hundred twenty-six');\nINSERT INTO t2 VALUES(24859, 91101, 'ninety-one thousand one hundred one');\nINSERT INTO t2 VALUES(24860, 60072, 'sixty thousand seventy-two');\nINSERT INTO t2 VALUES(24861, 38206, 'thirty-eight thousand two hundred six');\nINSERT INTO t2 VALUES(24862, 53377, 'fifty-three thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24863, 89666, 'eighty-nine thousand six hundred sixty-six');\nINSERT INTO t2 VALUES(24864, 10446, 'ten thousand four hundred forty-six');\nINSERT INTO t2 VALUES(24865, 92671, 'ninety-two thousand six hundred seventy-one');\nINSERT INTO t2 VALUES(24866, 78160, 'seventy-eight thousand one hundred sixty');\nINSERT INTO t2 VALUES(24867, 72782, 'seventy-two thousand seven hundred eighty-two');\nINSERT INTO t2 VALUES(24868, 57859, 'fifty-seven thousand eight hundred fifty-nine');\nINSERT INTO t2 VALUES(24869, 39918, 'thirty-nine thousand nine hundred eighteen');\nINSERT INTO t2 VALUES(24870, 25370, 'twenty-five thousand three hundred seventy');\nINSERT INTO t2 VALUES(24871, 40814, 'forty thousand eight hundred fourteen');\nINSERT INTO t2 VALUES(24872, 21468, 'twenty-one thousand four hundred sixty-eight');\nINSERT INTO t2 VALUES(24873, 74690, 'seventy-four thousand six hundred ninety');\nINSERT INTO t2 VALUES(24874, 35862, 'thirty-five thousand eight hundred sixty-two');\nINSERT INTO t2 VALUES(24875, 92947, 'ninety-two thousand nine hundred forty-seven');\nINSERT INTO t2 VALUES(24876, 27385, 'twenty-seven thousand three hundred eighty-five');\nINSERT INTO t2 VALUES(24877, 96998, 'ninety-six thousand nine hundred ninety-eight');\nINSERT INTO t2 VALUES(24878, 22257, 'twenty-two thousand two hundred fifty-seven');\nINSERT INTO t2 VALUES(24879, 39663, 'thirty-nine thousand six hundred sixty-three');\nINSERT INTO t2 VALUES(24880, 78932, 'seventy-eight thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(24881, 72715, 'seventy-two thousand seven hundred fifteen');\nINSERT INTO t2 VALUES(24882, 78243, 'seventy-eight thousand two hundred forty-three');\nINSERT INTO t2 VALUES(24883, 96803, 'ninety-six thousand eight hundred three');\nINSERT INTO t2 VALUES(24884, 72654, 'seventy-two thousand six hundred fifty-four');\nINSERT INTO t2 VALUES(24885, 19001, 'nineteen thousand one');\nINSERT INTO t2 VALUES(24886, 6400, 'six thousand four hundred');\nINSERT INTO t2 VALUES(24887, 83047, 'eighty-three thousand forty-seven');\nINSERT INTO t2 VALUES(24888, 99857, 'ninety-nine thousand eight hundred fifty-seven');\nINSERT INTO t2 VALUES(24889, 85833, 'eighty-five thousand eight hundred thirty-three');\nINSERT INTO t2 VALUES(24890, 2089, 'two thousand eighty-nine');\nINSERT INTO t2 VALUES(24891, 97218, 'ninety-seven thousand two hundred eighteen');\nINSERT INTO t2 VALUES(24892, 36946, 'thirty-six thousand nine hundred forty-six');\nINSERT INTO t2 VALUES(24893, 73796, 'seventy-three thousand seven hundred ninety-six');\nINSERT INTO t2 VALUES(24894, 51099, 'fifty-one thousand ninety-nine');\nINSERT INTO t2 VALUES(24895, 55507, 'fifty-five thousand five hundred seven');\nINSERT INTO t2 VALUES(24896, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t2 VALUES(24897, 84714, 'eighty-four thousand seven hundred fourteen');\nINSERT INTO t2 VALUES(24898, 2326, 'two thousand three hundred twenty-six');\nINSERT INTO t2 VALUES(24899, 46073, 'forty-six thousand seventy-three');\nINSERT INTO t2 VALUES(24900, 13234, 'thirteen thousand two hundred thirty-four');\nINSERT INTO t2 VALUES(24901, 37425, 'thirty-seven thousand four hundred twenty-five');\nINSERT INTO t2 VALUES(24902, 94868, 'ninety-four thousand eight hundred sixty-eight');\nINSERT INTO t2 VALUES(24903, 49168, 'forty-nine thousand one hundred sixty-eight');\nINSERT INTO t2 VALUES(24904, 34573, 'thirty-four thousand five hundred seventy-three');\nINSERT INTO t2 VALUES(24905, 81470, 'eighty-one thousand four hundred seventy');\nINSERT INTO t2 VALUES(24906, 43976, 'forty-three thousand nine hundred seventy-six');\nINSERT INTO t2 VALUES(24907, 53694, 'fifty-three thousand six hundred ninety-four');\nINSERT INTO t2 VALUES(24908, 26766, 'twenty-six thousand seven hundred sixty-six');\nINSERT INTO t2 VALUES(24909, 24129, 'twenty-four thousand one hundred twenty-nine');\nINSERT INTO t2 VALUES(24910, 81742, 'eighty-one thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(24911, 82292, 'eighty-two thousand two hundred ninety-two');\nINSERT INTO t2 VALUES(24912, 15618, 'fifteen thousand six hundred eighteen');\nINSERT INTO t2 VALUES(24913, 63142, 'sixty-three thousand one hundred forty-two');\nINSERT INTO t2 VALUES(24914, 72910, 'seventy-two thousand nine hundred ten');\nINSERT INTO t2 VALUES(24915, 92621, 'ninety-two thousand six hundred twenty-one');\nINSERT INTO t2 VALUES(24916, 66932, 'sixty-six thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(24917, 52781, 'fifty-two thousand seven hundred eighty-one');\nINSERT INTO t2 VALUES(24918, 71348, 'seventy-one thousand three hundred forty-eight');\nINSERT INTO t2 VALUES(24919, 4847, 'four thousand eight hundred forty-seven');\nINSERT INTO t2 VALUES(24920, 37301, 'thirty-seven thousand three hundred one');\nINSERT INTO t2 VALUES(24921, 17089, 'seventeen thousand eighty-nine');\nINSERT INTO t2 VALUES(24922, 11301, 'eleven thousand three hundred one');\nINSERT INTO t2 VALUES(24923, 29841, 'twenty-nine thousand eight hundred forty-one');\nINSERT INTO t2 VALUES(24924, 65105, 'sixty-five thousand one hundred five');\nINSERT INTO t2 VALUES(24925, 824, 'eight hundred twenty-four');\nINSERT INTO t2 VALUES(24926, 95530, 'ninety-five thousand five hundred thirty');\nINSERT INTO t2 VALUES(24927, 27877, 'twenty-seven thousand eight hundred seventy-seven');\nINSERT INTO t2 VALUES(24928, 38398, 'thirty-eight thousand three hundred ninety-eight');\nINSERT INTO t2 VALUES(24929, 24764, 'twenty-four thousand seven hundred sixty-four');\nINSERT INTO t2 VALUES(24930, 75532, 'seventy-five thousand five hundred thirty-two');\nINSERT INTO t2 VALUES(24931, 85140, 'eighty-five thousand one hundred forty');\nINSERT INTO t2 VALUES(24932, 7909, 'seven thousand nine hundred nine');\nINSERT INTO t2 VALUES(24933, 35290, 'thirty-five thousand two hundred ninety');\nINSERT INTO t2 VALUES(24934, 48260, 'forty-eight thousand two hundred sixty');\nINSERT INTO t2 VALUES(24935, 42806, 'forty-two thousand eight hundred six');\nINSERT INTO t2 VALUES(24936, 49887, 'forty-nine thousand eight hundred eighty-seven');\nINSERT INTO t2 VALUES(24937, 42220, 'forty-two thousand two hundred twenty');\nINSERT INTO t2 VALUES(24938, 49147, 'forty-nine thousand one hundred forty-seven');\nINSERT INTO t2 VALUES(24939, 5209, 'five thousand two hundred nine');\nINSERT INTO t2 VALUES(24940, 90794, 'ninety thousand seven hundred ninety-four');\nINSERT INTO t2 VALUES(24941, 82718, 'eighty-two thousand seven hundred eighteen');\nINSERT INTO t2 VALUES(24942, 51334, 'fifty-one thousand three hundred thirty-four');\nINSERT INTO t2 VALUES(24943, 15932, 'fifteen thousand nine hundred thirty-two');\nINSERT INTO t2 VALUES(24944, 59449, 'fifty-nine thousand four hundred forty-nine');\nINSERT INTO t2 VALUES(24945, 67625, 'sixty-seven thousand six hundred twenty-five');\nINSERT INTO t2 VALUES(24946, 94883, 'ninety-four thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(24947, 45379, 'forty-five thousand three hundred seventy-nine');\nINSERT INTO t2 VALUES(24948, 73463, 'seventy-three thousand four hundred sixty-three');\nINSERT INTO t2 VALUES(24949, 45213, 'forty-five thousand two hundred thirteen');\nINSERT INTO t2 VALUES(24950, 91929, 'ninety-one thousand nine hundred twenty-nine');\nINSERT INTO t2 VALUES(24951, 16230, 'sixteen thousand two hundred thirty');\nINSERT INTO t2 VALUES(24952, 69883, 'sixty-nine thousand eight hundred eighty-three');\nINSERT INTO t2 VALUES(24953, 22804, 'twenty-two thousand eight hundred four');\nINSERT INTO t2 VALUES(24954, 3866, 'three thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(24955, 1990, 'one thousand nine hundred ninety');\nINSERT INTO t2 VALUES(24956, 51840, 'fifty-one thousand eight hundred forty');\nINSERT INTO t2 VALUES(24957, 87111, 'eighty-seven thousand one hundred eleven');\nINSERT INTO t2 VALUES(24958, 68843, 'sixty-eight thousand eight hundred forty-three');\nINSERT INTO t2 VALUES(24959, 55528, 'fifty-five thousand five hundred twenty-eight');\nINSERT INTO t2 VALUES(24960, 53450, 'fifty-three thousand four hundred fifty');\nINSERT INTO t2 VALUES(24961, 19612, 'nineteen thousand six hundred twelve');\nINSERT INTO t2 VALUES(24962, 35201, 'thirty-five thousand two hundred one');\nINSERT INTO t2 VALUES(24963, 16272, 'sixteen thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(24964, 99318, 'ninety-nine thousand three hundred eighteen');\nINSERT INTO t2 VALUES(24965, 89834, 'eighty-nine thousand eight hundred thirty-four');\nINSERT INTO t2 VALUES(24966, 20102, 'twenty thousand one hundred two');\nINSERT INTO t2 VALUES(24967, 77296, 'seventy-seven thousand two hundred ninety-six');\nINSERT INTO t2 VALUES(24968, 80389, 'eighty thousand three hundred eighty-nine');\nINSERT INTO t2 VALUES(24969, 16913, 'sixteen thousand nine hundred thirteen');\nINSERT INTO t2 VALUES(24970, 98721, 'ninety-eight thousand seven hundred twenty-one');\nINSERT INTO t2 VALUES(24971, 54023, 'fifty-four thousand twenty-three');\nINSERT INTO t2 VALUES(24972, 29494, 'twenty-nine thousand four hundred ninety-four');\nINSERT INTO t2 VALUES(24973, 9377, 'nine thousand three hundred seventy-seven');\nINSERT INTO t2 VALUES(24974, 72823, 'seventy-two thousand eight hundred twenty-three');\nINSERT INTO t2 VALUES(24975, 69906, 'sixty-nine thousand nine hundred six');\nINSERT INTO t2 VALUES(24976, 55159, 'fifty-five thousand one hundred fifty-nine');\nINSERT INTO t2 VALUES(24977, 47047, 'forty-seven thousand forty-seven');\nINSERT INTO t2 VALUES(24978, 28733, 'twenty-eight thousand seven hundred thirty-three');\nINSERT INTO t2 VALUES(24979, 79866, 'seventy-nine thousand eight hundred sixty-six');\nINSERT INTO t2 VALUES(24980, 64361, 'sixty-four thousand three hundred sixty-one');\nINSERT INTO t2 VALUES(24981, 86431, 'eighty-six thousand four hundred thirty-one');\nINSERT INTO t2 VALUES(24982, 53705, 'fifty-three thousand seven hundred five');\nINSERT INTO t2 VALUES(24983, 43067, 'forty-three thousand sixty-seven');\nINSERT INTO t2 VALUES(24984, 3320, 'three thousand three hundred twenty');\nINSERT INTO t2 VALUES(24985, 15960, 'fifteen thousand nine hundred sixty');\nINSERT INTO t2 VALUES(24986, 63272, 'sixty-three thousand two hundred seventy-two');\nINSERT INTO t2 VALUES(24987, 2447, 'two thousand four hundred forty-seven');\nINSERT INTO t2 VALUES(24988, 13742, 'thirteen thousand seven hundred forty-two');\nINSERT INTO t2 VALUES(24989, 18875, 'eighteen thousand eight hundred seventy-five');\nINSERT INTO t2 VALUES(24990, 92635, 'ninety-two thousand six hundred thirty-five');\nINSERT INTO t2 VALUES(24991, 99535, 'ninety-nine thousand five hundred thirty-five');\nINSERT INTO t2 VALUES(24992, 20112, 'twenty thousand one hundred twelve');\nINSERT INTO t2 VALUES(24993, 93759, 'ninety-three thousand seven hundred fifty-nine');\nINSERT INTO t2 VALUES(24994, 32135, 'thirty-two thousand one hundred thirty-five');\nINSERT INTO t2 VALUES(24995, 56099, 'fifty-six thousand ninety-nine');\nINSERT INTO t2 VALUES(24996, 14588, 'fourteen thousand five hundred eighty-eight');\nINSERT INTO t2 VALUES(24997, 68339, 'sixty-eight thousand three hundred thirty-nine');\nINSERT INTO t2 VALUES(24998, 33916, 'thirty-three thousand nine hundred sixteen');\nINSERT INTO t2 VALUES(24999, 58227, 'fifty-eight thousand two hundred twenty-seven');\nINSERT INTO t2 VALUES(25000, 94446, 'ninety-four thousand four hundred forty-six');\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark3.1.sql",
    "content": "BEGIN;\nCREATE TABLE t3_1(a INTEGER, b INTEGER, c VARCHAR(100));\nCREATE INDEX i3_1 ON t3(c);\nINSERT INTO t3_1 VALUES\n(1, 90183, 'ninety thousand one hundred eighty-three'),\n(2, 65182, 'sixty-five thousand one hundred eighty-two'),\n(3, 79184, 'seventy-nine thousand one hundred eighty-four'),\n(4, 62773, 'sixty-two thousand seven hundred seventy-three'),\n(5, 6630, 'six thousand six hundred thirty'),\n(6, 79715, 'seventy-nine thousand seven hundred fifteen'),\n(7, 49778, 'forty-nine thousand seven hundred seventy-eight'),\n(8, 33198, 'thirty-three thousand one hundred ninety-eight'),\n(9, 59322, 'fifty-nine thousand three hundred twenty-two'),\n(10, 48234, 'forty-eight thousand two hundred thirty-four'),\n(11, 21538, 'twenty-one thousand five hundred thirty-eight'),\n(12, 24452, 'twenty-four thousand four hundred fifty-two'),\n(13, 23004, 'twenty-three thousand four'),\n(14, 1240, 'one thousand two hundred forty'),\n(15, 63122, 'sixty-three thousand one hundred twenty-two'),\n(16, 56286, 'fifty-six thousand two hundred eighty-six'),\n(17, 25005, 'twenty-five thousand five'),\n(18, 944, 'nine hundred forty-four'),\n(19, 80737, 'eighty thousand seven hundred thirty-seven'),\n(20, 16724, 'sixteen thousand seven hundred twenty-four'),\n(21, 31354, 'thirty-one thousand three hundred fifty-four'),\n(22, 17696, 'seventeen thousand six hundred ninety-six'),\n(23, 44146, 'forty-four thousand one hundred forty-six'),\n(24, 14105, 'fourteen thousand one hundred five'),\n(25, 56396, 'fifty-six thousand three hundred ninety-six'),\n(26, 34947, 'thirty-four thousand nine hundred forty-seven'),\n(27, 73851, 'seventy-three thousand eight hundred fifty-one'),\n(28, 36410, 'thirty-six thousand four hundred ten'),\n(29, 68033, 'sixty-eight thousand thirty-three'),\n(30, 72153, 'seventy-two thousand one hundred fifty-three'),\n(31, 29430, 'twenty-nine thousand four hundred thirty'),\n(32, 435, 'four hundred thirty-five'),\n(33, 8430, 'eight thousand four hundred thirty'),\n(34, 64854, 'sixty-four thousand eight hundred fifty-four'),\n(35, 50457, 'fifty thousand four hundred fifty-seven'),\n(36, 28095, 'twenty-eight thousand ninety-five'),\n(37, 87893, 'eighty-seven thousand eight hundred ninety-three'),\n(38, 81207, 'eighty-one thousand two hundred seven'),\n(39, 72268, 'seventy-two thousand two hundred sixty-eight'),\n(40, 45940, 'forty-five thousand nine hundred forty'),\n(41, 55242, 'fifty-five thousand two hundred forty-two'),\n(42, 7100, 'seven thousand one hundred'),\n(43, 35460, 'thirty-five thousand four hundred sixty'),\n(44, 20012, 'twenty thousand twelve'),\n(45, 95948, 'ninety-five thousand nine hundred forty-eight'),\n(46, 12696, 'twelve thousand six hundred ninety-six'),\n(47, 81014, 'eighty-one thousand fourteen'),\n(48, 73388, 'seventy-three thousand three hundred eighty-eight'),\n(49, 52983, 'fifty-two thousand nine hundred eighty-three'),\n(50, 19671, 'nineteen thousand six hundred seventy-one'),\n(51, 16274, 'sixteen thousand two hundred seventy-four'),\n(52, 82940, 'eighty-two thousand nine hundred forty'),\n(53, 67503, 'sixty-seven thousand five hundred three'),\n(54, 13522, 'thirteen thousand five hundred twenty-two'),\n(55, 51083, 'fifty-one thousand eighty-three'),\n(56, 2617, 'two thousand six hundred seventeen'),\n(57, 23555, 'twenty-three thousand five hundred fifty-five'),\n(58, 89075, 'eighty-nine thousand seventy-five'),\n(59, 49313, 'forty-nine thousand three hundred thirteen'),\n(60, 78873, 'seventy-eight thousand eight hundred seventy-three'),\n(61, 84645, 'eighty-four thousand six hundred forty-five'),\n(62, 89920, 'eighty-nine thousand nine hundred twenty'),\n(63, 58805, 'fifty-eight thousand eight hundred five'),\n(64, 53068, 'fifty-three thousand sixty-eight'),\n(65, 68084, 'sixty-eight thousand eighty-four'),\n(66, 29207, 'twenty-nine thousand two hundred seven'),\n(67, 63457, 'sixty-three thousand four hundred fifty-seven'),\n(68, 40143, 'forty thousand one hundred forty-three'),\n(69, 62048, 'sixty-two thousand forty-eight'),\n(70, 36006, 'thirty-six thousand six'),\n(71, 83152, 'eighty-three thousand one hundred fifty-two'),\n(72, 13387, 'thirteen thousand three hundred eighty-seven'),\n(73, 50704, 'fifty thousand seven hundred four'),\n(74, 39743, 'thirty-nine thousand seven hundred forty-three'),\n(75, 44716, 'forty-four thousand seven hundred sixteen'),\n(76, 31685, 'thirty-one thousand six hundred eighty-five'),\n(77, 65893, 'sixty-five thousand eight hundred ninety-three'),\n(78, 62854, 'sixty-two thousand eight hundred fifty-four'),\n(79, 8739, 'eight thousand seven hundred thirty-nine'),\n(80, 26513, 'twenty-six thousand five hundred thirteen'),\n(81, 59948, 'fifty-nine thousand nine hundred forty-eight'),\n(82, 73120, 'seventy-three thousand one hundred twenty'),\n(83, 96520, 'ninety-six thousand five hundred twenty'),\n(84, 86506, 'eighty-six thousand five hundred six'),\n(85, 3172, 'three thousand one hundred seventy-two'),\n(86, 10494, 'ten thousand four hundred ninety-four'),\n(87, 22034, 'twenty-two thousand thirty-four'),\n(88, 65036, 'sixty-five thousand thirty-six'),\n(89, 51863, 'fifty-one thousand eight hundred sixty-three'),\n(90, 62035, 'sixty-two thousand thirty-five'),\n(91, 59883, 'fifty-nine thousand eight hundred eighty-three'),\n(92, 70677, 'seventy thousand six hundred seventy-seven'),\n(93, 95902, 'ninety-five thousand nine hundred two'),\n(94, 83317, 'eighty-three thousand three hundred seventeen'),\n(95, 89743, 'eighty-nine thousand seven hundred forty-three'),\n(96, 63528, 'sixty-three thousand five hundred twenty-eight'),\n(97, 76909, 'seventy-six thousand nine hundred nine'),\n(98, 96469, 'ninety-six thousand four hundred sixty-nine'),\n(99, 46474, 'forty-six thousand four hundred seventy-four'),\n(100, 64326, 'sixty-four thousand three hundred twenty-six'),\n(101, 81805, 'eighty-one thousand eight hundred five'),\n(102, 38591, 'thirty-eight thousand five hundred ninety-one'),\n(103, 3909, 'three thousand nine hundred nine'),\n(104, 85755, 'eighty-five thousand seven hundred fifty-five'),\n(105, 99762, 'ninety-nine thousand seven hundred sixty-two'),\n(106, 56813, 'fifty-six thousand eight hundred thirteen'),\n(107, 50487, 'fifty thousand four hundred eighty-seven'),\n(108, 73438, 'seventy-three thousand four hundred thirty-eight'),\n(109, 26555, 'twenty-six thousand five hundred fifty-five'),\n(110, 76235, 'seventy-six thousand two hundred thirty-five'),\n(111, 1879, 'one thousand eight hundred seventy-nine'),\n(112, 21174, 'twenty-one thousand one hundred seventy-four'),\n(113, 99289, 'ninety-nine thousand two hundred eighty-nine'),\n(114, 72523, 'seventy-two thousand five hundred twenty-three'),\n(115, 93286, 'ninety-three thousand two hundred eighty-six'),\n(116, 76012, 'seventy-six thousand twelve'),\n(117, 9372, 'nine thousand three hundred seventy-two'),\n(118, 33992, 'thirty-three thousand nine hundred ninety-two'),\n(119, 9869, 'nine thousand eight hundred sixty-nine'),\n(120, 87554, 'eighty-seven thousand five hundred fifty-four'),\n(121, 27130, 'twenty-seven thousand one hundred thirty'),\n(122, 24420, 'twenty-four thousand four hundred twenty'),\n(123, 81218, 'eighty-one thousand two hundred eighteen'),\n(124, 87915, 'eighty-seven thousand nine hundred fifteen'),\n(125, 82797, 'eighty-two thousand seven hundred ninety-seven'),\n(126, 99867, 'ninety-nine thousand eight hundred sixty-seven'),\n(127, 45608, 'forty-five thousand six hundred eight'),\n(128, 27027, 'twenty-seven thousand twenty-seven'),\n(129, 10148, 'ten thousand one hundred forty-eight'),\n(130, 90119, 'ninety thousand one hundred nineteen'),\n(131, 3539, 'three thousand five hundred thirty-nine'),\n(132, 14278, 'fourteen thousand two hundred seventy-eight'),\n(133, 70628, 'seventy thousand six hundred twenty-eight'),\n(134, 40495, 'forty thousand four hundred ninety-five'),\n(135, 77630, 'seventy-seven thousand six hundred thirty'),\n(136, 24919, 'twenty-four thousand nine hundred nineteen'),\n(137, 563, 'five hundred sixty-three'),\n(138, 13613, 'thirteen thousand six hundred thirteen'),\n(139, 83588, 'eighty-three thousand five hundred eighty-eight'),\n(140, 27930, 'twenty-seven thousand nine hundred thirty'),\n(141, 30958, 'thirty thousand nine hundred fifty-eight'),\n(142, 75153, 'seventy-five thousand one hundred fifty-three'),\n(143, 99222, 'ninety-nine thousand two hundred twenty-two'),\n(144, 32451, 'thirty-two thousand four hundred fifty-one'),\n(145, 76632, 'seventy-six thousand six hundred thirty-two'),\n(146, 34681, 'thirty-four thousand six hundred eighty-one'),\n(147, 32317, 'thirty-two thousand three hundred seventeen'),\n(148, 56149, 'fifty-six thousand one hundred forty-nine'),\n(149, 60229, 'sixty thousand two hundred twenty-nine'),\n(150, 19532, 'nineteen thousand five hundred thirty-two'),\n(151, 87902, 'eighty-seven thousand nine hundred two'),\n(152, 40686, 'forty thousand six hundred eighty-six'),\n(153, 46888, 'forty-six thousand eight hundred eighty-eight'),\n(154, 12672, 'twelve thousand six hundred seventy-two'),\n(155, 74042, 'seventy-four thousand forty-two'),\n(156, 43172, 'forty-three thousand one hundred seventy-two'),\n(157, 41588, 'forty-one thousand five hundred eighty-eight'),\n(158, 58654, 'fifty-eight thousand six hundred fifty-four'),\n(159, 80637, 'eighty thousand six hundred thirty-seven'),\n(160, 25022, 'twenty-five thousand twenty-two'),\n(161, 2878, 'two thousand eight hundred seventy-eight'),\n(162, 87182, 'eighty-seven thousand one hundred eighty-two'),\n(163, 34851, 'thirty-four thousand eight hundred fifty-one'),\n(164, 4544, 'four thousand five hundred forty-four'),\n(165, 75925, 'seventy-five thousand nine hundred twenty-five'),\n(166, 65362, 'sixty-five thousand three hundred sixty-two'),\n(167, 51857, 'fifty-one thousand eight hundred fifty-seven'),\n(168, 81481, 'eighty-one thousand four hundred eighty-one'),\n(169, 66526, 'sixty-six thousand five hundred twenty-six'),\n(170, 47242, 'forty-seven thousand two hundred forty-two'),\n(171, 81290, 'eighty-one thousand two hundred ninety'),\n(172, 98004, 'ninety-eight thousand four'),\n(173, 80313, 'eighty thousand three hundred thirteen'),\n(174, 93361, 'ninety-three thousand three hundred sixty-one'),\n(175, 29697, 'twenty-nine thousand six hundred ninety-seven'),\n(176, 33778, 'thirty-three thousand seven hundred seventy-eight'),\n(177, 88134, 'eighty-eight thousand one hundred thirty-four'),\n(178, 30768, 'thirty thousand seven hundred sixty-eight'),\n(179, 26673, 'twenty-six thousand six hundred seventy-three'),\n(180, 86295, 'eighty-six thousand two hundred ninety-five'),\n(181, 41292, 'forty-one thousand two hundred ninety-two'),\n(182, 74272, 'seventy-four thousand two hundred seventy-two'),\n(183, 84254, 'eighty-four thousand two hundred fifty-four'),\n(184, 5812, 'five thousand eight hundred twelve'),\n(185, 12042, 'twelve thousand forty-two'),\n(186, 11546, 'eleven thousand five hundred forty-six'),\n(187, 60254, 'sixty thousand two hundred fifty-four'),\n(188, 39302, 'thirty-nine thousand three hundred two'),\n(189, 1812, 'one thousand eight hundred twelve'),\n(190, 12018, 'twelve thousand eighteen'),\n(191, 94386, 'ninety-four thousand three hundred eighty-six'),\n(192, 44723, 'forty-four thousand seven hundred twenty-three'),\n(193, 9197, 'nine thousand one hundred ninety-seven'),\n(194, 99234, 'ninety-nine thousand two hundred thirty-four'),\n(195, 36549, 'thirty-six thousand five hundred forty-nine'),\n(196, 99550, 'ninety-nine thousand five hundred fifty'),\n(197, 68978, 'sixty-eight thousand nine hundred seventy-eight'),\n(198, 75951, 'seventy-five thousand nine hundred fifty-one'),\n(199, 41705, 'forty-one thousand seven hundred five'),\n(200, 10998, 'ten thousand nine hundred ninety-eight'),\n(201, 36868, 'thirty-six thousand eight hundred sixty-eight'),\n(202, 17944, 'seventeen thousand nine hundred forty-four'),\n(203, 28310, 'twenty-eight thousand three hundred ten'),\n(204, 50765, 'fifty thousand seven hundred sixty-five'),\n(205, 58754, 'fifty-eight thousand seven hundred fifty-four'),\n(206, 68159, 'sixty-eight thousand one hundred fifty-nine'),\n(207, 1578, 'one thousand five hundred seventy-eight'),\n(208, 77708, 'seventy-seven thousand seven hundred eight'),\n(209, 2248, 'two thousand two hundred forty-eight'),\n(210, 56563, 'fifty-six thousand five hundred sixty-three'),\n(211, 39829, 'thirty-nine thousand eight hundred twenty-nine'),\n(212, 47346, 'forty-seven thousand three hundred forty-six'),\n(213, 73875, 'seventy-three thousand eight hundred seventy-five'),\n(214, 78489, 'seventy-eight thousand four hundred eighty-nine'),\n(215, 375, 'three hundred seventy-five'),\n(216, 89242, 'eighty-nine thousand two hundred forty-two'),\n(217, 3818, 'three thousand eight hundred eighteen'),\n(218, 35355, 'thirty-five thousand three hundred fifty-five'),\n(219, 9835, 'nine thousand eight hundred thirty-five'),\n(220, 20768, 'twenty thousand seven hundred sixty-eight'),\n(221, 43749, 'forty-three thousand seven hundred forty-nine'),\n(222, 23736, 'twenty-three thousand seven hundred thirty-six'),\n(223, 8111, 'eight thousand one hundred eleven'),\n(224, 37926, 'thirty-seven thousand nine hundred twenty-six'),\n(225, 25507, 'twenty-five thousand five hundred seven'),\n(226, 44121, 'forty-four thousand one hundred twenty-one'),\n(227, 23445, 'twenty-three thousand four hundred forty-five'),\n(228, 5392, 'five thousand three hundred ninety-two'),\n(229, 96000, 'ninety-six thousand'),\n(230, 69638, 'sixty-nine thousand six hundred thirty-eight'),\n(231, 44145, 'forty-four thousand one hundred forty-five'),\n(232, 32916, 'thirty-two thousand nine hundred sixteen'),\n(233, 85171, 'eighty-five thousand one hundred seventy-one'),\n(234, 2597, 'two thousand five hundred ninety-seven'),\n(235, 61625, 'sixty-one thousand six hundred twenty-five'),\n(236, 88977, 'eighty-eight thousand nine hundred seventy-seven'),\n(237, 57311, 'fifty-seven thousand three hundred eleven'),\n(238, 26687, 'twenty-six thousand six hundred eighty-seven'),\n(239, 20185, 'twenty thousand one hundred eighty-five'),\n(240, 82839, 'eighty-two thousand eight hundred thirty-nine'),\n(241, 13801, 'thirteen thousand eight hundred one'),\n(242, 53847, 'fifty-three thousand eight hundred forty-seven'),\n(243, 68561, 'sixty-eight thousand five hundred sixty-one'),\n(244, 19898, 'nineteen thousand eight hundred ninety-eight'),\n(245, 63660, 'sixty-three thousand six hundred sixty'),\n(246, 63738, 'sixty-three thousand seven hundred thirty-eight'),\n(247, 6887, 'six thousand eight hundred eighty-seven'),\n(248, 94457, 'ninety-four thousand four hundred fifty-seven'),\n(249, 37683, 'thirty-seven thousand six hundred eighty-three'),\n(250, 85191, 'eighty-five thousand one hundred ninety-one'),\n(251, 79271, 'seventy-nine thousand two hundred seventy-one'),\n(252, 43173, 'forty-three thousand one hundred seventy-three'),\n(253, 9368, 'nine thousand three hundred sixty-eight'),\n(254, 66602, 'sixty-six thousand six hundred two'),\n(255, 58241, 'fifty-eight thousand two hundred forty-one'),\n(256, 7657, 'seven thousand six hundred fifty-seven'),\n(257, 42926, 'forty-two thousand nine hundred twenty-six'),\n(258, 90780, 'ninety thousand seven hundred eighty'),\n(259, 24357, 'twenty-four thousand three hundred fifty-seven'),\n(260, 28660, 'twenty-eight thousand six hundred sixty'),\n(261, 17525, 'seventeen thousand five hundred twenty-five'),\n(262, 32537, 'thirty-two thousand five hundred thirty-seven'),\n(263, 78891, 'seventy-eight thousand eight hundred ninety-one'),\n(264, 76052, 'seventy-six thousand fifty-two'),\n(265, 55990, 'fifty-five thousand nine hundred ninety'),\n(266, 85622, 'eighty-five thousand six hundred twenty-two'),\n(267, 59213, 'fifty-nine thousand two hundred thirteen'),\n(268, 8091, 'eight thousand ninety-one'),\n(269, 20089, 'twenty thousand eighty-nine'),\n(270, 10462, 'ten thousand four hundred sixty-two'),\n(271, 25496, 'twenty-five thousand four hundred ninety-six'),\n(272, 51072, 'fifty-one thousand seventy-two'),\n(273, 195, 'one hundred ninety-five'),\n(274, 67763, 'sixty-seven thousand seven hundred sixty-three'),\n(275, 13734, 'thirteen thousand seven hundred thirty-four'),\n(276, 63678, 'sixty-three thousand six hundred seventy-eight'),\n(277, 147, 'one hundred forty-seven'),\n(278, 18492, 'eighteen thousand four hundred ninety-two'),\n(279, 88892, 'eighty-eight thousand eight hundred ninety-two'),\n(280, 30787, 'thirty thousand seven hundred eighty-seven'),\n(281, 7265, 'seven thousand two hundred sixty-five'),\n(282, 24479, 'twenty-four thousand four hundred seventy-nine'),\n(283, 20177, 'twenty thousand one hundred seventy-seven'),\n(284, 67194, 'sixty-seven thousand one hundred ninety-four'),\n(285, 52662, 'fifty-two thousand six hundred sixty-two'),\n(286, 35497, 'thirty-five thousand four hundred ninety-seven'),\n(287, 36529, 'thirty-six thousand five hundred twenty-nine'),\n(288, 36482, 'thirty-six thousand four hundred eighty-two'),\n(289, 39017, 'thirty-nine thousand seventeen'),\n(290, 29718, 'twenty-nine thousand seven hundred eighteen'),\n(291, 38728, 'thirty-eight thousand seven hundred twenty-eight'),\n(292, 78773, 'seventy-eight thousand seven hundred seventy-three'),\n(293, 92733, 'ninety-two thousand seven hundred thirty-three'),\n(294, 6736, 'six thousand seven hundred thirty-six'),\n(295, 66806, 'sixty-six thousand eight hundred six'),\n(296, 86980, 'eighty-six thousand nine hundred eighty'),\n(297, 29884, 'twenty-nine thousand eight hundred eighty-four'),\n(298, 30679, 'thirty thousand six hundred seventy-nine'),\n(299, 79306, 'seventy-nine thousand three hundred six'),\n(300, 65953, 'sixty-five thousand nine hundred fifty-three'),\n(301, 17438, 'seventeen thousand four hundred thirty-eight'),\n(302, 38751, 'thirty-eight thousand seven hundred fifty-one'),\n(303, 46399, 'forty-six thousand three hundred ninety-nine'),\n(304, 78452, 'seventy-eight thousand four hundred fifty-two'),\n(305, 20000, 'twenty thousand'),\n(306, 13194, 'thirteen thousand one hundred ninety-four'),\n(307, 81019, 'eighty-one thousand nineteen'),\n(308, 76798, 'seventy-six thousand seven hundred ninety-eight'),\n(309, 22161, 'twenty-two thousand one hundred sixty-one'),\n(310, 37233, 'thirty-seven thousand two hundred thirty-three'),\n(311, 74787, 'seventy-four thousand seven hundred eighty-seven'),\n(312, 30941, 'thirty thousand nine hundred forty-one'),\n(313, 78402, 'seventy-eight thousand four hundred two'),\n(314, 16427, 'sixteen thousand four hundred twenty-seven'),\n(315, 82948, 'eighty-two thousand nine hundred forty-eight'),\n(316, 5416, 'five thousand four hundred sixteen'),\n(317, 58180, 'fifty-eight thousand one hundred eighty'),\n(318, 55537, 'fifty-five thousand five hundred thirty-seven'),\n(319, 83931, 'eighty-three thousand nine hundred thirty-one'),\n(320, 25393, 'twenty-five thousand three hundred ninety-three'),\n(321, 88398, 'eighty-eight thousand three hundred ninety-eight'),\n(322, 53156, 'fifty-three thousand one hundred fifty-six'),\n(323, 39695, 'thirty-nine thousand six hundred ninety-five'),\n(324, 35844, 'thirty-five thousand eight hundred forty-four'),\n(325, 11225, 'eleven thousand two hundred twenty-five'),\n(326, 35707, 'thirty-five thousand seven hundred seven'),\n(327, 29558, 'twenty-nine thousand five hundred fifty-eight'),\n(328, 80039, 'eighty thousand thirty-nine'),\n(329, 23028, 'twenty-three thousand twenty-eight'),\n(330, 5767, 'five thousand seven hundred sixty-seven'),\n(331, 1959, 'one thousand nine hundred fifty-nine'),\n(332, 21325, 'twenty-one thousand three hundred twenty-five'),\n(333, 81488, 'eighty-one thousand four hundred eighty-eight'),\n(334, 12011, 'twelve thousand eleven'),\n(335, 19694, 'nineteen thousand six hundred ninety-four'),\n(336, 84000, 'eighty-four thousand'),\n(337, 72761, 'seventy-two thousand seven hundred sixty-one'),\n(338, 24198, 'twenty-four thousand one hundred ninety-eight'),\n(339, 30422, 'thirty thousand four hundred twenty-two'),\n(340, 75099, 'seventy-five thousand ninety-nine'),\n(341, 4255, 'four thousand two hundred fifty-five'),\n(342, 48202, 'forty-eight thousand two hundred two'),\n(343, 53180, 'fifty-three thousand one hundred eighty'),\n(344, 56346, 'fifty-six thousand three hundred forty-six'),\n(345, 94707, 'ninety-four thousand seven hundred seven'),\n(346, 28275, 'twenty-eight thousand two hundred seventy-five'),\n(347, 20096, 'twenty thousand ninety-six'),\n(348, 66336, 'sixty-six thousand three hundred thirty-six'),\n(349, 45394, 'forty-five thousand three hundred ninety-four'),\n(350, 99448, 'ninety-nine thousand four hundred forty-eight'),\n(351, 29637, 'twenty-nine thousand six hundred thirty-seven'),\n(352, 14212, 'fourteen thousand two hundred twelve'),\n(353, 72503, 'seventy-two thousand five hundred three'),\n(354, 82096, 'eighty-two thousand ninety-six'),\n(355, 24848, 'twenty-four thousand eight hundred forty-eight'),\n(356, 79870, 'seventy-nine thousand eight hundred seventy'),\n(357, 61332, 'sixty-one thousand three hundred thirty-two'),\n(358, 99109, 'ninety-nine thousand one hundred nine'),\n(359, 22266, 'twenty-two thousand two hundred sixty-six'),\n(360, 55154, 'fifty-five thousand one hundred fifty-four'),\n(361, 99933, 'ninety-nine thousand nine hundred thirty-three'),\n(362, 49927, 'forty-nine thousand nine hundred twenty-seven'),\n(363, 15041, 'fifteen thousand forty-one'),\n(364, 34503, 'thirty-four thousand five hundred three'),\n(365, 34573, 'thirty-four thousand five hundred seventy-three'),\n(366, 78481, 'seventy-eight thousand four hundred eighty-one'),\n(367, 98233, 'ninety-eight thousand two hundred thirty-three'),\n(368, 70101, 'seventy thousand one hundred one'),\n(369, 89364, 'eighty-nine thousand three hundred sixty-four'),\n(370, 37758, 'thirty-seven thousand seven hundred fifty-eight'),\n(371, 90088, 'ninety thousand eighty-eight'),\n(372, 94690, 'ninety-four thousand six hundred ninety'),\n(373, 27142, 'twenty-seven thousand one hundred forty-two'),\n(374, 50630, 'fifty thousand six hundred thirty'),\n(375, 44828, 'forty-four thousand eight hundred twenty-eight'),\n(376, 98807, 'ninety-eight thousand eight hundred seven'),\n(377, 90633, 'ninety thousand six hundred thirty-three'),\n(378, 34161, 'thirty-four thousand one hundred sixty-one'),\n(379, 50847, 'fifty thousand eight hundred forty-seven'),\n(380, 10041, 'ten thousand forty-one'),\n(381, 66663, 'sixty-six thousand six hundred sixty-three'),\n(382, 59676, 'fifty-nine thousand six hundred seventy-six'),\n(383, 1066, 'one thousand sixty-six'),\n(384, 36999, 'thirty-six thousand nine hundred ninety-nine'),\n(385, 51597, 'fifty-one thousand five hundred ninety-seven'),\n(386, 10998, 'ten thousand nine hundred ninety-eight'),\n(387, 23753, 'twenty-three thousand seven hundred fifty-three'),\n(388, 42331, 'forty-two thousand three hundred thirty-one'),\n(389, 28060, 'twenty-eight thousand sixty'),\n(390, 50748, 'fifty thousand seven hundred forty-eight'),\n(391, 63826, 'sixty-three thousand eight hundred twenty-six'),\n(392, 40657, 'forty thousand six hundred fifty-seven'),\n(393, 46977, 'forty-six thousand nine hundred seventy-seven'),\n(394, 78180, 'seventy-eight thousand one hundred eighty'),\n(395, 53102, 'fifty-three thousand one hundred two'),\n(396, 48776, 'forty-eight thousand seven hundred seventy-six'),\n(397, 53364, 'fifty-three thousand three hundred sixty-four'),\n(398, 33461, 'thirty-three thousand four hundred sixty-one'),\n(399, 16726, 'sixteen thousand seven hundred twenty-six'),\n(400, 56266, 'fifty-six thousand two hundred sixty-six'),\n(401, 6527, 'six thousand five hundred twenty-seven'),\n(402, 79, 'seventy-nine'),\n(403, 57142, 'fifty-seven thousand one hundred forty-two'),\n(404, 60814, 'sixty thousand eight hundred fourteen'),\n(405, 10460, 'ten thousand four hundred sixty'),\n(406, 47929, 'forty-seven thousand nine hundred twenty-nine'),\n(407, 915, 'nine hundred fifteen'),\n(408, 8265, 'eight thousand two hundred sixty-five'),\n(409, 61283, 'sixty-one thousand two hundred eighty-three'),\n(410, 74918, 'seventy-four thousand nine hundred eighteen'),\n(411, 94696, 'ninety-four thousand six hundred ninety-six'),\n(412, 20180, 'twenty thousand one hundred eighty'),\n(413, 51296, 'fifty-one thousand two hundred ninety-six'),\n(414, 4759, 'four thousand seven hundred fifty-nine'),\n(415, 97901, 'ninety-seven thousand nine hundred one'),\n(416, 63344, 'sixty-three thousand three hundred forty-four'),\n(417, 87408, 'eighty-seven thousand four hundred eight'),\n(418, 73199, 'seventy-three thousand one hundred ninety-nine'),\n(419, 4080, 'four thousand eighty'),\n(420, 83058, 'eighty-three thousand fifty-eight'),\n(421, 26771, 'twenty-six thousand seven hundred seventy-one'),\n(422, 53218, 'fifty-three thousand two hundred eighteen'),\n(423, 25723, 'twenty-five thousand seven hundred twenty-three'),\n(424, 90849, 'ninety thousand eight hundred forty-nine'),\n(425, 92601, 'ninety-two thousand six hundred one'),\n(426, 6504, 'six thousand five hundred four'),\n(427, 29563, 'twenty-nine thousand five hundred sixty-three'),\n(428, 68593, 'sixty-eight thousand five hundred ninety-three'),\n(429, 65691, 'sixty-five thousand six hundred ninety-one'),\n(430, 43039, 'forty-three thousand thirty-nine'),\n(431, 58255, 'fifty-eight thousand two hundred fifty-five'),\n(432, 80688, 'eighty thousand six hundred eighty-eight'),\n(433, 88514, 'eighty-eight thousand five hundred fourteen'),\n(434, 79061, 'seventy-nine thousand sixty-one'),\n(435, 3809, 'three thousand eight hundred nine'),\n(436, 13032, 'thirteen thousand thirty-two'),\n(437, 5484, 'five thousand four hundred eighty-four'),\n(438, 92694, 'ninety-two thousand six hundred ninety-four'),\n(439, 30988, 'thirty thousand nine hundred eighty-eight'),\n(440, 47634, 'forty-seven thousand six hundred thirty-four'),\n(441, 93286, 'ninety-three thousand two hundred eighty-six'),\n(442, 52092, 'fifty-two thousand ninety-two'),\n(443, 25338, 'twenty-five thousand three hundred thirty-eight'),\n(444, 27407, 'twenty-seven thousand four hundred seven'),\n(445, 31005, 'thirty-one thousand five'),\n(446, 51089, 'fifty-one thousand eighty-nine'),\n(447, 67611, 'sixty-seven thousand six hundred eleven'),\n(448, 59140, 'fifty-nine thousand one hundred forty'),\n(449, 62305, 'sixty-two thousand three hundred five'),\n(450, 65481, 'sixty-five thousand four hundred eighty-one'),\n(451, 56582, 'fifty-six thousand five hundred eighty-two'),\n(452, 73844, 'seventy-three thousand eight hundred forty-four'),\n(453, 80966, 'eighty thousand nine hundred sixty-six'),\n(454, 63129, 'sixty-three thousand one hundred twenty-nine'),\n(455, 54072, 'fifty-four thousand seventy-two'),\n(456, 89320, 'eighty-nine thousand three hundred twenty'),\n(457, 82740, 'eighty-two thousand seven hundred forty'),\n(458, 80819, 'eighty thousand eight hundred nineteen'),\n(459, 77771, 'seventy-seven thousand seven hundred seventy-one'),\n(460, 60669, 'sixty thousand six hundred sixty-nine'),\n(461, 39184, 'thirty-nine thousand one hundred eighty-four'),\n(462, 68848, 'sixty-eight thousand eight hundred forty-eight'),\n(463, 99938, 'ninety-nine thousand nine hundred thirty-eight'),\n(464, 93791, 'ninety-three thousand seven hundred ninety-one'),\n(465, 24279, 'twenty-four thousand two hundred seventy-nine'),\n(466, 15217, 'fifteen thousand two hundred seventeen'),\n(467, 12705, 'twelve thousand seven hundred five'),\n(468, 82683, 'eighty-two thousand six hundred eighty-three'),\n(469, 7164, 'seven thousand one hundred sixty-four'),\n(470, 75594, 'seventy-five thousand five hundred ninety-four'),\n(471, 2754, 'two thousand seven hundred fifty-four'),\n(472, 71229, 'seventy-one thousand two hundred twenty-nine'),\n(473, 21874, 'twenty-one thousand eight hundred seventy-four'),\n(474, 9216, 'nine thousand two hundred sixteen'),\n(475, 65001, 'sixty-five thousand one'),\n(476, 28692, 'twenty-eight thousand six hundred ninety-two'),\n(477, 78230, 'seventy-eight thousand two hundred thirty'),\n(478, 120, 'one hundred twenty'),\n(479, 19649, 'nineteen thousand six hundred forty-nine'),\n(480, 40790, 'forty thousand seven hundred ninety'),\n(481, 34612, 'thirty-four thousand six hundred twelve'),\n(482, 61303, 'sixty-one thousand three hundred three'),\n(483, 29631, 'twenty-nine thousand six hundred thirty-one'),\n(484, 92284, 'ninety-two thousand two hundred eighty-four'),\n(485, 13349, 'thirteen thousand three hundred forty-nine'),\n(486, 74211, 'seventy-four thousand two hundred eleven'),\n(487, 39512, 'thirty-nine thousand five hundred twelve'),\n(488, 50529, 'fifty thousand five hundred twenty-nine'),\n(489, 4724, 'four thousand seven hundred twenty-four'),\n(490, 78296, 'seventy-eight thousand two hundred ninety-six'),\n(491, 66338, 'sixty-six thousand three hundred thirty-eight'),\n(492, 50105, 'fifty thousand one hundred five'),\n(493, 54289, 'fifty-four thousand two hundred eighty-nine'),\n(494, 89960, 'eighty-nine thousand nine hundred sixty'),\n(495, 97482, 'ninety-seven thousand four hundred eighty-two'),\n(496, 73469, 'seventy-three thousand four hundred sixty-nine'),\n(497, 37240, 'thirty-seven thousand two hundred forty'),\n(498, 25358, 'twenty-five thousand three hundred fifty-eight'),\n(499, 90833, 'ninety thousand eight hundred thirty-three'),\n(500, 67689, 'sixty-seven thousand six hundred eighty-nine'),\n(501, 86135, 'eighty-six thousand one hundred thirty-five'),\n(502, 72655, 'seventy-two thousand six hundred fifty-five'),\n(503, 14299, 'fourteen thousand two hundred ninety-nine'),\n(504, 58565, 'fifty-eight thousand five hundred sixty-five'),\n(505, 51039, 'fifty-one thousand thirty-nine'),\n(506, 3781, 'three thousand seven hundred eighty-one'),\n(507, 53031, 'fifty-three thousand thirty-one'),\n(508, 83820, 'eighty-three thousand eight hundred twenty'),\n(509, 52689, 'fifty-two thousand six hundred eighty-nine'),\n(510, 75502, 'seventy-five thousand five hundred two'),\n(511, 67061, 'sixty-seven thousand sixty-one'),\n(512, 48192, 'forty-eight thousand one hundred ninety-two'),\n(513, 43987, 'forty-three thousand nine hundred eighty-seven'),\n(514, 79375, 'seventy-nine thousand three hundred seventy-five'),\n(515, 88227, 'eighty-eight thousand two hundred twenty-seven'),\n(516, 31058, 'thirty-one thousand fifty-eight'),\n(517, 66045, 'sixty-six thousand forty-five'),\n(518, 33816, 'thirty-three thousand eight hundred sixteen'),\n(519, 20901, 'twenty thousand nine hundred one'),\n(520, 97866, 'ninety-seven thousand eight hundred sixty-six'),\n(521, 95757, 'ninety-five thousand seven hundred fifty-seven'),\n(522, 5770, 'five thousand seven hundred seventy'),\n(523, 35260, 'thirty-five thousand two hundred sixty'),\n(524, 27704, 'twenty-seven thousand seven hundred four'),\n(525, 57938, 'fifty-seven thousand nine hundred thirty-eight'),\n(526, 40212, 'forty thousand two hundred twelve'),\n(527, 23433, 'twenty-three thousand four hundred thirty-three'),\n(528, 53782, 'fifty-three thousand seven hundred eighty-two'),\n(529, 91027, 'ninety-one thousand twenty-seven'),\n(530, 24951, 'twenty-four thousand nine hundred fifty-one'),\n(531, 14166, 'fourteen thousand one hundred sixty-six'),\n(532, 4291, 'four thousand two hundred ninety-one'),\n(533, 16897, 'sixteen thousand eight hundred ninety-seven'),\n(534, 30100, 'thirty thousand one hundred'),\n(535, 15943, 'fifteen thousand nine hundred forty-three'),\n(536, 61552, 'sixty-one thousand five hundred fifty-two'),\n(537, 28251, 'twenty-eight thousand two hundred fifty-one'),\n(538, 74560, 'seventy-four thousand five hundred sixty'),\n(539, 63732, 'sixty-three thousand seven hundred thirty-two'),\n(540, 56346, 'fifty-six thousand three hundred forty-six'),\n(541, 19525, 'nineteen thousand five hundred twenty-five'),\n(542, 46029, 'forty-six thousand twenty-nine'),\n(543, 90910, 'ninety thousand nine hundred ten'),\n(544, 71723, 'seventy-one thousand seven hundred twenty-three'),\n(545, 79085, 'seventy-nine thousand eighty-five'),\n(546, 92607, 'ninety-two thousand six hundred seven'),\n(547, 96583, 'ninety-six thousand five hundred eighty-three'),\n(548, 74964, 'seventy-four thousand nine hundred sixty-four'),\n(549, 31048, 'thirty-one thousand forty-eight'),\n(550, 78469, 'seventy-eight thousand four hundred sixty-nine'),\n(551, 55499, 'fifty-five thousand four hundred ninety-nine'),\n(552, 92389, 'ninety-two thousand three hundred eighty-nine'),\n(553, 91848, 'ninety-one thousand eight hundred forty-eight'),\n(554, 65795, 'sixty-five thousand seven hundred ninety-five'),\n(555, 22453, 'twenty-two thousand four hundred fifty-three'),\n(556, 31578, 'thirty-one thousand five hundred seventy-eight'),\n(557, 47322, 'forty-seven thousand three hundred twenty-two'),\n(558, 5279, 'five thousand two hundred seventy-nine'),\n(559, 97232, 'ninety-seven thousand two hundred thirty-two'),\n(560, 41765, 'forty-one thousand seven hundred sixty-five'),\n(561, 19565, 'nineteen thousand five hundred sixty-five'),\n(562, 90673, 'ninety thousand six hundred seventy-three'),\n(563, 34856, 'thirty-four thousand eight hundred fifty-six'),\n(564, 18369, 'eighteen thousand three hundred sixty-nine'),\n(565, 66398, 'sixty-six thousand three hundred ninety-eight'),\n(566, 52590, 'fifty-two thousand five hundred ninety'),\n(567, 91644, 'ninety-one thousand six hundred forty-four'),\n(568, 34637, 'thirty-four thousand six hundred thirty-seven'),\n(569, 9244, 'nine thousand two hundred forty-four'),\n(570, 76019, 'seventy-six thousand nineteen'),\n(571, 40624, 'forty thousand six hundred twenty-four'),\n(572, 23892, 'twenty-three thousand eight hundred ninety-two'),\n(573, 12027, 'twelve thousand twenty-seven'),\n(574, 87744, 'eighty-seven thousand seven hundred forty-four'),\n(575, 92241, 'ninety-two thousand two hundred forty-one'),\n(576, 18570, 'eighteen thousand five hundred seventy'),\n(577, 12463, 'twelve thousand four hundred sixty-three'),\n(578, 27663, 'twenty-seven thousand six hundred sixty-three'),\n(579, 98405, 'ninety-eight thousand four hundred five'),\n(580, 97899, 'ninety-seven thousand eight hundred ninety-nine'),\n(581, 93129, 'ninety-three thousand one hundred twenty-nine'),\n(582, 58876, 'fifty-eight thousand eight hundred seventy-six'),\n(583, 75761, 'seventy-five thousand seven hundred sixty-one'),\n(584, 3080, 'three thousand eighty'),\n(585, 43332, 'forty-three thousand three hundred thirty-two'),\n(586, 50589, 'fifty thousand five hundred eighty-nine'),\n(587, 23157, 'twenty-three thousand one hundred fifty-seven'),\n(588, 71354, 'seventy-one thousand three hundred fifty-four'),\n(589, 29656, 'twenty-nine thousand six hundred fifty-six'),\n(590, 34077, 'thirty-four thousand seventy-seven'),\n(591, 86707, 'eighty-six thousand seven hundred seven'),\n(592, 8135, 'eight thousand one hundred thirty-five'),\n(593, 49190, 'forty-nine thousand one hundred ninety'),\n(594, 24109, 'twenty-four thousand one hundred nine'),\n(595, 2553, 'two thousand five hundred fifty-three'),\n(596, 8775, 'eight thousand seven hundred seventy-five'),\n(597, 4192, 'four thousand one hundred ninety-two'),\n(598, 16535, 'sixteen thousand five hundred thirty-five'),\n(599, 70100, 'seventy thousand one hundred'),\n(600, 72784, 'seventy-two thousand seven hundred eighty-four'),\n(601, 85207, 'eighty-five thousand two hundred seven'),\n(602, 84033, 'eighty-four thousand thirty-three'),\n(603, 50289, 'fifty thousand two hundred eighty-nine'),\n(604, 45270, 'forty-five thousand two hundred seventy'),\n(605, 15121, 'fifteen thousand one hundred twenty-one'),\n(606, 96021, 'ninety-six thousand twenty-one'),\n(607, 1700, 'one thousand seven hundred'),\n(608, 32762, 'thirty-two thousand seven hundred sixty-two'),\n(609, 98766, 'ninety-eight thousand seven hundred sixty-six'),\n(610, 4557, 'four thousand five hundred fifty-seven'),\n(611, 41504, 'forty-one thousand five hundred four'),\n(612, 87199, 'eighty-seven thousand one hundred ninety-nine'),\n(613, 55255, 'fifty-five thousand two hundred fifty-five'),\n(614, 83727, 'eighty-three thousand seven hundred twenty-seven'),\n(615, 9000, 'nine thousand'),\n(616, 22676, 'twenty-two thousand six hundred seventy-six'),\n(617, 97094, 'ninety-seven thousand ninety-four'),\n(618, 66160, 'sixty-six thousand one hundred sixty'),\n(619, 53497, 'fifty-three thousand four hundred ninety-seven'),\n(620, 61579, 'sixty-one thousand five hundred seventy-nine'),\n(621, 86571, 'eighty-six thousand five hundred seventy-one'),\n(622, 2308, 'two thousand three hundred eight'),\n(623, 35960, 'thirty-five thousand nine hundred sixty'),\n(624, 98290, 'ninety-eight thousand two hundred ninety'),\n(625, 22605, 'twenty-two thousand six hundred five'),\n(626, 73700, 'seventy-three thousand seven hundred'),\n(627, 76160, 'seventy-six thousand one hundred sixty'),\n(628, 63164, 'sixty-three thousand one hundred sixty-four'),\n(629, 54301, 'fifty-four thousand three hundred one'),\n(630, 89457, 'eighty-nine thousand four hundred fifty-seven'),\n(631, 9100, 'nine thousand one hundred'),\n(632, 45220, 'forty-five thousand two hundred twenty'),\n(633, 44339, 'forty-four thousand three hundred thirty-nine'),\n(634, 99875, 'ninety-nine thousand eight hundred seventy-five'),\n(635, 36622, 'thirty-six thousand six hundred twenty-two'),\n(636, 22818, 'twenty-two thousand eight hundred eighteen'),\n(637, 45079, 'forty-five thousand seventy-nine'),\n(638, 79120, 'seventy-nine thousand one hundred twenty'),\n(639, 19298, 'nineteen thousand two hundred ninety-eight'),\n(640, 71225, 'seventy-one thousand two hundred twenty-five'),\n(641, 21129, 'twenty-one thousand one hundred twenty-nine'),\n(642, 89568, 'eighty-nine thousand five hundred sixty-eight'),\n(643, 39972, 'thirty-nine thousand nine hundred seventy-two'),\n(644, 68251, 'sixty-eight thousand two hundred fifty-one'),\n(645, 26025, 'twenty-six thousand twenty-five'),\n(646, 66601, 'sixty-six thousand six hundred one'),\n(647, 96932, 'ninety-six thousand nine hundred thirty-two'),\n(648, 87168, 'eighty-seven thousand one hundred sixty-eight'),\n(649, 96357, 'ninety-six thousand three hundred fifty-seven'),\n(650, 20298, 'twenty thousand two hundred ninety-eight'),\n(651, 37545, 'thirty-seven thousand five hundred forty-five'),\n(652, 65636, 'sixty-five thousand six hundred thirty-six'),\n(653, 94130, 'ninety-four thousand one hundred thirty'),\n(654, 81967, 'eighty-one thousand nine hundred sixty-seven'),\n(655, 20700, 'twenty thousand seven hundred'),\n(656, 4484, 'four thousand four hundred eighty-four'),\n(657, 27452, 'twenty-seven thousand four hundred fifty-two'),\n(658, 76292, 'seventy-six thousand two hundred ninety-two'),\n(659, 42300, 'forty-two thousand three hundred'),\n(660, 40073, 'forty thousand seventy-three'),\n(661, 28949, 'twenty-eight thousand nine hundred forty-nine'),\n(662, 36759, 'thirty-six thousand seven hundred fifty-nine'),\n(663, 29034, 'twenty-nine thousand thirty-four'),\n(664, 52711, 'fifty-two thousand seven hundred eleven'),\n(665, 79385, 'seventy-nine thousand three hundred eighty-five'),\n(666, 12945, 'twelve thousand nine hundred forty-five'),\n(667, 10377, 'ten thousand three hundred seventy-seven'),\n(668, 28079, 'twenty-eight thousand seventy-nine'),\n(669, 89753, 'eighty-nine thousand seven hundred fifty-three'),\n(670, 8605, 'eight thousand six hundred five'),\n(671, 37018, 'thirty-seven thousand eighteen'),\n(672, 66150, 'sixty-six thousand one hundred fifty'),\n(673, 66564, 'sixty-six thousand five hundred sixty-four'),\n(674, 99011, 'ninety-nine thousand eleven'),\n(675, 68395, 'sixty-eight thousand three hundred ninety-five'),\n(676, 69904, 'sixty-nine thousand nine hundred four'),\n(677, 34993, 'thirty-four thousand nine hundred ninety-three'),\n(678, 2401, 'two thousand four hundred one'),\n(679, 24145, 'twenty-four thousand one hundred forty-five'),\n(680, 86250, 'eighty-six thousand two hundred fifty'),\n(681, 58318, 'fifty-eight thousand three hundred eighteen'),\n(682, 44353, 'forty-four thousand three hundred fifty-three'),\n(683, 45887, 'forty-five thousand eight hundred eighty-seven'),\n(684, 51925, 'fifty-one thousand nine hundred twenty-five'),\n(685, 52235, 'fifty-two thousand two hundred thirty-five'),\n(686, 52428, 'fifty-two thousand four hundred twenty-eight'),\n(687, 38146, 'thirty-eight thousand one hundred forty-six'),\n(688, 68723, 'sixty-eight thousand seven hundred twenty-three'),\n(689, 60883, 'sixty thousand eight hundred eighty-three'),\n(690, 18111, 'eighteen thousand one hundred eleven'),\n(691, 91083, 'ninety-one thousand eighty-three'),\n(692, 73801, 'seventy-three thousand eight hundred one'),\n(693, 78093, 'seventy-eight thousand ninety-three'),\n(694, 478, 'four hundred seventy-eight'),\n(695, 53728, 'fifty-three thousand seven hundred twenty-eight'),\n(696, 16203, 'sixteen thousand two hundred three'),\n(697, 32014, 'thirty-two thousand fourteen'),\n(698, 54762, 'fifty-four thousand seven hundred sixty-two'),\n(699, 39265, 'thirty-nine thousand two hundred sixty-five'),\n(700, 98331, 'ninety-eight thousand three hundred thirty-one'),\n(701, 72738, 'seventy-two thousand seven hundred thirty-eight'),\n(702, 93239, 'ninety-three thousand two hundred thirty-nine'),\n(703, 83486, 'eighty-three thousand four hundred eighty-six'),\n(704, 63304, 'sixty-three thousand three hundred four'),\n(705, 51732, 'fifty-one thousand seven hundred thirty-two'),\n(706, 59997, 'fifty-nine thousand nine hundred ninety-seven'),\n(707, 95198, 'ninety-five thousand one hundred ninety-eight'),\n(708, 64717, 'sixty-four thousand seven hundred seventeen'),\n(709, 77278, 'seventy-seven thousand two hundred seventy-eight'),\n(710, 60032, 'sixty thousand thirty-two'),\n(711, 30972, 'thirty thousand nine hundred seventy-two'),\n(712, 18631, 'eighteen thousand six hundred thirty-one'),\n(713, 85011, 'eighty-five thousand eleven'),\n(714, 54491, 'fifty-four thousand four hundred ninety-one'),\n(715, 3144, 'three thousand one hundred forty-four'),\n(716, 46631, 'forty-six thousand six hundred thirty-one'),\n(717, 26420, 'twenty-six thousand four hundred twenty'),\n(718, 60444, 'sixty thousand four hundred forty-four'),\n(719, 93079, 'ninety-three thousand seventy-nine'),\n(720, 65486, 'sixty-five thousand four hundred eighty-six'),\n(721, 37657, 'thirty-seven thousand six hundred fifty-seven'),\n(722, 89554, 'eighty-nine thousand five hundred fifty-four'),\n(723, 34795, 'thirty-four thousand seven hundred ninety-five'),\n(724, 61849, 'sixty-one thousand eight hundred forty-nine'),\n(725, 50893, 'fifty thousand eight hundred ninety-three'),\n(726, 54824, 'fifty-four thousand eight hundred twenty-four'),\n(727, 70141, 'seventy thousand one hundred forty-one'),\n(728, 18785, 'eighteen thousand seven hundred eighty-five'),\n(729, 71155, 'seventy-one thousand one hundred fifty-five'),\n(730, 82657, 'eighty-two thousand six hundred fifty-seven'),\n(731, 49123, 'forty-nine thousand one hundred twenty-three'),\n(732, 30704, 'thirty thousand seven hundred four'),\n(733, 34632, 'thirty-four thousand six hundred thirty-two'),\n(734, 6440, 'six thousand four hundred forty'),\n(735, 39917, 'thirty-nine thousand nine hundred seventeen'),\n(736, 92176, 'ninety-two thousand one hundred seventy-six'),\n(737, 34647, 'thirty-four thousand six hundred forty-seven'),\n(738, 13096, 'thirteen thousand ninety-six'),\n(739, 15165, 'fifteen thousand one hundred sixty-five'),\n(740, 26303, 'twenty-six thousand three hundred three'),\n(741, 63149, 'sixty-three thousand one hundred forty-nine'),\n(742, 643, 'six hundred forty-three'),\n(743, 46377, 'forty-six thousand three hundred seventy-seven'),\n(744, 75722, 'seventy-five thousand seven hundred twenty-two'),\n(745, 904, 'nine hundred four'),\n(746, 35726, 'thirty-five thousand seven hundred twenty-six'),\n(747, 31409, 'thirty-one thousand four hundred nine'),\n(748, 96595, 'ninety-six thousand five hundred ninety-five'),\n(749, 405, 'four hundred five'),\n(750, 78860, 'seventy-eight thousand eight hundred sixty'),\n(751, 78491, 'seventy-eight thousand four hundred ninety-one'),\n(752, 75500, 'seventy-five thousand five hundred'),\n(753, 88873, 'eighty-eight thousand eight hundred seventy-three'),\n(754, 75943, 'seventy-five thousand nine hundred forty-three'),\n(755, 87013, 'eighty-seven thousand thirteen'),\n(756, 80357, 'eighty thousand three hundred fifty-seven'),\n(757, 58039, 'fifty-eight thousand thirty-nine'),\n(758, 33498, 'thirty-three thousand four hundred ninety-eight'),\n(759, 63703, 'sixty-three thousand seven hundred three'),\n(760, 14663, 'fourteen thousand six hundred sixty-three'),\n(761, 27734, 'twenty-seven thousand seven hundred thirty-four'),\n(762, 84282, 'eighty-four thousand two hundred eighty-two'),\n(763, 15214, 'fifteen thousand two hundred fourteen'),\n(764, 47449, 'forty-seven thousand four hundred forty-nine'),\n(765, 30014, 'thirty thousand fourteen'),\n(766, 44734, 'forty-four thousand seven hundred thirty-four'),\n(767, 61854, 'sixty-one thousand eight hundred fifty-four'),\n(768, 3346, 'three thousand three hundred forty-six'),\n(769, 35580, 'thirty-five thousand five hundred eighty'),\n(770, 98432, 'ninety-eight thousand four hundred thirty-two'),\n(771, 300, 'three hundred'),\n(772, 55376, 'fifty-five thousand three hundred seventy-six'),\n(773, 80877, 'eighty thousand eight hundred seventy-seven'),\n(774, 43933, 'forty-three thousand nine hundred thirty-three'),\n(775, 51760, 'fifty-one thousand seven hundred sixty'),\n(776, 33696, 'thirty-three thousand six hundred ninety-six'),\n(777, 82408, 'eighty-two thousand four hundred eight'),\n(778, 14504, 'fourteen thousand five hundred four'),\n(779, 50108, 'fifty thousand one hundred eight'),\n(780, 97058, 'ninety-seven thousand fifty-eight'),\n(781, 74468, 'seventy-four thousand four hundred sixty-eight'),\n(782, 68213, 'sixty-eight thousand two hundred thirteen'),\n(783, 1076, 'one thousand seventy-six'),\n(784, 45271, 'forty-five thousand two hundred seventy-one'),\n(785, 34964, 'thirty-four thousand nine hundred sixty-four'),\n(786, 14228, 'fourteen thousand two hundred twenty-eight'),\n(787, 19200, 'nineteen thousand two hundred'),\n(788, 80414, 'eighty thousand four hundred fourteen'),\n(789, 27636, 'twenty-seven thousand six hundred thirty-six'),\n(790, 8214, 'eight thousand two hundred fourteen'),\n(791, 27386, 'twenty-seven thousand three hundred eighty-six'),\n(792, 32242, 'thirty-two thousand two hundred forty-two'),\n(793, 52548, 'fifty-two thousand five hundred forty-eight'),\n(794, 8985, 'eight thousand nine hundred eighty-five'),\n(795, 86741, 'eighty-six thousand seven hundred forty-one'),\n(796, 49915, 'forty-nine thousand nine hundred fifteen'),\n(797, 74705, 'seventy-four thousand seven hundred five'),\n(798, 30034, 'thirty thousand thirty-four'),\n(799, 61239, 'sixty-one thousand two hundred thirty-nine'),\n(800, 98196, 'ninety-eight thousand one hundred ninety-six'),\n(801, 91281, 'ninety-one thousand two hundred eighty-one'),\n(802, 84740, 'eighty-four thousand seven hundred forty'),\n(803, 2070, 'two thousand seventy'),\n(804, 78383, 'seventy-eight thousand three hundred eighty-three'),\n(805, 66789, 'sixty-six thousand seven hundred eighty-nine'),\n(806, 91529, 'ninety-one thousand five hundred twenty-nine'),\n(807, 47484, 'forty-seven thousand four hundred eighty-four'),\n(808, 34303, 'thirty-four thousand three hundred three'),\n(809, 60661, 'sixty thousand six hundred sixty-one'),\n(810, 99635, 'ninety-nine thousand six hundred thirty-five'),\n(811, 90865, 'ninety thousand eight hundred sixty-five'),\n(812, 92401, 'ninety-two thousand four hundred one'),\n(813, 89329, 'eighty-nine thousand three hundred twenty-nine'),\n(814, 58767, 'fifty-eight thousand seven hundred sixty-seven'),\n(815, 38618, 'thirty-eight thousand six hundred eighteen'),\n(816, 32645, 'thirty-two thousand six hundred forty-five'),\n(817, 60147, 'sixty thousand one hundred forty-seven'),\n(818, 77130, 'seventy-seven thousand one hundred thirty'),\n(819, 89712, 'eighty-nine thousand seven hundred twelve'),\n(820, 84405, 'eighty-four thousand four hundred five'),\n(821, 68079, 'sixty-eight thousand seventy-nine'),\n(822, 48312, 'forty-eight thousand three hundred twelve'),\n(823, 52981, 'fifty-two thousand nine hundred eighty-one'),\n(824, 67737, 'sixty-seven thousand seven hundred thirty-seven'),\n(825, 82728, 'eighty-two thousand seven hundred twenty-eight'),\n(826, 40074, 'forty thousand seventy-four'),\n(827, 42727, 'forty-two thousand seven hundred twenty-seven'),\n(828, 25509, 'twenty-five thousand five hundred nine'),\n(829, 25994, 'twenty-five thousand nine hundred ninety-four'),\n(830, 3000, 'three thousand'),\n(831, 84969, 'eighty-four thousand nine hundred sixty-nine'),\n(832, 55878, 'fifty-five thousand eight hundred seventy-eight'),\n(833, 67112, 'sixty-seven thousand one hundred twelve'),\n(834, 83937, 'eighty-three thousand nine hundred thirty-seven'),\n(835, 81016, 'eighty-one thousand sixteen'),\n(836, 40331, 'forty thousand three hundred thirty-one'),\n(837, 83067, 'eighty-three thousand sixty-seven'),\n(838, 7500, 'seven thousand five hundred'),\n(839, 43809, 'forty-three thousand eight hundred nine'),\n(840, 10120, 'ten thousand one hundred twenty'),\n(841, 69871, 'sixty-nine thousand eight hundred seventy-one'),\n(842, 63592, 'sixty-three thousand five hundred ninety-two'),\n(843, 77310, 'seventy-seven thousand three hundred ten'),\n(844, 73925, 'seventy-three thousand nine hundred twenty-five'),\n(845, 38003, 'thirty-eight thousand three'),\n(846, 72814, 'seventy-two thousand eight hundred fourteen'),\n(847, 74602, 'seventy-four thousand six hundred two'),\n(848, 91671, 'ninety-one thousand six hundred seventy-one'),\n(849, 72281, 'seventy-two thousand two hundred eighty-one'),\n(850, 26861, 'twenty-six thousand eight hundred sixty-one'),\n(851, 12126, 'twelve thousand one hundred twenty-six'),\n(852, 5096, 'five thousand ninety-six'),\n(853, 1116, 'one thousand one hundred sixteen'),\n(854, 80169, 'eighty thousand one hundred sixty-nine'),\n(855, 62297, 'sixty-two thousand two hundred ninety-seven'),\n(856, 7367, 'seven thousand three hundred sixty-seven'),\n(857, 16942, 'sixteen thousand nine hundred forty-two'),\n(858, 6685, 'six thousand six hundred eighty-five'),\n(859, 93081, 'ninety-three thousand eighty-one'),\n(860, 76562, 'seventy-six thousand five hundred sixty-two'),\n(861, 89286, 'eighty-nine thousand two hundred eighty-six'),\n(862, 72002, 'seventy-two thousand two'),\n(863, 46896, 'forty-six thousand eight hundred ninety-six'),\n(864, 91762, 'ninety-one thousand seven hundred sixty-two'),\n(865, 79775, 'seventy-nine thousand seven hundred seventy-five'),\n(866, 56480, 'fifty-six thousand four hundred eighty'),\n(867, 56775, 'fifty-six thousand seven hundred seventy-five'),\n(868, 23043, 'twenty-three thousand forty-three'),\n(869, 71859, 'seventy-one thousand eight hundred fifty-nine'),\n(870, 2224, 'two thousand two hundred twenty-four'),\n(871, 33439, 'thirty-three thousand four hundred thirty-nine'),\n(872, 49639, 'forty-nine thousand six hundred thirty-nine'),\n(873, 35035, 'thirty-five thousand thirty-five'),\n(874, 24312, 'twenty-four thousand three hundred twelve'),\n(875, 58095, 'fifty-eight thousand ninety-five'),\n(876, 93932, 'ninety-three thousand nine hundred thirty-two'),\n(877, 43410, 'forty-three thousand four hundred ten'),\n(878, 77814, 'seventy-seven thousand eight hundred fourteen'),\n(879, 8232, 'eight thousand two hundred thirty-two'),\n(880, 2192, 'two thousand one hundred ninety-two'),\n(881, 7342, 'seven thousand three hundred forty-two'),\n(882, 77610, 'seventy-seven thousand six hundred ten'),\n(883, 48520, 'forty-eight thousand five hundred twenty'),\n(884, 848, 'eight hundred forty-eight'),\n(885, 59646, 'fifty-nine thousand six hundred forty-six'),\n(886, 69356, 'sixty-nine thousand three hundred fifty-six'),\n(887, 14891, 'fourteen thousand eight hundred ninety-one'),\n(888, 6407, 'six thousand four hundred seven'),\n(889, 35514, 'thirty-five thousand five hundred fourteen'),\n(890, 68643, 'sixty-eight thousand six hundred forty-three'),\n(891, 86636, 'eighty-six thousand six hundred thirty-six'),\n(892, 39365, 'thirty-nine thousand three hundred sixty-five'),\n(893, 44205, 'forty-four thousand two hundred five'),\n(894, 5198, 'five thousand one hundred ninety-eight'),\n(895, 5597, 'five thousand five hundred ninety-seven'),\n(896, 3459, 'three thousand four hundred fifty-nine'),\n(897, 4188, 'four thousand one hundred eighty-eight'),\n(898, 98567, 'ninety-eight thousand five hundred sixty-seven'),\n(899, 17567, 'seventeen thousand five hundred sixty-seven'),\n(900, 22720, 'twenty-two thousand seven hundred twenty'),\n(901, 99730, 'ninety-nine thousand seven hundred thirty'),\n(902, 16445, 'sixteen thousand four hundred forty-five'),\n(903, 68994, 'sixty-eight thousand nine hundred ninety-four'),\n(904, 93584, 'ninety-three thousand five hundred eighty-four'),\n(905, 86750, 'eighty-six thousand seven hundred fifty'),\n(906, 80181, 'eighty thousand one hundred eighty-one'),\n(907, 53732, 'fifty-three thousand seven hundred thirty-two'),\n(908, 73027, 'seventy-three thousand twenty-seven'),\n(909, 16179, 'sixteen thousand one hundred seventy-nine'),\n(910, 84827, 'eighty-four thousand eight hundred twenty-seven'),\n(911, 78361, 'seventy-eight thousand three hundred sixty-one'),\n(912, 4261, 'four thousand two hundred sixty-one'),\n(913, 96227, 'ninety-six thousand two hundred twenty-seven'),\n(914, 17073, 'seventeen thousand seventy-three'),\n(915, 97, 'ninety-seven'),\n(916, 92380, 'ninety-two thousand three hundred eighty'),\n(917, 61506, 'sixty-one thousand five hundred six'),\n(918, 50585, 'fifty thousand five hundred eighty-five'),\n(919, 56705, 'fifty-six thousand seven hundred five'),\n(920, 38685, 'thirty-eight thousand six hundred eighty-five'),\n(921, 83442, 'eighty-three thousand four hundred forty-two'),\n(922, 11260, 'eleven thousand two hundred sixty'),\n(923, 21660, 'twenty-one thousand six hundred sixty'),\n(924, 79802, 'seventy-nine thousand eight hundred two'),\n(925, 16513, 'sixteen thousand five hundred thirteen'),\n(926, 30555, 'thirty thousand five hundred fifty-five'),\n(927, 79963, 'seventy-nine thousand nine hundred sixty-three'),\n(928, 7254, 'seven thousand two hundred fifty-four'),\n(929, 62226, 'sixty-two thousand two hundred twenty-six'),\n(930, 25716, 'twenty-five thousand seven hundred sixteen'),\n(931, 66617, 'sixty-six thousand six hundred seventeen'),\n(932, 73791, 'seventy-three thousand seven hundred ninety-one'),\n(933, 40546, 'forty thousand five hundred forty-six'),\n(934, 19036, 'nineteen thousand thirty-six'),\n(935, 12583, 'twelve thousand five hundred eighty-three'),\n(936, 59331, 'fifty-nine thousand three hundred thirty-one'),\n(937, 72492, 'seventy-two thousand four hundred ninety-two'),\n(938, 69492, 'sixty-nine thousand four hundred ninety-two'),\n(939, 73907, 'seventy-three thousand nine hundred seven'),\n(940, 8321, 'eight thousand three hundred twenty-one'),\n(941, 53600, 'fifty-three thousand six hundred'),\n(942, 10347, 'ten thousand three hundred forty-seven'),\n(943, 95048, 'ninety-five thousand forty-eight'),\n(944, 87508, 'eighty-seven thousand five hundred eight'),\n(945, 67881, 'sixty-seven thousand eight hundred eighty-one'),\n(946, 16788, 'sixteen thousand seven hundred eighty-eight'),\n(947, 46220, 'forty-six thousand two hundred twenty'),\n(948, 22600, 'twenty-two thousand six hundred'),\n(949, 55802, 'fifty-five thousand eight hundred two'),\n(950, 10327, 'ten thousand three hundred twenty-seven'),\n(951, 60079, 'sixty thousand seventy-nine'),\n(952, 86346, 'eighty-six thousand three hundred forty-six'),\n(953, 78039, 'seventy-eight thousand thirty-nine'),\n(954, 42495, 'forty-two thousand four hundred ninety-five'),\n(955, 61802, 'sixty-one thousand eight hundred two'),\n(956, 74935, 'seventy-four thousand nine hundred thirty-five'),\n(957, 32848, 'thirty-two thousand eight hundred forty-eight'),\n(958, 22843, 'twenty-two thousand eight hundred forty-three'),\n(959, 43434, 'forty-three thousand four hundred thirty-four'),\n(960, 55140, 'fifty-five thousand one hundred forty'),\n(961, 25101, 'twenty-five thousand one hundred one'),\n(962, 66892, 'sixty-six thousand eight hundred ninety-two'),\n(963, 84404, 'eighty-four thousand four hundred four'),\n(964, 95016, 'ninety-five thousand sixteen'),\n(965, 82669, 'eighty-two thousand six hundred sixty-nine'),\n(966, 47664, 'forty-seven thousand six hundred sixty-four'),\n(967, 67050, 'sixty-seven thousand fifty'),\n(968, 65685, 'sixty-five thousand six hundred eighty-five'),\n(969, 13432, 'thirteen thousand four hundred thirty-two'),\n(970, 8364, 'eight thousand three hundred sixty-four'),\n(971, 33856, 'thirty-three thousand eight hundred fifty-six'),\n(972, 38428, 'thirty-eight thousand four hundred twenty-eight'),\n(973, 63682, 'sixty-three thousand six hundred eighty-two'),\n(974, 61059, 'sixty-one thousand fifty-nine'),\n(975, 48432, 'forty-eight thousand four hundred thirty-two'),\n(976, 15809, 'fifteen thousand eight hundred nine'),\n(977, 75497, 'seventy-five thousand four hundred ninety-seven'),\n(978, 84648, 'eighty-four thousand six hundred forty-eight'),\n(979, 12450, 'twelve thousand four hundred fifty'),\n(980, 91915, 'ninety-one thousand nine hundred fifteen'),\n(981, 72230, 'seventy-two thousand two hundred thirty'),\n(982, 39393, 'thirty-nine thousand three hundred ninety-three'),\n(983, 58539, 'fifty-eight thousand five hundred thirty-nine'),\n(984, 8203, 'eight thousand two hundred three'),\n(985, 42106, 'forty-two thousand one hundred six'),\n(986, 52469, 'fifty-two thousand four hundred sixty-nine'),\n(987, 67579, 'sixty-seven thousand five hundred seventy-nine'),\n(988, 96196, 'ninety-six thousand one hundred ninety-six'),\n(989, 35045, 'thirty-five thousand forty-five'),\n(990, 90414, 'ninety thousand four hundred fourteen'),\n(991, 30338, 'thirty thousand three hundred thirty-eight'),\n(992, 13060, 'thirteen thousand sixty'),\n(993, 89796, 'eighty-nine thousand seven hundred ninety-six'),\n(994, 37165, 'thirty-seven thousand one hundred sixty-five'),\n(995, 47626, 'forty-seven thousand six hundred twenty-six'),\n(996, 48263, 'forty-eight thousand two hundred sixty-three'),\n(997, 89604, 'eighty-nine thousand six hundred four'),\n(998, 22717, 'twenty-two thousand seven hundred seventeen'),\n(999, 96890, 'ninety-six thousand eight hundred ninety'),\n(1000, 49281, 'forty-nine thousand two hundred eighty-one'),\n(1001, 97199, 'ninety-seven thousand one hundred ninety-nine'),\n(1002, 9105, 'nine thousand one hundred five'),\n(1003, 47038, 'forty-seven thousand thirty-eight'),\n(1004, 47997, 'forty-seven thousand nine hundred ninety-seven'),\n(1005, 29607, 'twenty-nine thousand six hundred seven'),\n(1006, 90974, 'ninety thousand nine hundred seventy-four'),\n(1007, 45881, 'forty-five thousand eight hundred eighty-one'),\n(1008, 75493, 'seventy-five thousand four hundred ninety-three'),\n(1009, 60427, 'sixty thousand four hundred twenty-seven'),\n(1010, 36340, 'thirty-six thousand three hundred forty'),\n(1011, 25776, 'twenty-five thousand seven hundred seventy-six'),\n(1012, 2298, 'two thousand two hundred ninety-eight'),\n(1013, 74993, 'seventy-four thousand nine hundred ninety-three'),\n(1014, 84184, 'eighty-four thousand one hundred eighty-four'),\n(1015, 63766, 'sixty-three thousand seven hundred sixty-six'),\n(1016, 57229, 'fifty-seven thousand two hundred twenty-nine'),\n(1017, 70358, 'seventy thousand three hundred fifty-eight'),\n(1018, 81720, 'eighty-one thousand seven hundred twenty'),\n(1019, 75643, 'seventy-five thousand six hundred forty-three'),\n(1020, 97854, 'ninety-seven thousand eight hundred fifty-four'),\n(1021, 64872, 'sixty-four thousand eight hundred seventy-two'),\n(1022, 90183, 'ninety thousand one hundred eighty-three'),\n(1023, 55141, 'fifty-five thousand one hundred forty-one'),\n(1024, 40225, 'forty thousand two hundred twenty-five'),\n(1025, 46110, 'forty-six thousand one hundred ten'),\n(1026, 10425, 'ten thousand four hundred twenty-five'),\n(1027, 51852, 'fifty-one thousand eight hundred fifty-two'),\n(1028, 3105, 'three thousand one hundred five'),\n(1029, 1682, 'one thousand six hundred eighty-two'),\n(1030, 5921, 'five thousand nine hundred twenty-one'),\n(1031, 76812, 'seventy-six thousand eight hundred twelve'),\n(1032, 8500, 'eight thousand five hundred'),\n(1033, 39697, 'thirty-nine thousand six hundred ninety-seven'),\n(1034, 26023, 'twenty-six thousand twenty-three'),\n(1035, 63676, 'sixty-three thousand six hundred seventy-six'),\n(1036, 80944, 'eighty thousand nine hundred forty-four'),\n(1037, 5634, 'five thousand six hundred thirty-four'),\n(1038, 99197, 'ninety-nine thousand one hundred ninety-seven'),\n(1039, 84278, 'eighty-four thousand two hundred seventy-eight'),\n(1040, 79593, 'seventy-nine thousand five hundred ninety-three'),\n(1041, 90743, 'ninety thousand seven hundred forty-three'),\n(1042, 27103, 'twenty-seven thousand one hundred three'),\n(1043, 5424, 'five thousand four hundred twenty-four'),\n(1044, 33033, 'thirty-three thousand thirty-three'),\n(1045, 70460, 'seventy thousand four hundred sixty'),\n(1046, 86249, 'eighty-six thousand two hundred forty-nine'),\n(1047, 15048, 'fifteen thousand forty-eight'),\n(1048, 89487, 'eighty-nine thousand four hundred eighty-seven'),\n(1049, 28006, 'twenty-eight thousand six'),\n(1050, 98931, 'ninety-eight thousand nine hundred thirty-one'),\n(1051, 68014, 'sixty-eight thousand fourteen'),\n(1052, 2809, 'two thousand eight hundred nine'),\n(1053, 4099, 'four thousand ninety-nine'),\n(1054, 38381, 'thirty-eight thousand three hundred eighty-one'),\n(1055, 74460, 'seventy-four thousand four hundred sixty'),\n(1056, 26766, 'twenty-six thousand seven hundred sixty-six'),\n(1057, 57861, 'fifty-seven thousand eight hundred sixty-one'),\n(1058, 9450, 'nine thousand four hundred fifty'),\n(1059, 93608, 'ninety-three thousand six hundred eight'),\n(1060, 66697, 'sixty-six thousand six hundred ninety-seven'),\n(1061, 48693, 'forty-eight thousand six hundred ninety-three'),\n(1062, 71134, 'seventy-one thousand one hundred thirty-four'),\n(1063, 33992, 'thirty-three thousand nine hundred ninety-two'),\n(1064, 97587, 'ninety-seven thousand five hundred eighty-seven'),\n(1065, 88714, 'eighty-eight thousand seven hundred fourteen'),\n(1066, 28802, 'twenty-eight thousand eight hundred two'),\n(1067, 69995, 'sixty-nine thousand nine hundred ninety-five'),\n(1068, 43144, 'forty-three thousand one hundred forty-four'),\n(1069, 66996, 'sixty-six thousand nine hundred ninety-six'),\n(1070, 12277, 'twelve thousand two hundred seventy-seven'),\n(1071, 41633, 'forty-one thousand six hundred thirty-three'),\n(1072, 712, 'seven hundred twelve'),\n(1073, 70963, 'seventy thousand nine hundred sixty-three'),\n(1074, 9700, 'nine thousand seven hundred'),\n(1075, 63916, 'sixty-three thousand nine hundred sixteen'),\n(1076, 59439, 'fifty-nine thousand four hundred thirty-nine'),\n(1077, 46112, 'forty-six thousand one hundred twelve'),\n(1078, 79176, 'seventy-nine thousand one hundred seventy-six'),\n(1079, 12136, 'twelve thousand one hundred thirty-six'),\n(1080, 72113, 'seventy-two thousand one hundred thirteen'),\n(1081, 79476, 'seventy-nine thousand four hundred seventy-six'),\n(1082, 49360, 'forty-nine thousand three hundred sixty'),\n(1083, 24035, 'twenty-four thousand thirty-five'),\n(1084, 38611, 'thirty-eight thousand six hundred eleven'),\n(1085, 67502, 'sixty-seven thousand five hundred two'),\n(1086, 15787, 'fifteen thousand seven hundred eighty-seven'),\n(1087, 45602, 'forty-five thousand six hundred two'),\n(1088, 60098, 'sixty thousand ninety-eight'),\n(1089, 12844, 'twelve thousand eight hundred forty-four'),\n(1090, 62637, 'sixty-two thousand six hundred thirty-seven'),\n(1091, 35555, 'thirty-five thousand five hundred fifty-five'),\n(1092, 44883, 'forty-four thousand eight hundred eighty-three'),\n(1093, 93964, 'ninety-three thousand nine hundred sixty-four'),\n(1094, 82176, 'eighty-two thousand one hundred seventy-six'),\n(1095, 19420, 'nineteen thousand four hundred twenty'),\n(1096, 15406, 'fifteen thousand four hundred six'),\n(1097, 58163, 'fifty-eight thousand one hundred sixty-three'),\n(1098, 91616, 'ninety-one thousand six hundred sixteen'),\n(1099, 91461, 'ninety-one thousand four hundred sixty-one'),\n(1100, 86510, 'eighty-six thousand five hundred ten'),\n(1101, 22347, 'twenty-two thousand three hundred forty-seven'),\n(1102, 67932, 'sixty-seven thousand nine hundred thirty-two'),\n(1103, 59003, 'fifty-nine thousand three'),\n(1104, 11831, 'eleven thousand eight hundred thirty-one'),\n(1105, 2932, 'two thousand nine hundred thirty-two'),\n(1106, 6237, 'six thousand two hundred thirty-seven'),\n(1107, 14253, 'fourteen thousand two hundred fifty-three'),\n(1108, 5294, 'five thousand two hundred ninety-four'),\n(1109, 41001, 'forty-one thousand one'),\n(1110, 97290, 'ninety-seven thousand two hundred ninety'),\n(1111, 343, 'three hundred forty-three'),\n(1112, 33607, 'thirty-three thousand six hundred seven'),\n(1113, 17415, 'seventeen thousand four hundred fifteen'),\n(1114, 60356, 'sixty thousand three hundred fifty-six'),\n(1115, 2445, 'two thousand four hundred forty-five'),\n(1116, 31461, 'thirty-one thousand four hundred sixty-one'),\n(1117, 73244, 'seventy-three thousand two hundred forty-four'),\n(1118, 30405, 'thirty thousand four hundred five'),\n(1119, 9412, 'nine thousand four hundred twelve'),\n(1120, 20592, 'twenty thousand five hundred ninety-two'),\n(1121, 85501, 'eighty-five thousand five hundred one'),\n(1122, 53561, 'fifty-three thousand five hundred sixty-one'),\n(1123, 9897, 'nine thousand eight hundred ninety-seven'),\n(1124, 5217, 'five thousand two hundred seventeen'),\n(1125, 97865, 'ninety-seven thousand eight hundred sixty-five'),\n(1126, 11106, 'eleven thousand one hundred six'),\n(1127, 97398, 'ninety-seven thousand three hundred ninety-eight'),\n(1128, 50152, 'fifty thousand one hundred fifty-two'),\n(1129, 73310, 'seventy-three thousand three hundred ten'),\n(1130, 56210, 'fifty-six thousand two hundred ten'),\n(1131, 93117, 'ninety-three thousand one hundred seventeen'),\n(1132, 42559, 'forty-two thousand five hundred fifty-nine'),\n(1133, 58212, 'fifty-eight thousand two hundred twelve'),\n(1134, 55497, 'fifty-five thousand four hundred ninety-seven'),\n(1135, 96013, 'ninety-six thousand thirteen'),\n(1136, 94608, 'ninety-four thousand six hundred eight'),\n(1137, 26072, 'twenty-six thousand seventy-two'),\n(1138, 20988, 'twenty thousand nine hundred eighty-eight'),\n(1139, 43531, 'forty-three thousand five hundred thirty-one'),\n(1140, 89146, 'eighty-nine thousand one hundred forty-six'),\n(1141, 62142, 'sixty-two thousand one hundred forty-two'),\n(1142, 46807, 'forty-six thousand eight hundred seven'),\n(1143, 86238, 'eighty-six thousand two hundred thirty-eight'),\n(1144, 83926, 'eighty-three thousand nine hundred twenty-six'),\n(1145, 71668, 'seventy-one thousand six hundred sixty-eight'),\n(1146, 61916, 'sixty-one thousand nine hundred sixteen'),\n(1147, 38403, 'thirty-eight thousand four hundred three'),\n(1148, 82548, 'eighty-two thousand five hundred forty-eight'),\n(1149, 81750, 'eighty-one thousand seven hundred fifty'),\n(1150, 20317, 'twenty thousand three hundred seventeen'),\n(1151, 71943, 'seventy-one thousand nine hundred forty-three'),\n(1152, 29755, 'twenty-nine thousand seven hundred fifty-five'),\n(1153, 67979, 'sixty-seven thousand nine hundred seventy-nine'),\n(1154, 24984, 'twenty-four thousand nine hundred eighty-four'),\n(1155, 77664, 'seventy-seven thousand six hundred sixty-four'),\n(1156, 4511, 'four thousand five hundred eleven'),\n(1157, 85346, 'eighty-five thousand three hundred forty-six'),\n(1158, 39469, 'thirty-nine thousand four hundred sixty-nine'),\n(1159, 82021, 'eighty-two thousand twenty-one'),\n(1160, 16319, 'sixteen thousand three hundred nineteen'),\n(1161, 88589, 'eighty-eight thousand five hundred eighty-nine'),\n(1162, 12892, 'twelve thousand eight hundred ninety-two'),\n(1163, 30032, 'thirty thousand thirty-two'),\n(1164, 16998, 'sixteen thousand nine hundred ninety-eight'),\n(1165, 80012, 'eighty thousand twelve'),\n(1166, 59783, 'fifty-nine thousand seven hundred eighty-three'),\n(1167, 19293, 'nineteen thousand two hundred ninety-three'),\n(1168, 1817, 'one thousand eight hundred seventeen'),\n(1169, 19305, 'nineteen thousand three hundred five'),\n(1170, 63337, 'sixty-three thousand three hundred thirty-seven'),\n(1171, 21406, 'twenty-one thousand four hundred six'),\n(1172, 38956, 'thirty-eight thousand nine hundred fifty-six'),\n(1173, 37556, 'thirty-seven thousand five hundred fifty-six'),\n(1174, 41018, 'forty-one thousand eighteen'),\n(1175, 89937, 'eighty-nine thousand nine hundred thirty-seven'),\n(1176, 66116, 'sixty-six thousand one hundred sixteen'),\n(1177, 70582, 'seventy thousand five hundred eighty-two'),\n(1178, 59643, 'fifty-nine thousand six hundred forty-three'),\n(1179, 57124, 'fifty-seven thousand one hundred twenty-four'),\n(1180, 28428, 'twenty-eight thousand four hundred twenty-eight'),\n(1181, 23417, 'twenty-three thousand four hundred seventeen'),\n(1182, 90882, 'ninety thousand eight hundred eighty-two'),\n(1183, 68251, 'sixty-eight thousand two hundred fifty-one'),\n(1184, 32942, 'thirty-two thousand nine hundred forty-two'),\n(1185, 90299, 'ninety thousand two hundred ninety-nine'),\n(1186, 48094, 'forty-eight thousand ninety-four'),\n(1187, 59916, 'fifty-nine thousand nine hundred sixteen'),\n(1188, 90808, 'ninety thousand eight hundred eight'),\n(1189, 51195, 'fifty-one thousand one hundred ninety-five'),\n(1190, 37695, 'thirty-seven thousand six hundred ninety-five'),\n(1191, 1001, 'one thousand one'),\n(1192, 69242, 'sixty-nine thousand two hundred forty-two'),\n(1193, 63726, 'sixty-three thousand seven hundred twenty-six'),\n(1194, 27518, 'twenty-seven thousand five hundred eighteen'),\n(1195, 36308, 'thirty-six thousand three hundred eight'),\n(1196, 6083, 'six thousand eighty-three'),\n(1197, 47512, 'forty-seven thousand five hundred twelve'),\n(1198, 16219, 'sixteen thousand two hundred nineteen'),\n(1199, 53244, 'fifty-three thousand two hundred forty-four'),\n(1200, 56966, 'fifty-six thousand nine hundred sixty-six'),\n(1201, 68968, 'sixty-eight thousand nine hundred sixty-eight'),\n(1202, 73409, 'seventy-three thousand four hundred nine'),\n(1203, 17591, 'seventeen thousand five hundred ninety-one'),\n(1204, 85015, 'eighty-five thousand fifteen'),\n(1205, 58168, 'fifty-eight thousand one hundred sixty-eight'),\n(1206, 67212, 'sixty-seven thousand two hundred twelve'),\n(1207, 5715, 'five thousand seven hundred fifteen'),\n(1208, 30513, 'thirty thousand five hundred thirteen'),\n(1209, 13270, 'thirteen thousand two hundred seventy'),\n(1210, 81577, 'eighty-one thousand five hundred seventy-seven'),\n(1211, 65057, 'sixty-five thousand fifty-seven'),\n(1212, 13964, 'thirteen thousand nine hundred sixty-four'),\n(1213, 55689, 'fifty-five thousand six hundred eighty-nine'),\n(1214, 51240, 'fifty-one thousand two hundred forty'),\n(1215, 96727, 'ninety-six thousand seven hundred twenty-seven'),\n(1216, 58780, 'fifty-eight thousand seven hundred eighty'),\n(1217, 49104, 'forty-nine thousand one hundred four'),\n(1218, 7745, 'seven thousand seven hundred forty-five'),\n(1219, 11196, 'eleven thousand one hundred ninety-six'),\n(1220, 46401, 'forty-six thousand four hundred one'),\n(1221, 21603, 'twenty-one thousand six hundred three'),\n(1222, 38565, 'thirty-eight thousand five hundred sixty-five'),\n(1223, 41527, 'forty-one thousand five hundred twenty-seven'),\n(1224, 97123, 'ninety-seven thousand one hundred twenty-three'),\n(1225, 77124, 'seventy-seven thousand one hundred twenty-four'),\n(1226, 92537, 'ninety-two thousand five hundred thirty-seven'),\n(1227, 57471, 'fifty-seven thousand four hundred seventy-one'),\n(1228, 60445, 'sixty thousand four hundred forty-five'),\n(1229, 54092, 'fifty-four thousand ninety-two'),\n(1230, 38603, 'thirty-eight thousand six hundred three'),\n(1231, 70173, 'seventy thousand one hundred seventy-three'),\n(1232, 87517, 'eighty-seven thousand five hundred seventeen'),\n(1233, 11572, 'eleven thousand five hundred seventy-two'),\n(1234, 31249, 'thirty-one thousand two hundred forty-nine'),\n(1235, 25790, 'twenty-five thousand seven hundred ninety'),\n(1236, 26701, 'twenty-six thousand seven hundred one'),\n(1237, 96441, 'ninety-six thousand four hundred forty-one'),\n(1238, 57908, 'fifty-seven thousand nine hundred eight'),\n(1239, 68899, 'sixty-eight thousand eight hundred ninety-nine'),\n(1240, 65198, 'sixty-five thousand one hundred ninety-eight'),\n(1241, 48083, 'forty-eight thousand eighty-three'),\n(1242, 48974, 'forty-eight thousand nine hundred seventy-four'),\n(1243, 33636, 'thirty-three thousand six hundred thirty-six'),\n(1244, 86883, 'eighty-six thousand eight hundred eighty-three'),\n(1245, 24118, 'twenty-four thousand one hundred eighteen'),\n(1246, 11624, 'eleven thousand six hundred twenty-four'),\n(1247, 71832, 'seventy-one thousand eight hundred thirty-two'),\n(1248, 14241, 'fourteen thousand two hundred forty-one'),\n(1249, 13727, 'thirteen thousand seven hundred twenty-seven'),\n(1250, 98896, 'ninety-eight thousand eight hundred ninety-six'),\n(1251, 22466, 'twenty-two thousand four hundred sixty-six'),\n(1252, 51965, 'fifty-one thousand nine hundred sixty-five'),\n(1253, 5811, 'five thousand eight hundred eleven'),\n(1254, 82040, 'eighty-two thousand forty'),\n(1255, 42197, 'forty-two thousand one hundred ninety-seven'),\n(1256, 71055, 'seventy-one thousand fifty-five'),\n(1257, 79098, 'seventy-nine thousand ninety-eight'),\n(1258, 29148, 'twenty-nine thousand one hundred forty-eight'),\n(1259, 61808, 'sixty-one thousand eight hundred eight'),\n(1260, 10755, 'ten thousand seven hundred fifty-five'),\n(1261, 6921, 'six thousand nine hundred twenty-one'),\n(1262, 80787, 'eighty thousand seven hundred eighty-seven'),\n(1263, 3455, 'three thousand four hundred fifty-five'),\n(1264, 9138, 'nine thousand one hundred thirty-eight'),\n(1265, 13898, 'thirteen thousand eight hundred ninety-eight'),\n(1266, 94168, 'ninety-four thousand one hundred sixty-eight'),\n(1267, 15361, 'fifteen thousand three hundred sixty-one'),\n(1268, 66571, 'sixty-six thousand five hundred seventy-one'),\n(1269, 98644, 'ninety-eight thousand six hundred forty-four'),\n(1270, 2464, 'two thousand four hundred sixty-four'),\n(1271, 3054, 'three thousand fifty-four'),\n(1272, 98150, 'ninety-eight thousand one hundred fifty'),\n(1273, 30894, 'thirty thousand eight hundred ninety-four'),\n(1274, 78137, 'seventy-eight thousand one hundred thirty-seven'),\n(1275, 87380, 'eighty-seven thousand three hundred eighty'),\n(1276, 96748, 'ninety-six thousand seven hundred forty-eight'),\n(1277, 8470, 'eight thousand four hundred seventy'),\n(1278, 91619, 'ninety-one thousand six hundred nineteen'),\n(1279, 47809, 'forty-seven thousand eight hundred nine'),\n(1280, 46125, 'forty-six thousand one hundred twenty-five'),\n(1281, 28577, 'twenty-eight thousand five hundred seventy-seven'),\n(1282, 94539, 'ninety-four thousand five hundred thirty-nine'),\n(1283, 87306, 'eighty-seven thousand three hundred six'),\n(1284, 85815, 'eighty-five thousand eight hundred fifteen'),\n(1285, 78595, 'seventy-eight thousand five hundred ninety-five'),\n(1286, 13517, 'thirteen thousand five hundred seventeen'),\n(1287, 50245, 'fifty thousand two hundred forty-five'),\n(1288, 77424, 'seventy-seven thousand four hundred twenty-four'),\n(1289, 15876, 'fifteen thousand eight hundred seventy-six'),\n(1290, 22920, 'twenty-two thousand nine hundred twenty'),\n(1291, 64435, 'sixty-four thousand four hundred thirty-five'),\n(1292, 76768, 'seventy-six thousand seven hundred sixty-eight'),\n(1293, 43391, 'forty-three thousand three hundred ninety-one'),\n(1294, 34950, 'thirty-four thousand nine hundred fifty'),\n(1295, 25178, 'twenty-five thousand one hundred seventy-eight'),\n(1296, 56805, 'fifty-six thousand eight hundred five'),\n(1297, 91578, 'ninety-one thousand five hundred seventy-eight'),\n(1298, 809, 'eight hundred nine'),\n(1299, 37088, 'thirty-seven thousand eighty-eight'),\n(1300, 98258, 'ninety-eight thousand two hundred fifty-eight'),\n(1301, 10616, 'ten thousand six hundred sixteen'),\n(1302, 57352, 'fifty-seven thousand three hundred fifty-two'),\n(1303, 15, 'fifteen'),\n(1304, 43089, 'forty-three thousand eighty-nine'),\n(1305, 60424, 'sixty thousand four hundred twenty-four'),\n(1306, 37851, 'thirty-seven thousand eight hundred fifty-one'),\n(1307, 86969, 'eighty-six thousand nine hundred sixty-nine'),\n(1308, 14795, 'fourteen thousand seven hundred ninety-five'),\n(1309, 92219, 'ninety-two thousand two hundred nineteen'),\n(1310, 59566, 'fifty-nine thousand five hundred sixty-six'),\n(1311, 31151, 'thirty-one thousand one hundred fifty-one'),\n(1312, 42130, 'forty-two thousand one hundred thirty'),\n(1313, 66603, 'sixty-six thousand six hundred three'),\n(1314, 6130, 'six thousand one hundred thirty'),\n(1315, 52192, 'fifty-two thousand one hundred ninety-two'),\n(1316, 16269, 'sixteen thousand two hundred sixty-nine'),\n(1317, 90244, 'ninety thousand two hundred forty-four'),\n(1318, 7823, 'seven thousand eight hundred twenty-three'),\n(1319, 40621, 'forty thousand six hundred twenty-one'),\n(1320, 24321, 'twenty-four thousand three hundred twenty-one'),\n(1321, 37443, 'thirty-seven thousand four hundred forty-three'),\n(1322, 79623, 'seventy-nine thousand six hundred twenty-three'),\n(1323, 30079, 'thirty thousand seventy-nine'),\n(1324, 26923, 'twenty-six thousand nine hundred twenty-three'),\n(1325, 95823, 'ninety-five thousand eight hundred twenty-three'),\n(1326, 8493, 'eight thousand four hundred ninety-three'),\n(1327, 2583, 'two thousand five hundred eighty-three'),\n(1328, 3296, 'three thousand two hundred ninety-six'),\n(1329, 31514, 'thirty-one thousand five hundred fourteen'),\n(1330, 93837, 'ninety-three thousand eight hundred thirty-seven'),\n(1331, 5294, 'five thousand two hundred ninety-four'),\n(1332, 89455, 'eighty-nine thousand four hundred fifty-five'),\n(1333, 23735, 'twenty-three thousand seven hundred thirty-five'),\n(1334, 10457, 'ten thousand four hundred fifty-seven'),\n(1335, 90792, 'ninety thousand seven hundred ninety-two'),\n(1336, 63964, 'sixty-three thousand nine hundred sixty-four'),\n(1337, 62810, 'sixty-two thousand eight hundred ten'),\n(1338, 34157, 'thirty-four thousand one hundred fifty-seven'),\n(1339, 64482, 'sixty-four thousand four hundred eighty-two'),\n(1340, 57185, 'fifty-seven thousand one hundred eighty-five'),\n(1341, 40320, 'forty thousand three hundred twenty'),\n(1342, 7836, 'seven thousand eight hundred thirty-six'),\n(1343, 79467, 'seventy-nine thousand four hundred sixty-seven'),\n(1344, 75395, 'seventy-five thousand three hundred ninety-five'),\n(1345, 87556, 'eighty-seven thousand five hundred fifty-six'),\n(1346, 72239, 'seventy-two thousand two hundred thirty-nine'),\n(1347, 32149, 'thirty-two thousand one hundred forty-nine'),\n(1348, 65816, 'sixty-five thousand eight hundred sixteen'),\n(1349, 23374, 'twenty-three thousand three hundred seventy-four'),\n(1350, 67750, 'sixty-seven thousand seven hundred fifty'),\n(1351, 65070, 'sixty-five thousand seventy'),\n(1352, 34656, 'thirty-four thousand six hundred fifty-six'),\n(1353, 75525, 'seventy-five thousand five hundred twenty-five'),\n(1354, 61261, 'sixty-one thousand two hundred sixty-one'),\n(1355, 19402, 'nineteen thousand four hundred two'),\n(1356, 68104, 'sixty-eight thousand one hundred four'),\n(1357, 95231, 'ninety-five thousand two hundred thirty-one'),\n(1358, 98580, 'ninety-eight thousand five hundred eighty'),\n(1359, 9571, 'nine thousand five hundred seventy-one'),\n(1360, 44427, 'forty-four thousand four hundred twenty-seven'),\n(1361, 33019, 'thirty-three thousand nineteen'),\n(1362, 38266, 'thirty-eight thousand two hundred sixty-six'),\n(1363, 30826, 'thirty thousand eight hundred twenty-six'),\n(1364, 52381, 'fifty-two thousand three hundred eighty-one'),\n(1365, 46265, 'forty-six thousand two hundred sixty-five'),\n(1366, 89302, 'eighty-nine thousand three hundred two'),\n(1367, 4265, 'four thousand two hundred sixty-five'),\n(1368, 30521, 'thirty thousand five hundred twenty-one'),\n(1369, 55590, 'fifty-five thousand five hundred ninety'),\n(1370, 28966, 'twenty-eight thousand nine hundred sixty-six'),\n(1371, 45024, 'forty-five thousand twenty-four'),\n(1372, 41342, 'forty-one thousand three hundred forty-two'),\n(1373, 49561, 'forty-nine thousand five hundred sixty-one'),\n(1374, 34543, 'thirty-four thousand five hundred forty-three'),\n(1375, 84984, 'eighty-four thousand nine hundred eighty-four'),\n(1376, 68593, 'sixty-eight thousand five hundred ninety-three'),\n(1377, 85461, 'eighty-five thousand four hundred sixty-one'),\n(1378, 59726, 'fifty-nine thousand seven hundred twenty-six'),\n(1379, 45242, 'forty-five thousand two hundred forty-two'),\n(1380, 29651, 'twenty-nine thousand six hundred fifty-one'),\n(1381, 64765, 'sixty-four thousand seven hundred sixty-five'),\n(1382, 26568, 'twenty-six thousand five hundred sixty-eight'),\n(1383, 36933, 'thirty-six thousand nine hundred thirty-three'),\n(1384, 94490, 'ninety-four thousand four hundred ninety'),\n(1385, 35036, 'thirty-five thousand thirty-six'),\n(1386, 42971, 'forty-two thousand nine hundred seventy-one'),\n(1387, 44831, 'forty-four thousand eight hundred thirty-one'),\n(1388, 17790, 'seventeen thousand seven hundred ninety'),\n(1389, 35361, 'thirty-five thousand three hundred sixty-one'),\n(1390, 52622, 'fifty-two thousand six hundred twenty-two'),\n(1391, 87742, 'eighty-seven thousand seven hundred forty-two'),\n(1392, 63207, 'sixty-three thousand two hundred seven'),\n(1393, 79106, 'seventy-nine thousand one hundred six'),\n(1394, 93806, 'ninety-three thousand eight hundred six'),\n(1395, 52567, 'fifty-two thousand five hundred sixty-seven'),\n(1396, 43100, 'forty-three thousand one hundred'),\n(1397, 26459, 'twenty-six thousand four hundred fifty-nine'),\n(1398, 43270, 'forty-three thousand two hundred seventy'),\n(1399, 32584, 'thirty-two thousand five hundred eighty-four'),\n(1400, 5213, 'five thousand two hundred thirteen'),\n(1401, 54750, 'fifty-four thousand seven hundred fifty'),\n(1402, 52989, 'fifty-two thousand nine hundred eighty-nine'),\n(1403, 24893, 'twenty-four thousand eight hundred ninety-three'),\n(1404, 40131, 'forty thousand one hundred thirty-one'),\n(1405, 68586, 'sixty-eight thousand five hundred eighty-six'),\n(1406, 88256, 'eighty-eight thousand two hundred fifty-six'),\n(1407, 19826, 'nineteen thousand eight hundred twenty-six'),\n(1408, 7635, 'seven thousand six hundred thirty-five'),\n(1409, 53220, 'fifty-three thousand two hundred twenty'),\n(1410, 33504, 'thirty-three thousand five hundred four'),\n(1411, 44043, 'forty-four thousand forty-three'),\n(1412, 73365, 'seventy-three thousand three hundred sixty-five'),\n(1413, 40119, 'forty thousand one hundred nineteen'),\n(1414, 28251, 'twenty-eight thousand two hundred fifty-one'),\n(1415, 27530, 'twenty-seven thousand five hundred thirty'),\n(1416, 35089, 'thirty-five thousand eighty-nine'),\n(1417, 74383, 'seventy-four thousand three hundred eighty-three'),\n(1418, 25861, 'twenty-five thousand eight hundred sixty-one'),\n(1419, 33100, 'thirty-three thousand one hundred'),\n(1420, 1924, 'one thousand nine hundred twenty-four'),\n(1421, 92486, 'ninety-two thousand four hundred eighty-six'),\n(1422, 65303, 'sixty-five thousand three hundred three'),\n(1423, 45406, 'forty-five thousand four hundred six'),\n(1424, 62525, 'sixty-two thousand five hundred twenty-five'),\n(1425, 75622, 'seventy-five thousand six hundred twenty-two'),\n(1426, 72808, 'seventy-two thousand eight hundred eight'),\n(1427, 23115, 'twenty-three thousand one hundred fifteen'),\n(1428, 88348, 'eighty-eight thousand three hundred forty-eight'),\n(1429, 54075, 'fifty-four thousand seventy-five'),\n(1430, 4823, 'four thousand eight hundred twenty-three'),\n(1431, 81215, 'eighty-one thousand two hundred fifteen'),\n(1432, 28184, 'twenty-eight thousand one hundred eighty-four'),\n(1433, 67225, 'sixty-seven thousand two hundred twenty-five'),\n(1434, 93642, 'ninety-three thousand six hundred forty-two'),\n(1435, 67951, 'sixty-seven thousand nine hundred fifty-one'),\n(1436, 83096, 'eighty-three thousand ninety-six'),\n(1437, 36654, 'thirty-six thousand six hundred fifty-four'),\n(1438, 51904, 'fifty-one thousand nine hundred four'),\n(1439, 8175, 'eight thousand one hundred seventy-five'),\n(1440, 70724, 'seventy thousand seven hundred twenty-four'),\n(1441, 59652, 'fifty-nine thousand six hundred fifty-two'),\n(1442, 24583, 'twenty-four thousand five hundred eighty-three'),\n(1443, 31864, 'thirty-one thousand eight hundred sixty-four'),\n(1444, 66077, 'sixty-six thousand seventy-seven'),\n(1445, 84809, 'eighty-four thousand eight hundred nine'),\n(1446, 66310, 'sixty-six thousand three hundred ten'),\n(1447, 68023, 'sixty-eight thousand twenty-three'),\n(1448, 60989, 'sixty thousand nine hundred eighty-nine'),\n(1449, 58479, 'fifty-eight thousand four hundred seventy-nine'),\n(1450, 6397, 'six thousand three hundred ninety-seven'),\n(1451, 15312, 'fifteen thousand three hundred twelve'),\n(1452, 33482, 'thirty-three thousand four hundred eighty-two'),\n(1453, 65288, 'sixty-five thousand two hundred eighty-eight'),\n(1454, 691, 'six hundred ninety-one'),\n(1455, 8952, 'eight thousand nine hundred fifty-two'),\n(1456, 58815, 'fifty-eight thousand eight hundred fifteen'),\n(1457, 60639, 'sixty thousand six hundred thirty-nine'),\n(1458, 5418, 'five thousand four hundred eighteen'),\n(1459, 19309, 'nineteen thousand three hundred nine'),\n(1460, 62587, 'sixty-two thousand five hundred eighty-seven'),\n(1461, 58739, 'fifty-eight thousand seven hundred thirty-nine'),\n(1462, 72625, 'seventy-two thousand six hundred twenty-five'),\n(1463, 54499, 'fifty-four thousand four hundred ninety-nine'),\n(1464, 79342, 'seventy-nine thousand three hundred forty-two'),\n(1465, 5924, 'five thousand nine hundred twenty-four'),\n(1466, 86304, 'eighty-six thousand three hundred four'),\n(1467, 32065, 'thirty-two thousand sixty-five'),\n(1468, 35725, 'thirty-five thousand seven hundred twenty-five'),\n(1469, 16876, 'sixteen thousand eight hundred seventy-six'),\n(1470, 71641, 'seventy-one thousand six hundred forty-one'),\n(1471, 28399, 'twenty-eight thousand three hundred ninety-nine'),\n(1472, 11765, 'eleven thousand seven hundred sixty-five'),\n(1473, 76934, 'seventy-six thousand nine hundred thirty-four'),\n(1474, 6358, 'six thousand three hundred fifty-eight'),\n(1475, 63043, 'sixty-three thousand forty-three'),\n(1476, 50901, 'fifty thousand nine hundred one'),\n(1477, 28043, 'twenty-eight thousand forty-three'),\n(1478, 86547, 'eighty-six thousand five hundred forty-seven'),\n(1479, 94729, 'ninety-four thousand seven hundred twenty-nine'),\n(1480, 66862, 'sixty-six thousand eight hundred sixty-two'),\n(1481, 76025, 'seventy-six thousand twenty-five'),\n(1482, 3473, 'three thousand four hundred seventy-three'),\n(1483, 82952, 'eighty-two thousand nine hundred fifty-two'),\n(1484, 43056, 'forty-three thousand fifty-six'),\n(1485, 17253, 'seventeen thousand two hundred fifty-three'),\n(1486, 60835, 'sixty thousand eight hundred thirty-five'),\n(1487, 74180, 'seventy-four thousand one hundred eighty'),\n(1488, 22424, 'twenty-two thousand four hundred twenty-four'),\n(1489, 24391, 'twenty-four thousand three hundred ninety-one'),\n(1490, 73879, 'seventy-three thousand eight hundred seventy-nine'),\n(1491, 34259, 'thirty-four thousand two hundred fifty-nine'),\n(1492, 3650, 'three thousand six hundred fifty'),\n(1493, 36136, 'thirty-six thousand one hundred thirty-six'),\n(1494, 63106, 'sixty-three thousand one hundred six'),\n(1495, 35314, 'thirty-five thousand three hundred fourteen'),\n(1496, 24073, 'twenty-four thousand seventy-three'),\n(1497, 34121, 'thirty-four thousand one hundred twenty-one'),\n(1498, 6274, 'six thousand two hundred seventy-four'),\n(1499, 69931, 'sixty-nine thousand nine hundred thirty-one'),\n(1500, 75742, 'seventy-five thousand seven hundred forty-two'),\n(1501, 29960, 'twenty-nine thousand nine hundred sixty'),\n(1502, 9293, 'nine thousand two hundred ninety-three'),\n(1503, 30339, 'thirty thousand three hundred thirty-nine'),\n(1504, 20901, 'twenty thousand nine hundred one'),\n(1505, 54874, 'fifty-four thousand eight hundred seventy-four'),\n(1506, 63855, 'sixty-three thousand eight hundred fifty-five'),\n(1507, 61816, 'sixty-one thousand eight hundred sixteen'),\n(1508, 35403, 'thirty-five thousand four hundred three'),\n(1509, 6552, 'six thousand five hundred fifty-two'),\n(1510, 33105, 'thirty-three thousand one hundred five'),\n(1511, 51394, 'fifty-one thousand three hundred ninety-four'),\n(1512, 29236, 'twenty-nine thousand two hundred thirty-six'),\n(1513, 57423, 'fifty-seven thousand four hundred twenty-three'),\n(1514, 32304, 'thirty-two thousand three hundred four'),\n(1515, 45100, 'forty-five thousand one hundred'),\n(1516, 83599, 'eighty-three thousand five hundred ninety-nine'),\n(1517, 82256, 'eighty-two thousand two hundred fifty-six'),\n(1518, 16049, 'sixteen thousand forty-nine'),\n(1519, 45463, 'forty-five thousand four hundred sixty-three'),\n(1520, 32310, 'thirty-two thousand three hundred ten'),\n(1521, 6475, 'six thousand four hundred seventy-five'),\n(1522, 70488, 'seventy thousand four hundred eighty-eight'),\n(1523, 40257, 'forty thousand two hundred fifty-seven'),\n(1524, 52374, 'fifty-two thousand three hundred seventy-four'),\n(1525, 70669, 'seventy thousand six hundred sixty-nine'),\n(1526, 33910, 'thirty-three thousand nine hundred ten'),\n(1527, 81072, 'eighty-one thousand seventy-two'),\n(1528, 23172, 'twenty-three thousand one hundred seventy-two'),\n(1529, 77387, 'seventy-seven thousand three hundred eighty-seven'),\n(1530, 28441, 'twenty-eight thousand four hundred forty-one'),\n(1531, 42804, 'forty-two thousand eight hundred four'),\n(1532, 42298, 'forty-two thousand two hundred ninety-eight'),\n(1533, 13594, 'thirteen thousand five hundred ninety-four'),\n(1534, 1045, 'one thousand forty-five'),\n(1535, 56575, 'fifty-six thousand five hundred seventy-five'),\n(1536, 20197, 'twenty thousand one hundred ninety-seven'),\n(1537, 21989, 'twenty-one thousand nine hundred eighty-nine'),\n(1538, 68341, 'sixty-eight thousand three hundred forty-one'),\n(1539, 54258, 'fifty-four thousand two hundred fifty-eight'),\n(1540, 32984, 'thirty-two thousand nine hundred eighty-four'),\n(1541, 31747, 'thirty-one thousand seven hundred forty-seven'),\n(1542, 88436, 'eighty-eight thousand four hundred thirty-six'),\n(1543, 57530, 'fifty-seven thousand five hundred thirty'),\n(1544, 31675, 'thirty-one thousand six hundred seventy-five'),\n(1545, 77525, 'seventy-seven thousand five hundred twenty-five'),\n(1546, 27764, 'twenty-seven thousand seven hundred sixty-four'),\n(1547, 49705, 'forty-nine thousand seven hundred five'),\n(1548, 71362, 'seventy-one thousand three hundred sixty-two'),\n(1549, 96058, 'ninety-six thousand fifty-eight'),\n(1550, 48130, 'forty-eight thousand one hundred thirty'),\n(1551, 93355, 'ninety-three thousand three hundred fifty-five'),\n(1552, 20762, 'twenty thousand seven hundred sixty-two'),\n(1553, 29874, 'twenty-nine thousand eight hundred seventy-four'),\n(1554, 48108, 'forty-eight thousand one hundred eight'),\n(1555, 97598, 'ninety-seven thousand five hundred ninety-eight'),\n(1556, 62902, 'sixty-two thousand nine hundred two'),\n(1557, 95447, 'ninety-five thousand four hundred forty-seven'),\n(1558, 63295, 'sixty-three thousand two hundred ninety-five'),\n(1559, 59971, 'fifty-nine thousand nine hundred seventy-one'),\n(1560, 85311, 'eighty-five thousand three hundred eleven'),\n(1561, 16180, 'sixteen thousand one hundred eighty'),\n(1562, 12882, 'twelve thousand eight hundred eighty-two'),\n(1563, 9574, 'nine thousand five hundred seventy-four'),\n(1564, 53832, 'fifty-three thousand eight hundred thirty-two'),\n(1565, 68806, 'sixty-eight thousand eight hundred six'),\n(1566, 68886, 'sixty-eight thousand eight hundred eighty-six'),\n(1567, 47312, 'forty-seven thousand three hundred twelve'),\n(1568, 40956, 'forty thousand nine hundred fifty-six'),\n(1569, 81278, 'eighty-one thousand two hundred seventy-eight'),\n(1570, 81024, 'eighty-one thousand twenty-four'),\n(1571, 94492, 'ninety-four thousand four hundred ninety-two'),\n(1572, 14555, 'fourteen thousand five hundred fifty-five'),\n(1573, 88599, 'eighty-eight thousand five hundred ninety-nine'),\n(1574, 17427, 'seventeen thousand four hundred twenty-seven'),\n(1575, 37635, 'thirty-seven thousand six hundred thirty-five'),\n(1576, 14697, 'fourteen thousand six hundred ninety-seven'),\n(1577, 23884, 'twenty-three thousand eight hundred eighty-four'),\n(1578, 49243, 'forty-nine thousand two hundred forty-three'),\n(1579, 19993, 'nineteen thousand nine hundred ninety-three'),\n(1580, 65763, 'sixty-five thousand seven hundred sixty-three'),\n(1581, 70657, 'seventy thousand six hundred fifty-seven'),\n(1582, 6309, 'six thousand three hundred nine'),\n(1583, 95396, 'ninety-five thousand three hundred ninety-six'),\n(1584, 34119, 'thirty-four thousand one hundred nineteen'),\n(1585, 60184, 'sixty thousand one hundred eighty-four'),\n(1586, 60530, 'sixty thousand five hundred thirty'),\n(1587, 519, 'five hundred nineteen'),\n(1588, 29332, 'twenty-nine thousand three hundred thirty-two'),\n(1589, 37833, 'thirty-seven thousand eight hundred thirty-three'),\n(1590, 61159, 'sixty-one thousand one hundred fifty-nine'),\n(1591, 80522, 'eighty thousand five hundred twenty-two'),\n(1592, 53291, 'fifty-three thousand two hundred ninety-one'),\n(1593, 49051, 'forty-nine thousand fifty-one'),\n(1594, 2056, 'two thousand fifty-six'),\n(1595, 77210, 'seventy-seven thousand two hundred ten'),\n(1596, 86325, 'eighty-six thousand three hundred twenty-five'),\n(1597, 84665, 'eighty-four thousand six hundred sixty-five'),\n(1598, 67725, 'sixty-seven thousand seven hundred twenty-five'),\n(1599, 26029, 'twenty-six thousand twenty-nine'),\n(1600, 88601, 'eighty-eight thousand six hundred one'),\n(1601, 32752, 'thirty-two thousand seven hundred fifty-two'),\n(1602, 19325, 'nineteen thousand three hundred twenty-five'),\n(1603, 37076, 'thirty-seven thousand seventy-six'),\n(1604, 15094, 'fifteen thousand ninety-four'),\n(1605, 52998, 'fifty-two thousand nine hundred ninety-eight'),\n(1606, 26678, 'twenty-six thousand six hundred seventy-eight'),\n(1607, 69600, 'sixty-nine thousand six hundred'),\n(1608, 62118, 'sixty-two thousand one hundred eighteen'),\n(1609, 80950, 'eighty thousand nine hundred fifty'),\n(1610, 98818, 'ninety-eight thousand eight hundred eighteen'),\n(1611, 51614, 'fifty-one thousand six hundred fourteen'),\n(1612, 12599, 'twelve thousand five hundred ninety-nine'),\n(1613, 39089, 'thirty-nine thousand eighty-nine'),\n(1614, 95895, 'ninety-five thousand eight hundred ninety-five'),\n(1615, 88094, 'eighty-eight thousand ninety-four'),\n(1616, 82079, 'eighty-two thousand seventy-nine'),\n(1617, 95142, 'ninety-five thousand one hundred forty-two'),\n(1618, 73845, 'seventy-three thousand eight hundred forty-five'),\n(1619, 2906, 'two thousand nine hundred six'),\n(1620, 80960, 'eighty thousand nine hundred sixty'),\n(1621, 23479, 'twenty-three thousand four hundred seventy-nine'),\n(1622, 88298, 'eighty-eight thousand two hundred ninety-eight'),\n(1623, 57077, 'fifty-seven thousand seventy-seven'),\n(1624, 24630, 'twenty-four thousand six hundred thirty'),\n(1625, 74083, 'seventy-four thousand eighty-three'),\n(1626, 32204, 'thirty-two thousand two hundred four'),\n(1627, 40032, 'forty thousand thirty-two'),\n(1628, 61026, 'sixty-one thousand twenty-six'),\n(1629, 44543, 'forty-four thousand five hundred forty-three'),\n(1630, 58253, 'fifty-eight thousand two hundred fifty-three'),\n(1631, 26899, 'twenty-six thousand eight hundred ninety-nine'),\n(1632, 97209, 'ninety-seven thousand two hundred nine'),\n(1633, 41316, 'forty-one thousand three hundred sixteen'),\n(1634, 4556, 'four thousand five hundred fifty-six'),\n(1635, 36548, 'thirty-six thousand five hundred forty-eight'),\n(1636, 38921, 'thirty-eight thousand nine hundred twenty-one'),\n(1637, 9280, 'nine thousand two hundred eighty'),\n(1638, 32498, 'thirty-two thousand four hundred ninety-eight'),\n(1639, 16992, 'sixteen thousand nine hundred ninety-two'),\n(1640, 19324, 'nineteen thousand three hundred twenty-four'),\n(1641, 96451, 'ninety-six thousand four hundred fifty-one'),\n(1642, 22576, 'twenty-two thousand five hundred seventy-six'),\n(1643, 97309, 'ninety-seven thousand three hundred nine'),\n(1644, 80770, 'eighty thousand seven hundred seventy'),\n(1645, 9121, 'nine thousand one hundred twenty-one'),\n(1646, 3338, 'three thousand three hundred thirty-eight'),\n(1647, 66580, 'sixty-six thousand five hundred eighty'),\n(1648, 19191, 'nineteen thousand one hundred ninety-one'),\n(1649, 54541, 'fifty-four thousand five hundred forty-one'),\n(1650, 78396, 'seventy-eight thousand three hundred ninety-six'),\n(1651, 74699, 'seventy-four thousand six hundred ninety-nine'),\n(1652, 27794, 'twenty-seven thousand seven hundred ninety-four'),\n(1653, 55989, 'fifty-five thousand nine hundred eighty-nine'),\n(1654, 54249, 'fifty-four thousand two hundred forty-nine'),\n(1655, 14881, 'fourteen thousand eight hundred eighty-one'),\n(1656, 80268, 'eighty thousand two hundred sixty-eight'),\n(1657, 95277, 'ninety-five thousand two hundred seventy-seven'),\n(1658, 1797, 'one thousand seven hundred ninety-seven'),\n(1659, 1225, 'one thousand two hundred twenty-five'),\n(1660, 8618, 'eight thousand six hundred eighteen'),\n(1661, 39882, 'thirty-nine thousand eight hundred eighty-two'),\n(1662, 54884, 'fifty-four thousand eight hundred eighty-four'),\n(1663, 73047, 'seventy-three thousand forty-seven'),\n(1664, 5927, 'five thousand nine hundred twenty-seven'),\n(1665, 13817, 'thirteen thousand eight hundred seventeen'),\n(1666, 30176, 'thirty thousand one hundred seventy-six'),\n(1667, 33774, 'thirty-three thousand seven hundred seventy-four'),\n(1668, 9833, 'nine thousand eight hundred thirty-three'),\n(1669, 65221, 'sixty-five thousand two hundred twenty-one'),\n(1670, 19520, 'nineteen thousand five hundred twenty'),\n(1671, 35027, 'thirty-five thousand twenty-seven'),\n(1672, 49390, 'forty-nine thousand three hundred ninety'),\n(1673, 76401, 'seventy-six thousand four hundred one'),\n(1674, 57398, 'fifty-seven thousand three hundred ninety-eight'),\n(1675, 63452, 'sixty-three thousand four hundred fifty-two'),\n(1676, 69211, 'sixty-nine thousand two hundred eleven'),\n(1677, 43066, 'forty-three thousand sixty-six'),\n(1678, 89905, 'eighty-nine thousand nine hundred five'),\n(1679, 20694, 'twenty thousand six hundred ninety-four'),\n(1680, 53351, 'fifty-three thousand three hundred fifty-one'),\n(1681, 36442, 'thirty-six thousand four hundred forty-two'),\n(1682, 19987, 'nineteen thousand nine hundred eighty-seven'),\n(1683, 78561, 'seventy-eight thousand five hundred sixty-one'),\n(1684, 76690, 'seventy-six thousand six hundred ninety'),\n(1685, 81665, 'eighty-one thousand six hundred sixty-five'),\n(1686, 9725, 'nine thousand seven hundred twenty-five'),\n(1687, 87526, 'eighty-seven thousand five hundred twenty-six'),\n(1688, 38779, 'thirty-eight thousand seven hundred seventy-nine'),\n(1689, 73641, 'seventy-three thousand six hundred forty-one'),\n(1690, 31420, 'thirty-one thousand four hundred twenty'),\n(1691, 49868, 'forty-nine thousand eight hundred sixty-eight'),\n(1692, 94217, 'ninety-four thousand two hundred seventeen'),\n(1693, 80648, 'eighty thousand six hundred forty-eight'),\n(1694, 14059, 'fourteen thousand fifty-nine'),\n(1695, 35226, 'thirty-five thousand two hundred twenty-six'),\n(1696, 8847, 'eight thousand eight hundred forty-seven'),\n(1697, 83846, 'eighty-three thousand eight hundred forty-six'),\n(1698, 81789, 'eighty-one thousand seven hundred eighty-nine'),\n(1699, 29756, 'twenty-nine thousand seven hundred fifty-six'),\n(1700, 79253, 'seventy-nine thousand two hundred fifty-three'),\n(1701, 4424, 'four thousand four hundred twenty-four'),\n(1702, 96946, 'ninety-six thousand nine hundred forty-six'),\n(1703, 40452, 'forty thousand four hundred fifty-two'),\n(1704, 53559, 'fifty-three thousand five hundred fifty-nine'),\n(1705, 99321, 'ninety-nine thousand three hundred twenty-one'),\n(1706, 70435, 'seventy thousand four hundred thirty-five'),\n(1707, 70689, 'seventy thousand six hundred eighty-nine'),\n(1708, 93232, 'ninety-three thousand two hundred thirty-two'),\n(1709, 25439, 'twenty-five thousand four hundred thirty-nine'),\n(1710, 88816, 'eighty-eight thousand eight hundred sixteen'),\n(1711, 18057, 'eighteen thousand fifty-seven'),\n(1712, 83538, 'eighty-three thousand five hundred thirty-eight'),\n(1713, 14919, 'fourteen thousand nine hundred nineteen'),\n(1714, 65130, 'sixty-five thousand one hundred thirty'),\n(1715, 351, 'three hundred fifty-one'),\n(1716, 8796, 'eight thousand seven hundred ninety-six'),\n(1717, 5647, 'five thousand six hundred forty-seven'),\n(1718, 14079, 'fourteen thousand seventy-nine'),\n(1719, 30128, 'thirty thousand one hundred twenty-eight'),\n(1720, 96358, 'ninety-six thousand three hundred fifty-eight'),\n(1721, 86275, 'eighty-six thousand two hundred seventy-five'),\n(1722, 78679, 'seventy-eight thousand six hundred seventy-nine'),\n(1723, 24988, 'twenty-four thousand nine hundred eighty-eight'),\n(1724, 81247, 'eighty-one thousand two hundred forty-seven'),\n(1725, 14632, 'fourteen thousand six hundred thirty-two'),\n(1726, 65441, 'sixty-five thousand four hundred forty-one'),\n(1727, 27646, 'twenty-seven thousand six hundred forty-six'),\n(1728, 61750, 'sixty-one thousand seven hundred fifty'),\n(1729, 81287, 'eighty-one thousand two hundred eighty-seven'),\n(1730, 47423, 'forty-seven thousand four hundred twenty-three'),\n(1731, 86776, 'eighty-six thousand seven hundred seventy-six'),\n(1732, 86755, 'eighty-six thousand seven hundred fifty-five'),\n(1733, 5222, 'five thousand two hundred twenty-two'),\n(1734, 53629, 'fifty-three thousand six hundred twenty-nine'),\n(1735, 74582, 'seventy-four thousand five hundred eighty-two'),\n(1736, 17560, 'seventeen thousand five hundred sixty'),\n(1737, 53440, 'fifty-three thousand four hundred forty'),\n(1738, 25990, 'twenty-five thousand nine hundred ninety'),\n(1739, 47210, 'forty-seven thousand two hundred ten'),\n(1740, 57398, 'fifty-seven thousand three hundred ninety-eight'),\n(1741, 25842, 'twenty-five thousand eight hundred forty-two'),\n(1742, 77328, 'seventy-seven thousand three hundred twenty-eight'),\n(1743, 18096, 'eighteen thousand ninety-six'),\n(1744, 34754, 'thirty-four thousand seven hundred fifty-four'),\n(1745, 45405, 'forty-five thousand four hundred five'),\n(1746, 13823, 'thirteen thousand eight hundred twenty-three'),\n(1747, 49923, 'forty-nine thousand nine hundred twenty-three'),\n(1748, 83819, 'eighty-three thousand eight hundred nineteen'),\n(1749, 17607, 'seventeen thousand six hundred seven'),\n(1750, 27690, 'twenty-seven thousand six hundred ninety'),\n(1751, 94247, 'ninety-four thousand two hundred forty-seven'),\n(1752, 49325, 'forty-nine thousand three hundred twenty-five'),\n(1753, 85965, 'eighty-five thousand nine hundred sixty-five'),\n(1754, 91977, 'ninety-one thousand nine hundred seventy-seven'),\n(1755, 78239, 'seventy-eight thousand two hundred thirty-nine'),\n(1756, 85321, 'eighty-five thousand three hundred twenty-one'),\n(1757, 9783, 'nine thousand seven hundred eighty-three'),\n(1758, 52766, 'fifty-two thousand seven hundred sixty-six'),\n(1759, 60639, 'sixty thousand six hundred thirty-nine'),\n(1760, 51278, 'fifty-one thousand two hundred seventy-eight'),\n(1761, 27375, 'twenty-seven thousand three hundred seventy-five'),\n(1762, 1617, 'one thousand six hundred seventeen'),\n(1763, 66623, 'sixty-six thousand six hundred twenty-three'),\n(1764, 74421, 'seventy-four thousand four hundred twenty-one'),\n(1765, 24325, 'twenty-four thousand three hundred twenty-five'),\n(1766, 79776, 'seventy-nine thousand seven hundred seventy-six'),\n(1767, 33732, 'thirty-three thousand seven hundred thirty-two'),\n(1768, 61564, 'sixty-one thousand five hundred sixty-four'),\n(1769, 79172, 'seventy-nine thousand one hundred seventy-two'),\n(1770, 90022, 'ninety thousand twenty-two'),\n(1771, 91525, 'ninety-one thousand five hundred twenty-five'),\n(1772, 85153, 'eighty-five thousand one hundred fifty-three'),\n(1773, 84868, 'eighty-four thousand eight hundred sixty-eight'),\n(1774, 19344, 'nineteen thousand three hundred forty-four'),\n(1775, 90744, 'ninety thousand seven hundred forty-four'),\n(1776, 15514, 'fifteen thousand five hundred fourteen'),\n(1777, 71377, 'seventy-one thousand three hundred seventy-seven'),\n(1778, 5810, 'five thousand eight hundred ten'),\n(1779, 33066, 'thirty-three thousand sixty-six'),\n(1780, 67045, 'sixty-seven thousand forty-five'),\n(1781, 47539, 'forty-seven thousand five hundred thirty-nine'),\n(1782, 85185, 'eighty-five thousand one hundred eighty-five'),\n(1783, 22446, 'twenty-two thousand four hundred forty-six'),\n(1784, 92330, 'ninety-two thousand three hundred thirty'),\n(1785, 99813, 'ninety-nine thousand eight hundred thirteen'),\n(1786, 92270, 'ninety-two thousand two hundred seventy'),\n(1787, 71971, 'seventy-one thousand nine hundred seventy-one'),\n(1788, 8653, 'eight thousand six hundred fifty-three'),\n(1789, 74307, 'seventy-four thousand three hundred seven'),\n(1790, 45585, 'forty-five thousand five hundred eighty-five'),\n(1791, 60701, 'sixty thousand seven hundred one'),\n(1792, 58417, 'fifty-eight thousand four hundred seventeen'),\n(1793, 74492, 'seventy-four thousand four hundred ninety-two'),\n(1794, 89732, 'eighty-nine thousand seven hundred thirty-two'),\n(1795, 67912, 'sixty-seven thousand nine hundred twelve'),\n(1796, 18422, 'eighteen thousand four hundred twenty-two'),\n(1797, 11633, 'eleven thousand six hundred thirty-three'),\n(1798, 38432, 'thirty-eight thousand four hundred thirty-two'),\n(1799, 53350, 'fifty-three thousand three hundred fifty'),\n(1800, 3256, 'three thousand two hundred fifty-six'),\n(1801, 18800, 'eighteen thousand eight hundred'),\n(1802, 74056, 'seventy-four thousand fifty-six'),\n(1803, 39640, 'thirty-nine thousand six hundred forty'),\n(1804, 17551, 'seventeen thousand five hundred fifty-one'),\n(1805, 33076, 'thirty-three thousand seventy-six'),\n(1806, 5062, 'five thousand sixty-two'),\n(1807, 59579, 'fifty-nine thousand five hundred seventy-nine'),\n(1808, 93580, 'ninety-three thousand five hundred eighty'),\n(1809, 49252, 'forty-nine thousand two hundred fifty-two'),\n(1810, 14480, 'fourteen thousand four hundred eighty'),\n(1811, 13799, 'thirteen thousand seven hundred ninety-nine'),\n(1812, 6840, 'six thousand eight hundred forty'),\n(1813, 87793, 'eighty-seven thousand seven hundred ninety-three'),\n(1814, 41698, 'forty-one thousand six hundred ninety-eight'),\n(1815, 37665, 'thirty-seven thousand six hundred sixty-five'),\n(1816, 71170, 'seventy-one thousand one hundred seventy'),\n(1817, 69307, 'sixty-nine thousand three hundred seven'),\n(1818, 36344, 'thirty-six thousand three hundred forty-four'),\n(1819, 82535, 'eighty-two thousand five hundred thirty-five'),\n(1820, 11733, 'eleven thousand seven hundred thirty-three'),\n(1821, 37335, 'thirty-seven thousand three hundred thirty-five'),\n(1822, 16657, 'sixteen thousand six hundred fifty-seven'),\n(1823, 77184, 'seventy-seven thousand one hundred eighty-four'),\n(1824, 29887, 'twenty-nine thousand eight hundred eighty-seven'),\n(1825, 38486, 'thirty-eight thousand four hundred eighty-six'),\n(1826, 15093, 'fifteen thousand ninety-three'),\n(1827, 23045, 'twenty-three thousand forty-five'),\n(1828, 84551, 'eighty-four thousand five hundred fifty-one'),\n(1829, 53035, 'fifty-three thousand thirty-five'),\n(1830, 64634, 'sixty-four thousand six hundred thirty-four'),\n(1831, 43246, 'forty-three thousand two hundred forty-six'),\n(1832, 91381, 'ninety-one thousand three hundred eighty-one'),\n(1833, 48117, 'forty-eight thousand one hundred seventeen'),\n(1834, 28126, 'twenty-eight thousand one hundred twenty-six'),\n(1835, 94457, 'ninety-four thousand four hundred fifty-seven'),\n(1836, 53085, 'fifty-three thousand eighty-five'),\n(1837, 91230, 'ninety-one thousand two hundred thirty'),\n(1838, 80930, 'eighty thousand nine hundred thirty'),\n(1839, 51813, 'fifty-one thousand eight hundred thirteen'),\n(1840, 48853, 'forty-eight thousand eight hundred fifty-three'),\n(1841, 10541, 'ten thousand five hundred forty-one'),\n(1842, 63316, 'sixty-three thousand three hundred sixteen'),\n(1843, 86642, 'eighty-six thousand six hundred forty-two'),\n(1844, 90329, 'ninety thousand three hundred twenty-nine'),\n(1845, 45310, 'forty-five thousand three hundred ten'),\n(1846, 41949, 'forty-one thousand nine hundred forty-nine'),\n(1847, 35438, 'thirty-five thousand four hundred thirty-eight'),\n(1848, 46641, 'forty-six thousand six hundred forty-one'),\n(1849, 23307, 'twenty-three thousand three hundred seven'),\n(1850, 79886, 'seventy-nine thousand eight hundred eighty-six'),\n(1851, 284, 'two hundred eighty-four'),\n(1852, 13104, 'thirteen thousand one hundred four'),\n(1853, 53609, 'fifty-three thousand six hundred nine'),\n(1854, 58540, 'fifty-eight thousand five hundred forty'),\n(1855, 22527, 'twenty-two thousand five hundred twenty-seven'),\n(1856, 89998, 'eighty-nine thousand nine hundred ninety-eight'),\n(1857, 17504, 'seventeen thousand five hundred four'),\n(1858, 82012, 'eighty-two thousand twelve'),\n(1859, 1468, 'one thousand four hundred sixty-eight'),\n(1860, 76117, 'seventy-six thousand one hundred seventeen'),\n(1861, 83855, 'eighty-three thousand eight hundred fifty-five'),\n(1862, 84711, 'eighty-four thousand seven hundred eleven'),\n(1863, 71607, 'seventy-one thousand six hundred seven'),\n(1864, 13753, 'thirteen thousand seven hundred fifty-three'),\n(1865, 44167, 'forty-four thousand one hundred sixty-seven'),\n(1866, 49345, 'forty-nine thousand three hundred forty-five'),\n(1867, 89810, 'eighty-nine thousand eight hundred ten'),\n(1868, 3843, 'three thousand eight hundred forty-three'),\n(1869, 55672, 'fifty-five thousand six hundred seventy-two'),\n(1870, 74000, 'seventy-four thousand'),\n(1871, 74072, 'seventy-four thousand seventy-two'),\n(1872, 92844, 'ninety-two thousand eight hundred forty-four'),\n(1873, 28448, 'twenty-eight thousand four hundred forty-eight'),\n(1874, 33924, 'thirty-three thousand nine hundred twenty-four'),\n(1875, 34292, 'thirty-four thousand two hundred ninety-two'),\n(1876, 45610, 'forty-five thousand six hundred ten'),\n(1877, 62127, 'sixty-two thousand one hundred twenty-seven'),\n(1878, 60105, 'sixty thousand one hundred five'),\n(1879, 65062, 'sixty-five thousand sixty-two'),\n(1880, 57148, 'fifty-seven thousand one hundred forty-eight'),\n(1881, 66796, 'sixty-six thousand seven hundred ninety-six'),\n(1882, 62699, 'sixty-two thousand six hundred ninety-nine'),\n(1883, 75145, 'seventy-five thousand one hundred forty-five'),\n(1884, 41321, 'forty-one thousand three hundred twenty-one'),\n(1885, 2213, 'two thousand two hundred thirteen'),\n(1886, 74966, 'seventy-four thousand nine hundred sixty-six'),\n(1887, 45305, 'forty-five thousand three hundred five'),\n(1888, 76632, 'seventy-six thousand six hundred thirty-two'),\n(1889, 99047, 'ninety-nine thousand forty-seven'),\n(1890, 54068, 'fifty-four thousand sixty-eight'),\n(1891, 8881, 'eight thousand eight hundred eighty-one'),\n(1892, 46208, 'forty-six thousand two hundred eight'),\n(1893, 73868, 'seventy-three thousand eight hundred sixty-eight'),\n(1894, 19510, 'nineteen thousand five hundred ten'),\n(1895, 72069, 'seventy-two thousand sixty-nine'),\n(1896, 51770, 'fifty-one thousand seven hundred seventy'),\n(1897, 91125, 'ninety-one thousand one hundred twenty-five'),\n(1898, 69281, 'sixty-nine thousand two hundred eighty-one'),\n(1899, 96078, 'ninety-six thousand seventy-eight'),\n(1900, 99710, 'ninety-nine thousand seven hundred ten'),\n(1901, 92553, 'ninety-two thousand five hundred fifty-three'),\n(1902, 66580, 'sixty-six thousand five hundred eighty'),\n(1903, 48921, 'forty-eight thousand nine hundred twenty-one'),\n(1904, 57229, 'fifty-seven thousand two hundred twenty-nine'),\n(1905, 4529, 'four thousand five hundred twenty-nine'),\n(1906, 38632, 'thirty-eight thousand six hundred thirty-two'),\n(1907, 12327, 'twelve thousand three hundred twenty-seven'),\n(1908, 37881, 'thirty-seven thousand eight hundred eighty-one'),\n(1909, 54221, 'fifty-four thousand two hundred twenty-one'),\n(1910, 58504, 'fifty-eight thousand five hundred four'),\n(1911, 81205, 'eighty-one thousand two hundred five'),\n(1912, 49852, 'forty-nine thousand eight hundred fifty-two'),\n(1913, 18990, 'eighteen thousand nine hundred ninety'),\n(1914, 46686, 'forty-six thousand six hundred eighty-six'),\n(1915, 49449, 'forty-nine thousand four hundred forty-nine'),\n(1916, 32859, 'thirty-two thousand eight hundred fifty-nine'),\n(1917, 93576, 'ninety-three thousand five hundred seventy-six'),\n(1918, 79522, 'seventy-nine thousand five hundred twenty-two'),\n(1919, 48625, 'forty-eight thousand six hundred twenty-five'),\n(1920, 17379, 'seventeen thousand three hundred seventy-nine'),\n(1921, 86661, 'eighty-six thousand six hundred sixty-one'),\n(1922, 89879, 'eighty-nine thousand eight hundred seventy-nine'),\n(1923, 88484, 'eighty-eight thousand four hundred eighty-four'),\n(1924, 60303, 'sixty thousand three hundred three'),\n(1925, 66627, 'sixty-six thousand six hundred twenty-seven'),\n(1926, 9889, 'nine thousand eight hundred eighty-nine'),\n(1927, 54268, 'fifty-four thousand two hundred sixty-eight'),\n(1928, 509, 'five hundred nine'),\n(1929, 29418, 'twenty-nine thousand four hundred eighteen'),\n(1930, 1114, 'one thousand one hundred fourteen'),\n(1931, 57107, 'fifty-seven thousand one hundred seven'),\n(1932, 49837, 'forty-nine thousand eight hundred thirty-seven'),\n(1933, 31332, 'thirty-one thousand three hundred thirty-two'),\n(1934, 19882, 'nineteen thousand eight hundred eighty-two'),\n(1935, 6390, 'six thousand three hundred ninety'),\n(1936, 92051, 'ninety-two thousand fifty-one'),\n(1937, 73591, 'seventy-three thousand five hundred ninety-one'),\n(1938, 73809, 'seventy-three thousand eight hundred nine'),\n(1939, 37123, 'thirty-seven thousand one hundred twenty-three'),\n(1940, 46702, 'forty-six thousand seven hundred two'),\n(1941, 44453, 'forty-four thousand four hundred fifty-three'),\n(1942, 94498, 'ninety-four thousand four hundred ninety-eight'),\n(1943, 41213, 'forty-one thousand two hundred thirteen'),\n(1944, 37512, 'thirty-seven thousand five hundred twelve'),\n(1945, 40345, 'forty thousand three hundred forty-five'),\n(1946, 65300, 'sixty-five thousand three hundred'),\n(1947, 99023, 'ninety-nine thousand twenty-three'),\n(1948, 51529, 'fifty-one thousand five hundred twenty-nine'),\n(1949, 40564, 'forty thousand five hundred sixty-four'),\n(1950, 93119, 'ninety-three thousand one hundred nineteen'),\n(1951, 95801, 'ninety-five thousand eight hundred one'),\n(1952, 29139, 'twenty-nine thousand one hundred thirty-nine'),\n(1953, 88533, 'eighty-eight thousand five hundred thirty-three'),\n(1954, 36391, 'thirty-six thousand three hundred ninety-one'),\n(1955, 46914, 'forty-six thousand nine hundred fourteen'),\n(1956, 1945, 'one thousand nine hundred forty-five'),\n(1957, 17441, 'seventeen thousand four hundred forty-one'),\n(1958, 50389, 'fifty thousand three hundred eighty-nine'),\n(1959, 2919, 'two thousand nine hundred nineteen'),\n(1960, 7387, 'seven thousand three hundred eighty-seven'),\n(1961, 60435, 'sixty thousand four hundred thirty-five'),\n(1962, 87437, 'eighty-seven thousand four hundred thirty-seven'),\n(1963, 48552, 'forty-eight thousand five hundred fifty-two'),\n(1964, 97032, 'ninety-seven thousand thirty-two'),\n(1965, 3774, 'three thousand seven hundred seventy-four'),\n(1966, 88663, 'eighty-eight thousand six hundred sixty-three'),\n(1967, 49949, 'forty-nine thousand nine hundred forty-nine'),\n(1968, 42172, 'forty-two thousand one hundred seventy-two'),\n(1969, 81342, 'eighty-one thousand three hundred forty-two'),\n(1970, 50370, 'fifty thousand three hundred seventy'),\n(1971, 68432, 'sixty-eight thousand four hundred thirty-two'),\n(1972, 74779, 'seventy-four thousand seven hundred seventy-nine'),\n(1973, 78931, 'seventy-eight thousand nine hundred thirty-one'),\n(1974, 88840, 'eighty-eight thousand eight hundred forty'),\n(1975, 33044, 'thirty-three thousand forty-four'),\n(1976, 33493, 'thirty-three thousand four hundred ninety-three'),\n(1977, 93664, 'ninety-three thousand six hundred sixty-four'),\n(1978, 18493, 'eighteen thousand four hundred ninety-three'),\n(1979, 31558, 'thirty-one thousand five hundred fifty-eight'),\n(1980, 78410, 'seventy-eight thousand four hundred ten'),\n(1981, 18024, 'eighteen thousand twenty-four'),\n(1982, 84219, 'eighty-four thousand two hundred nineteen'),\n(1983, 93478, 'ninety-three thousand four hundred seventy-eight'),\n(1984, 77514, 'seventy-seven thousand five hundred fourteen'),\n(1985, 40296, 'forty thousand two hundred ninety-six'),\n(1986, 51888, 'fifty-one thousand eight hundred eighty-eight'),\n(1987, 16949, 'sixteen thousand nine hundred forty-nine'),\n(1988, 68817, 'sixty-eight thousand eight hundred seventeen'),\n(1989, 69649, 'sixty-nine thousand six hundred forty-nine'),\n(1990, 72933, 'seventy-two thousand nine hundred thirty-three'),\n(1991, 12206, 'twelve thousand two hundred six'),\n(1992, 97291, 'ninety-seven thousand two hundred ninety-one'),\n(1993, 39229, 'thirty-nine thousand two hundred twenty-nine'),\n(1994, 37831, 'thirty-seven thousand eight hundred thirty-one'),\n(1995, 33866, 'thirty-three thousand eight hundred sixty-six'),\n(1996, 85012, 'eighty-five thousand twelve'),\n(1997, 38533, 'thirty-eight thousand five hundred thirty-three'),\n(1998, 46016, 'forty-six thousand sixteen'),\n(1999, 93324, 'ninety-three thousand three hundred twenty-four'),\n(2000, 63623, 'sixty-three thousand six hundred twenty-three'),\n(2001, 98556, 'ninety-eight thousand five hundred fifty-six'),\n(2002, 58599, 'fifty-eight thousand five hundred ninety-nine'),\n(2003, 45225, 'forty-five thousand two hundred twenty-five'),\n(2004, 37548, 'thirty-seven thousand five hundred forty-eight'),\n(2005, 83650, 'eighty-three thousand six hundred fifty'),\n(2006, 14417, 'fourteen thousand four hundred seventeen'),\n(2007, 32517, 'thirty-two thousand five hundred seventeen'),\n(2008, 22945, 'twenty-two thousand nine hundred forty-five'),\n(2009, 3316, 'three thousand three hundred sixteen'),\n(2010, 93213, 'ninety-three thousand two hundred thirteen'),\n(2011, 26724, 'twenty-six thousand seven hundred twenty-four'),\n(2012, 21333, 'twenty-one thousand three hundred thirty-three'),\n(2013, 81607, 'eighty-one thousand six hundred seven'),\n(2014, 82073, 'eighty-two thousand seventy-three'),\n(2015, 79396, 'seventy-nine thousand three hundred ninety-six'),\n(2016, 27732, 'twenty-seven thousand seven hundred thirty-two'),\n(2017, 15834, 'fifteen thousand eight hundred thirty-four'),\n(2018, 72301, 'seventy-two thousand three hundred one'),\n(2019, 9948, 'nine thousand nine hundred forty-eight'),\n(2020, 65047, 'sixty-five thousand forty-seven'),\n(2021, 75772, 'seventy-five thousand seven hundred seventy-two'),\n(2022, 79232, 'seventy-nine thousand two hundred thirty-two'),\n(2023, 97661, 'ninety-seven thousand six hundred sixty-one'),\n(2024, 25306, 'twenty-five thousand three hundred six'),\n(2025, 31192, 'thirty-one thousand one hundred ninety-two'),\n(2026, 88179, 'eighty-eight thousand one hundred seventy-nine'),\n(2027, 20441, 'twenty thousand four hundred forty-one'),\n(2028, 47119, 'forty-seven thousand one hundred nineteen'),\n(2029, 65133, 'sixty-five thousand one hundred thirty-three'),\n(2030, 8819, 'eight thousand eight hundred nineteen'),\n(2031, 6202, 'six thousand two hundred two'),\n(2032, 20304, 'twenty thousand three hundred four'),\n(2033, 1572, 'one thousand five hundred seventy-two'),\n(2034, 17955, 'seventeen thousand nine hundred fifty-five'),\n(2035, 49827, 'forty-nine thousand eight hundred twenty-seven'),\n(2036, 61984, 'sixty-one thousand nine hundred eighty-four'),\n(2037, 56316, 'fifty-six thousand three hundred sixteen'),\n(2038, 26547, 'twenty-six thousand five hundred forty-seven'),\n(2039, 47448, 'forty-seven thousand four hundred forty-eight'),\n(2040, 56793, 'fifty-six thousand seven hundred ninety-three'),\n(2041, 47578, 'forty-seven thousand five hundred seventy-eight'),\n(2042, 70665, 'seventy thousand six hundred sixty-five'),\n(2043, 7051, 'seven thousand fifty-one'),\n(2044, 26887, 'twenty-six thousand eight hundred eighty-seven'),\n(2045, 71921, 'seventy-one thousand nine hundred twenty-one'),\n(2046, 69606, 'sixty-nine thousand six hundred six'),\n(2047, 81647, 'eighty-one thousand six hundred forty-seven'),\n(2048, 44218, 'forty-four thousand two hundred eighteen'),\n(2049, 85354, 'eighty-five thousand three hundred fifty-four'),\n(2050, 8849, 'eight thousand eight hundred forty-nine'),\n(2051, 84181, 'eighty-four thousand one hundred eighty-one'),\n(2052, 32708, 'thirty-two thousand seven hundred eight'),\n(2053, 68880, 'sixty-eight thousand eight hundred eighty'),\n(2054, 75721, 'seventy-five thousand seven hundred twenty-one'),\n(2055, 29936, 'twenty-nine thousand nine hundred thirty-six'),\n(2056, 89236, 'eighty-nine thousand two hundred thirty-six'),\n(2057, 91416, 'ninety-one thousand four hundred sixteen'),\n(2058, 63884, 'sixty-three thousand eight hundred eighty-four'),\n(2059, 33238, 'thirty-three thousand two hundred thirty-eight'),\n(2060, 74676, 'seventy-four thousand six hundred seventy-six'),\n(2061, 72246, 'seventy-two thousand two hundred forty-six'),\n(2062, 69954, 'sixty-nine thousand nine hundred fifty-four'),\n(2063, 23336, 'twenty-three thousand three hundred thirty-six'),\n(2064, 35017, 'thirty-five thousand seventeen'),\n(2065, 86820, 'eighty-six thousand eight hundred twenty'),\n(2066, 17954, 'seventeen thousand nine hundred fifty-four'),\n(2067, 35069, 'thirty-five thousand sixty-nine'),\n(2068, 44963, 'forty-four thousand nine hundred sixty-three'),\n(2069, 16622, 'sixteen thousand six hundred twenty-two'),\n(2070, 77447, 'seventy-seven thousand four hundred forty-seven'),\n(2071, 4786, 'four thousand seven hundred eighty-six'),\n(2072, 77713, 'seventy-seven thousand seven hundred thirteen'),\n(2073, 80044, 'eighty thousand forty-four'),\n(2074, 84960, 'eighty-four thousand nine hundred sixty'),\n(2075, 75412, 'seventy-five thousand four hundred twelve'),\n(2076, 32987, 'thirty-two thousand nine hundred eighty-seven'),\n(2077, 27500, 'twenty-seven thousand five hundred'),\n(2078, 69099, 'sixty-nine thousand ninety-nine'),\n(2079, 95854, 'ninety-five thousand eight hundred fifty-four'),\n(2080, 60201, 'sixty thousand two hundred one'),\n(2081, 18459, 'eighteen thousand four hundred fifty-nine'),\n(2082, 35972, 'thirty-five thousand nine hundred seventy-two'),\n(2083, 74050, 'seventy-four thousand fifty'),\n(2084, 19799, 'nineteen thousand seven hundred ninety-nine'),\n(2085, 95778, 'ninety-five thousand seven hundred seventy-eight'),\n(2086, 62066, 'sixty-two thousand sixty-six'),\n(2087, 61196, 'sixty-one thousand one hundred ninety-six'),\n(2088, 58432, 'fifty-eight thousand four hundred thirty-two'),\n(2089, 97946, 'ninety-seven thousand nine hundred forty-six'),\n(2090, 12406, 'twelve thousand four hundred six'),\n(2091, 68826, 'sixty-eight thousand eight hundred twenty-six'),\n(2092, 88084, 'eighty-eight thousand eighty-four'),\n(2093, 53313, 'fifty-three thousand three hundred thirteen'),\n(2094, 61535, 'sixty-one thousand five hundred thirty-five'),\n(2095, 18262, 'eighteen thousand two hundred sixty-two'),\n(2096, 23242, 'twenty-three thousand two hundred forty-two'),\n(2097, 69693, 'sixty-nine thousand six hundred ninety-three'),\n(2098, 57613, 'fifty-seven thousand six hundred thirteen'),\n(2099, 93021, 'ninety-three thousand twenty-one'),\n(2100, 39809, 'thirty-nine thousand eight hundred nine'),\n(2101, 67259, 'sixty-seven thousand two hundred fifty-nine'),\n(2102, 6215, 'six thousand two hundred fifteen'),\n(2103, 59291, 'fifty-nine thousand two hundred ninety-one'),\n(2104, 10985, 'ten thousand nine hundred eighty-five'),\n(2105, 33289, 'thirty-three thousand two hundred eighty-nine'),\n(2106, 82410, 'eighty-two thousand four hundred ten'),\n(2107, 24220, 'twenty-four thousand two hundred twenty'),\n(2108, 48165, 'forty-eight thousand one hundred sixty-five'),\n(2109, 82098, 'eighty-two thousand ninety-eight'),\n(2110, 94652, 'ninety-four thousand six hundred fifty-two'),\n(2111, 22610, 'twenty-two thousand six hundred ten'),\n(2112, 20576, 'twenty thousand five hundred seventy-six'),\n(2113, 66793, 'sixty-six thousand seven hundred ninety-three'),\n(2114, 89310, 'eighty-nine thousand three hundred ten'),\n(2115, 68790, 'sixty-eight thousand seven hundred ninety'),\n(2116, 86133, 'eighty-six thousand one hundred thirty-three'),\n(2117, 31710, 'thirty-one thousand seven hundred ten'),\n(2118, 14160, 'fourteen thousand one hundred sixty'),\n(2119, 26244, 'twenty-six thousand two hundred forty-four'),\n(2120, 30473, 'thirty thousand four hundred seventy-three'),\n(2121, 26424, 'twenty-six thousand four hundred twenty-four'),\n(2122, 90055, 'ninety thousand fifty-five'),\n(2123, 85290, 'eighty-five thousand two hundred ninety'),\n(2124, 63577, 'sixty-three thousand five hundred seventy-seven'),\n(2125, 73925, 'seventy-three thousand nine hundred twenty-five'),\n(2126, 62904, 'sixty-two thousand nine hundred four'),\n(2127, 12256, 'twelve thousand two hundred fifty-six'),\n(2128, 35748, 'thirty-five thousand seven hundred forty-eight'),\n(2129, 96591, 'ninety-six thousand five hundred ninety-one'),\n(2130, 33621, 'thirty-three thousand six hundred twenty-one'),\n(2131, 61369, 'sixty-one thousand three hundred sixty-nine'),\n(2132, 20108, 'twenty thousand one hundred eight'),\n(2133, 47031, 'forty-seven thousand thirty-one'),\n(2134, 16205, 'sixteen thousand two hundred five'),\n(2135, 69777, 'sixty-nine thousand seven hundred seventy-seven'),\n(2136, 50091, 'fifty thousand ninety-one'),\n(2137, 87328, 'eighty-seven thousand three hundred twenty-eight'),\n(2138, 75202, 'seventy-five thousand two hundred two'),\n(2139, 86031, 'eighty-six thousand thirty-one'),\n(2140, 83275, 'eighty-three thousand two hundred seventy-five'),\n(2141, 91163, 'ninety-one thousand one hundred sixty-three'),\n(2142, 29596, 'twenty-nine thousand five hundred ninety-six'),\n(2143, 80885, 'eighty thousand eight hundred eighty-five'),\n(2144, 7114, 'seven thousand one hundred fourteen'),\n(2145, 95311, 'ninety-five thousand three hundred eleven'),\n(2146, 41598, 'forty-one thousand five hundred ninety-eight'),\n(2147, 15299, 'fifteen thousand two hundred ninety-nine'),\n(2148, 68783, 'sixty-eight thousand seven hundred eighty-three'),\n(2149, 77923, 'seventy-seven thousand nine hundred twenty-three'),\n(2150, 84420, 'eighty-four thousand four hundred twenty'),\n(2151, 29543, 'twenty-nine thousand five hundred forty-three'),\n(2152, 61605, 'sixty-one thousand six hundred five'),\n(2153, 24259, 'twenty-four thousand two hundred fifty-nine'),\n(2154, 26587, 'twenty-six thousand five hundred eighty-seven'),\n(2155, 3750, 'three thousand seven hundred fifty'),\n(2156, 19736, 'nineteen thousand seven hundred thirty-six'),\n(2157, 30736, 'thirty thousand seven hundred thirty-six'),\n(2158, 90402, 'ninety thousand four hundred two'),\n(2159, 2620, 'two thousand six hundred twenty'),\n(2160, 88988, 'eighty-eight thousand nine hundred eighty-eight'),\n(2161, 36807, 'thirty-six thousand eight hundred seven'),\n(2162, 61988, 'sixty-one thousand nine hundred eighty-eight'),\n(2163, 84714, 'eighty-four thousand seven hundred fourteen'),\n(2164, 60150, 'sixty thousand one hundred fifty'),\n(2165, 10846, 'ten thousand eight hundred forty-six'),\n(2166, 60791, 'sixty thousand seven hundred ninety-one'),\n(2167, 73750, 'seventy-three thousand seven hundred fifty'),\n(2168, 81970, 'eighty-one thousand nine hundred seventy'),\n(2169, 91144, 'ninety-one thousand one hundred forty-four'),\n(2170, 3387, 'three thousand three hundred eighty-seven'),\n(2171, 5474, 'five thousand four hundred seventy-four'),\n(2172, 98118, 'ninety-eight thousand one hundred eighteen'),\n(2173, 1979, 'one thousand nine hundred seventy-nine'),\n(2174, 48815, 'forty-eight thousand eight hundred fifteen'),\n(2175, 65851, 'sixty-five thousand eight hundred fifty-one'),\n(2176, 20554, 'twenty thousand five hundred fifty-four'),\n(2177, 74468, 'seventy-four thousand four hundred sixty-eight'),\n(2178, 26877, 'twenty-six thousand eight hundred seventy-seven'),\n(2179, 8772, 'eight thousand seven hundred seventy-two'),\n(2180, 14905, 'fourteen thousand nine hundred five'),\n(2181, 26261, 'twenty-six thousand two hundred sixty-one'),\n(2182, 81205, 'eighty-one thousand two hundred five'),\n(2183, 3169, 'three thousand one hundred sixty-nine'),\n(2184, 60000, 'sixty thousand'),\n(2185, 36692, 'thirty-six thousand six hundred ninety-two'),\n(2186, 66844, 'sixty-six thousand eight hundred forty-four'),\n(2187, 84078, 'eighty-four thousand seventy-eight'),\n(2188, 70466, 'seventy thousand four hundred sixty-six'),\n(2189, 87040, 'eighty-seven thousand forty'),\n(2190, 36416, 'thirty-six thousand four hundred sixteen'),\n(2191, 37209, 'thirty-seven thousand two hundred nine'),\n(2192, 19563, 'nineteen thousand five hundred sixty-three'),\n(2193, 99620, 'ninety-nine thousand six hundred twenty'),\n(2194, 83710, 'eighty-three thousand seven hundred ten'),\n(2195, 17594, 'seventeen thousand five hundred ninety-four'),\n(2196, 48053, 'forty-eight thousand fifty-three'),\n(2197, 9309, 'nine thousand three hundred nine'),\n(2198, 87289, 'eighty-seven thousand two hundred eighty-nine'),\n(2199, 38833, 'thirty-eight thousand eight hundred thirty-three'),\n(2200, 54107, 'fifty-four thousand one hundred seven'),\n(2201, 33163, 'thirty-three thousand one hundred sixty-three'),\n(2202, 15512, 'fifteen thousand five hundred twelve'),\n(2203, 36025, 'thirty-six thousand twenty-five'),\n(2204, 68272, 'sixty-eight thousand two hundred seventy-two'),\n(2205, 96954, 'ninety-six thousand nine hundred fifty-four'),\n(2206, 56025, 'fifty-six thousand twenty-five'),\n(2207, 72751, 'seventy-two thousand seven hundred fifty-one'),\n(2208, 98035, 'ninety-eight thousand thirty-five'),\n(2209, 33551, 'thirty-three thousand five hundred fifty-one'),\n(2210, 8544, 'eight thousand five hundred forty-four'),\n(2211, 75038, 'seventy-five thousand thirty-eight'),\n(2212, 53059, 'fifty-three thousand fifty-nine'),\n(2213, 66618, 'sixty-six thousand six hundred eighteen'),\n(2214, 57733, 'fifty-seven thousand seven hundred thirty-three'),\n(2215, 49471, 'forty-nine thousand four hundred seventy-one'),\n(2216, 41965, 'forty-one thousand nine hundred sixty-five'),\n(2217, 12073, 'twelve thousand seventy-three'),\n(2218, 20417, 'twenty thousand four hundred seventeen'),\n(2219, 87203, 'eighty-seven thousand two hundred three'),\n(2220, 86819, 'eighty-six thousand eight hundred nineteen'),\n(2221, 93531, 'ninety-three thousand five hundred thirty-one'),\n(2222, 68156, 'sixty-eight thousand one hundred fifty-six'),\n(2223, 8306, 'eight thousand three hundred six'),\n(2224, 72081, 'seventy-two thousand eighty-one'),\n(2225, 96486, 'ninety-six thousand four hundred eighty-six'),\n(2226, 71337, 'seventy-one thousand three hundred thirty-seven'),\n(2227, 55335, 'fifty-five thousand three hundred thirty-five'),\n(2228, 37346, 'thirty-seven thousand three hundred forty-six'),\n(2229, 15828, 'fifteen thousand eight hundred twenty-eight'),\n(2230, 47959, 'forty-seven thousand nine hundred fifty-nine'),\n(2231, 77454, 'seventy-seven thousand four hundred fifty-four'),\n(2232, 29837, 'twenty-nine thousand eight hundred thirty-seven'),\n(2233, 93078, 'ninety-three thousand seventy-eight'),\n(2234, 4704, 'four thousand seven hundred four'),\n(2235, 47966, 'forty-seven thousand nine hundred sixty-six'),\n(2236, 27502, 'twenty-seven thousand five hundred two'),\n(2237, 27683, 'twenty-seven thousand six hundred eighty-three'),\n(2238, 89607, 'eighty-nine thousand six hundred seven'),\n(2239, 92749, 'ninety-two thousand seven hundred forty-nine'),\n(2240, 11907, 'eleven thousand nine hundred seven'),\n(2241, 6074, 'six thousand seventy-four'),\n(2242, 30711, 'thirty thousand seven hundred eleven'),\n(2243, 61014, 'sixty-one thousand fourteen'),\n(2244, 79255, 'seventy-nine thousand two hundred fifty-five'),\n(2245, 71286, 'seventy-one thousand two hundred eighty-six'),\n(2246, 60934, 'sixty thousand nine hundred thirty-four'),\n(2247, 69311, 'sixty-nine thousand three hundred eleven'),\n(2248, 86131, 'eighty-six thousand one hundred thirty-one'),\n(2249, 25307, 'twenty-five thousand three hundred seven'),\n(2250, 72456, 'seventy-two thousand four hundred fifty-six'),\n(2251, 45054, 'forty-five thousand fifty-four'),\n(2252, 50350, 'fifty thousand three hundred fifty'),\n(2253, 38134, 'thirty-eight thousand one hundred thirty-four'),\n(2254, 65253, 'sixty-five thousand two hundred fifty-three'),\n(2255, 23208, 'twenty-three thousand two hundred eight'),\n(2256, 15835, 'fifteen thousand eight hundred thirty-five'),\n(2257, 27997, 'twenty-seven thousand nine hundred ninety-seven'),\n(2258, 21168, 'twenty-one thousand one hundred sixty-eight'),\n(2259, 6740, 'six thousand seven hundred forty'),\n(2260, 89734, 'eighty-nine thousand seven hundred thirty-four'),\n(2261, 62215, 'sixty-two thousand two hundred fifteen'),\n(2262, 92196, 'ninety-two thousand one hundred ninety-six'),\n(2263, 96590, 'ninety-six thousand five hundred ninety'),\n(2264, 35844, 'thirty-five thousand eight hundred forty-four'),\n(2265, 0, 'zero'),\n(2266, 88210, 'eighty-eight thousand two hundred ten'),\n(2267, 12229, 'twelve thousand two hundred twenty-nine'),\n(2268, 4044, 'four thousand forty-four'),\n(2269, 57305, 'fifty-seven thousand three hundred five'),\n(2270, 60151, 'sixty thousand one hundred fifty-one'),\n(2271, 87982, 'eighty-seven thousand nine hundred eighty-two'),\n(2272, 82274, 'eighty-two thousand two hundred seventy-four'),\n(2273, 25777, 'twenty-five thousand seven hundred seventy-seven'),\n(2274, 48417, 'forty-eight thousand four hundred seventeen'),\n(2275, 91581, 'ninety-one thousand five hundred eighty-one'),\n(2276, 89561, 'eighty-nine thousand five hundred sixty-one'),\n(2277, 98447, 'ninety-eight thousand four hundred forty-seven'),\n(2278, 94677, 'ninety-four thousand six hundred seventy-seven'),\n(2279, 87830, 'eighty-seven thousand eight hundred thirty'),\n(2280, 32972, 'thirty-two thousand nine hundred seventy-two'),\n(2281, 89701, 'eighty-nine thousand seven hundred one'),\n(2282, 16398, 'sixteen thousand three hundred ninety-eight'),\n(2283, 97877, 'ninety-seven thousand eight hundred seventy-seven'),\n(2284, 88436, 'eighty-eight thousand four hundred thirty-six'),\n(2285, 12266, 'twelve thousand two hundred sixty-six'),\n(2286, 48915, 'forty-eight thousand nine hundred fifteen'),\n(2287, 26226, 'twenty-six thousand two hundred twenty-six'),\n(2288, 74341, 'seventy-four thousand three hundred forty-one'),\n(2289, 13094, 'thirteen thousand ninety-four'),\n(2290, 4047, 'four thousand forty-seven'),\n(2291, 77945, 'seventy-seven thousand nine hundred forty-five'),\n(2292, 56908, 'fifty-six thousand nine hundred eight'),\n(2293, 7946, 'seven thousand nine hundred forty-six'),\n(2294, 64802, 'sixty-four thousand eight hundred two'),\n(2295, 27687, 'twenty-seven thousand six hundred eighty-seven'),\n(2296, 10869, 'ten thousand eight hundred sixty-nine'),\n(2297, 74280, 'seventy-four thousand two hundred eighty'),\n(2298, 44015, 'forty-four thousand fifteen'),\n(2299, 96226, 'ninety-six thousand two hundred twenty-six'),\n(2300, 84163, 'eighty-four thousand one hundred sixty-three'),\n(2301, 86187, 'eighty-six thousand one hundred eighty-seven'),\n(2302, 75480, 'seventy-five thousand four hundred eighty'),\n(2303, 47697, 'forty-seven thousand six hundred ninety-seven'),\n(2304, 83305, 'eighty-three thousand three hundred five'),\n(2305, 97239, 'ninety-seven thousand two hundred thirty-nine'),\n(2306, 7950, 'seven thousand nine hundred fifty'),\n(2307, 22901, 'twenty-two thousand nine hundred one'),\n(2308, 79988, 'seventy-nine thousand nine hundred eighty-eight'),\n(2309, 27934, 'twenty-seven thousand nine hundred thirty-four'),\n(2310, 25620, 'twenty-five thousand six hundred twenty'),\n(2311, 81565, 'eighty-one thousand five hundred sixty-five'),\n(2312, 77671, 'seventy-seven thousand six hundred seventy-one'),\n(2313, 49585, 'forty-nine thousand five hundred eighty-five'),\n(2314, 47771, 'forty-seven thousand seven hundred seventy-one'),\n(2315, 10113, 'ten thousand one hundred thirteen'),\n(2316, 58491, 'fifty-eight thousand four hundred ninety-one'),\n(2317, 98064, 'ninety-eight thousand sixty-four'),\n(2318, 17766, 'seventeen thousand seven hundred sixty-six'),\n(2319, 37223, 'thirty-seven thousand two hundred twenty-three'),\n(2320, 36656, 'thirty-six thousand six hundred fifty-six'),\n(2321, 9340, 'nine thousand three hundred forty'),\n(2322, 20908, 'twenty thousand nine hundred eight'),\n(2323, 51631, 'fifty-one thousand six hundred thirty-one'),\n(2324, 10204, 'ten thousand two hundred four'),\n(2325, 95060, 'ninety-five thousand sixty'),\n(2326, 71757, 'seventy-one thousand seven hundred fifty-seven'),\n(2327, 46087, 'forty-six thousand eighty-seven'),\n(2328, 45770, 'forty-five thousand seven hundred seventy'),\n(2329, 66703, 'sixty-six thousand seven hundred three'),\n(2330, 65978, 'sixty-five thousand nine hundred seventy-eight'),\n(2331, 9302, 'nine thousand three hundred two'),\n(2332, 21573, 'twenty-one thousand five hundred seventy-three'),\n(2333, 3821, 'three thousand eight hundred twenty-one'),\n(2334, 5260, 'five thousand two hundred sixty'),\n(2335, 67314, 'sixty-seven thousand three hundred fourteen'),\n(2336, 44719, 'forty-four thousand seven hundred nineteen'),\n(2337, 78552, 'seventy-eight thousand five hundred fifty-two'),\n(2338, 37670, 'thirty-seven thousand six hundred seventy'),\n(2339, 65650, 'sixty-five thousand six hundred fifty'),\n(2340, 69105, 'sixty-nine thousand one hundred five'),\n(2341, 58762, 'fifty-eight thousand seven hundred sixty-two'),\n(2342, 88042, 'eighty-eight thousand forty-two'),\n(2343, 25627, 'twenty-five thousand six hundred twenty-seven'),\n(2344, 60636, 'sixty thousand six hundred thirty-six'),\n(2345, 78849, 'seventy-eight thousand eight hundred forty-nine'),\n(2346, 24665, 'twenty-four thousand six hundred sixty-five'),\n(2347, 84106, 'eighty-four thousand one hundred six'),\n(2348, 5037, 'five thousand thirty-seven'),\n(2349, 22737, 'twenty-two thousand seven hundred thirty-seven'),\n(2350, 42380, 'forty-two thousand three hundred eighty'),\n(2351, 66356, 'sixty-six thousand three hundred fifty-six'),\n(2352, 80186, 'eighty thousand one hundred eighty-six'),\n(2353, 79687, 'seventy-nine thousand six hundred eighty-seven'),\n(2354, 23996, 'twenty-three thousand nine hundred ninety-six'),\n(2355, 35446, 'thirty-five thousand four hundred forty-six'),\n(2356, 81372, 'eighty-one thousand three hundred seventy-two'),\n(2357, 70867, 'seventy thousand eight hundred sixty-seven'),\n(2358, 54517, 'fifty-four thousand five hundred seventeen'),\n(2359, 74460, 'seventy-four thousand four hundred sixty'),\n(2360, 44116, 'forty-four thousand one hundred sixteen'),\n(2361, 6833, 'six thousand eight hundred thirty-three'),\n(2362, 90428, 'ninety thousand four hundred twenty-eight'),\n(2363, 47466, 'forty-seven thousand four hundred sixty-six'),\n(2364, 2992, 'two thousand nine hundred ninety-two'),\n(2365, 47872, 'forty-seven thousand eight hundred seventy-two'),\n(2366, 38438, 'thirty-eight thousand four hundred thirty-eight'),\n(2367, 8818, 'eight thousand eight hundred eighteen'),\n(2368, 50516, 'fifty thousand five hundred sixteen'),\n(2369, 90572, 'ninety thousand five hundred seventy-two'),\n(2370, 63342, 'sixty-three thousand three hundred forty-two'),\n(2371, 35210, 'thirty-five thousand two hundred ten'),\n(2372, 37579, 'thirty-seven thousand five hundred seventy-nine'),\n(2373, 32524, 'thirty-two thousand five hundred twenty-four'),\n(2374, 34698, 'thirty-four thousand six hundred ninety-eight'),\n(2375, 3342, 'three thousand three hundred forty-two'),\n(2376, 41340, 'forty-one thousand three hundred forty'),\n(2377, 22400, 'twenty-two thousand four hundred'),\n(2378, 10603, 'ten thousand six hundred three'),\n(2379, 18792, 'eighteen thousand seven hundred ninety-two'),\n(2380, 69656, 'sixty-nine thousand six hundred fifty-six'),\n(2381, 1537, 'one thousand five hundred thirty-seven'),\n(2382, 65375, 'sixty-five thousand three hundred seventy-five'),\n(2383, 68829, 'sixty-eight thousand eight hundred twenty-nine'),\n(2384, 76719, 'seventy-six thousand seven hundred nineteen'),\n(2385, 45387, 'forty-five thousand three hundred eighty-seven'),\n(2386, 55655, 'fifty-five thousand six hundred fifty-five'),\n(2387, 3400, 'three thousand four hundred'),\n(2388, 2563, 'two thousand five hundred sixty-three'),\n(2389, 52934, 'fifty-two thousand nine hundred thirty-four'),\n(2390, 18900, 'eighteen thousand nine hundred'),\n(2391, 57718, 'fifty-seven thousand seven hundred eighteen'),\n(2392, 25010, 'twenty-five thousand ten'),\n(2393, 42145, 'forty-two thousand one hundred forty-five'),\n(2394, 70177, 'seventy thousand one hundred seventy-seven'),\n(2395, 43561, 'forty-three thousand five hundred sixty-one'),\n(2396, 50772, 'fifty thousand seven hundred seventy-two'),\n(2397, 75624, 'seventy-five thousand six hundred twenty-four'),\n(2398, 19708, 'nineteen thousand seven hundred eight'),\n(2399, 39121, 'thirty-nine thousand one hundred twenty-one'),\n(2400, 7490, 'seven thousand four hundred ninety'),\n(2401, 93965, 'ninety-three thousand nine hundred sixty-five'),\n(2402, 30359, 'thirty thousand three hundred fifty-nine'),\n(2403, 83205, 'eighty-three thousand two hundred five'),\n(2404, 63964, 'sixty-three thousand nine hundred sixty-four'),\n(2405, 63427, 'sixty-three thousand four hundred twenty-seven'),\n(2406, 85035, 'eighty-five thousand thirty-five'),\n(2407, 76974, 'seventy-six thousand nine hundred seventy-four'),\n(2408, 84544, 'eighty-four thousand five hundred forty-four'),\n(2409, 22880, 'twenty-two thousand eight hundred eighty'),\n(2410, 32394, 'thirty-two thousand three hundred ninety-four'),\n(2411, 4397, 'four thousand three hundred ninety-seven'),\n(2412, 58250, 'fifty-eight thousand two hundred fifty'),\n(2413, 11423, 'eleven thousand four hundred twenty-three'),\n(2414, 3384, 'three thousand three hundred eighty-four'),\n(2415, 4653, 'four thousand six hundred fifty-three'),\n(2416, 95751, 'ninety-five thousand seven hundred fifty-one'),\n(2417, 78350, 'seventy-eight thousand three hundred fifty'),\n(2418, 57494, 'fifty-seven thousand four hundred ninety-four'),\n(2419, 16605, 'sixteen thousand six hundred five'),\n(2420, 52211, 'fifty-two thousand two hundred eleven'),\n(2421, 24109, 'twenty-four thousand one hundred nine'),\n(2422, 73016, 'seventy-three thousand sixteen'),\n(2423, 99809, 'ninety-nine thousand eight hundred nine'),\n(2424, 57522, 'fifty-seven thousand five hundred twenty-two'),\n(2425, 66662, 'sixty-six thousand six hundred sixty-two'),\n(2426, 72539, 'seventy-two thousand five hundred thirty-nine'),\n(2427, 49871, 'forty-nine thousand eight hundred seventy-one'),\n(2428, 67148, 'sixty-seven thousand one hundred forty-eight'),\n(2429, 20157, 'twenty thousand one hundred fifty-seven'),\n(2430, 88979, 'eighty-eight thousand nine hundred seventy-nine'),\n(2431, 11450, 'eleven thousand four hundred fifty'),\n(2432, 34394, 'thirty-four thousand three hundred ninety-four'),\n(2433, 34837, 'thirty-four thousand eight hundred thirty-seven'),\n(2434, 96687, 'ninety-six thousand six hundred eighty-seven'),\n(2435, 25169, 'twenty-five thousand one hundred sixty-nine'),\n(2436, 27018, 'twenty-seven thousand eighteen'),\n(2437, 13348, 'thirteen thousand three hundred forty-eight'),\n(2438, 72334, 'seventy-two thousand three hundred thirty-four'),\n(2439, 53396, 'fifty-three thousand three hundred ninety-six'),\n(2440, 91877, 'ninety-one thousand eight hundred seventy-seven'),\n(2441, 49119, 'forty-nine thousand one hundred nineteen'),\n(2442, 87228, 'eighty-seven thousand two hundred twenty-eight'),\n(2443, 63236, 'sixty-three thousand two hundred thirty-six'),\n(2444, 92588, 'ninety-two thousand five hundred eighty-eight'),\n(2445, 26333, 'twenty-six thousand three hundred thirty-three'),\n(2446, 25720, 'twenty-five thousand seven hundred twenty'),\n(2447, 9825, 'nine thousand eight hundred twenty-five'),\n(2448, 36830, 'thirty-six thousand eight hundred thirty'),\n(2449, 75312, 'seventy-five thousand three hundred twelve'),\n(2450, 8093, 'eight thousand ninety-three'),\n(2451, 99357, 'ninety-nine thousand three hundred fifty-seven'),\n(2452, 59573, 'fifty-nine thousand five hundred seventy-three'),\n(2453, 65022, 'sixty-five thousand twenty-two'),\n(2454, 13828, 'thirteen thousand eight hundred twenty-eight'),\n(2455, 3673, 'three thousand six hundred seventy-three'),\n(2456, 87125, 'eighty-seven thousand one hundred twenty-five'),\n(2457, 60795, 'sixty thousand seven hundred ninety-five'),\n(2458, 15605, 'fifteen thousand six hundred five'),\n(2459, 80770, 'eighty thousand seven hundred seventy'),\n(2460, 83596, 'eighty-three thousand five hundred ninety-six'),\n(2461, 92525, 'ninety-two thousand five hundred twenty-five'),\n(2462, 63263, 'sixty-three thousand two hundred sixty-three'),\n(2463, 97131, 'ninety-seven thousand one hundred thirty-one'),\n(2464, 35456, 'thirty-five thousand four hundred fifty-six'),\n(2465, 64523, 'sixty-four thousand five hundred twenty-three'),\n(2466, 72571, 'seventy-two thousand five hundred seventy-one'),\n(2467, 54026, 'fifty-four thousand twenty-six'),\n(2468, 61926, 'sixty-one thousand nine hundred twenty-six'),\n(2469, 62152, 'sixty-two thousand one hundred fifty-two'),\n(2470, 80596, 'eighty thousand five hundred ninety-six'),\n(2471, 89606, 'eighty-nine thousand six hundred six'),\n(2472, 72678, 'seventy-two thousand six hundred seventy-eight'),\n(2473, 71118, 'seventy-one thousand one hundred eighteen'),\n(2474, 28079, 'twenty-eight thousand seventy-nine'),\n(2475, 95003, 'ninety-five thousand three'),\n(2476, 42831, 'forty-two thousand eight hundred thirty-one'),\n(2477, 98044, 'ninety-eight thousand forty-four'),\n(2478, 3162, 'three thousand one hundred sixty-two'),\n(2479, 10492, 'ten thousand four hundred ninety-two'),\n(2480, 87908, 'eighty-seven thousand nine hundred eight'),\n(2481, 53349, 'fifty-three thousand three hundred forty-nine'),\n(2482, 68224, 'sixty-eight thousand two hundred twenty-four'),\n(2483, 37751, 'thirty-seven thousand seven hundred fifty-one'),\n(2484, 18702, 'eighteen thousand seven hundred two'),\n(2485, 45334, 'forty-five thousand three hundred thirty-four'),\n(2486, 24824, 'twenty-four thousand eight hundred twenty-four'),\n(2487, 45140, 'forty-five thousand one hundred forty'),\n(2488, 71423, 'seventy-one thousand four hundred twenty-three'),\n(2489, 52624, 'fifty-two thousand six hundred twenty-four'),\n(2490, 35072, 'thirty-five thousand seventy-two'),\n(2491, 22552, 'twenty-two thousand five hundred fifty-two'),\n(2492, 42079, 'forty-two thousand seventy-nine'),\n(2493, 59778, 'fifty-nine thousand seven hundred seventy-eight'),\n(2494, 67390, 'sixty-seven thousand three hundred ninety'),\n(2495, 30808, 'thirty thousand eight hundred eight'),\n(2496, 49898, 'forty-nine thousand eight hundred ninety-eight'),\n(2497, 26281, 'twenty-six thousand two hundred eighty-one'),\n(2498, 68377, 'sixty-eight thousand three hundred seventy-seven'),\n(2499, 86484, 'eighty-six thousand four hundred eighty-four'),\n(2500, 68605, 'sixty-eight thousand six hundred five'),\n(2501, 97418, 'ninety-seven thousand four hundred eighteen'),\n(2502, 13303, 'thirteen thousand three hundred three'),\n(2503, 11002, 'eleven thousand two'),\n(2504, 8381, 'eight thousand three hundred eighty-one'),\n(2505, 55441, 'fifty-five thousand four hundred forty-one'),\n(2506, 74873, 'seventy-four thousand eight hundred seventy-three'),\n(2507, 62879, 'sixty-two thousand eight hundred seventy-nine'),\n(2508, 63232, 'sixty-three thousand two hundred thirty-two'),\n(2509, 1313, 'one thousand three hundred thirteen'),\n(2510, 8467, 'eight thousand four hundred sixty-seven'),\n(2511, 78551, 'seventy-eight thousand five hundred fifty-one'),\n(2512, 80986, 'eighty thousand nine hundred eighty-six'),\n(2513, 63983, 'sixty-three thousand nine hundred eighty-three'),\n(2514, 67781, 'sixty-seven thousand seven hundred eighty-one'),\n(2515, 55836, 'fifty-five thousand eight hundred thirty-six'),\n(2516, 48712, 'forty-eight thousand seven hundred twelve'),\n(2517, 86037, 'eighty-six thousand thirty-seven'),\n(2518, 88278, 'eighty-eight thousand two hundred seventy-eight'),\n(2519, 28253, 'twenty-eight thousand two hundred fifty-three'),\n(2520, 40539, 'forty thousand five hundred thirty-nine'),\n(2521, 41034, 'forty-one thousand thirty-four'),\n(2522, 74231, 'seventy-four thousand two hundred thirty-one'),\n(2523, 69400, 'sixty-nine thousand four hundred'),\n(2524, 82757, 'eighty-two thousand seven hundred fifty-seven'),\n(2525, 10172, 'ten thousand one hundred seventy-two'),\n(2526, 61081, 'sixty-one thousand eighty-one'),\n(2527, 35435, 'thirty-five thousand four hundred thirty-five'),\n(2528, 65370, 'sixty-five thousand three hundred seventy'),\n(2529, 65570, 'sixty-five thousand five hundred seventy'),\n(2530, 9468, 'nine thousand four hundred sixty-eight'),\n(2531, 30798, 'thirty thousand seven hundred ninety-eight'),\n(2532, 3973, 'three thousand nine hundred seventy-three'),\n(2533, 98690, 'ninety-eight thousand six hundred ninety'),\n(2534, 42091, 'forty-two thousand ninety-one'),\n(2535, 93808, 'ninety-three thousand eight hundred eight'),\n(2536, 34476, 'thirty-four thousand four hundred seventy-six'),\n(2537, 94435, 'ninety-four thousand four hundred thirty-five'),\n(2538, 65549, 'sixty-five thousand five hundred forty-nine'),\n(2539, 17697, 'seventeen thousand six hundred ninety-seven'),\n(2540, 89480, 'eighty-nine thousand four hundred eighty'),\n(2541, 48800, 'forty-eight thousand eight hundred'),\n(2542, 39972, 'thirty-nine thousand nine hundred seventy-two'),\n(2543, 30739, 'thirty thousand seven hundred thirty-nine'),\n(2544, 69585, 'sixty-nine thousand five hundred eighty-five'),\n(2545, 78525, 'seventy-eight thousand five hundred twenty-five'),\n(2546, 93131, 'ninety-three thousand one hundred thirty-one'),\n(2547, 50469, 'fifty thousand four hundred sixty-nine'),\n(2548, 54221, 'fifty-four thousand two hundred twenty-one'),\n(2549, 47721, 'forty-seven thousand seven hundred twenty-one'),\n(2550, 44819, 'forty-four thousand eight hundred nineteen'),\n(2551, 66606, 'sixty-six thousand six hundred six'),\n(2552, 21323, 'twenty-one thousand three hundred twenty-three'),\n(2553, 80810, 'eighty thousand eight hundred ten'),\n(2554, 49582, 'forty-nine thousand five hundred eighty-two'),\n(2555, 89194, 'eighty-nine thousand one hundred ninety-four'),\n(2556, 33832, 'thirty-three thousand eight hundred thirty-two'),\n(2557, 42125, 'forty-two thousand one hundred twenty-five'),\n(2558, 98532, 'ninety-eight thousand five hundred thirty-two'),\n(2559, 16766, 'sixteen thousand seven hundred sixty-six'),\n(2560, 42094, 'forty-two thousand ninety-four'),\n(2561, 18849, 'eighteen thousand eight hundred forty-nine'),\n(2562, 51779, 'fifty-one thousand seven hundred seventy-nine'),\n(2563, 57940, 'fifty-seven thousand nine hundred forty'),\n(2564, 53670, 'fifty-three thousand six hundred seventy'),\n(2565, 64193, 'sixty-four thousand one hundred ninety-three'),\n(2566, 7027, 'seven thousand twenty-seven'),\n(2567, 12283, 'twelve thousand two hundred eighty-three'),\n(2568, 21365, 'twenty-one thousand three hundred sixty-five'),\n(2569, 69557, 'sixty-nine thousand five hundred fifty-seven'),\n(2570, 1114, 'one thousand one hundred fourteen'),\n(2571, 26469, 'twenty-six thousand four hundred sixty-nine'),\n(2572, 80281, 'eighty thousand two hundred eighty-one'),\n(2573, 56680, 'fifty-six thousand six hundred eighty'),\n(2574, 33364, 'thirty-three thousand three hundred sixty-four'),\n(2575, 51200, 'fifty-one thousand two hundred'),\n(2576, 87117, 'eighty-seven thousand one hundred seventeen'),\n(2577, 67931, 'sixty-seven thousand nine hundred thirty-one'),\n(2578, 95004, 'ninety-five thousand four'),\n(2579, 77494, 'seventy-seven thousand four hundred ninety-four'),\n(2580, 16408, 'sixteen thousand four hundred eight'),\n(2581, 93608, 'ninety-three thousand six hundred eight'),\n(2582, 53734, 'fifty-three thousand seven hundred thirty-four'),\n(2583, 9750, 'nine thousand seven hundred fifty'),\n(2584, 15555, 'fifteen thousand five hundred fifty-five'),\n(2585, 40888, 'forty thousand eight hundred eighty-eight'),\n(2586, 21758, 'twenty-one thousand seven hundred fifty-eight'),\n(2587, 36876, 'thirty-six thousand eight hundred seventy-six'),\n(2588, 71094, 'seventy-one thousand ninety-four'),\n(2589, 71363, 'seventy-one thousand three hundred sixty-three'),\n(2590, 24553, 'twenty-four thousand five hundred fifty-three'),\n(2591, 73931, 'seventy-three thousand nine hundred thirty-one'),\n(2592, 15314, 'fifteen thousand three hundred fourteen'),\n(2593, 97503, 'ninety-seven thousand five hundred three'),\n(2594, 25189, 'twenty-five thousand one hundred eighty-nine'),\n(2595, 8199, 'eight thousand one hundred ninety-nine'),\n(2596, 68451, 'sixty-eight thousand four hundred fifty-one'),\n(2597, 70192, 'seventy thousand one hundred ninety-two'),\n(2598, 46664, 'forty-six thousand six hundred sixty-four'),\n(2599, 42059, 'forty-two thousand fifty-nine'),\n(2600, 45616, 'forty-five thousand six hundred sixteen'),\n(2601, 5874, 'five thousand eight hundred seventy-four'),\n(2602, 15960, 'fifteen thousand nine hundred sixty'),\n(2603, 34898, 'thirty-four thousand eight hundred ninety-eight'),\n(2604, 55412, 'fifty-five thousand four hundred twelve'),\n(2605, 6590, 'six thousand five hundred ninety'),\n(2606, 45220, 'forty-five thousand two hundred twenty'),\n(2607, 29499, 'twenty-nine thousand four hundred ninety-nine'),\n(2608, 51342, 'fifty-one thousand three hundred forty-two'),\n(2609, 8705, 'eight thousand seven hundred five'),\n(2610, 45853, 'forty-five thousand eight hundred fifty-three'),\n(2611, 35279, 'thirty-five thousand two hundred seventy-nine'),\n(2612, 62318, 'sixty-two thousand three hundred eighteen'),\n(2613, 66736, 'sixty-six thousand seven hundred thirty-six'),\n(2614, 45988, 'forty-five thousand nine hundred eighty-eight'),\n(2615, 94586, 'ninety-four thousand five hundred eighty-six'),\n(2616, 21116, 'twenty-one thousand one hundred sixteen'),\n(2617, 1804, 'one thousand eight hundred four'),\n(2618, 24905, 'twenty-four thousand nine hundred five'),\n(2619, 88957, 'eighty-eight thousand nine hundred fifty-seven'),\n(2620, 58175, 'fifty-eight thousand one hundred seventy-five'),\n(2621, 85473, 'eighty-five thousand four hundred seventy-three'),\n(2622, 74166, 'seventy-four thousand one hundred sixty-six'),\n(2623, 74461, 'seventy-four thousand four hundred sixty-one'),\n(2624, 40501, 'forty thousand five hundred one'),\n(2625, 43541, 'forty-three thousand five hundred forty-one'),\n(2626, 85325, 'eighty-five thousand three hundred twenty-five'),\n(2627, 95640, 'ninety-five thousand six hundred forty'),\n(2628, 75868, 'seventy-five thousand eight hundred sixty-eight'),\n(2629, 69109, 'sixty-nine thousand one hundred nine'),\n(2630, 53050, 'fifty-three thousand fifty'),\n(2631, 14024, 'fourteen thousand twenty-four'),\n(2632, 13679, 'thirteen thousand six hundred seventy-nine'),\n(2633, 67620, 'sixty-seven thousand six hundred twenty'),\n(2634, 32305, 'thirty-two thousand three hundred five'),\n(2635, 61720, 'sixty-one thousand seven hundred twenty'),\n(2636, 80107, 'eighty thousand one hundred seven'),\n(2637, 82722, 'eighty-two thousand seven hundred twenty-two'),\n(2638, 51847, 'fifty-one thousand eight hundred forty-seven'),\n(2639, 8453, 'eight thousand four hundred fifty-three'),\n(2640, 30105, 'thirty thousand one hundred five'),\n(2641, 41861, 'forty-one thousand eight hundred sixty-one'),\n(2642, 93561, 'ninety-three thousand five hundred sixty-one'),\n(2643, 75440, 'seventy-five thousand four hundred forty'),\n(2644, 22876, 'twenty-two thousand eight hundred seventy-six'),\n(2645, 6604, 'six thousand six hundred four'),\n(2646, 95596, 'ninety-five thousand five hundred ninety-six'),\n(2647, 19414, 'nineteen thousand four hundred fourteen'),\n(2648, 77905, 'seventy-seven thousand nine hundred five'),\n(2649, 92789, 'ninety-two thousand seven hundred eighty-nine'),\n(2650, 20860, 'twenty thousand eight hundred sixty'),\n(2651, 99286, 'ninety-nine thousand two hundred eighty-six'),\n(2652, 29996, 'twenty-nine thousand nine hundred ninety-six'),\n(2653, 15159, 'fifteen thousand one hundred fifty-nine'),\n(2654, 99606, 'ninety-nine thousand six hundred six'),\n(2655, 54128, 'fifty-four thousand one hundred twenty-eight'),\n(2656, 77405, 'seventy-seven thousand four hundred five'),\n(2657, 15625, 'fifteen thousand six hundred twenty-five'),\n(2658, 1525, 'one thousand five hundred twenty-five'),\n(2659, 34244, 'thirty-four thousand two hundred forty-four'),\n(2660, 38687, 'thirty-eight thousand six hundred eighty-seven'),\n(2661, 98998, 'ninety-eight thousand nine hundred ninety-eight'),\n(2662, 98698, 'ninety-eight thousand six hundred ninety-eight'),\n(2663, 3920, 'three thousand nine hundred twenty'),\n(2664, 2, 'two'),\n(2665, 91857, 'ninety-one thousand eight hundred fifty-seven'),\n(2666, 23195, 'twenty-three thousand one hundred ninety-five'),\n(2667, 49499, 'forty-nine thousand four hundred ninety-nine'),\n(2668, 20086, 'twenty thousand eighty-six'),\n(2669, 97756, 'ninety-seven thousand seven hundred fifty-six'),\n(2670, 19579, 'nineteen thousand five hundred seventy-nine'),\n(2671, 41971, 'forty-one thousand nine hundred seventy-one'),\n(2672, 45456, 'forty-five thousand four hundred fifty-six'),\n(2673, 86745, 'eighty-six thousand seven hundred forty-five'),\n(2674, 65633, 'sixty-five thousand six hundred thirty-three'),\n(2675, 36789, 'thirty-six thousand seven hundred eighty-nine'),\n(2676, 76483, 'seventy-six thousand four hundred eighty-three'),\n(2677, 36356, 'thirty-six thousand three hundred fifty-six'),\n(2678, 98591, 'ninety-eight thousand five hundred ninety-one'),\n(2679, 44868, 'forty-four thousand eight hundred sixty-eight'),\n(2680, 3562, 'three thousand five hundred sixty-two'),\n(2681, 22007, 'twenty-two thousand seven'),\n(2682, 9310, 'nine thousand three hundred ten'),\n(2683, 20270, 'twenty thousand two hundred seventy'),\n(2684, 3926, 'three thousand nine hundred twenty-six'),\n(2685, 66696, 'sixty-six thousand six hundred ninety-six'),\n(2686, 28671, 'twenty-eight thousand six hundred seventy-one'),\n(2687, 72817, 'seventy-two thousand eight hundred seventeen'),\n(2688, 89783, 'eighty-nine thousand seven hundred eighty-three'),\n(2689, 15300, 'fifteen thousand three hundred'),\n(2690, 18812, 'eighteen thousand eight hundred twelve'),\n(2691, 44985, 'forty-four thousand nine hundred eighty-five'),\n(2692, 82912, 'eighty-two thousand nine hundred twelve'),\n(2693, 62118, 'sixty-two thousand one hundred eighteen'),\n(2694, 18031, 'eighteen thousand thirty-one'),\n(2695, 71084, 'seventy-one thousand eighty-four'),\n(2696, 45924, 'forty-five thousand nine hundred twenty-four'),\n(2697, 36912, 'thirty-six thousand nine hundred twelve'),\n(2698, 44209, 'forty-four thousand two hundred nine'),\n(2699, 88553, 'eighty-eight thousand five hundred fifty-three'),\n(2700, 73660, 'seventy-three thousand six hundred sixty'),\n(2701, 94137, 'ninety-four thousand one hundred thirty-seven'),\n(2702, 88150, 'eighty-eight thousand one hundred fifty'),\n(2703, 59646, 'fifty-nine thousand six hundred forty-six'),\n(2704, 64108, 'sixty-four thousand one hundred eight'),\n(2705, 39472, 'thirty-nine thousand four hundred seventy-two'),\n(2706, 69953, 'sixty-nine thousand nine hundred fifty-three'),\n(2707, 74597, 'seventy-four thousand five hundred ninety-seven'),\n(2708, 88306, 'eighty-eight thousand three hundred six'),\n(2709, 67164, 'sixty-seven thousand one hundred sixty-four'),\n(2710, 44767, 'forty-four thousand seven hundred sixty-seven'),\n(2711, 21537, 'twenty-one thousand five hundred thirty-seven'),\n(2712, 21814, 'twenty-one thousand eight hundred fourteen'),\n(2713, 30743, 'thirty thousand seven hundred forty-three'),\n(2714, 62130, 'sixty-two thousand one hundred thirty'),\n(2715, 5202, 'five thousand two hundred two'),\n(2716, 5298, 'five thousand two hundred ninety-eight'),\n(2717, 38591, 'thirty-eight thousand five hundred ninety-one'),\n(2718, 44341, 'forty-four thousand three hundred forty-one'),\n(2719, 25784, 'twenty-five thousand seven hundred eighty-four'),\n(2720, 65934, 'sixty-five thousand nine hundred thirty-four'),\n(2721, 84085, 'eighty-four thousand eighty-five'),\n(2722, 5445, 'five thousand four hundred forty-five'),\n(2723, 92558, 'ninety-two thousand five hundred fifty-eight'),\n(2724, 41297, 'forty-one thousand two hundred ninety-seven'),\n(2725, 92501, 'ninety-two thousand five hundred one'),\n(2726, 65477, 'sixty-five thousand four hundred seventy-seven'),\n(2727, 14831, 'fourteen thousand eight hundred thirty-one'),\n(2728, 17597, 'seventeen thousand five hundred ninety-seven'),\n(2729, 18997, 'eighteen thousand nine hundred ninety-seven'),\n(2730, 23019, 'twenty-three thousand nineteen'),\n(2731, 29811, 'twenty-nine thousand eight hundred eleven'),\n(2732, 91076, 'ninety-one thousand seventy-six'),\n(2733, 73795, 'seventy-three thousand seven hundred ninety-five'),\n(2734, 48080, 'forty-eight thousand eighty'),\n(2735, 33473, 'thirty-three thousand four hundred seventy-three'),\n(2736, 20578, 'twenty thousand five hundred seventy-eight'),\n(2737, 26740, 'twenty-six thousand seven hundred forty'),\n(2738, 30309, 'thirty thousand three hundred nine'),\n(2739, 58713, 'fifty-eight thousand seven hundred thirteen'),\n(2740, 30816, 'thirty thousand eight hundred sixteen'),\n(2741, 78961, 'seventy-eight thousand nine hundred sixty-one'),\n(2742, 17980, 'seventeen thousand nine hundred eighty'),\n(2743, 62725, 'sixty-two thousand seven hundred twenty-five'),\n(2744, 42900, 'forty-two thousand nine hundred'),\n(2745, 12795, 'twelve thousand seven hundred ninety-five'),\n(2746, 30167, 'thirty thousand one hundred sixty-seven'),\n(2747, 98000, 'ninety-eight thousand'),\n(2748, 31452, 'thirty-one thousand four hundred fifty-two'),\n(2749, 50181, 'fifty thousand one hundred eighty-one'),\n(2750, 20346, 'twenty thousand three hundred forty-six'),\n(2751, 76642, 'seventy-six thousand six hundred forty-two'),\n(2752, 23856, 'twenty-three thousand eight hundred fifty-six'),\n(2753, 12872, 'twelve thousand eight hundred seventy-two'),\n(2754, 28961, 'twenty-eight thousand nine hundred sixty-one'),\n(2755, 65273, 'sixty-five thousand two hundred seventy-three'),\n(2756, 83360, 'eighty-three thousand three hundred sixty'),\n(2757, 3413, 'three thousand four hundred thirteen'),\n(2758, 18407, 'eighteen thousand four hundred seven'),\n(2759, 74015, 'seventy-four thousand fifteen'),\n(2760, 61982, 'sixty-one thousand nine hundred eighty-two'),\n(2761, 42140, 'forty-two thousand one hundred forty'),\n(2762, 15807, 'fifteen thousand eight hundred seven'),\n(2763, 97705, 'ninety-seven thousand seven hundred five'),\n(2764, 78911, 'seventy-eight thousand nine hundred eleven'),\n(2765, 91429, 'ninety-one thousand four hundred twenty-nine'),\n(2766, 11774, 'eleven thousand seven hundred seventy-four'),\n(2767, 34703, 'thirty-four thousand seven hundred three'),\n(2768, 59228, 'fifty-nine thousand two hundred twenty-eight'),\n(2769, 77844, 'seventy-seven thousand eight hundred forty-four'),\n(2770, 22568, 'twenty-two thousand five hundred sixty-eight'),\n(2771, 71347, 'seventy-one thousand three hundred forty-seven'),\n(2772, 65482, 'sixty-five thousand four hundred eighty-two'),\n(2773, 13520, 'thirteen thousand five hundred twenty'),\n(2774, 33718, 'thirty-three thousand seven hundred eighteen'),\n(2775, 71037, 'seventy-one thousand thirty-seven'),\n(2776, 64303, 'sixty-four thousand three hundred three'),\n(2777, 30809, 'thirty thousand eight hundred nine'),\n(2778, 37571, 'thirty-seven thousand five hundred seventy-one'),\n(2779, 5279, 'five thousand two hundred seventy-nine'),\n(2780, 60787, 'sixty thousand seven hundred eighty-seven'),\n(2781, 61872, 'sixty-one thousand eight hundred seventy-two'),\n(2782, 71610, 'seventy-one thousand six hundred ten'),\n(2783, 22146, 'twenty-two thousand one hundred forty-six'),\n(2784, 63599, 'sixty-three thousand five hundred ninety-nine'),\n(2785, 72064, 'seventy-two thousand sixty-four'),\n(2786, 55081, 'fifty-five thousand eighty-one'),\n(2787, 52846, 'fifty-two thousand eight hundred forty-six'),\n(2788, 98065, 'ninety-eight thousand sixty-five'),\n(2789, 30484, 'thirty thousand four hundred eighty-four'),\n(2790, 38907, 'thirty-eight thousand nine hundred seven'),\n(2791, 46554, 'forty-six thousand five hundred fifty-four'),\n(2792, 59014, 'fifty-nine thousand fourteen'),\n(2793, 65648, 'sixty-five thousand six hundred forty-eight'),\n(2794, 74065, 'seventy-four thousand sixty-five'),\n(2795, 17116, 'seventeen thousand one hundred sixteen'),\n(2796, 38993, 'thirty-eight thousand nine hundred ninety-three'),\n(2797, 21715, 'twenty-one thousand seven hundred fifteen'),\n(2798, 15477, 'fifteen thousand four hundred seventy-seven'),\n(2799, 4544, 'four thousand five hundred forty-four'),\n(2800, 75787, 'seventy-five thousand seven hundred eighty-seven'),\n(2801, 59319, 'fifty-nine thousand three hundred nineteen'),\n(2802, 96873, 'ninety-six thousand eight hundred seventy-three'),\n(2803, 24004, 'twenty-four thousand four'),\n(2804, 63353, 'sixty-three thousand three hundred fifty-three'),\n(2805, 96846, 'ninety-six thousand eight hundred forty-six'),\n(2806, 57281, 'fifty-seven thousand two hundred eighty-one'),\n(2807, 93566, 'ninety-three thousand five hundred sixty-six'),\n(2808, 15708, 'fifteen thousand seven hundred eight'),\n(2809, 46292, 'forty-six thousand two hundred ninety-two'),\n(2810, 78479, 'seventy-eight thousand four hundred seventy-nine'),\n(2811, 37086, 'thirty-seven thousand eighty-six'),\n(2812, 81103, 'eighty-one thousand one hundred three'),\n(2813, 90998, 'ninety thousand nine hundred ninety-eight'),\n(2814, 97436, 'ninety-seven thousand four hundred thirty-six'),\n(2815, 32908, 'thirty-two thousand nine hundred eight'),\n(2816, 51525, 'fifty-one thousand five hundred twenty-five'),\n(2817, 97632, 'ninety-seven thousand six hundred thirty-two'),\n(2818, 97160, 'ninety-seven thousand one hundred sixty'),\n(2819, 23392, 'twenty-three thousand three hundred ninety-two'),\n(2820, 80278, 'eighty thousand two hundred seventy-eight'),\n(2821, 60041, 'sixty thousand forty-one'),\n(2822, 38382, 'thirty-eight thousand three hundred eighty-two'),\n(2823, 61360, 'sixty-one thousand three hundred sixty'),\n(2824, 44477, 'forty-four thousand four hundred seventy-seven'),\n(2825, 93896, 'ninety-three thousand eight hundred ninety-six'),\n(2826, 67062, 'sixty-seven thousand sixty-two'),\n(2827, 59706, 'fifty-nine thousand seven hundred six'),\n(2828, 99114, 'ninety-nine thousand one hundred fourteen'),\n(2829, 85310, 'eighty-five thousand three hundred ten'),\n(2830, 86574, 'eighty-six thousand five hundred seventy-four'),\n(2831, 57310, 'fifty-seven thousand three hundred ten'),\n(2832, 83371, 'eighty-three thousand three hundred seventy-one'),\n(2833, 92203, 'ninety-two thousand two hundred three'),\n(2834, 58493, 'fifty-eight thousand four hundred ninety-three'),\n(2835, 14561, 'fourteen thousand five hundred sixty-one'),\n(2836, 74188, 'seventy-four thousand one hundred eighty-eight'),\n(2837, 56285, 'fifty-six thousand two hundred eighty-five'),\n(2838, 97663, 'ninety-seven thousand six hundred sixty-three'),\n(2839, 70747, 'seventy thousand seven hundred forty-seven'),\n(2840, 51624, 'fifty-one thousand six hundred twenty-four'),\n(2841, 60717, 'sixty thousand seven hundred seventeen'),\n(2842, 79443, 'seventy-nine thousand four hundred forty-three'),\n(2843, 38812, 'thirty-eight thousand eight hundred twelve'),\n(2844, 53715, 'fifty-three thousand seven hundred fifteen'),\n(2845, 46403, 'forty-six thousand four hundred three'),\n(2846, 10139, 'ten thousand one hundred thirty-nine'),\n(2847, 57390, 'fifty-seven thousand three hundred ninety'),\n(2848, 60862, 'sixty thousand eight hundred sixty-two'),\n(2849, 7243, 'seven thousand two hundred forty-three'),\n(2850, 92790, 'ninety-two thousand seven hundred ninety'),\n(2851, 19055, 'nineteen thousand fifty-five'),\n(2852, 10827, 'ten thousand eight hundred twenty-seven'),\n(2853, 38979, 'thirty-eight thousand nine hundred seventy-nine'),\n(2854, 24786, 'twenty-four thousand seven hundred eighty-six'),\n(2855, 22515, 'twenty-two thousand five hundred fifteen'),\n(2856, 71199, 'seventy-one thousand one hundred ninety-nine'),\n(2857, 84471, 'eighty-four thousand four hundred seventy-one'),\n(2858, 84750, 'eighty-four thousand seven hundred fifty'),\n(2859, 35002, 'thirty-five thousand two'),\n(2860, 50215, 'fifty thousand two hundred fifteen'),\n(2861, 66801, 'sixty-six thousand eight hundred one'),\n(2862, 40186, 'forty thousand one hundred eighty-six'),\n(2863, 86213, 'eighty-six thousand two hundred thirteen'),\n(2864, 38960, 'thirty-eight thousand nine hundred sixty'),\n(2865, 2641, 'two thousand six hundred forty-one'),\n(2866, 88520, 'eighty-eight thousand five hundred twenty'),\n(2867, 99257, 'ninety-nine thousand two hundred fifty-seven'),\n(2868, 69547, 'sixty-nine thousand five hundred forty-seven'),\n(2869, 13986, 'thirteen thousand nine hundred eighty-six'),\n(2870, 63408, 'sixty-three thousand four hundred eight'),\n(2871, 39134, 'thirty-nine thousand one hundred thirty-four'),\n(2872, 94940, 'ninety-four thousand nine hundred forty'),\n(2873, 62101, 'sixty-two thousand one hundred one'),\n(2874, 85013, 'eighty-five thousand thirteen'),\n(2875, 3429, 'three thousand four hundred twenty-nine'),\n(2876, 2082, 'two thousand eighty-two'),\n(2877, 73703, 'seventy-three thousand seven hundred three'),\n(2878, 56579, 'fifty-six thousand five hundred seventy-nine'),\n(2879, 8304, 'eight thousand three hundred four'),\n(2880, 24126, 'twenty-four thousand one hundred twenty-six'),\n(2881, 73590, 'seventy-three thousand five hundred ninety'),\n(2882, 53523, 'fifty-three thousand five hundred twenty-three'),\n(2883, 35807, 'thirty-five thousand eight hundred seven'),\n(2884, 73785, 'seventy-three thousand seven hundred eighty-five'),\n(2885, 29535, 'twenty-nine thousand five hundred thirty-five'),\n(2886, 45575, 'forty-five thousand five hundred seventy-five'),\n(2887, 11998, 'eleven thousand nine hundred ninety-eight'),\n(2888, 80544, 'eighty thousand five hundred forty-four'),\n(2889, 27665, 'twenty-seven thousand six hundred sixty-five'),\n(2890, 89301, 'eighty-nine thousand three hundred one'),\n(2891, 98443, 'ninety-eight thousand four hundred forty-three'),\n(2892, 46410, 'forty-six thousand four hundred ten'),\n(2893, 55437, 'fifty-five thousand four hundred thirty-seven'),\n(2894, 20985, 'twenty thousand nine hundred eighty-five'),\n(2895, 26558, 'twenty-six thousand five hundred fifty-eight'),\n(2896, 43405, 'forty-three thousand four hundred five'),\n(2897, 35451, 'thirty-five thousand four hundred fifty-one'),\n(2898, 91920, 'ninety-one thousand nine hundred twenty'),\n(2899, 16981, 'sixteen thousand nine hundred eighty-one'),\n(2900, 51626, 'fifty-one thousand six hundred twenty-six'),\n(2901, 15867, 'fifteen thousand eight hundred sixty-seven'),\n(2902, 1917, 'one thousand nine hundred seventeen'),\n(2903, 3598, 'three thousand five hundred ninety-eight'),\n(2904, 6021, 'six thousand twenty-one'),\n(2905, 58385, 'fifty-eight thousand three hundred eighty-five'),\n(2906, 91305, 'ninety-one thousand three hundred five'),\n(2907, 80849, 'eighty thousand eight hundred forty-nine'),\n(2908, 2038, 'two thousand thirty-eight'),\n(2909, 74335, 'seventy-four thousand three hundred thirty-five'),\n(2910, 18766, 'eighteen thousand seven hundred sixty-six'),\n(2911, 92557, 'ninety-two thousand five hundred fifty-seven'),\n(2912, 60464, 'sixty thousand four hundred sixty-four'),\n(2913, 29183, 'twenty-nine thousand one hundred eighty-three'),\n(2914, 68522, 'sixty-eight thousand five hundred twenty-two'),\n(2915, 8023, 'eight thousand twenty-three'),\n(2916, 92844, 'ninety-two thousand eight hundred forty-four'),\n(2917, 60176, 'sixty thousand one hundred seventy-six'),\n(2918, 27847, 'twenty-seven thousand eight hundred forty-seven'),\n(2919, 61306, 'sixty-one thousand three hundred six'),\n(2920, 1652, 'one thousand six hundred fifty-two'),\n(2921, 83708, 'eighty-three thousand seven hundred eight'),\n(2922, 17423, 'seventeen thousand four hundred twenty-three'),\n(2923, 28731, 'twenty-eight thousand seven hundred thirty-one'),\n(2924, 84517, 'eighty-four thousand five hundred seventeen'),\n(2925, 91257, 'ninety-one thousand two hundred fifty-seven'),\n(2926, 102, 'one hundred two'),\n(2927, 55034, 'fifty-five thousand thirty-four'),\n(2928, 58807, 'fifty-eight thousand eight hundred seven'),\n(2929, 67341, 'sixty-seven thousand three hundred forty-one'),\n(2930, 26924, 'twenty-six thousand nine hundred twenty-four'),\n(2931, 5980, 'five thousand nine hundred eighty'),\n(2932, 84936, 'eighty-four thousand nine hundred thirty-six'),\n(2933, 74198, 'seventy-four thousand one hundred ninety-eight'),\n(2934, 88469, 'eighty-eight thousand four hundred sixty-nine'),\n(2935, 59988, 'fifty-nine thousand nine hundred eighty-eight'),\n(2936, 96305, 'ninety-six thousand three hundred five'),\n(2937, 36534, 'thirty-six thousand five hundred thirty-four'),\n(2938, 96565, 'ninety-six thousand five hundred sixty-five'),\n(2939, 63601, 'sixty-three thousand six hundred one'),\n(2940, 74848, 'seventy-four thousand eight hundred forty-eight'),\n(2941, 3419, 'three thousand four hundred nineteen'),\n(2942, 46979, 'forty-six thousand nine hundred seventy-nine'),\n(2943, 70502, 'seventy thousand five hundred two'),\n(2944, 67926, 'sixty-seven thousand nine hundred twenty-six'),\n(2945, 3646, 'three thousand six hundred forty-six'),\n(2946, 23691, 'twenty-three thousand six hundred ninety-one'),\n(2947, 46257, 'forty-six thousand two hundred fifty-seven'),\n(2948, 24501, 'twenty-four thousand five hundred one'),\n(2949, 87797, 'eighty-seven thousand seven hundred ninety-seven'),\n(2950, 65232, 'sixty-five thousand two hundred thirty-two'),\n(2951, 61134, 'sixty-one thousand one hundred thirty-four'),\n(2952, 6112, 'six thousand one hundred twelve'),\n(2953, 80928, 'eighty thousand nine hundred twenty-eight'),\n(2954, 29115, 'twenty-nine thousand one hundred fifteen'),\n(2955, 39090, 'thirty-nine thousand ninety'),\n(2956, 59496, 'fifty-nine thousand four hundred ninety-six'),\n(2957, 96603, 'ninety-six thousand six hundred three'),\n(2958, 61338, 'sixty-one thousand three hundred thirty-eight'),\n(2959, 89053, 'eighty-nine thousand fifty-three'),\n(2960, 16712, 'sixteen thousand seven hundred twelve'),\n(2961, 18896, 'eighteen thousand eight hundred ninety-six'),\n(2962, 43642, 'forty-three thousand six hundred forty-two'),\n(2963, 82354, 'eighty-two thousand three hundred fifty-four'),\n(2964, 29710, 'twenty-nine thousand seven hundred ten'),\n(2965, 40168, 'forty thousand one hundred sixty-eight'),\n(2966, 77207, 'seventy-seven thousand two hundred seven'),\n(2967, 57743, 'fifty-seven thousand seven hundred forty-three'),\n(2968, 35097, 'thirty-five thousand ninety-seven'),\n(2969, 23686, 'twenty-three thousand six hundred eighty-six'),\n(2970, 18806, 'eighteen thousand eight hundred six'),\n(2971, 3162, 'three thousand one hundred sixty-two'),\n(2972, 38435, 'thirty-eight thousand four hundred thirty-five'),\n(2973, 90663, 'ninety thousand six hundred sixty-three'),\n(2974, 37123, 'thirty-seven thousand one hundred twenty-three'),\n(2975, 17443, 'seventeen thousand four hundred forty-three'),\n(2976, 69930, 'sixty-nine thousand nine hundred thirty'),\n(2977, 36756, 'thirty-six thousand seven hundred fifty-six'),\n(2978, 47146, 'forty-seven thousand one hundred forty-six'),\n(2979, 82587, 'eighty-two thousand five hundred eighty-seven'),\n(2980, 51656, 'fifty-one thousand six hundred fifty-six'),\n(2981, 36488, 'thirty-six thousand four hundred eighty-eight'),\n(2982, 15389, 'fifteen thousand three hundred eighty-nine'),\n(2983, 10391, 'ten thousand three hundred ninety-one'),\n(2984, 57071, 'fifty-seven thousand seventy-one'),\n(2985, 5693, 'five thousand six hundred ninety-three'),\n(2986, 91681, 'ninety-one thousand six hundred eighty-one'),\n(2987, 14795, 'fourteen thousand seven hundred ninety-five'),\n(2988, 98622, 'ninety-eight thousand six hundred twenty-two'),\n(2989, 80049, 'eighty thousand forty-nine'),\n(2990, 79991, 'seventy-nine thousand nine hundred ninety-one'),\n(2991, 16058, 'sixteen thousand fifty-eight'),\n(2992, 84106, 'eighty-four thousand one hundred six'),\n(2993, 11367, 'eleven thousand three hundred sixty-seven'),\n(2994, 96630, 'ninety-six thousand six hundred thirty'),\n(2995, 60407, 'sixty thousand four hundred seven'),\n(2996, 96793, 'ninety-six thousand seven hundred ninety-three'),\n(2997, 11440, 'eleven thousand four hundred forty'),\n(2998, 92353, 'ninety-two thousand three hundred fifty-three'),\n(2999, 12279, 'twelve thousand two hundred seventy-nine'),\n(3000, 83061, 'eighty-three thousand sixty-one'),\n(3001, 93474, 'ninety-three thousand four hundred seventy-four'),\n(3002, 61141, 'sixty-one thousand one hundred forty-one'),\n(3003, 94748, 'ninety-four thousand seven hundred forty-eight'),\n(3004, 15011, 'fifteen thousand eleven'),\n(3005, 9935, 'nine thousand nine hundred thirty-five'),\n(3006, 96190, 'ninety-six thousand one hundred ninety'),\n(3007, 8888, 'eight thousand eight hundred eighty-eight'),\n(3008, 7642, 'seven thousand six hundred forty-two'),\n(3009, 7963, 'seven thousand nine hundred sixty-three'),\n(3010, 89639, 'eighty-nine thousand six hundred thirty-nine'),\n(3011, 50589, 'fifty thousand five hundred eighty-nine'),\n(3012, 72397, 'seventy-two thousand three hundred ninety-seven'),\n(3013, 70401, 'seventy thousand four hundred one'),\n(3014, 9318, 'nine thousand three hundred eighteen'),\n(3015, 3896, 'three thousand eight hundred ninety-six'),\n(3016, 514, 'five hundred fourteen'),\n(3017, 91559, 'ninety-one thousand five hundred fifty-nine'),\n(3018, 5144, 'five thousand one hundred forty-four'),\n(3019, 74807, 'seventy-four thousand eight hundred seven'),\n(3020, 69331, 'sixty-nine thousand three hundred thirty-one'),\n(3021, 78478, 'seventy-eight thousand four hundred seventy-eight'),\n(3022, 54085, 'fifty-four thousand eighty-five'),\n(3023, 28495, 'twenty-eight thousand four hundred ninety-five'),\n(3024, 89152, 'eighty-nine thousand one hundred fifty-two'),\n(3025, 62723, 'sixty-two thousand seven hundred twenty-three'),\n(3026, 10209, 'ten thousand two hundred nine'),\n(3027, 75374, 'seventy-five thousand three hundred seventy-four'),\n(3028, 57968, 'fifty-seven thousand nine hundred sixty-eight'),\n(3029, 24154, 'twenty-four thousand one hundred fifty-four'),\n(3030, 42180, 'forty-two thousand one hundred eighty'),\n(3031, 34365, 'thirty-four thousand three hundred sixty-five'),\n(3032, 36802, 'thirty-six thousand eight hundred two'),\n(3033, 10804, 'ten thousand eight hundred four'),\n(3034, 393, 'three hundred ninety-three'),\n(3035, 32409, 'thirty-two thousand four hundred nine'),\n(3036, 24639, 'twenty-four thousand six hundred thirty-nine'),\n(3037, 31732, 'thirty-one thousand seven hundred thirty-two'),\n(3038, 93655, 'ninety-three thousand six hundred fifty-five'),\n(3039, 45352, 'forty-five thousand three hundred fifty-two'),\n(3040, 71495, 'seventy-one thousand four hundred ninety-five'),\n(3041, 49125, 'forty-nine thousand one hundred twenty-five'),\n(3042, 71475, 'seventy-one thousand four hundred seventy-five'),\n(3043, 88099, 'eighty-eight thousand ninety-nine'),\n(3044, 2802, 'two thousand eight hundred two'),\n(3045, 92302, 'ninety-two thousand three hundred two'),\n(3046, 46223, 'forty-six thousand two hundred twenty-three'),\n(3047, 49251, 'forty-nine thousand two hundred fifty-one'),\n(3048, 53096, 'fifty-three thousand ninety-six'),\n(3049, 6124, 'six thousand one hundred twenty-four'),\n(3050, 60182, 'sixty thousand one hundred eighty-two'),\n(3051, 11384, 'eleven thousand three hundred eighty-four'),\n(3052, 46371, 'forty-six thousand three hundred seventy-one'),\n(3053, 3496, 'three thousand four hundred ninety-six'),\n(3054, 75447, 'seventy-five thousand four hundred forty-seven'),\n(3055, 37564, 'thirty-seven thousand five hundred sixty-four'),\n(3056, 84478, 'eighty-four thousand four hundred seventy-eight'),\n(3057, 6359, 'six thousand three hundred fifty-nine'),\n(3058, 65080, 'sixty-five thousand eighty'),\n(3059, 82568, 'eighty-two thousand five hundred sixty-eight'),\n(3060, 38785, 'thirty-eight thousand seven hundred eighty-five'),\n(3061, 5026, 'five thousand twenty-six'),\n(3062, 10490, 'ten thousand four hundred ninety'),\n(3063, 70633, 'seventy thousand six hundred thirty-three'),\n(3064, 5906, 'five thousand nine hundred six'),\n(3065, 63913, 'sixty-three thousand nine hundred thirteen'),\n(3066, 20968, 'twenty thousand nine hundred sixty-eight'),\n(3067, 76354, 'seventy-six thousand three hundred fifty-four'),\n(3068, 80536, 'eighty thousand five hundred thirty-six'),\n(3069, 90110, 'ninety thousand one hundred ten'),\n(3070, 22153, 'twenty-two thousand one hundred fifty-three'),\n(3071, 28585, 'twenty-eight thousand five hundred eighty-five'),\n(3072, 42975, 'forty-two thousand nine hundred seventy-five'),\n(3073, 60548, 'sixty thousand five hundred forty-eight'),\n(3074, 35162, 'thirty-five thousand one hundred sixty-two'),\n(3075, 17299, 'seventeen thousand two hundred ninety-nine'),\n(3076, 34103, 'thirty-four thousand one hundred three'),\n(3077, 60403, 'sixty thousand four hundred three'),\n(3078, 68821, 'sixty-eight thousand eight hundred twenty-one'),\n(3079, 66551, 'sixty-six thousand five hundred fifty-one'),\n(3080, 34044, 'thirty-four thousand forty-four'),\n(3081, 2434, 'two thousand four hundred thirty-four'),\n(3082, 32678, 'thirty-two thousand six hundred seventy-eight'),\n(3083, 97573, 'ninety-seven thousand five hundred seventy-three'),\n(3084, 79730, 'seventy-nine thousand seven hundred thirty'),\n(3085, 96952, 'ninety-six thousand nine hundred fifty-two'),\n(3086, 12113, 'twelve thousand one hundred thirteen'),\n(3087, 86105, 'eighty-six thousand one hundred five'),\n(3088, 9565, 'nine thousand five hundred sixty-five'),\n(3089, 2746, 'two thousand seven hundred forty-six'),\n(3090, 73122, 'seventy-three thousand one hundred twenty-two'),\n(3091, 76138, 'seventy-six thousand one hundred thirty-eight'),\n(3092, 83045, 'eighty-three thousand forty-five'),\n(3093, 72737, 'seventy-two thousand seven hundred thirty-seven'),\n(3094, 43302, 'forty-three thousand three hundred two'),\n(3095, 17047, 'seventeen thousand forty-seven'),\n(3096, 24057, 'twenty-four thousand fifty-seven'),\n(3097, 55979, 'fifty-five thousand nine hundred seventy-nine'),\n(3098, 11932, 'eleven thousand nine hundred thirty-two'),\n(3099, 80004, 'eighty thousand four'),\n(3100, 56325, 'fifty-six thousand three hundred twenty-five'),\n(3101, 60659, 'sixty thousand six hundred fifty-nine'),\n(3102, 95109, 'ninety-five thousand one hundred nine'),\n(3103, 89053, 'eighty-nine thousand fifty-three'),\n(3104, 97057, 'ninety-seven thousand fifty-seven'),\n(3105, 56689, 'fifty-six thousand six hundred eighty-nine'),\n(3106, 83363, 'eighty-three thousand three hundred sixty-three'),\n(3107, 11483, 'eleven thousand four hundred eighty-three'),\n(3108, 90357, 'ninety thousand three hundred fifty-seven'),\n(3109, 26054, 'twenty-six thousand fifty-four'),\n(3110, 85082, 'eighty-five thousand eighty-two'),\n(3111, 24911, 'twenty-four thousand nine hundred eleven'),\n(3112, 92631, 'ninety-two thousand six hundred thirty-one'),\n(3113, 21372, 'twenty-one thousand three hundred seventy-two'),\n(3114, 86961, 'eighty-six thousand nine hundred sixty-one'),\n(3115, 14489, 'fourteen thousand four hundred eighty-nine'),\n(3116, 18307, 'eighteen thousand three hundred seven'),\n(3117, 6507, 'six thousand five hundred seven'),\n(3118, 15450, 'fifteen thousand four hundred fifty'),\n(3119, 53337, 'fifty-three thousand three hundred thirty-seven'),\n(3120, 15581, 'fifteen thousand five hundred eighty-one'),\n(3121, 46980, 'forty-six thousand nine hundred eighty'),\n(3122, 39734, 'thirty-nine thousand seven hundred thirty-four'),\n(3123, 58132, 'fifty-eight thousand one hundred thirty-two'),\n(3124, 22902, 'twenty-two thousand nine hundred two'),\n(3125, 77108, 'seventy-seven thousand one hundred eight'),\n(3126, 27427, 'twenty-seven thousand four hundred twenty-seven'),\n(3127, 37714, 'thirty-seven thousand seven hundred fourteen'),\n(3128, 21911, 'twenty-one thousand nine hundred eleven'),\n(3129, 21458, 'twenty-one thousand four hundred fifty-eight'),\n(3130, 55137, 'fifty-five thousand one hundred thirty-seven'),\n(3131, 47173, 'forty-seven thousand one hundred seventy-three'),\n(3132, 50761, 'fifty thousand seven hundred sixty-one'),\n(3133, 46622, 'forty-six thousand six hundred twenty-two'),\n(3134, 40402, 'forty thousand four hundred two'),\n(3135, 80867, 'eighty thousand eight hundred sixty-seven'),\n(3136, 76342, 'seventy-six thousand three hundred forty-two'),\n(3137, 16687, 'sixteen thousand six hundred eighty-seven'),\n(3138, 73752, 'seventy-three thousand seven hundred fifty-two'),\n(3139, 39178, 'thirty-nine thousand one hundred seventy-eight'),\n(3140, 41487, 'forty-one thousand four hundred eighty-seven'),\n(3141, 24561, 'twenty-four thousand five hundred sixty-one'),\n(3142, 20612, 'twenty thousand six hundred twelve'),\n(3143, 87930, 'eighty-seven thousand nine hundred thirty'),\n(3144, 12138, 'twelve thousand one hundred thirty-eight'),\n(3145, 3689, 'three thousand six hundred eighty-nine'),\n(3146, 72938, 'seventy-two thousand nine hundred thirty-eight'),\n(3147, 69887, 'sixty-nine thousand eight hundred eighty-seven'),\n(3148, 90716, 'ninety thousand seven hundred sixteen'),\n(3149, 18817, 'eighteen thousand eight hundred seventeen'),\n(3150, 46065, 'forty-six thousand sixty-five'),\n(3151, 86098, 'eighty-six thousand ninety-eight'),\n(3152, 50593, 'fifty thousand five hundred ninety-three'),\n(3153, 33024, 'thirty-three thousand twenty-four'),\n(3154, 31817, 'thirty-one thousand eight hundred seventeen'),\n(3155, 42271, 'forty-two thousand two hundred seventy-one'),\n(3156, 11794, 'eleven thousand seven hundred ninety-four'),\n(3157, 79035, 'seventy-nine thousand thirty-five'),\n(3158, 69096, 'sixty-nine thousand ninety-six'),\n(3159, 20828, 'twenty thousand eight hundred twenty-eight'),\n(3160, 36978, 'thirty-six thousand nine hundred seventy-eight'),\n(3161, 44827, 'forty-four thousand eight hundred twenty-seven'),\n(3162, 22940, 'twenty-two thousand nine hundred forty'),\n(3163, 17136, 'seventeen thousand one hundred thirty-six'),\n(3164, 91650, 'ninety-one thousand six hundred fifty'),\n(3165, 61088, 'sixty-one thousand eighty-eight'),\n(3166, 59033, 'fifty-nine thousand thirty-three'),\n(3167, 72525, 'seventy-two thousand five hundred twenty-five'),\n(3168, 59873, 'fifty-nine thousand eight hundred seventy-three'),\n(3169, 95312, 'ninety-five thousand three hundred twelve'),\n(3170, 56056, 'fifty-six thousand fifty-six'),\n(3171, 78722, 'seventy-eight thousand seven hundred twenty-two'),\n(3172, 70408, 'seventy thousand four hundred eight'),\n(3173, 79756, 'seventy-nine thousand seven hundred fifty-six'),\n(3174, 20845, 'twenty thousand eight hundred forty-five'),\n(3175, 94769, 'ninety-four thousand seven hundred sixty-nine'),\n(3176, 10242, 'ten thousand two hundred forty-two'),\n(3177, 28214, 'twenty-eight thousand two hundred fourteen'),\n(3178, 15220, 'fifteen thousand two hundred twenty'),\n(3179, 57142, 'fifty-seven thousand one hundred forty-two'),\n(3180, 8049, 'eight thousand forty-nine'),\n(3181, 99608, 'ninety-nine thousand six hundred eight'),\n(3182, 16838, 'sixteen thousand eight hundred thirty-eight'),\n(3183, 14823, 'fourteen thousand eight hundred twenty-three'),\n(3184, 95734, 'ninety-five thousand seven hundred thirty-four'),\n(3185, 49103, 'forty-nine thousand one hundred three'),\n(3186, 76791, 'seventy-six thousand seven hundred ninety-one'),\n(3187, 8509, 'eight thousand five hundred nine'),\n(3188, 84475, 'eighty-four thousand four hundred seventy-five'),\n(3189, 58753, 'fifty-eight thousand seven hundred fifty-three'),\n(3190, 36274, 'thirty-six thousand two hundred seventy-four'),\n(3191, 3981, 'three thousand nine hundred eighty-one'),\n(3192, 71800, 'seventy-one thousand eight hundred'),\n(3193, 70992, 'seventy thousand nine hundred ninety-two'),\n(3194, 94931, 'ninety-four thousand nine hundred thirty-one'),\n(3195, 28535, 'twenty-eight thousand five hundred thirty-five'),\n(3196, 41850, 'forty-one thousand eight hundred fifty'),\n(3197, 12618, 'twelve thousand six hundred eighteen'),\n(3198, 43481, 'forty-three thousand four hundred eighty-one'),\n(3199, 67425, 'sixty-seven thousand four hundred twenty-five'),\n(3200, 21396, 'twenty-one thousand three hundred ninety-six'),\n(3201, 79411, 'seventy-nine thousand four hundred eleven'),\n(3202, 36051, 'thirty-six thousand fifty-one'),\n(3203, 39527, 'thirty-nine thousand five hundred twenty-seven'),\n(3204, 74647, 'seventy-four thousand six hundred forty-seven'),\n(3205, 59682, 'fifty-nine thousand six hundred eighty-two'),\n(3206, 44226, 'forty-four thousand two hundred twenty-six'),\n(3207, 91876, 'ninety-one thousand eight hundred seventy-six'),\n(3208, 42268, 'forty-two thousand two hundred sixty-eight'),\n(3209, 32013, 'thirty-two thousand thirteen'),\n(3210, 74405, 'seventy-four thousand four hundred five'),\n(3211, 28426, 'twenty-eight thousand four hundred twenty-six'),\n(3212, 6638, 'six thousand six hundred thirty-eight'),\n(3213, 45690, 'forty-five thousand six hundred ninety'),\n(3214, 43887, 'forty-three thousand eight hundred eighty-seven'),\n(3215, 70692, 'seventy thousand six hundred ninety-two'),\n(3216, 75903, 'seventy-five thousand nine hundred three'),\n(3217, 4733, 'four thousand seven hundred thirty-three'),\n(3218, 61268, 'sixty-one thousand two hundred sixty-eight'),\n(3219, 96708, 'ninety-six thousand seven hundred eight'),\n(3220, 85602, 'eighty-five thousand six hundred two'),\n(3221, 56994, 'fifty-six thousand nine hundred ninety-four'),\n(3222, 29897, 'twenty-nine thousand eight hundred ninety-seven'),\n(3223, 37207, 'thirty-seven thousand two hundred seven'),\n(3224, 27267, 'twenty-seven thousand two hundred sixty-seven'),\n(3225, 4364, 'four thousand three hundred sixty-four'),\n(3226, 4764, 'four thousand seven hundred sixty-four'),\n(3227, 21280, 'twenty-one thousand two hundred eighty'),\n(3228, 57894, 'fifty-seven thousand eight hundred ninety-four'),\n(3229, 97878, 'ninety-seven thousand eight hundred seventy-eight'),\n(3230, 20265, 'twenty thousand two hundred sixty-five'),\n(3231, 55906, 'fifty-five thousand nine hundred six'),\n(3232, 45999, 'forty-five thousand nine hundred ninety-nine'),\n(3233, 26862, 'twenty-six thousand eight hundred sixty-two'),\n(3234, 66546, 'sixty-six thousand five hundred forty-six'),\n(3235, 58681, 'fifty-eight thousand six hundred eighty-one'),\n(3236, 20634, 'twenty thousand six hundred thirty-four'),\n(3237, 23165, 'twenty-three thousand one hundred sixty-five'),\n(3238, 69608, 'sixty-nine thousand six hundred eight'),\n(3239, 51635, 'fifty-one thousand six hundred thirty-five'),\n(3240, 78119, 'seventy-eight thousand one hundred nineteen'),\n(3241, 13103, 'thirteen thousand one hundred three'),\n(3242, 98193, 'ninety-eight thousand one hundred ninety-three'),\n(3243, 97710, 'ninety-seven thousand seven hundred ten'),\n(3244, 39832, 'thirty-nine thousand eight hundred thirty-two'),\n(3245, 1304, 'one thousand three hundred four'),\n(3246, 77713, 'seventy-seven thousand seven hundred thirteen'),\n(3247, 55426, 'fifty-five thousand four hundred twenty-six'),\n(3248, 30414, 'thirty thousand four hundred fourteen'),\n(3249, 36097, 'thirty-six thousand ninety-seven'),\n(3250, 66159, 'sixty-six thousand one hundred fifty-nine'),\n(3251, 48348, 'forty-eight thousand three hundred forty-eight'),\n(3252, 24606, 'twenty-four thousand six hundred six'),\n(3253, 78026, 'seventy-eight thousand twenty-six'),\n(3254, 33277, 'thirty-three thousand two hundred seventy-seven'),\n(3255, 13613, 'thirteen thousand six hundred thirteen'),\n(3256, 22998, 'twenty-two thousand nine hundred ninety-eight'),\n(3257, 1499, 'one thousand four hundred ninety-nine'),\n(3258, 54486, 'fifty-four thousand four hundred eighty-six'),\n(3259, 59699, 'fifty-nine thousand six hundred ninety-nine'),\n(3260, 89747, 'eighty-nine thousand seven hundred forty-seven'),\n(3261, 18002, 'eighteen thousand two'),\n(3262, 46061, 'forty-six thousand sixty-one'),\n(3263, 34695, 'thirty-four thousand six hundred ninety-five'),\n(3264, 30017, 'thirty thousand seventeen'),\n(3265, 24428, 'twenty-four thousand four hundred twenty-eight'),\n(3266, 50421, 'fifty thousand four hundred twenty-one'),\n(3267, 14749, 'fourteen thousand seven hundred forty-nine'),\n(3268, 98725, 'ninety-eight thousand seven hundred twenty-five'),\n(3269, 52706, 'fifty-two thousand seven hundred six'),\n(3270, 55253, 'fifty-five thousand two hundred fifty-three'),\n(3271, 79854, 'seventy-nine thousand eight hundred fifty-four'),\n(3272, 23774, 'twenty-three thousand seven hundred seventy-four'),\n(3273, 38704, 'thirty-eight thousand seven hundred four'),\n(3274, 5778, 'five thousand seven hundred seventy-eight'),\n(3275, 16180, 'sixteen thousand one hundred eighty'),\n(3276, 42048, 'forty-two thousand forty-eight'),\n(3277, 89075, 'eighty-nine thousand seventy-five'),\n(3278, 88616, 'eighty-eight thousand six hundred sixteen'),\n(3279, 66289, 'sixty-six thousand two hundred eighty-nine'),\n(3280, 63549, 'sixty-three thousand five hundred forty-nine'),\n(3281, 6772, 'six thousand seven hundred seventy-two'),\n(3282, 88839, 'eighty-eight thousand eight hundred thirty-nine'),\n(3283, 335, 'three hundred thirty-five'),\n(3284, 73167, 'seventy-three thousand one hundred sixty-seven'),\n(3285, 26017, 'twenty-six thousand seventeen'),\n(3286, 47230, 'forty-seven thousand two hundred thirty'),\n(3287, 3536, 'three thousand five hundred thirty-six'),\n(3288, 92717, 'ninety-two thousand seven hundred seventeen'),\n(3289, 92707, 'ninety-two thousand seven hundred seven'),\n(3290, 80363, 'eighty thousand three hundred sixty-three'),\n(3291, 70795, 'seventy thousand seven hundred ninety-five'),\n(3292, 28974, 'twenty-eight thousand nine hundred seventy-four'),\n(3293, 98907, 'ninety-eight thousand nine hundred seven'),\n(3294, 16328, 'sixteen thousand three hundred twenty-eight'),\n(3295, 52258, 'fifty-two thousand two hundred fifty-eight'),\n(3296, 10018, 'ten thousand eighteen'),\n(3297, 76504, 'seventy-six thousand five hundred four'),\n(3298, 41695, 'forty-one thousand six hundred ninety-five'),\n(3299, 8079, 'eight thousand seventy-nine'),\n(3300, 55552, 'fifty-five thousand five hundred fifty-two'),\n(3301, 59369, 'fifty-nine thousand three hundred sixty-nine'),\n(3302, 95604, 'ninety-five thousand six hundred four'),\n(3303, 54871, 'fifty-four thousand eight hundred seventy-one'),\n(3304, 60447, 'sixty thousand four hundred forty-seven'),\n(3305, 16541, 'sixteen thousand five hundred forty-one'),\n(3306, 4792, 'four thousand seven hundred ninety-two'),\n(3307, 32900, 'thirty-two thousand nine hundred'),\n(3308, 20302, 'twenty thousand three hundred two'),\n(3309, 69833, 'sixty-nine thousand eight hundred thirty-three'),\n(3310, 48982, 'forty-eight thousand nine hundred eighty-two'),\n(3311, 44646, 'forty-four thousand six hundred forty-six'),\n(3312, 16740, 'sixteen thousand seven hundred forty'),\n(3313, 84826, 'eighty-four thousand eight hundred twenty-six'),\n(3314, 76724, 'seventy-six thousand seven hundred twenty-four'),\n(3315, 20399, 'twenty thousand three hundred ninety-nine'),\n(3316, 44189, 'forty-four thousand one hundred eighty-nine'),\n(3317, 52064, 'fifty-two thousand sixty-four'),\n(3318, 19888, 'nineteen thousand eight hundred eighty-eight'),\n(3319, 87260, 'eighty-seven thousand two hundred sixty'),\n(3320, 60706, 'sixty thousand seven hundred six'),\n(3321, 11743, 'eleven thousand seven hundred forty-three'),\n(3322, 98332, 'ninety-eight thousand three hundred thirty-two'),\n(3323, 98608, 'ninety-eight thousand six hundred eight'),\n(3324, 12706, 'twelve thousand seven hundred six'),\n(3325, 80743, 'eighty thousand seven hundred forty-three'),\n(3326, 9245, 'nine thousand two hundred forty-five'),\n(3327, 97091, 'ninety-seven thousand ninety-one'),\n(3328, 37640, 'thirty-seven thousand six hundred forty'),\n(3329, 30129, 'thirty thousand one hundred twenty-nine'),\n(3330, 14433, 'fourteen thousand four hundred thirty-three'),\n(3331, 36501, 'thirty-six thousand five hundred one'),\n(3332, 98143, 'ninety-eight thousand one hundred forty-three'),\n(3333, 94760, 'ninety-four thousand seven hundred sixty'),\n(3334, 1365, 'one thousand three hundred sixty-five'),\n(3335, 64789, 'sixty-four thousand seven hundred eighty-nine'),\n(3336, 91166, 'ninety-one thousand one hundred sixty-six'),\n(3337, 95275, 'ninety-five thousand two hundred seventy-five'),\n(3338, 29549, 'twenty-nine thousand five hundred forty-nine'),\n(3339, 3192, 'three thousand one hundred ninety-two'),\n(3340, 22206, 'twenty-two thousand two hundred six'),\n(3341, 24498, 'twenty-four thousand four hundred ninety-eight'),\n(3342, 96383, 'ninety-six thousand three hundred eighty-three'),\n(3343, 56472, 'fifty-six thousand four hundred seventy-two'),\n(3344, 19309, 'nineteen thousand three hundred nine'),\n(3345, 28583, 'twenty-eight thousand five hundred eighty-three'),\n(3346, 18820, 'eighteen thousand eight hundred twenty'),\n(3347, 14519, 'fourteen thousand five hundred nineteen'),\n(3348, 19863, 'nineteen thousand eight hundred sixty-three'),\n(3349, 82008, 'eighty-two thousand eight'),\n(3350, 37956, 'thirty-seven thousand nine hundred fifty-six'),\n(3351, 77175, 'seventy-seven thousand one hundred seventy-five'),\n(3352, 76470, 'seventy-six thousand four hundred seventy'),\n(3353, 56710, 'fifty-six thousand seven hundred ten'),\n(3354, 36240, 'thirty-six thousand two hundred forty'),\n(3355, 13736, 'thirteen thousand seven hundred thirty-six'),\n(3356, 26905, 'twenty-six thousand nine hundred five'),\n(3357, 94429, 'ninety-four thousand four hundred twenty-nine'),\n(3358, 69232, 'sixty-nine thousand two hundred thirty-two'),\n(3359, 13347, 'thirteen thousand three hundred forty-seven'),\n(3360, 41222, 'forty-one thousand two hundred twenty-two'),\n(3361, 22915, 'twenty-two thousand nine hundred fifteen'),\n(3362, 99782, 'ninety-nine thousand seven hundred eighty-two'),\n(3363, 39237, 'thirty-nine thousand two hundred thirty-seven'),\n(3364, 59013, 'fifty-nine thousand thirteen'),\n(3365, 35271, 'thirty-five thousand two hundred seventy-one'),\n(3366, 87957, 'eighty-seven thousand nine hundred fifty-seven'),\n(3367, 96047, 'ninety-six thousand forty-seven'),\n(3368, 44935, 'forty-four thousand nine hundred thirty-five'),\n(3369, 48207, 'forty-eight thousand two hundred seven'),\n(3370, 59682, 'fifty-nine thousand six hundred eighty-two'),\n(3371, 34427, 'thirty-four thousand four hundred twenty-seven'),\n(3372, 76097, 'seventy-six thousand ninety-seven'),\n(3373, 6940, 'six thousand nine hundred forty'),\n(3374, 34411, 'thirty-four thousand four hundred eleven'),\n(3375, 76909, 'seventy-six thousand nine hundred nine'),\n(3376, 37211, 'thirty-seven thousand two hundred eleven'),\n(3377, 33070, 'thirty-three thousand seventy'),\n(3378, 62925, 'sixty-two thousand nine hundred twenty-five'),\n(3379, 10312, 'ten thousand three hundred twelve'),\n(3380, 87309, 'eighty-seven thousand three hundred nine'),\n(3381, 51257, 'fifty-one thousand two hundred fifty-seven'),\n(3382, 41032, 'forty-one thousand thirty-two'),\n(3383, 12112, 'twelve thousand one hundred twelve'),\n(3384, 83862, 'eighty-three thousand eight hundred sixty-two'),\n(3385, 18658, 'eighteen thousand six hundred fifty-eight'),\n(3386, 66391, 'sixty-six thousand three hundred ninety-one'),\n(3387, 53702, 'fifty-three thousand seven hundred two'),\n(3388, 70524, 'seventy thousand five hundred twenty-four'),\n(3389, 76634, 'seventy-six thousand six hundred thirty-four'),\n(3390, 70354, 'seventy thousand three hundred fifty-four'),\n(3391, 25667, 'twenty-five thousand six hundred sixty-seven'),\n(3392, 51157, 'fifty-one thousand one hundred fifty-seven'),\n(3393, 53810, 'fifty-three thousand eight hundred ten'),\n(3394, 43269, 'forty-three thousand two hundred sixty-nine'),\n(3395, 56935, 'fifty-six thousand nine hundred thirty-five'),\n(3396, 69881, 'sixty-nine thousand eight hundred eighty-one'),\n(3397, 80011, 'eighty thousand eleven'),\n(3398, 3626, 'three thousand six hundred twenty-six'),\n(3399, 73648, 'seventy-three thousand six hundred forty-eight'),\n(3400, 62576, 'sixty-two thousand five hundred seventy-six'),\n(3401, 93419, 'ninety-three thousand four hundred nineteen'),\n(3402, 14079, 'fourteen thousand seventy-nine'),\n(3403, 52611, 'fifty-two thousand six hundred eleven'),\n(3404, 28500, 'twenty-eight thousand five hundred'),\n(3405, 38930, 'thirty-eight thousand nine hundred thirty'),\n(3406, 91958, 'ninety-one thousand nine hundred fifty-eight'),\n(3407, 20713, 'twenty thousand seven hundred thirteen'),\n(3408, 93978, 'ninety-three thousand nine hundred seventy-eight'),\n(3409, 49774, 'forty-nine thousand seven hundred seventy-four'),\n(3410, 1238, 'one thousand two hundred thirty-eight'),\n(3411, 9685, 'nine thousand six hundred eighty-five'),\n(3412, 9456, 'nine thousand four hundred fifty-six'),\n(3413, 44453, 'forty-four thousand four hundred fifty-three'),\n(3414, 91541, 'ninety-one thousand five hundred forty-one'),\n(3415, 14691, 'fourteen thousand six hundred ninety-one'),\n(3416, 53203, 'fifty-three thousand two hundred three'),\n(3417, 94105, 'ninety-four thousand one hundred five'),\n(3418, 60224, 'sixty thousand two hundred twenty-four'),\n(3419, 89945, 'eighty-nine thousand nine hundred forty-five'),\n(3420, 17324, 'seventeen thousand three hundred twenty-four'),\n(3421, 17782, 'seventeen thousand seven hundred eighty-two'),\n(3422, 48307, 'forty-eight thousand three hundred seven'),\n(3423, 32385, 'thirty-two thousand three hundred eighty-five'),\n(3424, 9722, 'nine thousand seven hundred twenty-two'),\n(3425, 81913, 'eighty-one thousand nine hundred thirteen'),\n(3426, 11459, 'eleven thousand four hundred fifty-nine'),\n(3427, 58685, 'fifty-eight thousand six hundred eighty-five'),\n(3428, 46908, 'forty-six thousand nine hundred eight'),\n(3429, 34277, 'thirty-four thousand two hundred seventy-seven'),\n(3430, 83881, 'eighty-three thousand eight hundred eighty-one'),\n(3431, 1014, 'one thousand fourteen'),\n(3432, 5613, 'five thousand six hundred thirteen'),\n(3433, 37723, 'thirty-seven thousand seven hundred twenty-three'),\n(3434, 1412, 'one thousand four hundred twelve'),\n(3435, 29531, 'twenty-nine thousand five hundred thirty-one'),\n(3436, 52687, 'fifty-two thousand six hundred eighty-seven'),\n(3437, 58641, 'fifty-eight thousand six hundred forty-one'),\n(3438, 14948, 'fourteen thousand nine hundred forty-eight'),\n(3439, 30402, 'thirty thousand four hundred two'),\n(3440, 10454, 'ten thousand four hundred fifty-four'),\n(3441, 3681, 'three thousand six hundred eighty-one'),\n(3442, 26793, 'twenty-six thousand seven hundred ninety-three'),\n(3443, 30432, 'thirty thousand four hundred thirty-two'),\n(3444, 97488, 'ninety-seven thousand four hundred eighty-eight'),\n(3445, 50850, 'fifty thousand eight hundred fifty'),\n(3446, 27925, 'twenty-seven thousand nine hundred twenty-five'),\n(3447, 12718, 'twelve thousand seven hundred eighteen'),\n(3448, 92578, 'ninety-two thousand five hundred seventy-eight'),\n(3449, 51978, 'fifty-one thousand nine hundred seventy-eight'),\n(3450, 86646, 'eighty-six thousand six hundred forty-six'),\n(3451, 33086, 'thirty-three thousand eighty-six'),\n(3452, 55619, 'fifty-five thousand six hundred nineteen'),\n(3453, 65250, 'sixty-five thousand two hundred fifty'),\n(3454, 59911, 'fifty-nine thousand nine hundred eleven'),\n(3455, 81759, 'eighty-one thousand seven hundred fifty-nine'),\n(3456, 71062, 'seventy-one thousand sixty-two'),\n(3457, 10868, 'ten thousand eight hundred sixty-eight'),\n(3458, 70403, 'seventy thousand four hundred three'),\n(3459, 45063, 'forty-five thousand sixty-three'),\n(3460, 45529, 'forty-five thousand five hundred twenty-nine'),\n(3461, 94216, 'ninety-four thousand two hundred sixteen'),\n(3462, 24337, 'twenty-four thousand three hundred thirty-seven'),\n(3463, 7640, 'seven thousand six hundred forty'),\n(3464, 16664, 'sixteen thousand six hundred sixty-four'),\n(3465, 37270, 'thirty-seven thousand two hundred seventy'),\n(3466, 49452, 'forty-nine thousand four hundred fifty-two'),\n(3467, 1811, 'one thousand eight hundred eleven'),\n(3468, 79888, 'seventy-nine thousand eight hundred eighty-eight'),\n(3469, 15557, 'fifteen thousand five hundred fifty-seven'),\n(3470, 94193, 'ninety-four thousand one hundred ninety-three'),\n(3471, 2569, 'two thousand five hundred sixty-nine'),\n(3472, 87304, 'eighty-seven thousand three hundred four'),\n(3473, 11008, 'eleven thousand eight'),\n(3474, 16952, 'sixteen thousand nine hundred fifty-two'),\n(3475, 86084, 'eighty-six thousand eighty-four'),\n(3476, 83241, 'eighty-three thousand two hundred forty-one'),\n(3477, 64364, 'sixty-four thousand three hundred sixty-four'),\n(3478, 78288, 'seventy-eight thousand two hundred eighty-eight'),\n(3479, 14905, 'fourteen thousand nine hundred five'),\n(3480, 69033, 'sixty-nine thousand thirty-three'),\n(3481, 53276, 'fifty-three thousand two hundred seventy-six'),\n(3482, 21153, 'twenty-one thousand one hundred fifty-three'),\n(3483, 37373, 'thirty-seven thousand three hundred seventy-three'),\n(3484, 52384, 'fifty-two thousand three hundred eighty-four'),\n(3485, 63492, 'sixty-three thousand four hundred ninety-two'),\n(3486, 19040, 'nineteen thousand forty'),\n(3487, 15865, 'fifteen thousand eight hundred sixty-five'),\n(3488, 12410, 'twelve thousand four hundred ten'),\n(3489, 5191, 'five thousand one hundred ninety-one'),\n(3490, 8405, 'eight thousand four hundred five'),\n(3491, 21078, 'twenty-one thousand seventy-eight'),\n(3492, 70681, 'seventy thousand six hundred eighty-one'),\n(3493, 19842, 'nineteen thousand eight hundred forty-two'),\n(3494, 36600, 'thirty-six thousand six hundred'),\n(3495, 34675, 'thirty-four thousand six hundred seventy-five'),\n(3496, 85508, 'eighty-five thousand five hundred eight'),\n(3497, 81047, 'eighty-one thousand forty-seven'),\n(3498, 20026, 'twenty thousand twenty-six'),\n(3499, 51140, 'fifty-one thousand one hundred forty'),\n(3500, 38104, 'thirty-eight thousand one hundred four'),\n(3501, 40857, 'forty thousand eight hundred fifty-seven'),\n(3502, 19692, 'nineteen thousand six hundred ninety-two'),\n(3503, 75578, 'seventy-five thousand five hundred seventy-eight'),\n(3504, 7332, 'seven thousand three hundred thirty-two'),\n(3505, 50317, 'fifty thousand three hundred seventeen'),\n(3506, 88095, 'eighty-eight thousand ninety-five'),\n(3507, 79423, 'seventy-nine thousand four hundred twenty-three'),\n(3508, 95804, 'ninety-five thousand eight hundred four'),\n(3509, 50175, 'fifty thousand one hundred seventy-five'),\n(3510, 67967, 'sixty-seven thousand nine hundred sixty-seven'),\n(3511, 44107, 'forty-four thousand one hundred seven'),\n(3512, 4732, 'four thousand seven hundred thirty-two'),\n(3513, 6006, 'six thousand six'),\n(3514, 89241, 'eighty-nine thousand two hundred forty-one'),\n(3515, 33098, 'thirty-three thousand ninety-eight'),\n(3516, 53970, 'fifty-three thousand nine hundred seventy'),\n(3517, 50673, 'fifty thousand six hundred seventy-three'),\n(3518, 71248, 'seventy-one thousand two hundred forty-eight'),\n(3519, 38851, 'thirty-eight thousand eight hundred fifty-one'),\n(3520, 75879, 'seventy-five thousand eight hundred seventy-nine'),\n(3521, 55963, 'fifty-five thousand nine hundred sixty-three'),\n(3522, 81847, 'eighty-one thousand eight hundred forty-seven'),\n(3523, 20088, 'twenty thousand eighty-eight'),\n(3524, 24424, 'twenty-four thousand four hundred twenty-four'),\n(3525, 98812, 'ninety-eight thousand eight hundred twelve'),\n(3526, 79831, 'seventy-nine thousand eight hundred thirty-one'),\n(3527, 82159, 'eighty-two thousand one hundred fifty-nine'),\n(3528, 84576, 'eighty-four thousand five hundred seventy-six'),\n(3529, 87260, 'eighty-seven thousand two hundred sixty'),\n(3530, 25149, 'twenty-five thousand one hundred forty-nine'),\n(3531, 36043, 'thirty-six thousand forty-three'),\n(3532, 27471, 'twenty-seven thousand four hundred seventy-one'),\n(3533, 74261, 'seventy-four thousand two hundred sixty-one'),\n(3534, 80999, 'eighty thousand nine hundred ninety-nine'),\n(3535, 92131, 'ninety-two thousand one hundred thirty-one'),\n(3536, 37716, 'thirty-seven thousand seven hundred sixteen'),\n(3537, 73671, 'seventy-three thousand six hundred seventy-one'),\n(3538, 12676, 'twelve thousand six hundred seventy-six'),\n(3539, 61303, 'sixty-one thousand three hundred three'),\n(3540, 77151, 'seventy-seven thousand one hundred fifty-one'),\n(3541, 10589, 'ten thousand five hundred eighty-nine'),\n(3542, 99886, 'ninety-nine thousand eight hundred eighty-six'),\n(3543, 44288, 'forty-four thousand two hundred eighty-eight'),\n(3544, 37964, 'thirty-seven thousand nine hundred sixty-four'),\n(3545, 51476, 'fifty-one thousand four hundred seventy-six'),\n(3546, 38822, 'thirty-eight thousand eight hundred twenty-two'),\n(3547, 89678, 'eighty-nine thousand six hundred seventy-eight'),\n(3548, 94251, 'ninety-four thousand two hundred fifty-one'),\n(3549, 86262, 'eighty-six thousand two hundred sixty-two'),\n(3550, 35023, 'thirty-five thousand twenty-three'),\n(3551, 76586, 'seventy-six thousand five hundred eighty-six'),\n(3552, 6219, 'six thousand two hundred nineteen'),\n(3553, 14553, 'fourteen thousand five hundred fifty-three'),\n(3554, 11137, 'eleven thousand one hundred thirty-seven'),\n(3555, 38217, 'thirty-eight thousand two hundred seventeen'),\n(3556, 35364, 'thirty-five thousand three hundred sixty-four'),\n(3557, 10977, 'ten thousand nine hundred seventy-seven'),\n(3558, 30006, 'thirty thousand six'),\n(3559, 64493, 'sixty-four thousand four hundred ninety-three'),\n(3560, 69257, 'sixty-nine thousand two hundred fifty-seven'),\n(3561, 55981, 'fifty-five thousand nine hundred eighty-one'),\n(3562, 98127, 'ninety-eight thousand one hundred twenty-seven'),\n(3563, 28253, 'twenty-eight thousand two hundred fifty-three'),\n(3564, 35260, 'thirty-five thousand two hundred sixty'),\n(3565, 23799, 'twenty-three thousand seven hundred ninety-nine'),\n(3566, 59537, 'fifty-nine thousand five hundred thirty-seven'),\n(3567, 87676, 'eighty-seven thousand six hundred seventy-six'),\n(3568, 95457, 'ninety-five thousand four hundred fifty-seven'),\n(3569, 21582, 'twenty-one thousand five hundred eighty-two'),\n(3570, 67797, 'sixty-seven thousand seven hundred ninety-seven'),\n(3571, 42930, 'forty-two thousand nine hundred thirty'),\n(3572, 48312, 'forty-eight thousand three hundred twelve'),\n(3573, 41226, 'forty-one thousand two hundred twenty-six'),\n(3574, 56975, 'fifty-six thousand nine hundred seventy-five'),\n(3575, 18167, 'eighteen thousand one hundred sixty-seven'),\n(3576, 15265, 'fifteen thousand two hundred sixty-five'),\n(3577, 84769, 'eighty-four thousand seven hundred sixty-nine'),\n(3578, 16040, 'sixteen thousand forty'),\n(3579, 22085, 'twenty-two thousand eighty-five'),\n(3580, 62524, 'sixty-two thousand five hundred twenty-four'),\n(3581, 34443, 'thirty-four thousand four hundred forty-three'),\n(3582, 53238, 'fifty-three thousand two hundred thirty-eight'),\n(3583, 41441, 'forty-one thousand four hundred forty-one'),\n(3584, 76927, 'seventy-six thousand nine hundred twenty-seven'),\n(3585, 97977, 'ninety-seven thousand nine hundred seventy-seven'),\n(3586, 18492, 'eighteen thousand four hundred ninety-two'),\n(3587, 60198, 'sixty thousand one hundred ninety-eight'),\n(3588, 23384, 'twenty-three thousand three hundred eighty-four'),\n(3589, 12543, 'twelve thousand five hundred forty-three'),\n(3590, 83354, 'eighty-three thousand three hundred fifty-four'),\n(3591, 32010, 'thirty-two thousand ten'),\n(3592, 41820, 'forty-one thousand eight hundred twenty'),\n(3593, 60217, 'sixty thousand two hundred seventeen'),\n(3594, 45614, 'forty-five thousand six hundred fourteen'),\n(3595, 81524, 'eighty-one thousand five hundred twenty-four'),\n(3596, 6468, 'six thousand four hundred sixty-eight'),\n(3597, 3865, 'three thousand eight hundred sixty-five'),\n(3598, 25574, 'twenty-five thousand five hundred seventy-four'),\n(3599, 90048, 'ninety thousand forty-eight'),\n(3600, 40344, 'forty thousand three hundred forty-four'),\n(3601, 14343, 'fourteen thousand three hundred forty-three'),\n(3602, 9495, 'nine thousand four hundred ninety-five'),\n(3603, 12641, 'twelve thousand six hundred forty-one'),\n(3604, 9795, 'nine thousand seven hundred ninety-five'),\n(3605, 34230, 'thirty-four thousand two hundred thirty'),\n(3606, 90559, 'ninety thousand five hundred fifty-nine'),\n(3607, 94175, 'ninety-four thousand one hundred seventy-five'),\n(3608, 84020, 'eighty-four thousand twenty'),\n(3609, 46560, 'forty-six thousand five hundred sixty'),\n(3610, 59520, 'fifty-nine thousand five hundred twenty'),\n(3611, 6613, 'six thousand six hundred thirteen'),\n(3612, 86324, 'eighty-six thousand three hundred twenty-four'),\n(3613, 250, 'two hundred fifty'),\n(3614, 69136, 'sixty-nine thousand one hundred thirty-six'),\n(3615, 92537, 'ninety-two thousand five hundred thirty-seven'),\n(3616, 13115, 'thirteen thousand one hundred fifteen'),\n(3617, 23907, 'twenty-three thousand nine hundred seven'),\n(3618, 9513, 'nine thousand five hundred thirteen'),\n(3619, 26982, 'twenty-six thousand nine hundred eighty-two'),\n(3620, 7879, 'seven thousand eight hundred seventy-nine'),\n(3621, 92331, 'ninety-two thousand three hundred thirty-one'),\n(3622, 2880, 'two thousand eight hundred eighty'),\n(3623, 99525, 'ninety-nine thousand five hundred twenty-five'),\n(3624, 46522, 'forty-six thousand five hundred twenty-two'),\n(3625, 23039, 'twenty-three thousand thirty-nine'),\n(3626, 34304, 'thirty-four thousand three hundred four'),\n(3627, 78013, 'seventy-eight thousand thirteen'),\n(3628, 94249, 'ninety-four thousand two hundred forty-nine'),\n(3629, 2279, 'two thousand two hundred seventy-nine'),\n(3630, 53610, 'fifty-three thousand six hundred ten'),\n(3631, 63129, 'sixty-three thousand one hundred twenty-nine'),\n(3632, 8500, 'eight thousand five hundred'),\n(3633, 53798, 'fifty-three thousand seven hundred ninety-eight'),\n(3634, 38422, 'thirty-eight thousand four hundred twenty-two'),\n(3635, 10541, 'ten thousand five hundred forty-one'),\n(3636, 49289, 'forty-nine thousand two hundred eighty-nine'),\n(3637, 49273, 'forty-nine thousand two hundred seventy-three'),\n(3638, 91803, 'ninety-one thousand eight hundred three'),\n(3639, 12468, 'twelve thousand four hundred sixty-eight'),\n(3640, 44785, 'forty-four thousand seven hundred eighty-five'),\n(3641, 95707, 'ninety-five thousand seven hundred seven'),\n(3642, 49976, 'forty-nine thousand nine hundred seventy-six'),\n(3643, 86860, 'eighty-six thousand eight hundred sixty'),\n(3644, 92127, 'ninety-two thousand one hundred twenty-seven'),\n(3645, 26431, 'twenty-six thousand four hundred thirty-one'),\n(3646, 92262, 'ninety-two thousand two hundred sixty-two'),\n(3647, 37206, 'thirty-seven thousand two hundred six'),\n(3648, 91060, 'ninety-one thousand sixty'),\n(3649, 94561, 'ninety-four thousand five hundred sixty-one'),\n(3650, 98528, 'ninety-eight thousand five hundred twenty-eight'),\n(3651, 9871, 'nine thousand eight hundred seventy-one'),\n(3652, 82124, 'eighty-two thousand one hundred twenty-four'),\n(3653, 14270, 'fourteen thousand two hundred seventy'),\n(3654, 12047, 'twelve thousand forty-seven'),\n(3655, 75356, 'seventy-five thousand three hundred fifty-six'),\n(3656, 15419, 'fifteen thousand four hundred nineteen'),\n(3657, 67423, 'sixty-seven thousand four hundred twenty-three'),\n(3658, 42790, 'forty-two thousand seven hundred ninety'),\n(3659, 76395, 'seventy-six thousand three hundred ninety-five'),\n(3660, 94864, 'ninety-four thousand eight hundred sixty-four'),\n(3661, 52231, 'fifty-two thousand two hundred thirty-one'),\n(3662, 80409, 'eighty thousand four hundred nine'),\n(3663, 17263, 'seventeen thousand two hundred sixty-three'),\n(3664, 15859, 'fifteen thousand eight hundred fifty-nine'),\n(3665, 58869, 'fifty-eight thousand eight hundred sixty-nine'),\n(3666, 90772, 'ninety thousand seven hundred seventy-two'),\n(3667, 17022, 'seventeen thousand twenty-two'),\n(3668, 20295, 'twenty thousand two hundred ninety-five'),\n(3669, 66309, 'sixty-six thousand three hundred nine'),\n(3670, 80008, 'eighty thousand eight'),\n(3671, 17712, 'seventeen thousand seven hundred twelve'),\n(3672, 66589, 'sixty-six thousand five hundred eighty-nine'),\n(3673, 28283, 'twenty-eight thousand two hundred eighty-three'),\n(3674, 39222, 'thirty-nine thousand two hundred twenty-two'),\n(3675, 48453, 'forty-eight thousand four hundred fifty-three'),\n(3676, 23555, 'twenty-three thousand five hundred fifty-five'),\n(3677, 91764, 'ninety-one thousand seven hundred sixty-four'),\n(3678, 22594, 'twenty-two thousand five hundred ninety-four'),\n(3679, 46680, 'forty-six thousand six hundred eighty'),\n(3680, 76455, 'seventy-six thousand four hundred fifty-five'),\n(3681, 61116, 'sixty-one thousand one hundred sixteen'),\n(3682, 9267, 'nine thousand two hundred sixty-seven'),\n(3683, 73619, 'seventy-three thousand six hundred nineteen'),\n(3684, 4314, 'four thousand three hundred fourteen'),\n(3685, 47379, 'forty-seven thousand three hundred seventy-nine'),\n(3686, 27913, 'twenty-seven thousand nine hundred thirteen'),\n(3687, 40459, 'forty thousand four hundred fifty-nine'),\n(3688, 87849, 'eighty-seven thousand eight hundred forty-nine'),\n(3689, 73921, 'seventy-three thousand nine hundred twenty-one'),\n(3690, 27243, 'twenty-seven thousand two hundred forty-three'),\n(3691, 39125, 'thirty-nine thousand one hundred twenty-five'),\n(3692, 56011, 'fifty-six thousand eleven'),\n(3693, 85383, 'eighty-five thousand three hundred eighty-three'),\n(3694, 74158, 'seventy-four thousand one hundred fifty-eight'),\n(3695, 24199, 'twenty-four thousand one hundred ninety-nine'),\n(3696, 44257, 'forty-four thousand two hundred fifty-seven'),\n(3697, 38808, 'thirty-eight thousand eight hundred eight'),\n(3698, 11852, 'eleven thousand eight hundred fifty-two'),\n(3699, 74550, 'seventy-four thousand five hundred fifty'),\n(3700, 79099, 'seventy-nine thousand ninety-nine'),\n(3701, 58589, 'fifty-eight thousand five hundred eighty-nine'),\n(3702, 9158, 'nine thousand one hundred fifty-eight'),\n(3703, 16166, 'sixteen thousand one hundred sixty-six'),\n(3704, 84637, 'eighty-four thousand six hundred thirty-seven'),\n(3705, 83306, 'eighty-three thousand three hundred six'),\n(3706, 21595, 'twenty-one thousand five hundred ninety-five'),\n(3707, 2151, 'two thousand one hundred fifty-one'),\n(3708, 44562, 'forty-four thousand five hundred sixty-two'),\n(3709, 70876, 'seventy thousand eight hundred seventy-six'),\n(3710, 81209, 'eighty-one thousand two hundred nine'),\n(3711, 38502, 'thirty-eight thousand five hundred two'),\n(3712, 5252, 'five thousand two hundred fifty-two'),\n(3713, 46419, 'forty-six thousand four hundred nineteen'),\n(3714, 31465, 'thirty-one thousand four hundred sixty-five'),\n(3715, 88555, 'eighty-eight thousand five hundred fifty-five'),\n(3716, 63170, 'sixty-three thousand one hundred seventy'),\n(3717, 49868, 'forty-nine thousand eight hundred sixty-eight'),\n(3718, 90823, 'ninety thousand eight hundred twenty-three'),\n(3719, 69446, 'sixty-nine thousand four hundred forty-six'),\n(3720, 26892, 'twenty-six thousand eight hundred ninety-two'),\n(3721, 17543, 'seventeen thousand five hundred forty-three'),\n(3722, 33844, 'thirty-three thousand eight hundred forty-four'),\n(3723, 29478, 'twenty-nine thousand four hundred seventy-eight'),\n(3724, 96685, 'ninety-six thousand six hundred eighty-five'),\n(3725, 38526, 'thirty-eight thousand five hundred twenty-six'),\n(3726, 23760, 'twenty-three thousand seven hundred sixty'),\n(3727, 22053, 'twenty-two thousand fifty-three'),\n(3728, 41143, 'forty-one thousand one hundred forty-three'),\n(3729, 16812, 'sixteen thousand eight hundred twelve'),\n(3730, 88806, 'eighty-eight thousand eight hundred six'),\n(3731, 57290, 'fifty-seven thousand two hundred ninety'),\n(3732, 46403, 'forty-six thousand four hundred three'),\n(3733, 14487, 'fourteen thousand four hundred eighty-seven'),\n(3734, 76705, 'seventy-six thousand seven hundred five'),\n(3735, 50634, 'fifty thousand six hundred thirty-four'),\n(3736, 9062, 'nine thousand sixty-two'),\n(3737, 1788, 'one thousand seven hundred eighty-eight'),\n(3738, 25958, 'twenty-five thousand nine hundred fifty-eight'),\n(3739, 11601, 'eleven thousand six hundred one'),\n(3740, 74330, 'seventy-four thousand three hundred thirty'),\n(3741, 22172, 'twenty-two thousand one hundred seventy-two'),\n(3742, 42888, 'forty-two thousand eight hundred eighty-eight'),\n(3743, 5402, 'five thousand four hundred two'),\n(3744, 72775, 'seventy-two thousand seven hundred seventy-five'),\n(3745, 90270, 'ninety thousand two hundred seventy'),\n(3746, 5137, 'five thousand one hundred thirty-seven'),\n(3747, 10295, 'ten thousand two hundred ninety-five'),\n(3748, 94444, 'ninety-four thousand four hundred forty-four'),\n(3749, 75640, 'seventy-five thousand six hundred forty'),\n(3750, 51028, 'fifty-one thousand twenty-eight'),\n(3751, 95855, 'ninety-five thousand eight hundred fifty-five'),\n(3752, 3382, 'three thousand three hundred eighty-two'),\n(3753, 7116, 'seven thousand one hundred sixteen'),\n(3754, 56076, 'fifty-six thousand seventy-six'),\n(3755, 62902, 'sixty-two thousand nine hundred two'),\n(3756, 94747, 'ninety-four thousand seven hundred forty-seven'),\n(3757, 7483, 'seven thousand four hundred eighty-three'),\n(3758, 79276, 'seventy-nine thousand two hundred seventy-six'),\n(3759, 48065, 'forty-eight thousand sixty-five'),\n(3760, 78755, 'seventy-eight thousand seven hundred fifty-five'),\n(3761, 90005, 'ninety thousand five'),\n(3762, 52348, 'fifty-two thousand three hundred forty-eight'),\n(3763, 38175, 'thirty-eight thousand one hundred seventy-five'),\n(3764, 53580, 'fifty-three thousand five hundred eighty'),\n(3765, 12084, 'twelve thousand eighty-four'),\n(3766, 92991, 'ninety-two thousand nine hundred ninety-one'),\n(3767, 47407, 'forty-seven thousand four hundred seven'),\n(3768, 41929, 'forty-one thousand nine hundred twenty-nine'),\n(3769, 82296, 'eighty-two thousand two hundred ninety-six'),\n(3770, 63828, 'sixty-three thousand eight hundred twenty-eight'),\n(3771, 21283, 'twenty-one thousand two hundred eighty-three'),\n(3772, 89438, 'eighty-nine thousand four hundred thirty-eight'),\n(3773, 24512, 'twenty-four thousand five hundred twelve'),\n(3774, 66007, 'sixty-six thousand seven'),\n(3775, 72757, 'seventy-two thousand seven hundred fifty-seven'),\n(3776, 41536, 'forty-one thousand five hundred thirty-six'),\n(3777, 71384, 'seventy-one thousand three hundred eighty-four'),\n(3778, 72708, 'seventy-two thousand seven hundred eight'),\n(3779, 74895, 'seventy-four thousand eight hundred ninety-five'),\n(3780, 81670, 'eighty-one thousand six hundred seventy'),\n(3781, 82046, 'eighty-two thousand forty-six'),\n(3782, 21869, 'twenty-one thousand eight hundred sixty-nine'),\n(3783, 33329, 'thirty-three thousand three hundred twenty-nine'),\n(3784, 77826, 'seventy-seven thousand eight hundred twenty-six'),\n(3785, 13056, 'thirteen thousand fifty-six'),\n(3786, 86200, 'eighty-six thousand two hundred'),\n(3787, 31648, 'thirty-one thousand six hundred forty-eight'),\n(3788, 57542, 'fifty-seven thousand five hundred forty-two'),\n(3789, 1374, 'one thousand three hundred seventy-four'),\n(3790, 67665, 'sixty-seven thousand six hundred sixty-five'),\n(3791, 95754, 'ninety-five thousand seven hundred fifty-four'),\n(3792, 35655, 'thirty-five thousand six hundred fifty-five'),\n(3793, 65333, 'sixty-five thousand three hundred thirty-three'),\n(3794, 64188, 'sixty-four thousand one hundred eighty-eight'),\n(3795, 19698, 'nineteen thousand six hundred ninety-eight'),\n(3796, 26736, 'twenty-six thousand seven hundred thirty-six'),\n(3797, 14857, 'fourteen thousand eight hundred fifty-seven'),\n(3798, 42009, 'forty-two thousand nine'),\n(3799, 91156, 'ninety-one thousand one hundred fifty-six'),\n(3800, 14638, 'fourteen thousand six hundred thirty-eight'),\n(3801, 51122, 'fifty-one thousand one hundred twenty-two'),\n(3802, 20192, 'twenty thousand one hundred ninety-two'),\n(3803, 88185, 'eighty-eight thousand one hundred eighty-five'),\n(3804, 13798, 'thirteen thousand seven hundred ninety-eight'),\n(3805, 62073, 'sixty-two thousand seventy-three'),\n(3806, 68516, 'sixty-eight thousand five hundred sixteen'),\n(3807, 88104, 'eighty-eight thousand one hundred four'),\n(3808, 55007, 'fifty-five thousand seven'),\n(3809, 49778, 'forty-nine thousand seven hundred seventy-eight'),\n(3810, 91147, 'ninety-one thousand one hundred forty-seven'),\n(3811, 48531, 'forty-eight thousand five hundred thirty-one'),\n(3812, 61940, 'sixty-one thousand nine hundred forty'),\n(3813, 79835, 'seventy-nine thousand eight hundred thirty-five'),\n(3814, 53589, 'fifty-three thousand five hundred eighty-nine'),\n(3815, 69097, 'sixty-nine thousand ninety-seven'),\n(3816, 35293, 'thirty-five thousand two hundred ninety-three'),\n(3817, 39234, 'thirty-nine thousand two hundred thirty-four'),\n(3818, 6271, 'six thousand two hundred seventy-one'),\n(3819, 10038, 'ten thousand thirty-eight'),\n(3820, 22953, 'twenty-two thousand nine hundred fifty-three'),\n(3821, 99930, 'ninety-nine thousand nine hundred thirty'),\n(3822, 41920, 'forty-one thousand nine hundred twenty'),\n(3823, 65428, 'sixty-five thousand four hundred twenty-eight'),\n(3824, 90627, 'ninety thousand six hundred twenty-seven'),\n(3825, 76289, 'seventy-six thousand two hundred eighty-nine'),\n(3826, 34994, 'thirty-four thousand nine hundred ninety-four'),\n(3827, 33317, 'thirty-three thousand three hundred seventeen'),\n(3828, 15994, 'fifteen thousand nine hundred ninety-four'),\n(3829, 6982, 'six thousand nine hundred eighty-two'),\n(3830, 74519, 'seventy-four thousand five hundred nineteen'),\n(3831, 67713, 'sixty-seven thousand seven hundred thirteen'),\n(3832, 47487, 'forty-seven thousand four hundred eighty-seven'),\n(3833, 78746, 'seventy-eight thousand seven hundred forty-six'),\n(3834, 35846, 'thirty-five thousand eight hundred forty-six'),\n(3835, 15850, 'fifteen thousand eight hundred fifty'),\n(3836, 79240, 'seventy-nine thousand two hundred forty'),\n(3837, 24858, 'twenty-four thousand eight hundred fifty-eight'),\n(3838, 61899, 'sixty-one thousand eight hundred ninety-nine'),\n(3839, 2494, 'two thousand four hundred ninety-four'),\n(3840, 83904, 'eighty-three thousand nine hundred four'),\n(3841, 53824, 'fifty-three thousand eight hundred twenty-four'),\n(3842, 55396, 'fifty-five thousand three hundred ninety-six'),\n(3843, 21043, 'twenty-one thousand forty-three'),\n(3844, 26998, 'twenty-six thousand nine hundred ninety-eight'),\n(3845, 62737, 'sixty-two thousand seven hundred thirty-seven'),\n(3846, 6127, 'six thousand one hundred twenty-seven'),\n(3847, 33690, 'thirty-three thousand six hundred ninety'),\n(3848, 23612, 'twenty-three thousand six hundred twelve'),\n(3849, 61672, 'sixty-one thousand six hundred seventy-two'),\n(3850, 98334, 'ninety-eight thousand three hundred thirty-four'),\n(3851, 15798, 'fifteen thousand seven hundred ninety-eight'),\n(3852, 9049, 'nine thousand forty-nine'),\n(3853, 68023, 'sixty-eight thousand twenty-three'),\n(3854, 13200, 'thirteen thousand two hundred'),\n(3855, 44840, 'forty-four thousand eight hundred forty'),\n(3856, 52850, 'fifty-two thousand eight hundred fifty'),\n(3857, 78920, 'seventy-eight thousand nine hundred twenty'),\n(3858, 25681, 'twenty-five thousand six hundred eighty-one'),\n(3859, 73985, 'seventy-three thousand nine hundred eighty-five'),\n(3860, 90829, 'ninety thousand eight hundred twenty-nine'),\n(3861, 42114, 'forty-two thousand one hundred fourteen'),\n(3862, 74654, 'seventy-four thousand six hundred fifty-four'),\n(3863, 82999, 'eighty-two thousand nine hundred ninety-nine'),\n(3864, 86163, 'eighty-six thousand one hundred sixty-three'),\n(3865, 35046, 'thirty-five thousand forty-six'),\n(3866, 26, 'twenty-six'),\n(3867, 34716, 'thirty-four thousand seven hundred sixteen'),\n(3868, 52005, 'fifty-two thousand five'),\n(3869, 71929, 'seventy-one thousand nine hundred twenty-nine'),\n(3870, 98714, 'ninety-eight thousand seven hundred fourteen'),\n(3871, 80296, 'eighty thousand two hundred ninety-six'),\n(3872, 14160, 'fourteen thousand one hundred sixty'),\n(3873, 17204, 'seventeen thousand two hundred four'),\n(3874, 81894, 'eighty-one thousand eight hundred ninety-four'),\n(3875, 50209, 'fifty thousand two hundred nine'),\n(3876, 14953, 'fourteen thousand nine hundred fifty-three'),\n(3877, 88741, 'eighty-eight thousand seven hundred forty-one'),\n(3878, 82388, 'eighty-two thousand three hundred eighty-eight'),\n(3879, 50662, 'fifty thousand six hundred sixty-two'),\n(3880, 47277, 'forty-seven thousand two hundred seventy-seven'),\n(3881, 60580, 'sixty thousand five hundred eighty'),\n(3882, 62492, 'sixty-two thousand four hundred ninety-two'),\n(3883, 59825, 'fifty-nine thousand eight hundred twenty-five'),\n(3884, 86562, 'eighty-six thousand five hundred sixty-two'),\n(3885, 84715, 'eighty-four thousand seven hundred fifteen'),\n(3886, 4030, 'four thousand thirty'),\n(3887, 42269, 'forty-two thousand two hundred sixty-nine'),\n(3888, 20337, 'twenty thousand three hundred thirty-seven'),\n(3889, 36923, 'thirty-six thousand nine hundred twenty-three'),\n(3890, 55266, 'fifty-five thousand two hundred sixty-six'),\n(3891, 55697, 'fifty-five thousand six hundred ninety-seven'),\n(3892, 89651, 'eighty-nine thousand six hundred fifty-one'),\n(3893, 56503, 'fifty-six thousand five hundred three'),\n(3894, 241, 'two hundred forty-one'),\n(3895, 96754, 'ninety-six thousand seven hundred fifty-four'),\n(3896, 32415, 'thirty-two thousand four hundred fifteen'),\n(3897, 74331, 'seventy-four thousand three hundred thirty-one'),\n(3898, 6841, 'six thousand eight hundred forty-one'),\n(3899, 88591, 'eighty-eight thousand five hundred ninety-one'),\n(3900, 9138, 'nine thousand one hundred thirty-eight'),\n(3901, 64961, 'sixty-four thousand nine hundred sixty-one'),\n(3902, 23722, 'twenty-three thousand seven hundred twenty-two'),\n(3903, 39599, 'thirty-nine thousand five hundred ninety-nine'),\n(3904, 42647, 'forty-two thousand six hundred forty-seven'),\n(3905, 12856, 'twelve thousand eight hundred fifty-six'),\n(3906, 86363, 'eighty-six thousand three hundred sixty-three'),\n(3907, 29129, 'twenty-nine thousand one hundred twenty-nine'),\n(3908, 84042, 'eighty-four thousand forty-two'),\n(3909, 13888, 'thirteen thousand eight hundred eighty-eight'),\n(3910, 9500, 'nine thousand five hundred'),\n(3911, 53484, 'fifty-three thousand four hundred eighty-four'),\n(3912, 25395, 'twenty-five thousand three hundred ninety-five'),\n(3913, 27352, 'twenty-seven thousand three hundred fifty-two'),\n(3914, 89396, 'eighty-nine thousand three hundred ninety-six'),\n(3915, 31375, 'thirty-one thousand three hundred seventy-five'),\n(3916, 60857, 'sixty thousand eight hundred fifty-seven'),\n(3917, 61172, 'sixty-one thousand one hundred seventy-two'),\n(3918, 29329, 'twenty-nine thousand three hundred twenty-nine'),\n(3919, 27707, 'twenty-seven thousand seven hundred seven'),\n(3920, 29677, 'twenty-nine thousand six hundred seventy-seven'),\n(3921, 40205, 'forty thousand two hundred five'),\n(3922, 45678, 'forty-five thousand six hundred seventy-eight'),\n(3923, 99927, 'ninety-nine thousand nine hundred twenty-seven'),\n(3924, 64743, 'sixty-four thousand seven hundred forty-three'),\n(3925, 22868, 'twenty-two thousand eight hundred sixty-eight'),\n(3926, 70743, 'seventy thousand seven hundred forty-three'),\n(3927, 28192, 'twenty-eight thousand one hundred ninety-two'),\n(3928, 3302, 'three thousand three hundred two'),\n(3929, 47726, 'forty-seven thousand seven hundred twenty-six'),\n(3930, 37683, 'thirty-seven thousand six hundred eighty-three'),\n(3931, 6905, 'six thousand nine hundred five'),\n(3932, 66454, 'sixty-six thousand four hundred fifty-four'),\n(3933, 60775, 'sixty thousand seven hundred seventy-five'),\n(3934, 87639, 'eighty-seven thousand six hundred thirty-nine'),\n(3935, 59479, 'fifty-nine thousand four hundred seventy-nine'),\n(3936, 89619, 'eighty-nine thousand six hundred nineteen'),\n(3937, 40144, 'forty thousand one hundred forty-four'),\n(3938, 52613, 'fifty-two thousand six hundred thirteen'),\n(3939, 96051, 'ninety-six thousand fifty-one'),\n(3940, 24290, 'twenty-four thousand two hundred ninety'),\n(3941, 7882, 'seven thousand eight hundred eighty-two'),\n(3942, 44252, 'forty-four thousand two hundred fifty-two'),\n(3943, 88439, 'eighty-eight thousand four hundred thirty-nine'),\n(3944, 54009, 'fifty-four thousand nine'),\n(3945, 45373, 'forty-five thousand three hundred seventy-three'),\n(3946, 71039, 'seventy-one thousand thirty-nine'),\n(3947, 55529, 'fifty-five thousand five hundred twenty-nine'),\n(3948, 77501, 'seventy-seven thousand five hundred one'),\n(3949, 280, 'two hundred eighty'),\n(3950, 85133, 'eighty-five thousand one hundred thirty-three'),\n(3951, 761, 'seven hundred sixty-one'),\n(3952, 43709, 'forty-three thousand seven hundred nine'),\n(3953, 39383, 'thirty-nine thousand three hundred eighty-three'),\n(3954, 71129, 'seventy-one thousand one hundred twenty-nine'),\n(3955, 78300, 'seventy-eight thousand three hundred'),\n(3956, 15677, 'fifteen thousand six hundred seventy-seven'),\n(3957, 45654, 'forty-five thousand six hundred fifty-four'),\n(3958, 37655, 'thirty-seven thousand six hundred fifty-five'),\n(3959, 73870, 'seventy-three thousand eight hundred seventy'),\n(3960, 13586, 'thirteen thousand five hundred eighty-six'),\n(3961, 17935, 'seventeen thousand nine hundred thirty-five'),\n(3962, 22377, 'twenty-two thousand three hundred seventy-seven'),\n(3963, 83852, 'eighty-three thousand eight hundred fifty-two'),\n(3964, 82982, 'eighty-two thousand nine hundred eighty-two'),\n(3965, 23942, 'twenty-three thousand nine hundred forty-two'),\n(3966, 4, 'four'),\n(3967, 62696, 'sixty-two thousand six hundred ninety-six'),\n(3968, 80592, 'eighty thousand five hundred ninety-two'),\n(3969, 76795, 'seventy-six thousand seven hundred ninety-five'),\n(3970, 8968, 'eight thousand nine hundred sixty-eight'),\n(3971, 13813, 'thirteen thousand eight hundred thirteen'),\n(3972, 19275, 'nineteen thousand two hundred seventy-five'),\n(3973, 7545, 'seven thousand five hundred forty-five'),\n(3974, 93004, 'ninety-three thousand four'),\n(3975, 92311, 'ninety-two thousand three hundred eleven'),\n(3976, 50992, 'fifty thousand nine hundred ninety-two'),\n(3977, 61181, 'sixty-one thousand one hundred eighty-one'),\n(3978, 31652, 'thirty-one thousand six hundred fifty-two'),\n(3979, 61949, 'sixty-one thousand nine hundred forty-nine'),\n(3980, 11738, 'eleven thousand seven hundred thirty-eight'),\n(3981, 68579, 'sixty-eight thousand five hundred seventy-nine'),\n(3982, 23943, 'twenty-three thousand nine hundred forty-three'),\n(3983, 98358, 'ninety-eight thousand three hundred fifty-eight'),\n(3984, 84861, 'eighty-four thousand eight hundred sixty-one'),\n(3985, 51132, 'fifty-one thousand one hundred thirty-two'),\n(3986, 56845, 'fifty-six thousand eight hundred forty-five'),\n(3987, 7917, 'seven thousand nine hundred seventeen'),\n(3988, 84918, 'eighty-four thousand nine hundred eighteen'),\n(3989, 91809, 'ninety-one thousand eight hundred nine'),\n(3990, 49335, 'forty-nine thousand three hundred thirty-five'),\n(3991, 26021, 'twenty-six thousand twenty-one'),\n(3992, 88977, 'eighty-eight thousand nine hundred seventy-seven'),\n(3993, 85932, 'eighty-five thousand nine hundred thirty-two'),\n(3994, 81681, 'eighty-one thousand six hundred eighty-one'),\n(3995, 80234, 'eighty thousand two hundred thirty-four'),\n(3996, 26116, 'twenty-six thousand one hundred sixteen'),\n(3997, 10573, 'ten thousand five hundred seventy-three'),\n(3998, 46517, 'forty-six thousand five hundred seventeen'),\n(3999, 67769, 'sixty-seven thousand seven hundred sixty-nine'),\n(4000, 67841, 'sixty-seven thousand eight hundred forty-one'),\n(4001, 13891, 'thirteen thousand eight hundred ninety-one'),\n(4002, 50116, 'fifty thousand one hundred sixteen'),\n(4003, 79805, 'seventy-nine thousand eight hundred five'),\n(4004, 18204, 'eighteen thousand two hundred four'),\n(4005, 42378, 'forty-two thousand three hundred seventy-eight'),\n(4006, 23498, 'twenty-three thousand four hundred ninety-eight'),\n(4007, 87466, 'eighty-seven thousand four hundred sixty-six'),\n(4008, 65485, 'sixty-five thousand four hundred eighty-five'),\n(4009, 58163, 'fifty-eight thousand one hundred sixty-three'),\n(4010, 11691, 'eleven thousand six hundred ninety-one'),\n(4011, 12158, 'twelve thousand one hundred fifty-eight'),\n(4012, 82826, 'eighty-two thousand eight hundred twenty-six'),\n(4013, 27264, 'twenty-seven thousand two hundred sixty-four'),\n(4014, 28716, 'twenty-eight thousand seven hundred sixteen'),\n(4015, 56473, 'fifty-six thousand four hundred seventy-three'),\n(4016, 89156, 'eighty-nine thousand one hundred fifty-six'),\n(4017, 22711, 'twenty-two thousand seven hundred eleven'),\n(4018, 55770, 'fifty-five thousand seven hundred seventy'),\n(4019, 95322, 'ninety-five thousand three hundred twenty-two'),\n(4020, 87100, 'eighty-seven thousand one hundred'),\n(4021, 6281, 'six thousand two hundred eighty-one'),\n(4022, 78620, 'seventy-eight thousand six hundred twenty'),\n(4023, 42110, 'forty-two thousand one hundred ten'),\n(4024, 17579, 'seventeen thousand five hundred seventy-nine'),\n(4025, 5873, 'five thousand eight hundred seventy-three'),\n(4026, 56565, 'fifty-six thousand five hundred sixty-five'),\n(4027, 48526, 'forty-eight thousand five hundred twenty-six'),\n(4028, 10780, 'ten thousand seven hundred eighty'),\n(4029, 97192, 'ninety-seven thousand one hundred ninety-two'),\n(4030, 46551, 'forty-six thousand five hundred fifty-one'),\n(4031, 91319, 'ninety-one thousand three hundred nineteen'),\n(4032, 72702, 'seventy-two thousand seven hundred two'),\n(4033, 18348, 'eighteen thousand three hundred forty-eight'),\n(4034, 52538, 'fifty-two thousand five hundred thirty-eight'),\n(4035, 3279, 'three thousand two hundred seventy-nine'),\n(4036, 19798, 'nineteen thousand seven hundred ninety-eight'),\n(4037, 95655, 'ninety-five thousand six hundred fifty-five'),\n(4038, 56546, 'fifty-six thousand five hundred forty-six'),\n(4039, 90290, 'ninety thousand two hundred ninety'),\n(4040, 18337, 'eighteen thousand three hundred thirty-seven'),\n(4041, 17331, 'seventeen thousand three hundred thirty-one'),\n(4042, 68901, 'sixty-eight thousand nine hundred one'),\n(4043, 5405, 'five thousand four hundred five'),\n(4044, 37699, 'thirty-seven thousand six hundred ninety-nine'),\n(4045, 71749, 'seventy-one thousand seven hundred forty-nine'),\n(4046, 58436, 'fifty-eight thousand four hundred thirty-six'),\n(4047, 46642, 'forty-six thousand six hundred forty-two'),\n(4048, 61738, 'sixty-one thousand seven hundred thirty-eight'),\n(4049, 42610, 'forty-two thousand six hundred ten'),\n(4050, 90581, 'ninety thousand five hundred eighty-one'),\n(4051, 10680, 'ten thousand six hundred eighty'),\n(4052, 90251, 'ninety thousand two hundred fifty-one'),\n(4053, 47153, 'forty-seven thousand one hundred fifty-three'),\n(4054, 39923, 'thirty-nine thousand nine hundred twenty-three'),\n(4055, 11893, 'eleven thousand eight hundred ninety-three'),\n(4056, 50665, 'fifty thousand six hundred sixty-five'),\n(4057, 11104, 'eleven thousand one hundred four'),\n(4058, 79874, 'seventy-nine thousand eight hundred seventy-four'),\n(4059, 4094, 'four thousand ninety-four'),\n(4060, 38552, 'thirty-eight thousand five hundred fifty-two'),\n(4061, 54111, 'fifty-four thousand one hundred eleven'),\n(4062, 22374, 'twenty-two thousand three hundred seventy-four'),\n(4063, 60384, 'sixty thousand three hundred eighty-four'),\n(4064, 39523, 'thirty-nine thousand five hundred twenty-three'),\n(4065, 67745, 'sixty-seven thousand seven hundred forty-five'),\n(4066, 80339, 'eighty thousand three hundred thirty-nine'),\n(4067, 9518, 'nine thousand five hundred eighteen'),\n(4068, 51432, 'fifty-one thousand four hundred thirty-two'),\n(4069, 40099, 'forty thousand ninety-nine'),\n(4070, 87356, 'eighty-seven thousand three hundred fifty-six'),\n(4071, 53766, 'fifty-three thousand seven hundred sixty-six'),\n(4072, 2507, 'two thousand five hundred seven'),\n(4073, 66416, 'sixty-six thousand four hundred sixteen'),\n(4074, 51181, 'fifty-one thousand one hundred eighty-one'),\n(4075, 64977, 'sixty-four thousand nine hundred seventy-seven'),\n(4076, 56522, 'fifty-six thousand five hundred twenty-two'),\n(4077, 31144, 'thirty-one thousand one hundred forty-four'),\n(4078, 61935, 'sixty-one thousand nine hundred thirty-five'),\n(4079, 10340, 'ten thousand three hundred forty'),\n(4080, 29470, 'twenty-nine thousand four hundred seventy'),\n(4081, 78829, 'seventy-eight thousand eight hundred twenty-nine'),\n(4082, 98781, 'ninety-eight thousand seven hundred eighty-one'),\n(4083, 31055, 'thirty-one thousand fifty-five'),\n(4084, 7417, 'seven thousand four hundred seventeen'),\n(4085, 79189, 'seventy-nine thousand one hundred eighty-nine'),\n(4086, 65370, 'sixty-five thousand three hundred seventy'),\n(4087, 96578, 'ninety-six thousand five hundred seventy-eight'),\n(4088, 97408, 'ninety-seven thousand four hundred eight'),\n(4089, 90722, 'ninety thousand seven hundred twenty-two'),\n(4090, 22255, 'twenty-two thousand two hundred fifty-five'),\n(4091, 48402, 'forty-eight thousand four hundred two'),\n(4092, 35261, 'thirty-five thousand two hundred sixty-one'),\n(4093, 99676, 'ninety-nine thousand six hundred seventy-six'),\n(4094, 75546, 'seventy-five thousand five hundred forty-six'),\n(4095, 87220, 'eighty-seven thousand two hundred twenty'),\n(4096, 54875, 'fifty-four thousand eight hundred seventy-five'),\n(4097, 39578, 'thirty-nine thousand five hundred seventy-eight'),\n(4098, 92443, 'ninety-two thousand four hundred forty-three'),\n(4099, 50914, 'fifty thousand nine hundred fourteen'),\n(4100, 13199, 'thirteen thousand one hundred ninety-nine'),\n(4101, 80974, 'eighty thousand nine hundred seventy-four'),\n(4102, 27734, 'twenty-seven thousand seven hundred thirty-four'),\n(4103, 621, 'six hundred twenty-one'),\n(4104, 82337, 'eighty-two thousand three hundred thirty-seven'),\n(4105, 59507, 'fifty-nine thousand five hundred seven'),\n(4106, 48954, 'forty-eight thousand nine hundred fifty-four'),\n(4107, 3461, 'three thousand four hundred sixty-one'),\n(4108, 97764, 'ninety-seven thousand seven hundred sixty-four'),\n(4109, 58530, 'fifty-eight thousand five hundred thirty'),\n(4110, 38254, 'thirty-eight thousand two hundred fifty-four'),\n(4111, 47627, 'forty-seven thousand six hundred twenty-seven'),\n(4112, 1144, 'one thousand one hundred forty-four'),\n(4113, 57982, 'fifty-seven thousand nine hundred eighty-two'),\n(4114, 12045, 'twelve thousand forty-five'),\n(4115, 73737, 'seventy-three thousand seven hundred thirty-seven'),\n(4116, 1705, 'one thousand seven hundred five'),\n(4117, 44831, 'forty-four thousand eight hundred thirty-one'),\n(4118, 10526, 'ten thousand five hundred twenty-six'),\n(4119, 67233, 'sixty-seven thousand two hundred thirty-three'),\n(4120, 86347, 'eighty-six thousand three hundred forty-seven'),\n(4121, 56915, 'fifty-six thousand nine hundred fifteen'),\n(4122, 12764, 'twelve thousand seven hundred sixty-four'),\n(4123, 1199, 'one thousand one hundred ninety-nine'),\n(4124, 17277, 'seventeen thousand two hundred seventy-seven'),\n(4125, 45789, 'forty-five thousand seven hundred eighty-nine'),\n(4126, 93842, 'ninety-three thousand eight hundred forty-two'),\n(4127, 68211, 'sixty-eight thousand two hundred eleven'),\n(4128, 71114, 'seventy-one thousand one hundred fourteen'),\n(4129, 71842, 'seventy-one thousand eight hundred forty-two'),\n(4130, 79355, 'seventy-nine thousand three hundred fifty-five'),\n(4131, 26021, 'twenty-six thousand twenty-one'),\n(4132, 534, 'five hundred thirty-four'),\n(4133, 91055, 'ninety-one thousand fifty-five'),\n(4134, 25406, 'twenty-five thousand four hundred six'),\n(4135, 83441, 'eighty-three thousand four hundred forty-one'),\n(4136, 85622, 'eighty-five thousand six hundred twenty-two'),\n(4137, 22765, 'twenty-two thousand seven hundred sixty-five'),\n(4138, 82509, 'eighty-two thousand five hundred nine'),\n(4139, 60793, 'sixty thousand seven hundred ninety-three'),\n(4140, 67859, 'sixty-seven thousand eight hundred fifty-nine'),\n(4141, 28247, 'twenty-eight thousand two hundred forty-seven'),\n(4142, 38438, 'thirty-eight thousand four hundred thirty-eight'),\n(4143, 39253, 'thirty-nine thousand two hundred fifty-three'),\n(4144, 59683, 'fifty-nine thousand six hundred eighty-three'),\n(4145, 70618, 'seventy thousand six hundred eighteen'),\n(4146, 70076, 'seventy thousand seventy-six'),\n(4147, 28746, 'twenty-eight thousand seven hundred forty-six'),\n(4148, 98045, 'ninety-eight thousand forty-five'),\n(4149, 44064, 'forty-four thousand sixty-four'),\n(4150, 64983, 'sixty-four thousand nine hundred eighty-three'),\n(4151, 19396, 'nineteen thousand three hundred ninety-six'),\n(4152, 96122, 'ninety-six thousand one hundred twenty-two'),\n(4153, 48803, 'forty-eight thousand eight hundred three'),\n(4154, 55604, 'fifty-five thousand six hundred four'),\n(4155, 20081, 'twenty thousand eighty-one'),\n(4156, 69433, 'sixty-nine thousand four hundred thirty-three'),\n(4157, 16188, 'sixteen thousand one hundred eighty-eight'),\n(4158, 22864, 'twenty-two thousand eight hundred sixty-four'),\n(4159, 11513, 'eleven thousand five hundred thirteen'),\n(4160, 47654, 'forty-seven thousand six hundred fifty-four'),\n(4161, 94904, 'ninety-four thousand nine hundred four'),\n(4162, 63606, 'sixty-three thousand six hundred six'),\n(4163, 75012, 'seventy-five thousand twelve'),\n(4164, 99980, 'ninety-nine thousand nine hundred eighty'),\n(4165, 50010, 'fifty thousand ten'),\n(4166, 63239, 'sixty-three thousand two hundred thirty-nine'),\n(4167, 46264, 'forty-six thousand two hundred sixty-four'),\n(4168, 3008, 'three thousand eight'),\n(4169, 73017, 'seventy-three thousand seventeen'),\n(4170, 80318, 'eighty thousand three hundred eighteen'),\n(4171, 88927, 'eighty-eight thousand nine hundred twenty-seven'),\n(4172, 81274, 'eighty-one thousand two hundred seventy-four'),\n(4173, 2042, 'two thousand forty-two'),\n(4174, 64208, 'sixty-four thousand two hundred eight'),\n(4175, 68960, 'sixty-eight thousand nine hundred sixty'),\n(4176, 35762, 'thirty-five thousand seven hundred sixty-two'),\n(4177, 34565, 'thirty-four thousand five hundred sixty-five'),\n(4178, 25206, 'twenty-five thousand two hundred six'),\n(4179, 88983, 'eighty-eight thousand nine hundred eighty-three'),\n(4180, 1561, 'one thousand five hundred sixty-one'),\n(4181, 78055, 'seventy-eight thousand fifty-five'),\n(4182, 15211, 'fifteen thousand two hundred eleven'),\n(4183, 6521, 'six thousand five hundred twenty-one'),\n(4184, 90252, 'ninety thousand two hundred fifty-two'),\n(4185, 36148, 'thirty-six thousand one hundred forty-eight'),\n(4186, 25154, 'twenty-five thousand one hundred fifty-four'),\n(4187, 26225, 'twenty-six thousand two hundred twenty-five'),\n(4188, 29731, 'twenty-nine thousand seven hundred thirty-one'),\n(4189, 53019, 'fifty-three thousand nineteen'),\n(4190, 63655, 'sixty-three thousand six hundred fifty-five'),\n(4191, 98432, 'ninety-eight thousand four hundred thirty-two'),\n(4192, 35425, 'thirty-five thousand four hundred twenty-five'),\n(4193, 76458, 'seventy-six thousand four hundred fifty-eight'),\n(4194, 23698, 'twenty-three thousand six hundred ninety-eight'),\n(4195, 17217, 'seventeen thousand two hundred seventeen'),\n(4196, 47301, 'forty-seven thousand three hundred one'),\n(4197, 27341, 'twenty-seven thousand three hundred forty-one'),\n(4198, 75533, 'seventy-five thousand five hundred thirty-three'),\n(4199, 12303, 'twelve thousand three hundred three'),\n(4200, 24176, 'twenty-four thousand one hundred seventy-six'),\n(4201, 21438, 'twenty-one thousand four hundred thirty-eight'),\n(4202, 21970, 'twenty-one thousand nine hundred seventy'),\n(4203, 59033, 'fifty-nine thousand thirty-three'),\n(4204, 46814, 'forty-six thousand eight hundred fourteen'),\n(4205, 38981, 'thirty-eight thousand nine hundred eighty-one'),\n(4206, 27904, 'twenty-seven thousand nine hundred four'),\n(4207, 24136, 'twenty-four thousand one hundred thirty-six'),\n(4208, 70749, 'seventy thousand seven hundred forty-nine'),\n(4209, 45423, 'forty-five thousand four hundred twenty-three'),\n(4210, 24329, 'twenty-four thousand three hundred twenty-nine'),\n(4211, 50187, 'fifty thousand one hundred eighty-seven'),\n(4212, 40052, 'forty thousand fifty-two'),\n(4213, 42353, 'forty-two thousand three hundred fifty-three'),\n(4214, 15519, 'fifteen thousand five hundred nineteen'),\n(4215, 56068, 'fifty-six thousand sixty-eight'),\n(4216, 62342, 'sixty-two thousand three hundred forty-two'),\n(4217, 12713, 'twelve thousand seven hundred thirteen'),\n(4218, 45393, 'forty-five thousand three hundred ninety-three'),\n(4219, 58954, 'fifty-eight thousand nine hundred fifty-four'),\n(4220, 75288, 'seventy-five thousand two hundred eighty-eight'),\n(4221, 17860, 'seventeen thousand eight hundred sixty'),\n(4222, 81471, 'eighty-one thousand four hundred seventy-one'),\n(4223, 77160, 'seventy-seven thousand one hundred sixty'),\n(4224, 79079, 'seventy-nine thousand seventy-nine'),\n(4225, 12010, 'twelve thousand ten'),\n(4226, 80815, 'eighty thousand eight hundred fifteen'),\n(4227, 90813, 'ninety thousand eight hundred thirteen'),\n(4228, 88816, 'eighty-eight thousand eight hundred sixteen'),\n(4229, 98715, 'ninety-eight thousand seven hundred fifteen'),\n(4230, 21600, 'twenty-one thousand six hundred'),\n(4231, 15447, 'fifteen thousand four hundred forty-seven'),\n(4232, 88291, 'eighty-eight thousand two hundred ninety-one'),\n(4233, 72622, 'seventy-two thousand six hundred twenty-two'),\n(4234, 12937, 'twelve thousand nine hundred thirty-seven'),\n(4235, 56112, 'fifty-six thousand one hundred twelve'),\n(4236, 54464, 'fifty-four thousand four hundred sixty-four'),\n(4237, 53441, 'fifty-three thousand four hundred forty-one'),\n(4238, 78597, 'seventy-eight thousand five hundred ninety-seven'),\n(4239, 36983, 'thirty-six thousand nine hundred eighty-three'),\n(4240, 2498, 'two thousand four hundred ninety-eight'),\n(4241, 9398, 'nine thousand three hundred ninety-eight'),\n(4242, 27954, 'twenty-seven thousand nine hundred fifty-four'),\n(4243, 43254, 'forty-three thousand two hundred fifty-four'),\n(4244, 27133, 'twenty-seven thousand one hundred thirty-three'),\n(4245, 11405, 'eleven thousand four hundred five'),\n(4246, 90710, 'ninety thousand seven hundred ten'),\n(4247, 65269, 'sixty-five thousand two hundred sixty-nine'),\n(4248, 65463, 'sixty-five thousand four hundred sixty-three'),\n(4249, 20022, 'twenty thousand twenty-two'),\n(4250, 57930, 'fifty-seven thousand nine hundred thirty'),\n(4251, 84894, 'eighty-four thousand eight hundred ninety-four'),\n(4252, 6773, 'six thousand seven hundred seventy-three'),\n(4253, 47603, 'forty-seven thousand six hundred three'),\n(4254, 73149, 'seventy-three thousand one hundred forty-nine'),\n(4255, 56350, 'fifty-six thousand three hundred fifty'),\n(4256, 31678, 'thirty-one thousand six hundred seventy-eight'),\n(4257, 36192, 'thirty-six thousand one hundred ninety-two'),\n(4258, 88732, 'eighty-eight thousand seven hundred thirty-two'),\n(4259, 78366, 'seventy-eight thousand three hundred sixty-six'),\n(4260, 44574, 'forty-four thousand five hundred seventy-four'),\n(4261, 44046, 'forty-four thousand forty-six'),\n(4262, 56665, 'fifty-six thousand six hundred sixty-five'),\n(4263, 24447, 'twenty-four thousand four hundred forty-seven'),\n(4264, 17583, 'seventeen thousand five hundred eighty-three'),\n(4265, 77045, 'seventy-seven thousand forty-five'),\n(4266, 39551, 'thirty-nine thousand five hundred fifty-one'),\n(4267, 27270, 'twenty-seven thousand two hundred seventy'),\n(4268, 10895, 'ten thousand eight hundred ninety-five'),\n(4269, 14927, 'fourteen thousand nine hundred twenty-seven'),\n(4270, 9843, 'nine thousand eight hundred forty-three'),\n(4271, 69052, 'sixty-nine thousand fifty-two'),\n(4272, 40042, 'forty thousand forty-two'),\n(4273, 26035, 'twenty-six thousand thirty-five'),\n(4274, 45101, 'forty-five thousand one hundred one'),\n(4275, 87634, 'eighty-seven thousand six hundred thirty-four'),\n(4276, 26431, 'twenty-six thousand four hundred thirty-one'),\n(4277, 95501, 'ninety-five thousand five hundred one'),\n(4278, 43019, 'forty-three thousand nineteen'),\n(4279, 13232, 'thirteen thousand two hundred thirty-two'),\n(4280, 73359, 'seventy-three thousand three hundred fifty-nine'),\n(4281, 2032, 'two thousand thirty-two'),\n(4282, 53445, 'fifty-three thousand four hundred forty-five'),\n(4283, 3762, 'three thousand seven hundred sixty-two'),\n(4284, 54323, 'fifty-four thousand three hundred twenty-three'),\n(4285, 26353, 'twenty-six thousand three hundred fifty-three'),\n(4286, 23823, 'twenty-three thousand eight hundred twenty-three'),\n(4287, 10107, 'ten thousand one hundred seven'),\n(4288, 38757, 'thirty-eight thousand seven hundred fifty-seven'),\n(4289, 72327, 'seventy-two thousand three hundred twenty-seven'),\n(4290, 53587, 'fifty-three thousand five hundred eighty-seven'),\n(4291, 89088, 'eighty-nine thousand eighty-eight'),\n(4292, 86628, 'eighty-six thousand six hundred twenty-eight'),\n(4293, 10958, 'ten thousand nine hundred fifty-eight'),\n(4294, 58652, 'fifty-eight thousand six hundred fifty-two'),\n(4295, 58097, 'fifty-eight thousand ninety-seven'),\n(4296, 4741, 'four thousand seven hundred forty-one'),\n(4297, 97362, 'ninety-seven thousand three hundred sixty-two'),\n(4298, 26291, 'twenty-six thousand two hundred ninety-one'),\n(4299, 90689, 'ninety thousand six hundred eighty-nine'),\n(4300, 21306, 'twenty-one thousand three hundred six'),\n(4301, 12779, 'twelve thousand seven hundred seventy-nine'),\n(4302, 43906, 'forty-three thousand nine hundred six'),\n(4303, 28345, 'twenty-eight thousand three hundred forty-five'),\n(4304, 3431, 'three thousand four hundred thirty-one'),\n(4305, 76962, 'seventy-six thousand nine hundred sixty-two'),\n(4306, 22743, 'twenty-two thousand seven hundred forty-three'),\n(4307, 76905, 'seventy-six thousand nine hundred five'),\n(4308, 10903, 'ten thousand nine hundred three'),\n(4309, 28471, 'twenty-eight thousand four hundred seventy-one'),\n(4310, 44109, 'forty-four thousand one hundred nine'),\n(4311, 61065, 'sixty-one thousand sixty-five'),\n(4312, 5809, 'five thousand eight hundred nine'),\n(4313, 81563, 'eighty-one thousand five hundred sixty-three'),\n(4314, 11876, 'eleven thousand eight hundred seventy-six'),\n(4315, 48951, 'forty-eight thousand nine hundred fifty-one'),\n(4316, 36415, 'thirty-six thousand four hundred fifteen'),\n(4317, 88986, 'eighty-eight thousand nine hundred eighty-six'),\n(4318, 28960, 'twenty-eight thousand nine hundred sixty'),\n(4319, 98521, 'ninety-eight thousand five hundred twenty-one'),\n(4320, 37806, 'thirty-seven thousand eight hundred six'),\n(4321, 9153, 'nine thousand one hundred fifty-three'),\n(4322, 96439, 'ninety-six thousand four hundred thirty-nine'),\n(4323, 351, 'three hundred fifty-one'),\n(4324, 38983, 'thirty-eight thousand nine hundred eighty-three'),\n(4325, 96646, 'ninety-six thousand six hundred forty-six'),\n(4326, 14385, 'fourteen thousand three hundred eighty-five'),\n(4327, 40062, 'forty thousand sixty-two'),\n(4328, 97905, 'ninety-seven thousand nine hundred five'),\n(4329, 91239, 'ninety-one thousand two hundred thirty-nine'),\n(4330, 91917, 'ninety-one thousand nine hundred seventeen'),\n(4331, 37756, 'thirty-seven thousand seven hundred fifty-six'),\n(4332, 59951, 'fifty-nine thousand nine hundred fifty-one'),\n(4333, 23108, 'twenty-three thousand one hundred eight'),\n(4334, 75257, 'seventy-five thousand two hundred fifty-seven'),\n(4335, 59810, 'fifty-nine thousand eight hundred ten'),\n(4336, 49996, 'forty-nine thousand nine hundred ninety-six'),\n(4337, 39751, 'thirty-nine thousand seven hundred fifty-one'),\n(4338, 87298, 'eighty-seven thousand two hundred ninety-eight'),\n(4339, 88339, 'eighty-eight thousand three hundred thirty-nine'),\n(4340, 43114, 'forty-three thousand one hundred fourteen'),\n(4341, 22084, 'twenty-two thousand eighty-four'),\n(4342, 17302, 'seventeen thousand three hundred two'),\n(4343, 99188, 'ninety-nine thousand one hundred eighty-eight'),\n(4344, 85310, 'eighty-five thousand three hundred ten'),\n(4345, 77776, 'seventy-seven thousand seven hundred seventy-six'),\n(4346, 46995, 'forty-six thousand nine hundred ninety-five'),\n(4347, 38237, 'thirty-eight thousand two hundred thirty-seven'),\n(4348, 75675, 'seventy-five thousand six hundred seventy-five'),\n(4349, 43642, 'forty-three thousand six hundred forty-two'),\n(4350, 19739, 'nineteen thousand seven hundred thirty-nine'),\n(4351, 4855, 'four thousand eight hundred fifty-five'),\n(4352, 46928, 'forty-six thousand nine hundred twenty-eight'),\n(4353, 76727, 'seventy-six thousand seven hundred twenty-seven'),\n(4354, 56960, 'fifty-six thousand nine hundred sixty'),\n(4355, 84758, 'eighty-four thousand seven hundred fifty-eight'),\n(4356, 5461, 'five thousand four hundred sixty-one'),\n(4357, 75425, 'seventy-five thousand four hundred twenty-five'),\n(4358, 79900, 'seventy-nine thousand nine hundred'),\n(4359, 49647, 'forty-nine thousand six hundred forty-seven'),\n(4360, 61141, 'sixty-one thousand one hundred forty-one'),\n(4361, 59243, 'fifty-nine thousand two hundred forty-three'),\n(4362, 51024, 'fifty-one thousand twenty-four'),\n(4363, 84241, 'eighty-four thousand two hundred forty-one'),\n(4364, 73234, 'seventy-three thousand two hundred thirty-four'),\n(4365, 95919, 'ninety-five thousand nine hundred nineteen'),\n(4366, 66637, 'sixty-six thousand six hundred thirty-seven'),\n(4367, 21917, 'twenty-one thousand nine hundred seventeen'),\n(4368, 40846, 'forty thousand eight hundred forty-six'),\n(4369, 34424, 'thirty-four thousand four hundred twenty-four'),\n(4370, 10089, 'ten thousand eighty-nine'),\n(4371, 55554, 'fifty-five thousand five hundred fifty-four'),\n(4372, 36478, 'thirty-six thousand four hundred seventy-eight'),\n(4373, 94012, 'ninety-four thousand twelve'),\n(4374, 637, 'six hundred thirty-seven'),\n(4375, 30513, 'thirty thousand five hundred thirteen'),\n(4376, 33790, 'thirty-three thousand seven hundred ninety'),\n(4377, 8010, 'eight thousand ten'),\n(4378, 72371, 'seventy-two thousand three hundred seventy-one'),\n(4379, 59532, 'fifty-nine thousand five hundred thirty-two'),\n(4380, 38361, 'thirty-eight thousand three hundred sixty-one'),\n(4381, 88203, 'eighty-eight thousand two hundred three'),\n(4382, 39850, 'thirty-nine thousand eight hundred fifty'),\n(4383, 27102, 'twenty-seven thousand one hundred two'),\n(4384, 84757, 'eighty-four thousand seven hundred fifty-seven'),\n(4385, 31547, 'thirty-one thousand five hundred forty-seven'),\n(4386, 80939, 'eighty thousand nine hundred thirty-nine'),\n(4387, 72745, 'seventy-two thousand seven hundred forty-five'),\n(4388, 49325, 'forty-nine thousand three hundred twenty-five'),\n(4389, 63270, 'sixty-three thousand two hundred seventy'),\n(4390, 30207, 'thirty thousand two hundred seven'),\n(4391, 77692, 'seventy-seven thousand six hundred ninety-two'),\n(4392, 92739, 'ninety-two thousand seven hundred thirty-nine'),\n(4393, 99894, 'ninety-nine thousand eight hundred ninety-four'),\n(4394, 88412, 'eighty-eight thousand four hundred twelve'),\n(4395, 38460, 'thirty-eight thousand four hundred sixty'),\n(4396, 50074, 'fifty thousand seventy-four'),\n(4397, 99238, 'ninety-nine thousand two hundred thirty-eight'),\n(4398, 26264, 'twenty-six thousand two hundred sixty-four'),\n(4399, 73237, 'seventy-three thousand two hundred thirty-seven'),\n(4400, 2738, 'two thousand seven hundred thirty-eight'),\n(4401, 9490, 'nine thousand four hundred ninety'),\n(4402, 12569, 'twelve thousand five hundred sixty-nine'),\n(4403, 25453, 'twenty-five thousand four hundred fifty-three'),\n(4404, 36806, 'thirty-six thousand eight hundred six'),\n(4405, 48690, 'forty-eight thousand six hundred ninety'),\n(4406, 82009, 'eighty-two thousand nine'),\n(4407, 48119, 'forty-eight thousand one hundred nineteen'),\n(4408, 70048, 'seventy thousand forty-eight'),\n(4409, 35114, 'thirty-five thousand one hundred fourteen'),\n(4410, 53675, 'fifty-three thousand six hundred seventy-five'),\n(4411, 59782, 'fifty-nine thousand seven hundred eighty-two'),\n(4412, 38477, 'thirty-eight thousand four hundred seventy-seven'),\n(4413, 60429, 'sixty thousand four hundred twenty-nine'),\n(4414, 29701, 'twenty-nine thousand seven hundred one'),\n(4415, 36273, 'thirty-six thousand two hundred seventy-three'),\n(4416, 10241, 'ten thousand two hundred forty-one'),\n(4417, 97422, 'ninety-seven thousand four hundred twenty-two'),\n(4418, 21979, 'twenty-one thousand nine hundred seventy-nine'),\n(4419, 39535, 'thirty-nine thousand five hundred thirty-five'),\n(4420, 90185, 'ninety thousand one hundred eighty-five'),\n(4421, 6554, 'six thousand five hundred fifty-four'),\n(4422, 69223, 'sixty-nine thousand two hundred twenty-three'),\n(4423, 38368, 'thirty-eight thousand three hundred sixty-eight'),\n(4424, 79574, 'seventy-nine thousand five hundred seventy-four'),\n(4425, 6582, 'six thousand five hundred eighty-two'),\n(4426, 35160, 'thirty-five thousand one hundred sixty'),\n(4427, 19450, 'nineteen thousand four hundred fifty'),\n(4428, 26477, 'twenty-six thousand four hundred seventy-seven'),\n(4429, 46417, 'forty-six thousand four hundred seventeen'),\n(4430, 64785, 'sixty-four thousand seven hundred eighty-five'),\n(4431, 37436, 'thirty-seven thousand four hundred thirty-six'),\n(4432, 68095, 'sixty-eight thousand ninety-five'),\n(4433, 90950, 'ninety thousand nine hundred fifty'),\n(4434, 24468, 'twenty-four thousand four hundred sixty-eight'),\n(4435, 10165, 'ten thousand one hundred sixty-five'),\n(4436, 89249, 'eighty-nine thousand two hundred forty-nine'),\n(4437, 52842, 'fifty-two thousand eight hundred forty-two'),\n(4438, 65308, 'sixty-five thousand three hundred eight'),\n(4439, 41228, 'forty-one thousand two hundred twenty-eight'),\n(4440, 86740, 'eighty-six thousand seven hundred forty'),\n(4441, 25030, 'twenty-five thousand thirty'),\n(4442, 96003, 'ninety-six thousand three'),\n(4443, 83718, 'eighty-three thousand seven hundred eighteen'),\n(4444, 9289, 'nine thousand two hundred eighty-nine'),\n(4445, 10192, 'ten thousand one hundred ninety-two'),\n(4446, 60579, 'sixty thousand five hundred seventy-nine'),\n(4447, 18628, 'eighteen thousand six hundred twenty-eight'),\n(4448, 62218, 'sixty-two thousand two hundred eighteen'),\n(4449, 93144, 'ninety-three thousand one hundred forty-four'),\n(4450, 11835, 'eleven thousand eight hundred thirty-five'),\n(4451, 26689, 'twenty-six thousand six hundred eighty-nine'),\n(4452, 33231, 'thirty-three thousand two hundred thirty-one'),\n(4453, 10699, 'ten thousand six hundred ninety-nine'),\n(4454, 95889, 'ninety-five thousand eight hundred eighty-nine'),\n(4455, 48434, 'forty-eight thousand four hundred thirty-four'),\n(4456, 87579, 'eighty-seven thousand five hundred seventy-nine'),\n(4457, 65327, 'sixty-five thousand three hundred twenty-seven'),\n(4458, 98690, 'ninety-eight thousand six hundred ninety'),\n(4459, 48151, 'forty-eight thousand one hundred fifty-one'),\n(4460, 22126, 'twenty-two thousand one hundred twenty-six'),\n(4461, 63437, 'sixty-three thousand four hundred thirty-seven'),\n(4462, 10678, 'ten thousand six hundred seventy-eight'),\n(4463, 15296, 'fifteen thousand two hundred ninety-six'),\n(4464, 82638, 'eighty-two thousand six hundred thirty-eight'),\n(4465, 24493, 'twenty-four thousand four hundred ninety-three'),\n(4466, 82118, 'eighty-two thousand one hundred eighteen'),\n(4467, 4261, 'four thousand two hundred sixty-one'),\n(4468, 57849, 'fifty-seven thousand eight hundred forty-nine'),\n(4469, 61992, 'sixty-one thousand nine hundred ninety-two'),\n(4470, 42803, 'forty-two thousand eight hundred three'),\n(4471, 29108, 'twenty-nine thousand one hundred eight'),\n(4472, 56794, 'fifty-six thousand seven hundred ninety-four'),\n(4473, 18720, 'eighteen thousand seven hundred twenty'),\n(4474, 98395, 'ninety-eight thousand three hundred ninety-five'),\n(4475, 63736, 'sixty-three thousand seven hundred thirty-six'),\n(4476, 70233, 'seventy thousand two hundred thirty-three'),\n(4477, 17035, 'seventeen thousand thirty-five'),\n(4478, 56136, 'fifty-six thousand one hundred thirty-six'),\n(4479, 51772, 'fifty-one thousand seven hundred seventy-two'),\n(4480, 48109, 'forty-eight thousand one hundred nine'),\n(4481, 70008, 'seventy thousand eight'),\n(4482, 8527, 'eight thousand five hundred twenty-seven'),\n(4483, 10841, 'ten thousand eight hundred forty-one'),\n(4484, 85544, 'eighty-five thousand five hundred forty-four'),\n(4485, 54307, 'fifty-four thousand three hundred seven'),\n(4486, 16928, 'sixteen thousand nine hundred twenty-eight'),\n(4487, 59755, 'fifty-nine thousand seven hundred fifty-five'),\n(4488, 21933, 'twenty-one thousand nine hundred thirty-three'),\n(4489, 4583, 'four thousand five hundred eighty-three'),\n(4490, 89739, 'eighty-nine thousand seven hundred thirty-nine'),\n(4491, 99787, 'ninety-nine thousand seven hundred eighty-seven'),\n(4492, 89861, 'eighty-nine thousand eight hundred sixty-one'),\n(4493, 78471, 'seventy-eight thousand four hundred seventy-one'),\n(4494, 23109, 'twenty-three thousand one hundred nine'),\n(4495, 55806, 'fifty-five thousand eight hundred six'),\n(4496, 22721, 'twenty-two thousand seven hundred twenty-one'),\n(4497, 74522, 'seventy-four thousand five hundred twenty-two'),\n(4498, 6563, 'six thousand five hundred sixty-three'),\n(4499, 56428, 'fifty-six thousand four hundred twenty-eight'),\n(4500, 44307, 'forty-four thousand three hundred seven'),\n(4501, 49001, 'forty-nine thousand one'),\n(4502, 40838, 'forty thousand eight hundred thirty-eight'),\n(4503, 21195, 'twenty-one thousand one hundred ninety-five'),\n(4504, 91814, 'ninety-one thousand eight hundred fourteen'),\n(4505, 50396, 'fifty thousand three hundred ninety-six'),\n(4506, 61919, 'sixty-one thousand nine hundred nineteen'),\n(4507, 48342, 'forty-eight thousand three hundred forty-two'),\n(4508, 70753, 'seventy thousand seven hundred fifty-three'),\n(4509, 71693, 'seventy-one thousand six hundred ninety-three'),\n(4510, 74549, 'seventy-four thousand five hundred forty-nine'),\n(4511, 60812, 'sixty thousand eight hundred twelve'),\n(4512, 9859, 'nine thousand eight hundred fifty-nine'),\n(4513, 36854, 'thirty-six thousand eight hundred fifty-four'),\n(4514, 49793, 'forty-nine thousand seven hundred ninety-three'),\n(4515, 75206, 'seventy-five thousand two hundred six'),\n(4516, 78372, 'seventy-eight thousand three hundred seventy-two'),\n(4517, 4951, 'four thousand nine hundred fifty-one'),\n(4518, 5564, 'five thousand five hundred sixty-four'),\n(4519, 7772, 'seven thousand seven hundred seventy-two'),\n(4520, 30489, 'thirty thousand four hundred eighty-nine'),\n(4521, 84057, 'eighty-four thousand fifty-seven'),\n(4522, 79433, 'seventy-nine thousand four hundred thirty-three'),\n(4523, 2373, 'two thousand three hundred seventy-three'),\n(4524, 45496, 'forty-five thousand four hundred ninety-six'),\n(4525, 87313, 'eighty-seven thousand three hundred thirteen'),\n(4526, 42552, 'forty-two thousand five hundred fifty-two'),\n(4527, 8510, 'eight thousand five hundred ten'),\n(4528, 74269, 'seventy-four thousand two hundred sixty-nine'),\n(4529, 54323, 'fifty-four thousand three hundred twenty-three'),\n(4530, 20979, 'twenty thousand nine hundred seventy-nine'),\n(4531, 83057, 'eighty-three thousand fifty-seven'),\n(4532, 95647, 'ninety-five thousand six hundred forty-seven'),\n(4533, 80128, 'eighty thousand one hundred twenty-eight'),\n(4534, 82775, 'eighty-two thousand seven hundred seventy-five'),\n(4535, 19071, 'nineteen thousand seventy-one'),\n(4536, 30344, 'thirty thousand three hundred forty-four'),\n(4537, 69365, 'sixty-nine thousand three hundred sixty-five'),\n(4538, 1011, 'one thousand eleven'),\n(4539, 7474, 'seven thousand four hundred seventy-four'),\n(4540, 69215, 'sixty-nine thousand two hundred fifteen'),\n(4541, 81575, 'eighty-one thousand five hundred seventy-five'),\n(4542, 62393, 'sixty-two thousand three hundred ninety-three'),\n(4543, 70505, 'seventy thousand five hundred five'),\n(4544, 81573, 'eighty-one thousand five hundred seventy-three'),\n(4545, 80358, 'eighty thousand three hundred fifty-eight'),\n(4546, 91336, 'ninety-one thousand three hundred thirty-six'),\n(4547, 76106, 'seventy-six thousand one hundred six'),\n(4548, 38208, 'thirty-eight thousand two hundred eight'),\n(4549, 46026, 'forty-six thousand twenty-six'),\n(4550, 22083, 'twenty-two thousand eighty-three'),\n(4551, 40384, 'forty thousand three hundred eighty-four'),\n(4552, 93542, 'ninety-three thousand five hundred forty-two'),\n(4553, 36433, 'thirty-six thousand four hundred thirty-three'),\n(4554, 70229, 'seventy thousand two hundred twenty-nine'),\n(4555, 59512, 'fifty-nine thousand five hundred twelve'),\n(4556, 26395, 'twenty-six thousand three hundred ninety-five'),\n(4557, 25628, 'twenty-five thousand six hundred twenty-eight'),\n(4558, 98244, 'ninety-eight thousand two hundred forty-four'),\n(4559, 12642, 'twelve thousand six hundred forty-two'),\n(4560, 67710, 'sixty-seven thousand seven hundred ten'),\n(4561, 84543, 'eighty-four thousand five hundred forty-three'),\n(4562, 94985, 'ninety-four thousand nine hundred eighty-five'),\n(4563, 80433, 'eighty thousand four hundred thirty-three'),\n(4564, 47221, 'forty-seven thousand two hundred twenty-one'),\n(4565, 74390, 'seventy-four thousand three hundred ninety'),\n(4566, 66652, 'sixty-six thousand six hundred fifty-two'),\n(4567, 59332, 'fifty-nine thousand three hundred thirty-two'),\n(4568, 62413, 'sixty-two thousand four hundred thirteen'),\n(4569, 68194, 'sixty-eight thousand one hundred ninety-four'),\n(4570, 719, 'seven hundred nineteen'),\n(4571, 41170, 'forty-one thousand one hundred seventy'),\n(4572, 82100, 'eighty-two thousand one hundred'),\n(4573, 89093, 'eighty-nine thousand ninety-three'),\n(4574, 75316, 'seventy-five thousand three hundred sixteen'),\n(4575, 67400, 'sixty-seven thousand four hundred'),\n(4576, 55157, 'fifty-five thousand one hundred fifty-seven'),\n(4577, 60614, 'sixty thousand six hundred fourteen'),\n(4578, 5032, 'five thousand thirty-two'),\n(4579, 56297, 'fifty-six thousand two hundred ninety-seven'),\n(4580, 93783, 'ninety-three thousand seven hundred eighty-three'),\n(4581, 17873, 'seventeen thousand eight hundred seventy-three'),\n(4582, 40278, 'forty thousand two hundred seventy-eight'),\n(4583, 42191, 'forty-two thousand one hundred ninety-one'),\n(4584, 10403, 'ten thousand four hundred three'),\n(4585, 62976, 'sixty-two thousand nine hundred seventy-six'),\n(4586, 48973, 'forty-eight thousand nine hundred seventy-three'),\n(4587, 84179, 'eighty-four thousand one hundred seventy-nine'),\n(4588, 82617, 'eighty-two thousand six hundred seventeen'),\n(4589, 98811, 'ninety-eight thousand eight hundred eleven'),\n(4590, 10810, 'ten thousand eight hundred ten'),\n(4591, 95530, 'ninety-five thousand five hundred thirty'),\n(4592, 60056, 'sixty thousand fifty-six'),\n(4593, 42375, 'forty-two thousand three hundred seventy-five'),\n(4594, 74693, 'seventy-four thousand six hundred ninety-three'),\n(4595, 79545, 'seventy-nine thousand five hundred forty-five'),\n(4596, 34917, 'thirty-four thousand nine hundred seventeen'),\n(4597, 8795, 'eight thousand seven hundred ninety-five'),\n(4598, 69956, 'sixty-nine thousand nine hundred fifty-six'),\n(4599, 15812, 'fifteen thousand eight hundred twelve'),\n(4600, 92571, 'ninety-two thousand five hundred seventy-one'),\n(4601, 23220, 'twenty-three thousand two hundred twenty'),\n(4602, 89679, 'eighty-nine thousand six hundred seventy-nine'),\n(4603, 24818, 'twenty-four thousand eight hundred eighteen'),\n(4604, 67924, 'sixty-seven thousand nine hundred twenty-four'),\n(4605, 99165, 'ninety-nine thousand one hundred sixty-five'),\n(4606, 24311, 'twenty-four thousand three hundred eleven'),\n(4607, 9894, 'nine thousand eight hundred ninety-four'),\n(4608, 63083, 'sixty-three thousand eighty-three'),\n(4609, 92776, 'ninety-two thousand seven hundred seventy-six'),\n(4610, 25999, 'twenty-five thousand nine hundred ninety-nine'),\n(4611, 34720, 'thirty-four thousand seven hundred twenty'),\n(4612, 23372, 'twenty-three thousand three hundred seventy-two'),\n(4613, 62772, 'sixty-two thousand seven hundred seventy-two'),\n(4614, 26046, 'twenty-six thousand forty-six'),\n(4615, 95053, 'ninety-five thousand fifty-three'),\n(4616, 2782, 'two thousand seven hundred eighty-two'),\n(4617, 54566, 'fifty-four thousand five hundred sixty-six'),\n(4618, 42688, 'forty-two thousand six hundred eighty-eight'),\n(4619, 79565, 'seventy-nine thousand five hundred sixty-five'),\n(4620, 54007, 'fifty-four thousand seven'),\n(4621, 90412, 'ninety thousand four hundred twelve'),\n(4622, 58728, 'fifty-eight thousand seven hundred twenty-eight'),\n(4623, 37957, 'thirty-seven thousand nine hundred fifty-seven'),\n(4624, 43202, 'forty-three thousand two hundred two'),\n(4625, 49790, 'forty-nine thousand seven hundred ninety'),\n(4626, 33414, 'thirty-three thousand four hundred fourteen'),\n(4627, 42322, 'forty-two thousand three hundred twenty-two'),\n(4628, 66051, 'sixty-six thousand fifty-one'),\n(4629, 38905, 'thirty-eight thousand nine hundred five'),\n(4630, 48833, 'forty-eight thousand eight hundred thirty-three'),\n(4631, 5917, 'five thousand nine hundred seventeen'),\n(4632, 24691, 'twenty-four thousand six hundred ninety-one'),\n(4633, 1307, 'one thousand three hundred seven'),\n(4634, 81004, 'eighty-one thousand four'),\n(4635, 55384, 'fifty-five thousand three hundred eighty-four'),\n(4636, 8380, 'eight thousand three hundred eighty'),\n(4637, 7495, 'seven thousand four hundred ninety-five'),\n(4638, 1119, 'one thousand one hundred nineteen'),\n(4639, 30853, 'thirty thousand eight hundred fifty-three'),\n(4640, 44294, 'forty-four thousand two hundred ninety-four'),\n(4641, 17223, 'seventeen thousand two hundred twenty-three'),\n(4642, 71350, 'seventy-one thousand three hundred fifty'),\n(4643, 47958, 'forty-seven thousand nine hundred fifty-eight'),\n(4644, 55460, 'fifty-five thousand four hundred sixty'),\n(4645, 16224, 'sixteen thousand two hundred twenty-four'),\n(4646, 7300, 'seven thousand three hundred'),\n(4647, 64606, 'sixty-four thousand six hundred six'),\n(4648, 4906, 'four thousand nine hundred six'),\n(4649, 83154, 'eighty-three thousand one hundred fifty-four'),\n(4650, 29720, 'twenty-nine thousand seven hundred twenty'),\n(4651, 26178, 'twenty-six thousand one hundred seventy-eight'),\n(4652, 67536, 'sixty-seven thousand five hundred thirty-six'),\n(4653, 89097, 'eighty-nine thousand ninety-seven'),\n(4654, 69360, 'sixty-nine thousand three hundred sixty'),\n(4655, 75725, 'seventy-five thousand seven hundred twenty-five'),\n(4656, 31599, 'thirty-one thousand five hundred ninety-nine'),\n(4657, 86746, 'eighty-six thousand seven hundred forty-six'),\n(4658, 8155, 'eight thousand one hundred fifty-five'),\n(4659, 10435, 'ten thousand four hundred thirty-five'),\n(4660, 64746, 'sixty-four thousand seven hundred forty-six'),\n(4661, 88342, 'eighty-eight thousand three hundred forty-two'),\n(4662, 29044, 'twenty-nine thousand forty-four'),\n(4663, 87397, 'eighty-seven thousand three hundred ninety-seven'),\n(4664, 95840, 'ninety-five thousand eight hundred forty'),\n(4665, 10172, 'ten thousand one hundred seventy-two'),\n(4666, 61756, 'sixty-one thousand seven hundred fifty-six'),\n(4667, 58421, 'fifty-eight thousand four hundred twenty-one'),\n(4668, 81554, 'eighty-one thousand five hundred fifty-four'),\n(4669, 45405, 'forty-five thousand four hundred five'),\n(4670, 87799, 'eighty-seven thousand seven hundred ninety-nine'),\n(4671, 896, 'eight hundred ninety-six'),\n(4672, 87029, 'eighty-seven thousand twenty-nine'),\n(4673, 75762, 'seventy-five thousand seven hundred sixty-two'),\n(4674, 66069, 'sixty-six thousand sixty-nine'),\n(4675, 37825, 'thirty-seven thousand eight hundred twenty-five'),\n(4676, 2593, 'two thousand five hundred ninety-three'),\n(4677, 64303, 'sixty-four thousand three hundred three'),\n(4678, 19227, 'nineteen thousand two hundred twenty-seven'),\n(4679, 87241, 'eighty-seven thousand two hundred forty-one'),\n(4680, 73328, 'seventy-three thousand three hundred twenty-eight'),\n(4681, 98135, 'ninety-eight thousand one hundred thirty-five'),\n(4682, 96177, 'ninety-six thousand one hundred seventy-seven'),\n(4683, 50127, 'fifty thousand one hundred twenty-seven'),\n(4684, 13236, 'thirteen thousand two hundred thirty-six'),\n(4685, 78778, 'seventy-eight thousand seven hundred seventy-eight'),\n(4686, 67244, 'sixty-seven thousand two hundred forty-four'),\n(4687, 73829, 'seventy-three thousand eight hundred twenty-nine'),\n(4688, 86310, 'eighty-six thousand three hundred ten'),\n(4689, 86329, 'eighty-six thousand three hundred twenty-nine'),\n(4690, 58308, 'fifty-eight thousand three hundred eight'),\n(4691, 85135, 'eighty-five thousand one hundred thirty-five'),\n(4692, 62129, 'sixty-two thousand one hundred twenty-nine'),\n(4693, 41309, 'forty-one thousand three hundred nine'),\n(4694, 80303, 'eighty thousand three hundred three'),\n(4695, 5007, 'five thousand seven'),\n(4696, 53727, 'fifty-three thousand seven hundred twenty-seven'),\n(4697, 48423, 'forty-eight thousand four hundred twenty-three'),\n(4698, 75795, 'seventy-five thousand seven hundred ninety-five'),\n(4699, 34905, 'thirty-four thousand nine hundred five'),\n(4700, 89553, 'eighty-nine thousand five hundred fifty-three'),\n(4701, 43494, 'forty-three thousand four hundred ninety-four'),\n(4702, 40590, 'forty thousand five hundred ninety'),\n(4703, 85488, 'eighty-five thousand four hundred eighty-eight'),\n(4704, 12019, 'twelve thousand nineteen'),\n(4705, 97967, 'ninety-seven thousand nine hundred sixty-seven'),\n(4706, 82118, 'eighty-two thousand one hundred eighteen'),\n(4707, 64177, 'sixty-four thousand one hundred seventy-seven'),\n(4708, 62453, 'sixty-two thousand four hundred fifty-three'),\n(4709, 7315, 'seven thousand three hundred fifteen'),\n(4710, 45527, 'forty-five thousand five hundred twenty-seven'),\n(4711, 68159, 'sixty-eight thousand one hundred fifty-nine'),\n(4712, 52376, 'fifty-two thousand three hundred seventy-six'),\n(4713, 22528, 'twenty-two thousand five hundred twenty-eight'),\n(4714, 38052, 'thirty-eight thousand fifty-two'),\n(4715, 33765, 'thirty-three thousand seven hundred sixty-five'),\n(4716, 58029, 'fifty-eight thousand twenty-nine'),\n(4717, 69443, 'sixty-nine thousand four hundred forty-three'),\n(4718, 34837, 'thirty-four thousand eight hundred thirty-seven'),\n(4719, 75496, 'seventy-five thousand four hundred ninety-six'),\n(4720, 65687, 'sixty-five thousand six hundred eighty-seven'),\n(4721, 24103, 'twenty-four thousand one hundred three'),\n(4722, 99773, 'ninety-nine thousand seven hundred seventy-three'),\n(4723, 51813, 'fifty-one thousand eight hundred thirteen'),\n(4724, 66608, 'sixty-six thousand six hundred eight'),\n(4725, 30541, 'thirty thousand five hundred forty-one'),\n(4726, 88596, 'eighty-eight thousand five hundred ninety-six'),\n(4727, 90716, 'ninety thousand seven hundred sixteen'),\n(4728, 33156, 'thirty-three thousand one hundred fifty-six'),\n(4729, 31137, 'thirty-one thousand one hundred thirty-seven'),\n(4730, 17821, 'seventeen thousand eight hundred twenty-one'),\n(4731, 79641, 'seventy-nine thousand six hundred forty-one'),\n(4732, 24006, 'twenty-four thousand six'),\n(4733, 96030, 'ninety-six thousand thirty'),\n(4734, 93044, 'ninety-three thousand forty-four'),\n(4735, 31485, 'thirty-one thousand four hundred eighty-five'),\n(4736, 37035, 'thirty-seven thousand thirty-five'),\n(4737, 12731, 'twelve thousand seven hundred thirty-one'),\n(4738, 46662, 'forty-six thousand six hundred sixty-two'),\n(4739, 85320, 'eighty-five thousand three hundred twenty'),\n(4740, 26230, 'twenty-six thousand two hundred thirty'),\n(4741, 48928, 'forty-eight thousand nine hundred twenty-eight'),\n(4742, 42254, 'forty-two thousand two hundred fifty-four'),\n(4743, 74631, 'seventy-four thousand six hundred thirty-one'),\n(4744, 87733, 'eighty-seven thousand seven hundred thirty-three'),\n(4745, 69235, 'sixty-nine thousand two hundred thirty-five'),\n(4746, 94475, 'ninety-four thousand four hundred seventy-five'),\n(4747, 33328, 'thirty-three thousand three hundred twenty-eight'),\n(4748, 65184, 'sixty-five thousand one hundred eighty-four'),\n(4749, 66030, 'sixty-six thousand thirty'),\n(4750, 91364, 'ninety-one thousand three hundred sixty-four'),\n(4751, 57230, 'fifty-seven thousand two hundred thirty'),\n(4752, 26124, 'twenty-six thousand one hundred twenty-four'),\n(4753, 90492, 'ninety thousand four hundred ninety-two'),\n(4754, 37321, 'thirty-seven thousand three hundred twenty-one'),\n(4755, 62352, 'sixty-two thousand three hundred fifty-two'),\n(4756, 56073, 'fifty-six thousand seventy-three'),\n(4757, 15541, 'fifteen thousand five hundred forty-one'),\n(4758, 33714, 'thirty-three thousand seven hundred fourteen'),\n(4759, 32329, 'thirty-two thousand three hundred twenty-nine'),\n(4760, 77725, 'seventy-seven thousand seven hundred twenty-five'),\n(4761, 14444, 'fourteen thousand four hundred forty-four'),\n(4762, 48509, 'forty-eight thousand five hundred nine'),\n(4763, 85064, 'eighty-five thousand sixty-four'),\n(4764, 85186, 'eighty-five thousand one hundred eighty-six'),\n(4765, 1309, 'one thousand three hundred nine'),\n(4766, 12047, 'twelve thousand forty-seven'),\n(4767, 31292, 'thirty-one thousand two hundred ninety-two'),\n(4768, 32860, 'thirty-two thousand eight hundred sixty'),\n(4769, 1770, 'one thousand seven hundred seventy'),\n(4770, 8379, 'eight thousand three hundred seventy-nine'),\n(4771, 16549, 'sixteen thousand five hundred forty-nine'),\n(4772, 51602, 'fifty-one thousand six hundred two'),\n(4773, 9098, 'nine thousand ninety-eight'),\n(4774, 86228, 'eighty-six thousand two hundred twenty-eight'),\n(4775, 56084, 'fifty-six thousand eighty-four'),\n(4776, 67274, 'sixty-seven thousand two hundred seventy-four'),\n(4777, 9238, 'nine thousand two hundred thirty-eight'),\n(4778, 42824, 'forty-two thousand eight hundred twenty-four'),\n(4779, 95073, 'ninety-five thousand seventy-three'),\n(4780, 64989, 'sixty-four thousand nine hundred eighty-nine'),\n(4781, 10437, 'ten thousand four hundred thirty-seven'),\n(4782, 49216, 'forty-nine thousand two hundred sixteen'),\n(4783, 17560, 'seventeen thousand five hundred sixty'),\n(4784, 63865, 'sixty-three thousand eight hundred sixty-five'),\n(4785, 54517, 'fifty-four thousand five hundred seventeen'),\n(4786, 74263, 'seventy-four thousand two hundred sixty-three'),\n(4787, 31483, 'thirty-one thousand four hundred eighty-three'),\n(4788, 38967, 'thirty-eight thousand nine hundred sixty-seven'),\n(4789, 10923, 'ten thousand nine hundred twenty-three'),\n(4790, 47843, 'forty-seven thousand eight hundred forty-three'),\n(4791, 84922, 'eighty-four thousand nine hundred twenty-two'),\n(4792, 64591, 'sixty-four thousand five hundred ninety-one'),\n(4793, 80493, 'eighty thousand four hundred ninety-three'),\n(4794, 24902, 'twenty-four thousand nine hundred two'),\n(4795, 63564, 'sixty-three thousand five hundred sixty-four'),\n(4796, 2881, 'two thousand eight hundred eighty-one'),\n(4797, 13764, 'thirteen thousand seven hundred sixty-four'),\n(4798, 61888, 'sixty-one thousand eight hundred eighty-eight'),\n(4799, 2098, 'two thousand ninety-eight'),\n(4800, 45862, 'forty-five thousand eight hundred sixty-two'),\n(4801, 69082, 'sixty-nine thousand eighty-two'),\n(4802, 66271, 'sixty-six thousand two hundred seventy-one'),\n(4803, 42768, 'forty-two thousand seven hundred sixty-eight'),\n(4804, 35226, 'thirty-five thousand two hundred twenty-six'),\n(4805, 84784, 'eighty-four thousand seven hundred eighty-four'),\n(4806, 74277, 'seventy-four thousand two hundred seventy-seven'),\n(4807, 92202, 'ninety-two thousand two hundred two'),\n(4808, 80464, 'eighty thousand four hundred sixty-four'),\n(4809, 27697, 'twenty-seven thousand six hundred ninety-seven'),\n(4810, 5353, 'five thousand three hundred fifty-three'),\n(4811, 5002, 'five thousand two'),\n(4812, 7687, 'seven thousand six hundred eighty-seven'),\n(4813, 29414, 'twenty-nine thousand four hundred fourteen'),\n(4814, 98274, 'ninety-eight thousand two hundred seventy-four'),\n(4815, 39652, 'thirty-nine thousand six hundred fifty-two'),\n(4816, 74237, 'seventy-four thousand two hundred thirty-seven'),\n(4817, 26761, 'twenty-six thousand seven hundred sixty-one'),\n(4818, 74287, 'seventy-four thousand two hundred eighty-seven'),\n(4819, 84035, 'eighty-four thousand thirty-five'),\n(4820, 82892, 'eighty-two thousand eight hundred ninety-two'),\n(4821, 1117, 'one thousand one hundred seventeen'),\n(4822, 32247, 'thirty-two thousand two hundred forty-seven'),\n(4823, 12453, 'twelve thousand four hundred fifty-three'),\n(4824, 25244, 'twenty-five thousand two hundred forty-four'),\n(4825, 89896, 'eighty-nine thousand eight hundred ninety-six'),\n(4826, 59883, 'fifty-nine thousand eight hundred eighty-three'),\n(4827, 57300, 'fifty-seven thousand three hundred'),\n(4828, 11907, 'eleven thousand nine hundred seven'),\n(4829, 99518, 'ninety-nine thousand five hundred eighteen'),\n(4830, 41801, 'forty-one thousand eight hundred one'),\n(4831, 1239, 'one thousand two hundred thirty-nine'),\n(4832, 47840, 'forty-seven thousand eight hundred forty'),\n(4833, 50098, 'fifty thousand ninety-eight'),\n(4834, 77987, 'seventy-seven thousand nine hundred eighty-seven'),\n(4835, 23982, 'twenty-three thousand nine hundred eighty-two'),\n(4836, 8077, 'eight thousand seventy-seven'),\n(4837, 12074, 'twelve thousand seventy-four'),\n(4838, 15024, 'fifteen thousand twenty-four'),\n(4839, 7685, 'seven thousand six hundred eighty-five'),\n(4840, 88200, 'eighty-eight thousand two hundred'),\n(4841, 23529, 'twenty-three thousand five hundred twenty-nine'),\n(4842, 68902, 'sixty-eight thousand nine hundred two'),\n(4843, 81465, 'eighty-one thousand four hundred sixty-five'),\n(4844, 32099, 'thirty-two thousand ninety-nine'),\n(4845, 73640, 'seventy-three thousand six hundred forty'),\n(4846, 34012, 'thirty-four thousand twelve'),\n(4847, 61675, 'sixty-one thousand six hundred seventy-five'),\n(4848, 7280, 'seven thousand two hundred eighty'),\n(4849, 82103, 'eighty-two thousand one hundred three'),\n(4850, 70799, 'seventy thousand seven hundred ninety-nine'),\n(4851, 50494, 'fifty thousand four hundred ninety-four'),\n(4852, 77560, 'seventy-seven thousand five hundred sixty'),\n(4853, 38742, 'thirty-eight thousand seven hundred forty-two'),\n(4854, 24288, 'twenty-four thousand two hundred eighty-eight'),\n(4855, 69058, 'sixty-nine thousand fifty-eight'),\n(4856, 12216, 'twelve thousand two hundred sixteen'),\n(4857, 99738, 'ninety-nine thousand seven hundred thirty-eight'),\n(4858, 10590, 'ten thousand five hundred ninety'),\n(4859, 15070, 'fifteen thousand seventy'),\n(4860, 90736, 'ninety thousand seven hundred thirty-six'),\n(4861, 56521, 'fifty-six thousand five hundred twenty-one'),\n(4862, 75640, 'seventy-five thousand six hundred forty'),\n(4863, 14212, 'fourteen thousand two hundred twelve'),\n(4864, 81937, 'eighty-one thousand nine hundred thirty-seven'),\n(4865, 99931, 'ninety-nine thousand nine hundred thirty-one'),\n(4866, 64409, 'sixty-four thousand four hundred nine'),\n(4867, 13734, 'thirteen thousand seven hundred thirty-four'),\n(4868, 12079, 'twelve thousand seventy-nine'),\n(4869, 31677, 'thirty-one thousand six hundred seventy-seven'),\n(4870, 95818, 'ninety-five thousand eight hundred eighteen'),\n(4871, 92679, 'ninety-two thousand six hundred seventy-nine'),\n(4872, 80314, 'eighty thousand three hundred fourteen'),\n(4873, 31833, 'thirty-one thousand eight hundred thirty-three'),\n(4874, 14644, 'fourteen thousand six hundred forty-four'),\n(4875, 57882, 'fifty-seven thousand eight hundred eighty-two'),\n(4876, 26362, 'twenty-six thousand three hundred sixty-two'),\n(4877, 29571, 'twenty-nine thousand five hundred seventy-one'),\n(4878, 44941, 'forty-four thousand nine hundred forty-one'),\n(4879, 79555, 'seventy-nine thousand five hundred fifty-five'),\n(4880, 70562, 'seventy thousand five hundred sixty-two'),\n(4881, 99769, 'ninety-nine thousand seven hundred sixty-nine'),\n(4882, 34297, 'thirty-four thousand two hundred ninety-seven'),\n(4883, 59558, 'fifty-nine thousand five hundred fifty-eight'),\n(4884, 17514, 'seventeen thousand five hundred fourteen'),\n(4885, 18280, 'eighteen thousand two hundred eighty'),\n(4886, 15878, 'fifteen thousand eight hundred seventy-eight'),\n(4887, 24067, 'twenty-four thousand sixty-seven'),\n(4888, 88931, 'eighty-eight thousand nine hundred thirty-one'),\n(4889, 5181, 'five thousand one hundred eighty-one'),\n(4890, 55054, 'fifty-five thousand fifty-four'),\n(4891, 34607, 'thirty-four thousand six hundred seven'),\n(4892, 26048, 'twenty-six thousand forty-eight'),\n(4893, 21009, 'twenty-one thousand nine'),\n(4894, 79519, 'seventy-nine thousand five hundred nineteen'),\n(4895, 13919, 'thirteen thousand nine hundred nineteen'),\n(4896, 48879, 'forty-eight thousand eight hundred seventy-nine'),\n(4897, 10839, 'ten thousand eight hundred thirty-nine'),\n(4898, 12357, 'twelve thousand three hundred fifty-seven'),\n(4899, 84730, 'eighty-four thousand seven hundred thirty'),\n(4900, 43492, 'forty-three thousand four hundred ninety-two'),\n(4901, 55627, 'fifty-five thousand six hundred twenty-seven'),\n(4902, 44426, 'forty-four thousand four hundred twenty-six'),\n(4903, 14694, 'fourteen thousand six hundred ninety-four'),\n(4904, 69454, 'sixty-nine thousand four hundred fifty-four'),\n(4905, 88501, 'eighty-eight thousand five hundred one'),\n(4906, 55253, 'fifty-five thousand two hundred fifty-three'),\n(4907, 75291, 'seventy-five thousand two hundred ninety-one'),\n(4908, 95152, 'ninety-five thousand one hundred fifty-two'),\n(4909, 31034, 'thirty-one thousand thirty-four'),\n(4910, 99726, 'ninety-nine thousand seven hundred twenty-six'),\n(4911, 24828, 'twenty-four thousand eight hundred twenty-eight'),\n(4912, 44348, 'forty-four thousand three hundred forty-eight'),\n(4913, 30303, 'thirty thousand three hundred three'),\n(4914, 5326, 'five thousand three hundred twenty-six'),\n(4915, 34050, 'thirty-four thousand fifty'),\n(4916, 6457, 'six thousand four hundred fifty-seven'),\n(4917, 41994, 'forty-one thousand nine hundred ninety-four'),\n(4918, 59071, 'fifty-nine thousand seventy-one'),\n(4919, 23307, 'twenty-three thousand three hundred seven'),\n(4920, 16993, 'sixteen thousand nine hundred ninety-three'),\n(4921, 27380, 'twenty-seven thousand three hundred eighty'),\n(4922, 52711, 'fifty-two thousand seven hundred eleven'),\n(4923, 16664, 'sixteen thousand six hundred sixty-four'),\n(4924, 83573, 'eighty-three thousand five hundred seventy-three'),\n(4925, 61448, 'sixty-one thousand four hundred forty-eight'),\n(4926, 46892, 'forty-six thousand eight hundred ninety-two'),\n(4927, 36083, 'thirty-six thousand eighty-three'),\n(4928, 3469, 'three thousand four hundred sixty-nine'),\n(4929, 5031, 'five thousand thirty-one'),\n(4930, 21199, 'twenty-one thousand one hundred ninety-nine'),\n(4931, 92415, 'ninety-two thousand four hundred fifteen'),\n(4932, 51844, 'fifty-one thousand eight hundred forty-four'),\n(4933, 24551, 'twenty-four thousand five hundred fifty-one'),\n(4934, 81455, 'eighty-one thousand four hundred fifty-five'),\n(4935, 96000, 'ninety-six thousand'),\n(4936, 71240, 'seventy-one thousand two hundred forty'),\n(4937, 18378, 'eighteen thousand three hundred seventy-eight'),\n(4938, 77605, 'seventy-seven thousand six hundred five'),\n(4939, 49959, 'forty-nine thousand nine hundred fifty-nine'),\n(4940, 63338, 'sixty-three thousand three hundred thirty-eight'),\n(4941, 44667, 'forty-four thousand six hundred sixty-seven'),\n(4942, 80826, 'eighty thousand eight hundred twenty-six'),\n(4943, 40813, 'forty thousand eight hundred thirteen'),\n(4944, 70472, 'seventy thousand four hundred seventy-two'),\n(4945, 58210, 'fifty-eight thousand two hundred ten'),\n(4946, 39310, 'thirty-nine thousand three hundred ten'),\n(4947, 51746, 'fifty-one thousand seven hundred forty-six'),\n(4948, 85335, 'eighty-five thousand three hundred thirty-five'),\n(4949, 77283, 'seventy-seven thousand two hundred eighty-three'),\n(4950, 84380, 'eighty-four thousand three hundred eighty'),\n(4951, 50945, 'fifty thousand nine hundred forty-five'),\n(4952, 32624, 'thirty-two thousand six hundred twenty-four'),\n(4953, 37367, 'thirty-seven thousand three hundred sixty-seven'),\n(4954, 34802, 'thirty-four thousand eight hundred two'),\n(4955, 94202, 'ninety-four thousand two hundred two'),\n(4956, 57492, 'fifty-seven thousand four hundred ninety-two'),\n(4957, 76334, 'seventy-six thousand three hundred thirty-four'),\n(4958, 50928, 'fifty thousand nine hundred twenty-eight'),\n(4959, 43286, 'forty-three thousand two hundred eighty-six'),\n(4960, 45969, 'forty-five thousand nine hundred sixty-nine'),\n(4961, 58281, 'fifty-eight thousand two hundred eighty-one'),\n(4962, 73053, 'seventy-three thousand fifty-three'),\n(4963, 76339, 'seventy-six thousand three hundred thirty-nine'),\n(4964, 99403, 'ninety-nine thousand four hundred three'),\n(4965, 74862, 'seventy-four thousand eight hundred sixty-two'),\n(4966, 33539, 'thirty-three thousand five hundred thirty-nine'),\n(4967, 33275, 'thirty-three thousand two hundred seventy-five'),\n(4968, 91223, 'ninety-one thousand two hundred twenty-three'),\n(4969, 59855, 'fifty-nine thousand eight hundred fifty-five'),\n(4970, 78539, 'seventy-eight thousand five hundred thirty-nine'),\n(4971, 20838, 'twenty thousand eight hundred thirty-eight'),\n(4972, 96413, 'ninety-six thousand four hundred thirteen'),\n(4973, 41297, 'forty-one thousand two hundred ninety-seven'),\n(4974, 97134, 'ninety-seven thousand one hundred thirty-four'),\n(4975, 33788, 'thirty-three thousand seven hundred eighty-eight'),\n(4976, 18351, 'eighteen thousand three hundred fifty-one'),\n(4977, 45544, 'forty-five thousand five hundred forty-four'),\n(4978, 95782, 'ninety-five thousand seven hundred eighty-two'),\n(4979, 205, 'two hundred five'),\n(4980, 37846, 'thirty-seven thousand eight hundred forty-six'),\n(4981, 31315, 'thirty-one thousand three hundred fifteen'),\n(4982, 84818, 'eighty-four thousand eight hundred eighteen'),\n(4983, 3995, 'three thousand nine hundred ninety-five'),\n(4984, 73963, 'seventy-three thousand nine hundred sixty-three'),\n(4985, 26633, 'twenty-six thousand six hundred thirty-three'),\n(4986, 19891, 'nineteen thousand eight hundred ninety-one'),\n(4987, 49856, 'forty-nine thousand eight hundred fifty-six'),\n(4988, 69721, 'sixty-nine thousand seven hundred twenty-one'),\n(4989, 43404, 'forty-three thousand four hundred four'),\n(4990, 89304, 'eighty-nine thousand three hundred four'),\n(4991, 21843, 'twenty-one thousand eight hundred forty-three'),\n(4992, 59798, 'fifty-nine thousand seven hundred ninety-eight'),\n(4993, 46883, 'forty-six thousand eight hundred eighty-three'),\n(4994, 58019, 'fifty-eight thousand nineteen'),\n(4995, 12747, 'twelve thousand seven hundred forty-seven'),\n(4996, 82912, 'eighty-two thousand nine hundred twelve'),\n(4997, 8586, 'eight thousand five hundred eighty-six'),\n(4998, 6723, 'six thousand seven hundred twenty-three'),\n(4999, 85940, 'eighty-five thousand nine hundred forty'),\n(5000, 66113, 'sixty-six thousand one hundred thirteen'),\n(5001, 24322, 'twenty-four thousand three hundred twenty-two'),\n(5002, 8130, 'eight thousand one hundred thirty'),\n(5003, 95971, 'ninety-five thousand nine hundred seventy-one'),\n(5004, 14644, 'fourteen thousand six hundred forty-four'),\n(5005, 37490, 'thirty-seven thousand four hundred ninety'),\n(5006, 65844, 'sixty-five thousand eight hundred forty-four'),\n(5007, 84700, 'eighty-four thousand seven hundred'),\n(5008, 10621, 'ten thousand six hundred twenty-one'),\n(5009, 80919, 'eighty thousand nine hundred nineteen'),\n(5010, 16642, 'sixteen thousand six hundred forty-two'),\n(5011, 43103, 'forty-three thousand one hundred three'),\n(5012, 25487, 'twenty-five thousand four hundred eighty-seven'),\n(5013, 10485, 'ten thousand four hundred eighty-five'),\n(5014, 56375, 'fifty-six thousand three hundred seventy-five'),\n(5015, 10406, 'ten thousand four hundred six'),\n(5016, 5808, 'five thousand eight hundred eight'),\n(5017, 5514, 'five thousand five hundred fourteen'),\n(5018, 90687, 'ninety thousand six hundred eighty-seven'),\n(5019, 1775, 'one thousand seven hundred seventy-five'),\n(5020, 68369, 'sixty-eight thousand three hundred sixty-nine'),\n(5021, 69277, 'sixty-nine thousand two hundred seventy-seven'),\n(5022, 25740, 'twenty-five thousand seven hundred forty'),\n(5023, 78878, 'seventy-eight thousand eight hundred seventy-eight'),\n(5024, 83454, 'eighty-three thousand four hundred fifty-four'),\n(5025, 84490, 'eighty-four thousand four hundred ninety'),\n(5026, 39202, 'thirty-nine thousand two hundred two'),\n(5027, 53072, 'fifty-three thousand seventy-two'),\n(5028, 824, 'eight hundred twenty-four'),\n(5029, 35709, 'thirty-five thousand seven hundred nine'),\n(5030, 6074, 'six thousand seventy-four'),\n(5031, 2581, 'two thousand five hundred eighty-one'),\n(5032, 24809, 'twenty-four thousand eight hundred nine'),\n(5033, 12970, 'twelve thousand nine hundred seventy'),\n(5034, 79953, 'seventy-nine thousand nine hundred fifty-three'),\n(5035, 42603, 'forty-two thousand six hundred three'),\n(5036, 14562, 'fourteen thousand five hundred sixty-two'),\n(5037, 79746, 'seventy-nine thousand seven hundred forty-six'),\n(5038, 27403, 'twenty-seven thousand four hundred three'),\n(5039, 16608, 'sixteen thousand six hundred eight'),\n(5040, 92994, 'ninety-two thousand nine hundred ninety-four'),\n(5041, 71370, 'seventy-one thousand three hundred seventy'),\n(5042, 62781, 'sixty-two thousand seven hundred eighty-one'),\n(5043, 39164, 'thirty-nine thousand one hundred sixty-four'),\n(5044, 55574, 'fifty-five thousand five hundred seventy-four'),\n(5045, 18066, 'eighteen thousand sixty-six'),\n(5046, 26590, 'twenty-six thousand five hundred ninety'),\n(5047, 22684, 'twenty-two thousand six hundred eighty-four'),\n(5048, 87821, 'eighty-seven thousand eight hundred twenty-one'),\n(5049, 50642, 'fifty thousand six hundred forty-two'),\n(5050, 69741, 'sixty-nine thousand seven hundred forty-one'),\n(5051, 98648, 'ninety-eight thousand six hundred forty-eight'),\n(5052, 99862, 'ninety-nine thousand eight hundred sixty-two'),\n(5053, 58576, 'fifty-eight thousand five hundred seventy-six'),\n(5054, 69126, 'sixty-nine thousand one hundred twenty-six'),\n(5055, 73653, 'seventy-three thousand six hundred fifty-three'),\n(5056, 71722, 'seventy-one thousand seven hundred twenty-two'),\n(5057, 2286, 'two thousand two hundred eighty-six'),\n(5058, 71000, 'seventy-one thousand'),\n(5059, 79784, 'seventy-nine thousand seven hundred eighty-four'),\n(5060, 82345, 'eighty-two thousand three hundred forty-five'),\n(5061, 50878, 'fifty thousand eight hundred seventy-eight'),\n(5062, 55205, 'fifty-five thousand two hundred five'),\n(5063, 60071, 'sixty thousand seventy-one'),\n(5064, 11228, 'eleven thousand two hundred twenty-eight'),\n(5065, 43608, 'forty-three thousand six hundred eight'),\n(5066, 85486, 'eighty-five thousand four hundred eighty-six'),\n(5067, 37168, 'thirty-seven thousand one hundred sixty-eight'),\n(5068, 60688, 'sixty thousand six hundred eighty-eight'),\n(5069, 50678, 'fifty thousand six hundred seventy-eight'),\n(5070, 61226, 'sixty-one thousand two hundred twenty-six'),\n(5071, 38096, 'thirty-eight thousand ninety-six'),\n(5072, 72403, 'seventy-two thousand four hundred three'),\n(5073, 40796, 'forty thousand seven hundred ninety-six'),\n(5074, 60536, 'sixty thousand five hundred thirty-six'),\n(5075, 32704, 'thirty-two thousand seven hundred four'),\n(5076, 82359, 'eighty-two thousand three hundred fifty-nine'),\n(5077, 46989, 'forty-six thousand nine hundred eighty-nine'),\n(5078, 73857, 'seventy-three thousand eight hundred fifty-seven'),\n(5079, 65620, 'sixty-five thousand six hundred twenty'),\n(5080, 13829, 'thirteen thousand eight hundred twenty-nine'),\n(5081, 48515, 'forty-eight thousand five hundred fifteen'),\n(5082, 57684, 'fifty-seven thousand six hundred eighty-four'),\n(5083, 50132, 'fifty thousand one hundred thirty-two'),\n(5084, 41830, 'forty-one thousand eight hundred thirty'),\n(5085, 78551, 'seventy-eight thousand five hundred fifty-one'),\n(5086, 27057, 'twenty-seven thousand fifty-seven'),\n(5087, 21641, 'twenty-one thousand six hundred forty-one'),\n(5088, 90341, 'ninety thousand three hundred forty-one'),\n(5089, 411, 'four hundred eleven'),\n(5090, 50736, 'fifty thousand seven hundred thirty-six'),\n(5091, 85361, 'eighty-five thousand three hundred sixty-one'),\n(5092, 94252, 'ninety-four thousand two hundred fifty-two'),\n(5093, 8800, 'eight thousand eight hundred'),\n(5094, 70026, 'seventy thousand twenty-six'),\n(5095, 41483, 'forty-one thousand four hundred eighty-three'),\n(5096, 32335, 'thirty-two thousand three hundred thirty-five'),\n(5097, 38522, 'thirty-eight thousand five hundred twenty-two'),\n(5098, 55682, 'fifty-five thousand six hundred eighty-two'),\n(5099, 78728, 'seventy-eight thousand seven hundred twenty-eight'),\n(5100, 41736, 'forty-one thousand seven hundred thirty-six'),\n(5101, 10910, 'ten thousand nine hundred ten'),\n(5102, 22696, 'twenty-two thousand six hundred ninety-six'),\n(5103, 88552, 'eighty-eight thousand five hundred fifty-two'),\n(5104, 60685, 'sixty thousand six hundred eighty-five'),\n(5105, 5912, 'five thousand nine hundred twelve'),\n(5106, 32618, 'thirty-two thousand six hundred eighteen'),\n(5107, 75531, 'seventy-five thousand five hundred thirty-one'),\n(5108, 34889, 'thirty-four thousand eight hundred eighty-nine'),\n(5109, 86766, 'eighty-six thousand seven hundred sixty-six'),\n(5110, 57996, 'fifty-seven thousand nine hundred ninety-six'),\n(5111, 43065, 'forty-three thousand sixty-five'),\n(5112, 26383, 'twenty-six thousand three hundred eighty-three'),\n(5113, 55552, 'fifty-five thousand five hundred fifty-two'),\n(5114, 36143, 'thirty-six thousand one hundred forty-three'),\n(5115, 67325, 'sixty-seven thousand three hundred twenty-five'),\n(5116, 52968, 'fifty-two thousand nine hundred sixty-eight'),\n(5117, 9070, 'nine thousand seventy'),\n(5118, 34720, 'thirty-four thousand seven hundred twenty'),\n(5119, 30889, 'thirty thousand eight hundred eighty-nine'),\n(5120, 18379, 'eighteen thousand three hundred seventy-nine'),\n(5121, 16918, 'sixteen thousand nine hundred eighteen'),\n(5122, 87570, 'eighty-seven thousand five hundred seventy'),\n(5123, 22310, 'twenty-two thousand three hundred ten'),\n(5124, 37344, 'thirty-seven thousand three hundred forty-four'),\n(5125, 90795, 'ninety thousand seven hundred ninety-five'),\n(5126, 6061, 'six thousand sixty-one'),\n(5127, 66987, 'sixty-six thousand nine hundred eighty-seven'),\n(5128, 39779, 'thirty-nine thousand seven hundred seventy-nine'),\n(5129, 19394, 'nineteen thousand three hundred ninety-four'),\n(5130, 46010, 'forty-six thousand ten'),\n(5131, 91488, 'ninety-one thousand four hundred eighty-eight'),\n(5132, 66494, 'sixty-six thousand four hundred ninety-four'),\n(5133, 39525, 'thirty-nine thousand five hundred twenty-five'),\n(5134, 31382, 'thirty-one thousand three hundred eighty-two'),\n(5135, 3680, 'three thousand six hundred eighty'),\n(5136, 95424, 'ninety-five thousand four hundred twenty-four'),\n(5137, 21679, 'twenty-one thousand six hundred seventy-nine'),\n(5138, 39293, 'thirty-nine thousand two hundred ninety-three'),\n(5139, 3425, 'three thousand four hundred twenty-five'),\n(5140, 74006, 'seventy-four thousand six'),\n(5141, 17009, 'seventeen thousand nine'),\n(5142, 14475, 'fourteen thousand four hundred seventy-five'),\n(5143, 48520, 'forty-eight thousand five hundred twenty'),\n(5144, 70568, 'seventy thousand five hundred sixty-eight'),\n(5145, 24675, 'twenty-four thousand six hundred seventy-five'),\n(5146, 42895, 'forty-two thousand eight hundred ninety-five'),\n(5147, 39865, 'thirty-nine thousand eight hundred sixty-five'),\n(5148, 70375, 'seventy thousand three hundred seventy-five'),\n(5149, 75726, 'seventy-five thousand seven hundred twenty-six'),\n(5150, 91335, 'ninety-one thousand three hundred thirty-five'),\n(5151, 26796, 'twenty-six thousand seven hundred ninety-six'),\n(5152, 17408, 'seventeen thousand four hundred eight'),\n(5153, 50712, 'fifty thousand seven hundred twelve'),\n(5154, 48776, 'forty-eight thousand seven hundred seventy-six'),\n(5155, 33845, 'thirty-three thousand eight hundred forty-five'),\n(5156, 87474, 'eighty-seven thousand four hundred seventy-four'),\n(5157, 32206, 'thirty-two thousand two hundred six'),\n(5158, 65223, 'sixty-five thousand two hundred twenty-three'),\n(5159, 93682, 'ninety-three thousand six hundred eighty-two'),\n(5160, 35828, 'thirty-five thousand eight hundred twenty-eight'),\n(5161, 76847, 'seventy-six thousand eight hundred forty-seven'),\n(5162, 14408, 'fourteen thousand four hundred eight'),\n(5163, 93166, 'ninety-three thousand one hundred sixty-six'),\n(5164, 65629, 'sixty-five thousand six hundred twenty-nine'),\n(5165, 75257, 'seventy-five thousand two hundred fifty-seven'),\n(5166, 17025, 'seventeen thousand twenty-five'),\n(5167, 19091, 'nineteen thousand ninety-one'),\n(5168, 98046, 'ninety-eight thousand forty-six'),\n(5169, 54254, 'fifty-four thousand two hundred fifty-four'),\n(5170, 81464, 'eighty-one thousand four hundred sixty-four'),\n(5171, 44732, 'forty-four thousand seven hundred thirty-two'),\n(5172, 91734, 'ninety-one thousand seven hundred thirty-four'),\n(5173, 47346, 'forty-seven thousand three hundred forty-six'),\n(5174, 58097, 'fifty-eight thousand ninety-seven'),\n(5175, 75380, 'seventy-five thousand three hundred eighty'),\n(5176, 39555, 'thirty-nine thousand five hundred fifty-five'),\n(5177, 47373, 'forty-seven thousand three hundred seventy-three'),\n(5178, 64877, 'sixty-four thousand eight hundred seventy-seven'),\n(5179, 21348, 'twenty-one thousand three hundred forty-eight'),\n(5180, 36240, 'thirty-six thousand two hundred forty'),\n(5181, 13435, 'thirteen thousand four hundred thirty-five'),\n(5182, 15048, 'fifteen thousand forty-eight'),\n(5183, 77108, 'seventy-seven thousand one hundred eight'),\n(5184, 25707, 'twenty-five thousand seven hundred seven'),\n(5185, 16716, 'sixteen thousand seven hundred sixteen'),\n(5186, 40386, 'forty thousand three hundred eighty-six'),\n(5187, 94386, 'ninety-four thousand three hundred eighty-six'),\n(5188, 61062, 'sixty-one thousand sixty-two'),\n(5189, 32277, 'thirty-two thousand two hundred seventy-seven'),\n(5190, 7382, 'seven thousand three hundred eighty-two'),\n(5191, 77969, 'seventy-seven thousand nine hundred sixty-nine'),\n(5192, 97830, 'ninety-seven thousand eight hundred thirty'),\n(5193, 44012, 'forty-four thousand twelve'),\n(5194, 27865, 'twenty-seven thousand eight hundred sixty-five'),\n(5195, 2111, 'two thousand one hundred eleven'),\n(5196, 92151, 'ninety-two thousand one hundred fifty-one'),\n(5197, 33711, 'thirty-three thousand seven hundred eleven'),\n(5198, 86673, 'eighty-six thousand six hundred seventy-three'),\n(5199, 32063, 'thirty-two thousand sixty-three'),\n(5200, 58137, 'fifty-eight thousand one hundred thirty-seven'),\n(5201, 26677, 'twenty-six thousand six hundred seventy-seven'),\n(5202, 9393, 'nine thousand three hundred ninety-three'),\n(5203, 87719, 'eighty-seven thousand seven hundred nineteen'),\n(5204, 29921, 'twenty-nine thousand nine hundred twenty-one'),\n(5205, 43815, 'forty-three thousand eight hundred fifteen'),\n(5206, 79022, 'seventy-nine thousand twenty-two'),\n(5207, 49840, 'forty-nine thousand eight hundred forty'),\n(5208, 71770, 'seventy-one thousand seven hundred seventy'),\n(5209, 17187, 'seventeen thousand one hundred eighty-seven'),\n(5210, 71694, 'seventy-one thousand six hundred ninety-four'),\n(5211, 26982, 'twenty-six thousand nine hundred eighty-two'),\n(5212, 74211, 'seventy-four thousand two hundred eleven'),\n(5213, 12564, 'twelve thousand five hundred sixty-four'),\n(5214, 62500, 'sixty-two thousand five hundred'),\n(5215, 50541, 'fifty thousand five hundred forty-one'),\n(5216, 19991, 'nineteen thousand nine hundred ninety-one'),\n(5217, 13397, 'thirteen thousand three hundred ninety-seven'),\n(5218, 44687, 'forty-four thousand six hundred eighty-seven'),\n(5219, 70617, 'seventy thousand six hundred seventeen'),\n(5220, 53581, 'fifty-three thousand five hundred eighty-one'),\n(5221, 18273, 'eighteen thousand two hundred seventy-three'),\n(5222, 20163, 'twenty thousand one hundred sixty-three'),\n(5223, 25076, 'twenty-five thousand seventy-six'),\n(5224, 25315, 'twenty-five thousand three hundred fifteen'),\n(5225, 63187, 'sixty-three thousand one hundred eighty-seven'),\n(5226, 28879, 'twenty-eight thousand eight hundred seventy-nine'),\n(5227, 21950, 'twenty-one thousand nine hundred fifty'),\n(5228, 19570, 'nineteen thousand five hundred seventy'),\n(5229, 18020, 'eighteen thousand twenty'),\n(5230, 56642, 'fifty-six thousand six hundred forty-two'),\n(5231, 31942, 'thirty-one thousand nine hundred forty-two'),\n(5232, 57754, 'fifty-seven thousand seven hundred fifty-four'),\n(5233, 65107, 'sixty-five thousand one hundred seven'),\n(5234, 895, 'eight hundred ninety-five'),\n(5235, 42916, 'forty-two thousand nine hundred sixteen'),\n(5236, 77099, 'seventy-seven thousand ninety-nine'),\n(5237, 30448, 'thirty thousand four hundred forty-eight'),\n(5238, 49991, 'forty-nine thousand nine hundred ninety-one'),\n(5239, 39896, 'thirty-nine thousand eight hundred ninety-six'),\n(5240, 9542, 'nine thousand five hundred forty-two'),\n(5241, 20577, 'twenty thousand five hundred seventy-seven'),\n(5242, 86435, 'eighty-six thousand four hundred thirty-five'),\n(5243, 30495, 'thirty thousand four hundred ninety-five'),\n(5244, 16327, 'sixteen thousand three hundred twenty-seven'),\n(5245, 7357, 'seven thousand three hundred fifty-seven'),\n(5246, 47431, 'forty-seven thousand four hundred thirty-one'),\n(5247, 53954, 'fifty-three thousand nine hundred fifty-four'),\n(5248, 89868, 'eighty-nine thousand eight hundred sixty-eight'),\n(5249, 71608, 'seventy-one thousand six hundred eight'),\n(5250, 77979, 'seventy-seven thousand nine hundred seventy-nine'),\n(5251, 53920, 'fifty-three thousand nine hundred twenty'),\n(5252, 17102, 'seventeen thousand one hundred two'),\n(5253, 41283, 'forty-one thousand two hundred eighty-three'),\n(5254, 14681, 'fourteen thousand six hundred eighty-one'),\n(5255, 36124, 'thirty-six thousand one hundred twenty-four'),\n(5256, 40148, 'forty thousand one hundred forty-eight'),\n(5257, 53118, 'fifty-three thousand one hundred eighteen'),\n(5258, 98197, 'ninety-eight thousand one hundred ninety-seven'),\n(5259, 13804, 'thirteen thousand eight hundred four'),\n(5260, 90432, 'ninety thousand four hundred thirty-two'),\n(5261, 91215, 'ninety-one thousand two hundred fifteen'),\n(5262, 67540, 'sixty-seven thousand five hundred forty'),\n(5263, 94507, 'ninety-four thousand five hundred seven'),\n(5264, 97665, 'ninety-seven thousand six hundred sixty-five'),\n(5265, 27722, 'twenty-seven thousand seven hundred twenty-two'),\n(5266, 5525, 'five thousand five hundred twenty-five'),\n(5267, 82660, 'eighty-two thousand six hundred sixty'),\n(5268, 2493, 'two thousand four hundred ninety-three'),\n(5269, 57665, 'fifty-seven thousand six hundred sixty-five'),\n(5270, 11447, 'eleven thousand four hundred forty-seven'),\n(5271, 50975, 'fifty thousand nine hundred seventy-five'),\n(5272, 17031, 'seventeen thousand thirty-one'),\n(5273, 46062, 'forty-six thousand sixty-two'),\n(5274, 50788, 'fifty thousand seven hundred eighty-eight'),\n(5275, 66717, 'sixty-six thousand seven hundred seventeen'),\n(5276, 1022, 'one thousand twenty-two'),\n(5277, 2084, 'two thousand eighty-four'),\n(5278, 39473, 'thirty-nine thousand four hundred seventy-three'),\n(5279, 32962, 'thirty-two thousand nine hundred sixty-two'),\n(5280, 3977, 'three thousand nine hundred seventy-seven'),\n(5281, 97842, 'ninety-seven thousand eight hundred forty-two'),\n(5282, 30254, 'thirty thousand two hundred fifty-four'),\n(5283, 50811, 'fifty thousand eight hundred eleven'),\n(5284, 94204, 'ninety-four thousand two hundred four'),\n(5285, 4950, 'four thousand nine hundred fifty'),\n(5286, 89870, 'eighty-nine thousand eight hundred seventy'),\n(5287, 40037, 'forty thousand thirty-seven'),\n(5288, 33708, 'thirty-three thousand seven hundred eight'),\n(5289, 33189, 'thirty-three thousand one hundred eighty-nine'),\n(5290, 68296, 'sixty-eight thousand two hundred ninety-six'),\n(5291, 48145, 'forty-eight thousand one hundred forty-five'),\n(5292, 70236, 'seventy thousand two hundred thirty-six'),\n(5293, 10543, 'ten thousand five hundred forty-three'),\n(5294, 3280, 'three thousand two hundred eighty'),\n(5295, 2050, 'two thousand fifty'),\n(5296, 1989, 'one thousand nine hundred eighty-nine'),\n(5297, 1699, 'one thousand six hundred ninety-nine'),\n(5298, 45121, 'forty-five thousand one hundred twenty-one'),\n(5299, 11781, 'eleven thousand seven hundred eighty-one'),\n(5300, 48271, 'forty-eight thousand two hundred seventy-one'),\n(5301, 34294, 'thirty-four thousand two hundred ninety-four'),\n(5302, 52464, 'fifty-two thousand four hundred sixty-four'),\n(5303, 59753, 'fifty-nine thousand seven hundred fifty-three'),\n(5304, 21853, 'twenty-one thousand eight hundred fifty-three'),\n(5305, 83948, 'eighty-three thousand nine hundred forty-eight'),\n(5306, 37917, 'thirty-seven thousand nine hundred seventeen'),\n(5307, 60546, 'sixty thousand five hundred forty-six'),\n(5308, 79951, 'seventy-nine thousand nine hundred fifty-one'),\n(5309, 36248, 'thirty-six thousand two hundred forty-eight'),\n(5310, 58113, 'fifty-eight thousand one hundred thirteen'),\n(5311, 28184, 'twenty-eight thousand one hundred eighty-four'),\n(5312, 62196, 'sixty-two thousand one hundred ninety-six'),\n(5313, 87253, 'eighty-seven thousand two hundred fifty-three'),\n(5314, 28779, 'twenty-eight thousand seven hundred seventy-nine'),\n(5315, 61512, 'sixty-one thousand five hundred twelve'),\n(5316, 57415, 'fifty-seven thousand four hundred fifteen'),\n(5317, 45644, 'forty-five thousand six hundred forty-four'),\n(5318, 73594, 'seventy-three thousand five hundred ninety-four'),\n(5319, 34783, 'thirty-four thousand seven hundred eighty-three'),\n(5320, 47691, 'forty-seven thousand six hundred ninety-one'),\n(5321, 56864, 'fifty-six thousand eight hundred sixty-four'),\n(5322, 48701, 'forty-eight thousand seven hundred one'),\n(5323, 43437, 'forty-three thousand four hundred thirty-seven'),\n(5324, 49428, 'forty-nine thousand four hundred twenty-eight'),\n(5325, 69435, 'sixty-nine thousand four hundred thirty-five'),\n(5326, 73541, 'seventy-three thousand five hundred forty-one'),\n(5327, 12359, 'twelve thousand three hundred fifty-nine'),\n(5328, 1215, 'one thousand two hundred fifteen'),\n(5329, 98618, 'ninety-eight thousand six hundred eighteen'),\n(5330, 79937, 'seventy-nine thousand nine hundred thirty-seven'),\n(5331, 7028, 'seven thousand twenty-eight'),\n(5332, 98602, 'ninety-eight thousand six hundred two'),\n(5333, 8295, 'eight thousand two hundred ninety-five'),\n(5334, 244, 'two hundred forty-four'),\n(5335, 76684, 'seventy-six thousand six hundred eighty-four'),\n(5336, 42986, 'forty-two thousand nine hundred eighty-six'),\n(5337, 28285, 'twenty-eight thousand two hundred eighty-five'),\n(5338, 825, 'eight hundred twenty-five'),\n(5339, 37649, 'thirty-seven thousand six hundred forty-nine'),\n(5340, 88441, 'eighty-eight thousand four hundred forty-one'),\n(5341, 71026, 'seventy-one thousand twenty-six'),\n(5342, 45722, 'forty-five thousand seven hundred twenty-two'),\n(5343, 52700, 'fifty-two thousand seven hundred'),\n(5344, 95810, 'ninety-five thousand eight hundred ten'),\n(5345, 71403, 'seventy-one thousand four hundred three'),\n(5346, 51049, 'fifty-one thousand forty-nine'),\n(5347, 92748, 'ninety-two thousand seven hundred forty-eight'),\n(5348, 26485, 'twenty-six thousand four hundred eighty-five'),\n(5349, 87979, 'eighty-seven thousand nine hundred seventy-nine'),\n(5350, 91638, 'ninety-one thousand six hundred thirty-eight'),\n(5351, 46457, 'forty-six thousand four hundred fifty-seven'),\n(5352, 78445, 'seventy-eight thousand four hundred forty-five'),\n(5353, 20075, 'twenty thousand seventy-five'),\n(5354, 26129, 'twenty-six thousand one hundred twenty-nine'),\n(5355, 57156, 'fifty-seven thousand one hundred fifty-six'),\n(5356, 21719, 'twenty-one thousand seven hundred nineteen'),\n(5357, 92302, 'ninety-two thousand three hundred two'),\n(5358, 96496, 'ninety-six thousand four hundred ninety-six'),\n(5359, 38411, 'thirty-eight thousand four hundred eleven'),\n(5360, 37527, 'thirty-seven thousand five hundred twenty-seven'),\n(5361, 15257, 'fifteen thousand two hundred fifty-seven'),\n(5362, 25022, 'twenty-five thousand twenty-two'),\n(5363, 72624, 'seventy-two thousand six hundred twenty-four'),\n(5364, 66452, 'sixty-six thousand four hundred fifty-two'),\n(5365, 10082, 'ten thousand eighty-two'),\n(5366, 90308, 'ninety thousand three hundred eight'),\n(5367, 68128, 'sixty-eight thousand one hundred twenty-eight'),\n(5368, 51238, 'fifty-one thousand two hundred thirty-eight'),\n(5369, 38205, 'thirty-eight thousand two hundred five'),\n(5370, 67480, 'sixty-seven thousand four hundred eighty'),\n(5371, 54011, 'fifty-four thousand eleven'),\n(5372, 25348, 'twenty-five thousand three hundred forty-eight'),\n(5373, 43677, 'forty-three thousand six hundred seventy-seven'),\n(5374, 56860, 'fifty-six thousand eight hundred sixty'),\n(5375, 10271, 'ten thousand two hundred seventy-one'),\n(5376, 23037, 'twenty-three thousand thirty-seven'),\n(5377, 31953, 'thirty-one thousand nine hundred fifty-three'),\n(5378, 84851, 'eighty-four thousand eight hundred fifty-one'),\n(5379, 49435, 'forty-nine thousand four hundred thirty-five'),\n(5380, 3206, 'three thousand two hundred six'),\n(5381, 97808, 'ninety-seven thousand eight hundred eight'),\n(5382, 92760, 'ninety-two thousand seven hundred sixty'),\n(5383, 35161, 'thirty-five thousand one hundred sixty-one'),\n(5384, 8021, 'eight thousand twenty-one'),\n(5385, 75268, 'seventy-five thousand two hundred sixty-eight'),\n(5386, 14597, 'fourteen thousand five hundred ninety-seven'),\n(5387, 10226, 'ten thousand two hundred twenty-six'),\n(5388, 31482, 'thirty-one thousand four hundred eighty-two'),\n(5389, 33459, 'thirty-three thousand four hundred fifty-nine'),\n(5390, 1548, 'one thousand five hundred forty-eight'),\n(5391, 52926, 'fifty-two thousand nine hundred twenty-six'),\n(5392, 97575, 'ninety-seven thousand five hundred seventy-five'),\n(5393, 33592, 'thirty-three thousand five hundred ninety-two'),\n(5394, 62051, 'sixty-two thousand fifty-one'),\n(5395, 81323, 'eighty-one thousand three hundred twenty-three'),\n(5396, 88375, 'eighty-eight thousand three hundred seventy-five'),\n(5397, 90966, 'ninety thousand nine hundred sixty-six'),\n(5398, 7711, 'seven thousand seven hundred eleven'),\n(5399, 50960, 'fifty thousand nine hundred sixty'),\n(5400, 36562, 'thirty-six thousand five hundred sixty-two'),\n(5401, 72692, 'seventy-two thousand six hundred ninety-two'),\n(5402, 77801, 'seventy-seven thousand eight hundred one'),\n(5403, 86674, 'eighty-six thousand six hundred seventy-four'),\n(5404, 80050, 'eighty thousand fifty'),\n(5405, 96921, 'ninety-six thousand nine hundred twenty-one'),\n(5406, 29254, 'twenty-nine thousand two hundred fifty-four'),\n(5407, 61762, 'sixty-one thousand seven hundred sixty-two'),\n(5408, 9411, 'nine thousand four hundred eleven'),\n(5409, 28873, 'twenty-eight thousand eight hundred seventy-three'),\n(5410, 89536, 'eighty-nine thousand five hundred thirty-six'),\n(5411, 26799, 'twenty-six thousand seven hundred ninety-nine'),\n(5412, 65291, 'sixty-five thousand two hundred ninety-one'),\n(5413, 32381, 'thirty-two thousand three hundred eighty-one'),\n(5414, 83702, 'eighty-three thousand seven hundred two'),\n(5415, 12798, 'twelve thousand seven hundred ninety-eight'),\n(5416, 98114, 'ninety-eight thousand one hundred fourteen'),\n(5417, 66905, 'sixty-six thousand nine hundred five'),\n(5418, 84363, 'eighty-four thousand three hundred sixty-three'),\n(5419, 50152, 'fifty thousand one hundred fifty-two'),\n(5420, 26278, 'twenty-six thousand two hundred seventy-eight'),\n(5421, 78363, 'seventy-eight thousand three hundred sixty-three'),\n(5422, 73720, 'seventy-three thousand seven hundred twenty'),\n(5423, 33986, 'thirty-three thousand nine hundred eighty-six'),\n(5424, 56758, 'fifty-six thousand seven hundred fifty-eight'),\n(5425, 71785, 'seventy-one thousand seven hundred eighty-five'),\n(5426, 56643, 'fifty-six thousand six hundred forty-three'),\n(5427, 60454, 'sixty thousand four hundred fifty-four'),\n(5428, 34441, 'thirty-four thousand four hundred forty-one'),\n(5429, 56989, 'fifty-six thousand nine hundred eighty-nine'),\n(5430, 89730, 'eighty-nine thousand seven hundred thirty'),\n(5431, 50716, 'fifty thousand seven hundred sixteen'),\n(5432, 57336, 'fifty-seven thousand three hundred thirty-six'),\n(5433, 99140, 'ninety-nine thousand one hundred forty'),\n(5434, 98878, 'ninety-eight thousand eight hundred seventy-eight'),\n(5435, 22004, 'twenty-two thousand four'),\n(5436, 88567, 'eighty-eight thousand five hundred sixty-seven'),\n(5437, 30064, 'thirty thousand sixty-four'),\n(5438, 68263, 'sixty-eight thousand two hundred sixty-three'),\n(5439, 76177, 'seventy-six thousand one hundred seventy-seven'),\n(5440, 33737, 'thirty-three thousand seven hundred thirty-seven'),\n(5441, 90124, 'ninety thousand one hundred twenty-four'),\n(5442, 61053, 'sixty-one thousand fifty-three'),\n(5443, 91682, 'ninety-one thousand six hundred eighty-two'),\n(5444, 73299, 'seventy-three thousand two hundred ninety-nine'),\n(5445, 23952, 'twenty-three thousand nine hundred fifty-two'),\n(5446, 51457, 'fifty-one thousand four hundred fifty-seven'),\n(5447, 85838, 'eighty-five thousand eight hundred thirty-eight'),\n(5448, 96053, 'ninety-six thousand fifty-three'),\n(5449, 24583, 'twenty-four thousand five hundred eighty-three'),\n(5450, 61000, 'sixty-one thousand'),\n(5451, 83701, 'eighty-three thousand seven hundred one'),\n(5452, 60602, 'sixty thousand six hundred two'),\n(5453, 10405, 'ten thousand four hundred five'),\n(5454, 39446, 'thirty-nine thousand four hundred forty-six'),\n(5455, 70187, 'seventy thousand one hundred eighty-seven'),\n(5456, 3063, 'three thousand sixty-three'),\n(5457, 68077, 'sixty-eight thousand seventy-seven'),\n(5458, 14049, 'fourteen thousand forty-nine'),\n(5459, 38397, 'thirty-eight thousand three hundred ninety-seven'),\n(5460, 73473, 'seventy-three thousand four hundred seventy-three'),\n(5461, 23258, 'twenty-three thousand two hundred fifty-eight'),\n(5462, 72720, 'seventy-two thousand seven hundred twenty'),\n(5463, 97742, 'ninety-seven thousand seven hundred forty-two'),\n(5464, 60375, 'sixty thousand three hundred seventy-five'),\n(5465, 9858, 'nine thousand eight hundred fifty-eight'),\n(5466, 72274, 'seventy-two thousand two hundred seventy-four'),\n(5467, 7760, 'seven thousand seven hundred sixty'),\n(5468, 51690, 'fifty-one thousand six hundred ninety'),\n(5469, 87650, 'eighty-seven thousand six hundred fifty'),\n(5470, 4724, 'four thousand seven hundred twenty-four'),\n(5471, 42255, 'forty-two thousand two hundred fifty-five'),\n(5472, 66310, 'sixty-six thousand three hundred ten'),\n(5473, 1321, 'one thousand three hundred twenty-one'),\n(5474, 98609, 'ninety-eight thousand six hundred nine'),\n(5475, 28262, 'twenty-eight thousand two hundred sixty-two'),\n(5476, 50470, 'fifty thousand four hundred seventy'),\n(5477, 58119, 'fifty-eight thousand one hundred nineteen'),\n(5478, 90226, 'ninety thousand two hundred twenty-six'),\n(5479, 94146, 'ninety-four thousand one hundred forty-six'),\n(5480, 55638, 'fifty-five thousand six hundred thirty-eight'),\n(5481, 13318, 'thirteen thousand three hundred eighteen'),\n(5482, 72427, 'seventy-two thousand four hundred twenty-seven'),\n(5483, 56061, 'fifty-six thousand sixty-one'),\n(5484, 12825, 'twelve thousand eight hundred twenty-five'),\n(5485, 31526, 'thirty-one thousand five hundred twenty-six'),\n(5486, 16040, 'sixteen thousand forty'),\n(5487, 31595, 'thirty-one thousand five hundred ninety-five'),\n(5488, 87455, 'eighty-seven thousand four hundred fifty-five'),\n(5489, 87796, 'eighty-seven thousand seven hundred ninety-six'),\n(5490, 98415, 'ninety-eight thousand four hundred fifteen'),\n(5491, 34125, 'thirty-four thousand one hundred twenty-five'),\n(5492, 28284, 'twenty-eight thousand two hundred eighty-four'),\n(5493, 79619, 'seventy-nine thousand six hundred nineteen'),\n(5494, 84179, 'eighty-four thousand one hundred seventy-nine'),\n(5495, 9543, 'nine thousand five hundred forty-three'),\n(5496, 65201, 'sixty-five thousand two hundred one'),\n(5497, 83926, 'eighty-three thousand nine hundred twenty-six'),\n(5498, 81078, 'eighty-one thousand seventy-eight'),\n(5499, 4308, 'four thousand three hundred eight'),\n(5500, 3702, 'three thousand seven hundred two'),\n(5501, 25311, 'twenty-five thousand three hundred eleven'),\n(5502, 8663, 'eight thousand six hundred sixty-three'),\n(5503, 3981, 'three thousand nine hundred eighty-one'),\n(5504, 97794, 'ninety-seven thousand seven hundred ninety-four'),\n(5505, 68196, 'sixty-eight thousand one hundred ninety-six'),\n(5506, 26957, 'twenty-six thousand nine hundred fifty-seven'),\n(5507, 47667, 'forty-seven thousand six hundred sixty-seven'),\n(5508, 3065, 'three thousand sixty-five'),\n(5509, 81399, 'eighty-one thousand three hundred ninety-nine'),\n(5510, 81906, 'eighty-one thousand nine hundred six'),\n(5511, 21399, 'twenty-one thousand three hundred ninety-nine'),\n(5512, 28441, 'twenty-eight thousand four hundred forty-one'),\n(5513, 59836, 'fifty-nine thousand eight hundred thirty-six'),\n(5514, 89341, 'eighty-nine thousand three hundred forty-one'),\n(5515, 40958, 'forty thousand nine hundred fifty-eight'),\n(5516, 7744, 'seven thousand seven hundred forty-four'),\n(5517, 62732, 'sixty-two thousand seven hundred thirty-two'),\n(5518, 25056, 'twenty-five thousand fifty-six'),\n(5519, 73818, 'seventy-three thousand eight hundred eighteen'),\n(5520, 35370, 'thirty-five thousand three hundred seventy'),\n(5521, 42020, 'forty-two thousand twenty'),\n(5522, 72596, 'seventy-two thousand five hundred ninety-six'),\n(5523, 23649, 'twenty-three thousand six hundred forty-nine'),\n(5524, 94298, 'ninety-four thousand two hundred ninety-eight'),\n(5525, 81324, 'eighty-one thousand three hundred twenty-four'),\n(5526, 95626, 'ninety-five thousand six hundred twenty-six'),\n(5527, 61068, 'sixty-one thousand sixty-eight'),\n(5528, 45707, 'forty-five thousand seven hundred seven'),\n(5529, 4377, 'four thousand three hundred seventy-seven'),\n(5530, 41483, 'forty-one thousand four hundred eighty-three'),\n(5531, 18560, 'eighteen thousand five hundred sixty'),\n(5532, 27875, 'twenty-seven thousand eight hundred seventy-five'),\n(5533, 40865, 'forty thousand eight hundred sixty-five'),\n(5534, 6151, 'six thousand one hundred fifty-one'),\n(5535, 70521, 'seventy thousand five hundred twenty-one'),\n(5536, 6130, 'six thousand one hundred thirty'),\n(5537, 1706, 'one thousand seven hundred six'),\n(5538, 43403, 'forty-three thousand four hundred three'),\n(5539, 97125, 'ninety-seven thousand one hundred twenty-five'),\n(5540, 18306, 'eighteen thousand three hundred six'),\n(5541, 11958, 'eleven thousand nine hundred fifty-eight'),\n(5542, 90373, 'ninety thousand three hundred seventy-three'),\n(5543, 11233, 'eleven thousand two hundred thirty-three'),\n(5544, 97197, 'ninety-seven thousand one hundred ninety-seven'),\n(5545, 99475, 'ninety-nine thousand four hundred seventy-five'),\n(5546, 33390, 'thirty-three thousand three hundred ninety'),\n(5547, 44377, 'forty-four thousand three hundred seventy-seven'),\n(5548, 1956, 'one thousand nine hundred fifty-six'),\n(5549, 57641, 'fifty-seven thousand six hundred forty-one'),\n(5550, 63739, 'sixty-three thousand seven hundred thirty-nine'),\n(5551, 31748, 'thirty-one thousand seven hundred forty-eight'),\n(5552, 51667, 'fifty-one thousand six hundred sixty-seven'),\n(5553, 1485, 'one thousand four hundred eighty-five'),\n(5554, 60430, 'sixty thousand four hundred thirty'),\n(5555, 29723, 'twenty-nine thousand seven hundred twenty-three'),\n(5556, 5253, 'five thousand two hundred fifty-three'),\n(5557, 98521, 'ninety-eight thousand five hundred twenty-one'),\n(5558, 18462, 'eighteen thousand four hundred sixty-two'),\n(5559, 58784, 'fifty-eight thousand seven hundred eighty-four'),\n(5560, 9436, 'nine thousand four hundred thirty-six'),\n(5561, 75146, 'seventy-five thousand one hundred forty-six'),\n(5562, 84907, 'eighty-four thousand nine hundred seven'),\n(5563, 6703, 'six thousand seven hundred three'),\n(5564, 27166, 'twenty-seven thousand one hundred sixty-six'),\n(5565, 79805, 'seventy-nine thousand eight hundred five'),\n(5566, 2271, 'two thousand two hundred seventy-one'),\n(5567, 814, 'eight hundred fourteen'),\n(5568, 76791, 'seventy-six thousand seven hundred ninety-one'),\n(5569, 41445, 'forty-one thousand four hundred forty-five'),\n(5570, 67739, 'sixty-seven thousand seven hundred thirty-nine'),\n(5571, 40762, 'forty thousand seven hundred sixty-two'),\n(5572, 49147, 'forty-nine thousand one hundred forty-seven'),\n(5573, 68749, 'sixty-eight thousand seven hundred forty-nine'),\n(5574, 24410, 'twenty-four thousand four hundred ten'),\n(5575, 45029, 'forty-five thousand twenty-nine'),\n(5576, 33054, 'thirty-three thousand fifty-four'),\n(5577, 71189, 'seventy-one thousand one hundred eighty-nine'),\n(5578, 26073, 'twenty-six thousand seventy-three'),\n(5579, 43701, 'forty-three thousand seven hundred one'),\n(5580, 32492, 'thirty-two thousand four hundred ninety-two'),\n(5581, 15974, 'fifteen thousand nine hundred seventy-four'),\n(5582, 29783, 'twenty-nine thousand seven hundred eighty-three'),\n(5583, 83848, 'eighty-three thousand eight hundred forty-eight'),\n(5584, 38891, 'thirty-eight thousand eight hundred ninety-one'),\n(5585, 10825, 'ten thousand eight hundred twenty-five'),\n(5586, 67744, 'sixty-seven thousand seven hundred forty-four'),\n(5587, 18754, 'eighteen thousand seven hundred fifty-four'),\n(5588, 96347, 'ninety-six thousand three hundred forty-seven'),\n(5589, 65423, 'sixty-five thousand four hundred twenty-three'),\n(5590, 1812, 'one thousand eight hundred twelve'),\n(5591, 11898, 'eleven thousand eight hundred ninety-eight'),\n(5592, 37945, 'thirty-seven thousand nine hundred forty-five'),\n(5593, 62917, 'sixty-two thousand nine hundred seventeen'),\n(5594, 26111, 'twenty-six thousand one hundred eleven'),\n(5595, 52307, 'fifty-two thousand three hundred seven'),\n(5596, 83623, 'eighty-three thousand six hundred twenty-three'),\n(5597, 90761, 'ninety thousand seven hundred sixty-one'),\n(5598, 1138, 'one thousand one hundred thirty-eight'),\n(5599, 31338, 'thirty-one thousand three hundred thirty-eight'),\n(5600, 38653, 'thirty-eight thousand six hundred fifty-three'),\n(5601, 64253, 'sixty-four thousand two hundred fifty-three'),\n(5602, 73954, 'seventy-three thousand nine hundred fifty-four'),\n(5603, 10868, 'ten thousand eight hundred sixty-eight'),\n(5604, 69293, 'sixty-nine thousand two hundred ninety-three'),\n(5605, 36958, 'thirty-six thousand nine hundred fifty-eight'),\n(5606, 25181, 'twenty-five thousand one hundred eighty-one'),\n(5607, 8429, 'eight thousand four hundred twenty-nine'),\n(5608, 30458, 'thirty thousand four hundred fifty-eight'),\n(5609, 34904, 'thirty-four thousand nine hundred four'),\n(5610, 46150, 'forty-six thousand one hundred fifty'),\n(5611, 68186, 'sixty-eight thousand one hundred eighty-six'),\n(5612, 28662, 'twenty-eight thousand six hundred sixty-two'),\n(5613, 15540, 'fifteen thousand five hundred forty'),\n(5614, 67848, 'sixty-seven thousand eight hundred forty-eight'),\n(5615, 85163, 'eighty-five thousand one hundred sixty-three'),\n(5616, 89170, 'eighty-nine thousand one hundred seventy'),\n(5617, 62467, 'sixty-two thousand four hundred sixty-seven'),\n(5618, 43081, 'forty-three thousand eighty-one'),\n(5619, 95296, 'ninety-five thousand two hundred ninety-six'),\n(5620, 68397, 'sixty-eight thousand three hundred ninety-seven'),\n(5621, 99406, 'ninety-nine thousand four hundred six'),\n(5622, 10050, 'ten thousand fifty'),\n(5623, 79849, 'seventy-nine thousand eight hundred forty-nine'),\n(5624, 34661, 'thirty-four thousand six hundred sixty-one'),\n(5625, 72438, 'seventy-two thousand four hundred thirty-eight'),\n(5626, 52913, 'fifty-two thousand nine hundred thirteen'),\n(5627, 76994, 'seventy-six thousand nine hundred ninety-four'),\n(5628, 77064, 'seventy-seven thousand sixty-four'),\n(5629, 52451, 'fifty-two thousand four hundred fifty-one'),\n(5630, 68828, 'sixty-eight thousand eight hundred twenty-eight'),\n(5631, 31392, 'thirty-one thousand three hundred ninety-two'),\n(5632, 20532, 'twenty thousand five hundred thirty-two'),\n(5633, 69844, 'sixty-nine thousand eight hundred forty-four'),\n(5634, 13805, 'thirteen thousand eight hundred five'),\n(5635, 47939, 'forty-seven thousand nine hundred thirty-nine'),\n(5636, 83289, 'eighty-three thousand two hundred eighty-nine'),\n(5637, 66895, 'sixty-six thousand eight hundred ninety-five'),\n(5638, 38344, 'thirty-eight thousand three hundred forty-four'),\n(5639, 18734, 'eighteen thousand seven hundred thirty-four'),\n(5640, 73413, 'seventy-three thousand four hundred thirteen'),\n(5641, 29702, 'twenty-nine thousand seven hundred two'),\n(5642, 35329, 'thirty-five thousand three hundred twenty-nine'),\n(5643, 76505, 'seventy-six thousand five hundred five'),\n(5644, 52903, 'fifty-two thousand nine hundred three'),\n(5645, 47645, 'forty-seven thousand six hundred forty-five'),\n(5646, 52273, 'fifty-two thousand two hundred seventy-three'),\n(5647, 78414, 'seventy-eight thousand four hundred fourteen'),\n(5648, 68376, 'sixty-eight thousand three hundred seventy-six'),\n(5649, 9173, 'nine thousand one hundred seventy-three'),\n(5650, 22863, 'twenty-two thousand eight hundred sixty-three'),\n(5651, 75193, 'seventy-five thousand one hundred ninety-three'),\n(5652, 71623, 'seventy-one thousand six hundred twenty-three'),\n(5653, 5613, 'five thousand six hundred thirteen'),\n(5654, 97606, 'ninety-seven thousand six hundred six'),\n(5655, 32971, 'thirty-two thousand nine hundred seventy-one'),\n(5656, 8357, 'eight thousand three hundred fifty-seven'),\n(5657, 13702, 'thirteen thousand seven hundred two'),\n(5658, 15368, 'fifteen thousand three hundred sixty-eight'),\n(5659, 0, 'zero'),\n(5660, 9272, 'nine thousand two hundred seventy-two'),\n(5661, 38762, 'thirty-eight thousand seven hundred sixty-two'),\n(5662, 46510, 'forty-six thousand five hundred ten'),\n(5663, 59925, 'fifty-nine thousand nine hundred twenty-five'),\n(5664, 55025, 'fifty-five thousand twenty-five'),\n(5665, 9341, 'nine thousand three hundred forty-one'),\n(5666, 6423, 'six thousand four hundred twenty-three'),\n(5667, 34717, 'thirty-four thousand seven hundred seventeen'),\n(5668, 71495, 'seventy-one thousand four hundred ninety-five'),\n(5669, 62372, 'sixty-two thousand three hundred seventy-two'),\n(5670, 44839, 'forty-four thousand eight hundred thirty-nine'),\n(5671, 33771, 'thirty-three thousand seven hundred seventy-one'),\n(5672, 83481, 'eighty-three thousand four hundred eighty-one'),\n(5673, 64572, 'sixty-four thousand five hundred seventy-two'),\n(5674, 6422, 'six thousand four hundred twenty-two'),\n(5675, 660, 'six hundred sixty'),\n(5676, 42167, 'forty-two thousand one hundred sixty-seven'),\n(5677, 2714, 'two thousand seven hundred fourteen'),\n(5678, 26872, 'twenty-six thousand eight hundred seventy-two'),\n(5679, 37913, 'thirty-seven thousand nine hundred thirteen'),\n(5680, 52935, 'fifty-two thousand nine hundred thirty-five'),\n(5681, 85784, 'eighty-five thousand seven hundred eighty-four'),\n(5682, 4393, 'four thousand three hundred ninety-three'),\n(5683, 34709, 'thirty-four thousand seven hundred nine'),\n(5684, 63511, 'sixty-three thousand five hundred eleven'),\n(5685, 59152, 'fifty-nine thousand one hundred fifty-two'),\n(5686, 17749, 'seventeen thousand seven hundred forty-nine'),\n(5687, 19838, 'nineteen thousand eight hundred thirty-eight'),\n(5688, 57184, 'fifty-seven thousand one hundred eighty-four'),\n(5689, 76478, 'seventy-six thousand four hundred seventy-eight'),\n(5690, 29167, 'twenty-nine thousand one hundred sixty-seven'),\n(5691, 20600, 'twenty thousand six hundred'),\n(5692, 96537, 'ninety-six thousand five hundred thirty-seven'),\n(5693, 89189, 'eighty-nine thousand one hundred eighty-nine'),\n(5694, 49690, 'forty-nine thousand six hundred ninety'),\n(5695, 10691, 'ten thousand six hundred ninety-one'),\n(5696, 64497, 'sixty-four thousand four hundred ninety-seven'),\n(5697, 67310, 'sixty-seven thousand three hundred ten'),\n(5698, 94114, 'ninety-four thousand one hundred fourteen'),\n(5699, 12674, 'twelve thousand six hundred seventy-four'),\n(5700, 90653, 'ninety thousand six hundred fifty-three'),\n(5701, 53064, 'fifty-three thousand sixty-four'),\n(5702, 61561, 'sixty-one thousand five hundred sixty-one'),\n(5703, 34023, 'thirty-four thousand twenty-three'),\n(5704, 96895, 'ninety-six thousand eight hundred ninety-five'),\n(5705, 41013, 'forty-one thousand thirteen'),\n(5706, 90944, 'ninety thousand nine hundred forty-four'),\n(5707, 49251, 'forty-nine thousand two hundred fifty-one'),\n(5708, 4227, 'four thousand two hundred twenty-seven'),\n(5709, 4355, 'four thousand three hundred fifty-five'),\n(5710, 70217, 'seventy thousand two hundred seventeen'),\n(5711, 11124, 'eleven thousand one hundred twenty-four'),\n(5712, 85891, 'eighty-five thousand eight hundred ninety-one'),\n(5713, 47594, 'forty-seven thousand five hundred ninety-four'),\n(5714, 13720, 'thirteen thousand seven hundred twenty'),\n(5715, 82368, 'eighty-two thousand three hundred sixty-eight'),\n(5716, 14558, 'fourteen thousand five hundred fifty-eight'),\n(5717, 93849, 'ninety-three thousand eight hundred forty-nine'),\n(5718, 38932, 'thirty-eight thousand nine hundred thirty-two'),\n(5719, 46889, 'forty-six thousand eight hundred eighty-nine'),\n(5720, 55006, 'fifty-five thousand six'),\n(5721, 21140, 'twenty-one thousand one hundred forty'),\n(5722, 59249, 'fifty-nine thousand two hundred forty-nine'),\n(5723, 77145, 'seventy-seven thousand one hundred forty-five'),\n(5724, 61334, 'sixty-one thousand three hundred thirty-four'),\n(5725, 57733, 'fifty-seven thousand seven hundred thirty-three'),\n(5726, 8850, 'eight thousand eight hundred fifty'),\n(5727, 11080, 'eleven thousand eighty'),\n(5728, 87756, 'eighty-seven thousand seven hundred fifty-six'),\n(5729, 82982, 'eighty-two thousand nine hundred eighty-two'),\n(5730, 31389, 'thirty-one thousand three hundred eighty-nine'),\n(5731, 99295, 'ninety-nine thousand two hundred ninety-five'),\n(5732, 67086, 'sixty-seven thousand eighty-six'),\n(5733, 25913, 'twenty-five thousand nine hundred thirteen'),\n(5734, 53918, 'fifty-three thousand nine hundred eighteen'),\n(5735, 77500, 'seventy-seven thousand five hundred'),\n(5736, 51047, 'fifty-one thousand forty-seven'),\n(5737, 79250, 'seventy-nine thousand two hundred fifty'),\n(5738, 68652, 'sixty-eight thousand six hundred fifty-two'),\n(5739, 78012, 'seventy-eight thousand twelve'),\n(5740, 34673, 'thirty-four thousand six hundred seventy-three'),\n(5741, 40693, 'forty thousand six hundred ninety-three'),\n(5742, 32195, 'thirty-two thousand one hundred ninety-five'),\n(5743, 53934, 'fifty-three thousand nine hundred thirty-four'),\n(5744, 52285, 'fifty-two thousand two hundred eighty-five'),\n(5745, 99119, 'ninety-nine thousand one hundred nineteen'),\n(5746, 32439, 'thirty-two thousand four hundred thirty-nine'),\n(5747, 67246, 'sixty-seven thousand two hundred forty-six'),\n(5748, 29120, 'twenty-nine thousand one hundred twenty'),\n(5749, 58397, 'fifty-eight thousand three hundred ninety-seven'),\n(5750, 71563, 'seventy-one thousand five hundred sixty-three'),\n(5751, 10636, 'ten thousand six hundred thirty-six'),\n(5752, 50880, 'fifty thousand eight hundred eighty'),\n(5753, 97776, 'ninety-seven thousand seven hundred seventy-six'),\n(5754, 21325, 'twenty-one thousand three hundred twenty-five'),\n(5755, 96183, 'ninety-six thousand one hundred eighty-three'),\n(5756, 61992, 'sixty-one thousand nine hundred ninety-two'),\n(5757, 13919, 'thirteen thousand nine hundred nineteen'),\n(5758, 78709, 'seventy-eight thousand seven hundred nine'),\n(5759, 17924, 'seventeen thousand nine hundred twenty-four'),\n(5760, 40616, 'forty thousand six hundred sixteen'),\n(5761, 30345, 'thirty thousand three hundred forty-five'),\n(5762, 38964, 'thirty-eight thousand nine hundred sixty-four'),\n(5763, 2773, 'two thousand seven hundred seventy-three'),\n(5764, 3421, 'three thousand four hundred twenty-one'),\n(5765, 81825, 'eighty-one thousand eight hundred twenty-five'),\n(5766, 68110, 'sixty-eight thousand one hundred ten'),\n(5767, 65071, 'sixty-five thousand seventy-one'),\n(5768, 49628, 'forty-nine thousand six hundred twenty-eight'),\n(5769, 84981, 'eighty-four thousand nine hundred eighty-one'),\n(5770, 94146, 'ninety-four thousand one hundred forty-six'),\n(5771, 93659, 'ninety-three thousand six hundred fifty-nine'),\n(5772, 64318, 'sixty-four thousand three hundred eighteen'),\n(5773, 31828, 'thirty-one thousand eight hundred twenty-eight'),\n(5774, 85160, 'eighty-five thousand one hundred sixty'),\n(5775, 49836, 'forty-nine thousand eight hundred thirty-six'),\n(5776, 3678, 'three thousand six hundred seventy-eight'),\n(5777, 19652, 'nineteen thousand six hundred fifty-two'),\n(5778, 7761, 'seven thousand seven hundred sixty-one'),\n(5779, 74211, 'seventy-four thousand two hundred eleven'),\n(5780, 71500, 'seventy-one thousand five hundred'),\n(5781, 11908, 'eleven thousand nine hundred eight'),\n(5782, 66743, 'sixty-six thousand seven hundred forty-three'),\n(5783, 49898, 'forty-nine thousand eight hundred ninety-eight'),\n(5784, 44882, 'forty-four thousand eight hundred eighty-two'),\n(5785, 85537, 'eighty-five thousand five hundred thirty-seven'),\n(5786, 6114, 'six thousand one hundred fourteen'),\n(5787, 64709, 'sixty-four thousand seven hundred nine'),\n(5788, 41330, 'forty-one thousand three hundred thirty'),\n(5789, 51927, 'fifty-one thousand nine hundred twenty-seven'),\n(5790, 48156, 'forty-eight thousand one hundred fifty-six'),\n(5791, 44608, 'forty-four thousand six hundred eight'),\n(5792, 43763, 'forty-three thousand seven hundred sixty-three'),\n(5793, 94748, 'ninety-four thousand seven hundred forty-eight'),\n(5794, 68301, 'sixty-eight thousand three hundred one'),\n(5795, 44960, 'forty-four thousand nine hundred sixty'),\n(5796, 25732, 'twenty-five thousand seven hundred thirty-two'),\n(5797, 30041, 'thirty thousand forty-one'),\n(5798, 36695, 'thirty-six thousand six hundred ninety-five'),\n(5799, 14301, 'fourteen thousand three hundred one'),\n(5800, 31040, 'thirty-one thousand forty'),\n(5801, 62023, 'sixty-two thousand twenty-three'),\n(5802, 70438, 'seventy thousand four hundred thirty-eight'),\n(5803, 47811, 'forty-seven thousand eight hundred eleven'),\n(5804, 1153, 'one thousand one hundred fifty-three'),\n(5805, 70381, 'seventy thousand three hundred eighty-one'),\n(5806, 7936, 'seven thousand nine hundred thirty-six'),\n(5807, 47176, 'forty-seven thousand one hundred seventy-six'),\n(5808, 16829, 'sixteen thousand eight hundred twenty-nine'),\n(5809, 40046, 'forty thousand forty-six'),\n(5810, 74002, 'seventy-four thousand two'),\n(5811, 88807, 'eighty-eight thousand eight hundred seven'),\n(5812, 59044, 'fifty-nine thousand forty-four'),\n(5813, 92143, 'ninety-two thousand one hundred forty-three'),\n(5814, 37754, 'thirty-seven thousand seven hundred fifty-four'),\n(5815, 94083, 'ninety-four thousand eighty-three'),\n(5816, 15225, 'fifteen thousand two hundred twenty-five'),\n(5817, 55810, 'fifty-five thousand eight hundred ten'),\n(5818, 71616, 'seventy-one thousand six hundred sixteen'),\n(5819, 91356, 'ninety-one thousand three hundred fifty-six'),\n(5820, 18545, 'eighteen thousand five hundred forty-five'),\n(5821, 16659, 'sixteen thousand six hundred fifty-nine'),\n(5822, 88311, 'eighty-eight thousand three hundred eleven'),\n(5823, 77535, 'seventy-seven thousand five hundred thirty-five'),\n(5824, 89952, 'eighty-nine thousand nine hundred fifty-two'),\n(5825, 72542, 'seventy-two thousand five hundred forty-two'),\n(5826, 33741, 'thirty-three thousand seven hundred forty-one'),\n(5827, 96591, 'ninety-six thousand five hundred ninety-one'),\n(5828, 99834, 'ninety-nine thousand eight hundred thirty-four'),\n(5829, 65183, 'sixty-five thousand one hundred eighty-three'),\n(5830, 90140, 'ninety thousand one hundred forty'),\n(5831, 55515, 'fifty-five thousand five hundred fifteen'),\n(5832, 45151, 'forty-five thousand one hundred fifty-one'),\n(5833, 27098, 'twenty-seven thousand ninety-eight'),\n(5834, 52417, 'fifty-two thousand four hundred seventeen'),\n(5835, 56437, 'fifty-six thousand four hundred thirty-seven'),\n(5836, 6983, 'six thousand nine hundred eighty-three'),\n(5837, 65299, 'sixty-five thousand two hundred ninety-nine'),\n(5838, 61929, 'sixty-one thousand nine hundred twenty-nine'),\n(5839, 96824, 'ninety-six thousand eight hundred twenty-four'),\n(5840, 31520, 'thirty-one thousand five hundred twenty'),\n(5841, 7751, 'seven thousand seven hundred fifty-one'),\n(5842, 48850, 'forty-eight thousand eight hundred fifty'),\n(5843, 7669, 'seven thousand six hundred sixty-nine'),\n(5844, 61495, 'sixty-one thousand four hundred ninety-five'),\n(5845, 33480, 'thirty-three thousand four hundred eighty'),\n(5846, 92299, 'ninety-two thousand two hundred ninety-nine'),\n(5847, 83539, 'eighty-three thousand five hundred thirty-nine'),\n(5848, 83700, 'eighty-three thousand seven hundred'),\n(5849, 34720, 'thirty-four thousand seven hundred twenty'),\n(5850, 56299, 'fifty-six thousand two hundred ninety-nine'),\n(5851, 73157, 'seventy-three thousand one hundred fifty-seven'),\n(5852, 113, 'one hundred thirteen'),\n(5853, 99472, 'ninety-nine thousand four hundred seventy-two'),\n(5854, 35740, 'thirty-five thousand seven hundred forty'),\n(5855, 37123, 'thirty-seven thousand one hundred twenty-three'),\n(5856, 56894, 'fifty-six thousand eight hundred ninety-four'),\n(5857, 28628, 'twenty-eight thousand six hundred twenty-eight'),\n(5858, 97994, 'ninety-seven thousand nine hundred ninety-four'),\n(5859, 60818, 'sixty thousand eight hundred eighteen'),\n(5860, 32606, 'thirty-two thousand six hundred six'),\n(5861, 66357, 'sixty-six thousand three hundred fifty-seven'),\n(5862, 31200, 'thirty-one thousand two hundred'),\n(5863, 83780, 'eighty-three thousand seven hundred eighty'),\n(5864, 37285, 'thirty-seven thousand two hundred eighty-five'),\n(5865, 84952, 'eighty-four thousand nine hundred fifty-two'),\n(5866, 5673, 'five thousand six hundred seventy-three'),\n(5867, 88758, 'eighty-eight thousand seven hundred fifty-eight'),\n(5868, 15934, 'fifteen thousand nine hundred thirty-four'),\n(5869, 94157, 'ninety-four thousand one hundred fifty-seven'),\n(5870, 97029, 'ninety-seven thousand twenty-nine'),\n(5871, 22195, 'twenty-two thousand one hundred ninety-five'),\n(5872, 16194, 'sixteen thousand one hundred ninety-four'),\n(5873, 11696, 'eleven thousand six hundred ninety-six'),\n(5874, 8538, 'eight thousand five hundred thirty-eight'),\n(5875, 40134, 'forty thousand one hundred thirty-four'),\n(5876, 41631, 'forty-one thousand six hundred thirty-one'),\n(5877, 5585, 'five thousand five hundred eighty-five'),\n(5878, 16249, 'sixteen thousand two hundred forty-nine'),\n(5879, 60546, 'sixty thousand five hundred forty-six'),\n(5880, 61229, 'sixty-one thousand two hundred twenty-nine'),\n(5881, 46172, 'forty-six thousand one hundred seventy-two'),\n(5882, 48601, 'forty-eight thousand six hundred one'),\n(5883, 78108, 'seventy-eight thousand one hundred eight'),\n(5884, 85412, 'eighty-five thousand four hundred twelve'),\n(5885, 76313, 'seventy-six thousand three hundred thirteen'),\n(5886, 32664, 'thirty-two thousand six hundred sixty-four'),\n(5887, 96577, 'ninety-six thousand five hundred seventy-seven'),\n(5888, 33471, 'thirty-three thousand four hundred seventy-one'),\n(5889, 13233, 'thirteen thousand two hundred thirty-three'),\n(5890, 7834, 'seven thousand eight hundred thirty-four'),\n(5891, 36432, 'thirty-six thousand four hundred thirty-two'),\n(5892, 57676, 'fifty-seven thousand six hundred seventy-six'),\n(5893, 95348, 'ninety-five thousand three hundred forty-eight'),\n(5894, 51577, 'fifty-one thousand five hundred seventy-seven'),\n(5895, 6095, 'six thousand ninety-five'),\n(5896, 71061, 'seventy-one thousand sixty-one'),\n(5897, 10000, 'ten thousand'),\n(5898, 20221, 'twenty thousand two hundred twenty-one'),\n(5899, 80668, 'eighty thousand six hundred sixty-eight'),\n(5900, 98258, 'ninety-eight thousand two hundred fifty-eight'),\n(5901, 7951, 'seven thousand nine hundred fifty-one'),\n(5902, 4674, 'four thousand six hundred seventy-four'),\n(5903, 51365, 'fifty-one thousand three hundred sixty-five'),\n(5904, 5441, 'five thousand four hundred forty-one'),\n(5905, 78262, 'seventy-eight thousand two hundred sixty-two'),\n(5906, 35317, 'thirty-five thousand three hundred seventeen'),\n(5907, 92374, 'ninety-two thousand three hundred seventy-four'),\n(5908, 6797, 'six thousand seven hundred ninety-seven'),\n(5909, 16025, 'sixteen thousand twenty-five'),\n(5910, 80500, 'eighty thousand five hundred'),\n(5911, 49666, 'forty-nine thousand six hundred sixty-six'),\n(5912, 27602, 'twenty-seven thousand six hundred two'),\n(5913, 79360, 'seventy-nine thousand three hundred sixty'),\n(5914, 57957, 'fifty-seven thousand nine hundred fifty-seven'),\n(5915, 49298, 'forty-nine thousand two hundred ninety-eight'),\n(5916, 36372, 'thirty-six thousand three hundred seventy-two'),\n(5917, 42100, 'forty-two thousand one hundred'),\n(5918, 97612, 'ninety-seven thousand six hundred twelve'),\n(5919, 81689, 'eighty-one thousand six hundred eighty-nine'),\n(5920, 90813, 'ninety thousand eight hundred thirteen'),\n(5921, 89285, 'eighty-nine thousand two hundred eighty-five'),\n(5922, 69042, 'sixty-nine thousand forty-two'),\n(5923, 8290, 'eight thousand two hundred ninety'),\n(5924, 84675, 'eighty-four thousand six hundred seventy-five'),\n(5925, 46719, 'forty-six thousand seven hundred nineteen'),\n(5926, 52118, 'fifty-two thousand one hundred eighteen'),\n(5927, 12792, 'twelve thousand seven hundred ninety-two'),\n(5928, 43253, 'forty-three thousand two hundred fifty-three'),\n(5929, 93656, 'ninety-three thousand six hundred fifty-six'),\n(5930, 6350, 'six thousand three hundred fifty'),\n(5931, 9873, 'nine thousand eight hundred seventy-three'),\n(5932, 40829, 'forty thousand eight hundred twenty-nine'),\n(5933, 23687, 'twenty-three thousand six hundred eighty-seven'),\n(5934, 84640, 'eighty-four thousand six hundred forty'),\n(5935, 8003, 'eight thousand three'),\n(5936, 33545, 'thirty-three thousand five hundred forty-five'),\n(5937, 10342, 'ten thousand three hundred forty-two'),\n(5938, 50592, 'fifty thousand five hundred ninety-two'),\n(5939, 96339, 'ninety-six thousand three hundred thirty-nine'),\n(5940, 42938, 'forty-two thousand nine hundred thirty-eight'),\n(5941, 45882, 'forty-five thousand eight hundred eighty-two'),\n(5942, 12284, 'twelve thousand two hundred eighty-four'),\n(5943, 39289, 'thirty-nine thousand two hundred eighty-nine'),\n(5944, 51979, 'fifty-one thousand nine hundred seventy-nine'),\n(5945, 54256, 'fifty-four thousand two hundred fifty-six'),\n(5946, 11595, 'eleven thousand five hundred ninety-five'),\n(5947, 34923, 'thirty-four thousand nine hundred twenty-three'),\n(5948, 3290, 'three thousand two hundred ninety'),\n(5949, 77175, 'seventy-seven thousand one hundred seventy-five'),\n(5950, 41067, 'forty-one thousand sixty-seven'),\n(5951, 74802, 'seventy-four thousand eight hundred two'),\n(5952, 46936, 'forty-six thousand nine hundred thirty-six'),\n(5953, 89141, 'eighty-nine thousand one hundred forty-one'),\n(5954, 33920, 'thirty-three thousand nine hundred twenty'),\n(5955, 83400, 'eighty-three thousand four hundred'),\n(5956, 36079, 'thirty-six thousand seventy-nine'),\n(5957, 67718, 'sixty-seven thousand seven hundred eighteen'),\n(5958, 10320, 'ten thousand three hundred twenty'),\n(5959, 24947, 'twenty-four thousand nine hundred forty-seven'),\n(5960, 91063, 'ninety-one thousand sixty-three'),\n(5961, 49594, 'forty-nine thousand five hundred ninety-four'),\n(5962, 6485, 'six thousand four hundred eighty-five'),\n(5963, 50921, 'fifty thousand nine hundred twenty-one'),\n(5964, 52281, 'fifty-two thousand two hundred eighty-one'),\n(5965, 22198, 'twenty-two thousand one hundred ninety-eight'),\n(5966, 10588, 'ten thousand five hundred eighty-eight'),\n(5967, 61308, 'sixty-one thousand three hundred eight'),\n(5968, 58529, 'fifty-eight thousand five hundred twenty-nine'),\n(5969, 4380, 'four thousand three hundred eighty'),\n(5970, 63363, 'sixty-three thousand three hundred sixty-three'),\n(5971, 29841, 'twenty-nine thousand eight hundred forty-one'),\n(5972, 4359, 'four thousand three hundred fifty-nine'),\n(5973, 22187, 'twenty-two thousand one hundred eighty-seven'),\n(5974, 5382, 'five thousand three hundred eighty-two'),\n(5975, 33673, 'thirty-three thousand six hundred seventy-three'),\n(5976, 66926, 'sixty-six thousand nine hundred twenty-six'),\n(5977, 43729, 'forty-three thousand seven hundred twenty-nine'),\n(5978, 51857, 'fifty-one thousand eight hundred fifty-seven'),\n(5979, 5973, 'five thousand nine hundred seventy-three'),\n(5980, 48347, 'forty-eight thousand three hundred forty-seven'),\n(5981, 49285, 'forty-nine thousand two hundred eighty-five'),\n(5982, 46546, 'forty-six thousand five hundred forty-six'),\n(5983, 27825, 'twenty-seven thousand eight hundred twenty-five'),\n(5984, 44198, 'forty-four thousand one hundred ninety-eight'),\n(5985, 60686, 'sixty thousand six hundred eighty-six'),\n(5986, 4840, 'four thousand eight hundred forty'),\n(5987, 50882, 'fifty thousand eight hundred eighty-two'),\n(5988, 59679, 'fifty-nine thousand six hundred seventy-nine'),\n(5989, 49542, 'forty-nine thousand five hundred forty-two'),\n(5990, 35414, 'thirty-five thousand four hundred fourteen'),\n(5991, 70416, 'seventy thousand four hundred sixteen'),\n(5992, 94475, 'ninety-four thousand four hundred seventy-five'),\n(5993, 16106, 'sixteen thousand one hundred six'),\n(5994, 8453, 'eight thousand four hundred fifty-three'),\n(5995, 98273, 'ninety-eight thousand two hundred seventy-three'),\n(5996, 29797, 'twenty-nine thousand seven hundred ninety-seven'),\n(5997, 68834, 'sixty-eight thousand eight hundred thirty-four'),\n(5998, 89478, 'eighty-nine thousand four hundred seventy-eight'),\n(5999, 54162, 'fifty-four thousand one hundred sixty-two'),\n(6000, 24008, 'twenty-four thousand eight'),\n(6001, 2307, 'two thousand three hundred seven'),\n(6002, 34992, 'thirty-four thousand nine hundred ninety-two'),\n(6003, 36018, 'thirty-six thousand eighteen'),\n(6004, 29374, 'twenty-nine thousand three hundred seventy-four'),\n(6005, 52748, 'fifty-two thousand seven hundred forty-eight'),\n(6006, 53521, 'fifty-three thousand five hundred twenty-one'),\n(6007, 74448, 'seventy-four thousand four hundred forty-eight'),\n(6008, 61693, 'sixty-one thousand six hundred ninety-three'),\n(6009, 35803, 'thirty-five thousand eight hundred three'),\n(6010, 80114, 'eighty thousand one hundred fourteen'),\n(6011, 28576, 'twenty-eight thousand five hundred seventy-six'),\n(6012, 30343, 'thirty thousand three hundred forty-three'),\n(6013, 55580, 'fifty-five thousand five hundred eighty'),\n(6014, 46399, 'forty-six thousand three hundred ninety-nine'),\n(6015, 17631, 'seventeen thousand six hundred thirty-one'),\n(6016, 83831, 'eighty-three thousand eight hundred thirty-one'),\n(6017, 85809, 'eighty-five thousand eight hundred nine'),\n(6018, 70343, 'seventy thousand three hundred forty-three'),\n(6019, 10277, 'ten thousand two hundred seventy-seven'),\n(6020, 22823, 'twenty-two thousand eight hundred twenty-three'),\n(6021, 16339, 'sixteen thousand three hundred thirty-nine'),\n(6022, 29104, 'twenty-nine thousand one hundred four'),\n(6023, 19441, 'nineteen thousand four hundred forty-one'),\n(6024, 67324, 'sixty-seven thousand three hundred twenty-four'),\n(6025, 94375, 'ninety-four thousand three hundred seventy-five'),\n(6026, 24698, 'twenty-four thousand six hundred ninety-eight'),\n(6027, 23410, 'twenty-three thousand four hundred ten'),\n(6028, 65611, 'sixty-five thousand six hundred eleven'),\n(6029, 79272, 'seventy-nine thousand two hundred seventy-two'),\n(6030, 4992, 'four thousand nine hundred ninety-two'),\n(6031, 72564, 'seventy-two thousand five hundred sixty-four'),\n(6032, 48448, 'forty-eight thousand four hundred forty-eight'),\n(6033, 62748, 'sixty-two thousand seven hundred forty-eight'),\n(6034, 43446, 'forty-three thousand four hundred forty-six'),\n(6035, 44380, 'forty-four thousand three hundred eighty'),\n(6036, 94157, 'ninety-four thousand one hundred fifty-seven'),\n(6037, 92069, 'ninety-two thousand sixty-nine'),\n(6038, 17669, 'seventeen thousand six hundred sixty-nine'),\n(6039, 60076, 'sixty thousand seventy-six'),\n(6040, 6630, 'six thousand six hundred thirty'),\n(6041, 86668, 'eighty-six thousand six hundred sixty-eight'),\n(6042, 31435, 'thirty-one thousand four hundred thirty-five'),\n(6043, 41854, 'forty-one thousand eight hundred fifty-four'),\n(6044, 88936, 'eighty-eight thousand nine hundred thirty-six'),\n(6045, 72159, 'seventy-two thousand one hundred fifty-nine'),\n(6046, 77692, 'seventy-seven thousand six hundred ninety-two'),\n(6047, 45804, 'forty-five thousand eight hundred four'),\n(6048, 94112, 'ninety-four thousand one hundred twelve'),\n(6049, 42870, 'forty-two thousand eight hundred seventy'),\n(6050, 63661, 'sixty-three thousand six hundred sixty-one'),\n(6051, 58049, 'fifty-eight thousand forty-nine'),\n(6052, 6206, 'six thousand two hundred six'),\n(6053, 43765, 'forty-three thousand seven hundred sixty-five'),\n(6054, 3409, 'three thousand four hundred nine'),\n(6055, 93390, 'ninety-three thousand three hundred ninety'),\n(6056, 47959, 'forty-seven thousand nine hundred fifty-nine'),\n(6057, 47920, 'forty-seven thousand nine hundred twenty'),\n(6058, 35000, 'thirty-five thousand'),\n(6059, 72544, 'seventy-two thousand five hundred forty-four'),\n(6060, 53087, 'fifty-three thousand eighty-seven'),\n(6061, 51653, 'fifty-one thousand six hundred fifty-three'),\n(6062, 56876, 'fifty-six thousand eight hundred seventy-six'),\n(6063, 53639, 'fifty-three thousand six hundred thirty-nine'),\n(6064, 58465, 'fifty-eight thousand four hundred sixty-five'),\n(6065, 44217, 'forty-four thousand two hundred seventeen'),\n(6066, 95345, 'ninety-five thousand three hundred forty-five'),\n(6067, 11098, 'eleven thousand ninety-eight'),\n(6068, 35005, 'thirty-five thousand five'),\n(6069, 16216, 'sixteen thousand two hundred sixteen'),\n(6070, 78812, 'seventy-eight thousand eight hundred twelve'),\n(6071, 50748, 'fifty thousand seven hundred forty-eight'),\n(6072, 63169, 'sixty-three thousand one hundred sixty-nine'),\n(6073, 83759, 'eighty-three thousand seven hundred fifty-nine'),\n(6074, 17745, 'seventeen thousand seven hundred forty-five'),\n(6075, 94833, 'ninety-four thousand eight hundred thirty-three'),\n(6076, 10059, 'ten thousand fifty-nine'),\n(6077, 42643, 'forty-two thousand six hundred forty-three'),\n(6078, 77637, 'seventy-seven thousand six hundred thirty-seven'),\n(6079, 8609, 'eight thousand six hundred nine'),\n(6080, 11434, 'eleven thousand four hundred thirty-four'),\n(6081, 11045, 'eleven thousand forty-five'),\n(6082, 31353, 'thirty-one thousand three hundred fifty-three'),\n(6083, 7984, 'seven thousand nine hundred eighty-four'),\n(6084, 68189, 'sixty-eight thousand one hundred eighty-nine'),\n(6085, 91516, 'ninety-one thousand five hundred sixteen'),\n(6086, 50204, 'fifty thousand two hundred four'),\n(6087, 54992, 'fifty-four thousand nine hundred ninety-two'),\n(6088, 77329, 'seventy-seven thousand three hundred twenty-nine'),\n(6089, 32968, 'thirty-two thousand nine hundred sixty-eight'),\n(6090, 63719, 'sixty-three thousand seven hundred nineteen'),\n(6091, 47702, 'forty-seven thousand seven hundred two'),\n(6092, 52202, 'fifty-two thousand two hundred two'),\n(6093, 59382, 'fifty-nine thousand three hundred eighty-two'),\n(6094, 59392, 'fifty-nine thousand three hundred ninety-two'),\n(6095, 81186, 'eighty-one thousand one hundred eighty-six'),\n(6096, 18689, 'eighteen thousand six hundred eighty-nine'),\n(6097, 69433, 'sixty-nine thousand four hundred thirty-three'),\n(6098, 128, 'one hundred twenty-eight'),\n(6099, 65627, 'sixty-five thousand six hundred twenty-seven'),\n(6100, 23807, 'twenty-three thousand eight hundred seven'),\n(6101, 43212, 'forty-three thousand two hundred twelve'),\n(6102, 84247, 'eighty-four thousand two hundred forty-seven'),\n(6103, 10001, 'ten thousand one'),\n(6104, 22817, 'twenty-two thousand eight hundred seventeen'),\n(6105, 10416, 'ten thousand four hundred sixteen'),\n(6106, 46219, 'forty-six thousand two hundred nineteen'),\n(6107, 4292, 'four thousand two hundred ninety-two'),\n(6108, 74762, 'seventy-four thousand seven hundred sixty-two'),\n(6109, 89807, 'eighty-nine thousand eight hundred seven'),\n(6110, 87879, 'eighty-seven thousand eight hundred seventy-nine'),\n(6111, 48862, 'forty-eight thousand eight hundred sixty-two'),\n(6112, 2206, 'two thousand two hundred six'),\n(6113, 49516, 'forty-nine thousand five hundred sixteen'),\n(6114, 22374, 'twenty-two thousand three hundred seventy-four'),\n(6115, 47633, 'forty-seven thousand six hundred thirty-three'),\n(6116, 12390, 'twelve thousand three hundred ninety'),\n(6117, 18380, 'eighteen thousand three hundred eighty'),\n(6118, 31722, 'thirty-one thousand seven hundred twenty-two'),\n(6119, 756, 'seven hundred fifty-six'),\n(6120, 73346, 'seventy-three thousand three hundred forty-six'),\n(6121, 33008, 'thirty-three thousand eight'),\n(6122, 18081, 'eighteen thousand eighty-one'),\n(6123, 79796, 'seventy-nine thousand seven hundred ninety-six'),\n(6124, 28515, 'twenty-eight thousand five hundred fifteen'),\n(6125, 48112, 'forty-eight thousand one hundred twelve'),\n(6126, 90871, 'ninety thousand eight hundred seventy-one'),\n(6127, 98029, 'ninety-eight thousand twenty-nine'),\n(6128, 66186, 'sixty-six thousand one hundred eighty-six'),\n(6129, 91369, 'ninety-one thousand three hundred sixty-nine'),\n(6130, 99314, 'ninety-nine thousand three hundred fourteen'),\n(6131, 71977, 'seventy-one thousand nine hundred seventy-seven'),\n(6132, 9013, 'nine thousand thirteen'),\n(6133, 9356, 'nine thousand three hundred fifty-six'),\n(6134, 76414, 'seventy-six thousand four hundred fourteen'),\n(6135, 4478, 'four thousand four hundred seventy-eight'),\n(6136, 35494, 'thirty-five thousand four hundred ninety-four'),\n(6137, 91433, 'ninety-one thousand four hundred thirty-three'),\n(6138, 94822, 'ninety-four thousand eight hundred twenty-two'),\n(6139, 22465, 'twenty-two thousand four hundred sixty-five'),\n(6140, 4709, 'four thousand seven hundred nine'),\n(6141, 60301, 'sixty thousand three hundred one'),\n(6142, 58405, 'fifty-eight thousand four hundred five'),\n(6143, 86106, 'eighty-six thousand one hundred six'),\n(6144, 30029, 'thirty thousand twenty-nine'),\n(6145, 29208, 'twenty-nine thousand two hundred eight'),\n(6146, 78173, 'seventy-eight thousand one hundred seventy-three'),\n(6147, 53904, 'fifty-three thousand nine hundred four'),\n(6148, 69034, 'sixty-nine thousand thirty-four'),\n(6149, 1334, 'one thousand three hundred thirty-four'),\n(6150, 34209, 'thirty-four thousand two hundred nine'),\n(6151, 79540, 'seventy-nine thousand five hundred forty'),\n(6152, 95094, 'ninety-five thousand ninety-four'),\n(6153, 13212, 'thirteen thousand two hundred twelve'),\n(6154, 5923, 'five thousand nine hundred twenty-three'),\n(6155, 86512, 'eighty-six thousand five hundred twelve'),\n(6156, 75022, 'seventy-five thousand twenty-two'),\n(6157, 6507, 'six thousand five hundred seven'),\n(6158, 61442, 'sixty-one thousand four hundred forty-two'),\n(6159, 59715, 'fifty-nine thousand seven hundred fifteen'),\n(6160, 25916, 'twenty-five thousand nine hundred sixteen'),\n(6161, 64017, 'sixty-four thousand seventeen'),\n(6162, 31489, 'thirty-one thousand four hundred eighty-nine'),\n(6163, 83785, 'eighty-three thousand seven hundred eighty-five'),\n(6164, 49350, 'forty-nine thousand three hundred fifty'),\n(6165, 20536, 'twenty thousand five hundred thirty-six'),\n(6166, 17509, 'seventeen thousand five hundred nine'),\n(6167, 74261, 'seventy-four thousand two hundred sixty-one'),\n(6168, 55840, 'fifty-five thousand eight hundred forty'),\n(6169, 77248, 'seventy-seven thousand two hundred forty-eight'),\n(6170, 58492, 'fifty-eight thousand four hundred ninety-two'),\n(6171, 27708, 'twenty-seven thousand seven hundred eight'),\n(6172, 69359, 'sixty-nine thousand three hundred fifty-nine'),\n(6173, 76926, 'seventy-six thousand nine hundred twenty-six'),\n(6174, 24775, 'twenty-four thousand seven hundred seventy-five'),\n(6175, 58389, 'fifty-eight thousand three hundred eighty-nine'),\n(6176, 11163, 'eleven thousand one hundred sixty-three'),\n(6177, 69285, 'sixty-nine thousand two hundred eighty-five'),\n(6178, 54425, 'fifty-four thousand four hundred twenty-five'),\n(6179, 30885, 'thirty thousand eight hundred eighty-five'),\n(6180, 32422, 'thirty-two thousand four hundred twenty-two'),\n(6181, 60603, 'sixty thousand six hundred three'),\n(6182, 20336, 'twenty thousand three hundred thirty-six'),\n(6183, 19036, 'nineteen thousand thirty-six'),\n(6184, 5828, 'five thousand eight hundred twenty-eight'),\n(6185, 92610, 'ninety-two thousand six hundred ten'),\n(6186, 18058, 'eighteen thousand fifty-eight'),\n(6187, 12805, 'twelve thousand eight hundred five'),\n(6188, 38273, 'thirty-eight thousand two hundred seventy-three'),\n(6189, 18651, 'eighteen thousand six hundred fifty-one'),\n(6190, 70334, 'seventy thousand three hundred thirty-four'),\n(6191, 52816, 'fifty-two thousand eight hundred sixteen'),\n(6192, 39924, 'thirty-nine thousand nine hundred twenty-four'),\n(6193, 61332, 'sixty-one thousand three hundred thirty-two'),\n(6194, 79356, 'seventy-nine thousand three hundred fifty-six'),\n(6195, 91286, 'ninety-one thousand two hundred eighty-six'),\n(6196, 69651, 'sixty-nine thousand six hundred fifty-one'),\n(6197, 13648, 'thirteen thousand six hundred forty-eight'),\n(6198, 51180, 'fifty-one thousand one hundred eighty'),\n(6199, 55062, 'fifty-five thousand sixty-two'),\n(6200, 4308, 'four thousand three hundred eight'),\n(6201, 15057, 'fifteen thousand fifty-seven'),\n(6202, 47894, 'forty-seven thousand eight hundred ninety-four'),\n(6203, 10893, 'ten thousand eight hundred ninety-three'),\n(6204, 87226, 'eighty-seven thousand two hundred twenty-six'),\n(6205, 85207, 'eighty-five thousand two hundred seven'),\n(6206, 43006, 'forty-three thousand six'),\n(6207, 54781, 'fifty-four thousand seven hundred eighty-one'),\n(6208, 65498, 'sixty-five thousand four hundred ninety-eight'),\n(6209, 85704, 'eighty-five thousand seven hundred four'),\n(6210, 53787, 'fifty-three thousand seven hundred eighty-seven'),\n(6211, 77261, 'seventy-seven thousand two hundred sixty-one'),\n(6212, 18604, 'eighteen thousand six hundred four'),\n(6213, 40460, 'forty thousand four hundred sixty'),\n(6214, 18314, 'eighteen thousand three hundred fourteen'),\n(6215, 26310, 'twenty-six thousand three hundred ten'),\n(6216, 2686, 'two thousand six hundred eighty-six'),\n(6217, 38087, 'thirty-eight thousand eighty-seven'),\n(6218, 69619, 'sixty-nine thousand six hundred nineteen'),\n(6219, 26013, 'twenty-six thousand thirteen'),\n(6220, 50610, 'fifty thousand six hundred ten'),\n(6221, 85714, 'eighty-five thousand seven hundred fourteen'),\n(6222, 23353, 'twenty-three thousand three hundred fifty-three'),\n(6223, 62157, 'sixty-two thousand one hundred fifty-seven'),\n(6224, 37591, 'thirty-seven thousand five hundred ninety-one'),\n(6225, 78047, 'seventy-eight thousand forty-seven'),\n(6226, 62726, 'sixty-two thousand seven hundred twenty-six'),\n(6227, 60641, 'sixty thousand six hundred forty-one'),\n(6228, 97825, 'ninety-seven thousand eight hundred twenty-five'),\n(6229, 2607, 'two thousand six hundred seven'),\n(6230, 8014, 'eight thousand fourteen'),\n(6231, 46466, 'forty-six thousand four hundred sixty-six'),\n(6232, 57806, 'fifty-seven thousand eight hundred six'),\n(6233, 23166, 'twenty-three thousand one hundred sixty-six'),\n(6234, 92280, 'ninety-two thousand two hundred eighty'),\n(6235, 27927, 'twenty-seven thousand nine hundred twenty-seven'),\n(6236, 25297, 'twenty-five thousand two hundred ninety-seven'),\n(6237, 43535, 'forty-three thousand five hundred thirty-five'),\n(6238, 63253, 'sixty-three thousand two hundred fifty-three'),\n(6239, 69290, 'sixty-nine thousand two hundred ninety'),\n(6240, 63322, 'sixty-three thousand three hundred twenty-two'),\n(6241, 464, 'four hundred sixty-four'),\n(6242, 50530, 'fifty thousand five hundred thirty'),\n(6243, 74350, 'seventy-four thousand three hundred fifty'),\n(6244, 17144, 'seventeen thousand one hundred forty-four'),\n(6245, 44542, 'forty-four thousand five hundred forty-two'),\n(6246, 99653, 'ninety-nine thousand six hundred fifty-three'),\n(6247, 86525, 'eighty-six thousand five hundred twenty-five'),\n(6248, 42008, 'forty-two thousand eight'),\n(6249, 15948, 'fifteen thousand nine hundred forty-eight'),\n(6250, 74661, 'seventy-four thousand six hundred sixty-one'),\n(6251, 77191, 'seventy-seven thousand one hundred ninety-one'),\n(6252, 60985, 'sixty thousand nine hundred eighty-five'),\n(6253, 3124, 'three thousand one hundred twenty-four'),\n(6254, 19478, 'nineteen thousand four hundred seventy-eight'),\n(6255, 33284, 'thirty-three thousand two hundred eighty-four'),\n(6256, 29071, 'twenty-nine thousand seventy-one'),\n(6257, 71597, 'seventy-one thousand five hundred ninety-seven'),\n(6258, 28837, 'twenty-eight thousand eight hundred thirty-seven'),\n(6259, 80589, 'eighty thousand five hundred eighty-nine'),\n(6260, 39642, 'thirty-nine thousand six hundred forty-two'),\n(6261, 1625, 'one thousand six hundred twenty-five'),\n(6262, 27144, 'twenty-seven thousand one hundred forty-four'),\n(6263, 45420, 'forty-five thousand four hundred twenty'),\n(6264, 40640, 'forty thousand six hundred forty'),\n(6265, 28218, 'twenty-eight thousand two hundred eighteen'),\n(6266, 15926, 'fifteen thousand nine hundred twenty-six'),\n(6267, 5943, 'five thousand nine hundred forty-three'),\n(6268, 13862, 'thirteen thousand eight hundred sixty-two'),\n(6269, 45206, 'forty-five thousand two hundred six'),\n(6270, 17061, 'seventeen thousand sixty-one'),\n(6271, 75997, 'seventy-five thousand nine hundred ninety-seven'),\n(6272, 79348, 'seventy-nine thousand three hundred forty-eight'),\n(6273, 67597, 'sixty-seven thousand five hundred ninety-seven'),\n(6274, 98651, 'ninety-eight thousand six hundred fifty-one'),\n(6275, 13566, 'thirteen thousand five hundred sixty-six'),\n(6276, 61555, 'sixty-one thousand five hundred fifty-five'),\n(6277, 14152, 'fourteen thousand one hundred fifty-two'),\n(6278, 39931, 'thirty-nine thousand nine hundred thirty-one'),\n(6279, 63366, 'sixty-three thousand three hundred sixty-six'),\n(6280, 38078, 'thirty-eight thousand seventy-eight'),\n(6281, 63552, 'sixty-three thousand five hundred fifty-two'),\n(6282, 24355, 'twenty-four thousand three hundred fifty-five'),\n(6283, 76778, 'seventy-six thousand seven hundred seventy-eight'),\n(6284, 37704, 'thirty-seven thousand seven hundred four'),\n(6285, 67452, 'sixty-seven thousand four hundred fifty-two'),\n(6286, 10168, 'ten thousand one hundred sixty-eight'),\n(6287, 40233, 'forty thousand two hundred thirty-three'),\n(6288, 57993, 'fifty-seven thousand nine hundred ninety-three'),\n(6289, 44453, 'forty-four thousand four hundred fifty-three'),\n(6290, 45171, 'forty-five thousand one hundred seventy-one'),\n(6291, 98533, 'ninety-eight thousand five hundred thirty-three'),\n(6292, 64136, 'sixty-four thousand one hundred thirty-six'),\n(6293, 17545, 'seventeen thousand five hundred forty-five'),\n(6294, 34776, 'thirty-four thousand seven hundred seventy-six'),\n(6295, 44914, 'forty-four thousand nine hundred fourteen'),\n(6296, 2385, 'two thousand three hundred eighty-five'),\n(6297, 3427, 'three thousand four hundred twenty-seven'),\n(6298, 90251, 'ninety thousand two hundred fifty-one'),\n(6299, 48179, 'forty-eight thousand one hundred seventy-nine'),\n(6300, 23545, 'twenty-three thousand five hundred forty-five'),\n(6301, 91963, 'ninety-one thousand nine hundred sixty-three'),\n(6302, 36205, 'thirty-six thousand two hundred five'),\n(6303, 39435, 'thirty-nine thousand four hundred thirty-five'),\n(6304, 29800, 'twenty-nine thousand eight hundred'),\n(6305, 96509, 'ninety-six thousand five hundred nine'),\n(6306, 57204, 'fifty-seven thousand two hundred four'),\n(6307, 79563, 'seventy-nine thousand five hundred sixty-three'),\n(6308, 80867, 'eighty thousand eight hundred sixty-seven'),\n(6309, 45072, 'forty-five thousand seventy-two'),\n(6310, 65593, 'sixty-five thousand five hundred ninety-three'),\n(6311, 80577, 'eighty thousand five hundred seventy-seven'),\n(6312, 70703, 'seventy thousand seven hundred three'),\n(6313, 55931, 'fifty-five thousand nine hundred thirty-one'),\n(6314, 81354, 'eighty-one thousand three hundred fifty-four'),\n(6315, 91349, 'ninety-one thousand three hundred forty-nine'),\n(6316, 48785, 'forty-eight thousand seven hundred eighty-five'),\n(6317, 34562, 'thirty-four thousand five hundred sixty-two'),\n(6318, 22034, 'twenty-two thousand thirty-four'),\n(6319, 69561, 'sixty-nine thousand five hundred sixty-one'),\n(6320, 13635, 'thirteen thousand six hundred thirty-five'),\n(6321, 37105, 'thirty-seven thousand one hundred five'),\n(6322, 78774, 'seventy-eight thousand seven hundred seventy-four'),\n(6323, 75724, 'seventy-five thousand seven hundred twenty-four'),\n(6324, 70917, 'seventy thousand nine hundred seventeen'),\n(6325, 7787, 'seven thousand seven hundred eighty-seven'),\n(6326, 92398, 'ninety-two thousand three hundred ninety-eight'),\n(6327, 11381, 'eleven thousand three hundred eighty-one'),\n(6328, 75170, 'seventy-five thousand one hundred seventy'),\n(6329, 28232, 'twenty-eight thousand two hundred thirty-two'),\n(6330, 90797, 'ninety thousand seven hundred ninety-seven'),\n(6331, 47540, 'forty-seven thousand five hundred forty'),\n(6332, 663, 'six hundred sixty-three'),\n(6333, 33441, 'thirty-three thousand four hundred forty-one'),\n(6334, 13129, 'thirteen thousand one hundred twenty-nine'),\n(6335, 16111, 'sixteen thousand one hundred eleven'),\n(6336, 80935, 'eighty thousand nine hundred thirty-five'),\n(6337, 36369, 'thirty-six thousand three hundred sixty-nine'),\n(6338, 2929, 'two thousand nine hundred twenty-nine'),\n(6339, 42061, 'forty-two thousand sixty-one'),\n(6340, 14756, 'fourteen thousand seven hundred fifty-six'),\n(6341, 36945, 'thirty-six thousand nine hundred forty-five'),\n(6342, 45863, 'forty-five thousand eight hundred sixty-three'),\n(6343, 49551, 'forty-nine thousand five hundred fifty-one'),\n(6344, 81406, 'eighty-one thousand four hundred six'),\n(6345, 33015, 'thirty-three thousand fifteen'),\n(6346, 89048, 'eighty-nine thousand forty-eight'),\n(6347, 85800, 'eighty-five thousand eight hundred'),\n(6348, 56357, 'fifty-six thousand three hundred fifty-seven'),\n(6349, 60330, 'sixty thousand three hundred thirty'),\n(6350, 59368, 'fifty-nine thousand three hundred sixty-eight'),\n(6351, 7116, 'seven thousand one hundred sixteen'),\n(6352, 51716, 'fifty-one thousand seven hundred sixteen'),\n(6353, 30310, 'thirty thousand three hundred ten'),\n(6354, 97685, 'ninety-seven thousand six hundred eighty-five'),\n(6355, 10474, 'ten thousand four hundred seventy-four'),\n(6356, 10999, 'ten thousand nine hundred ninety-nine'),\n(6357, 83964, 'eighty-three thousand nine hundred sixty-four'),\n(6358, 41674, 'forty-one thousand six hundred seventy-four'),\n(6359, 58272, 'fifty-eight thousand two hundred seventy-two'),\n(6360, 30137, 'thirty thousand one hundred thirty-seven'),\n(6361, 58812, 'fifty-eight thousand eight hundred twelve'),\n(6362, 25428, 'twenty-five thousand four hundred twenty-eight'),\n(6363, 969, 'nine hundred sixty-nine'),\n(6364, 78111, 'seventy-eight thousand one hundred eleven'),\n(6365, 36351, 'thirty-six thousand three hundred fifty-one'),\n(6366, 83450, 'eighty-three thousand four hundred fifty'),\n(6367, 37254, 'thirty-seven thousand two hundred fifty-four'),\n(6368, 31765, 'thirty-one thousand seven hundred sixty-five'),\n(6369, 35840, 'thirty-five thousand eight hundred forty'),\n(6370, 86235, 'eighty-six thousand two hundred thirty-five'),\n(6371, 46187, 'forty-six thousand one hundred eighty-seven'),\n(6372, 98450, 'ninety-eight thousand four hundred fifty'),\n(6373, 36362, 'thirty-six thousand three hundred sixty-two'),\n(6374, 29935, 'twenty-nine thousand nine hundred thirty-five'),\n(6375, 44612, 'forty-four thousand six hundred twelve'),\n(6376, 29621, 'twenty-nine thousand six hundred twenty-one'),\n(6377, 53245, 'fifty-three thousand two hundred forty-five'),\n(6378, 50150, 'fifty thousand one hundred fifty'),\n(6379, 55048, 'fifty-five thousand forty-eight'),\n(6380, 86635, 'eighty-six thousand six hundred thirty-five'),\n(6381, 22673, 'twenty-two thousand six hundred seventy-three'),\n(6382, 67513, 'sixty-seven thousand five hundred thirteen'),\n(6383, 11322, 'eleven thousand three hundred twenty-two'),\n(6384, 81429, 'eighty-one thousand four hundred twenty-nine'),\n(6385, 77694, 'seventy-seven thousand six hundred ninety-four'),\n(6386, 26955, 'twenty-six thousand nine hundred fifty-five'),\n(6387, 50624, 'fifty thousand six hundred twenty-four'),\n(6388, 88337, 'eighty-eight thousand three hundred thirty-seven'),\n(6389, 74642, 'seventy-four thousand six hundred forty-two'),\n(6390, 25409, 'twenty-five thousand four hundred nine'),\n(6391, 85246, 'eighty-five thousand two hundred forty-six'),\n(6392, 39308, 'thirty-nine thousand three hundred eight'),\n(6393, 88919, 'eighty-eight thousand nine hundred nineteen'),\n(6394, 53281, 'fifty-three thousand two hundred eighty-one'),\n(6395, 98267, 'ninety-eight thousand two hundred sixty-seven'),\n(6396, 94201, 'ninety-four thousand two hundred one'),\n(6397, 21657, 'twenty-one thousand six hundred fifty-seven'),\n(6398, 94999, 'ninety-four thousand nine hundred ninety-nine'),\n(6399, 88766, 'eighty-eight thousand seven hundred sixty-six'),\n(6400, 31558, 'thirty-one thousand five hundred fifty-eight'),\n(6401, 54436, 'fifty-four thousand four hundred thirty-six'),\n(6402, 2398, 'two thousand three hundred ninety-eight'),\n(6403, 78834, 'seventy-eight thousand eight hundred thirty-four'),\n(6404, 31629, 'thirty-one thousand six hundred twenty-nine'),\n(6405, 84925, 'eighty-four thousand nine hundred twenty-five'),\n(6406, 39224, 'thirty-nine thousand two hundred twenty-four'),\n(6407, 46854, 'forty-six thousand eight hundred fifty-four'),\n(6408, 85988, 'eighty-five thousand nine hundred eighty-eight'),\n(6409, 96730, 'ninety-six thousand seven hundred thirty'),\n(6410, 81985, 'eighty-one thousand nine hundred eighty-five'),\n(6411, 28446, 'twenty-eight thousand four hundred forty-six'),\n(6412, 92945, 'ninety-two thousand nine hundred forty-five'),\n(6413, 42122, 'forty-two thousand one hundred twenty-two'),\n(6414, 84171, 'eighty-four thousand one hundred seventy-one'),\n(6415, 23582, 'twenty-three thousand five hundred eighty-two'),\n(6416, 32564, 'thirty-two thousand five hundred sixty-four'),\n(6417, 34568, 'thirty-four thousand five hundred sixty-eight'),\n(6418, 84656, 'eighty-four thousand six hundred fifty-six'),\n(6419, 48291, 'forty-eight thousand two hundred ninety-one'),\n(6420, 87243, 'eighty-seven thousand two hundred forty-three'),\n(6421, 50125, 'fifty thousand one hundred twenty-five'),\n(6422, 90477, 'ninety thousand four hundred seventy-seven'),\n(6423, 36164, 'thirty-six thousand one hundred sixty-four'),\n(6424, 23696, 'twenty-three thousand six hundred ninety-six'),\n(6425, 33040, 'thirty-three thousand forty'),\n(6426, 72836, 'seventy-two thousand eight hundred thirty-six'),\n(6427, 86980, 'eighty-six thousand nine hundred eighty'),\n(6428, 40623, 'forty thousand six hundred twenty-three'),\n(6429, 91390, 'ninety-one thousand three hundred ninety'),\n(6430, 84724, 'eighty-four thousand seven hundred twenty-four'),\n(6431, 35155, 'thirty-five thousand one hundred fifty-five'),\n(6432, 34401, 'thirty-four thousand four hundred one'),\n(6433, 33430, 'thirty-three thousand four hundred thirty'),\n(6434, 14729, 'fourteen thousand seven hundred twenty-nine'),\n(6435, 52049, 'fifty-two thousand forty-nine'),\n(6436, 86968, 'eighty-six thousand nine hundred sixty-eight'),\n(6437, 31113, 'thirty-one thousand one hundred thirteen'),\n(6438, 62694, 'sixty-two thousand six hundred ninety-four'),\n(6439, 59821, 'fifty-nine thousand eight hundred twenty-one'),\n(6440, 3480, 'three thousand four hundred eighty'),\n(6441, 30845, 'thirty thousand eight hundred forty-five'),\n(6442, 31999, 'thirty-one thousand nine hundred ninety-nine'),\n(6443, 65500, 'sixty-five thousand five hundred'),\n(6444, 56122, 'fifty-six thousand one hundred twenty-two'),\n(6445, 19409, 'nineteen thousand four hundred nine'),\n(6446, 59094, 'fifty-nine thousand ninety-four'),\n(6447, 61425, 'sixty-one thousand four hundred twenty-five'),\n(6448, 90974, 'ninety thousand nine hundred seventy-four'),\n(6449, 4160, 'four thousand one hundred sixty'),\n(6450, 25228, 'twenty-five thousand two hundred twenty-eight'),\n(6451, 88487, 'eighty-eight thousand four hundred eighty-seven'),\n(6452, 44319, 'forty-four thousand three hundred nineteen'),\n(6453, 71594, 'seventy-one thousand five hundred ninety-four'),\n(6454, 29525, 'twenty-nine thousand five hundred twenty-five'),\n(6455, 96270, 'ninety-six thousand two hundred seventy'),\n(6456, 71824, 'seventy-one thousand eight hundred twenty-four'),\n(6457, 63054, 'sixty-three thousand fifty-four'),\n(6458, 667, 'six hundred sixty-seven'),\n(6459, 87725, 'eighty-seven thousand seven hundred twenty-five'),\n(6460, 7174, 'seven thousand one hundred seventy-four'),\n(6461, 64534, 'sixty-four thousand five hundred thirty-four'),\n(6462, 72956, 'seventy-two thousand nine hundred fifty-six'),\n(6463, 28646, 'twenty-eight thousand six hundred forty-six'),\n(6464, 9232, 'nine thousand two hundred thirty-two'),\n(6465, 82555, 'eighty-two thousand five hundred fifty-five'),\n(6466, 30862, 'thirty thousand eight hundred sixty-two'),\n(6467, 18916, 'eighteen thousand nine hundred sixteen'),\n(6468, 74101, 'seventy-four thousand one hundred one'),\n(6469, 22953, 'twenty-two thousand nine hundred fifty-three'),\n(6470, 97282, 'ninety-seven thousand two hundred eighty-two'),\n(6471, 68523, 'sixty-eight thousand five hundred twenty-three'),\n(6472, 83312, 'eighty-three thousand three hundred twelve'),\n(6473, 87909, 'eighty-seven thousand nine hundred nine'),\n(6474, 58630, 'fifty-eight thousand six hundred thirty'),\n(6475, 89486, 'eighty-nine thousand four hundred eighty-six'),\n(6476, 61681, 'sixty-one thousand six hundred eighty-one'),\n(6477, 35167, 'thirty-five thousand one hundred sixty-seven'),\n(6478, 68894, 'sixty-eight thousand eight hundred ninety-four'),\n(6479, 25761, 'twenty-five thousand seven hundred sixty-one'),\n(6480, 25405, 'twenty-five thousand four hundred five'),\n(6481, 21503, 'twenty-one thousand five hundred three'),\n(6482, 83719, 'eighty-three thousand seven hundred nineteen'),\n(6483, 66635, 'sixty-six thousand six hundred thirty-five'),\n(6484, 57844, 'fifty-seven thousand eight hundred forty-four'),\n(6485, 38179, 'thirty-eight thousand one hundred seventy-nine'),\n(6486, 53271, 'fifty-three thousand two hundred seventy-one'),\n(6487, 79881, 'seventy-nine thousand eight hundred eighty-one'),\n(6488, 14889, 'fourteen thousand eight hundred eighty-nine'),\n(6489, 67614, 'sixty-seven thousand six hundred fourteen'),\n(6490, 97143, 'ninety-seven thousand one hundred forty-three'),\n(6491, 17704, 'seventeen thousand seven hundred four'),\n(6492, 75236, 'seventy-five thousand two hundred thirty-six'),\n(6493, 9330, 'nine thousand three hundred thirty'),\n(6494, 79717, 'seventy-nine thousand seven hundred seventeen'),\n(6495, 25511, 'twenty-five thousand five hundred eleven'),\n(6496, 79585, 'seventy-nine thousand five hundred eighty-five'),\n(6497, 18357, 'eighteen thousand three hundred fifty-seven'),\n(6498, 80700, 'eighty thousand seven hundred'),\n(6499, 34828, 'thirty-four thousand eight hundred twenty-eight'),\n(6500, 98144, 'ninety-eight thousand one hundred forty-four'),\n(6501, 90813, 'ninety thousand eight hundred thirteen'),\n(6502, 96512, 'ninety-six thousand five hundred twelve'),\n(6503, 30119, 'thirty thousand one hundred nineteen'),\n(6504, 17465, 'seventeen thousand four hundred sixty-five'),\n(6505, 78894, 'seventy-eight thousand eight hundred ninety-four'),\n(6506, 99059, 'ninety-nine thousand fifty-nine'),\n(6507, 74179, 'seventy-four thousand one hundred seventy-nine'),\n(6508, 40283, 'forty thousand two hundred eighty-three'),\n(6509, 36084, 'thirty-six thousand eighty-four'),\n(6510, 25931, 'twenty-five thousand nine hundred thirty-one'),\n(6511, 15410, 'fifteen thousand four hundred ten'),\n(6512, 36549, 'thirty-six thousand five hundred forty-nine'),\n(6513, 64300, 'sixty-four thousand three hundred'),\n(6514, 3839, 'three thousand eight hundred thirty-nine'),\n(6515, 49750, 'forty-nine thousand seven hundred fifty'),\n(6516, 15951, 'fifteen thousand nine hundred fifty-one'),\n(6517, 12595, 'twelve thousand five hundred ninety-five'),\n(6518, 19644, 'nineteen thousand six hundred forty-four'),\n(6519, 78167, 'seventy-eight thousand one hundred sixty-seven'),\n(6520, 51664, 'fifty-one thousand six hundred sixty-four'),\n(6521, 33464, 'thirty-three thousand four hundred sixty-four'),\n(6522, 53416, 'fifty-three thousand four hundred sixteen'),\n(6523, 6901, 'six thousand nine hundred one'),\n(6524, 3388, 'three thousand three hundred eighty-eight'),\n(6525, 55829, 'fifty-five thousand eight hundred twenty-nine'),\n(6526, 84538, 'eighty-four thousand five hundred thirty-eight'),\n(6527, 81904, 'eighty-one thousand nine hundred four'),\n(6528, 81219, 'eighty-one thousand two hundred nineteen'),\n(6529, 49076, 'forty-nine thousand seventy-six'),\n(6530, 70818, 'seventy thousand eight hundred eighteen'),\n(6531, 71645, 'seventy-one thousand six hundred forty-five'),\n(6532, 56341, 'fifty-six thousand three hundred forty-one'),\n(6533, 8023, 'eight thousand twenty-three'),\n(6534, 91055, 'ninety-one thousand fifty-five'),\n(6535, 97901, 'ninety-seven thousand nine hundred one'),\n(6536, 7469, 'seven thousand four hundred sixty-nine'),\n(6537, 22260, 'twenty-two thousand two hundred sixty'),\n(6538, 85026, 'eighty-five thousand twenty-six'),\n(6539, 11137, 'eleven thousand one hundred thirty-seven'),\n(6540, 5931, 'five thousand nine hundred thirty-one'),\n(6541, 25921, 'twenty-five thousand nine hundred twenty-one'),\n(6542, 29376, 'twenty-nine thousand three hundred seventy-six'),\n(6543, 13252, 'thirteen thousand two hundred fifty-two'),\n(6544, 98943, 'ninety-eight thousand nine hundred forty-three'),\n(6545, 75499, 'seventy-five thousand four hundred ninety-nine'),\n(6546, 91582, 'ninety-one thousand five hundred eighty-two'),\n(6547, 3533, 'three thousand five hundred thirty-three'),\n(6548, 269, 'two hundred sixty-nine'),\n(6549, 51498, 'fifty-one thousand four hundred ninety-eight'),\n(6550, 48037, 'forty-eight thousand thirty-seven'),\n(6551, 77894, 'seventy-seven thousand eight hundred ninety-four'),\n(6552, 28956, 'twenty-eight thousand nine hundred fifty-six'),\n(6553, 91318, 'ninety-one thousand three hundred eighteen'),\n(6554, 76032, 'seventy-six thousand thirty-two'),\n(6555, 65407, 'sixty-five thousand four hundred seven'),\n(6556, 10141, 'ten thousand one hundred forty-one'),\n(6557, 25177, 'twenty-five thousand one hundred seventy-seven'),\n(6558, 39927, 'thirty-nine thousand nine hundred twenty-seven'),\n(6559, 93976, 'ninety-three thousand nine hundred seventy-six'),\n(6560, 17883, 'seventeen thousand eight hundred eighty-three'),\n(6561, 83992, 'eighty-three thousand nine hundred ninety-two'),\n(6562, 70612, 'seventy thousand six hundred twelve'),\n(6563, 63063, 'sixty-three thousand sixty-three'),\n(6564, 84038, 'eighty-four thousand thirty-eight'),\n(6565, 88573, 'eighty-eight thousand five hundred seventy-three'),\n(6566, 14007, 'fourteen thousand seven'),\n(6567, 20355, 'twenty thousand three hundred fifty-five'),\n(6568, 88805, 'eighty-eight thousand eight hundred five'),\n(6569, 74562, 'seventy-four thousand five hundred sixty-two'),\n(6570, 29439, 'twenty-nine thousand four hundred thirty-nine'),\n(6571, 96238, 'ninety-six thousand two hundred thirty-eight'),\n(6572, 69175, 'sixty-nine thousand one hundred seventy-five'),\n(6573, 98109, 'ninety-eight thousand one hundred nine'),\n(6574, 32877, 'thirty-two thousand eight hundred seventy-seven'),\n(6575, 19990, 'nineteen thousand nine hundred ninety'),\n(6576, 59341, 'fifty-nine thousand three hundred forty-one'),\n(6577, 94034, 'ninety-four thousand thirty-four'),\n(6578, 66816, 'sixty-six thousand eight hundred sixteen'),\n(6579, 1549, 'one thousand five hundred forty-nine'),\n(6580, 71258, 'seventy-one thousand two hundred fifty-eight'),\n(6581, 12978, 'twelve thousand nine hundred seventy-eight'),\n(6582, 23457, 'twenty-three thousand four hundred fifty-seven'),\n(6583, 51508, 'fifty-one thousand five hundred eight'),\n(6584, 35817, 'thirty-five thousand eight hundred seventeen'),\n(6585, 74355, 'seventy-four thousand three hundred fifty-five'),\n(6586, 21771, 'twenty-one thousand seven hundred seventy-one'),\n(6587, 21806, 'twenty-one thousand eight hundred six'),\n(6588, 50591, 'fifty thousand five hundred ninety-one'),\n(6589, 81906, 'eighty-one thousand nine hundred six'),\n(6590, 21753, 'twenty-one thousand seven hundred fifty-three'),\n(6591, 76454, 'seventy-six thousand four hundred fifty-four'),\n(6592, 97959, 'ninety-seven thousand nine hundred fifty-nine'),\n(6593, 19861, 'nineteen thousand eight hundred sixty-one'),\n(6594, 74155, 'seventy-four thousand one hundred fifty-five'),\n(6595, 51804, 'fifty-one thousand eight hundred four'),\n(6596, 26162, 'twenty-six thousand one hundred sixty-two'),\n(6597, 27725, 'twenty-seven thousand seven hundred twenty-five'),\n(6598, 75275, 'seventy-five thousand two hundred seventy-five'),\n(6599, 28772, 'twenty-eight thousand seven hundred seventy-two'),\n(6600, 12111, 'twelve thousand one hundred eleven'),\n(6601, 86492, 'eighty-six thousand four hundred ninety-two'),\n(6602, 68872, 'sixty-eight thousand eight hundred seventy-two'),\n(6603, 96635, 'ninety-six thousand six hundred thirty-five'),\n(6604, 24530, 'twenty-four thousand five hundred thirty'),\n(6605, 52095, 'fifty-two thousand ninety-five'),\n(6606, 66430, 'sixty-six thousand four hundred thirty'),\n(6607, 98708, 'ninety-eight thousand seven hundred eight'),\n(6608, 81032, 'eighty-one thousand thirty-two'),\n(6609, 46274, 'forty-six thousand two hundred seventy-four'),\n(6610, 35214, 'thirty-five thousand two hundred fourteen'),\n(6611, 25329, 'twenty-five thousand three hundred twenty-nine'),\n(6612, 89958, 'eighty-nine thousand nine hundred fifty-eight'),\n(6613, 56115, 'fifty-six thousand one hundred fifteen'),\n(6614, 1508, 'one thousand five hundred eight'),\n(6615, 66159, 'sixty-six thousand one hundred fifty-nine'),\n(6616, 94091, 'ninety-four thousand ninety-one'),\n(6617, 17931, 'seventeen thousand nine hundred thirty-one'),\n(6618, 50776, 'fifty thousand seven hundred seventy-six'),\n(6619, 51778, 'fifty-one thousand seven hundred seventy-eight'),\n(6620, 45754, 'forty-five thousand seven hundred fifty-four'),\n(6621, 1673, 'one thousand six hundred seventy-three'),\n(6622, 41574, 'forty-one thousand five hundred seventy-four'),\n(6623, 92439, 'ninety-two thousand four hundred thirty-nine'),\n(6624, 62210, 'sixty-two thousand two hundred ten'),\n(6625, 41533, 'forty-one thousand five hundred thirty-three'),\n(6626, 7793, 'seven thousand seven hundred ninety-three'),\n(6627, 36450, 'thirty-six thousand four hundred fifty'),\n(6628, 66720, 'sixty-six thousand seven hundred twenty'),\n(6629, 37480, 'thirty-seven thousand four hundred eighty'),\n(6630, 35630, 'thirty-five thousand six hundred thirty'),\n(6631, 75605, 'seventy-five thousand six hundred five'),\n(6632, 7352, 'seven thousand three hundred fifty-two'),\n(6633, 18710, 'eighteen thousand seven hundred ten'),\n(6634, 83097, 'eighty-three thousand ninety-seven'),\n(6635, 34271, 'thirty-four thousand two hundred seventy-one'),\n(6636, 71193, 'seventy-one thousand one hundred ninety-three'),\n(6637, 34249, 'thirty-four thousand two hundred forty-nine'),\n(6638, 79802, 'seventy-nine thousand eight hundred two'),\n(6639, 66577, 'sixty-six thousand five hundred seventy-seven'),\n(6640, 84774, 'eighty-four thousand seven hundred seventy-four'),\n(6641, 67257, 'sixty-seven thousand two hundred fifty-seven'),\n(6642, 55627, 'fifty-five thousand six hundred twenty-seven'),\n(6643, 46698, 'forty-six thousand six hundred ninety-eight'),\n(6644, 40160, 'forty thousand one hundred sixty'),\n(6645, 99461, 'ninety-nine thousand four hundred sixty-one'),\n(6646, 25300, 'twenty-five thousand three hundred'),\n(6647, 75747, 'seventy-five thousand seven hundred forty-seven'),\n(6648, 97000, 'ninety-seven thousand'),\n(6649, 84151, 'eighty-four thousand one hundred fifty-one'),\n(6650, 81183, 'eighty-one thousand one hundred eighty-three'),\n(6651, 65033, 'sixty-five thousand thirty-three'),\n(6652, 18443, 'eighteen thousand four hundred forty-three'),\n(6653, 93426, 'ninety-three thousand four hundred twenty-six'),\n(6654, 66274, 'sixty-six thousand two hundred seventy-four'),\n(6655, 71661, 'seventy-one thousand six hundred sixty-one'),\n(6656, 56328, 'fifty-six thousand three hundred twenty-eight'),\n(6657, 77429, 'seventy-seven thousand four hundred twenty-nine'),\n(6658, 49172, 'forty-nine thousand one hundred seventy-two'),\n(6659, 81563, 'eighty-one thousand five hundred sixty-three'),\n(6660, 15364, 'fifteen thousand three hundred sixty-four'),\n(6661, 40289, 'forty thousand two hundred eighty-nine'),\n(6662, 65642, 'sixty-five thousand six hundred forty-two'),\n(6663, 66392, 'sixty-six thousand three hundred ninety-two'),\n(6664, 39051, 'thirty-nine thousand fifty-one'),\n(6665, 50455, 'fifty thousand four hundred fifty-five'),\n(6666, 86017, 'eighty-six thousand seventeen'),\n(6667, 47725, 'forty-seven thousand seven hundred twenty-five'),\n(6668, 20778, 'twenty thousand seven hundred seventy-eight'),\n(6669, 26718, 'twenty-six thousand seven hundred eighteen'),\n(6670, 4198, 'four thousand one hundred ninety-eight'),\n(6671, 4003, 'four thousand three'),\n(6672, 71920, 'seventy-one thousand nine hundred twenty'),\n(6673, 23405, 'twenty-three thousand four hundred five'),\n(6674, 45877, 'forty-five thousand eight hundred seventy-seven'),\n(6675, 84650, 'eighty-four thousand six hundred fifty'),\n(6676, 92500, 'ninety-two thousand five hundred'),\n(6677, 33756, 'thirty-three thousand seven hundred fifty-six'),\n(6678, 16742, 'sixteen thousand seven hundred forty-two'),\n(6679, 69714, 'sixty-nine thousand seven hundred fourteen'),\n(6680, 58512, 'fifty-eight thousand five hundred twelve'),\n(6681, 48, 'forty-eight'),\n(6682, 68903, 'sixty-eight thousand nine hundred three'),\n(6683, 63885, 'sixty-three thousand eight hundred eighty-five'),\n(6684, 87619, 'eighty-seven thousand six hundred nineteen'),\n(6685, 93753, 'ninety-three thousand seven hundred fifty-three'),\n(6686, 62988, 'sixty-two thousand nine hundred eighty-eight'),\n(6687, 85093, 'eighty-five thousand ninety-three'),\n(6688, 76970, 'seventy-six thousand nine hundred seventy'),\n(6689, 77131, 'seventy-seven thousand one hundred thirty-one'),\n(6690, 80972, 'eighty thousand nine hundred seventy-two'),\n(6691, 94976, 'ninety-four thousand nine hundred seventy-six'),\n(6692, 91698, 'ninety-one thousand six hundred ninety-eight'),\n(6693, 40421, 'forty thousand four hundred twenty-one'),\n(6694, 20937, 'twenty thousand nine hundred thirty-seven'),\n(6695, 14829, 'fourteen thousand eight hundred twenty-nine'),\n(6696, 54118, 'fifty-four thousand one hundred eighteen'),\n(6697, 70324, 'seventy thousand three hundred twenty-four'),\n(6698, 69621, 'sixty-nine thousand six hundred twenty-one'),\n(6699, 79897, 'seventy-nine thousand eight hundred ninety-seven'),\n(6700, 26637, 'twenty-six thousand six hundred thirty-seven'),\n(6701, 4777, 'four thousand seven hundred seventy-seven'),\n(6702, 51548, 'fifty-one thousand five hundred forty-eight'),\n(6703, 90392, 'ninety thousand three hundred ninety-two'),\n(6704, 86107, 'eighty-six thousand one hundred seven'),\n(6705, 38488, 'thirty-eight thousand four hundred eighty-eight'),\n(6706, 44084, 'forty-four thousand eighty-four'),\n(6707, 25919, 'twenty-five thousand nine hundred nineteen'),\n(6708, 68527, 'sixty-eight thousand five hundred twenty-seven'),\n(6709, 65235, 'sixty-five thousand two hundred thirty-five'),\n(6710, 49374, 'forty-nine thousand three hundred seventy-four'),\n(6711, 67287, 'sixty-seven thousand two hundred eighty-seven'),\n(6712, 60554, 'sixty thousand five hundred fifty-four'),\n(6713, 61828, 'sixty-one thousand eight hundred twenty-eight'),\n(6714, 75101, 'seventy-five thousand one hundred one'),\n(6715, 58843, 'fifty-eight thousand eight hundred forty-three'),\n(6716, 7528, 'seven thousand five hundred twenty-eight'),\n(6717, 84326, 'eighty-four thousand three hundred twenty-six'),\n(6718, 26606, 'twenty-six thousand six hundred six'),\n(6719, 63107, 'sixty-three thousand one hundred seven'),\n(6720, 85704, 'eighty-five thousand seven hundred four'),\n(6721, 64592, 'sixty-four thousand five hundred ninety-two'),\n(6722, 4172, 'four thousand one hundred seventy-two'),\n(6723, 29724, 'twenty-nine thousand seven hundred twenty-four'),\n(6724, 66256, 'sixty-six thousand two hundred fifty-six'),\n(6725, 28574, 'twenty-eight thousand five hundred seventy-four'),\n(6726, 65820, 'sixty-five thousand eight hundred twenty'),\n(6727, 53820, 'fifty-three thousand eight hundred twenty'),\n(6728, 94194, 'ninety-four thousand one hundred ninety-four'),\n(6729, 85547, 'eighty-five thousand five hundred forty-seven'),\n(6730, 59483, 'fifty-nine thousand four hundred eighty-three'),\n(6731, 88634, 'eighty-eight thousand six hundred thirty-four'),\n(6732, 20559, 'twenty thousand five hundred fifty-nine'),\n(6733, 47258, 'forty-seven thousand two hundred fifty-eight'),\n(6734, 87086, 'eighty-seven thousand eighty-six'),\n(6735, 74994, 'seventy-four thousand nine hundred ninety-four'),\n(6736, 86848, 'eighty-six thousand eight hundred forty-eight'),\n(6737, 38213, 'thirty-eight thousand two hundred thirteen'),\n(6738, 65854, 'sixty-five thousand eight hundred fifty-four'),\n(6739, 52416, 'fifty-two thousand four hundred sixteen'),\n(6740, 13950, 'thirteen thousand nine hundred fifty'),\n(6741, 52315, 'fifty-two thousand three hundred fifteen'),\n(6742, 5782, 'five thousand seven hundred eighty-two'),\n(6743, 47572, 'forty-seven thousand five hundred seventy-two'),\n(6744, 70865, 'seventy thousand eight hundred sixty-five'),\n(6745, 13411, 'thirteen thousand four hundred eleven'),\n(6746, 86184, 'eighty-six thousand one hundred eighty-four'),\n(6747, 29628, 'twenty-nine thousand six hundred twenty-eight'),\n(6748, 67024, 'sixty-seven thousand twenty-four'),\n(6749, 64383, 'sixty-four thousand three hundred eighty-three'),\n(6750, 65944, 'sixty-five thousand nine hundred forty-four'),\n(6751, 90876, 'ninety thousand eight hundred seventy-six'),\n(6752, 22521, 'twenty-two thousand five hundred twenty-one'),\n(6753, 45905, 'forty-five thousand nine hundred five'),\n(6754, 64244, 'sixty-four thousand two hundred forty-four'),\n(6755, 75421, 'seventy-five thousand four hundred twenty-one'),\n(6756, 54487, 'fifty-four thousand four hundred eighty-seven'),\n(6757, 30678, 'thirty thousand six hundred seventy-eight'),\n(6758, 66796, 'sixty-six thousand seven hundred ninety-six'),\n(6759, 80073, 'eighty thousand seventy-three'),\n(6760, 96299, 'ninety-six thousand two hundred ninety-nine'),\n(6761, 11195, 'eleven thousand one hundred ninety-five'),\n(6762, 33964, 'thirty-three thousand nine hundred sixty-four'),\n(6763, 46364, 'forty-six thousand three hundred sixty-four'),\n(6764, 97177, 'ninety-seven thousand one hundred seventy-seven'),\n(6765, 41466, 'forty-one thousand four hundred sixty-six'),\n(6766, 61475, 'sixty-one thousand four hundred seventy-five'),\n(6767, 69685, 'sixty-nine thousand six hundred eighty-five'),\n(6768, 50759, 'fifty thousand seven hundred fifty-nine'),\n(6769, 64318, 'sixty-four thousand three hundred eighteen'),\n(6770, 23477, 'twenty-three thousand four hundred seventy-seven'),\n(6771, 74245, 'seventy-four thousand two hundred forty-five'),\n(6772, 91218, 'ninety-one thousand two hundred eighteen'),\n(6773, 64355, 'sixty-four thousand three hundred fifty-five'),\n(6774, 47803, 'forty-seven thousand eight hundred three'),\n(6775, 48927, 'forty-eight thousand nine hundred twenty-seven'),\n(6776, 60602, 'sixty thousand six hundred two'),\n(6777, 76210, 'seventy-six thousand two hundred ten'),\n(6778, 85169, 'eighty-five thousand one hundred sixty-nine'),\n(6779, 8482, 'eight thousand four hundred eighty-two'),\n(6780, 27640, 'twenty-seven thousand six hundred forty'),\n(6781, 69276, 'sixty-nine thousand two hundred seventy-six'),\n(6782, 81289, 'eighty-one thousand two hundred eighty-nine'),\n(6783, 86269, 'eighty-six thousand two hundred sixty-nine'),\n(6784, 38434, 'thirty-eight thousand four hundred thirty-four'),\n(6785, 40510, 'forty thousand five hundred ten'),\n(6786, 18913, 'eighteen thousand nine hundred thirteen'),\n(6787, 28514, 'twenty-eight thousand five hundred fourteen'),\n(6788, 80994, 'eighty thousand nine hundred ninety-four'),\n(6789, 41680, 'forty-one thousand six hundred eighty'),\n(6790, 26002, 'twenty-six thousand two'),\n(6791, 40177, 'forty thousand one hundred seventy-seven'),\n(6792, 72208, 'seventy-two thousand two hundred eight'),\n(6793, 74431, 'seventy-four thousand four hundred thirty-one'),\n(6794, 82635, 'eighty-two thousand six hundred thirty-five'),\n(6795, 30379, 'thirty thousand three hundred seventy-nine'),\n(6796, 65894, 'sixty-five thousand eight hundred ninety-four'),\n(6797, 46011, 'forty-six thousand eleven'),\n(6798, 17613, 'seventeen thousand six hundred thirteen'),\n(6799, 4141, 'four thousand one hundred forty-one'),\n(6800, 50157, 'fifty thousand one hundred fifty-seven'),\n(6801, 48985, 'forty-eight thousand nine hundred eighty-five'),\n(6802, 89454, 'eighty-nine thousand four hundred fifty-four'),\n(6803, 93896, 'ninety-three thousand eight hundred ninety-six'),\n(6804, 88009, 'eighty-eight thousand nine'),\n(6805, 89121, 'eighty-nine thousand one hundred twenty-one'),\n(6806, 35164, 'thirty-five thousand one hundred sixty-four'),\n(6807, 1979, 'one thousand nine hundred seventy-nine'),\n(6808, 86539, 'eighty-six thousand five hundred thirty-nine'),\n(6809, 28833, 'twenty-eight thousand eight hundred thirty-three'),\n(6810, 65279, 'sixty-five thousand two hundred seventy-nine'),\n(6811, 51761, 'fifty-one thousand seven hundred sixty-one'),\n(6812, 77496, 'seventy-seven thousand four hundred ninety-six'),\n(6813, 66427, 'sixty-six thousand four hundred twenty-seven'),\n(6814, 44762, 'forty-four thousand seven hundred sixty-two'),\n(6815, 4346, 'four thousand three hundred forty-six'),\n(6816, 93476, 'ninety-three thousand four hundred seventy-six'),\n(6817, 27757, 'twenty-seven thousand seven hundred fifty-seven'),\n(6818, 62063, 'sixty-two thousand sixty-three'),\n(6819, 54096, 'fifty-four thousand ninety-six'),\n(6820, 49582, 'forty-nine thousand five hundred eighty-two'),\n(6821, 71309, 'seventy-one thousand three hundred nine'),\n(6822, 20614, 'twenty thousand six hundred fourteen'),\n(6823, 35252, 'thirty-five thousand two hundred fifty-two'),\n(6824, 89126, 'eighty-nine thousand one hundred twenty-six'),\n(6825, 17968, 'seventeen thousand nine hundred sixty-eight'),\n(6826, 96107, 'ninety-six thousand one hundred seven'),\n(6827, 71625, 'seventy-one thousand six hundred twenty-five'),\n(6828, 78354, 'seventy-eight thousand three hundred fifty-four'),\n(6829, 68297, 'sixty-eight thousand two hundred ninety-seven'),\n(6830, 19363, 'nineteen thousand three hundred sixty-three'),\n(6831, 3034, 'three thousand thirty-four'),\n(6832, 1779, 'one thousand seven hundred seventy-nine'),\n(6833, 56414, 'fifty-six thousand four hundred fourteen'),\n(6834, 97655, 'ninety-seven thousand six hundred fifty-five'),\n(6835, 62338, 'sixty-two thousand three hundred thirty-eight'),\n(6836, 61279, 'sixty-one thousand two hundred seventy-nine'),\n(6837, 12672, 'twelve thousand six hundred seventy-two'),\n(6838, 43260, 'forty-three thousand two hundred sixty'),\n(6839, 41922, 'forty-one thousand nine hundred twenty-two'),\n(6840, 2017, 'two thousand seventeen'),\n(6841, 38979, 'thirty-eight thousand nine hundred seventy-nine'),\n(6842, 61662, 'sixty-one thousand six hundred sixty-two'),\n(6843, 87046, 'eighty-seven thousand forty-six'),\n(6844, 9004, 'nine thousand four'),\n(6845, 63812, 'sixty-three thousand eight hundred twelve'),\n(6846, 94374, 'ninety-four thousand three hundred seventy-four'),\n(6847, 14000, 'fourteen thousand'),\n(6848, 99440, 'ninety-nine thousand four hundred forty'),\n(6849, 19142, 'nineteen thousand one hundred forty-two'),\n(6850, 66431, 'sixty-six thousand four hundred thirty-one'),\n(6851, 31091, 'thirty-one thousand ninety-one'),\n(6852, 72977, 'seventy-two thousand nine hundred seventy-seven'),\n(6853, 6627, 'six thousand six hundred twenty-seven'),\n(6854, 3890, 'three thousand eight hundred ninety'),\n(6855, 79532, 'seventy-nine thousand five hundred thirty-two'),\n(6856, 82016, 'eighty-two thousand sixteen'),\n(6857, 3935, 'three thousand nine hundred thirty-five'),\n(6858, 18287, 'eighteen thousand two hundred eighty-seven'),\n(6859, 67524, 'sixty-seven thousand five hundred twenty-four'),\n(6860, 88049, 'eighty-eight thousand forty-nine'),\n(6861, 20482, 'twenty thousand four hundred eighty-two'),\n(6862, 6539, 'six thousand five hundred thirty-nine'),\n(6863, 32581, 'thirty-two thousand five hundred eighty-one'),\n(6864, 77558, 'seventy-seven thousand five hundred fifty-eight'),\n(6865, 15775, 'fifteen thousand seven hundred seventy-five'),\n(6866, 66441, 'sixty-six thousand four hundred forty-one'),\n(6867, 51390, 'fifty-one thousand three hundred ninety'),\n(6868, 31984, 'thirty-one thousand nine hundred eighty-four'),\n(6869, 3406, 'three thousand four hundred six'),\n(6870, 93957, 'ninety-three thousand nine hundred fifty-seven'),\n(6871, 78392, 'seventy-eight thousand three hundred ninety-two'),\n(6872, 23683, 'twenty-three thousand six hundred eighty-three'),\n(6873, 86656, 'eighty-six thousand six hundred fifty-six'),\n(6874, 26091, 'twenty-six thousand ninety-one'),\n(6875, 23091, 'twenty-three thousand ninety-one'),\n(6876, 43220, 'forty-three thousand two hundred twenty'),\n(6877, 42859, 'forty-two thousand eight hundred fifty-nine'),\n(6878, 63640, 'sixty-three thousand six hundred forty'),\n(6879, 19381, 'nineteen thousand three hundred eighty-one'),\n(6880, 17280, 'seventeen thousand two hundred eighty'),\n(6881, 5930, 'five thousand nine hundred thirty'),\n(6882, 56086, 'fifty-six thousand eighty-six'),\n(6883, 88653, 'eighty-eight thousand six hundred fifty-three'),\n(6884, 64320, 'sixty-four thousand three hundred twenty'),\n(6885, 96914, 'ninety-six thousand nine hundred fourteen'),\n(6886, 17347, 'seventeen thousand three hundred forty-seven'),\n(6887, 61599, 'sixty-one thousand five hundred ninety-nine'),\n(6888, 57329, 'fifty-seven thousand three hundred twenty-nine'),\n(6889, 85546, 'eighty-five thousand five hundred forty-six'),\n(6890, 75083, 'seventy-five thousand eighty-three'),\n(6891, 58080, 'fifty-eight thousand eighty'),\n(6892, 68641, 'sixty-eight thousand six hundred forty-one'),\n(6893, 17888, 'seventeen thousand eight hundred eighty-eight'),\n(6894, 38911, 'thirty-eight thousand nine hundred eleven'),\n(6895, 30958, 'thirty thousand nine hundred fifty-eight'),\n(6896, 96449, 'ninety-six thousand four hundred forty-nine'),\n(6897, 26963, 'twenty-six thousand nine hundred sixty-three'),\n(6898, 13180, 'thirteen thousand one hundred eighty'),\n(6899, 97822, 'ninety-seven thousand eight hundred twenty-two'),\n(6900, 46022, 'forty-six thousand twenty-two'),\n(6901, 73946, 'seventy-three thousand nine hundred forty-six'),\n(6902, 42740, 'forty-two thousand seven hundred forty'),\n(6903, 68499, 'sixty-eight thousand four hundred ninety-nine'),\n(6904, 29749, 'twenty-nine thousand seven hundred forty-nine'),\n(6905, 6891, 'six thousand eight hundred ninety-one'),\n(6906, 84251, 'eighty-four thousand two hundred fifty-one'),\n(6907, 29341, 'twenty-nine thousand three hundred forty-one'),\n(6908, 40269, 'forty thousand two hundred sixty-nine'),\n(6909, 16199, 'sixteen thousand one hundred ninety-nine'),\n(6910, 76146, 'seventy-six thousand one hundred forty-six'),\n(6911, 77087, 'seventy-seven thousand eighty-seven'),\n(6912, 3358, 'three thousand three hundred fifty-eight'),\n(6913, 46544, 'forty-six thousand five hundred forty-four'),\n(6914, 38597, 'thirty-eight thousand five hundred ninety-seven'),\n(6915, 72810, 'seventy-two thousand eight hundred ten'),\n(6916, 95688, 'ninety-five thousand six hundred eighty-eight'),\n(6917, 17000, 'seventeen thousand'),\n(6918, 778, 'seven hundred seventy-eight'),\n(6919, 73123, 'seventy-three thousand one hundred twenty-three'),\n(6920, 71200, 'seventy-one thousand two hundred'),\n(6921, 57124, 'fifty-seven thousand one hundred twenty-four'),\n(6922, 42774, 'forty-two thousand seven hundred seventy-four'),\n(6923, 66072, 'sixty-six thousand seventy-two'),\n(6924, 35498, 'thirty-five thousand four hundred ninety-eight'),\n(6925, 23749, 'twenty-three thousand seven hundred forty-nine'),\n(6926, 96540, 'ninety-six thousand five hundred forty'),\n(6927, 90601, 'ninety thousand six hundred one'),\n(6928, 14570, 'fourteen thousand five hundred seventy'),\n(6929, 92049, 'ninety-two thousand forty-nine'),\n(6930, 40567, 'forty thousand five hundred sixty-seven'),\n(6931, 66377, 'sixty-six thousand three hundred seventy-seven'),\n(6932, 29027, 'twenty-nine thousand twenty-seven'),\n(6933, 56397, 'fifty-six thousand three hundred ninety-seven'),\n(6934, 15267, 'fifteen thousand two hundred sixty-seven'),\n(6935, 28644, 'twenty-eight thousand six hundred forty-four'),\n(6936, 30506, 'thirty thousand five hundred six'),\n(6937, 48842, 'forty-eight thousand eight hundred forty-two'),\n(6938, 84447, 'eighty-four thousand four hundred forty-seven'),\n(6939, 4814, 'four thousand eight hundred fourteen'),\n(6940, 56864, 'fifty-six thousand eight hundred sixty-four'),\n(6941, 85799, 'eighty-five thousand seven hundred ninety-nine'),\n(6942, 13657, 'thirteen thousand six hundred fifty-seven'),\n(6943, 72959, 'seventy-two thousand nine hundred fifty-nine'),\n(6944, 52196, 'fifty-two thousand one hundred ninety-six'),\n(6945, 64209, 'sixty-four thousand two hundred nine'),\n(6946, 17592, 'seventeen thousand five hundred ninety-two'),\n(6947, 17535, 'seventeen thousand five hundred thirty-five'),\n(6948, 27317, 'twenty-seven thousand three hundred seventeen'),\n(6949, 58667, 'fifty-eight thousand six hundred sixty-seven'),\n(6950, 39783, 'thirty-nine thousand seven hundred eighty-three'),\n(6951, 37823, 'thirty-seven thousand eight hundred twenty-three'),\n(6952, 33797, 'thirty-three thousand seven hundred ninety-seven'),\n(6953, 85768, 'eighty-five thousand seven hundred sixty-eight'),\n(6954, 21336, 'twenty-one thousand three hundred thirty-six'),\n(6955, 36809, 'thirty-six thousand eight hundred nine'),\n(6956, 26883, 'twenty-six thousand eight hundred eighty-three'),\n(6957, 49084, 'forty-nine thousand eighty-four'),\n(6958, 2104, 'two thousand one hundred four'),\n(6959, 58650, 'fifty-eight thousand six hundred fifty'),\n(6960, 21218, 'twenty-one thousand two hundred eighteen'),\n(6961, 83841, 'eighty-three thousand eight hundred forty-one'),\n(6962, 46776, 'forty-six thousand seven hundred seventy-six'),\n(6963, 30017, 'thirty thousand seventeen'),\n(6964, 12552, 'twelve thousand five hundred fifty-two'),\n(6965, 27693, 'twenty-seven thousand six hundred ninety-three'),\n(6966, 66629, 'sixty-six thousand six hundred twenty-nine'),\n(6967, 54683, 'fifty-four thousand six hundred eighty-three'),\n(6968, 31658, 'thirty-one thousand six hundred fifty-eight'),\n(6969, 11550, 'eleven thousand five hundred fifty'),\n(6970, 63676, 'sixty-three thousand six hundred seventy-six'),\n(6971, 82573, 'eighty-two thousand five hundred seventy-three'),\n(6972, 83389, 'eighty-three thousand three hundred eighty-nine'),\n(6973, 28968, 'twenty-eight thousand nine hundred sixty-eight'),\n(6974, 5490, 'five thousand four hundred ninety'),\n(6975, 52254, 'fifty-two thousand two hundred fifty-four'),\n(6976, 12891, 'twelve thousand eight hundred ninety-one'),\n(6977, 62032, 'sixty-two thousand thirty-two'),\n(6978, 14329, 'fourteen thousand three hundred twenty-nine'),\n(6979, 58369, 'fifty-eight thousand three hundred sixty-nine'),\n(6980, 15772, 'fifteen thousand seven hundred seventy-two'),\n(6981, 56013, 'fifty-six thousand thirteen'),\n(6982, 73181, 'seventy-three thousand one hundred eighty-one'),\n(6983, 48183, 'forty-eight thousand one hundred eighty-three'),\n(6984, 76611, 'seventy-six thousand six hundred eleven'),\n(6985, 84938, 'eighty-four thousand nine hundred thirty-eight'),\n(6986, 35308, 'thirty-five thousand three hundred eight'),\n(6987, 56710, 'fifty-six thousand seven hundred ten'),\n(6988, 53066, 'fifty-three thousand sixty-six'),\n(6989, 74782, 'seventy-four thousand seven hundred eighty-two'),\n(6990, 43304, 'forty-three thousand three hundred four'),\n(6991, 2192, 'two thousand one hundred ninety-two'),\n(6992, 56252, 'fifty-six thousand two hundred fifty-two'),\n(6993, 23775, 'twenty-three thousand seven hundred seventy-five'),\n(6994, 1901, 'one thousand nine hundred one'),\n(6995, 24617, 'twenty-four thousand six hundred seventeen'),\n(6996, 78124, 'seventy-eight thousand one hundred twenty-four'),\n(6997, 40147, 'forty thousand one hundred forty-seven'),\n(6998, 41294, 'forty-one thousand two hundred ninety-four'),\n(6999, 12619, 'twelve thousand six hundred nineteen'),\n(7000, 99847, 'ninety-nine thousand eight hundred forty-seven'),\n(7001, 24323, 'twenty-four thousand three hundred twenty-three'),\n(7002, 90492, 'ninety thousand four hundred ninety-two'),\n(7003, 83106, 'eighty-three thousand one hundred six'),\n(7004, 36329, 'thirty-six thousand three hundred twenty-nine'),\n(7005, 80341, 'eighty thousand three hundred forty-one'),\n(7006, 19238, 'nineteen thousand two hundred thirty-eight'),\n(7007, 44740, 'forty-four thousand seven hundred forty'),\n(7008, 79234, 'seventy-nine thousand two hundred thirty-four'),\n(7009, 87291, 'eighty-seven thousand two hundred ninety-one'),\n(7010, 37049, 'thirty-seven thousand forty-nine'),\n(7011, 50922, 'fifty thousand nine hundred twenty-two'),\n(7012, 42654, 'forty-two thousand six hundred fifty-four'),\n(7013, 42608, 'forty-two thousand six hundred eight'),\n(7014, 94993, 'ninety-four thousand nine hundred ninety-three'),\n(7015, 69001, 'sixty-nine thousand one'),\n(7016, 97800, 'ninety-seven thousand eight hundred'),\n(7017, 23734, 'twenty-three thousand seven hundred thirty-four'),\n(7018, 76026, 'seventy-six thousand twenty-six'),\n(7019, 83205, 'eighty-three thousand two hundred five'),\n(7020, 98968, 'ninety-eight thousand nine hundred sixty-eight'),\n(7021, 95951, 'ninety-five thousand nine hundred fifty-one'),\n(7022, 84634, 'eighty-four thousand six hundred thirty-four'),\n(7023, 71311, 'seventy-one thousand three hundred eleven'),\n(7024, 3536, 'three thousand five hundred thirty-six'),\n(7025, 34569, 'thirty-four thousand five hundred sixty-nine'),\n(7026, 89148, 'eighty-nine thousand one hundred forty-eight'),\n(7027, 19223, 'nineteen thousand two hundred twenty-three'),\n(7028, 46452, 'forty-six thousand four hundred fifty-two'),\n(7029, 38054, 'thirty-eight thousand fifty-four'),\n(7030, 3824, 'three thousand eight hundred twenty-four'),\n(7031, 60051, 'sixty thousand fifty-one'),\n(7032, 71012, 'seventy-one thousand twelve'),\n(7033, 90260, 'ninety thousand two hundred sixty'),\n(7034, 85421, 'eighty-five thousand four hundred twenty-one'),\n(7035, 12239, 'twelve thousand two hundred thirty-nine'),\n(7036, 63714, 'sixty-three thousand seven hundred fourteen'),\n(7037, 11567, 'eleven thousand five hundred sixty-seven'),\n(7038, 21215, 'twenty-one thousand two hundred fifteen'),\n(7039, 18088, 'eighteen thousand eighty-eight'),\n(7040, 36051, 'thirty-six thousand fifty-one'),\n(7041, 85907, 'eighty-five thousand nine hundred seven'),\n(7042, 24245, 'twenty-four thousand two hundred forty-five'),\n(7043, 27277, 'twenty-seven thousand two hundred seventy-seven'),\n(7044, 33901, 'thirty-three thousand nine hundred one'),\n(7045, 93841, 'ninety-three thousand eight hundred forty-one'),\n(7046, 84152, 'eighty-four thousand one hundred fifty-two'),\n(7047, 47889, 'forty-seven thousand eight hundred eighty-nine'),\n(7048, 6031, 'six thousand thirty-one'),\n(7049, 95152, 'ninety-five thousand one hundred fifty-two'),\n(7050, 19764, 'nineteen thousand seven hundred sixty-four'),\n(7051, 58743, 'fifty-eight thousand seven hundred forty-three'),\n(7052, 45094, 'forty-five thousand ninety-four'),\n(7053, 47239, 'forty-seven thousand two hundred thirty-nine'),\n(7054, 55871, 'fifty-five thousand eight hundred seventy-one'),\n(7055, 55700, 'fifty-five thousand seven hundred'),\n(7056, 97138, 'ninety-seven thousand one hundred thirty-eight'),\n(7057, 68397, 'sixty-eight thousand three hundred ninety-seven'),\n(7058, 86286, 'eighty-six thousand two hundred eighty-six'),\n(7059, 60433, 'sixty thousand four hundred thirty-three'),\n(7060, 86295, 'eighty-six thousand two hundred ninety-five'),\n(7061, 38072, 'thirty-eight thousand seventy-two'),\n(7062, 74952, 'seventy-four thousand nine hundred fifty-two'),\n(7063, 32070, 'thirty-two thousand seventy'),\n(7064, 58471, 'fifty-eight thousand four hundred seventy-one'),\n(7065, 36852, 'thirty-six thousand eight hundred fifty-two'),\n(7066, 61165, 'sixty-one thousand one hundred sixty-five'),\n(7067, 22089, 'twenty-two thousand eighty-nine'),\n(7068, 35839, 'thirty-five thousand eight hundred thirty-nine'),\n(7069, 85417, 'eighty-five thousand four hundred seventeen'),\n(7070, 68230, 'sixty-eight thousand two hundred thirty'),\n(7071, 38104, 'thirty-eight thousand one hundred four'),\n(7072, 37538, 'thirty-seven thousand five hundred thirty-eight'),\n(7073, 33802, 'thirty-three thousand eight hundred two'),\n(7074, 69737, 'sixty-nine thousand seven hundred thirty-seven'),\n(7075, 5816, 'five thousand eight hundred sixteen'),\n(7076, 91862, 'ninety-one thousand eight hundred sixty-two'),\n(7077, 68416, 'sixty-eight thousand four hundred sixteen'),\n(7078, 13016, 'thirteen thousand sixteen'),\n(7079, 8165, 'eight thousand one hundred sixty-five'),\n(7080, 84485, 'eighty-four thousand four hundred eighty-five'),\n(7081, 53664, 'fifty-three thousand six hundred sixty-four'),\n(7082, 278, 'two hundred seventy-eight'),\n(7083, 54590, 'fifty-four thousand five hundred ninety'),\n(7084, 55644, 'fifty-five thousand six hundred forty-four'),\n(7085, 5222, 'five thousand two hundred twenty-two'),\n(7086, 89371, 'eighty-nine thousand three hundred seventy-one'),\n(7087, 14172, 'fourteen thousand one hundred seventy-two'),\n(7088, 8485, 'eight thousand four hundred eighty-five'),\n(7089, 66008, 'sixty-six thousand eight'),\n(7090, 74780, 'seventy-four thousand seven hundred eighty'),\n(7091, 67764, 'sixty-seven thousand seven hundred sixty-four'),\n(7092, 44389, 'forty-four thousand three hundred eighty-nine'),\n(7093, 79372, 'seventy-nine thousand three hundred seventy-two'),\n(7094, 75617, 'seventy-five thousand six hundred seventeen'),\n(7095, 36126, 'thirty-six thousand one hundred twenty-six'),\n(7096, 79591, 'seventy-nine thousand five hundred ninety-one'),\n(7097, 61635, 'sixty-one thousand six hundred thirty-five'),\n(7098, 45116, 'forty-five thousand one hundred sixteen'),\n(7099, 31220, 'thirty-one thousand two hundred twenty'),\n(7100, 50726, 'fifty thousand seven hundred twenty-six'),\n(7101, 4479, 'four thousand four hundred seventy-nine'),\n(7102, 93759, 'ninety-three thousand seven hundred fifty-nine'),\n(7103, 51972, 'fifty-one thousand nine hundred seventy-two'),\n(7104, 70378, 'seventy thousand three hundred seventy-eight'),\n(7105, 53346, 'fifty-three thousand three hundred forty-six'),\n(7106, 97684, 'ninety-seven thousand six hundred eighty-four'),\n(7107, 9978, 'nine thousand nine hundred seventy-eight'),\n(7108, 36707, 'thirty-six thousand seven hundred seven'),\n(7109, 64941, 'sixty-four thousand nine hundred forty-one'),\n(7110, 93739, 'ninety-three thousand seven hundred thirty-nine'),\n(7111, 94948, 'ninety-four thousand nine hundred forty-eight'),\n(7112, 41867, 'forty-one thousand eight hundred sixty-seven'),\n(7113, 28515, 'twenty-eight thousand five hundred fifteen'),\n(7114, 60341, 'sixty thousand three hundred forty-one'),\n(7115, 4047, 'four thousand forty-seven'),\n(7116, 59361, 'fifty-nine thousand three hundred sixty-one'),\n(7117, 11983, 'eleven thousand nine hundred eighty-three'),\n(7118, 1906, 'one thousand nine hundred six'),\n(7119, 14323, 'fourteen thousand three hundred twenty-three'),\n(7120, 92640, 'ninety-two thousand six hundred forty'),\n(7121, 11527, 'eleven thousand five hundred twenty-seven'),\n(7122, 88232, 'eighty-eight thousand two hundred thirty-two'),\n(7123, 16507, 'sixteen thousand five hundred seven'),\n(7124, 72272, 'seventy-two thousand two hundred seventy-two'),\n(7125, 7378, 'seven thousand three hundred seventy-eight'),\n(7126, 14997, 'fourteen thousand nine hundred ninety-seven'),\n(7127, 67667, 'sixty-seven thousand six hundred sixty-seven'),\n(7128, 97793, 'ninety-seven thousand seven hundred ninety-three'),\n(7129, 34287, 'thirty-four thousand two hundred eighty-seven'),\n(7130, 39397, 'thirty-nine thousand three hundred ninety-seven'),\n(7131, 83438, 'eighty-three thousand four hundred thirty-eight'),\n(7132, 7585, 'seven thousand five hundred eighty-five'),\n(7133, 42113, 'forty-two thousand one hundred thirteen'),\n(7134, 4189, 'four thousand one hundred eighty-nine'),\n(7135, 94919, 'ninety-four thousand nine hundred nineteen'),\n(7136, 77199, 'seventy-seven thousand one hundred ninety-nine'),\n(7137, 45667, 'forty-five thousand six hundred sixty-seven'),\n(7138, 42730, 'forty-two thousand seven hundred thirty'),\n(7139, 35776, 'thirty-five thousand seven hundred seventy-six'),\n(7140, 31408, 'thirty-one thousand four hundred eight'),\n(7141, 67406, 'sixty-seven thousand four hundred six'),\n(7142, 43811, 'forty-three thousand eight hundred eleven'),\n(7143, 66482, 'sixty-six thousand four hundred eighty-two'),\n(7144, 97833, 'ninety-seven thousand eight hundred thirty-three'),\n(7145, 95012, 'ninety-five thousand twelve'),\n(7146, 22034, 'twenty-two thousand thirty-four'),\n(7147, 16761, 'sixteen thousand seven hundred sixty-one'),\n(7148, 21732, 'twenty-one thousand seven hundred thirty-two'),\n(7149, 18523, 'eighteen thousand five hundred twenty-three'),\n(7150, 4223, 'four thousand two hundred twenty-three'),\n(7151, 9931, 'nine thousand nine hundred thirty-one'),\n(7152, 78366, 'seventy-eight thousand three hundred sixty-six'),\n(7153, 20581, 'twenty thousand five hundred eighty-one'),\n(7154, 357, 'three hundred fifty-seven'),\n(7155, 43136, 'forty-three thousand one hundred thirty-six'),\n(7156, 31700, 'thirty-one thousand seven hundred'),\n(7157, 93442, 'ninety-three thousand four hundred forty-two'),\n(7158, 48765, 'forty-eight thousand seven hundred sixty-five'),\n(7159, 86211, 'eighty-six thousand two hundred eleven'),\n(7160, 40331, 'forty thousand three hundred thirty-one'),\n(7161, 97315, 'ninety-seven thousand three hundred fifteen'),\n(7162, 66147, 'sixty-six thousand one hundred forty-seven'),\n(7163, 73241, 'seventy-three thousand two hundred forty-one'),\n(7164, 64669, 'sixty-four thousand six hundred sixty-nine'),\n(7165, 99813, 'ninety-nine thousand eight hundred thirteen'),\n(7166, 13616, 'thirteen thousand six hundred sixteen'),\n(7167, 25387, 'twenty-five thousand three hundred eighty-seven'),\n(7168, 16111, 'sixteen thousand one hundred eleven'),\n(7169, 66643, 'sixty-six thousand six hundred forty-three'),\n(7170, 24967, 'twenty-four thousand nine hundred sixty-seven'),\n(7171, 80090, 'eighty thousand ninety'),\n(7172, 88725, 'eighty-eight thousand seven hundred twenty-five'),\n(7173, 10863, 'ten thousand eight hundred sixty-three'),\n(7174, 17830, 'seventeen thousand eight hundred thirty'),\n(7175, 46076, 'forty-six thousand seventy-six'),\n(7176, 53475, 'fifty-three thousand four hundred seventy-five'),\n(7177, 31456, 'thirty-one thousand four hundred fifty-six'),\n(7178, 85279, 'eighty-five thousand two hundred seventy-nine'),\n(7179, 30140, 'thirty thousand one hundred forty'),\n(7180, 30633, 'thirty thousand six hundred thirty-three'),\n(7181, 80244, 'eighty thousand two hundred forty-four'),\n(7182, 40054, 'forty thousand fifty-four'),\n(7183, 87970, 'eighty-seven thousand nine hundred seventy'),\n(7184, 80555, 'eighty thousand five hundred fifty-five'),\n(7185, 58363, 'fifty-eight thousand three hundred sixty-three'),\n(7186, 10572, 'ten thousand five hundred seventy-two'),\n(7187, 913, 'nine hundred thirteen'),\n(7188, 75543, 'seventy-five thousand five hundred forty-three'),\n(7189, 20338, 'twenty thousand three hundred thirty-eight'),\n(7190, 60082, 'sixty thousand eighty-two'),\n(7191, 85893, 'eighty-five thousand eight hundred ninety-three'),\n(7192, 57415, 'fifty-seven thousand four hundred fifteen'),\n(7193, 29463, 'twenty-nine thousand four hundred sixty-three'),\n(7194, 57079, 'fifty-seven thousand seventy-nine'),\n(7195, 62246, 'sixty-two thousand two hundred forty-six'),\n(7196, 22708, 'twenty-two thousand seven hundred eight'),\n(7197, 73829, 'seventy-three thousand eight hundred twenty-nine'),\n(7198, 18328, 'eighteen thousand three hundred twenty-eight'),\n(7199, 31738, 'thirty-one thousand seven hundred thirty-eight'),\n(7200, 3161, 'three thousand one hundred sixty-one'),\n(7201, 74510, 'seventy-four thousand five hundred ten'),\n(7202, 83115, 'eighty-three thousand one hundred fifteen'),\n(7203, 4707, 'four thousand seven hundred seven'),\n(7204, 20924, 'twenty thousand nine hundred twenty-four'),\n(7205, 96143, 'ninety-six thousand one hundred forty-three'),\n(7206, 26195, 'twenty-six thousand one hundred ninety-five'),\n(7207, 59345, 'fifty-nine thousand three hundred forty-five'),\n(7208, 86450, 'eighty-six thousand four hundred fifty'),\n(7209, 71425, 'seventy-one thousand four hundred twenty-five'),\n(7210, 6990, 'six thousand nine hundred ninety'),\n(7211, 24491, 'twenty-four thousand four hundred ninety-one'),\n(7212, 98181, 'ninety-eight thousand one hundred eighty-one'),\n(7213, 47808, 'forty-seven thousand eight hundred eight'),\n(7214, 25363, 'twenty-five thousand three hundred sixty-three'),\n(7215, 26427, 'twenty-six thousand four hundred twenty-seven'),\n(7216, 98541, 'ninety-eight thousand five hundred forty-one'),\n(7217, 58438, 'fifty-eight thousand four hundred thirty-eight'),\n(7218, 81857, 'eighty-one thousand eight hundred fifty-seven'),\n(7219, 50613, 'fifty thousand six hundred thirteen'),\n(7220, 69379, 'sixty-nine thousand three hundred seventy-nine'),\n(7221, 89679, 'eighty-nine thousand six hundred seventy-nine'),\n(7222, 5764, 'five thousand seven hundred sixty-four'),\n(7223, 86354, 'eighty-six thousand three hundred fifty-four'),\n(7224, 5115, 'five thousand one hundred fifteen'),\n(7225, 62679, 'sixty-two thousand six hundred seventy-nine'),\n(7226, 11391, 'eleven thousand three hundred ninety-one'),\n(7227, 97281, 'ninety-seven thousand two hundred eighty-one'),\n(7228, 33539, 'thirty-three thousand five hundred thirty-nine'),\n(7229, 31375, 'thirty-one thousand three hundred seventy-five'),\n(7230, 77006, 'seventy-seven thousand six'),\n(7231, 54360, 'fifty-four thousand three hundred sixty'),\n(7232, 96812, 'ninety-six thousand eight hundred twelve'),\n(7233, 18611, 'eighteen thousand six hundred eleven'),\n(7234, 12079, 'twelve thousand seventy-nine'),\n(7235, 34411, 'thirty-four thousand four hundred eleven'),\n(7236, 64281, 'sixty-four thousand two hundred eighty-one'),\n(7237, 17064, 'seventeen thousand sixty-four'),\n(7238, 95552, 'ninety-five thousand five hundred fifty-two'),\n(7239, 75158, 'seventy-five thousand one hundred fifty-eight'),\n(7240, 26079, 'twenty-six thousand seventy-nine'),\n(7241, 87235, 'eighty-seven thousand two hundred thirty-five'),\n(7242, 36560, 'thirty-six thousand five hundred sixty'),\n(7243, 50239, 'fifty thousand two hundred thirty-nine'),\n(7244, 59601, 'fifty-nine thousand six hundred one'),\n(7245, 45706, 'forty-five thousand seven hundred six'),\n(7246, 27308, 'twenty-seven thousand three hundred eight'),\n(7247, 26573, 'twenty-six thousand five hundred seventy-three'),\n(7248, 93524, 'ninety-three thousand five hundred twenty-four'),\n(7249, 47438, 'forty-seven thousand four hundred thirty-eight'),\n(7250, 403, 'four hundred three'),\n(7251, 51586, 'fifty-one thousand five hundred eighty-six'),\n(7252, 40570, 'forty thousand five hundred seventy'),\n(7253, 26997, 'twenty-six thousand nine hundred ninety-seven'),\n(7254, 32939, 'thirty-two thousand nine hundred thirty-nine'),\n(7255, 21478, 'twenty-one thousand four hundred seventy-eight'),\n(7256, 82551, 'eighty-two thousand five hundred fifty-one'),\n(7257, 79146, 'seventy-nine thousand one hundred forty-six'),\n(7258, 78890, 'seventy-eight thousand eight hundred ninety'),\n(7259, 40685, 'forty thousand six hundred eighty-five'),\n(7260, 93267, 'ninety-three thousand two hundred sixty-seven'),\n(7261, 60743, 'sixty thousand seven hundred forty-three'),\n(7262, 40535, 'forty thousand five hundred thirty-five'),\n(7263, 66248, 'sixty-six thousand two hundred forty-eight'),\n(7264, 1632, 'one thousand six hundred thirty-two'),\n(7265, 91926, 'ninety-one thousand nine hundred twenty-six'),\n(7266, 90327, 'ninety thousand three hundred twenty-seven'),\n(7267, 24395, 'twenty-four thousand three hundred ninety-five'),\n(7268, 98064, 'ninety-eight thousand sixty-four'),\n(7269, 84829, 'eighty-four thousand eight hundred twenty-nine'),\n(7270, 68154, 'sixty-eight thousand one hundred fifty-four'),\n(7271, 43866, 'forty-three thousand eight hundred sixty-six'),\n(7272, 32063, 'thirty-two thousand sixty-three'),\n(7273, 86571, 'eighty-six thousand five hundred seventy-one'),\n(7274, 75604, 'seventy-five thousand six hundred four'),\n(7275, 26373, 'twenty-six thousand three hundred seventy-three'),\n(7276, 27365, 'twenty-seven thousand three hundred sixty-five'),\n(7277, 45389, 'forty-five thousand three hundred eighty-nine'),\n(7278, 32778, 'thirty-two thousand seven hundred seventy-eight'),\n(7279, 79641, 'seventy-nine thousand six hundred forty-one'),\n(7280, 68632, 'sixty-eight thousand six hundred thirty-two'),\n(7281, 91680, 'ninety-one thousand six hundred eighty'),\n(7282, 9698, 'nine thousand six hundred ninety-eight'),\n(7283, 10169, 'ten thousand one hundred sixty-nine'),\n(7284, 95137, 'ninety-five thousand one hundred thirty-seven'),\n(7285, 50545, 'fifty thousand five hundred forty-five'),\n(7286, 28316, 'twenty-eight thousand three hundred sixteen'),\n(7287, 75939, 'seventy-five thousand nine hundred thirty-nine'),\n(7288, 99566, 'ninety-nine thousand five hundred sixty-six'),\n(7289, 58914, 'fifty-eight thousand nine hundred fourteen'),\n(7290, 46525, 'forty-six thousand five hundred twenty-five'),\n(7291, 17180, 'seventeen thousand one hundred eighty'),\n(7292, 43503, 'forty-three thousand five hundred three'),\n(7293, 42734, 'forty-two thousand seven hundred thirty-four'),\n(7294, 52603, 'fifty-two thousand six hundred three'),\n(7295, 37051, 'thirty-seven thousand fifty-one'),\n(7296, 88547, 'eighty-eight thousand five hundred forty-seven'),\n(7297, 50661, 'fifty thousand six hundred sixty-one'),\n(7298, 63879, 'sixty-three thousand eight hundred seventy-nine'),\n(7299, 43116, 'forty-three thousand one hundred sixteen'),\n(7300, 41459, 'forty-one thousand four hundred fifty-nine'),\n(7301, 52667, 'fifty-two thousand six hundred sixty-seven'),\n(7302, 94465, 'ninety-four thousand four hundred sixty-five'),\n(7303, 1466, 'one thousand four hundred sixty-six'),\n(7304, 7554, 'seven thousand five hundred fifty-four'),\n(7305, 63773, 'sixty-three thousand seven hundred seventy-three'),\n(7306, 81490, 'eighty-one thousand four hundred ninety'),\n(7307, 40160, 'forty thousand one hundred sixty'),\n(7308, 50116, 'fifty thousand one hundred sixteen'),\n(7309, 23794, 'twenty-three thousand seven hundred ninety-four'),\n(7310, 16229, 'sixteen thousand two hundred twenty-nine'),\n(7311, 94774, 'ninety-four thousand seven hundred seventy-four'),\n(7312, 81281, 'eighty-one thousand two hundred eighty-one'),\n(7313, 92361, 'ninety-two thousand three hundred sixty-one'),\n(7314, 8777, 'eight thousand seven hundred seventy-seven'),\n(7315, 82318, 'eighty-two thousand three hundred eighteen'),\n(7316, 84670, 'eighty-four thousand six hundred seventy'),\n(7317, 97483, 'ninety-seven thousand four hundred eighty-three'),\n(7318, 63160, 'sixty-three thousand one hundred sixty'),\n(7319, 57553, 'fifty-seven thousand five hundred fifty-three'),\n(7320, 64537, 'sixty-four thousand five hundred thirty-seven'),\n(7321, 82027, 'eighty-two thousand twenty-seven'),\n(7322, 93718, 'ninety-three thousand seven hundred eighteen'),\n(7323, 87896, 'eighty-seven thousand eight hundred ninety-six'),\n(7324, 44585, 'forty-four thousand five hundred eighty-five'),\n(7325, 40057, 'forty thousand fifty-seven'),\n(7326, 26386, 'twenty-six thousand three hundred eighty-six'),\n(7327, 1766, 'one thousand seven hundred sixty-six'),\n(7328, 34015, 'thirty-four thousand fifteen'),\n(7329, 50261, 'fifty thousand two hundred sixty-one'),\n(7330, 78277, 'seventy-eight thousand two hundred seventy-seven'),\n(7331, 46721, 'forty-six thousand seven hundred twenty-one'),\n(7332, 25314, 'twenty-five thousand three hundred fourteen'),\n(7333, 16614, 'sixteen thousand six hundred fourteen'),\n(7334, 48752, 'forty-eight thousand seven hundred fifty-two'),\n(7335, 59627, 'fifty-nine thousand six hundred twenty-seven'),\n(7336, 99314, 'ninety-nine thousand three hundred fourteen'),\n(7337, 19999, 'nineteen thousand nine hundred ninety-nine'),\n(7338, 75660, 'seventy-five thousand six hundred sixty'),\n(7339, 99677, 'ninety-nine thousand six hundred seventy-seven'),\n(7340, 73009, 'seventy-three thousand nine'),\n(7341, 22318, 'twenty-two thousand three hundred eighteen'),\n(7342, 60655, 'sixty thousand six hundred fifty-five'),\n(7343, 46171, 'forty-six thousand one hundred seventy-one'),\n(7344, 36168, 'thirty-six thousand one hundred sixty-eight'),\n(7345, 80572, 'eighty thousand five hundred seventy-two'),\n(7346, 93370, 'ninety-three thousand three hundred seventy'),\n(7347, 12796, 'twelve thousand seven hundred ninety-six'),\n(7348, 48320, 'forty-eight thousand three hundred twenty'),\n(7349, 91647, 'ninety-one thousand six hundred forty-seven'),\n(7350, 41767, 'forty-one thousand seven hundred sixty-seven'),\n(7351, 53956, 'fifty-three thousand nine hundred fifty-six'),\n(7352, 39825, 'thirty-nine thousand eight hundred twenty-five'),\n(7353, 31096, 'thirty-one thousand ninety-six'),\n(7354, 61425, 'sixty-one thousand four hundred twenty-five'),\n(7355, 22037, 'twenty-two thousand thirty-seven'),\n(7356, 92717, 'ninety-two thousand seven hundred seventeen'),\n(7357, 26391, 'twenty-six thousand three hundred ninety-one'),\n(7358, 52610, 'fifty-two thousand six hundred ten'),\n(7359, 37210, 'thirty-seven thousand two hundred ten'),\n(7360, 91766, 'ninety-one thousand seven hundred sixty-six'),\n(7361, 71153, 'seventy-one thousand one hundred fifty-three'),\n(7362, 99371, 'ninety-nine thousand three hundred seventy-one'),\n(7363, 54607, 'fifty-four thousand six hundred seven'),\n(7364, 31431, 'thirty-one thousand four hundred thirty-one'),\n(7365, 24555, 'twenty-four thousand five hundred fifty-five'),\n(7366, 68445, 'sixty-eight thousand four hundred forty-five'),\n(7367, 53641, 'fifty-three thousand six hundred forty-one'),\n(7368, 64496, 'sixty-four thousand four hundred ninety-six'),\n(7369, 22525, 'twenty-two thousand five hundred twenty-five'),\n(7370, 96979, 'ninety-six thousand nine hundred seventy-nine'),\n(7371, 26026, 'twenty-six thousand twenty-six'),\n(7372, 66299, 'sixty-six thousand two hundred ninety-nine'),\n(7373, 63489, 'sixty-three thousand four hundred eighty-nine'),\n(7374, 49429, 'forty-nine thousand four hundred twenty-nine'),\n(7375, 78692, 'seventy-eight thousand six hundred ninety-two'),\n(7376, 837, 'eight hundred thirty-seven'),\n(7377, 70519, 'seventy thousand five hundred nineteen'),\n(7378, 65336, 'sixty-five thousand three hundred thirty-six'),\n(7379, 32764, 'thirty-two thousand seven hundred sixty-four'),\n(7380, 38253, 'thirty-eight thousand two hundred fifty-three'),\n(7381, 11074, 'eleven thousand seventy-four'),\n(7382, 85697, 'eighty-five thousand six hundred ninety-seven'),\n(7383, 39179, 'thirty-nine thousand one hundred seventy-nine'),\n(7384, 65031, 'sixty-five thousand thirty-one'),\n(7385, 67408, 'sixty-seven thousand four hundred eight'),\n(7386, 92027, 'ninety-two thousand twenty-seven'),\n(7387, 67498, 'sixty-seven thousand four hundred ninety-eight'),\n(7388, 53423, 'fifty-three thousand four hundred twenty-three'),\n(7389, 74263, 'seventy-four thousand two hundred sixty-three'),\n(7390, 91085, 'ninety-one thousand eighty-five'),\n(7391, 95463, 'ninety-five thousand four hundred sixty-three'),\n(7392, 77277, 'seventy-seven thousand two hundred seventy-seven'),\n(7393, 38802, 'thirty-eight thousand eight hundred two'),\n(7394, 53304, 'fifty-three thousand three hundred four'),\n(7395, 70192, 'seventy thousand one hundred ninety-two'),\n(7396, 94906, 'ninety-four thousand nine hundred six'),\n(7397, 54039, 'fifty-four thousand thirty-nine'),\n(7398, 20635, 'twenty thousand six hundred thirty-five'),\n(7399, 79504, 'seventy-nine thousand five hundred four'),\n(7400, 9461, 'nine thousand four hundred sixty-one'),\n(7401, 38963, 'thirty-eight thousand nine hundred sixty-three'),\n(7402, 8529, 'eight thousand five hundred twenty-nine'),\n(7403, 81890, 'eighty-one thousand eight hundred ninety'),\n(7404, 40177, 'forty thousand one hundred seventy-seven'),\n(7405, 64703, 'sixty-four thousand seven hundred three'),\n(7406, 79332, 'seventy-nine thousand three hundred thirty-two'),\n(7407, 19102, 'nineteen thousand one hundred two'),\n(7408, 69980, 'sixty-nine thousand nine hundred eighty'),\n(7409, 98709, 'ninety-eight thousand seven hundred nine'),\n(7410, 47286, 'forty-seven thousand two hundred eighty-six'),\n(7411, 94188, 'ninety-four thousand one hundred eighty-eight'),\n(7412, 9888, 'nine thousand eight hundred eighty-eight'),\n(7413, 74431, 'seventy-four thousand four hundred thirty-one'),\n(7414, 85319, 'eighty-five thousand three hundred nineteen'),\n(7415, 43359, 'forty-three thousand three hundred fifty-nine'),\n(7416, 59822, 'fifty-nine thousand eight hundred twenty-two'),\n(7417, 54754, 'fifty-four thousand seven hundred fifty-four'),\n(7418, 19939, 'nineteen thousand nine hundred thirty-nine'),\n(7419, 27173, 'twenty-seven thousand one hundred seventy-three'),\n(7420, 39417, 'thirty-nine thousand four hundred seventeen'),\n(7421, 5050, 'five thousand fifty'),\n(7422, 82733, 'eighty-two thousand seven hundred thirty-three'),\n(7423, 71513, 'seventy-one thousand five hundred thirteen'),\n(7424, 61625, 'sixty-one thousand six hundred twenty-five'),\n(7425, 38970, 'thirty-eight thousand nine hundred seventy'),\n(7426, 57012, 'fifty-seven thousand twelve'),\n(7427, 86190, 'eighty-six thousand one hundred ninety'),\n(7428, 49754, 'forty-nine thousand seven hundred fifty-four'),\n(7429, 3570, 'three thousand five hundred seventy'),\n(7430, 96076, 'ninety-six thousand seventy-six'),\n(7431, 4745, 'four thousand seven hundred forty-five'),\n(7432, 92184, 'ninety-two thousand one hundred eighty-four'),\n(7433, 72315, 'seventy-two thousand three hundred fifteen'),\n(7434, 85172, 'eighty-five thousand one hundred seventy-two'),\n(7435, 35389, 'thirty-five thousand three hundred eighty-nine'),\n(7436, 67991, 'sixty-seven thousand nine hundred ninety-one'),\n(7437, 35787, 'thirty-five thousand seven hundred eighty-seven'),\n(7438, 17895, 'seventeen thousand eight hundred ninety-five'),\n(7439, 97226, 'ninety-seven thousand two hundred twenty-six'),\n(7440, 66758, 'sixty-six thousand seven hundred fifty-eight'),\n(7441, 51392, 'fifty-one thousand three hundred ninety-two'),\n(7442, 9569, 'nine thousand five hundred sixty-nine'),\n(7443, 11318, 'eleven thousand three hundred eighteen'),\n(7444, 65677, 'sixty-five thousand six hundred seventy-seven'),\n(7445, 61757, 'sixty-one thousand seven hundred fifty-seven'),\n(7446, 66882, 'sixty-six thousand eight hundred eighty-two'),\n(7447, 70581, 'seventy thousand five hundred eighty-one'),\n(7448, 34156, 'thirty-four thousand one hundred fifty-six'),\n(7449, 60205, 'sixty thousand two hundred five'),\n(7450, 96642, 'ninety-six thousand six hundred forty-two'),\n(7451, 72517, 'seventy-two thousand five hundred seventeen'),\n(7452, 61711, 'sixty-one thousand seven hundred eleven'),\n(7453, 64009, 'sixty-four thousand nine'),\n(7454, 4585, 'four thousand five hundred eighty-five'),\n(7455, 2992, 'two thousand nine hundred ninety-two'),\n(7456, 69552, 'sixty-nine thousand five hundred fifty-two'),\n(7457, 48447, 'forty-eight thousand four hundred forty-seven'),\n(7458, 40860, 'forty thousand eight hundred sixty'),\n(7459, 48556, 'forty-eight thousand five hundred fifty-six'),\n(7460, 54763, 'fifty-four thousand seven hundred sixty-three'),\n(7461, 80128, 'eighty thousand one hundred twenty-eight'),\n(7462, 12294, 'twelve thousand two hundred ninety-four'),\n(7463, 99064, 'ninety-nine thousand sixty-four'),\n(7464, 95603, 'ninety-five thousand six hundred three'),\n(7465, 22560, 'twenty-two thousand five hundred sixty'),\n(7466, 4045, 'four thousand forty-five'),\n(7467, 13916, 'thirteen thousand nine hundred sixteen'),\n(7468, 71415, 'seventy-one thousand four hundred fifteen'),\n(7469, 96384, 'ninety-six thousand three hundred eighty-four'),\n(7470, 47370, 'forty-seven thousand three hundred seventy'),\n(7471, 32635, 'thirty-two thousand six hundred thirty-five'),\n(7472, 41647, 'forty-one thousand six hundred forty-seven'),\n(7473, 77570, 'seventy-seven thousand five hundred seventy'),\n(7474, 16982, 'sixteen thousand nine hundred eighty-two'),\n(7475, 57260, 'fifty-seven thousand two hundred sixty'),\n(7476, 81874, 'eighty-one thousand eight hundred seventy-four'),\n(7477, 12504, 'twelve thousand five hundred four'),\n(7478, 6017, 'six thousand seventeen'),\n(7479, 92489, 'ninety-two thousand four hundred eighty-nine'),\n(7480, 24565, 'twenty-four thousand five hundred sixty-five'),\n(7481, 66542, 'sixty-six thousand five hundred forty-two'),\n(7482, 55826, 'fifty-five thousand eight hundred twenty-six'),\n(7483, 58424, 'fifty-eight thousand four hundred twenty-four'),\n(7484, 35503, 'thirty-five thousand five hundred three'),\n(7485, 37619, 'thirty-seven thousand six hundred nineteen'),\n(7486, 35052, 'thirty-five thousand fifty-two'),\n(7487, 20516, 'twenty thousand five hundred sixteen'),\n(7488, 28207, 'twenty-eight thousand two hundred seven'),\n(7489, 37939, 'thirty-seven thousand nine hundred thirty-nine'),\n(7490, 64114, 'sixty-four thousand one hundred fourteen'),\n(7491, 57495, 'fifty-seven thousand four hundred ninety-five'),\n(7492, 1723, 'one thousand seven hundred twenty-three'),\n(7493, 30893, 'thirty thousand eight hundred ninety-three'),\n(7494, 84887, 'eighty-four thousand eight hundred eighty-seven'),\n(7495, 80399, 'eighty thousand three hundred ninety-nine'),\n(7496, 78016, 'seventy-eight thousand sixteen'),\n(7497, 98840, 'ninety-eight thousand eight hundred forty'),\n(7498, 46953, 'forty-six thousand nine hundred fifty-three'),\n(7499, 44776, 'forty-four thousand seven hundred seventy-six'),\n(7500, 9547, 'nine thousand five hundred forty-seven'),\n(7501, 90833, 'ninety thousand eight hundred thirty-three'),\n(7502, 53107, 'fifty-three thousand one hundred seven'),\n(7503, 52712, 'fifty-two thousand seven hundred twelve'),\n(7504, 68252, 'sixty-eight thousand two hundred fifty-two'),\n(7505, 74509, 'seventy-four thousand five hundred nine'),\n(7506, 65288, 'sixty-five thousand two hundred eighty-eight'),\n(7507, 50712, 'fifty thousand seven hundred twelve'),\n(7508, 97665, 'ninety-seven thousand six hundred sixty-five'),\n(7509, 79046, 'seventy-nine thousand forty-six'),\n(7510, 41546, 'forty-one thousand five hundred forty-six'),\n(7511, 12239, 'twelve thousand two hundred thirty-nine'),\n(7512, 27949, 'twenty-seven thousand nine hundred forty-nine'),\n(7513, 7411, 'seven thousand four hundred eleven'),\n(7514, 34311, 'thirty-four thousand three hundred eleven'),\n(7515, 74659, 'seventy-four thousand six hundred fifty-nine'),\n(7516, 66488, 'sixty-six thousand four hundred eighty-eight'),\n(7517, 13787, 'thirteen thousand seven hundred eighty-seven'),\n(7518, 46028, 'forty-six thousand twenty-eight'),\n(7519, 11820, 'eleven thousand eight hundred twenty'),\n(7520, 45427, 'forty-five thousand four hundred twenty-seven'),\n(7521, 52355, 'fifty-two thousand three hundred fifty-five'),\n(7522, 28745, 'twenty-eight thousand seven hundred forty-five'),\n(7523, 9026, 'nine thousand twenty-six'),\n(7524, 94884, 'ninety-four thousand eight hundred eighty-four'),\n(7525, 76702, 'seventy-six thousand seven hundred two'),\n(7526, 39677, 'thirty-nine thousand six hundred seventy-seven'),\n(7527, 72087, 'seventy-two thousand eighty-seven'),\n(7528, 97734, 'ninety-seven thousand seven hundred thirty-four'),\n(7529, 32518, 'thirty-two thousand five hundred eighteen'),\n(7530, 50306, 'fifty thousand three hundred six'),\n(7531, 37149, 'thirty-seven thousand one hundred forty-nine'),\n(7532, 97313, 'ninety-seven thousand three hundred thirteen'),\n(7533, 1129, 'one thousand one hundred twenty-nine'),\n(7534, 12070, 'twelve thousand seventy'),\n(7535, 30942, 'thirty thousand nine hundred forty-two'),\n(7536, 77989, 'seventy-seven thousand nine hundred eighty-nine'),\n(7537, 54855, 'fifty-four thousand eight hundred fifty-five'),\n(7538, 35213, 'thirty-five thousand two hundred thirteen'),\n(7539, 39137, 'thirty-nine thousand one hundred thirty-seven'),\n(7540, 14845, 'fourteen thousand eight hundred forty-five'),\n(7541, 97824, 'ninety-seven thousand eight hundred twenty-four'),\n(7542, 34872, 'thirty-four thousand eight hundred seventy-two'),\n(7543, 35272, 'thirty-five thousand two hundred seventy-two'),\n(7544, 78747, 'seventy-eight thousand seven hundred forty-seven'),\n(7545, 12609, 'twelve thousand six hundred nine'),\n(7546, 22610, 'twenty-two thousand six hundred ten'),\n(7547, 74120, 'seventy-four thousand one hundred twenty'),\n(7548, 11307, 'eleven thousand three hundred seven'),\n(7549, 78732, 'seventy-eight thousand seven hundred thirty-two'),\n(7550, 38744, 'thirty-eight thousand seven hundred forty-four'),\n(7551, 86177, 'eighty-six thousand one hundred seventy-seven'),\n(7552, 76698, 'seventy-six thousand six hundred ninety-eight'),\n(7553, 98127, 'ninety-eight thousand one hundred twenty-seven'),\n(7554, 45165, 'forty-five thousand one hundred sixty-five'),\n(7555, 20447, 'twenty thousand four hundred forty-seven'),\n(7556, 50029, 'fifty thousand twenty-nine'),\n(7557, 45474, 'forty-five thousand four hundred seventy-four'),\n(7558, 58763, 'fifty-eight thousand seven hundred sixty-three'),\n(7559, 1595, 'one thousand five hundred ninety-five'),\n(7560, 85801, 'eighty-five thousand eight hundred one'),\n(7561, 71686, 'seventy-one thousand six hundred eighty-six'),\n(7562, 48690, 'forty-eight thousand six hundred ninety'),\n(7563, 69831, 'sixty-nine thousand eight hundred thirty-one'),\n(7564, 41830, 'forty-one thousand eight hundred thirty'),\n(7565, 39401, 'thirty-nine thousand four hundred one'),\n(7566, 36409, 'thirty-six thousand four hundred nine'),\n(7567, 93546, 'ninety-three thousand five hundred forty-six'),\n(7568, 28623, 'twenty-eight thousand six hundred twenty-three'),\n(7569, 76447, 'seventy-six thousand four hundred forty-seven'),\n(7570, 74155, 'seventy-four thousand one hundred fifty-five'),\n(7571, 27676, 'twenty-seven thousand six hundred seventy-six'),\n(7572, 93103, 'ninety-three thousand one hundred three'),\n(7573, 74447, 'seventy-four thousand four hundred forty-seven'),\n(7574, 15621, 'fifteen thousand six hundred twenty-one'),\n(7575, 2525, 'two thousand five hundred twenty-five'),\n(7576, 33109, 'thirty-three thousand one hundred nine'),\n(7577, 64120, 'sixty-four thousand one hundred twenty'),\n(7578, 52964, 'fifty-two thousand nine hundred sixty-four'),\n(7579, 76616, 'seventy-six thousand six hundred sixteen'),\n(7580, 48564, 'forty-eight thousand five hundred sixty-four'),\n(7581, 16025, 'sixteen thousand twenty-five'),\n(7582, 80423, 'eighty thousand four hundred twenty-three'),\n(7583, 70279, 'seventy thousand two hundred seventy-nine'),\n(7584, 5922, 'five thousand nine hundred twenty-two'),\n(7585, 98448, 'ninety-eight thousand four hundred forty-eight'),\n(7586, 87113, 'eighty-seven thousand one hundred thirteen'),\n(7587, 94305, 'ninety-four thousand three hundred five'),\n(7588, 16578, 'sixteen thousand five hundred seventy-eight'),\n(7589, 82326, 'eighty-two thousand three hundred twenty-six'),\n(7590, 88899, 'eighty-eight thousand eight hundred ninety-nine'),\n(7591, 44787, 'forty-four thousand seven hundred eighty-seven'),\n(7592, 33204, 'thirty-three thousand two hundred four'),\n(7593, 57376, 'fifty-seven thousand three hundred seventy-six'),\n(7594, 13450, 'thirteen thousand four hundred fifty'),\n(7595, 12044, 'twelve thousand forty-four'),\n(7596, 44098, 'forty-four thousand ninety-eight'),\n(7597, 52412, 'fifty-two thousand four hundred twelve'),\n(7598, 10663, 'ten thousand six hundred sixty-three'),\n(7599, 99892, 'ninety-nine thousand eight hundred ninety-two'),\n(7600, 63839, 'sixty-three thousand eight hundred thirty-nine'),\n(7601, 49410, 'forty-nine thousand four hundred ten'),\n(7602, 61592, 'sixty-one thousand five hundred ninety-two'),\n(7603, 24187, 'twenty-four thousand one hundred eighty-seven'),\n(7604, 697, 'six hundred ninety-seven'),\n(7605, 73808, 'seventy-three thousand eight hundred eight'),\n(7606, 51709, 'fifty-one thousand seven hundred nine'),\n(7607, 28293, 'twenty-eight thousand two hundred ninety-three'),\n(7608, 10204, 'ten thousand two hundred four'),\n(7609, 67203, 'sixty-seven thousand two hundred three'),\n(7610, 12565, 'twelve thousand five hundred sixty-five'),\n(7611, 25215, 'twenty-five thousand two hundred fifteen'),\n(7612, 34623, 'thirty-four thousand six hundred twenty-three'),\n(7613, 69754, 'sixty-nine thousand seven hundred fifty-four'),\n(7614, 11969, 'eleven thousand nine hundred sixty-nine'),\n(7615, 86414, 'eighty-six thousand four hundred fourteen'),\n(7616, 77625, 'seventy-seven thousand six hundred twenty-five'),\n(7617, 73643, 'seventy-three thousand six hundred forty-three'),\n(7618, 82224, 'eighty-two thousand two hundred twenty-four'),\n(7619, 86857, 'eighty-six thousand eight hundred fifty-seven'),\n(7620, 23712, 'twenty-three thousand seven hundred twelve'),\n(7621, 9453, 'nine thousand four hundred fifty-three'),\n(7622, 14528, 'fourteen thousand five hundred twenty-eight'),\n(7623, 44197, 'forty-four thousand one hundred ninety-seven'),\n(7624, 80800, 'eighty thousand eight hundred'),\n(7625, 36617, 'thirty-six thousand six hundred seventeen'),\n(7626, 43490, 'forty-three thousand four hundred ninety'),\n(7627, 40014, 'forty thousand fourteen'),\n(7628, 27058, 'twenty-seven thousand fifty-eight'),\n(7629, 31330, 'thirty-one thousand three hundred thirty'),\n(7630, 18183, 'eighteen thousand one hundred eighty-three'),\n(7631, 26692, 'twenty-six thousand six hundred ninety-two'),\n(7632, 2326, 'two thousand three hundred twenty-six'),\n(7633, 8740, 'eight thousand seven hundred forty'),\n(7634, 71872, 'seventy-one thousand eight hundred seventy-two'),\n(7635, 94980, 'ninety-four thousand nine hundred eighty'),\n(7636, 57421, 'fifty-seven thousand four hundred twenty-one'),\n(7637, 50262, 'fifty thousand two hundred sixty-two'),\n(7638, 92558, 'ninety-two thousand five hundred fifty-eight'),\n(7639, 28433, 'twenty-eight thousand four hundred thirty-three'),\n(7640, 38487, 'thirty-eight thousand four hundred eighty-seven'),\n(7641, 57935, 'fifty-seven thousand nine hundred thirty-five'),\n(7642, 80686, 'eighty thousand six hundred eighty-six'),\n(7643, 82288, 'eighty-two thousand two hundred eighty-eight'),\n(7644, 45145, 'forty-five thousand one hundred forty-five'),\n(7645, 42731, 'forty-two thousand seven hundred thirty-one'),\n(7646, 92859, 'ninety-two thousand eight hundred fifty-nine'),\n(7647, 25249, 'twenty-five thousand two hundred forty-nine'),\n(7648, 27889, 'twenty-seven thousand eight hundred eighty-nine'),\n(7649, 32498, 'thirty-two thousand four hundred ninety-eight'),\n(7650, 67190, 'sixty-seven thousand one hundred ninety'),\n(7651, 16483, 'sixteen thousand four hundred eighty-three'),\n(7652, 92921, 'ninety-two thousand nine hundred twenty-one'),\n(7653, 81931, 'eighty-one thousand nine hundred thirty-one'),\n(7654, 62118, 'sixty-two thousand one hundred eighteen'),\n(7655, 65606, 'sixty-five thousand six hundred six'),\n(7656, 80140, 'eighty thousand one hundred forty'),\n(7657, 17924, 'seventeen thousand nine hundred twenty-four'),\n(7658, 73424, 'seventy-three thousand four hundred twenty-four'),\n(7659, 44329, 'forty-four thousand three hundred twenty-nine'),\n(7660, 17251, 'seventeen thousand two hundred fifty-one'),\n(7661, 76550, 'seventy-six thousand five hundred fifty'),\n(7662, 96373, 'ninety-six thousand three hundred seventy-three'),\n(7663, 74089, 'seventy-four thousand eighty-nine'),\n(7664, 59197, 'fifty-nine thousand one hundred ninety-seven'),\n(7665, 33611, 'thirty-three thousand six hundred eleven'),\n(7666, 95643, 'ninety-five thousand six hundred forty-three'),\n(7667, 75288, 'seventy-five thousand two hundred eighty-eight'),\n(7668, 80946, 'eighty thousand nine hundred forty-six'),\n(7669, 65429, 'sixty-five thousand four hundred twenty-nine'),\n(7670, 93209, 'ninety-three thousand two hundred nine'),\n(7671, 57171, 'fifty-seven thousand one hundred seventy-one'),\n(7672, 7760, 'seven thousand seven hundred sixty'),\n(7673, 91460, 'ninety-one thousand four hundred sixty'),\n(7674, 63700, 'sixty-three thousand seven hundred'),\n(7675, 82372, 'eighty-two thousand three hundred seventy-two'),\n(7676, 50389, 'fifty thousand three hundred eighty-nine'),\n(7677, 67003, 'sixty-seven thousand three'),\n(7678, 9189, 'nine thousand one hundred eighty-nine'),\n(7679, 35140, 'thirty-five thousand one hundred forty'),\n(7680, 23469, 'twenty-three thousand four hundred sixty-nine'),\n(7681, 75837, 'seventy-five thousand eight hundred thirty-seven'),\n(7682, 50823, 'fifty thousand eight hundred twenty-three'),\n(7683, 39602, 'thirty-nine thousand six hundred two'),\n(7684, 2325, 'two thousand three hundred twenty-five'),\n(7685, 20892, 'twenty thousand eight hundred ninety-two'),\n(7686, 37539, 'thirty-seven thousand five hundred thirty-nine'),\n(7687, 48973, 'forty-eight thousand nine hundred seventy-three'),\n(7688, 30137, 'thirty thousand one hundred thirty-seven'),\n(7689, 64638, 'sixty-four thousand six hundred thirty-eight'),\n(7690, 29011, 'twenty-nine thousand eleven'),\n(7691, 28390, 'twenty-eight thousand three hundred ninety'),\n(7692, 46941, 'forty-six thousand nine hundred forty-one'),\n(7693, 41927, 'forty-one thousand nine hundred twenty-seven'),\n(7694, 87484, 'eighty-seven thousand four hundred eighty-four'),\n(7695, 41679, 'forty-one thousand six hundred seventy-nine'),\n(7696, 26773, 'twenty-six thousand seven hundred seventy-three'),\n(7697, 10393, 'ten thousand three hundred ninety-three'),\n(7698, 14423, 'fourteen thousand four hundred twenty-three'),\n(7699, 15814, 'fifteen thousand eight hundred fourteen'),\n(7700, 89719, 'eighty-nine thousand seven hundred nineteen'),\n(7701, 28084, 'twenty-eight thousand eighty-four'),\n(7702, 22485, 'twenty-two thousand four hundred eighty-five'),\n(7703, 41293, 'forty-one thousand two hundred ninety-three'),\n(7704, 7387, 'seven thousand three hundred eighty-seven'),\n(7705, 52637, 'fifty-two thousand six hundred thirty-seven'),\n(7706, 88522, 'eighty-eight thousand five hundred twenty-two'),\n(7707, 18970, 'eighteen thousand nine hundred seventy'),\n(7708, 43657, 'forty-three thousand six hundred fifty-seven'),\n(7709, 97783, 'ninety-seven thousand seven hundred eighty-three'),\n(7710, 54116, 'fifty-four thousand one hundred sixteen'),\n(7711, 82187, 'eighty-two thousand one hundred eighty-seven'),\n(7712, 73570, 'seventy-three thousand five hundred seventy'),\n(7713, 44730, 'forty-four thousand seven hundred thirty'),\n(7714, 34501, 'thirty-four thousand five hundred one'),\n(7715, 42000, 'forty-two thousand'),\n(7716, 24661, 'twenty-four thousand six hundred sixty-one'),\n(7717, 77717, 'seventy-seven thousand seven hundred seventeen'),\n(7718, 40548, 'forty thousand five hundred forty-eight'),\n(7719, 50510, 'fifty thousand five hundred ten'),\n(7720, 3961, 'three thousand nine hundred sixty-one'),\n(7721, 39790, 'thirty-nine thousand seven hundred ninety'),\n(7722, 38183, 'thirty-eight thousand one hundred eighty-three'),\n(7723, 66361, 'sixty-six thousand three hundred sixty-one'),\n(7724, 45077, 'forty-five thousand seventy-seven'),\n(7725, 28732, 'twenty-eight thousand seven hundred thirty-two'),\n(7726, 38696, 'thirty-eight thousand six hundred ninety-six'),\n(7727, 30611, 'thirty thousand six hundred eleven'),\n(7728, 76970, 'seventy-six thousand nine hundred seventy'),\n(7729, 71637, 'seventy-one thousand six hundred thirty-seven'),\n(7730, 53458, 'fifty-three thousand four hundred fifty-eight'),\n(7731, 59707, 'fifty-nine thousand seven hundred seven'),\n(7732, 22138, 'twenty-two thousand one hundred thirty-eight'),\n(7733, 98817, 'ninety-eight thousand eight hundred seventeen'),\n(7734, 65492, 'sixty-five thousand four hundred ninety-two'),\n(7735, 90389, 'ninety thousand three hundred eighty-nine'),\n(7736, 32177, 'thirty-two thousand one hundred seventy-seven'),\n(7737, 45441, 'forty-five thousand four hundred forty-one'),\n(7738, 37475, 'thirty-seven thousand four hundred seventy-five'),\n(7739, 86254, 'eighty-six thousand two hundred fifty-four'),\n(7740, 67310, 'sixty-seven thousand three hundred ten'),\n(7741, 44406, 'forty-four thousand four hundred six'),\n(7742, 92365, 'ninety-two thousand three hundred sixty-five'),\n(7743, 3669, 'three thousand six hundred sixty-nine'),\n(7744, 72385, 'seventy-two thousand three hundred eighty-five'),\n(7745, 28656, 'twenty-eight thousand six hundred fifty-six'),\n(7746, 34393, 'thirty-four thousand three hundred ninety-three'),\n(7747, 23183, 'twenty-three thousand one hundred eighty-three'),\n(7748, 94824, 'ninety-four thousand eight hundred twenty-four'),\n(7749, 80816, 'eighty thousand eight hundred sixteen'),\n(7750, 43350, 'forty-three thousand three hundred fifty'),\n(7751, 74944, 'seventy-four thousand nine hundred forty-four'),\n(7752, 57786, 'fifty-seven thousand seven hundred eighty-six'),\n(7753, 76814, 'seventy-six thousand eight hundred fourteen'),\n(7754, 48104, 'forty-eight thousand one hundred four'),\n(7755, 65442, 'sixty-five thousand four hundred forty-two'),\n(7756, 45982, 'forty-five thousand nine hundred eighty-two'),\n(7757, 72415, 'seventy-two thousand four hundred fifteen'),\n(7758, 49098, 'forty-nine thousand ninety-eight'),\n(7759, 59919, 'fifty-nine thousand nine hundred nineteen'),\n(7760, 56507, 'fifty-six thousand five hundred seven'),\n(7761, 85707, 'eighty-five thousand seven hundred seven'),\n(7762, 54960, 'fifty-four thousand nine hundred sixty'),\n(7763, 97175, 'ninety-seven thousand one hundred seventy-five'),\n(7764, 37918, 'thirty-seven thousand nine hundred eighteen'),\n(7765, 73860, 'seventy-three thousand eight hundred sixty'),\n(7766, 31892, 'thirty-one thousand eight hundred ninety-two'),\n(7767, 41566, 'forty-one thousand five hundred sixty-six'),\n(7768, 82413, 'eighty-two thousand four hundred thirteen'),\n(7769, 59479, 'fifty-nine thousand four hundred seventy-nine'),\n(7770, 64370, 'sixty-four thousand three hundred seventy'),\n(7771, 4669, 'four thousand six hundred sixty-nine'),\n(7772, 14769, 'fourteen thousand seven hundred sixty-nine'),\n(7773, 53780, 'fifty-three thousand seven hundred eighty'),\n(7774, 62838, 'sixty-two thousand eight hundred thirty-eight'),\n(7775, 34292, 'thirty-four thousand two hundred ninety-two'),\n(7776, 3466, 'three thousand four hundred sixty-six'),\n(7777, 76865, 'seventy-six thousand eight hundred sixty-five'),\n(7778, 17160, 'seventeen thousand one hundred sixty'),\n(7779, 401, 'four hundred one'),\n(7780, 17164, 'seventeen thousand one hundred sixty-four'),\n(7781, 75688, 'seventy-five thousand six hundred eighty-eight'),\n(7782, 11361, 'eleven thousand three hundred sixty-one'),\n(7783, 37011, 'thirty-seven thousand eleven'),\n(7784, 1004, 'one thousand four'),\n(7785, 59597, 'fifty-nine thousand five hundred ninety-seven'),\n(7786, 95316, 'ninety-five thousand three hundred sixteen'),\n(7787, 98556, 'ninety-eight thousand five hundred fifty-six'),\n(7788, 21101, 'twenty-one thousand one hundred one'),\n(7789, 61503, 'sixty-one thousand five hundred three'),\n(7790, 18958, 'eighteen thousand nine hundred fifty-eight'),\n(7791, 16053, 'sixteen thousand fifty-three'),\n(7792, 34345, 'thirty-four thousand three hundred forty-five'),\n(7793, 71286, 'seventy-one thousand two hundred eighty-six'),\n(7794, 55079, 'fifty-five thousand seventy-nine'),\n(7795, 84709, 'eighty-four thousand seven hundred nine'),\n(7796, 6401, 'six thousand four hundred one'),\n(7797, 49916, 'forty-nine thousand nine hundred sixteen'),\n(7798, 16557, 'sixteen thousand five hundred fifty-seven'),\n(7799, 53884, 'fifty-three thousand eight hundred eighty-four'),\n(7800, 49497, 'forty-nine thousand four hundred ninety-seven'),\n(7801, 35399, 'thirty-five thousand three hundred ninety-nine'),\n(7802, 32014, 'thirty-two thousand fourteen'),\n(7803, 80150, 'eighty thousand one hundred fifty'),\n(7804, 76209, 'seventy-six thousand two hundred nine'),\n(7805, 27119, 'twenty-seven thousand one hundred nineteen'),\n(7806, 1436, 'one thousand four hundred thirty-six'),\n(7807, 28443, 'twenty-eight thousand four hundred forty-three'),\n(7808, 5128, 'five thousand one hundred twenty-eight'),\n(7809, 42019, 'forty-two thousand nineteen'),\n(7810, 67110, 'sixty-seven thousand one hundred ten'),\n(7811, 72176, 'seventy-two thousand one hundred seventy-six'),\n(7812, 85266, 'eighty-five thousand two hundred sixty-six'),\n(7813, 57660, 'fifty-seven thousand six hundred sixty'),\n(7814, 12268, 'twelve thousand two hundred sixty-eight'),\n(7815, 49656, 'forty-nine thousand six hundred fifty-six'),\n(7816, 16759, 'sixteen thousand seven hundred fifty-nine'),\n(7817, 58515, 'fifty-eight thousand five hundred fifteen'),\n(7818, 71716, 'seventy-one thousand seven hundred sixteen'),\n(7819, 3380, 'three thousand three hundred eighty'),\n(7820, 41427, 'forty-one thousand four hundred twenty-seven'),\n(7821, 45370, 'forty-five thousand three hundred seventy'),\n(7822, 71901, 'seventy-one thousand nine hundred one'),\n(7823, 65301, 'sixty-five thousand three hundred one'),\n(7824, 2670, 'two thousand six hundred seventy'),\n(7825, 19172, 'nineteen thousand one hundred seventy-two'),\n(7826, 68339, 'sixty-eight thousand three hundred thirty-nine'),\n(7827, 16225, 'sixteen thousand two hundred twenty-five'),\n(7828, 18858, 'eighteen thousand eight hundred fifty-eight'),\n(7829, 88999, 'eighty-eight thousand nine hundred ninety-nine'),\n(7830, 51327, 'fifty-one thousand three hundred twenty-seven'),\n(7831, 48742, 'forty-eight thousand seven hundred forty-two'),\n(7832, 23314, 'twenty-three thousand three hundred fourteen'),\n(7833, 91632, 'ninety-one thousand six hundred thirty-two'),\n(7834, 64090, 'sixty-four thousand ninety'),\n(7835, 35586, 'thirty-five thousand five hundred eighty-six'),\n(7836, 68515, 'sixty-eight thousand five hundred fifteen'),\n(7837, 29135, 'twenty-nine thousand one hundred thirty-five'),\n(7838, 82777, 'eighty-two thousand seven hundred seventy-seven'),\n(7839, 11929, 'eleven thousand nine hundred twenty-nine'),\n(7840, 90970, 'ninety thousand nine hundred seventy'),\n(7841, 28168, 'twenty-eight thousand one hundred sixty-eight'),\n(7842, 33405, 'thirty-three thousand four hundred five'),\n(7843, 39836, 'thirty-nine thousand eight hundred thirty-six'),\n(7844, 95084, 'ninety-five thousand eighty-four'),\n(7845, 69434, 'sixty-nine thousand four hundred thirty-four'),\n(7846, 9721, 'nine thousand seven hundred twenty-one'),\n(7847, 95295, 'ninety-five thousand two hundred ninety-five'),\n(7848, 67347, 'sixty-seven thousand three hundred forty-seven'),\n(7849, 98004, 'ninety-eight thousand four'),\n(7850, 68255, 'sixty-eight thousand two hundred fifty-five'),\n(7851, 27363, 'twenty-seven thousand three hundred sixty-three'),\n(7852, 57905, 'fifty-seven thousand nine hundred five'),\n(7853, 24252, 'twenty-four thousand two hundred fifty-two'),\n(7854, 67704, 'sixty-seven thousand seven hundred four'),\n(7855, 21725, 'twenty-one thousand seven hundred twenty-five'),\n(7856, 91845, 'ninety-one thousand eight hundred forty-five'),\n(7857, 1314, 'one thousand three hundred fourteen'),\n(7858, 9917, 'nine thousand nine hundred seventeen'),\n(7859, 75048, 'seventy-five thousand forty-eight'),\n(7860, 85623, 'eighty-five thousand six hundred twenty-three'),\n(7861, 71987, 'seventy-one thousand nine hundred eighty-seven'),\n(7862, 24285, 'twenty-four thousand two hundred eighty-five'),\n(7863, 58454, 'fifty-eight thousand four hundred fifty-four'),\n(7864, 42786, 'forty-two thousand seven hundred eighty-six'),\n(7865, 79234, 'seventy-nine thousand two hundred thirty-four'),\n(7866, 99516, 'ninety-nine thousand five hundred sixteen'),\n(7867, 64444, 'sixty-four thousand four hundred forty-four'),\n(7868, 7352, 'seven thousand three hundred fifty-two'),\n(7869, 63602, 'sixty-three thousand six hundred two'),\n(7870, 9958, 'nine thousand nine hundred fifty-eight'),\n(7871, 71753, 'seventy-one thousand seven hundred fifty-three'),\n(7872, 86691, 'eighty-six thousand six hundred ninety-one'),\n(7873, 47792, 'forty-seven thousand seven hundred ninety-two'),\n(7874, 33791, 'thirty-three thousand seven hundred ninety-one'),\n(7875, 51444, 'fifty-one thousand four hundred forty-four'),\n(7876, 11292, 'eleven thousand two hundred ninety-two'),\n(7877, 78248, 'seventy-eight thousand two hundred forty-eight'),\n(7878, 75482, 'seventy-five thousand four hundred eighty-two'),\n(7879, 20041, 'twenty thousand forty-one'),\n(7880, 98709, 'ninety-eight thousand seven hundred nine'),\n(7881, 83684, 'eighty-three thousand six hundred eighty-four'),\n(7882, 25884, 'twenty-five thousand eight hundred eighty-four'),\n(7883, 4485, 'four thousand four hundred eighty-five'),\n(7884, 58970, 'fifty-eight thousand nine hundred seventy'),\n(7885, 56064, 'fifty-six thousand sixty-four'),\n(7886, 37825, 'thirty-seven thousand eight hundred twenty-five'),\n(7887, 60151, 'sixty thousand one hundred fifty-one'),\n(7888, 24460, 'twenty-four thousand four hundred sixty'),\n(7889, 91714, 'ninety-one thousand seven hundred fourteen'),\n(7890, 8689, 'eight thousand six hundred eighty-nine'),\n(7891, 86106, 'eighty-six thousand one hundred six'),\n(7892, 67108, 'sixty-seven thousand one hundred eight'),\n(7893, 2998, 'two thousand nine hundred ninety-eight'),\n(7894, 19490, 'nineteen thousand four hundred ninety'),\n(7895, 94871, 'ninety-four thousand eight hundred seventy-one'),\n(7896, 71871, 'seventy-one thousand eight hundred seventy-one'),\n(7897, 59040, 'fifty-nine thousand forty'),\n(7898, 30046, 'thirty thousand forty-six'),\n(7899, 33383, 'thirty-three thousand three hundred eighty-three'),\n(7900, 90123, 'ninety thousand one hundred twenty-three'),\n(7901, 59580, 'fifty-nine thousand five hundred eighty'),\n(7902, 37492, 'thirty-seven thousand four hundred ninety-two'),\n(7903, 46958, 'forty-six thousand nine hundred fifty-eight'),\n(7904, 36796, 'thirty-six thousand seven hundred ninety-six'),\n(7905, 52956, 'fifty-two thousand nine hundred fifty-six'),\n(7906, 50908, 'fifty thousand nine hundred eight'),\n(7907, 91976, 'ninety-one thousand nine hundred seventy-six'),\n(7908, 22398, 'twenty-two thousand three hundred ninety-eight'),\n(7909, 24275, 'twenty-four thousand two hundred seventy-five'),\n(7910, 74154, 'seventy-four thousand one hundred fifty-four'),\n(7911, 34601, 'thirty-four thousand six hundred one'),\n(7912, 66135, 'sixty-six thousand one hundred thirty-five'),\n(7913, 16419, 'sixteen thousand four hundred nineteen'),\n(7914, 78589, 'seventy-eight thousand five hundred eighty-nine'),\n(7915, 15470, 'fifteen thousand four hundred seventy'),\n(7916, 95304, 'ninety-five thousand three hundred four'),\n(7917, 86871, 'eighty-six thousand eight hundred seventy-one'),\n(7918, 12575, 'twelve thousand five hundred seventy-five'),\n(7919, 43291, 'forty-three thousand two hundred ninety-one'),\n(7920, 15152, 'fifteen thousand one hundred fifty-two'),\n(7921, 56256, 'fifty-six thousand two hundred fifty-six'),\n(7922, 57666, 'fifty-seven thousand six hundred sixty-six'),\n(7923, 44178, 'forty-four thousand one hundred seventy-eight'),\n(7924, 4593, 'four thousand five hundred ninety-three'),\n(7925, 19782, 'nineteen thousand seven hundred eighty-two'),\n(7926, 40497, 'forty thousand four hundred ninety-seven'),\n(7927, 98209, 'ninety-eight thousand two hundred nine'),\n(7928, 69063, 'sixty-nine thousand sixty-three'),\n(7929, 59555, 'fifty-nine thousand five hundred fifty-five'),\n(7930, 30160, 'thirty thousand one hundred sixty'),\n(7931, 50693, 'fifty thousand six hundred ninety-three'),\n(7932, 51358, 'fifty-one thousand three hundred fifty-eight'),\n(7933, 79522, 'seventy-nine thousand five hundred twenty-two'),\n(7934, 99189, 'ninety-nine thousand one hundred eighty-nine'),\n(7935, 58707, 'fifty-eight thousand seven hundred seven'),\n(7936, 50317, 'fifty thousand three hundred seventeen'),\n(7937, 78319, 'seventy-eight thousand three hundred nineteen'),\n(7938, 94596, 'ninety-four thousand five hundred ninety-six'),\n(7939, 77718, 'seventy-seven thousand seven hundred eighteen'),\n(7940, 92647, 'ninety-two thousand six hundred forty-seven'),\n(7941, 53345, 'fifty-three thousand three hundred forty-five'),\n(7942, 69238, 'sixty-nine thousand two hundred thirty-eight'),\n(7943, 37157, 'thirty-seven thousand one hundred fifty-seven'),\n(7944, 23715, 'twenty-three thousand seven hundred fifteen'),\n(7945, 38810, 'thirty-eight thousand eight hundred ten'),\n(7946, 8941, 'eight thousand nine hundred forty-one'),\n(7947, 46752, 'forty-six thousand seven hundred fifty-two'),\n(7948, 25448, 'twenty-five thousand four hundred forty-eight'),\n(7949, 22886, 'twenty-two thousand eight hundred eighty-six'),\n(7950, 57989, 'fifty-seven thousand nine hundred eighty-nine'),\n(7951, 92414, 'ninety-two thousand four hundred fourteen'),\n(7952, 12194, 'twelve thousand one hundred ninety-four'),\n(7953, 97932, 'ninety-seven thousand nine hundred thirty-two'),\n(7954, 61142, 'sixty-one thousand one hundred forty-two'),\n(7955, 84938, 'eighty-four thousand nine hundred thirty-eight'),\n(7956, 15406, 'fifteen thousand four hundred six'),\n(7957, 71546, 'seventy-one thousand five hundred forty-six'),\n(7958, 41813, 'forty-one thousand eight hundred thirteen'),\n(7959, 21609, 'twenty-one thousand six hundred nine'),\n(7960, 19274, 'nineteen thousand two hundred seventy-four'),\n(7961, 21582, 'twenty-one thousand five hundred eighty-two'),\n(7962, 22003, 'twenty-two thousand three'),\n(7963, 49892, 'forty-nine thousand eight hundred ninety-two'),\n(7964, 57352, 'fifty-seven thousand three hundred fifty-two'),\n(7965, 43051, 'forty-three thousand fifty-one'),\n(7966, 91397, 'ninety-one thousand three hundred ninety-seven'),\n(7967, 85229, 'eighty-five thousand two hundred twenty-nine'),\n(7968, 39150, 'thirty-nine thousand one hundred fifty'),\n(7969, 35499, 'thirty-five thousand four hundred ninety-nine'),\n(7970, 72590, 'seventy-two thousand five hundred ninety'),\n(7971, 20282, 'twenty thousand two hundred eighty-two'),\n(7972, 27358, 'twenty-seven thousand three hundred fifty-eight'),\n(7973, 27479, 'twenty-seven thousand four hundred seventy-nine'),\n(7974, 65659, 'sixty-five thousand six hundred fifty-nine'),\n(7975, 18603, 'eighteen thousand six hundred three'),\n(7976, 33109, 'thirty-three thousand one hundred nine'),\n(7977, 18538, 'eighteen thousand five hundred thirty-eight'),\n(7978, 5783, 'five thousand seven hundred eighty-three'),\n(7979, 69921, 'sixty-nine thousand nine hundred twenty-one'),\n(7980, 33659, 'thirty-three thousand six hundred fifty-nine'),\n(7981, 24916, 'twenty-four thousand nine hundred sixteen'),\n(7982, 56172, 'fifty-six thousand one hundred seventy-two'),\n(7983, 2643, 'two thousand six hundred forty-three'),\n(7984, 40158, 'forty thousand one hundred fifty-eight'),\n(7985, 85074, 'eighty-five thousand seventy-four'),\n(7986, 70835, 'seventy thousand eight hundred thirty-five'),\n(7987, 99934, 'ninety-nine thousand nine hundred thirty-four'),\n(7988, 57245, 'fifty-seven thousand two hundred forty-five'),\n(7989, 18632, 'eighteen thousand six hundred thirty-two'),\n(7990, 39069, 'thirty-nine thousand sixty-nine'),\n(7991, 1110, 'one thousand one hundred ten'),\n(7992, 2711, 'two thousand seven hundred eleven'),\n(7993, 67841, 'sixty-seven thousand eight hundred forty-one'),\n(7994, 60824, 'sixty thousand eight hundred twenty-four'),\n(7995, 85780, 'eighty-five thousand seven hundred eighty'),\n(7996, 60914, 'sixty thousand nine hundred fourteen'),\n(7997, 52986, 'fifty-two thousand nine hundred eighty-six'),\n(7998, 33458, 'thirty-three thousand four hundred fifty-eight'),\n(7999, 2844, 'two thousand eight hundred forty-four'),\n(8000, 25070, 'twenty-five thousand seventy'),\n(8001, 8928, 'eight thousand nine hundred twenty-eight'),\n(8002, 66324, 'sixty-six thousand three hundred twenty-four'),\n(8003, 53873, 'fifty-three thousand eight hundred seventy-three'),\n(8004, 42018, 'forty-two thousand eighteen'),\n(8005, 3208, 'three thousand two hundred eight'),\n(8006, 43547, 'forty-three thousand five hundred forty-seven'),\n(8007, 22134, 'twenty-two thousand one hundred thirty-four'),\n(8008, 77906, 'seventy-seven thousand nine hundred six'),\n(8009, 61053, 'sixty-one thousand fifty-three'),\n(8010, 78344, 'seventy-eight thousand three hundred forty-four'),\n(8011, 70308, 'seventy thousand three hundred eight'),\n(8012, 16823, 'sixteen thousand eight hundred twenty-three'),\n(8013, 27022, 'twenty-seven thousand twenty-two'),\n(8014, 64371, 'sixty-four thousand three hundred seventy-one'),\n(8015, 38814, 'thirty-eight thousand eight hundred fourteen'),\n(8016, 85065, 'eighty-five thousand sixty-five'),\n(8017, 34790, 'thirty-four thousand seven hundred ninety'),\n(8018, 37346, 'thirty-seven thousand three hundred forty-six'),\n(8019, 30352, 'thirty thousand three hundred fifty-two'),\n(8020, 32487, 'thirty-two thousand four hundred eighty-seven'),\n(8021, 75987, 'seventy-five thousand nine hundred eighty-seven'),\n(8022, 11705, 'eleven thousand seven hundred five'),\n(8023, 12606, 'twelve thousand six hundred six'),\n(8024, 74122, 'seventy-four thousand one hundred twenty-two'),\n(8025, 34554, 'thirty-four thousand five hundred fifty-four'),\n(8026, 66, 'sixty-six'),\n(8027, 63000, 'sixty-three thousand'),\n(8028, 59204, 'fifty-nine thousand two hundred four'),\n(8029, 46175, 'forty-six thousand one hundred seventy-five'),\n(8030, 57222, 'fifty-seven thousand two hundred twenty-two'),\n(8031, 65923, 'sixty-five thousand nine hundred twenty-three'),\n(8032, 45749, 'forty-five thousand seven hundred forty-nine'),\n(8033, 90379, 'ninety thousand three hundred seventy-nine'),\n(8034, 50801, 'fifty thousand eight hundred one'),\n(8035, 50274, 'fifty thousand two hundred seventy-four'),\n(8036, 31845, 'thirty-one thousand eight hundred forty-five'),\n(8037, 60255, 'sixty thousand two hundred fifty-five'),\n(8038, 46856, 'forty-six thousand eight hundred fifty-six'),\n(8039, 78744, 'seventy-eight thousand seven hundred forty-four'),\n(8040, 26629, 'twenty-six thousand six hundred twenty-nine'),\n(8041, 2948, 'two thousand nine hundred forty-eight'),\n(8042, 49812, 'forty-nine thousand eight hundred twelve'),\n(8043, 24675, 'twenty-four thousand six hundred seventy-five'),\n(8044, 82955, 'eighty-two thousand nine hundred fifty-five'),\n(8045, 13014, 'thirteen thousand fourteen'),\n(8046, 72677, 'seventy-two thousand six hundred seventy-seven'),\n(8047, 7789, 'seven thousand seven hundred eighty-nine'),\n(8048, 745, 'seven hundred forty-five'),\n(8049, 23420, 'twenty-three thousand four hundred twenty'),\n(8050, 19677, 'nineteen thousand six hundred seventy-seven'),\n(8051, 33494, 'thirty-three thousand four hundred ninety-four'),\n(8052, 58613, 'fifty-eight thousand six hundred thirteen'),\n(8053, 16831, 'sixteen thousand eight hundred thirty-one'),\n(8054, 33938, 'thirty-three thousand nine hundred thirty-eight'),\n(8055, 44808, 'forty-four thousand eight hundred eight'),\n(8056, 83042, 'eighty-three thousand forty-two'),\n(8057, 69593, 'sixty-nine thousand five hundred ninety-three'),\n(8058, 43322, 'forty-three thousand three hundred twenty-two'),\n(8059, 14947, 'fourteen thousand nine hundred forty-seven'),\n(8060, 73891, 'seventy-three thousand eight hundred ninety-one'),\n(8061, 5146, 'five thousand one hundred forty-six'),\n(8062, 97232, 'ninety-seven thousand two hundred thirty-two'),\n(8063, 71076, 'seventy-one thousand seventy-six'),\n(8064, 48429, 'forty-eight thousand four hundred twenty-nine'),\n(8065, 50647, 'fifty thousand six hundred forty-seven'),\n(8066, 42078, 'forty-two thousand seventy-eight'),\n(8067, 98266, 'ninety-eight thousand two hundred sixty-six'),\n(8068, 90976, 'ninety thousand nine hundred seventy-six'),\n(8069, 3942, 'three thousand nine hundred forty-two'),\n(8070, 14231, 'fourteen thousand two hundred thirty-one'),\n(8071, 43755, 'forty-three thousand seven hundred fifty-five'),\n(8072, 19136, 'nineteen thousand one hundred thirty-six'),\n(8073, 87900, 'eighty-seven thousand nine hundred'),\n(8074, 12572, 'twelve thousand five hundred seventy-two'),\n(8075, 65299, 'sixty-five thousand two hundred ninety-nine'),\n(8076, 86149, 'eighty-six thousand one hundred forty-nine'),\n(8077, 70547, 'seventy thousand five hundred forty-seven'),\n(8078, 70255, 'seventy thousand two hundred fifty-five'),\n(8079, 53491, 'fifty-three thousand four hundred ninety-one'),\n(8080, 84856, 'eighty-four thousand eight hundred fifty-six'),\n(8081, 64583, 'sixty-four thousand five hundred eighty-three'),\n(8082, 15853, 'fifteen thousand eight hundred fifty-three'),\n(8083, 68244, 'sixty-eight thousand two hundred forty-four'),\n(8084, 94505, 'ninety-four thousand five hundred five'),\n(8085, 63942, 'sixty-three thousand nine hundred forty-two'),\n(8086, 12813, 'twelve thousand eight hundred thirteen'),\n(8087, 74644, 'seventy-four thousand six hundred forty-four'),\n(8088, 5559, 'five thousand five hundred fifty-nine'),\n(8089, 75874, 'seventy-five thousand eight hundred seventy-four'),\n(8090, 73084, 'seventy-three thousand eighty-four'),\n(8091, 94530, 'ninety-four thousand five hundred thirty'),\n(8092, 73051, 'seventy-three thousand fifty-one'),\n(8093, 67429, 'sixty-seven thousand four hundred twenty-nine'),\n(8094, 90987, 'ninety thousand nine hundred eighty-seven'),\n(8095, 69402, 'sixty-nine thousand four hundred two'),\n(8096, 46649, 'forty-six thousand six hundred forty-nine'),\n(8097, 83657, 'eighty-three thousand six hundred fifty-seven'),\n(8098, 51060, 'fifty-one thousand sixty'),\n(8099, 5454, 'five thousand four hundred fifty-four'),\n(8100, 80481, 'eighty thousand four hundred eighty-one'),\n(8101, 72941, 'seventy-two thousand nine hundred forty-one'),\n(8102, 59662, 'fifty-nine thousand six hundred sixty-two'),\n(8103, 94896, 'ninety-four thousand eight hundred ninety-six'),\n(8104, 43533, 'forty-three thousand five hundred thirty-three'),\n(8105, 44784, 'forty-four thousand seven hundred eighty-four'),\n(8106, 34969, 'thirty-four thousand nine hundred sixty-nine'),\n(8107, 85870, 'eighty-five thousand eight hundred seventy'),\n(8108, 39439, 'thirty-nine thousand four hundred thirty-nine'),\n(8109, 69082, 'sixty-nine thousand eighty-two'),\n(8110, 87282, 'eighty-seven thousand two hundred eighty-two'),\n(8111, 92034, 'ninety-two thousand thirty-four'),\n(8112, 51510, 'fifty-one thousand five hundred ten'),\n(8113, 88207, 'eighty-eight thousand two hundred seven'),\n(8114, 43004, 'forty-three thousand four'),\n(8115, 97505, 'ninety-seven thousand five hundred five'),\n(8116, 95511, 'ninety-five thousand five hundred eleven'),\n(8117, 56740, 'fifty-six thousand seven hundred forty'),\n(8118, 55445, 'fifty-five thousand four hundred forty-five'),\n(8119, 54452, 'fifty-four thousand four hundred fifty-two'),\n(8120, 12929, 'twelve thousand nine hundred twenty-nine'),\n(8121, 14668, 'fourteen thousand six hundred sixty-eight'),\n(8122, 98628, 'ninety-eight thousand six hundred twenty-eight'),\n(8123, 51968, 'fifty-one thousand nine hundred sixty-eight'),\n(8124, 77764, 'seventy-seven thousand seven hundred sixty-four'),\n(8125, 20181, 'twenty thousand one hundred eighty-one'),\n(8126, 69051, 'sixty-nine thousand fifty-one'),\n(8127, 70075, 'seventy thousand seventy-five'),\n(8128, 31563, 'thirty-one thousand five hundred sixty-three'),\n(8129, 7790, 'seven thousand seven hundred ninety'),\n(8130, 1957, 'one thousand nine hundred fifty-seven'),\n(8131, 84808, 'eighty-four thousand eight hundred eight'),\n(8132, 4292, 'four thousand two hundred ninety-two'),\n(8133, 44569, 'forty-four thousand five hundred sixty-nine'),\n(8134, 47193, 'forty-seven thousand one hundred ninety-three'),\n(8135, 36028, 'thirty-six thousand twenty-eight'),\n(8136, 15304, 'fifteen thousand three hundred four'),\n(8137, 67755, 'sixty-seven thousand seven hundred fifty-five'),\n(8138, 89332, 'eighty-nine thousand three hundred thirty-two'),\n(8139, 64504, 'sixty-four thousand five hundred four'),\n(8140, 7286, 'seven thousand two hundred eighty-six'),\n(8141, 32677, 'thirty-two thousand six hundred seventy-seven'),\n(8142, 41147, 'forty-one thousand one hundred forty-seven'),\n(8143, 39377, 'thirty-nine thousand three hundred seventy-seven'),\n(8144, 7483, 'seven thousand four hundred eighty-three'),\n(8145, 96098, 'ninety-six thousand ninety-eight'),\n(8146, 83280, 'eighty-three thousand two hundred eighty'),\n(8147, 54576, 'fifty-four thousand five hundred seventy-six'),\n(8148, 29133, 'twenty-nine thousand one hundred thirty-three'),\n(8149, 99857, 'ninety-nine thousand eight hundred fifty-seven'),\n(8150, 43188, 'forty-three thousand one hundred eighty-eight'),\n(8151, 85086, 'eighty-five thousand eighty-six'),\n(8152, 68935, 'sixty-eight thousand nine hundred thirty-five'),\n(8153, 53435, 'fifty-three thousand four hundred thirty-five'),\n(8154, 79809, 'seventy-nine thousand eight hundred nine'),\n(8155, 6183, 'six thousand one hundred eighty-three'),\n(8156, 6566, 'six thousand five hundred sixty-six'),\n(8157, 54440, 'fifty-four thousand four hundred forty'),\n(8158, 23358, 'twenty-three thousand three hundred fifty-eight'),\n(8159, 58084, 'fifty-eight thousand eighty-four'),\n(8160, 84325, 'eighty-four thousand three hundred twenty-five'),\n(8161, 99143, 'ninety-nine thousand one hundred forty-three'),\n(8162, 80258, 'eighty thousand two hundred fifty-eight'),\n(8163, 66455, 'sixty-six thousand four hundred fifty-five'),\n(8164, 92738, 'ninety-two thousand seven hundred thirty-eight'),\n(8165, 87998, 'eighty-seven thousand nine hundred ninety-eight'),\n(8166, 53623, 'fifty-three thousand six hundred twenty-three'),\n(8167, 96117, 'ninety-six thousand one hundred seventeen'),\n(8168, 37290, 'thirty-seven thousand two hundred ninety'),\n(8169, 24322, 'twenty-four thousand three hundred twenty-two'),\n(8170, 73911, 'seventy-three thousand nine hundred eleven'),\n(8171, 12578, 'twelve thousand five hundred seventy-eight'),\n(8172, 21959, 'twenty-one thousand nine hundred fifty-nine'),\n(8173, 25342, 'twenty-five thousand three hundred forty-two'),\n(8174, 21320, 'twenty-one thousand three hundred twenty'),\n(8175, 71598, 'seventy-one thousand five hundred ninety-eight'),\n(8176, 70198, 'seventy thousand one hundred ninety-eight'),\n(8177, 14674, 'fourteen thousand six hundred seventy-four'),\n(8178, 6437, 'six thousand four hundred thirty-seven'),\n(8179, 2993, 'two thousand nine hundred ninety-three'),\n(8180, 85920, 'eighty-five thousand nine hundred twenty'),\n(8181, 3411, 'three thousand four hundred eleven'),\n(8182, 95554, 'ninety-five thousand five hundred fifty-four'),\n(8183, 5261, 'five thousand two hundred sixty-one'),\n(8184, 78776, 'seventy-eight thousand seven hundred seventy-six'),\n(8185, 85782, 'eighty-five thousand seven hundred eighty-two'),\n(8186, 44491, 'forty-four thousand four hundred ninety-one'),\n(8187, 21749, 'twenty-one thousand seven hundred forty-nine'),\n(8188, 91535, 'ninety-one thousand five hundred thirty-five'),\n(8189, 32517, 'thirty-two thousand five hundred seventeen'),\n(8190, 91762, 'ninety-one thousand seven hundred sixty-two'),\n(8191, 3283, 'three thousand two hundred eighty-three'),\n(8192, 68033, 'sixty-eight thousand thirty-three'),\n(8193, 64778, 'sixty-four thousand seven hundred seventy-eight'),\n(8194, 51967, 'fifty-one thousand nine hundred sixty-seven'),\n(8195, 9192, 'nine thousand one hundred ninety-two'),\n(8196, 21752, 'twenty-one thousand seven hundred fifty-two'),\n(8197, 46847, 'forty-six thousand eight hundred forty-seven'),\n(8198, 42572, 'forty-two thousand five hundred seventy-two'),\n(8199, 11026, 'eleven thousand twenty-six'),\n(8200, 35955, 'thirty-five thousand nine hundred fifty-five'),\n(8201, 889, 'eight hundred eighty-nine'),\n(8202, 82958, 'eighty-two thousand nine hundred fifty-eight'),\n(8203, 26821, 'twenty-six thousand eight hundred twenty-one'),\n(8204, 20434, 'twenty thousand four hundred thirty-four'),\n(8205, 62281, 'sixty-two thousand two hundred eighty-one'),\n(8206, 83577, 'eighty-three thousand five hundred seventy-seven'),\n(8207, 27138, 'twenty-seven thousand one hundred thirty-eight'),\n(8208, 76683, 'seventy-six thousand six hundred eighty-three'),\n(8209, 51137, 'fifty-one thousand one hundred thirty-seven'),\n(8210, 72581, 'seventy-two thousand five hundred eighty-one'),\n(8211, 62964, 'sixty-two thousand nine hundred sixty-four'),\n(8212, 62490, 'sixty-two thousand four hundred ninety'),\n(8213, 44681, 'forty-four thousand six hundred eighty-one'),\n(8214, 77074, 'seventy-seven thousand seventy-four'),\n(8215, 83710, 'eighty-three thousand seven hundred ten'),\n(8216, 60067, 'sixty thousand sixty-seven'),\n(8217, 49962, 'forty-nine thousand nine hundred sixty-two'),\n(8218, 61116, 'sixty-one thousand one hundred sixteen'),\n(8219, 20499, 'twenty thousand four hundred ninety-nine'),\n(8220, 16566, 'sixteen thousand five hundred sixty-six'),\n(8221, 4896, 'four thousand eight hundred ninety-six'),\n(8222, 99790, 'ninety-nine thousand seven hundred ninety'),\n(8223, 76178, 'seventy-six thousand one hundred seventy-eight'),\n(8224, 94185, 'ninety-four thousand one hundred eighty-five'),\n(8225, 40965, 'forty thousand nine hundred sixty-five'),\n(8226, 77461, 'seventy-seven thousand four hundred sixty-one'),\n(8227, 58507, 'fifty-eight thousand five hundred seven'),\n(8228, 28533, 'twenty-eight thousand five hundred thirty-three'),\n(8229, 97940, 'ninety-seven thousand nine hundred forty'),\n(8230, 9378, 'nine thousand three hundred seventy-eight'),\n(8231, 22730, 'twenty-two thousand seven hundred thirty'),\n(8232, 41840, 'forty-one thousand eight hundred forty'),\n(8233, 96246, 'ninety-six thousand two hundred forty-six'),\n(8234, 89165, 'eighty-nine thousand one hundred sixty-five'),\n(8235, 34253, 'thirty-four thousand two hundred fifty-three'),\n(8236, 16670, 'sixteen thousand six hundred seventy'),\n(8237, 7604, 'seven thousand six hundred four'),\n(8238, 17221, 'seventeen thousand two hundred twenty-one'),\n(8239, 4489, 'four thousand four hundred eighty-nine'),\n(8240, 6714, 'six thousand seven hundred fourteen'),\n(8241, 41924, 'forty-one thousand nine hundred twenty-four'),\n(8242, 62639, 'sixty-two thousand six hundred thirty-nine'),\n(8243, 26024, 'twenty-six thousand twenty-four'),\n(8244, 79183, 'seventy-nine thousand one hundred eighty-three'),\n(8245, 74813, 'seventy-four thousand eight hundred thirteen'),\n(8246, 27014, 'twenty-seven thousand fourteen'),\n(8247, 19087, 'nineteen thousand eighty-seven'),\n(8248, 12466, 'twelve thousand four hundred sixty-six'),\n(8249, 99145, 'ninety-nine thousand one hundred forty-five'),\n(8250, 44735, 'forty-four thousand seven hundred thirty-five'),\n(8251, 62032, 'sixty-two thousand thirty-two'),\n(8252, 77552, 'seventy-seven thousand five hundred fifty-two'),\n(8253, 99639, 'ninety-nine thousand six hundred thirty-nine'),\n(8254, 54249, 'fifty-four thousand two hundred forty-nine'),\n(8255, 61701, 'sixty-one thousand seven hundred one'),\n(8256, 83396, 'eighty-three thousand three hundred ninety-six'),\n(8257, 47620, 'forty-seven thousand six hundred twenty'),\n(8258, 1042, 'one thousand forty-two'),\n(8259, 15422, 'fifteen thousand four hundred twenty-two'),\n(8260, 71502, 'seventy-one thousand five hundred two'),\n(8261, 29782, 'twenty-nine thousand seven hundred eighty-two'),\n(8262, 96449, 'ninety-six thousand four hundred forty-nine'),\n(8263, 43260, 'forty-three thousand two hundred sixty'),\n(8264, 30715, 'thirty thousand seven hundred fifteen'),\n(8265, 19509, 'nineteen thousand five hundred nine'),\n(8266, 43298, 'forty-three thousand two hundred ninety-eight'),\n(8267, 32807, 'thirty-two thousand eight hundred seven'),\n(8268, 5203, 'five thousand two hundred three'),\n(8269, 27490, 'twenty-seven thousand four hundred ninety'),\n(8270, 13856, 'thirteen thousand eight hundred fifty-six'),\n(8271, 34788, 'thirty-four thousand seven hundred eighty-eight'),\n(8272, 79621, 'seventy-nine thousand six hundred twenty-one'),\n(8273, 82808, 'eighty-two thousand eight hundred eight'),\n(8274, 37417, 'thirty-seven thousand four hundred seventeen'),\n(8275, 13244, 'thirteen thousand two hundred forty-four'),\n(8276, 89970, 'eighty-nine thousand nine hundred seventy'),\n(8277, 96425, 'ninety-six thousand four hundred twenty-five'),\n(8278, 34543, 'thirty-four thousand five hundred forty-three'),\n(8279, 53736, 'fifty-three thousand seven hundred thirty-six'),\n(8280, 9308, 'nine thousand three hundred eight'),\n(8281, 63750, 'sixty-three thousand seven hundred fifty'),\n(8282, 82176, 'eighty-two thousand one hundred seventy-six'),\n(8283, 13194, 'thirteen thousand one hundred ninety-four'),\n(8284, 13409, 'thirteen thousand four hundred nine'),\n(8285, 28129, 'twenty-eight thousand one hundred twenty-nine'),\n(8286, 81386, 'eighty-one thousand three hundred eighty-six'),\n(8287, 85996, 'eighty-five thousand nine hundred ninety-six'),\n(8288, 48277, 'forty-eight thousand two hundred seventy-seven'),\n(8289, 18567, 'eighteen thousand five hundred sixty-seven'),\n(8290, 97133, 'ninety-seven thousand one hundred thirty-three'),\n(8291, 76330, 'seventy-six thousand three hundred thirty'),\n(8292, 91044, 'ninety-one thousand forty-four'),\n(8293, 46072, 'forty-six thousand seventy-two'),\n(8294, 76296, 'seventy-six thousand two hundred ninety-six'),\n(8295, 48214, 'forty-eight thousand two hundred fourteen'),\n(8296, 6752, 'six thousand seven hundred fifty-two'),\n(8297, 76845, 'seventy-six thousand eight hundred forty-five'),\n(8298, 13543, 'thirteen thousand five hundred forty-three'),\n(8299, 36318, 'thirty-six thousand three hundred eighteen'),\n(8300, 889, 'eight hundred eighty-nine'),\n(8301, 40713, 'forty thousand seven hundred thirteen'),\n(8302, 70521, 'seventy thousand five hundred twenty-one'),\n(8303, 89295, 'eighty-nine thousand two hundred ninety-five'),\n(8304, 44531, 'forty-four thousand five hundred thirty-one'),\n(8305, 31892, 'thirty-one thousand eight hundred ninety-two'),\n(8306, 86912, 'eighty-six thousand nine hundred twelve'),\n(8307, 54944, 'fifty-four thousand nine hundred forty-four'),\n(8308, 68025, 'sixty-eight thousand twenty-five'),\n(8309, 63382, 'sixty-three thousand three hundred eighty-two'),\n(8310, 72931, 'seventy-two thousand nine hundred thirty-one'),\n(8311, 50168, 'fifty thousand one hundred sixty-eight'),\n(8312, 32605, 'thirty-two thousand six hundred five'),\n(8313, 20937, 'twenty thousand nine hundred thirty-seven'),\n(8314, 25080, 'twenty-five thousand eighty'),\n(8315, 9824, 'nine thousand eight hundred twenty-four'),\n(8316, 71137, 'seventy-one thousand one hundred thirty-seven'),\n(8317, 24958, 'twenty-four thousand nine hundred fifty-eight'),\n(8318, 99835, 'ninety-nine thousand eight hundred thirty-five'),\n(8319, 28418, 'twenty-eight thousand four hundred eighteen'),\n(8320, 90929, 'ninety thousand nine hundred twenty-nine'),\n(8321, 3172, 'three thousand one hundred seventy-two'),\n(8322, 46563, 'forty-six thousand five hundred sixty-three'),\n(8323, 29177, 'twenty-nine thousand one hundred seventy-seven'),\n(8324, 1303, 'one thousand three hundred three'),\n(8325, 30302, 'thirty thousand three hundred two'),\n(8326, 52575, 'fifty-two thousand five hundred seventy-five'),\n(8327, 36542, 'thirty-six thousand five hundred forty-two'),\n(8328, 12329, 'twelve thousand three hundred twenty-nine'),\n(8329, 92604, 'ninety-two thousand six hundred four'),\n(8330, 51696, 'fifty-one thousand six hundred ninety-six'),\n(8331, 61183, 'sixty-one thousand one hundred eighty-three'),\n(8332, 34611, 'thirty-four thousand six hundred eleven'),\n(8333, 88779, 'eighty-eight thousand seven hundred seventy-nine'),\n(8334, 2666, 'two thousand six hundred sixty-six'),\n(8335, 6915, 'six thousand nine hundred fifteen'),\n(8336, 46174, 'forty-six thousand one hundred seventy-four'),\n(8337, 78896, 'seventy-eight thousand eight hundred ninety-six'),\n(8338, 6459, 'six thousand four hundred fifty-nine'),\n(8339, 27371, 'twenty-seven thousand three hundred seventy-one'),\n(8340, 15615, 'fifteen thousand six hundred fifteen'),\n(8341, 80469, 'eighty thousand four hundred sixty-nine'),\n(8342, 35237, 'thirty-five thousand two hundred thirty-seven'),\n(8343, 63927, 'sixty-three thousand nine hundred twenty-seven'),\n(8344, 13826, 'thirteen thousand eight hundred twenty-six'),\n(8345, 76699, 'seventy-six thousand six hundred ninety-nine'),\n(8346, 75679, 'seventy-five thousand six hundred seventy-nine'),\n(8347, 6505, 'six thousand five hundred five'),\n(8348, 2695, 'two thousand six hundred ninety-five'),\n(8349, 1716, 'one thousand seven hundred sixteen'),\n(8350, 79143, 'seventy-nine thousand one hundred forty-three'),\n(8351, 44558, 'forty-four thousand five hundred fifty-eight'),\n(8352, 78615, 'seventy-eight thousand six hundred fifteen'),\n(8353, 37550, 'thirty-seven thousand five hundred fifty'),\n(8354, 49053, 'forty-nine thousand fifty-three'),\n(8355, 47259, 'forty-seven thousand two hundred fifty-nine'),\n(8356, 22621, 'twenty-two thousand six hundred twenty-one'),\n(8357, 39368, 'thirty-nine thousand three hundred sixty-eight'),\n(8358, 92407, 'ninety-two thousand four hundred seven'),\n(8359, 77946, 'seventy-seven thousand nine hundred forty-six'),\n(8360, 34266, 'thirty-four thousand two hundred sixty-six'),\n(8361, 9912, 'nine thousand nine hundred twelve'),\n(8362, 85464, 'eighty-five thousand four hundred sixty-four'),\n(8363, 46679, 'forty-six thousand six hundred seventy-nine'),\n(8364, 14462, 'fourteen thousand four hundred sixty-two'),\n(8365, 11746, 'eleven thousand seven hundred forty-six'),\n(8366, 6500, 'six thousand five hundred'),\n(8367, 54701, 'fifty-four thousand seven hundred one'),\n(8368, 41957, 'forty-one thousand nine hundred fifty-seven'),\n(8369, 48638, 'forty-eight thousand six hundred thirty-eight'),\n(8370, 49833, 'forty-nine thousand eight hundred thirty-three'),\n(8371, 70205, 'seventy thousand two hundred five'),\n(8372, 41075, 'forty-one thousand seventy-five'),\n(8373, 60126, 'sixty thousand one hundred twenty-six'),\n(8374, 26884, 'twenty-six thousand eight hundred eighty-four'),\n(8375, 5956, 'five thousand nine hundred fifty-six'),\n(8376, 46191, 'forty-six thousand one hundred ninety-one'),\n(8377, 11167, 'eleven thousand one hundred sixty-seven'),\n(8378, 71835, 'seventy-one thousand eight hundred thirty-five'),\n(8379, 65888, 'sixty-five thousand eight hundred eighty-eight'),\n(8380, 86164, 'eighty-six thousand one hundred sixty-four'),\n(8381, 98878, 'ninety-eight thousand eight hundred seventy-eight'),\n(8382, 16039, 'sixteen thousand thirty-nine'),\n(8383, 85445, 'eighty-five thousand four hundred forty-five'),\n(8384, 64447, 'sixty-four thousand four hundred forty-seven'),\n(8385, 37932, 'thirty-seven thousand nine hundred thirty-two'),\n(8386, 15854, 'fifteen thousand eight hundred fifty-four'),\n(8387, 28488, 'twenty-eight thousand four hundred eighty-eight'),\n(8388, 99324, 'ninety-nine thousand three hundred twenty-four'),\n(8389, 5481, 'five thousand four hundred eighty-one'),\n(8390, 89056, 'eighty-nine thousand fifty-six'),\n(8391, 20327, 'twenty thousand three hundred twenty-seven'),\n(8392, 37222, 'thirty-seven thousand two hundred twenty-two'),\n(8393, 43052, 'forty-three thousand fifty-two'),\n(8394, 90659, 'ninety thousand six hundred fifty-nine'),\n(8395, 27154, 'twenty-seven thousand one hundred fifty-four'),\n(8396, 736, 'seven hundred thirty-six'),\n(8397, 86046, 'eighty-six thousand forty-six'),\n(8398, 7500, 'seven thousand five hundred'),\n(8399, 51472, 'fifty-one thousand four hundred seventy-two'),\n(8400, 65371, 'sixty-five thousand three hundred seventy-one'),\n(8401, 49446, 'forty-nine thousand four hundred forty-six'),\n(8402, 51721, 'fifty-one thousand seven hundred twenty-one'),\n(8403, 25678, 'twenty-five thousand six hundred seventy-eight'),\n(8404, 7300, 'seven thousand three hundred'),\n(8405, 78695, 'seventy-eight thousand six hundred ninety-five'),\n(8406, 26671, 'twenty-six thousand six hundred seventy-one'),\n(8407, 77010, 'seventy-seven thousand ten'),\n(8408, 63530, 'sixty-three thousand five hundred thirty'),\n(8409, 164, 'one hundred sixty-four'),\n(8410, 80868, 'eighty thousand eight hundred sixty-eight'),\n(8411, 12023, 'twelve thousand twenty-three'),\n(8412, 22292, 'twenty-two thousand two hundred ninety-two'),\n(8413, 58107, 'fifty-eight thousand one hundred seven'),\n(8414, 13943, 'thirteen thousand nine hundred forty-three'),\n(8415, 11209, 'eleven thousand two hundred nine'),\n(8416, 98621, 'ninety-eight thousand six hundred twenty-one'),\n(8417, 72478, 'seventy-two thousand four hundred seventy-eight'),\n(8418, 59721, 'fifty-nine thousand seven hundred twenty-one'),\n(8419, 9399, 'nine thousand three hundred ninety-nine'),\n(8420, 44360, 'forty-four thousand three hundred sixty'),\n(8421, 85990, 'eighty-five thousand nine hundred ninety'),\n(8422, 17766, 'seventeen thousand seven hundred sixty-six'),\n(8423, 65448, 'sixty-five thousand four hundred forty-eight'),\n(8424, 85640, 'eighty-five thousand six hundred forty'),\n(8425, 95741, 'ninety-five thousand seven hundred forty-one'),\n(8426, 83159, 'eighty-three thousand one hundred fifty-nine'),\n(8427, 99747, 'ninety-nine thousand seven hundred forty-seven'),\n(8428, 65036, 'sixty-five thousand thirty-six'),\n(8429, 21519, 'twenty-one thousand five hundred nineteen'),\n(8430, 78546, 'seventy-eight thousand five hundred forty-six'),\n(8431, 56437, 'fifty-six thousand four hundred thirty-seven'),\n(8432, 26476, 'twenty-six thousand four hundred seventy-six'),\n(8433, 41553, 'forty-one thousand five hundred fifty-three'),\n(8434, 29048, 'twenty-nine thousand forty-eight'),\n(8435, 48807, 'forty-eight thousand eight hundred seven'),\n(8436, 68858, 'sixty-eight thousand eight hundred fifty-eight'),\n(8437, 31610, 'thirty-one thousand six hundred ten'),\n(8438, 64515, 'sixty-four thousand five hundred fifteen'),\n(8439, 54131, 'fifty-four thousand one hundred thirty-one'),\n(8440, 58378, 'fifty-eight thousand three hundred seventy-eight'),\n(8441, 51510, 'fifty-one thousand five hundred ten'),\n(8442, 38323, 'thirty-eight thousand three hundred twenty-three'),\n(8443, 32906, 'thirty-two thousand nine hundred six'),\n(8444, 98429, 'ninety-eight thousand four hundred twenty-nine'),\n(8445, 41483, 'forty-one thousand four hundred eighty-three'),\n(8446, 36830, 'thirty-six thousand eight hundred thirty'),\n(8447, 56528, 'fifty-six thousand five hundred twenty-eight'),\n(8448, 55012, 'fifty-five thousand twelve'),\n(8449, 1194, 'one thousand one hundred ninety-four'),\n(8450, 89068, 'eighty-nine thousand sixty-eight'),\n(8451, 40667, 'forty thousand six hundred sixty-seven'),\n(8452, 26453, 'twenty-six thousand four hundred fifty-three'),\n(8453, 82099, 'eighty-two thousand ninety-nine'),\n(8454, 77124, 'seventy-seven thousand one hundred twenty-four'),\n(8455, 112, 'one hundred twelve'),\n(8456, 505, 'five hundred five'),\n(8457, 66191, 'sixty-six thousand one hundred ninety-one'),\n(8458, 31908, 'thirty-one thousand nine hundred eight'),\n(8459, 50473, 'fifty thousand four hundred seventy-three'),\n(8460, 85303, 'eighty-five thousand three hundred three'),\n(8461, 31574, 'thirty-one thousand five hundred seventy-four'),\n(8462, 58783, 'fifty-eight thousand seven hundred eighty-three'),\n(8463, 62521, 'sixty-two thousand five hundred twenty-one'),\n(8464, 51627, 'fifty-one thousand six hundred twenty-seven'),\n(8465, 25990, 'twenty-five thousand nine hundred ninety'),\n(8466, 13789, 'thirteen thousand seven hundred eighty-nine'),\n(8467, 34652, 'thirty-four thousand six hundred fifty-two'),\n(8468, 63, 'sixty-three'),\n(8469, 4073, 'four thousand seventy-three'),\n(8470, 4299, 'four thousand two hundred ninety-nine'),\n(8471, 98594, 'ninety-eight thousand five hundred ninety-four'),\n(8472, 83104, 'eighty-three thousand one hundred four'),\n(8473, 9718, 'nine thousand seven hundred eighteen'),\n(8474, 80496, 'eighty thousand four hundred ninety-six'),\n(8475, 36709, 'thirty-six thousand seven hundred nine'),\n(8476, 1097, 'one thousand ninety-seven'),\n(8477, 82095, 'eighty-two thousand ninety-five'),\n(8478, 7709, 'seven thousand seven hundred nine'),\n(8479, 53651, 'fifty-three thousand six hundred fifty-one'),\n(8480, 75797, 'seventy-five thousand seven hundred ninety-seven'),\n(8481, 83547, 'eighty-three thousand five hundred forty-seven'),\n(8482, 57254, 'fifty-seven thousand two hundred fifty-four'),\n(8483, 20577, 'twenty thousand five hundred seventy-seven'),\n(8484, 78552, 'seventy-eight thousand five hundred fifty-two'),\n(8485, 91373, 'ninety-one thousand three hundred seventy-three'),\n(8486, 88403, 'eighty-eight thousand four hundred three'),\n(8487, 97507, 'ninety-seven thousand five hundred seven'),\n(8488, 59476, 'fifty-nine thousand four hundred seventy-six'),\n(8489, 26359, 'twenty-six thousand three hundred fifty-nine'),\n(8490, 66974, 'sixty-six thousand nine hundred seventy-four'),\n(8491, 4046, 'four thousand forty-six'),\n(8492, 48533, 'forty-eight thousand five hundred thirty-three'),\n(8493, 63661, 'sixty-three thousand six hundred sixty-one'),\n(8494, 90604, 'ninety thousand six hundred four'),\n(8495, 16909, 'sixteen thousand nine hundred nine'),\n(8496, 15437, 'fifteen thousand four hundred thirty-seven'),\n(8497, 55730, 'fifty-five thousand seven hundred thirty'),\n(8498, 6950, 'six thousand nine hundred fifty'),\n(8499, 24277, 'twenty-four thousand two hundred seventy-seven'),\n(8500, 12909, 'twelve thousand nine hundred nine'),\n(8501, 78383, 'seventy-eight thousand three hundred eighty-three'),\n(8502, 22091, 'twenty-two thousand ninety-one'),\n(8503, 38405, 'thirty-eight thousand four hundred five'),\n(8504, 69844, 'sixty-nine thousand eight hundred forty-four'),\n(8505, 67603, 'sixty-seven thousand six hundred three'),\n(8506, 59345, 'fifty-nine thousand three hundred forty-five'),\n(8507, 80394, 'eighty thousand three hundred ninety-four'),\n(8508, 30834, 'thirty thousand eight hundred thirty-four'),\n(8509, 33971, 'thirty-three thousand nine hundred seventy-one'),\n(8510, 74079, 'seventy-four thousand seventy-nine'),\n(8511, 86757, 'eighty-six thousand seven hundred fifty-seven'),\n(8512, 60409, 'sixty thousand four hundred nine'),\n(8513, 84463, 'eighty-four thousand four hundred sixty-three'),\n(8514, 88810, 'eighty-eight thousand eight hundred ten'),\n(8515, 26806, 'twenty-six thousand eight hundred six'),\n(8516, 82994, 'eighty-two thousand nine hundred ninety-four'),\n(8517, 89988, 'eighty-nine thousand nine hundred eighty-eight'),\n(8518, 32147, 'thirty-two thousand one hundred forty-seven'),\n(8519, 9594, 'nine thousand five hundred ninety-four'),\n(8520, 1445, 'one thousand four hundred forty-five'),\n(8521, 21467, 'twenty-one thousand four hundred sixty-seven'),\n(8522, 69172, 'sixty-nine thousand one hundred seventy-two'),\n(8523, 78531, 'seventy-eight thousand five hundred thirty-one'),\n(8524, 6630, 'six thousand six hundred thirty'),\n(8525, 90687, 'ninety thousand six hundred eighty-seven'),\n(8526, 82271, 'eighty-two thousand two hundred seventy-one'),\n(8527, 47990, 'forty-seven thousand nine hundred ninety'),\n(8528, 19897, 'nineteen thousand eight hundred ninety-seven'),\n(8529, 12909, 'twelve thousand nine hundred nine'),\n(8530, 69152, 'sixty-nine thousand one hundred fifty-two'),\n(8531, 55779, 'fifty-five thousand seven hundred seventy-nine'),\n(8532, 95875, 'ninety-five thousand eight hundred seventy-five'),\n(8533, 80275, 'eighty thousand two hundred seventy-five'),\n(8534, 98215, 'ninety-eight thousand two hundred fifteen'),\n(8535, 71919, 'seventy-one thousand nine hundred nineteen'),\n(8536, 43898, 'forty-three thousand eight hundred ninety-eight'),\n(8537, 31571, 'thirty-one thousand five hundred seventy-one'),\n(8538, 18403, 'eighteen thousand four hundred three'),\n(8539, 92908, 'ninety-two thousand nine hundred eight'),\n(8540, 81109, 'eighty-one thousand one hundred nine'),\n(8541, 38809, 'thirty-eight thousand eight hundred nine'),\n(8542, 67031, 'sixty-seven thousand thirty-one'),\n(8543, 85667, 'eighty-five thousand six hundred sixty-seven'),\n(8544, 56152, 'fifty-six thousand one hundred fifty-two'),\n(8545, 66775, 'sixty-six thousand seven hundred seventy-five'),\n(8546, 54679, 'fifty-four thousand six hundred seventy-nine'),\n(8547, 24674, 'twenty-four thousand six hundred seventy-four'),\n(8548, 19133, 'nineteen thousand one hundred thirty-three'),\n(8549, 9177, 'nine thousand one hundred seventy-seven'),\n(8550, 40371, 'forty thousand three hundred seventy-one'),\n(8551, 48097, 'forty-eight thousand ninety-seven'),\n(8552, 55150, 'fifty-five thousand one hundred fifty'),\n(8553, 75691, 'seventy-five thousand six hundred ninety-one'),\n(8554, 48760, 'forty-eight thousand seven hundred sixty'),\n(8555, 3509, 'three thousand five hundred nine'),\n(8556, 71295, 'seventy-one thousand two hundred ninety-five'),\n(8557, 84206, 'eighty-four thousand two hundred six'),\n(8558, 84802, 'eighty-four thousand eight hundred two'),\n(8559, 41560, 'forty-one thousand five hundred sixty'),\n(8560, 20674, 'twenty thousand six hundred seventy-four'),\n(8561, 77122, 'seventy-seven thousand one hundred twenty-two'),\n(8562, 69472, 'sixty-nine thousand four hundred seventy-two'),\n(8563, 71524, 'seventy-one thousand five hundred twenty-four'),\n(8564, 71472, 'seventy-one thousand four hundred seventy-two'),\n(8565, 61975, 'sixty-one thousand nine hundred seventy-five'),\n(8566, 51520, 'fifty-one thousand five hundred twenty'),\n(8567, 34972, 'thirty-four thousand nine hundred seventy-two'),\n(8568, 68854, 'sixty-eight thousand eight hundred fifty-four'),\n(8569, 39970, 'thirty-nine thousand nine hundred seventy'),\n(8570, 77254, 'seventy-seven thousand two hundred fifty-four'),\n(8571, 62055, 'sixty-two thousand fifty-five'),\n(8572, 76553, 'seventy-six thousand five hundred fifty-three'),\n(8573, 69329, 'sixty-nine thousand three hundred twenty-nine'),\n(8574, 29285, 'twenty-nine thousand two hundred eighty-five'),\n(8575, 67299, 'sixty-seven thousand two hundred ninety-nine'),\n(8576, 81738, 'eighty-one thousand seven hundred thirty-eight'),\n(8577, 58923, 'fifty-eight thousand nine hundred twenty-three'),\n(8578, 88154, 'eighty-eight thousand one hundred fifty-four'),\n(8579, 65662, 'sixty-five thousand six hundred sixty-two'),\n(8580, 14772, 'fourteen thousand seven hundred seventy-two'),\n(8581, 80355, 'eighty thousand three hundred fifty-five'),\n(8582, 38061, 'thirty-eight thousand sixty-one'),\n(8583, 97193, 'ninety-seven thousand one hundred ninety-three'),\n(8584, 80250, 'eighty thousand two hundred fifty'),\n(8585, 78505, 'seventy-eight thousand five hundred five'),\n(8586, 63134, 'sixty-three thousand one hundred thirty-four'),\n(8587, 50787, 'fifty thousand seven hundred eighty-seven'),\n(8588, 62379, 'sixty-two thousand three hundred seventy-nine'),\n(8589, 63284, 'sixty-three thousand two hundred eighty-four'),\n(8590, 13024, 'thirteen thousand twenty-four'),\n(8591, 26078, 'twenty-six thousand seventy-eight'),\n(8592, 61146, 'sixty-one thousand one hundred forty-six'),\n(8593, 34917, 'thirty-four thousand nine hundred seventeen'),\n(8594, 9701, 'nine thousand seven hundred one'),\n(8595, 47688, 'forty-seven thousand six hundred eighty-eight'),\n(8596, 64719, 'sixty-four thousand seven hundred nineteen'),\n(8597, 69920, 'sixty-nine thousand nine hundred twenty'),\n(8598, 72744, 'seventy-two thousand seven hundred forty-four'),\n(8599, 97489, 'ninety-seven thousand four hundred eighty-nine'),\n(8600, 18853, 'eighteen thousand eight hundred fifty-three'),\n(8601, 86574, 'eighty-six thousand five hundred seventy-four'),\n(8602, 29577, 'twenty-nine thousand five hundred seventy-seven'),\n(8603, 40183, 'forty thousand one hundred eighty-three'),\n(8604, 34530, 'thirty-four thousand five hundred thirty'),\n(8605, 40642, 'forty thousand six hundred forty-two'),\n(8606, 51141, 'fifty-one thousand one hundred forty-one'),\n(8607, 26970, 'twenty-six thousand nine hundred seventy'),\n(8608, 84351, 'eighty-four thousand three hundred fifty-one'),\n(8609, 37576, 'thirty-seven thousand five hundred seventy-six'),\n(8610, 46952, 'forty-six thousand nine hundred fifty-two'),\n(8611, 5745, 'five thousand seven hundred forty-five'),\n(8612, 30098, 'thirty thousand ninety-eight'),\n(8613, 80019, 'eighty thousand nineteen'),\n(8614, 96206, 'ninety-six thousand two hundred six'),\n(8615, 46491, 'forty-six thousand four hundred ninety-one'),\n(8616, 78279, 'seventy-eight thousand two hundred seventy-nine'),\n(8617, 92949, 'ninety-two thousand nine hundred forty-nine'),\n(8618, 87338, 'eighty-seven thousand three hundred thirty-eight'),\n(8619, 67852, 'sixty-seven thousand eight hundred fifty-two'),\n(8620, 70463, 'seventy thousand four hundred sixty-three'),\n(8621, 90441, 'ninety thousand four hundred forty-one'),\n(8622, 2171, 'two thousand one hundred seventy-one'),\n(8623, 63831, 'sixty-three thousand eight hundred thirty-one'),\n(8624, 44159, 'forty-four thousand one hundred fifty-nine'),\n(8625, 13967, 'thirteen thousand nine hundred sixty-seven'),\n(8626, 47445, 'forty-seven thousand four hundred forty-five'),\n(8627, 7992, 'seven thousand nine hundred ninety-two'),\n(8628, 36205, 'thirty-six thousand two hundred five'),\n(8629, 14502, 'fourteen thousand five hundred two'),\n(8630, 6704, 'six thousand seven hundred four'),\n(8631, 7821, 'seven thousand eight hundred twenty-one'),\n(8632, 24643, 'twenty-four thousand six hundred forty-three'),\n(8633, 45674, 'forty-five thousand six hundred seventy-four'),\n(8634, 64487, 'sixty-four thousand four hundred eighty-seven'),\n(8635, 12007, 'twelve thousand seven'),\n(8636, 39929, 'thirty-nine thousand nine hundred twenty-nine'),\n(8637, 53304, 'fifty-three thousand three hundred four'),\n(8638, 2231, 'two thousand two hundred thirty-one'),\n(8639, 77189, 'seventy-seven thousand one hundred eighty-nine'),\n(8640, 3887, 'three thousand eight hundred eighty-seven'),\n(8641, 44122, 'forty-four thousand one hundred twenty-two'),\n(8642, 63883, 'sixty-three thousand eight hundred eighty-three'),\n(8643, 9229, 'nine thousand two hundred twenty-nine'),\n(8644, 69943, 'sixty-nine thousand nine hundred forty-three'),\n(8645, 12970, 'twelve thousand nine hundred seventy'),\n(8646, 76176, 'seventy-six thousand one hundred seventy-six'),\n(8647, 17089, 'seventeen thousand eighty-nine'),\n(8648, 68542, 'sixty-eight thousand five hundred forty-two'),\n(8649, 43947, 'forty-three thousand nine hundred forty-seven'),\n(8650, 14743, 'fourteen thousand seven hundred forty-three'),\n(8651, 83124, 'eighty-three thousand one hundred twenty-four'),\n(8652, 18569, 'eighteen thousand five hundred sixty-nine'),\n(8653, 80463, 'eighty thousand four hundred sixty-three'),\n(8654, 81819, 'eighty-one thousand eight hundred nineteen'),\n(8655, 8615, 'eight thousand six hundred fifteen'),\n(8656, 39918, 'thirty-nine thousand nine hundred eighteen'),\n(8657, 72064, 'seventy-two thousand sixty-four'),\n(8658, 90041, 'ninety thousand forty-one'),\n(8659, 95297, 'ninety-five thousand two hundred ninety-seven'),\n(8660, 70516, 'seventy thousand five hundred sixteen'),\n(8661, 76766, 'seventy-six thousand seven hundred sixty-six'),\n(8662, 16492, 'sixteen thousand four hundred ninety-two'),\n(8663, 16189, 'sixteen thousand one hundred eighty-nine'),\n(8664, 91662, 'ninety-one thousand six hundred sixty-two'),\n(8665, 59057, 'fifty-nine thousand fifty-seven'),\n(8666, 65902, 'sixty-five thousand nine hundred two'),\n(8667, 17171, 'seventeen thousand one hundred seventy-one'),\n(8668, 24003, 'twenty-four thousand three'),\n(8669, 92149, 'ninety-two thousand one hundred forty-nine'),\n(8670, 1792, 'one thousand seven hundred ninety-two'),\n(8671, 67411, 'sixty-seven thousand four hundred eleven'),\n(8672, 66464, 'sixty-six thousand four hundred sixty-four'),\n(8673, 63074, 'sixty-three thousand seventy-four'),\n(8674, 10873, 'ten thousand eight hundred seventy-three'),\n(8675, 55524, 'fifty-five thousand five hundred twenty-four'),\n(8676, 95313, 'ninety-five thousand three hundred thirteen'),\n(8677, 28052, 'twenty-eight thousand fifty-two'),\n(8678, 24289, 'twenty-four thousand two hundred eighty-nine'),\n(8679, 68418, 'sixty-eight thousand four hundred eighteen'),\n(8680, 53276, 'fifty-three thousand two hundred seventy-six'),\n(8681, 82162, 'eighty-two thousand one hundred sixty-two'),\n(8682, 41681, 'forty-one thousand six hundred eighty-one'),\n(8683, 68119, 'sixty-eight thousand one hundred nineteen'),\n(8684, 70728, 'seventy thousand seven hundred twenty-eight'),\n(8685, 8034, 'eight thousand thirty-four'),\n(8686, 60929, 'sixty thousand nine hundred twenty-nine'),\n(8687, 21362, 'twenty-one thousand three hundred sixty-two'),\n(8688, 74845, 'seventy-four thousand eight hundred forty-five'),\n(8689, 5697, 'five thousand six hundred ninety-seven'),\n(8690, 93968, 'ninety-three thousand nine hundred sixty-eight'),\n(8691, 51095, 'fifty-one thousand ninety-five'),\n(8692, 83810, 'eighty-three thousand eight hundred ten'),\n(8693, 15741, 'fifteen thousand seven hundred forty-one'),\n(8694, 69922, 'sixty-nine thousand nine hundred twenty-two'),\n(8695, 184, 'one hundred eighty-four'),\n(8696, 91324, 'ninety-one thousand three hundred twenty-four'),\n(8697, 95777, 'ninety-five thousand seven hundred seventy-seven'),\n(8698, 15723, 'fifteen thousand seven hundred twenty-three'),\n(8699, 43921, 'forty-three thousand nine hundred twenty-one'),\n(8700, 58646, 'fifty-eight thousand six hundred forty-six'),\n(8701, 93710, 'ninety-three thousand seven hundred ten'),\n(8702, 66251, 'sixty-six thousand two hundred fifty-one'),\n(8703, 71083, 'seventy-one thousand eighty-three'),\n(8704, 24317, 'twenty-four thousand three hundred seventeen'),\n(8705, 24353, 'twenty-four thousand three hundred fifty-three'),\n(8706, 89820, 'eighty-nine thousand eight hundred twenty'),\n(8707, 98100, 'ninety-eight thousand one hundred'),\n(8708, 69014, 'sixty-nine thousand fourteen'),\n(8709, 99625, 'ninety-nine thousand six hundred twenty-five'),\n(8710, 91098, 'ninety-one thousand ninety-eight'),\n(8711, 92458, 'ninety-two thousand four hundred fifty-eight'),\n(8712, 31397, 'thirty-one thousand three hundred ninety-seven'),\n(8713, 432, 'four hundred thirty-two'),\n(8714, 32584, 'thirty-two thousand five hundred eighty-four'),\n(8715, 8666, 'eight thousand six hundred sixty-six'),\n(8716, 96638, 'ninety-six thousand six hundred thirty-eight'),\n(8717, 7791, 'seven thousand seven hundred ninety-one'),\n(8718, 1427, 'one thousand four hundred twenty-seven'),\n(8719, 14231, 'fourteen thousand two hundred thirty-one'),\n(8720, 28045, 'twenty-eight thousand forty-five'),\n(8721, 69475, 'sixty-nine thousand four hundred seventy-five'),\n(8722, 91064, 'ninety-one thousand sixty-four'),\n(8723, 39915, 'thirty-nine thousand nine hundred fifteen'),\n(8724, 83169, 'eighty-three thousand one hundred sixty-nine'),\n(8725, 96548, 'ninety-six thousand five hundred forty-eight'),\n(8726, 35018, 'thirty-five thousand eighteen'),\n(8727, 49950, 'forty-nine thousand nine hundred fifty'),\n(8728, 70855, 'seventy thousand eight hundred fifty-five'),\n(8729, 11953, 'eleven thousand nine hundred fifty-three'),\n(8730, 43863, 'forty-three thousand eight hundred sixty-three'),\n(8731, 7490, 'seven thousand four hundred ninety'),\n(8732, 11977, 'eleven thousand nine hundred seventy-seven'),\n(8733, 28119, 'twenty-eight thousand one hundred nineteen'),\n(8734, 59887, 'fifty-nine thousand eight hundred eighty-seven'),\n(8735, 73473, 'seventy-three thousand four hundred seventy-three'),\n(8736, 19309, 'nineteen thousand three hundred nine'),\n(8737, 70079, 'seventy thousand seventy-nine'),\n(8738, 58537, 'fifty-eight thousand five hundred thirty-seven'),\n(8739, 31414, 'thirty-one thousand four hundred fourteen'),\n(8740, 29081, 'twenty-nine thousand eighty-one'),\n(8741, 18025, 'eighteen thousand twenty-five'),\n(8742, 44324, 'forty-four thousand three hundred twenty-four'),\n(8743, 99072, 'ninety-nine thousand seventy-two'),\n(8744, 85289, 'eighty-five thousand two hundred eighty-nine'),\n(8745, 9000, 'nine thousand'),\n(8746, 3985, 'three thousand nine hundred eighty-five'),\n(8747, 56314, 'fifty-six thousand three hundred fourteen'),\n(8748, 14264, 'fourteen thousand two hundred sixty-four'),\n(8749, 89332, 'eighty-nine thousand three hundred thirty-two'),\n(8750, 69541, 'sixty-nine thousand five hundred forty-one'),\n(8751, 85916, 'eighty-five thousand nine hundred sixteen'),\n(8752, 21170, 'twenty-one thousand one hundred seventy'),\n(8753, 6500, 'six thousand five hundred'),\n(8754, 9578, 'nine thousand five hundred seventy-eight'),\n(8755, 89787, 'eighty-nine thousand seven hundred eighty-seven'),\n(8756, 34742, 'thirty-four thousand seven hundred forty-two'),\n(8757, 50788, 'fifty thousand seven hundred eighty-eight'),\n(8758, 70835, 'seventy thousand eight hundred thirty-five'),\n(8759, 96005, 'ninety-six thousand five'),\n(8760, 42368, 'forty-two thousand three hundred sixty-eight'),\n(8761, 15670, 'fifteen thousand six hundred seventy'),\n(8762, 20354, 'twenty thousand three hundred fifty-four'),\n(8763, 51169, 'fifty-one thousand one hundred sixty-nine'),\n(8764, 79100, 'seventy-nine thousand one hundred'),\n(8765, 89010, 'eighty-nine thousand ten'),\n(8766, 41959, 'forty-one thousand nine hundred fifty-nine'),\n(8767, 89858, 'eighty-nine thousand eight hundred fifty-eight'),\n(8768, 12061, 'twelve thousand sixty-one'),\n(8769, 34533, 'thirty-four thousand five hundred thirty-three'),\n(8770, 99846, 'ninety-nine thousand eight hundred forty-six'),\n(8771, 53210, 'fifty-three thousand two hundred ten'),\n(8772, 52662, 'fifty-two thousand six hundred sixty-two'),\n(8773, 86340, 'eighty-six thousand three hundred forty'),\n(8774, 96204, 'ninety-six thousand two hundred four'),\n(8775, 41401, 'forty-one thousand four hundred one'),\n(8776, 53906, 'fifty-three thousand nine hundred six'),\n(8777, 30974, 'thirty thousand nine hundred seventy-four'),\n(8778, 8229, 'eight thousand two hundred twenty-nine'),\n(8779, 32145, 'thirty-two thousand one hundred forty-five'),\n(8780, 98200, 'ninety-eight thousand two hundred'),\n(8781, 66462, 'sixty-six thousand four hundred sixty-two'),\n(8782, 15757, 'fifteen thousand seven hundred fifty-seven'),\n(8783, 41432, 'forty-one thousand four hundred thirty-two'),\n(8784, 5004, 'five thousand four'),\n(8785, 65586, 'sixty-five thousand five hundred eighty-six'),\n(8786, 83446, 'eighty-three thousand four hundred forty-six'),\n(8787, 40511, 'forty thousand five hundred eleven'),\n(8788, 86308, 'eighty-six thousand three hundred eight'),\n(8789, 10066, 'ten thousand sixty-six'),\n(8790, 87586, 'eighty-seven thousand five hundred eighty-six'),\n(8791, 36308, 'thirty-six thousand three hundred eight'),\n(8792, 14513, 'fourteen thousand five hundred thirteen'),\n(8793, 21879, 'twenty-one thousand eight hundred seventy-nine'),\n(8794, 92112, 'ninety-two thousand one hundred twelve'),\n(8795, 21754, 'twenty-one thousand seven hundred fifty-four'),\n(8796, 83071, 'eighty-three thousand seventy-one'),\n(8797, 53182, 'fifty-three thousand one hundred eighty-two'),\n(8798, 14305, 'fourteen thousand three hundred five'),\n(8799, 91092, 'ninety-one thousand ninety-two'),\n(8800, 55635, 'fifty-five thousand six hundred thirty-five'),\n(8801, 51303, 'fifty-one thousand three hundred three'),\n(8802, 10897, 'ten thousand eight hundred ninety-seven'),\n(8803, 86460, 'eighty-six thousand four hundred sixty'),\n(8804, 4877, 'four thousand eight hundred seventy-seven'),\n(8805, 19681, 'nineteen thousand six hundred eighty-one'),\n(8806, 62275, 'sixty-two thousand two hundred seventy-five'),\n(8807, 97781, 'ninety-seven thousand seven hundred eighty-one'),\n(8808, 43961, 'forty-three thousand nine hundred sixty-one'),\n(8809, 71519, 'seventy-one thousand five hundred nineteen'),\n(8810, 84180, 'eighty-four thousand one hundred eighty'),\n(8811, 14910, 'fourteen thousand nine hundred ten'),\n(8812, 49664, 'forty-nine thousand six hundred sixty-four'),\n(8813, 89952, 'eighty-nine thousand nine hundred fifty-two'),\n(8814, 53247, 'fifty-three thousand two hundred forty-seven'),\n(8815, 66226, 'sixty-six thousand two hundred twenty-six'),\n(8816, 57384, 'fifty-seven thousand three hundred eighty-four'),\n(8817, 31951, 'thirty-one thousand nine hundred fifty-one'),\n(8818, 44210, 'forty-four thousand two hundred ten'),\n(8819, 55985, 'fifty-five thousand nine hundred eighty-five'),\n(8820, 60322, 'sixty thousand three hundred twenty-two'),\n(8821, 13591, 'thirteen thousand five hundred ninety-one'),\n(8822, 45349, 'forty-five thousand three hundred forty-nine'),\n(8823, 44807, 'forty-four thousand eight hundred seven'),\n(8824, 75197, 'seventy-five thousand one hundred ninety-seven'),\n(8825, 28009, 'twenty-eight thousand nine'),\n(8826, 51527, 'fifty-one thousand five hundred twenty-seven'),\n(8827, 578, 'five hundred seventy-eight'),\n(8828, 83112, 'eighty-three thousand one hundred twelve'),\n(8829, 36658, 'thirty-six thousand six hundred fifty-eight'),\n(8830, 20388, 'twenty thousand three hundred eighty-eight'),\n(8831, 32378, 'thirty-two thousand three hundred seventy-eight'),\n(8832, 22213, 'twenty-two thousand two hundred thirteen'),\n(8833, 10178, 'ten thousand one hundred seventy-eight'),\n(8834, 75615, 'seventy-five thousand six hundred fifteen'),\n(8835, 2848, 'two thousand eight hundred forty-eight'),\n(8836, 22770, 'twenty-two thousand seven hundred seventy'),\n(8837, 1945, 'one thousand nine hundred forty-five'),\n(8838, 64352, 'sixty-four thousand three hundred fifty-two'),\n(8839, 66296, 'sixty-six thousand two hundred ninety-six'),\n(8840, 26810, 'twenty-six thousand eight hundred ten'),\n(8841, 9063, 'nine thousand sixty-three'),\n(8842, 70208, 'seventy thousand two hundred eight'),\n(8843, 56121, 'fifty-six thousand one hundred twenty-one'),\n(8844, 94374, 'ninety-four thousand three hundred seventy-four'),\n(8845, 5647, 'five thousand six hundred forty-seven'),\n(8846, 51547, 'fifty-one thousand five hundred forty-seven'),\n(8847, 73646, 'seventy-three thousand six hundred forty-six'),\n(8848, 89250, 'eighty-nine thousand two hundred fifty'),\n(8849, 51303, 'fifty-one thousand three hundred three'),\n(8850, 41930, 'forty-one thousand nine hundred thirty'),\n(8851, 87727, 'eighty-seven thousand seven hundred twenty-seven'),\n(8852, 28453, 'twenty-eight thousand four hundred fifty-three'),\n(8853, 50451, 'fifty thousand four hundred fifty-one'),\n(8854, 38686, 'thirty-eight thousand six hundred eighty-six'),\n(8855, 82827, 'eighty-two thousand eight hundred twenty-seven'),\n(8856, 71581, 'seventy-one thousand five hundred eighty-one'),\n(8857, 14394, 'fourteen thousand three hundred ninety-four'),\n(8858, 46068, 'forty-six thousand sixty-eight'),\n(8859, 76252, 'seventy-six thousand two hundred fifty-two'),\n(8860, 27505, 'twenty-seven thousand five hundred five'),\n(8861, 30289, 'thirty thousand two hundred eighty-nine'),\n(8862, 38900, 'thirty-eight thousand nine hundred'),\n(8863, 97764, 'ninety-seven thousand seven hundred sixty-four'),\n(8864, 49229, 'forty-nine thousand two hundred twenty-nine'),\n(8865, 81206, 'eighty-one thousand two hundred six'),\n(8866, 25077, 'twenty-five thousand seventy-seven'),\n(8867, 30768, 'thirty thousand seven hundred sixty-eight'),\n(8868, 76620, 'seventy-six thousand six hundred twenty'),\n(8869, 88283, 'eighty-eight thousand two hundred eighty-three'),\n(8870, 69601, 'sixty-nine thousand six hundred one'),\n(8871, 15776, 'fifteen thousand seven hundred seventy-six'),\n(8872, 31227, 'thirty-one thousand two hundred twenty-seven'),\n(8873, 66875, 'sixty-six thousand eight hundred seventy-five'),\n(8874, 11949, 'eleven thousand nine hundred forty-nine'),\n(8875, 43867, 'forty-three thousand eight hundred sixty-seven'),\n(8876, 23306, 'twenty-three thousand three hundred six'),\n(8877, 95692, 'ninety-five thousand six hundred ninety-two'),\n(8878, 18750, 'eighteen thousand seven hundred fifty'),\n(8879, 66788, 'sixty-six thousand seven hundred eighty-eight'),\n(8880, 29822, 'twenty-nine thousand eight hundred twenty-two'),\n(8881, 76107, 'seventy-six thousand one hundred seven'),\n(8882, 45957, 'forty-five thousand nine hundred fifty-seven'),\n(8883, 73445, 'seventy-three thousand four hundred forty-five'),\n(8884, 2545, 'two thousand five hundred forty-five'),\n(8885, 19954, 'nineteen thousand nine hundred fifty-four'),\n(8886, 27381, 'twenty-seven thousand three hundred eighty-one'),\n(8887, 49683, 'forty-nine thousand six hundred eighty-three'),\n(8888, 97902, 'ninety-seven thousand nine hundred two'),\n(8889, 5402, 'five thousand four hundred two'),\n(8890, 99699, 'ninety-nine thousand six hundred ninety-nine'),\n(8891, 59650, 'fifty-nine thousand six hundred fifty'),\n(8892, 33569, 'thirty-three thousand five hundred sixty-nine'),\n(8893, 93460, 'ninety-three thousand four hundred sixty'),\n(8894, 77070, 'seventy-seven thousand seventy'),\n(8895, 23010, 'twenty-three thousand ten'),\n(8896, 54896, 'fifty-four thousand eight hundred ninety-six'),\n(8897, 30246, 'thirty thousand two hundred forty-six'),\n(8898, 29053, 'twenty-nine thousand fifty-three'),\n(8899, 83920, 'eighty-three thousand nine hundred twenty'),\n(8900, 99441, 'ninety-nine thousand four hundred forty-one'),\n(8901, 8083, 'eight thousand eighty-three'),\n(8902, 47671, 'forty-seven thousand six hundred seventy-one'),\n(8903, 67591, 'sixty-seven thousand five hundred ninety-one'),\n(8904, 27541, 'twenty-seven thousand five hundred forty-one'),\n(8905, 85863, 'eighty-five thousand eight hundred sixty-three'),\n(8906, 53989, 'fifty-three thousand nine hundred eighty-nine'),\n(8907, 14198, 'fourteen thousand one hundred ninety-eight'),\n(8908, 6871, 'six thousand eight hundred seventy-one'),\n(8909, 61035, 'sixty-one thousand thirty-five'),\n(8910, 58806, 'fifty-eight thousand eight hundred six'),\n(8911, 94134, 'ninety-four thousand one hundred thirty-four'),\n(8912, 44315, 'forty-four thousand three hundred fifteen'),\n(8913, 45755, 'forty-five thousand seven hundred fifty-five'),\n(8914, 80281, 'eighty thousand two hundred eighty-one'),\n(8915, 43508, 'forty-three thousand five hundred eight'),\n(8916, 5750, 'five thousand seven hundred fifty'),\n(8917, 41402, 'forty-one thousand four hundred two'),\n(8918, 37310, 'thirty-seven thousand three hundred ten'),\n(8919, 50893, 'fifty thousand eight hundred ninety-three'),\n(8920, 183, 'one hundred eighty-three'),\n(8921, 38346, 'thirty-eight thousand three hundred forty-six'),\n(8922, 97429, 'ninety-seven thousand four hundred twenty-nine'),\n(8923, 98566, 'ninety-eight thousand five hundred sixty-six'),\n(8924, 6844, 'six thousand eight hundred forty-four'),\n(8925, 21894, 'twenty-one thousand eight hundred ninety-four'),\n(8926, 53738, 'fifty-three thousand seven hundred thirty-eight'),\n(8927, 72729, 'seventy-two thousand seven hundred twenty-nine'),\n(8928, 96701, 'ninety-six thousand seven hundred one'),\n(8929, 89221, 'eighty-nine thousand two hundred twenty-one'),\n(8930, 51201, 'fifty-one thousand two hundred one'),\n(8931, 31702, 'thirty-one thousand seven hundred two'),\n(8932, 24390, 'twenty-four thousand three hundred ninety'),\n(8933, 55746, 'fifty-five thousand seven hundred forty-six'),\n(8934, 68375, 'sixty-eight thousand three hundred seventy-five'),\n(8935, 87377, 'eighty-seven thousand three hundred seventy-seven'),\n(8936, 30091, 'thirty thousand ninety-one'),\n(8937, 82666, 'eighty-two thousand six hundred sixty-six'),\n(8938, 67335, 'sixty-seven thousand three hundred thirty-five'),\n(8939, 80977, 'eighty thousand nine hundred seventy-seven'),\n(8940, 39017, 'thirty-nine thousand seventeen'),\n(8941, 22438, 'twenty-two thousand four hundred thirty-eight'),\n(8942, 96170, 'ninety-six thousand one hundred seventy'),\n(8943, 69719, 'sixty-nine thousand seven hundred nineteen'),\n(8944, 61880, 'sixty-one thousand eight hundred eighty'),\n(8945, 87408, 'eighty-seven thousand four hundred eight'),\n(8946, 32094, 'thirty-two thousand ninety-four'),\n(8947, 54233, 'fifty-four thousand two hundred thirty-three'),\n(8948, 46995, 'forty-six thousand nine hundred ninety-five'),\n(8949, 75594, 'seventy-five thousand five hundred ninety-four'),\n(8950, 79004, 'seventy-nine thousand four'),\n(8951, 24787, 'twenty-four thousand seven hundred eighty-seven'),\n(8952, 33917, 'thirty-three thousand nine hundred seventeen'),\n(8953, 20650, 'twenty thousand six hundred fifty'),\n(8954, 15545, 'fifteen thousand five hundred forty-five'),\n(8955, 28465, 'twenty-eight thousand four hundred sixty-five'),\n(8956, 77966, 'seventy-seven thousand nine hundred sixty-six'),\n(8957, 40490, 'forty thousand four hundred ninety'),\n(8958, 65944, 'sixty-five thousand nine hundred forty-four'),\n(8959, 71646, 'seventy-one thousand six hundred forty-six'),\n(8960, 83584, 'eighty-three thousand five hundred eighty-four'),\n(8961, 73512, 'seventy-three thousand five hundred twelve'),\n(8962, 49920, 'forty-nine thousand nine hundred twenty'),\n(8963, 53318, 'fifty-three thousand three hundred eighteen'),\n(8964, 39959, 'thirty-nine thousand nine hundred fifty-nine'),\n(8965, 72167, 'seventy-two thousand one hundred sixty-seven'),\n(8966, 86184, 'eighty-six thousand one hundred eighty-four'),\n(8967, 24020, 'twenty-four thousand twenty'),\n(8968, 51653, 'fifty-one thousand six hundred fifty-three'),\n(8969, 80578, 'eighty thousand five hundred seventy-eight'),\n(8970, 39003, 'thirty-nine thousand three'),\n(8971, 80866, 'eighty thousand eight hundred sixty-six'),\n(8972, 14425, 'fourteen thousand four hundred twenty-five'),\n(8973, 55029, 'fifty-five thousand twenty-nine'),\n(8974, 57905, 'fifty-seven thousand nine hundred five'),\n(8975, 20717, 'twenty thousand seven hundred seventeen'),\n(8976, 89894, 'eighty-nine thousand eight hundred ninety-four'),\n(8977, 30105, 'thirty thousand one hundred five'),\n(8978, 78493, 'seventy-eight thousand four hundred ninety-three'),\n(8979, 17777, 'seventeen thousand seven hundred seventy-seven'),\n(8980, 74946, 'seventy-four thousand nine hundred forty-six'),\n(8981, 72797, 'seventy-two thousand seven hundred ninety-seven'),\n(8982, 75024, 'seventy-five thousand twenty-four'),\n(8983, 51532, 'fifty-one thousand five hundred thirty-two'),\n(8984, 33724, 'thirty-three thousand seven hundred twenty-four'),\n(8985, 2930, 'two thousand nine hundred thirty'),\n(8986, 54770, 'fifty-four thousand seven hundred seventy'),\n(8987, 80780, 'eighty thousand seven hundred eighty'),\n(8988, 73147, 'seventy-three thousand one hundred forty-seven'),\n(8989, 89684, 'eighty-nine thousand six hundred eighty-four'),\n(8990, 71585, 'seventy-one thousand five hundred eighty-five'),\n(8991, 51694, 'fifty-one thousand six hundred ninety-four'),\n(8992, 55158, 'fifty-five thousand one hundred fifty-eight'),\n(8993, 28755, 'twenty-eight thousand seven hundred fifty-five'),\n(8994, 66584, 'sixty-six thousand five hundred eighty-four'),\n(8995, 59752, 'fifty-nine thousand seven hundred fifty-two'),\n(8996, 95143, 'ninety-five thousand one hundred forty-three'),\n(8997, 5092, 'five thousand ninety-two'),\n(8998, 56792, 'fifty-six thousand seven hundred ninety-two'),\n(8999, 88899, 'eighty-eight thousand eight hundred ninety-nine'),\n(9000, 42062, 'forty-two thousand sixty-two'),\n(9001, 87458, 'eighty-seven thousand four hundred fifty-eight'),\n(9002, 83037, 'eighty-three thousand thirty-seven'),\n(9003, 45442, 'forty-five thousand four hundred forty-two'),\n(9004, 96335, 'ninety-six thousand three hundred thirty-five'),\n(9005, 17437, 'seventeen thousand four hundred thirty-seven'),\n(9006, 41234, 'forty-one thousand two hundred thirty-four'),\n(9007, 38464, 'thirty-eight thousand four hundred sixty-four'),\n(9008, 25912, 'twenty-five thousand nine hundred twelve'),\n(9009, 18006, 'eighteen thousand six'),\n(9010, 58518, 'fifty-eight thousand five hundred eighteen'),\n(9011, 96286, 'ninety-six thousand two hundred eighty-six'),\n(9012, 88919, 'eighty-eight thousand nine hundred nineteen'),\n(9013, 86871, 'eighty-six thousand eight hundred seventy-one'),\n(9014, 55545, 'fifty-five thousand five hundred forty-five'),\n(9015, 52368, 'fifty-two thousand three hundred sixty-eight'),\n(9016, 42202, 'forty-two thousand two hundred two'),\n(9017, 31564, 'thirty-one thousand five hundred sixty-four'),\n(9018, 17558, 'seventeen thousand five hundred fifty-eight'),\n(9019, 25854, 'twenty-five thousand eight hundred fifty-four'),\n(9020, 346, 'three hundred forty-six'),\n(9021, 67734, 'sixty-seven thousand seven hundred thirty-four'),\n(9022, 65704, 'sixty-five thousand seven hundred four'),\n(9023, 95894, 'ninety-five thousand eight hundred ninety-four'),\n(9024, 18630, 'eighteen thousand six hundred thirty'),\n(9025, 33634, 'thirty-three thousand six hundred thirty-four'),\n(9026, 40109, 'forty thousand one hundred nine'),\n(9027, 63064, 'sixty-three thousand sixty-four'),\n(9028, 77187, 'seventy-seven thousand one hundred eighty-seven'),\n(9029, 99038, 'ninety-nine thousand thirty-eight'),\n(9030, 76139, 'seventy-six thousand one hundred thirty-nine'),\n(9031, 82667, 'eighty-two thousand six hundred sixty-seven'),\n(9032, 70647, 'seventy thousand six hundred forty-seven'),\n(9033, 38367, 'thirty-eight thousand three hundred sixty-seven'),\n(9034, 93294, 'ninety-three thousand two hundred ninety-four'),\n(9035, 66244, 'sixty-six thousand two hundred forty-four'),\n(9036, 24895, 'twenty-four thousand eight hundred ninety-five'),\n(9037, 28956, 'twenty-eight thousand nine hundred fifty-six'),\n(9038, 21442, 'twenty-one thousand four hundred forty-two'),\n(9039, 82489, 'eighty-two thousand four hundred eighty-nine'),\n(9040, 15722, 'fifteen thousand seven hundred twenty-two'),\n(9041, 5325, 'five thousand three hundred twenty-five'),\n(9042, 3042, 'three thousand forty-two'),\n(9043, 69840, 'sixty-nine thousand eight hundred forty'),\n(9044, 86368, 'eighty-six thousand three hundred sixty-eight'),\n(9045, 41213, 'forty-one thousand two hundred thirteen'),\n(9046, 66450, 'sixty-six thousand four hundred fifty'),\n(9047, 80470, 'eighty thousand four hundred seventy'),\n(9048, 63488, 'sixty-three thousand four hundred eighty-eight'),\n(9049, 9774, 'nine thousand seven hundred seventy-four'),\n(9050, 79757, 'seventy-nine thousand seven hundred fifty-seven'),\n(9051, 31476, 'thirty-one thousand four hundred seventy-six'),\n(9052, 54062, 'fifty-four thousand sixty-two'),\n(9053, 99610, 'ninety-nine thousand six hundred ten'),\n(9054, 50809, 'fifty thousand eight hundred nine'),\n(9055, 29135, 'twenty-nine thousand one hundred thirty-five'),\n(9056, 58535, 'fifty-eight thousand five hundred thirty-five'),\n(9057, 62396, 'sixty-two thousand three hundred ninety-six'),\n(9058, 85313, 'eighty-five thousand three hundred thirteen'),\n(9059, 18362, 'eighteen thousand three hundred sixty-two'),\n(9060, 33031, 'thirty-three thousand thirty-one'),\n(9061, 76547, 'seventy-six thousand five hundred forty-seven'),\n(9062, 18035, 'eighteen thousand thirty-five'),\n(9063, 93426, 'ninety-three thousand four hundred twenty-six'),\n(9064, 40275, 'forty thousand two hundred seventy-five'),\n(9065, 36240, 'thirty-six thousand two hundred forty'),\n(9066, 95982, 'ninety-five thousand nine hundred eighty-two'),\n(9067, 63305, 'sixty-three thousand three hundred five'),\n(9068, 49114, 'forty-nine thousand one hundred fourteen'),\n(9069, 96689, 'ninety-six thousand six hundred eighty-nine'),\n(9070, 39056, 'thirty-nine thousand fifty-six'),\n(9071, 39255, 'thirty-nine thousand two hundred fifty-five'),\n(9072, 18392, 'eighteen thousand three hundred ninety-two'),\n(9073, 52779, 'fifty-two thousand seven hundred seventy-nine'),\n(9074, 70740, 'seventy thousand seven hundred forty'),\n(9075, 28177, 'twenty-eight thousand one hundred seventy-seven'),\n(9076, 53022, 'fifty-three thousand twenty-two'),\n(9077, 8438, 'eight thousand four hundred thirty-eight'),\n(9078, 90857, 'ninety thousand eight hundred fifty-seven'),\n(9079, 71045, 'seventy-one thousand forty-five'),\n(9080, 73389, 'seventy-three thousand three hundred eighty-nine'),\n(9081, 62752, 'sixty-two thousand seven hundred fifty-two'),\n(9082, 68794, 'sixty-eight thousand seven hundred ninety-four'),\n(9083, 61942, 'sixty-one thousand nine hundred forty-two'),\n(9084, 13103, 'thirteen thousand one hundred three'),\n(9085, 76440, 'seventy-six thousand four hundred forty'),\n(9086, 67343, 'sixty-seven thousand three hundred forty-three'),\n(9087, 96950, 'ninety-six thousand nine hundred fifty'),\n(9088, 38512, 'thirty-eight thousand five hundred twelve'),\n(9089, 65977, 'sixty-five thousand nine hundred seventy-seven'),\n(9090, 14040, 'fourteen thousand forty'),\n(9091, 64962, 'sixty-four thousand nine hundred sixty-two'),\n(9092, 57923, 'fifty-seven thousand nine hundred twenty-three'),\n(9093, 39954, 'thirty-nine thousand nine hundred fifty-four'),\n(9094, 44316, 'forty-four thousand three hundred sixteen'),\n(9095, 59214, 'fifty-nine thousand two hundred fourteen'),\n(9096, 33593, 'thirty-three thousand five hundred ninety-three'),\n(9097, 92761, 'ninety-two thousand seven hundred sixty-one'),\n(9098, 10028, 'ten thousand twenty-eight'),\n(9099, 35798, 'thirty-five thousand seven hundred ninety-eight'),\n(9100, 84095, 'eighty-four thousand ninety-five'),\n(9101, 29822, 'twenty-nine thousand eight hundred twenty-two'),\n(9102, 37880, 'thirty-seven thousand eight hundred eighty'),\n(9103, 35717, 'thirty-five thousand seven hundred seventeen'),\n(9104, 68276, 'sixty-eight thousand two hundred seventy-six'),\n(9105, 19185, 'nineteen thousand one hundred eighty-five'),\n(9106, 33368, 'thirty-three thousand three hundred sixty-eight'),\n(9107, 93229, 'ninety-three thousand two hundred twenty-nine'),\n(9108, 22248, 'twenty-two thousand two hundred forty-eight'),\n(9109, 94024, 'ninety-four thousand twenty-four'),\n(9110, 76816, 'seventy-six thousand eight hundred sixteen'),\n(9111, 8189, 'eight thousand one hundred eighty-nine'),\n(9112, 14797, 'fourteen thousand seven hundred ninety-seven'),\n(9113, 32570, 'thirty-two thousand five hundred seventy'),\n(9114, 9894, 'nine thousand eight hundred ninety-four'),\n(9115, 68941, 'sixty-eight thousand nine hundred forty-one'),\n(9116, 27996, 'twenty-seven thousand nine hundred ninety-six'),\n(9117, 35583, 'thirty-five thousand five hundred eighty-three'),\n(9118, 25430, 'twenty-five thousand four hundred thirty'),\n(9119, 22255, 'twenty-two thousand two hundred fifty-five'),\n(9120, 58894, 'fifty-eight thousand eight hundred ninety-four'),\n(9121, 24066, 'twenty-four thousand sixty-six'),\n(9122, 38320, 'thirty-eight thousand three hundred twenty'),\n(9123, 10351, 'ten thousand three hundred fifty-one'),\n(9124, 8349, 'eight thousand three hundred forty-nine'),\n(9125, 79192, 'seventy-nine thousand one hundred ninety-two'),\n(9126, 11116, 'eleven thousand one hundred sixteen'),\n(9127, 8725, 'eight thousand seven hundred twenty-five'),\n(9128, 65492, 'sixty-five thousand four hundred ninety-two'),\n(9129, 37008, 'thirty-seven thousand eight'),\n(9130, 28614, 'twenty-eight thousand six hundred fourteen'),\n(9131, 2083, 'two thousand eighty-three'),\n(9132, 15522, 'fifteen thousand five hundred twenty-two'),\n(9133, 37053, 'thirty-seven thousand fifty-three'),\n(9134, 54309, 'fifty-four thousand three hundred nine'),\n(9135, 56198, 'fifty-six thousand one hundred ninety-eight'),\n(9136, 11354, 'eleven thousand three hundred fifty-four'),\n(9137, 32381, 'thirty-two thousand three hundred eighty-one'),\n(9138, 11379, 'eleven thousand three hundred seventy-nine'),\n(9139, 79715, 'seventy-nine thousand seven hundred fifteen'),\n(9140, 99040, 'ninety-nine thousand forty'),\n(9141, 42907, 'forty-two thousand nine hundred seven'),\n(9142, 97582, 'ninety-seven thousand five hundred eighty-two'),\n(9143, 26920, 'twenty-six thousand nine hundred twenty'),\n(9144, 14972, 'fourteen thousand nine hundred seventy-two'),\n(9145, 99929, 'ninety-nine thousand nine hundred twenty-nine'),\n(9146, 18113, 'eighteen thousand one hundred thirteen'),\n(9147, 48729, 'forty-eight thousand seven hundred twenty-nine'),\n(9148, 38634, 'thirty-eight thousand six hundred thirty-four'),\n(9149, 36178, 'thirty-six thousand one hundred seventy-eight'),\n(9150, 20243, 'twenty thousand two hundred forty-three'),\n(9151, 42704, 'forty-two thousand seven hundred four'),\n(9152, 18710, 'eighteen thousand seven hundred ten'),\n(9153, 16143, 'sixteen thousand one hundred forty-three'),\n(9154, 32009, 'thirty-two thousand nine'),\n(9155, 63727, 'sixty-three thousand seven hundred twenty-seven'),\n(9156, 53242, 'fifty-three thousand two hundred forty-two'),\n(9157, 3236, 'three thousand two hundred thirty-six'),\n(9158, 55435, 'fifty-five thousand four hundred thirty-five'),\n(9159, 77610, 'seventy-seven thousand six hundred ten'),\n(9160, 1072, 'one thousand seventy-two'),\n(9161, 95288, 'ninety-five thousand two hundred eighty-eight'),\n(9162, 64213, 'sixty-four thousand two hundred thirteen'),\n(9163, 92749, 'ninety-two thousand seven hundred forty-nine'),\n(9164, 31485, 'thirty-one thousand four hundred eighty-five'),\n(9165, 22927, 'twenty-two thousand nine hundred twenty-seven'),\n(9166, 89768, 'eighty-nine thousand seven hundred sixty-eight'),\n(9167, 10867, 'ten thousand eight hundred sixty-seven'),\n(9168, 11046, 'eleven thousand forty-six'),\n(9169, 98054, 'ninety-eight thousand fifty-four'),\n(9170, 11549, 'eleven thousand five hundred forty-nine'),\n(9171, 67832, 'sixty-seven thousand eight hundred thirty-two'),\n(9172, 2112, 'two thousand one hundred twelve'),\n(9173, 94490, 'ninety-four thousand four hundred ninety'),\n(9174, 51480, 'fifty-one thousand four hundred eighty'),\n(9175, 60796, 'sixty thousand seven hundred ninety-six'),\n(9176, 26361, 'twenty-six thousand three hundred sixty-one'),\n(9177, 67022, 'sixty-seven thousand twenty-two'),\n(9178, 63130, 'sixty-three thousand one hundred thirty'),\n(9179, 46755, 'forty-six thousand seven hundred fifty-five'),\n(9180, 21060, 'twenty-one thousand sixty'),\n(9181, 14523, 'fourteen thousand five hundred twenty-three'),\n(9182, 82727, 'eighty-two thousand seven hundred twenty-seven'),\n(9183, 1546, 'one thousand five hundred forty-six'),\n(9184, 72420, 'seventy-two thousand four hundred twenty'),\n(9185, 90446, 'ninety thousand four hundred forty-six'),\n(9186, 2821, 'two thousand eight hundred twenty-one'),\n(9187, 81558, 'eighty-one thousand five hundred fifty-eight'),\n(9188, 91643, 'ninety-one thousand six hundred forty-three'),\n(9189, 41793, 'forty-one thousand seven hundred ninety-three'),\n(9190, 88071, 'eighty-eight thousand seventy-one'),\n(9191, 17534, 'seventeen thousand five hundred thirty-four'),\n(9192, 88129, 'eighty-eight thousand one hundred twenty-nine'),\n(9193, 80657, 'eighty thousand six hundred fifty-seven'),\n(9194, 91355, 'ninety-one thousand three hundred fifty-five'),\n(9195, 23533, 'twenty-three thousand five hundred thirty-three'),\n(9196, 27599, 'twenty-seven thousand five hundred ninety-nine'),\n(9197, 72294, 'seventy-two thousand two hundred ninety-four'),\n(9198, 78603, 'seventy-eight thousand six hundred three'),\n(9199, 26761, 'twenty-six thousand seven hundred sixty-one'),\n(9200, 59860, 'fifty-nine thousand eight hundred sixty'),\n(9201, 50947, 'fifty thousand nine hundred forty-seven'),\n(9202, 43175, 'forty-three thousand one hundred seventy-five'),\n(9203, 48134, 'forty-eight thousand one hundred thirty-four'),\n(9204, 18280, 'eighteen thousand two hundred eighty'),\n(9205, 35461, 'thirty-five thousand four hundred sixty-one'),\n(9206, 91273, 'ninety-one thousand two hundred seventy-three'),\n(9207, 6046, 'six thousand forty-six'),\n(9208, 90076, 'ninety thousand seventy-six'),\n(9209, 66903, 'sixty-six thousand nine hundred three'),\n(9210, 13199, 'thirteen thousand one hundred ninety-nine'),\n(9211, 83217, 'eighty-three thousand two hundred seventeen'),\n(9212, 92154, 'ninety-two thousand one hundred fifty-four'),\n(9213, 38937, 'thirty-eight thousand nine hundred thirty-seven'),\n(9214, 20628, 'twenty thousand six hundred twenty-eight'),\n(9215, 62348, 'sixty-two thousand three hundred forty-eight'),\n(9216, 29919, 'twenty-nine thousand nine hundred nineteen'),\n(9217, 34281, 'thirty-four thousand two hundred eighty-one'),\n(9218, 15475, 'fifteen thousand four hundred seventy-five'),\n(9219, 37942, 'thirty-seven thousand nine hundred forty-two'),\n(9220, 31341, 'thirty-one thousand three hundred forty-one'),\n(9221, 59714, 'fifty-nine thousand seven hundred fourteen'),\n(9222, 33237, 'thirty-three thousand two hundred thirty-seven'),\n(9223, 70487, 'seventy thousand four hundred eighty-seven'),\n(9224, 62617, 'sixty-two thousand six hundred seventeen'),\n(9225, 61349, 'sixty-one thousand three hundred forty-nine'),\n(9226, 64067, 'sixty-four thousand sixty-seven'),\n(9227, 65358, 'sixty-five thousand three hundred fifty-eight'),\n(9228, 88344, 'eighty-eight thousand three hundred forty-four'),\n(9229, 64528, 'sixty-four thousand five hundred twenty-eight'),\n(9230, 96716, 'ninety-six thousand seven hundred sixteen'),\n(9231, 77063, 'seventy-seven thousand sixty-three'),\n(9232, 75673, 'seventy-five thousand six hundred seventy-three'),\n(9233, 92475, 'ninety-two thousand four hundred seventy-five'),\n(9234, 50843, 'fifty thousand eight hundred forty-three'),\n(9235, 97043, 'ninety-seven thousand forty-three'),\n(9236, 6072, 'six thousand seventy-two'),\n(9237, 65314, 'sixty-five thousand three hundred fourteen'),\n(9238, 82344, 'eighty-two thousand three hundred forty-four'),\n(9239, 74018, 'seventy-four thousand eighteen'),\n(9240, 32928, 'thirty-two thousand nine hundred twenty-eight'),\n(9241, 60082, 'sixty thousand eighty-two'),\n(9242, 81604, 'eighty-one thousand six hundred four'),\n(9243, 38115, 'thirty-eight thousand one hundred fifteen'),\n(9244, 80246, 'eighty thousand two hundred forty-six'),\n(9245, 50234, 'fifty thousand two hundred thirty-four'),\n(9246, 8465, 'eight thousand four hundred sixty-five'),\n(9247, 43140, 'forty-three thousand one hundred forty'),\n(9248, 17223, 'seventeen thousand two hundred twenty-three'),\n(9249, 93099, 'ninety-three thousand ninety-nine'),\n(9250, 70775, 'seventy thousand seven hundred seventy-five'),\n(9251, 77097, 'seventy-seven thousand ninety-seven'),\n(9252, 26685, 'twenty-six thousand six hundred eighty-five'),\n(9253, 84011, 'eighty-four thousand eleven'),\n(9254, 35749, 'thirty-five thousand seven hundred forty-nine'),\n(9255, 43137, 'forty-three thousand one hundred thirty-seven'),\n(9256, 73765, 'seventy-three thousand seven hundred sixty-five'),\n(9257, 61041, 'sixty-one thousand forty-one'),\n(9258, 59354, 'fifty-nine thousand three hundred fifty-four'),\n(9259, 19542, 'nineteen thousand five hundred forty-two'),\n(9260, 71523, 'seventy-one thousand five hundred twenty-three'),\n(9261, 2298, 'two thousand two hundred ninety-eight'),\n(9262, 715, 'seven hundred fifteen'),\n(9263, 60243, 'sixty thousand two hundred forty-three'),\n(9264, 32053, 'thirty-two thousand fifty-three'),\n(9265, 12963, 'twelve thousand nine hundred sixty-three'),\n(9266, 24250, 'twenty-four thousand two hundred fifty'),\n(9267, 36631, 'thirty-six thousand six hundred thirty-one'),\n(9268, 52928, 'fifty-two thousand nine hundred twenty-eight'),\n(9269, 16333, 'sixteen thousand three hundred thirty-three'),\n(9270, 82870, 'eighty-two thousand eight hundred seventy'),\n(9271, 81515, 'eighty-one thousand five hundred fifteen'),\n(9272, 99191, 'ninety-nine thousand one hundred ninety-one'),\n(9273, 87415, 'eighty-seven thousand four hundred fifteen'),\n(9274, 55020, 'fifty-five thousand twenty'),\n(9275, 25213, 'twenty-five thousand two hundred thirteen'),\n(9276, 38515, 'thirty-eight thousand five hundred fifteen'),\n(9277, 56758, 'fifty-six thousand seven hundred fifty-eight'),\n(9278, 24777, 'twenty-four thousand seven hundred seventy-seven'),\n(9279, 4780, 'four thousand seven hundred eighty'),\n(9280, 12336, 'twelve thousand three hundred thirty-six'),\n(9281, 24419, 'twenty-four thousand four hundred nineteen'),\n(9282, 29000, 'twenty-nine thousand'),\n(9283, 26475, 'twenty-six thousand four hundred seventy-five'),\n(9284, 10365, 'ten thousand three hundred sixty-five'),\n(9285, 4733, 'four thousand seven hundred thirty-three'),\n(9286, 62551, 'sixty-two thousand five hundred fifty-one'),\n(9287, 9207, 'nine thousand two hundred seven'),\n(9288, 69259, 'sixty-nine thousand two hundred fifty-nine'),\n(9289, 64025, 'sixty-four thousand twenty-five'),\n(9290, 79316, 'seventy-nine thousand three hundred sixteen'),\n(9291, 53916, 'fifty-three thousand nine hundred sixteen'),\n(9292, 56301, 'fifty-six thousand three hundred one'),\n(9293, 17156, 'seventeen thousand one hundred fifty-six'),\n(9294, 81030, 'eighty-one thousand thirty'),\n(9295, 65931, 'sixty-five thousand nine hundred thirty-one'),\n(9296, 70204, 'seventy thousand two hundred four'),\n(9297, 88942, 'eighty-eight thousand nine hundred forty-two'),\n(9298, 54425, 'fifty-four thousand four hundred twenty-five'),\n(9299, 45614, 'forty-five thousand six hundred fourteen'),\n(9300, 33829, 'thirty-three thousand eight hundred twenty-nine'),\n(9301, 47087, 'forty-seven thousand eighty-seven'),\n(9302, 89386, 'eighty-nine thousand three hundred eighty-six'),\n(9303, 80191, 'eighty thousand one hundred ninety-one'),\n(9304, 52285, 'fifty-two thousand two hundred eighty-five'),\n(9305, 44795, 'forty-four thousand seven hundred ninety-five'),\n(9306, 71836, 'seventy-one thousand eight hundred thirty-six'),\n(9307, 19547, 'nineteen thousand five hundred forty-seven'),\n(9308, 94144, 'ninety-four thousand one hundred forty-four'),\n(9309, 50085, 'fifty thousand eighty-five'),\n(9310, 12091, 'twelve thousand ninety-one'),\n(9311, 90620, 'ninety thousand six hundred twenty'),\n(9312, 21667, 'twenty-one thousand six hundred sixty-seven'),\n(9313, 2828, 'two thousand eight hundred twenty-eight'),\n(9314, 79979, 'seventy-nine thousand nine hundred seventy-nine'),\n(9315, 42653, 'forty-two thousand six hundred fifty-three'),\n(9316, 22651, 'twenty-two thousand six hundred fifty-one'),\n(9317, 46836, 'forty-six thousand eight hundred thirty-six'),\n(9318, 6891, 'six thousand eight hundred ninety-one'),\n(9319, 65648, 'sixty-five thousand six hundred forty-eight'),\n(9320, 4568, 'four thousand five hundred sixty-eight'),\n(9321, 70927, 'seventy thousand nine hundred twenty-seven'),\n(9322, 43772, 'forty-three thousand seven hundred seventy-two'),\n(9323, 13829, 'thirteen thousand eight hundred twenty-nine'),\n(9324, 90942, 'ninety thousand nine hundred forty-two'),\n(9325, 16722, 'sixteen thousand seven hundred twenty-two'),\n(9326, 70488, 'seventy thousand four hundred eighty-eight'),\n(9327, 10181, 'ten thousand one hundred eighty-one'),\n(9328, 51044, 'fifty-one thousand forty-four'),\n(9329, 51516, 'fifty-one thousand five hundred sixteen'),\n(9330, 22091, 'twenty-two thousand ninety-one'),\n(9331, 46933, 'forty-six thousand nine hundred thirty-three'),\n(9332, 13896, 'thirteen thousand eight hundred ninety-six'),\n(9333, 52569, 'fifty-two thousand five hundred sixty-nine'),\n(9334, 26404, 'twenty-six thousand four hundred four'),\n(9335, 65553, 'sixty-five thousand five hundred fifty-three'),\n(9336, 7091, 'seven thousand ninety-one'),\n(9337, 53998, 'fifty-three thousand nine hundred ninety-eight'),\n(9338, 80480, 'eighty thousand four hundred eighty'),\n(9339, 73810, 'seventy-three thousand eight hundred ten'),\n(9340, 14807, 'fourteen thousand eight hundred seven'),\n(9341, 47446, 'forty-seven thousand four hundred forty-six'),\n(9342, 94755, 'ninety-four thousand seven hundred fifty-five'),\n(9343, 41874, 'forty-one thousand eight hundred seventy-four'),\n(9344, 49840, 'forty-nine thousand eight hundred forty'),\n(9345, 98442, 'ninety-eight thousand four hundred forty-two'),\n(9346, 52772, 'fifty-two thousand seven hundred seventy-two'),\n(9347, 29363, 'twenty-nine thousand three hundred sixty-three'),\n(9348, 22819, 'twenty-two thousand eight hundred nineteen'),\n(9349, 70973, 'seventy thousand nine hundred seventy-three'),\n(9350, 83032, 'eighty-three thousand thirty-two'),\n(9351, 22199, 'twenty-two thousand one hundred ninety-nine'),\n(9352, 59295, 'fifty-nine thousand two hundred ninety-five'),\n(9353, 51235, 'fifty-one thousand two hundred thirty-five'),\n(9354, 70910, 'seventy thousand nine hundred ten'),\n(9355, 30627, 'thirty thousand six hundred twenty-seven'),\n(9356, 30518, 'thirty thousand five hundred eighteen'),\n(9357, 92969, 'ninety-two thousand nine hundred sixty-nine'),\n(9358, 25130, 'twenty-five thousand one hundred thirty'),\n(9359, 54858, 'fifty-four thousand eight hundred fifty-eight'),\n(9360, 1656, 'one thousand six hundred fifty-six'),\n(9361, 96248, 'ninety-six thousand two hundred forty-eight'),\n(9362, 55331, 'fifty-five thousand three hundred thirty-one'),\n(9363, 23849, 'twenty-three thousand eight hundred forty-nine'),\n(9364, 68780, 'sixty-eight thousand seven hundred eighty'),\n(9365, 68674, 'sixty-eight thousand six hundred seventy-four'),\n(9366, 9263, 'nine thousand two hundred sixty-three'),\n(9367, 15001, 'fifteen thousand one'),\n(9368, 44927, 'forty-four thousand nine hundred twenty-seven'),\n(9369, 74966, 'seventy-four thousand nine hundred sixty-six'),\n(9370, 77659, 'seventy-seven thousand six hundred fifty-nine'),\n(9371, 16585, 'sixteen thousand five hundred eighty-five'),\n(9372, 70397, 'seventy thousand three hundred ninety-seven'),\n(9373, 54297, 'fifty-four thousand two hundred ninety-seven'),\n(9374, 16079, 'sixteen thousand seventy-nine'),\n(9375, 57305, 'fifty-seven thousand three hundred five'),\n(9376, 28710, 'twenty-eight thousand seven hundred ten'),\n(9377, 72838, 'seventy-two thousand eight hundred thirty-eight'),\n(9378, 65613, 'sixty-five thousand six hundred thirteen'),\n(9379, 2299, 'two thousand two hundred ninety-nine'),\n(9380, 81974, 'eighty-one thousand nine hundred seventy-four'),\n(9381, 74535, 'seventy-four thousand five hundred thirty-five'),\n(9382, 92645, 'ninety-two thousand six hundred forty-five'),\n(9383, 46704, 'forty-six thousand seven hundred four'),\n(9384, 87040, 'eighty-seven thousand forty'),\n(9385, 17892, 'seventeen thousand eight hundred ninety-two'),\n(9386, 17587, 'seventeen thousand five hundred eighty-seven'),\n(9387, 46374, 'forty-six thousand three hundred seventy-four'),\n(9388, 33874, 'thirty-three thousand eight hundred seventy-four'),\n(9389, 35921, 'thirty-five thousand nine hundred twenty-one'),\n(9390, 34701, 'thirty-four thousand seven hundred one'),\n(9391, 69836, 'sixty-nine thousand eight hundred thirty-six'),\n(9392, 25533, 'twenty-five thousand five hundred thirty-three'),\n(9393, 24734, 'twenty-four thousand seven hundred thirty-four'),\n(9394, 93359, 'ninety-three thousand three hundred fifty-nine'),\n(9395, 85681, 'eighty-five thousand six hundred eighty-one'),\n(9396, 83898, 'eighty-three thousand eight hundred ninety-eight'),\n(9397, 83847, 'eighty-three thousand eight hundred forty-seven'),\n(9398, 91137, 'ninety-one thousand one hundred thirty-seven'),\n(9399, 39397, 'thirty-nine thousand three hundred ninety-seven'),\n(9400, 54919, 'fifty-four thousand nine hundred nineteen'),\n(9401, 51388, 'fifty-one thousand three hundred eighty-eight'),\n(9402, 2759, 'two thousand seven hundred fifty-nine'),\n(9403, 50512, 'fifty thousand five hundred twelve'),\n(9404, 91961, 'ninety-one thousand nine hundred sixty-one'),\n(9405, 25773, 'twenty-five thousand seven hundred seventy-three'),\n(9406, 90873, 'ninety thousand eight hundred seventy-three'),\n(9407, 48072, 'forty-eight thousand seventy-two'),\n(9408, 76197, 'seventy-six thousand one hundred ninety-seven'),\n(9409, 23501, 'twenty-three thousand five hundred one'),\n(9410, 15196, 'fifteen thousand one hundred ninety-six'),\n(9411, 92399, 'ninety-two thousand three hundred ninety-nine'),\n(9412, 97769, 'ninety-seven thousand seven hundred sixty-nine'),\n(9413, 27952, 'twenty-seven thousand nine hundred fifty-two'),\n(9414, 11128, 'eleven thousand one hundred twenty-eight'),\n(9415, 63811, 'sixty-three thousand eight hundred eleven'),\n(9416, 70663, 'seventy thousand six hundred sixty-three'),\n(9417, 95007, 'ninety-five thousand seven'),\n(9418, 58978, 'fifty-eight thousand nine hundred seventy-eight'),\n(9419, 31954, 'thirty-one thousand nine hundred fifty-four'),\n(9420, 81219, 'eighty-one thousand two hundred nineteen'),\n(9421, 5188, 'five thousand one hundred eighty-eight'),\n(9422, 7825, 'seven thousand eight hundred twenty-five'),\n(9423, 9196, 'nine thousand one hundred ninety-six'),\n(9424, 86791, 'eighty-six thousand seven hundred ninety-one'),\n(9425, 29721, 'twenty-nine thousand seven hundred twenty-one'),\n(9426, 12847, 'twelve thousand eight hundred forty-seven'),\n(9427, 99213, 'ninety-nine thousand two hundred thirteen'),\n(9428, 66885, 'sixty-six thousand eight hundred eighty-five'),\n(9429, 42654, 'forty-two thousand six hundred fifty-four'),\n(9430, 20906, 'twenty thousand nine hundred six'),\n(9431, 62821, 'sixty-two thousand eight hundred twenty-one'),\n(9432, 75368, 'seventy-five thousand three hundred sixty-eight'),\n(9433, 49370, 'forty-nine thousand three hundred seventy'),\n(9434, 39473, 'thirty-nine thousand four hundred seventy-three'),\n(9435, 9521, 'nine thousand five hundred twenty-one'),\n(9436, 89273, 'eighty-nine thousand two hundred seventy-three'),\n(9437, 12641, 'twelve thousand six hundred forty-one'),\n(9438, 41305, 'forty-one thousand three hundred five'),\n(9439, 31247, 'thirty-one thousand two hundred forty-seven'),\n(9440, 81295, 'eighty-one thousand two hundred ninety-five'),\n(9441, 86702, 'eighty-six thousand seven hundred two'),\n(9442, 58812, 'fifty-eight thousand eight hundred twelve'),\n(9443, 94537, 'ninety-four thousand five hundred thirty-seven'),\n(9444, 27049, 'twenty-seven thousand forty-nine'),\n(9445, 17031, 'seventeen thousand thirty-one'),\n(9446, 69314, 'sixty-nine thousand three hundred fourteen'),\n(9447, 23716, 'twenty-three thousand seven hundred sixteen'),\n(9448, 76076, 'seventy-six thousand seventy-six'),\n(9449, 2717, 'two thousand seven hundred seventeen'),\n(9450, 44747, 'forty-four thousand seven hundred forty-seven'),\n(9451, 53340, 'fifty-three thousand three hundred forty'),\n(9452, 95746, 'ninety-five thousand seven hundred forty-six'),\n(9453, 71187, 'seventy-one thousand one hundred eighty-seven'),\n(9454, 7917, 'seven thousand nine hundred seventeen'),\n(9455, 28789, 'twenty-eight thousand seven hundred eighty-nine'),\n(9456, 60796, 'sixty thousand seven hundred ninety-six'),\n(9457, 81345, 'eighty-one thousand three hundred forty-five'),\n(9458, 9391, 'nine thousand three hundred ninety-one'),\n(9459, 64031, 'sixty-four thousand thirty-one'),\n(9460, 55265, 'fifty-five thousand two hundred sixty-five'),\n(9461, 34927, 'thirty-four thousand nine hundred twenty-seven'),\n(9462, 41428, 'forty-one thousand four hundred twenty-eight'),\n(9463, 83770, 'eighty-three thousand seven hundred seventy'),\n(9464, 70159, 'seventy thousand one hundred fifty-nine'),\n(9465, 18267, 'eighteen thousand two hundred sixty-seven'),\n(9466, 39244, 'thirty-nine thousand two hundred forty-four'),\n(9467, 44228, 'forty-four thousand two hundred twenty-eight'),\n(9468, 1947, 'one thousand nine hundred forty-seven'),\n(9469, 72422, 'seventy-two thousand four hundred twenty-two'),\n(9470, 53802, 'fifty-three thousand eight hundred two'),\n(9471, 64829, 'sixty-four thousand eight hundred twenty-nine'),\n(9472, 6289, 'six thousand two hundred eighty-nine'),\n(9473, 62878, 'sixty-two thousand eight hundred seventy-eight'),\n(9474, 22415, 'twenty-two thousand four hundred fifteen'),\n(9475, 69964, 'sixty-nine thousand nine hundred sixty-four'),\n(9476, 59869, 'fifty-nine thousand eight hundred sixty-nine'),\n(9477, 2433, 'two thousand four hundred thirty-three'),\n(9478, 35295, 'thirty-five thousand two hundred ninety-five'),\n(9479, 44059, 'forty-four thousand fifty-nine'),\n(9480, 49410, 'forty-nine thousand four hundred ten'),\n(9481, 10316, 'ten thousand three hundred sixteen'),\n(9482, 11864, 'eleven thousand eight hundred sixty-four'),\n(9483, 45783, 'forty-five thousand seven hundred eighty-three'),\n(9484, 71139, 'seventy-one thousand one hundred thirty-nine'),\n(9485, 64769, 'sixty-four thousand seven hundred sixty-nine'),\n(9486, 69627, 'sixty-nine thousand six hundred twenty-seven'),\n(9487, 6160, 'six thousand one hundred sixty'),\n(9488, 1622, 'one thousand six hundred twenty-two'),\n(9489, 32963, 'thirty-two thousand nine hundred sixty-three'),\n(9490, 4482, 'four thousand four hundred eighty-two'),\n(9491, 65797, 'sixty-five thousand seven hundred ninety-seven'),\n(9492, 6525, 'six thousand five hundred twenty-five'),\n(9493, 95289, 'ninety-five thousand two hundred eighty-nine'),\n(9494, 94277, 'ninety-four thousand two hundred seventy-seven'),\n(9495, 38195, 'thirty-eight thousand one hundred ninety-five'),\n(9496, 73136, 'seventy-three thousand one hundred thirty-six'),\n(9497, 24640, 'twenty-four thousand six hundred forty'),\n(9498, 50773, 'fifty thousand seven hundred seventy-three'),\n(9499, 53197, 'fifty-three thousand one hundred ninety-seven'),\n(9500, 28393, 'twenty-eight thousand three hundred ninety-three'),\n(9501, 68463, 'sixty-eight thousand four hundred sixty-three'),\n(9502, 97319, 'ninety-seven thousand three hundred nineteen'),\n(9503, 7449, 'seven thousand four hundred forty-nine'),\n(9504, 40053, 'forty thousand fifty-three'),\n(9505, 92826, 'ninety-two thousand eight hundred twenty-six'),\n(9506, 92280, 'ninety-two thousand two hundred eighty'),\n(9507, 66373, 'sixty-six thousand three hundred seventy-three'),\n(9508, 46904, 'forty-six thousand nine hundred four'),\n(9509, 36587, 'thirty-six thousand five hundred eighty-seven'),\n(9510, 24990, 'twenty-four thousand nine hundred ninety'),\n(9511, 34899, 'thirty-four thousand eight hundred ninety-nine'),\n(9512, 65838, 'sixty-five thousand eight hundred thirty-eight'),\n(9513, 37982, 'thirty-seven thousand nine hundred eighty-two'),\n(9514, 95348, 'ninety-five thousand three hundred forty-eight'),\n(9515, 99069, 'ninety-nine thousand sixty-nine'),\n(9516, 19341, 'nineteen thousand three hundred forty-one'),\n(9517, 34630, 'thirty-four thousand six hundred thirty'),\n(9518, 62749, 'sixty-two thousand seven hundred forty-nine'),\n(9519, 54795, 'fifty-four thousand seven hundred ninety-five'),\n(9520, 65885, 'sixty-five thousand eight hundred eighty-five'),\n(9521, 42110, 'forty-two thousand one hundred ten'),\n(9522, 94995, 'ninety-four thousand nine hundred ninety-five'),\n(9523, 44099, 'forty-four thousand ninety-nine'),\n(9524, 5023, 'five thousand twenty-three'),\n(9525, 44432, 'forty-four thousand four hundred thirty-two'),\n(9526, 58385, 'fifty-eight thousand three hundred eighty-five'),\n(9527, 27411, 'twenty-seven thousand four hundred eleven'),\n(9528, 46696, 'forty-six thousand six hundred ninety-six'),\n(9529, 35288, 'thirty-five thousand two hundred eighty-eight'),\n(9530, 51650, 'fifty-one thousand six hundred fifty'),\n(9531, 50346, 'fifty thousand three hundred forty-six'),\n(9532, 53778, 'fifty-three thousand seven hundred seventy-eight'),\n(9533, 77104, 'seventy-seven thousand one hundred four'),\n(9534, 81645, 'eighty-one thousand six hundred forty-five'),\n(9535, 93730, 'ninety-three thousand seven hundred thirty'),\n(9536, 53911, 'fifty-three thousand nine hundred eleven'),\n(9537, 46429, 'forty-six thousand four hundred twenty-nine'),\n(9538, 912, 'nine hundred twelve'),\n(9539, 80247, 'eighty thousand two hundred forty-seven'),\n(9540, 59461, 'fifty-nine thousand four hundred sixty-one'),\n(9541, 85411, 'eighty-five thousand four hundred eleven'),\n(9542, 88498, 'eighty-eight thousand four hundred ninety-eight'),\n(9543, 64667, 'sixty-four thousand six hundred sixty-seven'),\n(9544, 86721, 'eighty-six thousand seven hundred twenty-one'),\n(9545, 42294, 'forty-two thousand two hundred ninety-four'),\n(9546, 95975, 'ninety-five thousand nine hundred seventy-five'),\n(9547, 85394, 'eighty-five thousand three hundred ninety-four'),\n(9548, 2596, 'two thousand five hundred ninety-six'),\n(9549, 15830, 'fifteen thousand eight hundred thirty'),\n(9550, 11774, 'eleven thousand seven hundred seventy-four'),\n(9551, 58243, 'fifty-eight thousand two hundred forty-three'),\n(9552, 49363, 'forty-nine thousand three hundred sixty-three'),\n(9553, 17763, 'seventeen thousand seven hundred sixty-three'),\n(9554, 37835, 'thirty-seven thousand eight hundred thirty-five'),\n(9555, 62394, 'sixty-two thousand three hundred ninety-four'),\n(9556, 82566, 'eighty-two thousand five hundred sixty-six'),\n(9557, 9620, 'nine thousand six hundred twenty'),\n(9558, 43924, 'forty-three thousand nine hundred twenty-four'),\n(9559, 13939, 'thirteen thousand nine hundred thirty-nine'),\n(9560, 42034, 'forty-two thousand thirty-four'),\n(9561, 39386, 'thirty-nine thousand three hundred eighty-six'),\n(9562, 37292, 'thirty-seven thousand two hundred ninety-two'),\n(9563, 55768, 'fifty-five thousand seven hundred sixty-eight'),\n(9564, 12746, 'twelve thousand seven hundred forty-six'),\n(9565, 15598, 'fifteen thousand five hundred ninety-eight'),\n(9566, 76861, 'seventy-six thousand eight hundred sixty-one'),\n(9567, 88958, 'eighty-eight thousand nine hundred fifty-eight'),\n(9568, 57242, 'fifty-seven thousand two hundred forty-two'),\n(9569, 53535, 'fifty-three thousand five hundred thirty-five'),\n(9570, 68429, 'sixty-eight thousand four hundred twenty-nine'),\n(9571, 94325, 'ninety-four thousand three hundred twenty-five'),\n(9572, 61897, 'sixty-one thousand eight hundred ninety-seven'),\n(9573, 56375, 'fifty-six thousand three hundred seventy-five'),\n(9574, 53383, 'fifty-three thousand three hundred eighty-three'),\n(9575, 75975, 'seventy-five thousand nine hundred seventy-five'),\n(9576, 52430, 'fifty-two thousand four hundred thirty'),\n(9577, 32397, 'thirty-two thousand three hundred ninety-seven'),\n(9578, 52315, 'fifty-two thousand three hundred fifteen'),\n(9579, 92937, 'ninety-two thousand nine hundred thirty-seven'),\n(9580, 97196, 'ninety-seven thousand one hundred ninety-six'),\n(9581, 51060, 'fifty-one thousand sixty'),\n(9582, 73173, 'seventy-three thousand one hundred seventy-three'),\n(9583, 69205, 'sixty-nine thousand two hundred five'),\n(9584, 72584, 'seventy-two thousand five hundred eighty-four'),\n(9585, 62794, 'sixty-two thousand seven hundred ninety-four'),\n(9586, 95094, 'ninety-five thousand ninety-four'),\n(9587, 93164, 'ninety-three thousand one hundred sixty-four'),\n(9588, 31782, 'thirty-one thousand seven hundred eighty-two'),\n(9589, 67414, 'sixty-seven thousand four hundred fourteen'),\n(9590, 14328, 'fourteen thousand three hundred twenty-eight'),\n(9591, 28027, 'twenty-eight thousand twenty-seven'),\n(9592, 36845, 'thirty-six thousand eight hundred forty-five'),\n(9593, 90582, 'ninety thousand five hundred eighty-two'),\n(9594, 78397, 'seventy-eight thousand three hundred ninety-seven'),\n(9595, 32621, 'thirty-two thousand six hundred twenty-one'),\n(9596, 33893, 'thirty-three thousand eight hundred ninety-three'),\n(9597, 3035, 'three thousand thirty-five'),\n(9598, 2249, 'two thousand two hundred forty-nine'),\n(9599, 28115, 'twenty-eight thousand one hundred fifteen'),\n(9600, 48283, 'forty-eight thousand two hundred eighty-three'),\n(9601, 82132, 'eighty-two thousand one hundred thirty-two'),\n(9602, 35998, 'thirty-five thousand nine hundred ninety-eight'),\n(9603, 1349, 'one thousand three hundred forty-nine'),\n(9604, 18482, 'eighteen thousand four hundred eighty-two'),\n(9605, 8550, 'eight thousand five hundred fifty'),\n(9606, 41277, 'forty-one thousand two hundred seventy-seven'),\n(9607, 63595, 'sixty-three thousand five hundred ninety-five'),\n(9608, 11102, 'eleven thousand one hundred two'),\n(9609, 75196, 'seventy-five thousand one hundred ninety-six'),\n(9610, 21415, 'twenty-one thousand four hundred fifteen'),\n(9611, 62935, 'sixty-two thousand nine hundred thirty-five'),\n(9612, 60561, 'sixty thousand five hundred sixty-one'),\n(9613, 42112, 'forty-two thousand one hundred twelve'),\n(9614, 3546, 'three thousand five hundred forty-six'),\n(9615, 84965, 'eighty-four thousand nine hundred sixty-five'),\n(9616, 23021, 'twenty-three thousand twenty-one'),\n(9617, 11024, 'eleven thousand twenty-four'),\n(9618, 19148, 'nineteen thousand one hundred forty-eight'),\n(9619, 62660, 'sixty-two thousand six hundred sixty'),\n(9620, 66222, 'sixty-six thousand two hundred twenty-two'),\n(9621, 7150, 'seven thousand one hundred fifty'),\n(9622, 94115, 'ninety-four thousand one hundred fifteen'),\n(9623, 79455, 'seventy-nine thousand four hundred fifty-five'),\n(9624, 66501, 'sixty-six thousand five hundred one'),\n(9625, 25874, 'twenty-five thousand eight hundred seventy-four'),\n(9626, 83933, 'eighty-three thousand nine hundred thirty-three'),\n(9627, 45557, 'forty-five thousand five hundred fifty-seven'),\n(9628, 42680, 'forty-two thousand six hundred eighty'),\n(9629, 41739, 'forty-one thousand seven hundred thirty-nine'),\n(9630, 8693, 'eight thousand six hundred ninety-three'),\n(9631, 55585, 'fifty-five thousand five hundred eighty-five'),\n(9632, 38535, 'thirty-eight thousand five hundred thirty-five'),\n(9633, 21156, 'twenty-one thousand one hundred fifty-six'),\n(9634, 20406, 'twenty thousand four hundred six'),\n(9635, 66134, 'sixty-six thousand one hundred thirty-four'),\n(9636, 52453, 'fifty-two thousand four hundred fifty-three'),\n(9637, 41268, 'forty-one thousand two hundred sixty-eight'),\n(9638, 63276, 'sixty-three thousand two hundred seventy-six'),\n(9639, 87526, 'eighty-seven thousand five hundred twenty-six'),\n(9640, 90635, 'ninety thousand six hundred thirty-five'),\n(9641, 97688, 'ninety-seven thousand six hundred eighty-eight'),\n(9642, 36016, 'thirty-six thousand sixteen'),\n(9643, 43498, 'forty-three thousand four hundred ninety-eight'),\n(9644, 22834, 'twenty-two thousand eight hundred thirty-four'),\n(9645, 9528, 'nine thousand five hundred twenty-eight'),\n(9646, 74739, 'seventy-four thousand seven hundred thirty-nine'),\n(9647, 536, 'five hundred thirty-six'),\n(9648, 77270, 'seventy-seven thousand two hundred seventy'),\n(9649, 97018, 'ninety-seven thousand eighteen'),\n(9650, 50645, 'fifty thousand six hundred forty-five'),\n(9651, 69848, 'sixty-nine thousand eight hundred forty-eight'),\n(9652, 11415, 'eleven thousand four hundred fifteen'),\n(9653, 11438, 'eleven thousand four hundred thirty-eight'),\n(9654, 38760, 'thirty-eight thousand seven hundred sixty'),\n(9655, 36497, 'thirty-six thousand four hundred ninety-seven'),\n(9656, 9140, 'nine thousand one hundred forty'),\n(9657, 29546, 'twenty-nine thousand five hundred forty-six'),\n(9658, 31898, 'thirty-one thousand eight hundred ninety-eight'),\n(9659, 25844, 'twenty-five thousand eight hundred forty-four'),\n(9660, 32481, 'thirty-two thousand four hundred eighty-one'),\n(9661, 60532, 'sixty thousand five hundred thirty-two'),\n(9662, 29790, 'twenty-nine thousand seven hundred ninety'),\n(9663, 74747, 'seventy-four thousand seven hundred forty-seven'),\n(9664, 58643, 'fifty-eight thousand six hundred forty-three'),\n(9665, 33744, 'thirty-three thousand seven hundred forty-four'),\n(9666, 59480, 'fifty-nine thousand four hundred eighty'),\n(9667, 50128, 'fifty thousand one hundred twenty-eight'),\n(9668, 70384, 'seventy thousand three hundred eighty-four'),\n(9669, 7158, 'seven thousand one hundred fifty-eight'),\n(9670, 80151, 'eighty thousand one hundred fifty-one'),\n(9671, 24344, 'twenty-four thousand three hundred forty-four'),\n(9672, 61214, 'sixty-one thousand two hundred fourteen'),\n(9673, 35741, 'thirty-five thousand seven hundred forty-one'),\n(9674, 24894, 'twenty-four thousand eight hundred ninety-four'),\n(9675, 19114, 'nineteen thousand one hundred fourteen'),\n(9676, 12239, 'twelve thousand two hundred thirty-nine'),\n(9677, 88554, 'eighty-eight thousand five hundred fifty-four'),\n(9678, 36293, 'thirty-six thousand two hundred ninety-three'),\n(9679, 48425, 'forty-eight thousand four hundred twenty-five'),\n(9680, 99726, 'ninety-nine thousand seven hundred twenty-six'),\n(9681, 62229, 'sixty-two thousand two hundred twenty-nine'),\n(9682, 63653, 'sixty-three thousand six hundred fifty-three'),\n(9683, 15592, 'fifteen thousand five hundred ninety-two'),\n(9684, 33061, 'thirty-three thousand sixty-one'),\n(9685, 53447, 'fifty-three thousand four hundred forty-seven'),\n(9686, 63564, 'sixty-three thousand five hundred sixty-four'),\n(9687, 57386, 'fifty-seven thousand three hundred eighty-six'),\n(9688, 81975, 'eighty-one thousand nine hundred seventy-five'),\n(9689, 35470, 'thirty-five thousand four hundred seventy'),\n(9690, 98418, 'ninety-eight thousand four hundred eighteen'),\n(9691, 88402, 'eighty-eight thousand four hundred two'),\n(9692, 98496, 'ninety-eight thousand four hundred ninety-six'),\n(9693, 97784, 'ninety-seven thousand seven hundred eighty-four'),\n(9694, 35214, 'thirty-five thousand two hundred fourteen'),\n(9695, 42063, 'forty-two thousand sixty-three'),\n(9696, 76077, 'seventy-six thousand seventy-seven'),\n(9697, 23088, 'twenty-three thousand eighty-eight'),\n(9698, 14265, 'fourteen thousand two hundred sixty-five'),\n(9699, 76827, 'seventy-six thousand eight hundred twenty-seven'),\n(9700, 27804, 'twenty-seven thousand eight hundred four'),\n(9701, 53844, 'fifty-three thousand eight hundred forty-four'),\n(9702, 4007, 'four thousand seven'),\n(9703, 96952, 'ninety-six thousand nine hundred fifty-two'),\n(9704, 46585, 'forty-six thousand five hundred eighty-five'),\n(9705, 83391, 'eighty-three thousand three hundred ninety-one'),\n(9706, 78111, 'seventy-eight thousand one hundred eleven'),\n(9707, 80532, 'eighty thousand five hundred thirty-two'),\n(9708, 43375, 'forty-three thousand three hundred seventy-five'),\n(9709, 56714, 'fifty-six thousand seven hundred fourteen'),\n(9710, 57329, 'fifty-seven thousand three hundred twenty-nine'),\n(9711, 16576, 'sixteen thousand five hundred seventy-six'),\n(9712, 1329, 'one thousand three hundred twenty-nine'),\n(9713, 88054, 'eighty-eight thousand fifty-four'),\n(9714, 70183, 'seventy thousand one hundred eighty-three'),\n(9715, 70877, 'seventy thousand eight hundred seventy-seven'),\n(9716, 7748, 'seven thousand seven hundred forty-eight'),\n(9717, 53011, 'fifty-three thousand eleven'),\n(9718, 54458, 'fifty-four thousand four hundred fifty-eight'),\n(9719, 55829, 'fifty-five thousand eight hundred twenty-nine'),\n(9720, 23875, 'twenty-three thousand eight hundred seventy-five'),\n(9721, 83438, 'eighty-three thousand four hundred thirty-eight'),\n(9722, 30843, 'thirty thousand eight hundred forty-three'),\n(9723, 31460, 'thirty-one thousand four hundred sixty'),\n(9724, 1279, 'one thousand two hundred seventy-nine'),\n(9725, 94085, 'ninety-four thousand eighty-five'),\n(9726, 9956, 'nine thousand nine hundred fifty-six'),\n(9727, 59878, 'fifty-nine thousand eight hundred seventy-eight'),\n(9728, 95406, 'ninety-five thousand four hundred six'),\n(9729, 78322, 'seventy-eight thousand three hundred twenty-two'),\n(9730, 54152, 'fifty-four thousand one hundred fifty-two'),\n(9731, 28924, 'twenty-eight thousand nine hundred twenty-four'),\n(9732, 86051, 'eighty-six thousand fifty-one'),\n(9733, 54314, 'fifty-four thousand three hundred fourteen'),\n(9734, 86506, 'eighty-six thousand five hundred six'),\n(9735, 43503, 'forty-three thousand five hundred three'),\n(9736, 76407, 'seventy-six thousand four hundred seven'),\n(9737, 81693, 'eighty-one thousand six hundred ninety-three'),\n(9738, 68742, 'sixty-eight thousand seven hundred forty-two'),\n(9739, 93083, 'ninety-three thousand eighty-three'),\n(9740, 15616, 'fifteen thousand six hundred sixteen'),\n(9741, 25334, 'twenty-five thousand three hundred thirty-four'),\n(9742, 16841, 'sixteen thousand eight hundred forty-one'),\n(9743, 15428, 'fifteen thousand four hundred twenty-eight'),\n(9744, 11639, 'eleven thousand six hundred thirty-nine'),\n(9745, 12882, 'twelve thousand eight hundred eighty-two'),\n(9746, 4539, 'four thousand five hundred thirty-nine'),\n(9747, 12686, 'twelve thousand six hundred eighty-six'),\n(9748, 76435, 'seventy-six thousand four hundred thirty-five'),\n(9749, 87542, 'eighty-seven thousand five hundred forty-two'),\n(9750, 66329, 'sixty-six thousand three hundred twenty-nine'),\n(9751, 68697, 'sixty-eight thousand six hundred ninety-seven'),\n(9752, 61991, 'sixty-one thousand nine hundred ninety-one'),\n(9753, 30348, 'thirty thousand three hundred forty-eight'),\n(9754, 45560, 'forty-five thousand five hundred sixty'),\n(9755, 88732, 'eighty-eight thousand seven hundred thirty-two'),\n(9756, 51458, 'fifty-one thousand four hundred fifty-eight'),\n(9757, 24599, 'twenty-four thousand five hundred ninety-nine'),\n(9758, 72912, 'seventy-two thousand nine hundred twelve'),\n(9759, 95571, 'ninety-five thousand five hundred seventy-one'),\n(9760, 20329, 'twenty thousand three hundred twenty-nine'),\n(9761, 57317, 'fifty-seven thousand three hundred seventeen'),\n(9762, 81954, 'eighty-one thousand nine hundred fifty-four'),\n(9763, 62989, 'sixty-two thousand nine hundred eighty-nine'),\n(9764, 27606, 'twenty-seven thousand six hundred six'),\n(9765, 57035, 'fifty-seven thousand thirty-five'),\n(9766, 69996, 'sixty-nine thousand nine hundred ninety-six'),\n(9767, 44204, 'forty-four thousand two hundred four'),\n(9768, 69784, 'sixty-nine thousand seven hundred eighty-four'),\n(9769, 4270, 'four thousand two hundred seventy'),\n(9770, 82805, 'eighty-two thousand eight hundred five'),\n(9771, 13843, 'thirteen thousand eight hundred forty-three'),\n(9772, 65155, 'sixty-five thousand one hundred fifty-five'),\n(9773, 87772, 'eighty-seven thousand seven hundred seventy-two'),\n(9774, 22324, 'twenty-two thousand three hundred twenty-four'),\n(9775, 28212, 'twenty-eight thousand two hundred twelve'),\n(9776, 3590, 'three thousand five hundred ninety'),\n(9777, 76740, 'seventy-six thousand seven hundred forty'),\n(9778, 26033, 'twenty-six thousand thirty-three'),\n(9779, 70943, 'seventy thousand nine hundred forty-three'),\n(9780, 78762, 'seventy-eight thousand seven hundred sixty-two'),\n(9781, 30940, 'thirty thousand nine hundred forty'),\n(9782, 25141, 'twenty-five thousand one hundred forty-one'),\n(9783, 70917, 'seventy thousand nine hundred seventeen'),\n(9784, 75039, 'seventy-five thousand thirty-nine'),\n(9785, 5772, 'five thousand seven hundred seventy-two'),\n(9786, 39799, 'thirty-nine thousand seven hundred ninety-nine'),\n(9787, 64216, 'sixty-four thousand two hundred sixteen'),\n(9788, 53001, 'fifty-three thousand one'),\n(9789, 83948, 'eighty-three thousand nine hundred forty-eight'),\n(9790, 24615, 'twenty-four thousand six hundred fifteen'),\n(9791, 78344, 'seventy-eight thousand three hundred forty-four'),\n(9792, 27521, 'twenty-seven thousand five hundred twenty-one'),\n(9793, 94991, 'ninety-four thousand nine hundred ninety-one'),\n(9794, 16917, 'sixteen thousand nine hundred seventeen'),\n(9795, 80476, 'eighty thousand four hundred seventy-six'),\n(9796, 49562, 'forty-nine thousand five hundred sixty-two'),\n(9797, 95018, 'ninety-five thousand eighteen'),\n(9798, 95112, 'ninety-five thousand one hundred twelve'),\n(9799, 31541, 'thirty-one thousand five hundred forty-one'),\n(9800, 40264, 'forty thousand two hundred sixty-four'),\n(9801, 54100, 'fifty-four thousand one hundred'),\n(9802, 16500, 'sixteen thousand five hundred'),\n(9803, 95598, 'ninety-five thousand five hundred ninety-eight'),\n(9804, 8549, 'eight thousand five hundred forty-nine'),\n(9805, 97901, 'ninety-seven thousand nine hundred one'),\n(9806, 70092, 'seventy thousand ninety-two'),\n(9807, 65868, 'sixty-five thousand eight hundred sixty-eight'),\n(9808, 4120, 'four thousand one hundred twenty'),\n(9809, 45413, 'forty-five thousand four hundred thirteen'),\n(9810, 58910, 'fifty-eight thousand nine hundred ten'),\n(9811, 99750, 'ninety-nine thousand seven hundred fifty'),\n(9812, 69120, 'sixty-nine thousand one hundred twenty'),\n(9813, 32266, 'thirty-two thousand two hundred sixty-six'),\n(9814, 6083, 'six thousand eighty-three'),\n(9815, 6993, 'six thousand nine hundred ninety-three'),\n(9816, 35572, 'thirty-five thousand five hundred seventy-two'),\n(9817, 11700, 'eleven thousand seven hundred'),\n(9818, 28232, 'twenty-eight thousand two hundred thirty-two'),\n(9819, 28761, 'twenty-eight thousand seven hundred sixty-one'),\n(9820, 56504, 'fifty-six thousand five hundred four'),\n(9821, 65920, 'sixty-five thousand nine hundred twenty'),\n(9822, 35287, 'thirty-five thousand two hundred eighty-seven'),\n(9823, 13096, 'thirteen thousand ninety-six'),\n(9824, 44804, 'forty-four thousand eight hundred four'),\n(9825, 48610, 'forty-eight thousand six hundred ten'),\n(9826, 80980, 'eighty thousand nine hundred eighty'),\n(9827, 12163, 'twelve thousand one hundred sixty-three'),\n(9828, 52121, 'fifty-two thousand one hundred twenty-one'),\n(9829, 28802, 'twenty-eight thousand eight hundred two'),\n(9830, 98320, 'ninety-eight thousand three hundred twenty'),\n(9831, 38135, 'thirty-eight thousand one hundred thirty-five'),\n(9832, 75067, 'seventy-five thousand sixty-seven'),\n(9833, 64249, 'sixty-four thousand two hundred forty-nine'),\n(9834, 78018, 'seventy-eight thousand eighteen'),\n(9835, 51877, 'fifty-one thousand eight hundred seventy-seven'),\n(9836, 74873, 'seventy-four thousand eight hundred seventy-three'),\n(9837, 18116, 'eighteen thousand one hundred sixteen'),\n(9838, 12202, 'twelve thousand two hundred two'),\n(9839, 26133, 'twenty-six thousand one hundred thirty-three'),\n(9840, 13765, 'thirteen thousand seven hundred sixty-five'),\n(9841, 39184, 'thirty-nine thousand one hundred eighty-four'),\n(9842, 57565, 'fifty-seven thousand five hundred sixty-five'),\n(9843, 41440, 'forty-one thousand four hundred forty'),\n(9844, 3492, 'three thousand four hundred ninety-two'),\n(9845, 44020, 'forty-four thousand twenty'),\n(9846, 44709, 'forty-four thousand seven hundred nine'),\n(9847, 59773, 'fifty-nine thousand seven hundred seventy-three'),\n(9848, 89604, 'eighty-nine thousand six hundred four'),\n(9849, 37881, 'thirty-seven thousand eight hundred eighty-one'),\n(9850, 5299, 'five thousand two hundred ninety-nine'),\n(9851, 41217, 'forty-one thousand two hundred seventeen'),\n(9852, 50078, 'fifty thousand seventy-eight'),\n(9853, 39677, 'thirty-nine thousand six hundred seventy-seven'),\n(9854, 25455, 'twenty-five thousand four hundred fifty-five'),\n(9855, 74369, 'seventy-four thousand three hundred sixty-nine'),\n(9856, 18940, 'eighteen thousand nine hundred forty'),\n(9857, 53098, 'fifty-three thousand ninety-eight'),\n(9858, 88932, 'eighty-eight thousand nine hundred thirty-two'),\n(9859, 45679, 'forty-five thousand six hundred seventy-nine'),\n(9860, 61413, 'sixty-one thousand four hundred thirteen'),\n(9861, 40594, 'forty thousand five hundred ninety-four'),\n(9862, 77281, 'seventy-seven thousand two hundred eighty-one'),\n(9863, 75998, 'seventy-five thousand nine hundred ninety-eight'),\n(9864, 72702, 'seventy-two thousand seven hundred two'),\n(9865, 3295, 'three thousand two hundred ninety-five'),\n(9866, 92616, 'ninety-two thousand six hundred sixteen'),\n(9867, 65642, 'sixty-five thousand six hundred forty-two'),\n(9868, 57131, 'fifty-seven thousand one hundred thirty-one'),\n(9869, 58547, 'fifty-eight thousand five hundred forty-seven'),\n(9870, 88583, 'eighty-eight thousand five hundred eighty-three'),\n(9871, 59711, 'fifty-nine thousand seven hundred eleven'),\n(9872, 25812, 'twenty-five thousand eight hundred twelve'),\n(9873, 75902, 'seventy-five thousand nine hundred two'),\n(9874, 99458, 'ninety-nine thousand four hundred fifty-eight'),\n(9875, 10805, 'ten thousand eight hundred five'),\n(9876, 49524, 'forty-nine thousand five hundred twenty-four'),\n(9877, 57630, 'fifty-seven thousand six hundred thirty'),\n(9878, 46295, 'forty-six thousand two hundred ninety-five'),\n(9879, 79257, 'seventy-nine thousand two hundred fifty-seven'),\n(9880, 3821, 'three thousand eight hundred twenty-one'),\n(9881, 94527, 'ninety-four thousand five hundred twenty-seven'),\n(9882, 90174, 'ninety thousand one hundred seventy-four'),\n(9883, 65336, 'sixty-five thousand three hundred thirty-six'),\n(9884, 9558, 'nine thousand five hundred fifty-eight'),\n(9885, 95116, 'ninety-five thousand one hundred sixteen'),\n(9886, 5593, 'five thousand five hundred ninety-three'),\n(9887, 47175, 'forty-seven thousand one hundred seventy-five'),\n(9888, 82353, 'eighty-two thousand three hundred fifty-three'),\n(9889, 78374, 'seventy-eight thousand three hundred seventy-four'),\n(9890, 49833, 'forty-nine thousand eight hundred thirty-three'),\n(9891, 31965, 'thirty-one thousand nine hundred sixty-five'),\n(9892, 50490, 'fifty thousand four hundred ninety'),\n(9893, 18358, 'eighteen thousand three hundred fifty-eight'),\n(9894, 21924, 'twenty-one thousand nine hundred twenty-four'),\n(9895, 83905, 'eighty-three thousand nine hundred five'),\n(9896, 15656, 'fifteen thousand six hundred fifty-six'),\n(9897, 41036, 'forty-one thousand thirty-six'),\n(9898, 42128, 'forty-two thousand one hundred twenty-eight'),\n(9899, 75773, 'seventy-five thousand seven hundred seventy-three'),\n(9900, 56627, 'fifty-six thousand six hundred twenty-seven'),\n(9901, 71417, 'seventy-one thousand four hundred seventeen'),\n(9902, 23768, 'twenty-three thousand seven hundred sixty-eight'),\n(9903, 88086, 'eighty-eight thousand eighty-six'),\n(9904, 46849, 'forty-six thousand eight hundred forty-nine'),\n(9905, 36057, 'thirty-six thousand fifty-seven'),\n(9906, 83187, 'eighty-three thousand one hundred eighty-seven'),\n(9907, 55292, 'fifty-five thousand two hundred ninety-two'),\n(9908, 80397, 'eighty thousand three hundred ninety-seven'),\n(9909, 29647, 'twenty-nine thousand six hundred forty-seven'),\n(9910, 50336, 'fifty thousand three hundred thirty-six'),\n(9911, 74987, 'seventy-four thousand nine hundred eighty-seven'),\n(9912, 41905, 'forty-one thousand nine hundred five'),\n(9913, 9432, 'nine thousand four hundred thirty-two'),\n(9914, 4855, 'four thousand eight hundred fifty-five'),\n(9915, 7991, 'seven thousand nine hundred ninety-one'),\n(9916, 13472, 'thirteen thousand four hundred seventy-two'),\n(9917, 29238, 'twenty-nine thousand two hundred thirty-eight'),\n(9918, 6738, 'six thousand seven hundred thirty-eight'),\n(9919, 57081, 'fifty-seven thousand eighty-one'),\n(9920, 10588, 'ten thousand five hundred eighty-eight'),\n(9921, 10879, 'ten thousand eight hundred seventy-nine'),\n(9922, 79359, 'seventy-nine thousand three hundred fifty-nine'),\n(9923, 98281, 'ninety-eight thousand two hundred eighty-one'),\n(9924, 67749, 'sixty-seven thousand seven hundred forty-nine'),\n(9925, 18918, 'eighteen thousand nine hundred eighteen'),\n(9926, 5137, 'five thousand one hundred thirty-seven'),\n(9927, 74561, 'seventy-four thousand five hundred sixty-one'),\n(9928, 80642, 'eighty thousand six hundred forty-two'),\n(9929, 33164, 'thirty-three thousand one hundred sixty-four'),\n(9930, 65336, 'sixty-five thousand three hundred thirty-six'),\n(9931, 3439, 'three thousand four hundred thirty-nine'),\n(9932, 52804, 'fifty-two thousand eight hundred four'),\n(9933, 32821, 'thirty-two thousand eight hundred twenty-one'),\n(9934, 87478, 'eighty-seven thousand four hundred seventy-eight'),\n(9935, 44868, 'forty-four thousand eight hundred sixty-eight'),\n(9936, 21660, 'twenty-one thousand six hundred sixty'),\n(9937, 77320, 'seventy-seven thousand three hundred twenty'),\n(9938, 8024, 'eight thousand twenty-four'),\n(9939, 18026, 'eighteen thousand twenty-six'),\n(9940, 75202, 'seventy-five thousand two hundred two'),\n(9941, 3285, 'three thousand two hundred eighty-five'),\n(9942, 37685, 'thirty-seven thousand six hundred eighty-five'),\n(9943, 31654, 'thirty-one thousand six hundred fifty-four'),\n(9944, 42470, 'forty-two thousand four hundred seventy'),\n(9945, 63642, 'sixty-three thousand six hundred forty-two'),\n(9946, 46964, 'forty-six thousand nine hundred sixty-four'),\n(9947, 22816, 'twenty-two thousand eight hundred sixteen'),\n(9948, 80389, 'eighty thousand three hundred eighty-nine'),\n(9949, 59048, 'fifty-nine thousand forty-eight'),\n(9950, 13320, 'thirteen thousand three hundred twenty'),\n(9951, 27617, 'twenty-seven thousand six hundred seventeen'),\n(9952, 27069, 'twenty-seven thousand sixty-nine'),\n(9953, 13166, 'thirteen thousand one hundred sixty-six'),\n(9954, 62500, 'sixty-two thousand five hundred'),\n(9955, 89697, 'eighty-nine thousand six hundred ninety-seven'),\n(9956, 94209, 'ninety-four thousand two hundred nine'),\n(9957, 28971, 'twenty-eight thousand nine hundred seventy-one'),\n(9958, 23306, 'twenty-three thousand three hundred six'),\n(9959, 85340, 'eighty-five thousand three hundred forty'),\n(9960, 88517, 'eighty-eight thousand five hundred seventeen'),\n(9961, 69535, 'sixty-nine thousand five hundred thirty-five'),\n(9962, 48865, 'forty-eight thousand eight hundred sixty-five'),\n(9963, 21321, 'twenty-one thousand three hundred twenty-one'),\n(9964, 88185, 'eighty-eight thousand one hundred eighty-five'),\n(9965, 54339, 'fifty-four thousand three hundred thirty-nine'),\n(9966, 47482, 'forty-seven thousand four hundred eighty-two'),\n(9967, 51378, 'fifty-one thousand three hundred seventy-eight'),\n(9968, 42984, 'forty-two thousand nine hundred eighty-four'),\n(9969, 11213, 'eleven thousand two hundred thirteen'),\n(9970, 20893, 'twenty thousand eight hundred ninety-three'),\n(9971, 8304, 'eight thousand three hundred four'),\n(9972, 82458, 'eighty-two thousand four hundred fifty-eight'),\n(9973, 67591, 'sixty-seven thousand five hundred ninety-one'),\n(9974, 32604, 'thirty-two thousand six hundred four'),\n(9975, 77734, 'seventy-seven thousand seven hundred thirty-four'),\n(9976, 86587, 'eighty-six thousand five hundred eighty-seven'),\n(9977, 15574, 'fifteen thousand five hundred seventy-four'),\n(9978, 6699, 'six thousand six hundred ninety-nine'),\n(9979, 49970, 'forty-nine thousand nine hundred seventy'),\n(9980, 32108, 'thirty-two thousand one hundred eight'),\n(9981, 79519, 'seventy-nine thousand five hundred nineteen'),\n(9982, 1760, 'one thousand seven hundred sixty'),\n(9983, 86997, 'eighty-six thousand nine hundred ninety-seven'),\n(9984, 1514, 'one thousand five hundred fourteen'),\n(9985, 82448, 'eighty-two thousand four hundred forty-eight'),\n(9986, 20963, 'twenty thousand nine hundred sixty-three'),\n(9987, 43593, 'forty-three thousand five hundred ninety-three'),\n(9988, 52932, 'fifty-two thousand nine hundred thirty-two'),\n(9989, 22809, 'twenty-two thousand eight hundred nine'),\n(9990, 2423, 'two thousand four hundred twenty-three'),\n(9991, 14254, 'fourteen thousand two hundred fifty-four'),\n(9992, 34857, 'thirty-four thousand eight hundred fifty-seven'),\n(9993, 38878, 'thirty-eight thousand eight hundred seventy-eight'),\n(9994, 78264, 'seventy-eight thousand two hundred sixty-four'),\n(9995, 30166, 'thirty thousand one hundred sixty-six'),\n(9996, 92097, 'ninety-two thousand ninety-seven'),\n(9997, 90726, 'ninety thousand seven hundred twenty-six'),\n(9998, 77552, 'seventy-seven thousand five hundred fifty-two'),\n(9999, 90712, 'ninety thousand seven hundred twelve'),\n(10000, 38233, 'thirty-eight thousand two hundred thirty-three'),\n(10001, 47108, 'forty-seven thousand one hundred eight'),\n(10002, 12575, 'twelve thousand five hundred seventy-five'),\n(10003, 41464, 'forty-one thousand four hundred sixty-four'),\n(10004, 99617, 'ninety-nine thousand six hundred seventeen'),\n(10005, 47435, 'forty-seven thousand four hundred thirty-five'),\n(10006, 40042, 'forty thousand forty-two'),\n(10007, 15138, 'fifteen thousand one hundred thirty-eight'),\n(10008, 96584, 'ninety-six thousand five hundred eighty-four'),\n(10009, 61595, 'sixty-one thousand five hundred ninety-five'),\n(10010, 96037, 'ninety-six thousand thirty-seven'),\n(10011, 56384, 'fifty-six thousand three hundred eighty-four'),\n(10012, 86369, 'eighty-six thousand three hundred sixty-nine'),\n(10013, 87206, 'eighty-seven thousand two hundred six'),\n(10014, 56057, 'fifty-six thousand fifty-seven'),\n(10015, 39328, 'thirty-nine thousand three hundred twenty-eight'),\n(10016, 3104, 'three thousand one hundred four'),\n(10017, 56656, 'fifty-six thousand six hundred fifty-six'),\n(10018, 99538, 'ninety-nine thousand five hundred thirty-eight'),\n(10019, 88851, 'eighty-eight thousand eight hundred fifty-one'),\n(10020, 42842, 'forty-two thousand eight hundred forty-two'),\n(10021, 9208, 'nine thousand two hundred eight'),\n(10022, 51921, 'fifty-one thousand nine hundred twenty-one'),\n(10023, 74366, 'seventy-four thousand three hundred sixty-six'),\n(10024, 11710, 'eleven thousand seven hundred ten'),\n(10025, 59456, 'fifty-nine thousand four hundred fifty-six'),\n(10026, 28553, 'twenty-eight thousand five hundred fifty-three'),\n(10027, 35135, 'thirty-five thousand one hundred thirty-five'),\n(10028, 9698, 'nine thousand six hundred ninety-eight'),\n(10029, 67917, 'sixty-seven thousand nine hundred seventeen'),\n(10030, 55651, 'fifty-five thousand six hundred fifty-one'),\n(10031, 64240, 'sixty-four thousand two hundred forty'),\n(10032, 4942, 'four thousand nine hundred forty-two'),\n(10033, 95924, 'ninety-five thousand nine hundred twenty-four'),\n(10034, 93532, 'ninety-three thousand five hundred thirty-two'),\n(10035, 42543, 'forty-two thousand five hundred forty-three'),\n(10036, 4791, 'four thousand seven hundred ninety-one'),\n(10037, 2016, 'two thousand sixteen'),\n(10038, 74850, 'seventy-four thousand eight hundred fifty'),\n(10039, 84055, 'eighty-four thousand fifty-five'),\n(10040, 58297, 'fifty-eight thousand two hundred ninety-seven'),\n(10041, 11878, 'eleven thousand eight hundred seventy-eight'),\n(10042, 15505, 'fifteen thousand five hundred five'),\n(10043, 26858, 'twenty-six thousand eight hundred fifty-eight'),\n(10044, 93023, 'ninety-three thousand twenty-three'),\n(10045, 49549, 'forty-nine thousand five hundred forty-nine'),\n(10046, 41047, 'forty-one thousand forty-seven'),\n(10047, 69762, 'sixty-nine thousand seven hundred sixty-two'),\n(10048, 26771, 'twenty-six thousand seven hundred seventy-one'),\n(10049, 24496, 'twenty-four thousand four hundred ninety-six'),\n(10050, 10114, 'ten thousand one hundred fourteen'),\n(10051, 69017, 'sixty-nine thousand seventeen'),\n(10052, 68461, 'sixty-eight thousand four hundred sixty-one'),\n(10053, 85812, 'eighty-five thousand eight hundred twelve'),\n(10054, 76224, 'seventy-six thousand two hundred twenty-four'),\n(10055, 26925, 'twenty-six thousand nine hundred twenty-five'),\n(10056, 11490, 'eleven thousand four hundred ninety'),\n(10057, 29995, 'twenty-nine thousand nine hundred ninety-five'),\n(10058, 62768, 'sixty-two thousand seven hundred sixty-eight'),\n(10059, 36851, 'thirty-six thousand eight hundred fifty-one'),\n(10060, 56606, 'fifty-six thousand six hundred six'),\n(10061, 27400, 'twenty-seven thousand four hundred'),\n(10062, 7682, 'seven thousand six hundred eighty-two'),\n(10063, 8759, 'eight thousand seven hundred fifty-nine'),\n(10064, 40218, 'forty thousand two hundred eighteen'),\n(10065, 59475, 'fifty-nine thousand four hundred seventy-five'),\n(10066, 62438, 'sixty-two thousand four hundred thirty-eight'),\n(10067, 73426, 'seventy-three thousand four hundred twenty-six'),\n(10068, 14902, 'fourteen thousand nine hundred two'),\n(10069, 96269, 'ninety-six thousand two hundred sixty-nine'),\n(10070, 95485, 'ninety-five thousand four hundred eighty-five'),\n(10071, 48764, 'forty-eight thousand seven hundred sixty-four'),\n(10072, 8358, 'eight thousand three hundred fifty-eight'),\n(10073, 41444, 'forty-one thousand four hundred forty-four'),\n(10074, 2920, 'two thousand nine hundred twenty'),\n(10075, 77790, 'seventy-seven thousand seven hundred ninety'),\n(10076, 33153, 'thirty-three thousand one hundred fifty-three'),\n(10077, 75841, 'seventy-five thousand eight hundred forty-one'),\n(10078, 14008, 'fourteen thousand eight'),\n(10079, 69256, 'sixty-nine thousand two hundred fifty-six'),\n(10080, 66827, 'sixty-six thousand eight hundred twenty-seven'),\n(10081, 37227, 'thirty-seven thousand two hundred twenty-seven'),\n(10082, 19492, 'nineteen thousand four hundred ninety-two'),\n(10083, 79671, 'seventy-nine thousand six hundred seventy-one'),\n(10084, 79054, 'seventy-nine thousand fifty-four'),\n(10085, 98994, 'ninety-eight thousand nine hundred ninety-four'),\n(10086, 96096, 'ninety-six thousand ninety-six'),\n(10087, 80967, 'eighty thousand nine hundred sixty-seven'),\n(10088, 48633, 'forty-eight thousand six hundred thirty-three'),\n(10089, 38057, 'thirty-eight thousand fifty-seven'),\n(10090, 63749, 'sixty-three thousand seven hundred forty-nine'),\n(10091, 55860, 'fifty-five thousand eight hundred sixty'),\n(10092, 82701, 'eighty-two thousand seven hundred one'),\n(10093, 50344, 'fifty thousand three hundred forty-four'),\n(10094, 47347, 'forty-seven thousand three hundred forty-seven'),\n(10095, 143, 'one hundred forty-three'),\n(10096, 59282, 'fifty-nine thousand two hundred eighty-two'),\n(10097, 46944, 'forty-six thousand nine hundred forty-four'),\n(10098, 20309, 'twenty thousand three hundred nine'),\n(10099, 76981, 'seventy-six thousand nine hundred eighty-one'),\n(10100, 89378, 'eighty-nine thousand three hundred seventy-eight'),\n(10101, 11902, 'eleven thousand nine hundred two'),\n(10102, 21903, 'twenty-one thousand nine hundred three'),\n(10103, 10377, 'ten thousand three hundred seventy-seven'),\n(10104, 88499, 'eighty-eight thousand four hundred ninety-nine'),\n(10105, 21575, 'twenty-one thousand five hundred seventy-five'),\n(10106, 93190, 'ninety-three thousand one hundred ninety'),\n(10107, 61166, 'sixty-one thousand one hundred sixty-six'),\n(10108, 99043, 'ninety-nine thousand forty-three'),\n(10109, 41545, 'forty-one thousand five hundred forty-five'),\n(10110, 17181, 'seventeen thousand one hundred eighty-one'),\n(10111, 25942, 'twenty-five thousand nine hundred forty-two'),\n(10112, 69505, 'sixty-nine thousand five hundred five'),\n(10113, 74574, 'seventy-four thousand five hundred seventy-four'),\n(10114, 11019, 'eleven thousand nineteen'),\n(10115, 39297, 'thirty-nine thousand two hundred ninety-seven'),\n(10116, 96084, 'ninety-six thousand eighty-four'),\n(10117, 95688, 'ninety-five thousand six hundred eighty-eight'),\n(10118, 38350, 'thirty-eight thousand three hundred fifty'),\n(10119, 8942, 'eight thousand nine hundred forty-two'),\n(10120, 21936, 'twenty-one thousand nine hundred thirty-six'),\n(10121, 2361, 'two thousand three hundred sixty-one'),\n(10122, 70758, 'seventy thousand seven hundred fifty-eight'),\n(10123, 79416, 'seventy-nine thousand four hundred sixteen'),\n(10124, 50921, 'fifty thousand nine hundred twenty-one'),\n(10125, 16709, 'sixteen thousand seven hundred nine'),\n(10126, 86402, 'eighty-six thousand four hundred two'),\n(10127, 98444, 'ninety-eight thousand four hundred forty-four'),\n(10128, 81170, 'eighty-one thousand one hundred seventy'),\n(10129, 67494, 'sixty-seven thousand four hundred ninety-four'),\n(10130, 68126, 'sixty-eight thousand one hundred twenty-six'),\n(10131, 29829, 'twenty-nine thousand eight hundred twenty-nine'),\n(10132, 7464, 'seven thousand four hundred sixty-four'),\n(10133, 63402, 'sixty-three thousand four hundred two'),\n(10134, 32300, 'thirty-two thousand three hundred'),\n(10135, 79483, 'seventy-nine thousand four hundred eighty-three'),\n(10136, 48425, 'forty-eight thousand four hundred twenty-five'),\n(10137, 17150, 'seventeen thousand one hundred fifty'),\n(10138, 19168, 'nineteen thousand one hundred sixty-eight'),\n(10139, 67698, 'sixty-seven thousand six hundred ninety-eight'),\n(10140, 75516, 'seventy-five thousand five hundred sixteen'),\n(10141, 57137, 'fifty-seven thousand one hundred thirty-seven'),\n(10142, 80464, 'eighty thousand four hundred sixty-four'),\n(10143, 80916, 'eighty thousand nine hundred sixteen'),\n(10144, 42731, 'forty-two thousand seven hundred thirty-one'),\n(10145, 56972, 'fifty-six thousand nine hundred seventy-two'),\n(10146, 70343, 'seventy thousand three hundred forty-three'),\n(10147, 9097, 'nine thousand ninety-seven'),\n(10148, 32219, 'thirty-two thousand two hundred nineteen'),\n(10149, 55485, 'fifty-five thousand four hundred eighty-five'),\n(10150, 11369, 'eleven thousand three hundred sixty-nine'),\n(10151, 77631, 'seventy-seven thousand six hundred thirty-one'),\n(10152, 53803, 'fifty-three thousand eight hundred three'),\n(10153, 69533, 'sixty-nine thousand five hundred thirty-three'),\n(10154, 41671, 'forty-one thousand six hundred seventy-one'),\n(10155, 1864, 'one thousand eight hundred sixty-four'),\n(10156, 90970, 'ninety thousand nine hundred seventy'),\n(10157, 35812, 'thirty-five thousand eight hundred twelve'),\n(10158, 8564, 'eight thousand five hundred sixty-four'),\n(10159, 39889, 'thirty-nine thousand eight hundred eighty-nine'),\n(10160, 19612, 'nineteen thousand six hundred twelve'),\n(10161, 52799, 'fifty-two thousand seven hundred ninety-nine'),\n(10162, 98925, 'ninety-eight thousand nine hundred twenty-five'),\n(10163, 8366, 'eight thousand three hundred sixty-six'),\n(10164, 85195, 'eighty-five thousand one hundred ninety-five'),\n(10165, 51871, 'fifty-one thousand eight hundred seventy-one'),\n(10166, 65532, 'sixty-five thousand five hundred thirty-two'),\n(10167, 5273, 'five thousand two hundred seventy-three'),\n(10168, 88582, 'eighty-eight thousand five hundred eighty-two'),\n(10169, 96024, 'ninety-six thousand twenty-four'),\n(10170, 57607, 'fifty-seven thousand six hundred seven'),\n(10171, 98123, 'ninety-eight thousand one hundred twenty-three'),\n(10172, 97314, 'ninety-seven thousand three hundred fourteen'),\n(10173, 43727, 'forty-three thousand seven hundred twenty-seven'),\n(10174, 94052, 'ninety-four thousand fifty-two'),\n(10175, 85173, 'eighty-five thousand one hundred seventy-three'),\n(10176, 97991, 'ninety-seven thousand nine hundred ninety-one'),\n(10177, 92052, 'ninety-two thousand fifty-two'),\n(10178, 75865, 'seventy-five thousand eight hundred sixty-five'),\n(10179, 72141, 'seventy-two thousand one hundred forty-one'),\n(10180, 55382, 'fifty-five thousand three hundred eighty-two'),\n(10181, 95116, 'ninety-five thousand one hundred sixteen'),\n(10182, 88060, 'eighty-eight thousand sixty'),\n(10183, 487, 'four hundred eighty-seven'),\n(10184, 4659, 'four thousand six hundred fifty-nine'),\n(10185, 80149, 'eighty thousand one hundred forty-nine'),\n(10186, 16930, 'sixteen thousand nine hundred thirty'),\n(10187, 10589, 'ten thousand five hundred eighty-nine'),\n(10188, 84137, 'eighty-four thousand one hundred thirty-seven'),\n(10189, 80164, 'eighty thousand one hundred sixty-four'),\n(10190, 10661, 'ten thousand six hundred sixty-one'),\n(10191, 76568, 'seventy-six thousand five hundred sixty-eight'),\n(10192, 92075, 'ninety-two thousand seventy-five'),\n(10193, 26674, 'twenty-six thousand six hundred seventy-four'),\n(10194, 68303, 'sixty-eight thousand three hundred three'),\n(10195, 75931, 'seventy-five thousand nine hundred thirty-one'),\n(10196, 8152, 'eight thousand one hundred fifty-two'),\n(10197, 33799, 'thirty-three thousand seven hundred ninety-nine'),\n(10198, 21738, 'twenty-one thousand seven hundred thirty-eight'),\n(10199, 5672, 'five thousand six hundred seventy-two'),\n(10200, 99898, 'ninety-nine thousand eight hundred ninety-eight'),\n(10201, 16033, 'sixteen thousand thirty-three'),\n(10202, 3964, 'three thousand nine hundred sixty-four'),\n(10203, 24986, 'twenty-four thousand nine hundred eighty-six'),\n(10204, 39973, 'thirty-nine thousand nine hundred seventy-three'),\n(10205, 70562, 'seventy thousand five hundred sixty-two'),\n(10206, 66954, 'sixty-six thousand nine hundred fifty-four'),\n(10207, 99968, 'ninety-nine thousand nine hundred sixty-eight'),\n(10208, 91741, 'ninety-one thousand seven hundred forty-one'),\n(10209, 66459, 'sixty-six thousand four hundred fifty-nine'),\n(10210, 90387, 'ninety thousand three hundred eighty-seven'),\n(10211, 12882, 'twelve thousand eight hundred eighty-two'),\n(10212, 94967, 'ninety-four thousand nine hundred sixty-seven'),\n(10213, 29799, 'twenty-nine thousand seven hundred ninety-nine'),\n(10214, 918, 'nine hundred eighteen'),\n(10215, 86300, 'eighty-six thousand three hundred'),\n(10216, 29489, 'twenty-nine thousand four hundred eighty-nine'),\n(10217, 26758, 'twenty-six thousand seven hundred fifty-eight'),\n(10218, 83512, 'eighty-three thousand five hundred twelve'),\n(10219, 59831, 'fifty-nine thousand eight hundred thirty-one'),\n(10220, 33960, 'thirty-three thousand nine hundred sixty'),\n(10221, 10857, 'ten thousand eight hundred fifty-seven'),\n(10222, 79734, 'seventy-nine thousand seven hundred thirty-four'),\n(10223, 91431, 'ninety-one thousand four hundred thirty-one'),\n(10224, 85389, 'eighty-five thousand three hundred eighty-nine'),\n(10225, 9711, 'nine thousand seven hundred eleven'),\n(10226, 817, 'eight hundred seventeen'),\n(10227, 5281, 'five thousand two hundred eighty-one'),\n(10228, 18861, 'eighteen thousand eight hundred sixty-one'),\n(10229, 42662, 'forty-two thousand six hundred sixty-two'),\n(10230, 52754, 'fifty-two thousand seven hundred fifty-four'),\n(10231, 99160, 'ninety-nine thousand one hundred sixty'),\n(10232, 51631, 'fifty-one thousand six hundred thirty-one'),\n(10233, 19758, 'nineteen thousand seven hundred fifty-eight'),\n(10234, 1128, 'one thousand one hundred twenty-eight'),\n(10235, 13216, 'thirteen thousand two hundred sixteen'),\n(10236, 40414, 'forty thousand four hundred fourteen'),\n(10237, 68008, 'sixty-eight thousand eight'),\n(10238, 55273, 'fifty-five thousand two hundred seventy-three'),\n(10239, 57731, 'fifty-seven thousand seven hundred thirty-one'),\n(10240, 7753, 'seven thousand seven hundred fifty-three'),\n(10241, 84248, 'eighty-four thousand two hundred forty-eight'),\n(10242, 73512, 'seventy-three thousand five hundred twelve'),\n(10243, 5151, 'five thousand one hundred fifty-one'),\n(10244, 22687, 'twenty-two thousand six hundred eighty-seven'),\n(10245, 87087, 'eighty-seven thousand eighty-seven'),\n(10246, 96113, 'ninety-six thousand one hundred thirteen'),\n(10247, 38032, 'thirty-eight thousand thirty-two'),\n(10248, 37952, 'thirty-seven thousand nine hundred fifty-two'),\n(10249, 29910, 'twenty-nine thousand nine hundred ten'),\n(10250, 73037, 'seventy-three thousand thirty-seven'),\n(10251, 37533, 'thirty-seven thousand five hundred thirty-three'),\n(10252, 25552, 'twenty-five thousand five hundred fifty-two'),\n(10253, 95890, 'ninety-five thousand eight hundred ninety'),\n(10254, 73384, 'seventy-three thousand three hundred eighty-four'),\n(10255, 28153, 'twenty-eight thousand one hundred fifty-three'),\n(10256, 73075, 'seventy-three thousand seventy-five'),\n(10257, 37272, 'thirty-seven thousand two hundred seventy-two'),\n(10258, 76836, 'seventy-six thousand eight hundred thirty-six'),\n(10259, 47128, 'forty-seven thousand one hundred twenty-eight'),\n(10260, 44580, 'forty-four thousand five hundred eighty'),\n(10261, 25791, 'twenty-five thousand seven hundred ninety-one'),\n(10262, 75732, 'seventy-five thousand seven hundred thirty-two'),\n(10263, 34477, 'thirty-four thousand four hundred seventy-seven'),\n(10264, 17554, 'seventeen thousand five hundred fifty-four'),\n(10265, 97767, 'ninety-seven thousand seven hundred sixty-seven'),\n(10266, 26958, 'twenty-six thousand nine hundred fifty-eight'),\n(10267, 7899, 'seven thousand eight hundred ninety-nine'),\n(10268, 61767, 'sixty-one thousand seven hundred sixty-seven'),\n(10269, 91063, 'ninety-one thousand sixty-three'),\n(10270, 33260, 'thirty-three thousand two hundred sixty'),\n(10271, 6346, 'six thousand three hundred forty-six'),\n(10272, 15264, 'fifteen thousand two hundred sixty-four'),\n(10273, 30455, 'thirty thousand four hundred fifty-five'),\n(10274, 68343, 'sixty-eight thousand three hundred forty-three'),\n(10275, 42090, 'forty-two thousand ninety'),\n(10276, 64780, 'sixty-four thousand seven hundred eighty'),\n(10277, 58562, 'fifty-eight thousand five hundred sixty-two'),\n(10278, 52566, 'fifty-two thousand five hundred sixty-six'),\n(10279, 31319, 'thirty-one thousand three hundred nineteen'),\n(10280, 6021, 'six thousand twenty-one'),\n(10281, 20805, 'twenty thousand eight hundred five'),\n(10282, 8022, 'eight thousand twenty-two'),\n(10283, 50421, 'fifty thousand four hundred twenty-one'),\n(10284, 7331, 'seven thousand three hundred thirty-one'),\n(10285, 1475, 'one thousand four hundred seventy-five'),\n(10286, 47424, 'forty-seven thousand four hundred twenty-four'),\n(10287, 43754, 'forty-three thousand seven hundred fifty-four'),\n(10288, 67350, 'sixty-seven thousand three hundred fifty'),\n(10289, 12017, 'twelve thousand seventeen'),\n(10290, 22773, 'twenty-two thousand seven hundred seventy-three'),\n(10291, 46287, 'forty-six thousand two hundred eighty-seven'),\n(10292, 71061, 'seventy-one thousand sixty-one'),\n(10293, 52897, 'fifty-two thousand eight hundred ninety-seven'),\n(10294, 39020, 'thirty-nine thousand twenty'),\n(10295, 27674, 'twenty-seven thousand six hundred seventy-four'),\n(10296, 21666, 'twenty-one thousand six hundred sixty-six'),\n(10297, 37082, 'thirty-seven thousand eighty-two'),\n(10298, 17733, 'seventeen thousand seven hundred thirty-three'),\n(10299, 64767, 'sixty-four thousand seven hundred sixty-seven'),\n(10300, 5043, 'five thousand forty-three'),\n(10301, 91348, 'ninety-one thousand three hundred forty-eight'),\n(10302, 17016, 'seventeen thousand sixteen'),\n(10303, 5728, 'five thousand seven hundred twenty-eight'),\n(10304, 22891, 'twenty-two thousand eight hundred ninety-one'),\n(10305, 4838, 'four thousand eight hundred thirty-eight'),\n(10306, 66294, 'sixty-six thousand two hundred ninety-four'),\n(10307, 92489, 'ninety-two thousand four hundred eighty-nine'),\n(10308, 51575, 'fifty-one thousand five hundred seventy-five'),\n(10309, 37191, 'thirty-seven thousand one hundred ninety-one'),\n(10310, 87785, 'eighty-seven thousand seven hundred eighty-five'),\n(10311, 56922, 'fifty-six thousand nine hundred twenty-two'),\n(10312, 486, 'four hundred eighty-six'),\n(10313, 48655, 'forty-eight thousand six hundred fifty-five'),\n(10314, 54416, 'fifty-four thousand four hundred sixteen'),\n(10315, 12962, 'twelve thousand nine hundred sixty-two'),\n(10316, 6234, 'six thousand two hundred thirty-four'),\n(10317, 39580, 'thirty-nine thousand five hundred eighty'),\n(10318, 78548, 'seventy-eight thousand five hundred forty-eight'),\n(10319, 56983, 'fifty-six thousand nine hundred eighty-three'),\n(10320, 70958, 'seventy thousand nine hundred fifty-eight'),\n(10321, 98896, 'ninety-eight thousand eight hundred ninety-six'),\n(10322, 68666, 'sixty-eight thousand six hundred sixty-six'),\n(10323, 67669, 'sixty-seven thousand six hundred sixty-nine'),\n(10324, 16180, 'sixteen thousand one hundred eighty'),\n(10325, 17265, 'seventeen thousand two hundred sixty-five'),\n(10326, 77734, 'seventy-seven thousand seven hundred thirty-four'),\n(10327, 82137, 'eighty-two thousand one hundred thirty-seven'),\n(10328, 21674, 'twenty-one thousand six hundred seventy-four'),\n(10329, 73095, 'seventy-three thousand ninety-five'),\n(10330, 26810, 'twenty-six thousand eight hundred ten'),\n(10331, 40933, 'forty thousand nine hundred thirty-three'),\n(10332, 28879, 'twenty-eight thousand eight hundred seventy-nine'),\n(10333, 2228, 'two thousand two hundred twenty-eight'),\n(10334, 12687, 'twelve thousand six hundred eighty-seven'),\n(10335, 21435, 'twenty-one thousand four hundred thirty-five'),\n(10336, 11286, 'eleven thousand two hundred eighty-six'),\n(10337, 41422, 'forty-one thousand four hundred twenty-two'),\n(10338, 65350, 'sixty-five thousand three hundred fifty'),\n(10339, 20648, 'twenty thousand six hundred forty-eight'),\n(10340, 83924, 'eighty-three thousand nine hundred twenty-four'),\n(10341, 1398, 'one thousand three hundred ninety-eight'),\n(10342, 19390, 'nineteen thousand three hundred ninety'),\n(10343, 10477, 'ten thousand four hundred seventy-seven'),\n(10344, 2545, 'two thousand five hundred forty-five'),\n(10345, 55331, 'fifty-five thousand three hundred thirty-one'),\n(10346, 25421, 'twenty-five thousand four hundred twenty-one'),\n(10347, 9548, 'nine thousand five hundred forty-eight'),\n(10348, 13150, 'thirteen thousand one hundred fifty'),\n(10349, 68366, 'sixty-eight thousand three hundred sixty-six'),\n(10350, 40111, 'forty thousand one hundred eleven'),\n(10351, 2468, 'two thousand four hundred sixty-eight'),\n(10352, 75127, 'seventy-five thousand one hundred twenty-seven'),\n(10353, 72225, 'seventy-two thousand two hundred twenty-five'),\n(10354, 67024, 'sixty-seven thousand twenty-four'),\n(10355, 90483, 'ninety thousand four hundred eighty-three'),\n(10356, 36430, 'thirty-six thousand four hundred thirty'),\n(10357, 48789, 'forty-eight thousand seven hundred eighty-nine'),\n(10358, 66398, 'sixty-six thousand three hundred ninety-eight'),\n(10359, 42686, 'forty-two thousand six hundred eighty-six'),\n(10360, 57024, 'fifty-seven thousand twenty-four'),\n(10361, 99842, 'ninety-nine thousand eight hundred forty-two'),\n(10362, 48014, 'forty-eight thousand fourteen'),\n(10363, 44062, 'forty-four thousand sixty-two'),\n(10364, 33789, 'thirty-three thousand seven hundred eighty-nine'),\n(10365, 40954, 'forty thousand nine hundred fifty-four'),\n(10366, 67608, 'sixty-seven thousand six hundred eight'),\n(10367, 70049, 'seventy thousand forty-nine'),\n(10368, 27817, 'twenty-seven thousand eight hundred seventeen'),\n(10369, 1078, 'one thousand seventy-eight'),\n(10370, 8400, 'eight thousand four hundred'),\n(10371, 76108, 'seventy-six thousand one hundred eight'),\n(10372, 72883, 'seventy-two thousand eight hundred eighty-three'),\n(10373, 38984, 'thirty-eight thousand nine hundred eighty-four'),\n(10374, 72397, 'seventy-two thousand three hundred ninety-seven'),\n(10375, 23620, 'twenty-three thousand six hundred twenty'),\n(10376, 22452, 'twenty-two thousand four hundred fifty-two'),\n(10377, 77334, 'seventy-seven thousand three hundred thirty-four'),\n(10378, 61498, 'sixty-one thousand four hundred ninety-eight'),\n(10379, 95522, 'ninety-five thousand five hundred twenty-two'),\n(10380, 95614, 'ninety-five thousand six hundred fourteen'),\n(10381, 16085, 'sixteen thousand eighty-five'),\n(10382, 93566, 'ninety-three thousand five hundred sixty-six'),\n(10383, 75815, 'seventy-five thousand eight hundred fifteen'),\n(10384, 34576, 'thirty-four thousand five hundred seventy-six'),\n(10385, 36145, 'thirty-six thousand one hundred forty-five'),\n(10386, 18074, 'eighteen thousand seventy-four'),\n(10387, 84877, 'eighty-four thousand eight hundred seventy-seven'),\n(10388, 25586, 'twenty-five thousand five hundred eighty-six'),\n(10389, 78809, 'seventy-eight thousand eight hundred nine'),\n(10390, 8662, 'eight thousand six hundred sixty-two'),\n(10391, 29182, 'twenty-nine thousand one hundred eighty-two'),\n(10392, 88864, 'eighty-eight thousand eight hundred sixty-four'),\n(10393, 14679, 'fourteen thousand six hundred seventy-nine'),\n(10394, 91224, 'ninety-one thousand two hundred twenty-four'),\n(10395, 18697, 'eighteen thousand six hundred ninety-seven'),\n(10396, 1975, 'one thousand nine hundred seventy-five'),\n(10397, 35566, 'thirty-five thousand five hundred sixty-six'),\n(10398, 90649, 'ninety thousand six hundred forty-nine'),\n(10399, 41587, 'forty-one thousand five hundred eighty-seven'),\n(10400, 92369, 'ninety-two thousand three hundred sixty-nine'),\n(10401, 59313, 'fifty-nine thousand three hundred thirteen'),\n(10402, 92753, 'ninety-two thousand seven hundred fifty-three'),\n(10403, 67006, 'sixty-seven thousand six'),\n(10404, 90298, 'ninety thousand two hundred ninety-eight'),\n(10405, 23566, 'twenty-three thousand five hundred sixty-six'),\n(10406, 48896, 'forty-eight thousand eight hundred ninety-six'),\n(10407, 3496, 'three thousand four hundred ninety-six'),\n(10408, 15665, 'fifteen thousand six hundred sixty-five'),\n(10409, 77591, 'seventy-seven thousand five hundred ninety-one'),\n(10410, 41215, 'forty-one thousand two hundred fifteen'),\n(10411, 75719, 'seventy-five thousand seven hundred nineteen'),\n(10412, 56052, 'fifty-six thousand fifty-two'),\n(10413, 63159, 'sixty-three thousand one hundred fifty-nine'),\n(10414, 37775, 'thirty-seven thousand seven hundred seventy-five'),\n(10415, 80290, 'eighty thousand two hundred ninety'),\n(10416, 71632, 'seventy-one thousand six hundred thirty-two'),\n(10417, 55940, 'fifty-five thousand nine hundred forty'),\n(10418, 17948, 'seventeen thousand nine hundred forty-eight'),\n(10419, 61118, 'sixty-one thousand one hundred eighteen'),\n(10420, 73096, 'seventy-three thousand ninety-six'),\n(10421, 84122, 'eighty-four thousand one hundred twenty-two'),\n(10422, 30211, 'thirty thousand two hundred eleven'),\n(10423, 12525, 'twelve thousand five hundred twenty-five'),\n(10424, 31874, 'thirty-one thousand eight hundred seventy-four'),\n(10425, 40188, 'forty thousand one hundred eighty-eight'),\n(10426, 20263, 'twenty thousand two hundred sixty-three'),\n(10427, 87825, 'eighty-seven thousand eight hundred twenty-five'),\n(10428, 14178, 'fourteen thousand one hundred seventy-eight'),\n(10429, 7006, 'seven thousand six'),\n(10430, 83573, 'eighty-three thousand five hundred seventy-three'),\n(10431, 98305, 'ninety-eight thousand three hundred five'),\n(10432, 47815, 'forty-seven thousand eight hundred fifteen'),\n(10433, 88362, 'eighty-eight thousand three hundred sixty-two'),\n(10434, 65333, 'sixty-five thousand three hundred thirty-three'),\n(10435, 74064, 'seventy-four thousand sixty-four'),\n(10436, 48996, 'forty-eight thousand nine hundred ninety-six'),\n(10437, 10622, 'ten thousand six hundred twenty-two'),\n(10438, 37478, 'thirty-seven thousand four hundred seventy-eight'),\n(10439, 73908, 'seventy-three thousand nine hundred eight'),\n(10440, 51870, 'fifty-one thousand eight hundred seventy'),\n(10441, 53408, 'fifty-three thousand four hundred eight'),\n(10442, 71735, 'seventy-one thousand seven hundred thirty-five'),\n(10443, 10872, 'ten thousand eight hundred seventy-two'),\n(10444, 21056, 'twenty-one thousand fifty-six'),\n(10445, 45370, 'forty-five thousand three hundred seventy'),\n(10446, 33759, 'thirty-three thousand seven hundred fifty-nine'),\n(10447, 79263, 'seventy-nine thousand two hundred sixty-three'),\n(10448, 28087, 'twenty-eight thousand eighty-seven'),\n(10449, 70700, 'seventy thousand seven hundred'),\n(10450, 80511, 'eighty thousand five hundred eleven'),\n(10451, 85319, 'eighty-five thousand three hundred nineteen'),\n(10452, 92756, 'ninety-two thousand seven hundred fifty-six'),\n(10453, 85247, 'eighty-five thousand two hundred forty-seven'),\n(10454, 16858, 'sixteen thousand eight hundred fifty-eight'),\n(10455, 10678, 'ten thousand six hundred seventy-eight'),\n(10456, 77277, 'seventy-seven thousand two hundred seventy-seven'),\n(10457, 6750, 'six thousand seven hundred fifty'),\n(10458, 48205, 'forty-eight thousand two hundred five'),\n(10459, 96825, 'ninety-six thousand eight hundred twenty-five'),\n(10460, 32918, 'thirty-two thousand nine hundred eighteen'),\n(10461, 58060, 'fifty-eight thousand sixty'),\n(10462, 25279, 'twenty-five thousand two hundred seventy-nine'),\n(10463, 88729, 'eighty-eight thousand seven hundred twenty-nine'),\n(10464, 70945, 'seventy thousand nine hundred forty-five'),\n(10465, 6980, 'six thousand nine hundred eighty'),\n(10466, 23519, 'twenty-three thousand five hundred nineteen'),\n(10467, 65339, 'sixty-five thousand three hundred thirty-nine'),\n(10468, 81502, 'eighty-one thousand five hundred two'),\n(10469, 3684, 'three thousand six hundred eighty-four'),\n(10470, 57249, 'fifty-seven thousand two hundred forty-nine'),\n(10471, 27618, 'twenty-seven thousand six hundred eighteen'),\n(10472, 43156, 'forty-three thousand one hundred fifty-six'),\n(10473, 42109, 'forty-two thousand one hundred nine'),\n(10474, 96017, 'ninety-six thousand seventeen'),\n(10475, 22000, 'twenty-two thousand'),\n(10476, 26633, 'twenty-six thousand six hundred thirty-three'),\n(10477, 47049, 'forty-seven thousand forty-nine'),\n(10478, 78305, 'seventy-eight thousand three hundred five'),\n(10479, 33063, 'thirty-three thousand sixty-three'),\n(10480, 79879, 'seventy-nine thousand eight hundred seventy-nine'),\n(10481, 20387, 'twenty thousand three hundred eighty-seven'),\n(10482, 21999, 'twenty-one thousand nine hundred ninety-nine'),\n(10483, 74860, 'seventy-four thousand eight hundred sixty'),\n(10484, 45815, 'forty-five thousand eight hundred fifteen'),\n(10485, 93116, 'ninety-three thousand one hundred sixteen'),\n(10486, 8024, 'eight thousand twenty-four'),\n(10487, 18762, 'eighteen thousand seven hundred sixty-two'),\n(10488, 57358, 'fifty-seven thousand three hundred fifty-eight'),\n(10489, 82633, 'eighty-two thousand six hundred thirty-three'),\n(10490, 13679, 'thirteen thousand six hundred seventy-nine'),\n(10491, 91321, 'ninety-one thousand three hundred twenty-one'),\n(10492, 89799, 'eighty-nine thousand seven hundred ninety-nine'),\n(10493, 39322, 'thirty-nine thousand three hundred twenty-two'),\n(10494, 2976, 'two thousand nine hundred seventy-six'),\n(10495, 62766, 'sixty-two thousand seven hundred sixty-six'),\n(10496, 18157, 'eighteen thousand one hundred fifty-seven'),\n(10497, 76805, 'seventy-six thousand eight hundred five'),\n(10498, 78640, 'seventy-eight thousand six hundred forty'),\n(10499, 25320, 'twenty-five thousand three hundred twenty'),\n(10500, 62990, 'sixty-two thousand nine hundred ninety'),\n(10501, 68394, 'sixty-eight thousand three hundred ninety-four'),\n(10502, 46396, 'forty-six thousand three hundred ninety-six'),\n(10503, 10416, 'ten thousand four hundred sixteen'),\n(10504, 26590, 'twenty-six thousand five hundred ninety'),\n(10505, 10628, 'ten thousand six hundred twenty-eight'),\n(10506, 26998, 'twenty-six thousand nine hundred ninety-eight'),\n(10507, 84962, 'eighty-four thousand nine hundred sixty-two'),\n(10508, 71326, 'seventy-one thousand three hundred twenty-six'),\n(10509, 23527, 'twenty-three thousand five hundred twenty-seven'),\n(10510, 34961, 'thirty-four thousand nine hundred sixty-one'),\n(10511, 22176, 'twenty-two thousand one hundred seventy-six'),\n(10512, 28897, 'twenty-eight thousand eight hundred ninety-seven'),\n(10513, 92324, 'ninety-two thousand three hundred twenty-four'),\n(10514, 34571, 'thirty-four thousand five hundred seventy-one'),\n(10515, 39630, 'thirty-nine thousand six hundred thirty'),\n(10516, 32629, 'thirty-two thousand six hundred twenty-nine'),\n(10517, 22073, 'twenty-two thousand seventy-three'),\n(10518, 61773, 'sixty-one thousand seven hundred seventy-three'),\n(10519, 92914, 'ninety-two thousand nine hundred fourteen'),\n(10520, 36986, 'thirty-six thousand nine hundred eighty-six'),\n(10521, 8014, 'eight thousand fourteen'),\n(10522, 620, 'six hundred twenty'),\n(10523, 62244, 'sixty-two thousand two hundred forty-four'),\n(10524, 26554, 'twenty-six thousand five hundred fifty-four'),\n(10525, 18554, 'eighteen thousand five hundred fifty-four'),\n(10526, 57124, 'fifty-seven thousand one hundred twenty-four'),\n(10527, 60698, 'sixty thousand six hundred ninety-eight'),\n(10528, 94766, 'ninety-four thousand seven hundred sixty-six'),\n(10529, 77812, 'seventy-seven thousand eight hundred twelve'),\n(10530, 93719, 'ninety-three thousand seven hundred nineteen'),\n(10531, 47365, 'forty-seven thousand three hundred sixty-five'),\n(10532, 87389, 'eighty-seven thousand three hundred eighty-nine'),\n(10533, 64982, 'sixty-four thousand nine hundred eighty-two'),\n(10534, 68138, 'sixty-eight thousand one hundred thirty-eight'),\n(10535, 19826, 'nineteen thousand eight hundred twenty-six'),\n(10536, 48277, 'forty-eight thousand two hundred seventy-seven'),\n(10537, 60402, 'sixty thousand four hundred two'),\n(10538, 95435, 'ninety-five thousand four hundred thirty-five'),\n(10539, 85718, 'eighty-five thousand seven hundred eighteen'),\n(10540, 16919, 'sixteen thousand nine hundred nineteen'),\n(10541, 79484, 'seventy-nine thousand four hundred eighty-four'),\n(10542, 90653, 'ninety thousand six hundred fifty-three'),\n(10543, 55175, 'fifty-five thousand one hundred seventy-five'),\n(10544, 56264, 'fifty-six thousand two hundred sixty-four'),\n(10545, 15385, 'fifteen thousand three hundred eighty-five'),\n(10546, 96283, 'ninety-six thousand two hundred eighty-three'),\n(10547, 14326, 'fourteen thousand three hundred twenty-six'),\n(10548, 21968, 'twenty-one thousand nine hundred sixty-eight'),\n(10549, 76800, 'seventy-six thousand eight hundred'),\n(10550, 63662, 'sixty-three thousand six hundred sixty-two'),\n(10551, 381, 'three hundred eighty-one'),\n(10552, 83093, 'eighty-three thousand ninety-three'),\n(10553, 33168, 'thirty-three thousand one hundred sixty-eight'),\n(10554, 47298, 'forty-seven thousand two hundred ninety-eight'),\n(10555, 77502, 'seventy-seven thousand five hundred two'),\n(10556, 93598, 'ninety-three thousand five hundred ninety-eight'),\n(10557, 93288, 'ninety-three thousand two hundred eighty-eight'),\n(10558, 29031, 'twenty-nine thousand thirty-one'),\n(10559, 72558, 'seventy-two thousand five hundred fifty-eight'),\n(10560, 64221, 'sixty-four thousand two hundred twenty-one'),\n(10561, 61336, 'sixty-one thousand three hundred thirty-six'),\n(10562, 47425, 'forty-seven thousand four hundred twenty-five'),\n(10563, 66118, 'sixty-six thousand one hundred eighteen'),\n(10564, 94202, 'ninety-four thousand two hundred two'),\n(10565, 64386, 'sixty-four thousand three hundred eighty-six'),\n(10566, 23446, 'twenty-three thousand four hundred forty-six'),\n(10567, 70765, 'seventy thousand seven hundred sixty-five'),\n(10568, 99956, 'ninety-nine thousand nine hundred fifty-six'),\n(10569, 84965, 'eighty-four thousand nine hundred sixty-five'),\n(10570, 34288, 'thirty-four thousand two hundred eighty-eight'),\n(10571, 65799, 'sixty-five thousand seven hundred ninety-nine'),\n(10572, 53377, 'fifty-three thousand three hundred seventy-seven'),\n(10573, 75598, 'seventy-five thousand five hundred ninety-eight'),\n(10574, 69838, 'sixty-nine thousand eight hundred thirty-eight'),\n(10575, 7407, 'seven thousand four hundred seven'),\n(10576, 89051, 'eighty-nine thousand fifty-one'),\n(10577, 79424, 'seventy-nine thousand four hundred twenty-four'),\n(10578, 23182, 'twenty-three thousand one hundred eighty-two'),\n(10579, 2439, 'two thousand four hundred thirty-nine'),\n(10580, 82595, 'eighty-two thousand five hundred ninety-five'),\n(10581, 84904, 'eighty-four thousand nine hundred four'),\n(10582, 17317, 'seventeen thousand three hundred seventeen'),\n(10583, 7454, 'seven thousand four hundred fifty-four'),\n(10584, 26856, 'twenty-six thousand eight hundred fifty-six'),\n(10585, 39450, 'thirty-nine thousand four hundred fifty'),\n(10586, 46229, 'forty-six thousand two hundred twenty-nine'),\n(10587, 18416, 'eighteen thousand four hundred sixteen'),\n(10588, 27678, 'twenty-seven thousand six hundred seventy-eight'),\n(10589, 62272, 'sixty-two thousand two hundred seventy-two'),\n(10590, 28858, 'twenty-eight thousand eight hundred fifty-eight'),\n(10591, 29580, 'twenty-nine thousand five hundred eighty'),\n(10592, 223, 'two hundred twenty-three'),\n(10593, 32756, 'thirty-two thousand seven hundred fifty-six'),\n(10594, 88077, 'eighty-eight thousand seventy-seven'),\n(10595, 1615, 'one thousand six hundred fifteen'),\n(10596, 9083, 'nine thousand eighty-three'),\n(10597, 76769, 'seventy-six thousand seven hundred sixty-nine'),\n(10598, 2127, 'two thousand one hundred twenty-seven'),\n(10599, 7844, 'seven thousand eight hundred forty-four'),\n(10600, 25991, 'twenty-five thousand nine hundred ninety-one'),\n(10601, 92078, 'ninety-two thousand seventy-eight'),\n(10602, 77023, 'seventy-seven thousand twenty-three'),\n(10603, 65345, 'sixty-five thousand three hundred forty-five'),\n(10604, 29761, 'twenty-nine thousand seven hundred sixty-one'),\n(10605, 22301, 'twenty-two thousand three hundred one'),\n(10606, 42009, 'forty-two thousand nine'),\n(10607, 8044, 'eight thousand forty-four'),\n(10608, 92535, 'ninety-two thousand five hundred thirty-five'),\n(10609, 18115, 'eighteen thousand one hundred fifteen'),\n(10610, 69586, 'sixty-nine thousand five hundred eighty-six'),\n(10611, 21970, 'twenty-one thousand nine hundred seventy'),\n(10612, 40028, 'forty thousand twenty-eight'),\n(10613, 95062, 'ninety-five thousand sixty-two'),\n(10614, 18665, 'eighteen thousand six hundred sixty-five'),\n(10615, 41276, 'forty-one thousand two hundred seventy-six'),\n(10616, 58155, 'fifty-eight thousand one hundred fifty-five'),\n(10617, 26099, 'twenty-six thousand ninety-nine'),\n(10618, 4490, 'four thousand four hundred ninety'),\n(10619, 48273, 'forty-eight thousand two hundred seventy-three'),\n(10620, 62972, 'sixty-two thousand nine hundred seventy-two'),\n(10621, 28466, 'twenty-eight thousand four hundred sixty-six'),\n(10622, 40135, 'forty thousand one hundred thirty-five'),\n(10623, 44157, 'forty-four thousand one hundred fifty-seven'),\n(10624, 34688, 'thirty-four thousand six hundred eighty-eight'),\n(10625, 7993, 'seven thousand nine hundred ninety-three'),\n(10626, 56261, 'fifty-six thousand two hundred sixty-one'),\n(10627, 37344, 'thirty-seven thousand three hundred forty-four'),\n(10628, 73458, 'seventy-three thousand four hundred fifty-eight'),\n(10629, 73568, 'seventy-three thousand five hundred sixty-eight'),\n(10630, 41156, 'forty-one thousand one hundred fifty-six'),\n(10631, 88168, 'eighty-eight thousand one hundred sixty-eight'),\n(10632, 85962, 'eighty-five thousand nine hundred sixty-two'),\n(10633, 71189, 'seventy-one thousand one hundred eighty-nine'),\n(10634, 90972, 'ninety thousand nine hundred seventy-two'),\n(10635, 7654, 'seven thousand six hundred fifty-four'),\n(10636, 18384, 'eighteen thousand three hundred eighty-four'),\n(10637, 66261, 'sixty-six thousand two hundred sixty-one'),\n(10638, 38844, 'thirty-eight thousand eight hundred forty-four'),\n(10639, 28843, 'twenty-eight thousand eight hundred forty-three'),\n(10640, 66852, 'sixty-six thousand eight hundred fifty-two'),\n(10641, 2329, 'two thousand three hundred twenty-nine'),\n(10642, 40783, 'forty thousand seven hundred eighty-three'),\n(10643, 27332, 'twenty-seven thousand three hundred thirty-two'),\n(10644, 17419, 'seventeen thousand four hundred nineteen'),\n(10645, 79638, 'seventy-nine thousand six hundred thirty-eight'),\n(10646, 59611, 'fifty-nine thousand six hundred eleven'),\n(10647, 16088, 'sixteen thousand eighty-eight'),\n(10648, 17910, 'seventeen thousand nine hundred ten'),\n(10649, 33871, 'thirty-three thousand eight hundred seventy-one'),\n(10650, 32269, 'thirty-two thousand two hundred sixty-nine'),\n(10651, 86992, 'eighty-six thousand nine hundred ninety-two'),\n(10652, 84530, 'eighty-four thousand five hundred thirty'),\n(10653, 35047, 'thirty-five thousand forty-seven'),\n(10654, 85542, 'eighty-five thousand five hundred forty-two'),\n(10655, 3445, 'three thousand four hundred forty-five'),\n(10656, 68836, 'sixty-eight thousand eight hundred thirty-six'),\n(10657, 11956, 'eleven thousand nine hundred fifty-six'),\n(10658, 95292, 'ninety-five thousand two hundred ninety-two'),\n(10659, 91386, 'ninety-one thousand three hundred eighty-six'),\n(10660, 71837, 'seventy-one thousand eight hundred thirty-seven'),\n(10661, 66915, 'sixty-six thousand nine hundred fifteen'),\n(10662, 70161, 'seventy thousand one hundred sixty-one'),\n(10663, 99641, 'ninety-nine thousand six hundred forty-one'),\n(10664, 96026, 'ninety-six thousand twenty-six'),\n(10665, 88334, 'eighty-eight thousand three hundred thirty-four'),\n(10666, 47846, 'forty-seven thousand eight hundred forty-six'),\n(10667, 17913, 'seventeen thousand nine hundred thirteen'),\n(10668, 46243, 'forty-six thousand two hundred forty-three'),\n(10669, 30678, 'thirty thousand six hundred seventy-eight'),\n(10670, 69251, 'sixty-nine thousand two hundred fifty-one'),\n(10671, 25890, 'twenty-five thousand eight hundred ninety'),\n(10672, 57601, 'fifty-seven thousand six hundred one'),\n(10673, 29708, 'twenty-nine thousand seven hundred eight'),\n(10674, 89733, 'eighty-nine thousand seven hundred thirty-three'),\n(10675, 69295, 'sixty-nine thousand two hundred ninety-five'),\n(10676, 48895, 'forty-eight thousand eight hundred ninety-five'),\n(10677, 61664, 'sixty-one thousand six hundred sixty-four'),\n(10678, 55014, 'fifty-five thousand fourteen'),\n(10679, 99738, 'ninety-nine thousand seven hundred thirty-eight'),\n(10680, 29179, 'twenty-nine thousand one hundred seventy-nine'),\n(10681, 9607, 'nine thousand six hundred seven'),\n(10682, 80451, 'eighty thousand four hundred fifty-one'),\n(10683, 44822, 'forty-four thousand eight hundred twenty-two'),\n(10684, 84018, 'eighty-four thousand eighteen'),\n(10685, 16729, 'sixteen thousand seven hundred twenty-nine'),\n(10686, 91979, 'ninety-one thousand nine hundred seventy-nine'),\n(10687, 60625, 'sixty thousand six hundred twenty-five'),\n(10688, 99882, 'ninety-nine thousand eight hundred eighty-two'),\n(10689, 24529, 'twenty-four thousand five hundred twenty-nine'),\n(10690, 84733, 'eighty-four thousand seven hundred thirty-three'),\n(10691, 45772, 'forty-five thousand seven hundred seventy-two'),\n(10692, 8, 'eight'),\n(10693, 98736, 'ninety-eight thousand seven hundred thirty-six'),\n(10694, 93590, 'ninety-three thousand five hundred ninety'),\n(10695, 49561, 'forty-nine thousand five hundred sixty-one'),\n(10696, 88854, 'eighty-eight thousand eight hundred fifty-four'),\n(10697, 22625, 'twenty-two thousand six hundred twenty-five'),\n(10698, 64550, 'sixty-four thousand five hundred fifty'),\n(10699, 67, 'sixty-seven'),\n(10700, 59263, 'fifty-nine thousand two hundred sixty-three'),\n(10701, 72292, 'seventy-two thousand two hundred ninety-two'),\n(10702, 72744, 'seventy-two thousand seven hundred forty-four'),\n(10703, 90621, 'ninety thousand six hundred twenty-one'),\n(10704, 28998, 'twenty-eight thousand nine hundred ninety-eight'),\n(10705, 52921, 'fifty-two thousand nine hundred twenty-one'),\n(10706, 23829, 'twenty-three thousand eight hundred twenty-nine'),\n(10707, 10467, 'ten thousand four hundred sixty-seven'),\n(10708, 10845, 'ten thousand eight hundred forty-five'),\n(10709, 75247, 'seventy-five thousand two hundred forty-seven'),\n(10710, 14709, 'fourteen thousand seven hundred nine'),\n(10711, 33817, 'thirty-three thousand eight hundred seventeen'),\n(10712, 43932, 'forty-three thousand nine hundred thirty-two'),\n(10713, 25641, 'twenty-five thousand six hundred forty-one'),\n(10714, 60279, 'sixty thousand two hundred seventy-nine'),\n(10715, 58241, 'fifty-eight thousand two hundred forty-one'),\n(10716, 91520, 'ninety-one thousand five hundred twenty'),\n(10717, 10554, 'ten thousand five hundred fifty-four'),\n(10718, 72043, 'seventy-two thousand forty-three'),\n(10719, 14954, 'fourteen thousand nine hundred fifty-four'),\n(10720, 3162, 'three thousand one hundred sixty-two'),\n(10721, 79965, 'seventy-nine thousand nine hundred sixty-five'),\n(10722, 93779, 'ninety-three thousand seven hundred seventy-nine'),\n(10723, 5425, 'five thousand four hundred twenty-five'),\n(10724, 94473, 'ninety-four thousand four hundred seventy-three'),\n(10725, 55444, 'fifty-five thousand four hundred forty-four'),\n(10726, 65769, 'sixty-five thousand seven hundred sixty-nine'),\n(10727, 8657, 'eight thousand six hundred fifty-seven'),\n(10728, 74068, 'seventy-four thousand sixty-eight'),\n(10729, 11370, 'eleven thousand three hundred seventy'),\n(10730, 48920, 'forty-eight thousand nine hundred twenty'),\n(10731, 36068, 'thirty-six thousand sixty-eight'),\n(10732, 5915, 'five thousand nine hundred fifteen'),\n(10733, 3206, 'three thousand two hundred six'),\n(10734, 43790, 'forty-three thousand seven hundred ninety'),\n(10735, 30421, 'thirty thousand four hundred twenty-one'),\n(10736, 37784, 'thirty-seven thousand seven hundred eighty-four'),\n(10737, 98331, 'ninety-eight thousand three hundred thirty-one'),\n(10738, 310, 'three hundred ten'),\n(10739, 13404, 'thirteen thousand four hundred four'),\n(10740, 11981, 'eleven thousand nine hundred eighty-one'),\n(10741, 59970, 'fifty-nine thousand nine hundred seventy'),\n(10742, 49494, 'forty-nine thousand four hundred ninety-four'),\n(10743, 6994, 'six thousand nine hundred ninety-four'),\n(10744, 7963, 'seven thousand nine hundred sixty-three'),\n(10745, 72666, 'seventy-two thousand six hundred sixty-six'),\n(10746, 64219, 'sixty-four thousand two hundred nineteen'),\n(10747, 66853, 'sixty-six thousand eight hundred fifty-three'),\n(10748, 40465, 'forty thousand four hundred sixty-five'),\n(10749, 16456, 'sixteen thousand four hundred fifty-six'),\n(10750, 33101, 'thirty-three thousand one hundred one'),\n(10751, 493, 'four hundred ninety-three'),\n(10752, 93733, 'ninety-three thousand seven hundred thirty-three'),\n(10753, 14553, 'fourteen thousand five hundred fifty-three'),\n(10754, 67620, 'sixty-seven thousand six hundred twenty'),\n(10755, 95814, 'ninety-five thousand eight hundred fourteen'),\n(10756, 38707, 'thirty-eight thousand seven hundred seven'),\n(10757, 98011, 'ninety-eight thousand eleven'),\n(10758, 3228, 'three thousand two hundred twenty-eight'),\n(10759, 42719, 'forty-two thousand seven hundred nineteen'),\n(10760, 66266, 'sixty-six thousand two hundred sixty-six'),\n(10761, 20277, 'twenty thousand two hundred seventy-seven'),\n(10762, 95086, 'ninety-five thousand eighty-six'),\n(10763, 77175, 'seventy-seven thousand one hundred seventy-five'),\n(10764, 73903, 'seventy-three thousand nine hundred three'),\n(10765, 54567, 'fifty-four thousand five hundred sixty-seven'),\n(10766, 2049, 'two thousand forty-nine'),\n(10767, 10613, 'ten thousand six hundred thirteen'),\n(10768, 83046, 'eighty-three thousand forty-six'),\n(10769, 88476, 'eighty-eight thousand four hundred seventy-six'),\n(10770, 5472, 'five thousand four hundred seventy-two'),\n(10771, 64693, 'sixty-four thousand six hundred ninety-three'),\n(10772, 91556, 'ninety-one thousand five hundred fifty-six'),\n(10773, 89342, 'eighty-nine thousand three hundred forty-two'),\n(10774, 40578, 'forty thousand five hundred seventy-eight'),\n(10775, 33641, 'thirty-three thousand six hundred forty-one'),\n(10776, 89678, 'eighty-nine thousand six hundred seventy-eight'),\n(10777, 29041, 'twenty-nine thousand forty-one'),\n(10778, 84569, 'eighty-four thousand five hundred sixty-nine'),\n(10779, 39293, 'thirty-nine thousand two hundred ninety-three'),\n(10780, 69547, 'sixty-nine thousand five hundred forty-seven'),\n(10781, 68847, 'sixty-eight thousand eight hundred forty-seven'),\n(10782, 42339, 'forty-two thousand three hundred thirty-nine'),\n(10783, 79802, 'seventy-nine thousand eight hundred two'),\n(10784, 16404, 'sixteen thousand four hundred four'),\n(10785, 75227, 'seventy-five thousand two hundred twenty-seven'),\n(10786, 55243, 'fifty-five thousand two hundred forty-three'),\n(10787, 33653, 'thirty-three thousand six hundred fifty-three'),\n(10788, 22919, 'twenty-two thousand nine hundred nineteen'),\n(10789, 32032, 'thirty-two thousand thirty-two'),\n(10790, 33047, 'thirty-three thousand forty-seven'),\n(10791, 9311, 'nine thousand three hundred eleven'),\n(10792, 97304, 'ninety-seven thousand three hundred four'),\n(10793, 81534, 'eighty-one thousand five hundred thirty-four'),\n(10794, 71401, 'seventy-one thousand four hundred one'),\n(10795, 76388, 'seventy-six thousand three hundred eighty-eight'),\n(10796, 53599, 'fifty-three thousand five hundred ninety-nine'),\n(10797, 80347, 'eighty thousand three hundred forty-seven'),\n(10798, 55653, 'fifty-five thousand six hundred fifty-three'),\n(10799, 6553, 'six thousand five hundred fifty-three'),\n(10800, 28492, 'twenty-eight thousand four hundred ninety-two'),\n(10801, 12151, 'twelve thousand one hundred fifty-one'),\n(10802, 21140, 'twenty-one thousand one hundred forty'),\n(10803, 49912, 'forty-nine thousand nine hundred twelve'),\n(10804, 70308, 'seventy thousand three hundred eight'),\n(10805, 26252, 'twenty-six thousand two hundred fifty-two'),\n(10806, 5600, 'five thousand six hundred'),\n(10807, 92066, 'ninety-two thousand sixty-six'),\n(10808, 47028, 'forty-seven thousand twenty-eight'),\n(10809, 94053, 'ninety-four thousand fifty-three'),\n(10810, 67529, 'sixty-seven thousand five hundred twenty-nine'),\n(10811, 6408, 'six thousand four hundred eight'),\n(10812, 10116, 'ten thousand one hundred sixteen'),\n(10813, 53925, 'fifty-three thousand nine hundred twenty-five'),\n(10814, 69930, 'sixty-nine thousand nine hundred thirty'),\n(10815, 72684, 'seventy-two thousand six hundred eighty-four'),\n(10816, 42314, 'forty-two thousand three hundred fourteen'),\n(10817, 30607, 'thirty thousand six hundred seven'),\n(10818, 67474, 'sixty-seven thousand four hundred seventy-four'),\n(10819, 94213, 'ninety-four thousand two hundred thirteen'),\n(10820, 64568, 'sixty-four thousand five hundred sixty-eight'),\n(10821, 18940, 'eighteen thousand nine hundred forty'),\n(10822, 68450, 'sixty-eight thousand four hundred fifty'),\n(10823, 12469, 'twelve thousand four hundred sixty-nine'),\n(10824, 80658, 'eighty thousand six hundred fifty-eight'),\n(10825, 35318, 'thirty-five thousand three hundred eighteen'),\n(10826, 53041, 'fifty-three thousand forty-one'),\n(10827, 86618, 'eighty-six thousand six hundred eighteen'),\n(10828, 29611, 'twenty-nine thousand six hundred eleven'),\n(10829, 90236, 'ninety thousand two hundred thirty-six'),\n(10830, 12596, 'twelve thousand five hundred ninety-six'),\n(10831, 6870, 'six thousand eight hundred seventy'),\n(10832, 82402, 'eighty-two thousand four hundred two'),\n(10833, 91415, 'ninety-one thousand four hundred fifteen'),\n(10834, 48761, 'forty-eight thousand seven hundred sixty-one'),\n(10835, 92362, 'ninety-two thousand three hundred sixty-two'),\n(10836, 2232, 'two thousand two hundred thirty-two'),\n(10837, 44704, 'forty-four thousand seven hundred four'),\n(10838, 57685, 'fifty-seven thousand six hundred eighty-five'),\n(10839, 65459, 'sixty-five thousand four hundred fifty-nine'),\n(10840, 4310, 'four thousand three hundred ten'),\n(10841, 24407, 'twenty-four thousand four hundred seven'),\n(10842, 16371, 'sixteen thousand three hundred seventy-one'),\n(10843, 90077, 'ninety thousand seventy-seven'),\n(10844, 84437, 'eighty-four thousand four hundred thirty-seven'),\n(10845, 12623, 'twelve thousand six hundred twenty-three'),\n(10846, 20706, 'twenty thousand seven hundred six'),\n(10847, 87851, 'eighty-seven thousand eight hundred fifty-one'),\n(10848, 46832, 'forty-six thousand eight hundred thirty-two'),\n(10849, 13313, 'thirteen thousand three hundred thirteen'),\n(10850, 27800, 'twenty-seven thousand eight hundred'),\n(10851, 89290, 'eighty-nine thousand two hundred ninety'),\n(10852, 36846, 'thirty-six thousand eight hundred forty-six'),\n(10853, 12370, 'twelve thousand three hundred seventy'),\n(10854, 46960, 'forty-six thousand nine hundred sixty'),\n(10855, 96617, 'ninety-six thousand six hundred seventeen'),\n(10856, 5765, 'five thousand seven hundred sixty-five'),\n(10857, 51413, 'fifty-one thousand four hundred thirteen'),\n(10858, 63089, 'sixty-three thousand eighty-nine'),\n(10859, 27286, 'twenty-seven thousand two hundred eighty-six'),\n(10860, 41034, 'forty-one thousand thirty-four'),\n(10861, 69970, 'sixty-nine thousand nine hundred seventy'),\n(10862, 17890, 'seventeen thousand eight hundred ninety'),\n(10863, 90405, 'ninety thousand four hundred five'),\n(10864, 38216, 'thirty-eight thousand two hundred sixteen'),\n(10865, 69559, 'sixty-nine thousand five hundred fifty-nine'),\n(10866, 16568, 'sixteen thousand five hundred sixty-eight'),\n(10867, 70392, 'seventy thousand three hundred ninety-two'),\n(10868, 77787, 'seventy-seven thousand seven hundred eighty-seven'),\n(10869, 76020, 'seventy-six thousand twenty'),\n(10870, 98387, 'ninety-eight thousand three hundred eighty-seven'),\n(10871, 85823, 'eighty-five thousand eight hundred twenty-three'),\n(10872, 89197, 'eighty-nine thousand one hundred ninety-seven'),\n(10873, 45427, 'forty-five thousand four hundred twenty-seven'),\n(10874, 87352, 'eighty-seven thousand three hundred fifty-two'),\n(10875, 71029, 'seventy-one thousand twenty-nine'),\n(10876, 72829, 'seventy-two thousand eight hundred twenty-nine'),\n(10877, 11497, 'eleven thousand four hundred ninety-seven'),\n(10878, 93275, 'ninety-three thousand two hundred seventy-five'),\n(10879, 57055, 'fifty-seven thousand fifty-five'),\n(10880, 24600, 'twenty-four thousand six hundred'),\n(10881, 83867, 'eighty-three thousand eight hundred sixty-seven'),\n(10882, 66656, 'sixty-six thousand six hundred fifty-six'),\n(10883, 90995, 'ninety thousand nine hundred ninety-five'),\n(10884, 71675, 'seventy-one thousand six hundred seventy-five'),\n(10885, 62782, 'sixty-two thousand seven hundred eighty-two'),\n(10886, 92267, 'ninety-two thousand two hundred sixty-seven'),\n(10887, 43924, 'forty-three thousand nine hundred twenty-four'),\n(10888, 95518, 'ninety-five thousand five hundred eighteen'),\n(10889, 43147, 'forty-three thousand one hundred forty-seven'),\n(10890, 49343, 'forty-nine thousand three hundred forty-three'),\n(10891, 38069, 'thirty-eight thousand sixty-nine'),\n(10892, 33796, 'thirty-three thousand seven hundred ninety-six'),\n(10893, 24255, 'twenty-four thousand two hundred fifty-five'),\n(10894, 22434, 'twenty-two thousand four hundred thirty-four'),\n(10895, 75506, 'seventy-five thousand five hundred six'),\n(10896, 72279, 'seventy-two thousand two hundred seventy-nine'),\n(10897, 93236, 'ninety-three thousand two hundred thirty-six'),\n(10898, 88144, 'eighty-eight thousand one hundred forty-four'),\n(10899, 65763, 'sixty-five thousand seven hundred sixty-three'),\n(10900, 70948, 'seventy thousand nine hundred forty-eight'),\n(10901, 1960, 'one thousand nine hundred sixty'),\n(10902, 83281, 'eighty-three thousand two hundred eighty-one'),\n(10903, 84650, 'eighty-four thousand six hundred fifty'),\n(10904, 16765, 'sixteen thousand seven hundred sixty-five'),\n(10905, 75963, 'seventy-five thousand nine hundred sixty-three'),\n(10906, 69832, 'sixty-nine thousand eight hundred thirty-two'),\n(10907, 44509, 'forty-four thousand five hundred nine'),\n(10908, 44148, 'forty-four thousand one hundred forty-eight'),\n(10909, 19685, 'nineteen thousand six hundred eighty-five'),\n(10910, 85157, 'eighty-five thousand one hundred fifty-seven'),\n(10911, 28159, 'twenty-eight thousand one hundred fifty-nine'),\n(10912, 28786, 'twenty-eight thousand seven hundred eighty-six'),\n(10913, 68380, 'sixty-eight thousand three hundred eighty'),\n(10914, 69751, 'sixty-nine thousand seven hundred fifty-one'),\n(10915, 24201, 'twenty-four thousand two hundred one'),\n(10916, 66909, 'sixty-six thousand nine hundred nine'),\n(10917, 97251, 'ninety-seven thousand two hundred fifty-one'),\n(10918, 31144, 'thirty-one thousand one hundred forty-four'),\n(10919, 87052, 'eighty-seven thousand fifty-two'),\n(10920, 22233, 'twenty-two thousand two hundred thirty-three'),\n(10921, 36134, 'thirty-six thousand one hundred thirty-four'),\n(10922, 81986, 'eighty-one thousand nine hundred eighty-six'),\n(10923, 29602, 'twenty-nine thousand six hundred two'),\n(10924, 31699, 'thirty-one thousand six hundred ninety-nine'),\n(10925, 40368, 'forty thousand three hundred sixty-eight'),\n(10926, 13196, 'thirteen thousand one hundred ninety-six'),\n(10927, 67233, 'sixty-seven thousand two hundred thirty-three'),\n(10928, 28292, 'twenty-eight thousand two hundred ninety-two'),\n(10929, 60938, 'sixty thousand nine hundred thirty-eight'),\n(10930, 22981, 'twenty-two thousand nine hundred eighty-one'),\n(10931, 55293, 'fifty-five thousand two hundred ninety-three'),\n(10932, 1442, 'one thousand four hundred forty-two'),\n(10933, 89451, 'eighty-nine thousand four hundred fifty-one'),\n(10934, 74352, 'seventy-four thousand three hundred fifty-two'),\n(10935, 53110, 'fifty-three thousand one hundred ten'),\n(10936, 72118, 'seventy-two thousand one hundred eighteen'),\n(10937, 71427, 'seventy-one thousand four hundred twenty-seven'),\n(10938, 73888, 'seventy-three thousand eight hundred eighty-eight'),\n(10939, 53151, 'fifty-three thousand one hundred fifty-one'),\n(10940, 16279, 'sixteen thousand two hundred seventy-nine'),\n(10941, 19747, 'nineteen thousand seven hundred forty-seven'),\n(10942, 69530, 'sixty-nine thousand five hundred thirty'),\n(10943, 82903, 'eighty-two thousand nine hundred three'),\n(10944, 10401, 'ten thousand four hundred one'),\n(10945, 28338, 'twenty-eight thousand three hundred thirty-eight'),\n(10946, 18533, 'eighteen thousand five hundred thirty-three'),\n(10947, 54540, 'fifty-four thousand five hundred forty'),\n(10948, 14713, 'fourteen thousand seven hundred thirteen'),\n(10949, 98920, 'ninety-eight thousand nine hundred twenty'),\n(10950, 37564, 'thirty-seven thousand five hundred sixty-four'),\n(10951, 64025, 'sixty-four thousand twenty-five'),\n(10952, 509, 'five hundred nine'),\n(10953, 11087, 'eleven thousand eighty-seven'),\n(10954, 72134, 'seventy-two thousand one hundred thirty-four'),\n(10955, 47045, 'forty-seven thousand forty-five'),\n(10956, 65681, 'sixty-five thousand six hundred eighty-one'),\n(10957, 79936, 'seventy-nine thousand nine hundred thirty-six'),\n(10958, 7810, 'seven thousand eight hundred ten'),\n(10959, 27203, 'twenty-seven thousand two hundred three'),\n(10960, 45275, 'forty-five thousand two hundred seventy-five'),\n(10961, 83078, 'eighty-three thousand seventy-eight'),\n(10962, 80874, 'eighty thousand eight hundred seventy-four'),\n(10963, 49629, 'forty-nine thousand six hundred twenty-nine'),\n(10964, 44591, 'forty-four thousand five hundred ninety-one'),\n(10965, 33517, 'thirty-three thousand five hundred seventeen'),\n(10966, 13108, 'thirteen thousand one hundred eight'),\n(10967, 78838, 'seventy-eight thousand eight hundred thirty-eight'),\n(10968, 55590, 'fifty-five thousand five hundred ninety'),\n(10969, 46472, 'forty-six thousand four hundred seventy-two'),\n(10970, 70047, 'seventy thousand forty-seven'),\n(10971, 10331, 'ten thousand three hundred thirty-one'),\n(10972, 19159, 'nineteen thousand one hundred fifty-nine'),\n(10973, 76159, 'seventy-six thousand one hundred fifty-nine'),\n(10974, 16310, 'sixteen thousand three hundred ten'),\n(10975, 12279, 'twelve thousand two hundred seventy-nine'),\n(10976, 28404, 'twenty-eight thousand four hundred four'),\n(10977, 17025, 'seventeen thousand twenty-five'),\n(10978, 30381, 'thirty thousand three hundred eighty-one'),\n(10979, 69400, 'sixty-nine thousand four hundred'),\n(10980, 73936, 'seventy-three thousand nine hundred thirty-six'),\n(10981, 33825, 'thirty-three thousand eight hundred twenty-five'),\n(10982, 60746, 'sixty thousand seven hundred forty-six'),\n(10983, 4917, 'four thousand nine hundred seventeen'),\n(10984, 77692, 'seventy-seven thousand six hundred ninety-two'),\n(10985, 39683, 'thirty-nine thousand six hundred eighty-three'),\n(10986, 92658, 'ninety-two thousand six hundred fifty-eight'),\n(10987, 66522, 'sixty-six thousand five hundred twenty-two'),\n(10988, 23990, 'twenty-three thousand nine hundred ninety'),\n(10989, 37734, 'thirty-seven thousand seven hundred thirty-four'),\n(10990, 82274, 'eighty-two thousand two hundred seventy-four'),\n(10991, 45421, 'forty-five thousand four hundred twenty-one'),\n(10992, 34156, 'thirty-four thousand one hundred fifty-six'),\n(10993, 3791, 'three thousand seven hundred ninety-one'),\n(10994, 26429, 'twenty-six thousand four hundred twenty-nine'),\n(10995, 84978, 'eighty-four thousand nine hundred seventy-eight'),\n(10996, 48180, 'forty-eight thousand one hundred eighty'),\n(10997, 71311, 'seventy-one thousand three hundred eleven'),\n(10998, 30852, 'thirty thousand eight hundred fifty-two'),\n(10999, 45959, 'forty-five thousand nine hundred fifty-nine'),\n(11000, 10512, 'ten thousand five hundred twelve'),\n(11001, 30183, 'thirty thousand one hundred eighty-three'),\n(11002, 73351, 'seventy-three thousand three hundred fifty-one'),\n(11003, 67270, 'sixty-seven thousand two hundred seventy'),\n(11004, 89632, 'eighty-nine thousand six hundred thirty-two'),\n(11005, 4057, 'four thousand fifty-seven'),\n(11006, 65163, 'sixty-five thousand one hundred sixty-three'),\n(11007, 39256, 'thirty-nine thousand two hundred fifty-six'),\n(11008, 86978, 'eighty-six thousand nine hundred seventy-eight'),\n(11009, 56962, 'fifty-six thousand nine hundred sixty-two'),\n(11010, 63263, 'sixty-three thousand two hundred sixty-three'),\n(11011, 18335, 'eighteen thousand three hundred thirty-five'),\n(11012, 18597, 'eighteen thousand five hundred ninety-seven'),\n(11013, 21035, 'twenty-one thousand thirty-five'),\n(11014, 23236, 'twenty-three thousand two hundred thirty-six'),\n(11015, 63952, 'sixty-three thousand nine hundred fifty-two'),\n(11016, 24442, 'twenty-four thousand four hundred forty-two'),\n(11017, 88347, 'eighty-eight thousand three hundred forty-seven'),\n(11018, 74322, 'seventy-four thousand three hundred twenty-two'),\n(11019, 39544, 'thirty-nine thousand five hundred forty-four'),\n(11020, 5834, 'five thousand eight hundred thirty-four'),\n(11021, 72605, 'seventy-two thousand six hundred five'),\n(11022, 35217, 'thirty-five thousand two hundred seventeen'),\n(11023, 43060, 'forty-three thousand sixty'),\n(11024, 51837, 'fifty-one thousand eight hundred thirty-seven'),\n(11025, 45135, 'forty-five thousand one hundred thirty-five'),\n(11026, 67767, 'sixty-seven thousand seven hundred sixty-seven'),\n(11027, 27976, 'twenty-seven thousand nine hundred seventy-six'),\n(11028, 65836, 'sixty-five thousand eight hundred thirty-six'),\n(11029, 18096, 'eighteen thousand ninety-six'),\n(11030, 84463, 'eighty-four thousand four hundred sixty-three'),\n(11031, 84247, 'eighty-four thousand two hundred forty-seven'),\n(11032, 80923, 'eighty thousand nine hundred twenty-three'),\n(11033, 63983, 'sixty-three thousand nine hundred eighty-three'),\n(11034, 92431, 'ninety-two thousand four hundred thirty-one'),\n(11035, 91538, 'ninety-one thousand five hundred thirty-eight'),\n(11036, 90053, 'ninety thousand fifty-three'),\n(11037, 61166, 'sixty-one thousand one hundred sixty-six'),\n(11038, 19959, 'nineteen thousand nine hundred fifty-nine'),\n(11039, 81429, 'eighty-one thousand four hundred twenty-nine'),\n(11040, 24863, 'twenty-four thousand eight hundred sixty-three'),\n(11041, 78128, 'seventy-eight thousand one hundred twenty-eight'),\n(11042, 78672, 'seventy-eight thousand six hundred seventy-two'),\n(11043, 35473, 'thirty-five thousand four hundred seventy-three'),\n(11044, 80758, 'eighty thousand seven hundred fifty-eight'),\n(11045, 26306, 'twenty-six thousand three hundred six'),\n(11046, 58280, 'fifty-eight thousand two hundred eighty'),\n(11047, 87616, 'eighty-seven thousand six hundred sixteen'),\n(11048, 23750, 'twenty-three thousand seven hundred fifty'),\n(11049, 28679, 'twenty-eight thousand six hundred seventy-nine'),\n(11050, 27309, 'twenty-seven thousand three hundred nine'),\n(11051, 5706, 'five thousand seven hundred six'),\n(11052, 18708, 'eighteen thousand seven hundred eight'),\n(11053, 14416, 'fourteen thousand four hundred sixteen'),\n(11054, 84060, 'eighty-four thousand sixty'),\n(11055, 5425, 'five thousand four hundred twenty-five'),\n(11056, 79057, 'seventy-nine thousand fifty-seven'),\n(11057, 90187, 'ninety thousand one hundred eighty-seven'),\n(11058, 82494, 'eighty-two thousand four hundred ninety-four'),\n(11059, 98482, 'ninety-eight thousand four hundred eighty-two'),\n(11060, 13681, 'thirteen thousand six hundred eighty-one'),\n(11061, 48138, 'forty-eight thousand one hundred thirty-eight'),\n(11062, 9837, 'nine thousand eight hundred thirty-seven'),\n(11063, 33882, 'thirty-three thousand eight hundred eighty-two'),\n(11064, 54906, 'fifty-four thousand nine hundred six'),\n(11065, 62330, 'sixty-two thousand three hundred thirty'),\n(11066, 89439, 'eighty-nine thousand four hundred thirty-nine'),\n(11067, 92900, 'ninety-two thousand nine hundred'),\n(11068, 7689, 'seven thousand six hundred eighty-nine'),\n(11069, 71557, 'seventy-one thousand five hundred fifty-seven'),\n(11070, 22907, 'twenty-two thousand nine hundred seven'),\n(11071, 31465, 'thirty-one thousand four hundred sixty-five'),\n(11072, 83976, 'eighty-three thousand nine hundred seventy-six'),\n(11073, 25962, 'twenty-five thousand nine hundred sixty-two'),\n(11074, 99005, 'ninety-nine thousand five'),\n(11075, 5751, 'five thousand seven hundred fifty-one'),\n(11076, 78356, 'seventy-eight thousand three hundred fifty-six'),\n(11077, 94808, 'ninety-four thousand eight hundred eight'),\n(11078, 45204, 'forty-five thousand two hundred four'),\n(11079, 45877, 'forty-five thousand eight hundred seventy-seven'),\n(11080, 91834, 'ninety-one thousand eight hundred thirty-four'),\n(11081, 3333, 'three thousand three hundred thirty-three'),\n(11082, 78102, 'seventy-eight thousand one hundred two'),\n(11083, 5407, 'five thousand four hundred seven'),\n(11084, 12084, 'twelve thousand eighty-four'),\n(11085, 4565, 'four thousand five hundred sixty-five'),\n(11086, 27751, 'twenty-seven thousand seven hundred fifty-one'),\n(11087, 84913, 'eighty-four thousand nine hundred thirteen'),\n(11088, 70328, 'seventy thousand three hundred twenty-eight'),\n(11089, 61211, 'sixty-one thousand two hundred eleven'),\n(11090, 403, 'four hundred three'),\n(11091, 16552, 'sixteen thousand five hundred fifty-two'),\n(11092, 25030, 'twenty-five thousand thirty'),\n(11093, 69512, 'sixty-nine thousand five hundred twelve'),\n(11094, 51926, 'fifty-one thousand nine hundred twenty-six'),\n(11095, 4266, 'four thousand two hundred sixty-six'),\n(11096, 92534, 'ninety-two thousand five hundred thirty-four'),\n(11097, 86815, 'eighty-six thousand eight hundred fifteen'),\n(11098, 49396, 'forty-nine thousand three hundred ninety-six'),\n(11099, 28502, 'twenty-eight thousand five hundred two'),\n(11100, 89435, 'eighty-nine thousand four hundred thirty-five'),\n(11101, 52041, 'fifty-two thousand forty-one'),\n(11102, 11767, 'eleven thousand seven hundred sixty-seven'),\n(11103, 96382, 'ninety-six thousand three hundred eighty-two'),\n(11104, 48470, 'forty-eight thousand four hundred seventy'),\n(11105, 76268, 'seventy-six thousand two hundred sixty-eight'),\n(11106, 25589, 'twenty-five thousand five hundred eighty-nine'),\n(11107, 72587, 'seventy-two thousand five hundred eighty-seven'),\n(11108, 67263, 'sixty-seven thousand two hundred sixty-three'),\n(11109, 66930, 'sixty-six thousand nine hundred thirty'),\n(11110, 19956, 'nineteen thousand nine hundred fifty-six'),\n(11111, 74380, 'seventy-four thousand three hundred eighty'),\n(11112, 87688, 'eighty-seven thousand six hundred eighty-eight'),\n(11113, 67537, 'sixty-seven thousand five hundred thirty-seven'),\n(11114, 20848, 'twenty thousand eight hundred forty-eight'),\n(11115, 75957, 'seventy-five thousand nine hundred fifty-seven'),\n(11116, 62091, 'sixty-two thousand ninety-one'),\n(11117, 35331, 'thirty-five thousand three hundred thirty-one'),\n(11118, 80361, 'eighty thousand three hundred sixty-one'),\n(11119, 31820, 'thirty-one thousand eight hundred twenty'),\n(11120, 18194, 'eighteen thousand one hundred ninety-four'),\n(11121, 32192, 'thirty-two thousand one hundred ninety-two'),\n(11122, 31710, 'thirty-one thousand seven hundred ten'),\n(11123, 52760, 'fifty-two thousand seven hundred sixty'),\n(11124, 44424, 'forty-four thousand four hundred twenty-four'),\n(11125, 70434, 'seventy thousand four hundred thirty-four'),\n(11126, 66378, 'sixty-six thousand three hundred seventy-eight'),\n(11127, 67007, 'sixty-seven thousand seven'),\n(11128, 28218, 'twenty-eight thousand two hundred eighteen'),\n(11129, 62373, 'sixty-two thousand three hundred seventy-three'),\n(11130, 79043, 'seventy-nine thousand forty-three'),\n(11131, 88281, 'eighty-eight thousand two hundred eighty-one'),\n(11132, 46277, 'forty-six thousand two hundred seventy-seven'),\n(11133, 2777, 'two thousand seven hundred seventy-seven'),\n(11134, 65802, 'sixty-five thousand eight hundred two'),\n(11135, 50437, 'fifty thousand four hundred thirty-seven'),\n(11136, 57691, 'fifty-seven thousand six hundred ninety-one'),\n(11137, 18696, 'eighteen thousand six hundred ninety-six'),\n(11138, 48939, 'forty-eight thousand nine hundred thirty-nine'),\n(11139, 71127, 'seventy-one thousand one hundred twenty-seven'),\n(11140, 44397, 'forty-four thousand three hundred ninety-seven'),\n(11141, 43218, 'forty-three thousand two hundred eighteen'),\n(11142, 91156, 'ninety-one thousand one hundred fifty-six'),\n(11143, 61725, 'sixty-one thousand seven hundred twenty-five'),\n(11144, 3837, 'three thousand eight hundred thirty-seven'),\n(11145, 47329, 'forty-seven thousand three hundred twenty-nine'),\n(11146, 70, 'seventy'),\n(11147, 52445, 'fifty-two thousand four hundred forty-five'),\n(11148, 60824, 'sixty thousand eight hundred twenty-four'),\n(11149, 36397, 'thirty-six thousand three hundred ninety-seven'),\n(11150, 94180, 'ninety-four thousand one hundred eighty'),\n(11151, 54837, 'fifty-four thousand eight hundred thirty-seven'),\n(11152, 9405, 'nine thousand four hundred five'),\n(11153, 77189, 'seventy-seven thousand one hundred eighty-nine'),\n(11154, 96640, 'ninety-six thousand six hundred forty'),\n(11155, 71752, 'seventy-one thousand seven hundred fifty-two'),\n(11156, 29213, 'twenty-nine thousand two hundred thirteen'),\n(11157, 9410, 'nine thousand four hundred ten'),\n(11158, 20087, 'twenty thousand eighty-seven'),\n(11159, 39088, 'thirty-nine thousand eighty-eight'),\n(11160, 51053, 'fifty-one thousand fifty-three'),\n(11161, 90947, 'ninety thousand nine hundred forty-seven'),\n(11162, 66163, 'sixty-six thousand one hundred sixty-three'),\n(11163, 31910, 'thirty-one thousand nine hundred ten'),\n(11164, 35284, 'thirty-five thousand two hundred eighty-four'),\n(11165, 56390, 'fifty-six thousand three hundred ninety'),\n(11166, 55863, 'fifty-five thousand eight hundred sixty-three'),\n(11167, 74, 'seventy-four'),\n(11168, 32946, 'thirty-two thousand nine hundred forty-six'),\n(11169, 48776, 'forty-eight thousand seven hundred seventy-six'),\n(11170, 91812, 'ninety-one thousand eight hundred twelve'),\n(11171, 44538, 'forty-four thousand five hundred thirty-eight'),\n(11172, 55368, 'fifty-five thousand three hundred sixty-eight'),\n(11173, 12683, 'twelve thousand six hundred eighty-three'),\n(11174, 73514, 'seventy-three thousand five hundred fourteen'),\n(11175, 28569, 'twenty-eight thousand five hundred sixty-nine'),\n(11176, 1915, 'one thousand nine hundred fifteen'),\n(11177, 16241, 'sixteen thousand two hundred forty-one'),\n(11178, 32149, 'thirty-two thousand one hundred forty-nine'),\n(11179, 55457, 'fifty-five thousand four hundred fifty-seven'),\n(11180, 15350, 'fifteen thousand three hundred fifty'),\n(11181, 91026, 'ninety-one thousand twenty-six'),\n(11182, 56756, 'fifty-six thousand seven hundred fifty-six'),\n(11183, 4659, 'four thousand six hundred fifty-nine'),\n(11184, 52715, 'fifty-two thousand seven hundred fifteen'),\n(11185, 80117, 'eighty thousand one hundred seventeen'),\n(11186, 1154, 'one thousand one hundred fifty-four'),\n(11187, 17609, 'seventeen thousand six hundred nine'),\n(11188, 62436, 'sixty-two thousand four hundred thirty-six'),\n(11189, 79283, 'seventy-nine thousand two hundred eighty-three'),\n(11190, 2215, 'two thousand two hundred fifteen'),\n(11191, 82097, 'eighty-two thousand ninety-seven'),\n(11192, 13349, 'thirteen thousand three hundred forty-nine'),\n(11193, 11629, 'eleven thousand six hundred twenty-nine'),\n(11194, 39647, 'thirty-nine thousand six hundred forty-seven'),\n(11195, 52799, 'fifty-two thousand seven hundred ninety-nine'),\n(11196, 6056, 'six thousand fifty-six'),\n(11197, 72419, 'seventy-two thousand four hundred nineteen'),\n(11198, 71084, 'seventy-one thousand eighty-four'),\n(11199, 22972, 'twenty-two thousand nine hundred seventy-two'),\n(11200, 15439, 'fifteen thousand four hundred thirty-nine'),\n(11201, 43453, 'forty-three thousand four hundred fifty-three'),\n(11202, 51486, 'fifty-one thousand four hundred eighty-six'),\n(11203, 42007, 'forty-two thousand seven'),\n(11204, 40911, 'forty thousand nine hundred eleven'),\n(11205, 71131, 'seventy-one thousand one hundred thirty-one'),\n(11206, 19540, 'nineteen thousand five hundred forty'),\n(11207, 70399, 'seventy thousand three hundred ninety-nine'),\n(11208, 86560, 'eighty-six thousand five hundred sixty'),\n(11209, 28959, 'twenty-eight thousand nine hundred fifty-nine'),\n(11210, 97042, 'ninety-seven thousand forty-two'),\n(11211, 83365, 'eighty-three thousand three hundred sixty-five'),\n(11212, 92641, 'ninety-two thousand six hundred forty-one'),\n(11213, 4092, 'four thousand ninety-two'),\n(11214, 39897, 'thirty-nine thousand eight hundred ninety-seven'),\n(11215, 22955, 'twenty-two thousand nine hundred fifty-five'),\n(11216, 34836, 'thirty-four thousand eight hundred thirty-six'),\n(11217, 28866, 'twenty-eight thousand eight hundred sixty-six'),\n(11218, 52782, 'fifty-two thousand seven hundred eighty-two'),\n(11219, 17209, 'seventeen thousand two hundred nine'),\n(11220, 39108, 'thirty-nine thousand one hundred eight'),\n(11221, 75816, 'seventy-five thousand eight hundred sixteen'),\n(11222, 72616, 'seventy-two thousand six hundred sixteen'),\n(11223, 33417, 'thirty-three thousand four hundred seventeen'),\n(11224, 93679, 'ninety-three thousand six hundred seventy-nine'),\n(11225, 52960, 'fifty-two thousand nine hundred sixty'),\n(11226, 30311, 'thirty thousand three hundred eleven'),\n(11227, 12191, 'twelve thousand one hundred ninety-one'),\n(11228, 89102, 'eighty-nine thousand one hundred two'),\n(11229, 96198, 'ninety-six thousand one hundred ninety-eight'),\n(11230, 97540, 'ninety-seven thousand five hundred forty'),\n(11231, 9085, 'nine thousand eighty-five'),\n(11232, 46069, 'forty-six thousand sixty-nine'),\n(11233, 75687, 'seventy-five thousand six hundred eighty-seven'),\n(11234, 25724, 'twenty-five thousand seven hundred twenty-four'),\n(11235, 41590, 'forty-one thousand five hundred ninety'),\n(11236, 80445, 'eighty thousand four hundred forty-five'),\n(11237, 63073, 'sixty-three thousand seventy-three'),\n(11238, 38755, 'thirty-eight thousand seven hundred fifty-five'),\n(11239, 60809, 'sixty thousand eight hundred nine'),\n(11240, 22330, 'twenty-two thousand three hundred thirty'),\n(11241, 59893, 'fifty-nine thousand eight hundred ninety-three'),\n(11242, 33710, 'thirty-three thousand seven hundred ten'),\n(11243, 37837, 'thirty-seven thousand eight hundred thirty-seven'),\n(11244, 94588, 'ninety-four thousand five hundred eighty-eight'),\n(11245, 24821, 'twenty-four thousand eight hundred twenty-one'),\n(11246, 83984, 'eighty-three thousand nine hundred eighty-four'),\n(11247, 84558, 'eighty-four thousand five hundred fifty-eight'),\n(11248, 18676, 'eighteen thousand six hundred seventy-six'),\n(11249, 60062, 'sixty thousand sixty-two'),\n(11250, 35283, 'thirty-five thousand two hundred eighty-three'),\n(11251, 28738, 'twenty-eight thousand seven hundred thirty-eight'),\n(11252, 83718, 'eighty-three thousand seven hundred eighteen'),\n(11253, 10063, 'ten thousand sixty-three'),\n(11254, 86317, 'eighty-six thousand three hundred seventeen'),\n(11255, 14531, 'fourteen thousand five hundred thirty-one'),\n(11256, 14168, 'fourteen thousand one hundred sixty-eight'),\n(11257, 2723, 'two thousand seven hundred twenty-three'),\n(11258, 47599, 'forty-seven thousand five hundred ninety-nine'),\n(11259, 53148, 'fifty-three thousand one hundred forty-eight'),\n(11260, 5570, 'five thousand five hundred seventy'),\n(11261, 36026, 'thirty-six thousand twenty-six'),\n(11262, 96930, 'ninety-six thousand nine hundred thirty'),\n(11263, 17867, 'seventeen thousand eight hundred sixty-seven'),\n(11264, 95334, 'ninety-five thousand three hundred thirty-four'),\n(11265, 70686, 'seventy thousand six hundred eighty-six'),\n(11266, 12498, 'twelve thousand four hundred ninety-eight'),\n(11267, 92754, 'ninety-two thousand seven hundred fifty-four'),\n(11268, 96156, 'ninety-six thousand one hundred fifty-six'),\n(11269, 83130, 'eighty-three thousand one hundred thirty'),\n(11270, 95538, 'ninety-five thousand five hundred thirty-eight'),\n(11271, 71498, 'seventy-one thousand four hundred ninety-eight'),\n(11272, 25488, 'twenty-five thousand four hundred eighty-eight'),\n(11273, 34216, 'thirty-four thousand two hundred sixteen'),\n(11274, 63954, 'sixty-three thousand nine hundred fifty-four'),\n(11275, 61635, 'sixty-one thousand six hundred thirty-five'),\n(11276, 89166, 'eighty-nine thousand one hundred sixty-six'),\n(11277, 66069, 'sixty-six thousand sixty-nine'),\n(11278, 69532, 'sixty-nine thousand five hundred thirty-two'),\n(11279, 14136, 'fourteen thousand one hundred thirty-six'),\n(11280, 56829, 'fifty-six thousand eight hundred twenty-nine'),\n(11281, 73841, 'seventy-three thousand eight hundred forty-one'),\n(11282, 82222, 'eighty-two thousand two hundred twenty-two'),\n(11283, 68802, 'sixty-eight thousand eight hundred two'),\n(11284, 54815, 'fifty-four thousand eight hundred fifteen'),\n(11285, 31933, 'thirty-one thousand nine hundred thirty-three'),\n(11286, 26543, 'twenty-six thousand five hundred forty-three'),\n(11287, 86579, 'eighty-six thousand five hundred seventy-nine'),\n(11288, 58123, 'fifty-eight thousand one hundred twenty-three'),\n(11289, 35272, 'thirty-five thousand two hundred seventy-two'),\n(11290, 83122, 'eighty-three thousand one hundred twenty-two'),\n(11291, 52857, 'fifty-two thousand eight hundred fifty-seven'),\n(11292, 14345, 'fourteen thousand three hundred forty-five'),\n(11293, 25953, 'twenty-five thousand nine hundred fifty-three'),\n(11294, 76965, 'seventy-six thousand nine hundred sixty-five'),\n(11295, 91485, 'ninety-one thousand four hundred eighty-five'),\n(11296, 42274, 'forty-two thousand two hundred seventy-four'),\n(11297, 13176, 'thirteen thousand one hundred seventy-six'),\n(11298, 9724, 'nine thousand seven hundred twenty-four'),\n(11299, 68239, 'sixty-eight thousand two hundred thirty-nine'),\n(11300, 17095, 'seventeen thousand ninety-five'),\n(11301, 81118, 'eighty-one thousand one hundred eighteen'),\n(11302, 75755, 'seventy-five thousand seven hundred fifty-five'),\n(11303, 94959, 'ninety-four thousand nine hundred fifty-nine'),\n(11304, 44838, 'forty-four thousand eight hundred thirty-eight'),\n(11305, 11998, 'eleven thousand nine hundred ninety-eight'),\n(11306, 34732, 'thirty-four thousand seven hundred thirty-two'),\n(11307, 48092, 'forty-eight thousand ninety-two'),\n(11308, 48208, 'forty-eight thousand two hundred eight'),\n(11309, 86109, 'eighty-six thousand one hundred nine'),\n(11310, 84440, 'eighty-four thousand four hundred forty'),\n(11311, 28070, 'twenty-eight thousand seventy'),\n(11312, 53496, 'fifty-three thousand four hundred ninety-six'),\n(11313, 17786, 'seventeen thousand seven hundred eighty-six'),\n(11314, 5016, 'five thousand sixteen'),\n(11315, 1230, 'one thousand two hundred thirty'),\n(11316, 35383, 'thirty-five thousand three hundred eighty-three'),\n(11317, 64270, 'sixty-four thousand two hundred seventy'),\n(11318, 64500, 'sixty-four thousand five hundred'),\n(11319, 42906, 'forty-two thousand nine hundred six'),\n(11320, 92747, 'ninety-two thousand seven hundred forty-seven'),\n(11321, 24862, 'twenty-four thousand eight hundred sixty-two'),\n(11322, 87202, 'eighty-seven thousand two hundred two'),\n(11323, 63626, 'sixty-three thousand six hundred twenty-six'),\n(11324, 19956, 'nineteen thousand nine hundred fifty-six'),\n(11325, 37053, 'thirty-seven thousand fifty-three'),\n(11326, 37830, 'thirty-seven thousand eight hundred thirty'),\n(11327, 18255, 'eighteen thousand two hundred fifty-five'),\n(11328, 57473, 'fifty-seven thousand four hundred seventy-three'),\n(11329, 53078, 'fifty-three thousand seventy-eight'),\n(11330, 72570, 'seventy-two thousand five hundred seventy'),\n(11331, 86761, 'eighty-six thousand seven hundred sixty-one'),\n(11332, 62066, 'sixty-two thousand sixty-six'),\n(11333, 71596, 'seventy-one thousand five hundred ninety-six'),\n(11334, 6184, 'six thousand one hundred eighty-four'),\n(11335, 5516, 'five thousand five hundred sixteen'),\n(11336, 45329, 'forty-five thousand three hundred twenty-nine'),\n(11337, 85884, 'eighty-five thousand eight hundred eighty-four'),\n(11338, 76347, 'seventy-six thousand three hundred forty-seven'),\n(11339, 82035, 'eighty-two thousand thirty-five'),\n(11340, 48565, 'forty-eight thousand five hundred sixty-five'),\n(11341, 15716, 'fifteen thousand seven hundred sixteen'),\n(11342, 44293, 'forty-four thousand two hundred ninety-three'),\n(11343, 362, 'three hundred sixty-two'),\n(11344, 29591, 'twenty-nine thousand five hundred ninety-one'),\n(11345, 56955, 'fifty-six thousand nine hundred fifty-five'),\n(11346, 38548, 'thirty-eight thousand five hundred forty-eight'),\n(11347, 17307, 'seventeen thousand three hundred seven'),\n(11348, 78978, 'seventy-eight thousand nine hundred seventy-eight'),\n(11349, 64685, 'sixty-four thousand six hundred eighty-five'),\n(11350, 47855, 'forty-seven thousand eight hundred fifty-five'),\n(11351, 65951, 'sixty-five thousand nine hundred fifty-one'),\n(11352, 14685, 'fourteen thousand six hundred eighty-five'),\n(11353, 93213, 'ninety-three thousand two hundred thirteen'),\n(11354, 51313, 'fifty-one thousand three hundred thirteen'),\n(11355, 92868, 'ninety-two thousand eight hundred sixty-eight'),\n(11356, 31384, 'thirty-one thousand three hundred eighty-four'),\n(11357, 21938, 'twenty-one thousand nine hundred thirty-eight'),\n(11358, 51745, 'fifty-one thousand seven hundred forty-five'),\n(11359, 87292, 'eighty-seven thousand two hundred ninety-two'),\n(11360, 45071, 'forty-five thousand seventy-one'),\n(11361, 67087, 'sixty-seven thousand eighty-seven'),\n(11362, 67809, 'sixty-seven thousand eight hundred nine'),\n(11363, 49186, 'forty-nine thousand one hundred eighty-six'),\n(11364, 46375, 'forty-six thousand three hundred seventy-five'),\n(11365, 87694, 'eighty-seven thousand six hundred ninety-four'),\n(11366, 9470, 'nine thousand four hundred seventy'),\n(11367, 46648, 'forty-six thousand six hundred forty-eight'),\n(11368, 63094, 'sixty-three thousand ninety-four'),\n(11369, 97956, 'ninety-seven thousand nine hundred fifty-six'),\n(11370, 40843, 'forty thousand eight hundred forty-three'),\n(11371, 81668, 'eighty-one thousand six hundred sixty-eight'),\n(11372, 40076, 'forty thousand seventy-six'),\n(11373, 81790, 'eighty-one thousand seven hundred ninety'),\n(11374, 8734, 'eight thousand seven hundred thirty-four'),\n(11375, 72734, 'seventy-two thousand seven hundred thirty-four'),\n(11376, 74402, 'seventy-four thousand four hundred two'),\n(11377, 91455, 'ninety-one thousand four hundred fifty-five'),\n(11378, 53189, 'fifty-three thousand one hundred eighty-nine'),\n(11379, 22371, 'twenty-two thousand three hundred seventy-one'),\n(11380, 90031, 'ninety thousand thirty-one'),\n(11381, 21005, 'twenty-one thousand five'),\n(11382, 46662, 'forty-six thousand six hundred sixty-two'),\n(11383, 65611, 'sixty-five thousand six hundred eleven'),\n(11384, 64529, 'sixty-four thousand five hundred twenty-nine'),\n(11385, 33323, 'thirty-three thousand three hundred twenty-three'),\n(11386, 26092, 'twenty-six thousand ninety-two'),\n(11387, 26208, 'twenty-six thousand two hundred eight'),\n(11388, 23028, 'twenty-three thousand twenty-eight'),\n(11389, 59263, 'fifty-nine thousand two hundred sixty-three'),\n(11390, 19355, 'nineteen thousand three hundred fifty-five'),\n(11391, 40818, 'forty thousand eight hundred eighteen'),\n(11392, 13983, 'thirteen thousand nine hundred eighty-three'),\n(11393, 35597, 'thirty-five thousand five hundred ninety-seven'),\n(11394, 70679, 'seventy thousand six hundred seventy-nine'),\n(11395, 140, 'one hundred forty'),\n(11396, 14735, 'fourteen thousand seven hundred thirty-five'),\n(11397, 9901, 'nine thousand nine hundred one'),\n(11398, 3850, 'three thousand eight hundred fifty'),\n(11399, 69256, 'sixty-nine thousand two hundred fifty-six'),\n(11400, 76261, 'seventy-six thousand two hundred sixty-one'),\n(11401, 86019, 'eighty-six thousand nineteen'),\n(11402, 65412, 'sixty-five thousand four hundred twelve'),\n(11403, 38063, 'thirty-eight thousand sixty-three'),\n(11404, 68221, 'sixty-eight thousand two hundred twenty-one'),\n(11405, 51080, 'fifty-one thousand eighty'),\n(11406, 3324, 'three thousand three hundred twenty-four'),\n(11407, 77335, 'seventy-seven thousand three hundred thirty-five'),\n(11408, 15169, 'fifteen thousand one hundred sixty-nine'),\n(11409, 63181, 'sixty-three thousand one hundred eighty-one'),\n(11410, 11934, 'eleven thousand nine hundred thirty-four'),\n(11411, 20759, 'twenty thousand seven hundred fifty-nine'),\n(11412, 79098, 'seventy-nine thousand ninety-eight'),\n(11413, 8830, 'eight thousand eight hundred thirty'),\n(11414, 72585, 'seventy-two thousand five hundred eighty-five'),\n(11415, 79219, 'seventy-nine thousand two hundred nineteen'),\n(11416, 53323, 'fifty-three thousand three hundred twenty-three'),\n(11417, 75558, 'seventy-five thousand five hundred fifty-eight'),\n(11418, 98440, 'ninety-eight thousand four hundred forty'),\n(11419, 64723, 'sixty-four thousand seven hundred twenty-three'),\n(11420, 29164, 'twenty-nine thousand one hundred sixty-four'),\n(11421, 13905, 'thirteen thousand nine hundred five'),\n(11422, 53559, 'fifty-three thousand five hundred fifty-nine'),\n(11423, 46375, 'forty-six thousand three hundred seventy-five'),\n(11424, 49493, 'forty-nine thousand four hundred ninety-three'),\n(11425, 98149, 'ninety-eight thousand one hundred forty-nine'),\n(11426, 32086, 'thirty-two thousand eighty-six'),\n(11427, 98364, 'ninety-eight thousand three hundred sixty-four'),\n(11428, 61177, 'sixty-one thousand one hundred seventy-seven'),\n(11429, 31358, 'thirty-one thousand three hundred fifty-eight'),\n(11430, 19406, 'nineteen thousand four hundred six'),\n(11431, 5513, 'five thousand five hundred thirteen'),\n(11432, 85855, 'eighty-five thousand eight hundred fifty-five'),\n(11433, 39060, 'thirty-nine thousand sixty'),\n(11434, 59061, 'fifty-nine thousand sixty-one'),\n(11435, 85856, 'eighty-five thousand eight hundred fifty-six'),\n(11436, 7417, 'seven thousand four hundred seventeen'),\n(11437, 72822, 'seventy-two thousand eight hundred twenty-two'),\n(11438, 33939, 'thirty-three thousand nine hundred thirty-nine'),\n(11439, 27855, 'twenty-seven thousand eight hundred fifty-five'),\n(11440, 83991, 'eighty-three thousand nine hundred ninety-one'),\n(11441, 69927, 'sixty-nine thousand nine hundred twenty-seven'),\n(11442, 92195, 'ninety-two thousand one hundred ninety-five'),\n(11443, 12214, 'twelve thousand two hundred fourteen'),\n(11444, 79905, 'seventy-nine thousand nine hundred five'),\n(11445, 40109, 'forty thousand one hundred nine'),\n(11446, 87472, 'eighty-seven thousand four hundred seventy-two'),\n(11447, 32641, 'thirty-two thousand six hundred forty-one'),\n(11448, 98532, 'ninety-eight thousand five hundred thirty-two'),\n(11449, 9061, 'nine thousand sixty-one'),\n(11450, 99133, 'ninety-nine thousand one hundred thirty-three'),\n(11451, 49725, 'forty-nine thousand seven hundred twenty-five'),\n(11452, 27998, 'twenty-seven thousand nine hundred ninety-eight'),\n(11453, 65589, 'sixty-five thousand five hundred eighty-nine'),\n(11454, 96383, 'ninety-six thousand three hundred eighty-three'),\n(11455, 26139, 'twenty-six thousand one hundred thirty-nine'),\n(11456, 99366, 'ninety-nine thousand three hundred sixty-six'),\n(11457, 52304, 'fifty-two thousand three hundred four'),\n(11458, 64265, 'sixty-four thousand two hundred sixty-five'),\n(11459, 1666, 'one thousand six hundred sixty-six'),\n(11460, 61856, 'sixty-one thousand eight hundred fifty-six'),\n(11461, 59283, 'fifty-nine thousand two hundred eighty-three'),\n(11462, 81271, 'eighty-one thousand two hundred seventy-one'),\n(11463, 67156, 'sixty-seven thousand one hundred fifty-six'),\n(11464, 72906, 'seventy-two thousand nine hundred six'),\n(11465, 60735, 'sixty thousand seven hundred thirty-five'),\n(11466, 46075, 'forty-six thousand seventy-five'),\n(11467, 59144, 'fifty-nine thousand one hundred forty-four'),\n(11468, 10913, 'ten thousand nine hundred thirteen'),\n(11469, 69991, 'sixty-nine thousand nine hundred ninety-one'),\n(11470, 75679, 'seventy-five thousand six hundred seventy-nine'),\n(11471, 20790, 'twenty thousand seven hundred ninety'),\n(11472, 76456, 'seventy-six thousand four hundred fifty-six'),\n(11473, 1974, 'one thousand nine hundred seventy-four'),\n(11474, 87969, 'eighty-seven thousand nine hundred sixty-nine'),\n(11475, 71298, 'seventy-one thousand two hundred ninety-eight'),\n(11476, 51425, 'fifty-one thousand four hundred twenty-five'),\n(11477, 42326, 'forty-two thousand three hundred twenty-six'),\n(11478, 42923, 'forty-two thousand nine hundred twenty-three'),\n(11479, 7171, 'seven thousand one hundred seventy-one'),\n(11480, 84697, 'eighty-four thousand six hundred ninety-seven'),\n(11481, 73177, 'seventy-three thousand one hundred seventy-seven'),\n(11482, 44859, 'forty-four thousand eight hundred fifty-nine'),\n(11483, 87578, 'eighty-seven thousand five hundred seventy-eight'),\n(11484, 84187, 'eighty-four thousand one hundred eighty-seven'),\n(11485, 47707, 'forty-seven thousand seven hundred seven'),\n(11486, 89698, 'eighty-nine thousand six hundred ninety-eight'),\n(11487, 76876, 'seventy-six thousand eight hundred seventy-six'),\n(11488, 87271, 'eighty-seven thousand two hundred seventy-one'),\n(11489, 4452, 'four thousand four hundred fifty-two'),\n(11490, 10145, 'ten thousand one hundred forty-five'),\n(11491, 85193, 'eighty-five thousand one hundred ninety-three'),\n(11492, 28159, 'twenty-eight thousand one hundred fifty-nine'),\n(11493, 65748, 'sixty-five thousand seven hundred forty-eight'),\n(11494, 90981, 'ninety thousand nine hundred eighty-one'),\n(11495, 42289, 'forty-two thousand two hundred eighty-nine'),\n(11496, 90226, 'ninety thousand two hundred twenty-six'),\n(11497, 8799, 'eight thousand seven hundred ninety-nine'),\n(11498, 30748, 'thirty thousand seven hundred forty-eight'),\n(11499, 75149, 'seventy-five thousand one hundred forty-nine'),\n(11500, 77633, 'seventy-seven thousand six hundred thirty-three'),\n(11501, 96361, 'ninety-six thousand three hundred sixty-one'),\n(11502, 27529, 'twenty-seven thousand five hundred twenty-nine'),\n(11503, 65516, 'sixty-five thousand five hundred sixteen'),\n(11504, 41684, 'forty-one thousand six hundred eighty-four'),\n(11505, 6349, 'six thousand three hundred forty-nine'),\n(11506, 96745, 'ninety-six thousand seven hundred forty-five'),\n(11507, 72707, 'seventy-two thousand seven hundred seven'),\n(11508, 54477, 'fifty-four thousand four hundred seventy-seven'),\n(11509, 27248, 'twenty-seven thousand two hundred forty-eight'),\n(11510, 45589, 'forty-five thousand five hundred eighty-nine'),\n(11511, 56276, 'fifty-six thousand two hundred seventy-six'),\n(11512, 21843, 'twenty-one thousand eight hundred forty-three'),\n(11513, 91633, 'ninety-one thousand six hundred thirty-three'),\n(11514, 99252, 'ninety-nine thousand two hundred fifty-two'),\n(11515, 87771, 'eighty-seven thousand seven hundred seventy-one'),\n(11516, 83352, 'eighty-three thousand three hundred fifty-two'),\n(11517, 15402, 'fifteen thousand four hundred two'),\n(11518, 85261, 'eighty-five thousand two hundred sixty-one'),\n(11519, 76493, 'seventy-six thousand four hundred ninety-three'),\n(11520, 64749, 'sixty-four thousand seven hundred forty-nine'),\n(11521, 91714, 'ninety-one thousand seven hundred fourteen'),\n(11522, 93919, 'ninety-three thousand nine hundred nineteen'),\n(11523, 10405, 'ten thousand four hundred five'),\n(11524, 1601, 'one thousand six hundred one'),\n(11525, 8456, 'eight thousand four hundred fifty-six'),\n(11526, 97383, 'ninety-seven thousand three hundred eighty-three'),\n(11527, 60982, 'sixty thousand nine hundred eighty-two'),\n(11528, 31025, 'thirty-one thousand twenty-five'),\n(11529, 99450, 'ninety-nine thousand four hundred fifty'),\n(11530, 18995, 'eighteen thousand nine hundred ninety-five'),\n(11531, 62005, 'sixty-two thousand five'),\n(11532, 72817, 'seventy-two thousand eight hundred seventeen'),\n(11533, 34325, 'thirty-four thousand three hundred twenty-five'),\n(11534, 27524, 'twenty-seven thousand five hundred twenty-four'),\n(11535, 31700, 'thirty-one thousand seven hundred'),\n(11536, 24894, 'twenty-four thousand eight hundred ninety-four'),\n(11537, 47550, 'forty-seven thousand five hundred fifty'),\n(11538, 4593, 'four thousand five hundred ninety-three'),\n(11539, 57504, 'fifty-seven thousand five hundred four'),\n(11540, 35379, 'thirty-five thousand three hundred seventy-nine'),\n(11541, 46360, 'forty-six thousand three hundred sixty'),\n(11542, 10016, 'ten thousand sixteen'),\n(11543, 56653, 'fifty-six thousand six hundred fifty-three'),\n(11544, 20556, 'twenty thousand five hundred fifty-six'),\n(11545, 73367, 'seventy-three thousand three hundred sixty-seven'),\n(11546, 39418, 'thirty-nine thousand four hundred eighteen'),\n(11547, 40785, 'forty thousand seven hundred eighty-five'),\n(11548, 2341, 'two thousand three hundred forty-one'),\n(11549, 37849, 'thirty-seven thousand eight hundred forty-nine'),\n(11550, 70967, 'seventy thousand nine hundred sixty-seven'),\n(11551, 14564, 'fourteen thousand five hundred sixty-four'),\n(11552, 64094, 'sixty-four thousand ninety-four'),\n(11553, 74273, 'seventy-four thousand two hundred seventy-three'),\n(11554, 59823, 'fifty-nine thousand eight hundred twenty-three'),\n(11555, 76224, 'seventy-six thousand two hundred twenty-four'),\n(11556, 11430, 'eleven thousand four hundred thirty'),\n(11557, 57467, 'fifty-seven thousand four hundred sixty-seven'),\n(11558, 85942, 'eighty-five thousand nine hundred forty-two'),\n(11559, 15638, 'fifteen thousand six hundred thirty-eight'),\n(11560, 48558, 'forty-eight thousand five hundred fifty-eight'),\n(11561, 88086, 'eighty-eight thousand eighty-six'),\n(11562, 70378, 'seventy thousand three hundred seventy-eight'),\n(11563, 23132, 'twenty-three thousand one hundred thirty-two'),\n(11564, 35014, 'thirty-five thousand fourteen'),\n(11565, 23330, 'twenty-three thousand three hundred thirty'),\n(11566, 78371, 'seventy-eight thousand three hundred seventy-one'),\n(11567, 91395, 'ninety-one thousand three hundred ninety-five'),\n(11568, 53664, 'fifty-three thousand six hundred sixty-four'),\n(11569, 61805, 'sixty-one thousand eight hundred five'),\n(11570, 99207, 'ninety-nine thousand two hundred seven'),\n(11571, 47569, 'forty-seven thousand five hundred sixty-nine'),\n(11572, 92879, 'ninety-two thousand eight hundred seventy-nine'),\n(11573, 36929, 'thirty-six thousand nine hundred twenty-nine'),\n(11574, 60151, 'sixty thousand one hundred fifty-one'),\n(11575, 81954, 'eighty-one thousand nine hundred fifty-four'),\n(11576, 91591, 'ninety-one thousand five hundred ninety-one'),\n(11577, 10942, 'ten thousand nine hundred forty-two'),\n(11578, 97663, 'ninety-seven thousand six hundred sixty-three'),\n(11579, 84918, 'eighty-four thousand nine hundred eighteen'),\n(11580, 80587, 'eighty thousand five hundred eighty-seven'),\n(11581, 47675, 'forty-seven thousand six hundred seventy-five'),\n(11582, 41679, 'forty-one thousand six hundred seventy-nine'),\n(11583, 32270, 'thirty-two thousand two hundred seventy'),\n(11584, 86234, 'eighty-six thousand two hundred thirty-four'),\n(11585, 88, 'eighty-eight'),\n(11586, 56924, 'fifty-six thousand nine hundred twenty-four'),\n(11587, 95872, 'ninety-five thousand eight hundred seventy-two'),\n(11588, 8206, 'eight thousand two hundred six'),\n(11589, 29602, 'twenty-nine thousand six hundred two'),\n(11590, 71481, 'seventy-one thousand four hundred eighty-one'),\n(11591, 5352, 'five thousand three hundred fifty-two'),\n(11592, 68841, 'sixty-eight thousand eight hundred forty-one'),\n(11593, 36050, 'thirty-six thousand fifty'),\n(11594, 33688, 'thirty-three thousand six hundred eighty-eight'),\n(11595, 66846, 'sixty-six thousand eight hundred forty-six'),\n(11596, 28149, 'twenty-eight thousand one hundred forty-nine'),\n(11597, 25789, 'twenty-five thousand seven hundred eighty-nine'),\n(11598, 43626, 'forty-three thousand six hundred twenty-six'),\n(11599, 27851, 'twenty-seven thousand eight hundred fifty-one'),\n(11600, 52616, 'fifty-two thousand six hundred sixteen'),\n(11601, 1209, 'one thousand two hundred nine'),\n(11602, 78254, 'seventy-eight thousand two hundred fifty-four'),\n(11603, 51943, 'fifty-one thousand nine hundred forty-three'),\n(11604, 47217, 'forty-seven thousand two hundred seventeen'),\n(11605, 16252, 'sixteen thousand two hundred fifty-two'),\n(11606, 95575, 'ninety-five thousand five hundred seventy-five'),\n(11607, 12198, 'twelve thousand one hundred ninety-eight'),\n(11608, 17119, 'seventeen thousand one hundred nineteen'),\n(11609, 88907, 'eighty-eight thousand nine hundred seven'),\n(11610, 40266, 'forty thousand two hundred sixty-six'),\n(11611, 91620, 'ninety-one thousand six hundred twenty'),\n(11612, 47029, 'forty-seven thousand twenty-nine'),\n(11613, 98400, 'ninety-eight thousand four hundred'),\n(11614, 54738, 'fifty-four thousand seven hundred thirty-eight'),\n(11615, 46033, 'forty-six thousand thirty-three'),\n(11616, 96272, 'ninety-six thousand two hundred seventy-two'),\n(11617, 15814, 'fifteen thousand eight hundred fourteen'),\n(11618, 96535, 'ninety-six thousand five hundred thirty-five'),\n(11619, 17062, 'seventeen thousand sixty-two'),\n(11620, 87295, 'eighty-seven thousand two hundred ninety-five'),\n(11621, 66649, 'sixty-six thousand six hundred forty-nine'),\n(11622, 88056, 'eighty-eight thousand fifty-six'),\n(11623, 72071, 'seventy-two thousand seventy-one'),\n(11624, 2343, 'two thousand three hundred forty-three'),\n(11625, 18142, 'eighteen thousand one hundred forty-two'),\n(11626, 5621, 'five thousand six hundred twenty-one'),\n(11627, 95596, 'ninety-five thousand five hundred ninety-six'),\n(11628, 59760, 'fifty-nine thousand seven hundred sixty'),\n(11629, 35927, 'thirty-five thousand nine hundred twenty-seven'),\n(11630, 26830, 'twenty-six thousand eight hundred thirty'),\n(11631, 94860, 'ninety-four thousand eight hundred sixty'),\n(11632, 62995, 'sixty-two thousand nine hundred ninety-five'),\n(11633, 14163, 'fourteen thousand one hundred sixty-three'),\n(11634, 35378, 'thirty-five thousand three hundred seventy-eight'),\n(11635, 88319, 'eighty-eight thousand three hundred nineteen'),\n(11636, 99214, 'ninety-nine thousand two hundred fourteen'),\n(11637, 75969, 'seventy-five thousand nine hundred sixty-nine'),\n(11638, 60158, 'sixty thousand one hundred fifty-eight'),\n(11639, 1035, 'one thousand thirty-five'),\n(11640, 24573, 'twenty-four thousand five hundred seventy-three'),\n(11641, 92899, 'ninety-two thousand eight hundred ninety-nine'),\n(11642, 82980, 'eighty-two thousand nine hundred eighty'),\n(11643, 57369, 'fifty-seven thousand three hundred sixty-nine'),\n(11644, 67895, 'sixty-seven thousand eight hundred ninety-five'),\n(11645, 55084, 'fifty-five thousand eighty-four'),\n(11646, 22034, 'twenty-two thousand thirty-four'),\n(11647, 27815, 'twenty-seven thousand eight hundred fifteen'),\n(11648, 81056, 'eighty-one thousand fifty-six'),\n(11649, 83270, 'eighty-three thousand two hundred seventy'),\n(11650, 92373, 'ninety-two thousand three hundred seventy-three'),\n(11651, 3912, 'three thousand nine hundred twelve'),\n(11652, 69180, 'sixty-nine thousand one hundred eighty'),\n(11653, 27208, 'twenty-seven thousand two hundred eight'),\n(11654, 66841, 'sixty-six thousand eight hundred forty-one'),\n(11655, 7032, 'seven thousand thirty-two'),\n(11656, 84356, 'eighty-four thousand three hundred fifty-six'),\n(11657, 29853, 'twenty-nine thousand eight hundred fifty-three'),\n(11658, 2066, 'two thousand sixty-six'),\n(11659, 88164, 'eighty-eight thousand one hundred sixty-four'),\n(11660, 25832, 'twenty-five thousand eight hundred thirty-two'),\n(11661, 21040, 'twenty-one thousand forty'),\n(11662, 78441, 'seventy-eight thousand four hundred forty-one'),\n(11663, 25490, 'twenty-five thousand four hundred ninety'),\n(11664, 95833, 'ninety-five thousand eight hundred thirty-three'),\n(11665, 44350, 'forty-four thousand three hundred fifty'),\n(11666, 55410, 'fifty-five thousand four hundred ten'),\n(11667, 66586, 'sixty-six thousand five hundred eighty-six'),\n(11668, 48512, 'forty-eight thousand five hundred twelve'),\n(11669, 31588, 'thirty-one thousand five hundred eighty-eight'),\n(11670, 71438, 'seventy-one thousand four hundred thirty-eight'),\n(11671, 52689, 'fifty-two thousand six hundred eighty-nine'),\n(11672, 70942, 'seventy thousand nine hundred forty-two'),\n(11673, 60981, 'sixty thousand nine hundred eighty-one'),\n(11674, 7996, 'seven thousand nine hundred ninety-six'),\n(11675, 80461, 'eighty thousand four hundred sixty-one'),\n(11676, 88784, 'eighty-eight thousand seven hundred eighty-four'),\n(11677, 67574, 'sixty-seven thousand five hundred seventy-four'),\n(11678, 41129, 'forty-one thousand one hundred twenty-nine'),\n(11679, 85524, 'eighty-five thousand five hundred twenty-four'),\n(11680, 53194, 'fifty-three thousand one hundred ninety-four'),\n(11681, 41114, 'forty-one thousand one hundred fourteen'),\n(11682, 54224, 'fifty-four thousand two hundred twenty-four'),\n(11683, 10802, 'ten thousand eight hundred two'),\n(11684, 16472, 'sixteen thousand four hundred seventy-two'),\n(11685, 17967, 'seventeen thousand nine hundred sixty-seven'),\n(11686, 50698, 'fifty thousand six hundred ninety-eight'),\n(11687, 69813, 'sixty-nine thousand eight hundred thirteen'),\n(11688, 65960, 'sixty-five thousand nine hundred sixty'),\n(11689, 29887, 'twenty-nine thousand eight hundred eighty-seven'),\n(11690, 81718, 'eighty-one thousand seven hundred eighteen'),\n(11691, 51062, 'fifty-one thousand sixty-two'),\n(11692, 76307, 'seventy-six thousand three hundred seven'),\n(11693, 60101, 'sixty thousand one hundred one'),\n(11694, 50075, 'fifty thousand seventy-five'),\n(11695, 9563, 'nine thousand five hundred sixty-three'),\n(11696, 70846, 'seventy thousand eight hundred forty-six'),\n(11697, 79914, 'seventy-nine thousand nine hundred fourteen'),\n(11698, 1784, 'one thousand seven hundred eighty-four'),\n(11699, 90575, 'ninety thousand five hundred seventy-five'),\n(11700, 55055, 'fifty-five thousand fifty-five'),\n(11701, 60297, 'sixty thousand two hundred ninety-seven'),\n(11702, 95805, 'ninety-five thousand eight hundred five'),\n(11703, 13273, 'thirteen thousand two hundred seventy-three'),\n(11704, 79815, 'seventy-nine thousand eight hundred fifteen'),\n(11705, 59620, 'fifty-nine thousand six hundred twenty'),\n(11706, 21919, 'twenty-one thousand nine hundred nineteen'),\n(11707, 11005, 'eleven thousand five'),\n(11708, 77163, 'seventy-seven thousand one hundred sixty-three'),\n(11709, 26919, 'twenty-six thousand nine hundred nineteen'),\n(11710, 55824, 'fifty-five thousand eight hundred twenty-four'),\n(11711, 80913, 'eighty thousand nine hundred thirteen'),\n(11712, 90684, 'ninety thousand six hundred eighty-four'),\n(11713, 75231, 'seventy-five thousand two hundred thirty-one'),\n(11714, 98491, 'ninety-eight thousand four hundred ninety-one'),\n(11715, 73973, 'seventy-three thousand nine hundred seventy-three'),\n(11716, 37283, 'thirty-seven thousand two hundred eighty-three'),\n(11717, 21152, 'twenty-one thousand one hundred fifty-two'),\n(11718, 80724, 'eighty thousand seven hundred twenty-four'),\n(11719, 27993, 'twenty-seven thousand nine hundred ninety-three'),\n(11720, 67639, 'sixty-seven thousand six hundred thirty-nine'),\n(11721, 55483, 'fifty-five thousand four hundred eighty-three'),\n(11722, 72527, 'seventy-two thousand five hundred twenty-seven'),\n(11723, 1344, 'one thousand three hundred forty-four'),\n(11724, 23303, 'twenty-three thousand three hundred three'),\n(11725, 51649, 'fifty-one thousand six hundred forty-nine'),\n(11726, 56219, 'fifty-six thousand two hundred nineteen'),\n(11727, 83074, 'eighty-three thousand seventy-four'),\n(11728, 96280, 'ninety-six thousand two hundred eighty'),\n(11729, 38192, 'thirty-eight thousand one hundred ninety-two'),\n(11730, 19189, 'nineteen thousand one hundred eighty-nine'),\n(11731, 59908, 'fifty-nine thousand nine hundred eight'),\n(11732, 96743, 'ninety-six thousand seven hundred forty-three'),\n(11733, 73681, 'seventy-three thousand six hundred eighty-one'),\n(11734, 70265, 'seventy thousand two hundred sixty-five'),\n(11735, 37638, 'thirty-seven thousand six hundred thirty-eight'),\n(11736, 80457, 'eighty thousand four hundred fifty-seven'),\n(11737, 85102, 'eighty-five thousand one hundred two'),\n(11738, 14923, 'fourteen thousand nine hundred twenty-three'),\n(11739, 26066, 'twenty-six thousand sixty-six'),\n(11740, 6474, 'six thousand four hundred seventy-four'),\n(11741, 50681, 'fifty thousand six hundred eighty-one'),\n(11742, 90915, 'ninety thousand nine hundred fifteen'),\n(11743, 5375, 'five thousand three hundred seventy-five'),\n(11744, 96972, 'ninety-six thousand nine hundred seventy-two'),\n(11745, 81165, 'eighty-one thousand one hundred sixty-five'),\n(11746, 32559, 'thirty-two thousand five hundred fifty-nine'),\n(11747, 21887, 'twenty-one thousand eight hundred eighty-seven'),\n(11748, 8227, 'eight thousand two hundred twenty-seven'),\n(11749, 49316, 'forty-nine thousand three hundred sixteen'),\n(11750, 39034, 'thirty-nine thousand thirty-four'),\n(11751, 440, 'four hundred forty'),\n(11752, 18325, 'eighteen thousand three hundred twenty-five'),\n(11753, 5570, 'five thousand five hundred seventy'),\n(11754, 75698, 'seventy-five thousand six hundred ninety-eight'),\n(11755, 57080, 'fifty-seven thousand eighty'),\n(11756, 54906, 'fifty-four thousand nine hundred six'),\n(11757, 97788, 'ninety-seven thousand seven hundred eighty-eight'),\n(11758, 26394, 'twenty-six thousand three hundred ninety-four'),\n(11759, 12022, 'twelve thousand twenty-two'),\n(11760, 83671, 'eighty-three thousand six hundred seventy-one'),\n(11761, 49503, 'forty-nine thousand five hundred three'),\n(11762, 10326, 'ten thousand three hundred twenty-six'),\n(11763, 95984, 'ninety-five thousand nine hundred eighty-four'),\n(11764, 36728, 'thirty-six thousand seven hundred twenty-eight'),\n(11765, 36439, 'thirty-six thousand four hundred thirty-nine'),\n(11766, 88093, 'eighty-eight thousand ninety-three'),\n(11767, 33177, 'thirty-three thousand one hundred seventy-seven'),\n(11768, 40412, 'forty thousand four hundred twelve'),\n(11769, 25415, 'twenty-five thousand four hundred fifteen'),\n(11770, 37087, 'thirty-seven thousand eighty-seven'),\n(11771, 55410, 'fifty-five thousand four hundred ten'),\n(11772, 71558, 'seventy-one thousand five hundred fifty-eight'),\n(11773, 85188, 'eighty-five thousand one hundred eighty-eight'),\n(11774, 33580, 'thirty-three thousand five hundred eighty'),\n(11775, 23461, 'twenty-three thousand four hundred sixty-one'),\n(11776, 7467, 'seven thousand four hundred sixty-seven'),\n(11777, 73274, 'seventy-three thousand two hundred seventy-four'),\n(11778, 49985, 'forty-nine thousand nine hundred eighty-five'),\n(11779, 23604, 'twenty-three thousand six hundred four'),\n(11780, 87154, 'eighty-seven thousand one hundred fifty-four'),\n(11781, 36464, 'thirty-six thousand four hundred sixty-four'),\n(11782, 1245, 'one thousand two hundred forty-five'),\n(11783, 19899, 'nineteen thousand eight hundred ninety-nine'),\n(11784, 64, 'sixty-four'),\n(11785, 35942, 'thirty-five thousand nine hundred forty-two'),\n(11786, 36544, 'thirty-six thousand five hundred forty-four'),\n(11787, 39453, 'thirty-nine thousand four hundred fifty-three'),\n(11788, 35472, 'thirty-five thousand four hundred seventy-two'),\n(11789, 95839, 'ninety-five thousand eight hundred thirty-nine'),\n(11790, 65438, 'sixty-five thousand four hundred thirty-eight'),\n(11791, 80881, 'eighty thousand eight hundred eighty-one'),\n(11792, 91049, 'ninety-one thousand forty-nine'),\n(11793, 45401, 'forty-five thousand four hundred one'),\n(11794, 56910, 'fifty-six thousand nine hundred ten'),\n(11795, 59246, 'fifty-nine thousand two hundred forty-six'),\n(11796, 60146, 'sixty thousand one hundred forty-six'),\n(11797, 50273, 'fifty thousand two hundred seventy-three'),\n(11798, 48601, 'forty-eight thousand six hundred one'),\n(11799, 32324, 'thirty-two thousand three hundred twenty-four'),\n(11800, 36917, 'thirty-six thousand nine hundred seventeen'),\n(11801, 8041, 'eight thousand forty-one'),\n(11802, 57508, 'fifty-seven thousand five hundred eight'),\n(11803, 88699, 'eighty-eight thousand six hundred ninety-nine'),\n(11804, 56013, 'fifty-six thousand thirteen'),\n(11805, 89561, 'eighty-nine thousand five hundred sixty-one'),\n(11806, 35853, 'thirty-five thousand eight hundred fifty-three'),\n(11807, 91112, 'ninety-one thousand one hundred twelve'),\n(11808, 72755, 'seventy-two thousand seven hundred fifty-five'),\n(11809, 78468, 'seventy-eight thousand four hundred sixty-eight'),\n(11810, 8638, 'eight thousand six hundred thirty-eight'),\n(11811, 51627, 'fifty-one thousand six hundred twenty-seven'),\n(11812, 15833, 'fifteen thousand eight hundred thirty-three'),\n(11813, 55768, 'fifty-five thousand seven hundred sixty-eight'),\n(11814, 51803, 'fifty-one thousand eight hundred three'),\n(11815, 87582, 'eighty-seven thousand five hundred eighty-two'),\n(11816, 12511, 'twelve thousand five hundred eleven'),\n(11817, 31315, 'thirty-one thousand three hundred fifteen'),\n(11818, 65312, 'sixty-five thousand three hundred twelve'),\n(11819, 67665, 'sixty-seven thousand six hundred sixty-five'),\n(11820, 43973, 'forty-three thousand nine hundred seventy-three'),\n(11821, 43589, 'forty-three thousand five hundred eighty-nine'),\n(11822, 5111, 'five thousand one hundred eleven'),\n(11823, 43796, 'forty-three thousand seven hundred ninety-six'),\n(11824, 65904, 'sixty-five thousand nine hundred four'),\n(11825, 69766, 'sixty-nine thousand seven hundred sixty-six'),\n(11826, 19447, 'nineteen thousand four hundred forty-seven'),\n(11827, 20647, 'twenty thousand six hundred forty-seven'),\n(11828, 6613, 'six thousand six hundred thirteen'),\n(11829, 62267, 'sixty-two thousand two hundred sixty-seven'),\n(11830, 30086, 'thirty thousand eighty-six'),\n(11831, 10725, 'ten thousand seven hundred twenty-five'),\n(11832, 3074, 'three thousand seventy-four'),\n(11833, 19696, 'nineteen thousand six hundred ninety-six'),\n(11834, 22933, 'twenty-two thousand nine hundred thirty-three'),\n(11835, 67482, 'sixty-seven thousand four hundred eighty-two'),\n(11836, 79397, 'seventy-nine thousand three hundred ninety-seven'),\n(11837, 86421, 'eighty-six thousand four hundred twenty-one'),\n(11838, 39226, 'thirty-nine thousand two hundred twenty-six'),\n(11839, 29997, 'twenty-nine thousand nine hundred ninety-seven'),\n(11840, 79509, 'seventy-nine thousand five hundred nine'),\n(11841, 44657, 'forty-four thousand six hundred fifty-seven'),\n(11842, 63587, 'sixty-three thousand five hundred eighty-seven'),\n(11843, 14479, 'fourteen thousand four hundred seventy-nine'),\n(11844, 4629, 'four thousand six hundred twenty-nine'),\n(11845, 74761, 'seventy-four thousand seven hundred sixty-one'),\n(11846, 9036, 'nine thousand thirty-six'),\n(11847, 25931, 'twenty-five thousand nine hundred thirty-one'),\n(11848, 91702, 'ninety-one thousand seven hundred two'),\n(11849, 63578, 'sixty-three thousand five hundred seventy-eight'),\n(11850, 78491, 'seventy-eight thousand four hundred ninety-one'),\n(11851, 50923, 'fifty thousand nine hundred twenty-three'),\n(11852, 28873, 'twenty-eight thousand eight hundred seventy-three'),\n(11853, 28932, 'twenty-eight thousand nine hundred thirty-two'),\n(11854, 73152, 'seventy-three thousand one hundred fifty-two'),\n(11855, 44726, 'forty-four thousand seven hundred twenty-six'),\n(11856, 61010, 'sixty-one thousand ten'),\n(11857, 70973, 'seventy thousand nine hundred seventy-three'),\n(11858, 77361, 'seventy-seven thousand three hundred sixty-one'),\n(11859, 21841, 'twenty-one thousand eight hundred forty-one'),\n(11860, 42493, 'forty-two thousand four hundred ninety-three'),\n(11861, 6008, 'six thousand eight'),\n(11862, 33090, 'thirty-three thousand ninety'),\n(11863, 24484, 'twenty-four thousand four hundred eighty-four'),\n(11864, 82338, 'eighty-two thousand three hundred thirty-eight'),\n(11865, 72875, 'seventy-two thousand eight hundred seventy-five'),\n(11866, 53087, 'fifty-three thousand eighty-seven'),\n(11867, 38368, 'thirty-eight thousand three hundred sixty-eight'),\n(11868, 15277, 'fifteen thousand two hundred seventy-seven'),\n(11869, 38838, 'thirty-eight thousand eight hundred thirty-eight'),\n(11870, 85835, 'eighty-five thousand eight hundred thirty-five'),\n(11871, 2091, 'two thousand ninety-one'),\n(11872, 9794, 'nine thousand seven hundred ninety-four'),\n(11873, 89091, 'eighty-nine thousand ninety-one'),\n(11874, 74736, 'seventy-four thousand seven hundred thirty-six'),\n(11875, 29798, 'twenty-nine thousand seven hundred ninety-eight'),\n(11876, 27035, 'twenty-seven thousand thirty-five'),\n(11877, 12553, 'twelve thousand five hundred fifty-three'),\n(11878, 73894, 'seventy-three thousand eight hundred ninety-four'),\n(11879, 73009, 'seventy-three thousand nine'),\n(11880, 6554, 'six thousand five hundred fifty-four'),\n(11881, 87612, 'eighty-seven thousand six hundred twelve'),\n(11882, 94342, 'ninety-four thousand three hundred forty-two'),\n(11883, 42012, 'forty-two thousand twelve'),\n(11884, 1825, 'one thousand eight hundred twenty-five'),\n(11885, 90919, 'ninety thousand nine hundred nineteen'),\n(11886, 50519, 'fifty thousand five hundred nineteen'),\n(11887, 6022, 'six thousand twenty-two'),\n(11888, 3404, 'three thousand four hundred four'),\n(11889, 97645, 'ninety-seven thousand six hundred forty-five'),\n(11890, 32575, 'thirty-two thousand five hundred seventy-five'),\n(11891, 3982, 'three thousand nine hundred eighty-two'),\n(11892, 71443, 'seventy-one thousand four hundred forty-three'),\n(11893, 42456, 'forty-two thousand four hundred fifty-six'),\n(11894, 47404, 'forty-seven thousand four hundred four'),\n(11895, 97548, 'ninety-seven thousand five hundred forty-eight'),\n(11896, 55393, 'fifty-five thousand three hundred ninety-three'),\n(11897, 10696, 'ten thousand six hundred ninety-six'),\n(11898, 15414, 'fifteen thousand four hundred fourteen'),\n(11899, 87596, 'eighty-seven thousand five hundred ninety-six'),\n(11900, 19344, 'nineteen thousand three hundred forty-four'),\n(11901, 61027, 'sixty-one thousand twenty-seven'),\n(11902, 14105, 'fourteen thousand one hundred five'),\n(11903, 45470, 'forty-five thousand four hundred seventy'),\n(11904, 31957, 'thirty-one thousand nine hundred fifty-seven'),\n(11905, 1912, 'one thousand nine hundred twelve'),\n(11906, 95194, 'ninety-five thousand one hundred ninety-four'),\n(11907, 48183, 'forty-eight thousand one hundred eighty-three'),\n(11908, 75915, 'seventy-five thousand nine hundred fifteen'),\n(11909, 97717, 'ninety-seven thousand seven hundred seventeen'),\n(11910, 34737, 'thirty-four thousand seven hundred thirty-seven'),\n(11911, 67401, 'sixty-seven thousand four hundred one'),\n(11912, 62222, 'sixty-two thousand two hundred twenty-two'),\n(11913, 37064, 'thirty-seven thousand sixty-four'),\n(11914, 81917, 'eighty-one thousand nine hundred seventeen'),\n(11915, 71965, 'seventy-one thousand nine hundred sixty-five'),\n(11916, 7275, 'seven thousand two hundred seventy-five'),\n(11917, 20064, 'twenty thousand sixty-four'),\n(11918, 16388, 'sixteen thousand three hundred eighty-eight'),\n(11919, 62706, 'sixty-two thousand seven hundred six'),\n(11920, 50645, 'fifty thousand six hundred forty-five'),\n(11921, 15051, 'fifteen thousand fifty-one'),\n(11922, 51706, 'fifty-one thousand seven hundred six'),\n(11923, 81934, 'eighty-one thousand nine hundred thirty-four'),\n(11924, 70976, 'seventy thousand nine hundred seventy-six'),\n(11925, 503, 'five hundred three'),\n(11926, 78888, 'seventy-eight thousand eight hundred eighty-eight'),\n(11927, 58858, 'fifty-eight thousand eight hundred fifty-eight'),\n(11928, 93364, 'ninety-three thousand three hundred sixty-four'),\n(11929, 95068, 'ninety-five thousand sixty-eight'),\n(11930, 84890, 'eighty-four thousand eight hundred ninety'),\n(11931, 55955, 'fifty-five thousand nine hundred fifty-five'),\n(11932, 68322, 'sixty-eight thousand three hundred twenty-two'),\n(11933, 91462, 'ninety-one thousand four hundred sixty-two'),\n(11934, 14983, 'fourteen thousand nine hundred eighty-three'),\n(11935, 74169, 'seventy-four thousand one hundred sixty-nine'),\n(11936, 16367, 'sixteen thousand three hundred sixty-seven'),\n(11937, 71572, 'seventy-one thousand five hundred seventy-two'),\n(11938, 72172, 'seventy-two thousand one hundred seventy-two'),\n(11939, 58667, 'fifty-eight thousand six hundred sixty-seven'),\n(11940, 75015, 'seventy-five thousand fifteen'),\n(11941, 5744, 'five thousand seven hundred forty-four'),\n(11942, 72618, 'seventy-two thousand six hundred eighteen'),\n(11943, 27111, 'twenty-seven thousand one hundred eleven'),\n(11944, 78011, 'seventy-eight thousand eleven'),\n(11945, 46133, 'forty-six thousand one hundred thirty-three'),\n(11946, 18135, 'eighteen thousand one hundred thirty-five'),\n(11947, 38877, 'thirty-eight thousand eight hundred seventy-seven'),\n(11948, 53753, 'fifty-three thousand seven hundred fifty-three'),\n(11949, 73991, 'seventy-three thousand nine hundred ninety-one'),\n(11950, 83165, 'eighty-three thousand one hundred sixty-five'),\n(11951, 61627, 'sixty-one thousand six hundred twenty-seven'),\n(11952, 84238, 'eighty-four thousand two hundred thirty-eight'),\n(11953, 10115, 'ten thousand one hundred fifteen'),\n(11954, 85230, 'eighty-five thousand two hundred thirty'),\n(11955, 7217, 'seven thousand two hundred seventeen'),\n(11956, 35963, 'thirty-five thousand nine hundred sixty-three'),\n(11957, 9498, 'nine thousand four hundred ninety-eight'),\n(11958, 66553, 'sixty-six thousand five hundred fifty-three'),\n(11959, 38111, 'thirty-eight thousand one hundred eleven'),\n(11960, 43959, 'forty-three thousand nine hundred fifty-nine'),\n(11961, 63156, 'sixty-three thousand one hundred fifty-six'),\n(11962, 9518, 'nine thousand five hundred eighteen'),\n(11963, 97171, 'ninety-seven thousand one hundred seventy-one'),\n(11964, 86771, 'eighty-six thousand seven hundred seventy-one'),\n(11965, 69, 'sixty-nine'),\n(11966, 71894, 'seventy-one thousand eight hundred ninety-four'),\n(11967, 79599, 'seventy-nine thousand five hundred ninety-nine'),\n(11968, 24985, 'twenty-four thousand nine hundred eighty-five'),\n(11969, 94272, 'ninety-four thousand two hundred seventy-two'),\n(11970, 62954, 'sixty-two thousand nine hundred fifty-four'),\n(11971, 20343, 'twenty thousand three hundred forty-three'),\n(11972, 67213, 'sixty-seven thousand two hundred thirteen'),\n(11973, 3899, 'three thousand eight hundred ninety-nine'),\n(11974, 36809, 'thirty-six thousand eight hundred nine'),\n(11975, 12182, 'twelve thousand one hundred eighty-two'),\n(11976, 25246, 'twenty-five thousand two hundred forty-six'),\n(11977, 44154, 'forty-four thousand one hundred fifty-four'),\n(11978, 863, 'eight hundred sixty-three'),\n(11979, 17694, 'seventeen thousand six hundred ninety-four'),\n(11980, 90126, 'ninety thousand one hundred twenty-six'),\n(11981, 22030, 'twenty-two thousand thirty'),\n(11982, 97792, 'ninety-seven thousand seven hundred ninety-two'),\n(11983, 53180, 'fifty-three thousand one hundred eighty'),\n(11984, 28533, 'twenty-eight thousand five hundred thirty-three'),\n(11985, 18468, 'eighteen thousand four hundred sixty-eight'),\n(11986, 89998, 'eighty-nine thousand nine hundred ninety-eight'),\n(11987, 72171, 'seventy-two thousand one hundred seventy-one'),\n(11988, 84881, 'eighty-four thousand eight hundred eighty-one'),\n(11989, 18068, 'eighteen thousand sixty-eight'),\n(11990, 15229, 'fifteen thousand two hundred twenty-nine'),\n(11991, 69248, 'sixty-nine thousand two hundred forty-eight'),\n(11992, 16246, 'sixteen thousand two hundred forty-six'),\n(11993, 86592, 'eighty-six thousand five hundred ninety-two'),\n(11994, 20767, 'twenty thousand seven hundred sixty-seven'),\n(11995, 78504, 'seventy-eight thousand five hundred four'),\n(11996, 54547, 'fifty-four thousand five hundred forty-seven'),\n(11997, 48341, 'forty-eight thousand three hundred forty-one'),\n(11998, 40232, 'forty thousand two hundred thirty-two'),\n(11999, 68392, 'sixty-eight thousand three hundred ninety-two'),\n(12000, 51554, 'fifty-one thousand five hundred fifty-four'),\n(12001, 65801, 'sixty-five thousand eight hundred one'),\n(12002, 53753, 'fifty-three thousand seven hundred fifty-three'),\n(12003, 32296, 'thirty-two thousand two hundred ninety-six'),\n(12004, 87943, 'eighty-seven thousand nine hundred forty-three'),\n(12005, 44196, 'forty-four thousand one hundred ninety-six'),\n(12006, 16664, 'sixteen thousand six hundred sixty-four'),\n(12007, 2471, 'two thousand four hundred seventy-one'),\n(12008, 83255, 'eighty-three thousand two hundred fifty-five'),\n(12009, 86819, 'eighty-six thousand eight hundred nineteen'),\n(12010, 26459, 'twenty-six thousand four hundred fifty-nine'),\n(12011, 63043, 'sixty-three thousand forty-three'),\n(12012, 42042, 'forty-two thousand forty-two'),\n(12013, 79976, 'seventy-nine thousand nine hundred seventy-six'),\n(12014, 38489, 'thirty-eight thousand four hundred eighty-nine'),\n(12015, 10762, 'ten thousand seven hundred sixty-two'),\n(12016, 84345, 'eighty-four thousand three hundred forty-five'),\n(12017, 34126, 'thirty-four thousand one hundred twenty-six'),\n(12018, 92073, 'ninety-two thousand seventy-three'),\n(12019, 18829, 'eighteen thousand eight hundred twenty-nine'),\n(12020, 93695, 'ninety-three thousand six hundred ninety-five'),\n(12021, 77837, 'seventy-seven thousand eight hundred thirty-seven'),\n(12022, 70889, 'seventy thousand eight hundred eighty-nine'),\n(12023, 24732, 'twenty-four thousand seven hundred thirty-two'),\n(12024, 33022, 'thirty-three thousand twenty-two'),\n(12025, 63120, 'sixty-three thousand one hundred twenty'),\n(12026, 55172, 'fifty-five thousand one hundred seventy-two'),\n(12027, 10044, 'ten thousand forty-four'),\n(12028, 55713, 'fifty-five thousand seven hundred thirteen'),\n(12029, 95963, 'ninety-five thousand nine hundred sixty-three'),\n(12030, 47040, 'forty-seven thousand forty'),\n(12031, 32114, 'thirty-two thousand one hundred fourteen'),\n(12032, 53632, 'fifty-three thousand six hundred thirty-two'),\n(12033, 26503, 'twenty-six thousand five hundred three'),\n(12034, 202, 'two hundred two'),\n(12035, 64647, 'sixty-four thousand six hundred forty-seven'),\n(12036, 27092, 'twenty-seven thousand ninety-two'),\n(12037, 93899, 'ninety-three thousand eight hundred ninety-nine'),\n(12038, 18597, 'eighteen thousand five hundred ninety-seven'),\n(12039, 43637, 'forty-three thousand six hundred thirty-seven'),\n(12040, 24440, 'twenty-four thousand four hundred forty'),\n(12041, 33105, 'thirty-three thousand one hundred five'),\n(12042, 39500, 'thirty-nine thousand five hundred'),\n(12043, 27059, 'twenty-seven thousand fifty-nine'),\n(12044, 58717, 'fifty-eight thousand seven hundred seventeen'),\n(12045, 53111, 'fifty-three thousand one hundred eleven'),\n(12046, 41779, 'forty-one thousand seven hundred seventy-nine'),\n(12047, 15163, 'fifteen thousand one hundred sixty-three'),\n(12048, 29164, 'twenty-nine thousand one hundred sixty-four'),\n(12049, 89874, 'eighty-nine thousand eight hundred seventy-four'),\n(12050, 21246, 'twenty-one thousand two hundred forty-six'),\n(12051, 37226, 'thirty-seven thousand two hundred twenty-six'),\n(12052, 24850, 'twenty-four thousand eight hundred fifty'),\n(12053, 54187, 'fifty-four thousand one hundred eighty-seven'),\n(12054, 95951, 'ninety-five thousand nine hundred fifty-one'),\n(12055, 62399, 'sixty-two thousand three hundred ninety-nine'),\n(12056, 83078, 'eighty-three thousand seventy-eight'),\n(12057, 6860, 'six thousand eight hundred sixty'),\n(12058, 60798, 'sixty thousand seven hundred ninety-eight'),\n(12059, 76887, 'seventy-six thousand eight hundred eighty-seven'),\n(12060, 89067, 'eighty-nine thousand sixty-seven'),\n(12061, 94654, 'ninety-four thousand six hundred fifty-four'),\n(12062, 35551, 'thirty-five thousand five hundred fifty-one'),\n(12063, 82960, 'eighty-two thousand nine hundred sixty'),\n(12064, 36925, 'thirty-six thousand nine hundred twenty-five'),\n(12065, 8681, 'eight thousand six hundred eighty-one'),\n(12066, 93072, 'ninety-three thousand seventy-two'),\n(12067, 41628, 'forty-one thousand six hundred twenty-eight'),\n(12068, 90514, 'ninety thousand five hundred fourteen'),\n(12069, 22772, 'twenty-two thousand seven hundred seventy-two'),\n(12070, 54182, 'fifty-four thousand one hundred eighty-two'),\n(12071, 29198, 'twenty-nine thousand one hundred ninety-eight'),\n(12072, 50855, 'fifty thousand eight hundred fifty-five'),\n(12073, 4904, 'four thousand nine hundred four'),\n(12074, 94642, 'ninety-four thousand six hundred forty-two'),\n(12075, 10151, 'ten thousand one hundred fifty-one'),\n(12076, 61006, 'sixty-one thousand six'),\n(12077, 51419, 'fifty-one thousand four hundred nineteen'),\n(12078, 2005, 'two thousand five'),\n(12079, 29342, 'twenty-nine thousand three hundred forty-two'),\n(12080, 85539, 'eighty-five thousand five hundred thirty-nine'),\n(12081, 29893, 'twenty-nine thousand eight hundred ninety-three'),\n(12082, 46842, 'forty-six thousand eight hundred forty-two'),\n(12083, 6470, 'six thousand four hundred seventy'),\n(12084, 890, 'eight hundred ninety'),\n(12085, 5458, 'five thousand four hundred fifty-eight'),\n(12086, 95722, 'ninety-five thousand seven hundred twenty-two'),\n(12087, 34434, 'thirty-four thousand four hundred thirty-four'),\n(12088, 65788, 'sixty-five thousand seven hundred eighty-eight'),\n(12089, 58906, 'fifty-eight thousand nine hundred six'),\n(12090, 66846, 'sixty-six thousand eight hundred forty-six'),\n(12091, 62130, 'sixty-two thousand one hundred thirty'),\n(12092, 18517, 'eighteen thousand five hundred seventeen'),\n(12093, 1055, 'one thousand fifty-five'),\n(12094, 86514, 'eighty-six thousand five hundred fourteen'),\n(12095, 87724, 'eighty-seven thousand seven hundred twenty-four'),\n(12096, 38686, 'thirty-eight thousand six hundred eighty-six'),\n(12097, 52524, 'fifty-two thousand five hundred twenty-four'),\n(12098, 68645, 'sixty-eight thousand six hundred forty-five'),\n(12099, 86971, 'eighty-six thousand nine hundred seventy-one'),\n(12100, 6454, 'six thousand four hundred fifty-four'),\n(12101, 13352, 'thirteen thousand three hundred fifty-two'),\n(12102, 2788, 'two thousand seven hundred eighty-eight'),\n(12103, 24667, 'twenty-four thousand six hundred sixty-seven'),\n(12104, 27157, 'twenty-seven thousand one hundred fifty-seven'),\n(12105, 74556, 'seventy-four thousand five hundred fifty-six'),\n(12106, 17054, 'seventeen thousand fifty-four'),\n(12107, 28219, 'twenty-eight thousand two hundred nineteen'),\n(12108, 99698, 'ninety-nine thousand six hundred ninety-eight'),\n(12109, 55770, 'fifty-five thousand seven hundred seventy'),\n(12110, 95691, 'ninety-five thousand six hundred ninety-one'),\n(12111, 77680, 'seventy-seven thousand six hundred eighty'),\n(12112, 82557, 'eighty-two thousand five hundred fifty-seven'),\n(12113, 84289, 'eighty-four thousand two hundred eighty-nine'),\n(12114, 92640, 'ninety-two thousand six hundred forty'),\n(12115, 24198, 'twenty-four thousand one hundred ninety-eight'),\n(12116, 43715, 'forty-three thousand seven hundred fifteen'),\n(12117, 94437, 'ninety-four thousand four hundred thirty-seven'),\n(12118, 72542, 'seventy-two thousand five hundred forty-two'),\n(12119, 97924, 'ninety-seven thousand nine hundred twenty-four'),\n(12120, 75797, 'seventy-five thousand seven hundred ninety-seven'),\n(12121, 89770, 'eighty-nine thousand seven hundred seventy'),\n(12122, 29356, 'twenty-nine thousand three hundred fifty-six'),\n(12123, 79476, 'seventy-nine thousand four hundred seventy-six'),\n(12124, 11380, 'eleven thousand three hundred eighty'),\n(12125, 35412, 'thirty-five thousand four hundred twelve'),\n(12126, 86036, 'eighty-six thousand thirty-six'),\n(12127, 51651, 'fifty-one thousand six hundred fifty-one'),\n(12128, 15728, 'fifteen thousand seven hundred twenty-eight'),\n(12129, 50357, 'fifty thousand three hundred fifty-seven'),\n(12130, 39694, 'thirty-nine thousand six hundred ninety-four'),\n(12131, 51963, 'fifty-one thousand nine hundred sixty-three'),\n(12132, 46895, 'forty-six thousand eight hundred ninety-five'),\n(12133, 17207, 'seventeen thousand two hundred seven'),\n(12134, 49024, 'forty-nine thousand twenty-four'),\n(12135, 78280, 'seventy-eight thousand two hundred eighty'),\n(12136, 83475, 'eighty-three thousand four hundred seventy-five'),\n(12137, 63565, 'sixty-three thousand five hundred sixty-five'),\n(12138, 54154, 'fifty-four thousand one hundred fifty-four'),\n(12139, 57673, 'fifty-seven thousand six hundred seventy-three'),\n(12140, 85932, 'eighty-five thousand nine hundred thirty-two'),\n(12141, 31555, 'thirty-one thousand five hundred fifty-five'),\n(12142, 9508, 'nine thousand five hundred eight'),\n(12143, 73567, 'seventy-three thousand five hundred sixty-seven'),\n(12144, 44988, 'forty-four thousand nine hundred eighty-eight'),\n(12145, 21127, 'twenty-one thousand one hundred twenty-seven'),\n(12146, 61012, 'sixty-one thousand twelve'),\n(12147, 77837, 'seventy-seven thousand eight hundred thirty-seven'),\n(12148, 73851, 'seventy-three thousand eight hundred fifty-one'),\n(12149, 2111, 'two thousand one hundred eleven'),\n(12150, 73767, 'seventy-three thousand seven hundred sixty-seven'),\n(12151, 62354, 'sixty-two thousand three hundred fifty-four'),\n(12152, 61977, 'sixty-one thousand nine hundred seventy-seven'),\n(12153, 73744, 'seventy-three thousand seven hundred forty-four'),\n(12154, 95066, 'ninety-five thousand sixty-six'),\n(12155, 31700, 'thirty-one thousand seven hundred'),\n(12156, 72926, 'seventy-two thousand nine hundred twenty-six'),\n(12157, 72676, 'seventy-two thousand six hundred seventy-six'),\n(12158, 72285, 'seventy-two thousand two hundred eighty-five'),\n(12159, 49915, 'forty-nine thousand nine hundred fifteen'),\n(12160, 7776, 'seven thousand seven hundred seventy-six'),\n(12161, 43821, 'forty-three thousand eight hundred twenty-one'),\n(12162, 28575, 'twenty-eight thousand five hundred seventy-five'),\n(12163, 92576, 'ninety-two thousand five hundred seventy-six'),\n(12164, 98015, 'ninety-eight thousand fifteen'),\n(12165, 88258, 'eighty-eight thousand two hundred fifty-eight'),\n(12166, 95707, 'ninety-five thousand seven hundred seven'),\n(12167, 24589, 'twenty-four thousand five hundred eighty-nine'),\n(12168, 46285, 'forty-six thousand two hundred eighty-five'),\n(12169, 5068, 'five thousand sixty-eight'),\n(12170, 51316, 'fifty-one thousand three hundred sixteen'),\n(12171, 15037, 'fifteen thousand thirty-seven'),\n(12172, 66199, 'sixty-six thousand one hundred ninety-nine'),\n(12173, 33768, 'thirty-three thousand seven hundred sixty-eight'),\n(12174, 24122, 'twenty-four thousand one hundred twenty-two'),\n(12175, 17389, 'seventeen thousand three hundred eighty-nine'),\n(12176, 65942, 'sixty-five thousand nine hundred forty-two'),\n(12177, 52529, 'fifty-two thousand five hundred twenty-nine'),\n(12178, 68202, 'sixty-eight thousand two hundred two'),\n(12179, 72068, 'seventy-two thousand sixty-eight'),\n(12180, 83937, 'eighty-three thousand nine hundred thirty-seven'),\n(12181, 61400, 'sixty-one thousand four hundred'),\n(12182, 13197, 'thirteen thousand one hundred ninety-seven'),\n(12183, 13985, 'thirteen thousand nine hundred eighty-five'),\n(12184, 52156, 'fifty-two thousand one hundred fifty-six'),\n(12185, 40126, 'forty thousand one hundred twenty-six'),\n(12186, 58642, 'fifty-eight thousand six hundred forty-two'),\n(12187, 58419, 'fifty-eight thousand four hundred nineteen'),\n(12188, 49468, 'forty-nine thousand four hundred sixty-eight'),\n(12189, 72777, 'seventy-two thousand seven hundred seventy-seven'),\n(12190, 95503, 'ninety-five thousand five hundred three'),\n(12191, 49326, 'forty-nine thousand three hundred twenty-six'),\n(12192, 42014, 'forty-two thousand fourteen'),\n(12193, 79926, 'seventy-nine thousand nine hundred twenty-six'),\n(12194, 57119, 'fifty-seven thousand one hundred nineteen'),\n(12195, 42271, 'forty-two thousand two hundred seventy-one'),\n(12196, 23936, 'twenty-three thousand nine hundred thirty-six'),\n(12197, 42816, 'forty-two thousand eight hundred sixteen'),\n(12198, 25696, 'twenty-five thousand six hundred ninety-six'),\n(12199, 37571, 'thirty-seven thousand five hundred seventy-one'),\n(12200, 59291, 'fifty-nine thousand two hundred ninety-one'),\n(12201, 15587, 'fifteen thousand five hundred eighty-seven'),\n(12202, 38850, 'thirty-eight thousand eight hundred fifty'),\n(12203, 96783, 'ninety-six thousand seven hundred eighty-three'),\n(12204, 10262, 'ten thousand two hundred sixty-two'),\n(12205, 19792, 'nineteen thousand seven hundred ninety-two'),\n(12206, 25424, 'twenty-five thousand four hundred twenty-four'),\n(12207, 86536, 'eighty-six thousand five hundred thirty-six'),\n(12208, 91299, 'ninety-one thousand two hundred ninety-nine'),\n(12209, 9903, 'nine thousand nine hundred three'),\n(12210, 75237, 'seventy-five thousand two hundred thirty-seven'),\n(12211, 53924, 'fifty-three thousand nine hundred twenty-four'),\n(12212, 25495, 'twenty-five thousand four hundred ninety-five'),\n(12213, 67720, 'sixty-seven thousand seven hundred twenty'),\n(12214, 33077, 'thirty-three thousand seventy-seven'),\n(12215, 65158, 'sixty-five thousand one hundred fifty-eight'),\n(12216, 67488, 'sixty-seven thousand four hundred eighty-eight'),\n(12217, 25822, 'twenty-five thousand eight hundred twenty-two'),\n(12218, 38798, 'thirty-eight thousand seven hundred ninety-eight'),\n(12219, 92248, 'ninety-two thousand two hundred forty-eight'),\n(12220, 3957, 'three thousand nine hundred fifty-seven'),\n(12221, 23961, 'twenty-three thousand nine hundred sixty-one'),\n(12222, 83061, 'eighty-three thousand sixty-one'),\n(12223, 47859, 'forty-seven thousand eight hundred fifty-nine'),\n(12224, 23347, 'twenty-three thousand three hundred forty-seven'),\n(12225, 78524, 'seventy-eight thousand five hundred twenty-four'),\n(12226, 97047, 'ninety-seven thousand forty-seven'),\n(12227, 27575, 'twenty-seven thousand five hundred seventy-five'),\n(12228, 10705, 'ten thousand seven hundred five'),\n(12229, 49985, 'forty-nine thousand nine hundred eighty-five'),\n(12230, 38058, 'thirty-eight thousand fifty-eight'),\n(12231, 44581, 'forty-four thousand five hundred eighty-one'),\n(12232, 91085, 'ninety-one thousand eighty-five'),\n(12233, 18906, 'eighteen thousand nine hundred six'),\n(12234, 74999, 'seventy-four thousand nine hundred ninety-nine'),\n(12235, 93218, 'ninety-three thousand two hundred eighteen'),\n(12236, 48374, 'forty-eight thousand three hundred seventy-four'),\n(12237, 20996, 'twenty thousand nine hundred ninety-six'),\n(12238, 89650, 'eighty-nine thousand six hundred fifty'),\n(12239, 42672, 'forty-two thousand six hundred seventy-two'),\n(12240, 44001, 'forty-four thousand one'),\n(12241, 70701, 'seventy thousand seven hundred one'),\n(12242, 8247, 'eight thousand two hundred forty-seven'),\n(12243, 51628, 'fifty-one thousand six hundred twenty-eight'),\n(12244, 63409, 'sixty-three thousand four hundred nine'),\n(12245, 54207, 'fifty-four thousand two hundred seven'),\n(12246, 42940, 'forty-two thousand nine hundred forty'),\n(12247, 18088, 'eighteen thousand eighty-eight'),\n(12248, 58027, 'fifty-eight thousand twenty-seven'),\n(12249, 2377, 'two thousand three hundred seventy-seven'),\n(12250, 75368, 'seventy-five thousand three hundred sixty-eight'),\n(12251, 75268, 'seventy-five thousand two hundred sixty-eight'),\n(12252, 30975, 'thirty thousand nine hundred seventy-five'),\n(12253, 20743, 'twenty thousand seven hundred forty-three'),\n(12254, 88758, 'eighty-eight thousand seven hundred fifty-eight'),\n(12255, 84075, 'eighty-four thousand seventy-five'),\n(12256, 68101, 'sixty-eight thousand one hundred one'),\n(12257, 99073, 'ninety-nine thousand seventy-three'),\n(12258, 40425, 'forty thousand four hundred twenty-five'),\n(12259, 72976, 'seventy-two thousand nine hundred seventy-six'),\n(12260, 94909, 'ninety-four thousand nine hundred nine'),\n(12261, 14725, 'fourteen thousand seven hundred twenty-five'),\n(12262, 71352, 'seventy-one thousand three hundred fifty-two'),\n(12263, 70754, 'seventy thousand seven hundred fifty-four'),\n(12264, 56111, 'fifty-six thousand one hundred eleven'),\n(12265, 24724, 'twenty-four thousand seven hundred twenty-four'),\n(12266, 82841, 'eighty-two thousand eight hundred forty-one'),\n(12267, 14546, 'fourteen thousand five hundred forty-six'),\n(12268, 68833, 'sixty-eight thousand eight hundred thirty-three'),\n(12269, 13914, 'thirteen thousand nine hundred fourteen'),\n(12270, 94002, 'ninety-four thousand two'),\n(12271, 17228, 'seventeen thousand two hundred twenty-eight'),\n(12272, 50320, 'fifty thousand three hundred twenty'),\n(12273, 81657, 'eighty-one thousand six hundred fifty-seven'),\n(12274, 26352, 'twenty-six thousand three hundred fifty-two'),\n(12275, 33434, 'thirty-three thousand four hundred thirty-four'),\n(12276, 63140, 'sixty-three thousand one hundred forty'),\n(12277, 61847, 'sixty-one thousand eight hundred forty-seven'),\n(12278, 60849, 'sixty thousand eight hundred forty-nine'),\n(12279, 58925, 'fifty-eight thousand nine hundred twenty-five'),\n(12280, 82246, 'eighty-two thousand two hundred forty-six'),\n(12281, 75025, 'seventy-five thousand twenty-five'),\n(12282, 16427, 'sixteen thousand four hundred twenty-seven'),\n(12283, 84464, 'eighty-four thousand four hundred sixty-four'),\n(12284, 85030, 'eighty-five thousand thirty'),\n(12285, 54040, 'fifty-four thousand forty'),\n(12286, 57978, 'fifty-seven thousand nine hundred seventy-eight'),\n(12287, 32230, 'thirty-two thousand two hundred thirty'),\n(12288, 62464, 'sixty-two thousand four hundred sixty-four'),\n(12289, 6503, 'six thousand five hundred three'),\n(12290, 11213, 'eleven thousand two hundred thirteen'),\n(12291, 20569, 'twenty thousand five hundred sixty-nine'),\n(12292, 76107, 'seventy-six thousand one hundred seven'),\n(12293, 69219, 'sixty-nine thousand two hundred nineteen'),\n(12294, 75998, 'seventy-five thousand nine hundred ninety-eight'),\n(12295, 76402, 'seventy-six thousand four hundred two'),\n(12296, 42049, 'forty-two thousand forty-nine'),\n(12297, 44074, 'forty-four thousand seventy-four'),\n(12298, 97327, 'ninety-seven thousand three hundred twenty-seven'),\n(12299, 88499, 'eighty-eight thousand four hundred ninety-nine'),\n(12300, 88271, 'eighty-eight thousand two hundred seventy-one'),\n(12301, 91414, 'ninety-one thousand four hundred fourteen'),\n(12302, 25551, 'twenty-five thousand five hundred fifty-one'),\n(12303, 92869, 'ninety-two thousand eight hundred sixty-nine'),\n(12304, 17470, 'seventeen thousand four hundred seventy'),\n(12305, 49322, 'forty-nine thousand three hundred twenty-two'),\n(12306, 4405, 'four thousand four hundred five'),\n(12307, 49683, 'forty-nine thousand six hundred eighty-three'),\n(12308, 93222, 'ninety-three thousand two hundred twenty-two'),\n(12309, 36708, 'thirty-six thousand seven hundred eight'),\n(12310, 66742, 'sixty-six thousand seven hundred forty-two'),\n(12311, 34969, 'thirty-four thousand nine hundred sixty-nine'),\n(12312, 89482, 'eighty-nine thousand four hundred eighty-two'),\n(12313, 58554, 'fifty-eight thousand five hundred fifty-four'),\n(12314, 39993, 'thirty-nine thousand nine hundred ninety-three'),\n(12315, 50638, 'fifty thousand six hundred thirty-eight'),\n(12316, 4791, 'four thousand seven hundred ninety-one'),\n(12317, 66854, 'sixty-six thousand eight hundred fifty-four'),\n(12318, 25504, 'twenty-five thousand five hundred four'),\n(12319, 67298, 'sixty-seven thousand two hundred ninety-eight'),\n(12320, 7335, 'seven thousand three hundred thirty-five'),\n(12321, 89558, 'eighty-nine thousand five hundred fifty-eight'),\n(12322, 45790, 'forty-five thousand seven hundred ninety'),\n(12323, 48365, 'forty-eight thousand three hundred sixty-five'),\n(12324, 19106, 'nineteen thousand one hundred six'),\n(12325, 51267, 'fifty-one thousand two hundred sixty-seven'),\n(12326, 3146, 'three thousand one hundred forty-six'),\n(12327, 87813, 'eighty-seven thousand eight hundred thirteen'),\n(12328, 10331, 'ten thousand three hundred thirty-one'),\n(12329, 96012, 'ninety-six thousand twelve'),\n(12330, 28797, 'twenty-eight thousand seven hundred ninety-seven'),\n(12331, 91533, 'ninety-one thousand five hundred thirty-three'),\n(12332, 14340, 'fourteen thousand three hundred forty'),\n(12333, 52036, 'fifty-two thousand thirty-six'),\n(12334, 5733, 'five thousand seven hundred thirty-three'),\n(12335, 8866, 'eight thousand eight hundred sixty-six'),\n(12336, 11371, 'eleven thousand three hundred seventy-one'),\n(12337, 55413, 'fifty-five thousand four hundred thirteen'),\n(12338, 23904, 'twenty-three thousand nine hundred four'),\n(12339, 56802, 'fifty-six thousand eight hundred two'),\n(12340, 87067, 'eighty-seven thousand sixty-seven'),\n(12341, 83206, 'eighty-three thousand two hundred six'),\n(12342, 40947, 'forty thousand nine hundred forty-seven'),\n(12343, 72030, 'seventy-two thousand thirty'),\n(12344, 88626, 'eighty-eight thousand six hundred twenty-six'),\n(12345, 80309, 'eighty thousand three hundred nine'),\n(12346, 31106, 'thirty-one thousand one hundred six'),\n(12347, 33592, 'thirty-three thousand five hundred ninety-two'),\n(12348, 78295, 'seventy-eight thousand two hundred ninety-five'),\n(12349, 79065, 'seventy-nine thousand sixty-five'),\n(12350, 23927, 'twenty-three thousand nine hundred twenty-seven'),\n(12351, 54139, 'fifty-four thousand one hundred thirty-nine'),\n(12352, 83607, 'eighty-three thousand six hundred seven'),\n(12353, 97703, 'ninety-seven thousand seven hundred three'),\n(12354, 86390, 'eighty-six thousand three hundred ninety'),\n(12355, 81581, 'eighty-one thousand five hundred eighty-one'),\n(12356, 65125, 'sixty-five thousand one hundred twenty-five'),\n(12357, 25619, 'twenty-five thousand six hundred nineteen'),\n(12358, 45601, 'forty-five thousand six hundred one'),\n(12359, 65234, 'sixty-five thousand two hundred thirty-four'),\n(12360, 76715, 'seventy-six thousand seven hundred fifteen'),\n(12361, 35896, 'thirty-five thousand eight hundred ninety-six'),\n(12362, 69346, 'sixty-nine thousand three hundred forty-six'),\n(12363, 67174, 'sixty-seven thousand one hundred seventy-four'),\n(12364, 3094, 'three thousand ninety-four'),\n(12365, 558, 'five hundred fifty-eight'),\n(12366, 47389, 'forty-seven thousand three hundred eighty-nine'),\n(12367, 44635, 'forty-four thousand six hundred thirty-five'),\n(12368, 54662, 'fifty-four thousand six hundred sixty-two'),\n(12369, 32752, 'thirty-two thousand seven hundred fifty-two'),\n(12370, 78081, 'seventy-eight thousand eighty-one'),\n(12371, 33368, 'thirty-three thousand three hundred sixty-eight'),\n(12372, 31931, 'thirty-one thousand nine hundred thirty-one'),\n(12373, 43170, 'forty-three thousand one hundred seventy'),\n(12374, 71960, 'seventy-one thousand nine hundred sixty'),\n(12375, 38617, 'thirty-eight thousand six hundred seventeen'),\n(12376, 82807, 'eighty-two thousand eight hundred seven'),\n(12377, 10336, 'ten thousand three hundred thirty-six'),\n(12378, 1412, 'one thousand four hundred twelve'),\n(12379, 32118, 'thirty-two thousand one hundred eighteen'),\n(12380, 64392, 'sixty-four thousand three hundred ninety-two'),\n(12381, 42476, 'forty-two thousand four hundred seventy-six'),\n(12382, 27134, 'twenty-seven thousand one hundred thirty-four'),\n(12383, 47740, 'forty-seven thousand seven hundred forty'),\n(12384, 7011, 'seven thousand eleven'),\n(12385, 20480, 'twenty thousand four hundred eighty'),\n(12386, 78531, 'seventy-eight thousand five hundred thirty-one'),\n(12387, 71055, 'seventy-one thousand fifty-five'),\n(12388, 8399, 'eight thousand three hundred ninety-nine'),\n(12389, 58006, 'fifty-eight thousand six'),\n(12390, 69496, 'sixty-nine thousand four hundred ninety-six'),\n(12391, 96798, 'ninety-six thousand seven hundred ninety-eight'),\n(12392, 79086, 'seventy-nine thousand eighty-six'),\n(12393, 56704, 'fifty-six thousand seven hundred four'),\n(12394, 32766, 'thirty-two thousand seven hundred sixty-six'),\n(12395, 15365, 'fifteen thousand three hundred sixty-five'),\n(12396, 56636, 'fifty-six thousand six hundred thirty-six'),\n(12397, 52152, 'fifty-two thousand one hundred fifty-two'),\n(12398, 4018, 'four thousand eighteen'),\n(12399, 95012, 'ninety-five thousand twelve'),\n(12400, 43967, 'forty-three thousand nine hundred sixty-seven'),\n(12401, 30962, 'thirty thousand nine hundred sixty-two'),\n(12402, 51535, 'fifty-one thousand five hundred thirty-five'),\n(12403, 66800, 'sixty-six thousand eight hundred'),\n(12404, 46071, 'forty-six thousand seventy-one'),\n(12405, 63123, 'sixty-three thousand one hundred twenty-three'),\n(12406, 96410, 'ninety-six thousand four hundred ten'),\n(12407, 42174, 'forty-two thousand one hundred seventy-four'),\n(12408, 83887, 'eighty-three thousand eight hundred eighty-seven'),\n(12409, 24188, 'twenty-four thousand one hundred eighty-eight'),\n(12410, 41230, 'forty-one thousand two hundred thirty'),\n(12411, 57121, 'fifty-seven thousand one hundred twenty-one'),\n(12412, 47047, 'forty-seven thousand forty-seven'),\n(12413, 65933, 'sixty-five thousand nine hundred thirty-three'),\n(12414, 11440, 'eleven thousand four hundred forty'),\n(12415, 28993, 'twenty-eight thousand nine hundred ninety-three'),\n(12416, 43252, 'forty-three thousand two hundred fifty-two'),\n(12417, 59452, 'fifty-nine thousand four hundred fifty-two'),\n(12418, 67675, 'sixty-seven thousand six hundred seventy-five'),\n(12419, 4068, 'four thousand sixty-eight'),\n(12420, 51511, 'fifty-one thousand five hundred eleven'),\n(12421, 37323, 'thirty-seven thousand three hundred twenty-three'),\n(12422, 98598, 'ninety-eight thousand five hundred ninety-eight'),\n(12423, 70363, 'seventy thousand three hundred sixty-three'),\n(12424, 88471, 'eighty-eight thousand four hundred seventy-one'),\n(12425, 96800, 'ninety-six thousand eight hundred'),\n(12426, 66953, 'sixty-six thousand nine hundred fifty-three'),\n(12427, 93859, 'ninety-three thousand eight hundred fifty-nine'),\n(12428, 85522, 'eighty-five thousand five hundred twenty-two'),\n(12429, 83734, 'eighty-three thousand seven hundred thirty-four'),\n(12430, 8259, 'eight thousand two hundred fifty-nine'),\n(12431, 39924, 'thirty-nine thousand nine hundred twenty-four'),\n(12432, 75262, 'seventy-five thousand two hundred sixty-two'),\n(12433, 20752, 'twenty thousand seven hundred fifty-two'),\n(12434, 32105, 'thirty-two thousand one hundred five'),\n(12435, 16337, 'sixteen thousand three hundred thirty-seven'),\n(12436, 1699, 'one thousand six hundred ninety-nine'),\n(12437, 88600, 'eighty-eight thousand six hundred'),\n(12438, 15719, 'fifteen thousand seven hundred nineteen'),\n(12439, 46010, 'forty-six thousand ten'),\n(12440, 46329, 'forty-six thousand three hundred twenty-nine'),\n(12441, 60870, 'sixty thousand eight hundred seventy'),\n(12442, 15013, 'fifteen thousand thirteen'),\n(12443, 1396, 'one thousand three hundred ninety-six'),\n(12444, 9929, 'nine thousand nine hundred twenty-nine'),\n(12445, 82977, 'eighty-two thousand nine hundred seventy-seven'),\n(12446, 20123, 'twenty thousand one hundred twenty-three'),\n(12447, 18137, 'eighteen thousand one hundred thirty-seven'),\n(12448, 84531, 'eighty-four thousand five hundred thirty-one'),\n(12449, 22905, 'twenty-two thousand nine hundred five'),\n(12450, 8244, 'eight thousand two hundred forty-four'),\n(12451, 79957, 'seventy-nine thousand nine hundred fifty-seven'),\n(12452, 6762, 'six thousand seven hundred sixty-two'),\n(12453, 80350, 'eighty thousand three hundred fifty'),\n(12454, 24058, 'twenty-four thousand fifty-eight'),\n(12455, 28450, 'twenty-eight thousand four hundred fifty'),\n(12456, 25114, 'twenty-five thousand one hundred fourteen'),\n(12457, 25121, 'twenty-five thousand one hundred twenty-one'),\n(12458, 81767, 'eighty-one thousand seven hundred sixty-seven'),\n(12459, 32815, 'thirty-two thousand eight hundred fifteen'),\n(12460, 58684, 'fifty-eight thousand six hundred eighty-four'),\n(12461, 12150, 'twelve thousand one hundred fifty'),\n(12462, 25453, 'twenty-five thousand four hundred fifty-three'),\n(12463, 94481, 'ninety-four thousand four hundred eighty-one'),\n(12464, 25271, 'twenty-five thousand two hundred seventy-one'),\n(12465, 15510, 'fifteen thousand five hundred ten'),\n(12466, 37587, 'thirty-seven thousand five hundred eighty-seven'),\n(12467, 18037, 'eighteen thousand thirty-seven'),\n(12468, 47583, 'forty-seven thousand five hundred eighty-three'),\n(12469, 48867, 'forty-eight thousand eight hundred sixty-seven'),\n(12470, 50053, 'fifty thousand fifty-three'),\n(12471, 94736, 'ninety-four thousand seven hundred thirty-six'),\n(12472, 87965, 'eighty-seven thousand nine hundred sixty-five'),\n(12473, 55778, 'fifty-five thousand seven hundred seventy-eight'),\n(12474, 67748, 'sixty-seven thousand seven hundred forty-eight'),\n(12475, 34690, 'thirty-four thousand six hundred ninety'),\n(12476, 50922, 'fifty thousand nine hundred twenty-two'),\n(12477, 8715, 'eight thousand seven hundred fifteen'),\n(12478, 12945, 'twelve thousand nine hundred forty-five'),\n(12479, 68002, 'sixty-eight thousand two'),\n(12480, 15048, 'fifteen thousand forty-eight'),\n(12481, 91440, 'ninety-one thousand four hundred forty'),\n(12482, 51865, 'fifty-one thousand eight hundred sixty-five'),\n(12483, 11627, 'eleven thousand six hundred twenty-seven'),\n(12484, 98039, 'ninety-eight thousand thirty-nine'),\n(12485, 32256, 'thirty-two thousand two hundred fifty-six'),\n(12486, 99595, 'ninety-nine thousand five hundred ninety-five'),\n(12487, 29250, 'twenty-nine thousand two hundred fifty'),\n(12488, 77049, 'seventy-seven thousand forty-nine'),\n(12489, 86646, 'eighty-six thousand six hundred forty-six'),\n(12490, 41257, 'forty-one thousand two hundred fifty-seven'),\n(12491, 77597, 'seventy-seven thousand five hundred ninety-seven'),\n(12492, 9909, 'nine thousand nine hundred nine'),\n(12493, 72690, 'seventy-two thousand six hundred ninety'),\n(12494, 73231, 'seventy-three thousand two hundred thirty-one'),\n(12495, 1184, 'one thousand one hundred eighty-four'),\n(12496, 27663, 'twenty-seven thousand six hundred sixty-three'),\n(12497, 29064, 'twenty-nine thousand sixty-four'),\n(12498, 44542, 'forty-four thousand five hundred forty-two'),\n(12499, 50700, 'fifty thousand seven hundred'),\n(12500, 64527, 'sixty-four thousand five hundred twenty-seven'),\n(12501, 27776, 'twenty-seven thousand seven hundred seventy-six'),\n(12502, 71905, 'seventy-one thousand nine hundred five'),\n(12503, 63327, 'sixty-three thousand three hundred twenty-seven'),\n(12504, 24529, 'twenty-four thousand five hundred twenty-nine'),\n(12505, 53478, 'fifty-three thousand four hundred seventy-eight'),\n(12506, 41381, 'forty-one thousand three hundred eighty-one'),\n(12507, 12987, 'twelve thousand nine hundred eighty-seven'),\n(12508, 94291, 'ninety-four thousand two hundred ninety-one'),\n(12509, 83630, 'eighty-three thousand six hundred thirty'),\n(12510, 36087, 'thirty-six thousand eighty-seven'),\n(12511, 28941, 'twenty-eight thousand nine hundred forty-one'),\n(12512, 68723, 'sixty-eight thousand seven hundred twenty-three'),\n(12513, 36126, 'thirty-six thousand one hundred twenty-six'),\n(12514, 63247, 'sixty-three thousand two hundred forty-seven'),\n(12515, 69046, 'sixty-nine thousand forty-six'),\n(12516, 23716, 'twenty-three thousand seven hundred sixteen'),\n(12517, 54643, 'fifty-four thousand six hundred forty-three'),\n(12518, 68032, 'sixty-eight thousand thirty-two'),\n(12519, 15832, 'fifteen thousand eight hundred thirty-two'),\n(12520, 28522, 'twenty-eight thousand five hundred twenty-two'),\n(12521, 1615, 'one thousand six hundred fifteen'),\n(12522, 56734, 'fifty-six thousand seven hundred thirty-four'),\n(12523, 29381, 'twenty-nine thousand three hundred eighty-one'),\n(12524, 96784, 'ninety-six thousand seven hundred eighty-four'),\n(12525, 25678, 'twenty-five thousand six hundred seventy-eight'),\n(12526, 25660, 'twenty-five thousand six hundred sixty'),\n(12527, 51583, 'fifty-one thousand five hundred eighty-three'),\n(12528, 41817, 'forty-one thousand eight hundred seventeen'),\n(12529, 65995, 'sixty-five thousand nine hundred ninety-five'),\n(12530, 18128, 'eighteen thousand one hundred twenty-eight'),\n(12531, 26780, 'twenty-six thousand seven hundred eighty'),\n(12532, 35231, 'thirty-five thousand two hundred thirty-one'),\n(12533, 54947, 'fifty-four thousand nine hundred forty-seven'),\n(12534, 45299, 'forty-five thousand two hundred ninety-nine'),\n(12535, 16410, 'sixteen thousand four hundred ten'),\n(12536, 28447, 'twenty-eight thousand four hundred forty-seven'),\n(12537, 34234, 'thirty-four thousand two hundred thirty-four'),\n(12538, 93067, 'ninety-three thousand sixty-seven'),\n(12539, 357, 'three hundred fifty-seven'),\n(12540, 37564, 'thirty-seven thousand five hundred sixty-four'),\n(12541, 78133, 'seventy-eight thousand one hundred thirty-three'),\n(12542, 12698, 'twelve thousand six hundred ninety-eight'),\n(12543, 81735, 'eighty-one thousand seven hundred thirty-five'),\n(12544, 85149, 'eighty-five thousand one hundred forty-nine'),\n(12545, 6787, 'six thousand seven hundred eighty-seven'),\n(12546, 8320, 'eight thousand three hundred twenty'),\n(12547, 7963, 'seven thousand nine hundred sixty-three'),\n(12548, 66394, 'sixty-six thousand three hundred ninety-four'),\n(12549, 83934, 'eighty-three thousand nine hundred thirty-four'),\n(12550, 67896, 'sixty-seven thousand eight hundred ninety-six'),\n(12551, 18949, 'eighteen thousand nine hundred forty-nine'),\n(12552, 75265, 'seventy-five thousand two hundred sixty-five'),\n(12553, 12320, 'twelve thousand three hundred twenty'),\n(12554, 50364, 'fifty thousand three hundred sixty-four'),\n(12555, 85557, 'eighty-five thousand five hundred fifty-seven'),\n(12556, 61745, 'sixty-one thousand seven hundred forty-five'),\n(12557, 33129, 'thirty-three thousand one hundred twenty-nine'),\n(12558, 82482, 'eighty-two thousand four hundred eighty-two'),\n(12559, 29300, 'twenty-nine thousand three hundred'),\n(12560, 39206, 'thirty-nine thousand two hundred six'),\n(12561, 31842, 'thirty-one thousand eight hundred forty-two'),\n(12562, 21973, 'twenty-one thousand nine hundred seventy-three'),\n(12563, 24646, 'twenty-four thousand six hundred forty-six'),\n(12564, 17006, 'seventeen thousand six'),\n(12565, 57897, 'fifty-seven thousand eight hundred ninety-seven'),\n(12566, 46859, 'forty-six thousand eight hundred fifty-nine'),\n(12567, 68650, 'sixty-eight thousand six hundred fifty'),\n(12568, 19990, 'nineteen thousand nine hundred ninety'),\n(12569, 54074, 'fifty-four thousand seventy-four'),\n(12570, 75240, 'seventy-five thousand two hundred forty'),\n(12571, 53637, 'fifty-three thousand six hundred thirty-seven'),\n(12572, 33994, 'thirty-three thousand nine hundred ninety-four'),\n(12573, 40402, 'forty thousand four hundred two'),\n(12574, 23534, 'twenty-three thousand five hundred thirty-four'),\n(12575, 38116, 'thirty-eight thousand one hundred sixteen'),\n(12576, 63651, 'sixty-three thousand six hundred fifty-one'),\n(12577, 37906, 'thirty-seven thousand nine hundred six'),\n(12578, 84345, 'eighty-four thousand three hundred forty-five'),\n(12579, 24704, 'twenty-four thousand seven hundred four'),\n(12580, 6299, 'six thousand two hundred ninety-nine'),\n(12581, 13423, 'thirteen thousand four hundred twenty-three'),\n(12582, 49551, 'forty-nine thousand five hundred fifty-one'),\n(12583, 61536, 'sixty-one thousand five hundred thirty-six'),\n(12584, 99195, 'ninety-nine thousand one hundred ninety-five'),\n(12585, 90974, 'ninety thousand nine hundred seventy-four'),\n(12586, 86382, 'eighty-six thousand three hundred eighty-two'),\n(12587, 98600, 'ninety-eight thousand six hundred'),\n(12588, 11341, 'eleven thousand three hundred forty-one'),\n(12589, 6230, 'six thousand two hundred thirty'),\n(12590, 84415, 'eighty-four thousand four hundred fifteen'),\n(12591, 13190, 'thirteen thousand one hundred ninety'),\n(12592, 40445, 'forty thousand four hundred forty-five'),\n(12593, 27416, 'twenty-seven thousand four hundred sixteen'),\n(12594, 22997, 'twenty-two thousand nine hundred ninety-seven'),\n(12595, 73654, 'seventy-three thousand six hundred fifty-four'),\n(12596, 45799, 'forty-five thousand seven hundred ninety-nine'),\n(12597, 11809, 'eleven thousand eight hundred nine'),\n(12598, 71345, 'seventy-one thousand three hundred forty-five'),\n(12599, 78930, 'seventy-eight thousand nine hundred thirty'),\n(12600, 44539, 'forty-four thousand five hundred thirty-nine'),\n(12601, 25888, 'twenty-five thousand eight hundred eighty-eight'),\n(12602, 55168, 'fifty-five thousand one hundred sixty-eight'),\n(12603, 17408, 'seventeen thousand four hundred eight'),\n(12604, 91046, 'ninety-one thousand forty-six'),\n(12605, 60487, 'sixty thousand four hundred eighty-seven'),\n(12606, 38260, 'thirty-eight thousand two hundred sixty'),\n(12607, 34970, 'thirty-four thousand nine hundred seventy'),\n(12608, 87774, 'eighty-seven thousand seven hundred seventy-four'),\n(12609, 33514, 'thirty-three thousand five hundred fourteen'),\n(12610, 6794, 'six thousand seven hundred ninety-four'),\n(12611, 70503, 'seventy thousand five hundred three'),\n(12612, 51852, 'fifty-one thousand eight hundred fifty-two'),\n(12613, 23008, 'twenty-three thousand eight'),\n(12614, 2474, 'two thousand four hundred seventy-four'),\n(12615, 14304, 'fourteen thousand three hundred four'),\n(12616, 78739, 'seventy-eight thousand seven hundred thirty-nine'),\n(12617, 33290, 'thirty-three thousand two hundred ninety'),\n(12618, 82004, 'eighty-two thousand four'),\n(12619, 24390, 'twenty-four thousand three hundred ninety'),\n(12620, 87146, 'eighty-seven thousand one hundred forty-six'),\n(12621, 8691, 'eight thousand six hundred ninety-one'),\n(12622, 99344, 'ninety-nine thousand three hundred forty-four'),\n(12623, 3238, 'three thousand two hundred thirty-eight'),\n(12624, 71113, 'seventy-one thousand one hundred thirteen'),\n(12625, 71441, 'seventy-one thousand four hundred forty-one'),\n(12626, 71434, 'seventy-one thousand four hundred thirty-four'),\n(12627, 82644, 'eighty-two thousand six hundred forty-four'),\n(12628, 89276, 'eighty-nine thousand two hundred seventy-six'),\n(12629, 8501, 'eight thousand five hundred one'),\n(12630, 60214, 'sixty thousand two hundred fourteen'),\n(12631, 84718, 'eighty-four thousand seven hundred eighteen'),\n(12632, 87349, 'eighty-seven thousand three hundred forty-nine'),\n(12633, 91038, 'ninety-one thousand thirty-eight'),\n(12634, 41025, 'forty-one thousand twenty-five'),\n(12635, 52699, 'fifty-two thousand six hundred ninety-nine'),\n(12636, 81366, 'eighty-one thousand three hundred sixty-six'),\n(12637, 9633, 'nine thousand six hundred thirty-three'),\n(12638, 47238, 'forty-seven thousand two hundred thirty-eight'),\n(12639, 9001, 'nine thousand one'),\n(12640, 66941, 'sixty-six thousand nine hundred forty-one'),\n(12641, 52593, 'fifty-two thousand five hundred ninety-three'),\n(12642, 97813, 'ninety-seven thousand eight hundred thirteen'),\n(12643, 5987, 'five thousand nine hundred eighty-seven'),\n(12644, 82630, 'eighty-two thousand six hundred thirty'),\n(12645, 98160, 'ninety-eight thousand one hundred sixty'),\n(12646, 222, 'two hundred twenty-two'),\n(12647, 86892, 'eighty-six thousand eight hundred ninety-two'),\n(12648, 63743, 'sixty-three thousand seven hundred forty-three'),\n(12649, 81734, 'eighty-one thousand seven hundred thirty-four'),\n(12650, 48541, 'forty-eight thousand five hundred forty-one'),\n(12651, 36365, 'thirty-six thousand three hundred sixty-five'),\n(12652, 20826, 'twenty thousand eight hundred twenty-six'),\n(12653, 85203, 'eighty-five thousand two hundred three'),\n(12654, 26495, 'twenty-six thousand four hundred ninety-five'),\n(12655, 19571, 'nineteen thousand five hundred seventy-one'),\n(12656, 1139, 'one thousand one hundred thirty-nine'),\n(12657, 64406, 'sixty-four thousand four hundred six'),\n(12658, 57451, 'fifty-seven thousand four hundred fifty-one'),\n(12659, 79223, 'seventy-nine thousand two hundred twenty-three'),\n(12660, 57009, 'fifty-seven thousand nine'),\n(12661, 73333, 'seventy-three thousand three hundred thirty-three'),\n(12662, 51819, 'fifty-one thousand eight hundred nineteen'),\n(12663, 63717, 'sixty-three thousand seven hundred seventeen'),\n(12664, 75607, 'seventy-five thousand six hundred seven'),\n(12665, 30413, 'thirty thousand four hundred thirteen'),\n(12666, 43176, 'forty-three thousand one hundred seventy-six'),\n(12667, 9969, 'nine thousand nine hundred sixty-nine'),\n(12668, 84541, 'eighty-four thousand five hundred forty-one'),\n(12669, 61457, 'sixty-one thousand four hundred fifty-seven'),\n(12670, 39097, 'thirty-nine thousand ninety-seven'),\n(12671, 10062, 'ten thousand sixty-two'),\n(12672, 75919, 'seventy-five thousand nine hundred nineteen'),\n(12673, 33105, 'thirty-three thousand one hundred five'),\n(12674, 85001, 'eighty-five thousand one'),\n(12675, 70635, 'seventy thousand six hundred thirty-five'),\n(12676, 1633, 'one thousand six hundred thirty-three'),\n(12677, 56254, 'fifty-six thousand two hundred fifty-four'),\n(12678, 96865, 'ninety-six thousand eight hundred sixty-five'),\n(12679, 32482, 'thirty-two thousand four hundred eighty-two'),\n(12680, 8805, 'eight thousand eight hundred five'),\n(12681, 44699, 'forty-four thousand six hundred ninety-nine'),\n(12682, 67454, 'sixty-seven thousand four hundred fifty-four'),\n(12683, 6728, 'six thousand seven hundred twenty-eight'),\n(12684, 60834, 'sixty thousand eight hundred thirty-four'),\n(12685, 69492, 'sixty-nine thousand four hundred ninety-two'),\n(12686, 75870, 'seventy-five thousand eight hundred seventy'),\n(12687, 46922, 'forty-six thousand nine hundred twenty-two'),\n(12688, 49954, 'forty-nine thousand nine hundred fifty-four'),\n(12689, 89469, 'eighty-nine thousand four hundred sixty-nine'),\n(12690, 19961, 'nineteen thousand nine hundred sixty-one'),\n(12691, 44740, 'forty-four thousand seven hundred forty'),\n(12692, 44840, 'forty-four thousand eight hundred forty'),\n(12693, 92446, 'ninety-two thousand four hundred forty-six'),\n(12694, 58104, 'fifty-eight thousand one hundred four'),\n(12695, 85813, 'eighty-five thousand eight hundred thirteen'),\n(12696, 31356, 'thirty-one thousand three hundred fifty-six'),\n(12697, 36930, 'thirty-six thousand nine hundred thirty'),\n(12698, 33444, 'thirty-three thousand four hundred forty-four'),\n(12699, 49152, 'forty-nine thousand one hundred fifty-two'),\n(12700, 77609, 'seventy-seven thousand six hundred nine'),\n(12701, 66681, 'sixty-six thousand six hundred eighty-one'),\n(12702, 41452, 'forty-one thousand four hundred fifty-two'),\n(12703, 45766, 'forty-five thousand seven hundred sixty-six'),\n(12704, 30935, 'thirty thousand nine hundred thirty-five'),\n(12705, 67848, 'sixty-seven thousand eight hundred forty-eight'),\n(12706, 20793, 'twenty thousand seven hundred ninety-three'),\n(12707, 20614, 'twenty thousand six hundred fourteen'),\n(12708, 80832, 'eighty thousand eight hundred thirty-two'),\n(12709, 93210, 'ninety-three thousand two hundred ten'),\n(12710, 62573, 'sixty-two thousand five hundred seventy-three'),\n(12711, 34415, 'thirty-four thousand four hundred fifteen'),\n(12712, 37357, 'thirty-seven thousand three hundred fifty-seven'),\n(12713, 72961, 'seventy-two thousand nine hundred sixty-one'),\n(12714, 14852, 'fourteen thousand eight hundred fifty-two'),\n(12715, 28075, 'twenty-eight thousand seventy-five'),\n(12716, 83557, 'eighty-three thousand five hundred fifty-seven'),\n(12717, 78992, 'seventy-eight thousand nine hundred ninety-two'),\n(12718, 69052, 'sixty-nine thousand fifty-two'),\n(12719, 41901, 'forty-one thousand nine hundred one'),\n(12720, 76886, 'seventy-six thousand eight hundred eighty-six'),\n(12721, 19779, 'nineteen thousand seven hundred seventy-nine'),\n(12722, 84912, 'eighty-four thousand nine hundred twelve'),\n(12723, 66187, 'sixty-six thousand one hundred eighty-seven'),\n(12724, 78636, 'seventy-eight thousand six hundred thirty-six'),\n(12725, 30044, 'thirty thousand forty-four'),\n(12726, 28176, 'twenty-eight thousand one hundred seventy-six'),\n(12727, 27874, 'twenty-seven thousand eight hundred seventy-four'),\n(12728, 95578, 'ninety-five thousand five hundred seventy-eight'),\n(12729, 33681, 'thirty-three thousand six hundred eighty-one'),\n(12730, 12222, 'twelve thousand two hundred twenty-two'),\n(12731, 26598, 'twenty-six thousand five hundred ninety-eight'),\n(12732, 62513, 'sixty-two thousand five hundred thirteen'),\n(12733, 11509, 'eleven thousand five hundred nine'),\n(12734, 83392, 'eighty-three thousand three hundred ninety-two'),\n(12735, 97773, 'ninety-seven thousand seven hundred seventy-three'),\n(12736, 3058, 'three thousand fifty-eight'),\n(12737, 89802, 'eighty-nine thousand eight hundred two'),\n(12738, 49401, 'forty-nine thousand four hundred one'),\n(12739, 28921, 'twenty-eight thousand nine hundred twenty-one'),\n(12740, 45066, 'forty-five thousand sixty-six'),\n(12741, 23035, 'twenty-three thousand thirty-five'),\n(12742, 63245, 'sixty-three thousand two hundred forty-five'),\n(12743, 2524, 'two thousand five hundred twenty-four'),\n(12744, 21784, 'twenty-one thousand seven hundred eighty-four'),\n(12745, 94512, 'ninety-four thousand five hundred twelve'),\n(12746, 80023, 'eighty thousand twenty-three'),\n(12747, 22798, 'twenty-two thousand seven hundred ninety-eight'),\n(12748, 16485, 'sixteen thousand four hundred eighty-five'),\n(12749, 29678, 'twenty-nine thousand six hundred seventy-eight'),\n(12750, 4367, 'four thousand three hundred sixty-seven'),\n(12751, 73647, 'seventy-three thousand six hundred forty-seven'),\n(12752, 24278, 'twenty-four thousand two hundred seventy-eight'),\n(12753, 40519, 'forty thousand five hundred nineteen'),\n(12754, 15534, 'fifteen thousand five hundred thirty-four'),\n(12755, 68479, 'sixty-eight thousand four hundred seventy-nine'),\n(12756, 29542, 'twenty-nine thousand five hundred forty-two'),\n(12757, 20877, 'twenty thousand eight hundred seventy-seven'),\n(12758, 80932, 'eighty thousand nine hundred thirty-two'),\n(12759, 66037, 'sixty-six thousand thirty-seven'),\n(12760, 17970, 'seventeen thousand nine hundred seventy'),\n(12761, 58418, 'fifty-eight thousand four hundred eighteen'),\n(12762, 19130, 'nineteen thousand one hundred thirty'),\n(12763, 77982, 'seventy-seven thousand nine hundred eighty-two'),\n(12764, 61486, 'sixty-one thousand four hundred eighty-six'),\n(12765, 98514, 'ninety-eight thousand five hundred fourteen'),\n(12766, 7357, 'seven thousand three hundred fifty-seven'),\n(12767, 3509, 'three thousand five hundred nine'),\n(12768, 1141, 'one thousand one hundred forty-one'),\n(12769, 39136, 'thirty-nine thousand one hundred thirty-six'),\n(12770, 80580, 'eighty thousand five hundred eighty'),\n(12771, 15069, 'fifteen thousand sixty-nine'),\n(12772, 87482, 'eighty-seven thousand four hundred eighty-two'),\n(12773, 54223, 'fifty-four thousand two hundred twenty-three'),\n(12774, 3540, 'three thousand five hundred forty'),\n(12775, 15949, 'fifteen thousand nine hundred forty-nine'),\n(12776, 12876, 'twelve thousand eight hundred seventy-six'),\n(12777, 96495, 'ninety-six thousand four hundred ninety-five'),\n(12778, 17739, 'seventeen thousand seven hundred thirty-nine'),\n(12779, 93418, 'ninety-three thousand four hundred eighteen'),\n(12780, 68798, 'sixty-eight thousand seven hundred ninety-eight'),\n(12781, 73562, 'seventy-three thousand five hundred sixty-two'),\n(12782, 89855, 'eighty-nine thousand eight hundred fifty-five'),\n(12783, 52512, 'fifty-two thousand five hundred twelve'),\n(12784, 70913, 'seventy thousand nine hundred thirteen'),\n(12785, 19681, 'nineteen thousand six hundred eighty-one'),\n(12786, 15170, 'fifteen thousand one hundred seventy'),\n(12787, 1278, 'one thousand two hundred seventy-eight'),\n(12788, 7387, 'seven thousand three hundred eighty-seven'),\n(12789, 76076, 'seventy-six thousand seventy-six'),\n(12790, 9618, 'nine thousand six hundred eighteen'),\n(12791, 82352, 'eighty-two thousand three hundred fifty-two'),\n(12792, 70463, 'seventy thousand four hundred sixty-three'),\n(12793, 8868, 'eight thousand eight hundred sixty-eight'),\n(12794, 71028, 'seventy-one thousand twenty-eight'),\n(12795, 74951, 'seventy-four thousand nine hundred fifty-one'),\n(12796, 43086, 'forty-three thousand eighty-six'),\n(12797, 14586, 'fourteen thousand five hundred eighty-six'),\n(12798, 89832, 'eighty-nine thousand eight hundred thirty-two'),\n(12799, 11578, 'eleven thousand five hundred seventy-eight'),\n(12800, 73228, 'seventy-three thousand two hundred twenty-eight'),\n(12801, 51916, 'fifty-one thousand nine hundred sixteen'),\n(12802, 75684, 'seventy-five thousand six hundred eighty-four'),\n(12803, 9282, 'nine thousand two hundred eighty-two'),\n(12804, 62773, 'sixty-two thousand seven hundred seventy-three'),\n(12805, 76492, 'seventy-six thousand four hundred ninety-two'),\n(12806, 38490, 'thirty-eight thousand four hundred ninety'),\n(12807, 77016, 'seventy-seven thousand sixteen'),\n(12808, 36651, 'thirty-six thousand six hundred fifty-one'),\n(12809, 32828, 'thirty-two thousand eight hundred twenty-eight'),\n(12810, 46669, 'forty-six thousand six hundred sixty-nine'),\n(12811, 5839, 'five thousand eight hundred thirty-nine'),\n(12812, 87461, 'eighty-seven thousand four hundred sixty-one'),\n(12813, 68394, 'sixty-eight thousand three hundred ninety-four'),\n(12814, 8589, 'eight thousand five hundred eighty-nine'),\n(12815, 36381, 'thirty-six thousand three hundred eighty-one'),\n(12816, 38955, 'thirty-eight thousand nine hundred fifty-five'),\n(12817, 7651, 'seven thousand six hundred fifty-one'),\n(12818, 36513, 'thirty-six thousand five hundred thirteen'),\n(12819, 61571, 'sixty-one thousand five hundred seventy-one'),\n(12820, 78388, 'seventy-eight thousand three hundred eighty-eight'),\n(12821, 96959, 'ninety-six thousand nine hundred fifty-nine'),\n(12822, 64174, 'sixty-four thousand one hundred seventy-four'),\n(12823, 77853, 'seventy-seven thousand eight hundred fifty-three'),\n(12824, 83875, 'eighty-three thousand eight hundred seventy-five'),\n(12825, 34097, 'thirty-four thousand ninety-seven'),\n(12826, 49286, 'forty-nine thousand two hundred eighty-six'),\n(12827, 53306, 'fifty-three thousand three hundred six'),\n(12828, 50010, 'fifty thousand ten'),\n(12829, 82545, 'eighty-two thousand five hundred forty-five'),\n(12830, 10096, 'ten thousand ninety-six'),\n(12831, 87893, 'eighty-seven thousand eight hundred ninety-three'),\n(12832, 22147, 'twenty-two thousand one hundred forty-seven'),\n(12833, 35019, 'thirty-five thousand nineteen'),\n(12834, 88197, 'eighty-eight thousand one hundred ninety-seven'),\n(12835, 1190, 'one thousand one hundred ninety'),\n(12836, 31003, 'thirty-one thousand three'),\n(12837, 90966, 'ninety thousand nine hundred sixty-six'),\n(12838, 82353, 'eighty-two thousand three hundred fifty-three'),\n(12839, 10483, 'ten thousand four hundred eighty-three'),\n(12840, 34201, 'thirty-four thousand two hundred one'),\n(12841, 8659, 'eight thousand six hundred fifty-nine'),\n(12842, 4141, 'four thousand one hundred forty-one'),\n(12843, 99048, 'ninety-nine thousand forty-eight'),\n(12844, 36881, 'thirty-six thousand eight hundred eighty-one'),\n(12845, 50482, 'fifty thousand four hundred eighty-two'),\n(12846, 16753, 'sixteen thousand seven hundred fifty-three'),\n(12847, 34601, 'thirty-four thousand six hundred one'),\n(12848, 69668, 'sixty-nine thousand six hundred sixty-eight'),\n(12849, 5723, 'five thousand seven hundred twenty-three'),\n(12850, 78806, 'seventy-eight thousand eight hundred six'),\n(12851, 37255, 'thirty-seven thousand two hundred fifty-five'),\n(12852, 1243, 'one thousand two hundred forty-three'),\n(12853, 85509, 'eighty-five thousand five hundred nine'),\n(12854, 23359, 'twenty-three thousand three hundred fifty-nine'),\n(12855, 61139, 'sixty-one thousand one hundred thirty-nine'),\n(12856, 71717, 'seventy-one thousand seven hundred seventeen'),\n(12857, 83152, 'eighty-three thousand one hundred fifty-two'),\n(12858, 91280, 'ninety-one thousand two hundred eighty'),\n(12859, 42023, 'forty-two thousand twenty-three'),\n(12860, 96972, 'ninety-six thousand nine hundred seventy-two'),\n(12861, 6091, 'six thousand ninety-one'),\n(12862, 62824, 'sixty-two thousand eight hundred twenty-four'),\n(12863, 512, 'five hundred twelve'),\n(12864, 49396, 'forty-nine thousand three hundred ninety-six'),\n(12865, 54919, 'fifty-four thousand nine hundred nineteen'),\n(12866, 68481, 'sixty-eight thousand four hundred eighty-one'),\n(12867, 27450, 'twenty-seven thousand four hundred fifty'),\n(12868, 99983, 'ninety-nine thousand nine hundred eighty-three'),\n(12869, 24262, 'twenty-four thousand two hundred sixty-two'),\n(12870, 38760, 'thirty-eight thousand seven hundred sixty'),\n(12871, 43360, 'forty-three thousand three hundred sixty'),\n(12872, 80619, 'eighty thousand six hundred nineteen'),\n(12873, 75727, 'seventy-five thousand seven hundred twenty-seven'),\n(12874, 2630, 'two thousand six hundred thirty'),\n(12875, 7541, 'seven thousand five hundred forty-one'),\n(12876, 7291, 'seven thousand two hundred ninety-one'),\n(12877, 88162, 'eighty-eight thousand one hundred sixty-two'),\n(12878, 24432, 'twenty-four thousand four hundred thirty-two'),\n(12879, 14501, 'fourteen thousand five hundred one'),\n(12880, 11520, 'eleven thousand five hundred twenty'),\n(12881, 92393, 'ninety-two thousand three hundred ninety-three'),\n(12882, 46755, 'forty-six thousand seven hundred fifty-five'),\n(12883, 63663, 'sixty-three thousand six hundred sixty-three'),\n(12884, 49559, 'forty-nine thousand five hundred fifty-nine'),\n(12885, 56492, 'fifty-six thousand four hundred ninety-two'),\n(12886, 72253, 'seventy-two thousand two hundred fifty-three'),\n(12887, 96666, 'ninety-six thousand six hundred sixty-six'),\n(12888, 71969, 'seventy-one thousand nine hundred sixty-nine'),\n(12889, 46863, 'forty-six thousand eight hundred sixty-three'),\n(12890, 15652, 'fifteen thousand six hundred fifty-two'),\n(12891, 72052, 'seventy-two thousand fifty-two'),\n(12892, 66925, 'sixty-six thousand nine hundred twenty-five'),\n(12893, 85517, 'eighty-five thousand five hundred seventeen'),\n(12894, 69393, 'sixty-nine thousand three hundred ninety-three'),\n(12895, 81891, 'eighty-one thousand eight hundred ninety-one'),\n(12896, 17057, 'seventeen thousand fifty-seven'),\n(12897, 20521, 'twenty thousand five hundred twenty-one'),\n(12898, 68199, 'sixty-eight thousand one hundred ninety-nine'),\n(12899, 72803, 'seventy-two thousand eight hundred three'),\n(12900, 91889, 'ninety-one thousand eight hundred eighty-nine'),\n(12901, 78360, 'seventy-eight thousand three hundred sixty'),\n(12902, 93107, 'ninety-three thousand one hundred seven'),\n(12903, 45987, 'forty-five thousand nine hundred eighty-seven'),\n(12904, 45793, 'forty-five thousand seven hundred ninety-three'),\n(12905, 8970, 'eight thousand nine hundred seventy'),\n(12906, 56082, 'fifty-six thousand eighty-two'),\n(12907, 91257, 'ninety-one thousand two hundred fifty-seven'),\n(12908, 62921, 'sixty-two thousand nine hundred twenty-one'),\n(12909, 96689, 'ninety-six thousand six hundred eighty-nine'),\n(12910, 24205, 'twenty-four thousand two hundred five'),\n(12911, 11390, 'eleven thousand three hundred ninety'),\n(12912, 73121, 'seventy-three thousand one hundred twenty-one'),\n(12913, 95764, 'ninety-five thousand seven hundred sixty-four'),\n(12914, 36677, 'thirty-six thousand six hundred seventy-seven'),\n(12915, 86653, 'eighty-six thousand six hundred fifty-three'),\n(12916, 65247, 'sixty-five thousand two hundred forty-seven'),\n(12917, 30872, 'thirty thousand eight hundred seventy-two'),\n(12918, 46363, 'forty-six thousand three hundred sixty-three'),\n(12919, 42258, 'forty-two thousand two hundred fifty-eight'),\n(12920, 27708, 'twenty-seven thousand seven hundred eight'),\n(12921, 61779, 'sixty-one thousand seven hundred seventy-nine'),\n(12922, 24349, 'twenty-four thousand three hundred forty-nine'),\n(12923, 96704, 'ninety-six thousand seven hundred four'),\n(12924, 95275, 'ninety-five thousand two hundred seventy-five'),\n(12925, 87231, 'eighty-seven thousand two hundred thirty-one'),\n(12926, 53844, 'fifty-three thousand eight hundred forty-four'),\n(12927, 41310, 'forty-one thousand three hundred ten'),\n(12928, 14740, 'fourteen thousand seven hundred forty'),\n(12929, 25345, 'twenty-five thousand three hundred forty-five'),\n(12930, 25025, 'twenty-five thousand twenty-five'),\n(12931, 31759, 'thirty-one thousand seven hundred fifty-nine'),\n(12932, 67993, 'sixty-seven thousand nine hundred ninety-three'),\n(12933, 41174, 'forty-one thousand one hundred seventy-four'),\n(12934, 56221, 'fifty-six thousand two hundred twenty-one'),\n(12935, 94024, 'ninety-four thousand twenty-four'),\n(12936, 47734, 'forty-seven thousand seven hundred thirty-four'),\n(12937, 52968, 'fifty-two thousand nine hundred sixty-eight'),\n(12938, 28183, 'twenty-eight thousand one hundred eighty-three'),\n(12939, 90718, 'ninety thousand seven hundred eighteen'),\n(12940, 26636, 'twenty-six thousand six hundred thirty-six'),\n(12941, 9657, 'nine thousand six hundred fifty-seven'),\n(12942, 55732, 'fifty-five thousand seven hundred thirty-two'),\n(12943, 3136, 'three thousand one hundred thirty-six'),\n(12944, 85190, 'eighty-five thousand one hundred ninety'),\n(12945, 70538, 'seventy thousand five hundred thirty-eight'),\n(12946, 1230, 'one thousand two hundred thirty'),\n(12947, 22112, 'twenty-two thousand one hundred twelve'),\n(12948, 72798, 'seventy-two thousand seven hundred ninety-eight'),\n(12949, 82090, 'eighty-two thousand ninety'),\n(12950, 17523, 'seventeen thousand five hundred twenty-three'),\n(12951, 68350, 'sixty-eight thousand three hundred fifty'),\n(12952, 32789, 'thirty-two thousand seven hundred eighty-nine'),\n(12953, 41081, 'forty-one thousand eighty-one'),\n(12954, 2253, 'two thousand two hundred fifty-three'),\n(12955, 50080, 'fifty thousand eighty'),\n(12956, 54578, 'fifty-four thousand five hundred seventy-eight'),\n(12957, 2331, 'two thousand three hundred thirty-one'),\n(12958, 93221, 'ninety-three thousand two hundred twenty-one'),\n(12959, 19311, 'nineteen thousand three hundred eleven'),\n(12960, 90975, 'ninety thousand nine hundred seventy-five'),\n(12961, 19742, 'nineteen thousand seven hundred forty-two'),\n(12962, 75866, 'seventy-five thousand eight hundred sixty-six'),\n(12963, 93547, 'ninety-three thousand five hundred forty-seven'),\n(12964, 96560, 'ninety-six thousand five hundred sixty'),\n(12965, 75627, 'seventy-five thousand six hundred twenty-seven'),\n(12966, 34291, 'thirty-four thousand two hundred ninety-one'),\n(12967, 32072, 'thirty-two thousand seventy-two'),\n(12968, 41331, 'forty-one thousand three hundred thirty-one'),\n(12969, 33966, 'thirty-three thousand nine hundred sixty-six'),\n(12970, 30509, 'thirty thousand five hundred nine'),\n(12971, 26004, 'twenty-six thousand four'),\n(12972, 79445, 'seventy-nine thousand four hundred forty-five'),\n(12973, 59729, 'fifty-nine thousand seven hundred twenty-nine'),\n(12974, 58564, 'fifty-eight thousand five hundred sixty-four'),\n(12975, 50568, 'fifty thousand five hundred sixty-eight'),\n(12976, 97406, 'ninety-seven thousand four hundred six'),\n(12977, 79150, 'seventy-nine thousand one hundred fifty'),\n(12978, 5568, 'five thousand five hundred sixty-eight'),\n(12979, 29024, 'twenty-nine thousand twenty-four'),\n(12980, 36483, 'thirty-six thousand four hundred eighty-three'),\n(12981, 82251, 'eighty-two thousand two hundred fifty-one'),\n(12982, 60002, 'sixty thousand two'),\n(12983, 45482, 'forty-five thousand four hundred eighty-two'),\n(12984, 93006, 'ninety-three thousand six'),\n(12985, 27898, 'twenty-seven thousand eight hundred ninety-eight'),\n(12986, 61300, 'sixty-one thousand three hundred'),\n(12987, 92218, 'ninety-two thousand two hundred eighteen'),\n(12988, 67535, 'sixty-seven thousand five hundred thirty-five'),\n(12989, 76339, 'seventy-six thousand three hundred thirty-nine'),\n(12990, 72070, 'seventy-two thousand seventy'),\n(12991, 28943, 'twenty-eight thousand nine hundred forty-three'),\n(12992, 66395, 'sixty-six thousand three hundred ninety-five'),\n(12993, 42842, 'forty-two thousand eight hundred forty-two'),\n(12994, 16532, 'sixteen thousand five hundred thirty-two'),\n(12995, 34635, 'thirty-four thousand six hundred thirty-five'),\n(12996, 55582, 'fifty-five thousand five hundred eighty-two'),\n(12997, 9467, 'nine thousand four hundred sixty-seven'),\n(12998, 64893, 'sixty-four thousand eight hundred ninety-three'),\n(12999, 23940, 'twenty-three thousand nine hundred forty'),\n(13000, 55126, 'fifty-five thousand one hundred twenty-six'),\n(13001, 69249, 'sixty-nine thousand two hundred forty-nine'),\n(13002, 6594, 'six thousand five hundred ninety-four'),\n(13003, 859, 'eight hundred fifty-nine'),\n(13004, 73199, 'seventy-three thousand one hundred ninety-nine'),\n(13005, 60033, 'sixty thousand thirty-three'),\n(13006, 95594, 'ninety-five thousand five hundred ninety-four'),\n(13007, 74763, 'seventy-four thousand seven hundred sixty-three'),\n(13008, 80143, 'eighty thousand one hundred forty-three'),\n(13009, 15977, 'fifteen thousand nine hundred seventy-seven'),\n(13010, 28553, 'twenty-eight thousand five hundred fifty-three'),\n(13011, 10883, 'ten thousand eight hundred eighty-three'),\n(13012, 52986, 'fifty-two thousand nine hundred eighty-six'),\n(13013, 98725, 'ninety-eight thousand seven hundred twenty-five'),\n(13014, 23894, 'twenty-three thousand eight hundred ninety-four'),\n(13015, 16058, 'sixteen thousand fifty-eight'),\n(13016, 28094, 'twenty-eight thousand ninety-four'),\n(13017, 72037, 'seventy-two thousand thirty-seven'),\n(13018, 72724, 'seventy-two thousand seven hundred twenty-four'),\n(13019, 29083, 'twenty-nine thousand eighty-three'),\n(13020, 61504, 'sixty-one thousand five hundred four'),\n(13021, 98472, 'ninety-eight thousand four hundred seventy-two'),\n(13022, 22160, 'twenty-two thousand one hundred sixty'),\n(13023, 36434, 'thirty-six thousand four hundred thirty-four'),\n(13024, 33592, 'thirty-three thousand five hundred ninety-two'),\n(13025, 49671, 'forty-nine thousand six hundred seventy-one'),\n(13026, 78062, 'seventy-eight thousand sixty-two'),\n(13027, 8393, 'eight thousand three hundred ninety-three'),\n(13028, 34389, 'thirty-four thousand three hundred eighty-nine'),\n(13029, 15687, 'fifteen thousand six hundred eighty-seven'),\n(13030, 19960, 'nineteen thousand nine hundred sixty'),\n(13031, 79730, 'seventy-nine thousand seven hundred thirty'),\n(13032, 73414, 'seventy-three thousand four hundred fourteen'),\n(13033, 16789, 'sixteen thousand seven hundred eighty-nine'),\n(13034, 22755, 'twenty-two thousand seven hundred fifty-five'),\n(13035, 71141, 'seventy-one thousand one hundred forty-one'),\n(13036, 29026, 'twenty-nine thousand twenty-six'),\n(13037, 55375, 'fifty-five thousand three hundred seventy-five'),\n(13038, 15263, 'fifteen thousand two hundred sixty-three'),\n(13039, 11836, 'eleven thousand eight hundred thirty-six'),\n(13040, 28710, 'twenty-eight thousand seven hundred ten'),\n(13041, 23040, 'twenty-three thousand forty'),\n(13042, 34904, 'thirty-four thousand nine hundred four'),\n(13043, 66708, 'sixty-six thousand seven hundred eight'),\n(13044, 47542, 'forty-seven thousand five hundred forty-two'),\n(13045, 77947, 'seventy-seven thousand nine hundred forty-seven'),\n(13046, 72736, 'seventy-two thousand seven hundred thirty-six'),\n(13047, 1134, 'one thousand one hundred thirty-four'),\n(13048, 48033, 'forty-eight thousand thirty-three'),\n(13049, 27029, 'twenty-seven thousand twenty-nine'),\n(13050, 35890, 'thirty-five thousand eight hundred ninety'),\n(13051, 79681, 'seventy-nine thousand six hundred eighty-one'),\n(13052, 35486, 'thirty-five thousand four hundred eighty-six'),\n(13053, 66726, 'sixty-six thousand seven hundred twenty-six'),\n(13054, 83162, 'eighty-three thousand one hundred sixty-two'),\n(13055, 97255, 'ninety-seven thousand two hundred fifty-five'),\n(13056, 41277, 'forty-one thousand two hundred seventy-seven'),\n(13057, 25423, 'twenty-five thousand four hundred twenty-three'),\n(13058, 281, 'two hundred eighty-one'),\n(13059, 90417, 'ninety thousand four hundred seventeen'),\n(13060, 62305, 'sixty-two thousand three hundred five'),\n(13061, 49849, 'forty-nine thousand eight hundred forty-nine'),\n(13062, 95997, 'ninety-five thousand nine hundred ninety-seven'),\n(13063, 49575, 'forty-nine thousand five hundred seventy-five'),\n(13064, 12959, 'twelve thousand nine hundred fifty-nine'),\n(13065, 78908, 'seventy-eight thousand nine hundred eight'),\n(13066, 17761, 'seventeen thousand seven hundred sixty-one'),\n(13067, 69050, 'sixty-nine thousand fifty'),\n(13068, 13445, 'thirteen thousand four hundred forty-five'),\n(13069, 67021, 'sixty-seven thousand twenty-one'),\n(13070, 51585, 'fifty-one thousand five hundred eighty-five'),\n(13071, 11363, 'eleven thousand three hundred sixty-three'),\n(13072, 36716, 'thirty-six thousand seven hundred sixteen'),\n(13073, 46088, 'forty-six thousand eighty-eight'),\n(13074, 92349, 'ninety-two thousand three hundred forty-nine'),\n(13075, 85292, 'eighty-five thousand two hundred ninety-two'),\n(13076, 20095, 'twenty thousand ninety-five'),\n(13077, 28912, 'twenty-eight thousand nine hundred twelve'),\n(13078, 55114, 'fifty-five thousand one hundred fourteen'),\n(13079, 68563, 'sixty-eight thousand five hundred sixty-three'),\n(13080, 80654, 'eighty thousand six hundred fifty-four'),\n(13081, 74404, 'seventy-four thousand four hundred four'),\n(13082, 47088, 'forty-seven thousand eighty-eight'),\n(13083, 94552, 'ninety-four thousand five hundred fifty-two'),\n(13084, 37271, 'thirty-seven thousand two hundred seventy-one'),\n(13085, 64669, 'sixty-four thousand six hundred sixty-nine'),\n(13086, 19183, 'nineteen thousand one hundred eighty-three'),\n(13087, 9634, 'nine thousand six hundred thirty-four'),\n(13088, 90937, 'ninety thousand nine hundred thirty-seven'),\n(13089, 88092, 'eighty-eight thousand ninety-two'),\n(13090, 54780, 'fifty-four thousand seven hundred eighty'),\n(13091, 53309, 'fifty-three thousand three hundred nine'),\n(13092, 99026, 'ninety-nine thousand twenty-six'),\n(13093, 17, 'seventeen'),\n(13094, 69486, 'sixty-nine thousand four hundred eighty-six'),\n(13095, 59899, 'fifty-nine thousand eight hundred ninety-nine'),\n(13096, 80285, 'eighty thousand two hundred eighty-five'),\n(13097, 85509, 'eighty-five thousand five hundred nine'),\n(13098, 94755, 'ninety-four thousand seven hundred fifty-five'),\n(13099, 67450, 'sixty-seven thousand four hundred fifty'),\n(13100, 56947, 'fifty-six thousand nine hundred forty-seven'),\n(13101, 42153, 'forty-two thousand one hundred fifty-three'),\n(13102, 40568, 'forty thousand five hundred sixty-eight'),\n(13103, 91808, 'ninety-one thousand eight hundred eight'),\n(13104, 92218, 'ninety-two thousand two hundred eighteen'),\n(13105, 38607, 'thirty-eight thousand six hundred seven'),\n(13106, 59004, 'fifty-nine thousand four'),\n(13107, 40999, 'forty thousand nine hundred ninety-nine'),\n(13108, 98708, 'ninety-eight thousand seven hundred eight'),\n(13109, 69257, 'sixty-nine thousand two hundred fifty-seven'),\n(13110, 57812, 'fifty-seven thousand eight hundred twelve'),\n(13111, 97011, 'ninety-seven thousand eleven'),\n(13112, 63689, 'sixty-three thousand six hundred eighty-nine'),\n(13113, 47810, 'forty-seven thousand eight hundred ten'),\n(13114, 48543, 'forty-eight thousand five hundred forty-three'),\n(13115, 32738, 'thirty-two thousand seven hundred thirty-eight'),\n(13116, 98108, 'ninety-eight thousand one hundred eight'),\n(13117, 85594, 'eighty-five thousand five hundred ninety-four'),\n(13118, 90226, 'ninety thousand two hundred twenty-six'),\n(13119, 80261, 'eighty thousand two hundred sixty-one'),\n(13120, 23272, 'twenty-three thousand two hundred seventy-two'),\n(13121, 19053, 'nineteen thousand fifty-three'),\n(13122, 56373, 'fifty-six thousand three hundred seventy-three'),\n(13123, 19322, 'nineteen thousand three hundred twenty-two'),\n(13124, 97254, 'ninety-seven thousand two hundred fifty-four'),\n(13125, 47329, 'forty-seven thousand three hundred twenty-nine'),\n(13126, 84678, 'eighty-four thousand six hundred seventy-eight'),\n(13127, 20059, 'twenty thousand fifty-nine'),\n(13128, 12108, 'twelve thousand one hundred eight'),\n(13129, 16420, 'sixteen thousand four hundred twenty'),\n(13130, 67952, 'sixty-seven thousand nine hundred fifty-two'),\n(13131, 36158, 'thirty-six thousand one hundred fifty-eight'),\n(13132, 34597, 'thirty-four thousand five hundred ninety-seven'),\n(13133, 71732, 'seventy-one thousand seven hundred thirty-two'),\n(13134, 31284, 'thirty-one thousand two hundred eighty-four'),\n(13135, 26136, 'twenty-six thousand one hundred thirty-six'),\n(13136, 39234, 'thirty-nine thousand two hundred thirty-four'),\n(13137, 66958, 'sixty-six thousand nine hundred fifty-eight'),\n(13138, 5617, 'five thousand six hundred seventeen'),\n(13139, 48970, 'forty-eight thousand nine hundred seventy'),\n(13140, 76398, 'seventy-six thousand three hundred ninety-eight'),\n(13141, 87695, 'eighty-seven thousand six hundred ninety-five'),\n(13142, 31650, 'thirty-one thousand six hundred fifty'),\n(13143, 73864, 'seventy-three thousand eight hundred sixty-four'),\n(13144, 22223, 'twenty-two thousand two hundred twenty-three'),\n(13145, 63003, 'sixty-three thousand three'),\n(13146, 98235, 'ninety-eight thousand two hundred thirty-five'),\n(13147, 73516, 'seventy-three thousand five hundred sixteen'),\n(13148, 22055, 'twenty-two thousand fifty-five'),\n(13149, 84687, 'eighty-four thousand six hundred eighty-seven'),\n(13150, 16220, 'sixteen thousand two hundred twenty'),\n(13151, 20833, 'twenty thousand eight hundred thirty-three'),\n(13152, 7128, 'seven thousand one hundred twenty-eight'),\n(13153, 27644, 'twenty-seven thousand six hundred forty-four'),\n(13154, 68264, 'sixty-eight thousand two hundred sixty-four'),\n(13155, 33776, 'thirty-three thousand seven hundred seventy-six'),\n(13156, 49827, 'forty-nine thousand eight hundred twenty-seven'),\n(13157, 12916, 'twelve thousand nine hundred sixteen'),\n(13158, 45687, 'forty-five thousand six hundred eighty-seven'),\n(13159, 7743, 'seven thousand seven hundred forty-three'),\n(13160, 63030, 'sixty-three thousand thirty'),\n(13161, 38906, 'thirty-eight thousand nine hundred six'),\n(13162, 44710, 'forty-four thousand seven hundred ten'),\n(13163, 9474, 'nine thousand four hundred seventy-four'),\n(13164, 37011, 'thirty-seven thousand eleven'),\n(13165, 77744, 'seventy-seven thousand seven hundred forty-four'),\n(13166, 57850, 'fifty-seven thousand eight hundred fifty'),\n(13167, 24437, 'twenty-four thousand four hundred thirty-seven'),\n(13168, 23844, 'twenty-three thousand eight hundred forty-four'),\n(13169, 49159, 'forty-nine thousand one hundred fifty-nine'),\n(13170, 90603, 'ninety thousand six hundred three'),\n(13171, 8572, 'eight thousand five hundred seventy-two'),\n(13172, 56313, 'fifty-six thousand three hundred thirteen'),\n(13173, 19119, 'nineteen thousand one hundred nineteen'),\n(13174, 65311, 'sixty-five thousand three hundred eleven'),\n(13175, 35790, 'thirty-five thousand seven hundred ninety'),\n(13176, 20728, 'twenty thousand seven hundred twenty-eight'),\n(13177, 54455, 'fifty-four thousand four hundred fifty-five'),\n(13178, 60544, 'sixty thousand five hundred forty-four'),\n(13179, 57973, 'fifty-seven thousand nine hundred seventy-three'),\n(13180, 7535, 'seven thousand five hundred thirty-five'),\n(13181, 25572, 'twenty-five thousand five hundred seventy-two'),\n(13182, 61500, 'sixty-one thousand five hundred'),\n(13183, 68875, 'sixty-eight thousand eight hundred seventy-five'),\n(13184, 90763, 'ninety thousand seven hundred sixty-three'),\n(13185, 86035, 'eighty-six thousand thirty-five'),\n(13186, 45854, 'forty-five thousand eight hundred fifty-four'),\n(13187, 11968, 'eleven thousand nine hundred sixty-eight'),\n(13188, 81860, 'eighty-one thousand eight hundred sixty'),\n(13189, 66107, 'sixty-six thousand one hundred seven'),\n(13190, 70187, 'seventy thousand one hundred eighty-seven'),\n(13191, 17308, 'seventeen thousand three hundred eight'),\n(13192, 73925, 'seventy-three thousand nine hundred twenty-five'),\n(13193, 691, 'six hundred ninety-one'),\n(13194, 94456, 'ninety-four thousand four hundred fifty-six'),\n(13195, 77428, 'seventy-seven thousand four hundred twenty-eight'),\n(13196, 31298, 'thirty-one thousand two hundred ninety-eight'),\n(13197, 97105, 'ninety-seven thousand one hundred five'),\n(13198, 57128, 'fifty-seven thousand one hundred twenty-eight'),\n(13199, 46300, 'forty-six thousand three hundred'),\n(13200, 63106, 'sixty-three thousand one hundred six'),\n(13201, 89302, 'eighty-nine thousand three hundred two'),\n(13202, 86112, 'eighty-six thousand one hundred twelve'),\n(13203, 39338, 'thirty-nine thousand three hundred thirty-eight'),\n(13204, 88424, 'eighty-eight thousand four hundred twenty-four'),\n(13205, 81912, 'eighty-one thousand nine hundred twelve'),\n(13206, 74848, 'seventy-four thousand eight hundred forty-eight'),\n(13207, 87127, 'eighty-seven thousand one hundred twenty-seven'),\n(13208, 96602, 'ninety-six thousand six hundred two'),\n(13209, 48708, 'forty-eight thousand seven hundred eight'),\n(13210, 61251, 'sixty-one thousand two hundred fifty-one'),\n(13211, 27573, 'twenty-seven thousand five hundred seventy-three'),\n(13212, 22015, 'twenty-two thousand fifteen'),\n(13213, 9616, 'nine thousand six hundred sixteen'),\n(13214, 93052, 'ninety-three thousand fifty-two'),\n(13215, 67520, 'sixty-seven thousand five hundred twenty'),\n(13216, 64749, 'sixty-four thousand seven hundred forty-nine'),\n(13217, 28090, 'twenty-eight thousand ninety'),\n(13218, 87071, 'eighty-seven thousand seventy-one'),\n(13219, 25414, 'twenty-five thousand four hundred fourteen'),\n(13220, 45265, 'forty-five thousand two hundred sixty-five'),\n(13221, 63788, 'sixty-three thousand seven hundred eighty-eight'),\n(13222, 59271, 'fifty-nine thousand two hundred seventy-one'),\n(13223, 47929, 'forty-seven thousand nine hundred twenty-nine'),\n(13224, 40363, 'forty thousand three hundred sixty-three'),\n(13225, 82602, 'eighty-two thousand six hundred two'),\n(13226, 63778, 'sixty-three thousand seven hundred seventy-eight'),\n(13227, 71237, 'seventy-one thousand two hundred thirty-seven'),\n(13228, 77446, 'seventy-seven thousand four hundred forty-six'),\n(13229, 18974, 'eighteen thousand nine hundred seventy-four'),\n(13230, 36156, 'thirty-six thousand one hundred fifty-six'),\n(13231, 1495, 'one thousand four hundred ninety-five'),\n(13232, 49776, 'forty-nine thousand seven hundred seventy-six'),\n(13233, 10976, 'ten thousand nine hundred seventy-six'),\n(13234, 33832, 'thirty-three thousand eight hundred thirty-two'),\n(13235, 42095, 'forty-two thousand ninety-five'),\n(13236, 64617, 'sixty-four thousand six hundred seventeen'),\n(13237, 80279, 'eighty thousand two hundred seventy-nine'),\n(13238, 13504, 'thirteen thousand five hundred four'),\n(13239, 49514, 'forty-nine thousand five hundred fourteen'),\n(13240, 51916, 'fifty-one thousand nine hundred sixteen'),\n(13241, 28720, 'twenty-eight thousand seven hundred twenty'),\n(13242, 17828, 'seventeen thousand eight hundred twenty-eight'),\n(13243, 55057, 'fifty-five thousand fifty-seven'),\n(13244, 24817, 'twenty-four thousand eight hundred seventeen'),\n(13245, 86737, 'eighty-six thousand seven hundred thirty-seven'),\n(13246, 13114, 'thirteen thousand one hundred fourteen'),\n(13247, 75817, 'seventy-five thousand eight hundred seventeen'),\n(13248, 26975, 'twenty-six thousand nine hundred seventy-five'),\n(13249, 41421, 'forty-one thousand four hundred twenty-one'),\n(13250, 33492, 'thirty-three thousand four hundred ninety-two'),\n(13251, 48601, 'forty-eight thousand six hundred one'),\n(13252, 46762, 'forty-six thousand seven hundred sixty-two'),\n(13253, 77731, 'seventy-seven thousand seven hundred thirty-one'),\n(13254, 63058, 'sixty-three thousand fifty-eight'),\n(13255, 37971, 'thirty-seven thousand nine hundred seventy-one'),\n(13256, 68213, 'sixty-eight thousand two hundred thirteen'),\n(13257, 9320, 'nine thousand three hundred twenty'),\n(13258, 33706, 'thirty-three thousand seven hundred six'),\n(13259, 18617, 'eighteen thousand six hundred seventeen'),\n(13260, 57406, 'fifty-seven thousand four hundred six'),\n(13261, 34096, 'thirty-four thousand ninety-six'),\n(13262, 24762, 'twenty-four thousand seven hundred sixty-two'),\n(13263, 65449, 'sixty-five thousand four hundred forty-nine'),\n(13264, 71265, 'seventy-one thousand two hundred sixty-five'),\n(13265, 88866, 'eighty-eight thousand eight hundred sixty-six'),\n(13266, 3049, 'three thousand forty-nine'),\n(13267, 6758, 'six thousand seven hundred fifty-eight'),\n(13268, 69365, 'sixty-nine thousand three hundred sixty-five'),\n(13269, 30374, 'thirty thousand three hundred seventy-four'),\n(13270, 91542, 'ninety-one thousand five hundred forty-two'),\n(13271, 5572, 'five thousand five hundred seventy-two'),\n(13272, 64239, 'sixty-four thousand two hundred thirty-nine'),\n(13273, 83705, 'eighty-three thousand seven hundred five'),\n(13274, 39370, 'thirty-nine thousand three hundred seventy'),\n(13275, 58680, 'fifty-eight thousand six hundred eighty'),\n(13276, 36183, 'thirty-six thousand one hundred eighty-three'),\n(13277, 78239, 'seventy-eight thousand two hundred thirty-nine'),\n(13278, 7171, 'seven thousand one hundred seventy-one'),\n(13279, 36180, 'thirty-six thousand one hundred eighty'),\n(13280, 16163, 'sixteen thousand one hundred sixty-three'),\n(13281, 76747, 'seventy-six thousand seven hundred forty-seven'),\n(13282, 65685, 'sixty-five thousand six hundred eighty-five'),\n(13283, 25680, 'twenty-five thousand six hundred eighty'),\n(13284, 33224, 'thirty-three thousand two hundred twenty-four'),\n(13285, 78, 'seventy-eight'),\n(13286, 22597, 'twenty-two thousand five hundred ninety-seven'),\n(13287, 13482, 'thirteen thousand four hundred eighty-two'),\n(13288, 86333, 'eighty-six thousand three hundred thirty-three'),\n(13289, 70133, 'seventy thousand one hundred thirty-three'),\n(13290, 13783, 'thirteen thousand seven hundred eighty-three'),\n(13291, 37938, 'thirty-seven thousand nine hundred thirty-eight'),\n(13292, 52579, 'fifty-two thousand five hundred seventy-nine'),\n(13293, 68753, 'sixty-eight thousand seven hundred fifty-three'),\n(13294, 70174, 'seventy thousand one hundred seventy-four'),\n(13295, 13561, 'thirteen thousand five hundred sixty-one'),\n(13296, 51882, 'fifty-one thousand eight hundred eighty-two'),\n(13297, 28939, 'twenty-eight thousand nine hundred thirty-nine'),\n(13298, 3693, 'three thousand six hundred ninety-three'),\n(13299, 31130, 'thirty-one thousand one hundred thirty'),\n(13300, 83831, 'eighty-three thousand eight hundred thirty-one'),\n(13301, 77722, 'seventy-seven thousand seven hundred twenty-two'),\n(13302, 65337, 'sixty-five thousand three hundred thirty-seven'),\n(13303, 96037, 'ninety-six thousand thirty-seven'),\n(13304, 32773, 'thirty-two thousand seven hundred seventy-three'),\n(13305, 2990, 'two thousand nine hundred ninety'),\n(13306, 49823, 'forty-nine thousand eight hundred twenty-three'),\n(13307, 8124, 'eight thousand one hundred twenty-four'),\n(13308, 25198, 'twenty-five thousand one hundred ninety-eight'),\n(13309, 49663, 'forty-nine thousand six hundred sixty-three'),\n(13310, 71537, 'seventy-one thousand five hundred thirty-seven'),\n(13311, 69998, 'sixty-nine thousand nine hundred ninety-eight'),\n(13312, 41111, 'forty-one thousand one hundred eleven'),\n(13313, 78488, 'seventy-eight thousand four hundred eighty-eight'),\n(13314, 17571, 'seventeen thousand five hundred seventy-one'),\n(13315, 69172, 'sixty-nine thousand one hundred seventy-two'),\n(13316, 75159, 'seventy-five thousand one hundred fifty-nine'),\n(13317, 83883, 'eighty-three thousand eight hundred eighty-three'),\n(13318, 36430, 'thirty-six thousand four hundred thirty'),\n(13319, 27033, 'twenty-seven thousand thirty-three'),\n(13320, 43834, 'forty-three thousand eight hundred thirty-four'),\n(13321, 51292, 'fifty-one thousand two hundred ninety-two'),\n(13322, 25457, 'twenty-five thousand four hundred fifty-seven'),\n(13323, 48910, 'forty-eight thousand nine hundred ten'),\n(13324, 80817, 'eighty thousand eight hundred seventeen'),\n(13325, 99773, 'ninety-nine thousand seven hundred seventy-three'),\n(13326, 33940, 'thirty-three thousand nine hundred forty'),\n(13327, 90828, 'ninety thousand eight hundred twenty-eight'),\n(13328, 55948, 'fifty-five thousand nine hundred forty-eight'),\n(13329, 1767, 'one thousand seven hundred sixty-seven'),\n(13330, 56542, 'fifty-six thousand five hundred forty-two'),\n(13331, 88543, 'eighty-eight thousand five hundred forty-three'),\n(13332, 32759, 'thirty-two thousand seven hundred fifty-nine'),\n(13333, 5327, 'five thousand three hundred twenty-seven'),\n(13334, 76276, 'seventy-six thousand two hundred seventy-six'),\n(13335, 90742, 'ninety thousand seven hundred forty-two'),\n(13336, 30611, 'thirty thousand six hundred eleven'),\n(13337, 25649, 'twenty-five thousand six hundred forty-nine'),\n(13338, 96874, 'ninety-six thousand eight hundred seventy-four'),\n(13339, 17912, 'seventeen thousand nine hundred twelve'),\n(13340, 79403, 'seventy-nine thousand four hundred three'),\n(13341, 91357, 'ninety-one thousand three hundred fifty-seven'),\n(13342, 77050, 'seventy-seven thousand fifty'),\n(13343, 82053, 'eighty-two thousand fifty-three'),\n(13344, 64347, 'sixty-four thousand three hundred forty-seven'),\n(13345, 87792, 'eighty-seven thousand seven hundred ninety-two'),\n(13346, 64101, 'sixty-four thousand one hundred one'),\n(13347, 63491, 'sixty-three thousand four hundred ninety-one'),\n(13348, 42040, 'forty-two thousand forty'),\n(13349, 40355, 'forty thousand three hundred fifty-five'),\n(13350, 6843, 'six thousand eight hundred forty-three'),\n(13351, 55892, 'fifty-five thousand eight hundred ninety-two'),\n(13352, 14744, 'fourteen thousand seven hundred forty-four'),\n(13353, 88165, 'eighty-eight thousand one hundred sixty-five'),\n(13354, 10518, 'ten thousand five hundred eighteen'),\n(13355, 19050, 'nineteen thousand fifty'),\n(13356, 43738, 'forty-three thousand seven hundred thirty-eight'),\n(13357, 70895, 'seventy thousand eight hundred ninety-five'),\n(13358, 54828, 'fifty-four thousand eight hundred twenty-eight'),\n(13359, 99368, 'ninety-nine thousand three hundred sixty-eight'),\n(13360, 55406, 'fifty-five thousand four hundred six'),\n(13361, 28328, 'twenty-eight thousand three hundred twenty-eight'),\n(13362, 62528, 'sixty-two thousand five hundred twenty-eight'),\n(13363, 29122, 'twenty-nine thousand one hundred twenty-two'),\n(13364, 11852, 'eleven thousand eight hundred fifty-two'),\n(13365, 85065, 'eighty-five thousand sixty-five'),\n(13366, 45208, 'forty-five thousand two hundred eight'),\n(13367, 55281, 'fifty-five thousand two hundred eighty-one'),\n(13368, 94404, 'ninety-four thousand four hundred four'),\n(13369, 43021, 'forty-three thousand twenty-one'),\n(13370, 10467, 'ten thousand four hundred sixty-seven'),\n(13371, 4830, 'four thousand eight hundred thirty'),\n(13372, 59383, 'fifty-nine thousand three hundred eighty-three'),\n(13373, 36140, 'thirty-six thousand one hundred forty'),\n(13374, 603, 'six hundred three'),\n(13375, 53699, 'fifty-three thousand six hundred ninety-nine'),\n(13376, 95404, 'ninety-five thousand four hundred four'),\n(13377, 90574, 'ninety thousand five hundred seventy-four'),\n(13378, 26510, 'twenty-six thousand five hundred ten'),\n(13379, 9397, 'nine thousand three hundred ninety-seven'),\n(13380, 36162, 'thirty-six thousand one hundred sixty-two'),\n(13381, 31027, 'thirty-one thousand twenty-seven'),\n(13382, 97783, 'ninety-seven thousand seven hundred eighty-three'),\n(13383, 56834, 'fifty-six thousand eight hundred thirty-four'),\n(13384, 89437, 'eighty-nine thousand four hundred thirty-seven'),\n(13385, 92233, 'ninety-two thousand two hundred thirty-three'),\n(13386, 44514, 'forty-four thousand five hundred fourteen'),\n(13387, 47258, 'forty-seven thousand two hundred fifty-eight'),\n(13388, 15198, 'fifteen thousand one hundred ninety-eight'),\n(13389, 42412, 'forty-two thousand four hundred twelve'),\n(13390, 91467, 'ninety-one thousand four hundred sixty-seven'),\n(13391, 75997, 'seventy-five thousand nine hundred ninety-seven'),\n(13392, 58256, 'fifty-eight thousand two hundred fifty-six'),\n(13393, 12222, 'twelve thousand two hundred twenty-two'),\n(13394, 2419, 'two thousand four hundred nineteen'),\n(13395, 84900, 'eighty-four thousand nine hundred'),\n(13396, 98269, 'ninety-eight thousand two hundred sixty-nine'),\n(13397, 17206, 'seventeen thousand two hundred six'),\n(13398, 51361, 'fifty-one thousand three hundred sixty-one'),\n(13399, 23467, 'twenty-three thousand four hundred sixty-seven'),\n(13400, 8055, 'eight thousand fifty-five'),\n(13401, 87241, 'eighty-seven thousand two hundred forty-one'),\n(13402, 32080, 'thirty-two thousand eighty'),\n(13403, 83390, 'eighty-three thousand three hundred ninety'),\n(13404, 23000, 'twenty-three thousand'),\n(13405, 43354, 'forty-three thousand three hundred fifty-four'),\n(13406, 44491, 'forty-four thousand four hundred ninety-one'),\n(13407, 74782, 'seventy-four thousand seven hundred eighty-two'),\n(13408, 90336, 'ninety thousand three hundred thirty-six'),\n(13409, 15523, 'fifteen thousand five hundred twenty-three'),\n(13410, 11877, 'eleven thousand eight hundred seventy-seven'),\n(13411, 67309, 'sixty-seven thousand three hundred nine'),\n(13412, 99542, 'ninety-nine thousand five hundred forty-two'),\n(13413, 19838, 'nineteen thousand eight hundred thirty-eight'),\n(13414, 22532, 'twenty-two thousand five hundred thirty-two'),\n(13415, 78981, 'seventy-eight thousand nine hundred eighty-one'),\n(13416, 1052, 'one thousand fifty-two'),\n(13417, 57547, 'fifty-seven thousand five hundred forty-seven'),\n(13418, 56696, 'fifty-six thousand six hundred ninety-six'),\n(13419, 48605, 'forty-eight thousand six hundred five'),\n(13420, 94545, 'ninety-four thousand five hundred forty-five'),\n(13421, 55045, 'fifty-five thousand forty-five'),\n(13422, 74036, 'seventy-four thousand thirty-six'),\n(13423, 64263, 'sixty-four thousand two hundred sixty-three'),\n(13424, 28331, 'twenty-eight thousand three hundred thirty-one'),\n(13425, 35170, 'thirty-five thousand one hundred seventy'),\n(13426, 78992, 'seventy-eight thousand nine hundred ninety-two'),\n(13427, 83426, 'eighty-three thousand four hundred twenty-six'),\n(13428, 8310, 'eight thousand three hundred ten'),\n(13429, 99895, 'ninety-nine thousand eight hundred ninety-five'),\n(13430, 55767, 'fifty-five thousand seven hundred sixty-seven'),\n(13431, 44342, 'forty-four thousand three hundred forty-two'),\n(13432, 2243, 'two thousand two hundred forty-three'),\n(13433, 41475, 'forty-one thousand four hundred seventy-five'),\n(13434, 57794, 'fifty-seven thousand seven hundred ninety-four'),\n(13435, 64889, 'sixty-four thousand eight hundred eighty-nine'),\n(13436, 86777, 'eighty-six thousand seven hundred seventy-seven'),\n(13437, 47762, 'forty-seven thousand seven hundred sixty-two'),\n(13438, 8420, 'eight thousand four hundred twenty'),\n(13439, 26278, 'twenty-six thousand two hundred seventy-eight'),\n(13440, 42886, 'forty-two thousand eight hundred eighty-six'),\n(13441, 33345, 'thirty-three thousand three hundred forty-five'),\n(13442, 66540, 'sixty-six thousand five hundred forty'),\n(13443, 16851, 'sixteen thousand eight hundred fifty-one'),\n(13444, 93006, 'ninety-three thousand six'),\n(13445, 82573, 'eighty-two thousand five hundred seventy-three'),\n(13446, 62178, 'sixty-two thousand one hundred seventy-eight'),\n(13447, 95367, 'ninety-five thousand three hundred sixty-seven'),\n(13448, 31606, 'thirty-one thousand six hundred six'),\n(13449, 74497, 'seventy-four thousand four hundred ninety-seven'),\n(13450, 83378, 'eighty-three thousand three hundred seventy-eight'),\n(13451, 41392, 'forty-one thousand three hundred ninety-two'),\n(13452, 33072, 'thirty-three thousand seventy-two'),\n(13453, 1977, 'one thousand nine hundred seventy-seven'),\n(13454, 62995, 'sixty-two thousand nine hundred ninety-five'),\n(13455, 61623, 'sixty-one thousand six hundred twenty-three'),\n(13456, 49220, 'forty-nine thousand two hundred twenty'),\n(13457, 60349, 'sixty thousand three hundred forty-nine'),\n(13458, 22280, 'twenty-two thousand two hundred eighty'),\n(13459, 48986, 'forty-eight thousand nine hundred eighty-six'),\n(13460, 67323, 'sixty-seven thousand three hundred twenty-three'),\n(13461, 13842, 'thirteen thousand eight hundred forty-two'),\n(13462, 79808, 'seventy-nine thousand eight hundred eight'),\n(13463, 80092, 'eighty thousand ninety-two'),\n(13464, 90793, 'ninety thousand seven hundred ninety-three'),\n(13465, 76587, 'seventy-six thousand five hundred eighty-seven'),\n(13466, 29211, 'twenty-nine thousand two hundred eleven'),\n(13467, 11014, 'eleven thousand fourteen'),\n(13468, 59699, 'fifty-nine thousand six hundred ninety-nine'),\n(13469, 86477, 'eighty-six thousand four hundred seventy-seven'),\n(13470, 78971, 'seventy-eight thousand nine hundred seventy-one'),\n(13471, 50759, 'fifty thousand seven hundred fifty-nine'),\n(13472, 95098, 'ninety-five thousand ninety-eight'),\n(13473, 2732, 'two thousand seven hundred thirty-two'),\n(13474, 40096, 'forty thousand ninety-six'),\n(13475, 26418, 'twenty-six thousand four hundred eighteen'),\n(13476, 71511, 'seventy-one thousand five hundred eleven'),\n(13477, 61899, 'sixty-one thousand eight hundred ninety-nine'),\n(13478, 4927, 'four thousand nine hundred twenty-seven'),\n(13479, 52956, 'fifty-two thousand nine hundred fifty-six'),\n(13480, 77986, 'seventy-seven thousand nine hundred eighty-six'),\n(13481, 13187, 'thirteen thousand one hundred eighty-seven'),\n(13482, 22526, 'twenty-two thousand five hundred twenty-six'),\n(13483, 1377, 'one thousand three hundred seventy-seven'),\n(13484, 20634, 'twenty thousand six hundred thirty-four'),\n(13485, 81756, 'eighty-one thousand seven hundred fifty-six'),\n(13486, 20205, 'twenty thousand two hundred five'),\n(13487, 25049, 'twenty-five thousand forty-nine'),\n(13488, 31776, 'thirty-one thousand seven hundred seventy-six'),\n(13489, 64630, 'sixty-four thousand six hundred thirty'),\n(13490, 33492, 'thirty-three thousand four hundred ninety-two'),\n(13491, 12518, 'twelve thousand five hundred eighteen'),\n(13492, 29394, 'twenty-nine thousand three hundred ninety-four'),\n(13493, 92382, 'ninety-two thousand three hundred eighty-two'),\n(13494, 51703, 'fifty-one thousand seven hundred three'),\n(13495, 516, 'five hundred sixteen'),\n(13496, 95945, 'ninety-five thousand nine hundred forty-five'),\n(13497, 9909, 'nine thousand nine hundred nine'),\n(13498, 23810, 'twenty-three thousand eight hundred ten'),\n(13499, 14560, 'fourteen thousand five hundred sixty'),\n(13500, 34702, 'thirty-four thousand seven hundred two'),\n(13501, 60387, 'sixty thousand three hundred eighty-seven'),\n(13502, 61499, 'sixty-one thousand four hundred ninety-nine'),\n(13503, 19884, 'nineteen thousand eight hundred eighty-four'),\n(13504, 57856, 'fifty-seven thousand eight hundred fifty-six'),\n(13505, 41398, 'forty-one thousand three hundred ninety-eight'),\n(13506, 57526, 'fifty-seven thousand five hundred twenty-six'),\n(13507, 35265, 'thirty-five thousand two hundred sixty-five'),\n(13508, 35691, 'thirty-five thousand six hundred ninety-one'),\n(13509, 818, 'eight hundred eighteen'),\n(13510, 22039, 'twenty-two thousand thirty-nine'),\n(13511, 55871, 'fifty-five thousand eight hundred seventy-one'),\n(13512, 92931, 'ninety-two thousand nine hundred thirty-one'),\n(13513, 63543, 'sixty-three thousand five hundred forty-three'),\n(13514, 84377, 'eighty-four thousand three hundred seventy-seven'),\n(13515, 44593, 'forty-four thousand five hundred ninety-three'),\n(13516, 51739, 'fifty-one thousand seven hundred thirty-nine'),\n(13517, 6910, 'six thousand nine hundred ten'),\n(13518, 17557, 'seventeen thousand five hundred fifty-seven'),\n(13519, 59217, 'fifty-nine thousand two hundred seventeen'),\n(13520, 94841, 'ninety-four thousand eight hundred forty-one'),\n(13521, 66358, 'sixty-six thousand three hundred fifty-eight'),\n(13522, 19619, 'nineteen thousand six hundred nineteen'),\n(13523, 64737, 'sixty-four thousand seven hundred thirty-seven'),\n(13524, 73839, 'seventy-three thousand eight hundred thirty-nine'),\n(13525, 35628, 'thirty-five thousand six hundred twenty-eight'),\n(13526, 58372, 'fifty-eight thousand three hundred seventy-two'),\n(13527, 99278, 'ninety-nine thousand two hundred seventy-eight'),\n(13528, 763, 'seven hundred sixty-three'),\n(13529, 69991, 'sixty-nine thousand nine hundred ninety-one'),\n(13530, 79568, 'seventy-nine thousand five hundred sixty-eight'),\n(13531, 9667, 'nine thousand six hundred sixty-seven'),\n(13532, 63436, 'sixty-three thousand four hundred thirty-six'),\n(13533, 991, 'nine hundred ninety-one'),\n(13534, 73161, 'seventy-three thousand one hundred sixty-one'),\n(13535, 32088, 'thirty-two thousand eighty-eight'),\n(13536, 49035, 'forty-nine thousand thirty-five'),\n(13537, 96727, 'ninety-six thousand seven hundred twenty-seven'),\n(13538, 72707, 'seventy-two thousand seven hundred seven'),\n(13539, 3444, 'three thousand four hundred forty-four'),\n(13540, 19145, 'nineteen thousand one hundred forty-five'),\n(13541, 76918, 'seventy-six thousand nine hundred eighteen'),\n(13542, 63463, 'sixty-three thousand four hundred sixty-three'),\n(13543, 14934, 'fourteen thousand nine hundred thirty-four'),\n(13544, 68275, 'sixty-eight thousand two hundred seventy-five'),\n(13545, 88665, 'eighty-eight thousand six hundred sixty-five'),\n(13546, 8713, 'eight thousand seven hundred thirteen'),\n(13547, 25661, 'twenty-five thousand six hundred sixty-one'),\n(13548, 58355, 'fifty-eight thousand three hundred fifty-five'),\n(13549, 30055, 'thirty thousand fifty-five'),\n(13550, 67285, 'sixty-seven thousand two hundred eighty-five'),\n(13551, 23326, 'twenty-three thousand three hundred twenty-six'),\n(13552, 95446, 'ninety-five thousand four hundred forty-six'),\n(13553, 63153, 'sixty-three thousand one hundred fifty-three'),\n(13554, 8540, 'eight thousand five hundred forty'),\n(13555, 67361, 'sixty-seven thousand three hundred sixty-one'),\n(13556, 29414, 'twenty-nine thousand four hundred fourteen'),\n(13557, 44839, 'forty-four thousand eight hundred thirty-nine'),\n(13558, 95335, 'ninety-five thousand three hundred thirty-five'),\n(13559, 86735, 'eighty-six thousand seven hundred thirty-five'),\n(13560, 84792, 'eighty-four thousand seven hundred ninety-two'),\n(13561, 3618, 'three thousand six hundred eighteen'),\n(13562, 28983, 'twenty-eight thousand nine hundred eighty-three'),\n(13563, 49829, 'forty-nine thousand eight hundred twenty-nine'),\n(13564, 53821, 'fifty-three thousand eight hundred twenty-one'),\n(13565, 68650, 'sixty-eight thousand six hundred fifty'),\n(13566, 68622, 'sixty-eight thousand six hundred twenty-two'),\n(13567, 80151, 'eighty thousand one hundred fifty-one'),\n(13568, 64110, 'sixty-four thousand one hundred ten'),\n(13569, 96810, 'ninety-six thousand eight hundred ten'),\n(13570, 45608, 'forty-five thousand six hundred eight'),\n(13571, 56692, 'fifty-six thousand six hundred ninety-two'),\n(13572, 44602, 'forty-four thousand six hundred two'),\n(13573, 67918, 'sixty-seven thousand nine hundred eighteen'),\n(13574, 1803, 'one thousand eight hundred three'),\n(13575, 15145, 'fifteen thousand one hundred forty-five'),\n(13576, 36537, 'thirty-six thousand five hundred thirty-seven'),\n(13577, 24109, 'twenty-four thousand one hundred nine'),\n(13578, 19876, 'nineteen thousand eight hundred seventy-six'),\n(13579, 60207, 'sixty thousand two hundred seven'),\n(13580, 29207, 'twenty-nine thousand two hundred seven'),\n(13581, 56429, 'fifty-six thousand four hundred twenty-nine'),\n(13582, 37535, 'thirty-seven thousand five hundred thirty-five'),\n(13583, 85934, 'eighty-five thousand nine hundred thirty-four'),\n(13584, 41938, 'forty-one thousand nine hundred thirty-eight'),\n(13585, 46784, 'forty-six thousand seven hundred eighty-four'),\n(13586, 78580, 'seventy-eight thousand five hundred eighty'),\n(13587, 45566, 'forty-five thousand five hundred sixty-six'),\n(13588, 10161, 'ten thousand one hundred sixty-one'),\n(13589, 6154, 'six thousand one hundred fifty-four'),\n(13590, 23301, 'twenty-three thousand three hundred one'),\n(13591, 57986, 'fifty-seven thousand nine hundred eighty-six'),\n(13592, 44499, 'forty-four thousand four hundred ninety-nine'),\n(13593, 99171, 'ninety-nine thousand one hundred seventy-one'),\n(13594, 29175, 'twenty-nine thousand one hundred seventy-five'),\n(13595, 92886, 'ninety-two thousand eight hundred eighty-six'),\n(13596, 18921, 'eighteen thousand nine hundred twenty-one'),\n(13597, 24201, 'twenty-four thousand two hundred one'),\n(13598, 73123, 'seventy-three thousand one hundred twenty-three'),\n(13599, 66328, 'sixty-six thousand three hundred twenty-eight'),\n(13600, 55686, 'fifty-five thousand six hundred eighty-six'),\n(13601, 1943, 'one thousand nine hundred forty-three'),\n(13602, 81508, 'eighty-one thousand five hundred eight'),\n(13603, 21239, 'twenty-one thousand two hundred thirty-nine'),\n(13604, 9414, 'nine thousand four hundred fourteen'),\n(13605, 29164, 'twenty-nine thousand one hundred sixty-four'),\n(13606, 41613, 'forty-one thousand six hundred thirteen'),\n(13607, 74457, 'seventy-four thousand four hundred fifty-seven'),\n(13608, 8754, 'eight thousand seven hundred fifty-four'),\n(13609, 10681, 'ten thousand six hundred eighty-one'),\n(13610, 24393, 'twenty-four thousand three hundred ninety-three'),\n(13611, 24211, 'twenty-four thousand two hundred eleven'),\n(13612, 30021, 'thirty thousand twenty-one'),\n(13613, 50349, 'fifty thousand three hundred forty-nine'),\n(13614, 66275, 'sixty-six thousand two hundred seventy-five'),\n(13615, 97350, 'ninety-seven thousand three hundred fifty'),\n(13616, 92377, 'ninety-two thousand three hundred seventy-seven'),\n(13617, 41627, 'forty-one thousand six hundred twenty-seven'),\n(13618, 41964, 'forty-one thousand nine hundred sixty-four'),\n(13619, 82508, 'eighty-two thousand five hundred eight'),\n(13620, 48449, 'forty-eight thousand four hundred forty-nine'),\n(13621, 88595, 'eighty-eight thousand five hundred ninety-five'),\n(13622, 11994, 'eleven thousand nine hundred ninety-four'),\n(13623, 39306, 'thirty-nine thousand three hundred six'),\n(13624, 6551, 'six thousand five hundred fifty-one'),\n(13625, 47896, 'forty-seven thousand eight hundred ninety-six'),\n(13626, 37404, 'thirty-seven thousand four hundred four'),\n(13627, 93261, 'ninety-three thousand two hundred sixty-one'),\n(13628, 83021, 'eighty-three thousand twenty-one'),\n(13629, 56118, 'fifty-six thousand one hundred eighteen'),\n(13630, 52551, 'fifty-two thousand five hundred fifty-one'),\n(13631, 47110, 'forty-seven thousand one hundred ten'),\n(13632, 43167, 'forty-three thousand one hundred sixty-seven'),\n(13633, 79542, 'seventy-nine thousand five hundred forty-two'),\n(13634, 46939, 'forty-six thousand nine hundred thirty-nine'),\n(13635, 71268, 'seventy-one thousand two hundred sixty-eight'),\n(13636, 86534, 'eighty-six thousand five hundred thirty-four'),\n(13637, 38618, 'thirty-eight thousand six hundred eighteen'),\n(13638, 99131, 'ninety-nine thousand one hundred thirty-one'),\n(13639, 84472, 'eighty-four thousand four hundred seventy-two'),\n(13640, 89328, 'eighty-nine thousand three hundred twenty-eight'),\n(13641, 29245, 'twenty-nine thousand two hundred forty-five'),\n(13642, 59709, 'fifty-nine thousand seven hundred nine'),\n(13643, 85723, 'eighty-five thousand seven hundred twenty-three'),\n(13644, 30019, 'thirty thousand nineteen'),\n(13645, 16138, 'sixteen thousand one hundred thirty-eight'),\n(13646, 52688, 'fifty-two thousand six hundred eighty-eight'),\n(13647, 62478, 'sixty-two thousand four hundred seventy-eight'),\n(13648, 96156, 'ninety-six thousand one hundred fifty-six'),\n(13649, 88164, 'eighty-eight thousand one hundred sixty-four'),\n(13650, 71440, 'seventy-one thousand four hundred forty'),\n(13651, 74688, 'seventy-four thousand six hundred eighty-eight'),\n(13652, 18531, 'eighteen thousand five hundred thirty-one'),\n(13653, 14557, 'fourteen thousand five hundred fifty-seven'),\n(13654, 89227, 'eighty-nine thousand two hundred twenty-seven'),\n(13655, 32160, 'thirty-two thousand one hundred sixty'),\n(13656, 42452, 'forty-two thousand four hundred fifty-two'),\n(13657, 65362, 'sixty-five thousand three hundred sixty-two'),\n(13658, 13918, 'thirteen thousand nine hundred eighteen'),\n(13659, 33572, 'thirty-three thousand five hundred seventy-two'),\n(13660, 82546, 'eighty-two thousand five hundred forty-six'),\n(13661, 51285, 'fifty-one thousand two hundred eighty-five'),\n(13662, 95766, 'ninety-five thousand seven hundred sixty-six'),\n(13663, 33710, 'thirty-three thousand seven hundred ten'),\n(13664, 12569, 'twelve thousand five hundred sixty-nine'),\n(13665, 75196, 'seventy-five thousand one hundred ninety-six'),\n(13666, 45772, 'forty-five thousand seven hundred seventy-two'),\n(13667, 59020, 'fifty-nine thousand twenty'),\n(13668, 39879, 'thirty-nine thousand eight hundred seventy-nine'),\n(13669, 97366, 'ninety-seven thousand three hundred sixty-six'),\n(13670, 80589, 'eighty thousand five hundred eighty-nine'),\n(13671, 11067, 'eleven thousand sixty-seven'),\n(13672, 12016, 'twelve thousand sixteen'),\n(13673, 92022, 'ninety-two thousand twenty-two'),\n(13674, 40134, 'forty thousand one hundred thirty-four'),\n(13675, 30202, 'thirty thousand two hundred two'),\n(13676, 75688, 'seventy-five thousand six hundred eighty-eight'),\n(13677, 43070, 'forty-three thousand seventy'),\n(13678, 86228, 'eighty-six thousand two hundred twenty-eight'),\n(13679, 59165, 'fifty-nine thousand one hundred sixty-five'),\n(13680, 18286, 'eighteen thousand two hundred eighty-six'),\n(13681, 46328, 'forty-six thousand three hundred twenty-eight'),\n(13682, 86548, 'eighty-six thousand five hundred forty-eight'),\n(13683, 97667, 'ninety-seven thousand six hundred sixty-seven'),\n(13684, 7244, 'seven thousand two hundred forty-four'),\n(13685, 31509, 'thirty-one thousand five hundred nine'),\n(13686, 41970, 'forty-one thousand nine hundred seventy'),\n(13687, 9049, 'nine thousand forty-nine'),\n(13688, 8910, 'eight thousand nine hundred ten'),\n(13689, 8756, 'eight thousand seven hundred fifty-six'),\n(13690, 64988, 'sixty-four thousand nine hundred eighty-eight'),\n(13691, 1099, 'one thousand ninety-nine'),\n(13692, 15267, 'fifteen thousand two hundred sixty-seven'),\n(13693, 95581, 'ninety-five thousand five hundred eighty-one'),\n(13694, 20672, 'twenty thousand six hundred seventy-two'),\n(13695, 99139, 'ninety-nine thousand one hundred thirty-nine'),\n(13696, 64165, 'sixty-four thousand one hundred sixty-five'),\n(13697, 22449, 'twenty-two thousand four hundred forty-nine'),\n(13698, 28197, 'twenty-eight thousand one hundred ninety-seven'),\n(13699, 37007, 'thirty-seven thousand seven'),\n(13700, 22127, 'twenty-two thousand one hundred twenty-seven'),\n(13701, 40755, 'forty thousand seven hundred fifty-five'),\n(13702, 38069, 'thirty-eight thousand sixty-nine'),\n(13703, 28323, 'twenty-eight thousand three hundred twenty-three'),\n(13704, 12626, 'twelve thousand six hundred twenty-six'),\n(13705, 28772, 'twenty-eight thousand seven hundred seventy-two'),\n(13706, 86658, 'eighty-six thousand six hundred fifty-eight'),\n(13707, 73460, 'seventy-three thousand four hundred sixty'),\n(13708, 38173, 'thirty-eight thousand one hundred seventy-three'),\n(13709, 98015, 'ninety-eight thousand fifteen'),\n(13710, 72134, 'seventy-two thousand one hundred thirty-four'),\n(13711, 61051, 'sixty-one thousand fifty-one'),\n(13712, 93012, 'ninety-three thousand twelve'),\n(13713, 73181, 'seventy-three thousand one hundred eighty-one'),\n(13714, 29444, 'twenty-nine thousand four hundred forty-four'),\n(13715, 59951, 'fifty-nine thousand nine hundred fifty-one'),\n(13716, 79914, 'seventy-nine thousand nine hundred fourteen'),\n(13717, 36786, 'thirty-six thousand seven hundred eighty-six'),\n(13718, 55355, 'fifty-five thousand three hundred fifty-five'),\n(13719, 3937, 'three thousand nine hundred thirty-seven'),\n(13720, 27914, 'twenty-seven thousand nine hundred fourteen'),\n(13721, 89498, 'eighty-nine thousand four hundred ninety-eight'),\n(13722, 68150, 'sixty-eight thousand one hundred fifty'),\n(13723, 2253, 'two thousand two hundred fifty-three'),\n(13724, 95501, 'ninety-five thousand five hundred one'),\n(13725, 97012, 'ninety-seven thousand twelve'),\n(13726, 99433, 'ninety-nine thousand four hundred thirty-three'),\n(13727, 45098, 'forty-five thousand ninety-eight'),\n(13728, 39812, 'thirty-nine thousand eight hundred twelve'),\n(13729, 50499, 'fifty thousand four hundred ninety-nine'),\n(13730, 43791, 'forty-three thousand seven hundred ninety-one'),\n(13731, 22768, 'twenty-two thousand seven hundred sixty-eight'),\n(13732, 91279, 'ninety-one thousand two hundred seventy-nine'),\n(13733, 31694, 'thirty-one thousand six hundred ninety-four'),\n(13734, 47770, 'forty-seven thousand seven hundred seventy'),\n(13735, 21564, 'twenty-one thousand five hundred sixty-four'),\n(13736, 26072, 'twenty-six thousand seventy-two'),\n(13737, 83165, 'eighty-three thousand one hundred sixty-five'),\n(13738, 17221, 'seventeen thousand two hundred twenty-one'),\n(13739, 98498, 'ninety-eight thousand four hundred ninety-eight'),\n(13740, 14842, 'fourteen thousand eight hundred forty-two'),\n(13741, 90554, 'ninety thousand five hundred fifty-four'),\n(13742, 62205, 'sixty-two thousand two hundred five'),\n(13743, 94700, 'ninety-four thousand seven hundred'),\n(13744, 78382, 'seventy-eight thousand three hundred eighty-two'),\n(13745, 51795, 'fifty-one thousand seven hundred ninety-five'),\n(13746, 94887, 'ninety-four thousand eight hundred eighty-seven'),\n(13747, 79649, 'seventy-nine thousand six hundred forty-nine'),\n(13748, 92354, 'ninety-two thousand three hundred fifty-four'),\n(13749, 61632, 'sixty-one thousand six hundred thirty-two'),\n(13750, 21914, 'twenty-one thousand nine hundred fourteen'),\n(13751, 54854, 'fifty-four thousand eight hundred fifty-four'),\n(13752, 50764, 'fifty thousand seven hundred sixty-four'),\n(13753, 59233, 'fifty-nine thousand two hundred thirty-three'),\n(13754, 8977, 'eight thousand nine hundred seventy-seven'),\n(13755, 54352, 'fifty-four thousand three hundred fifty-two'),\n(13756, 92304, 'ninety-two thousand three hundred four'),\n(13757, 48804, 'forty-eight thousand eight hundred four'),\n(13758, 68205, 'sixty-eight thousand two hundred five'),\n(13759, 40565, 'forty thousand five hundred sixty-five'),\n(13760, 23726, 'twenty-three thousand seven hundred twenty-six'),\n(13761, 68846, 'sixty-eight thousand eight hundred forty-six'),\n(13762, 50131, 'fifty thousand one hundred thirty-one'),\n(13763, 87075, 'eighty-seven thousand seventy-five'),\n(13764, 44491, 'forty-four thousand four hundred ninety-one'),\n(13765, 51590, 'fifty-one thousand five hundred ninety'),\n(13766, 82560, 'eighty-two thousand five hundred sixty'),\n(13767, 37576, 'thirty-seven thousand five hundred seventy-six'),\n(13768, 30956, 'thirty thousand nine hundred fifty-six'),\n(13769, 18433, 'eighteen thousand four hundred thirty-three'),\n(13770, 49862, 'forty-nine thousand eight hundred sixty-two'),\n(13771, 26441, 'twenty-six thousand four hundred forty-one'),\n(13772, 46839, 'forty-six thousand eight hundred thirty-nine'),\n(13773, 36345, 'thirty-six thousand three hundred forty-five'),\n(13774, 42273, 'forty-two thousand two hundred seventy-three'),\n(13775, 61839, 'sixty-one thousand eight hundred thirty-nine'),\n(13776, 23622, 'twenty-three thousand six hundred twenty-two'),\n(13777, 90466, 'ninety thousand four hundred sixty-six'),\n(13778, 72220, 'seventy-two thousand two hundred twenty'),\n(13779, 34782, 'thirty-four thousand seven hundred eighty-two'),\n(13780, 76923, 'seventy-six thousand nine hundred twenty-three'),\n(13781, 47080, 'forty-seven thousand eighty'),\n(13782, 86362, 'eighty-six thousand three hundred sixty-two'),\n(13783, 87536, 'eighty-seven thousand five hundred thirty-six'),\n(13784, 12350, 'twelve thousand three hundred fifty'),\n(13785, 53004, 'fifty-three thousand four'),\n(13786, 66595, 'sixty-six thousand five hundred ninety-five'),\n(13787, 15994, 'fifteen thousand nine hundred ninety-four'),\n(13788, 7954, 'seven thousand nine hundred fifty-four'),\n(13789, 28835, 'twenty-eight thousand eight hundred thirty-five'),\n(13790, 26989, 'twenty-six thousand nine hundred eighty-nine'),\n(13791, 53616, 'fifty-three thousand six hundred sixteen'),\n(13792, 18222, 'eighteen thousand two hundred twenty-two'),\n(13793, 1916, 'one thousand nine hundred sixteen'),\n(13794, 53626, 'fifty-three thousand six hundred twenty-six'),\n(13795, 46533, 'forty-six thousand five hundred thirty-three'),\n(13796, 82218, 'eighty-two thousand two hundred eighteen'),\n(13797, 22862, 'twenty-two thousand eight hundred sixty-two'),\n(13798, 42844, 'forty-two thousand eight hundred forty-four'),\n(13799, 51560, 'fifty-one thousand five hundred sixty'),\n(13800, 98578, 'ninety-eight thousand five hundred seventy-eight'),\n(13801, 83245, 'eighty-three thousand two hundred forty-five'),\n(13802, 15231, 'fifteen thousand two hundred thirty-one'),\n(13803, 62861, 'sixty-two thousand eight hundred sixty-one'),\n(13804, 42344, 'forty-two thousand three hundred forty-four'),\n(13805, 28132, 'twenty-eight thousand one hundred thirty-two'),\n(13806, 2983, 'two thousand nine hundred eighty-three'),\n(13807, 10633, 'ten thousand six hundred thirty-three'),\n(13808, 71782, 'seventy-one thousand seven hundred eighty-two'),\n(13809, 22697, 'twenty-two thousand six hundred ninety-seven'),\n(13810, 26234, 'twenty-six thousand two hundred thirty-four'),\n(13811, 10511, 'ten thousand five hundred eleven'),\n(13812, 45386, 'forty-five thousand three hundred eighty-six'),\n(13813, 63246, 'sixty-three thousand two hundred forty-six'),\n(13814, 24842, 'twenty-four thousand eight hundred forty-two'),\n(13815, 56436, 'fifty-six thousand four hundred thirty-six'),\n(13816, 81131, 'eighty-one thousand one hundred thirty-one'),\n(13817, 93008, 'ninety-three thousand eight'),\n(13818, 47600, 'forty-seven thousand six hundred'),\n(13819, 12384, 'twelve thousand three hundred eighty-four'),\n(13820, 69453, 'sixty-nine thousand four hundred fifty-three'),\n(13821, 15467, 'fifteen thousand four hundred sixty-seven'),\n(13822, 59634, 'fifty-nine thousand six hundred thirty-four'),\n(13823, 84148, 'eighty-four thousand one hundred forty-eight'),\n(13824, 70593, 'seventy thousand five hundred ninety-three'),\n(13825, 46990, 'forty-six thousand nine hundred ninety'),\n(13826, 12809, 'twelve thousand eight hundred nine'),\n(13827, 49764, 'forty-nine thousand seven hundred sixty-four'),\n(13828, 14476, 'fourteen thousand four hundred seventy-six'),\n(13829, 25191, 'twenty-five thousand one hundred ninety-one'),\n(13830, 59687, 'fifty-nine thousand six hundred eighty-seven'),\n(13831, 19781, 'nineteen thousand seven hundred eighty-one'),\n(13832, 32597, 'thirty-two thousand five hundred ninety-seven'),\n(13833, 35175, 'thirty-five thousand one hundred seventy-five'),\n(13834, 87914, 'eighty-seven thousand nine hundred fourteen'),\n(13835, 31894, 'thirty-one thousand eight hundred ninety-four'),\n(13836, 70854, 'seventy thousand eight hundred fifty-four'),\n(13837, 17345, 'seventeen thousand three hundred forty-five'),\n(13838, 86380, 'eighty-six thousand three hundred eighty'),\n(13839, 3198, 'three thousand one hundred ninety-eight'),\n(13840, 24795, 'twenty-four thousand seven hundred ninety-five'),\n(13841, 26975, 'twenty-six thousand nine hundred seventy-five'),\n(13842, 79249, 'seventy-nine thousand two hundred forty-nine'),\n(13843, 32446, 'thirty-two thousand four hundred forty-six'),\n(13844, 67718, 'sixty-seven thousand seven hundred eighteen'),\n(13845, 50939, 'fifty thousand nine hundred thirty-nine'),\n(13846, 43242, 'forty-three thousand two hundred forty-two'),\n(13847, 19433, 'nineteen thousand four hundred thirty-three'),\n(13848, 11490, 'eleven thousand four hundred ninety'),\n(13849, 51334, 'fifty-one thousand three hundred thirty-four'),\n(13850, 87938, 'eighty-seven thousand nine hundred thirty-eight'),\n(13851, 39493, 'thirty-nine thousand four hundred ninety-three'),\n(13852, 27455, 'twenty-seven thousand four hundred fifty-five'),\n(13853, 50078, 'fifty thousand seventy-eight'),\n(13854, 83424, 'eighty-three thousand four hundred twenty-four'),\n(13855, 4286, 'four thousand two hundred eighty-six'),\n(13856, 35938, 'thirty-five thousand nine hundred thirty-eight'),\n(13857, 53375, 'fifty-three thousand three hundred seventy-five'),\n(13858, 96106, 'ninety-six thousand one hundred six'),\n(13859, 85902, 'eighty-five thousand nine hundred two'),\n(13860, 55837, 'fifty-five thousand eight hundred thirty-seven'),\n(13861, 9830, 'nine thousand eight hundred thirty'),\n(13862, 15241, 'fifteen thousand two hundred forty-one'),\n(13863, 16384, 'sixteen thousand three hundred eighty-four'),\n(13864, 41241, 'forty-one thousand two hundred forty-one'),\n(13865, 74496, 'seventy-four thousand four hundred ninety-six'),\n(13866, 56352, 'fifty-six thousand three hundred fifty-two'),\n(13867, 83762, 'eighty-three thousand seven hundred sixty-two'),\n(13868, 69616, 'sixty-nine thousand six hundred sixteen'),\n(13869, 76765, 'seventy-six thousand seven hundred sixty-five'),\n(13870, 94862, 'ninety-four thousand eight hundred sixty-two'),\n(13871, 34444, 'thirty-four thousand four hundred forty-four'),\n(13872, 18245, 'eighteen thousand two hundred forty-five'),\n(13873, 506, 'five hundred six'),\n(13874, 2004, 'two thousand four'),\n(13875, 18450, 'eighteen thousand four hundred fifty'),\n(13876, 93173, 'ninety-three thousand one hundred seventy-three'),\n(13877, 78260, 'seventy-eight thousand two hundred sixty'),\n(13878, 53617, 'fifty-three thousand six hundred seventeen'),\n(13879, 67591, 'sixty-seven thousand five hundred ninety-one'),\n(13880, 50003, 'fifty thousand three'),\n(13881, 3881, 'three thousand eight hundred eighty-one'),\n(13882, 24719, 'twenty-four thousand seven hundred nineteen'),\n(13883, 11308, 'eleven thousand three hundred eight'),\n(13884, 99283, 'ninety-nine thousand two hundred eighty-three'),\n(13885, 11004, 'eleven thousand four'),\n(13886, 72708, 'seventy-two thousand seven hundred eight'),\n(13887, 36791, 'thirty-six thousand seven hundred ninety-one'),\n(13888, 17542, 'seventeen thousand five hundred forty-two'),\n(13889, 14809, 'fourteen thousand eight hundred nine'),\n(13890, 92123, 'ninety-two thousand one hundred twenty-three'),\n(13891, 17326, 'seventeen thousand three hundred twenty-six'),\n(13892, 74709, 'seventy-four thousand seven hundred nine'),\n(13893, 44197, 'forty-four thousand one hundred ninety-seven'),\n(13894, 8078, 'eight thousand seventy-eight'),\n(13895, 46879, 'forty-six thousand eight hundred seventy-nine'),\n(13896, 58011, 'fifty-eight thousand eleven'),\n(13897, 54352, 'fifty-four thousand three hundred fifty-two'),\n(13898, 16235, 'sixteen thousand two hundred thirty-five'),\n(13899, 4278, 'four thousand two hundred seventy-eight'),\n(13900, 85315, 'eighty-five thousand three hundred fifteen'),\n(13901, 8374, 'eight thousand three hundred seventy-four'),\n(13902, 17825, 'seventeen thousand eight hundred twenty-five'),\n(13903, 10431, 'ten thousand four hundred thirty-one'),\n(13904, 74458, 'seventy-four thousand four hundred fifty-eight'),\n(13905, 64768, 'sixty-four thousand seven hundred sixty-eight'),\n(13906, 53411, 'fifty-three thousand four hundred eleven'),\n(13907, 44856, 'forty-four thousand eight hundred fifty-six'),\n(13908, 85283, 'eighty-five thousand two hundred eighty-three'),\n(13909, 50595, 'fifty thousand five hundred ninety-five'),\n(13910, 32334, 'thirty-two thousand three hundred thirty-four'),\n(13911, 72344, 'seventy-two thousand three hundred forty-four'),\n(13912, 71649, 'seventy-one thousand six hundred forty-nine'),\n(13913, 89150, 'eighty-nine thousand one hundred fifty'),\n(13914, 84303, 'eighty-four thousand three hundred three'),\n(13915, 30665, 'thirty thousand six hundred sixty-five'),\n(13916, 78780, 'seventy-eight thousand seven hundred eighty'),\n(13917, 89025, 'eighty-nine thousand twenty-five'),\n(13918, 41063, 'forty-one thousand sixty-three'),\n(13919, 33110, 'thirty-three thousand one hundred ten'),\n(13920, 65803, 'sixty-five thousand eight hundred three'),\n(13921, 49198, 'forty-nine thousand one hundred ninety-eight'),\n(13922, 90327, 'ninety thousand three hundred twenty-seven'),\n(13923, 68471, 'sixty-eight thousand four hundred seventy-one'),\n(13924, 7429, 'seven thousand four hundred twenty-nine'),\n(13925, 8150, 'eight thousand one hundred fifty'),\n(13926, 89548, 'eighty-nine thousand five hundred forty-eight'),\n(13927, 7171, 'seven thousand one hundred seventy-one'),\n(13928, 90836, 'ninety thousand eight hundred thirty-six'),\n(13929, 25283, 'twenty-five thousand two hundred eighty-three'),\n(13930, 88507, 'eighty-eight thousand five hundred seven'),\n(13931, 20224, 'twenty thousand two hundred twenty-four'),\n(13932, 73097, 'seventy-three thousand ninety-seven'),\n(13933, 4549, 'four thousand five hundred forty-nine'),\n(13934, 37916, 'thirty-seven thousand nine hundred sixteen'),\n(13935, 61924, 'sixty-one thousand nine hundred twenty-four'),\n(13936, 67336, 'sixty-seven thousand three hundred thirty-six'),\n(13937, 95064, 'ninety-five thousand sixty-four'),\n(13938, 96587, 'ninety-six thousand five hundred eighty-seven'),\n(13939, 29571, 'twenty-nine thousand five hundred seventy-one'),\n(13940, 28864, 'twenty-eight thousand eight hundred sixty-four'),\n(13941, 23332, 'twenty-three thousand three hundred thirty-two'),\n(13942, 61389, 'sixty-one thousand three hundred eighty-nine'),\n(13943, 71524, 'seventy-one thousand five hundred twenty-four'),\n(13944, 57931, 'fifty-seven thousand nine hundred thirty-one'),\n(13945, 4443, 'four thousand four hundred forty-three'),\n(13946, 6783, 'six thousand seven hundred eighty-three'),\n(13947, 58263, 'fifty-eight thousand two hundred sixty-three'),\n(13948, 94460, 'ninety-four thousand four hundred sixty'),\n(13949, 75297, 'seventy-five thousand two hundred ninety-seven'),\n(13950, 61635, 'sixty-one thousand six hundred thirty-five'),\n(13951, 52074, 'fifty-two thousand seventy-four'),\n(13952, 53478, 'fifty-three thousand four hundred seventy-eight'),\n(13953, 72076, 'seventy-two thousand seventy-six'),\n(13954, 17923, 'seventeen thousand nine hundred twenty-three'),\n(13955, 77086, 'seventy-seven thousand eighty-six'),\n(13956, 10932, 'ten thousand nine hundred thirty-two'),\n(13957, 57580, 'fifty-seven thousand five hundred eighty'),\n(13958, 31437, 'thirty-one thousand four hundred thirty-seven'),\n(13959, 41326, 'forty-one thousand three hundred twenty-six'),\n(13960, 80597, 'eighty thousand five hundred ninety-seven'),\n(13961, 46540, 'forty-six thousand five hundred forty'),\n(13962, 75245, 'seventy-five thousand two hundred forty-five'),\n(13963, 54585, 'fifty-four thousand five hundred eighty-five'),\n(13964, 1122, 'one thousand one hundred twenty-two'),\n(13965, 73413, 'seventy-three thousand four hundred thirteen'),\n(13966, 20334, 'twenty thousand three hundred thirty-four'),\n(13967, 95300, 'ninety-five thousand three hundred'),\n(13968, 7348, 'seven thousand three hundred forty-eight'),\n(13969, 74165, 'seventy-four thousand one hundred sixty-five'),\n(13970, 30473, 'thirty thousand four hundred seventy-three'),\n(13971, 15377, 'fifteen thousand three hundred seventy-seven'),\n(13972, 43499, 'forty-three thousand four hundred ninety-nine'),\n(13973, 22262, 'twenty-two thousand two hundred sixty-two'),\n(13974, 17978, 'seventeen thousand nine hundred seventy-eight'),\n(13975, 78716, 'seventy-eight thousand seven hundred sixteen'),\n(13976, 62759, 'sixty-two thousand seven hundred fifty-nine'),\n(13977, 65360, 'sixty-five thousand three hundred sixty'),\n(13978, 94651, 'ninety-four thousand six hundred fifty-one'),\n(13979, 69989, 'sixty-nine thousand nine hundred eighty-nine'),\n(13980, 65567, 'sixty-five thousand five hundred sixty-seven'),\n(13981, 81075, 'eighty-one thousand seventy-five'),\n(13982, 57906, 'fifty-seven thousand nine hundred six'),\n(13983, 64171, 'sixty-four thousand one hundred seventy-one'),\n(13984, 41289, 'forty-one thousand two hundred eighty-nine'),\n(13985, 28860, 'twenty-eight thousand eight hundred sixty'),\n(13986, 22556, 'twenty-two thousand five hundred fifty-six'),\n(13987, 16439, 'sixteen thousand four hundred thirty-nine'),\n(13988, 95639, 'ninety-five thousand six hundred thirty-nine'),\n(13989, 49010, 'forty-nine thousand ten'),\n(13990, 90766, 'ninety thousand seven hundred sixty-six'),\n(13991, 84651, 'eighty-four thousand six hundred fifty-one'),\n(13992, 50935, 'fifty thousand nine hundred thirty-five'),\n(13993, 88748, 'eighty-eight thousand seven hundred forty-eight'),\n(13994, 84745, 'eighty-four thousand seven hundred forty-five'),\n(13995, 39283, 'thirty-nine thousand two hundred eighty-three'),\n(13996, 7382, 'seven thousand three hundred eighty-two'),\n(13997, 90804, 'ninety thousand eight hundred four'),\n(13998, 33033, 'thirty-three thousand thirty-three'),\n(13999, 55866, 'fifty-five thousand eight hundred sixty-six'),\n(14000, 27443, 'twenty-seven thousand four hundred forty-three'),\n(14001, 6070, 'six thousand seventy'),\n(14002, 80920, 'eighty thousand nine hundred twenty'),\n(14003, 33757, 'thirty-three thousand seven hundred fifty-seven'),\n(14004, 97400, 'ninety-seven thousand four hundred'),\n(14005, 87218, 'eighty-seven thousand two hundred eighteen'),\n(14006, 80987, 'eighty thousand nine hundred eighty-seven'),\n(14007, 64071, 'sixty-four thousand seventy-one'),\n(14008, 660, 'six hundred sixty'),\n(14009, 90275, 'ninety thousand two hundred seventy-five'),\n(14010, 64638, 'sixty-four thousand six hundred thirty-eight'),\n(14011, 1142, 'one thousand one hundred forty-two'),\n(14012, 3728, 'three thousand seven hundred twenty-eight'),\n(14013, 58292, 'fifty-eight thousand two hundred ninety-two'),\n(14014, 38028, 'thirty-eight thousand twenty-eight'),\n(14015, 53442, 'fifty-three thousand four hundred forty-two'),\n(14016, 24799, 'twenty-four thousand seven hundred ninety-nine'),\n(14017, 81197, 'eighty-one thousand one hundred ninety-seven'),\n(14018, 73241, 'seventy-three thousand two hundred forty-one'),\n(14019, 55543, 'fifty-five thousand five hundred forty-three'),\n(14020, 94372, 'ninety-four thousand three hundred seventy-two'),\n(14021, 85179, 'eighty-five thousand one hundred seventy-nine'),\n(14022, 98999, 'ninety-eight thousand nine hundred ninety-nine'),\n(14023, 16290, 'sixteen thousand two hundred ninety'),\n(14024, 47770, 'forty-seven thousand seven hundred seventy'),\n(14025, 47769, 'forty-seven thousand seven hundred sixty-nine'),\n(14026, 25395, 'twenty-five thousand three hundred ninety-five'),\n(14027, 63378, 'sixty-three thousand three hundred seventy-eight'),\n(14028, 8868, 'eight thousand eight hundred sixty-eight'),\n(14029, 53151, 'fifty-three thousand one hundred fifty-one'),\n(14030, 21042, 'twenty-one thousand forty-two'),\n(14031, 41835, 'forty-one thousand eight hundred thirty-five'),\n(14032, 16, 'sixteen'),\n(14033, 91849, 'ninety-one thousand eight hundred forty-nine'),\n(14034, 98327, 'ninety-eight thousand three hundred twenty-seven'),\n(14035, 30459, 'thirty thousand four hundred fifty-nine'),\n(14036, 5717, 'five thousand seven hundred seventeen'),\n(14037, 46998, 'forty-six thousand nine hundred ninety-eight'),\n(14038, 75117, 'seventy-five thousand one hundred seventeen'),\n(14039, 85536, 'eighty-five thousand five hundred thirty-six'),\n(14040, 47560, 'forty-seven thousand five hundred sixty'),\n(14041, 16306, 'sixteen thousand three hundred six'),\n(14042, 81135, 'eighty-one thousand one hundred thirty-five'),\n(14043, 5391, 'five thousand three hundred ninety-one'),\n(14044, 44837, 'forty-four thousand eight hundred thirty-seven'),\n(14045, 57077, 'fifty-seven thousand seventy-seven'),\n(14046, 83177, 'eighty-three thousand one hundred seventy-seven'),\n(14047, 9160, 'nine thousand one hundred sixty'),\n(14048, 35946, 'thirty-five thousand nine hundred forty-six'),\n(14049, 279, 'two hundred seventy-nine'),\n(14050, 64595, 'sixty-four thousand five hundred ninety-five'),\n(14051, 19603, 'nineteen thousand six hundred three'),\n(14052, 50428, 'fifty thousand four hundred twenty-eight'),\n(14053, 71887, 'seventy-one thousand eight hundred eighty-seven'),\n(14054, 8099, 'eight thousand ninety-nine'),\n(14055, 98815, 'ninety-eight thousand eight hundred fifteen'),\n(14056, 34011, 'thirty-four thousand eleven'),\n(14057, 21291, 'twenty-one thousand two hundred ninety-one'),\n(14058, 54405, 'fifty-four thousand four hundred five'),\n(14059, 5340, 'five thousand three hundred forty'),\n(14060, 17683, 'seventeen thousand six hundred eighty-three'),\n(14061, 70167, 'seventy thousand one hundred sixty-seven'),\n(14062, 50277, 'fifty thousand two hundred seventy-seven'),\n(14063, 49889, 'forty-nine thousand eight hundred eighty-nine'),\n(14064, 74868, 'seventy-four thousand eight hundred sixty-eight'),\n(14065, 57759, 'fifty-seven thousand seven hundred fifty-nine'),\n(14066, 83959, 'eighty-three thousand nine hundred fifty-nine'),\n(14067, 21287, 'twenty-one thousand two hundred eighty-seven'),\n(14068, 7022, 'seven thousand twenty-two'),\n(14069, 79342, 'seventy-nine thousand three hundred forty-two'),\n(14070, 18522, 'eighteen thousand five hundred twenty-two'),\n(14071, 96548, 'ninety-six thousand five hundred forty-eight'),\n(14072, 70039, 'seventy thousand thirty-nine'),\n(14073, 67499, 'sixty-seven thousand four hundred ninety-nine'),\n(14074, 44843, 'forty-four thousand eight hundred forty-three'),\n(14075, 60852, 'sixty thousand eight hundred fifty-two'),\n(14076, 49005, 'forty-nine thousand five'),\n(14077, 42691, 'forty-two thousand six hundred ninety-one'),\n(14078, 76353, 'seventy-six thousand three hundred fifty-three'),\n(14079, 73231, 'seventy-three thousand two hundred thirty-one'),\n(14080, 51812, 'fifty-one thousand eight hundred twelve'),\n(14081, 4065, 'four thousand sixty-five'),\n(14082, 20048, 'twenty thousand forty-eight'),\n(14083, 29253, 'twenty-nine thousand two hundred fifty-three'),\n(14084, 7918, 'seven thousand nine hundred eighteen'),\n(14085, 46036, 'forty-six thousand thirty-six'),\n(14086, 80726, 'eighty thousand seven hundred twenty-six'),\n(14087, 41651, 'forty-one thousand six hundred fifty-one'),\n(14088, 66489, 'sixty-six thousand four hundred eighty-nine'),\n(14089, 90786, 'ninety thousand seven hundred eighty-six'),\n(14090, 70711, 'seventy thousand seven hundred eleven'),\n(14091, 2226, 'two thousand two hundred twenty-six'),\n(14092, 34868, 'thirty-four thousand eight hundred sixty-eight'),\n(14093, 44909, 'forty-four thousand nine hundred nine'),\n(14094, 89998, 'eighty-nine thousand nine hundred ninety-eight'),\n(14095, 11780, 'eleven thousand seven hundred eighty'),\n(14096, 70448, 'seventy thousand four hundred forty-eight'),\n(14097, 32410, 'thirty-two thousand four hundred ten'),\n(14098, 52775, 'fifty-two thousand seven hundred seventy-five'),\n(14099, 80734, 'eighty thousand seven hundred thirty-four'),\n(14100, 64700, 'sixty-four thousand seven hundred'),\n(14101, 30, 'thirty'),\n(14102, 58756, 'fifty-eight thousand seven hundred fifty-six'),\n(14103, 26156, 'twenty-six thousand one hundred fifty-six'),\n(14104, 29099, 'twenty-nine thousand ninety-nine'),\n(14105, 32031, 'thirty-two thousand thirty-one'),\n(14106, 78367, 'seventy-eight thousand three hundred sixty-seven'),\n(14107, 47451, 'forty-seven thousand four hundred fifty-one'),\n(14108, 25179, 'twenty-five thousand one hundred seventy-nine'),\n(14109, 26956, 'twenty-six thousand nine hundred fifty-six'),\n(14110, 71063, 'seventy-one thousand sixty-three'),\n(14111, 88631, 'eighty-eight thousand six hundred thirty-one'),\n(14112, 20676, 'twenty thousand six hundred seventy-six'),\n(14113, 38569, 'thirty-eight thousand five hundred sixty-nine'),\n(14114, 45862, 'forty-five thousand eight hundred sixty-two'),\n(14115, 97222, 'ninety-seven thousand two hundred twenty-two'),\n(14116, 23847, 'twenty-three thousand eight hundred forty-seven'),\n(14117, 27914, 'twenty-seven thousand nine hundred fourteen'),\n(14118, 26343, 'twenty-six thousand three hundred forty-three'),\n(14119, 5566, 'five thousand five hundred sixty-six'),\n(14120, 91348, 'ninety-one thousand three hundred forty-eight'),\n(14121, 72169, 'seventy-two thousand one hundred sixty-nine'),\n(14122, 35229, 'thirty-five thousand two hundred twenty-nine'),\n(14123, 20626, 'twenty thousand six hundred twenty-six'),\n(14124, 84934, 'eighty-four thousand nine hundred thirty-four'),\n(14125, 97143, 'ninety-seven thousand one hundred forty-three'),\n(14126, 57316, 'fifty-seven thousand three hundred sixteen'),\n(14127, 70205, 'seventy thousand two hundred five'),\n(14128, 55119, 'fifty-five thousand one hundred nineteen'),\n(14129, 14023, 'fourteen thousand twenty-three'),\n(14130, 69712, 'sixty-nine thousand seven hundred twelve'),\n(14131, 69034, 'sixty-nine thousand thirty-four'),\n(14132, 27592, 'twenty-seven thousand five hundred ninety-two'),\n(14133, 14323, 'fourteen thousand three hundred twenty-three'),\n(14134, 56164, 'fifty-six thousand one hundred sixty-four'),\n(14135, 67875, 'sixty-seven thousand eight hundred seventy-five'),\n(14136, 7556, 'seven thousand five hundred fifty-six'),\n(14137, 47319, 'forty-seven thousand three hundred nineteen'),\n(14138, 39533, 'thirty-nine thousand five hundred thirty-three'),\n(14139, 37545, 'thirty-seven thousand five hundred forty-five'),\n(14140, 42119, 'forty-two thousand one hundred nineteen'),\n(14141, 39886, 'thirty-nine thousand eight hundred eighty-six'),\n(14142, 83467, 'eighty-three thousand four hundred sixty-seven'),\n(14143, 65379, 'sixty-five thousand three hundred seventy-nine'),\n(14144, 74107, 'seventy-four thousand one hundred seven'),\n(14145, 92627, 'ninety-two thousand six hundred twenty-seven'),\n(14146, 20984, 'twenty thousand nine hundred eighty-four'),\n(14147, 72444, 'seventy-two thousand four hundred forty-four'),\n(14148, 36611, 'thirty-six thousand six hundred eleven'),\n(14149, 83169, 'eighty-three thousand one hundred sixty-nine'),\n(14150, 22705, 'twenty-two thousand seven hundred five'),\n(14151, 34171, 'thirty-four thousand one hundred seventy-one'),\n(14152, 37130, 'thirty-seven thousand one hundred thirty'),\n(14153, 92769, 'ninety-two thousand seven hundred sixty-nine'),\n(14154, 70754, 'seventy thousand seven hundred fifty-four'),\n(14155, 51656, 'fifty-one thousand six hundred fifty-six'),\n(14156, 50732, 'fifty thousand seven hundred thirty-two'),\n(14157, 16488, 'sixteen thousand four hundred eighty-eight'),\n(14158, 79570, 'seventy-nine thousand five hundred seventy'),\n(14159, 62083, 'sixty-two thousand eighty-three'),\n(14160, 4761, 'four thousand seven hundred sixty-one'),\n(14161, 27727, 'twenty-seven thousand seven hundred twenty-seven'),\n(14162, 37092, 'thirty-seven thousand ninety-two'),\n(14163, 64288, 'sixty-four thousand two hundred eighty-eight'),\n(14164, 97438, 'ninety-seven thousand four hundred thirty-eight'),\n(14165, 31498, 'thirty-one thousand four hundred ninety-eight'),\n(14166, 99157, 'ninety-nine thousand one hundred fifty-seven'),\n(14167, 15456, 'fifteen thousand four hundred fifty-six'),\n(14168, 79114, 'seventy-nine thousand one hundred fourteen'),\n(14169, 28346, 'twenty-eight thousand three hundred forty-six'),\n(14170, 48753, 'forty-eight thousand seven hundred fifty-three'),\n(14171, 14314, 'fourteen thousand three hundred fourteen'),\n(14172, 69211, 'sixty-nine thousand two hundred eleven'),\n(14173, 87614, 'eighty-seven thousand six hundred fourteen'),\n(14174, 21482, 'twenty-one thousand four hundred eighty-two'),\n(14175, 84555, 'eighty-four thousand five hundred fifty-five'),\n(14176, 92481, 'ninety-two thousand four hundred eighty-one'),\n(14177, 80601, 'eighty thousand six hundred one'),\n(14178, 86326, 'eighty-six thousand three hundred twenty-six'),\n(14179, 51725, 'fifty-one thousand seven hundred twenty-five'),\n(14180, 25639, 'twenty-five thousand six hundred thirty-nine'),\n(14181, 86604, 'eighty-six thousand six hundred four'),\n(14182, 9013, 'nine thousand thirteen'),\n(14183, 10834, 'ten thousand eight hundred thirty-four'),\n(14184, 24644, 'twenty-four thousand six hundred forty-four'),\n(14185, 69444, 'sixty-nine thousand four hundred forty-four'),\n(14186, 13141, 'thirteen thousand one hundred forty-one'),\n(14187, 29103, 'twenty-nine thousand one hundred three'),\n(14188, 83682, 'eighty-three thousand six hundred eighty-two'),\n(14189, 43992, 'forty-three thousand nine hundred ninety-two'),\n(14190, 74783, 'seventy-four thousand seven hundred eighty-three'),\n(14191, 42437, 'forty-two thousand four hundred thirty-seven'),\n(14192, 4381, 'four thousand three hundred eighty-one'),\n(14193, 61759, 'sixty-one thousand seven hundred fifty-nine'),\n(14194, 54951, 'fifty-four thousand nine hundred fifty-one'),\n(14195, 19140, 'nineteen thousand one hundred forty'),\n(14196, 57927, 'fifty-seven thousand nine hundred twenty-seven'),\n(14197, 47775, 'forty-seven thousand seven hundred seventy-five'),\n(14198, 52878, 'fifty-two thousand eight hundred seventy-eight'),\n(14199, 83869, 'eighty-three thousand eight hundred sixty-nine'),\n(14200, 41009, 'forty-one thousand nine'),\n(14201, 32065, 'thirty-two thousand sixty-five'),\n(14202, 75242, 'seventy-five thousand two hundred forty-two'),\n(14203, 88982, 'eighty-eight thousand nine hundred eighty-two'),\n(14204, 84425, 'eighty-four thousand four hundred twenty-five'),\n(14205, 86469, 'eighty-six thousand four hundred sixty-nine'),\n(14206, 4916, 'four thousand nine hundred sixteen'),\n(14207, 40930, 'forty thousand nine hundred thirty'),\n(14208, 43178, 'forty-three thousand one hundred seventy-eight'),\n(14209, 16744, 'sixteen thousand seven hundred forty-four'),\n(14210, 7823, 'seven thousand eight hundred twenty-three'),\n(14211, 88086, 'eighty-eight thousand eighty-six'),\n(14212, 19551, 'nineteen thousand five hundred fifty-one'),\n(14213, 25943, 'twenty-five thousand nine hundred forty-three'),\n(14214, 89127, 'eighty-nine thousand one hundred twenty-seven'),\n(14215, 63497, 'sixty-three thousand four hundred ninety-seven'),\n(14216, 82765, 'eighty-two thousand seven hundred sixty-five'),\n(14217, 30305, 'thirty thousand three hundred five'),\n(14218, 58564, 'fifty-eight thousand five hundred sixty-four'),\n(14219, 28257, 'twenty-eight thousand two hundred fifty-seven'),\n(14220, 77279, 'seventy-seven thousand two hundred seventy-nine'),\n(14221, 51722, 'fifty-one thousand seven hundred twenty-two'),\n(14222, 24282, 'twenty-four thousand two hundred eighty-two'),\n(14223, 62794, 'sixty-two thousand seven hundred ninety-four'),\n(14224, 44363, 'forty-four thousand three hundred sixty-three'),\n(14225, 89297, 'eighty-nine thousand two hundred ninety-seven'),\n(14226, 39420, 'thirty-nine thousand four hundred twenty'),\n(14227, 8990, 'eight thousand nine hundred ninety'),\n(14228, 92556, 'ninety-two thousand five hundred fifty-six'),\n(14229, 47958, 'forty-seven thousand nine hundred fifty-eight'),\n(14230, 94381, 'ninety-four thousand three hundred eighty-one'),\n(14231, 94323, 'ninety-four thousand three hundred twenty-three'),\n(14232, 43972, 'forty-three thousand nine hundred seventy-two'),\n(14233, 2510, 'two thousand five hundred ten'),\n(14234, 21945, 'twenty-one thousand nine hundred forty-five'),\n(14235, 23777, 'twenty-three thousand seven hundred seventy-seven'),\n(14236, 64407, 'sixty-four thousand four hundred seven'),\n(14237, 30935, 'thirty thousand nine hundred thirty-five'),\n(14238, 38018, 'thirty-eight thousand eighteen'),\n(14239, 96118, 'ninety-six thousand one hundred eighteen'),\n(14240, 45534, 'forty-five thousand five hundred thirty-four'),\n(14241, 85873, 'eighty-five thousand eight hundred seventy-three'),\n(14242, 67184, 'sixty-seven thousand one hundred eighty-four'),\n(14243, 65712, 'sixty-five thousand seven hundred twelve'),\n(14244, 9435, 'nine thousand four hundred thirty-five'),\n(14245, 35322, 'thirty-five thousand three hundred twenty-two'),\n(14246, 91405, 'ninety-one thousand four hundred five'),\n(14247, 62911, 'sixty-two thousand nine hundred eleven'),\n(14248, 7842, 'seven thousand eight hundred forty-two'),\n(14249, 51414, 'fifty-one thousand four hundred fourteen'),\n(14250, 22465, 'twenty-two thousand four hundred sixty-five'),\n(14251, 32639, 'thirty-two thousand six hundred thirty-nine'),\n(14252, 62212, 'sixty-two thousand two hundred twelve'),\n(14253, 20304, 'twenty thousand three hundred four'),\n(14254, 69574, 'sixty-nine thousand five hundred seventy-four'),\n(14255, 54688, 'fifty-four thousand six hundred eighty-eight'),\n(14256, 59382, 'fifty-nine thousand three hundred eighty-two'),\n(14257, 63230, 'sixty-three thousand two hundred thirty'),\n(14258, 94295, 'ninety-four thousand two hundred ninety-five'),\n(14259, 97845, 'ninety-seven thousand eight hundred forty-five'),\n(14260, 90665, 'ninety thousand six hundred sixty-five'),\n(14261, 57241, 'fifty-seven thousand two hundred forty-one'),\n(14262, 31129, 'thirty-one thousand one hundred twenty-nine'),\n(14263, 52584, 'fifty-two thousand five hundred eighty-four'),\n(14264, 64248, 'sixty-four thousand two hundred forty-eight'),\n(14265, 74634, 'seventy-four thousand six hundred thirty-four'),\n(14266, 76404, 'seventy-six thousand four hundred four'),\n(14267, 29486, 'twenty-nine thousand four hundred eighty-six'),\n(14268, 17786, 'seventeen thousand seven hundred eighty-six'),\n(14269, 62839, 'sixty-two thousand eight hundred thirty-nine'),\n(14270, 36637, 'thirty-six thousand six hundred thirty-seven'),\n(14271, 50990, 'fifty thousand nine hundred ninety'),\n(14272, 76728, 'seventy-six thousand seven hundred twenty-eight'),\n(14273, 52060, 'fifty-two thousand sixty'),\n(14274, 55154, 'fifty-five thousand one hundred fifty-four'),\n(14275, 60588, 'sixty thousand five hundred eighty-eight'),\n(14276, 5076, 'five thousand seventy-six'),\n(14277, 74857, 'seventy-four thousand eight hundred fifty-seven'),\n(14278, 46644, 'forty-six thousand six hundred forty-four'),\n(14279, 60609, 'sixty thousand six hundred nine'),\n(14280, 69598, 'sixty-nine thousand five hundred ninety-eight'),\n(14281, 57260, 'fifty-seven thousand two hundred sixty'),\n(14282, 94989, 'ninety-four thousand nine hundred eighty-nine'),\n(14283, 58789, 'fifty-eight thousand seven hundred eighty-nine'),\n(14284, 73219, 'seventy-three thousand two hundred nineteen'),\n(14285, 29093, 'twenty-nine thousand ninety-three'),\n(14286, 21412, 'twenty-one thousand four hundred twelve'),\n(14287, 90352, 'ninety thousand three hundred fifty-two'),\n(14288, 7151, 'seven thousand one hundred fifty-one'),\n(14289, 9830, 'nine thousand eight hundred thirty'),\n(14290, 70265, 'seventy thousand two hundred sixty-five'),\n(14291, 7236, 'seven thousand two hundred thirty-six'),\n(14292, 24213, 'twenty-four thousand two hundred thirteen'),\n(14293, 34717, 'thirty-four thousand seven hundred seventeen'),\n(14294, 90624, 'ninety thousand six hundred twenty-four'),\n(14295, 36920, 'thirty-six thousand nine hundred twenty'),\n(14296, 5055, 'five thousand fifty-five'),\n(14297, 9154, 'nine thousand one hundred fifty-four'),\n(14298, 82441, 'eighty-two thousand four hundred forty-one'),\n(14299, 40498, 'forty thousand four hundred ninety-eight'),\n(14300, 5931, 'five thousand nine hundred thirty-one'),\n(14301, 81847, 'eighty-one thousand eight hundred forty-seven'),\n(14302, 16365, 'sixteen thousand three hundred sixty-five'),\n(14303, 64044, 'sixty-four thousand forty-four'),\n(14304, 42828, 'forty-two thousand eight hundred twenty-eight'),\n(14305, 77245, 'seventy-seven thousand two hundred forty-five'),\n(14306, 68101, 'sixty-eight thousand one hundred one'),\n(14307, 22692, 'twenty-two thousand six hundred ninety-two'),\n(14308, 33884, 'thirty-three thousand eight hundred eighty-four'),\n(14309, 59114, 'fifty-nine thousand one hundred fourteen'),\n(14310, 76416, 'seventy-six thousand four hundred sixteen'),\n(14311, 49710, 'forty-nine thousand seven hundred ten'),\n(14312, 51303, 'fifty-one thousand three hundred three'),\n(14313, 72241, 'seventy-two thousand two hundred forty-one'),\n(14314, 90059, 'ninety thousand fifty-nine'),\n(14315, 98357, 'ninety-eight thousand three hundred fifty-seven'),\n(14316, 38819, 'thirty-eight thousand eight hundred nineteen'),\n(14317, 31864, 'thirty-one thousand eight hundred sixty-four'),\n(14318, 60077, 'sixty thousand seventy-seven'),\n(14319, 76181, 'seventy-six thousand one hundred eighty-one'),\n(14320, 19692, 'nineteen thousand six hundred ninety-two'),\n(14321, 97806, 'ninety-seven thousand eight hundred six'),\n(14322, 61599, 'sixty-one thousand five hundred ninety-nine'),\n(14323, 34611, 'thirty-four thousand six hundred eleven'),\n(14324, 84140, 'eighty-four thousand one hundred forty'),\n(14325, 12217, 'twelve thousand two hundred seventeen'),\n(14326, 82300, 'eighty-two thousand three hundred'),\n(14327, 74272, 'seventy-four thousand two hundred seventy-two'),\n(14328, 74265, 'seventy-four thousand two hundred sixty-five'),\n(14329, 60922, 'sixty thousand nine hundred twenty-two'),\n(14330, 45274, 'forty-five thousand two hundred seventy-four'),\n(14331, 29864, 'twenty-nine thousand eight hundred sixty-four'),\n(14332, 43869, 'forty-three thousand eight hundred sixty-nine'),\n(14333, 97801, 'ninety-seven thousand eight hundred one'),\n(14334, 44111, 'forty-four thousand one hundred eleven'),\n(14335, 31140, 'thirty-one thousand one hundred forty'),\n(14336, 26431, 'twenty-six thousand four hundred thirty-one'),\n(14337, 95892, 'ninety-five thousand eight hundred ninety-two'),\n(14338, 23643, 'twenty-three thousand six hundred forty-three'),\n(14339, 9987, 'nine thousand nine hundred eighty-seven'),\n(14340, 38559, 'thirty-eight thousand five hundred fifty-nine'),\n(14341, 12285, 'twelve thousand two hundred eighty-five'),\n(14342, 95915, 'ninety-five thousand nine hundred fifteen'),\n(14343, 83802, 'eighty-three thousand eight hundred two'),\n(14344, 27394, 'twenty-seven thousand three hundred ninety-four'),\n(14345, 2087, 'two thousand eighty-seven'),\n(14346, 95448, 'ninety-five thousand four hundred forty-eight'),\n(14347, 68544, 'sixty-eight thousand five hundred forty-four'),\n(14348, 96637, 'ninety-six thousand six hundred thirty-seven'),\n(14349, 97022, 'ninety-seven thousand twenty-two'),\n(14350, 22948, 'twenty-two thousand nine hundred forty-eight'),\n(14351, 60979, 'sixty thousand nine hundred seventy-nine'),\n(14352, 95824, 'ninety-five thousand eight hundred twenty-four'),\n(14353, 57159, 'fifty-seven thousand one hundred fifty-nine'),\n(14354, 54898, 'fifty-four thousand eight hundred ninety-eight'),\n(14355, 35741, 'thirty-five thousand seven hundred forty-one'),\n(14356, 14997, 'fourteen thousand nine hundred ninety-seven'),\n(14357, 79366, 'seventy-nine thousand three hundred sixty-six'),\n(14358, 99647, 'ninety-nine thousand six hundred forty-seven'),\n(14359, 65949, 'sixty-five thousand nine hundred forty-nine'),\n(14360, 7391, 'seven thousand three hundred ninety-one'),\n(14361, 4665, 'four thousand six hundred sixty-five'),\n(14362, 54674, 'fifty-four thousand six hundred seventy-four'),\n(14363, 48491, 'forty-eight thousand four hundred ninety-one'),\n(14364, 64611, 'sixty-four thousand six hundred eleven'),\n(14365, 5079, 'five thousand seventy-nine'),\n(14366, 96510, 'ninety-six thousand five hundred ten'),\n(14367, 19930, 'nineteen thousand nine hundred thirty'),\n(14368, 14729, 'fourteen thousand seven hundred twenty-nine'),\n(14369, 54085, 'fifty-four thousand eighty-five'),\n(14370, 18388, 'eighteen thousand three hundred eighty-eight'),\n(14371, 47262, 'forty-seven thousand two hundred sixty-two'),\n(14372, 38350, 'thirty-eight thousand three hundred fifty'),\n(14373, 14133, 'fourteen thousand one hundred thirty-three'),\n(14374, 4247, 'four thousand two hundred forty-seven'),\n(14375, 15359, 'fifteen thousand three hundred fifty-nine'),\n(14376, 10308, 'ten thousand three hundred eight'),\n(14377, 26455, 'twenty-six thousand four hundred fifty-five'),\n(14378, 71989, 'seventy-one thousand nine hundred eighty-nine'),\n(14379, 2371, 'two thousand three hundred seventy-one'),\n(14380, 44012, 'forty-four thousand twelve'),\n(14381, 3578, 'three thousand five hundred seventy-eight'),\n(14382, 33913, 'thirty-three thousand nine hundred thirteen'),\n(14383, 87445, 'eighty-seven thousand four hundred forty-five'),\n(14384, 26229, 'twenty-six thousand two hundred twenty-nine'),\n(14385, 1263, 'one thousand two hundred sixty-three'),\n(14386, 68279, 'sixty-eight thousand two hundred seventy-nine'),\n(14387, 13226, 'thirteen thousand two hundred twenty-six'),\n(14388, 87733, 'eighty-seven thousand seven hundred thirty-three'),\n(14389, 79940, 'seventy-nine thousand nine hundred forty'),\n(14390, 94181, 'ninety-four thousand one hundred eighty-one'),\n(14391, 98470, 'ninety-eight thousand four hundred seventy'),\n(14392, 29106, 'twenty-nine thousand one hundred six'),\n(14393, 325, 'three hundred twenty-five'),\n(14394, 57983, 'fifty-seven thousand nine hundred eighty-three'),\n(14395, 7554, 'seven thousand five hundred fifty-four'),\n(14396, 94566, 'ninety-four thousand five hundred sixty-six'),\n(14397, 10174, 'ten thousand one hundred seventy-four'),\n(14398, 60058, 'sixty thousand fifty-eight'),\n(14399, 83177, 'eighty-three thousand one hundred seventy-seven'),\n(14400, 84461, 'eighty-four thousand four hundred sixty-one'),\n(14401, 10453, 'ten thousand four hundred fifty-three'),\n(14402, 79568, 'seventy-nine thousand five hundred sixty-eight'),\n(14403, 2432, 'two thousand four hundred thirty-two'),\n(14404, 22426, 'twenty-two thousand four hundred twenty-six'),\n(14405, 55022, 'fifty-five thousand twenty-two'),\n(14406, 54477, 'fifty-four thousand four hundred seventy-seven'),\n(14407, 224, 'two hundred twenty-four'),\n(14408, 80170, 'eighty thousand one hundred seventy'),\n(14409, 74617, 'seventy-four thousand six hundred seventeen'),\n(14410, 37826, 'thirty-seven thousand eight hundred twenty-six'),\n(14411, 13481, 'thirteen thousand four hundred eighty-one'),\n(14412, 55903, 'fifty-five thousand nine hundred three'),\n(14413, 98563, 'ninety-eight thousand five hundred sixty-three'),\n(14414, 56487, 'fifty-six thousand four hundred eighty-seven'),\n(14415, 69806, 'sixty-nine thousand eight hundred six'),\n(14416, 78030, 'seventy-eight thousand thirty'),\n(14417, 90461, 'ninety thousand four hundred sixty-one'),\n(14418, 32670, 'thirty-two thousand six hundred seventy'),\n(14419, 90171, 'ninety thousand one hundred seventy-one'),\n(14420, 71633, 'seventy-one thousand six hundred thirty-three'),\n(14421, 34699, 'thirty-four thousand six hundred ninety-nine'),\n(14422, 68435, 'sixty-eight thousand four hundred thirty-five'),\n(14423, 86962, 'eighty-six thousand nine hundred sixty-two'),\n(14424, 7094, 'seven thousand ninety-four'),\n(14425, 9991, 'nine thousand nine hundred ninety-one'),\n(14426, 17207, 'seventeen thousand two hundred seven'),\n(14427, 88226, 'eighty-eight thousand two hundred twenty-six'),\n(14428, 46157, 'forty-six thousand one hundred fifty-seven'),\n(14429, 99262, 'ninety-nine thousand two hundred sixty-two'),\n(14430, 45542, 'forty-five thousand five hundred forty-two'),\n(14431, 85504, 'eighty-five thousand five hundred four'),\n(14432, 70406, 'seventy thousand four hundred six'),\n(14433, 12940, 'twelve thousand nine hundred forty'),\n(14434, 30821, 'thirty thousand eight hundred twenty-one'),\n(14435, 36246, 'thirty-six thousand two hundred forty-six'),\n(14436, 89217, 'eighty-nine thousand two hundred seventeen'),\n(14437, 87303, 'eighty-seven thousand three hundred three'),\n(14438, 10572, 'ten thousand five hundred seventy-two'),\n(14439, 29156, 'twenty-nine thousand one hundred fifty-six'),\n(14440, 46980, 'forty-six thousand nine hundred eighty'),\n(14441, 43683, 'forty-three thousand six hundred eighty-three'),\n(14442, 95156, 'ninety-five thousand one hundred fifty-six'),\n(14443, 15716, 'fifteen thousand seven hundred sixteen'),\n(14444, 44693, 'forty-four thousand six hundred ninety-three'),\n(14445, 49162, 'forty-nine thousand one hundred sixty-two'),\n(14446, 48546, 'forty-eight thousand five hundred forty-six'),\n(14447, 36516, 'thirty-six thousand five hundred sixteen'),\n(14448, 48270, 'forty-eight thousand two hundred seventy'),\n(14449, 29979, 'twenty-nine thousand nine hundred seventy-nine'),\n(14450, 6000, 'six thousand'),\n(14451, 89570, 'eighty-nine thousand five hundred seventy'),\n(14452, 1531, 'one thousand five hundred thirty-one'),\n(14453, 52598, 'fifty-two thousand five hundred ninety-eight'),\n(14454, 3987, 'three thousand nine hundred eighty-seven'),\n(14455, 80410, 'eighty thousand four hundred ten'),\n(14456, 66354, 'sixty-six thousand three hundred fifty-four'),\n(14457, 82652, 'eighty-two thousand six hundred fifty-two'),\n(14458, 16187, 'sixteen thousand one hundred eighty-seven'),\n(14459, 90640, 'ninety thousand six hundred forty'),\n(14460, 23381, 'twenty-three thousand three hundred eighty-one'),\n(14461, 24338, 'twenty-four thousand three hundred thirty-eight'),\n(14462, 92652, 'ninety-two thousand six hundred fifty-two'),\n(14463, 41077, 'forty-one thousand seventy-seven'),\n(14464, 36577, 'thirty-six thousand five hundred seventy-seven'),\n(14465, 20299, 'twenty thousand two hundred ninety-nine'),\n(14466, 62776, 'sixty-two thousand seven hundred seventy-six'),\n(14467, 67506, 'sixty-seven thousand five hundred six'),\n(14468, 73012, 'seventy-three thousand twelve'),\n(14469, 81291, 'eighty-one thousand two hundred ninety-one'),\n(14470, 51806, 'fifty-one thousand eight hundred six'),\n(14471, 10356, 'ten thousand three hundred fifty-six'),\n(14472, 14935, 'fourteen thousand nine hundred thirty-five'),\n(14473, 92150, 'ninety-two thousand one hundred fifty'),\n(14474, 85918, 'eighty-five thousand nine hundred eighteen'),\n(14475, 22235, 'twenty-two thousand two hundred thirty-five'),\n(14476, 22731, 'twenty-two thousand seven hundred thirty-one'),\n(14477, 34465, 'thirty-four thousand four hundred sixty-five'),\n(14478, 20592, 'twenty thousand five hundred ninety-two'),\n(14479, 42785, 'forty-two thousand seven hundred eighty-five'),\n(14480, 48326, 'forty-eight thousand three hundred twenty-six'),\n(14481, 11939, 'eleven thousand nine hundred thirty-nine'),\n(14482, 35144, 'thirty-five thousand one hundred forty-four'),\n(14483, 92610, 'ninety-two thousand six hundred ten'),\n(14484, 33640, 'thirty-three thousand six hundred forty'),\n(14485, 69147, 'sixty-nine thousand one hundred forty-seven'),\n(14486, 59398, 'fifty-nine thousand three hundred ninety-eight'),\n(14487, 72857, 'seventy-two thousand eight hundred fifty-seven'),\n(14488, 13955, 'thirteen thousand nine hundred fifty-five'),\n(14489, 14269, 'fourteen thousand two hundred sixty-nine'),\n(14490, 51046, 'fifty-one thousand forty-six'),\n(14491, 1683, 'one thousand six hundred eighty-three'),\n(14492, 34176, 'thirty-four thousand one hundred seventy-six'),\n(14493, 78035, 'seventy-eight thousand thirty-five'),\n(14494, 6010, 'six thousand ten'),\n(14495, 25220, 'twenty-five thousand two hundred twenty'),\n(14496, 10069, 'ten thousand sixty-nine'),\n(14497, 32014, 'thirty-two thousand fourteen'),\n(14498, 42905, 'forty-two thousand nine hundred five'),\n(14499, 38341, 'thirty-eight thousand three hundred forty-one'),\n(14500, 68819, 'sixty-eight thousand eight hundred nineteen'),\n(14501, 17996, 'seventeen thousand nine hundred ninety-six'),\n(14502, 13424, 'thirteen thousand four hundred twenty-four'),\n(14503, 98015, 'ninety-eight thousand fifteen'),\n(14504, 60066, 'sixty thousand sixty-six'),\n(14505, 62737, 'sixty-two thousand seven hundred thirty-seven'),\n(14506, 43719, 'forty-three thousand seven hundred nineteen'),\n(14507, 72053, 'seventy-two thousand fifty-three'),\n(14508, 84111, 'eighty-four thousand one hundred eleven'),\n(14509, 14871, 'fourteen thousand eight hundred seventy-one'),\n(14510, 51984, 'fifty-one thousand nine hundred eighty-four'),\n(14511, 24022, 'twenty-four thousand twenty-two'),\n(14512, 82959, 'eighty-two thousand nine hundred fifty-nine'),\n(14513, 61332, 'sixty-one thousand three hundred thirty-two'),\n(14514, 91621, 'ninety-one thousand six hundred twenty-one'),\n(14515, 79851, 'seventy-nine thousand eight hundred fifty-one'),\n(14516, 62831, 'sixty-two thousand eight hundred thirty-one'),\n(14517, 23427, 'twenty-three thousand four hundred twenty-seven'),\n(14518, 46295, 'forty-six thousand two hundred ninety-five'),\n(14519, 66657, 'sixty-six thousand six hundred fifty-seven'),\n(14520, 6208, 'six thousand two hundred eight'),\n(14521, 66380, 'sixty-six thousand three hundred eighty'),\n(14522, 17450, 'seventeen thousand four hundred fifty'),\n(14523, 61566, 'sixty-one thousand five hundred sixty-six'),\n(14524, 89253, 'eighty-nine thousand two hundred fifty-three'),\n(14525, 59985, 'fifty-nine thousand nine hundred eighty-five'),\n(14526, 97636, 'ninety-seven thousand six hundred thirty-six'),\n(14527, 9563, 'nine thousand five hundred sixty-three'),\n(14528, 13734, 'thirteen thousand seven hundred thirty-four'),\n(14529, 5650, 'five thousand six hundred fifty'),\n(14530, 89709, 'eighty-nine thousand seven hundred nine'),\n(14531, 24506, 'twenty-four thousand five hundred six'),\n(14532, 18122, 'eighteen thousand one hundred twenty-two'),\n(14533, 11118, 'eleven thousand one hundred eighteen'),\n(14534, 19254, 'nineteen thousand two hundred fifty-four'),\n(14535, 48795, 'forty-eight thousand seven hundred ninety-five'),\n(14536, 47002, 'forty-seven thousand two'),\n(14537, 93246, 'ninety-three thousand two hundred forty-six'),\n(14538, 93657, 'ninety-three thousand six hundred fifty-seven'),\n(14539, 95971, 'ninety-five thousand nine hundred seventy-one'),\n(14540, 19687, 'nineteen thousand six hundred eighty-seven'),\n(14541, 7745, 'seven thousand seven hundred forty-five'),\n(14542, 95532, 'ninety-five thousand five hundred thirty-two'),\n(14543, 47374, 'forty-seven thousand three hundred seventy-four'),\n(14544, 66780, 'sixty-six thousand seven hundred eighty'),\n(14545, 6678, 'six thousand six hundred seventy-eight'),\n(14546, 1601, 'one thousand six hundred one'),\n(14547, 56690, 'fifty-six thousand six hundred ninety'),\n(14548, 61801, 'sixty-one thousand eight hundred one'),\n(14549, 18009, 'eighteen thousand nine'),\n(14550, 28747, 'twenty-eight thousand seven hundred forty-seven'),\n(14551, 96227, 'ninety-six thousand two hundred twenty-seven'),\n(14552, 43763, 'forty-three thousand seven hundred sixty-three'),\n(14553, 54158, 'fifty-four thousand one hundred fifty-eight'),\n(14554, 1818, 'one thousand eight hundred eighteen'),\n(14555, 24612, 'twenty-four thousand six hundred twelve'),\n(14556, 46670, 'forty-six thousand six hundred seventy'),\n(14557, 91736, 'ninety-one thousand seven hundred thirty-six'),\n(14558, 17262, 'seventeen thousand two hundred sixty-two'),\n(14559, 78245, 'seventy-eight thousand two hundred forty-five'),\n(14560, 97168, 'ninety-seven thousand one hundred sixty-eight'),\n(14561, 80533, 'eighty thousand five hundred thirty-three'),\n(14562, 55311, 'fifty-five thousand three hundred eleven'),\n(14563, 54210, 'fifty-four thousand two hundred ten'),\n(14564, 48670, 'forty-eight thousand six hundred seventy'),\n(14565, 69117, 'sixty-nine thousand one hundred seventeen'),\n(14566, 45768, 'forty-five thousand seven hundred sixty-eight'),\n(14567, 15407, 'fifteen thousand four hundred seven'),\n(14568, 50050, 'fifty thousand fifty'),\n(14569, 94177, 'ninety-four thousand one hundred seventy-seven'),\n(14570, 48762, 'forty-eight thousand seven hundred sixty-two'),\n(14571, 8834, 'eight thousand eight hundred thirty-four'),\n(14572, 21433, 'twenty-one thousand four hundred thirty-three'),\n(14573, 14194, 'fourteen thousand one hundred ninety-four'),\n(14574, 38715, 'thirty-eight thousand seven hundred fifteen'),\n(14575, 62721, 'sixty-two thousand seven hundred twenty-one'),\n(14576, 2339, 'two thousand three hundred thirty-nine'),\n(14577, 35936, 'thirty-five thousand nine hundred thirty-six'),\n(14578, 62465, 'sixty-two thousand four hundred sixty-five'),\n(14579, 31586, 'thirty-one thousand five hundred eighty-six'),\n(14580, 95906, 'ninety-five thousand nine hundred six'),\n(14581, 71334, 'seventy-one thousand three hundred thirty-four'),\n(14582, 84597, 'eighty-four thousand five hundred ninety-seven'),\n(14583, 43360, 'forty-three thousand three hundred sixty'),\n(14584, 38515, 'thirty-eight thousand five hundred fifteen'),\n(14585, 76042, 'seventy-six thousand forty-two'),\n(14586, 96336, 'ninety-six thousand three hundred thirty-six'),\n(14587, 42584, 'forty-two thousand five hundred eighty-four'),\n(14588, 13018, 'thirteen thousand eighteen'),\n(14589, 17527, 'seventeen thousand five hundred twenty-seven'),\n(14590, 18176, 'eighteen thousand one hundred seventy-six'),\n(14591, 545, 'five hundred forty-five'),\n(14592, 33773, 'thirty-three thousand seven hundred seventy-three'),\n(14593, 56040, 'fifty-six thousand forty'),\n(14594, 78879, 'seventy-eight thousand eight hundred seventy-nine'),\n(14595, 19897, 'nineteen thousand eight hundred ninety-seven'),\n(14596, 65648, 'sixty-five thousand six hundred forty-eight'),\n(14597, 76673, 'seventy-six thousand six hundred seventy-three'),\n(14598, 61800, 'sixty-one thousand eight hundred'),\n(14599, 84624, 'eighty-four thousand six hundred twenty-four'),\n(14600, 431, 'four hundred thirty-one'),\n(14601, 10560, 'ten thousand five hundred sixty'),\n(14602, 21302, 'twenty-one thousand three hundred two'),\n(14603, 39091, 'thirty-nine thousand ninety-one'),\n(14604, 65297, 'sixty-five thousand two hundred ninety-seven'),\n(14605, 13528, 'thirteen thousand five hundred twenty-eight'),\n(14606, 28883, 'twenty-eight thousand eight hundred eighty-three'),\n(14607, 28028, 'twenty-eight thousand twenty-eight'),\n(14608, 81862, 'eighty-one thousand eight hundred sixty-two'),\n(14609, 43381, 'forty-three thousand three hundred eighty-one'),\n(14610, 16975, 'sixteen thousand nine hundred seventy-five'),\n(14611, 8729, 'eight thousand seven hundred twenty-nine'),\n(14612, 61607, 'sixty-one thousand six hundred seven'),\n(14613, 8924, 'eight thousand nine hundred twenty-four'),\n(14614, 45396, 'forty-five thousand three hundred ninety-six'),\n(14615, 18785, 'eighteen thousand seven hundred eighty-five'),\n(14616, 58059, 'fifty-eight thousand fifty-nine'),\n(14617, 7730, 'seven thousand seven hundred thirty'),\n(14618, 92665, 'ninety-two thousand six hundred sixty-five'),\n(14619, 11839, 'eleven thousand eight hundred thirty-nine'),\n(14620, 14363, 'fourteen thousand three hundred sixty-three'),\n(14621, 44468, 'forty-four thousand four hundred sixty-eight'),\n(14622, 1261, 'one thousand two hundred sixty-one'),\n(14623, 70566, 'seventy thousand five hundred sixty-six'),\n(14624, 84631, 'eighty-four thousand six hundred thirty-one'),\n(14625, 29741, 'twenty-nine thousand seven hundred forty-one'),\n(14626, 23415, 'twenty-three thousand four hundred fifteen'),\n(14627, 16647, 'sixteen thousand six hundred forty-seven'),\n(14628, 96296, 'ninety-six thousand two hundred ninety-six'),\n(14629, 22149, 'twenty-two thousand one hundred forty-nine'),\n(14630, 96119, 'ninety-six thousand one hundred nineteen'),\n(14631, 84117, 'eighty-four thousand one hundred seventeen'),\n(14632, 74454, 'seventy-four thousand four hundred fifty-four'),\n(14633, 35335, 'thirty-five thousand three hundred thirty-five'),\n(14634, 17656, 'seventeen thousand six hundred fifty-six'),\n(14635, 48971, 'forty-eight thousand nine hundred seventy-one'),\n(14636, 30253, 'thirty thousand two hundred fifty-three'),\n(14637, 69918, 'sixty-nine thousand nine hundred eighteen'),\n(14638, 15651, 'fifteen thousand six hundred fifty-one'),\n(14639, 23684, 'twenty-three thousand six hundred eighty-four'),\n(14640, 53382, 'fifty-three thousand three hundred eighty-two'),\n(14641, 60408, 'sixty thousand four hundred eight'),\n(14642, 92, 'ninety-two'),\n(14643, 96043, 'ninety-six thousand forty-three'),\n(14644, 32274, 'thirty-two thousand two hundred seventy-four'),\n(14645, 33194, 'thirty-three thousand one hundred ninety-four'),\n(14646, 27182, 'twenty-seven thousand one hundred eighty-two'),\n(14647, 25971, 'twenty-five thousand nine hundred seventy-one'),\n(14648, 61471, 'sixty-one thousand four hundred seventy-one'),\n(14649, 76607, 'seventy-six thousand six hundred seven'),\n(14650, 66598, 'sixty-six thousand five hundred ninety-eight'),\n(14651, 73046, 'seventy-three thousand forty-six'),\n(14652, 60290, 'sixty thousand two hundred ninety'),\n(14653, 49954, 'forty-nine thousand nine hundred fifty-four'),\n(14654, 40613, 'forty thousand six hundred thirteen'),\n(14655, 18493, 'eighteen thousand four hundred ninety-three'),\n(14656, 47749, 'forty-seven thousand seven hundred forty-nine'),\n(14657, 10241, 'ten thousand two hundred forty-one'),\n(14658, 41418, 'forty-one thousand four hundred eighteen'),\n(14659, 63347, 'sixty-three thousand three hundred forty-seven'),\n(14660, 96691, 'ninety-six thousand six hundred ninety-one'),\n(14661, 36200, 'thirty-six thousand two hundred'),\n(14662, 40970, 'forty thousand nine hundred seventy'),\n(14663, 50620, 'fifty thousand six hundred twenty'),\n(14664, 9166, 'nine thousand one hundred sixty-six'),\n(14665, 79757, 'seventy-nine thousand seven hundred fifty-seven'),\n(14666, 16569, 'sixteen thousand five hundred sixty-nine'),\n(14667, 58815, 'fifty-eight thousand eight hundred fifteen'),\n(14668, 40528, 'forty thousand five hundred twenty-eight'),\n(14669, 94154, 'ninety-four thousand one hundred fifty-four'),\n(14670, 26496, 'twenty-six thousand four hundred ninety-six'),\n(14671, 26876, 'twenty-six thousand eight hundred seventy-six'),\n(14672, 37035, 'thirty-seven thousand thirty-five'),\n(14673, 9839, 'nine thousand eight hundred thirty-nine'),\n(14674, 86149, 'eighty-six thousand one hundred forty-nine'),\n(14675, 1814, 'one thousand eight hundred fourteen'),\n(14676, 52484, 'fifty-two thousand four hundred eighty-four'),\n(14677, 27971, 'twenty-seven thousand nine hundred seventy-one'),\n(14678, 83691, 'eighty-three thousand six hundred ninety-one'),\n(14679, 90928, 'ninety thousand nine hundred twenty-eight'),\n(14680, 38663, 'thirty-eight thousand six hundred sixty-three'),\n(14681, 1772, 'one thousand seven hundred seventy-two'),\n(14682, 61583, 'sixty-one thousand five hundred eighty-three'),\n(14683, 53255, 'fifty-three thousand two hundred fifty-five'),\n(14684, 99600, 'ninety-nine thousand six hundred'),\n(14685, 76202, 'seventy-six thousand two hundred two'),\n(14686, 44120, 'forty-four thousand one hundred twenty'),\n(14687, 24322, 'twenty-four thousand three hundred twenty-two'),\n(14688, 21637, 'twenty-one thousand six hundred thirty-seven'),\n(14689, 67258, 'sixty-seven thousand two hundred fifty-eight'),\n(14690, 68273, 'sixty-eight thousand two hundred seventy-three'),\n(14691, 80361, 'eighty thousand three hundred sixty-one'),\n(14692, 68710, 'sixty-eight thousand seven hundred ten'),\n(14693, 67598, 'sixty-seven thousand five hundred ninety-eight'),\n(14694, 89210, 'eighty-nine thousand two hundred ten'),\n(14695, 7539, 'seven thousand five hundred thirty-nine'),\n(14696, 97320, 'ninety-seven thousand three hundred twenty'),\n(14697, 25192, 'twenty-five thousand one hundred ninety-two'),\n(14698, 94338, 'ninety-four thousand three hundred thirty-eight'),\n(14699, 35995, 'thirty-five thousand nine hundred ninety-five'),\n(14700, 90606, 'ninety thousand six hundred six'),\n(14701, 10162, 'ten thousand one hundred sixty-two'),\n(14702, 96067, 'ninety-six thousand sixty-seven'),\n(14703, 47228, 'forty-seven thousand two hundred twenty-eight'),\n(14704, 24641, 'twenty-four thousand six hundred forty-one'),\n(14705, 23059, 'twenty-three thousand fifty-nine'),\n(14706, 10987, 'ten thousand nine hundred eighty-seven'),\n(14707, 43983, 'forty-three thousand nine hundred eighty-three'),\n(14708, 91510, 'ninety-one thousand five hundred ten'),\n(14709, 37927, 'thirty-seven thousand nine hundred twenty-seven'),\n(14710, 76941, 'seventy-six thousand nine hundred forty-one'),\n(14711, 79922, 'seventy-nine thousand nine hundred twenty-two'),\n(14712, 49050, 'forty-nine thousand fifty'),\n(14713, 58439, 'fifty-eight thousand four hundred thirty-nine'),\n(14714, 28349, 'twenty-eight thousand three hundred forty-nine'),\n(14715, 94768, 'ninety-four thousand seven hundred sixty-eight'),\n(14716, 46010, 'forty-six thousand ten'),\n(14717, 93285, 'ninety-three thousand two hundred eighty-five'),\n(14718, 76260, 'seventy-six thousand two hundred sixty'),\n(14719, 40291, 'forty thousand two hundred ninety-one'),\n(14720, 58924, 'fifty-eight thousand nine hundred twenty-four'),\n(14721, 7485, 'seven thousand four hundred eighty-five'),\n(14722, 2979, 'two thousand nine hundred seventy-nine'),\n(14723, 96733, 'ninety-six thousand seven hundred thirty-three'),\n(14724, 88617, 'eighty-eight thousand six hundred seventeen'),\n(14725, 46276, 'forty-six thousand two hundred seventy-six'),\n(14726, 93069, 'ninety-three thousand sixty-nine'),\n(14727, 28286, 'twenty-eight thousand two hundred eighty-six'),\n(14728, 54933, 'fifty-four thousand nine hundred thirty-three'),\n(14729, 10434, 'ten thousand four hundred thirty-four'),\n(14730, 50818, 'fifty thousand eight hundred eighteen'),\n(14731, 64699, 'sixty-four thousand six hundred ninety-nine'),\n(14732, 77213, 'seventy-seven thousand two hundred thirteen'),\n(14733, 31291, 'thirty-one thousand two hundred ninety-one'),\n(14734, 86987, 'eighty-six thousand nine hundred eighty-seven'),\n(14735, 12738, 'twelve thousand seven hundred thirty-eight'),\n(14736, 33222, 'thirty-three thousand two hundred twenty-two'),\n(14737, 64977, 'sixty-four thousand nine hundred seventy-seven'),\n(14738, 99141, 'ninety-nine thousand one hundred forty-one'),\n(14739, 89130, 'eighty-nine thousand one hundred thirty'),\n(14740, 65348, 'sixty-five thousand three hundred forty-eight'),\n(14741, 18826, 'eighteen thousand eight hundred twenty-six'),\n(14742, 82411, 'eighty-two thousand four hundred eleven'),\n(14743, 83515, 'eighty-three thousand five hundred fifteen'),\n(14744, 16623, 'sixteen thousand six hundred twenty-three'),\n(14745, 29742, 'twenty-nine thousand seven hundred forty-two'),\n(14746, 97023, 'ninety-seven thousand twenty-three'),\n(14747, 21967, 'twenty-one thousand nine hundred sixty-seven'),\n(14748, 15804, 'fifteen thousand eight hundred four'),\n(14749, 84800, 'eighty-four thousand eight hundred'),\n(14750, 63397, 'sixty-three thousand three hundred ninety-seven'),\n(14751, 49999, 'forty-nine thousand nine hundred ninety-nine'),\n(14752, 3108, 'three thousand one hundred eight'),\n(14753, 87015, 'eighty-seven thousand fifteen'),\n(14754, 42119, 'forty-two thousand one hundred nineteen'),\n(14755, 31636, 'thirty-one thousand six hundred thirty-six'),\n(14756, 33528, 'thirty-three thousand five hundred twenty-eight'),\n(14757, 65330, 'sixty-five thousand three hundred thirty'),\n(14758, 69672, 'sixty-nine thousand six hundred seventy-two'),\n(14759, 81612, 'eighty-one thousand six hundred twelve'),\n(14760, 34074, 'thirty-four thousand seventy-four'),\n(14761, 7038, 'seven thousand thirty-eight'),\n(14762, 73759, 'seventy-three thousand seven hundred fifty-nine'),\n(14763, 26853, 'twenty-six thousand eight hundred fifty-three'),\n(14764, 79302, 'seventy-nine thousand three hundred two'),\n(14765, 23506, 'twenty-three thousand five hundred six'),\n(14766, 69411, 'sixty-nine thousand four hundred eleven'),\n(14767, 11155, 'eleven thousand one hundred fifty-five'),\n(14768, 40620, 'forty thousand six hundred twenty'),\n(14769, 18344, 'eighteen thousand three hundred forty-four'),\n(14770, 22042, 'twenty-two thousand forty-two'),\n(14771, 22681, 'twenty-two thousand six hundred eighty-one'),\n(14772, 71667, 'seventy-one thousand six hundred sixty-seven'),\n(14773, 51150, 'fifty-one thousand one hundred fifty'),\n(14774, 28543, 'twenty-eight thousand five hundred forty-three'),\n(14775, 14495, 'fourteen thousand four hundred ninety-five'),\n(14776, 52373, 'fifty-two thousand three hundred seventy-three'),\n(14777, 20145, 'twenty thousand one hundred forty-five'),\n(14778, 25804, 'twenty-five thousand eight hundred four'),\n(14779, 75745, 'seventy-five thousand seven hundred forty-five'),\n(14780, 2670, 'two thousand six hundred seventy'),\n(14781, 31554, 'thirty-one thousand five hundred fifty-four'),\n(14782, 60319, 'sixty thousand three hundred nineteen'),\n(14783, 94965, 'ninety-four thousand nine hundred sixty-five'),\n(14784, 68317, 'sixty-eight thousand three hundred seventeen'),\n(14785, 65496, 'sixty-five thousand four hundred ninety-six'),\n(14786, 14829, 'fourteen thousand eight hundred twenty-nine'),\n(14787, 62039, 'sixty-two thousand thirty-nine'),\n(14788, 78255, 'seventy-eight thousand two hundred fifty-five'),\n(14789, 55623, 'fifty-five thousand six hundred twenty-three'),\n(14790, 89645, 'eighty-nine thousand six hundred forty-five'),\n(14791, 83493, 'eighty-three thousand four hundred ninety-three'),\n(14792, 29073, 'twenty-nine thousand seventy-three'),\n(14793, 58226, 'fifty-eight thousand two hundred twenty-six'),\n(14794, 18239, 'eighteen thousand two hundred thirty-nine'),\n(14795, 24851, 'twenty-four thousand eight hundred fifty-one'),\n(14796, 48202, 'forty-eight thousand two hundred two'),\n(14797, 96300, 'ninety-six thousand three hundred'),\n(14798, 44737, 'forty-four thousand seven hundred thirty-seven'),\n(14799, 26558, 'twenty-six thousand five hundred fifty-eight'),\n(14800, 98718, 'ninety-eight thousand seven hundred eighteen'),\n(14801, 26845, 'twenty-six thousand eight hundred forty-five'),\n(14802, 64692, 'sixty-four thousand six hundred ninety-two'),\n(14803, 5671, 'five thousand six hundred seventy-one'),\n(14804, 19624, 'nineteen thousand six hundred twenty-four'),\n(14805, 14552, 'fourteen thousand five hundred fifty-two'),\n(14806, 50990, 'fifty thousand nine hundred ninety'),\n(14807, 13238, 'thirteen thousand two hundred thirty-eight'),\n(14808, 93617, 'ninety-three thousand six hundred seventeen'),\n(14809, 40089, 'forty thousand eighty-nine'),\n(14810, 88897, 'eighty-eight thousand eight hundred ninety-seven'),\n(14811, 84395, 'eighty-four thousand three hundred ninety-five'),\n(14812, 8229, 'eight thousand two hundred twenty-nine'),\n(14813, 45799, 'forty-five thousand seven hundred ninety-nine'),\n(14814, 41014, 'forty-one thousand fourteen'),\n(14815, 23969, 'twenty-three thousand nine hundred sixty-nine'),\n(14816, 90422, 'ninety thousand four hundred twenty-two'),\n(14817, 76993, 'seventy-six thousand nine hundred ninety-three'),\n(14818, 4635, 'four thousand six hundred thirty-five'),\n(14819, 61719, 'sixty-one thousand seven hundred nineteen'),\n(14820, 63981, 'sixty-three thousand nine hundred eighty-one'),\n(14821, 72436, 'seventy-two thousand four hundred thirty-six'),\n(14822, 76396, 'seventy-six thousand three hundred ninety-six'),\n(14823, 36606, 'thirty-six thousand six hundred six'),\n(14824, 25753, 'twenty-five thousand seven hundred fifty-three'),\n(14825, 2595, 'two thousand five hundred ninety-five'),\n(14826, 26604, 'twenty-six thousand six hundred four'),\n(14827, 79310, 'seventy-nine thousand three hundred ten'),\n(14828, 14786, 'fourteen thousand seven hundred eighty-six'),\n(14829, 63633, 'sixty-three thousand six hundred thirty-three'),\n(14830, 28430, 'twenty-eight thousand four hundred thirty'),\n(14831, 84113, 'eighty-four thousand one hundred thirteen'),\n(14832, 13312, 'thirteen thousand three hundred twelve'),\n(14833, 2072, 'two thousand seventy-two'),\n(14834, 95674, 'ninety-five thousand six hundred seventy-four'),\n(14835, 26157, 'twenty-six thousand one hundred fifty-seven'),\n(14836, 36267, 'thirty-six thousand two hundred sixty-seven'),\n(14837, 62430, 'sixty-two thousand four hundred thirty'),\n(14838, 37766, 'thirty-seven thousand seven hundred sixty-six'),\n(14839, 76086, 'seventy-six thousand eighty-six'),\n(14840, 26475, 'twenty-six thousand four hundred seventy-five'),\n(14841, 43407, 'forty-three thousand four hundred seven'),\n(14842, 22528, 'twenty-two thousand five hundred twenty-eight'),\n(14843, 44323, 'forty-four thousand three hundred twenty-three'),\n(14844, 41830, 'forty-one thousand eight hundred thirty'),\n(14845, 96621, 'ninety-six thousand six hundred twenty-one'),\n(14846, 33664, 'thirty-three thousand six hundred sixty-four'),\n(14847, 71976, 'seventy-one thousand nine hundred seventy-six'),\n(14848, 4884, 'four thousand eight hundred eighty-four'),\n(14849, 23942, 'twenty-three thousand nine hundred forty-two'),\n(14850, 82899, 'eighty-two thousand eight hundred ninety-nine'),\n(14851, 11813, 'eleven thousand eight hundred thirteen'),\n(14852, 71725, 'seventy-one thousand seven hundred twenty-five'),\n(14853, 31297, 'thirty-one thousand two hundred ninety-seven'),\n(14854, 29492, 'twenty-nine thousand four hundred ninety-two'),\n(14855, 48771, 'forty-eight thousand seven hundred seventy-one'),\n(14856, 45991, 'forty-five thousand nine hundred ninety-one'),\n(14857, 10437, 'ten thousand four hundred thirty-seven'),\n(14858, 54922, 'fifty-four thousand nine hundred twenty-two'),\n(14859, 19106, 'nineteen thousand one hundred six'),\n(14860, 48819, 'forty-eight thousand eight hundred nineteen'),\n(14861, 2515, 'two thousand five hundred fifteen'),\n(14862, 65063, 'sixty-five thousand sixty-three'),\n(14863, 33414, 'thirty-three thousand four hundred fourteen'),\n(14864, 66107, 'sixty-six thousand one hundred seven'),\n(14865, 5307, 'five thousand three hundred seven'),\n(14866, 979, 'nine hundred seventy-nine'),\n(14867, 49605, 'forty-nine thousand six hundred five'),\n(14868, 6170, 'six thousand one hundred seventy'),\n(14869, 28136, 'twenty-eight thousand one hundred thirty-six'),\n(14870, 95342, 'ninety-five thousand three hundred forty-two'),\n(14871, 20883, 'twenty thousand eight hundred eighty-three'),\n(14872, 70619, 'seventy thousand six hundred nineteen'),\n(14873, 89998, 'eighty-nine thousand nine hundred ninety-eight'),\n(14874, 26091, 'twenty-six thousand ninety-one'),\n(14875, 10527, 'ten thousand five hundred twenty-seven'),\n(14876, 81134, 'eighty-one thousand one hundred thirty-four'),\n(14877, 39098, 'thirty-nine thousand ninety-eight'),\n(14878, 70841, 'seventy thousand eight hundred forty-one'),\n(14879, 51836, 'fifty-one thousand eight hundred thirty-six'),\n(14880, 4935, 'four thousand nine hundred thirty-five'),\n(14881, 7788, 'seven thousand seven hundred eighty-eight'),\n(14882, 90595, 'ninety thousand five hundred ninety-five'),\n(14883, 4865, 'four thousand eight hundred sixty-five'),\n(14884, 88060, 'eighty-eight thousand sixty'),\n(14885, 20560, 'twenty thousand five hundred sixty'),\n(14886, 93983, 'ninety-three thousand nine hundred eighty-three'),\n(14887, 4848, 'four thousand eight hundred forty-eight'),\n(14888, 41796, 'forty-one thousand seven hundred ninety-six'),\n(14889, 4761, 'four thousand seven hundred sixty-one'),\n(14890, 93682, 'ninety-three thousand six hundred eighty-two'),\n(14891, 54567, 'fifty-four thousand five hundred sixty-seven'),\n(14892, 64420, 'sixty-four thousand four hundred twenty'),\n(14893, 97054, 'ninety-seven thousand fifty-four'),\n(14894, 53773, 'fifty-three thousand seven hundred seventy-three'),\n(14895, 29994, 'twenty-nine thousand nine hundred ninety-four'),\n(14896, 4332, 'four thousand three hundred thirty-two'),\n(14897, 88187, 'eighty-eight thousand one hundred eighty-seven'),\n(14898, 38629, 'thirty-eight thousand six hundred twenty-nine'),\n(14899, 91071, 'ninety-one thousand seventy-one'),\n(14900, 47748, 'forty-seven thousand seven hundred forty-eight'),\n(14901, 65322, 'sixty-five thousand three hundred twenty-two'),\n(14902, 32041, 'thirty-two thousand forty-one'),\n(14903, 20425, 'twenty thousand four hundred twenty-five'),\n(14904, 29704, 'twenty-nine thousand seven hundred four'),\n(14905, 36747, 'thirty-six thousand seven hundred forty-seven'),\n(14906, 72935, 'seventy-two thousand nine hundred thirty-five'),\n(14907, 66552, 'sixty-six thousand five hundred fifty-two'),\n(14908, 71347, 'seventy-one thousand three hundred forty-seven'),\n(14909, 21914, 'twenty-one thousand nine hundred fourteen'),\n(14910, 75330, 'seventy-five thousand three hundred thirty'),\n(14911, 74040, 'seventy-four thousand forty'),\n(14912, 38239, 'thirty-eight thousand two hundred thirty-nine'),\n(14913, 53106, 'fifty-three thousand one hundred six'),\n(14914, 54499, 'fifty-four thousand four hundred ninety-nine'),\n(14915, 12373, 'twelve thousand three hundred seventy-three'),\n(14916, 85494, 'eighty-five thousand four hundred ninety-four'),\n(14917, 32666, 'thirty-two thousand six hundred sixty-six'),\n(14918, 55173, 'fifty-five thousand one hundred seventy-three'),\n(14919, 97205, 'ninety-seven thousand two hundred five'),\n(14920, 33136, 'thirty-three thousand one hundred thirty-six'),\n(14921, 97678, 'ninety-seven thousand six hundred seventy-eight'),\n(14922, 21070, 'twenty-one thousand seventy'),\n(14923, 35605, 'thirty-five thousand six hundred five'),\n(14924, 29698, 'twenty-nine thousand six hundred ninety-eight'),\n(14925, 76243, 'seventy-six thousand two hundred forty-three'),\n(14926, 19999, 'nineteen thousand nine hundred ninety-nine'),\n(14927, 79076, 'seventy-nine thousand seventy-six'),\n(14928, 65351, 'sixty-five thousand three hundred fifty-one'),\n(14929, 78249, 'seventy-eight thousand two hundred forty-nine'),\n(14930, 7308, 'seven thousand three hundred eight'),\n(14931, 98436, 'ninety-eight thousand four hundred thirty-six'),\n(14932, 49595, 'forty-nine thousand five hundred ninety-five'),\n(14933, 96764, 'ninety-six thousand seven hundred sixty-four'),\n(14934, 6612, 'six thousand six hundred twelve'),\n(14935, 21010, 'twenty-one thousand ten'),\n(14936, 41545, 'forty-one thousand five hundred forty-five'),\n(14937, 5713, 'five thousand seven hundred thirteen'),\n(14938, 69238, 'sixty-nine thousand two hundred thirty-eight'),\n(14939, 21864, 'twenty-one thousand eight hundred sixty-four'),\n(14940, 93295, 'ninety-three thousand two hundred ninety-five'),\n(14941, 788, 'seven hundred eighty-eight'),\n(14942, 32785, 'thirty-two thousand seven hundred eighty-five'),\n(14943, 68994, 'sixty-eight thousand nine hundred ninety-four'),\n(14944, 97350, 'ninety-seven thousand three hundred fifty'),\n(14945, 78785, 'seventy-eight thousand seven hundred eighty-five'),\n(14946, 93985, 'ninety-three thousand nine hundred eighty-five'),\n(14947, 14195, 'fourteen thousand one hundred ninety-five'),\n(14948, 54921, 'fifty-four thousand nine hundred twenty-one'),\n(14949, 68516, 'sixty-eight thousand five hundred sixteen'),\n(14950, 50487, 'fifty thousand four hundred eighty-seven'),\n(14951, 20389, 'twenty thousand three hundred eighty-nine'),\n(14952, 37214, 'thirty-seven thousand two hundred fourteen'),\n(14953, 29725, 'twenty-nine thousand seven hundred twenty-five'),\n(14954, 99687, 'ninety-nine thousand six hundred eighty-seven'),\n(14955, 89462, 'eighty-nine thousand four hundred sixty-two'),\n(14956, 66416, 'sixty-six thousand four hundred sixteen'),\n(14957, 64494, 'sixty-four thousand four hundred ninety-four'),\n(14958, 13542, 'thirteen thousand five hundred forty-two'),\n(14959, 57723, 'fifty-seven thousand seven hundred twenty-three'),\n(14960, 63327, 'sixty-three thousand three hundred twenty-seven'),\n(14961, 50067, 'fifty thousand sixty-seven'),\n(14962, 64840, 'sixty-four thousand eight hundred forty'),\n(14963, 25890, 'twenty-five thousand eight hundred ninety'),\n(14964, 8217, 'eight thousand two hundred seventeen'),\n(14965, 95393, 'ninety-five thousand three hundred ninety-three'),\n(14966, 34495, 'thirty-four thousand four hundred ninety-five'),\n(14967, 58041, 'fifty-eight thousand forty-one'),\n(14968, 20691, 'twenty thousand six hundred ninety-one'),\n(14969, 38165, 'thirty-eight thousand one hundred sixty-five'),\n(14970, 85633, 'eighty-five thousand six hundred thirty-three'),\n(14971, 82115, 'eighty-two thousand one hundred fifteen'),\n(14972, 6720, 'six thousand seven hundred twenty'),\n(14973, 21940, 'twenty-one thousand nine hundred forty'),\n(14974, 65468, 'sixty-five thousand four hundred sixty-eight'),\n(14975, 37278, 'thirty-seven thousand two hundred seventy-eight'),\n(14976, 26972, 'twenty-six thousand nine hundred seventy-two'),\n(14977, 55929, 'fifty-five thousand nine hundred twenty-nine'),\n(14978, 94039, 'ninety-four thousand thirty-nine'),\n(14979, 15596, 'fifteen thousand five hundred ninety-six'),\n(14980, 68242, 'sixty-eight thousand two hundred forty-two'),\n(14981, 36690, 'thirty-six thousand six hundred ninety'),\n(14982, 20648, 'twenty thousand six hundred forty-eight'),\n(14983, 41652, 'forty-one thousand six hundred fifty-two'),\n(14984, 97396, 'ninety-seven thousand three hundred ninety-six'),\n(14985, 65387, 'sixty-five thousand three hundred eighty-seven'),\n(14986, 98366, 'ninety-eight thousand three hundred sixty-six'),\n(14987, 302, 'three hundred two'),\n(14988, 91288, 'ninety-one thousand two hundred eighty-eight'),\n(14989, 98564, 'ninety-eight thousand five hundred sixty-four'),\n(14990, 99750, 'ninety-nine thousand seven hundred fifty'),\n(14991, 19715, 'nineteen thousand seven hundred fifteen'),\n(14992, 26296, 'twenty-six thousand two hundred ninety-six'),\n(14993, 36436, 'thirty-six thousand four hundred thirty-six'),\n(14994, 13402, 'thirteen thousand four hundred two'),\n(14995, 89198, 'eighty-nine thousand one hundred ninety-eight'),\n(14996, 2298, 'two thousand two hundred ninety-eight'),\n(14997, 31320, 'thirty-one thousand three hundred twenty'),\n(14998, 42469, 'forty-two thousand four hundred sixty-nine'),\n(14999, 98056, 'ninety-eight thousand fifty-six'),\n(15000, 24312, 'twenty-four thousand three hundred twelve'),\n(15001, 48459, 'forty-eight thousand four hundred fifty-nine'),\n(15002, 78491, 'seventy-eight thousand four hundred ninety-one'),\n(15003, 57934, 'fifty-seven thousand nine hundred thirty-four'),\n(15004, 60247, 'sixty thousand two hundred forty-seven'),\n(15005, 2389, 'two thousand three hundred eighty-nine'),\n(15006, 11267, 'eleven thousand two hundred sixty-seven'),\n(15007, 70173, 'seventy thousand one hundred seventy-three'),\n(15008, 47493, 'forty-seven thousand four hundred ninety-three'),\n(15009, 33183, 'thirty-three thousand one hundred eighty-three'),\n(15010, 83222, 'eighty-three thousand two hundred twenty-two'),\n(15011, 51238, 'fifty-one thousand two hundred thirty-eight'),\n(15012, 69383, 'sixty-nine thousand three hundred eighty-three'),\n(15013, 29037, 'twenty-nine thousand thirty-seven'),\n(15014, 40275, 'forty thousand two hundred seventy-five'),\n(15015, 65086, 'sixty-five thousand eighty-six'),\n(15016, 28340, 'twenty-eight thousand three hundred forty'),\n(15017, 41656, 'forty-one thousand six hundred fifty-six'),\n(15018, 12641, 'twelve thousand six hundred forty-one'),\n(15019, 94465, 'ninety-four thousand four hundred sixty-five'),\n(15020, 32260, 'thirty-two thousand two hundred sixty'),\n(15021, 40288, 'forty thousand two hundred eighty-eight'),\n(15022, 12452, 'twelve thousand four hundred fifty-two'),\n(15023, 919, 'nine hundred nineteen'),\n(15024, 64311, 'sixty-four thousand three hundred eleven'),\n(15025, 30233, 'thirty thousand two hundred thirty-three'),\n(15026, 61123, 'sixty-one thousand one hundred twenty-three'),\n(15027, 41643, 'forty-one thousand six hundred forty-three'),\n(15028, 47552, 'forty-seven thousand five hundred fifty-two'),\n(15029, 34309, 'thirty-four thousand three hundred nine'),\n(15030, 34812, 'thirty-four thousand eight hundred twelve'),\n(15031, 87831, 'eighty-seven thousand eight hundred thirty-one'),\n(15032, 61005, 'sixty-one thousand five'),\n(15033, 30859, 'thirty thousand eight hundred fifty-nine'),\n(15034, 94069, 'ninety-four thousand sixty-nine'),\n(15035, 83479, 'eighty-three thousand four hundred seventy-nine'),\n(15036, 5123, 'five thousand one hundred twenty-three'),\n(15037, 75540, 'seventy-five thousand five hundred forty'),\n(15038, 9790, 'nine thousand seven hundred ninety'),\n(15039, 90672, 'ninety thousand six hundred seventy-two'),\n(15040, 10709, 'ten thousand seven hundred nine'),\n(15041, 8592, 'eight thousand five hundred ninety-two'),\n(15042, 43725, 'forty-three thousand seven hundred twenty-five'),\n(15043, 1227, 'one thousand two hundred twenty-seven'),\n(15044, 32559, 'thirty-two thousand five hundred fifty-nine'),\n(15045, 1544, 'one thousand five hundred forty-four'),\n(15046, 57811, 'fifty-seven thousand eight hundred eleven'),\n(15047, 78062, 'seventy-eight thousand sixty-two'),\n(15048, 37334, 'thirty-seven thousand three hundred thirty-four'),\n(15049, 41926, 'forty-one thousand nine hundred twenty-six'),\n(15050, 95826, 'ninety-five thousand eight hundred twenty-six'),\n(15051, 58909, 'fifty-eight thousand nine hundred nine'),\n(15052, 89262, 'eighty-nine thousand two hundred sixty-two'),\n(15053, 34054, 'thirty-four thousand fifty-four'),\n(15054, 40249, 'forty thousand two hundred forty-nine'),\n(15055, 35047, 'thirty-five thousand forty-seven'),\n(15056, 69988, 'sixty-nine thousand nine hundred eighty-eight'),\n(15057, 56210, 'fifty-six thousand two hundred ten'),\n(15058, 99075, 'ninety-nine thousand seventy-five'),\n(15059, 94545, 'ninety-four thousand five hundred forty-five'),\n(15060, 85451, 'eighty-five thousand four hundred fifty-one'),\n(15061, 33577, 'thirty-three thousand five hundred seventy-seven'),\n(15062, 59678, 'fifty-nine thousand six hundred seventy-eight'),\n(15063, 16810, 'sixteen thousand eight hundred ten'),\n(15064, 8853, 'eight thousand eight hundred fifty-three'),\n(15065, 64193, 'sixty-four thousand one hundred ninety-three'),\n(15066, 48195, 'forty-eight thousand one hundred ninety-five'),\n(15067, 36665, 'thirty-six thousand six hundred sixty-five'),\n(15068, 31579, 'thirty-one thousand five hundred seventy-nine'),\n(15069, 98313, 'ninety-eight thousand three hundred thirteen'),\n(15070, 88972, 'eighty-eight thousand nine hundred seventy-two'),\n(15071, 90902, 'ninety thousand nine hundred two'),\n(15072, 10554, 'ten thousand five hundred fifty-four'),\n(15073, 39186, 'thirty-nine thousand one hundred eighty-six'),\n(15074, 50974, 'fifty thousand nine hundred seventy-four'),\n(15075, 75245, 'seventy-five thousand two hundred forty-five'),\n(15076, 53080, 'fifty-three thousand eighty'),\n(15077, 15656, 'fifteen thousand six hundred fifty-six'),\n(15078, 62057, 'sixty-two thousand fifty-seven'),\n(15079, 58774, 'fifty-eight thousand seven hundred seventy-four'),\n(15080, 97382, 'ninety-seven thousand three hundred eighty-two'),\n(15081, 43349, 'forty-three thousand three hundred forty-nine'),\n(15082, 6745, 'six thousand seven hundred forty-five'),\n(15083, 27013, 'twenty-seven thousand thirteen'),\n(15084, 9994, 'nine thousand nine hundred ninety-four'),\n(15085, 31823, 'thirty-one thousand eight hundred twenty-three'),\n(15086, 78388, 'seventy-eight thousand three hundred eighty-eight'),\n(15087, 77119, 'seventy-seven thousand one hundred nineteen'),\n(15088, 56016, 'fifty-six thousand sixteen'),\n(15089, 42894, 'forty-two thousand eight hundred ninety-four'),\n(15090, 66096, 'sixty-six thousand ninety-six'),\n(15091, 85017, 'eighty-five thousand seventeen'),\n(15092, 79847, 'seventy-nine thousand eight hundred forty-seven'),\n(15093, 16920, 'sixteen thousand nine hundred twenty'),\n(15094, 93099, 'ninety-three thousand ninety-nine'),\n(15095, 35251, 'thirty-five thousand two hundred fifty-one'),\n(15096, 53434, 'fifty-three thousand four hundred thirty-four'),\n(15097, 10204, 'ten thousand two hundred four'),\n(15098, 50288, 'fifty thousand two hundred eighty-eight'),\n(15099, 1180, 'one thousand one hundred eighty'),\n(15100, 96251, 'ninety-six thousand two hundred fifty-one'),\n(15101, 45406, 'forty-five thousand four hundred six'),\n(15102, 53607, 'fifty-three thousand six hundred seven'),\n(15103, 84373, 'eighty-four thousand three hundred seventy-three'),\n(15104, 4189, 'four thousand one hundred eighty-nine'),\n(15105, 29865, 'twenty-nine thousand eight hundred sixty-five'),\n(15106, 65752, 'sixty-five thousand seven hundred fifty-two'),\n(15107, 52589, 'fifty-two thousand five hundred eighty-nine'),\n(15108, 9791, 'nine thousand seven hundred ninety-one'),\n(15109, 87316, 'eighty-seven thousand three hundred sixteen'),\n(15110, 58209, 'fifty-eight thousand two hundred nine'),\n(15111, 39764, 'thirty-nine thousand seven hundred sixty-four'),\n(15112, 21925, 'twenty-one thousand nine hundred twenty-five'),\n(15113, 61637, 'sixty-one thousand six hundred thirty-seven'),\n(15114, 70146, 'seventy thousand one hundred forty-six'),\n(15115, 27943, 'twenty-seven thousand nine hundred forty-three'),\n(15116, 8717, 'eight thousand seven hundred seventeen'),\n(15117, 5985, 'five thousand nine hundred eighty-five'),\n(15118, 3557, 'three thousand five hundred fifty-seven'),\n(15119, 6136, 'six thousand one hundred thirty-six'),\n(15120, 53281, 'fifty-three thousand two hundred eighty-one'),\n(15121, 52900, 'fifty-two thousand nine hundred'),\n(15122, 16339, 'sixteen thousand three hundred thirty-nine'),\n(15123, 2927, 'two thousand nine hundred twenty-seven'),\n(15124, 83020, 'eighty-three thousand twenty'),\n(15125, 94829, 'ninety-four thousand eight hundred twenty-nine'),\n(15126, 8211, 'eight thousand two hundred eleven'),\n(15127, 92871, 'ninety-two thousand eight hundred seventy-one'),\n(15128, 81871, 'eighty-one thousand eight hundred seventy-one'),\n(15129, 44724, 'forty-four thousand seven hundred twenty-four'),\n(15130, 20938, 'twenty thousand nine hundred thirty-eight'),\n(15131, 76790, 'seventy-six thousand seven hundred ninety'),\n(15132, 31461, 'thirty-one thousand four hundred sixty-one'),\n(15133, 54190, 'fifty-four thousand one hundred ninety'),\n(15134, 83218, 'eighty-three thousand two hundred eighteen'),\n(15135, 9374, 'nine thousand three hundred seventy-four'),\n(15136, 44996, 'forty-four thousand nine hundred ninety-six'),\n(15137, 25919, 'twenty-five thousand nine hundred nineteen'),\n(15138, 14401, 'fourteen thousand four hundred one'),\n(15139, 89091, 'eighty-nine thousand ninety-one'),\n(15140, 7094, 'seven thousand ninety-four'),\n(15141, 89779, 'eighty-nine thousand seven hundred seventy-nine'),\n(15142, 45544, 'forty-five thousand five hundred forty-four'),\n(15143, 61814, 'sixty-one thousand eight hundred fourteen'),\n(15144, 75992, 'seventy-five thousand nine hundred ninety-two'),\n(15145, 44953, 'forty-four thousand nine hundred fifty-three'),\n(15146, 87908, 'eighty-seven thousand nine hundred eight'),\n(15147, 17184, 'seventeen thousand one hundred eighty-four'),\n(15148, 7494, 'seven thousand four hundred ninety-four'),\n(15149, 87607, 'eighty-seven thousand six hundred seven'),\n(15150, 68389, 'sixty-eight thousand three hundred eighty-nine'),\n(15151, 30805, 'thirty thousand eight hundred five'),\n(15152, 52612, 'fifty-two thousand six hundred twelve'),\n(15153, 32799, 'thirty-two thousand seven hundred ninety-nine'),\n(15154, 51205, 'fifty-one thousand two hundred five'),\n(15155, 91303, 'ninety-one thousand three hundred three'),\n(15156, 43134, 'forty-three thousand one hundred thirty-four'),\n(15157, 40954, 'forty thousand nine hundred fifty-four'),\n(15158, 96839, 'ninety-six thousand eight hundred thirty-nine'),\n(15159, 26383, 'twenty-six thousand three hundred eighty-three'),\n(15160, 22684, 'twenty-two thousand six hundred eighty-four'),\n(15161, 70925, 'seventy thousand nine hundred twenty-five'),\n(15162, 51971, 'fifty-one thousand nine hundred seventy-one'),\n(15163, 93460, 'ninety-three thousand four hundred sixty'),\n(15164, 96282, 'ninety-six thousand two hundred eighty-two'),\n(15165, 49349, 'forty-nine thousand three hundred forty-nine'),\n(15166, 68247, 'sixty-eight thousand two hundred forty-seven'),\n(15167, 87528, 'eighty-seven thousand five hundred twenty-eight'),\n(15168, 10749, 'ten thousand seven hundred forty-nine'),\n(15169, 7130, 'seven thousand one hundred thirty'),\n(15170, 19408, 'nineteen thousand four hundred eight'),\n(15171, 34355, 'thirty-four thousand three hundred fifty-five'),\n(15172, 7459, 'seven thousand four hundred fifty-nine'),\n(15173, 98695, 'ninety-eight thousand six hundred ninety-five'),\n(15174, 74727, 'seventy-four thousand seven hundred twenty-seven'),\n(15175, 32950, 'thirty-two thousand nine hundred fifty'),\n(15176, 73806, 'seventy-three thousand eight hundred six'),\n(15177, 72083, 'seventy-two thousand eighty-three'),\n(15178, 70027, 'seventy thousand twenty-seven'),\n(15179, 30314, 'thirty thousand three hundred fourteen'),\n(15180, 32293, 'thirty-two thousand two hundred ninety-three'),\n(15181, 82222, 'eighty-two thousand two hundred twenty-two'),\n(15182, 89715, 'eighty-nine thousand seven hundred fifteen'),\n(15183, 27840, 'twenty-seven thousand eight hundred forty'),\n(15184, 54016, 'fifty-four thousand sixteen'),\n(15185, 46942, 'forty-six thousand nine hundred forty-two'),\n(15186, 47854, 'forty-seven thousand eight hundred fifty-four'),\n(15187, 29209, 'twenty-nine thousand two hundred nine'),\n(15188, 82926, 'eighty-two thousand nine hundred twenty-six'),\n(15189, 89013, 'eighty-nine thousand thirteen'),\n(15190, 90638, 'ninety thousand six hundred thirty-eight'),\n(15191, 44679, 'forty-four thousand six hundred seventy-nine'),\n(15192, 17617, 'seventeen thousand six hundred seventeen'),\n(15193, 85687, 'eighty-five thousand six hundred eighty-seven'),\n(15194, 75840, 'seventy-five thousand eight hundred forty'),\n(15195, 27339, 'twenty-seven thousand three hundred thirty-nine'),\n(15196, 31892, 'thirty-one thousand eight hundred ninety-two'),\n(15197, 14552, 'fourteen thousand five hundred fifty-two'),\n(15198, 98296, 'ninety-eight thousand two hundred ninety-six'),\n(15199, 14840, 'fourteen thousand eight hundred forty'),\n(15200, 3633, 'three thousand six hundred thirty-three'),\n(15201, 88171, 'eighty-eight thousand one hundred seventy-one'),\n(15202, 5315, 'five thousand three hundred fifteen'),\n(15203, 52524, 'fifty-two thousand five hundred twenty-four'),\n(15204, 48973, 'forty-eight thousand nine hundred seventy-three'),\n(15205, 53065, 'fifty-three thousand sixty-five'),\n(15206, 20083, 'twenty thousand eighty-three'),\n(15207, 18069, 'eighteen thousand sixty-nine'),\n(15208, 46100, 'forty-six thousand one hundred'),\n(15209, 4467, 'four thousand four hundred sixty-seven'),\n(15210, 39098, 'thirty-nine thousand ninety-eight'),\n(15211, 32186, 'thirty-two thousand one hundred eighty-six'),\n(15212, 73930, 'seventy-three thousand nine hundred thirty'),\n(15213, 89006, 'eighty-nine thousand six'),\n(15214, 21675, 'twenty-one thousand six hundred seventy-five'),\n(15215, 13837, 'thirteen thousand eight hundred thirty-seven'),\n(15216, 30740, 'thirty thousand seven hundred forty'),\n(15217, 53517, 'fifty-three thousand five hundred seventeen'),\n(15218, 10831, 'ten thousand eight hundred thirty-one'),\n(15219, 85924, 'eighty-five thousand nine hundred twenty-four'),\n(15220, 1226, 'one thousand two hundred twenty-six'),\n(15221, 75393, 'seventy-five thousand three hundred ninety-three'),\n(15222, 27748, 'twenty-seven thousand seven hundred forty-eight'),\n(15223, 61966, 'sixty-one thousand nine hundred sixty-six'),\n(15224, 27482, 'twenty-seven thousand four hundred eighty-two'),\n(15225, 34456, 'thirty-four thousand four hundred fifty-six'),\n(15226, 55243, 'fifty-five thousand two hundred forty-three'),\n(15227, 81705, 'eighty-one thousand seven hundred five'),\n(15228, 72449, 'seventy-two thousand four hundred forty-nine'),\n(15229, 25870, 'twenty-five thousand eight hundred seventy'),\n(15230, 56666, 'fifty-six thousand six hundred sixty-six'),\n(15231, 99702, 'ninety-nine thousand seven hundred two'),\n(15232, 38426, 'thirty-eight thousand four hundred twenty-six'),\n(15233, 3947, 'three thousand nine hundred forty-seven'),\n(15234, 64428, 'sixty-four thousand four hundred twenty-eight'),\n(15235, 75604, 'seventy-five thousand six hundred four'),\n(15236, 69304, 'sixty-nine thousand three hundred four'),\n(15237, 47275, 'forty-seven thousand two hundred seventy-five'),\n(15238, 189, 'one hundred eighty-nine'),\n(15239, 37105, 'thirty-seven thousand one hundred five'),\n(15240, 39332, 'thirty-nine thousand three hundred thirty-two'),\n(15241, 94420, 'ninety-four thousand four hundred twenty'),\n(15242, 88422, 'eighty-eight thousand four hundred twenty-two'),\n(15243, 32271, 'thirty-two thousand two hundred seventy-one'),\n(15244, 6911, 'six thousand nine hundred eleven'),\n(15245, 2246, 'two thousand two hundred forty-six'),\n(15246, 57039, 'fifty-seven thousand thirty-nine'),\n(15247, 83255, 'eighty-three thousand two hundred fifty-five'),\n(15248, 45845, 'forty-five thousand eight hundred forty-five'),\n(15249, 45221, 'forty-five thousand two hundred twenty-one'),\n(15250, 61423, 'sixty-one thousand four hundred twenty-three'),\n(15251, 32602, 'thirty-two thousand six hundred two'),\n(15252, 56957, 'fifty-six thousand nine hundred fifty-seven'),\n(15253, 60214, 'sixty thousand two hundred fourteen'),\n(15254, 41559, 'forty-one thousand five hundred fifty-nine'),\n(15255, 13004, 'thirteen thousand four'),\n(15256, 21032, 'twenty-one thousand thirty-two'),\n(15257, 63630, 'sixty-three thousand six hundred thirty'),\n(15258, 54179, 'fifty-four thousand one hundred seventy-nine'),\n(15259, 99707, 'ninety-nine thousand seven hundred seven'),\n(15260, 65951, 'sixty-five thousand nine hundred fifty-one'),\n(15261, 76709, 'seventy-six thousand seven hundred nine'),\n(15262, 95585, 'ninety-five thousand five hundred eighty-five'),\n(15263, 85603, 'eighty-five thousand six hundred three'),\n(15264, 28235, 'twenty-eight thousand two hundred thirty-five'),\n(15265, 61653, 'sixty-one thousand six hundred fifty-three'),\n(15266, 95054, 'ninety-five thousand fifty-four'),\n(15267, 71257, 'seventy-one thousand two hundred fifty-seven'),\n(15268, 56321, 'fifty-six thousand three hundred twenty-one'),\n(15269, 29625, 'twenty-nine thousand six hundred twenty-five'),\n(15270, 30291, 'thirty thousand two hundred ninety-one'),\n(15271, 33091, 'thirty-three thousand ninety-one'),\n(15272, 91296, 'ninety-one thousand two hundred ninety-six'),\n(15273, 52439, 'fifty-two thousand four hundred thirty-nine'),\n(15274, 94504, 'ninety-four thousand five hundred four'),\n(15275, 56825, 'fifty-six thousand eight hundred twenty-five'),\n(15276, 85384, 'eighty-five thousand three hundred eighty-four'),\n(15277, 831, 'eight hundred thirty-one'),\n(15278, 95252, 'ninety-five thousand two hundred fifty-two'),\n(15279, 38926, 'thirty-eight thousand nine hundred twenty-six'),\n(15280, 86963, 'eighty-six thousand nine hundred sixty-three'),\n(15281, 56364, 'fifty-six thousand three hundred sixty-four'),\n(15282, 62775, 'sixty-two thousand seven hundred seventy-five'),\n(15283, 99223, 'ninety-nine thousand two hundred twenty-three'),\n(15284, 88778, 'eighty-eight thousand seven hundred seventy-eight'),\n(15285, 20115, 'twenty thousand one hundred fifteen'),\n(15286, 51919, 'fifty-one thousand nine hundred nineteen'),\n(15287, 98400, 'ninety-eight thousand four hundred'),\n(15288, 44049, 'forty-four thousand forty-nine'),\n(15289, 59049, 'fifty-nine thousand forty-nine'),\n(15290, 38583, 'thirty-eight thousand five hundred eighty-three'),\n(15291, 96495, 'ninety-six thousand four hundred ninety-five'),\n(15292, 83335, 'eighty-three thousand three hundred thirty-five'),\n(15293, 78994, 'seventy-eight thousand nine hundred ninety-four'),\n(15294, 24197, 'twenty-four thousand one hundred ninety-seven'),\n(15295, 56202, 'fifty-six thousand two hundred two'),\n(15296, 25225, 'twenty-five thousand two hundred twenty-five'),\n(15297, 29783, 'twenty-nine thousand seven hundred eighty-three'),\n(15298, 41034, 'forty-one thousand thirty-four'),\n(15299, 97372, 'ninety-seven thousand three hundred seventy-two'),\n(15300, 95756, 'ninety-five thousand seven hundred fifty-six'),\n(15301, 40816, 'forty thousand eight hundred sixteen'),\n(15302, 1667, 'one thousand six hundred sixty-seven'),\n(15303, 40673, 'forty thousand six hundred seventy-three'),\n(15304, 73939, 'seventy-three thousand nine hundred thirty-nine'),\n(15305, 71785, 'seventy-one thousand seven hundred eighty-five'),\n(15306, 64919, 'sixty-four thousand nine hundred nineteen'),\n(15307, 41301, 'forty-one thousand three hundred one'),\n(15308, 95111, 'ninety-five thousand one hundred eleven'),\n(15309, 6169, 'six thousand one hundred sixty-nine'),\n(15310, 13050, 'thirteen thousand fifty'),\n(15311, 6444, 'six thousand four hundred forty-four'),\n(15312, 1395, 'one thousand three hundred ninety-five'),\n(15313, 31331, 'thirty-one thousand three hundred thirty-one'),\n(15314, 92688, 'ninety-two thousand six hundred eighty-eight'),\n(15315, 95693, 'ninety-five thousand six hundred ninety-three'),\n(15316, 56211, 'fifty-six thousand two hundred eleven'),\n(15317, 34657, 'thirty-four thousand six hundred fifty-seven'),\n(15318, 26844, 'twenty-six thousand eight hundred forty-four'),\n(15319, 66581, 'sixty-six thousand five hundred eighty-one'),\n(15320, 40256, 'forty thousand two hundred fifty-six'),\n(15321, 81516, 'eighty-one thousand five hundred sixteen'),\n(15322, 51781, 'fifty-one thousand seven hundred eighty-one'),\n(15323, 16434, 'sixteen thousand four hundred thirty-four'),\n(15324, 10127, 'ten thousand one hundred twenty-seven'),\n(15325, 41196, 'forty-one thousand one hundred ninety-six'),\n(15326, 64562, 'sixty-four thousand five hundred sixty-two'),\n(15327, 19383, 'nineteen thousand three hundred eighty-three'),\n(15328, 94087, 'ninety-four thousand eighty-seven'),\n(15329, 51878, 'fifty-one thousand eight hundred seventy-eight'),\n(15330, 48812, 'forty-eight thousand eight hundred twelve'),\n(15331, 94582, 'ninety-four thousand five hundred eighty-two'),\n(15332, 20214, 'twenty thousand two hundred fourteen'),\n(15333, 18830, 'eighteen thousand eight hundred thirty'),\n(15334, 64582, 'sixty-four thousand five hundred eighty-two'),\n(15335, 52008, 'fifty-two thousand eight'),\n(15336, 21911, 'twenty-one thousand nine hundred eleven'),\n(15337, 76122, 'seventy-six thousand one hundred twenty-two'),\n(15338, 97286, 'ninety-seven thousand two hundred eighty-six'),\n(15339, 74177, 'seventy-four thousand one hundred seventy-seven'),\n(15340, 56231, 'fifty-six thousand two hundred thirty-one'),\n(15341, 51242, 'fifty-one thousand two hundred forty-two'),\n(15342, 64052, 'sixty-four thousand fifty-two'),\n(15343, 36548, 'thirty-six thousand five hundred forty-eight'),\n(15344, 12798, 'twelve thousand seven hundred ninety-eight'),\n(15345, 18539, 'eighteen thousand five hundred thirty-nine'),\n(15346, 89895, 'eighty-nine thousand eight hundred ninety-five'),\n(15347, 64855, 'sixty-four thousand eight hundred fifty-five'),\n(15348, 66380, 'sixty-six thousand three hundred eighty'),\n(15349, 53006, 'fifty-three thousand six'),\n(15350, 5062, 'five thousand sixty-two'),\n(15351, 11178, 'eleven thousand one hundred seventy-eight'),\n(15352, 72292, 'seventy-two thousand two hundred ninety-two'),\n(15353, 48624, 'forty-eight thousand six hundred twenty-four'),\n(15354, 48421, 'forty-eight thousand four hundred twenty-one'),\n(15355, 91356, 'ninety-one thousand three hundred fifty-six'),\n(15356, 5997, 'five thousand nine hundred ninety-seven'),\n(15357, 49684, 'forty-nine thousand six hundred eighty-four'),\n(15358, 8597, 'eight thousand five hundred ninety-seven'),\n(15359, 87449, 'eighty-seven thousand four hundred forty-nine'),\n(15360, 63129, 'sixty-three thousand one hundred twenty-nine'),\n(15361, 9320, 'nine thousand three hundred twenty'),\n(15362, 37962, 'thirty-seven thousand nine hundred sixty-two'),\n(15363, 56329, 'fifty-six thousand three hundred twenty-nine'),\n(15364, 99423, 'ninety-nine thousand four hundred twenty-three'),\n(15365, 94529, 'ninety-four thousand five hundred twenty-nine'),\n(15366, 32555, 'thirty-two thousand five hundred fifty-five'),\n(15367, 61818, 'sixty-one thousand eight hundred eighteen'),\n(15368, 79419, 'seventy-nine thousand four hundred nineteen'),\n(15369, 48659, 'forty-eight thousand six hundred fifty-nine'),\n(15370, 6360, 'six thousand three hundred sixty'),\n(15371, 13590, 'thirteen thousand five hundred ninety'),\n(15372, 65950, 'sixty-five thousand nine hundred fifty'),\n(15373, 7124, 'seven thousand one hundred twenty-four'),\n(15374, 30300, 'thirty thousand three hundred'),\n(15375, 44695, 'forty-four thousand six hundred ninety-five'),\n(15376, 51090, 'fifty-one thousand ninety'),\n(15377, 64297, 'sixty-four thousand two hundred ninety-seven'),\n(15378, 75586, 'seventy-five thousand five hundred eighty-six'),\n(15379, 44763, 'forty-four thousand seven hundred sixty-three'),\n(15380, 76894, 'seventy-six thousand eight hundred ninety-four'),\n(15381, 58198, 'fifty-eight thousand one hundred ninety-eight'),\n(15382, 66968, 'sixty-six thousand nine hundred sixty-eight'),\n(15383, 41683, 'forty-one thousand six hundred eighty-three'),\n(15384, 62876, 'sixty-two thousand eight hundred seventy-six'),\n(15385, 88946, 'eighty-eight thousand nine hundred forty-six'),\n(15386, 94781, 'ninety-four thousand seven hundred eighty-one'),\n(15387, 75499, 'seventy-five thousand four hundred ninety-nine'),\n(15388, 9810, 'nine thousand eight hundred ten'),\n(15389, 76002, 'seventy-six thousand two'),\n(15390, 50520, 'fifty thousand five hundred twenty'),\n(15391, 73645, 'seventy-three thousand six hundred forty-five'),\n(15392, 47325, 'forty-seven thousand three hundred twenty-five'),\n(15393, 9843, 'nine thousand eight hundred forty-three'),\n(15394, 94023, 'ninety-four thousand twenty-three'),\n(15395, 67362, 'sixty-seven thousand three hundred sixty-two'),\n(15396, 24942, 'twenty-four thousand nine hundred forty-two'),\n(15397, 32226, 'thirty-two thousand two hundred twenty-six'),\n(15398, 33866, 'thirty-three thousand eight hundred sixty-six'),\n(15399, 51620, 'fifty-one thousand six hundred twenty'),\n(15400, 38992, 'thirty-eight thousand nine hundred ninety-two'),\n(15401, 36468, 'thirty-six thousand four hundred sixty-eight'),\n(15402, 73214, 'seventy-three thousand two hundred fourteen'),\n(15403, 14517, 'fourteen thousand five hundred seventeen'),\n(15404, 59435, 'fifty-nine thousand four hundred thirty-five'),\n(15405, 12805, 'twelve thousand eight hundred five'),\n(15406, 9955, 'nine thousand nine hundred fifty-five'),\n(15407, 82672, 'eighty-two thousand six hundred seventy-two'),\n(15408, 44340, 'forty-four thousand three hundred forty'),\n(15409, 57866, 'fifty-seven thousand eight hundred sixty-six'),\n(15410, 19575, 'nineteen thousand five hundred seventy-five'),\n(15411, 47928, 'forty-seven thousand nine hundred twenty-eight'),\n(15412, 90723, 'ninety thousand seven hundred twenty-three'),\n(15413, 99434, 'ninety-nine thousand four hundred thirty-four'),\n(15414, 1969, 'one thousand nine hundred sixty-nine'),\n(15415, 82788, 'eighty-two thousand seven hundred eighty-eight'),\n(15416, 5265, 'five thousand two hundred sixty-five'),\n(15417, 47184, 'forty-seven thousand one hundred eighty-four'),\n(15418, 14677, 'fourteen thousand six hundred seventy-seven'),\n(15419, 76920, 'seventy-six thousand nine hundred twenty'),\n(15420, 22209, 'twenty-two thousand two hundred nine'),\n(15421, 58818, 'fifty-eight thousand eight hundred eighteen'),\n(15422, 70708, 'seventy thousand seven hundred eight'),\n(15423, 45378, 'forty-five thousand three hundred seventy-eight'),\n(15424, 42092, 'forty-two thousand ninety-two'),\n(15425, 6883, 'six thousand eight hundred eighty-three'),\n(15426, 20513, 'twenty thousand five hundred thirteen'),\n(15427, 65932, 'sixty-five thousand nine hundred thirty-two'),\n(15428, 73963, 'seventy-three thousand nine hundred sixty-three'),\n(15429, 18038, 'eighteen thousand thirty-eight'),\n(15430, 74803, 'seventy-four thousand eight hundred three'),\n(15431, 31482, 'thirty-one thousand four hundred eighty-two'),\n(15432, 81695, 'eighty-one thousand six hundred ninety-five'),\n(15433, 68728, 'sixty-eight thousand seven hundred twenty-eight'),\n(15434, 67661, 'sixty-seven thousand six hundred sixty-one'),\n(15435, 54724, 'fifty-four thousand seven hundred twenty-four'),\n(15436, 5391, 'five thousand three hundred ninety-one'),\n(15437, 44146, 'forty-four thousand one hundred forty-six'),\n(15438, 90343, 'ninety thousand three hundred forty-three'),\n(15439, 95208, 'ninety-five thousand two hundred eight'),\n(15440, 64272, 'sixty-four thousand two hundred seventy-two'),\n(15441, 99068, 'ninety-nine thousand sixty-eight'),\n(15442, 31652, 'thirty-one thousand six hundred fifty-two'),\n(15443, 40310, 'forty thousand three hundred ten'),\n(15444, 96665, 'ninety-six thousand six hundred sixty-five'),\n(15445, 60894, 'sixty thousand eight hundred ninety-four'),\n(15446, 54553, 'fifty-four thousand five hundred fifty-three'),\n(15447, 19617, 'nineteen thousand six hundred seventeen'),\n(15448, 27605, 'twenty-seven thousand six hundred five'),\n(15449, 57490, 'fifty-seven thousand four hundred ninety'),\n(15450, 81444, 'eighty-one thousand four hundred forty-four'),\n(15451, 30833, 'thirty thousand eight hundred thirty-three'),\n(15452, 76711, 'seventy-six thousand seven hundred eleven'),\n(15453, 9248, 'nine thousand two hundred forty-eight'),\n(15454, 37547, 'thirty-seven thousand five hundred forty-seven'),\n(15455, 2020, 'two thousand twenty'),\n(15456, 43137, 'forty-three thousand one hundred thirty-seven'),\n(15457, 45929, 'forty-five thousand nine hundred twenty-nine'),\n(15458, 67445, 'sixty-seven thousand four hundred forty-five'),\n(15459, 3117, 'three thousand one hundred seventeen'),\n(15460, 91073, 'ninety-one thousand seventy-three'),\n(15461, 93809, 'ninety-three thousand eight hundred nine'),\n(15462, 60740, 'sixty thousand seven hundred forty'),\n(15463, 84024, 'eighty-four thousand twenty-four'),\n(15464, 25320, 'twenty-five thousand three hundred twenty'),\n(15465, 7755, 'seven thousand seven hundred fifty-five'),\n(15466, 55645, 'fifty-five thousand six hundred forty-five'),\n(15467, 12025, 'twelve thousand twenty-five'),\n(15468, 88285, 'eighty-eight thousand two hundred eighty-five'),\n(15469, 68818, 'sixty-eight thousand eight hundred eighteen'),\n(15470, 74935, 'seventy-four thousand nine hundred thirty-five'),\n(15471, 18407, 'eighteen thousand four hundred seven'),\n(15472, 72695, 'seventy-two thousand six hundred ninety-five'),\n(15473, 95558, 'ninety-five thousand five hundred fifty-eight'),\n(15474, 95336, 'ninety-five thousand three hundred thirty-six'),\n(15475, 81969, 'eighty-one thousand nine hundred sixty-nine'),\n(15476, 70686, 'seventy thousand six hundred eighty-six'),\n(15477, 71231, 'seventy-one thousand two hundred thirty-one'),\n(15478, 24524, 'twenty-four thousand five hundred twenty-four'),\n(15479, 94822, 'ninety-four thousand eight hundred twenty-two'),\n(15480, 19421, 'nineteen thousand four hundred twenty-one'),\n(15481, 30813, 'thirty thousand eight hundred thirteen'),\n(15482, 93902, 'ninety-three thousand nine hundred two'),\n(15483, 94260, 'ninety-four thousand two hundred sixty'),\n(15484, 60975, 'sixty thousand nine hundred seventy-five'),\n(15485, 72872, 'seventy-two thousand eight hundred seventy-two'),\n(15486, 65741, 'sixty-five thousand seven hundred forty-one'),\n(15487, 82101, 'eighty-two thousand one hundred one'),\n(15488, 14434, 'fourteen thousand four hundred thirty-four'),\n(15489, 40356, 'forty thousand three hundred fifty-six'),\n(15490, 17390, 'seventeen thousand three hundred ninety'),\n(15491, 43054, 'forty-three thousand fifty-four'),\n(15492, 30814, 'thirty thousand eight hundred fourteen'),\n(15493, 78776, 'seventy-eight thousand seven hundred seventy-six'),\n(15494, 3878, 'three thousand eight hundred seventy-eight'),\n(15495, 84175, 'eighty-four thousand one hundred seventy-five'),\n(15496, 2918, 'two thousand nine hundred eighteen'),\n(15497, 77896, 'seventy-seven thousand eight hundred ninety-six'),\n(15498, 78047, 'seventy-eight thousand forty-seven'),\n(15499, 91207, 'ninety-one thousand two hundred seven'),\n(15500, 32139, 'thirty-two thousand one hundred thirty-nine'),\n(15501, 350, 'three hundred fifty'),\n(15502, 9474, 'nine thousand four hundred seventy-four'),\n(15503, 26932, 'twenty-six thousand nine hundred thirty-two'),\n(15504, 32224, 'thirty-two thousand two hundred twenty-four'),\n(15505, 27952, 'twenty-seven thousand nine hundred fifty-two'),\n(15506, 56252, 'fifty-six thousand two hundred fifty-two'),\n(15507, 31413, 'thirty-one thousand four hundred thirteen'),\n(15508, 51205, 'fifty-one thousand two hundred five'),\n(15509, 44065, 'forty-four thousand sixty-five'),\n(15510, 1268, 'one thousand two hundred sixty-eight'),\n(15511, 46053, 'forty-six thousand fifty-three'),\n(15512, 26724, 'twenty-six thousand seven hundred twenty-four'),\n(15513, 3986, 'three thousand nine hundred eighty-six'),\n(15514, 31623, 'thirty-one thousand six hundred twenty-three'),\n(15515, 47262, 'forty-seven thousand two hundred sixty-two'),\n(15516, 32036, 'thirty-two thousand thirty-six'),\n(15517, 84270, 'eighty-four thousand two hundred seventy'),\n(15518, 57826, 'fifty-seven thousand eight hundred twenty-six'),\n(15519, 69694, 'sixty-nine thousand six hundred ninety-four'),\n(15520, 86780, 'eighty-six thousand seven hundred eighty'),\n(15521, 29766, 'twenty-nine thousand seven hundred sixty-six'),\n(15522, 70457, 'seventy thousand four hundred fifty-seven'),\n(15523, 12357, 'twelve thousand three hundred fifty-seven'),\n(15524, 6569, 'six thousand five hundred sixty-nine'),\n(15525, 57650, 'fifty-seven thousand six hundred fifty'),\n(15526, 42102, 'forty-two thousand one hundred two'),\n(15527, 491, 'four hundred ninety-one'),\n(15528, 8547, 'eight thousand five hundred forty-seven'),\n(15529, 3720, 'three thousand seven hundred twenty'),\n(15530, 20799, 'twenty thousand seven hundred ninety-nine'),\n(15531, 48268, 'forty-eight thousand two hundred sixty-eight'),\n(15532, 72420, 'seventy-two thousand four hundred twenty'),\n(15533, 44593, 'forty-four thousand five hundred ninety-three'),\n(15534, 87184, 'eighty-seven thousand one hundred eighty-four'),\n(15535, 37084, 'thirty-seven thousand eighty-four'),\n(15536, 98810, 'ninety-eight thousand eight hundred ten'),\n(15537, 71066, 'seventy-one thousand sixty-six'),\n(15538, 92659, 'ninety-two thousand six hundred fifty-nine'),\n(15539, 44022, 'forty-four thousand twenty-two'),\n(15540, 45634, 'forty-five thousand six hundred thirty-four'),\n(15541, 57085, 'fifty-seven thousand eighty-five'),\n(15542, 73174, 'seventy-three thousand one hundred seventy-four'),\n(15543, 1105, 'one thousand one hundred five'),\n(15544, 88577, 'eighty-eight thousand five hundred seventy-seven'),\n(15545, 48066, 'forty-eight thousand sixty-six'),\n(15546, 4841, 'four thousand eight hundred forty-one'),\n(15547, 76625, 'seventy-six thousand six hundred twenty-five'),\n(15548, 40559, 'forty thousand five hundred fifty-nine'),\n(15549, 21395, 'twenty-one thousand three hundred ninety-five'),\n(15550, 6657, 'six thousand six hundred fifty-seven'),\n(15551, 27024, 'twenty-seven thousand twenty-four'),\n(15552, 15913, 'fifteen thousand nine hundred thirteen'),\n(15553, 63823, 'sixty-three thousand eight hundred twenty-three'),\n(15554, 68258, 'sixty-eight thousand two hundred fifty-eight'),\n(15555, 40155, 'forty thousand one hundred fifty-five'),\n(15556, 75624, 'seventy-five thousand six hundred twenty-four'),\n(15557, 74218, 'seventy-four thousand two hundred eighteen'),\n(15558, 57172, 'fifty-seven thousand one hundred seventy-two'),\n(15559, 35342, 'thirty-five thousand three hundred forty-two'),\n(15560, 95966, 'ninety-five thousand nine hundred sixty-six'),\n(15561, 1465, 'one thousand four hundred sixty-five'),\n(15562, 71536, 'seventy-one thousand five hundred thirty-six'),\n(15563, 84352, 'eighty-four thousand three hundred fifty-two'),\n(15564, 31812, 'thirty-one thousand eight hundred twelve'),\n(15565, 23847, 'twenty-three thousand eight hundred forty-seven'),\n(15566, 21254, 'twenty-one thousand two hundred fifty-four'),\n(15567, 85969, 'eighty-five thousand nine hundred sixty-nine'),\n(15568, 98266, 'ninety-eight thousand two hundred sixty-six'),\n(15569, 22063, 'twenty-two thousand sixty-three'),\n(15570, 35764, 'thirty-five thousand seven hundred sixty-four'),\n(15571, 4904, 'four thousand nine hundred four'),\n(15572, 19127, 'nineteen thousand one hundred twenty-seven'),\n(15573, 32867, 'thirty-two thousand eight hundred sixty-seven'),\n(15574, 88541, 'eighty-eight thousand five hundred forty-one'),\n(15575, 87898, 'eighty-seven thousand eight hundred ninety-eight'),\n(15576, 98948, 'ninety-eight thousand nine hundred forty-eight'),\n(15577, 93534, 'ninety-three thousand five hundred thirty-four'),\n(15578, 92973, 'ninety-two thousand nine hundred seventy-three'),\n(15579, 78496, 'seventy-eight thousand four hundred ninety-six'),\n(15580, 66900, 'sixty-six thousand nine hundred'),\n(15581, 97447, 'ninety-seven thousand four hundred forty-seven'),\n(15582, 89535, 'eighty-nine thousand five hundred thirty-five'),\n(15583, 70522, 'seventy thousand five hundred twenty-two'),\n(15584, 14458, 'fourteen thousand four hundred fifty-eight'),\n(15585, 18063, 'eighteen thousand sixty-three'),\n(15586, 80696, 'eighty thousand six hundred ninety-six'),\n(15587, 95327, 'ninety-five thousand three hundred twenty-seven'),\n(15588, 50265, 'fifty thousand two hundred sixty-five'),\n(15589, 73877, 'seventy-three thousand eight hundred seventy-seven'),\n(15590, 84161, 'eighty-four thousand one hundred sixty-one'),\n(15591, 44658, 'forty-four thousand six hundred fifty-eight'),\n(15592, 42609, 'forty-two thousand six hundred nine'),\n(15593, 84581, 'eighty-four thousand five hundred eighty-one'),\n(15594, 66835, 'sixty-six thousand eight hundred thirty-five'),\n(15595, 61856, 'sixty-one thousand eight hundred fifty-six'),\n(15596, 34083, 'thirty-four thousand eighty-three'),\n(15597, 69322, 'sixty-nine thousand three hundred twenty-two'),\n(15598, 66222, 'sixty-six thousand two hundred twenty-two'),\n(15599, 23245, 'twenty-three thousand two hundred forty-five'),\n(15600, 44352, 'forty-four thousand three hundred fifty-two'),\n(15601, 85721, 'eighty-five thousand seven hundred twenty-one'),\n(15602, 21126, 'twenty-one thousand one hundred twenty-six'),\n(15603, 21775, 'twenty-one thousand seven hundred seventy-five'),\n(15604, 69027, 'sixty-nine thousand twenty-seven'),\n(15605, 92896, 'ninety-two thousand eight hundred ninety-six'),\n(15606, 6056, 'six thousand fifty-six'),\n(15607, 21216, 'twenty-one thousand two hundred sixteen'),\n(15608, 33335, 'thirty-three thousand three hundred thirty-five'),\n(15609, 46550, 'forty-six thousand five hundred fifty'),\n(15610, 33635, 'thirty-three thousand six hundred thirty-five'),\n(15611, 73447, 'seventy-three thousand four hundred forty-seven'),\n(15612, 42517, 'forty-two thousand five hundred seventeen'),\n(15613, 45154, 'forty-five thousand one hundred fifty-four'),\n(15614, 87054, 'eighty-seven thousand fifty-four'),\n(15615, 95552, 'ninety-five thousand five hundred fifty-two'),\n(15616, 42509, 'forty-two thousand five hundred nine'),\n(15617, 53218, 'fifty-three thousand two hundred eighteen'),\n(15618, 28067, 'twenty-eight thousand sixty-seven'),\n(15619, 4553, 'four thousand five hundred fifty-three'),\n(15620, 93782, 'ninety-three thousand seven hundred eighty-two'),\n(15621, 11969, 'eleven thousand nine hundred sixty-nine'),\n(15622, 83594, 'eighty-three thousand five hundred ninety-four'),\n(15623, 59747, 'fifty-nine thousand seven hundred forty-seven'),\n(15624, 53397, 'fifty-three thousand three hundred ninety-seven'),\n(15625, 26971, 'twenty-six thousand nine hundred seventy-one'),\n(15626, 11884, 'eleven thousand eight hundred eighty-four'),\n(15627, 30798, 'thirty thousand seven hundred ninety-eight'),\n(15628, 20639, 'twenty thousand six hundred thirty-nine'),\n(15629, 48773, 'forty-eight thousand seven hundred seventy-three'),\n(15630, 36322, 'thirty-six thousand three hundred twenty-two'),\n(15631, 85659, 'eighty-five thousand six hundred fifty-nine'),\n(15632, 60447, 'sixty thousand four hundred forty-seven'),\n(15633, 62408, 'sixty-two thousand four hundred eight'),\n(15634, 89423, 'eighty-nine thousand four hundred twenty-three'),\n(15635, 4500, 'four thousand five hundred'),\n(15636, 10906, 'ten thousand nine hundred six'),\n(15637, 43008, 'forty-three thousand eight'),\n(15638, 538, 'five hundred thirty-eight'),\n(15639, 74504, 'seventy-four thousand five hundred four'),\n(15640, 14763, 'fourteen thousand seven hundred sixty-three'),\n(15641, 71382, 'seventy-one thousand three hundred eighty-two'),\n(15642, 3321, 'three thousand three hundred twenty-one'),\n(15643, 96983, 'ninety-six thousand nine hundred eighty-three'),\n(15644, 6240, 'six thousand two hundred forty'),\n(15645, 44308, 'forty-four thousand three hundred eight'),\n(15646, 31682, 'thirty-one thousand six hundred eighty-two'),\n(15647, 49152, 'forty-nine thousand one hundred fifty-two'),\n(15648, 42366, 'forty-two thousand three hundred sixty-six'),\n(15649, 33822, 'thirty-three thousand eight hundred twenty-two'),\n(15650, 16229, 'sixteen thousand two hundred twenty-nine'),\n(15651, 16421, 'sixteen thousand four hundred twenty-one'),\n(15652, 64615, 'sixty-four thousand six hundred fifteen'),\n(15653, 79938, 'seventy-nine thousand nine hundred thirty-eight'),\n(15654, 83185, 'eighty-three thousand one hundred eighty-five'),\n(15655, 17177, 'seventeen thousand one hundred seventy-seven'),\n(15656, 12554, 'twelve thousand five hundred fifty-four'),\n(15657, 59341, 'fifty-nine thousand three hundred forty-one'),\n(15658, 70773, 'seventy thousand seven hundred seventy-three'),\n(15659, 89818, 'eighty-nine thousand eight hundred eighteen'),\n(15660, 84378, 'eighty-four thousand three hundred seventy-eight'),\n(15661, 59971, 'fifty-nine thousand nine hundred seventy-one'),\n(15662, 91733, 'ninety-one thousand seven hundred thirty-three'),\n(15663, 75806, 'seventy-five thousand eight hundred six'),\n(15664, 43785, 'forty-three thousand seven hundred eighty-five'),\n(15665, 43764, 'forty-three thousand seven hundred sixty-four'),\n(15666, 57761, 'fifty-seven thousand seven hundred sixty-one'),\n(15667, 85252, 'eighty-five thousand two hundred fifty-two'),\n(15668, 19643, 'nineteen thousand six hundred forty-three'),\n(15669, 81796, 'eighty-one thousand seven hundred ninety-six'),\n(15670, 94310, 'ninety-four thousand three hundred ten'),\n(15671, 11687, 'eleven thousand six hundred eighty-seven'),\n(15672, 78338, 'seventy-eight thousand three hundred thirty-eight'),\n(15673, 97652, 'ninety-seven thousand six hundred fifty-two'),\n(15674, 75142, 'seventy-five thousand one hundred forty-two'),\n(15675, 54356, 'fifty-four thousand three hundred fifty-six'),\n(15676, 61108, 'sixty-one thousand one hundred eight'),\n(15677, 40225, 'forty thousand two hundred twenty-five'),\n(15678, 67635, 'sixty-seven thousand six hundred thirty-five'),\n(15679, 36218, 'thirty-six thousand two hundred eighteen'),\n(15680, 30738, 'thirty thousand seven hundred thirty-eight'),\n(15681, 41289, 'forty-one thousand two hundred eighty-nine'),\n(15682, 72411, 'seventy-two thousand four hundred eleven'),\n(15683, 7192, 'seven thousand one hundred ninety-two'),\n(15684, 69013, 'sixty-nine thousand thirteen'),\n(15685, 80966, 'eighty thousand nine hundred sixty-six'),\n(15686, 42431, 'forty-two thousand four hundred thirty-one'),\n(15687, 42877, 'forty-two thousand eight hundred seventy-seven'),\n(15688, 39315, 'thirty-nine thousand three hundred fifteen'),\n(15689, 34061, 'thirty-four thousand sixty-one'),\n(15690, 13457, 'thirteen thousand four hundred fifty-seven'),\n(15691, 79104, 'seventy-nine thousand one hundred four'),\n(15692, 67954, 'sixty-seven thousand nine hundred fifty-four'),\n(15693, 12001, 'twelve thousand one'),\n(15694, 54317, 'fifty-four thousand three hundred seventeen'),\n(15695, 15385, 'fifteen thousand three hundred eighty-five'),\n(15696, 60047, 'sixty thousand forty-seven'),\n(15697, 61315, 'sixty-one thousand three hundred fifteen'),\n(15698, 45573, 'forty-five thousand five hundred seventy-three'),\n(15699, 24967, 'twenty-four thousand nine hundred sixty-seven'),\n(15700, 67584, 'sixty-seven thousand five hundred eighty-four'),\n(15701, 10226, 'ten thousand two hundred twenty-six'),\n(15702, 95759, 'ninety-five thousand seven hundred fifty-nine'),\n(15703, 91262, 'ninety-one thousand two hundred sixty-two'),\n(15704, 50559, 'fifty thousand five hundred fifty-nine'),\n(15705, 97383, 'ninety-seven thousand three hundred eighty-three'),\n(15706, 56746, 'fifty-six thousand seven hundred forty-six'),\n(15707, 20422, 'twenty thousand four hundred twenty-two'),\n(15708, 38250, 'thirty-eight thousand two hundred fifty'),\n(15709, 92201, 'ninety-two thousand two hundred one'),\n(15710, 68104, 'sixty-eight thousand one hundred four'),\n(15711, 28795, 'twenty-eight thousand seven hundred ninety-five'),\n(15712, 87416, 'eighty-seven thousand four hundred sixteen'),\n(15713, 20602, 'twenty thousand six hundred two'),\n(15714, 13791, 'thirteen thousand seven hundred ninety-one'),\n(15715, 79861, 'seventy-nine thousand eight hundred sixty-one'),\n(15716, 20005, 'twenty thousand five'),\n(15717, 69614, 'sixty-nine thousand six hundred fourteen'),\n(15718, 25071, 'twenty-five thousand seventy-one'),\n(15719, 62503, 'sixty-two thousand five hundred three'),\n(15720, 69073, 'sixty-nine thousand seventy-three'),\n(15721, 78212, 'seventy-eight thousand two hundred twelve'),\n(15722, 97084, 'ninety-seven thousand eighty-four'),\n(15723, 21195, 'twenty-one thousand one hundred ninety-five'),\n(15724, 60542, 'sixty thousand five hundred forty-two'),\n(15725, 52533, 'fifty-two thousand five hundred thirty-three'),\n(15726, 82899, 'eighty-two thousand eight hundred ninety-nine'),\n(15727, 68450, 'sixty-eight thousand four hundred fifty'),\n(15728, 19189, 'nineteen thousand one hundred eighty-nine'),\n(15729, 27181, 'twenty-seven thousand one hundred eighty-one'),\n(15730, 40376, 'forty thousand three hundred seventy-six'),\n(15731, 16341, 'sixteen thousand three hundred forty-one'),\n(15732, 92738, 'ninety-two thousand seven hundred thirty-eight'),\n(15733, 53368, 'fifty-three thousand three hundred sixty-eight'),\n(15734, 55383, 'fifty-five thousand three hundred eighty-three'),\n(15735, 21569, 'twenty-one thousand five hundred sixty-nine'),\n(15736, 11134, 'eleven thousand one hundred thirty-four'),\n(15737, 44808, 'forty-four thousand eight hundred eight'),\n(15738, 82905, 'eighty-two thousand nine hundred five'),\n(15739, 80952, 'eighty thousand nine hundred fifty-two'),\n(15740, 1588, 'one thousand five hundred eighty-eight'),\n(15741, 14497, 'fourteen thousand four hundred ninety-seven'),\n(15742, 4170, 'four thousand one hundred seventy'),\n(15743, 35543, 'thirty-five thousand five hundred forty-three'),\n(15744, 61346, 'sixty-one thousand three hundred forty-six'),\n(15745, 5614, 'five thousand six hundred fourteen'),\n(15746, 35975, 'thirty-five thousand nine hundred seventy-five'),\n(15747, 48674, 'forty-eight thousand six hundred seventy-four'),\n(15748, 81427, 'eighty-one thousand four hundred twenty-seven'),\n(15749, 71471, 'seventy-one thousand four hundred seventy-one'),\n(15750, 71200, 'seventy-one thousand two hundred'),\n(15751, 75890, 'seventy-five thousand eight hundred ninety'),\n(15752, 13088, 'thirteen thousand eighty-eight'),\n(15753, 19567, 'nineteen thousand five hundred sixty-seven'),\n(15754, 88286, 'eighty-eight thousand two hundred eighty-six'),\n(15755, 10822, 'ten thousand eight hundred twenty-two'),\n(15756, 73853, 'seventy-three thousand eight hundred fifty-three'),\n(15757, 58448, 'fifty-eight thousand four hundred forty-eight'),\n(15758, 55431, 'fifty-five thousand four hundred thirty-one'),\n(15759, 898, 'eight hundred ninety-eight'),\n(15760, 54258, 'fifty-four thousand two hundred fifty-eight'),\n(15761, 58699, 'fifty-eight thousand six hundred ninety-nine'),\n(15762, 44903, 'forty-four thousand nine hundred three'),\n(15763, 40042, 'forty thousand forty-two'),\n(15764, 4641, 'four thousand six hundred forty-one'),\n(15765, 96301, 'ninety-six thousand three hundred one'),\n(15766, 73044, 'seventy-three thousand forty-four'),\n(15767, 72434, 'seventy-two thousand four hundred thirty-four'),\n(15768, 85941, 'eighty-five thousand nine hundred forty-one'),\n(15769, 14424, 'fourteen thousand four hundred twenty-four'),\n(15770, 81697, 'eighty-one thousand six hundred ninety-seven'),\n(15771, 91811, 'ninety-one thousand eight hundred eleven'),\n(15772, 35268, 'thirty-five thousand two hundred sixty-eight'),\n(15773, 70058, 'seventy thousand fifty-eight'),\n(15774, 36253, 'thirty-six thousand two hundred fifty-three'),\n(15775, 20459, 'twenty thousand four hundred fifty-nine'),\n(15776, 80544, 'eighty thousand five hundred forty-four'),\n(15777, 67655, 'sixty-seven thousand six hundred fifty-five'),\n(15778, 27480, 'twenty-seven thousand four hundred eighty'),\n(15779, 16348, 'sixteen thousand three hundred forty-eight'),\n(15780, 75500, 'seventy-five thousand five hundred'),\n(15781, 21443, 'twenty-one thousand four hundred forty-three'),\n(15782, 40079, 'forty thousand seventy-nine'),\n(15783, 62601, 'sixty-two thousand six hundred one'),\n(15784, 49688, 'forty-nine thousand six hundred eighty-eight'),\n(15785, 74956, 'seventy-four thousand nine hundred fifty-six'),\n(15786, 6530, 'six thousand five hundred thirty'),\n(15787, 65597, 'sixty-five thousand five hundred ninety-seven'),\n(15788, 24680, 'twenty-four thousand six hundred eighty'),\n(15789, 48273, 'forty-eight thousand two hundred seventy-three'),\n(15790, 78826, 'seventy-eight thousand eight hundred twenty-six'),\n(15791, 91324, 'ninety-one thousand three hundred twenty-four'),\n(15792, 73637, 'seventy-three thousand six hundred thirty-seven'),\n(15793, 53471, 'fifty-three thousand four hundred seventy-one'),\n(15794, 70629, 'seventy thousand six hundred twenty-nine'),\n(15795, 9735, 'nine thousand seven hundred thirty-five'),\n(15796, 6108, 'six thousand one hundred eight'),\n(15797, 38855, 'thirty-eight thousand eight hundred fifty-five'),\n(15798, 73926, 'seventy-three thousand nine hundred twenty-six'),\n(15799, 43288, 'forty-three thousand two hundred eighty-eight'),\n(15800, 12859, 'twelve thousand eight hundred fifty-nine'),\n(15801, 27847, 'twenty-seven thousand eight hundred forty-seven'),\n(15802, 2827, 'two thousand eight hundred twenty-seven'),\n(15803, 54025, 'fifty-four thousand twenty-five'),\n(15804, 76576, 'seventy-six thousand five hundred seventy-six'),\n(15805, 72236, 'seventy-two thousand two hundred thirty-six'),\n(15806, 96420, 'ninety-six thousand four hundred twenty'),\n(15807, 6322, 'six thousand three hundred twenty-two'),\n(15808, 73095, 'seventy-three thousand ninety-five'),\n(15809, 72603, 'seventy-two thousand six hundred three'),\n(15810, 20120, 'twenty thousand one hundred twenty'),\n(15811, 92849, 'ninety-two thousand eight hundred forty-nine'),\n(15812, 90127, 'ninety thousand one hundred twenty-seven'),\n(15813, 53449, 'fifty-three thousand four hundred forty-nine'),\n(15814, 57535, 'fifty-seven thousand five hundred thirty-five'),\n(15815, 38151, 'thirty-eight thousand one hundred fifty-one'),\n(15816, 84575, 'eighty-four thousand five hundred seventy-five'),\n(15817, 57975, 'fifty-seven thousand nine hundred seventy-five'),\n(15818, 54378, 'fifty-four thousand three hundred seventy-eight'),\n(15819, 80231, 'eighty thousand two hundred thirty-one'),\n(15820, 74490, 'seventy-four thousand four hundred ninety'),\n(15821, 93000, 'ninety-three thousand'),\n(15822, 53804, 'fifty-three thousand eight hundred four'),\n(15823, 72659, 'seventy-two thousand six hundred fifty-nine'),\n(15824, 82196, 'eighty-two thousand one hundred ninety-six'),\n(15825, 74290, 'seventy-four thousand two hundred ninety'),\n(15826, 81337, 'eighty-one thousand three hundred thirty-seven'),\n(15827, 65291, 'sixty-five thousand two hundred ninety-one'),\n(15828, 20270, 'twenty thousand two hundred seventy'),\n(15829, 50130, 'fifty thousand one hundred thirty'),\n(15830, 56392, 'fifty-six thousand three hundred ninety-two'),\n(15831, 75784, 'seventy-five thousand seven hundred eighty-four'),\n(15832, 57274, 'fifty-seven thousand two hundred seventy-four'),\n(15833, 46715, 'forty-six thousand seven hundred fifteen'),\n(15834, 74839, 'seventy-four thousand eight hundred thirty-nine'),\n(15835, 97753, 'ninety-seven thousand seven hundred fifty-three'),\n(15836, 27198, 'twenty-seven thousand one hundred ninety-eight'),\n(15837, 29151, 'twenty-nine thousand one hundred fifty-one'),\n(15838, 13052, 'thirteen thousand fifty-two'),\n(15839, 54863, 'fifty-four thousand eight hundred sixty-three'),\n(15840, 94909, 'ninety-four thousand nine hundred nine'),\n(15841, 43745, 'forty-three thousand seven hundred forty-five'),\n(15842, 64386, 'sixty-four thousand three hundred eighty-six'),\n(15843, 3084, 'three thousand eighty-four'),\n(15844, 92479, 'ninety-two thousand four hundred seventy-nine'),\n(15845, 35910, 'thirty-five thousand nine hundred ten'),\n(15846, 65149, 'sixty-five thousand one hundred forty-nine'),\n(15847, 24507, 'twenty-four thousand five hundred seven'),\n(15848, 75000, 'seventy-five thousand'),\n(15849, 82539, 'eighty-two thousand five hundred thirty-nine'),\n(15850, 51689, 'fifty-one thousand six hundred eighty-nine'),\n(15851, 89567, 'eighty-nine thousand five hundred sixty-seven'),\n(15852, 73056, 'seventy-three thousand fifty-six'),\n(15853, 71067, 'seventy-one thousand sixty-seven'),\n(15854, 12457, 'twelve thousand four hundred fifty-seven'),\n(15855, 26706, 'twenty-six thousand seven hundred six'),\n(15856, 2912, 'two thousand nine hundred twelve'),\n(15857, 55005, 'fifty-five thousand five'),\n(15858, 37894, 'thirty-seven thousand eight hundred ninety-four'),\n(15859, 39584, 'thirty-nine thousand five hundred eighty-four'),\n(15860, 51846, 'fifty-one thousand eight hundred forty-six'),\n(15861, 81164, 'eighty-one thousand one hundred sixty-four'),\n(15862, 20254, 'twenty thousand two hundred fifty-four'),\n(15863, 1529, 'one thousand five hundred twenty-nine'),\n(15864, 30952, 'thirty thousand nine hundred fifty-two'),\n(15865, 18580, 'eighteen thousand five hundred eighty'),\n(15866, 27203, 'twenty-seven thousand two hundred three'),\n(15867, 29178, 'twenty-nine thousand one hundred seventy-eight'),\n(15868, 2871, 'two thousand eight hundred seventy-one'),\n(15869, 20110, 'twenty thousand one hundred ten'),\n(15870, 59595, 'fifty-nine thousand five hundred ninety-five'),\n(15871, 90346, 'ninety thousand three hundred forty-six'),\n(15872, 49951, 'forty-nine thousand nine hundred fifty-one'),\n(15873, 89218, 'eighty-nine thousand two hundred eighteen'),\n(15874, 46432, 'forty-six thousand four hundred thirty-two'),\n(15875, 83179, 'eighty-three thousand one hundred seventy-nine'),\n(15876, 39442, 'thirty-nine thousand four hundred forty-two'),\n(15877, 56640, 'fifty-six thousand six hundred forty'),\n(15878, 62928, 'sixty-two thousand nine hundred twenty-eight'),\n(15879, 19757, 'nineteen thousand seven hundred fifty-seven'),\n(15880, 21134, 'twenty-one thousand one hundred thirty-four'),\n(15881, 10120, 'ten thousand one hundred twenty'),\n(15882, 86006, 'eighty-six thousand six'),\n(15883, 25262, 'twenty-five thousand two hundred sixty-two'),\n(15884, 99733, 'ninety-nine thousand seven hundred thirty-three'),\n(15885, 42110, 'forty-two thousand one hundred ten'),\n(15886, 33981, 'thirty-three thousand nine hundred eighty-one'),\n(15887, 88952, 'eighty-eight thousand nine hundred fifty-two'),\n(15888, 43788, 'forty-three thousand seven hundred eighty-eight'),\n(15889, 32857, 'thirty-two thousand eight hundred fifty-seven'),\n(15890, 30809, 'thirty thousand eight hundred nine'),\n(15891, 74873, 'seventy-four thousand eight hundred seventy-three'),\n(15892, 39109, 'thirty-nine thousand one hundred nine'),\n(15893, 90617, 'ninety thousand six hundred seventeen'),\n(15894, 22633, 'twenty-two thousand six hundred thirty-three'),\n(15895, 18549, 'eighteen thousand five hundred forty-nine'),\n(15896, 82776, 'eighty-two thousand seven hundred seventy-six'),\n(15897, 4576, 'four thousand five hundred seventy-six'),\n(15898, 31219, 'thirty-one thousand two hundred nineteen'),\n(15899, 9301, 'nine thousand three hundred one'),\n(15900, 28554, 'twenty-eight thousand five hundred fifty-four'),\n(15901, 481, 'four hundred eighty-one'),\n(15902, 29167, 'twenty-nine thousand one hundred sixty-seven'),\n(15903, 11440, 'eleven thousand four hundred forty'),\n(15904, 16451, 'sixteen thousand four hundred fifty-one'),\n(15905, 13885, 'thirteen thousand eight hundred eighty-five'),\n(15906, 91841, 'ninety-one thousand eight hundred forty-one'),\n(15907, 97112, 'ninety-seven thousand one hundred twelve'),\n(15908, 39319, 'thirty-nine thousand three hundred nineteen'),\n(15909, 29294, 'twenty-nine thousand two hundred ninety-four'),\n(15910, 5086, 'five thousand eighty-six'),\n(15911, 9715, 'nine thousand seven hundred fifteen'),\n(15912, 29295, 'twenty-nine thousand two hundred ninety-five'),\n(15913, 29313, 'twenty-nine thousand three hundred thirteen'),\n(15914, 85821, 'eighty-five thousand eight hundred twenty-one'),\n(15915, 9970, 'nine thousand nine hundred seventy'),\n(15916, 94835, 'ninety-four thousand eight hundred thirty-five'),\n(15917, 48286, 'forty-eight thousand two hundred eighty-six'),\n(15918, 47916, 'forty-seven thousand nine hundred sixteen'),\n(15919, 86919, 'eighty-six thousand nine hundred nineteen'),\n(15920, 52691, 'fifty-two thousand six hundred ninety-one'),\n(15921, 18178, 'eighteen thousand one hundred seventy-eight'),\n(15922, 22089, 'twenty-two thousand eighty-nine'),\n(15923, 23263, 'twenty-three thousand two hundred sixty-three'),\n(15924, 76782, 'seventy-six thousand seven hundred eighty-two'),\n(15925, 37280, 'thirty-seven thousand two hundred eighty'),\n(15926, 66211, 'sixty-six thousand two hundred eleven'),\n(15927, 18769, 'eighteen thousand seven hundred sixty-nine'),\n(15928, 52527, 'fifty-two thousand five hundred twenty-seven'),\n(15929, 13964, 'thirteen thousand nine hundred sixty-four'),\n(15930, 77013, 'seventy-seven thousand thirteen'),\n(15931, 87217, 'eighty-seven thousand two hundred seventeen'),\n(15932, 58723, 'fifty-eight thousand seven hundred twenty-three'),\n(15933, 45694, 'forty-five thousand six hundred ninety-four'),\n(15934, 73566, 'seventy-three thousand five hundred sixty-six'),\n(15935, 4799, 'four thousand seven hundred ninety-nine'),\n(15936, 44725, 'forty-four thousand seven hundred twenty-five'),\n(15937, 81732, 'eighty-one thousand seven hundred thirty-two'),\n(15938, 25916, 'twenty-five thousand nine hundred sixteen'),\n(15939, 17399, 'seventeen thousand three hundred ninety-nine'),\n(15940, 10941, 'ten thousand nine hundred forty-one'),\n(15941, 84526, 'eighty-four thousand five hundred twenty-six'),\n(15942, 29237, 'twenty-nine thousand two hundred thirty-seven'),\n(15943, 16483, 'sixteen thousand four hundred eighty-three'),\n(15944, 16545, 'sixteen thousand five hundred forty-five'),\n(15945, 85472, 'eighty-five thousand four hundred seventy-two'),\n(15946, 90402, 'ninety thousand four hundred two'),\n(15947, 69356, 'sixty-nine thousand three hundred fifty-six'),\n(15948, 98401, 'ninety-eight thousand four hundred one'),\n(15949, 36109, 'thirty-six thousand one hundred nine'),\n(15950, 85041, 'eighty-five thousand forty-one'),\n(15951, 22035, 'twenty-two thousand thirty-five'),\n(15952, 54581, 'fifty-four thousand five hundred eighty-one'),\n(15953, 19057, 'nineteen thousand fifty-seven'),\n(15954, 56795, 'fifty-six thousand seven hundred ninety-five'),\n(15955, 95939, 'ninety-five thousand nine hundred thirty-nine'),\n(15956, 2417, 'two thousand four hundred seventeen'),\n(15957, 91270, 'ninety-one thousand two hundred seventy'),\n(15958, 40899, 'forty thousand eight hundred ninety-nine'),\n(15959, 87942, 'eighty-seven thousand nine hundred forty-two'),\n(15960, 75647, 'seventy-five thousand six hundred forty-seven'),\n(15961, 24984, 'twenty-four thousand nine hundred eighty-four'),\n(15962, 85564, 'eighty-five thousand five hundred sixty-four'),\n(15963, 78694, 'seventy-eight thousand six hundred ninety-four'),\n(15964, 21360, 'twenty-one thousand three hundred sixty'),\n(15965, 85288, 'eighty-five thousand two hundred eighty-eight'),\n(15966, 13749, 'thirteen thousand seven hundred forty-nine'),\n(15967, 68260, 'sixty-eight thousand two hundred sixty'),\n(15968, 16359, 'sixteen thousand three hundred fifty-nine'),\n(15969, 36265, 'thirty-six thousand two hundred sixty-five'),\n(15970, 52948, 'fifty-two thousand nine hundred forty-eight'),\n(15971, 50751, 'fifty thousand seven hundred fifty-one'),\n(15972, 48659, 'forty-eight thousand six hundred fifty-nine'),\n(15973, 76413, 'seventy-six thousand four hundred thirteen'),\n(15974, 43925, 'forty-three thousand nine hundred twenty-five'),\n(15975, 35488, 'thirty-five thousand four hundred eighty-eight'),\n(15976, 47650, 'forty-seven thousand six hundred fifty'),\n(15977, 64588, 'sixty-four thousand five hundred eighty-eight'),\n(15978, 37111, 'thirty-seven thousand one hundred eleven'),\n(15979, 1296, 'one thousand two hundred ninety-six'),\n(15980, 71106, 'seventy-one thousand one hundred six'),\n(15981, 1978, 'one thousand nine hundred seventy-eight'),\n(15982, 7573, 'seven thousand five hundred seventy-three'),\n(15983, 48238, 'forty-eight thousand two hundred thirty-eight'),\n(15984, 96048, 'ninety-six thousand forty-eight'),\n(15985, 34429, 'thirty-four thousand four hundred twenty-nine'),\n(15986, 86902, 'eighty-six thousand nine hundred two'),\n(15987, 71973, 'seventy-one thousand nine hundred seventy-three'),\n(15988, 27220, 'twenty-seven thousand two hundred twenty'),\n(15989, 97652, 'ninety-seven thousand six hundred fifty-two'),\n(15990, 40297, 'forty thousand two hundred ninety-seven'),\n(15991, 70229, 'seventy thousand two hundred twenty-nine'),\n(15992, 23440, 'twenty-three thousand four hundred forty'),\n(15993, 74759, 'seventy-four thousand seven hundred fifty-nine'),\n(15994, 77050, 'seventy-seven thousand fifty'),\n(15995, 99274, 'ninety-nine thousand two hundred seventy-four'),\n(15996, 98047, 'ninety-eight thousand forty-seven'),\n(15997, 29133, 'twenty-nine thousand one hundred thirty-three'),\n(15998, 82205, 'eighty-two thousand two hundred five'),\n(15999, 70141, 'seventy thousand one hundred forty-one'),\n(16000, 76251, 'seventy-six thousand two hundred fifty-one'),\n(16001, 84170, 'eighty-four thousand one hundred seventy'),\n(16002, 91043, 'ninety-one thousand forty-three'),\n(16003, 87672, 'eighty-seven thousand six hundred seventy-two'),\n(16004, 74782, 'seventy-four thousand seven hundred eighty-two'),\n(16005, 58608, 'fifty-eight thousand six hundred eight'),\n(16006, 96816, 'ninety-six thousand eight hundred sixteen'),\n(16007, 28584, 'twenty-eight thousand five hundred eighty-four'),\n(16008, 56670, 'fifty-six thousand six hundred seventy'),\n(16009, 7630, 'seven thousand six hundred thirty'),\n(16010, 94290, 'ninety-four thousand two hundred ninety'),\n(16011, 12913, 'twelve thousand nine hundred thirteen'),\n(16012, 94587, 'ninety-four thousand five hundred eighty-seven'),\n(16013, 18624, 'eighteen thousand six hundred twenty-four'),\n(16014, 87441, 'eighty-seven thousand four hundred forty-one'),\n(16015, 58243, 'fifty-eight thousand two hundred forty-three'),\n(16016, 71871, 'seventy-one thousand eight hundred seventy-one'),\n(16017, 82033, 'eighty-two thousand thirty-three'),\n(16018, 14443, 'fourteen thousand four hundred forty-three'),\n(16019, 42290, 'forty-two thousand two hundred ninety'),\n(16020, 47334, 'forty-seven thousand three hundred thirty-four'),\n(16021, 84039, 'eighty-four thousand thirty-nine'),\n(16022, 31982, 'thirty-one thousand nine hundred eighty-two'),\n(16023, 21716, 'twenty-one thousand seven hundred sixteen'),\n(16024, 79688, 'seventy-nine thousand six hundred eighty-eight'),\n(16025, 10315, 'ten thousand three hundred fifteen'),\n(16026, 49694, 'forty-nine thousand six hundred ninety-four'),\n(16027, 21387, 'twenty-one thousand three hundred eighty-seven'),\n(16028, 5082, 'five thousand eighty-two'),\n(16029, 63886, 'sixty-three thousand eight hundred eighty-six'),\n(16030, 34656, 'thirty-four thousand six hundred fifty-six'),\n(16031, 49531, 'forty-nine thousand five hundred thirty-one'),\n(16032, 95666, 'ninety-five thousand six hundred sixty-six'),\n(16033, 85709, 'eighty-five thousand seven hundred nine'),\n(16034, 2086, 'two thousand eighty-six'),\n(16035, 72110, 'seventy-two thousand one hundred ten'),\n(16036, 21688, 'twenty-one thousand six hundred eighty-eight'),\n(16037, 46976, 'forty-six thousand nine hundred seventy-six'),\n(16038, 60339, 'sixty thousand three hundred thirty-nine'),\n(16039, 18327, 'eighteen thousand three hundred twenty-seven'),\n(16040, 80395, 'eighty thousand three hundred ninety-five'),\n(16041, 98302, 'ninety-eight thousand three hundred two'),\n(16042, 5387, 'five thousand three hundred eighty-seven'),\n(16043, 6078, 'six thousand seventy-eight'),\n(16044, 9051, 'nine thousand fifty-one'),\n(16045, 12295, 'twelve thousand two hundred ninety-five'),\n(16046, 85567, 'eighty-five thousand five hundred sixty-seven'),\n(16047, 61870, 'sixty-one thousand eight hundred seventy'),\n(16048, 73569, 'seventy-three thousand five hundred sixty-nine'),\n(16049, 30847, 'thirty thousand eight hundred forty-seven'),\n(16050, 57768, 'fifty-seven thousand seven hundred sixty-eight'),\n(16051, 87632, 'eighty-seven thousand six hundred thirty-two'),\n(16052, 10860, 'ten thousand eight hundred sixty'),\n(16053, 95099, 'ninety-five thousand ninety-nine'),\n(16054, 16308, 'sixteen thousand three hundred eight'),\n(16055, 19403, 'nineteen thousand four hundred three'),\n(16056, 25261, 'twenty-five thousand two hundred sixty-one'),\n(16057, 25641, 'twenty-five thousand six hundred forty-one'),\n(16058, 2087, 'two thousand eighty-seven'),\n(16059, 92824, 'ninety-two thousand eight hundred twenty-four'),\n(16060, 60191, 'sixty thousand one hundred ninety-one'),\n(16061, 94860, 'ninety-four thousand eight hundred sixty'),\n(16062, 62525, 'sixty-two thousand five hundred twenty-five'),\n(16063, 29113, 'twenty-nine thousand one hundred thirteen'),\n(16064, 44740, 'forty-four thousand seven hundred forty'),\n(16065, 27831, 'twenty-seven thousand eight hundred thirty-one'),\n(16066, 54713, 'fifty-four thousand seven hundred thirteen'),\n(16067, 2363, 'two thousand three hundred sixty-three'),\n(16068, 49810, 'forty-nine thousand eight hundred ten'),\n(16069, 10021, 'ten thousand twenty-one'),\n(16070, 63987, 'sixty-three thousand nine hundred eighty-seven'),\n(16071, 22812, 'twenty-two thousand eight hundred twelve'),\n(16072, 48094, 'forty-eight thousand ninety-four'),\n(16073, 62218, 'sixty-two thousand two hundred eighteen'),\n(16074, 27155, 'twenty-seven thousand one hundred fifty-five'),\n(16075, 99053, 'ninety-nine thousand fifty-three'),\n(16076, 16807, 'sixteen thousand eight hundred seven'),\n(16077, 23527, 'twenty-three thousand five hundred twenty-seven'),\n(16078, 85282, 'eighty-five thousand two hundred eighty-two'),\n(16079, 97038, 'ninety-seven thousand thirty-eight'),\n(16080, 77910, 'seventy-seven thousand nine hundred ten'),\n(16081, 20870, 'twenty thousand eight hundred seventy'),\n(16082, 59185, 'fifty-nine thousand one hundred eighty-five'),\n(16083, 77996, 'seventy-seven thousand nine hundred ninety-six'),\n(16084, 18470, 'eighteen thousand four hundred seventy'),\n(16085, 81078, 'eighty-one thousand seventy-eight'),\n(16086, 9262, 'nine thousand two hundred sixty-two'),\n(16087, 35307, 'thirty-five thousand three hundred seven'),\n(16088, 39244, 'thirty-nine thousand two hundred forty-four'),\n(16089, 8882, 'eight thousand eight hundred eighty-two'),\n(16090, 21110, 'twenty-one thousand one hundred ten'),\n(16091, 37331, 'thirty-seven thousand three hundred thirty-one'),\n(16092, 70242, 'seventy thousand two hundred forty-two'),\n(16093, 61850, 'sixty-one thousand eight hundred fifty'),\n(16094, 75197, 'seventy-five thousand one hundred ninety-seven'),\n(16095, 66512, 'sixty-six thousand five hundred twelve'),\n(16096, 42722, 'forty-two thousand seven hundred twenty-two'),\n(16097, 99254, 'ninety-nine thousand two hundred fifty-four'),\n(16098, 61338, 'sixty-one thousand three hundred thirty-eight'),\n(16099, 96694, 'ninety-six thousand six hundred ninety-four'),\n(16100, 46680, 'forty-six thousand six hundred eighty'),\n(16101, 7371, 'seven thousand three hundred seventy-one'),\n(16102, 41255, 'forty-one thousand two hundred fifty-five'),\n(16103, 56563, 'fifty-six thousand five hundred sixty-three'),\n(16104, 45600, 'forty-five thousand six hundred'),\n(16105, 98904, 'ninety-eight thousand nine hundred four'),\n(16106, 78223, 'seventy-eight thousand two hundred twenty-three'),\n(16107, 57420, 'fifty-seven thousand four hundred twenty'),\n(16108, 35945, 'thirty-five thousand nine hundred forty-five'),\n(16109, 57187, 'fifty-seven thousand one hundred eighty-seven'),\n(16110, 77349, 'seventy-seven thousand three hundred forty-nine'),\n(16111, 42789, 'forty-two thousand seven hundred eighty-nine'),\n(16112, 35906, 'thirty-five thousand nine hundred six'),\n(16113, 51085, 'fifty-one thousand eighty-five'),\n(16114, 86768, 'eighty-six thousand seven hundred sixty-eight'),\n(16115, 51828, 'fifty-one thousand eight hundred twenty-eight'),\n(16116, 19442, 'nineteen thousand four hundred forty-two'),\n(16117, 27486, 'twenty-seven thousand four hundred eighty-six'),\n(16118, 15511, 'fifteen thousand five hundred eleven'),\n(16119, 10224, 'ten thousand two hundred twenty-four'),\n(16120, 1887, 'one thousand eight hundred eighty-seven'),\n(16121, 94072, 'ninety-four thousand seventy-two'),\n(16122, 38517, 'thirty-eight thousand five hundred seventeen'),\n(16123, 81149, 'eighty-one thousand one hundred forty-nine'),\n(16124, 6642, 'six thousand six hundred forty-two'),\n(16125, 93889, 'ninety-three thousand eight hundred eighty-nine'),\n(16126, 13319, 'thirteen thousand three hundred nineteen'),\n(16127, 47727, 'forty-seven thousand seven hundred twenty-seven'),\n(16128, 39412, 'thirty-nine thousand four hundred twelve'),\n(16129, 63979, 'sixty-three thousand nine hundred seventy-nine'),\n(16130, 982, 'nine hundred eighty-two'),\n(16131, 76188, 'seventy-six thousand one hundred eighty-eight'),\n(16132, 53246, 'fifty-three thousand two hundred forty-six'),\n(16133, 37034, 'thirty-seven thousand thirty-four'),\n(16134, 25812, 'twenty-five thousand eight hundred twelve'),\n(16135, 63184, 'sixty-three thousand one hundred eighty-four'),\n(16136, 19783, 'nineteen thousand seven hundred eighty-three'),\n(16137, 57997, 'fifty-seven thousand nine hundred ninety-seven'),\n(16138, 76135, 'seventy-six thousand one hundred thirty-five'),\n(16139, 16756, 'sixteen thousand seven hundred fifty-six'),\n(16140, 70935, 'seventy thousand nine hundred thirty-five'),\n(16141, 59119, 'fifty-nine thousand one hundred nineteen'),\n(16142, 18065, 'eighteen thousand sixty-five'),\n(16143, 15408, 'fifteen thousand four hundred eight'),\n(16144, 41387, 'forty-one thousand three hundred eighty-seven'),\n(16145, 33319, 'thirty-three thousand three hundred nineteen'),\n(16146, 62577, 'sixty-two thousand five hundred seventy-seven'),\n(16147, 46805, 'forty-six thousand eight hundred five'),\n(16148, 49174, 'forty-nine thousand one hundred seventy-four'),\n(16149, 89647, 'eighty-nine thousand six hundred forty-seven'),\n(16150, 1934, 'one thousand nine hundred thirty-four'),\n(16151, 9996, 'nine thousand nine hundred ninety-six'),\n(16152, 45686, 'forty-five thousand six hundred eighty-six'),\n(16153, 86495, 'eighty-six thousand four hundred ninety-five'),\n(16154, 46939, 'forty-six thousand nine hundred thirty-nine'),\n(16155, 84358, 'eighty-four thousand three hundred fifty-eight'),\n(16156, 85226, 'eighty-five thousand two hundred twenty-six'),\n(16157, 3259, 'three thousand two hundred fifty-nine'),\n(16158, 31960, 'thirty-one thousand nine hundred sixty'),\n(16159, 19489, 'nineteen thousand four hundred eighty-nine'),\n(16160, 13754, 'thirteen thousand seven hundred fifty-four'),\n(16161, 8984, 'eight thousand nine hundred eighty-four'),\n(16162, 32860, 'thirty-two thousand eight hundred sixty'),\n(16163, 98639, 'ninety-eight thousand six hundred thirty-nine'),\n(16164, 8832, 'eight thousand eight hundred thirty-two'),\n(16165, 25823, 'twenty-five thousand eight hundred twenty-three'),\n(16166, 42372, 'forty-two thousand three hundred seventy-two'),\n(16167, 20932, 'twenty thousand nine hundred thirty-two'),\n(16168, 646, 'six hundred forty-six'),\n(16169, 48906, 'forty-eight thousand nine hundred six'),\n(16170, 48227, 'forty-eight thousand two hundred twenty-seven'),\n(16171, 19963, 'nineteen thousand nine hundred sixty-three'),\n(16172, 49439, 'forty-nine thousand four hundred thirty-nine'),\n(16173, 48081, 'forty-eight thousand eighty-one'),\n(16174, 38632, 'thirty-eight thousand six hundred thirty-two'),\n(16175, 17196, 'seventeen thousand one hundred ninety-six'),\n(16176, 72207, 'seventy-two thousand two hundred seven'),\n(16177, 8430, 'eight thousand four hundred thirty'),\n(16178, 28319, 'twenty-eight thousand three hundred nineteen'),\n(16179, 85779, 'eighty-five thousand seven hundred seventy-nine'),\n(16180, 88955, 'eighty-eight thousand nine hundred fifty-five'),\n(16181, 62648, 'sixty-two thousand six hundred forty-eight'),\n(16182, 255, 'two hundred fifty-five'),\n(16183, 6398, 'six thousand three hundred ninety-eight'),\n(16184, 56235, 'fifty-six thousand two hundred thirty-five'),\n(16185, 82051, 'eighty-two thousand fifty-one'),\n(16186, 8568, 'eight thousand five hundred sixty-eight'),\n(16187, 77839, 'seventy-seven thousand eight hundred thirty-nine'),\n(16188, 82034, 'eighty-two thousand thirty-four'),\n(16189, 23832, 'twenty-three thousand eight hundred thirty-two'),\n(16190, 36042, 'thirty-six thousand forty-two'),\n(16191, 21665, 'twenty-one thousand six hundred sixty-five'),\n(16192, 196, 'one hundred ninety-six'),\n(16193, 80706, 'eighty thousand seven hundred six'),\n(16194, 95914, 'ninety-five thousand nine hundred fourteen'),\n(16195, 42866, 'forty-two thousand eight hundred sixty-six'),\n(16196, 36279, 'thirty-six thousand two hundred seventy-nine'),\n(16197, 54542, 'fifty-four thousand five hundred forty-two'),\n(16198, 87180, 'eighty-seven thousand one hundred eighty'),\n(16199, 67856, 'sixty-seven thousand eight hundred fifty-six'),\n(16200, 9116, 'nine thousand one hundred sixteen'),\n(16201, 64021, 'sixty-four thousand twenty-one'),\n(16202, 20565, 'twenty thousand five hundred sixty-five'),\n(16203, 99625, 'ninety-nine thousand six hundred twenty-five'),\n(16204, 13416, 'thirteen thousand four hundred sixteen'),\n(16205, 60633, 'sixty thousand six hundred thirty-three'),\n(16206, 30002, 'thirty thousand two'),\n(16207, 60622, 'sixty thousand six hundred twenty-two'),\n(16208, 26307, 'twenty-six thousand three hundred seven'),\n(16209, 97563, 'ninety-seven thousand five hundred sixty-three'),\n(16210, 55807, 'fifty-five thousand eight hundred seven'),\n(16211, 22106, 'twenty-two thousand one hundred six'),\n(16212, 4490, 'four thousand four hundred ninety'),\n(16213, 91635, 'ninety-one thousand six hundred thirty-five'),\n(16214, 31135, 'thirty-one thousand one hundred thirty-five'),\n(16215, 49872, 'forty-nine thousand eight hundred seventy-two'),\n(16216, 65808, 'sixty-five thousand eight hundred eight'),\n(16217, 36010, 'thirty-six thousand ten'),\n(16218, 33265, 'thirty-three thousand two hundred sixty-five'),\n(16219, 84849, 'eighty-four thousand eight hundred forty-nine'),\n(16220, 11340, 'eleven thousand three hundred forty'),\n(16221, 85480, 'eighty-five thousand four hundred eighty'),\n(16222, 7234, 'seven thousand two hundred thirty-four'),\n(16223, 28974, 'twenty-eight thousand nine hundred seventy-four'),\n(16224, 46542, 'forty-six thousand five hundred forty-two'),\n(16225, 41413, 'forty-one thousand four hundred thirteen'),\n(16226, 56244, 'fifty-six thousand two hundred forty-four'),\n(16227, 18165, 'eighteen thousand one hundred sixty-five'),\n(16228, 48462, 'forty-eight thousand four hundred sixty-two'),\n(16229, 96480, 'ninety-six thousand four hundred eighty'),\n(16230, 29633, 'twenty-nine thousand six hundred thirty-three'),\n(16231, 44582, 'forty-four thousand five hundred eighty-two'),\n(16232, 80132, 'eighty thousand one hundred thirty-two'),\n(16233, 71522, 'seventy-one thousand five hundred twenty-two'),\n(16234, 62916, 'sixty-two thousand nine hundred sixteen'),\n(16235, 61373, 'sixty-one thousand three hundred seventy-three'),\n(16236, 54532, 'fifty-four thousand five hundred thirty-two'),\n(16237, 71995, 'seventy-one thousand nine hundred ninety-five'),\n(16238, 35558, 'thirty-five thousand five hundred fifty-eight'),\n(16239, 91537, 'ninety-one thousand five hundred thirty-seven'),\n(16240, 22038, 'twenty-two thousand thirty-eight'),\n(16241, 25339, 'twenty-five thousand three hundred thirty-nine'),\n(16242, 9899, 'nine thousand eight hundred ninety-nine'),\n(16243, 75618, 'seventy-five thousand six hundred eighteen'),\n(16244, 4967, 'four thousand nine hundred sixty-seven'),\n(16245, 76204, 'seventy-six thousand two hundred four'),\n(16246, 46582, 'forty-six thousand five hundred eighty-two'),\n(16247, 2728, 'two thousand seven hundred twenty-eight'),\n(16248, 42985, 'forty-two thousand nine hundred eighty-five'),\n(16249, 31809, 'thirty-one thousand eight hundred nine'),\n(16250, 93601, 'ninety-three thousand six hundred one'),\n(16251, 39570, 'thirty-nine thousand five hundred seventy'),\n(16252, 74782, 'seventy-four thousand seven hundred eighty-two'),\n(16253, 17383, 'seventeen thousand three hundred eighty-three'),\n(16254, 90613, 'ninety thousand six hundred thirteen'),\n(16255, 83804, 'eighty-three thousand eight hundred four'),\n(16256, 72251, 'seventy-two thousand two hundred fifty-one'),\n(16257, 94840, 'ninety-four thousand eight hundred forty'),\n(16258, 52977, 'fifty-two thousand nine hundred seventy-seven'),\n(16259, 95811, 'ninety-five thousand eight hundred eleven'),\n(16260, 78113, 'seventy-eight thousand one hundred thirteen'),\n(16261, 45720, 'forty-five thousand seven hundred twenty'),\n(16262, 9158, 'nine thousand one hundred fifty-eight'),\n(16263, 64131, 'sixty-four thousand one hundred thirty-one'),\n(16264, 44225, 'forty-four thousand two hundred twenty-five'),\n(16265, 46856, 'forty-six thousand eight hundred fifty-six'),\n(16266, 77173, 'seventy-seven thousand one hundred seventy-three'),\n(16267, 22839, 'twenty-two thousand eight hundred thirty-nine'),\n(16268, 57339, 'fifty-seven thousand three hundred thirty-nine'),\n(16269, 29735, 'twenty-nine thousand seven hundred thirty-five'),\n(16270, 4850, 'four thousand eight hundred fifty'),\n(16271, 99310, 'ninety-nine thousand three hundred ten'),\n(16272, 83699, 'eighty-three thousand six hundred ninety-nine'),\n(16273, 74231, 'seventy-four thousand two hundred thirty-one'),\n(16274, 98971, 'ninety-eight thousand nine hundred seventy-one'),\n(16275, 91330, 'ninety-one thousand three hundred thirty'),\n(16276, 55128, 'fifty-five thousand one hundred twenty-eight'),\n(16277, 36250, 'thirty-six thousand two hundred fifty'),\n(16278, 89901, 'eighty-nine thousand nine hundred one'),\n(16279, 67826, 'sixty-seven thousand eight hundred twenty-six'),\n(16280, 64001, 'sixty-four thousand one'),\n(16281, 70308, 'seventy thousand three hundred eight'),\n(16282, 67318, 'sixty-seven thousand three hundred eighteen'),\n(16283, 56771, 'fifty-six thousand seven hundred seventy-one'),\n(16284, 1677, 'one thousand six hundred seventy-seven'),\n(16285, 5888, 'five thousand eight hundred eighty-eight'),\n(16286, 94270, 'ninety-four thousand two hundred seventy'),\n(16287, 10332, 'ten thousand three hundred thirty-two'),\n(16288, 14107, 'fourteen thousand one hundred seven'),\n(16289, 948, 'nine hundred forty-eight'),\n(16290, 202, 'two hundred two'),\n(16291, 75169, 'seventy-five thousand one hundred sixty-nine'),\n(16292, 79522, 'seventy-nine thousand five hundred twenty-two'),\n(16293, 71927, 'seventy-one thousand nine hundred twenty-seven'),\n(16294, 1138, 'one thousand one hundred thirty-eight'),\n(16295, 98919, 'ninety-eight thousand nine hundred nineteen'),\n(16296, 58024, 'fifty-eight thousand twenty-four'),\n(16297, 30489, 'thirty thousand four hundred eighty-nine'),\n(16298, 50409, 'fifty thousand four hundred nine'),\n(16299, 6894, 'six thousand eight hundred ninety-four'),\n(16300, 53285, 'fifty-three thousand two hundred eighty-five'),\n(16301, 36270, 'thirty-six thousand two hundred seventy'),\n(16302, 42252, 'forty-two thousand two hundred fifty-two'),\n(16303, 30362, 'thirty thousand three hundred sixty-two'),\n(16304, 52895, 'fifty-two thousand eight hundred ninety-five'),\n(16305, 64909, 'sixty-four thousand nine hundred nine'),\n(16306, 60806, 'sixty thousand eight hundred six'),\n(16307, 11936, 'eleven thousand nine hundred thirty-six'),\n(16308, 36296, 'thirty-six thousand two hundred ninety-six'),\n(16309, 99074, 'ninety-nine thousand seventy-four'),\n(16310, 5695, 'five thousand six hundred ninety-five'),\n(16311, 91351, 'ninety-one thousand three hundred fifty-one'),\n(16312, 46110, 'forty-six thousand one hundred ten'),\n(16313, 59810, 'fifty-nine thousand eight hundred ten'),\n(16314, 69024, 'sixty-nine thousand twenty-four'),\n(16315, 46756, 'forty-six thousand seven hundred fifty-six'),\n(16316, 17170, 'seventeen thousand one hundred seventy'),\n(16317, 71402, 'seventy-one thousand four hundred two'),\n(16318, 81600, 'eighty-one thousand six hundred'),\n(16319, 3407, 'three thousand four hundred seven'),\n(16320, 32188, 'thirty-two thousand one hundred eighty-eight'),\n(16321, 16842, 'sixteen thousand eight hundred forty-two'),\n(16322, 6375, 'six thousand three hundred seventy-five'),\n(16323, 62878, 'sixty-two thousand eight hundred seventy-eight'),\n(16324, 53426, 'fifty-three thousand four hundred twenty-six'),\n(16325, 93337, 'ninety-three thousand three hundred thirty-seven'),\n(16326, 55886, 'fifty-five thousand eight hundred eighty-six'),\n(16327, 49437, 'forty-nine thousand four hundred thirty-seven'),\n(16328, 39960, 'thirty-nine thousand nine hundred sixty'),\n(16329, 30953, 'thirty thousand nine hundred fifty-three'),\n(16330, 23339, 'twenty-three thousand three hundred thirty-nine'),\n(16331, 40207, 'forty thousand two hundred seven'),\n(16332, 71581, 'seventy-one thousand five hundred eighty-one'),\n(16333, 62429, 'sixty-two thousand four hundred twenty-nine'),\n(16334, 30739, 'thirty thousand seven hundred thirty-nine'),\n(16335, 36016, 'thirty-six thousand sixteen'),\n(16336, 70272, 'seventy thousand two hundred seventy-two'),\n(16337, 68870, 'sixty-eight thousand eight hundred seventy'),\n(16338, 16131, 'sixteen thousand one hundred thirty-one'),\n(16339, 16757, 'sixteen thousand seven hundred fifty-seven'),\n(16340, 61245, 'sixty-one thousand two hundred forty-five'),\n(16341, 85830, 'eighty-five thousand eight hundred thirty'),\n(16342, 19743, 'nineteen thousand seven hundred forty-three'),\n(16343, 15977, 'fifteen thousand nine hundred seventy-seven'),\n(16344, 29168, 'twenty-nine thousand one hundred sixty-eight'),\n(16345, 67100, 'sixty-seven thousand one hundred'),\n(16346, 80098, 'eighty thousand ninety-eight'),\n(16347, 93153, 'ninety-three thousand one hundred fifty-three'),\n(16348, 65069, 'sixty-five thousand sixty-nine'),\n(16349, 45760, 'forty-five thousand seven hundred sixty'),\n(16350, 57927, 'fifty-seven thousand nine hundred twenty-seven'),\n(16351, 94757, 'ninety-four thousand seven hundred fifty-seven'),\n(16352, 29768, 'twenty-nine thousand seven hundred sixty-eight'),\n(16353, 38222, 'thirty-eight thousand two hundred twenty-two'),\n(16354, 30870, 'thirty thousand eight hundred seventy'),\n(16355, 85694, 'eighty-five thousand six hundred ninety-four'),\n(16356, 71346, 'seventy-one thousand three hundred forty-six'),\n(16357, 31036, 'thirty-one thousand thirty-six'),\n(16358, 96987, 'ninety-six thousand nine hundred eighty-seven'),\n(16359, 26137, 'twenty-six thousand one hundred thirty-seven'),\n(16360, 86739, 'eighty-six thousand seven hundred thirty-nine'),\n(16361, 73896, 'seventy-three thousand eight hundred ninety-six'),\n(16362, 33026, 'thirty-three thousand twenty-six'),\n(16363, 84924, 'eighty-four thousand nine hundred twenty-four'),\n(16364, 61463, 'sixty-one thousand four hundred sixty-three'),\n(16365, 19377, 'nineteen thousand three hundred seventy-seven'),\n(16366, 72052, 'seventy-two thousand fifty-two'),\n(16367, 87059, 'eighty-seven thousand fifty-nine'),\n(16368, 91232, 'ninety-one thousand two hundred thirty-two'),\n(16369, 3943, 'three thousand nine hundred forty-three'),\n(16370, 98321, 'ninety-eight thousand three hundred twenty-one'),\n(16371, 19363, 'nineteen thousand three hundred sixty-three'),\n(16372, 31774, 'thirty-one thousand seven hundred seventy-four'),\n(16373, 14384, 'fourteen thousand three hundred eighty-four'),\n(16374, 61879, 'sixty-one thousand eight hundred seventy-nine'),\n(16375, 16085, 'sixteen thousand eighty-five'),\n(16376, 1008, 'one thousand eight'),\n(16377, 76827, 'seventy-six thousand eight hundred twenty-seven'),\n(16378, 96159, 'ninety-six thousand one hundred fifty-nine'),\n(16379, 44128, 'forty-four thousand one hundred twenty-eight'),\n(16380, 80042, 'eighty thousand forty-two'),\n(16381, 89518, 'eighty-nine thousand five hundred eighteen'),\n(16382, 86365, 'eighty-six thousand three hundred sixty-five'),\n(16383, 91358, 'ninety-one thousand three hundred fifty-eight'),\n(16384, 38116, 'thirty-eight thousand one hundred sixteen'),\n(16385, 25, 'twenty-five'),\n(16386, 53486, 'fifty-three thousand four hundred eighty-six'),\n(16387, 34164, 'thirty-four thousand one hundred sixty-four'),\n(16388, 91577, 'ninety-one thousand five hundred seventy-seven'),\n(16389, 63052, 'sixty-three thousand fifty-two'),\n(16390, 73188, 'seventy-three thousand one hundred eighty-eight'),\n(16391, 79627, 'seventy-nine thousand six hundred twenty-seven'),\n(16392, 18066, 'eighteen thousand sixty-six'),\n(16393, 31726, 'thirty-one thousand seven hundred twenty-six'),\n(16394, 95102, 'ninety-five thousand one hundred two'),\n(16395, 9848, 'nine thousand eight hundred forty-eight'),\n(16396, 11797, 'eleven thousand seven hundred ninety-seven'),\n(16397, 12525, 'twelve thousand five hundred twenty-five'),\n(16398, 69709, 'sixty-nine thousand seven hundred nine'),\n(16399, 21914, 'twenty-one thousand nine hundred fourteen'),\n(16400, 15578, 'fifteen thousand five hundred seventy-eight'),\n(16401, 2941, 'two thousand nine hundred forty-one'),\n(16402, 44751, 'forty-four thousand seven hundred fifty-one'),\n(16403, 5166, 'five thousand one hundred sixty-six'),\n(16404, 31610, 'thirty-one thousand six hundred ten'),\n(16405, 9989, 'nine thousand nine hundred eighty-nine'),\n(16406, 38502, 'thirty-eight thousand five hundred two'),\n(16407, 77586, 'seventy-seven thousand five hundred eighty-six'),\n(16408, 5357, 'five thousand three hundred fifty-seven'),\n(16409, 60596, 'sixty thousand five hundred ninety-six'),\n(16410, 43738, 'forty-three thousand seven hundred thirty-eight'),\n(16411, 54102, 'fifty-four thousand one hundred two'),\n(16412, 25696, 'twenty-five thousand six hundred ninety-six'),\n(16413, 56156, 'fifty-six thousand one hundred fifty-six'),\n(16414, 52572, 'fifty-two thousand five hundred seventy-two'),\n(16415, 5467, 'five thousand four hundred sixty-seven'),\n(16416, 25563, 'twenty-five thousand five hundred sixty-three'),\n(16417, 22000, 'twenty-two thousand'),\n(16418, 29063, 'twenty-nine thousand sixty-three'),\n(16419, 87619, 'eighty-seven thousand six hundred nineteen'),\n(16420, 9880, 'nine thousand eight hundred eighty'),\n(16421, 84634, 'eighty-four thousand six hundred thirty-four'),\n(16422, 58183, 'fifty-eight thousand one hundred eighty-three'),\n(16423, 17798, 'seventeen thousand seven hundred ninety-eight'),\n(16424, 28489, 'twenty-eight thousand four hundred eighty-nine'),\n(16425, 72350, 'seventy-two thousand three hundred fifty'),\n(16426, 70677, 'seventy thousand six hundred seventy-seven'),\n(16427, 97117, 'ninety-seven thousand one hundred seventeen'),\n(16428, 50980, 'fifty thousand nine hundred eighty'),\n(16429, 6242, 'six thousand two hundred forty-two'),\n(16430, 96689, 'ninety-six thousand six hundred eighty-nine'),\n(16431, 90942, 'ninety thousand nine hundred forty-two'),\n(16432, 65985, 'sixty-five thousand nine hundred eighty-five'),\n(16433, 28628, 'twenty-eight thousand six hundred twenty-eight'),\n(16434, 1894, 'one thousand eight hundred ninety-four'),\n(16435, 50375, 'fifty thousand three hundred seventy-five'),\n(16436, 56479, 'fifty-six thousand four hundred seventy-nine'),\n(16437, 26548, 'twenty-six thousand five hundred forty-eight'),\n(16438, 48816, 'forty-eight thousand eight hundred sixteen'),\n(16439, 26452, 'twenty-six thousand four hundred fifty-two'),\n(16440, 70126, 'seventy thousand one hundred twenty-six'),\n(16441, 14081, 'fourteen thousand eighty-one'),\n(16442, 6910, 'six thousand nine hundred ten'),\n(16443, 99267, 'ninety-nine thousand two hundred sixty-seven'),\n(16444, 1959, 'one thousand nine hundred fifty-nine'),\n(16445, 7385, 'seven thousand three hundred eighty-five'),\n(16446, 53227, 'fifty-three thousand two hundred twenty-seven'),\n(16447, 3823, 'three thousand eight hundred twenty-three'),\n(16448, 70798, 'seventy thousand seven hundred ninety-eight'),\n(16449, 45192, 'forty-five thousand one hundred ninety-two'),\n(16450, 12664, 'twelve thousand six hundred sixty-four'),\n(16451, 22962, 'twenty-two thousand nine hundred sixty-two'),\n(16452, 46753, 'forty-six thousand seven hundred fifty-three'),\n(16453, 24233, 'twenty-four thousand two hundred thirty-three'),\n(16454, 41168, 'forty-one thousand one hundred sixty-eight'),\n(16455, 98612, 'ninety-eight thousand six hundred twelve'),\n(16456, 46050, 'forty-six thousand fifty'),\n(16457, 80354, 'eighty thousand three hundred fifty-four'),\n(16458, 11067, 'eleven thousand sixty-seven'),\n(16459, 98333, 'ninety-eight thousand three hundred thirty-three'),\n(16460, 43830, 'forty-three thousand eight hundred thirty'),\n(16461, 95140, 'ninety-five thousand one hundred forty'),\n(16462, 34244, 'thirty-four thousand two hundred forty-four'),\n(16463, 7730, 'seven thousand seven hundred thirty'),\n(16464, 84998, 'eighty-four thousand nine hundred ninety-eight'),\n(16465, 38262, 'thirty-eight thousand two hundred sixty-two'),\n(16466, 27851, 'twenty-seven thousand eight hundred fifty-one'),\n(16467, 74183, 'seventy-four thousand one hundred eighty-three'),\n(16468, 71961, 'seventy-one thousand nine hundred sixty-one'),\n(16469, 20150, 'twenty thousand one hundred fifty'),\n(16470, 97161, 'ninety-seven thousand one hundred sixty-one'),\n(16471, 37515, 'thirty-seven thousand five hundred fifteen'),\n(16472, 44636, 'forty-four thousand six hundred thirty-six'),\n(16473, 54391, 'fifty-four thousand three hundred ninety-one'),\n(16474, 40704, 'forty thousand seven hundred four'),\n(16475, 92388, 'ninety-two thousand three hundred eighty-eight'),\n(16476, 23913, 'twenty-three thousand nine hundred thirteen'),\n(16477, 5553, 'five thousand five hundred fifty-three'),\n(16478, 2111, 'two thousand one hundred eleven'),\n(16479, 10017, 'ten thousand seventeen'),\n(16480, 59341, 'fifty-nine thousand three hundred forty-one'),\n(16481, 6943, 'six thousand nine hundred forty-three'),\n(16482, 27474, 'twenty-seven thousand four hundred seventy-four'),\n(16483, 21919, 'twenty-one thousand nine hundred nineteen'),\n(16484, 75523, 'seventy-five thousand five hundred twenty-three'),\n(16485, 11804, 'eleven thousand eight hundred four'),\n(16486, 77689, 'seventy-seven thousand six hundred eighty-nine'),\n(16487, 93631, 'ninety-three thousand six hundred thirty-one'),\n(16488, 24989, 'twenty-four thousand nine hundred eighty-nine'),\n(16489, 43707, 'forty-three thousand seven hundred seven'),\n(16490, 84187, 'eighty-four thousand one hundred eighty-seven'),\n(16491, 37401, 'thirty-seven thousand four hundred one'),\n(16492, 92105, 'ninety-two thousand one hundred five'),\n(16493, 5740, 'five thousand seven hundred forty'),\n(16494, 46408, 'forty-six thousand four hundred eight'),\n(16495, 20796, 'twenty thousand seven hundred ninety-six'),\n(16496, 54911, 'fifty-four thousand nine hundred eleven'),\n(16497, 57730, 'fifty-seven thousand seven hundred thirty'),\n(16498, 28369, 'twenty-eight thousand three hundred sixty-nine'),\n(16499, 50018, 'fifty thousand eighteen'),\n(16500, 5554, 'five thousand five hundred fifty-four'),\n(16501, 64164, 'sixty-four thousand one hundred sixty-four'),\n(16502, 22750, 'twenty-two thousand seven hundred fifty'),\n(16503, 4604, 'four thousand six hundred four'),\n(16504, 43792, 'forty-three thousand seven hundred ninety-two'),\n(16505, 78767, 'seventy-eight thousand seven hundred sixty-seven'),\n(16506, 16689, 'sixteen thousand six hundred eighty-nine'),\n(16507, 73463, 'seventy-three thousand four hundred sixty-three'),\n(16508, 71135, 'seventy-one thousand one hundred thirty-five'),\n(16509, 93149, 'ninety-three thousand one hundred forty-nine'),\n(16510, 3504, 'three thousand five hundred four'),\n(16511, 98538, 'ninety-eight thousand five hundred thirty-eight'),\n(16512, 89108, 'eighty-nine thousand one hundred eight'),\n(16513, 97708, 'ninety-seven thousand seven hundred eight'),\n(16514, 57353, 'fifty-seven thousand three hundred fifty-three'),\n(16515, 21626, 'twenty-one thousand six hundred twenty-six'),\n(16516, 89719, 'eighty-nine thousand seven hundred nineteen'),\n(16517, 94085, 'ninety-four thousand eighty-five'),\n(16518, 85095, 'eighty-five thousand ninety-five'),\n(16519, 49252, 'forty-nine thousand two hundred fifty-two'),\n(16520, 48114, 'forty-eight thousand one hundred fourteen'),\n(16521, 78855, 'seventy-eight thousand eight hundred fifty-five'),\n(16522, 15596, 'fifteen thousand five hundred ninety-six'),\n(16523, 94790, 'ninety-four thousand seven hundred ninety'),\n(16524, 74232, 'seventy-four thousand two hundred thirty-two'),\n(16525, 37928, 'thirty-seven thousand nine hundred twenty-eight'),\n(16526, 4075, 'four thousand seventy-five'),\n(16527, 81990, 'eighty-one thousand nine hundred ninety'),\n(16528, 42126, 'forty-two thousand one hundred twenty-six'),\n(16529, 13943, 'thirteen thousand nine hundred forty-three'),\n(16530, 94325, 'ninety-four thousand three hundred twenty-five'),\n(16531, 7122, 'seven thousand one hundred twenty-two'),\n(16532, 67562, 'sixty-seven thousand five hundred sixty-two'),\n(16533, 40253, 'forty thousand two hundred fifty-three'),\n(16534, 70042, 'seventy thousand forty-two'),\n(16535, 69253, 'sixty-nine thousand two hundred fifty-three'),\n(16536, 66007, 'sixty-six thousand seven'),\n(16537, 83630, 'eighty-three thousand six hundred thirty'),\n(16538, 33589, 'thirty-three thousand five hundred eighty-nine'),\n(16539, 70993, 'seventy thousand nine hundred ninety-three'),\n(16540, 24581, 'twenty-four thousand five hundred eighty-one'),\n(16541, 12489, 'twelve thousand four hundred eighty-nine'),\n(16542, 37807, 'thirty-seven thousand eight hundred seven'),\n(16543, 31594, 'thirty-one thousand five hundred ninety-four'),\n(16544, 6248, 'six thousand two hundred forty-eight'),\n(16545, 91117, 'ninety-one thousand one hundred seventeen'),\n(16546, 16096, 'sixteen thousand ninety-six'),\n(16547, 83898, 'eighty-three thousand eight hundred ninety-eight'),\n(16548, 94402, 'ninety-four thousand four hundred two'),\n(16549, 5180, 'five thousand one hundred eighty'),\n(16550, 65020, 'sixty-five thousand twenty'),\n(16551, 82203, 'eighty-two thousand two hundred three'),\n(16552, 89424, 'eighty-nine thousand four hundred twenty-four'),\n(16553, 82060, 'eighty-two thousand sixty'),\n(16554, 34425, 'thirty-four thousand four hundred twenty-five'),\n(16555, 29211, 'twenty-nine thousand two hundred eleven'),\n(16556, 94496, 'ninety-four thousand four hundred ninety-six'),\n(16557, 26701, 'twenty-six thousand seven hundred one'),\n(16558, 60958, 'sixty thousand nine hundred fifty-eight'),\n(16559, 81826, 'eighty-one thousand eight hundred twenty-six'),\n(16560, 42157, 'forty-two thousand one hundred fifty-seven'),\n(16561, 35660, 'thirty-five thousand six hundred sixty'),\n(16562, 78893, 'seventy-eight thousand eight hundred ninety-three'),\n(16563, 99288, 'ninety-nine thousand two hundred eighty-eight'),\n(16564, 84784, 'eighty-four thousand seven hundred eighty-four'),\n(16565, 55252, 'fifty-five thousand two hundred fifty-two'),\n(16566, 7686, 'seven thousand six hundred eighty-six'),\n(16567, 49280, 'forty-nine thousand two hundred eighty'),\n(16568, 29623, 'twenty-nine thousand six hundred twenty-three'),\n(16569, 14298, 'fourteen thousand two hundred ninety-eight'),\n(16570, 50356, 'fifty thousand three hundred fifty-six'),\n(16571, 26867, 'twenty-six thousand eight hundred sixty-seven'),\n(16572, 67817, 'sixty-seven thousand eight hundred seventeen'),\n(16573, 25310, 'twenty-five thousand three hundred ten'),\n(16574, 24928, 'twenty-four thousand nine hundred twenty-eight'),\n(16575, 72510, 'seventy-two thousand five hundred ten'),\n(16576, 44975, 'forty-four thousand nine hundred seventy-five'),\n(16577, 23957, 'twenty-three thousand nine hundred fifty-seven'),\n(16578, 88426, 'eighty-eight thousand four hundred twenty-six'),\n(16579, 76158, 'seventy-six thousand one hundred fifty-eight'),\n(16580, 16503, 'sixteen thousand five hundred three'),\n(16581, 97127, 'ninety-seven thousand one hundred twenty-seven'),\n(16582, 93858, 'ninety-three thousand eight hundred fifty-eight'),\n(16583, 68715, 'sixty-eight thousand seven hundred fifteen'),\n(16584, 55142, 'fifty-five thousand one hundred forty-two'),\n(16585, 56164, 'fifty-six thousand one hundred sixty-four'),\n(16586, 90967, 'ninety thousand nine hundred sixty-seven'),\n(16587, 90260, 'ninety thousand two hundred sixty'),\n(16588, 5762, 'five thousand seven hundred sixty-two'),\n(16589, 6257, 'six thousand two hundred fifty-seven'),\n(16590, 81436, 'eighty-one thousand four hundred thirty-six'),\n(16591, 6830, 'six thousand eight hundred thirty'),\n(16592, 15419, 'fifteen thousand four hundred nineteen'),\n(16593, 57242, 'fifty-seven thousand two hundred forty-two'),\n(16594, 45880, 'forty-five thousand eight hundred eighty'),\n(16595, 95943, 'ninety-five thousand nine hundred forty-three'),\n(16596, 58916, 'fifty-eight thousand nine hundred sixteen'),\n(16597, 39368, 'thirty-nine thousand three hundred sixty-eight'),\n(16598, 49719, 'forty-nine thousand seven hundred nineteen'),\n(16599, 71253, 'seventy-one thousand two hundred fifty-three'),\n(16600, 78996, 'seventy-eight thousand nine hundred ninety-six'),\n(16601, 85298, 'eighty-five thousand two hundred ninety-eight'),\n(16602, 29028, 'twenty-nine thousand twenty-eight'),\n(16603, 9968, 'nine thousand nine hundred sixty-eight'),\n(16604, 19528, 'nineteen thousand five hundred twenty-eight'),\n(16605, 97740, 'ninety-seven thousand seven hundred forty'),\n(16606, 82269, 'eighty-two thousand two hundred sixty-nine'),\n(16607, 31525, 'thirty-one thousand five hundred twenty-five'),\n(16608, 84320, 'eighty-four thousand three hundred twenty'),\n(16609, 32254, 'thirty-two thousand two hundred fifty-four'),\n(16610, 82210, 'eighty-two thousand two hundred ten'),\n(16611, 4707, 'four thousand seven hundred seven'),\n(16612, 88726, 'eighty-eight thousand seven hundred twenty-six'),\n(16613, 59890, 'fifty-nine thousand eight hundred ninety'),\n(16614, 48064, 'forty-eight thousand sixty-four'),\n(16615, 79186, 'seventy-nine thousand one hundred eighty-six'),\n(16616, 96873, 'ninety-six thousand eight hundred seventy-three'),\n(16617, 67112, 'sixty-seven thousand one hundred twelve'),\n(16618, 64281, 'sixty-four thousand two hundred eighty-one'),\n(16619, 51857, 'fifty-one thousand eight hundred fifty-seven'),\n(16620, 86019, 'eighty-six thousand nineteen'),\n(16621, 1557, 'one thousand five hundred fifty-seven'),\n(16622, 70741, 'seventy thousand seven hundred forty-one'),\n(16623, 71783, 'seventy-one thousand seven hundred eighty-three'),\n(16624, 25620, 'twenty-five thousand six hundred twenty'),\n(16625, 40113, 'forty thousand one hundred thirteen'),\n(16626, 97310, 'ninety-seven thousand three hundred ten'),\n(16627, 19707, 'nineteen thousand seven hundred seven'),\n(16628, 80869, 'eighty thousand eight hundred sixty-nine'),\n(16629, 73997, 'seventy-three thousand nine hundred ninety-seven'),\n(16630, 95063, 'ninety-five thousand sixty-three'),\n(16631, 40131, 'forty thousand one hundred thirty-one'),\n(16632, 83385, 'eighty-three thousand three hundred eighty-five'),\n(16633, 17344, 'seventeen thousand three hundred forty-four'),\n(16634, 81701, 'eighty-one thousand seven hundred one'),\n(16635, 40864, 'forty thousand eight hundred sixty-four'),\n(16636, 73484, 'seventy-three thousand four hundred eighty-four'),\n(16637, 47371, 'forty-seven thousand three hundred seventy-one'),\n(16638, 13680, 'thirteen thousand six hundred eighty'),\n(16639, 58944, 'fifty-eight thousand nine hundred forty-four'),\n(16640, 48766, 'forty-eight thousand seven hundred sixty-six'),\n(16641, 56983, 'fifty-six thousand nine hundred eighty-three'),\n(16642, 49063, 'forty-nine thousand sixty-three'),\n(16643, 35055, 'thirty-five thousand fifty-five'),\n(16644, 16333, 'sixteen thousand three hundred thirty-three'),\n(16645, 2595, 'two thousand five hundred ninety-five'),\n(16646, 74693, 'seventy-four thousand six hundred ninety-three'),\n(16647, 23070, 'twenty-three thousand seventy'),\n(16648, 94879, 'ninety-four thousand eight hundred seventy-nine'),\n(16649, 78876, 'seventy-eight thousand eight hundred seventy-six'),\n(16650, 40040, 'forty thousand forty'),\n(16651, 40327, 'forty thousand three hundred twenty-seven'),\n(16652, 94773, 'ninety-four thousand seven hundred seventy-three'),\n(16653, 97894, 'ninety-seven thousand eight hundred ninety-four'),\n(16654, 28232, 'twenty-eight thousand two hundred thirty-two'),\n(16655, 41606, 'forty-one thousand six hundred six'),\n(16656, 58347, 'fifty-eight thousand three hundred forty-seven'),\n(16657, 70372, 'seventy thousand three hundred seventy-two'),\n(16658, 2307, 'two thousand three hundred seven'),\n(16659, 10443, 'ten thousand four hundred forty-three'),\n(16660, 98569, 'ninety-eight thousand five hundred sixty-nine'),\n(16661, 64822, 'sixty-four thousand eight hundred twenty-two'),\n(16662, 4020, 'four thousand twenty'),\n(16663, 61330, 'sixty-one thousand three hundred thirty'),\n(16664, 25805, 'twenty-five thousand eight hundred five'),\n(16665, 85760, 'eighty-five thousand seven hundred sixty'),\n(16666, 49823, 'forty-nine thousand eight hundred twenty-three'),\n(16667, 13946, 'thirteen thousand nine hundred forty-six'),\n(16668, 10774, 'ten thousand seven hundred seventy-four'),\n(16669, 70412, 'seventy thousand four hundred twelve'),\n(16670, 75357, 'seventy-five thousand three hundred fifty-seven'),\n(16671, 40273, 'forty thousand two hundred seventy-three'),\n(16672, 41325, 'forty-one thousand three hundred twenty-five'),\n(16673, 80069, 'eighty thousand sixty-nine'),\n(16674, 79826, 'seventy-nine thousand eight hundred twenty-six'),\n(16675, 40063, 'forty thousand sixty-three'),\n(16676, 4729, 'four thousand seven hundred twenty-nine'),\n(16677, 33520, 'thirty-three thousand five hundred twenty'),\n(16678, 10896, 'ten thousand eight hundred ninety-six'),\n(16679, 39604, 'thirty-nine thousand six hundred four'),\n(16680, 91270, 'ninety-one thousand two hundred seventy'),\n(16681, 31440, 'thirty-one thousand four hundred forty'),\n(16682, 67528, 'sixty-seven thousand five hundred twenty-eight'),\n(16683, 47873, 'forty-seven thousand eight hundred seventy-three'),\n(16684, 71769, 'seventy-one thousand seven hundred sixty-nine'),\n(16685, 41492, 'forty-one thousand four hundred ninety-two'),\n(16686, 23302, 'twenty-three thousand three hundred two'),\n(16687, 36299, 'thirty-six thousand two hundred ninety-nine'),\n(16688, 32092, 'thirty-two thousand ninety-two'),\n(16689, 74985, 'seventy-four thousand nine hundred eighty-five'),\n(16690, 92065, 'ninety-two thousand sixty-five'),\n(16691, 18205, 'eighteen thousand two hundred five'),\n(16692, 94840, 'ninety-four thousand eight hundred forty'),\n(16693, 41416, 'forty-one thousand four hundred sixteen'),\n(16694, 88002, 'eighty-eight thousand two'),\n(16695, 94338, 'ninety-four thousand three hundred thirty-eight'),\n(16696, 95261, 'ninety-five thousand two hundred sixty-one'),\n(16697, 50277, 'fifty thousand two hundred seventy-seven'),\n(16698, 17066, 'seventeen thousand sixty-six'),\n(16699, 38162, 'thirty-eight thousand one hundred sixty-two'),\n(16700, 44807, 'forty-four thousand eight hundred seven'),\n(16701, 10727, 'ten thousand seven hundred twenty-seven'),\n(16702, 14542, 'fourteen thousand five hundred forty-two'),\n(16703, 95518, 'ninety-five thousand five hundred eighteen'),\n(16704, 83077, 'eighty-three thousand seventy-seven'),\n(16705, 55666, 'fifty-five thousand six hundred sixty-six'),\n(16706, 25202, 'twenty-five thousand two hundred two'),\n(16707, 73677, 'seventy-three thousand six hundred seventy-seven'),\n(16708, 73768, 'seventy-three thousand seven hundred sixty-eight'),\n(16709, 84851, 'eighty-four thousand eight hundred fifty-one'),\n(16710, 37636, 'thirty-seven thousand six hundred thirty-six'),\n(16711, 18429, 'eighteen thousand four hundred twenty-nine'),\n(16712, 71339, 'seventy-one thousand three hundred thirty-nine'),\n(16713, 55770, 'fifty-five thousand seven hundred seventy'),\n(16714, 9861, 'nine thousand eight hundred sixty-one'),\n(16715, 17973, 'seventeen thousand nine hundred seventy-three'),\n(16716, 38438, 'thirty-eight thousand four hundred thirty-eight'),\n(16717, 67855, 'sixty-seven thousand eight hundred fifty-five'),\n(16718, 40450, 'forty thousand four hundred fifty'),\n(16719, 40228, 'forty thousand two hundred twenty-eight'),\n(16720, 75986, 'seventy-five thousand nine hundred eighty-six'),\n(16721, 4348, 'four thousand three hundred forty-eight'),\n(16722, 80956, 'eighty thousand nine hundred fifty-six'),\n(16723, 72242, 'seventy-two thousand two hundred forty-two'),\n(16724, 50975, 'fifty thousand nine hundred seventy-five'),\n(16725, 66261, 'sixty-six thousand two hundred sixty-one'),\n(16726, 74527, 'seventy-four thousand five hundred twenty-seven'),\n(16727, 73247, 'seventy-three thousand two hundred forty-seven'),\n(16728, 39306, 'thirty-nine thousand three hundred six'),\n(16729, 77488, 'seventy-seven thousand four hundred eighty-eight'),\n(16730, 46180, 'forty-six thousand one hundred eighty'),\n(16731, 41076, 'forty-one thousand seventy-six'),\n(16732, 20270, 'twenty thousand two hundred seventy'),\n(16733, 81210, 'eighty-one thousand two hundred ten'),\n(16734, 8430, 'eight thousand four hundred thirty'),\n(16735, 43882, 'forty-three thousand eight hundred eighty-two'),\n(16736, 88178, 'eighty-eight thousand one hundred seventy-eight'),\n(16737, 1745, 'one thousand seven hundred forty-five'),\n(16738, 50680, 'fifty thousand six hundred eighty'),\n(16739, 30272, 'thirty thousand two hundred seventy-two'),\n(16740, 42171, 'forty-two thousand one hundred seventy-one'),\n(16741, 15460, 'fifteen thousand four hundred sixty'),\n(16742, 15161, 'fifteen thousand one hundred sixty-one'),\n(16743, 20855, 'twenty thousand eight hundred fifty-five'),\n(16744, 38718, 'thirty-eight thousand seven hundred eighteen'),\n(16745, 4495, 'four thousand four hundred ninety-five'),\n(16746, 25727, 'twenty-five thousand seven hundred twenty-seven'),\n(16747, 77573, 'seventy-seven thousand five hundred seventy-three'),\n(16748, 161, 'one hundred sixty-one'),\n(16749, 91763, 'ninety-one thousand seven hundred sixty-three'),\n(16750, 96121, 'ninety-six thousand one hundred twenty-one'),\n(16751, 94514, 'ninety-four thousand five hundred fourteen'),\n(16752, 84448, 'eighty-four thousand four hundred forty-eight'),\n(16753, 54246, 'fifty-four thousand two hundred forty-six'),\n(16754, 70057, 'seventy thousand fifty-seven'),\n(16755, 1893, 'one thousand eight hundred ninety-three'),\n(16756, 65360, 'sixty-five thousand three hundred sixty'),\n(16757, 68082, 'sixty-eight thousand eighty-two'),\n(16758, 94486, 'ninety-four thousand four hundred eighty-six'),\n(16759, 16424, 'sixteen thousand four hundred twenty-four'),\n(16760, 8171, 'eight thousand one hundred seventy-one'),\n(16761, 66650, 'sixty-six thousand six hundred fifty'),\n(16762, 57761, 'fifty-seven thousand seven hundred sixty-one'),\n(16763, 81716, 'eighty-one thousand seven hundred sixteen'),\n(16764, 20959, 'twenty thousand nine hundred fifty-nine'),\n(16765, 64886, 'sixty-four thousand eight hundred eighty-six'),\n(16766, 11942, 'eleven thousand nine hundred forty-two'),\n(16767, 43713, 'forty-three thousand seven hundred thirteen'),\n(16768, 27009, 'twenty-seven thousand nine'),\n(16769, 65097, 'sixty-five thousand ninety-seven'),\n(16770, 224, 'two hundred twenty-four'),\n(16771, 68279, 'sixty-eight thousand two hundred seventy-nine'),\n(16772, 75585, 'seventy-five thousand five hundred eighty-five'),\n(16773, 25412, 'twenty-five thousand four hundred twelve'),\n(16774, 8120, 'eight thousand one hundred twenty'),\n(16775, 77387, 'seventy-seven thousand three hundred eighty-seven'),\n(16776, 55274, 'fifty-five thousand two hundred seventy-four'),\n(16777, 98376, 'ninety-eight thousand three hundred seventy-six'),\n(16778, 32920, 'thirty-two thousand nine hundred twenty'),\n(16779, 9442, 'nine thousand four hundred forty-two'),\n(16780, 47345, 'forty-seven thousand three hundred forty-five'),\n(16781, 80701, 'eighty thousand seven hundred one'),\n(16782, 81536, 'eighty-one thousand five hundred thirty-six'),\n(16783, 24773, 'twenty-four thousand seven hundred seventy-three'),\n(16784, 43372, 'forty-three thousand three hundred seventy-two'),\n(16785, 98513, 'ninety-eight thousand five hundred thirteen'),\n(16786, 75910, 'seventy-five thousand nine hundred ten'),\n(16787, 43921, 'forty-three thousand nine hundred twenty-one'),\n(16788, 67223, 'sixty-seven thousand two hundred twenty-three'),\n(16789, 16180, 'sixteen thousand one hundred eighty'),\n(16790, 5120, 'five thousand one hundred twenty'),\n(16791, 33007, 'thirty-three thousand seven'),\n(16792, 16289, 'sixteen thousand two hundred eighty-nine'),\n(16793, 9307, 'nine thousand three hundred seven'),\n(16794, 99746, 'ninety-nine thousand seven hundred forty-six'),\n(16795, 4384, 'four thousand three hundred eighty-four'),\n(16796, 34029, 'thirty-four thousand twenty-nine'),\n(16797, 52498, 'fifty-two thousand four hundred ninety-eight'),\n(16798, 25558, 'twenty-five thousand five hundred fifty-eight'),\n(16799, 45698, 'forty-five thousand six hundred ninety-eight'),\n(16800, 46660, 'forty-six thousand six hundred sixty'),\n(16801, 62847, 'sixty-two thousand eight hundred forty-seven'),\n(16802, 87048, 'eighty-seven thousand forty-eight'),\n(16803, 36782, 'thirty-six thousand seven hundred eighty-two'),\n(16804, 29840, 'twenty-nine thousand eight hundred forty'),\n(16805, 87985, 'eighty-seven thousand nine hundred eighty-five'),\n(16806, 49742, 'forty-nine thousand seven hundred forty-two'),\n(16807, 45591, 'forty-five thousand five hundred ninety-one'),\n(16808, 88951, 'eighty-eight thousand nine hundred fifty-one'),\n(16809, 91650, 'ninety-one thousand six hundred fifty'),\n(16810, 5211, 'five thousand two hundred eleven'),\n(16811, 72990, 'seventy-two thousand nine hundred ninety'),\n(16812, 11207, 'eleven thousand two hundred seven'),\n(16813, 75821, 'seventy-five thousand eight hundred twenty-one'),\n(16814, 80781, 'eighty thousand seven hundred eighty-one'),\n(16815, 81383, 'eighty-one thousand three hundred eighty-three'),\n(16816, 54858, 'fifty-four thousand eight hundred fifty-eight'),\n(16817, 23954, 'twenty-three thousand nine hundred fifty-four'),\n(16818, 16825, 'sixteen thousand eight hundred twenty-five'),\n(16819, 20043, 'twenty thousand forty-three'),\n(16820, 25323, 'twenty-five thousand three hundred twenty-three'),\n(16821, 88853, 'eighty-eight thousand eight hundred fifty-three'),\n(16822, 66251, 'sixty-six thousand two hundred fifty-one'),\n(16823, 53299, 'fifty-three thousand two hundred ninety-nine'),\n(16824, 73133, 'seventy-three thousand one hundred thirty-three'),\n(16825, 54252, 'fifty-four thousand two hundred fifty-two'),\n(16826, 42210, 'forty-two thousand two hundred ten'),\n(16827, 1008, 'one thousand eight'),\n(16828, 88511, 'eighty-eight thousand five hundred eleven'),\n(16829, 94909, 'ninety-four thousand nine hundred nine'),\n(16830, 90538, 'ninety thousand five hundred thirty-eight'),\n(16831, 5984, 'five thousand nine hundred eighty-four'),\n(16832, 64051, 'sixty-four thousand fifty-one'),\n(16833, 93119, 'ninety-three thousand one hundred nineteen'),\n(16834, 2658, 'two thousand six hundred fifty-eight'),\n(16835, 5181, 'five thousand one hundred eighty-one'),\n(16836, 6647, 'six thousand six hundred forty-seven'),\n(16837, 13864, 'thirteen thousand eight hundred sixty-four'),\n(16838, 21195, 'twenty-one thousand one hundred ninety-five'),\n(16839, 31379, 'thirty-one thousand three hundred seventy-nine'),\n(16840, 20884, 'twenty thousand eight hundred eighty-four'),\n(16841, 31841, 'thirty-one thousand eight hundred forty-one'),\n(16842, 17804, 'seventeen thousand eight hundred four'),\n(16843, 34418, 'thirty-four thousand four hundred eighteen'),\n(16844, 81012, 'eighty-one thousand twelve'),\n(16845, 34202, 'thirty-four thousand two hundred two'),\n(16846, 41365, 'forty-one thousand three hundred sixty-five'),\n(16847, 57005, 'fifty-seven thousand five'),\n(16848, 13783, 'thirteen thousand seven hundred eighty-three'),\n(16849, 26317, 'twenty-six thousand three hundred seventeen'),\n(16850, 15735, 'fifteen thousand seven hundred thirty-five'),\n(16851, 52702, 'fifty-two thousand seven hundred two'),\n(16852, 46999, 'forty-six thousand nine hundred ninety-nine'),\n(16853, 17673, 'seventeen thousand six hundred seventy-three'),\n(16854, 34843, 'thirty-four thousand eight hundred forty-three'),\n(16855, 91000, 'ninety-one thousand'),\n(16856, 23654, 'twenty-three thousand six hundred fifty-four'),\n(16857, 39864, 'thirty-nine thousand eight hundred sixty-four'),\n(16858, 36335, 'thirty-six thousand three hundred thirty-five'),\n(16859, 62564, 'sixty-two thousand five hundred sixty-four'),\n(16860, 10970, 'ten thousand nine hundred seventy'),\n(16861, 54194, 'fifty-four thousand one hundred ninety-four'),\n(16862, 7003, 'seven thousand three'),\n(16863, 42238, 'forty-two thousand two hundred thirty-eight'),\n(16864, 86694, 'eighty-six thousand six hundred ninety-four'),\n(16865, 76589, 'seventy-six thousand five hundred eighty-nine'),\n(16866, 2153, 'two thousand one hundred fifty-three'),\n(16867, 5233, 'five thousand two hundred thirty-three'),\n(16868, 51793, 'fifty-one thousand seven hundred ninety-three'),\n(16869, 88978, 'eighty-eight thousand nine hundred seventy-eight'),\n(16870, 21437, 'twenty-one thousand four hundred thirty-seven'),\n(16871, 49746, 'forty-nine thousand seven hundred forty-six'),\n(16872, 75343, 'seventy-five thousand three hundred forty-three'),\n(16873, 84019, 'eighty-four thousand nineteen'),\n(16874, 5524, 'five thousand five hundred twenty-four'),\n(16875, 92466, 'ninety-two thousand four hundred sixty-six'),\n(16876, 94043, 'ninety-four thousand forty-three'),\n(16877, 41692, 'forty-one thousand six hundred ninety-two'),\n(16878, 60075, 'sixty thousand seventy-five'),\n(16879, 57777, 'fifty-seven thousand seven hundred seventy-seven'),\n(16880, 63361, 'sixty-three thousand three hundred sixty-one'),\n(16881, 12691, 'twelve thousand six hundred ninety-one'),\n(16882, 35852, 'thirty-five thousand eight hundred fifty-two'),\n(16883, 89924, 'eighty-nine thousand nine hundred twenty-four'),\n(16884, 37922, 'thirty-seven thousand nine hundred twenty-two'),\n(16885, 19978, 'nineteen thousand nine hundred seventy-eight'),\n(16886, 69874, 'sixty-nine thousand eight hundred seventy-four'),\n(16887, 37673, 'thirty-seven thousand six hundred seventy-three'),\n(16888, 47718, 'forty-seven thousand seven hundred eighteen'),\n(16889, 81335, 'eighty-one thousand three hundred thirty-five'),\n(16890, 20094, 'twenty thousand ninety-four'),\n(16891, 39051, 'thirty-nine thousand fifty-one'),\n(16892, 87785, 'eighty-seven thousand seven hundred eighty-five'),\n(16893, 3777, 'three thousand seven hundred seventy-seven'),\n(16894, 48554, 'forty-eight thousand five hundred fifty-four'),\n(16895, 55848, 'fifty-five thousand eight hundred forty-eight'),\n(16896, 65128, 'sixty-five thousand one hundred twenty-eight'),\n(16897, 866, 'eight hundred sixty-six'),\n(16898, 91552, 'ninety-one thousand five hundred fifty-two'),\n(16899, 42745, 'forty-two thousand seven hundred forty-five'),\n(16900, 44360, 'forty-four thousand three hundred sixty'),\n(16901, 76329, 'seventy-six thousand three hundred twenty-nine'),\n(16902, 39101, 'thirty-nine thousand one hundred one'),\n(16903, 87458, 'eighty-seven thousand four hundred fifty-eight'),\n(16904, 11345, 'eleven thousand three hundred forty-five'),\n(16905, 60509, 'sixty thousand five hundred nine'),\n(16906, 65765, 'sixty-five thousand seven hundred sixty-five'),\n(16907, 1938, 'one thousand nine hundred thirty-eight'),\n(16908, 51533, 'fifty-one thousand five hundred thirty-three'),\n(16909, 51167, 'fifty-one thousand one hundred sixty-seven'),\n(16910, 32618, 'thirty-two thousand six hundred eighteen'),\n(16911, 2213, 'two thousand two hundred thirteen'),\n(16912, 90188, 'ninety thousand one hundred eighty-eight'),\n(16913, 33544, 'thirty-three thousand five hundred forty-four'),\n(16914, 36602, 'thirty-six thousand six hundred two'),\n(16915, 59814, 'fifty-nine thousand eight hundred fourteen'),\n(16916, 58502, 'fifty-eight thousand five hundred two'),\n(16917, 14464, 'fourteen thousand four hundred sixty-four'),\n(16918, 60101, 'sixty thousand one hundred one'),\n(16919, 54040, 'fifty-four thousand forty'),\n(16920, 90217, 'ninety thousand two hundred seventeen'),\n(16921, 29392, 'twenty-nine thousand three hundred ninety-two'),\n(16922, 91626, 'ninety-one thousand six hundred twenty-six'),\n(16923, 75991, 'seventy-five thousand nine hundred ninety-one'),\n(16924, 15585, 'fifteen thousand five hundred eighty-five'),\n(16925, 64082, 'sixty-four thousand eighty-two'),\n(16926, 38232, 'thirty-eight thousand two hundred thirty-two'),\n(16927, 11196, 'eleven thousand one hundred ninety-six'),\n(16928, 30689, 'thirty thousand six hundred eighty-nine'),\n(16929, 28855, 'twenty-eight thousand eight hundred fifty-five'),\n(16930, 32059, 'thirty-two thousand fifty-nine'),\n(16931, 91177, 'ninety-one thousand one hundred seventy-seven'),\n(16932, 53387, 'fifty-three thousand three hundred eighty-seven'),\n(16933, 42930, 'forty-two thousand nine hundred thirty'),\n(16934, 27797, 'twenty-seven thousand seven hundred ninety-seven'),\n(16935, 41899, 'forty-one thousand eight hundred ninety-nine'),\n(16936, 77488, 'seventy-seven thousand four hundred eighty-eight'),\n(16937, 79068, 'seventy-nine thousand sixty-eight'),\n(16938, 47908, 'forty-seven thousand nine hundred eight'),\n(16939, 19993, 'nineteen thousand nine hundred ninety-three'),\n(16940, 58154, 'fifty-eight thousand one hundred fifty-four'),\n(16941, 4725, 'four thousand seven hundred twenty-five'),\n(16942, 36570, 'thirty-six thousand five hundred seventy'),\n(16943, 6516, 'six thousand five hundred sixteen'),\n(16944, 7855, 'seven thousand eight hundred fifty-five'),\n(16945, 47358, 'forty-seven thousand three hundred fifty-eight'),\n(16946, 99510, 'ninety-nine thousand five hundred ten'),\n(16947, 81640, 'eighty-one thousand six hundred forty'),\n(16948, 76124, 'seventy-six thousand one hundred twenty-four'),\n(16949, 21127, 'twenty-one thousand one hundred twenty-seven'),\n(16950, 23642, 'twenty-three thousand six hundred forty-two'),\n(16951, 34613, 'thirty-four thousand six hundred thirteen'),\n(16952, 12952, 'twelve thousand nine hundred fifty-two'),\n(16953, 30383, 'thirty thousand three hundred eighty-three'),\n(16954, 76084, 'seventy-six thousand eighty-four'),\n(16955, 32886, 'thirty-two thousand eight hundred eighty-six'),\n(16956, 82780, 'eighty-two thousand seven hundred eighty'),\n(16957, 23413, 'twenty-three thousand four hundred thirteen'),\n(16958, 70806, 'seventy thousand eight hundred six'),\n(16959, 10306, 'ten thousand three hundred six'),\n(16960, 96443, 'ninety-six thousand four hundred forty-three'),\n(16961, 26933, 'twenty-six thousand nine hundred thirty-three'),\n(16962, 34535, 'thirty-four thousand five hundred thirty-five'),\n(16963, 60531, 'sixty thousand five hundred thirty-one'),\n(16964, 67857, 'sixty-seven thousand eight hundred fifty-seven'),\n(16965, 25588, 'twenty-five thousand five hundred eighty-eight'),\n(16966, 93291, 'ninety-three thousand two hundred ninety-one'),\n(16967, 75840, 'seventy-five thousand eight hundred forty'),\n(16968, 54350, 'fifty-four thousand three hundred fifty'),\n(16969, 9060, 'nine thousand sixty'),\n(16970, 21383, 'twenty-one thousand three hundred eighty-three'),\n(16971, 77407, 'seventy-seven thousand four hundred seven'),\n(16972, 70534, 'seventy thousand five hundred thirty-four'),\n(16973, 6166, 'six thousand one hundred sixty-six'),\n(16974, 27907, 'twenty-seven thousand nine hundred seven'),\n(16975, 14888, 'fourteen thousand eight hundred eighty-eight'),\n(16976, 91496, 'ninety-one thousand four hundred ninety-six'),\n(16977, 74124, 'seventy-four thousand one hundred twenty-four'),\n(16978, 38036, 'thirty-eight thousand thirty-six'),\n(16979, 31916, 'thirty-one thousand nine hundred sixteen'),\n(16980, 81656, 'eighty-one thousand six hundred fifty-six'),\n(16981, 33247, 'thirty-three thousand two hundred forty-seven'),\n(16982, 10253, 'ten thousand two hundred fifty-three'),\n(16983, 66230, 'sixty-six thousand two hundred thirty'),\n(16984, 9165, 'nine thousand one hundred sixty-five'),\n(16985, 2763, 'two thousand seven hundred sixty-three'),\n(16986, 63257, 'sixty-three thousand two hundred fifty-seven'),\n(16987, 51111, 'fifty-one thousand one hundred eleven'),\n(16988, 93673, 'ninety-three thousand six hundred seventy-three'),\n(16989, 65158, 'sixty-five thousand one hundred fifty-eight'),\n(16990, 25098, 'twenty-five thousand ninety-eight'),\n(16991, 41649, 'forty-one thousand six hundred forty-nine'),\n(16992, 92139, 'ninety-two thousand one hundred thirty-nine'),\n(16993, 68270, 'sixty-eight thousand two hundred seventy'),\n(16994, 89759, 'eighty-nine thousand seven hundred fifty-nine'),\n(16995, 58740, 'fifty-eight thousand seven hundred forty'),\n(16996, 28522, 'twenty-eight thousand five hundred twenty-two'),\n(16997, 65057, 'sixty-five thousand fifty-seven'),\n(16998, 75102, 'seventy-five thousand one hundred two'),\n(16999, 95953, 'ninety-five thousand nine hundred fifty-three'),\n(17000, 2106, 'two thousand one hundred six'),\n(17001, 63494, 'sixty-three thousand four hundred ninety-four'),\n(17002, 35242, 'thirty-five thousand two hundred forty-two'),\n(17003, 97552, 'ninety-seven thousand five hundred fifty-two'),\n(17004, 56337, 'fifty-six thousand three hundred thirty-seven'),\n(17005, 82048, 'eighty-two thousand forty-eight'),\n(17006, 62080, 'sixty-two thousand eighty'),\n(17007, 60988, 'sixty thousand nine hundred eighty-eight'),\n(17008, 97047, 'ninety-seven thousand forty-seven'),\n(17009, 81550, 'eighty-one thousand five hundred fifty'),\n(17010, 46611, 'forty-six thousand six hundred eleven'),\n(17011, 53479, 'fifty-three thousand four hundred seventy-nine'),\n(17012, 60548, 'sixty thousand five hundred forty-eight'),\n(17013, 92466, 'ninety-two thousand four hundred sixty-six'),\n(17014, 21052, 'twenty-one thousand fifty-two'),\n(17015, 49849, 'forty-nine thousand eight hundred forty-nine'),\n(17016, 34225, 'thirty-four thousand two hundred twenty-five'),\n(17017, 39376, 'thirty-nine thousand three hundred seventy-six'),\n(17018, 4686, 'four thousand six hundred eighty-six'),\n(17019, 81570, 'eighty-one thousand five hundred seventy'),\n(17020, 46477, 'forty-six thousand four hundred seventy-seven'),\n(17021, 77972, 'seventy-seven thousand nine hundred seventy-two'),\n(17022, 39055, 'thirty-nine thousand fifty-five'),\n(17023, 95375, 'ninety-five thousand three hundred seventy-five'),\n(17024, 91815, 'ninety-one thousand eight hundred fifteen'),\n(17025, 735, 'seven hundred thirty-five'),\n(17026, 43397, 'forty-three thousand three hundred ninety-seven'),\n(17027, 45161, 'forty-five thousand one hundred sixty-one'),\n(17028, 39624, 'thirty-nine thousand six hundred twenty-four'),\n(17029, 16783, 'sixteen thousand seven hundred eighty-three'),\n(17030, 19972, 'nineteen thousand nine hundred seventy-two'),\n(17031, 52155, 'fifty-two thousand one hundred fifty-five'),\n(17032, 4652, 'four thousand six hundred fifty-two'),\n(17033, 39468, 'thirty-nine thousand four hundred sixty-eight'),\n(17034, 68683, 'sixty-eight thousand six hundred eighty-three'),\n(17035, 81991, 'eighty-one thousand nine hundred ninety-one'),\n(17036, 15181, 'fifteen thousand one hundred eighty-one'),\n(17037, 27494, 'twenty-seven thousand four hundred ninety-four'),\n(17038, 71154, 'seventy-one thousand one hundred fifty-four'),\n(17039, 11199, 'eleven thousand one hundred ninety-nine'),\n(17040, 62844, 'sixty-two thousand eight hundred forty-four'),\n(17041, 15174, 'fifteen thousand one hundred seventy-four'),\n(17042, 32416, 'thirty-two thousand four hundred sixteen'),\n(17043, 70650, 'seventy thousand six hundred fifty'),\n(17044, 18574, 'eighteen thousand five hundred seventy-four'),\n(17045, 22158, 'twenty-two thousand one hundred fifty-eight'),\n(17046, 49011, 'forty-nine thousand eleven'),\n(17047, 30590, 'thirty thousand five hundred ninety'),\n(17048, 24304, 'twenty-four thousand three hundred four'),\n(17049, 81443, 'eighty-one thousand four hundred forty-three'),\n(17050, 2895, 'two thousand eight hundred ninety-five'),\n(17051, 85918, 'eighty-five thousand nine hundred eighteen'),\n(17052, 38673, 'thirty-eight thousand six hundred seventy-three'),\n(17053, 19919, 'nineteen thousand nine hundred nineteen'),\n(17054, 31687, 'thirty-one thousand six hundred eighty-seven'),\n(17055, 78710, 'seventy-eight thousand seven hundred ten'),\n(17056, 58359, 'fifty-eight thousand three hundred fifty-nine'),\n(17057, 16313, 'sixteen thousand three hundred thirteen'),\n(17058, 51524, 'fifty-one thousand five hundred twenty-four'),\n(17059, 94909, 'ninety-four thousand nine hundred nine'),\n(17060, 97295, 'ninety-seven thousand two hundred ninety-five'),\n(17061, 22096, 'twenty-two thousand ninety-six'),\n(17062, 54751, 'fifty-four thousand seven hundred fifty-one'),\n(17063, 42063, 'forty-two thousand sixty-three'),\n(17064, 91707, 'ninety-one thousand seven hundred seven'),\n(17065, 28529, 'twenty-eight thousand five hundred twenty-nine'),\n(17066, 98122, 'ninety-eight thousand one hundred twenty-two'),\n(17067, 29868, 'twenty-nine thousand eight hundred sixty-eight'),\n(17068, 35526, 'thirty-five thousand five hundred twenty-six'),\n(17069, 59778, 'fifty-nine thousand seven hundred seventy-eight'),\n(17070, 22656, 'twenty-two thousand six hundred fifty-six'),\n(17071, 93149, 'ninety-three thousand one hundred forty-nine'),\n(17072, 63377, 'sixty-three thousand three hundred seventy-seven'),\n(17073, 93865, 'ninety-three thousand eight hundred sixty-five'),\n(17074, 14180, 'fourteen thousand one hundred eighty'),\n(17075, 34188, 'thirty-four thousand one hundred eighty-eight'),\n(17076, 89235, 'eighty-nine thousand two hundred thirty-five'),\n(17077, 93828, 'ninety-three thousand eight hundred twenty-eight'),\n(17078, 7899, 'seven thousand eight hundred ninety-nine'),\n(17079, 98138, 'ninety-eight thousand one hundred thirty-eight'),\n(17080, 80323, 'eighty thousand three hundred twenty-three'),\n(17081, 53807, 'fifty-three thousand eight hundred seven'),\n(17082, 20562, 'twenty thousand five hundred sixty-two'),\n(17083, 58572, 'fifty-eight thousand five hundred seventy-two'),\n(17084, 46951, 'forty-six thousand nine hundred fifty-one'),\n(17085, 90458, 'ninety thousand four hundred fifty-eight'),\n(17086, 59746, 'fifty-nine thousand seven hundred forty-six'),\n(17087, 98561, 'ninety-eight thousand five hundred sixty-one'),\n(17088, 36478, 'thirty-six thousand four hundred seventy-eight'),\n(17089, 45280, 'forty-five thousand two hundred eighty'),\n(17090, 12372, 'twelve thousand three hundred seventy-two'),\n(17091, 60392, 'sixty thousand three hundred ninety-two'),\n(17092, 62, 'sixty-two'),\n(17093, 99396, 'ninety-nine thousand three hundred ninety-six'),\n(17094, 67809, 'sixty-seven thousand eight hundred nine'),\n(17095, 48807, 'forty-eight thousand eight hundred seven'),\n(17096, 72405, 'seventy-two thousand four hundred five'),\n(17097, 57368, 'fifty-seven thousand three hundred sixty-eight'),\n(17098, 69057, 'sixty-nine thousand fifty-seven'),\n(17099, 15945, 'fifteen thousand nine hundred forty-five'),\n(17100, 43936, 'forty-three thousand nine hundred thirty-six'),\n(17101, 89880, 'eighty-nine thousand eight hundred eighty'),\n(17102, 21105, 'twenty-one thousand one hundred five'),\n(17103, 87808, 'eighty-seven thousand eight hundred eight'),\n(17104, 55528, 'fifty-five thousand five hundred twenty-eight'),\n(17105, 89706, 'eighty-nine thousand seven hundred six'),\n(17106, 81463, 'eighty-one thousand four hundred sixty-three'),\n(17107, 78574, 'seventy-eight thousand five hundred seventy-four'),\n(17108, 52927, 'fifty-two thousand nine hundred twenty-seven'),\n(17109, 93016, 'ninety-three thousand sixteen'),\n(17110, 3222, 'three thousand two hundred twenty-two'),\n(17111, 18419, 'eighteen thousand four hundred nineteen'),\n(17112, 95128, 'ninety-five thousand one hundred twenty-eight'),\n(17113, 64838, 'sixty-four thousand eight hundred thirty-eight'),\n(17114, 69028, 'sixty-nine thousand twenty-eight'),\n(17115, 78468, 'seventy-eight thousand four hundred sixty-eight'),\n(17116, 6485, 'six thousand four hundred eighty-five'),\n(17117, 55154, 'fifty-five thousand one hundred fifty-four'),\n(17118, 73539, 'seventy-three thousand five hundred thirty-nine'),\n(17119, 33698, 'thirty-three thousand six hundred ninety-eight'),\n(17120, 83939, 'eighty-three thousand nine hundred thirty-nine'),\n(17121, 14141, 'fourteen thousand one hundred forty-one'),\n(17122, 86954, 'eighty-six thousand nine hundred fifty-four'),\n(17123, 8303, 'eight thousand three hundred three'),\n(17124, 55917, 'fifty-five thousand nine hundred seventeen'),\n(17125, 9175, 'nine thousand one hundred seventy-five'),\n(17126, 96897, 'ninety-six thousand eight hundred ninety-seven'),\n(17127, 68871, 'sixty-eight thousand eight hundred seventy-one'),\n(17128, 10538, 'ten thousand five hundred thirty-eight'),\n(17129, 73302, 'seventy-three thousand three hundred two'),\n(17130, 34807, 'thirty-four thousand eight hundred seven'),\n(17131, 17621, 'seventeen thousand six hundred twenty-one'),\n(17132, 4673, 'four thousand six hundred seventy-three'),\n(17133, 90590, 'ninety thousand five hundred ninety'),\n(17134, 25996, 'twenty-five thousand nine hundred ninety-six'),\n(17135, 33932, 'thirty-three thousand nine hundred thirty-two'),\n(17136, 40592, 'forty thousand five hundred ninety-two'),\n(17137, 95991, 'ninety-five thousand nine hundred ninety-one'),\n(17138, 91788, 'ninety-one thousand seven hundred eighty-eight'),\n(17139, 41981, 'forty-one thousand nine hundred eighty-one'),\n(17140, 65715, 'sixty-five thousand seven hundred fifteen'),\n(17141, 22104, 'twenty-two thousand one hundred four'),\n(17142, 53630, 'fifty-three thousand six hundred thirty'),\n(17143, 54650, 'fifty-four thousand six hundred fifty'),\n(17144, 36936, 'thirty-six thousand nine hundred thirty-six'),\n(17145, 93432, 'ninety-three thousand four hundred thirty-two'),\n(17146, 24318, 'twenty-four thousand three hundred eighteen'),\n(17147, 92624, 'ninety-two thousand six hundred twenty-four'),\n(17148, 10678, 'ten thousand six hundred seventy-eight'),\n(17149, 79128, 'seventy-nine thousand one hundred twenty-eight'),\n(17150, 59929, 'fifty-nine thousand nine hundred twenty-nine'),\n(17151, 9996, 'nine thousand nine hundred ninety-six'),\n(17152, 50132, 'fifty thousand one hundred thirty-two'),\n(17153, 4093, 'four thousand ninety-three'),\n(17154, 76092, 'seventy-six thousand ninety-two'),\n(17155, 34664, 'thirty-four thousand six hundred sixty-four'),\n(17156, 21112, 'twenty-one thousand one hundred twelve'),\n(17157, 55122, 'fifty-five thousand one hundred twenty-two'),\n(17158, 59103, 'fifty-nine thousand one hundred three'),\n(17159, 87026, 'eighty-seven thousand twenty-six'),\n(17160, 65022, 'sixty-five thousand twenty-two'),\n(17161, 27318, 'twenty-seven thousand three hundred eighteen'),\n(17162, 17662, 'seventeen thousand six hundred sixty-two'),\n(17163, 46278, 'forty-six thousand two hundred seventy-eight'),\n(17164, 77712, 'seventy-seven thousand seven hundred twelve'),\n(17165, 53207, 'fifty-three thousand two hundred seven'),\n(17166, 23658, 'twenty-three thousand six hundred fifty-eight'),\n(17167, 26472, 'twenty-six thousand four hundred seventy-two'),\n(17168, 67377, 'sixty-seven thousand three hundred seventy-seven'),\n(17169, 888, 'eight hundred eighty-eight'),\n(17170, 8775, 'eight thousand seven hundred seventy-five'),\n(17171, 58278, 'fifty-eight thousand two hundred seventy-eight'),\n(17172, 48347, 'forty-eight thousand three hundred forty-seven'),\n(17173, 76870, 'seventy-six thousand eight hundred seventy'),\n(17174, 65663, 'sixty-five thousand six hundred sixty-three'),\n(17175, 90062, 'ninety thousand sixty-two'),\n(17176, 8813, 'eight thousand eight hundred thirteen'),\n(17177, 37052, 'thirty-seven thousand fifty-two'),\n(17178, 72063, 'seventy-two thousand sixty-three'),\n(17179, 10988, 'ten thousand nine hundred eighty-eight'),\n(17180, 3149, 'three thousand one hundred forty-nine'),\n(17181, 33735, 'thirty-three thousand seven hundred thirty-five'),\n(17182, 87434, 'eighty-seven thousand four hundred thirty-four'),\n(17183, 8757, 'eight thousand seven hundred fifty-seven'),\n(17184, 95461, 'ninety-five thousand four hundred sixty-one'),\n(17185, 56422, 'fifty-six thousand four hundred twenty-two'),\n(17186, 91783, 'ninety-one thousand seven hundred eighty-three'),\n(17187, 10699, 'ten thousand six hundred ninety-nine'),\n(17188, 21675, 'twenty-one thousand six hundred seventy-five'),\n(17189, 53553, 'fifty-three thousand five hundred fifty-three'),\n(17190, 88533, 'eighty-eight thousand five hundred thirty-three'),\n(17191, 2480, 'two thousand four hundred eighty'),\n(17192, 38926, 'thirty-eight thousand nine hundred twenty-six'),\n(17193, 65269, 'sixty-five thousand two hundred sixty-nine'),\n(17194, 26628, 'twenty-six thousand six hundred twenty-eight'),\n(17195, 32774, 'thirty-two thousand seven hundred seventy-four'),\n(17196, 46194, 'forty-six thousand one hundred ninety-four'),\n(17197, 96839, 'ninety-six thousand eight hundred thirty-nine'),\n(17198, 91090, 'ninety-one thousand ninety'),\n(17199, 8269, 'eight thousand two hundred sixty-nine'),\n(17200, 63390, 'sixty-three thousand three hundred ninety'),\n(17201, 83483, 'eighty-three thousand four hundred eighty-three'),\n(17202, 47181, 'forty-seven thousand one hundred eighty-one'),\n(17203, 13357, 'thirteen thousand three hundred fifty-seven'),\n(17204, 98189, 'ninety-eight thousand one hundred eighty-nine'),\n(17205, 78812, 'seventy-eight thousand eight hundred twelve'),\n(17206, 14344, 'fourteen thousand three hundred forty-four'),\n(17207, 84390, 'eighty-four thousand three hundred ninety'),\n(17208, 14158, 'fourteen thousand one hundred fifty-eight'),\n(17209, 93841, 'ninety-three thousand eight hundred forty-one'),\n(17210, 21158, 'twenty-one thousand one hundred fifty-eight'),\n(17211, 50851, 'fifty thousand eight hundred fifty-one'),\n(17212, 70584, 'seventy thousand five hundred eighty-four'),\n(17213, 85215, 'eighty-five thousand two hundred fifteen'),\n(17214, 82167, 'eighty-two thousand one hundred sixty-seven'),\n(17215, 41063, 'forty-one thousand sixty-three'),\n(17216, 93141, 'ninety-three thousand one hundred forty-one'),\n(17217, 84600, 'eighty-four thousand six hundred'),\n(17218, 49293, 'forty-nine thousand two hundred ninety-three'),\n(17219, 33538, 'thirty-three thousand five hundred thirty-eight'),\n(17220, 30856, 'thirty thousand eight hundred fifty-six'),\n(17221, 48479, 'forty-eight thousand four hundred seventy-nine'),\n(17222, 13694, 'thirteen thousand six hundred ninety-four'),\n(17223, 76600, 'seventy-six thousand six hundred'),\n(17224, 59023, 'fifty-nine thousand twenty-three'),\n(17225, 54963, 'fifty-four thousand nine hundred sixty-three'),\n(17226, 39854, 'thirty-nine thousand eight hundred fifty-four'),\n(17227, 40256, 'forty thousand two hundred fifty-six'),\n(17228, 28092, 'twenty-eight thousand ninety-two'),\n(17229, 27349, 'twenty-seven thousand three hundred forty-nine'),\n(17230, 47690, 'forty-seven thousand six hundred ninety'),\n(17231, 46433, 'forty-six thousand four hundred thirty-three'),\n(17232, 41026, 'forty-one thousand twenty-six'),\n(17233, 53599, 'fifty-three thousand five hundred ninety-nine'),\n(17234, 30550, 'thirty thousand five hundred fifty'),\n(17235, 61934, 'sixty-one thousand nine hundred thirty-four'),\n(17236, 53803, 'fifty-three thousand eight hundred three'),\n(17237, 91617, 'ninety-one thousand six hundred seventeen'),\n(17238, 53567, 'fifty-three thousand five hundred sixty-seven'),\n(17239, 64500, 'sixty-four thousand five hundred'),\n(17240, 98670, 'ninety-eight thousand six hundred seventy'),\n(17241, 17892, 'seventeen thousand eight hundred ninety-two'),\n(17242, 27127, 'twenty-seven thousand one hundred twenty-seven'),\n(17243, 96444, 'ninety-six thousand four hundred forty-four'),\n(17244, 60476, 'sixty thousand four hundred seventy-six'),\n(17245, 67161, 'sixty-seven thousand one hundred sixty-one'),\n(17246, 63900, 'sixty-three thousand nine hundred'),\n(17247, 2094, 'two thousand ninety-four'),\n(17248, 52811, 'fifty-two thousand eight hundred eleven'),\n(17249, 74228, 'seventy-four thousand two hundred twenty-eight'),\n(17250, 37440, 'thirty-seven thousand four hundred forty'),\n(17251, 89085, 'eighty-nine thousand eighty-five'),\n(17252, 59547, 'fifty-nine thousand five hundred forty-seven'),\n(17253, 60700, 'sixty thousand seven hundred'),\n(17254, 53466, 'fifty-three thousand four hundred sixty-six'),\n(17255, 66011, 'sixty-six thousand eleven'),\n(17256, 34632, 'thirty-four thousand six hundred thirty-two'),\n(17257, 41468, 'forty-one thousand four hundred sixty-eight'),\n(17258, 94596, 'ninety-four thousand five hundred ninety-six'),\n(17259, 55601, 'fifty-five thousand six hundred one'),\n(17260, 5446, 'five thousand four hundred forty-six'),\n(17261, 88094, 'eighty-eight thousand ninety-four'),\n(17262, 72755, 'seventy-two thousand seven hundred fifty-five'),\n(17263, 66707, 'sixty-six thousand seven hundred seven'),\n(17264, 8056, 'eight thousand fifty-six'),\n(17265, 30860, 'thirty thousand eight hundred sixty'),\n(17266, 19647, 'nineteen thousand six hundred forty-seven'),\n(17267, 77559, 'seventy-seven thousand five hundred fifty-nine'),\n(17268, 35563, 'thirty-five thousand five hundred sixty-three'),\n(17269, 46642, 'forty-six thousand six hundred forty-two'),\n(17270, 99099, 'ninety-nine thousand ninety-nine'),\n(17271, 9219, 'nine thousand two hundred nineteen'),\n(17272, 79523, 'seventy-nine thousand five hundred twenty-three'),\n(17273, 91917, 'ninety-one thousand nine hundred seventeen'),\n(17274, 60014, 'sixty thousand fourteen'),\n(17275, 71364, 'seventy-one thousand three hundred sixty-four'),\n(17276, 557, 'five hundred fifty-seven'),\n(17277, 28117, 'twenty-eight thousand one hundred seventeen'),\n(17278, 87812, 'eighty-seven thousand eight hundred twelve'),\n(17279, 93135, 'ninety-three thousand one hundred thirty-five'),\n(17280, 18468, 'eighteen thousand four hundred sixty-eight'),\n(17281, 56091, 'fifty-six thousand ninety-one'),\n(17282, 72680, 'seventy-two thousand six hundred eighty'),\n(17283, 75736, 'seventy-five thousand seven hundred thirty-six'),\n(17284, 83168, 'eighty-three thousand one hundred sixty-eight'),\n(17285, 86728, 'eighty-six thousand seven hundred twenty-eight'),\n(17286, 97068, 'ninety-seven thousand sixty-eight'),\n(17287, 32244, 'thirty-two thousand two hundred forty-four'),\n(17288, 81858, 'eighty-one thousand eight hundred fifty-eight'),\n(17289, 23694, 'twenty-three thousand six hundred ninety-four'),\n(17290, 56352, 'fifty-six thousand three hundred fifty-two'),\n(17291, 20224, 'twenty thousand two hundred twenty-four'),\n(17292, 1067, 'one thousand sixty-seven'),\n(17293, 46648, 'forty-six thousand six hundred forty-eight'),\n(17294, 56363, 'fifty-six thousand three hundred sixty-three'),\n(17295, 88953, 'eighty-eight thousand nine hundred fifty-three'),\n(17296, 43058, 'forty-three thousand fifty-eight'),\n(17297, 83410, 'eighty-three thousand four hundred ten'),\n(17298, 97488, 'ninety-seven thousand four hundred eighty-eight'),\n(17299, 39155, 'thirty-nine thousand one hundred fifty-five'),\n(17300, 42067, 'forty-two thousand sixty-seven'),\n(17301, 99319, 'ninety-nine thousand three hundred nineteen'),\n(17302, 13988, 'thirteen thousand nine hundred eighty-eight'),\n(17303, 76283, 'seventy-six thousand two hundred eighty-three'),\n(17304, 19680, 'nineteen thousand six hundred eighty'),\n(17305, 25786, 'twenty-five thousand seven hundred eighty-six'),\n(17306, 88533, 'eighty-eight thousand five hundred thirty-three'),\n(17307, 93832, 'ninety-three thousand eight hundred thirty-two'),\n(17308, 84794, 'eighty-four thousand seven hundred ninety-four'),\n(17309, 71713, 'seventy-one thousand seven hundred thirteen'),\n(17310, 76074, 'seventy-six thousand seventy-four'),\n(17311, 17658, 'seventeen thousand six hundred fifty-eight'),\n(17312, 67593, 'sixty-seven thousand five hundred ninety-three'),\n(17313, 13007, 'thirteen thousand seven'),\n(17314, 63949, 'sixty-three thousand nine hundred forty-nine'),\n(17315, 82744, 'eighty-two thousand seven hundred forty-four'),\n(17316, 65270, 'sixty-five thousand two hundred seventy'),\n(17317, 43890, 'forty-three thousand eight hundred ninety'),\n(17318, 49784, 'forty-nine thousand seven hundred eighty-four'),\n(17319, 18125, 'eighteen thousand one hundred twenty-five'),\n(17320, 75522, 'seventy-five thousand five hundred twenty-two'),\n(17321, 18754, 'eighteen thousand seven hundred fifty-four'),\n(17322, 88535, 'eighty-eight thousand five hundred thirty-five'),\n(17323, 12107, 'twelve thousand one hundred seven'),\n(17324, 75921, 'seventy-five thousand nine hundred twenty-one'),\n(17325, 24134, 'twenty-four thousand one hundred thirty-four'),\n(17326, 95164, 'ninety-five thousand one hundred sixty-four'),\n(17327, 61678, 'sixty-one thousand six hundred seventy-eight'),\n(17328, 66420, 'sixty-six thousand four hundred twenty'),\n(17329, 33320, 'thirty-three thousand three hundred twenty'),\n(17330, 76596, 'seventy-six thousand five hundred ninety-six'),\n(17331, 99900, 'ninety-nine thousand nine hundred'),\n(17332, 31240, 'thirty-one thousand two hundred forty'),\n(17333, 22729, 'twenty-two thousand seven hundred twenty-nine'),\n(17334, 1535, 'one thousand five hundred thirty-five'),\n(17335, 77161, 'seventy-seven thousand one hundred sixty-one'),\n(17336, 14523, 'fourteen thousand five hundred twenty-three'),\n(17337, 18582, 'eighteen thousand five hundred eighty-two'),\n(17338, 60282, 'sixty thousand two hundred eighty-two'),\n(17339, 87311, 'eighty-seven thousand three hundred eleven'),\n(17340, 67938, 'sixty-seven thousand nine hundred thirty-eight'),\n(17341, 57163, 'fifty-seven thousand one hundred sixty-three'),\n(17342, 22950, 'twenty-two thousand nine hundred fifty'),\n(17343, 15736, 'fifteen thousand seven hundred thirty-six'),\n(17344, 24865, 'twenty-four thousand eight hundred sixty-five'),\n(17345, 27625, 'twenty-seven thousand six hundred twenty-five'),\n(17346, 70419, 'seventy thousand four hundred nineteen'),\n(17347, 33160, 'thirty-three thousand one hundred sixty'),\n(17348, 37, 'thirty-seven'),\n(17349, 59209, 'fifty-nine thousand two hundred nine'),\n(17350, 82707, 'eighty-two thousand seven hundred seven'),\n(17351, 41629, 'forty-one thousand six hundred twenty-nine'),\n(17352, 14169, 'fourteen thousand one hundred sixty-nine'),\n(17353, 88522, 'eighty-eight thousand five hundred twenty-two'),\n(17354, 34182, 'thirty-four thousand one hundred eighty-two'),\n(17355, 78215, 'seventy-eight thousand two hundred fifteen'),\n(17356, 46537, 'forty-six thousand five hundred thirty-seven'),\n(17357, 9696, 'nine thousand six hundred ninety-six'),\n(17358, 42283, 'forty-two thousand two hundred eighty-three'),\n(17359, 80535, 'eighty thousand five hundred thirty-five'),\n(17360, 78685, 'seventy-eight thousand six hundred eighty-five'),\n(17361, 37087, 'thirty-seven thousand eighty-seven'),\n(17362, 37816, 'thirty-seven thousand eight hundred sixteen'),\n(17363, 60918, 'sixty thousand nine hundred eighteen'),\n(17364, 18999, 'eighteen thousand nine hundred ninety-nine'),\n(17365, 33862, 'thirty-three thousand eight hundred sixty-two'),\n(17366, 24617, 'twenty-four thousand six hundred seventeen'),\n(17367, 10363, 'ten thousand three hundred sixty-three'),\n(17368, 42079, 'forty-two thousand seventy-nine'),\n(17369, 67730, 'sixty-seven thousand seven hundred thirty'),\n(17370, 80735, 'eighty thousand seven hundred thirty-five'),\n(17371, 32515, 'thirty-two thousand five hundred fifteen'),\n(17372, 74332, 'seventy-four thousand three hundred thirty-two'),\n(17373, 30849, 'thirty thousand eight hundred forty-nine'),\n(17374, 96863, 'ninety-six thousand eight hundred sixty-three'),\n(17375, 93536, 'ninety-three thousand five hundred thirty-six'),\n(17376, 91972, 'ninety-one thousand nine hundred seventy-two'),\n(17377, 13228, 'thirteen thousand two hundred twenty-eight'),\n(17378, 91561, 'ninety-one thousand five hundred sixty-one'),\n(17379, 76561, 'seventy-six thousand five hundred sixty-one'),\n(17380, 4676, 'four thousand six hundred seventy-six'),\n(17381, 195, 'one hundred ninety-five'),\n(17382, 1109, 'one thousand one hundred nine'),\n(17383, 14509, 'fourteen thousand five hundred nine'),\n(17384, 26918, 'twenty-six thousand nine hundred eighteen'),\n(17385, 79922, 'seventy-nine thousand nine hundred twenty-two'),\n(17386, 41019, 'forty-one thousand nineteen'),\n(17387, 35935, 'thirty-five thousand nine hundred thirty-five'),\n(17388, 89528, 'eighty-nine thousand five hundred twenty-eight'),\n(17389, 47490, 'forty-seven thousand four hundred ninety'),\n(17390, 25468, 'twenty-five thousand four hundred sixty-eight'),\n(17391, 31467, 'thirty-one thousand four hundred sixty-seven'),\n(17392, 58023, 'fifty-eight thousand twenty-three'),\n(17393, 4147, 'four thousand one hundred forty-seven'),\n(17394, 30051, 'thirty thousand fifty-one'),\n(17395, 90608, 'ninety thousand six hundred eight'),\n(17396, 25770, 'twenty-five thousand seven hundred seventy'),\n(17397, 85241, 'eighty-five thousand two hundred forty-one'),\n(17398, 29384, 'twenty-nine thousand three hundred eighty-four'),\n(17399, 25326, 'twenty-five thousand three hundred twenty-six'),\n(17400, 35119, 'thirty-five thousand one hundred nineteen'),\n(17401, 60678, 'sixty thousand six hundred seventy-eight'),\n(17402, 77889, 'seventy-seven thousand eight hundred eighty-nine'),\n(17403, 67076, 'sixty-seven thousand seventy-six'),\n(17404, 43069, 'forty-three thousand sixty-nine'),\n(17405, 95869, 'ninety-five thousand eight hundred sixty-nine'),\n(17406, 2903, 'two thousand nine hundred three'),\n(17407, 96462, 'ninety-six thousand four hundred sixty-two'),\n(17408, 53568, 'fifty-three thousand five hundred sixty-eight'),\n(17409, 85191, 'eighty-five thousand one hundred ninety-one'),\n(17410, 54962, 'fifty-four thousand nine hundred sixty-two'),\n(17411, 98593, 'ninety-eight thousand five hundred ninety-three'),\n(17412, 57265, 'fifty-seven thousand two hundred sixty-five'),\n(17413, 3813, 'three thousand eight hundred thirteen'),\n(17414, 1201, 'one thousand two hundred one'),\n(17415, 87004, 'eighty-seven thousand four'),\n(17416, 44213, 'forty-four thousand two hundred thirteen'),\n(17417, 23674, 'twenty-three thousand six hundred seventy-four'),\n(17418, 57964, 'fifty-seven thousand nine hundred sixty-four'),\n(17419, 89736, 'eighty-nine thousand seven hundred thirty-six'),\n(17420, 4479, 'four thousand four hundred seventy-nine'),\n(17421, 16580, 'sixteen thousand five hundred eighty'),\n(17422, 16003, 'sixteen thousand three'),\n(17423, 83659, 'eighty-three thousand six hundred fifty-nine'),\n(17424, 33902, 'thirty-three thousand nine hundred two'),\n(17425, 73288, 'seventy-three thousand two hundred eighty-eight'),\n(17426, 48838, 'forty-eight thousand eight hundred thirty-eight'),\n(17427, 91513, 'ninety-one thousand five hundred thirteen'),\n(17428, 45571, 'forty-five thousand five hundred seventy-one'),\n(17429, 94675, 'ninety-four thousand six hundred seventy-five'),\n(17430, 68769, 'sixty-eight thousand seven hundred sixty-nine'),\n(17431, 42647, 'forty-two thousand six hundred forty-seven'),\n(17432, 72533, 'seventy-two thousand five hundred thirty-three'),\n(17433, 57278, 'fifty-seven thousand two hundred seventy-eight'),\n(17434, 12087, 'twelve thousand eighty-seven'),\n(17435, 5075, 'five thousand seventy-five'),\n(17436, 36197, 'thirty-six thousand one hundred ninety-seven'),\n(17437, 19769, 'nineteen thousand seven hundred sixty-nine'),\n(17438, 47337, 'forty-seven thousand three hundred thirty-seven'),\n(17439, 56534, 'fifty-six thousand five hundred thirty-four'),\n(17440, 58181, 'fifty-eight thousand one hundred eighty-one'),\n(17441, 92020, 'ninety-two thousand twenty'),\n(17442, 10268, 'ten thousand two hundred sixty-eight'),\n(17443, 5868, 'five thousand eight hundred sixty-eight'),\n(17444, 13103, 'thirteen thousand one hundred three'),\n(17445, 52922, 'fifty-two thousand nine hundred twenty-two'),\n(17446, 51880, 'fifty-one thousand eight hundred eighty'),\n(17447, 41381, 'forty-one thousand three hundred eighty-one'),\n(17448, 2827, 'two thousand eight hundred twenty-seven'),\n(17449, 55685, 'fifty-five thousand six hundred eighty-five'),\n(17450, 25345, 'twenty-five thousand three hundred forty-five'),\n(17451, 24964, 'twenty-four thousand nine hundred sixty-four'),\n(17452, 8355, 'eight thousand three hundred fifty-five'),\n(17453, 74437, 'seventy-four thousand four hundred thirty-seven'),\n(17454, 74994, 'seventy-four thousand nine hundred ninety-four'),\n(17455, 89371, 'eighty-nine thousand three hundred seventy-one'),\n(17456, 39282, 'thirty-nine thousand two hundred eighty-two'),\n(17457, 46014, 'forty-six thousand fourteen'),\n(17458, 51057, 'fifty-one thousand fifty-seven'),\n(17459, 91001, 'ninety-one thousand one'),\n(17460, 33003, 'thirty-three thousand three'),\n(17461, 56644, 'fifty-six thousand six hundred forty-four'),\n(17462, 6452, 'six thousand four hundred fifty-two'),\n(17463, 74031, 'seventy-four thousand thirty-one'),\n(17464, 56371, 'fifty-six thousand three hundred seventy-one'),\n(17465, 33284, 'thirty-three thousand two hundred eighty-four'),\n(17466, 79683, 'seventy-nine thousand six hundred eighty-three'),\n(17467, 13263, 'thirteen thousand two hundred sixty-three'),\n(17468, 90917, 'ninety thousand nine hundred seventeen'),\n(17469, 72584, 'seventy-two thousand five hundred eighty-four'),\n(17470, 86612, 'eighty-six thousand six hundred twelve'),\n(17471, 98649, 'ninety-eight thousand six hundred forty-nine'),\n(17472, 43030, 'forty-three thousand thirty'),\n(17473, 26670, 'twenty-six thousand six hundred seventy'),\n(17474, 26883, 'twenty-six thousand eight hundred eighty-three'),\n(17475, 79136, 'seventy-nine thousand one hundred thirty-six'),\n(17476, 84623, 'eighty-four thousand six hundred twenty-three'),\n(17477, 93465, 'ninety-three thousand four hundred sixty-five'),\n(17478, 53845, 'fifty-three thousand eight hundred forty-five'),\n(17479, 93261, 'ninety-three thousand two hundred sixty-one'),\n(17480, 3051, 'three thousand fifty-one'),\n(17481, 24643, 'twenty-four thousand six hundred forty-three'),\n(17482, 99914, 'ninety-nine thousand nine hundred fourteen'),\n(17483, 14836, 'fourteen thousand eight hundred thirty-six'),\n(17484, 10282, 'ten thousand two hundred eighty-two'),\n(17485, 24457, 'twenty-four thousand four hundred fifty-seven'),\n(17486, 35734, 'thirty-five thousand seven hundred thirty-four'),\n(17487, 15776, 'fifteen thousand seven hundred seventy-six'),\n(17488, 77932, 'seventy-seven thousand nine hundred thirty-two'),\n(17489, 97120, 'ninety-seven thousand one hundred twenty'),\n(17490, 63723, 'sixty-three thousand seven hundred twenty-three'),\n(17491, 67452, 'sixty-seven thousand four hundred fifty-two'),\n(17492, 88195, 'eighty-eight thousand one hundred ninety-five'),\n(17493, 37465, 'thirty-seven thousand four hundred sixty-five'),\n(17494, 75229, 'seventy-five thousand two hundred twenty-nine'),\n(17495, 43176, 'forty-three thousand one hundred seventy-six'),\n(17496, 41789, 'forty-one thousand seven hundred eighty-nine'),\n(17497, 26937, 'twenty-six thousand nine hundred thirty-seven'),\n(17498, 74888, 'seventy-four thousand eight hundred eighty-eight'),\n(17499, 11412, 'eleven thousand four hundred twelve'),\n(17500, 31516, 'thirty-one thousand five hundred sixteen'),\n(17501, 57568, 'fifty-seven thousand five hundred sixty-eight'),\n(17502, 15612, 'fifteen thousand six hundred twelve'),\n(17503, 91895, 'ninety-one thousand eight hundred ninety-five'),\n(17504, 17165, 'seventeen thousand one hundred sixty-five'),\n(17505, 41926, 'forty-one thousand nine hundred twenty-six'),\n(17506, 96692, 'ninety-six thousand six hundred ninety-two'),\n(17507, 14031, 'fourteen thousand thirty-one'),\n(17508, 25832, 'twenty-five thousand eight hundred thirty-two'),\n(17509, 67804, 'sixty-seven thousand eight hundred four'),\n(17510, 93924, 'ninety-three thousand nine hundred twenty-four'),\n(17511, 42288, 'forty-two thousand two hundred eighty-eight'),\n(17512, 95876, 'ninety-five thousand eight hundred seventy-six'),\n(17513, 69269, 'sixty-nine thousand two hundred sixty-nine'),\n(17514, 12747, 'twelve thousand seven hundred forty-seven'),\n(17515, 41387, 'forty-one thousand three hundred eighty-seven'),\n(17516, 10493, 'ten thousand four hundred ninety-three'),\n(17517, 45226, 'forty-five thousand two hundred twenty-six'),\n(17518, 66508, 'sixty-six thousand five hundred eight'),\n(17519, 37969, 'thirty-seven thousand nine hundred sixty-nine'),\n(17520, 75665, 'seventy-five thousand six hundred sixty-five'),\n(17521, 78876, 'seventy-eight thousand eight hundred seventy-six'),\n(17522, 88242, 'eighty-eight thousand two hundred forty-two'),\n(17523, 73739, 'seventy-three thousand seven hundred thirty-nine'),\n(17524, 22731, 'twenty-two thousand seven hundred thirty-one'),\n(17525, 37589, 'thirty-seven thousand five hundred eighty-nine'),\n(17526, 51762, 'fifty-one thousand seven hundred sixty-two'),\n(17527, 61697, 'sixty-one thousand six hundred ninety-seven'),\n(17528, 89318, 'eighty-nine thousand three hundred eighteen'),\n(17529, 11369, 'eleven thousand three hundred sixty-nine'),\n(17530, 87247, 'eighty-seven thousand two hundred forty-seven'),\n(17531, 22926, 'twenty-two thousand nine hundred twenty-six'),\n(17532, 94472, 'ninety-four thousand four hundred seventy-two'),\n(17533, 99708, 'ninety-nine thousand seven hundred eight'),\n(17534, 12875, 'twelve thousand eight hundred seventy-five'),\n(17535, 88, 'eighty-eight'),\n(17536, 10150, 'ten thousand one hundred fifty'),\n(17537, 24199, 'twenty-four thousand one hundred ninety-nine'),\n(17538, 18188, 'eighteen thousand one hundred eighty-eight'),\n(17539, 20030, 'twenty thousand thirty'),\n(17540, 52891, 'fifty-two thousand eight hundred ninety-one'),\n(17541, 93155, 'ninety-three thousand one hundred fifty-five'),\n(17542, 93154, 'ninety-three thousand one hundred fifty-four'),\n(17543, 86312, 'eighty-six thousand three hundred twelve'),\n(17544, 41385, 'forty-one thousand three hundred eighty-five'),\n(17545, 75473, 'seventy-five thousand four hundred seventy-three'),\n(17546, 12444, 'twelve thousand four hundred forty-four'),\n(17547, 32865, 'thirty-two thousand eight hundred sixty-five'),\n(17548, 20502, 'twenty thousand five hundred two'),\n(17549, 56523, 'fifty-six thousand five hundred twenty-three'),\n(17550, 98949, 'ninety-eight thousand nine hundred forty-nine'),\n(17551, 69419, 'sixty-nine thousand four hundred nineteen'),\n(17552, 10870, 'ten thousand eight hundred seventy'),\n(17553, 39468, 'thirty-nine thousand four hundred sixty-eight'),\n(17554, 39858, 'thirty-nine thousand eight hundred fifty-eight'),\n(17555, 49087, 'forty-nine thousand eighty-seven'),\n(17556, 77726, 'seventy-seven thousand seven hundred twenty-six'),\n(17557, 7803, 'seven thousand eight hundred three'),\n(17558, 37196, 'thirty-seven thousand one hundred ninety-six'),\n(17559, 56807, 'fifty-six thousand eight hundred seven'),\n(17560, 50037, 'fifty thousand thirty-seven'),\n(17561, 95382, 'ninety-five thousand three hundred eighty-two'),\n(17562, 12584, 'twelve thousand five hundred eighty-four'),\n(17563, 52870, 'fifty-two thousand eight hundred seventy'),\n(17564, 17676, 'seventeen thousand six hundred seventy-six'),\n(17565, 65768, 'sixty-five thousand seven hundred sixty-eight'),\n(17566, 50764, 'fifty thousand seven hundred sixty-four'),\n(17567, 9737, 'nine thousand seven hundred thirty-seven'),\n(17568, 74778, 'seventy-four thousand seven hundred seventy-eight'),\n(17569, 60936, 'sixty thousand nine hundred thirty-six'),\n(17570, 62682, 'sixty-two thousand six hundred eighty-two'),\n(17571, 35256, 'thirty-five thousand two hundred fifty-six'),\n(17572, 41055, 'forty-one thousand fifty-five'),\n(17573, 51172, 'fifty-one thousand one hundred seventy-two'),\n(17574, 95407, 'ninety-five thousand four hundred seven'),\n(17575, 90030, 'ninety thousand thirty'),\n(17576, 26852, 'twenty-six thousand eight hundred fifty-two'),\n(17577, 51152, 'fifty-one thousand one hundred fifty-two'),\n(17578, 67455, 'sixty-seven thousand four hundred fifty-five'),\n(17579, 21796, 'twenty-one thousand seven hundred ninety-six'),\n(17580, 56047, 'fifty-six thousand forty-seven'),\n(17581, 65081, 'sixty-five thousand eighty-one'),\n(17582, 31077, 'thirty-one thousand seventy-seven'),\n(17583, 74918, 'seventy-four thousand nine hundred eighteen'),\n(17584, 62546, 'sixty-two thousand five hundred forty-six'),\n(17585, 90853, 'ninety thousand eight hundred fifty-three'),\n(17586, 55438, 'fifty-five thousand four hundred thirty-eight'),\n(17587, 90330, 'ninety thousand three hundred thirty'),\n(17588, 77923, 'seventy-seven thousand nine hundred twenty-three'),\n(17589, 80184, 'eighty thousand one hundred eighty-four'),\n(17590, 35732, 'thirty-five thousand seven hundred thirty-two'),\n(17591, 39709, 'thirty-nine thousand seven hundred nine'),\n(17592, 17693, 'seventeen thousand six hundred ninety-three'),\n(17593, 85741, 'eighty-five thousand seven hundred forty-one'),\n(17594, 51620, 'fifty-one thousand six hundred twenty'),\n(17595, 30830, 'thirty thousand eight hundred thirty'),\n(17596, 31848, 'thirty-one thousand eight hundred forty-eight'),\n(17597, 59390, 'fifty-nine thousand three hundred ninety'),\n(17598, 24918, 'twenty-four thousand nine hundred eighteen'),\n(17599, 62418, 'sixty-two thousand four hundred eighteen'),\n(17600, 21171, 'twenty-one thousand one hundred seventy-one'),\n(17601, 34830, 'thirty-four thousand eight hundred thirty'),\n(17602, 43768, 'forty-three thousand seven hundred sixty-eight'),\n(17603, 59847, 'fifty-nine thousand eight hundred forty-seven'),\n(17604, 89342, 'eighty-nine thousand three hundred forty-two'),\n(17605, 70383, 'seventy thousand three hundred eighty-three'),\n(17606, 11726, 'eleven thousand seven hundred twenty-six'),\n(17607, 56860, 'fifty-six thousand eight hundred sixty'),\n(17608, 41407, 'forty-one thousand four hundred seven'),\n(17609, 43786, 'forty-three thousand seven hundred eighty-six'),\n(17610, 86377, 'eighty-six thousand three hundred seventy-seven'),\n(17611, 55855, 'fifty-five thousand eight hundred fifty-five'),\n(17612, 7715, 'seven thousand seven hundred fifteen'),\n(17613, 11419, 'eleven thousand four hundred nineteen'),\n(17614, 23784, 'twenty-three thousand seven hundred eighty-four'),\n(17615, 17653, 'seventeen thousand six hundred fifty-three'),\n(17616, 91732, 'ninety-one thousand seven hundred thirty-two'),\n(17617, 7860, 'seven thousand eight hundred sixty'),\n(17618, 72271, 'seventy-two thousand two hundred seventy-one'),\n(17619, 83737, 'eighty-three thousand seven hundred thirty-seven'),\n(17620, 75751, 'seventy-five thousand seven hundred fifty-one'),\n(17621, 77700, 'seventy-seven thousand seven hundred'),\n(17622, 79743, 'seventy-nine thousand seven hundred forty-three'),\n(17623, 56795, 'fifty-six thousand seven hundred ninety-five'),\n(17624, 39975, 'thirty-nine thousand nine hundred seventy-five'),\n(17625, 21684, 'twenty-one thousand six hundred eighty-four'),\n(17626, 29248, 'twenty-nine thousand two hundred forty-eight'),\n(17627, 89903, 'eighty-nine thousand nine hundred three'),\n(17628, 16404, 'sixteen thousand four hundred four'),\n(17629, 60768, 'sixty thousand seven hundred sixty-eight'),\n(17630, 24833, 'twenty-four thousand eight hundred thirty-three'),\n(17631, 52624, 'fifty-two thousand six hundred twenty-four'),\n(17632, 69077, 'sixty-nine thousand seventy-seven'),\n(17633, 36519, 'thirty-six thousand five hundred nineteen'),\n(17634, 96660, 'ninety-six thousand six hundred sixty'),\n(17635, 74495, 'seventy-four thousand four hundred ninety-five'),\n(17636, 25592, 'twenty-five thousand five hundred ninety-two'),\n(17637, 46957, 'forty-six thousand nine hundred fifty-seven'),\n(17638, 52685, 'fifty-two thousand six hundred eighty-five'),\n(17639, 35020, 'thirty-five thousand twenty'),\n(17640, 15625, 'fifteen thousand six hundred twenty-five'),\n(17641, 35781, 'thirty-five thousand seven hundred eighty-one'),\n(17642, 99379, 'ninety-nine thousand three hundred seventy-nine'),\n(17643, 98631, 'ninety-eight thousand six hundred thirty-one'),\n(17644, 80614, 'eighty thousand six hundred fourteen'),\n(17645, 1920, 'one thousand nine hundred twenty'),\n(17646, 98111, 'ninety-eight thousand one hundred eleven'),\n(17647, 14585, 'fourteen thousand five hundred eighty-five'),\n(17648, 87757, 'eighty-seven thousand seven hundred fifty-seven'),\n(17649, 57772, 'fifty-seven thousand seven hundred seventy-two'),\n(17650, 47167, 'forty-seven thousand one hundred sixty-seven'),\n(17651, 17867, 'seventeen thousand eight hundred sixty-seven'),\n(17652, 6589, 'six thousand five hundred eighty-nine'),\n(17653, 51462, 'fifty-one thousand four hundred sixty-two'),\n(17654, 98288, 'ninety-eight thousand two hundred eighty-eight'),\n(17655, 7811, 'seven thousand eight hundred eleven'),\n(17656, 78378, 'seventy-eight thousand three hundred seventy-eight'),\n(17657, 26411, 'twenty-six thousand four hundred eleven'),\n(17658, 28167, 'twenty-eight thousand one hundred sixty-seven'),\n(17659, 3454, 'three thousand four hundred fifty-four'),\n(17660, 39847, 'thirty-nine thousand eight hundred forty-seven'),\n(17661, 82093, 'eighty-two thousand ninety-three'),\n(17662, 86634, 'eighty-six thousand six hundred thirty-four'),\n(17663, 37862, 'thirty-seven thousand eight hundred sixty-two'),\n(17664, 63171, 'sixty-three thousand one hundred seventy-one'),\n(17665, 76944, 'seventy-six thousand nine hundred forty-four'),\n(17666, 82239, 'eighty-two thousand two hundred thirty-nine'),\n(17667, 54575, 'fifty-four thousand five hundred seventy-five'),\n(17668, 37685, 'thirty-seven thousand six hundred eighty-five'),\n(17669, 77488, 'seventy-seven thousand four hundred eighty-eight'),\n(17670, 21665, 'twenty-one thousand six hundred sixty-five'),\n(17671, 63199, 'sixty-three thousand one hundred ninety-nine'),\n(17672, 21983, 'twenty-one thousand nine hundred eighty-three'),\n(17673, 94443, 'ninety-four thousand four hundred forty-three'),\n(17674, 91733, 'ninety-one thousand seven hundred thirty-three'),\n(17675, 95647, 'ninety-five thousand six hundred forty-seven'),\n(17676, 92221, 'ninety-two thousand two hundred twenty-one'),\n(17677, 87880, 'eighty-seven thousand eight hundred eighty'),\n(17678, 53685, 'fifty-three thousand six hundred eighty-five'),\n(17679, 8883, 'eight thousand eight hundred eighty-three'),\n(17680, 31725, 'thirty-one thousand seven hundred twenty-five'),\n(17681, 91081, 'ninety-one thousand eighty-one'),\n(17682, 82949, 'eighty-two thousand nine hundred forty-nine'),\n(17683, 90581, 'ninety thousand five hundred eighty-one'),\n(17684, 63938, 'sixty-three thousand nine hundred thirty-eight'),\n(17685, 48851, 'forty-eight thousand eight hundred fifty-one'),\n(17686, 19564, 'nineteen thousand five hundred sixty-four'),\n(17687, 52663, 'fifty-two thousand six hundred sixty-three'),\n(17688, 75487, 'seventy-five thousand four hundred eighty-seven'),\n(17689, 72695, 'seventy-two thousand six hundred ninety-five'),\n(17690, 46730, 'forty-six thousand seven hundred thirty'),\n(17691, 67831, 'sixty-seven thousand eight hundred thirty-one'),\n(17692, 46946, 'forty-six thousand nine hundred forty-six'),\n(17693, 53113, 'fifty-three thousand one hundred thirteen'),\n(17694, 13244, 'thirteen thousand two hundred forty-four'),\n(17695, 87, 'eighty-seven'),\n(17696, 19494, 'nineteen thousand four hundred ninety-four'),\n(17697, 99792, 'ninety-nine thousand seven hundred ninety-two'),\n(17698, 73340, 'seventy-three thousand three hundred forty'),\n(17699, 81613, 'eighty-one thousand six hundred thirteen'),\n(17700, 93920, 'ninety-three thousand nine hundred twenty'),\n(17701, 73732, 'seventy-three thousand seven hundred thirty-two'),\n(17702, 80410, 'eighty thousand four hundred ten'),\n(17703, 51994, 'fifty-one thousand nine hundred ninety-four'),\n(17704, 42307, 'forty-two thousand three hundred seven'),\n(17705, 36248, 'thirty-six thousand two hundred forty-eight'),\n(17706, 36489, 'thirty-six thousand four hundred eighty-nine'),\n(17707, 19005, 'nineteen thousand five'),\n(17708, 37548, 'thirty-seven thousand five hundred forty-eight'),\n(17709, 69366, 'sixty-nine thousand three hundred sixty-six'),\n(17710, 14395, 'fourteen thousand three hundred ninety-five'),\n(17711, 35288, 'thirty-five thousand two hundred eighty-eight'),\n(17712, 29790, 'twenty-nine thousand seven hundred ninety'),\n(17713, 13633, 'thirteen thousand six hundred thirty-three'),\n(17714, 83464, 'eighty-three thousand four hundred sixty-four'),\n(17715, 22097, 'twenty-two thousand ninety-seven'),\n(17716, 5682, 'five thousand six hundred eighty-two'),\n(17717, 73064, 'seventy-three thousand sixty-four'),\n(17718, 7691, 'seven thousand six hundred ninety-one'),\n(17719, 13390, 'thirteen thousand three hundred ninety'),\n(17720, 6306, 'six thousand three hundred six'),\n(17721, 99715, 'ninety-nine thousand seven hundred fifteen'),\n(17722, 84750, 'eighty-four thousand seven hundred fifty'),\n(17723, 12202, 'twelve thousand two hundred two'),\n(17724, 49268, 'forty-nine thousand two hundred sixty-eight'),\n(17725, 87166, 'eighty-seven thousand one hundred sixty-six'),\n(17726, 25358, 'twenty-five thousand three hundred fifty-eight'),\n(17727, 54847, 'fifty-four thousand eight hundred forty-seven'),\n(17728, 69387, 'sixty-nine thousand three hundred eighty-seven'),\n(17729, 55417, 'fifty-five thousand four hundred seventeen'),\n(17730, 9609, 'nine thousand six hundred nine'),\n(17731, 76930, 'seventy-six thousand nine hundred thirty'),\n(17732, 91924, 'ninety-one thousand nine hundred twenty-four'),\n(17733, 8422, 'eight thousand four hundred twenty-two'),\n(17734, 17809, 'seventeen thousand eight hundred nine'),\n(17735, 46685, 'forty-six thousand six hundred eighty-five'),\n(17736, 53399, 'fifty-three thousand three hundred ninety-nine'),\n(17737, 29952, 'twenty-nine thousand nine hundred fifty-two'),\n(17738, 90447, 'ninety thousand four hundred forty-seven'),\n(17739, 16263, 'sixteen thousand two hundred sixty-three'),\n(17740, 76348, 'seventy-six thousand three hundred forty-eight'),\n(17741, 8173, 'eight thousand one hundred seventy-three'),\n(17742, 16328, 'sixteen thousand three hundred twenty-eight'),\n(17743, 58642, 'fifty-eight thousand six hundred forty-two'),\n(17744, 31944, 'thirty-one thousand nine hundred forty-four'),\n(17745, 67730, 'sixty-seven thousand seven hundred thirty'),\n(17746, 59165, 'fifty-nine thousand one hundred sixty-five'),\n(17747, 8866, 'eight thousand eight hundred sixty-six'),\n(17748, 20806, 'twenty thousand eight hundred six'),\n(17749, 86418, 'eighty-six thousand four hundred eighteen'),\n(17750, 82864, 'eighty-two thousand eight hundred sixty-four'),\n(17751, 58171, 'fifty-eight thousand one hundred seventy-one'),\n(17752, 76204, 'seventy-six thousand two hundred four'),\n(17753, 89838, 'eighty-nine thousand eight hundred thirty-eight'),\n(17754, 52827, 'fifty-two thousand eight hundred twenty-seven'),\n(17755, 16458, 'sixteen thousand four hundred fifty-eight'),\n(17756, 14893, 'fourteen thousand eight hundred ninety-three'),\n(17757, 53896, 'fifty-three thousand eight hundred ninety-six'),\n(17758, 8478, 'eight thousand four hundred seventy-eight'),\n(17759, 68662, 'sixty-eight thousand six hundred sixty-two'),\n(17760, 46437, 'forty-six thousand four hundred thirty-seven'),\n(17761, 63750, 'sixty-three thousand seven hundred fifty'),\n(17762, 35093, 'thirty-five thousand ninety-three'),\n(17763, 772, 'seven hundred seventy-two'),\n(17764, 98314, 'ninety-eight thousand three hundred fourteen'),\n(17765, 60801, 'sixty thousand eight hundred one'),\n(17766, 89526, 'eighty-nine thousand five hundred twenty-six'),\n(17767, 36376, 'thirty-six thousand three hundred seventy-six'),\n(17768, 94593, 'ninety-four thousand five hundred ninety-three'),\n(17769, 78598, 'seventy-eight thousand five hundred ninety-eight'),\n(17770, 21062, 'twenty-one thousand sixty-two'),\n(17771, 27746, 'twenty-seven thousand seven hundred forty-six'),\n(17772, 76638, 'seventy-six thousand six hundred thirty-eight'),\n(17773, 62875, 'sixty-two thousand eight hundred seventy-five'),\n(17774, 26599, 'twenty-six thousand five hundred ninety-nine'),\n(17775, 5629, 'five thousand six hundred twenty-nine'),\n(17776, 82263, 'eighty-two thousand two hundred sixty-three'),\n(17777, 61294, 'sixty-one thousand two hundred ninety-four'),\n(17778, 33953, 'thirty-three thousand nine hundred fifty-three'),\n(17779, 53874, 'fifty-three thousand eight hundred seventy-four'),\n(17780, 14011, 'fourteen thousand eleven'),\n(17781, 50811, 'fifty thousand eight hundred eleven'),\n(17782, 53219, 'fifty-three thousand two hundred nineteen'),\n(17783, 25681, 'twenty-five thousand six hundred eighty-one'),\n(17784, 1809, 'one thousand eight hundred nine'),\n(17785, 82258, 'eighty-two thousand two hundred fifty-eight'),\n(17786, 94045, 'ninety-four thousand forty-five'),\n(17787, 29348, 'twenty-nine thousand three hundred forty-eight'),\n(17788, 30412, 'thirty thousand four hundred twelve'),\n(17789, 87681, 'eighty-seven thousand six hundred eighty-one'),\n(17790, 60273, 'sixty thousand two hundred seventy-three'),\n(17791, 40092, 'forty thousand ninety-two'),\n(17792, 81275, 'eighty-one thousand two hundred seventy-five'),\n(17793, 20076, 'twenty thousand seventy-six'),\n(17794, 61402, 'sixty-one thousand four hundred two'),\n(17795, 26374, 'twenty-six thousand three hundred seventy-four'),\n(17796, 33432, 'thirty-three thousand four hundred thirty-two'),\n(17797, 61706, 'sixty-one thousand seven hundred six'),\n(17798, 82056, 'eighty-two thousand fifty-six'),\n(17799, 68873, 'sixty-eight thousand eight hundred seventy-three'),\n(17800, 6825, 'six thousand eight hundred twenty-five'),\n(17801, 37695, 'thirty-seven thousand six hundred ninety-five'),\n(17802, 70432, 'seventy thousand four hundred thirty-two'),\n(17803, 62135, 'sixty-two thousand one hundred thirty-five'),\n(17804, 28082, 'twenty-eight thousand eighty-two'),\n(17805, 63759, 'sixty-three thousand seven hundred fifty-nine'),\n(17806, 88376, 'eighty-eight thousand three hundred seventy-six'),\n(17807, 74151, 'seventy-four thousand one hundred fifty-one'),\n(17808, 29346, 'twenty-nine thousand three hundred forty-six'),\n(17809, 12150, 'twelve thousand one hundred fifty'),\n(17810, 85825, 'eighty-five thousand eight hundred twenty-five'),\n(17811, 62769, 'sixty-two thousand seven hundred sixty-nine'),\n(17812, 43568, 'forty-three thousand five hundred sixty-eight'),\n(17813, 71883, 'seventy-one thousand eight hundred eighty-three'),\n(17814, 69112, 'sixty-nine thousand one hundred twelve'),\n(17815, 32911, 'thirty-two thousand nine hundred eleven'),\n(17816, 12044, 'twelve thousand forty-four'),\n(17817, 56352, 'fifty-six thousand three hundred fifty-two'),\n(17818, 45003, 'forty-five thousand three'),\n(17819, 35502, 'thirty-five thousand five hundred two'),\n(17820, 22350, 'twenty-two thousand three hundred fifty'),\n(17821, 56070, 'fifty-six thousand seventy'),\n(17822, 56816, 'fifty-six thousand eight hundred sixteen'),\n(17823, 83065, 'eighty-three thousand sixty-five'),\n(17824, 22631, 'twenty-two thousand six hundred thirty-one'),\n(17825, 88120, 'eighty-eight thousand one hundred twenty'),\n(17826, 74633, 'seventy-four thousand six hundred thirty-three'),\n(17827, 8139, 'eight thousand one hundred thirty-nine'),\n(17828, 79216, 'seventy-nine thousand two hundred sixteen'),\n(17829, 85046, 'eighty-five thousand forty-six'),\n(17830, 5617, 'five thousand six hundred seventeen'),\n(17831, 32949, 'thirty-two thousand nine hundred forty-nine'),\n(17832, 26317, 'twenty-six thousand three hundred seventeen'),\n(17833, 79722, 'seventy-nine thousand seven hundred twenty-two'),\n(17834, 86904, 'eighty-six thousand nine hundred four'),\n(17835, 39538, 'thirty-nine thousand five hundred thirty-eight'),\n(17836, 19647, 'nineteen thousand six hundred forty-seven'),\n(17837, 44283, 'forty-four thousand two hundred eighty-three'),\n(17838, 39081, 'thirty-nine thousand eighty-one'),\n(17839, 34624, 'thirty-four thousand six hundred twenty-four'),\n(17840, 42048, 'forty-two thousand forty-eight'),\n(17841, 74551, 'seventy-four thousand five hundred fifty-one'),\n(17842, 59597, 'fifty-nine thousand five hundred ninety-seven'),\n(17843, 8040, 'eight thousand forty'),\n(17844, 19093, 'nineteen thousand ninety-three'),\n(17845, 19410, 'nineteen thousand four hundred ten'),\n(17846, 31251, 'thirty-one thousand two hundred fifty-one'),\n(17847, 14022, 'fourteen thousand twenty-two'),\n(17848, 29958, 'twenty-nine thousand nine hundred fifty-eight'),\n(17849, 79087, 'seventy-nine thousand eighty-seven'),\n(17850, 52688, 'fifty-two thousand six hundred eighty-eight'),\n(17851, 15659, 'fifteen thousand six hundred fifty-nine'),\n(17852, 66253, 'sixty-six thousand two hundred fifty-three'),\n(17853, 83549, 'eighty-three thousand five hundred forty-nine'),\n(17854, 89996, 'eighty-nine thousand nine hundred ninety-six'),\n(17855, 65554, 'sixty-five thousand five hundred fifty-four'),\n(17856, 14523, 'fourteen thousand five hundred twenty-three'),\n(17857, 82825, 'eighty-two thousand eight hundred twenty-five'),\n(17858, 13218, 'thirteen thousand two hundred eighteen'),\n(17859, 77149, 'seventy-seven thousand one hundred forty-nine'),\n(17860, 64741, 'sixty-four thousand seven hundred forty-one'),\n(17861, 15653, 'fifteen thousand six hundred fifty-three'),\n(17862, 85936, 'eighty-five thousand nine hundred thirty-six'),\n(17863, 65480, 'sixty-five thousand four hundred eighty'),\n(17864, 47998, 'forty-seven thousand nine hundred ninety-eight'),\n(17865, 2382, 'two thousand three hundred eighty-two'),\n(17866, 93477, 'ninety-three thousand four hundred seventy-seven'),\n(17867, 73813, 'seventy-three thousand eight hundred thirteen'),\n(17868, 71602, 'seventy-one thousand six hundred two'),\n(17869, 91069, 'ninety-one thousand sixty-nine'),\n(17870, 51829, 'fifty-one thousand eight hundred twenty-nine'),\n(17871, 75886, 'seventy-five thousand eight hundred eighty-six'),\n(17872, 96103, 'ninety-six thousand one hundred three'),\n(17873, 23981, 'twenty-three thousand nine hundred eighty-one'),\n(17874, 76315, 'seventy-six thousand three hundred fifteen'),\n(17875, 16276, 'sixteen thousand two hundred seventy-six'),\n(17876, 94634, 'ninety-four thousand six hundred thirty-four'),\n(17877, 3216, 'three thousand two hundred sixteen'),\n(17878, 89150, 'eighty-nine thousand one hundred fifty'),\n(17879, 16375, 'sixteen thousand three hundred seventy-five'),\n(17880, 12629, 'twelve thousand six hundred twenty-nine'),\n(17881, 95663, 'ninety-five thousand six hundred sixty-three'),\n(17882, 91220, 'ninety-one thousand two hundred twenty'),\n(17883, 56519, 'fifty-six thousand five hundred nineteen'),\n(17884, 13454, 'thirteen thousand four hundred fifty-four'),\n(17885, 89501, 'eighty-nine thousand five hundred one'),\n(17886, 92338, 'ninety-two thousand three hundred thirty-eight'),\n(17887, 98119, 'ninety-eight thousand one hundred nineteen'),\n(17888, 72505, 'seventy-two thousand five hundred five'),\n(17889, 4299, 'four thousand two hundred ninety-nine'),\n(17890, 64775, 'sixty-four thousand seven hundred seventy-five'),\n(17891, 83595, 'eighty-three thousand five hundred ninety-five'),\n(17892, 98721, 'ninety-eight thousand seven hundred twenty-one'),\n(17893, 9219, 'nine thousand two hundred nineteen'),\n(17894, 8209, 'eight thousand two hundred nine'),\n(17895, 55911, 'fifty-five thousand nine hundred eleven'),\n(17896, 94223, 'ninety-four thousand two hundred twenty-three'),\n(17897, 63077, 'sixty-three thousand seventy-seven'),\n(17898, 5698, 'five thousand six hundred ninety-eight'),\n(17899, 16246, 'sixteen thousand two hundred forty-six'),\n(17900, 25465, 'twenty-five thousand four hundred sixty-five'),\n(17901, 67774, 'sixty-seven thousand seven hundred seventy-four'),\n(17902, 49246, 'forty-nine thousand two hundred forty-six'),\n(17903, 91288, 'ninety-one thousand two hundred eighty-eight'),\n(17904, 72734, 'seventy-two thousand seven hundred thirty-four'),\n(17905, 1354, 'one thousand three hundred fifty-four'),\n(17906, 84056, 'eighty-four thousand fifty-six'),\n(17907, 95351, 'ninety-five thousand three hundred fifty-one'),\n(17908, 15392, 'fifteen thousand three hundred ninety-two'),\n(17909, 47084, 'forty-seven thousand eighty-four'),\n(17910, 96227, 'ninety-six thousand two hundred twenty-seven'),\n(17911, 23022, 'twenty-three thousand twenty-two'),\n(17912, 42752, 'forty-two thousand seven hundred fifty-two'),\n(17913, 63080, 'sixty-three thousand eighty'),\n(17914, 27426, 'twenty-seven thousand four hundred twenty-six'),\n(17915, 23584, 'twenty-three thousand five hundred eighty-four'),\n(17916, 36291, 'thirty-six thousand two hundred ninety-one'),\n(17917, 13101, 'thirteen thousand one hundred one'),\n(17918, 48775, 'forty-eight thousand seven hundred seventy-five'),\n(17919, 82615, 'eighty-two thousand six hundred fifteen'),\n(17920, 55879, 'fifty-five thousand eight hundred seventy-nine'),\n(17921, 57494, 'fifty-seven thousand four hundred ninety-four'),\n(17922, 76448, 'seventy-six thousand four hundred forty-eight'),\n(17923, 28283, 'twenty-eight thousand two hundred eighty-three'),\n(17924, 75078, 'seventy-five thousand seventy-eight'),\n(17925, 88310, 'eighty-eight thousand three hundred ten'),\n(17926, 95161, 'ninety-five thousand one hundred sixty-one'),\n(17927, 51378, 'fifty-one thousand three hundred seventy-eight'),\n(17928, 58869, 'fifty-eight thousand eight hundred sixty-nine'),\n(17929, 40507, 'forty thousand five hundred seven'),\n(17930, 24474, 'twenty-four thousand four hundred seventy-four'),\n(17931, 47542, 'forty-seven thousand five hundred forty-two'),\n(17932, 52732, 'fifty-two thousand seven hundred thirty-two'),\n(17933, 56947, 'fifty-six thousand nine hundred forty-seven'),\n(17934, 29519, 'twenty-nine thousand five hundred nineteen'),\n(17935, 99309, 'ninety-nine thousand three hundred nine'),\n(17936, 70286, 'seventy thousand two hundred eighty-six'),\n(17937, 9444, 'nine thousand four hundred forty-four'),\n(17938, 32244, 'thirty-two thousand two hundred forty-four'),\n(17939, 90349, 'ninety thousand three hundred forty-nine'),\n(17940, 47663, 'forty-seven thousand six hundred sixty-three'),\n(17941, 68129, 'sixty-eight thousand one hundred twenty-nine'),\n(17942, 42894, 'forty-two thousand eight hundred ninety-four'),\n(17943, 22371, 'twenty-two thousand three hundred seventy-one'),\n(17944, 2050, 'two thousand fifty'),\n(17945, 54080, 'fifty-four thousand eighty'),\n(17946, 32418, 'thirty-two thousand four hundred eighteen'),\n(17947, 10752, 'ten thousand seven hundred fifty-two'),\n(17948, 30485, 'thirty thousand four hundred eighty-five'),\n(17949, 53889, 'fifty-three thousand eight hundred eighty-nine'),\n(17950, 20835, 'twenty thousand eight hundred thirty-five'),\n(17951, 96020, 'ninety-six thousand twenty'),\n(17952, 57995, 'fifty-seven thousand nine hundred ninety-five'),\n(17953, 29325, 'twenty-nine thousand three hundred twenty-five'),\n(17954, 96345, 'ninety-six thousand three hundred forty-five'),\n(17955, 68578, 'sixty-eight thousand five hundred seventy-eight'),\n(17956, 17093, 'seventeen thousand ninety-three'),\n(17957, 62325, 'sixty-two thousand three hundred twenty-five'),\n(17958, 68485, 'sixty-eight thousand four hundred eighty-five'),\n(17959, 21071, 'twenty-one thousand seventy-one'),\n(17960, 52918, 'fifty-two thousand nine hundred eighteen'),\n(17961, 80859, 'eighty thousand eight hundred fifty-nine'),\n(17962, 72353, 'seventy-two thousand three hundred fifty-three'),\n(17963, 71133, 'seventy-one thousand one hundred thirty-three'),\n(17964, 73061, 'seventy-three thousand sixty-one'),\n(17965, 37682, 'thirty-seven thousand six hundred eighty-two'),\n(17966, 82745, 'eighty-two thousand seven hundred forty-five'),\n(17967, 40224, 'forty thousand two hundred twenty-four'),\n(17968, 99229, 'ninety-nine thousand two hundred twenty-nine'),\n(17969, 42472, 'forty-two thousand four hundred seventy-two'),\n(17970, 93964, 'ninety-three thousand nine hundred sixty-four'),\n(17971, 7893, 'seven thousand eight hundred ninety-three'),\n(17972, 84563, 'eighty-four thousand five hundred sixty-three'),\n(17973, 57563, 'fifty-seven thousand five hundred sixty-three'),\n(17974, 42823, 'forty-two thousand eight hundred twenty-three'),\n(17975, 1971, 'one thousand nine hundred seventy-one'),\n(17976, 96182, 'ninety-six thousand one hundred eighty-two'),\n(17977, 52709, 'fifty-two thousand seven hundred nine'),\n(17978, 43323, 'forty-three thousand three hundred twenty-three'),\n(17979, 16690, 'sixteen thousand six hundred ninety'),\n(17980, 6635, 'six thousand six hundred thirty-five'),\n(17981, 64219, 'sixty-four thousand two hundred nineteen'),\n(17982, 45442, 'forty-five thousand four hundred forty-two'),\n(17983, 46858, 'forty-six thousand eight hundred fifty-eight'),\n(17984, 3606, 'three thousand six hundred six'),\n(17985, 80516, 'eighty thousand five hundred sixteen'),\n(17986, 33192, 'thirty-three thousand one hundred ninety-two'),\n(17987, 64247, 'sixty-four thousand two hundred forty-seven'),\n(17988, 92874, 'ninety-two thousand eight hundred seventy-four'),\n(17989, 11726, 'eleven thousand seven hundred twenty-six'),\n(17990, 49012, 'forty-nine thousand twelve'),\n(17991, 38807, 'thirty-eight thousand eight hundred seven'),\n(17992, 16052, 'sixteen thousand fifty-two'),\n(17993, 97764, 'ninety-seven thousand seven hundred sixty-four'),\n(17994, 71190, 'seventy-one thousand one hundred ninety'),\n(17995, 6621, 'six thousand six hundred twenty-one'),\n(17996, 19299, 'nineteen thousand two hundred ninety-nine'),\n(17997, 43855, 'forty-three thousand eight hundred fifty-five'),\n(17998, 9654, 'nine thousand six hundred fifty-four'),\n(17999, 1262, 'one thousand two hundred sixty-two'),\n(18000, 46607, 'forty-six thousand six hundred seven'),\n(18001, 80357, 'eighty thousand three hundred fifty-seven'),\n(18002, 40502, 'forty thousand five hundred two'),\n(18003, 7463, 'seven thousand four hundred sixty-three'),\n(18004, 44920, 'forty-four thousand nine hundred twenty'),\n(18005, 69025, 'sixty-nine thousand twenty-five'),\n(18006, 53259, 'fifty-three thousand two hundred fifty-nine'),\n(18007, 95385, 'ninety-five thousand three hundred eighty-five'),\n(18008, 28584, 'twenty-eight thousand five hundred eighty-four'),\n(18009, 64394, 'sixty-four thousand three hundred ninety-four'),\n(18010, 97418, 'ninety-seven thousand four hundred eighteen'),\n(18011, 60303, 'sixty thousand three hundred three'),\n(18012, 59579, 'fifty-nine thousand five hundred seventy-nine'),\n(18013, 70024, 'seventy thousand twenty-four'),\n(18014, 30126, 'thirty thousand one hundred twenty-six'),\n(18015, 81077, 'eighty-one thousand seventy-seven'),\n(18016, 56914, 'fifty-six thousand nine hundred fourteen'),\n(18017, 53828, 'fifty-three thousand eight hundred twenty-eight'),\n(18018, 27228, 'twenty-seven thousand two hundred twenty-eight'),\n(18019, 9993, 'nine thousand nine hundred ninety-three'),\n(18020, 3068, 'three thousand sixty-eight'),\n(18021, 37906, 'thirty-seven thousand nine hundred six'),\n(18022, 74579, 'seventy-four thousand five hundred seventy-nine'),\n(18023, 65759, 'sixty-five thousand seven hundred fifty-nine'),\n(18024, 85183, 'eighty-five thousand one hundred eighty-three'),\n(18025, 58336, 'fifty-eight thousand three hundred thirty-six'),\n(18026, 34942, 'thirty-four thousand nine hundred forty-two'),\n(18027, 47704, 'forty-seven thousand seven hundred four'),\n(18028, 29699, 'twenty-nine thousand six hundred ninety-nine'),\n(18029, 48239, 'forty-eight thousand two hundred thirty-nine'),\n(18030, 95087, 'ninety-five thousand eighty-seven'),\n(18031, 4932, 'four thousand nine hundred thirty-two'),\n(18032, 46522, 'forty-six thousand five hundred twenty-two'),\n(18033, 27530, 'twenty-seven thousand five hundred thirty'),\n(18034, 30769, 'thirty thousand seven hundred sixty-nine'),\n(18035, 36540, 'thirty-six thousand five hundred forty'),\n(18036, 50683, 'fifty thousand six hundred eighty-three'),\n(18037, 2368, 'two thousand three hundred sixty-eight'),\n(18038, 94257, 'ninety-four thousand two hundred fifty-seven'),\n(18039, 9613, 'nine thousand six hundred thirteen'),\n(18040, 55861, 'fifty-five thousand eight hundred sixty-one'),\n(18041, 88442, 'eighty-eight thousand four hundred forty-two'),\n(18042, 16143, 'sixteen thousand one hundred forty-three'),\n(18043, 84943, 'eighty-four thousand nine hundred forty-three'),\n(18044, 68504, 'sixty-eight thousand five hundred four'),\n(18045, 93843, 'ninety-three thousand eight hundred forty-three'),\n(18046, 13186, 'thirteen thousand one hundred eighty-six'),\n(18047, 23238, 'twenty-three thousand two hundred thirty-eight'),\n(18048, 98507, 'ninety-eight thousand five hundred seven'),\n(18049, 5925, 'five thousand nine hundred twenty-five'),\n(18050, 85957, 'eighty-five thousand nine hundred fifty-seven'),\n(18051, 31111, 'thirty-one thousand one hundred eleven'),\n(18052, 59965, 'fifty-nine thousand nine hundred sixty-five'),\n(18053, 92816, 'ninety-two thousand eight hundred sixteen'),\n(18054, 52710, 'fifty-two thousand seven hundred ten'),\n(18055, 10541, 'ten thousand five hundred forty-one'),\n(18056, 12322, 'twelve thousand three hundred twenty-two'),\n(18057, 43736, 'forty-three thousand seven hundred thirty-six'),\n(18058, 68988, 'sixty-eight thousand nine hundred eighty-eight'),\n(18059, 59005, 'fifty-nine thousand five'),\n(18060, 51783, 'fifty-one thousand seven hundred eighty-three'),\n(18061, 75873, 'seventy-five thousand eight hundred seventy-three'),\n(18062, 56628, 'fifty-six thousand six hundred twenty-eight'),\n(18063, 65081, 'sixty-five thousand eighty-one'),\n(18064, 33059, 'thirty-three thousand fifty-nine'),\n(18065, 34342, 'thirty-four thousand three hundred forty-two'),\n(18066, 92252, 'ninety-two thousand two hundred fifty-two'),\n(18067, 88614, 'eighty-eight thousand six hundred fourteen'),\n(18068, 71734, 'seventy-one thousand seven hundred thirty-four'),\n(18069, 13511, 'thirteen thousand five hundred eleven'),\n(18070, 1641, 'one thousand six hundred forty-one'),\n(18071, 60353, 'sixty thousand three hundred fifty-three'),\n(18072, 55540, 'fifty-five thousand five hundred forty'),\n(18073, 81987, 'eighty-one thousand nine hundred eighty-seven'),\n(18074, 81009, 'eighty-one thousand nine'),\n(18075, 42246, 'forty-two thousand two hundred forty-six'),\n(18076, 5935, 'five thousand nine hundred thirty-five'),\n(18077, 62205, 'sixty-two thousand two hundred five'),\n(18078, 65614, 'sixty-five thousand six hundred fourteen'),\n(18079, 95842, 'ninety-five thousand eight hundred forty-two'),\n(18080, 39588, 'thirty-nine thousand five hundred eighty-eight'),\n(18081, 84271, 'eighty-four thousand two hundred seventy-one'),\n(18082, 50839, 'fifty thousand eight hundred thirty-nine'),\n(18083, 53520, 'fifty-three thousand five hundred twenty'),\n(18084, 46391, 'forty-six thousand three hundred ninety-one'),\n(18085, 96597, 'ninety-six thousand five hundred ninety-seven'),\n(18086, 50655, 'fifty thousand six hundred fifty-five'),\n(18087, 70757, 'seventy thousand seven hundred fifty-seven'),\n(18088, 14714, 'fourteen thousand seven hundred fourteen'),\n(18089, 97339, 'ninety-seven thousand three hundred thirty-nine'),\n(18090, 31265, 'thirty-one thousand two hundred sixty-five'),\n(18091, 27668, 'twenty-seven thousand six hundred sixty-eight'),\n(18092, 43832, 'forty-three thousand eight hundred thirty-two'),\n(18093, 97418, 'ninety-seven thousand four hundred eighteen'),\n(18094, 65042, 'sixty-five thousand forty-two'),\n(18095, 90074, 'ninety thousand seventy-four'),\n(18096, 87805, 'eighty-seven thousand eight hundred five'),\n(18097, 12612, 'twelve thousand six hundred twelve'),\n(18098, 86175, 'eighty-six thousand one hundred seventy-five'),\n(18099, 83403, 'eighty-three thousand four hundred three'),\n(18100, 97528, 'ninety-seven thousand five hundred twenty-eight'),\n(18101, 18517, 'eighteen thousand five hundred seventeen'),\n(18102, 51258, 'fifty-one thousand two hundred fifty-eight'),\n(18103, 90469, 'ninety thousand four hundred sixty-nine'),\n(18104, 34809, 'thirty-four thousand eight hundred nine'),\n(18105, 44780, 'forty-four thousand seven hundred eighty'),\n(18106, 17402, 'seventeen thousand four hundred two'),\n(18107, 65102, 'sixty-five thousand one hundred two'),\n(18108, 36667, 'thirty-six thousand six hundred sixty-seven'),\n(18109, 60010, 'sixty thousand ten'),\n(18110, 11518, 'eleven thousand five hundred eighteen'),\n(18111, 20867, 'twenty thousand eight hundred sixty-seven'),\n(18112, 23135, 'twenty-three thousand one hundred thirty-five'),\n(18113, 97125, 'ninety-seven thousand one hundred twenty-five'),\n(18114, 90884, 'ninety thousand eight hundred eighty-four'),\n(18115, 3753, 'three thousand seven hundred fifty-three'),\n(18116, 84093, 'eighty-four thousand ninety-three'),\n(18117, 15786, 'fifteen thousand seven hundred eighty-six'),\n(18118, 23000, 'twenty-three thousand'),\n(18119, 33087, 'thirty-three thousand eighty-seven'),\n(18120, 64898, 'sixty-four thousand eight hundred ninety-eight'),\n(18121, 16200, 'sixteen thousand two hundred'),\n(18122, 74484, 'seventy-four thousand four hundred eighty-four'),\n(18123, 33502, 'thirty-three thousand five hundred two'),\n(18124, 47339, 'forty-seven thousand three hundred thirty-nine'),\n(18125, 96785, 'ninety-six thousand seven hundred eighty-five'),\n(18126, 54734, 'fifty-four thousand seven hundred thirty-four'),\n(18127, 24230, 'twenty-four thousand two hundred thirty'),\n(18128, 63860, 'sixty-three thousand eight hundred sixty'),\n(18129, 48822, 'forty-eight thousand eight hundred twenty-two'),\n(18130, 82896, 'eighty-two thousand eight hundred ninety-six'),\n(18131, 10112, 'ten thousand one hundred twelve'),\n(18132, 9075, 'nine thousand seventy-five'),\n(18133, 14780, 'fourteen thousand seven hundred eighty'),\n(18134, 49475, 'forty-nine thousand four hundred seventy-five'),\n(18135, 24714, 'twenty-four thousand seven hundred fourteen'),\n(18136, 14943, 'fourteen thousand nine hundred forty-three'),\n(18137, 24686, 'twenty-four thousand six hundred eighty-six'),\n(18138, 36880, 'thirty-six thousand eight hundred eighty'),\n(18139, 79326, 'seventy-nine thousand three hundred twenty-six'),\n(18140, 30601, 'thirty thousand six hundred one'),\n(18141, 81379, 'eighty-one thousand three hundred seventy-nine'),\n(18142, 35694, 'thirty-five thousand six hundred ninety-four'),\n(18143, 5153, 'five thousand one hundred fifty-three'),\n(18144, 35016, 'thirty-five thousand sixteen'),\n(18145, 36034, 'thirty-six thousand thirty-four'),\n(18146, 6296, 'six thousand two hundred ninety-six'),\n(18147, 24982, 'twenty-four thousand nine hundred eighty-two'),\n(18148, 56176, 'fifty-six thousand one hundred seventy-six'),\n(18149, 3253, 'three thousand two hundred fifty-three'),\n(18150, 55845, 'fifty-five thousand eight hundred forty-five'),\n(18151, 81684, 'eighty-one thousand six hundred eighty-four'),\n(18152, 86517, 'eighty-six thousand five hundred seventeen'),\n(18153, 99051, 'ninety-nine thousand fifty-one'),\n(18154, 48695, 'forty-eight thousand six hundred ninety-five'),\n(18155, 69661, 'sixty-nine thousand six hundred sixty-one'),\n(18156, 76037, 'seventy-six thousand thirty-seven'),\n(18157, 41687, 'forty-one thousand six hundred eighty-seven'),\n(18158, 44266, 'forty-four thousand two hundred sixty-six'),\n(18159, 48769, 'forty-eight thousand seven hundred sixty-nine'),\n(18160, 5780, 'five thousand seven hundred eighty'),\n(18161, 53399, 'fifty-three thousand three hundred ninety-nine'),\n(18162, 2897, 'two thousand eight hundred ninety-seven'),\n(18163, 76323, 'seventy-six thousand three hundred twenty-three'),\n(18164, 49273, 'forty-nine thousand two hundred seventy-three'),\n(18165, 9685, 'nine thousand six hundred eighty-five'),\n(18166, 27050, 'twenty-seven thousand fifty'),\n(18167, 25116, 'twenty-five thousand one hundred sixteen'),\n(18168, 8942, 'eight thousand nine hundred forty-two'),\n(18169, 74359, 'seventy-four thousand three hundred fifty-nine'),\n(18170, 16774, 'sixteen thousand seven hundred seventy-four'),\n(18171, 17060, 'seventeen thousand sixty'),\n(18172, 84211, 'eighty-four thousand two hundred eleven'),\n(18173, 82852, 'eighty-two thousand eight hundred fifty-two'),\n(18174, 35496, 'thirty-five thousand four hundred ninety-six'),\n(18175, 59457, 'fifty-nine thousand four hundred fifty-seven'),\n(18176, 47516, 'forty-seven thousand five hundred sixteen'),\n(18177, 43854, 'forty-three thousand eight hundred fifty-four'),\n(18178, 92712, 'ninety-two thousand seven hundred twelve'),\n(18179, 79098, 'seventy-nine thousand ninety-eight'),\n(18180, 21502, 'twenty-one thousand five hundred two'),\n(18181, 59637, 'fifty-nine thousand six hundred thirty-seven'),\n(18182, 64537, 'sixty-four thousand five hundred thirty-seven'),\n(18183, 84158, 'eighty-four thousand one hundred fifty-eight'),\n(18184, 50642, 'fifty thousand six hundred forty-two'),\n(18185, 52862, 'fifty-two thousand eight hundred sixty-two'),\n(18186, 53577, 'fifty-three thousand five hundred seventy-seven'),\n(18187, 1878, 'one thousand eight hundred seventy-eight'),\n(18188, 22071, 'twenty-two thousand seventy-one'),\n(18189, 27161, 'twenty-seven thousand one hundred sixty-one'),\n(18190, 64374, 'sixty-four thousand three hundred seventy-four'),\n(18191, 20246, 'twenty thousand two hundred forty-six'),\n(18192, 79039, 'seventy-nine thousand thirty-nine'),\n(18193, 84932, 'eighty-four thousand nine hundred thirty-two'),\n(18194, 23998, 'twenty-three thousand nine hundred ninety-eight'),\n(18195, 11418, 'eleven thousand four hundred eighteen'),\n(18196, 60607, 'sixty thousand six hundred seven'),\n(18197, 59348, 'fifty-nine thousand three hundred forty-eight'),\n(18198, 30387, 'thirty thousand three hundred eighty-seven'),\n(18199, 61315, 'sixty-one thousand three hundred fifteen'),\n(18200, 81309, 'eighty-one thousand three hundred nine'),\n(18201, 24516, 'twenty-four thousand five hundred sixteen'),\n(18202, 50635, 'fifty thousand six hundred thirty-five'),\n(18203, 51920, 'fifty-one thousand nine hundred twenty'),\n(18204, 93460, 'ninety-three thousand four hundred sixty'),\n(18205, 19742, 'nineteen thousand seven hundred forty-two'),\n(18206, 18636, 'eighteen thousand six hundred thirty-six'),\n(18207, 46930, 'forty-six thousand nine hundred thirty'),\n(18208, 9529, 'nine thousand five hundred twenty-nine'),\n(18209, 51897, 'fifty-one thousand eight hundred ninety-seven'),\n(18210, 68078, 'sixty-eight thousand seventy-eight'),\n(18211, 2627, 'two thousand six hundred twenty-seven'),\n(18212, 76397, 'seventy-six thousand three hundred ninety-seven'),\n(18213, 3804, 'three thousand eight hundred four'),\n(18214, 69943, 'sixty-nine thousand nine hundred forty-three'),\n(18215, 78204, 'seventy-eight thousand two hundred four'),\n(18216, 21311, 'twenty-one thousand three hundred eleven'),\n(18217, 8966, 'eight thousand nine hundred sixty-six'),\n(18218, 52972, 'fifty-two thousand nine hundred seventy-two'),\n(18219, 43969, 'forty-three thousand nine hundred sixty-nine'),\n(18220, 11308, 'eleven thousand three hundred eight'),\n(18221, 7718, 'seven thousand seven hundred eighteen'),\n(18222, 77721, 'seventy-seven thousand seven hundred twenty-one'),\n(18223, 28942, 'twenty-eight thousand nine hundred forty-two'),\n(18224, 49210, 'forty-nine thousand two hundred ten'),\n(18225, 16401, 'sixteen thousand four hundred one'),\n(18226, 86843, 'eighty-six thousand eight hundred forty-three'),\n(18227, 30902, 'thirty thousand nine hundred two'),\n(18228, 56063, 'fifty-six thousand sixty-three'),\n(18229, 6257, 'six thousand two hundred fifty-seven'),\n(18230, 76737, 'seventy-six thousand seven hundred thirty-seven'),\n(18231, 34825, 'thirty-four thousand eight hundred twenty-five'),\n(18232, 16194, 'sixteen thousand one hundred ninety-four'),\n(18233, 26122, 'twenty-six thousand one hundred twenty-two'),\n(18234, 70025, 'seventy thousand twenty-five'),\n(18235, 48124, 'forty-eight thousand one hundred twenty-four'),\n(18236, 78417, 'seventy-eight thousand four hundred seventeen'),\n(18237, 86395, 'eighty-six thousand three hundred ninety-five'),\n(18238, 87713, 'eighty-seven thousand seven hundred thirteen'),\n(18239, 51009, 'fifty-one thousand nine'),\n(18240, 73813, 'seventy-three thousand eight hundred thirteen'),\n(18241, 31835, 'thirty-one thousand eight hundred thirty-five'),\n(18242, 19299, 'nineteen thousand two hundred ninety-nine'),\n(18243, 47732, 'forty-seven thousand seven hundred thirty-two'),\n(18244, 996, 'nine hundred ninety-six'),\n(18245, 8223, 'eight thousand two hundred twenty-three'),\n(18246, 10792, 'ten thousand seven hundred ninety-two'),\n(18247, 5085, 'five thousand eighty-five'),\n(18248, 64617, 'sixty-four thousand six hundred seventeen'),\n(18249, 2321, 'two thousand three hundred twenty-one'),\n(18250, 38299, 'thirty-eight thousand two hundred ninety-nine'),\n(18251, 80401, 'eighty thousand four hundred one'),\n(18252, 53315, 'fifty-three thousand three hundred fifteen'),\n(18253, 58755, 'fifty-eight thousand seven hundred fifty-five'),\n(18254, 64247, 'sixty-four thousand two hundred forty-seven'),\n(18255, 86587, 'eighty-six thousand five hundred eighty-seven'),\n(18256, 77288, 'seventy-seven thousand two hundred eighty-eight'),\n(18257, 30358, 'thirty thousand three hundred fifty-eight'),\n(18258, 74818, 'seventy-four thousand eight hundred eighteen'),\n(18259, 77945, 'seventy-seven thousand nine hundred forty-five'),\n(18260, 7023, 'seven thousand twenty-three'),\n(18261, 87292, 'eighty-seven thousand two hundred ninety-two'),\n(18262, 97220, 'ninety-seven thousand two hundred twenty'),\n(18263, 25983, 'twenty-five thousand nine hundred eighty-three'),\n(18264, 56976, 'fifty-six thousand nine hundred seventy-six'),\n(18265, 84091, 'eighty-four thousand ninety-one'),\n(18266, 88097, 'eighty-eight thousand ninety-seven'),\n(18267, 52424, 'fifty-two thousand four hundred twenty-four'),\n(18268, 19355, 'nineteen thousand three hundred fifty-five'),\n(18269, 31643, 'thirty-one thousand six hundred forty-three'),\n(18270, 54584, 'fifty-four thousand five hundred eighty-four'),\n(18271, 51599, 'fifty-one thousand five hundred ninety-nine'),\n(18272, 60062, 'sixty thousand sixty-two'),\n(18273, 54742, 'fifty-four thousand seven hundred forty-two'),\n(18274, 57724, 'fifty-seven thousand seven hundred twenty-four'),\n(18275, 45933, 'forty-five thousand nine hundred thirty-three'),\n(18276, 29680, 'twenty-nine thousand six hundred eighty'),\n(18277, 97832, 'ninety-seven thousand eight hundred thirty-two'),\n(18278, 64374, 'sixty-four thousand three hundred seventy-four'),\n(18279, 42366, 'forty-two thousand three hundred sixty-six'),\n(18280, 30522, 'thirty thousand five hundred twenty-two'),\n(18281, 19807, 'nineteen thousand eight hundred seven'),\n(18282, 59948, 'fifty-nine thousand nine hundred forty-eight'),\n(18283, 6594, 'six thousand five hundred ninety-four'),\n(18284, 41687, 'forty-one thousand six hundred eighty-seven'),\n(18285, 976, 'nine hundred seventy-six'),\n(18286, 24438, 'twenty-four thousand four hundred thirty-eight'),\n(18287, 91114, 'ninety-one thousand one hundred fourteen'),\n(18288, 20747, 'twenty thousand seven hundred forty-seven'),\n(18289, 71132, 'seventy-one thousand one hundred thirty-two'),\n(18290, 65628, 'sixty-five thousand six hundred twenty-eight'),\n(18291, 68844, 'sixty-eight thousand eight hundred forty-four'),\n(18292, 78142, 'seventy-eight thousand one hundred forty-two'),\n(18293, 73195, 'seventy-three thousand one hundred ninety-five'),\n(18294, 44241, 'forty-four thousand two hundred forty-one'),\n(18295, 61208, 'sixty-one thousand two hundred eight'),\n(18296, 38710, 'thirty-eight thousand seven hundred ten'),\n(18297, 15264, 'fifteen thousand two hundred sixty-four'),\n(18298, 16725, 'sixteen thousand seven hundred twenty-five'),\n(18299, 44131, 'forty-four thousand one hundred thirty-one'),\n(18300, 55692, 'fifty-five thousand six hundred ninety-two'),\n(18301, 65051, 'sixty-five thousand fifty-one'),\n(18302, 46725, 'forty-six thousand seven hundred twenty-five'),\n(18303, 45137, 'forty-five thousand one hundred thirty-seven'),\n(18304, 88708, 'eighty-eight thousand seven hundred eight'),\n(18305, 22612, 'twenty-two thousand six hundred twelve'),\n(18306, 51228, 'fifty-one thousand two hundred twenty-eight'),\n(18307, 68304, 'sixty-eight thousand three hundred four'),\n(18308, 33177, 'thirty-three thousand one hundred seventy-seven'),\n(18309, 57633, 'fifty-seven thousand six hundred thirty-three'),\n(18310, 25377, 'twenty-five thousand three hundred seventy-seven'),\n(18311, 69279, 'sixty-nine thousand two hundred seventy-nine'),\n(18312, 86015, 'eighty-six thousand fifteen'),\n(18313, 76678, 'seventy-six thousand six hundred seventy-eight'),\n(18314, 24319, 'twenty-four thousand three hundred nineteen'),\n(18315, 35107, 'thirty-five thousand one hundred seven'),\n(18316, 38478, 'thirty-eight thousand four hundred seventy-eight'),\n(18317, 53921, 'fifty-three thousand nine hundred twenty-one'),\n(18318, 81705, 'eighty-one thousand seven hundred five'),\n(18319, 74888, 'seventy-four thousand eight hundred eighty-eight'),\n(18320, 49500, 'forty-nine thousand five hundred'),\n(18321, 19384, 'nineteen thousand three hundred eighty-four'),\n(18322, 18388, 'eighteen thousand three hundred eighty-eight'),\n(18323, 61515, 'sixty-one thousand five hundred fifteen'),\n(18324, 41419, 'forty-one thousand four hundred nineteen'),\n(18325, 82468, 'eighty-two thousand four hundred sixty-eight'),\n(18326, 99380, 'ninety-nine thousand three hundred eighty'),\n(18327, 45167, 'forty-five thousand one hundred sixty-seven'),\n(18328, 85160, 'eighty-five thousand one hundred sixty'),\n(18329, 72739, 'seventy-two thousand seven hundred thirty-nine'),\n(18330, 903, 'nine hundred three'),\n(18331, 3952, 'three thousand nine hundred fifty-two'),\n(18332, 80286, 'eighty thousand two hundred eighty-six'),\n(18333, 37632, 'thirty-seven thousand six hundred thirty-two'),\n(18334, 67183, 'sixty-seven thousand one hundred eighty-three'),\n(18335, 74772, 'seventy-four thousand seven hundred seventy-two'),\n(18336, 45775, 'forty-five thousand seven hundred seventy-five'),\n(18337, 6140, 'six thousand one hundred forty'),\n(18338, 66729, 'sixty-six thousand seven hundred twenty-nine'),\n(18339, 63314, 'sixty-three thousand three hundred fourteen'),\n(18340, 55524, 'fifty-five thousand five hundred twenty-four'),\n(18341, 27110, 'twenty-seven thousand one hundred ten'),\n(18342, 64228, 'sixty-four thousand two hundred twenty-eight'),\n(18343, 94382, 'ninety-four thousand three hundred eighty-two'),\n(18344, 83692, 'eighty-three thousand six hundred ninety-two'),\n(18345, 66141, 'sixty-six thousand one hundred forty-one'),\n(18346, 47972, 'forty-seven thousand nine hundred seventy-two'),\n(18347, 50844, 'fifty thousand eight hundred forty-four'),\n(18348, 89925, 'eighty-nine thousand nine hundred twenty-five'),\n(18349, 27064, 'twenty-seven thousand sixty-four'),\n(18350, 28613, 'twenty-eight thousand six hundred thirteen'),\n(18351, 26202, 'twenty-six thousand two hundred two'),\n(18352, 77549, 'seventy-seven thousand five hundred forty-nine'),\n(18353, 63689, 'sixty-three thousand six hundred eighty-nine'),\n(18354, 50428, 'fifty thousand four hundred twenty-eight'),\n(18355, 74060, 'seventy-four thousand sixty'),\n(18356, 74889, 'seventy-four thousand eight hundred eighty-nine'),\n(18357, 1489, 'one thousand four hundred eighty-nine'),\n(18358, 93198, 'ninety-three thousand one hundred ninety-eight'),\n(18359, 64793, 'sixty-four thousand seven hundred ninety-three'),\n(18360, 87947, 'eighty-seven thousand nine hundred forty-seven'),\n(18361, 87510, 'eighty-seven thousand five hundred ten'),\n(18362, 39211, 'thirty-nine thousand two hundred eleven'),\n(18363, 23641, 'twenty-three thousand six hundred forty-one'),\n(18364, 70192, 'seventy thousand one hundred ninety-two'),\n(18365, 90185, 'ninety thousand one hundred eighty-five'),\n(18366, 60627, 'sixty thousand six hundred twenty-seven'),\n(18367, 90277, 'ninety thousand two hundred seventy-seven'),\n(18368, 22697, 'twenty-two thousand six hundred ninety-seven'),\n(18369, 25456, 'twenty-five thousand four hundred fifty-six'),\n(18370, 27193, 'twenty-seven thousand one hundred ninety-three'),\n(18371, 83459, 'eighty-three thousand four hundred fifty-nine'),\n(18372, 58361, 'fifty-eight thousand three hundred sixty-one'),\n(18373, 94507, 'ninety-four thousand five hundred seven'),\n(18374, 42456, 'forty-two thousand four hundred fifty-six'),\n(18375, 45775, 'forty-five thousand seven hundred seventy-five'),\n(18376, 78177, 'seventy-eight thousand one hundred seventy-seven'),\n(18377, 99884, 'ninety-nine thousand eight hundred eighty-four'),\n(18378, 89989, 'eighty-nine thousand nine hundred eighty-nine'),\n(18379, 3411, 'three thousand four hundred eleven'),\n(18380, 39445, 'thirty-nine thousand four hundred forty-five'),\n(18381, 80567, 'eighty thousand five hundred sixty-seven'),\n(18382, 75406, 'seventy-five thousand four hundred six'),\n(18383, 69302, 'sixty-nine thousand three hundred two'),\n(18384, 17856, 'seventeen thousand eight hundred fifty-six'),\n(18385, 69150, 'sixty-nine thousand one hundred fifty'),\n(18386, 91985, 'ninety-one thousand nine hundred eighty-five'),\n(18387, 50213, 'fifty thousand two hundred thirteen'),\n(18388, 50372, 'fifty thousand three hundred seventy-two'),\n(18389, 79670, 'seventy-nine thousand six hundred seventy'),\n(18390, 36403, 'thirty-six thousand four hundred three'),\n(18391, 67890, 'sixty-seven thousand eight hundred ninety'),\n(18392, 85477, 'eighty-five thousand four hundred seventy-seven'),\n(18393, 83491, 'eighty-three thousand four hundred ninety-one'),\n(18394, 62623, 'sixty-two thousand six hundred twenty-three'),\n(18395, 55489, 'fifty-five thousand four hundred eighty-nine'),\n(18396, 96528, 'ninety-six thousand five hundred twenty-eight'),\n(18397, 92954, 'ninety-two thousand nine hundred fifty-four'),\n(18398, 1654, 'one thousand six hundred fifty-four'),\n(18399, 30687, 'thirty thousand six hundred eighty-seven'),\n(18400, 43342, 'forty-three thousand three hundred forty-two'),\n(18401, 11341, 'eleven thousand three hundred forty-one'),\n(18402, 14932, 'fourteen thousand nine hundred thirty-two'),\n(18403, 61091, 'sixty-one thousand ninety-one'),\n(18404, 51662, 'fifty-one thousand six hundred sixty-two'),\n(18405, 94771, 'ninety-four thousand seven hundred seventy-one'),\n(18406, 1972, 'one thousand nine hundred seventy-two'),\n(18407, 58946, 'fifty-eight thousand nine hundred forty-six'),\n(18408, 92849, 'ninety-two thousand eight hundred forty-nine'),\n(18409, 71729, 'seventy-one thousand seven hundred twenty-nine'),\n(18410, 99638, 'ninety-nine thousand six hundred thirty-eight'),\n(18411, 13245, 'thirteen thousand two hundred forty-five'),\n(18412, 8477, 'eight thousand four hundred seventy-seven'),\n(18413, 17911, 'seventeen thousand nine hundred eleven'),\n(18414, 53383, 'fifty-three thousand three hundred eighty-three'),\n(18415, 89717, 'eighty-nine thousand seven hundred seventeen'),\n(18416, 59461, 'fifty-nine thousand four hundred sixty-one'),\n(18417, 97991, 'ninety-seven thousand nine hundred ninety-one'),\n(18418, 97374, 'ninety-seven thousand three hundred seventy-four'),\n(18419, 24503, 'twenty-four thousand five hundred three'),\n(18420, 42542, 'forty-two thousand five hundred forty-two'),\n(18421, 75529, 'seventy-five thousand five hundred twenty-nine'),\n(18422, 75777, 'seventy-five thousand seven hundred seventy-seven'),\n(18423, 66107, 'sixty-six thousand one hundred seven'),\n(18424, 35511, 'thirty-five thousand five hundred eleven'),\n(18425, 32886, 'thirty-two thousand eight hundred eighty-six'),\n(18426, 46627, 'forty-six thousand six hundred twenty-seven'),\n(18427, 39785, 'thirty-nine thousand seven hundred eighty-five'),\n(18428, 95150, 'ninety-five thousand one hundred fifty'),\n(18429, 16706, 'sixteen thousand seven hundred six'),\n(18430, 25967, 'twenty-five thousand nine hundred sixty-seven'),\n(18431, 43901, 'forty-three thousand nine hundred one'),\n(18432, 388, 'three hundred eighty-eight'),\n(18433, 93434, 'ninety-three thousand four hundred thirty-four'),\n(18434, 63865, 'sixty-three thousand eight hundred sixty-five'),\n(18435, 55652, 'fifty-five thousand six hundred fifty-two'),\n(18436, 92549, 'ninety-two thousand five hundred forty-nine'),\n(18437, 93456, 'ninety-three thousand four hundred fifty-six'),\n(18438, 46926, 'forty-six thousand nine hundred twenty-six'),\n(18439, 72986, 'seventy-two thousand nine hundred eighty-six'),\n(18440, 87309, 'eighty-seven thousand three hundred nine'),\n(18441, 14182, 'fourteen thousand one hundred eighty-two'),\n(18442, 75379, 'seventy-five thousand three hundred seventy-nine'),\n(18443, 17174, 'seventeen thousand one hundred seventy-four'),\n(18444, 42335, 'forty-two thousand three hundred thirty-five'),\n(18445, 33390, 'thirty-three thousand three hundred ninety'),\n(18446, 3238, 'three thousand two hundred thirty-eight'),\n(18447, 41810, 'forty-one thousand eight hundred ten'),\n(18448, 72465, 'seventy-two thousand four hundred sixty-five'),\n(18449, 35974, 'thirty-five thousand nine hundred seventy-four'),\n(18450, 52491, 'fifty-two thousand four hundred ninety-one'),\n(18451, 76467, 'seventy-six thousand four hundred sixty-seven'),\n(18452, 81814, 'eighty-one thousand eight hundred fourteen'),\n(18453, 93487, 'ninety-three thousand four hundred eighty-seven'),\n(18454, 33693, 'thirty-three thousand six hundred ninety-three'),\n(18455, 50781, 'fifty thousand seven hundred eighty-one'),\n(18456, 29834, 'twenty-nine thousand eight hundred thirty-four'),\n(18457, 37711, 'thirty-seven thousand seven hundred eleven'),\n(18458, 33883, 'thirty-three thousand eight hundred eighty-three'),\n(18459, 32302, 'thirty-two thousand three hundred two'),\n(18460, 67171, 'sixty-seven thousand one hundred seventy-one'),\n(18461, 17351, 'seventeen thousand three hundred fifty-one'),\n(18462, 36245, 'thirty-six thousand two hundred forty-five'),\n(18463, 55781, 'fifty-five thousand seven hundred eighty-one'),\n(18464, 89311, 'eighty-nine thousand three hundred eleven'),\n(18465, 2192, 'two thousand one hundred ninety-two'),\n(18466, 76841, 'seventy-six thousand eight hundred forty-one'),\n(18467, 8533, 'eight thousand five hundred thirty-three'),\n(18468, 2852, 'two thousand eight hundred fifty-two'),\n(18469, 55734, 'fifty-five thousand seven hundred thirty-four'),\n(18470, 96069, 'ninety-six thousand sixty-nine'),\n(18471, 89693, 'eighty-nine thousand six hundred ninety-three'),\n(18472, 49818, 'forty-nine thousand eight hundred eighteen'),\n(18473, 84487, 'eighty-four thousand four hundred eighty-seven'),\n(18474, 88751, 'eighty-eight thousand seven hundred fifty-one'),\n(18475, 12503, 'twelve thousand five hundred three'),\n(18476, 91114, 'ninety-one thousand one hundred fourteen'),\n(18477, 57500, 'fifty-seven thousand five hundred'),\n(18478, 7997, 'seven thousand nine hundred ninety-seven'),\n(18479, 62648, 'sixty-two thousand six hundred forty-eight'),\n(18480, 45973, 'forty-five thousand nine hundred seventy-three'),\n(18481, 10878, 'ten thousand eight hundred seventy-eight'),\n(18482, 75158, 'seventy-five thousand one hundred fifty-eight'),\n(18483, 75392, 'seventy-five thousand three hundred ninety-two'),\n(18484, 95091, 'ninety-five thousand ninety-one'),\n(18485, 67895, 'sixty-seven thousand eight hundred ninety-five'),\n(18486, 45044, 'forty-five thousand forty-four'),\n(18487, 98820, 'ninety-eight thousand eight hundred twenty'),\n(18488, 85904, 'eighty-five thousand nine hundred four'),\n(18489, 26344, 'twenty-six thousand three hundred forty-four'),\n(18490, 63503, 'sixty-three thousand five hundred three'),\n(18491, 59648, 'fifty-nine thousand six hundred forty-eight'),\n(18492, 90336, 'ninety thousand three hundred thirty-six'),\n(18493, 34940, 'thirty-four thousand nine hundred forty'),\n(18494, 57506, 'fifty-seven thousand five hundred six'),\n(18495, 46592, 'forty-six thousand five hundred ninety-two'),\n(18496, 42923, 'forty-two thousand nine hundred twenty-three'),\n(18497, 9972, 'nine thousand nine hundred seventy-two'),\n(18498, 26883, 'twenty-six thousand eight hundred eighty-three'),\n(18499, 35845, 'thirty-five thousand eight hundred forty-five'),\n(18500, 27429, 'twenty-seven thousand four hundred twenty-nine'),\n(18501, 66395, 'sixty-six thousand three hundred ninety-five'),\n(18502, 38444, 'thirty-eight thousand four hundred forty-four'),\n(18503, 20797, 'twenty thousand seven hundred ninety-seven'),\n(18504, 13173, 'thirteen thousand one hundred seventy-three'),\n(18505, 27531, 'twenty-seven thousand five hundred thirty-one'),\n(18506, 28425, 'twenty-eight thousand four hundred twenty-five'),\n(18507, 65182, 'sixty-five thousand one hundred eighty-two'),\n(18508, 53616, 'fifty-three thousand six hundred sixteen'),\n(18509, 88065, 'eighty-eight thousand sixty-five'),\n(18510, 93708, 'ninety-three thousand seven hundred eight'),\n(18511, 11671, 'eleven thousand six hundred seventy-one'),\n(18512, 65037, 'sixty-five thousand thirty-seven'),\n(18513, 32758, 'thirty-two thousand seven hundred fifty-eight'),\n(18514, 67010, 'sixty-seven thousand ten'),\n(18515, 26448, 'twenty-six thousand four hundred forty-eight'),\n(18516, 73537, 'seventy-three thousand five hundred thirty-seven'),\n(18517, 64700, 'sixty-four thousand seven hundred'),\n(18518, 45543, 'forty-five thousand five hundred forty-three'),\n(18519, 59593, 'fifty-nine thousand five hundred ninety-three'),\n(18520, 95337, 'ninety-five thousand three hundred thirty-seven'),\n(18521, 54809, 'fifty-four thousand eight hundred nine'),\n(18522, 29661, 'twenty-nine thousand six hundred sixty-one'),\n(18523, 14182, 'fourteen thousand one hundred eighty-two'),\n(18524, 35101, 'thirty-five thousand one hundred one'),\n(18525, 1288, 'one thousand two hundred eighty-eight'),\n(18526, 60433, 'sixty thousand four hundred thirty-three'),\n(18527, 5988, 'five thousand nine hundred eighty-eight'),\n(18528, 80143, 'eighty thousand one hundred forty-three'),\n(18529, 89770, 'eighty-nine thousand seven hundred seventy'),\n(18530, 66060, 'sixty-six thousand sixty'),\n(18531, 35544, 'thirty-five thousand five hundred forty-four'),\n(18532, 16239, 'sixteen thousand two hundred thirty-nine'),\n(18533, 87566, 'eighty-seven thousand five hundred sixty-six'),\n(18534, 87869, 'eighty-seven thousand eight hundred sixty-nine'),\n(18535, 36552, 'thirty-six thousand five hundred fifty-two'),\n(18536, 20681, 'twenty thousand six hundred eighty-one'),\n(18537, 32961, 'thirty-two thousand nine hundred sixty-one'),\n(18538, 61273, 'sixty-one thousand two hundred seventy-three'),\n(18539, 28139, 'twenty-eight thousand one hundred thirty-nine'),\n(18540, 62584, 'sixty-two thousand five hundred eighty-four'),\n(18541, 61020, 'sixty-one thousand twenty'),\n(18542, 88856, 'eighty-eight thousand eight hundred fifty-six'),\n(18543, 25926, 'twenty-five thousand nine hundred twenty-six'),\n(18544, 86626, 'eighty-six thousand six hundred twenty-six'),\n(18545, 32770, 'thirty-two thousand seven hundred seventy'),\n(18546, 67162, 'sixty-seven thousand one hundred sixty-two'),\n(18547, 77954, 'seventy-seven thousand nine hundred fifty-four'),\n(18548, 95855, 'ninety-five thousand eight hundred fifty-five'),\n(18549, 92285, 'ninety-two thousand two hundred eighty-five'),\n(18550, 24628, 'twenty-four thousand six hundred twenty-eight'),\n(18551, 76317, 'seventy-six thousand three hundred seventeen'),\n(18552, 42831, 'forty-two thousand eight hundred thirty-one'),\n(18553, 43663, 'forty-three thousand six hundred sixty-three'),\n(18554, 79880, 'seventy-nine thousand eight hundred eighty'),\n(18555, 42843, 'forty-two thousand eight hundred forty-three'),\n(18556, 29024, 'twenty-nine thousand twenty-four'),\n(18557, 49405, 'forty-nine thousand four hundred five'),\n(18558, 56569, 'fifty-six thousand five hundred sixty-nine'),\n(18559, 51993, 'fifty-one thousand nine hundred ninety-three'),\n(18560, 38950, 'thirty-eight thousand nine hundred fifty'),\n(18561, 38611, 'thirty-eight thousand six hundred eleven'),\n(18562, 51912, 'fifty-one thousand nine hundred twelve'),\n(18563, 95065, 'ninety-five thousand sixty-five'),\n(18564, 4978, 'four thousand nine hundred seventy-eight'),\n(18565, 53049, 'fifty-three thousand forty-nine'),\n(18566, 50983, 'fifty thousand nine hundred eighty-three'),\n(18567, 61528, 'sixty-one thousand five hundred twenty-eight'),\n(18568, 11574, 'eleven thousand five hundred seventy-four'),\n(18569, 89229, 'eighty-nine thousand two hundred twenty-nine'),\n(18570, 81508, 'eighty-one thousand five hundred eight'),\n(18571, 2888, 'two thousand eight hundred eighty-eight'),\n(18572, 45677, 'forty-five thousand six hundred seventy-seven'),\n(18573, 35397, 'thirty-five thousand three hundred ninety-seven'),\n(18574, 27297, 'twenty-seven thousand two hundred ninety-seven'),\n(18575, 49487, 'forty-nine thousand four hundred eighty-seven'),\n(18576, 7079, 'seven thousand seventy-nine'),\n(18577, 1439, 'one thousand four hundred thirty-nine'),\n(18578, 91577, 'ninety-one thousand five hundred seventy-seven'),\n(18579, 52222, 'fifty-two thousand two hundred twenty-two'),\n(18580, 98450, 'ninety-eight thousand four hundred fifty'),\n(18581, 96404, 'ninety-six thousand four hundred four'),\n(18582, 16749, 'sixteen thousand seven hundred forty-nine'),\n(18583, 77369, 'seventy-seven thousand three hundred sixty-nine'),\n(18584, 94287, 'ninety-four thousand two hundred eighty-seven'),\n(18585, 50644, 'fifty thousand six hundred forty-four'),\n(18586, 16600, 'sixteen thousand six hundred'),\n(18587, 5604, 'five thousand six hundred four'),\n(18588, 95991, 'ninety-five thousand nine hundred ninety-one'),\n(18589, 12146, 'twelve thousand one hundred forty-six'),\n(18590, 94594, 'ninety-four thousand five hundred ninety-four'),\n(18591, 68674, 'sixty-eight thousand six hundred seventy-four'),\n(18592, 7973, 'seven thousand nine hundred seventy-three'),\n(18593, 548, 'five hundred forty-eight'),\n(18594, 15923, 'fifteen thousand nine hundred twenty-three'),\n(18595, 9617, 'nine thousand six hundred seventeen'),\n(18596, 46310, 'forty-six thousand three hundred ten'),\n(18597, 38998, 'thirty-eight thousand nine hundred ninety-eight'),\n(18598, 57096, 'fifty-seven thousand ninety-six'),\n(18599, 41587, 'forty-one thousand five hundred eighty-seven'),\n(18600, 42024, 'forty-two thousand twenty-four'),\n(18601, 83167, 'eighty-three thousand one hundred sixty-seven'),\n(18602, 9964, 'nine thousand nine hundred sixty-four'),\n(18603, 92292, 'ninety-two thousand two hundred ninety-two'),\n(18604, 46817, 'forty-six thousand eight hundred seventeen'),\n(18605, 25176, 'twenty-five thousand one hundred seventy-six'),\n(18606, 17832, 'seventeen thousand eight hundred thirty-two'),\n(18607, 77585, 'seventy-seven thousand five hundred eighty-five'),\n(18608, 63098, 'sixty-three thousand ninety-eight'),\n(18609, 84170, 'eighty-four thousand one hundred seventy'),\n(18610, 14254, 'fourteen thousand two hundred fifty-four'),\n(18611, 4597, 'four thousand five hundred ninety-seven'),\n(18612, 91313, 'ninety-one thousand three hundred thirteen'),\n(18613, 25550, 'twenty-five thousand five hundred fifty'),\n(18614, 33302, 'thirty-three thousand three hundred two'),\n(18615, 35703, 'thirty-five thousand seven hundred three'),\n(18616, 82237, 'eighty-two thousand two hundred thirty-seven'),\n(18617, 34118, 'thirty-four thousand one hundred eighteen'),\n(18618, 46597, 'forty-six thousand five hundred ninety-seven'),\n(18619, 30992, 'thirty thousand nine hundred ninety-two'),\n(18620, 62118, 'sixty-two thousand one hundred eighteen'),\n(18621, 79099, 'seventy-nine thousand ninety-nine'),\n(18622, 9459, 'nine thousand four hundred fifty-nine'),\n(18623, 62395, 'sixty-two thousand three hundred ninety-five'),\n(18624, 72918, 'seventy-two thousand nine hundred eighteen'),\n(18625, 26053, 'twenty-six thousand fifty-three'),\n(18626, 37779, 'thirty-seven thousand seven hundred seventy-nine'),\n(18627, 15200, 'fifteen thousand two hundred'),\n(18628, 1543, 'one thousand five hundred forty-three'),\n(18629, 59638, 'fifty-nine thousand six hundred thirty-eight'),\n(18630, 44749, 'forty-four thousand seven hundred forty-nine'),\n(18631, 11191, 'eleven thousand one hundred ninety-one'),\n(18632, 95989, 'ninety-five thousand nine hundred eighty-nine'),\n(18633, 49339, 'forty-nine thousand three hundred thirty-nine'),\n(18634, 41797, 'forty-one thousand seven hundred ninety-seven'),\n(18635, 23431, 'twenty-three thousand four hundred thirty-one'),\n(18636, 43870, 'forty-three thousand eight hundred seventy'),\n(18637, 84647, 'eighty-four thousand six hundred forty-seven'),\n(18638, 27268, 'twenty-seven thousand two hundred sixty-eight'),\n(18639, 40935, 'forty thousand nine hundred thirty-five'),\n(18640, 60727, 'sixty thousand seven hundred twenty-seven'),\n(18641, 96167, 'ninety-six thousand one hundred sixty-seven'),\n(18642, 51546, 'fifty-one thousand five hundred forty-six'),\n(18643, 25410, 'twenty-five thousand four hundred ten'),\n(18644, 13248, 'thirteen thousand two hundred forty-eight'),\n(18645, 97665, 'ninety-seven thousand six hundred sixty-five'),\n(18646, 4181, 'four thousand one hundred eighty-one'),\n(18647, 39132, 'thirty-nine thousand one hundred thirty-two'),\n(18648, 30539, 'thirty thousand five hundred thirty-nine'),\n(18649, 55099, 'fifty-five thousand ninety-nine'),\n(18650, 48603, 'forty-eight thousand six hundred three'),\n(18651, 42679, 'forty-two thousand six hundred seventy-nine'),\n(18652, 28675, 'twenty-eight thousand six hundred seventy-five'),\n(18653, 60301, 'sixty thousand three hundred one'),\n(18654, 85341, 'eighty-five thousand three hundred forty-one'),\n(18655, 35306, 'thirty-five thousand three hundred six'),\n(18656, 49343, 'forty-nine thousand three hundred forty-three'),\n(18657, 52614, 'fifty-two thousand six hundred fourteen'),\n(18658, 31677, 'thirty-one thousand six hundred seventy-seven'),\n(18659, 11346, 'eleven thousand three hundred forty-six'),\n(18660, 53411, 'fifty-three thousand four hundred eleven'),\n(18661, 99199, 'ninety-nine thousand one hundred ninety-nine'),\n(18662, 32163, 'thirty-two thousand one hundred sixty-three'),\n(18663, 68289, 'sixty-eight thousand two hundred eighty-nine'),\n(18664, 90230, 'ninety thousand two hundred thirty'),\n(18665, 75919, 'seventy-five thousand nine hundred nineteen'),\n(18666, 34044, 'thirty-four thousand forty-four'),\n(18667, 49904, 'forty-nine thousand nine hundred four'),\n(18668, 85650, 'eighty-five thousand six hundred fifty'),\n(18669, 18062, 'eighteen thousand sixty-two'),\n(18670, 22579, 'twenty-two thousand five hundred seventy-nine'),\n(18671, 11010, 'eleven thousand ten'),\n(18672, 11271, 'eleven thousand two hundred seventy-one'),\n(18673, 7284, 'seven thousand two hundred eighty-four'),\n(18674, 18480, 'eighteen thousand four hundred eighty'),\n(18675, 9578, 'nine thousand five hundred seventy-eight'),\n(18676, 43174, 'forty-three thousand one hundred seventy-four'),\n(18677, 75965, 'seventy-five thousand nine hundred sixty-five'),\n(18678, 98446, 'ninety-eight thousand four hundred forty-six'),\n(18679, 11444, 'eleven thousand four hundred forty-four'),\n(18680, 98202, 'ninety-eight thousand two hundred two'),\n(18681, 8258, 'eight thousand two hundred fifty-eight'),\n(18682, 32675, 'thirty-two thousand six hundred seventy-five'),\n(18683, 78554, 'seventy-eight thousand five hundred fifty-four'),\n(18684, 16884, 'sixteen thousand eight hundred eighty-four'),\n(18685, 15310, 'fifteen thousand three hundred ten'),\n(18686, 35758, 'thirty-five thousand seven hundred fifty-eight'),\n(18687, 36913, 'thirty-six thousand nine hundred thirteen'),\n(18688, 92009, 'ninety-two thousand nine'),\n(18689, 68205, 'sixty-eight thousand two hundred five'),\n(18690, 84239, 'eighty-four thousand two hundred thirty-nine'),\n(18691, 88664, 'eighty-eight thousand six hundred sixty-four'),\n(18692, 97755, 'ninety-seven thousand seven hundred fifty-five'),\n(18693, 7560, 'seven thousand five hundred sixty'),\n(18694, 55386, 'fifty-five thousand three hundred eighty-six'),\n(18695, 44610, 'forty-four thousand six hundred ten'),\n(18696, 27478, 'twenty-seven thousand four hundred seventy-eight'),\n(18697, 47371, 'forty-seven thousand three hundred seventy-one'),\n(18698, 11486, 'eleven thousand four hundred eighty-six'),\n(18699, 51099, 'fifty-one thousand ninety-nine'),\n(18700, 78602, 'seventy-eight thousand six hundred two'),\n(18701, 63112, 'sixty-three thousand one hundred twelve'),\n(18702, 27265, 'twenty-seven thousand two hundred sixty-five'),\n(18703, 70689, 'seventy thousand six hundred eighty-nine'),\n(18704, 90717, 'ninety thousand seven hundred seventeen'),\n(18705, 25091, 'twenty-five thousand ninety-one'),\n(18706, 18528, 'eighteen thousand five hundred twenty-eight'),\n(18707, 33035, 'thirty-three thousand thirty-five'),\n(18708, 69001, 'sixty-nine thousand one'),\n(18709, 78426, 'seventy-eight thousand four hundred twenty-six'),\n(18710, 13304, 'thirteen thousand three hundred four'),\n(18711, 89892, 'eighty-nine thousand eight hundred ninety-two'),\n(18712, 84291, 'eighty-four thousand two hundred ninety-one'),\n(18713, 87791, 'eighty-seven thousand seven hundred ninety-one'),\n(18714, 90040, 'ninety thousand forty'),\n(18715, 5994, 'five thousand nine hundred ninety-four'),\n(18716, 50395, 'fifty thousand three hundred ninety-five'),\n(18717, 6911, 'six thousand nine hundred eleven'),\n(18718, 95743, 'ninety-five thousand seven hundred forty-three'),\n(18719, 64628, 'sixty-four thousand six hundred twenty-eight'),\n(18720, 22269, 'twenty-two thousand two hundred sixty-nine'),\n(18721, 16314, 'sixteen thousand three hundred fourteen'),\n(18722, 14946, 'fourteen thousand nine hundred forty-six'),\n(18723, 52244, 'fifty-two thousand two hundred forty-four'),\n(18724, 58671, 'fifty-eight thousand six hundred seventy-one'),\n(18725, 61846, 'sixty-one thousand eight hundred forty-six'),\n(18726, 74758, 'seventy-four thousand seven hundred fifty-eight'),\n(18727, 81530, 'eighty-one thousand five hundred thirty'),\n(18728, 42428, 'forty-two thousand four hundred twenty-eight'),\n(18729, 24627, 'twenty-four thousand six hundred twenty-seven'),\n(18730, 106, 'one hundred six'),\n(18731, 42431, 'forty-two thousand four hundred thirty-one'),\n(18732, 2282, 'two thousand two hundred eighty-two'),\n(18733, 79844, 'seventy-nine thousand eight hundred forty-four'),\n(18734, 48786, 'forty-eight thousand seven hundred eighty-six'),\n(18735, 85320, 'eighty-five thousand three hundred twenty'),\n(18736, 11154, 'eleven thousand one hundred fifty-four'),\n(18737, 97251, 'ninety-seven thousand two hundred fifty-one'),\n(18738, 92147, 'ninety-two thousand one hundred forty-seven'),\n(18739, 87396, 'eighty-seven thousand three hundred ninety-six'),\n(18740, 66999, 'sixty-six thousand nine hundred ninety-nine'),\n(18741, 13294, 'thirteen thousand two hundred ninety-four'),\n(18742, 61125, 'sixty-one thousand one hundred twenty-five'),\n(18743, 60732, 'sixty thousand seven hundred thirty-two'),\n(18744, 48337, 'forty-eight thousand three hundred thirty-seven'),\n(18745, 6341, 'six thousand three hundred forty-one'),\n(18746, 74634, 'seventy-four thousand six hundred thirty-four'),\n(18747, 86994, 'eighty-six thousand nine hundred ninety-four'),\n(18748, 42118, 'forty-two thousand one hundred eighteen'),\n(18749, 31398, 'thirty-one thousand three hundred ninety-eight'),\n(18750, 44913, 'forty-four thousand nine hundred thirteen'),\n(18751, 34848, 'thirty-four thousand eight hundred forty-eight'),\n(18752, 39400, 'thirty-nine thousand four hundred'),\n(18753, 56601, 'fifty-six thousand six hundred one'),\n(18754, 16294, 'sixteen thousand two hundred ninety-four'),\n(18755, 63656, 'sixty-three thousand six hundred fifty-six'),\n(18756, 98194, 'ninety-eight thousand one hundred ninety-four'),\n(18757, 92858, 'ninety-two thousand eight hundred fifty-eight'),\n(18758, 65206, 'sixty-five thousand two hundred six'),\n(18759, 85648, 'eighty-five thousand six hundred forty-eight'),\n(18760, 96686, 'ninety-six thousand six hundred eighty-six'),\n(18761, 74897, 'seventy-four thousand eight hundred ninety-seven'),\n(18762, 59926, 'fifty-nine thousand nine hundred twenty-six'),\n(18763, 64164, 'sixty-four thousand one hundred sixty-four'),\n(18764, 33597, 'thirty-three thousand five hundred ninety-seven'),\n(18765, 81268, 'eighty-one thousand two hundred sixty-eight'),\n(18766, 28863, 'twenty-eight thousand eight hundred sixty-three'),\n(18767, 43485, 'forty-three thousand four hundred eighty-five'),\n(18768, 84159, 'eighty-four thousand one hundred fifty-nine'),\n(18769, 45494, 'forty-five thousand four hundred ninety-four'),\n(18770, 77193, 'seventy-seven thousand one hundred ninety-three'),\n(18771, 90676, 'ninety thousand six hundred seventy-six'),\n(18772, 36719, 'thirty-six thousand seven hundred nineteen'),\n(18773, 4193, 'four thousand one hundred ninety-three'),\n(18774, 56371, 'fifty-six thousand three hundred seventy-one'),\n(18775, 75903, 'seventy-five thousand nine hundred three'),\n(18776, 42276, 'forty-two thousand two hundred seventy-six'),\n(18777, 67061, 'sixty-seven thousand sixty-one'),\n(18778, 19155, 'nineteen thousand one hundred fifty-five'),\n(18779, 87725, 'eighty-seven thousand seven hundred twenty-five'),\n(18780, 76126, 'seventy-six thousand one hundred twenty-six'),\n(18781, 17401, 'seventeen thousand four hundred one'),\n(18782, 6778, 'six thousand seven hundred seventy-eight'),\n(18783, 11369, 'eleven thousand three hundred sixty-nine'),\n(18784, 46896, 'forty-six thousand eight hundred ninety-six'),\n(18785, 52100, 'fifty-two thousand one hundred'),\n(18786, 78444, 'seventy-eight thousand four hundred forty-four'),\n(18787, 95937, 'ninety-five thousand nine hundred thirty-seven'),\n(18788, 59928, 'fifty-nine thousand nine hundred twenty-eight'),\n(18789, 66090, 'sixty-six thousand ninety'),\n(18790, 32284, 'thirty-two thousand two hundred eighty-four'),\n(18791, 62217, 'sixty-two thousand two hundred seventeen'),\n(18792, 60527, 'sixty thousand five hundred twenty-seven'),\n(18793, 59742, 'fifty-nine thousand seven hundred forty-two'),\n(18794, 26273, 'twenty-six thousand two hundred seventy-three'),\n(18795, 70231, 'seventy thousand two hundred thirty-one'),\n(18796, 96756, 'ninety-six thousand seven hundred fifty-six'),\n(18797, 79571, 'seventy-nine thousand five hundred seventy-one'),\n(18798, 53384, 'fifty-three thousand three hundred eighty-four'),\n(18799, 65062, 'sixty-five thousand sixty-two'),\n(18800, 72008, 'seventy-two thousand eight'),\n(18801, 94847, 'ninety-four thousand eight hundred forty-seven'),\n(18802, 3457, 'three thousand four hundred fifty-seven'),\n(18803, 47953, 'forty-seven thousand nine hundred fifty-three'),\n(18804, 44271, 'forty-four thousand two hundred seventy-one'),\n(18805, 83249, 'eighty-three thousand two hundred forty-nine'),\n(18806, 70124, 'seventy thousand one hundred twenty-four'),\n(18807, 76273, 'seventy-six thousand two hundred seventy-three'),\n(18808, 72531, 'seventy-two thousand five hundred thirty-one'),\n(18809, 76750, 'seventy-six thousand seven hundred fifty'),\n(18810, 19297, 'nineteen thousand two hundred ninety-seven'),\n(18811, 98994, 'ninety-eight thousand nine hundred ninety-four'),\n(18812, 59393, 'fifty-nine thousand three hundred ninety-three'),\n(18813, 36450, 'thirty-six thousand four hundred fifty'),\n(18814, 29968, 'twenty-nine thousand nine hundred sixty-eight'),\n(18815, 97467, 'ninety-seven thousand four hundred sixty-seven'),\n(18816, 72920, 'seventy-two thousand nine hundred twenty'),\n(18817, 19864, 'nineteen thousand eight hundred sixty-four'),\n(18818, 65690, 'sixty-five thousand six hundred ninety'),\n(18819, 44368, 'forty-four thousand three hundred sixty-eight'),\n(18820, 59460, 'fifty-nine thousand four hundred sixty'),\n(18821, 1117, 'one thousand one hundred seventeen'),\n(18822, 42064, 'forty-two thousand sixty-four'),\n(18823, 51994, 'fifty-one thousand nine hundred ninety-four'),\n(18824, 21207, 'twenty-one thousand two hundred seven'),\n(18825, 70781, 'seventy thousand seven hundred eighty-one'),\n(18826, 71788, 'seventy-one thousand seven hundred eighty-eight'),\n(18827, 8187, 'eight thousand one hundred eighty-seven'),\n(18828, 52185, 'fifty-two thousand one hundred eighty-five'),\n(18829, 43560, 'forty-three thousand five hundred sixty'),\n(18830, 4447, 'four thousand four hundred forty-seven'),\n(18831, 57691, 'fifty-seven thousand six hundred ninety-one'),\n(18832, 73173, 'seventy-three thousand one hundred seventy-three'),\n(18833, 97262, 'ninety-seven thousand two hundred sixty-two'),\n(18834, 53716, 'fifty-three thousand seven hundred sixteen'),\n(18835, 27801, 'twenty-seven thousand eight hundred one'),\n(18836, 24232, 'twenty-four thousand two hundred thirty-two'),\n(18837, 65524, 'sixty-five thousand five hundred twenty-four'),\n(18838, 4322, 'four thousand three hundred twenty-two'),\n(18839, 34317, 'thirty-four thousand three hundred seventeen'),\n(18840, 91648, 'ninety-one thousand six hundred forty-eight'),\n(18841, 75457, 'seventy-five thousand four hundred fifty-seven'),\n(18842, 65874, 'sixty-five thousand eight hundred seventy-four'),\n(18843, 24299, 'twenty-four thousand two hundred ninety-nine'),\n(18844, 18617, 'eighteen thousand six hundred seventeen'),\n(18845, 47054, 'forty-seven thousand fifty-four'),\n(18846, 76445, 'seventy-six thousand four hundred forty-five'),\n(18847, 44521, 'forty-four thousand five hundred twenty-one'),\n(18848, 11903, 'eleven thousand nine hundred three'),\n(18849, 58548, 'fifty-eight thousand five hundred forty-eight'),\n(18850, 63366, 'sixty-three thousand three hundred sixty-six'),\n(18851, 50522, 'fifty thousand five hundred twenty-two'),\n(18852, 60409, 'sixty thousand four hundred nine'),\n(18853, 94726, 'ninety-four thousand seven hundred twenty-six'),\n(18854, 8362, 'eight thousand three hundred sixty-two'),\n(18855, 58704, 'fifty-eight thousand seven hundred four'),\n(18856, 34083, 'thirty-four thousand eighty-three'),\n(18857, 32163, 'thirty-two thousand one hundred sixty-three'),\n(18858, 76585, 'seventy-six thousand five hundred eighty-five'),\n(18859, 58877, 'fifty-eight thousand eight hundred seventy-seven'),\n(18860, 885, 'eight hundred eighty-five'),\n(18861, 77870, 'seventy-seven thousand eight hundred seventy'),\n(18862, 7294, 'seven thousand two hundred ninety-four'),\n(18863, 88072, 'eighty-eight thousand seventy-two'),\n(18864, 54439, 'fifty-four thousand four hundred thirty-nine'),\n(18865, 85053, 'eighty-five thousand fifty-three'),\n(18866, 29349, 'twenty-nine thousand three hundred forty-nine'),\n(18867, 88188, 'eighty-eight thousand one hundred eighty-eight'),\n(18868, 46796, 'forty-six thousand seven hundred ninety-six'),\n(18869, 68455, 'sixty-eight thousand four hundred fifty-five'),\n(18870, 44864, 'forty-four thousand eight hundred sixty-four'),\n(18871, 89739, 'eighty-nine thousand seven hundred thirty-nine'),\n(18872, 74125, 'seventy-four thousand one hundred twenty-five'),\n(18873, 1383, 'one thousand three hundred eighty-three'),\n(18874, 26463, 'twenty-six thousand four hundred sixty-three'),\n(18875, 50189, 'fifty thousand one hundred eighty-nine'),\n(18876, 89975, 'eighty-nine thousand nine hundred seventy-five'),\n(18877, 16997, 'sixteen thousand nine hundred ninety-seven'),\n(18878, 98227, 'ninety-eight thousand two hundred twenty-seven'),\n(18879, 7065, 'seven thousand sixty-five'),\n(18880, 91772, 'ninety-one thousand seven hundred seventy-two'),\n(18881, 72483, 'seventy-two thousand four hundred eighty-three'),\n(18882, 37213, 'thirty-seven thousand two hundred thirteen'),\n(18883, 55182, 'fifty-five thousand one hundred eighty-two'),\n(18884, 65889, 'sixty-five thousand eight hundred eighty-nine'),\n(18885, 46315, 'forty-six thousand three hundred fifteen'),\n(18886, 47201, 'forty-seven thousand two hundred one'),\n(18887, 92058, 'ninety-two thousand fifty-eight'),\n(18888, 55764, 'fifty-five thousand seven hundred sixty-four'),\n(18889, 61412, 'sixty-one thousand four hundred twelve'),\n(18890, 70546, 'seventy thousand five hundred forty-six'),\n(18891, 46174, 'forty-six thousand one hundred seventy-four'),\n(18892, 32242, 'thirty-two thousand two hundred forty-two'),\n(18893, 62182, 'sixty-two thousand one hundred eighty-two'),\n(18894, 62651, 'sixty-two thousand six hundred fifty-one'),\n(18895, 5214, 'five thousand two hundred fourteen'),\n(18896, 18847, 'eighteen thousand eight hundred forty-seven'),\n(18897, 69003, 'sixty-nine thousand three'),\n(18898, 57563, 'fifty-seven thousand five hundred sixty-three'),\n(18899, 78251, 'seventy-eight thousand two hundred fifty-one'),\n(18900, 34366, 'thirty-four thousand three hundred sixty-six'),\n(18901, 84677, 'eighty-four thousand six hundred seventy-seven'),\n(18902, 34614, 'thirty-four thousand six hundred fourteen'),\n(18903, 75476, 'seventy-five thousand four hundred seventy-six'),\n(18904, 76851, 'seventy-six thousand eight hundred fifty-one'),\n(18905, 84055, 'eighty-four thousand fifty-five'),\n(18906, 32503, 'thirty-two thousand five hundred three'),\n(18907, 9465, 'nine thousand four hundred sixty-five'),\n(18908, 18852, 'eighteen thousand eight hundred fifty-two'),\n(18909, 87675, 'eighty-seven thousand six hundred seventy-five'),\n(18910, 55541, 'fifty-five thousand five hundred forty-one'),\n(18911, 1378, 'one thousand three hundred seventy-eight'),\n(18912, 97259, 'ninety-seven thousand two hundred fifty-nine'),\n(18913, 82405, 'eighty-two thousand four hundred five'),\n(18914, 60871, 'sixty thousand eight hundred seventy-one'),\n(18915, 80236, 'eighty thousand two hundred thirty-six'),\n(18916, 41450, 'forty-one thousand four hundred fifty'),\n(18917, 71297, 'seventy-one thousand two hundred ninety-seven'),\n(18918, 92569, 'ninety-two thousand five hundred sixty-nine'),\n(18919, 20765, 'twenty thousand seven hundred sixty-five'),\n(18920, 19735, 'nineteen thousand seven hundred thirty-five'),\n(18921, 84972, 'eighty-four thousand nine hundred seventy-two'),\n(18922, 62076, 'sixty-two thousand seventy-six'),\n(18923, 94141, 'ninety-four thousand one hundred forty-one'),\n(18924, 59902, 'fifty-nine thousand nine hundred two'),\n(18925, 97838, 'ninety-seven thousand eight hundred thirty-eight'),\n(18926, 85728, 'eighty-five thousand seven hundred twenty-eight'),\n(18927, 63132, 'sixty-three thousand one hundred thirty-two'),\n(18928, 68867, 'sixty-eight thousand eight hundred sixty-seven'),\n(18929, 40247, 'forty thousand two hundred forty-seven'),\n(18930, 77917, 'seventy-seven thousand nine hundred seventeen'),\n(18931, 81676, 'eighty-one thousand six hundred seventy-six'),\n(18932, 56925, 'fifty-six thousand nine hundred twenty-five'),\n(18933, 3544, 'three thousand five hundred forty-four'),\n(18934, 67215, 'sixty-seven thousand two hundred fifteen'),\n(18935, 45788, 'forty-five thousand seven hundred eighty-eight'),\n(18936, 39372, 'thirty-nine thousand three hundred seventy-two'),\n(18937, 87080, 'eighty-seven thousand eighty'),\n(18938, 74440, 'seventy-four thousand four hundred forty'),\n(18939, 70762, 'seventy thousand seven hundred sixty-two'),\n(18940, 13355, 'thirteen thousand three hundred fifty-five'),\n(18941, 73977, 'seventy-three thousand nine hundred seventy-seven'),\n(18942, 55475, 'fifty-five thousand four hundred seventy-five'),\n(18943, 66975, 'sixty-six thousand nine hundred seventy-five'),\n(18944, 73274, 'seventy-three thousand two hundred seventy-four'),\n(18945, 60413, 'sixty thousand four hundred thirteen'),\n(18946, 80572, 'eighty thousand five hundred seventy-two'),\n(18947, 42795, 'forty-two thousand seven hundred ninety-five'),\n(18948, 18583, 'eighteen thousand five hundred eighty-three'),\n(18949, 95420, 'ninety-five thousand four hundred twenty'),\n(18950, 25248, 'twenty-five thousand two hundred forty-eight'),\n(18951, 85879, 'eighty-five thousand eight hundred seventy-nine'),\n(18952, 51771, 'fifty-one thousand seven hundred seventy-one'),\n(18953, 44598, 'forty-four thousand five hundred ninety-eight'),\n(18954, 30002, 'thirty thousand two'),\n(18955, 84066, 'eighty-four thousand sixty-six'),\n(18956, 8118, 'eight thousand one hundred eighteen'),\n(18957, 74216, 'seventy-four thousand two hundred sixteen'),\n(18958, 74502, 'seventy-four thousand five hundred two'),\n(18959, 45132, 'forty-five thousand one hundred thirty-two'),\n(18960, 66694, 'sixty-six thousand six hundred ninety-four'),\n(18961, 6417, 'six thousand four hundred seventeen'),\n(18962, 73161, 'seventy-three thousand one hundred sixty-one'),\n(18963, 72779, 'seventy-two thousand seven hundred seventy-nine'),\n(18964, 53925, 'fifty-three thousand nine hundred twenty-five'),\n(18965, 12992, 'twelve thousand nine hundred ninety-two'),\n(18966, 56070, 'fifty-six thousand seventy'),\n(18967, 58621, 'fifty-eight thousand six hundred twenty-one'),\n(18968, 30892, 'thirty thousand eight hundred ninety-two'),\n(18969, 93924, 'ninety-three thousand nine hundred twenty-four'),\n(18970, 11515, 'eleven thousand five hundred fifteen'),\n(18971, 33578, 'thirty-three thousand five hundred seventy-eight'),\n(18972, 50926, 'fifty thousand nine hundred twenty-six'),\n(18973, 59551, 'fifty-nine thousand five hundred fifty-one'),\n(18974, 32804, 'thirty-two thousand eight hundred four'),\n(18975, 74070, 'seventy-four thousand seventy'),\n(18976, 15476, 'fifteen thousand four hundred seventy-six'),\n(18977, 82143, 'eighty-two thousand one hundred forty-three'),\n(18978, 60288, 'sixty thousand two hundred eighty-eight'),\n(18979, 34265, 'thirty-four thousand two hundred sixty-five'),\n(18980, 98020, 'ninety-eight thousand twenty'),\n(18981, 36902, 'thirty-six thousand nine hundred two'),\n(18982, 94328, 'ninety-four thousand three hundred twenty-eight'),\n(18983, 96352, 'ninety-six thousand three hundred fifty-two'),\n(18984, 36689, 'thirty-six thousand six hundred eighty-nine'),\n(18985, 27598, 'twenty-seven thousand five hundred ninety-eight'),\n(18986, 38840, 'thirty-eight thousand eight hundred forty'),\n(18987, 44259, 'forty-four thousand two hundred fifty-nine'),\n(18988, 18362, 'eighteen thousand three hundred sixty-two'),\n(18989, 37280, 'thirty-seven thousand two hundred eighty'),\n(18990, 83787, 'eighty-three thousand seven hundred eighty-seven'),\n(18991, 75121, 'seventy-five thousand one hundred twenty-one'),\n(18992, 10175, 'ten thousand one hundred seventy-five'),\n(18993, 33943, 'thirty-three thousand nine hundred forty-three'),\n(18994, 6876, 'six thousand eight hundred seventy-six'),\n(18995, 97034, 'ninety-seven thousand thirty-four'),\n(18996, 49544, 'forty-nine thousand five hundred forty-four'),\n(18997, 30537, 'thirty thousand five hundred thirty-seven'),\n(18998, 48124, 'forty-eight thousand one hundred twenty-four'),\n(18999, 35328, 'thirty-five thousand three hundred twenty-eight'),\n(19000, 30960, 'thirty thousand nine hundred sixty'),\n(19001, 26399, 'twenty-six thousand three hundred ninety-nine'),\n(19002, 38409, 'thirty-eight thousand four hundred nine'),\n(19003, 24082, 'twenty-four thousand eighty-two'),\n(19004, 62351, 'sixty-two thousand three hundred fifty-one'),\n(19005, 70781, 'seventy thousand seven hundred eighty-one'),\n(19006, 85776, 'eighty-five thousand seven hundred seventy-six'),\n(19007, 3070, 'three thousand seventy'),\n(19008, 44907, 'forty-four thousand nine hundred seven'),\n(19009, 20046, 'twenty thousand forty-six'),\n(19010, 24002, 'twenty-four thousand two'),\n(19011, 84822, 'eighty-four thousand eight hundred twenty-two'),\n(19012, 92772, 'ninety-two thousand seven hundred seventy-two'),\n(19013, 27401, 'twenty-seven thousand four hundred one'),\n(19014, 81771, 'eighty-one thousand seven hundred seventy-one'),\n(19015, 27904, 'twenty-seven thousand nine hundred four'),\n(19016, 82691, 'eighty-two thousand six hundred ninety-one'),\n(19017, 96336, 'ninety-six thousand three hundred thirty-six'),\n(19018, 45300, 'forty-five thousand three hundred'),\n(19019, 85509, 'eighty-five thousand five hundred nine'),\n(19020, 69922, 'sixty-nine thousand nine hundred twenty-two'),\n(19021, 57586, 'fifty-seven thousand five hundred eighty-six'),\n(19022, 70111, 'seventy thousand one hundred eleven'),\n(19023, 22784, 'twenty-two thousand seven hundred eighty-four'),\n(19024, 92222, 'ninety-two thousand two hundred twenty-two'),\n(19025, 86158, 'eighty-six thousand one hundred fifty-eight'),\n(19026, 35704, 'thirty-five thousand seven hundred four'),\n(19027, 21669, 'twenty-one thousand six hundred sixty-nine'),\n(19028, 61658, 'sixty-one thousand six hundred fifty-eight'),\n(19029, 5937, 'five thousand nine hundred thirty-seven'),\n(19030, 2332, 'two thousand three hundred thirty-two'),\n(19031, 3516, 'three thousand five hundred sixteen'),\n(19032, 79192, 'seventy-nine thousand one hundred ninety-two'),\n(19033, 55569, 'fifty-five thousand five hundred sixty-nine'),\n(19034, 48449, 'forty-eight thousand four hundred forty-nine'),\n(19035, 27747, 'twenty-seven thousand seven hundred forty-seven'),\n(19036, 13815, 'thirteen thousand eight hundred fifteen'),\n(19037, 12806, 'twelve thousand eight hundred six'),\n(19038, 3871, 'three thousand eight hundred seventy-one'),\n(19039, 92915, 'ninety-two thousand nine hundred fifteen'),\n(19040, 47689, 'forty-seven thousand six hundred eighty-nine'),\n(19041, 30862, 'thirty thousand eight hundred sixty-two'),\n(19042, 2879, 'two thousand eight hundred seventy-nine'),\n(19043, 98883, 'ninety-eight thousand eight hundred eighty-three'),\n(19044, 79072, 'seventy-nine thousand seventy-two'),\n(19045, 98286, 'ninety-eight thousand two hundred eighty-six'),\n(19046, 59325, 'fifty-nine thousand three hundred twenty-five'),\n(19047, 82941, 'eighty-two thousand nine hundred forty-one'),\n(19048, 52351, 'fifty-two thousand three hundred fifty-one'),\n(19049, 38304, 'thirty-eight thousand three hundred four'),\n(19050, 45242, 'forty-five thousand two hundred forty-two'),\n(19051, 53761, 'fifty-three thousand seven hundred sixty-one'),\n(19052, 78370, 'seventy-eight thousand three hundred seventy'),\n(19053, 45632, 'forty-five thousand six hundred thirty-two'),\n(19054, 91602, 'ninety-one thousand six hundred two'),\n(19055, 73271, 'seventy-three thousand two hundred seventy-one'),\n(19056, 10216, 'ten thousand two hundred sixteen'),\n(19057, 99867, 'ninety-nine thousand eight hundred sixty-seven'),\n(19058, 98142, 'ninety-eight thousand one hundred forty-two'),\n(19059, 14549, 'fourteen thousand five hundred forty-nine'),\n(19060, 14907, 'fourteen thousand nine hundred seven'),\n(19061, 71373, 'seventy-one thousand three hundred seventy-three'),\n(19062, 63785, 'sixty-three thousand seven hundred eighty-five'),\n(19063, 5362, 'five thousand three hundred sixty-two'),\n(19064, 30362, 'thirty thousand three hundred sixty-two'),\n(19065, 54061, 'fifty-four thousand sixty-one'),\n(19066, 12468, 'twelve thousand four hundred sixty-eight'),\n(19067, 85315, 'eighty-five thousand three hundred fifteen'),\n(19068, 82368, 'eighty-two thousand three hundred sixty-eight'),\n(19069, 11763, 'eleven thousand seven hundred sixty-three'),\n(19070, 55905, 'fifty-five thousand nine hundred five'),\n(19071, 12865, 'twelve thousand eight hundred sixty-five'),\n(19072, 65471, 'sixty-five thousand four hundred seventy-one'),\n(19073, 82453, 'eighty-two thousand four hundred fifty-three'),\n(19074, 96920, 'ninety-six thousand nine hundred twenty'),\n(19075, 23505, 'twenty-three thousand five hundred five'),\n(19076, 57822, 'fifty-seven thousand eight hundred twenty-two'),\n(19077, 75785, 'seventy-five thousand seven hundred eighty-five'),\n(19078, 33855, 'thirty-three thousand eight hundred fifty-five'),\n(19079, 52546, 'fifty-two thousand five hundred forty-six'),\n(19080, 16080, 'sixteen thousand eighty'),\n(19081, 48402, 'forty-eight thousand four hundred two'),\n(19082, 45543, 'forty-five thousand five hundred forty-three'),\n(19083, 81897, 'eighty-one thousand eight hundred ninety-seven'),\n(19084, 64036, 'sixty-four thousand thirty-six'),\n(19085, 71160, 'seventy-one thousand one hundred sixty'),\n(19086, 42053, 'forty-two thousand fifty-three'),\n(19087, 51602, 'fifty-one thousand six hundred two'),\n(19088, 8241, 'eight thousand two hundred forty-one'),\n(19089, 69556, 'sixty-nine thousand five hundred fifty-six'),\n(19090, 1356, 'one thousand three hundred fifty-six'),\n(19091, 27155, 'twenty-seven thousand one hundred fifty-five'),\n(19092, 16002, 'sixteen thousand two'),\n(19093, 12649, 'twelve thousand six hundred forty-nine'),\n(19094, 8934, 'eight thousand nine hundred thirty-four'),\n(19095, 26227, 'twenty-six thousand two hundred twenty-seven'),\n(19096, 50221, 'fifty thousand two hundred twenty-one'),\n(19097, 67833, 'sixty-seven thousand eight hundred thirty-three'),\n(19098, 92708, 'ninety-two thousand seven hundred eight'),\n(19099, 98898, 'ninety-eight thousand eight hundred ninety-eight'),\n(19100, 16873, 'sixteen thousand eight hundred seventy-three'),\n(19101, 88274, 'eighty-eight thousand two hundred seventy-four'),\n(19102, 13946, 'thirteen thousand nine hundred forty-six'),\n(19103, 68794, 'sixty-eight thousand seven hundred ninety-four'),\n(19104, 53188, 'fifty-three thousand one hundred eighty-eight'),\n(19105, 82426, 'eighty-two thousand four hundred twenty-six'),\n(19106, 88988, 'eighty-eight thousand nine hundred eighty-eight'),\n(19107, 51507, 'fifty-one thousand five hundred seven'),\n(19108, 23007, 'twenty-three thousand seven'),\n(19109, 55150, 'fifty-five thousand one hundred fifty'),\n(19110, 40871, 'forty thousand eight hundred seventy-one'),\n(19111, 12719, 'twelve thousand seven hundred nineteen'),\n(19112, 25784, 'twenty-five thousand seven hundred eighty-four'),\n(19113, 96995, 'ninety-six thousand nine hundred ninety-five'),\n(19114, 86974, 'eighty-six thousand nine hundred seventy-four'),\n(19115, 68066, 'sixty-eight thousand sixty-six'),\n(19116, 77620, 'seventy-seven thousand six hundred twenty'),\n(19117, 75970, 'seventy-five thousand nine hundred seventy'),\n(19118, 3491, 'three thousand four hundred ninety-one'),\n(19119, 6774, 'six thousand seven hundred seventy-four'),\n(19120, 56688, 'fifty-six thousand six hundred eighty-eight'),\n(19121, 55841, 'fifty-five thousand eight hundred forty-one'),\n(19122, 32028, 'thirty-two thousand twenty-eight'),\n(19123, 1938, 'one thousand nine hundred thirty-eight'),\n(19124, 6840, 'six thousand eight hundred forty'),\n(19125, 81500, 'eighty-one thousand five hundred'),\n(19126, 77506, 'seventy-seven thousand five hundred six'),\n(19127, 74941, 'seventy-four thousand nine hundred forty-one'),\n(19128, 84442, 'eighty-four thousand four hundred forty-two'),\n(19129, 19488, 'nineteen thousand four hundred eighty-eight'),\n(19130, 72826, 'seventy-two thousand eight hundred twenty-six'),\n(19131, 51902, 'fifty-one thousand nine hundred two'),\n(19132, 50409, 'fifty thousand four hundred nine'),\n(19133, 89130, 'eighty-nine thousand one hundred thirty'),\n(19134, 25031, 'twenty-five thousand thirty-one'),\n(19135, 29878, 'twenty-nine thousand eight hundred seventy-eight'),\n(19136, 94723, 'ninety-four thousand seven hundred twenty-three'),\n(19137, 44705, 'forty-four thousand seven hundred five'),\n(19138, 7336, 'seven thousand three hundred thirty-six'),\n(19139, 71163, 'seventy-one thousand one hundred sixty-three'),\n(19140, 37845, 'thirty-seven thousand eight hundred forty-five'),\n(19141, 83676, 'eighty-three thousand six hundred seventy-six'),\n(19142, 78520, 'seventy-eight thousand five hundred twenty'),\n(19143, 43294, 'forty-three thousand two hundred ninety-four'),\n(19144, 15680, 'fifteen thousand six hundred eighty'),\n(19145, 649, 'six hundred forty-nine'),\n(19146, 38942, 'thirty-eight thousand nine hundred forty-two'),\n(19147, 54722, 'fifty-four thousand seven hundred twenty-two'),\n(19148, 32631, 'thirty-two thousand six hundred thirty-one'),\n(19149, 32537, 'thirty-two thousand five hundred thirty-seven'),\n(19150, 12435, 'twelve thousand four hundred thirty-five'),\n(19151, 57531, 'fifty-seven thousand five hundred thirty-one'),\n(19152, 18768, 'eighteen thousand seven hundred sixty-eight'),\n(19153, 7575, 'seven thousand five hundred seventy-five'),\n(19154, 57788, 'fifty-seven thousand seven hundred eighty-eight'),\n(19155, 99296, 'ninety-nine thousand two hundred ninety-six'),\n(19156, 99079, 'ninety-nine thousand seventy-nine'),\n(19157, 51450, 'fifty-one thousand four hundred fifty'),\n(19158, 76474, 'seventy-six thousand four hundred seventy-four'),\n(19159, 25216, 'twenty-five thousand two hundred sixteen'),\n(19160, 87368, 'eighty-seven thousand three hundred sixty-eight'),\n(19161, 38802, 'thirty-eight thousand eight hundred two'),\n(19162, 90680, 'ninety thousand six hundred eighty'),\n(19163, 27929, 'twenty-seven thousand nine hundred twenty-nine'),\n(19164, 11041, 'eleven thousand forty-one'),\n(19165, 29294, 'twenty-nine thousand two hundred ninety-four'),\n(19166, 40817, 'forty thousand eight hundred seventeen'),\n(19167, 94846, 'ninety-four thousand eight hundred forty-six'),\n(19168, 43202, 'forty-three thousand two hundred two'),\n(19169, 4176, 'four thousand one hundred seventy-six'),\n(19170, 52655, 'fifty-two thousand six hundred fifty-five'),\n(19171, 30971, 'thirty thousand nine hundred seventy-one'),\n(19172, 36164, 'thirty-six thousand one hundred sixty-four'),\n(19173, 21434, 'twenty-one thousand four hundred thirty-four'),\n(19174, 7540, 'seven thousand five hundred forty'),\n(19175, 21745, 'twenty-one thousand seven hundred forty-five'),\n(19176, 74374, 'seventy-four thousand three hundred seventy-four'),\n(19177, 10027, 'ten thousand twenty-seven'),\n(19178, 69286, 'sixty-nine thousand two hundred eighty-six'),\n(19179, 39631, 'thirty-nine thousand six hundred thirty-one'),\n(19180, 1756, 'one thousand seven hundred fifty-six'),\n(19181, 40258, 'forty thousand two hundred fifty-eight'),\n(19182, 79403, 'seventy-nine thousand four hundred three'),\n(19183, 63237, 'sixty-three thousand two hundred thirty-seven'),\n(19184, 45039, 'forty-five thousand thirty-nine'),\n(19185, 3482, 'three thousand four hundred eighty-two'),\n(19186, 9956, 'nine thousand nine hundred fifty-six'),\n(19187, 84470, 'eighty-four thousand four hundred seventy'),\n(19188, 42458, 'forty-two thousand four hundred fifty-eight'),\n(19189, 68936, 'sixty-eight thousand nine hundred thirty-six'),\n(19190, 16164, 'sixteen thousand one hundred sixty-four'),\n(19191, 2558, 'two thousand five hundred fifty-eight'),\n(19192, 8798, 'eight thousand seven hundred ninety-eight'),\n(19193, 20677, 'twenty thousand six hundred seventy-seven'),\n(19194, 74619, 'seventy-four thousand six hundred nineteen'),\n(19195, 8139, 'eight thousand one hundred thirty-nine'),\n(19196, 52851, 'fifty-two thousand eight hundred fifty-one'),\n(19197, 23480, 'twenty-three thousand four hundred eighty'),\n(19198, 50974, 'fifty thousand nine hundred seventy-four'),\n(19199, 83924, 'eighty-three thousand nine hundred twenty-four'),\n(19200, 48805, 'forty-eight thousand eight hundred five'),\n(19201, 74834, 'seventy-four thousand eight hundred thirty-four'),\n(19202, 38775, 'thirty-eight thousand seven hundred seventy-five'),\n(19203, 73541, 'seventy-three thousand five hundred forty-one'),\n(19204, 5628, 'five thousand six hundred twenty-eight'),\n(19205, 34459, 'thirty-four thousand four hundred fifty-nine'),\n(19206, 99156, 'ninety-nine thousand one hundred fifty-six'),\n(19207, 14020, 'fourteen thousand twenty'),\n(19208, 25878, 'twenty-five thousand eight hundred seventy-eight'),\n(19209, 3654, 'three thousand six hundred fifty-four'),\n(19210, 37485, 'thirty-seven thousand four hundred eighty-five'),\n(19211, 60960, 'sixty thousand nine hundred sixty'),\n(19212, 42698, 'forty-two thousand six hundred ninety-eight'),\n(19213, 37372, 'thirty-seven thousand three hundred seventy-two'),\n(19214, 35289, 'thirty-five thousand two hundred eighty-nine'),\n(19215, 63126, 'sixty-three thousand one hundred twenty-six'),\n(19216, 4885, 'four thousand eight hundred eighty-five'),\n(19217, 82297, 'eighty-two thousand two hundred ninety-seven'),\n(19218, 14835, 'fourteen thousand eight hundred thirty-five'),\n(19219, 89944, 'eighty-nine thousand nine hundred forty-four'),\n(19220, 29919, 'twenty-nine thousand nine hundred nineteen'),\n(19221, 76797, 'seventy-six thousand seven hundred ninety-seven'),\n(19222, 49302, 'forty-nine thousand three hundred two'),\n(19223, 26299, 'twenty-six thousand two hundred ninety-nine'),\n(19224, 77060, 'seventy-seven thousand sixty'),\n(19225, 54919, 'fifty-four thousand nine hundred nineteen'),\n(19226, 84837, 'eighty-four thousand eight hundred thirty-seven'),\n(19227, 14129, 'fourteen thousand one hundred twenty-nine'),\n(19228, 86156, 'eighty-six thousand one hundred fifty-six'),\n(19229, 38468, 'thirty-eight thousand four hundred sixty-eight'),\n(19230, 3762, 'three thousand seven hundred sixty-two'),\n(19231, 27960, 'twenty-seven thousand nine hundred sixty'),\n(19232, 10536, 'ten thousand five hundred thirty-six'),\n(19233, 33587, 'thirty-three thousand five hundred eighty-seven'),\n(19234, 54041, 'fifty-four thousand forty-one'),\n(19235, 72170, 'seventy-two thousand one hundred seventy'),\n(19236, 22027, 'twenty-two thousand twenty-seven'),\n(19237, 86352, 'eighty-six thousand three hundred fifty-two'),\n(19238, 11058, 'eleven thousand fifty-eight'),\n(19239, 81770, 'eighty-one thousand seven hundred seventy'),\n(19240, 66570, 'sixty-six thousand five hundred seventy'),\n(19241, 58845, 'fifty-eight thousand eight hundred forty-five'),\n(19242, 47560, 'forty-seven thousand five hundred sixty'),\n(19243, 24883, 'twenty-four thousand eight hundred eighty-three'),\n(19244, 84170, 'eighty-four thousand one hundred seventy'),\n(19245, 80654, 'eighty thousand six hundred fifty-four'),\n(19246, 59459, 'fifty-nine thousand four hundred fifty-nine'),\n(19247, 66891, 'sixty-six thousand eight hundred ninety-one'),\n(19248, 82190, 'eighty-two thousand one hundred ninety'),\n(19249, 4497, 'four thousand four hundred ninety-seven'),\n(19250, 69744, 'sixty-nine thousand seven hundred forty-four'),\n(19251, 93005, 'ninety-three thousand five'),\n(19252, 24295, 'twenty-four thousand two hundred ninety-five'),\n(19253, 40096, 'forty thousand ninety-six'),\n(19254, 11787, 'eleven thousand seven hundred eighty-seven'),\n(19255, 29662, 'twenty-nine thousand six hundred sixty-two'),\n(19256, 25747, 'twenty-five thousand seven hundred forty-seven'),\n(19257, 53060, 'fifty-three thousand sixty'),\n(19258, 42716, 'forty-two thousand seven hundred sixteen'),\n(19259, 13387, 'thirteen thousand three hundred eighty-seven'),\n(19260, 57184, 'fifty-seven thousand one hundred eighty-four'),\n(19261, 8762, 'eight thousand seven hundred sixty-two'),\n(19262, 91502, 'ninety-one thousand five hundred two'),\n(19263, 90584, 'ninety thousand five hundred eighty-four'),\n(19264, 20696, 'twenty thousand six hundred ninety-six'),\n(19265, 28461, 'twenty-eight thousand four hundred sixty-one'),\n(19266, 56947, 'fifty-six thousand nine hundred forty-seven'),\n(19267, 62628, 'sixty-two thousand six hundred twenty-eight'),\n(19268, 36006, 'thirty-six thousand six'),\n(19269, 62814, 'sixty-two thousand eight hundred fourteen'),\n(19270, 19012, 'nineteen thousand twelve'),\n(19271, 5111, 'five thousand one hundred eleven'),\n(19272, 17350, 'seventeen thousand three hundred fifty'),\n(19273, 31091, 'thirty-one thousand ninety-one'),\n(19274, 19263, 'nineteen thousand two hundred sixty-three'),\n(19275, 15340, 'fifteen thousand three hundred forty'),\n(19276, 43789, 'forty-three thousand seven hundred eighty-nine'),\n(19277, 13304, 'thirteen thousand three hundred four'),\n(19278, 84999, 'eighty-four thousand nine hundred ninety-nine'),\n(19279, 98484, 'ninety-eight thousand four hundred eighty-four'),\n(19280, 3135, 'three thousand one hundred thirty-five'),\n(19281, 13038, 'thirteen thousand thirty-eight'),\n(19282, 27710, 'twenty-seven thousand seven hundred ten'),\n(19283, 98051, 'ninety-eight thousand fifty-one'),\n(19284, 72987, 'seventy-two thousand nine hundred eighty-seven'),\n(19285, 36497, 'thirty-six thousand four hundred ninety-seven'),\n(19286, 9566, 'nine thousand five hundred sixty-six'),\n(19287, 22220, 'twenty-two thousand two hundred twenty'),\n(19288, 55902, 'fifty-five thousand nine hundred two'),\n(19289, 68522, 'sixty-eight thousand five hundred twenty-two'),\n(19290, 22980, 'twenty-two thousand nine hundred eighty'),\n(19291, 21642, 'twenty-one thousand six hundred forty-two'),\n(19292, 74886, 'seventy-four thousand eight hundred eighty-six'),\n(19293, 78815, 'seventy-eight thousand eight hundred fifteen'),\n(19294, 41243, 'forty-one thousand two hundred forty-three'),\n(19295, 62219, 'sixty-two thousand two hundred nineteen'),\n(19296, 8671, 'eight thousand six hundred seventy-one'),\n(19297, 68166, 'sixty-eight thousand one hundred sixty-six'),\n(19298, 13329, 'thirteen thousand three hundred twenty-nine'),\n(19299, 62502, 'sixty-two thousand five hundred two'),\n(19300, 57816, 'fifty-seven thousand eight hundred sixteen'),\n(19301, 43200, 'forty-three thousand two hundred'),\n(19302, 73233, 'seventy-three thousand two hundred thirty-three'),\n(19303, 87550, 'eighty-seven thousand five hundred fifty'),\n(19304, 48825, 'forty-eight thousand eight hundred twenty-five'),\n(19305, 52004, 'fifty-two thousand four'),\n(19306, 66329, 'sixty-six thousand three hundred twenty-nine'),\n(19307, 50483, 'fifty thousand four hundred eighty-three'),\n(19308, 81052, 'eighty-one thousand fifty-two'),\n(19309, 42063, 'forty-two thousand sixty-three'),\n(19310, 63746, 'sixty-three thousand seven hundred forty-six'),\n(19311, 38013, 'thirty-eight thousand thirteen'),\n(19312, 83479, 'eighty-three thousand four hundred seventy-nine'),\n(19313, 48264, 'forty-eight thousand two hundred sixty-four'),\n(19314, 77479, 'seventy-seven thousand four hundred seventy-nine'),\n(19315, 34929, 'thirty-four thousand nine hundred twenty-nine'),\n(19316, 93940, 'ninety-three thousand nine hundred forty'),\n(19317, 74500, 'seventy-four thousand five hundred'),\n(19318, 32088, 'thirty-two thousand eighty-eight'),\n(19319, 6824, 'six thousand eight hundred twenty-four'),\n(19320, 29822, 'twenty-nine thousand eight hundred twenty-two'),\n(19321, 35919, 'thirty-five thousand nine hundred nineteen'),\n(19322, 36168, 'thirty-six thousand one hundred sixty-eight'),\n(19323, 50482, 'fifty thousand four hundred eighty-two'),\n(19324, 54143, 'fifty-four thousand one hundred forty-three'),\n(19325, 54764, 'fifty-four thousand seven hundred sixty-four'),\n(19326, 38564, 'thirty-eight thousand five hundred sixty-four'),\n(19327, 52634, 'fifty-two thousand six hundred thirty-four'),\n(19328, 21695, 'twenty-one thousand six hundred ninety-five'),\n(19329, 40688, 'forty thousand six hundred eighty-eight'),\n(19330, 73201, 'seventy-three thousand two hundred one'),\n(19331, 8022, 'eight thousand twenty-two'),\n(19332, 45075, 'forty-five thousand seventy-five'),\n(19333, 24083, 'twenty-four thousand eighty-three'),\n(19334, 29778, 'twenty-nine thousand seven hundred seventy-eight'),\n(19335, 78567, 'seventy-eight thousand five hundred sixty-seven'),\n(19336, 12268, 'twelve thousand two hundred sixty-eight'),\n(19337, 71123, 'seventy-one thousand one hundred twenty-three'),\n(19338, 61497, 'sixty-one thousand four hundred ninety-seven'),\n(19339, 68928, 'sixty-eight thousand nine hundred twenty-eight'),\n(19340, 73731, 'seventy-three thousand seven hundred thirty-one'),\n(19341, 57916, 'fifty-seven thousand nine hundred sixteen'),\n(19342, 38249, 'thirty-eight thousand two hundred forty-nine'),\n(19343, 66808, 'sixty-six thousand eight hundred eight'),\n(19344, 50991, 'fifty thousand nine hundred ninety-one'),\n(19345, 97340, 'ninety-seven thousand three hundred forty'),\n(19346, 24648, 'twenty-four thousand six hundred forty-eight'),\n(19347, 61487, 'sixty-one thousand four hundred eighty-seven'),\n(19348, 20005, 'twenty thousand five'),\n(19349, 10661, 'ten thousand six hundred sixty-one'),\n(19350, 24221, 'twenty-four thousand two hundred twenty-one'),\n(19351, 70621, 'seventy thousand six hundred twenty-one'),\n(19352, 95002, 'ninety-five thousand two'),\n(19353, 20369, 'twenty thousand three hundred sixty-nine'),\n(19354, 81437, 'eighty-one thousand four hundred thirty-seven'),\n(19355, 38349, 'thirty-eight thousand three hundred forty-nine'),\n(19356, 95879, 'ninety-five thousand eight hundred seventy-nine'),\n(19357, 47986, 'forty-seven thousand nine hundred eighty-six'),\n(19358, 24843, 'twenty-four thousand eight hundred forty-three'),\n(19359, 62771, 'sixty-two thousand seven hundred seventy-one'),\n(19360, 55203, 'fifty-five thousand two hundred three'),\n(19361, 20827, 'twenty thousand eight hundred twenty-seven'),\n(19362, 75422, 'seventy-five thousand four hundred twenty-two'),\n(19363, 23511, 'twenty-three thousand five hundred eleven'),\n(19364, 44941, 'forty-four thousand nine hundred forty-one'),\n(19365, 76031, 'seventy-six thousand thirty-one'),\n(19366, 47483, 'forty-seven thousand four hundred eighty-three'),\n(19367, 22838, 'twenty-two thousand eight hundred thirty-eight'),\n(19368, 40943, 'forty thousand nine hundred forty-three'),\n(19369, 39962, 'thirty-nine thousand nine hundred sixty-two'),\n(19370, 44467, 'forty-four thousand four hundred sixty-seven'),\n(19371, 40881, 'forty thousand eight hundred eighty-one'),\n(19372, 40948, 'forty thousand nine hundred forty-eight'),\n(19373, 15781, 'fifteen thousand seven hundred eighty-one'),\n(19374, 42097, 'forty-two thousand ninety-seven'),\n(19375, 50040, 'fifty thousand forty'),\n(19376, 23848, 'twenty-three thousand eight hundred forty-eight'),\n(19377, 34824, 'thirty-four thousand eight hundred twenty-four'),\n(19378, 63401, 'sixty-three thousand four hundred one'),\n(19379, 4028, 'four thousand twenty-eight'),\n(19380, 11031, 'eleven thousand thirty-one'),\n(19381, 20010, 'twenty thousand ten'),\n(19382, 79127, 'seventy-nine thousand one hundred twenty-seven'),\n(19383, 91267, 'ninety-one thousand two hundred sixty-seven'),\n(19384, 37367, 'thirty-seven thousand three hundred sixty-seven'),\n(19385, 24251, 'twenty-four thousand two hundred fifty-one'),\n(19386, 4007, 'four thousand seven'),\n(19387, 93082, 'ninety-three thousand eighty-two'),\n(19388, 92026, 'ninety-two thousand twenty-six'),\n(19389, 79191, 'seventy-nine thousand one hundred ninety-one'),\n(19390, 54203, 'fifty-four thousand two hundred three'),\n(19391, 23416, 'twenty-three thousand four hundred sixteen'),\n(19392, 1644, 'one thousand six hundred forty-four'),\n(19393, 37158, 'thirty-seven thousand one hundred fifty-eight'),\n(19394, 3649, 'three thousand six hundred forty-nine'),\n(19395, 23719, 'twenty-three thousand seven hundred nineteen'),\n(19396, 13818, 'thirteen thousand eight hundred eighteen'),\n(19397, 14942, 'fourteen thousand nine hundred forty-two'),\n(19398, 47030, 'forty-seven thousand thirty'),\n(19399, 75713, 'seventy-five thousand seven hundred thirteen'),\n(19400, 4984, 'four thousand nine hundred eighty-four'),\n(19401, 59030, 'fifty-nine thousand thirty'),\n(19402, 85772, 'eighty-five thousand seven hundred seventy-two'),\n(19403, 58356, 'fifty-eight thousand three hundred fifty-six'),\n(19404, 27157, 'twenty-seven thousand one hundred fifty-seven'),\n(19405, 81669, 'eighty-one thousand six hundred sixty-nine'),\n(19406, 12946, 'twelve thousand nine hundred forty-six'),\n(19407, 10503, 'ten thousand five hundred three'),\n(19408, 90744, 'ninety thousand seven hundred forty-four'),\n(19409, 17218, 'seventeen thousand two hundred eighteen'),\n(19410, 75769, 'seventy-five thousand seven hundred sixty-nine'),\n(19411, 20569, 'twenty thousand five hundred sixty-nine'),\n(19412, 4762, 'four thousand seven hundred sixty-two'),\n(19413, 52701, 'fifty-two thousand seven hundred one'),\n(19414, 58258, 'fifty-eight thousand two hundred fifty-eight'),\n(19415, 10573, 'ten thousand five hundred seventy-three'),\n(19416, 66853, 'sixty-six thousand eight hundred fifty-three'),\n(19417, 30150, 'thirty thousand one hundred fifty'),\n(19418, 29555, 'twenty-nine thousand five hundred fifty-five'),\n(19419, 40950, 'forty thousand nine hundred fifty'),\n(19420, 17094, 'seventeen thousand ninety-four'),\n(19421, 16641, 'sixteen thousand six hundred forty-one'),\n(19422, 27514, 'twenty-seven thousand five hundred fourteen'),\n(19423, 74113, 'seventy-four thousand one hundred thirteen'),\n(19424, 19084, 'nineteen thousand eighty-four'),\n(19425, 67528, 'sixty-seven thousand five hundred twenty-eight'),\n(19426, 94108, 'ninety-four thousand one hundred eight'),\n(19427, 7342, 'seven thousand three hundred forty-two'),\n(19428, 87382, 'eighty-seven thousand three hundred eighty-two'),\n(19429, 6274, 'six thousand two hundred seventy-four'),\n(19430, 8839, 'eight thousand eight hundred thirty-nine'),\n(19431, 82365, 'eighty-two thousand three hundred sixty-five'),\n(19432, 8566, 'eight thousand five hundred sixty-six'),\n(19433, 81837, 'eighty-one thousand eight hundred thirty-seven'),\n(19434, 69217, 'sixty-nine thousand two hundred seventeen'),\n(19435, 72010, 'seventy-two thousand ten'),\n(19436, 65223, 'sixty-five thousand two hundred twenty-three'),\n(19437, 27739, 'twenty-seven thousand seven hundred thirty-nine'),\n(19438, 74026, 'seventy-four thousand twenty-six'),\n(19439, 50419, 'fifty thousand four hundred nineteen'),\n(19440, 55579, 'fifty-five thousand five hundred seventy-nine'),\n(19441, 34087, 'thirty-four thousand eighty-seven'),\n(19442, 41468, 'forty-one thousand four hundred sixty-eight'),\n(19443, 60871, 'sixty thousand eight hundred seventy-one'),\n(19444, 76019, 'seventy-six thousand nineteen'),\n(19445, 46668, 'forty-six thousand six hundred sixty-eight'),\n(19446, 42665, 'forty-two thousand six hundred sixty-five'),\n(19447, 90446, 'ninety thousand four hundred forty-six'),\n(19448, 38321, 'thirty-eight thousand three hundred twenty-one'),\n(19449, 80086, 'eighty thousand eighty-six'),\n(19450, 39787, 'thirty-nine thousand seven hundred eighty-seven'),\n(19451, 19767, 'nineteen thousand seven hundred sixty-seven'),\n(19452, 34380, 'thirty-four thousand three hundred eighty'),\n(19453, 28171, 'twenty-eight thousand one hundred seventy-one'),\n(19454, 90990, 'ninety thousand nine hundred ninety'),\n(19455, 79448, 'seventy-nine thousand four hundred forty-eight'),\n(19456, 76235, 'seventy-six thousand two hundred thirty-five'),\n(19457, 23829, 'twenty-three thousand eight hundred twenty-nine'),\n(19458, 49486, 'forty-nine thousand four hundred eighty-six'),\n(19459, 34634, 'thirty-four thousand six hundred thirty-four'),\n(19460, 52118, 'fifty-two thousand one hundred eighteen'),\n(19461, 50940, 'fifty thousand nine hundred forty'),\n(19462, 71601, 'seventy-one thousand six hundred one'),\n(19463, 1992, 'one thousand nine hundred ninety-two'),\n(19464, 24335, 'twenty-four thousand three hundred thirty-five'),\n(19465, 20424, 'twenty thousand four hundred twenty-four'),\n(19466, 93259, 'ninety-three thousand two hundred fifty-nine'),\n(19467, 26351, 'twenty-six thousand three hundred fifty-one'),\n(19468, 75270, 'seventy-five thousand two hundred seventy'),\n(19469, 88988, 'eighty-eight thousand nine hundred eighty-eight'),\n(19470, 39984, 'thirty-nine thousand nine hundred eighty-four'),\n(19471, 96634, 'ninety-six thousand six hundred thirty-four'),\n(19472, 1772, 'one thousand seven hundred seventy-two'),\n(19473, 71056, 'seventy-one thousand fifty-six'),\n(19474, 62891, 'sixty-two thousand eight hundred ninety-one'),\n(19475, 69856, 'sixty-nine thousand eight hundred fifty-six'),\n(19476, 81369, 'eighty-one thousand three hundred sixty-nine'),\n(19477, 8940, 'eight thousand nine hundred forty'),\n(19478, 66439, 'sixty-six thousand four hundred thirty-nine'),\n(19479, 66313, 'sixty-six thousand three hundred thirteen'),\n(19480, 16695, 'sixteen thousand six hundred ninety-five'),\n(19481, 70150, 'seventy thousand one hundred fifty'),\n(19482, 79462, 'seventy-nine thousand four hundred sixty-two'),\n(19483, 21151, 'twenty-one thousand one hundred fifty-one'),\n(19484, 1070, 'one thousand seventy'),\n(19485, 34701, 'thirty-four thousand seven hundred one'),\n(19486, 58249, 'fifty-eight thousand two hundred forty-nine'),\n(19487, 23890, 'twenty-three thousand eight hundred ninety'),\n(19488, 48438, 'forty-eight thousand four hundred thirty-eight'),\n(19489, 33987, 'thirty-three thousand nine hundred eighty-seven'),\n(19490, 6411, 'six thousand four hundred eleven'),\n(19491, 24962, 'twenty-four thousand nine hundred sixty-two'),\n(19492, 90714, 'ninety thousand seven hundred fourteen'),\n(19493, 65087, 'sixty-five thousand eighty-seven'),\n(19494, 93866, 'ninety-three thousand eight hundred sixty-six'),\n(19495, 25135, 'twenty-five thousand one hundred thirty-five'),\n(19496, 48147, 'forty-eight thousand one hundred forty-seven'),\n(19497, 42033, 'forty-two thousand thirty-three'),\n(19498, 71644, 'seventy-one thousand six hundred forty-four'),\n(19499, 49267, 'forty-nine thousand two hundred sixty-seven'),\n(19500, 90474, 'ninety thousand four hundred seventy-four'),\n(19501, 24721, 'twenty-four thousand seven hundred twenty-one'),\n(19502, 66812, 'sixty-six thousand eight hundred twelve'),\n(19503, 85934, 'eighty-five thousand nine hundred thirty-four'),\n(19504, 29788, 'twenty-nine thousand seven hundred eighty-eight'),\n(19505, 4555, 'four thousand five hundred fifty-five'),\n(19506, 78210, 'seventy-eight thousand two hundred ten'),\n(19507, 29423, 'twenty-nine thousand four hundred twenty-three'),\n(19508, 99737, 'ninety-nine thousand seven hundred thirty-seven'),\n(19509, 65009, 'sixty-five thousand nine'),\n(19510, 82090, 'eighty-two thousand ninety'),\n(19511, 12260, 'twelve thousand two hundred sixty'),\n(19512, 62869, 'sixty-two thousand eight hundred sixty-nine'),\n(19513, 29318, 'twenty-nine thousand three hundred eighteen'),\n(19514, 56175, 'fifty-six thousand one hundred seventy-five'),\n(19515, 3130, 'three thousand one hundred thirty'),\n(19516, 51537, 'fifty-one thousand five hundred thirty-seven'),\n(19517, 76463, 'seventy-six thousand four hundred sixty-three'),\n(19518, 2425, 'two thousand four hundred twenty-five'),\n(19519, 93173, 'ninety-three thousand one hundred seventy-three'),\n(19520, 66383, 'sixty-six thousand three hundred eighty-three'),\n(19521, 99310, 'ninety-nine thousand three hundred ten'),\n(19522, 32574, 'thirty-two thousand five hundred seventy-four'),\n(19523, 99192, 'ninety-nine thousand one hundred ninety-two'),\n(19524, 84320, 'eighty-four thousand three hundred twenty'),\n(19525, 69763, 'sixty-nine thousand seven hundred sixty-three'),\n(19526, 80323, 'eighty thousand three hundred twenty-three'),\n(19527, 94322, 'ninety-four thousand three hundred twenty-two'),\n(19528, 49608, 'forty-nine thousand six hundred eight'),\n(19529, 1716, 'one thousand seven hundred sixteen'),\n(19530, 14239, 'fourteen thousand two hundred thirty-nine'),\n(19531, 69469, 'sixty-nine thousand four hundred sixty-nine'),\n(19532, 38129, 'thirty-eight thousand one hundred twenty-nine'),\n(19533, 57751, 'fifty-seven thousand seven hundred fifty-one'),\n(19534, 83980, 'eighty-three thousand nine hundred eighty'),\n(19535, 3741, 'three thousand seven hundred forty-one'),\n(19536, 43682, 'forty-three thousand six hundred eighty-two'),\n(19537, 19228, 'nineteen thousand two hundred twenty-eight'),\n(19538, 27463, 'twenty-seven thousand four hundred sixty-three'),\n(19539, 66551, 'sixty-six thousand five hundred fifty-one'),\n(19540, 96082, 'ninety-six thousand eighty-two'),\n(19541, 56533, 'fifty-six thousand five hundred thirty-three'),\n(19542, 73140, 'seventy-three thousand one hundred forty'),\n(19543, 17485, 'seventeen thousand four hundred eighty-five'),\n(19544, 96640, 'ninety-six thousand six hundred forty'),\n(19545, 74765, 'seventy-four thousand seven hundred sixty-five'),\n(19546, 42865, 'forty-two thousand eight hundred sixty-five'),\n(19547, 99163, 'ninety-nine thousand one hundred sixty-three'),\n(19548, 75413, 'seventy-five thousand four hundred thirteen'),\n(19549, 7084, 'seven thousand eighty-four'),\n(19550, 17387, 'seventeen thousand three hundred eighty-seven'),\n(19551, 47377, 'forty-seven thousand three hundred seventy-seven'),\n(19552, 5600, 'five thousand six hundred'),\n(19553, 47422, 'forty-seven thousand four hundred twenty-two'),\n(19554, 71011, 'seventy-one thousand eleven'),\n(19555, 13051, 'thirteen thousand fifty-one'),\n(19556, 49894, 'forty-nine thousand eight hundred ninety-four'),\n(19557, 9139, 'nine thousand one hundred thirty-nine'),\n(19558, 65841, 'sixty-five thousand eight hundred forty-one'),\n(19559, 47289, 'forty-seven thousand two hundred eighty-nine'),\n(19560, 32328, 'thirty-two thousand three hundred twenty-eight'),\n(19561, 25482, 'twenty-five thousand four hundred eighty-two'),\n(19562, 67366, 'sixty-seven thousand three hundred sixty-six'),\n(19563, 54187, 'fifty-four thousand one hundred eighty-seven'),\n(19564, 60024, 'sixty thousand twenty-four'),\n(19565, 81200, 'eighty-one thousand two hundred'),\n(19566, 92367, 'ninety-two thousand three hundred sixty-seven'),\n(19567, 65367, 'sixty-five thousand three hundred sixty-seven'),\n(19568, 40393, 'forty thousand three hundred ninety-three'),\n(19569, 43767, 'forty-three thousand seven hundred sixty-seven'),\n(19570, 69296, 'sixty-nine thousand two hundred ninety-six'),\n(19571, 6751, 'six thousand seven hundred fifty-one'),\n(19572, 79303, 'seventy-nine thousand three hundred three'),\n(19573, 10762, 'ten thousand seven hundred sixty-two'),\n(19574, 56400, 'fifty-six thousand four hundred'),\n(19575, 28473, 'twenty-eight thousand four hundred seventy-three'),\n(19576, 70473, 'seventy thousand four hundred seventy-three'),\n(19577, 79981, 'seventy-nine thousand nine hundred eighty-one'),\n(19578, 53920, 'fifty-three thousand nine hundred twenty'),\n(19579, 62161, 'sixty-two thousand one hundred sixty-one'),\n(19580, 22223, 'twenty-two thousand two hundred twenty-three'),\n(19581, 46901, 'forty-six thousand nine hundred one'),\n(19582, 1420, 'one thousand four hundred twenty'),\n(19583, 2379, 'two thousand three hundred seventy-nine'),\n(19584, 56826, 'fifty-six thousand eight hundred twenty-six'),\n(19585, 71097, 'seventy-one thousand ninety-seven'),\n(19586, 83243, 'eighty-three thousand two hundred forty-three'),\n(19587, 62366, 'sixty-two thousand three hundred sixty-six'),\n(19588, 72168, 'seventy-two thousand one hundred sixty-eight'),\n(19589, 34441, 'thirty-four thousand four hundred forty-one'),\n(19590, 35373, 'thirty-five thousand three hundred seventy-three'),\n(19591, 66907, 'sixty-six thousand nine hundred seven'),\n(19592, 51812, 'fifty-one thousand eight hundred twelve'),\n(19593, 50333, 'fifty thousand three hundred thirty-three'),\n(19594, 94849, 'ninety-four thousand eight hundred forty-nine'),\n(19595, 68171, 'sixty-eight thousand one hundred seventy-one'),\n(19596, 56179, 'fifty-six thousand one hundred seventy-nine'),\n(19597, 60905, 'sixty thousand nine hundred five'),\n(19598, 51465, 'fifty-one thousand four hundred sixty-five'),\n(19599, 71288, 'seventy-one thousand two hundred eighty-eight'),\n(19600, 10479, 'ten thousand four hundred seventy-nine'),\n(19601, 54583, 'fifty-four thousand five hundred eighty-three'),\n(19602, 19665, 'nineteen thousand six hundred sixty-five'),\n(19603, 74329, 'seventy-four thousand three hundred twenty-nine'),\n(19604, 99730, 'ninety-nine thousand seven hundred thirty'),\n(19605, 27510, 'twenty-seven thousand five hundred ten'),\n(19606, 61606, 'sixty-one thousand six hundred six'),\n(19607, 50992, 'fifty thousand nine hundred ninety-two'),\n(19608, 59499, 'fifty-nine thousand four hundred ninety-nine'),\n(19609, 19786, 'nineteen thousand seven hundred eighty-six'),\n(19610, 96247, 'ninety-six thousand two hundred forty-seven'),\n(19611, 84024, 'eighty-four thousand twenty-four'),\n(19612, 5501, 'five thousand five hundred one'),\n(19613, 77281, 'seventy-seven thousand two hundred eighty-one'),\n(19614, 31446, 'thirty-one thousand four hundred forty-six'),\n(19615, 13030, 'thirteen thousand thirty'),\n(19616, 99772, 'ninety-nine thousand seven hundred seventy-two'),\n(19617, 74603, 'seventy-four thousand six hundred three'),\n(19618, 79584, 'seventy-nine thousand five hundred eighty-four'),\n(19619, 70165, 'seventy thousand one hundred sixty-five'),\n(19620, 19582, 'nineteen thousand five hundred eighty-two'),\n(19621, 84299, 'eighty-four thousand two hundred ninety-nine'),\n(19622, 39072, 'thirty-nine thousand seventy-two'),\n(19623, 90871, 'ninety thousand eight hundred seventy-one'),\n(19624, 10223, 'ten thousand two hundred twenty-three'),\n(19625, 13913, 'thirteen thousand nine hundred thirteen'),\n(19626, 66601, 'sixty-six thousand six hundred one'),\n(19627, 71461, 'seventy-one thousand four hundred sixty-one'),\n(19628, 63563, 'sixty-three thousand five hundred sixty-three'),\n(19629, 18564, 'eighteen thousand five hundred sixty-four'),\n(19630, 49072, 'forty-nine thousand seventy-two'),\n(19631, 18366, 'eighteen thousand three hundred sixty-six'),\n(19632, 20203, 'twenty thousand two hundred three'),\n(19633, 85191, 'eighty-five thousand one hundred ninety-one'),\n(19634, 1383, 'one thousand three hundred eighty-three'),\n(19635, 38597, 'thirty-eight thousand five hundred ninety-seven'),\n(19636, 47337, 'forty-seven thousand three hundred thirty-seven'),\n(19637, 55480, 'fifty-five thousand four hundred eighty'),\n(19638, 32288, 'thirty-two thousand two hundred eighty-eight'),\n(19639, 37063, 'thirty-seven thousand sixty-three'),\n(19640, 10462, 'ten thousand four hundred sixty-two'),\n(19641, 8688, 'eight thousand six hundred eighty-eight'),\n(19642, 39222, 'thirty-nine thousand two hundred twenty-two'),\n(19643, 54962, 'fifty-four thousand nine hundred sixty-two'),\n(19644, 77710, 'seventy-seven thousand seven hundred ten'),\n(19645, 43534, 'forty-three thousand five hundred thirty-four'),\n(19646, 24987, 'twenty-four thousand nine hundred eighty-seven'),\n(19647, 85361, 'eighty-five thousand three hundred sixty-one'),\n(19648, 30092, 'thirty thousand ninety-two'),\n(19649, 43636, 'forty-three thousand six hundred thirty-six'),\n(19650, 26230, 'twenty-six thousand two hundred thirty'),\n(19651, 84234, 'eighty-four thousand two hundred thirty-four'),\n(19652, 32251, 'thirty-two thousand two hundred fifty-one'),\n(19653, 882, 'eight hundred eighty-two'),\n(19654, 92107, 'ninety-two thousand one hundred seven'),\n(19655, 99716, 'ninety-nine thousand seven hundred sixteen'),\n(19656, 50542, 'fifty thousand five hundred forty-two'),\n(19657, 45478, 'forty-five thousand four hundred seventy-eight'),\n(19658, 38320, 'thirty-eight thousand three hundred twenty'),\n(19659, 15275, 'fifteen thousand two hundred seventy-five'),\n(19660, 23080, 'twenty-three thousand eighty'),\n(19661, 68580, 'sixty-eight thousand five hundred eighty'),\n(19662, 79123, 'seventy-nine thousand one hundred twenty-three'),\n(19663, 97516, 'ninety-seven thousand five hundred sixteen'),\n(19664, 59696, 'fifty-nine thousand six hundred ninety-six'),\n(19665, 25986, 'twenty-five thousand nine hundred eighty-six'),\n(19666, 36244, 'thirty-six thousand two hundred forty-four'),\n(19667, 48938, 'forty-eight thousand nine hundred thirty-eight'),\n(19668, 61749, 'sixty-one thousand seven hundred forty-nine'),\n(19669, 85629, 'eighty-five thousand six hundred twenty-nine'),\n(19670, 27798, 'twenty-seven thousand seven hundred ninety-eight'),\n(19671, 60826, 'sixty thousand eight hundred twenty-six'),\n(19672, 19402, 'nineteen thousand four hundred two'),\n(19673, 40330, 'forty thousand three hundred thirty'),\n(19674, 88833, 'eighty-eight thousand eight hundred thirty-three'),\n(19675, 77860, 'seventy-seven thousand eight hundred sixty'),\n(19676, 66794, 'sixty-six thousand seven hundred ninety-four'),\n(19677, 36817, 'thirty-six thousand eight hundred seventeen'),\n(19678, 67337, 'sixty-seven thousand three hundred thirty-seven'),\n(19679, 8582, 'eight thousand five hundred eighty-two'),\n(19680, 88205, 'eighty-eight thousand two hundred five'),\n(19681, 42375, 'forty-two thousand three hundred seventy-five'),\n(19682, 52953, 'fifty-two thousand nine hundred fifty-three'),\n(19683, 98214, 'ninety-eight thousand two hundred fourteen'),\n(19684, 44401, 'forty-four thousand four hundred one'),\n(19685, 39133, 'thirty-nine thousand one hundred thirty-three'),\n(19686, 39340, 'thirty-nine thousand three hundred forty'),\n(19687, 21943, 'twenty-one thousand nine hundred forty-three'),\n(19688, 33226, 'thirty-three thousand two hundred twenty-six'),\n(19689, 94784, 'ninety-four thousand seven hundred eighty-four'),\n(19690, 50677, 'fifty thousand six hundred seventy-seven'),\n(19691, 60817, 'sixty thousand eight hundred seventeen'),\n(19692, 2026, 'two thousand twenty-six'),\n(19693, 90895, 'ninety thousand eight hundred ninety-five'),\n(19694, 86422, 'eighty-six thousand four hundred twenty-two'),\n(19695, 83445, 'eighty-three thousand four hundred forty-five'),\n(19696, 65549, 'sixty-five thousand five hundred forty-nine'),\n(19697, 28657, 'twenty-eight thousand six hundred fifty-seven'),\n(19698, 98125, 'ninety-eight thousand one hundred twenty-five'),\n(19699, 67725, 'sixty-seven thousand seven hundred twenty-five'),\n(19700, 12133, 'twelve thousand one hundred thirty-three'),\n(19701, 9044, 'nine thousand forty-four'),\n(19702, 67802, 'sixty-seven thousand eight hundred two'),\n(19703, 71589, 'seventy-one thousand five hundred eighty-nine'),\n(19704, 79185, 'seventy-nine thousand one hundred eighty-five'),\n(19705, 63241, 'sixty-three thousand two hundred forty-one'),\n(19706, 85620, 'eighty-five thousand six hundred twenty'),\n(19707, 17780, 'seventeen thousand seven hundred eighty'),\n(19708, 89943, 'eighty-nine thousand nine hundred forty-three'),\n(19709, 14640, 'fourteen thousand six hundred forty'),\n(19710, 45665, 'forty-five thousand six hundred sixty-five'),\n(19711, 85205, 'eighty-five thousand two hundred five'),\n(19712, 10290, 'ten thousand two hundred ninety'),\n(19713, 45735, 'forty-five thousand seven hundred thirty-five'),\n(19714, 80588, 'eighty thousand five hundred eighty-eight'),\n(19715, 15032, 'fifteen thousand thirty-two'),\n(19716, 33082, 'thirty-three thousand eighty-two'),\n(19717, 55344, 'fifty-five thousand three hundred forty-four'),\n(19718, 17423, 'seventeen thousand four hundred twenty-three'),\n(19719, 75379, 'seventy-five thousand three hundred seventy-nine'),\n(19720, 2893, 'two thousand eight hundred ninety-three'),\n(19721, 66038, 'sixty-six thousand thirty-eight'),\n(19722, 82191, 'eighty-two thousand one hundred ninety-one'),\n(19723, 48842, 'forty-eight thousand eight hundred forty-two'),\n(19724, 31711, 'thirty-one thousand seven hundred eleven'),\n(19725, 93787, 'ninety-three thousand seven hundred eighty-seven'),\n(19726, 25164, 'twenty-five thousand one hundred sixty-four'),\n(19727, 96793, 'ninety-six thousand seven hundred ninety-three'),\n(19728, 28407, 'twenty-eight thousand four hundred seven'),\n(19729, 52847, 'fifty-two thousand eight hundred forty-seven'),\n(19730, 49130, 'forty-nine thousand one hundred thirty'),\n(19731, 46686, 'forty-six thousand six hundred eighty-six'),\n(19732, 96039, 'ninety-six thousand thirty-nine'),\n(19733, 61381, 'sixty-one thousand three hundred eighty-one'),\n(19734, 53597, 'fifty-three thousand five hundred ninety-seven'),\n(19735, 23959, 'twenty-three thousand nine hundred fifty-nine'),\n(19736, 61829, 'sixty-one thousand eight hundred twenty-nine'),\n(19737, 81176, 'eighty-one thousand one hundred seventy-six'),\n(19738, 43831, 'forty-three thousand eight hundred thirty-one'),\n(19739, 7036, 'seven thousand thirty-six'),\n(19740, 32322, 'thirty-two thousand three hundred twenty-two'),\n(19741, 37934, 'thirty-seven thousand nine hundred thirty-four'),\n(19742, 66758, 'sixty-six thousand seven hundred fifty-eight'),\n(19743, 45174, 'forty-five thousand one hundred seventy-four'),\n(19744, 83864, 'eighty-three thousand eight hundred sixty-four'),\n(19745, 75121, 'seventy-five thousand one hundred twenty-one'),\n(19746, 15547, 'fifteen thousand five hundred forty-seven'),\n(19747, 42879, 'forty-two thousand eight hundred seventy-nine'),\n(19748, 59338, 'fifty-nine thousand three hundred thirty-eight'),\n(19749, 83235, 'eighty-three thousand two hundred thirty-five'),\n(19750, 81696, 'eighty-one thousand six hundred ninety-six'),\n(19751, 81932, 'eighty-one thousand nine hundred thirty-two'),\n(19752, 82448, 'eighty-two thousand four hundred forty-eight'),\n(19753, 18173, 'eighteen thousand one hundred seventy-three'),\n(19754, 39948, 'thirty-nine thousand nine hundred forty-eight'),\n(19755, 9960, 'nine thousand nine hundred sixty'),\n(19756, 13506, 'thirteen thousand five hundred six'),\n(19757, 69330, 'sixty-nine thousand three hundred thirty'),\n(19758, 41610, 'forty-one thousand six hundred ten'),\n(19759, 10375, 'ten thousand three hundred seventy-five'),\n(19760, 12254, 'twelve thousand two hundred fifty-four'),\n(19761, 27022, 'twenty-seven thousand twenty-two'),\n(19762, 21672, 'twenty-one thousand six hundred seventy-two'),\n(19763, 97924, 'ninety-seven thousand nine hundred twenty-four'),\n(19764, 21275, 'twenty-one thousand two hundred seventy-five'),\n(19765, 41434, 'forty-one thousand four hundred thirty-four'),\n(19766, 67561, 'sixty-seven thousand five hundred sixty-one'),\n(19767, 29913, 'twenty-nine thousand nine hundred thirteen'),\n(19768, 2251, 'two thousand two hundred fifty-one'),\n(19769, 86272, 'eighty-six thousand two hundred seventy-two'),\n(19770, 27018, 'twenty-seven thousand eighteen'),\n(19771, 60262, 'sixty thousand two hundred sixty-two'),\n(19772, 88037, 'eighty-eight thousand thirty-seven'),\n(19773, 94890, 'ninety-four thousand eight hundred ninety'),\n(19774, 58644, 'fifty-eight thousand six hundred forty-four'),\n(19775, 31719, 'thirty-one thousand seven hundred nineteen'),\n(19776, 23190, 'twenty-three thousand one hundred ninety'),\n(19777, 82442, 'eighty-two thousand four hundred forty-two'),\n(19778, 20141, 'twenty thousand one hundred forty-one'),\n(19779, 70728, 'seventy thousand seven hundred twenty-eight'),\n(19780, 83587, 'eighty-three thousand five hundred eighty-seven'),\n(19781, 60129, 'sixty thousand one hundred twenty-nine'),\n(19782, 70021, 'seventy thousand twenty-one'),\n(19783, 62802, 'sixty-two thousand eight hundred two'),\n(19784, 78640, 'seventy-eight thousand six hundred forty'),\n(19785, 90621, 'ninety thousand six hundred twenty-one'),\n(19786, 31976, 'thirty-one thousand nine hundred seventy-six'),\n(19787, 37063, 'thirty-seven thousand sixty-three'),\n(19788, 62699, 'sixty-two thousand six hundred ninety-nine'),\n(19789, 6977, 'six thousand nine hundred seventy-seven'),\n(19790, 51912, 'fifty-one thousand nine hundred twelve'),\n(19791, 90446, 'ninety thousand four hundred forty-six'),\n(19792, 1478, 'one thousand four hundred seventy-eight'),\n(19793, 72252, 'seventy-two thousand two hundred fifty-two'),\n(19794, 47687, 'forty-seven thousand six hundred eighty-seven'),\n(19795, 65765, 'sixty-five thousand seven hundred sixty-five'),\n(19796, 61418, 'sixty-one thousand four hundred eighteen'),\n(19797, 72313, 'seventy-two thousand three hundred thirteen'),\n(19798, 90370, 'ninety thousand three hundred seventy'),\n(19799, 1015, 'one thousand fifteen'),\n(19800, 18947, 'eighteen thousand nine hundred forty-seven'),\n(19801, 17851, 'seventeen thousand eight hundred fifty-one'),\n(19802, 1129, 'one thousand one hundred twenty-nine'),\n(19803, 15667, 'fifteen thousand six hundred sixty-seven'),\n(19804, 50535, 'fifty thousand five hundred thirty-five'),\n(19805, 70946, 'seventy thousand nine hundred forty-six'),\n(19806, 70067, 'seventy thousand sixty-seven'),\n(19807, 2556, 'two thousand five hundred fifty-six'),\n(19808, 39882, 'thirty-nine thousand eight hundred eighty-two'),\n(19809, 14889, 'fourteen thousand eight hundred eighty-nine'),\n(19810, 44477, 'forty-four thousand four hundred seventy-seven'),\n(19811, 86763, 'eighty-six thousand seven hundred sixty-three'),\n(19812, 5665, 'five thousand six hundred sixty-five'),\n(19813, 94413, 'ninety-four thousand four hundred thirteen'),\n(19814, 84967, 'eighty-four thousand nine hundred sixty-seven'),\n(19815, 72708, 'seventy-two thousand seven hundred eight'),\n(19816, 59377, 'fifty-nine thousand three hundred seventy-seven'),\n(19817, 25755, 'twenty-five thousand seven hundred fifty-five'),\n(19818, 85276, 'eighty-five thousand two hundred seventy-six'),\n(19819, 37133, 'thirty-seven thousand one hundred thirty-three'),\n(19820, 32899, 'thirty-two thousand eight hundred ninety-nine'),\n(19821, 46888, 'forty-six thousand eight hundred eighty-eight'),\n(19822, 37400, 'thirty-seven thousand four hundred'),\n(19823, 31553, 'thirty-one thousand five hundred fifty-three'),\n(19824, 3975, 'three thousand nine hundred seventy-five'),\n(19825, 60602, 'sixty thousand six hundred two'),\n(19826, 34809, 'thirty-four thousand eight hundred nine'),\n(19827, 93913, 'ninety-three thousand nine hundred thirteen'),\n(19828, 60955, 'sixty thousand nine hundred fifty-five'),\n(19829, 38244, 'thirty-eight thousand two hundred forty-four'),\n(19830, 41871, 'forty-one thousand eight hundred seventy-one'),\n(19831, 63818, 'sixty-three thousand eight hundred eighteen'),\n(19832, 71926, 'seventy-one thousand nine hundred twenty-six'),\n(19833, 16497, 'sixteen thousand four hundred ninety-seven'),\n(19834, 43479, 'forty-three thousand four hundred seventy-nine'),\n(19835, 81730, 'eighty-one thousand seven hundred thirty'),\n(19836, 99727, 'ninety-nine thousand seven hundred twenty-seven'),\n(19837, 91659, 'ninety-one thousand six hundred fifty-nine'),\n(19838, 28872, 'twenty-eight thousand eight hundred seventy-two'),\n(19839, 89897, 'eighty-nine thousand eight hundred ninety-seven'),\n(19840, 30178, 'thirty thousand one hundred seventy-eight'),\n(19841, 51585, 'fifty-one thousand five hundred eighty-five'),\n(19842, 69564, 'sixty-nine thousand five hundred sixty-four'),\n(19843, 63977, 'sixty-three thousand nine hundred seventy-seven'),\n(19844, 92869, 'ninety-two thousand eight hundred sixty-nine'),\n(19845, 94104, 'ninety-four thousand one hundred four'),\n(19846, 62170, 'sixty-two thousand one hundred seventy'),\n(19847, 21038, 'twenty-one thousand thirty-eight'),\n(19848, 40153, 'forty thousand one hundred fifty-three'),\n(19849, 58743, 'fifty-eight thousand seven hundred forty-three'),\n(19850, 87508, 'eighty-seven thousand five hundred eight'),\n(19851, 47657, 'forty-seven thousand six hundred fifty-seven'),\n(19852, 8778, 'eight thousand seven hundred seventy-eight'),\n(19853, 19032, 'nineteen thousand thirty-two'),\n(19854, 97097, 'ninety-seven thousand ninety-seven'),\n(19855, 46159, 'forty-six thousand one hundred fifty-nine'),\n(19856, 63827, 'sixty-three thousand eight hundred twenty-seven'),\n(19857, 26517, 'twenty-six thousand five hundred seventeen'),\n(19858, 36600, 'thirty-six thousand six hundred'),\n(19859, 84267, 'eighty-four thousand two hundred sixty-seven'),\n(19860, 37159, 'thirty-seven thousand one hundred fifty-nine'),\n(19861, 59740, 'fifty-nine thousand seven hundred forty'),\n(19862, 73271, 'seventy-three thousand two hundred seventy-one'),\n(19863, 28873, 'twenty-eight thousand eight hundred seventy-three'),\n(19864, 91438, 'ninety-one thousand four hundred thirty-eight'),\n(19865, 20923, 'twenty thousand nine hundred twenty-three'),\n(19866, 27148, 'twenty-seven thousand one hundred forty-eight'),\n(19867, 64999, 'sixty-four thousand nine hundred ninety-nine'),\n(19868, 34313, 'thirty-four thousand three hundred thirteen'),\n(19869, 12471, 'twelve thousand four hundred seventy-one'),\n(19870, 73301, 'seventy-three thousand three hundred one'),\n(19871, 34869, 'thirty-four thousand eight hundred sixty-nine'),\n(19872, 61468, 'sixty-one thousand four hundred sixty-eight'),\n(19873, 15136, 'fifteen thousand one hundred thirty-six'),\n(19874, 15382, 'fifteen thousand three hundred eighty-two'),\n(19875, 46431, 'forty-six thousand four hundred thirty-one'),\n(19876, 52555, 'fifty-two thousand five hundred fifty-five'),\n(19877, 92447, 'ninety-two thousand four hundred forty-seven'),\n(19878, 92426, 'ninety-two thousand four hundred twenty-six'),\n(19879, 2934, 'two thousand nine hundred thirty-four'),\n(19880, 35780, 'thirty-five thousand seven hundred eighty'),\n(19881, 65149, 'sixty-five thousand one hundred forty-nine'),\n(19882, 99341, 'ninety-nine thousand three hundred forty-one'),\n(19883, 34445, 'thirty-four thousand four hundred forty-five'),\n(19884, 6659, 'six thousand six hundred fifty-nine'),\n(19885, 49294, 'forty-nine thousand two hundred ninety-four'),\n(19886, 70129, 'seventy thousand one hundred twenty-nine'),\n(19887, 52160, 'fifty-two thousand one hundred sixty'),\n(19888, 9256, 'nine thousand two hundred fifty-six'),\n(19889, 27420, 'twenty-seven thousand four hundred twenty'),\n(19890, 85105, 'eighty-five thousand one hundred five'),\n(19891, 88313, 'eighty-eight thousand three hundred thirteen'),\n(19892, 94589, 'ninety-four thousand five hundred eighty-nine'),\n(19893, 50596, 'fifty thousand five hundred ninety-six'),\n(19894, 1419, 'one thousand four hundred nineteen'),\n(19895, 98933, 'ninety-eight thousand nine hundred thirty-three'),\n(19896, 23016, 'twenty-three thousand sixteen'),\n(19897, 33872, 'thirty-three thousand eight hundred seventy-two'),\n(19898, 8746, 'eight thousand seven hundred forty-six'),\n(19899, 60781, 'sixty thousand seven hundred eighty-one'),\n(19900, 57197, 'fifty-seven thousand one hundred ninety-seven'),\n(19901, 48381, 'forty-eight thousand three hundred eighty-one'),\n(19902, 36376, 'thirty-six thousand three hundred seventy-six'),\n(19903, 40747, 'forty thousand seven hundred forty-seven'),\n(19904, 93661, 'ninety-three thousand six hundred sixty-one'),\n(19905, 39503, 'thirty-nine thousand five hundred three'),\n(19906, 75834, 'seventy-five thousand eight hundred thirty-four'),\n(19907, 39896, 'thirty-nine thousand eight hundred ninety-six'),\n(19908, 21524, 'twenty-one thousand five hundred twenty-four'),\n(19909, 28841, 'twenty-eight thousand eight hundred forty-one'),\n(19910, 84599, 'eighty-four thousand five hundred ninety-nine'),\n(19911, 67626, 'sixty-seven thousand six hundred twenty-six'),\n(19912, 14462, 'fourteen thousand four hundred sixty-two'),\n(19913, 34477, 'thirty-four thousand four hundred seventy-seven'),\n(19914, 73679, 'seventy-three thousand six hundred seventy-nine'),\n(19915, 58623, 'fifty-eight thousand six hundred twenty-three'),\n(19916, 44535, 'forty-four thousand five hundred thirty-five'),\n(19917, 42057, 'forty-two thousand fifty-seven'),\n(19918, 50415, 'fifty thousand four hundred fifteen'),\n(19919, 56208, 'fifty-six thousand two hundred eight'),\n(19920, 60080, 'sixty thousand eighty'),\n(19921, 61892, 'sixty-one thousand eight hundred ninety-two'),\n(19922, 2953, 'two thousand nine hundred fifty-three'),\n(19923, 56019, 'fifty-six thousand nineteen'),\n(19924, 3443, 'three thousand four hundred forty-three'),\n(19925, 15304, 'fifteen thousand three hundred four'),\n(19926, 11900, 'eleven thousand nine hundred'),\n(19927, 82593, 'eighty-two thousand five hundred ninety-three'),\n(19928, 65750, 'sixty-five thousand seven hundred fifty'),\n(19929, 57487, 'fifty-seven thousand four hundred eighty-seven'),\n(19930, 49996, 'forty-nine thousand nine hundred ninety-six'),\n(19931, 25910, 'twenty-five thousand nine hundred ten'),\n(19932, 37419, 'thirty-seven thousand four hundred nineteen'),\n(19933, 51058, 'fifty-one thousand fifty-eight'),\n(19934, 47063, 'forty-seven thousand sixty-three'),\n(19935, 65359, 'sixty-five thousand three hundred fifty-nine'),\n(19936, 21441, 'twenty-one thousand four hundred forty-one'),\n(19937, 10523, 'ten thousand five hundred twenty-three'),\n(19938, 93248, 'ninety-three thousand two hundred forty-eight'),\n(19939, 40118, 'forty thousand one hundred eighteen'),\n(19940, 13415, 'thirteen thousand four hundred fifteen'),\n(19941, 71686, 'seventy-one thousand six hundred eighty-six'),\n(19942, 23126, 'twenty-three thousand one hundred twenty-six'),\n(19943, 20988, 'twenty thousand nine hundred eighty-eight'),\n(19944, 96562, 'ninety-six thousand five hundred sixty-two'),\n(19945, 46135, 'forty-six thousand one hundred thirty-five'),\n(19946, 87688, 'eighty-seven thousand six hundred eighty-eight'),\n(19947, 20017, 'twenty thousand seventeen'),\n(19948, 64558, 'sixty-four thousand five hundred fifty-eight'),\n(19949, 29409, 'twenty-nine thousand four hundred nine'),\n(19950, 81852, 'eighty-one thousand eight hundred fifty-two'),\n(19951, 50508, 'fifty thousand five hundred eight'),\n(19952, 70948, 'seventy thousand nine hundred forty-eight'),\n(19953, 49295, 'forty-nine thousand two hundred ninety-five'),\n(19954, 14605, 'fourteen thousand six hundred five'),\n(19955, 58637, 'fifty-eight thousand six hundred thirty-seven'),\n(19956, 67154, 'sixty-seven thousand one hundred fifty-four'),\n(19957, 29958, 'twenty-nine thousand nine hundred fifty-eight'),\n(19958, 43635, 'forty-three thousand six hundred thirty-five'),\n(19959, 45428, 'forty-five thousand four hundred twenty-eight'),\n(19960, 77933, 'seventy-seven thousand nine hundred thirty-three'),\n(19961, 39866, 'thirty-nine thousand eight hundred sixty-six'),\n(19962, 1300, 'one thousand three hundred'),\n(19963, 71768, 'seventy-one thousand seven hundred sixty-eight'),\n(19964, 9086, 'nine thousand eighty-six'),\n(19965, 81277, 'eighty-one thousand two hundred seventy-seven'),\n(19966, 79415, 'seventy-nine thousand four hundred fifteen'),\n(19967, 31317, 'thirty-one thousand three hundred seventeen'),\n(19968, 34975, 'thirty-four thousand nine hundred seventy-five'),\n(19969, 72187, 'seventy-two thousand one hundred eighty-seven'),\n(19970, 59586, 'fifty-nine thousand five hundred eighty-six'),\n(19971, 61657, 'sixty-one thousand six hundred fifty-seven'),\n(19972, 50029, 'fifty thousand twenty-nine'),\n(19973, 33323, 'thirty-three thousand three hundred twenty-three'),\n(19974, 30487, 'thirty thousand four hundred eighty-seven'),\n(19975, 92473, 'ninety-two thousand four hundred seventy-three'),\n(19976, 39835, 'thirty-nine thousand eight hundred thirty-five'),\n(19977, 93597, 'ninety-three thousand five hundred ninety-seven'),\n(19978, 97398, 'ninety-seven thousand three hundred ninety-eight'),\n(19979, 52199, 'fifty-two thousand one hundred ninety-nine'),\n(19980, 89086, 'eighty-nine thousand eighty-six'),\n(19981, 88142, 'eighty-eight thousand one hundred forty-two'),\n(19982, 8792, 'eight thousand seven hundred ninety-two'),\n(19983, 27822, 'twenty-seven thousand eight hundred twenty-two'),\n(19984, 47446, 'forty-seven thousand four hundred forty-six'),\n(19985, 56479, 'fifty-six thousand four hundred seventy-nine'),\n(19986, 11341, 'eleven thousand three hundred forty-one'),\n(19987, 69157, 'sixty-nine thousand one hundred fifty-seven'),\n(19988, 96921, 'ninety-six thousand nine hundred twenty-one'),\n(19989, 68806, 'sixty-eight thousand eight hundred six'),\n(19990, 59805, 'fifty-nine thousand eight hundred five'),\n(19991, 46439, 'forty-six thousand four hundred thirty-nine'),\n(19992, 9872, 'nine thousand eight hundred seventy-two'),\n(19993, 10598, 'ten thousand five hundred ninety-eight'),\n(19994, 22692, 'twenty-two thousand six hundred ninety-two'),\n(19995, 72003, 'seventy-two thousand three'),\n(19996, 31972, 'thirty-one thousand nine hundred seventy-two'),\n(19997, 9513, 'nine thousand five hundred thirteen'),\n(19998, 85249, 'eighty-five thousand two hundred forty-nine'),\n(19999, 87644, 'eighty-seven thousand six hundred forty-four'),\n(20000, 18342, 'eighteen thousand three hundred forty-two'),\n(20001, 72862, 'seventy-two thousand eight hundred sixty-two'),\n(20002, 27783, 'twenty-seven thousand seven hundred eighty-three'),\n(20003, 49347, 'forty-nine thousand three hundred forty-seven'),\n(20004, 95687, 'ninety-five thousand six hundred eighty-seven'),\n(20005, 87797, 'eighty-seven thousand seven hundred ninety-seven'),\n(20006, 14516, 'fourteen thousand five hundred sixteen'),\n(20007, 29523, 'twenty-nine thousand five hundred twenty-three'),\n(20008, 84355, 'eighty-four thousand three hundred fifty-five'),\n(20009, 22001, 'twenty-two thousand one'),\n(20010, 21492, 'twenty-one thousand four hundred ninety-two'),\n(20011, 27886, 'twenty-seven thousand eight hundred eighty-six'),\n(20012, 39281, 'thirty-nine thousand two hundred eighty-one'),\n(20013, 78223, 'seventy-eight thousand two hundred twenty-three'),\n(20014, 84396, 'eighty-four thousand three hundred ninety-six'),\n(20015, 46422, 'forty-six thousand four hundred twenty-two'),\n(20016, 77705, 'seventy-seven thousand seven hundred five'),\n(20017, 79657, 'seventy-nine thousand six hundred fifty-seven'),\n(20018, 29826, 'twenty-nine thousand eight hundred twenty-six'),\n(20019, 64606, 'sixty-four thousand six hundred six'),\n(20020, 11440, 'eleven thousand four hundred forty'),\n(20021, 71914, 'seventy-one thousand nine hundred fourteen'),\n(20022, 7272, 'seven thousand two hundred seventy-two'),\n(20023, 35100, 'thirty-five thousand one hundred'),\n(20024, 80122, 'eighty thousand one hundred twenty-two'),\n(20025, 32695, 'thirty-two thousand six hundred ninety-five'),\n(20026, 42114, 'forty-two thousand one hundred fourteen'),\n(20027, 61052, 'sixty-one thousand fifty-two'),\n(20028, 67891, 'sixty-seven thousand eight hundred ninety-one'),\n(20029, 72012, 'seventy-two thousand twelve'),\n(20030, 31745, 'thirty-one thousand seven hundred forty-five'),\n(20031, 24360, 'twenty-four thousand three hundred sixty'),\n(20032, 63286, 'sixty-three thousand two hundred eighty-six'),\n(20033, 1827, 'one thousand eight hundred twenty-seven'),\n(20034, 350, 'three hundred fifty'),\n(20035, 80110, 'eighty thousand one hundred ten'),\n(20036, 92311, 'ninety-two thousand three hundred eleven'),\n(20037, 19998, 'nineteen thousand nine hundred ninety-eight'),\n(20038, 20848, 'twenty thousand eight hundred forty-eight'),\n(20039, 1933, 'one thousand nine hundred thirty-three'),\n(20040, 37059, 'thirty-seven thousand fifty-nine'),\n(20041, 99283, 'ninety-nine thousand two hundred eighty-three'),\n(20042, 4257, 'four thousand two hundred fifty-seven'),\n(20043, 55905, 'fifty-five thousand nine hundred five'),\n(20044, 22092, 'twenty-two thousand ninety-two'),\n(20045, 26126, 'twenty-six thousand one hundred twenty-six'),\n(20046, 59006, 'fifty-nine thousand six'),\n(20047, 89616, 'eighty-nine thousand six hundred sixteen'),\n(20048, 37275, 'thirty-seven thousand two hundred seventy-five'),\n(20049, 63717, 'sixty-three thousand seven hundred seventeen'),\n(20050, 43823, 'forty-three thousand eight hundred twenty-three'),\n(20051, 23976, 'twenty-three thousand nine hundred seventy-six'),\n(20052, 16387, 'sixteen thousand three hundred eighty-seven'),\n(20053, 12225, 'twelve thousand two hundred twenty-five'),\n(20054, 12405, 'twelve thousand four hundred five'),\n(20055, 49729, 'forty-nine thousand seven hundred twenty-nine'),\n(20056, 74226, 'seventy-four thousand two hundred twenty-six'),\n(20057, 60049, 'sixty thousand forty-nine'),\n(20058, 81561, 'eighty-one thousand five hundred sixty-one'),\n(20059, 44020, 'forty-four thousand twenty'),\n(20060, 86626, 'eighty-six thousand six hundred twenty-six'),\n(20061, 16821, 'sixteen thousand eight hundred twenty-one'),\n(20062, 25113, 'twenty-five thousand one hundred thirteen'),\n(20063, 12880, 'twelve thousand eight hundred eighty'),\n(20064, 74147, 'seventy-four thousand one hundred forty-seven'),\n(20065, 97826, 'ninety-seven thousand eight hundred twenty-six'),\n(20066, 45166, 'forty-five thousand one hundred sixty-six'),\n(20067, 91066, 'ninety-one thousand sixty-six'),\n(20068, 89402, 'eighty-nine thousand four hundred two'),\n(20069, 89113, 'eighty-nine thousand one hundred thirteen'),\n(20070, 8, 'eight'),\n(20071, 39403, 'thirty-nine thousand four hundred three'),\n(20072, 7215, 'seven thousand two hundred fifteen'),\n(20073, 47610, 'forty-seven thousand six hundred ten'),\n(20074, 88159, 'eighty-eight thousand one hundred fifty-nine'),\n(20075, 40010, 'forty thousand ten'),\n(20076, 11713, 'eleven thousand seven hundred thirteen'),\n(20077, 58482, 'fifty-eight thousand four hundred eighty-two'),\n(20078, 23014, 'twenty-three thousand fourteen'),\n(20079, 89282, 'eighty-nine thousand two hundred eighty-two'),\n(20080, 20917, 'twenty thousand nine hundred seventeen'),\n(20081, 58392, 'fifty-eight thousand three hundred ninety-two'),\n(20082, 14355, 'fourteen thousand three hundred fifty-five'),\n(20083, 29034, 'twenty-nine thousand thirty-four'),\n(20084, 81063, 'eighty-one thousand sixty-three'),\n(20085, 49923, 'forty-nine thousand nine hundred twenty-three'),\n(20086, 48645, 'forty-eight thousand six hundred forty-five'),\n(20087, 59887, 'fifty-nine thousand eight hundred eighty-seven'),\n(20088, 48516, 'forty-eight thousand five hundred sixteen'),\n(20089, 75736, 'seventy-five thousand seven hundred thirty-six'),\n(20090, 9612, 'nine thousand six hundred twelve'),\n(20091, 97975, 'ninety-seven thousand nine hundred seventy-five'),\n(20092, 88628, 'eighty-eight thousand six hundred twenty-eight'),\n(20093, 29287, 'twenty-nine thousand two hundred eighty-seven'),\n(20094, 3449, 'three thousand four hundred forty-nine'),\n(20095, 31607, 'thirty-one thousand six hundred seven'),\n(20096, 73131, 'seventy-three thousand one hundred thirty-one'),\n(20097, 4960, 'four thousand nine hundred sixty'),\n(20098, 14549, 'fourteen thousand five hundred forty-nine'),\n(20099, 40715, 'forty thousand seven hundred fifteen'),\n(20100, 48079, 'forty-eight thousand seventy-nine'),\n(20101, 16078, 'sixteen thousand seventy-eight'),\n(20102, 34676, 'thirty-four thousand six hundred seventy-six'),\n(20103, 63067, 'sixty-three thousand sixty-seven'),\n(20104, 96366, 'ninety-six thousand three hundred sixty-six'),\n(20105, 52984, 'fifty-two thousand nine hundred eighty-four'),\n(20106, 72429, 'seventy-two thousand four hundred twenty-nine'),\n(20107, 48630, 'forty-eight thousand six hundred thirty'),\n(20108, 72547, 'seventy-two thousand five hundred forty-seven'),\n(20109, 48978, 'forty-eight thousand nine hundred seventy-eight'),\n(20110, 99021, 'ninety-nine thousand twenty-one'),\n(20111, 10349, 'ten thousand three hundred forty-nine'),\n(20112, 61108, 'sixty-one thousand one hundred eight'),\n(20113, 19567, 'nineteen thousand five hundred sixty-seven'),\n(20114, 98076, 'ninety-eight thousand seventy-six'),\n(20115, 32649, 'thirty-two thousand six hundred forty-nine'),\n(20116, 89376, 'eighty-nine thousand three hundred seventy-six'),\n(20117, 80259, 'eighty thousand two hundred fifty-nine'),\n(20118, 16508, 'sixteen thousand five hundred eight'),\n(20119, 40664, 'forty thousand six hundred sixty-four'),\n(20120, 64867, 'sixty-four thousand eight hundred sixty-seven'),\n(20121, 29464, 'twenty-nine thousand four hundred sixty-four'),\n(20122, 84123, 'eighty-four thousand one hundred twenty-three'),\n(20123, 10426, 'ten thousand four hundred twenty-six'),\n(20124, 97138, 'ninety-seven thousand one hundred thirty-eight'),\n(20125, 57609, 'fifty-seven thousand six hundred nine'),\n(20126, 68905, 'sixty-eight thousand nine hundred five'),\n(20127, 88566, 'eighty-eight thousand five hundred sixty-six'),\n(20128, 73735, 'seventy-three thousand seven hundred thirty-five'),\n(20129, 84373, 'eighty-four thousand three hundred seventy-three'),\n(20130, 23240, 'twenty-three thousand two hundred forty'),\n(20131, 39150, 'thirty-nine thousand one hundred fifty'),\n(20132, 28464, 'twenty-eight thousand four hundred sixty-four'),\n(20133, 84955, 'eighty-four thousand nine hundred fifty-five'),\n(20134, 32704, 'thirty-two thousand seven hundred four'),\n(20135, 22677, 'twenty-two thousand six hundred seventy-seven'),\n(20136, 65463, 'sixty-five thousand four hundred sixty-three'),\n(20137, 9486, 'nine thousand four hundred eighty-six'),\n(20138, 13158, 'thirteen thousand one hundred fifty-eight'),\n(20139, 91570, 'ninety-one thousand five hundred seventy'),\n(20140, 43322, 'forty-three thousand three hundred twenty-two'),\n(20141, 88949, 'eighty-eight thousand nine hundred forty-nine'),\n(20142, 78149, 'seventy-eight thousand one hundred forty-nine'),\n(20143, 72529, 'seventy-two thousand five hundred twenty-nine'),\n(20144, 3711, 'three thousand seven hundred eleven'),\n(20145, 8649, 'eight thousand six hundred forty-nine'),\n(20146, 23426, 'twenty-three thousand four hundred twenty-six'),\n(20147, 34679, 'thirty-four thousand six hundred seventy-nine'),\n(20148, 81451, 'eighty-one thousand four hundred fifty-one'),\n(20149, 98709, 'ninety-eight thousand seven hundred nine'),\n(20150, 90607, 'ninety thousand six hundred seven'),\n(20151, 22375, 'twenty-two thousand three hundred seventy-five'),\n(20152, 8602, 'eight thousand six hundred two'),\n(20153, 42276, 'forty-two thousand two hundred seventy-six'),\n(20154, 52226, 'fifty-two thousand two hundred twenty-six'),\n(20155, 34057, 'thirty-four thousand fifty-seven'),\n(20156, 20944, 'twenty thousand nine hundred forty-four'),\n(20157, 29028, 'twenty-nine thousand twenty-eight'),\n(20158, 4897, 'four thousand eight hundred ninety-seven'),\n(20159, 81555, 'eighty-one thousand five hundred fifty-five'),\n(20160, 6222, 'six thousand two hundred twenty-two'),\n(20161, 34985, 'thirty-four thousand nine hundred eighty-five'),\n(20162, 26548, 'twenty-six thousand five hundred forty-eight'),\n(20163, 74916, 'seventy-four thousand nine hundred sixteen'),\n(20164, 97934, 'ninety-seven thousand nine hundred thirty-four'),\n(20165, 27026, 'twenty-seven thousand twenty-six'),\n(20166, 11742, 'eleven thousand seven hundred forty-two'),\n(20167, 1714, 'one thousand seven hundred fourteen'),\n(20168, 49035, 'forty-nine thousand thirty-five'),\n(20169, 51243, 'fifty-one thousand two hundred forty-three'),\n(20170, 66148, 'sixty-six thousand one hundred forty-eight'),\n(20171, 89710, 'eighty-nine thousand seven hundred ten'),\n(20172, 54029, 'fifty-four thousand twenty-nine'),\n(20173, 29283, 'twenty-nine thousand two hundred eighty-three'),\n(20174, 48651, 'forty-eight thousand six hundred fifty-one'),\n(20175, 15919, 'fifteen thousand nine hundred nineteen'),\n(20176, 87723, 'eighty-seven thousand seven hundred twenty-three'),\n(20177, 68795, 'sixty-eight thousand seven hundred ninety-five'),\n(20178, 67533, 'sixty-seven thousand five hundred thirty-three'),\n(20179, 80581, 'eighty thousand five hundred eighty-one'),\n(20180, 30384, 'thirty thousand three hundred eighty-four'),\n(20181, 45186, 'forty-five thousand one hundred eighty-six'),\n(20182, 67694, 'sixty-seven thousand six hundred ninety-four'),\n(20183, 29585, 'twenty-nine thousand five hundred eighty-five'),\n(20184, 34755, 'thirty-four thousand seven hundred fifty-five'),\n(20185, 72418, 'seventy-two thousand four hundred eighteen'),\n(20186, 87034, 'eighty-seven thousand thirty-four'),\n(20187, 84495, 'eighty-four thousand four hundred ninety-five'),\n(20188, 97624, 'ninety-seven thousand six hundred twenty-four'),\n(20189, 869, 'eight hundred sixty-nine'),\n(20190, 90134, 'ninety thousand one hundred thirty-four'),\n(20191, 47882, 'forty-seven thousand eight hundred eighty-two'),\n(20192, 14472, 'fourteen thousand four hundred seventy-two'),\n(20193, 39259, 'thirty-nine thousand two hundred fifty-nine'),\n(20194, 73963, 'seventy-three thousand nine hundred sixty-three'),\n(20195, 67132, 'sixty-seven thousand one hundred thirty-two'),\n(20196, 49969, 'forty-nine thousand nine hundred sixty-nine'),\n(20197, 77803, 'seventy-seven thousand eight hundred three'),\n(20198, 45476, 'forty-five thousand four hundred seventy-six'),\n(20199, 8426, 'eight thousand four hundred twenty-six'),\n(20200, 21633, 'twenty-one thousand six hundred thirty-three'),\n(20201, 69279, 'sixty-nine thousand two hundred seventy-nine'),\n(20202, 27395, 'twenty-seven thousand three hundred ninety-five'),\n(20203, 97795, 'ninety-seven thousand seven hundred ninety-five'),\n(20204, 30638, 'thirty thousand six hundred thirty-eight'),\n(20205, 49290, 'forty-nine thousand two hundred ninety'),\n(20206, 56915, 'fifty-six thousand nine hundred fifteen'),\n(20207, 44696, 'forty-four thousand six hundred ninety-six'),\n(20208, 14745, 'fourteen thousand seven hundred forty-five'),\n(20209, 92913, 'ninety-two thousand nine hundred thirteen'),\n(20210, 37422, 'thirty-seven thousand four hundred twenty-two'),\n(20211, 65899, 'sixty-five thousand eight hundred ninety-nine'),\n(20212, 71968, 'seventy-one thousand nine hundred sixty-eight'),\n(20213, 89164, 'eighty-nine thousand one hundred sixty-four'),\n(20214, 66721, 'sixty-six thousand seven hundred twenty-one'),\n(20215, 62756, 'sixty-two thousand seven hundred fifty-six'),\n(20216, 83207, 'eighty-three thousand two hundred seven'),\n(20217, 4913, 'four thousand nine hundred thirteen'),\n(20218, 49123, 'forty-nine thousand one hundred twenty-three'),\n(20219, 69819, 'sixty-nine thousand eight hundred nineteen'),\n(20220, 70861, 'seventy thousand eight hundred sixty-one'),\n(20221, 14788, 'fourteen thousand seven hundred eighty-eight'),\n(20222, 27661, 'twenty-seven thousand six hundred sixty-one'),\n(20223, 31164, 'thirty-one thousand one hundred sixty-four'),\n(20224, 85828, 'eighty-five thousand eight hundred twenty-eight'),\n(20225, 54919, 'fifty-four thousand nine hundred nineteen'),\n(20226, 98642, 'ninety-eight thousand six hundred forty-two'),\n(20227, 63960, 'sixty-three thousand nine hundred sixty'),\n(20228, 69879, 'sixty-nine thousand eight hundred seventy-nine'),\n(20229, 88180, 'eighty-eight thousand one hundred eighty'),\n(20230, 10061, 'ten thousand sixty-one'),\n(20231, 44878, 'forty-four thousand eight hundred seventy-eight'),\n(20232, 5789, 'five thousand seven hundred eighty-nine'),\n(20233, 10630, 'ten thousand six hundred thirty'),\n(20234, 92864, 'ninety-two thousand eight hundred sixty-four'),\n(20235, 71520, 'seventy-one thousand five hundred twenty'),\n(20236, 59113, 'fifty-nine thousand one hundred thirteen'),\n(20237, 55590, 'fifty-five thousand five hundred ninety'),\n(20238, 41222, 'forty-one thousand two hundred twenty-two'),\n(20239, 27480, 'twenty-seven thousand four hundred eighty'),\n(20240, 50519, 'fifty thousand five hundred nineteen'),\n(20241, 94614, 'ninety-four thousand six hundred fourteen'),\n(20242, 57474, 'fifty-seven thousand four hundred seventy-four'),\n(20243, 67847, 'sixty-seven thousand eight hundred forty-seven'),\n(20244, 31556, 'thirty-one thousand five hundred fifty-six'),\n(20245, 90532, 'ninety thousand five hundred thirty-two'),\n(20246, 69260, 'sixty-nine thousand two hundred sixty'),\n(20247, 48035, 'forty-eight thousand thirty-five'),\n(20248, 73504, 'seventy-three thousand five hundred four'),\n(20249, 78185, 'seventy-eight thousand one hundred eighty-five'),\n(20250, 40349, 'forty thousand three hundred forty-nine'),\n(20251, 74600, 'seventy-four thousand six hundred'),\n(20252, 47483, 'forty-seven thousand four hundred eighty-three'),\n(20253, 87093, 'eighty-seven thousand ninety-three'),\n(20254, 99883, 'ninety-nine thousand eight hundred eighty-three'),\n(20255, 8908, 'eight thousand nine hundred eight'),\n(20256, 18853, 'eighteen thousand eight hundred fifty-three'),\n(20257, 19762, 'nineteen thousand seven hundred sixty-two'),\n(20258, 7302, 'seven thousand three hundred two'),\n(20259, 59806, 'fifty-nine thousand eight hundred six'),\n(20260, 59271, 'fifty-nine thousand two hundred seventy-one'),\n(20261, 45947, 'forty-five thousand nine hundred forty-seven'),\n(20262, 1535, 'one thousand five hundred thirty-five'),\n(20263, 17297, 'seventeen thousand two hundred ninety-seven'),\n(20264, 71649, 'seventy-one thousand six hundred forty-nine'),\n(20265, 30445, 'thirty thousand four hundred forty-five'),\n(20266, 18312, 'eighteen thousand three hundred twelve'),\n(20267, 12690, 'twelve thousand six hundred ninety'),\n(20268, 24478, 'twenty-four thousand four hundred seventy-eight'),\n(20269, 66395, 'sixty-six thousand three hundred ninety-five'),\n(20270, 78133, 'seventy-eight thousand one hundred thirty-three'),\n(20271, 93571, 'ninety-three thousand five hundred seventy-one'),\n(20272, 31625, 'thirty-one thousand six hundred twenty-five'),\n(20273, 90725, 'ninety thousand seven hundred twenty-five'),\n(20274, 62907, 'sixty-two thousand nine hundred seven'),\n(20275, 58476, 'fifty-eight thousand four hundred seventy-six'),\n(20276, 67476, 'sixty-seven thousand four hundred seventy-six'),\n(20277, 33733, 'thirty-three thousand seven hundred thirty-three'),\n(20278, 87036, 'eighty-seven thousand thirty-six'),\n(20279, 58642, 'fifty-eight thousand six hundred forty-two'),\n(20280, 32142, 'thirty-two thousand one hundred forty-two'),\n(20281, 20472, 'twenty thousand four hundred seventy-two'),\n(20282, 76455, 'seventy-six thousand four hundred fifty-five'),\n(20283, 66648, 'sixty-six thousand six hundred forty-eight'),\n(20284, 19122, 'nineteen thousand one hundred twenty-two'),\n(20285, 49942, 'forty-nine thousand nine hundred forty-two'),\n(20286, 54128, 'fifty-four thousand one hundred twenty-eight'),\n(20287, 76092, 'seventy-six thousand ninety-two'),\n(20288, 51461, 'fifty-one thousand four hundred sixty-one'),\n(20289, 92708, 'ninety-two thousand seven hundred eight'),\n(20290, 41224, 'forty-one thousand two hundred twenty-four'),\n(20291, 50772, 'fifty thousand seven hundred seventy-two'),\n(20292, 25478, 'twenty-five thousand four hundred seventy-eight'),\n(20293, 11329, 'eleven thousand three hundred twenty-nine'),\n(20294, 68580, 'sixty-eight thousand five hundred eighty'),\n(20295, 58527, 'fifty-eight thousand five hundred twenty-seven'),\n(20296, 307, 'three hundred seven'),\n(20297, 95577, 'ninety-five thousand five hundred seventy-seven'),\n(20298, 99602, 'ninety-nine thousand six hundred two'),\n(20299, 74371, 'seventy-four thousand three hundred seventy-one'),\n(20300, 77802, 'seventy-seven thousand eight hundred two'),\n(20301, 14037, 'fourteen thousand thirty-seven'),\n(20302, 65270, 'sixty-five thousand two hundred seventy'),\n(20303, 83992, 'eighty-three thousand nine hundred ninety-two'),\n(20304, 88705, 'eighty-eight thousand seven hundred five'),\n(20305, 65671, 'sixty-five thousand six hundred seventy-one'),\n(20306, 13563, 'thirteen thousand five hundred sixty-three'),\n(20307, 75158, 'seventy-five thousand one hundred fifty-eight'),\n(20308, 32068, 'thirty-two thousand sixty-eight'),\n(20309, 64761, 'sixty-four thousand seven hundred sixty-one'),\n(20310, 30331, 'thirty thousand three hundred thirty-one'),\n(20311, 40, 'forty'),\n(20312, 44317, 'forty-four thousand three hundred seventeen'),\n(20313, 17848, 'seventeen thousand eight hundred forty-eight'),\n(20314, 51395, 'fifty-one thousand three hundred ninety-five'),\n(20315, 87078, 'eighty-seven thousand seventy-eight'),\n(20316, 73363, 'seventy-three thousand three hundred sixty-three'),\n(20317, 97750, 'ninety-seven thousand seven hundred fifty'),\n(20318, 64435, 'sixty-four thousand four hundred thirty-five'),\n(20319, 90450, 'ninety thousand four hundred fifty'),\n(20320, 75574, 'seventy-five thousand five hundred seventy-four'),\n(20321, 19960, 'nineteen thousand nine hundred sixty'),\n(20322, 74593, 'seventy-four thousand five hundred ninety-three'),\n(20323, 49745, 'forty-nine thousand seven hundred forty-five'),\n(20324, 44849, 'forty-four thousand eight hundred forty-nine'),\n(20325, 30015, 'thirty thousand fifteen'),\n(20326, 78545, 'seventy-eight thousand five hundred forty-five'),\n(20327, 78699, 'seventy-eight thousand six hundred ninety-nine'),\n(20328, 70392, 'seventy thousand three hundred ninety-two'),\n(20329, 21027, 'twenty-one thousand twenty-seven'),\n(20330, 77562, 'seventy-seven thousand five hundred sixty-two'),\n(20331, 11036, 'eleven thousand thirty-six'),\n(20332, 68284, 'sixty-eight thousand two hundred eighty-four'),\n(20333, 49430, 'forty-nine thousand four hundred thirty'),\n(20334, 96756, 'ninety-six thousand seven hundred fifty-six'),\n(20335, 10476, 'ten thousand four hundred seventy-six'),\n(20336, 3721, 'three thousand seven hundred twenty-one'),\n(20337, 87464, 'eighty-seven thousand four hundred sixty-four'),\n(20338, 86393, 'eighty-six thousand three hundred ninety-three'),\n(20339, 12371, 'twelve thousand three hundred seventy-one'),\n(20340, 31432, 'thirty-one thousand four hundred thirty-two'),\n(20341, 18890, 'eighteen thousand eight hundred ninety'),\n(20342, 25999, 'twenty-five thousand nine hundred ninety-nine'),\n(20343, 30466, 'thirty thousand four hundred sixty-six'),\n(20344, 23117, 'twenty-three thousand one hundred seventeen'),\n(20345, 54760, 'fifty-four thousand seven hundred sixty'),\n(20346, 50415, 'fifty thousand four hundred fifteen'),\n(20347, 41057, 'forty-one thousand fifty-seven'),\n(20348, 71802, 'seventy-one thousand eight hundred two'),\n(20349, 51995, 'fifty-one thousand nine hundred ninety-five'),\n(20350, 16583, 'sixteen thousand five hundred eighty-three'),\n(20351, 89543, 'eighty-nine thousand five hundred forty-three'),\n(20352, 13374, 'thirteen thousand three hundred seventy-four'),\n(20353, 66932, 'sixty-six thousand nine hundred thirty-two'),\n(20354, 99473, 'ninety-nine thousand four hundred seventy-three'),\n(20355, 48022, 'forty-eight thousand twenty-two'),\n(20356, 75867, 'seventy-five thousand eight hundred sixty-seven'),\n(20357, 61328, 'sixty-one thousand three hundred twenty-eight'),\n(20358, 79963, 'seventy-nine thousand nine hundred sixty-three'),\n(20359, 19830, 'nineteen thousand eight hundred thirty'),\n(20360, 19382, 'nineteen thousand three hundred eighty-two'),\n(20361, 93361, 'ninety-three thousand three hundred sixty-one'),\n(20362, 3755, 'three thousand seven hundred fifty-five'),\n(20363, 62155, 'sixty-two thousand one hundred fifty-five'),\n(20364, 23116, 'twenty-three thousand one hundred sixteen'),\n(20365, 37229, 'thirty-seven thousand two hundred twenty-nine'),\n(20366, 33044, 'thirty-three thousand forty-four'),\n(20367, 90842, 'ninety thousand eight hundred forty-two'),\n(20368, 41054, 'forty-one thousand fifty-four'),\n(20369, 1813, 'one thousand eight hundred thirteen'),\n(20370, 73985, 'seventy-three thousand nine hundred eighty-five'),\n(20371, 43705, 'forty-three thousand seven hundred five'),\n(20372, 71838, 'seventy-one thousand eight hundred thirty-eight'),\n(20373, 84602, 'eighty-four thousand six hundred two'),\n(20374, 29630, 'twenty-nine thousand six hundred thirty'),\n(20375, 52846, 'fifty-two thousand eight hundred forty-six'),\n(20376, 92741, 'ninety-two thousand seven hundred forty-one'),\n(20377, 33094, 'thirty-three thousand ninety-four'),\n(20378, 76200, 'seventy-six thousand two hundred'),\n(20379, 65338, 'sixty-five thousand three hundred thirty-eight'),\n(20380, 92689, 'ninety-two thousand six hundred eighty-nine'),\n(20381, 85493, 'eighty-five thousand four hundred ninety-three'),\n(20382, 91242, 'ninety-one thousand two hundred forty-two'),\n(20383, 37067, 'thirty-seven thousand sixty-seven'),\n(20384, 24548, 'twenty-four thousand five hundred forty-eight'),\n(20385, 20168, 'twenty thousand one hundred sixty-eight'),\n(20386, 89279, 'eighty-nine thousand two hundred seventy-nine'),\n(20387, 44857, 'forty-four thousand eight hundred fifty-seven'),\n(20388, 84475, 'eighty-four thousand four hundred seventy-five'),\n(20389, 48457, 'forty-eight thousand four hundred fifty-seven'),\n(20390, 15727, 'fifteen thousand seven hundred twenty-seven'),\n(20391, 89829, 'eighty-nine thousand eight hundred twenty-nine'),\n(20392, 97082, 'ninety-seven thousand eighty-two'),\n(20393, 4575, 'four thousand five hundred seventy-five'),\n(20394, 76311, 'seventy-six thousand three hundred eleven'),\n(20395, 13414, 'thirteen thousand four hundred fourteen'),\n(20396, 44200, 'forty-four thousand two hundred'),\n(20397, 18718, 'eighteen thousand seven hundred eighteen'),\n(20398, 14587, 'fourteen thousand five hundred eighty-seven'),\n(20399, 99840, 'ninety-nine thousand eight hundred forty'),\n(20400, 14243, 'fourteen thousand two hundred forty-three'),\n(20401, 84287, 'eighty-four thousand two hundred eighty-seven'),\n(20402, 9289, 'nine thousand two hundred eighty-nine'),\n(20403, 10957, 'ten thousand nine hundred fifty-seven'),\n(20404, 85839, 'eighty-five thousand eight hundred thirty-nine'),\n(20405, 44002, 'forty-four thousand two'),\n(20406, 54719, 'fifty-four thousand seven hundred nineteen'),\n(20407, 16367, 'sixteen thousand three hundred sixty-seven'),\n(20408, 20067, 'twenty thousand sixty-seven'),\n(20409, 11614, 'eleven thousand six hundred fourteen'),\n(20410, 71523, 'seventy-one thousand five hundred twenty-three'),\n(20411, 2749, 'two thousand seven hundred forty-nine'),\n(20412, 13229, 'thirteen thousand two hundred twenty-nine'),\n(20413, 98086, 'ninety-eight thousand eighty-six'),\n(20414, 46089, 'forty-six thousand eighty-nine'),\n(20415, 10941, 'ten thousand nine hundred forty-one'),\n(20416, 93739, 'ninety-three thousand seven hundred thirty-nine'),\n(20417, 35974, 'thirty-five thousand nine hundred seventy-four'),\n(20418, 4226, 'four thousand two hundred twenty-six'),\n(20419, 37640, 'thirty-seven thousand six hundred forty'),\n(20420, 29326, 'twenty-nine thousand three hundred twenty-six'),\n(20421, 99948, 'ninety-nine thousand nine hundred forty-eight'),\n(20422, 51704, 'fifty-one thousand seven hundred four'),\n(20423, 32392, 'thirty-two thousand three hundred ninety-two'),\n(20424, 33479, 'thirty-three thousand four hundred seventy-nine'),\n(20425, 46703, 'forty-six thousand seven hundred three'),\n(20426, 35829, 'thirty-five thousand eight hundred twenty-nine'),\n(20427, 88969, 'eighty-eight thousand nine hundred sixty-nine'),\n(20428, 9725, 'nine thousand seven hundred twenty-five'),\n(20429, 29151, 'twenty-nine thousand one hundred fifty-one'),\n(20430, 3867, 'three thousand eight hundred sixty-seven'),\n(20431, 6469, 'six thousand four hundred sixty-nine'),\n(20432, 32910, 'thirty-two thousand nine hundred ten'),\n(20433, 61884, 'sixty-one thousand eight hundred eighty-four'),\n(20434, 5513, 'five thousand five hundred thirteen'),\n(20435, 19049, 'nineteen thousand forty-nine'),\n(20436, 26063, 'twenty-six thousand sixty-three'),\n(20437, 48597, 'forty-eight thousand five hundred ninety-seven'),\n(20438, 51750, 'fifty-one thousand seven hundred fifty'),\n(20439, 12557, 'twelve thousand five hundred fifty-seven'),\n(20440, 13770, 'thirteen thousand seven hundred seventy'),\n(20441, 46516, 'forty-six thousand five hundred sixteen'),\n(20442, 51217, 'fifty-one thousand two hundred seventeen'),\n(20443, 17935, 'seventeen thousand nine hundred thirty-five'),\n(20444, 8078, 'eight thousand seventy-eight'),\n(20445, 43565, 'forty-three thousand five hundred sixty-five'),\n(20446, 72524, 'seventy-two thousand five hundred twenty-four'),\n(20447, 59901, 'fifty-nine thousand nine hundred one'),\n(20448, 59402, 'fifty-nine thousand four hundred two'),\n(20449, 78458, 'seventy-eight thousand four hundred fifty-eight'),\n(20450, 64109, 'sixty-four thousand one hundred nine'),\n(20451, 79973, 'seventy-nine thousand nine hundred seventy-three'),\n(20452, 62417, 'sixty-two thousand four hundred seventeen'),\n(20453, 78484, 'seventy-eight thousand four hundred eighty-four'),\n(20454, 9569, 'nine thousand five hundred sixty-nine'),\n(20455, 15794, 'fifteen thousand seven hundred ninety-four'),\n(20456, 16175, 'sixteen thousand one hundred seventy-five'),\n(20457, 15906, 'fifteen thousand nine hundred six'),\n(20458, 79140, 'seventy-nine thousand one hundred forty'),\n(20459, 96082, 'ninety-six thousand eighty-two'),\n(20460, 44463, 'forty-four thousand four hundred sixty-three'),\n(20461, 50305, 'fifty thousand three hundred five'),\n(20462, 79389, 'seventy-nine thousand three hundred eighty-nine'),\n(20463, 41931, 'forty-one thousand nine hundred thirty-one'),\n(20464, 76179, 'seventy-six thousand one hundred seventy-nine'),\n(20465, 713, 'seven hundred thirteen'),\n(20466, 61012, 'sixty-one thousand twelve'),\n(20467, 25827, 'twenty-five thousand eight hundred twenty-seven'),\n(20468, 549, 'five hundred forty-nine'),\n(20469, 41269, 'forty-one thousand two hundred sixty-nine'),\n(20470, 72172, 'seventy-two thousand one hundred seventy-two'),\n(20471, 89382, 'eighty-nine thousand three hundred eighty-two'),\n(20472, 37601, 'thirty-seven thousand six hundred one'),\n(20473, 16979, 'sixteen thousand nine hundred seventy-nine'),\n(20474, 76345, 'seventy-six thousand three hundred forty-five'),\n(20475, 37696, 'thirty-seven thousand six hundred ninety-six'),\n(20476, 74669, 'seventy-four thousand six hundred sixty-nine'),\n(20477, 696, 'six hundred ninety-six'),\n(20478, 19249, 'nineteen thousand two hundred forty-nine'),\n(20479, 9849, 'nine thousand eight hundred forty-nine'),\n(20480, 31551, 'thirty-one thousand five hundred fifty-one'),\n(20481, 74125, 'seventy-four thousand one hundred twenty-five'),\n(20482, 16960, 'sixteen thousand nine hundred sixty'),\n(20483, 30364, 'thirty thousand three hundred sixty-four'),\n(20484, 72335, 'seventy-two thousand three hundred thirty-five'),\n(20485, 94878, 'ninety-four thousand eight hundred seventy-eight'),\n(20486, 92301, 'ninety-two thousand three hundred one'),\n(20487, 60978, 'sixty thousand nine hundred seventy-eight'),\n(20488, 69767, 'sixty-nine thousand seven hundred sixty-seven'),\n(20489, 13933, 'thirteen thousand nine hundred thirty-three'),\n(20490, 33212, 'thirty-three thousand two hundred twelve'),\n(20491, 90390, 'ninety thousand three hundred ninety'),\n(20492, 30667, 'thirty thousand six hundred sixty-seven'),\n(20493, 87652, 'eighty-seven thousand six hundred fifty-two'),\n(20494, 31049, 'thirty-one thousand forty-nine'),\n(20495, 59932, 'fifty-nine thousand nine hundred thirty-two'),\n(20496, 68922, 'sixty-eight thousand nine hundred twenty-two'),\n(20497, 12761, 'twelve thousand seven hundred sixty-one'),\n(20498, 81110, 'eighty-one thousand one hundred ten'),\n(20499, 22859, 'twenty-two thousand eight hundred fifty-nine'),\n(20500, 67753, 'sixty-seven thousand seven hundred fifty-three'),\n(20501, 61919, 'sixty-one thousand nine hundred nineteen'),\n(20502, 97152, 'ninety-seven thousand one hundred fifty-two'),\n(20503, 41109, 'forty-one thousand one hundred nine'),\n(20504, 83430, 'eighty-three thousand four hundred thirty'),\n(20505, 9429, 'nine thousand four hundred twenty-nine'),\n(20506, 8447, 'eight thousand four hundred forty-seven'),\n(20507, 91117, 'ninety-one thousand one hundred seventeen'),\n(20508, 99719, 'ninety-nine thousand seven hundred nineteen'),\n(20509, 11446, 'eleven thousand four hundred forty-six'),\n(20510, 16205, 'sixteen thousand two hundred five'),\n(20511, 63051, 'sixty-three thousand fifty-one'),\n(20512, 58773, 'fifty-eight thousand seven hundred seventy-three'),\n(20513, 81836, 'eighty-one thousand eight hundred thirty-six'),\n(20514, 17045, 'seventeen thousand forty-five'),\n(20515, 91505, 'ninety-one thousand five hundred five'),\n(20516, 48991, 'forty-eight thousand nine hundred ninety-one'),\n(20517, 44459, 'forty-four thousand four hundred fifty-nine'),\n(20518, 58453, 'fifty-eight thousand four hundred fifty-three'),\n(20519, 70909, 'seventy thousand nine hundred nine'),\n(20520, 60103, 'sixty thousand one hundred three'),\n(20521, 54991, 'fifty-four thousand nine hundred ninety-one'),\n(20522, 16708, 'sixteen thousand seven hundred eight'),\n(20523, 17403, 'seventeen thousand four hundred three'),\n(20524, 9083, 'nine thousand eighty-three'),\n(20525, 20340, 'twenty thousand three hundred forty'),\n(20526, 93037, 'ninety-three thousand thirty-seven'),\n(20527, 7600, 'seven thousand six hundred'),\n(20528, 86450, 'eighty-six thousand four hundred fifty'),\n(20529, 84867, 'eighty-four thousand eight hundred sixty-seven'),\n(20530, 61092, 'sixty-one thousand ninety-two'),\n(20531, 24401, 'twenty-four thousand four hundred one'),\n(20532, 96588, 'ninety-six thousand five hundred eighty-eight'),\n(20533, 97549, 'ninety-seven thousand five hundred forty-nine'),\n(20534, 32355, 'thirty-two thousand three hundred fifty-five'),\n(20535, 71714, 'seventy-one thousand seven hundred fourteen'),\n(20536, 72398, 'seventy-two thousand three hundred ninety-eight'),\n(20537, 18156, 'eighteen thousand one hundred fifty-six'),\n(20538, 98605, 'ninety-eight thousand six hundred five'),\n(20539, 61579, 'sixty-one thousand five hundred seventy-nine'),\n(20540, 32126, 'thirty-two thousand one hundred twenty-six'),\n(20541, 31859, 'thirty-one thousand eight hundred fifty-nine'),\n(20542, 17709, 'seventeen thousand seven hundred nine'),\n(20543, 21756, 'twenty-one thousand seven hundred fifty-six'),\n(20544, 94866, 'ninety-four thousand eight hundred sixty-six'),\n(20545, 43968, 'forty-three thousand nine hundred sixty-eight'),\n(20546, 43551, 'forty-three thousand five hundred fifty-one'),\n(20547, 19538, 'nineteen thousand five hundred thirty-eight'),\n(20548, 49633, 'forty-nine thousand six hundred thirty-three'),\n(20549, 62508, 'sixty-two thousand five hundred eight'),\n(20550, 80371, 'eighty thousand three hundred seventy-one'),\n(20551, 22064, 'twenty-two thousand sixty-four'),\n(20552, 25577, 'twenty-five thousand five hundred seventy-seven'),\n(20553, 93125, 'ninety-three thousand one hundred twenty-five'),\n(20554, 44459, 'forty-four thousand four hundred fifty-nine'),\n(20555, 81909, 'eighty-one thousand nine hundred nine'),\n(20556, 44403, 'forty-four thousand four hundred three'),\n(20557, 16111, 'sixteen thousand one hundred eleven'),\n(20558, 66724, 'sixty-six thousand seven hundred twenty-four'),\n(20559, 29464, 'twenty-nine thousand four hundred sixty-four'),\n(20560, 82143, 'eighty-two thousand one hundred forty-three'),\n(20561, 32352, 'thirty-two thousand three hundred fifty-two'),\n(20562, 26542, 'twenty-six thousand five hundred forty-two'),\n(20563, 19247, 'nineteen thousand two hundred forty-seven'),\n(20564, 85640, 'eighty-five thousand six hundred forty'),\n(20565, 43306, 'forty-three thousand three hundred six'),\n(20566, 3101, 'three thousand one hundred one'),\n(20567, 93085, 'ninety-three thousand eighty-five'),\n(20568, 53939, 'fifty-three thousand nine hundred thirty-nine'),\n(20569, 90044, 'ninety thousand forty-four'),\n(20570, 89458, 'eighty-nine thousand four hundred fifty-eight'),\n(20571, 81200, 'eighty-one thousand two hundred'),\n(20572, 83993, 'eighty-three thousand nine hundred ninety-three'),\n(20573, 21213, 'twenty-one thousand two hundred thirteen'),\n(20574, 92381, 'ninety-two thousand three hundred eighty-one'),\n(20575, 27559, 'twenty-seven thousand five hundred fifty-nine'),\n(20576, 25835, 'twenty-five thousand eight hundred thirty-five'),\n(20577, 90657, 'ninety thousand six hundred fifty-seven'),\n(20578, 55662, 'fifty-five thousand six hundred sixty-two'),\n(20579, 77858, 'seventy-seven thousand eight hundred fifty-eight'),\n(20580, 98751, 'ninety-eight thousand seven hundred fifty-one'),\n(20581, 34780, 'thirty-four thousand seven hundred eighty'),\n(20582, 12787, 'twelve thousand seven hundred eighty-seven'),\n(20583, 11822, 'eleven thousand eight hundred twenty-two'),\n(20584, 48995, 'forty-eight thousand nine hundred ninety-five'),\n(20585, 47788, 'forty-seven thousand seven hundred eighty-eight'),\n(20586, 93536, 'ninety-three thousand five hundred thirty-six'),\n(20587, 12965, 'twelve thousand nine hundred sixty-five'),\n(20588, 26793, 'twenty-six thousand seven hundred ninety-three'),\n(20589, 52086, 'fifty-two thousand eighty-six'),\n(20590, 68691, 'sixty-eight thousand six hundred ninety-one'),\n(20591, 38386, 'thirty-eight thousand three hundred eighty-six'),\n(20592, 45715, 'forty-five thousand seven hundred fifteen'),\n(20593, 60670, 'sixty thousand six hundred seventy'),\n(20594, 42106, 'forty-two thousand one hundred six'),\n(20595, 67586, 'sixty-seven thousand five hundred eighty-six'),\n(20596, 78811, 'seventy-eight thousand eight hundred eleven'),\n(20597, 4821, 'four thousand eight hundred twenty-one'),\n(20598, 82827, 'eighty-two thousand eight hundred twenty-seven'),\n(20599, 30627, 'thirty thousand six hundred twenty-seven'),\n(20600, 68266, 'sixty-eight thousand two hundred sixty-six'),\n(20601, 10003, 'ten thousand three'),\n(20602, 34100, 'thirty-four thousand one hundred'),\n(20603, 51631, 'fifty-one thousand six hundred thirty-one'),\n(20604, 33292, 'thirty-three thousand two hundred ninety-two'),\n(20605, 20293, 'twenty thousand two hundred ninety-three'),\n(20606, 65053, 'sixty-five thousand fifty-three'),\n(20607, 52574, 'fifty-two thousand five hundred seventy-four'),\n(20608, 22853, 'twenty-two thousand eight hundred fifty-three'),\n(20609, 85257, 'eighty-five thousand two hundred fifty-seven'),\n(20610, 9757, 'nine thousand seven hundred fifty-seven'),\n(20611, 19062, 'nineteen thousand sixty-two'),\n(20612, 76393, 'seventy-six thousand three hundred ninety-three'),\n(20613, 1638, 'one thousand six hundred thirty-eight'),\n(20614, 73224, 'seventy-three thousand two hundred twenty-four'),\n(20615, 11868, 'eleven thousand eight hundred sixty-eight'),\n(20616, 37770, 'thirty-seven thousand seven hundred seventy'),\n(20617, 43848, 'forty-three thousand eight hundred forty-eight'),\n(20618, 46578, 'forty-six thousand five hundred seventy-eight'),\n(20619, 55498, 'fifty-five thousand four hundred ninety-eight'),\n(20620, 67263, 'sixty-seven thousand two hundred sixty-three'),\n(20621, 39353, 'thirty-nine thousand three hundred fifty-three'),\n(20622, 68732, 'sixty-eight thousand seven hundred thirty-two'),\n(20623, 95702, 'ninety-five thousand seven hundred two'),\n(20624, 10960, 'ten thousand nine hundred sixty'),\n(20625, 54874, 'fifty-four thousand eight hundred seventy-four'),\n(20626, 44253, 'forty-four thousand two hundred fifty-three'),\n(20627, 60069, 'sixty thousand sixty-nine'),\n(20628, 55331, 'fifty-five thousand three hundred thirty-one'),\n(20629, 59255, 'fifty-nine thousand two hundred fifty-five'),\n(20630, 77786, 'seventy-seven thousand seven hundred eighty-six'),\n(20631, 18752, 'eighteen thousand seven hundred fifty-two'),\n(20632, 71980, 'seventy-one thousand nine hundred eighty'),\n(20633, 18353, 'eighteen thousand three hundred fifty-three'),\n(20634, 86345, 'eighty-six thousand three hundred forty-five'),\n(20635, 6872, 'six thousand eight hundred seventy-two'),\n(20636, 96741, 'ninety-six thousand seven hundred forty-one'),\n(20637, 18832, 'eighteen thousand eight hundred thirty-two'),\n(20638, 60925, 'sixty thousand nine hundred twenty-five'),\n(20639, 14442, 'fourteen thousand four hundred forty-two'),\n(20640, 40773, 'forty thousand seven hundred seventy-three'),\n(20641, 32332, 'thirty-two thousand three hundred thirty-two'),\n(20642, 14262, 'fourteen thousand two hundred sixty-two'),\n(20643, 23154, 'twenty-three thousand one hundred fifty-four'),\n(20644, 77453, 'seventy-seven thousand four hundred fifty-three'),\n(20645, 50006, 'fifty thousand six'),\n(20646, 48892, 'forty-eight thousand eight hundred ninety-two'),\n(20647, 27647, 'twenty-seven thousand six hundred forty-seven'),\n(20648, 97154, 'ninety-seven thousand one hundred fifty-four'),\n(20649, 86498, 'eighty-six thousand four hundred ninety-eight'),\n(20650, 45331, 'forty-five thousand three hundred thirty-one'),\n(20651, 77855, 'seventy-seven thousand eight hundred fifty-five'),\n(20652, 25185, 'twenty-five thousand one hundred eighty-five'),\n(20653, 87726, 'eighty-seven thousand seven hundred twenty-six'),\n(20654, 95122, 'ninety-five thousand one hundred twenty-two'),\n(20655, 31884, 'thirty-one thousand eight hundred eighty-four'),\n(20656, 50322, 'fifty thousand three hundred twenty-two'),\n(20657, 50565, 'fifty thousand five hundred sixty-five'),\n(20658, 72873, 'seventy-two thousand eight hundred seventy-three'),\n(20659, 97283, 'ninety-seven thousand two hundred eighty-three'),\n(20660, 54358, 'fifty-four thousand three hundred fifty-eight'),\n(20661, 13863, 'thirteen thousand eight hundred sixty-three'),\n(20662, 23776, 'twenty-three thousand seven hundred seventy-six'),\n(20663, 78957, 'seventy-eight thousand nine hundred fifty-seven'),\n(20664, 84058, 'eighty-four thousand fifty-eight'),\n(20665, 87005, 'eighty-seven thousand five'),\n(20666, 431, 'four hundred thirty-one'),\n(20667, 17823, 'seventeen thousand eight hundred twenty-three'),\n(20668, 66985, 'sixty-six thousand nine hundred eighty-five'),\n(20669, 49520, 'forty-nine thousand five hundred twenty'),\n(20670, 43160, 'forty-three thousand one hundred sixty'),\n(20671, 4300, 'four thousand three hundred'),\n(20672, 69912, 'sixty-nine thousand nine hundred twelve'),\n(20673, 37963, 'thirty-seven thousand nine hundred sixty-three'),\n(20674, 92299, 'ninety-two thousand two hundred ninety-nine'),\n(20675, 89267, 'eighty-nine thousand two hundred sixty-seven'),\n(20676, 45422, 'forty-five thousand four hundred twenty-two'),\n(20677, 65500, 'sixty-five thousand five hundred'),\n(20678, 29400, 'twenty-nine thousand four hundred'),\n(20679, 8494, 'eight thousand four hundred ninety-four'),\n(20680, 89396, 'eighty-nine thousand three hundred ninety-six'),\n(20681, 11908, 'eleven thousand nine hundred eight'),\n(20682, 55665, 'fifty-five thousand six hundred sixty-five'),\n(20683, 7747, 'seven thousand seven hundred forty-seven'),\n(20684, 74265, 'seventy-four thousand two hundred sixty-five'),\n(20685, 1858, 'one thousand eight hundred fifty-eight'),\n(20686, 50175, 'fifty thousand one hundred seventy-five'),\n(20687, 24678, 'twenty-four thousand six hundred seventy-eight'),\n(20688, 69402, 'sixty-nine thousand four hundred two'),\n(20689, 83445, 'eighty-three thousand four hundred forty-five'),\n(20690, 67624, 'sixty-seven thousand six hundred twenty-four'),\n(20691, 7340, 'seven thousand three hundred forty'),\n(20692, 31104, 'thirty-one thousand one hundred four'),\n(20693, 56268, 'fifty-six thousand two hundred sixty-eight'),\n(20694, 43581, 'forty-three thousand five hundred eighty-one'),\n(20695, 73953, 'seventy-three thousand nine hundred fifty-three'),\n(20696, 64906, 'sixty-four thousand nine hundred six'),\n(20697, 80239, 'eighty thousand two hundred thirty-nine'),\n(20698, 21376, 'twenty-one thousand three hundred seventy-six'),\n(20699, 72485, 'seventy-two thousand four hundred eighty-five'),\n(20700, 32057, 'thirty-two thousand fifty-seven'),\n(20701, 10269, 'ten thousand two hundred sixty-nine'),\n(20702, 29113, 'twenty-nine thousand one hundred thirteen'),\n(20703, 91615, 'ninety-one thousand six hundred fifteen'),\n(20704, 10517, 'ten thousand five hundred seventeen'),\n(20705, 41237, 'forty-one thousand two hundred thirty-seven'),\n(20706, 22845, 'twenty-two thousand eight hundred forty-five'),\n(20707, 5240, 'five thousand two hundred forty'),\n(20708, 20548, 'twenty thousand five hundred forty-eight'),\n(20709, 71854, 'seventy-one thousand eight hundred fifty-four'),\n(20710, 82289, 'eighty-two thousand two hundred eighty-nine'),\n(20711, 10179, 'ten thousand one hundred seventy-nine'),\n(20712, 78783, 'seventy-eight thousand seven hundred eighty-three'),\n(20713, 77833, 'seventy-seven thousand eight hundred thirty-three'),\n(20714, 57407, 'fifty-seven thousand four hundred seven'),\n(20715, 42436, 'forty-two thousand four hundred thirty-six'),\n(20716, 23594, 'twenty-three thousand five hundred ninety-four'),\n(20717, 75767, 'seventy-five thousand seven hundred sixty-seven'),\n(20718, 4036, 'four thousand thirty-six'),\n(20719, 3028, 'three thousand twenty-eight'),\n(20720, 58126, 'fifty-eight thousand one hundred twenty-six'),\n(20721, 26808, 'twenty-six thousand eight hundred eight'),\n(20722, 34599, 'thirty-four thousand five hundred ninety-nine'),\n(20723, 72030, 'seventy-two thousand thirty'),\n(20724, 80484, 'eighty thousand four hundred eighty-four'),\n(20725, 50928, 'fifty thousand nine hundred twenty-eight'),\n(20726, 62459, 'sixty-two thousand four hundred fifty-nine'),\n(20727, 42085, 'forty-two thousand eighty-five'),\n(20728, 94841, 'ninety-four thousand eight hundred forty-one'),\n(20729, 13342, 'thirteen thousand three hundred forty-two'),\n(20730, 18736, 'eighteen thousand seven hundred thirty-six'),\n(20731, 28673, 'twenty-eight thousand six hundred seventy-three'),\n(20732, 12408, 'twelve thousand four hundred eight'),\n(20733, 68696, 'sixty-eight thousand six hundred ninety-six'),\n(20734, 49738, 'forty-nine thousand seven hundred thirty-eight'),\n(20735, 18335, 'eighteen thousand three hundred thirty-five'),\n(20736, 33631, 'thirty-three thousand six hundred thirty-one'),\n(20737, 81244, 'eighty-one thousand two hundred forty-four'),\n(20738, 65037, 'sixty-five thousand thirty-seven'),\n(20739, 40534, 'forty thousand five hundred thirty-four'),\n(20740, 60564, 'sixty thousand five hundred sixty-four'),\n(20741, 91139, 'ninety-one thousand one hundred thirty-nine'),\n(20742, 95676, 'ninety-five thousand six hundred seventy-six'),\n(20743, 69153, 'sixty-nine thousand one hundred fifty-three'),\n(20744, 47813, 'forty-seven thousand eight hundred thirteen'),\n(20745, 9933, 'nine thousand nine hundred thirty-three'),\n(20746, 60633, 'sixty thousand six hundred thirty-three'),\n(20747, 46093, 'forty-six thousand ninety-three'),\n(20748, 33493, 'thirty-three thousand four hundred ninety-three'),\n(20749, 29406, 'twenty-nine thousand four hundred six'),\n(20750, 14327, 'fourteen thousand three hundred twenty-seven'),\n(20751, 18242, 'eighteen thousand two hundred forty-two'),\n(20752, 56308, 'fifty-six thousand three hundred eight'),\n(20753, 17229, 'seventeen thousand two hundred twenty-nine'),\n(20754, 91534, 'ninety-one thousand five hundred thirty-four'),\n(20755, 49420, 'forty-nine thousand four hundred twenty'),\n(20756, 67885, 'sixty-seven thousand eight hundred eighty-five'),\n(20757, 14332, 'fourteen thousand three hundred thirty-two'),\n(20758, 59544, 'fifty-nine thousand five hundred forty-four'),\n(20759, 92431, 'ninety-two thousand four hundred thirty-one'),\n(20760, 69142, 'sixty-nine thousand one hundred forty-two'),\n(20761, 97357, 'ninety-seven thousand three hundred fifty-seven'),\n(20762, 25729, 'twenty-five thousand seven hundred twenty-nine'),\n(20763, 38656, 'thirty-eight thousand six hundred fifty-six'),\n(20764, 87577, 'eighty-seven thousand five hundred seventy-seven'),\n(20765, 55181, 'fifty-five thousand one hundred eighty-one'),\n(20766, 9439, 'nine thousand four hundred thirty-nine'),\n(20767, 45984, 'forty-five thousand nine hundred eighty-four'),\n(20768, 95565, 'ninety-five thousand five hundred sixty-five'),\n(20769, 15160, 'fifteen thousand one hundred sixty'),\n(20770, 20833, 'twenty thousand eight hundred thirty-three'),\n(20771, 74562, 'seventy-four thousand five hundred sixty-two'),\n(20772, 18534, 'eighteen thousand five hundred thirty-four'),\n(20773, 71951, 'seventy-one thousand nine hundred fifty-one'),\n(20774, 12861, 'twelve thousand eight hundred sixty-one'),\n(20775, 56609, 'fifty-six thousand six hundred nine'),\n(20776, 65268, 'sixty-five thousand two hundred sixty-eight'),\n(20777, 56988, 'fifty-six thousand nine hundred eighty-eight'),\n(20778, 57434, 'fifty-seven thousand four hundred thirty-four'),\n(20779, 86747, 'eighty-six thousand seven hundred forty-seven'),\n(20780, 58210, 'fifty-eight thousand two hundred ten'),\n(20781, 38729, 'thirty-eight thousand seven hundred twenty-nine'),\n(20782, 74131, 'seventy-four thousand one hundred thirty-one'),\n(20783, 45052, 'forty-five thousand fifty-two'),\n(20784, 64970, 'sixty-four thousand nine hundred seventy'),\n(20785, 4662, 'four thousand six hundred sixty-two'),\n(20786, 66009, 'sixty-six thousand nine'),\n(20787, 36744, 'thirty-six thousand seven hundred forty-four'),\n(20788, 97665, 'ninety-seven thousand six hundred sixty-five'),\n(20789, 5712, 'five thousand seven hundred twelve'),\n(20790, 60735, 'sixty thousand seven hundred thirty-five'),\n(20791, 98961, 'ninety-eight thousand nine hundred sixty-one'),\n(20792, 64648, 'sixty-four thousand six hundred forty-eight'),\n(20793, 76449, 'seventy-six thousand four hundred forty-nine'),\n(20794, 57372, 'fifty-seven thousand three hundred seventy-two'),\n(20795, 17349, 'seventeen thousand three hundred forty-nine'),\n(20796, 57011, 'fifty-seven thousand eleven'),\n(20797, 51736, 'fifty-one thousand seven hundred thirty-six'),\n(20798, 97584, 'ninety-seven thousand five hundred eighty-four'),\n(20799, 22595, 'twenty-two thousand five hundred ninety-five'),\n(20800, 71976, 'seventy-one thousand nine hundred seventy-six'),\n(20801, 51515, 'fifty-one thousand five hundred fifteen'),\n(20802, 76089, 'seventy-six thousand eighty-nine'),\n(20803, 77060, 'seventy-seven thousand sixty'),\n(20804, 79446, 'seventy-nine thousand four hundred forty-six'),\n(20805, 33286, 'thirty-three thousand two hundred eighty-six'),\n(20806, 38066, 'thirty-eight thousand sixty-six'),\n(20807, 33525, 'thirty-three thousand five hundred twenty-five'),\n(20808, 91750, 'ninety-one thousand seven hundred fifty'),\n(20809, 71977, 'seventy-one thousand nine hundred seventy-seven'),\n(20810, 87678, 'eighty-seven thousand six hundred seventy-eight'),\n(20811, 98988, 'ninety-eight thousand nine hundred eighty-eight'),\n(20812, 25993, 'twenty-five thousand nine hundred ninety-three'),\n(20813, 67531, 'sixty-seven thousand five hundred thirty-one'),\n(20814, 52159, 'fifty-two thousand one hundred fifty-nine'),\n(20815, 94970, 'ninety-four thousand nine hundred seventy'),\n(20816, 90655, 'ninety thousand six hundred fifty-five'),\n(20817, 93054, 'ninety-three thousand fifty-four'),\n(20818, 47093, 'forty-seven thousand ninety-three'),\n(20819, 30159, 'thirty thousand one hundred fifty-nine'),\n(20820, 9763, 'nine thousand seven hundred sixty-three'),\n(20821, 54900, 'fifty-four thousand nine hundred'),\n(20822, 83891, 'eighty-three thousand eight hundred ninety-one'),\n(20823, 5898, 'five thousand eight hundred ninety-eight'),\n(20824, 64287, 'sixty-four thousand two hundred eighty-seven'),\n(20825, 78880, 'seventy-eight thousand eight hundred eighty'),\n(20826, 27520, 'twenty-seven thousand five hundred twenty'),\n(20827, 72341, 'seventy-two thousand three hundred forty-one'),\n(20828, 39326, 'thirty-nine thousand three hundred twenty-six'),\n(20829, 72734, 'seventy-two thousand seven hundred thirty-four'),\n(20830, 75519, 'seventy-five thousand five hundred nineteen'),\n(20831, 59511, 'fifty-nine thousand five hundred eleven'),\n(20832, 38423, 'thirty-eight thousand four hundred twenty-three'),\n(20833, 31019, 'thirty-one thousand nineteen'),\n(20834, 5794, 'five thousand seven hundred ninety-four'),\n(20835, 95783, 'ninety-five thousand seven hundred eighty-three'),\n(20836, 68949, 'sixty-eight thousand nine hundred forty-nine'),\n(20837, 5955, 'five thousand nine hundred fifty-five'),\n(20838, 46310, 'forty-six thousand three hundred ten'),\n(20839, 73, 'seventy-three'),\n(20840, 31497, 'thirty-one thousand four hundred ninety-seven'),\n(20841, 28050, 'twenty-eight thousand fifty'),\n(20842, 16080, 'sixteen thousand eighty'),\n(20843, 76546, 'seventy-six thousand five hundred forty-six'),\n(20844, 35140, 'thirty-five thousand one hundred forty'),\n(20845, 39018, 'thirty-nine thousand eighteen'),\n(20846, 35038, 'thirty-five thousand thirty-eight'),\n(20847, 713, 'seven hundred thirteen'),\n(20848, 49986, 'forty-nine thousand nine hundred eighty-six'),\n(20849, 12599, 'twelve thousand five hundred ninety-nine'),\n(20850, 44985, 'forty-four thousand nine hundred eighty-five'),\n(20851, 63869, 'sixty-three thousand eight hundred sixty-nine'),\n(20852, 55184, 'fifty-five thousand one hundred eighty-four'),\n(20853, 18393, 'eighteen thousand three hundred ninety-three'),\n(20854, 79607, 'seventy-nine thousand six hundred seven'),\n(20855, 70721, 'seventy thousand seven hundred twenty-one'),\n(20856, 23704, 'twenty-three thousand seven hundred four'),\n(20857, 94840, 'ninety-four thousand eight hundred forty'),\n(20858, 18866, 'eighteen thousand eight hundred sixty-six'),\n(20859, 12650, 'twelve thousand six hundred fifty'),\n(20860, 54339, 'fifty-four thousand three hundred thirty-nine'),\n(20861, 90994, 'ninety thousand nine hundred ninety-four'),\n(20862, 11553, 'eleven thousand five hundred fifty-three'),\n(20863, 21094, 'twenty-one thousand ninety-four'),\n(20864, 17314, 'seventeen thousand three hundred fourteen'),\n(20865, 53828, 'fifty-three thousand eight hundred twenty-eight'),\n(20866, 69873, 'sixty-nine thousand eight hundred seventy-three'),\n(20867, 41647, 'forty-one thousand six hundred forty-seven'),\n(20868, 87110, 'eighty-seven thousand one hundred ten'),\n(20869, 65001, 'sixty-five thousand one'),\n(20870, 38710, 'thirty-eight thousand seven hundred ten'),\n(20871, 11303, 'eleven thousand three hundred three'),\n(20872, 66116, 'sixty-six thousand one hundred sixteen'),\n(20873, 31910, 'thirty-one thousand nine hundred ten'),\n(20874, 70287, 'seventy thousand two hundred eighty-seven'),\n(20875, 67464, 'sixty-seven thousand four hundred sixty-four'),\n(20876, 16312, 'sixteen thousand three hundred twelve'),\n(20877, 45563, 'forty-five thousand five hundred sixty-three'),\n(20878, 50869, 'fifty thousand eight hundred sixty-nine'),\n(20879, 12900, 'twelve thousand nine hundred'),\n(20880, 73595, 'seventy-three thousand five hundred ninety-five'),\n(20881, 3009, 'three thousand nine'),\n(20882, 83706, 'eighty-three thousand seven hundred six'),\n(20883, 72886, 'seventy-two thousand eight hundred eighty-six'),\n(20884, 97365, 'ninety-seven thousand three hundred sixty-five'),\n(20885, 29661, 'twenty-nine thousand six hundred sixty-one'),\n(20886, 64571, 'sixty-four thousand five hundred seventy-one'),\n(20887, 34161, 'thirty-four thousand one hundred sixty-one'),\n(20888, 7808, 'seven thousand eight hundred eight'),\n(20889, 58029, 'fifty-eight thousand twenty-nine'),\n(20890, 58286, 'fifty-eight thousand two hundred eighty-six'),\n(20891, 45915, 'forty-five thousand nine hundred fifteen'),\n(20892, 86274, 'eighty-six thousand two hundred seventy-four'),\n(20893, 19091, 'nineteen thousand ninety-one'),\n(20894, 92017, 'ninety-two thousand seventeen'),\n(20895, 10011, 'ten thousand eleven'),\n(20896, 99703, 'ninety-nine thousand seven hundred three'),\n(20897, 89702, 'eighty-nine thousand seven hundred two'),\n(20898, 56605, 'fifty-six thousand six hundred five'),\n(20899, 89958, 'eighty-nine thousand nine hundred fifty-eight'),\n(20900, 84558, 'eighty-four thousand five hundred fifty-eight'),\n(20901, 46970, 'forty-six thousand nine hundred seventy'),\n(20902, 90213, 'ninety thousand two hundred thirteen'),\n(20903, 86754, 'eighty-six thousand seven hundred fifty-four'),\n(20904, 94557, 'ninety-four thousand five hundred fifty-seven'),\n(20905, 90431, 'ninety thousand four hundred thirty-one'),\n(20906, 99255, 'ninety-nine thousand two hundred fifty-five'),\n(20907, 3510, 'three thousand five hundred ten'),\n(20908, 92988, 'ninety-two thousand nine hundred eighty-eight'),\n(20909, 34617, 'thirty-four thousand six hundred seventeen'),\n(20910, 73710, 'seventy-three thousand seven hundred ten'),\n(20911, 54479, 'fifty-four thousand four hundred seventy-nine'),\n(20912, 80877, 'eighty thousand eight hundred seventy-seven'),\n(20913, 34343, 'thirty-four thousand three hundred forty-three'),\n(20914, 34552, 'thirty-four thousand five hundred fifty-two'),\n(20915, 49156, 'forty-nine thousand one hundred fifty-six'),\n(20916, 59708, 'fifty-nine thousand seven hundred eight'),\n(20917, 50559, 'fifty thousand five hundred fifty-nine'),\n(20918, 45551, 'forty-five thousand five hundred fifty-one'),\n(20919, 89426, 'eighty-nine thousand four hundred twenty-six'),\n(20920, 41571, 'forty-one thousand five hundred seventy-one'),\n(20921, 28131, 'twenty-eight thousand one hundred thirty-one'),\n(20922, 81271, 'eighty-one thousand two hundred seventy-one'),\n(20923, 7342, 'seven thousand three hundred forty-two'),\n(20924, 84478, 'eighty-four thousand four hundred seventy-eight'),\n(20925, 13500, 'thirteen thousand five hundred'),\n(20926, 65245, 'sixty-five thousand two hundred forty-five'),\n(20927, 46142, 'forty-six thousand one hundred forty-two'),\n(20928, 6124, 'six thousand one hundred twenty-four'),\n(20929, 81955, 'eighty-one thousand nine hundred fifty-five'),\n(20930, 51579, 'fifty-one thousand five hundred seventy-nine'),\n(20931, 34983, 'thirty-four thousand nine hundred eighty-three'),\n(20932, 31440, 'thirty-one thousand four hundred forty'),\n(20933, 68096, 'sixty-eight thousand ninety-six'),\n(20934, 82045, 'eighty-two thousand forty-five'),\n(20935, 43707, 'forty-three thousand seven hundred seven'),\n(20936, 69697, 'sixty-nine thousand six hundred ninety-seven'),\n(20937, 93179, 'ninety-three thousand one hundred seventy-nine'),\n(20938, 77302, 'seventy-seven thousand three hundred two'),\n(20939, 9321, 'nine thousand three hundred twenty-one'),\n(20940, 37961, 'thirty-seven thousand nine hundred sixty-one'),\n(20941, 40125, 'forty thousand one hundred twenty-five'),\n(20942, 94848, 'ninety-four thousand eight hundred forty-eight'),\n(20943, 11962, 'eleven thousand nine hundred sixty-two'),\n(20944, 62133, 'sixty-two thousand one hundred thirty-three'),\n(20945, 35225, 'thirty-five thousand two hundred twenty-five'),\n(20946, 62811, 'sixty-two thousand eight hundred eleven'),\n(20947, 25119, 'twenty-five thousand one hundred nineteen'),\n(20948, 6006, 'six thousand six'),\n(20949, 32466, 'thirty-two thousand four hundred sixty-six'),\n(20950, 45101, 'forty-five thousand one hundred one'),\n(20951, 35736, 'thirty-five thousand seven hundred thirty-six'),\n(20952, 66224, 'sixty-six thousand two hundred twenty-four'),\n(20953, 46437, 'forty-six thousand four hundred thirty-seven'),\n(20954, 47185, 'forty-seven thousand one hundred eighty-five'),\n(20955, 57869, 'fifty-seven thousand eight hundred sixty-nine'),\n(20956, 41204, 'forty-one thousand two hundred four'),\n(20957, 64622, 'sixty-four thousand six hundred twenty-two'),\n(20958, 53458, 'fifty-three thousand four hundred fifty-eight'),\n(20959, 99293, 'ninety-nine thousand two hundred ninety-three'),\n(20960, 28997, 'twenty-eight thousand nine hundred ninety-seven'),\n(20961, 12820, 'twelve thousand eight hundred twenty'),\n(20962, 21644, 'twenty-one thousand six hundred forty-four'),\n(20963, 10764, 'ten thousand seven hundred sixty-four'),\n(20964, 90596, 'ninety thousand five hundred ninety-six'),\n(20965, 68661, 'sixty-eight thousand six hundred sixty-one'),\n(20966, 41532, 'forty-one thousand five hundred thirty-two'),\n(20967, 48499, 'forty-eight thousand four hundred ninety-nine'),\n(20968, 36253, 'thirty-six thousand two hundred fifty-three'),\n(20969, 45061, 'forty-five thousand sixty-one'),\n(20970, 84611, 'eighty-four thousand six hundred eleven'),\n(20971, 77452, 'seventy-seven thousand four hundred fifty-two'),\n(20972, 57511, 'fifty-seven thousand five hundred eleven'),\n(20973, 30688, 'thirty thousand six hundred eighty-eight'),\n(20974, 78086, 'seventy-eight thousand eighty-six'),\n(20975, 70241, 'seventy thousand two hundred forty-one'),\n(20976, 52250, 'fifty-two thousand two hundred fifty'),\n(20977, 94213, 'ninety-four thousand two hundred thirteen'),\n(20978, 45993, 'forty-five thousand nine hundred ninety-three'),\n(20979, 9415, 'nine thousand four hundred fifteen'),\n(20980, 22496, 'twenty-two thousand four hundred ninety-six'),\n(20981, 94760, 'ninety-four thousand seven hundred sixty'),\n(20982, 32736, 'thirty-two thousand seven hundred thirty-six'),\n(20983, 20919, 'twenty thousand nine hundred nineteen'),\n(20984, 63891, 'sixty-three thousand eight hundred ninety-one'),\n(20985, 5606, 'five thousand six hundred six'),\n(20986, 86559, 'eighty-six thousand five hundred fifty-nine'),\n(20987, 77443, 'seventy-seven thousand four hundred forty-three'),\n(20988, 82235, 'eighty-two thousand two hundred thirty-five'),\n(20989, 92187, 'ninety-two thousand one hundred eighty-seven'),\n(20990, 98638, 'ninety-eight thousand six hundred thirty-eight'),\n(20991, 12531, 'twelve thousand five hundred thirty-one'),\n(20992, 39949, 'thirty-nine thousand nine hundred forty-nine'),\n(20993, 64361, 'sixty-four thousand three hundred sixty-one'),\n(20994, 31996, 'thirty-one thousand nine hundred ninety-six'),\n(20995, 12644, 'twelve thousand six hundred forty-four'),\n(20996, 13802, 'thirteen thousand eight hundred two'),\n(20997, 81663, 'eighty-one thousand six hundred sixty-three'),\n(20998, 27831, 'twenty-seven thousand eight hundred thirty-one'),\n(20999, 10136, 'ten thousand one hundred thirty-six'),\n(21000, 76524, 'seventy-six thousand five hundred twenty-four'),\n(21001, 37425, 'thirty-seven thousand four hundred twenty-five'),\n(21002, 84150, 'eighty-four thousand one hundred fifty'),\n(21003, 85297, 'eighty-five thousand two hundred ninety-seven'),\n(21004, 98034, 'ninety-eight thousand thirty-four'),\n(21005, 11826, 'eleven thousand eight hundred twenty-six'),\n(21006, 48202, 'forty-eight thousand two hundred two'),\n(21007, 73272, 'seventy-three thousand two hundred seventy-two'),\n(21008, 16035, 'sixteen thousand thirty-five'),\n(21009, 4649, 'four thousand six hundred forty-nine'),\n(21010, 66088, 'sixty-six thousand eighty-eight'),\n(21011, 99506, 'ninety-nine thousand five hundred six'),\n(21012, 61038, 'sixty-one thousand thirty-eight'),\n(21013, 88196, 'eighty-eight thousand one hundred ninety-six'),\n(21014, 96517, 'ninety-six thousand five hundred seventeen'),\n(21015, 26177, 'twenty-six thousand one hundred seventy-seven'),\n(21016, 602, 'six hundred two'),\n(21017, 21717, 'twenty-one thousand seven hundred seventeen'),\n(21018, 21469, 'twenty-one thousand four hundred sixty-nine'),\n(21019, 64240, 'sixty-four thousand two hundred forty'),\n(21020, 65443, 'sixty-five thousand four hundred forty-three'),\n(21021, 87430, 'eighty-seven thousand four hundred thirty'),\n(21022, 75716, 'seventy-five thousand seven hundred sixteen'),\n(21023, 83743, 'eighty-three thousand seven hundred forty-three'),\n(21024, 70976, 'seventy thousand nine hundred seventy-six'),\n(21025, 54193, 'fifty-four thousand one hundred ninety-three'),\n(21026, 2466, 'two thousand four hundred sixty-six'),\n(21027, 23794, 'twenty-three thousand seven hundred ninety-four'),\n(21028, 77808, 'seventy-seven thousand eight hundred eight'),\n(21029, 82905, 'eighty-two thousand nine hundred five'),\n(21030, 96527, 'ninety-six thousand five hundred twenty-seven'),\n(21031, 93562, 'ninety-three thousand five hundred sixty-two'),\n(21032, 83259, 'eighty-three thousand two hundred fifty-nine'),\n(21033, 31672, 'thirty-one thousand six hundred seventy-two'),\n(21034, 12597, 'twelve thousand five hundred ninety-seven'),\n(21035, 27922, 'twenty-seven thousand nine hundred twenty-two'),\n(21036, 60856, 'sixty thousand eight hundred fifty-six'),\n(21037, 53038, 'fifty-three thousand thirty-eight'),\n(21038, 39941, 'thirty-nine thousand nine hundred forty-one'),\n(21039, 91535, 'ninety-one thousand five hundred thirty-five'),\n(21040, 43868, 'forty-three thousand eight hundred sixty-eight'),\n(21041, 22105, 'twenty-two thousand one hundred five'),\n(21042, 21722, 'twenty-one thousand seven hundred twenty-two'),\n(21043, 5833, 'five thousand eight hundred thirty-three'),\n(21044, 18864, 'eighteen thousand eight hundred sixty-four'),\n(21045, 6383, 'six thousand three hundred eighty-three'),\n(21046, 53190, 'fifty-three thousand one hundred ninety'),\n(21047, 15280, 'fifteen thousand two hundred eighty'),\n(21048, 35362, 'thirty-five thousand three hundred sixty-two'),\n(21049, 30900, 'thirty thousand nine hundred'),\n(21050, 18104, 'eighteen thousand one hundred four'),\n(21051, 62309, 'sixty-two thousand three hundred nine'),\n(21052, 51843, 'fifty-one thousand eight hundred forty-three'),\n(21053, 10002, 'ten thousand two'),\n(21054, 18605, 'eighteen thousand six hundred five'),\n(21055, 46024, 'forty-six thousand twenty-four'),\n(21056, 77012, 'seventy-seven thousand twelve'),\n(21057, 57620, 'fifty-seven thousand six hundred twenty'),\n(21058, 6770, 'six thousand seven hundred seventy'),\n(21059, 40298, 'forty thousand two hundred ninety-eight'),\n(21060, 48970, 'forty-eight thousand nine hundred seventy'),\n(21061, 10779, 'ten thousand seven hundred seventy-nine'),\n(21062, 50657, 'fifty thousand six hundred fifty-seven'),\n(21063, 13479, 'thirteen thousand four hundred seventy-nine'),\n(21064, 29909, 'twenty-nine thousand nine hundred nine'),\n(21065, 75081, 'seventy-five thousand eighty-one'),\n(21066, 16799, 'sixteen thousand seven hundred ninety-nine'),\n(21067, 13987, 'thirteen thousand nine hundred eighty-seven'),\n(21068, 78631, 'seventy-eight thousand six hundred thirty-one'),\n(21069, 32003, 'thirty-two thousand three'),\n(21070, 71218, 'seventy-one thousand two hundred eighteen'),\n(21071, 37771, 'thirty-seven thousand seven hundred seventy-one'),\n(21072, 59579, 'fifty-nine thousand five hundred seventy-nine'),\n(21073, 26602, 'twenty-six thousand six hundred two'),\n(21074, 5604, 'five thousand six hundred four'),\n(21075, 84568, 'eighty-four thousand five hundred sixty-eight'),\n(21076, 59106, 'fifty-nine thousand one hundred six'),\n(21077, 45690, 'forty-five thousand six hundred ninety'),\n(21078, 93610, 'ninety-three thousand six hundred ten'),\n(21079, 58583, 'fifty-eight thousand five hundred eighty-three'),\n(21080, 52384, 'fifty-two thousand three hundred eighty-four'),\n(21081, 65824, 'sixty-five thousand eight hundred twenty-four'),\n(21082, 6716, 'six thousand seven hundred sixteen'),\n(21083, 84130, 'eighty-four thousand one hundred thirty'),\n(21084, 62103, 'sixty-two thousand one hundred three'),\n(21085, 21557, 'twenty-one thousand five hundred fifty-seven'),\n(21086, 4655, 'four thousand six hundred fifty-five'),\n(21087, 76820, 'seventy-six thousand eight hundred twenty'),\n(21088, 53337, 'fifty-three thousand three hundred thirty-seven'),\n(21089, 6606, 'six thousand six hundred six'),\n(21090, 1724, 'one thousand seven hundred twenty-four'),\n(21091, 50844, 'fifty thousand eight hundred forty-four'),\n(21092, 60610, 'sixty thousand six hundred ten'),\n(21093, 37681, 'thirty-seven thousand six hundred eighty-one'),\n(21094, 54741, 'fifty-four thousand seven hundred forty-one'),\n(21095, 36154, 'thirty-six thousand one hundred fifty-four'),\n(21096, 54755, 'fifty-four thousand seven hundred fifty-five'),\n(21097, 10418, 'ten thousand four hundred eighteen'),\n(21098, 41761, 'forty-one thousand seven hundred sixty-one'),\n(21099, 18534, 'eighteen thousand five hundred thirty-four'),\n(21100, 98917, 'ninety-eight thousand nine hundred seventeen'),\n(21101, 32256, 'thirty-two thousand two hundred fifty-six'),\n(21102, 5103, 'five thousand one hundred three'),\n(21103, 23475, 'twenty-three thousand four hundred seventy-five'),\n(21104, 7396, 'seven thousand three hundred ninety-six'),\n(21105, 39952, 'thirty-nine thousand nine hundred fifty-two'),\n(21106, 46510, 'forty-six thousand five hundred ten'),\n(21107, 90204, 'ninety thousand two hundred four'),\n(21108, 25762, 'twenty-five thousand seven hundred sixty-two'),\n(21109, 52464, 'fifty-two thousand four hundred sixty-four'),\n(21110, 49024, 'forty-nine thousand twenty-four'),\n(21111, 11161, 'eleven thousand one hundred sixty-one'),\n(21112, 21274, 'twenty-one thousand two hundred seventy-four'),\n(21113, 78610, 'seventy-eight thousand six hundred ten'),\n(21114, 35671, 'thirty-five thousand six hundred seventy-one'),\n(21115, 24578, 'twenty-four thousand five hundred seventy-eight'),\n(21116, 79384, 'seventy-nine thousand three hundred eighty-four'),\n(21117, 1248, 'one thousand two hundred forty-eight'),\n(21118, 65359, 'sixty-five thousand three hundred fifty-nine'),\n(21119, 87627, 'eighty-seven thousand six hundred twenty-seven'),\n(21120, 49099, 'forty-nine thousand ninety-nine'),\n(21121, 77170, 'seventy-seven thousand one hundred seventy'),\n(21122, 98679, 'ninety-eight thousand six hundred seventy-nine'),\n(21123, 18101, 'eighteen thousand one hundred one'),\n(21124, 22036, 'twenty-two thousand thirty-six'),\n(21125, 54864, 'fifty-four thousand eight hundred sixty-four'),\n(21126, 2843, 'two thousand eight hundred forty-three'),\n(21127, 51339, 'fifty-one thousand three hundred thirty-nine'),\n(21128, 72226, 'seventy-two thousand two hundred twenty-six'),\n(21129, 27815, 'twenty-seven thousand eight hundred fifteen'),\n(21130, 58312, 'fifty-eight thousand three hundred twelve'),\n(21131, 55616, 'fifty-five thousand six hundred sixteen'),\n(21132, 76763, 'seventy-six thousand seven hundred sixty-three'),\n(21133, 38193, 'thirty-eight thousand one hundred ninety-three'),\n(21134, 31399, 'thirty-one thousand three hundred ninety-nine'),\n(21135, 94983, 'ninety-four thousand nine hundred eighty-three'),\n(21136, 93605, 'ninety-three thousand six hundred five'),\n(21137, 59464, 'fifty-nine thousand four hundred sixty-four'),\n(21138, 56463, 'fifty-six thousand four hundred sixty-three'),\n(21139, 50245, 'fifty thousand two hundred forty-five'),\n(21140, 84319, 'eighty-four thousand three hundred nineteen'),\n(21141, 8338, 'eight thousand three hundred thirty-eight'),\n(21142, 74698, 'seventy-four thousand six hundred ninety-eight'),\n(21143, 56701, 'fifty-six thousand seven hundred one'),\n(21144, 14385, 'fourteen thousand three hundred eighty-five'),\n(21145, 56034, 'fifty-six thousand thirty-four'),\n(21146, 70383, 'seventy thousand three hundred eighty-three'),\n(21147, 72584, 'seventy-two thousand five hundred eighty-four'),\n(21148, 55092, 'fifty-five thousand ninety-two'),\n(21149, 79780, 'seventy-nine thousand seven hundred eighty'),\n(21150, 46694, 'forty-six thousand six hundred ninety-four'),\n(21151, 57961, 'fifty-seven thousand nine hundred sixty-one'),\n(21152, 58173, 'fifty-eight thousand one hundred seventy-three'),\n(21153, 51989, 'fifty-one thousand nine hundred eighty-nine'),\n(21154, 91963, 'ninety-one thousand nine hundred sixty-three'),\n(21155, 47380, 'forty-seven thousand three hundred eighty'),\n(21156, 44128, 'forty-four thousand one hundred twenty-eight'),\n(21157, 72012, 'seventy-two thousand twelve'),\n(21158, 53635, 'fifty-three thousand six hundred thirty-five'),\n(21159, 34624, 'thirty-four thousand six hundred twenty-four'),\n(21160, 77428, 'seventy-seven thousand four hundred twenty-eight'),\n(21161, 47049, 'forty-seven thousand forty-nine'),\n(21162, 45050, 'forty-five thousand fifty'),\n(21163, 74721, 'seventy-four thousand seven hundred twenty-one'),\n(21164, 22718, 'twenty-two thousand seven hundred eighteen'),\n(21165, 60983, 'sixty thousand nine hundred eighty-three'),\n(21166, 69130, 'sixty-nine thousand one hundred thirty'),\n(21167, 57466, 'fifty-seven thousand four hundred sixty-six'),\n(21168, 9803, 'nine thousand eight hundred three'),\n(21169, 79807, 'seventy-nine thousand eight hundred seven'),\n(21170, 67194, 'sixty-seven thousand one hundred ninety-four'),\n(21171, 37746, 'thirty-seven thousand seven hundred forty-six'),\n(21172, 80860, 'eighty thousand eight hundred sixty'),\n(21173, 9850, 'nine thousand eight hundred fifty'),\n(21174, 45383, 'forty-five thousand three hundred eighty-three'),\n(21175, 65997, 'sixty-five thousand nine hundred ninety-seven'),\n(21176, 95738, 'ninety-five thousand seven hundred thirty-eight'),\n(21177, 58828, 'fifty-eight thousand eight hundred twenty-eight'),\n(21178, 81971, 'eighty-one thousand nine hundred seventy-one'),\n(21179, 7641, 'seven thousand six hundred forty-one'),\n(21180, 7723, 'seven thousand seven hundred twenty-three'),\n(21181, 3820, 'three thousand eight hundred twenty'),\n(21182, 73511, 'seventy-three thousand five hundred eleven'),\n(21183, 60887, 'sixty thousand eight hundred eighty-seven'),\n(21184, 33349, 'thirty-three thousand three hundred forty-nine'),\n(21185, 41303, 'forty-one thousand three hundred three'),\n(21186, 99307, 'ninety-nine thousand three hundred seven'),\n(21187, 19969, 'nineteen thousand nine hundred sixty-nine'),\n(21188, 78923, 'seventy-eight thousand nine hundred twenty-three'),\n(21189, 92739, 'ninety-two thousand seven hundred thirty-nine'),\n(21190, 64022, 'sixty-four thousand twenty-two'),\n(21191, 13342, 'thirteen thousand three hundred forty-two'),\n(21192, 66510, 'sixty-six thousand five hundred ten'),\n(21193, 89912, 'eighty-nine thousand nine hundred twelve'),\n(21194, 38205, 'thirty-eight thousand two hundred five'),\n(21195, 11257, 'eleven thousand two hundred fifty-seven'),\n(21196, 88842, 'eighty-eight thousand eight hundred forty-two'),\n(21197, 21514, 'twenty-one thousand five hundred fourteen'),\n(21198, 81451, 'eighty-one thousand four hundred fifty-one'),\n(21199, 37321, 'thirty-seven thousand three hundred twenty-one'),\n(21200, 12376, 'twelve thousand three hundred seventy-six'),\n(21201, 94493, 'ninety-four thousand four hundred ninety-three'),\n(21202, 84579, 'eighty-four thousand five hundred seventy-nine'),\n(21203, 64859, 'sixty-four thousand eight hundred fifty-nine'),\n(21204, 70935, 'seventy thousand nine hundred thirty-five'),\n(21205, 64375, 'sixty-four thousand three hundred seventy-five'),\n(21206, 1923, 'one thousand nine hundred twenty-three'),\n(21207, 11065, 'eleven thousand sixty-five'),\n(21208, 69769, 'sixty-nine thousand seven hundred sixty-nine'),\n(21209, 79690, 'seventy-nine thousand six hundred ninety'),\n(21210, 27326, 'twenty-seven thousand three hundred twenty-six'),\n(21211, 46426, 'forty-six thousand four hundred twenty-six'),\n(21212, 39032, 'thirty-nine thousand thirty-two'),\n(21213, 16516, 'sixteen thousand five hundred sixteen'),\n(21214, 56359, 'fifty-six thousand three hundred fifty-nine'),\n(21215, 65516, 'sixty-five thousand five hundred sixteen'),\n(21216, 96327, 'ninety-six thousand three hundred twenty-seven'),\n(21217, 28013, 'twenty-eight thousand thirteen'),\n(21218, 19666, 'nineteen thousand six hundred sixty-six'),\n(21219, 52926, 'fifty-two thousand nine hundred twenty-six'),\n(21220, 18147, 'eighteen thousand one hundred forty-seven'),\n(21221, 5065, 'five thousand sixty-five'),\n(21222, 24529, 'twenty-four thousand five hundred twenty-nine'),\n(21223, 69597, 'sixty-nine thousand five hundred ninety-seven'),\n(21224, 99325, 'ninety-nine thousand three hundred twenty-five'),\n(21225, 68459, 'sixty-eight thousand four hundred fifty-nine'),\n(21226, 10431, 'ten thousand four hundred thirty-one'),\n(21227, 49123, 'forty-nine thousand one hundred twenty-three'),\n(21228, 65687, 'sixty-five thousand six hundred eighty-seven'),\n(21229, 93170, 'ninety-three thousand one hundred seventy'),\n(21230, 38223, 'thirty-eight thousand two hundred twenty-three'),\n(21231, 43111, 'forty-three thousand one hundred eleven'),\n(21232, 77938, 'seventy-seven thousand nine hundred thirty-eight'),\n(21233, 72641, 'seventy-two thousand six hundred forty-one'),\n(21234, 25133, 'twenty-five thousand one hundred thirty-three'),\n(21235, 16906, 'sixteen thousand nine hundred six'),\n(21236, 6633, 'six thousand six hundred thirty-three'),\n(21237, 58631, 'fifty-eight thousand six hundred thirty-one'),\n(21238, 35253, 'thirty-five thousand two hundred fifty-three'),\n(21239, 67550, 'sixty-seven thousand five hundred fifty'),\n(21240, 79461, 'seventy-nine thousand four hundred sixty-one'),\n(21241, 30295, 'thirty thousand two hundred ninety-five'),\n(21242, 43785, 'forty-three thousand seven hundred eighty-five'),\n(21243, 89336, 'eighty-nine thousand three hundred thirty-six'),\n(21244, 73351, 'seventy-three thousand three hundred fifty-one'),\n(21245, 37262, 'thirty-seven thousand two hundred sixty-two'),\n(21246, 35129, 'thirty-five thousand one hundred twenty-nine'),\n(21247, 10119, 'ten thousand one hundred nineteen'),\n(21248, 56112, 'fifty-six thousand one hundred twelve'),\n(21249, 28548, 'twenty-eight thousand five hundred forty-eight'),\n(21250, 13115, 'thirteen thousand one hundred fifteen'),\n(21251, 80286, 'eighty thousand two hundred eighty-six'),\n(21252, 69147, 'sixty-nine thousand one hundred forty-seven'),\n(21253, 65728, 'sixty-five thousand seven hundred twenty-eight'),\n(21254, 3719, 'three thousand seven hundred nineteen'),\n(21255, 25014, 'twenty-five thousand fourteen'),\n(21256, 14991, 'fourteen thousand nine hundred ninety-one'),\n(21257, 70268, 'seventy thousand two hundred sixty-eight'),\n(21258, 54924, 'fifty-four thousand nine hundred twenty-four'),\n(21259, 31017, 'thirty-one thousand seventeen'),\n(21260, 90810, 'ninety thousand eight hundred ten'),\n(21261, 26717, 'twenty-six thousand seven hundred seventeen'),\n(21262, 22031, 'twenty-two thousand thirty-one'),\n(21263, 61116, 'sixty-one thousand one hundred sixteen'),\n(21264, 51453, 'fifty-one thousand four hundred fifty-three'),\n(21265, 11482, 'eleven thousand four hundred eighty-two'),\n(21266, 56454, 'fifty-six thousand four hundred fifty-four'),\n(21267, 97193, 'ninety-seven thousand one hundred ninety-three'),\n(21268, 28472, 'twenty-eight thousand four hundred seventy-two'),\n(21269, 68957, 'sixty-eight thousand nine hundred fifty-seven'),\n(21270, 91060, 'ninety-one thousand sixty'),\n(21271, 95292, 'ninety-five thousand two hundred ninety-two'),\n(21272, 8577, 'eight thousand five hundred seventy-seven'),\n(21273, 38635, 'thirty-eight thousand six hundred thirty-five'),\n(21274, 17952, 'seventeen thousand nine hundred fifty-two'),\n(21275, 49788, 'forty-nine thousand seven hundred eighty-eight'),\n(21276, 56854, 'fifty-six thousand eight hundred fifty-four'),\n(21277, 16567, 'sixteen thousand five hundred sixty-seven'),\n(21278, 54793, 'fifty-four thousand seven hundred ninety-three'),\n(21279, 95460, 'ninety-five thousand four hundred sixty'),\n(21280, 37602, 'thirty-seven thousand six hundred two'),\n(21281, 38717, 'thirty-eight thousand seven hundred seventeen'),\n(21282, 23758, 'twenty-three thousand seven hundred fifty-eight'),\n(21283, 3027, 'three thousand twenty-seven'),\n(21284, 699, 'six hundred ninety-nine'),\n(21285, 50325, 'fifty thousand three hundred twenty-five'),\n(21286, 46260, 'forty-six thousand two hundred sixty'),\n(21287, 24424, 'twenty-four thousand four hundred twenty-four'),\n(21288, 43256, 'forty-three thousand two hundred fifty-six'),\n(21289, 54408, 'fifty-four thousand four hundred eight'),\n(21290, 83235, 'eighty-three thousand two hundred thirty-five'),\n(21291, 88866, 'eighty-eight thousand eight hundred sixty-six'),\n(21292, 93809, 'ninety-three thousand eight hundred nine'),\n(21293, 76333, 'seventy-six thousand three hundred thirty-three'),\n(21294, 19405, 'nineteen thousand four hundred five'),\n(21295, 38694, 'thirty-eight thousand six hundred ninety-four'),\n(21296, 71078, 'seventy-one thousand seventy-eight'),\n(21297, 43986, 'forty-three thousand nine hundred eighty-six'),\n(21298, 14483, 'fourteen thousand four hundred eighty-three'),\n(21299, 67360, 'sixty-seven thousand three hundred sixty'),\n(21300, 51192, 'fifty-one thousand one hundred ninety-two'),\n(21301, 76933, 'seventy-six thousand nine hundred thirty-three'),\n(21302, 85569, 'eighty-five thousand five hundred sixty-nine'),\n(21303, 68577, 'sixty-eight thousand five hundred seventy-seven'),\n(21304, 2701, 'two thousand seven hundred one'),\n(21305, 46845, 'forty-six thousand eight hundred forty-five'),\n(21306, 53627, 'fifty-three thousand six hundred twenty-seven'),\n(21307, 36701, 'thirty-six thousand seven hundred one'),\n(21308, 8267, 'eight thousand two hundred sixty-seven'),\n(21309, 81965, 'eighty-one thousand nine hundred sixty-five'),\n(21310, 76699, 'seventy-six thousand six hundred ninety-nine'),\n(21311, 87802, 'eighty-seven thousand eight hundred two'),\n(21312, 22902, 'twenty-two thousand nine hundred two'),\n(21313, 57170, 'fifty-seven thousand one hundred seventy'),\n(21314, 15532, 'fifteen thousand five hundred thirty-two'),\n(21315, 61255, 'sixty-one thousand two hundred fifty-five'),\n(21316, 45677, 'forty-five thousand six hundred seventy-seven'),\n(21317, 49736, 'forty-nine thousand seven hundred thirty-six'),\n(21318, 22784, 'twenty-two thousand seven hundred eighty-four'),\n(21319, 67308, 'sixty-seven thousand three hundred eight'),\n(21320, 77073, 'seventy-seven thousand seventy-three'),\n(21321, 58, 'fifty-eight'),\n(21322, 91089, 'ninety-one thousand eighty-nine'),\n(21323, 31013, 'thirty-one thousand thirteen'),\n(21324, 60989, 'sixty thousand nine hundred eighty-nine'),\n(21325, 45384, 'forty-five thousand three hundred eighty-four'),\n(21326, 91252, 'ninety-one thousand two hundred fifty-two'),\n(21327, 92086, 'ninety-two thousand eighty-six'),\n(21328, 54231, 'fifty-four thousand two hundred thirty-one'),\n(21329, 56193, 'fifty-six thousand one hundred ninety-three'),\n(21330, 16542, 'sixteen thousand five hundred forty-two'),\n(21331, 90770, 'ninety thousand seven hundred seventy'),\n(21332, 21326, 'twenty-one thousand three hundred twenty-six'),\n(21333, 7154, 'seven thousand one hundred fifty-four'),\n(21334, 64555, 'sixty-four thousand five hundred fifty-five'),\n(21335, 15486, 'fifteen thousand four hundred eighty-six'),\n(21336, 28218, 'twenty-eight thousand two hundred eighteen'),\n(21337, 19153, 'nineteen thousand one hundred fifty-three'),\n(21338, 64241, 'sixty-four thousand two hundred forty-one'),\n(21339, 284, 'two hundred eighty-four'),\n(21340, 5998, 'five thousand nine hundred ninety-eight'),\n(21341, 40075, 'forty thousand seventy-five'),\n(21342, 1898, 'one thousand eight hundred ninety-eight'),\n(21343, 18262, 'eighteen thousand two hundred sixty-two'),\n(21344, 47969, 'forty-seven thousand nine hundred sixty-nine'),\n(21345, 72196, 'seventy-two thousand one hundred ninety-six'),\n(21346, 88168, 'eighty-eight thousand one hundred sixty-eight'),\n(21347, 59900, 'fifty-nine thousand nine hundred'),\n(21348, 68024, 'sixty-eight thousand twenty-four'),\n(21349, 18366, 'eighteen thousand three hundred sixty-six'),\n(21350, 28768, 'twenty-eight thousand seven hundred sixty-eight'),\n(21351, 64026, 'sixty-four thousand twenty-six'),\n(21352, 9538, 'nine thousand five hundred thirty-eight'),\n(21353, 9580, 'nine thousand five hundred eighty'),\n(21354, 14044, 'fourteen thousand forty-four'),\n(21355, 66235, 'sixty-six thousand two hundred thirty-five'),\n(21356, 20381, 'twenty thousand three hundred eighty-one'),\n(21357, 52306, 'fifty-two thousand three hundred six'),\n(21358, 44789, 'forty-four thousand seven hundred eighty-nine'),\n(21359, 90283, 'ninety thousand two hundred eighty-three'),\n(21360, 43261, 'forty-three thousand two hundred sixty-one'),\n(21361, 66986, 'sixty-six thousand nine hundred eighty-six'),\n(21362, 75009, 'seventy-five thousand nine'),\n(21363, 69385, 'sixty-nine thousand three hundred eighty-five'),\n(21364, 29806, 'twenty-nine thousand eight hundred six'),\n(21365, 68438, 'sixty-eight thousand four hundred thirty-eight'),\n(21366, 53306, 'fifty-three thousand three hundred six'),\n(21367, 166, 'one hundred sixty-six'),\n(21368, 75263, 'seventy-five thousand two hundred sixty-three'),\n(21369, 18116, 'eighteen thousand one hundred sixteen'),\n(21370, 23360, 'twenty-three thousand three hundred sixty'),\n(21371, 70223, 'seventy thousand two hundred twenty-three'),\n(21372, 14270, 'fourteen thousand two hundred seventy'),\n(21373, 62807, 'sixty-two thousand eight hundred seven'),\n(21374, 1479, 'one thousand four hundred seventy-nine'),\n(21375, 25868, 'twenty-five thousand eight hundred sixty-eight'),\n(21376, 45842, 'forty-five thousand eight hundred forty-two'),\n(21377, 38531, 'thirty-eight thousand five hundred thirty-one'),\n(21378, 28633, 'twenty-eight thousand six hundred thirty-three'),\n(21379, 89657, 'eighty-nine thousand six hundred fifty-seven'),\n(21380, 50729, 'fifty thousand seven hundred twenty-nine'),\n(21381, 6515, 'six thousand five hundred fifteen'),\n(21382, 25163, 'twenty-five thousand one hundred sixty-three'),\n(21383, 13325, 'thirteen thousand three hundred twenty-five'),\n(21384, 33822, 'thirty-three thousand eight hundred twenty-two'),\n(21385, 56555, 'fifty-six thousand five hundred fifty-five'),\n(21386, 86213, 'eighty-six thousand two hundred thirteen'),\n(21387, 20050, 'twenty thousand fifty'),\n(21388, 20905, 'twenty thousand nine hundred five'),\n(21389, 73578, 'seventy-three thousand five hundred seventy-eight'),\n(21390, 65196, 'sixty-five thousand one hundred ninety-six'),\n(21391, 98731, 'ninety-eight thousand seven hundred thirty-one'),\n(21392, 49755, 'forty-nine thousand seven hundred fifty-five'),\n(21393, 74855, 'seventy-four thousand eight hundred fifty-five'),\n(21394, 43913, 'forty-three thousand nine hundred thirteen'),\n(21395, 72070, 'seventy-two thousand seventy'),\n(21396, 16311, 'sixteen thousand three hundred eleven'),\n(21397, 79274, 'seventy-nine thousand two hundred seventy-four'),\n(21398, 42906, 'forty-two thousand nine hundred six'),\n(21399, 53052, 'fifty-three thousand fifty-two'),\n(21400, 87970, 'eighty-seven thousand nine hundred seventy'),\n(21401, 71868, 'seventy-one thousand eight hundred sixty-eight'),\n(21402, 23882, 'twenty-three thousand eight hundred eighty-two'),\n(21403, 59125, 'fifty-nine thousand one hundred twenty-five'),\n(21404, 90598, 'ninety thousand five hundred ninety-eight'),\n(21405, 55700, 'fifty-five thousand seven hundred'),\n(21406, 98865, 'ninety-eight thousand eight hundred sixty-five'),\n(21407, 99734, 'ninety-nine thousand seven hundred thirty-four'),\n(21408, 35660, 'thirty-five thousand six hundred sixty'),\n(21409, 96579, 'ninety-six thousand five hundred seventy-nine'),\n(21410, 97555, 'ninety-seven thousand five hundred fifty-five'),\n(21411, 10380, 'ten thousand three hundred eighty'),\n(21412, 57470, 'fifty-seven thousand four hundred seventy'),\n(21413, 37730, 'thirty-seven thousand seven hundred thirty'),\n(21414, 49065, 'forty-nine thousand sixty-five'),\n(21415, 87986, 'eighty-seven thousand nine hundred eighty-six'),\n(21416, 11150, 'eleven thousand one hundred fifty'),\n(21417, 34808, 'thirty-four thousand eight hundred eight'),\n(21418, 74280, 'seventy-four thousand two hundred eighty'),\n(21419, 51963, 'fifty-one thousand nine hundred sixty-three'),\n(21420, 42638, 'forty-two thousand six hundred thirty-eight'),\n(21421, 83882, 'eighty-three thousand eight hundred eighty-two'),\n(21422, 55078, 'fifty-five thousand seventy-eight'),\n(21423, 22566, 'twenty-two thousand five hundred sixty-six'),\n(21424, 18029, 'eighteen thousand twenty-nine'),\n(21425, 32124, 'thirty-two thousand one hundred twenty-four'),\n(21426, 94122, 'ninety-four thousand one hundred twenty-two'),\n(21427, 57186, 'fifty-seven thousand one hundred eighty-six'),\n(21428, 93900, 'ninety-three thousand nine hundred'),\n(21429, 58253, 'fifty-eight thousand two hundred fifty-three'),\n(21430, 90206, 'ninety thousand two hundred six'),\n(21431, 71120, 'seventy-one thousand one hundred twenty'),\n(21432, 61687, 'sixty-one thousand six hundred eighty-seven'),\n(21433, 57180, 'fifty-seven thousand one hundred eighty'),\n(21434, 59545, 'fifty-nine thousand five hundred forty-five'),\n(21435, 85553, 'eighty-five thousand five hundred fifty-three'),\n(21436, 31645, 'thirty-one thousand six hundred forty-five'),\n(21437, 97301, 'ninety-seven thousand three hundred one'),\n(21438, 39198, 'thirty-nine thousand one hundred ninety-eight'),\n(21439, 50337, 'fifty thousand three hundred thirty-seven'),\n(21440, 51918, 'fifty-one thousand nine hundred eighteen'),\n(21441, 2819, 'two thousand eight hundred nineteen'),\n(21442, 44434, 'forty-four thousand four hundred thirty-four'),\n(21443, 45954, 'forty-five thousand nine hundred fifty-four'),\n(21444, 73117, 'seventy-three thousand one hundred seventeen'),\n(21445, 86892, 'eighty-six thousand eight hundred ninety-two'),\n(21446, 1546, 'one thousand five hundred forty-six'),\n(21447, 85983, 'eighty-five thousand nine hundred eighty-three'),\n(21448, 45096, 'forty-five thousand ninety-six'),\n(21449, 38385, 'thirty-eight thousand three hundred eighty-five'),\n(21450, 89218, 'eighty-nine thousand two hundred eighteen'),\n(21451, 77057, 'seventy-seven thousand fifty-seven'),\n(21452, 97983, 'ninety-seven thousand nine hundred eighty-three'),\n(21453, 67145, 'sixty-seven thousand one hundred forty-five'),\n(21454, 80510, 'eighty thousand five hundred ten'),\n(21455, 86018, 'eighty-six thousand eighteen'),\n(21456, 81518, 'eighty-one thousand five hundred eighteen'),\n(21457, 54371, 'fifty-four thousand three hundred seventy-one'),\n(21458, 93231, 'ninety-three thousand two hundred thirty-one'),\n(21459, 63953, 'sixty-three thousand nine hundred fifty-three'),\n(21460, 17209, 'seventeen thousand two hundred nine'),\n(21461, 90362, 'ninety thousand three hundred sixty-two'),\n(21462, 47282, 'forty-seven thousand two hundred eighty-two'),\n(21463, 83240, 'eighty-three thousand two hundred forty'),\n(21464, 30838, 'thirty thousand eight hundred thirty-eight'),\n(21465, 14411, 'fourteen thousand four hundred eleven'),\n(21466, 7401, 'seven thousand four hundred one'),\n(21467, 59627, 'fifty-nine thousand six hundred twenty-seven'),\n(21468, 51807, 'fifty-one thousand eight hundred seven'),\n(21469, 81946, 'eighty-one thousand nine hundred forty-six'),\n(21470, 67830, 'sixty-seven thousand eight hundred thirty'),\n(21471, 63413, 'sixty-three thousand four hundred thirteen'),\n(21472, 47127, 'forty-seven thousand one hundred twenty-seven'),\n(21473, 83482, 'eighty-three thousand four hundred eighty-two'),\n(21474, 94895, 'ninety-four thousand eight hundred ninety-five'),\n(21475, 303, 'three hundred three'),\n(21476, 9602, 'nine thousand six hundred two'),\n(21477, 3700, 'three thousand seven hundred'),\n(21478, 70204, 'seventy thousand two hundred four'),\n(21479, 30340, 'thirty thousand three hundred forty'),\n(21480, 58741, 'fifty-eight thousand seven hundred forty-one'),\n(21481, 9414, 'nine thousand four hundred fourteen'),\n(21482, 20273, 'twenty thousand two hundred seventy-three'),\n(21483, 34814, 'thirty-four thousand eight hundred fourteen'),\n(21484, 18909, 'eighteen thousand nine hundred nine'),\n(21485, 7279, 'seven thousand two hundred seventy-nine'),\n(21486, 11667, 'eleven thousand six hundred sixty-seven'),\n(21487, 54898, 'fifty-four thousand eight hundred ninety-eight'),\n(21488, 74597, 'seventy-four thousand five hundred ninety-seven'),\n(21489, 60445, 'sixty thousand four hundred forty-five'),\n(21490, 53461, 'fifty-three thousand four hundred sixty-one'),\n(21491, 63266, 'sixty-three thousand two hundred sixty-six'),\n(21492, 52471, 'fifty-two thousand four hundred seventy-one'),\n(21493, 97454, 'ninety-seven thousand four hundred fifty-four'),\n(21494, 40920, 'forty thousand nine hundred twenty'),\n(21495, 83251, 'eighty-three thousand two hundred fifty-one'),\n(21496, 295, 'two hundred ninety-five'),\n(21497, 40824, 'forty thousand eight hundred twenty-four'),\n(21498, 94697, 'ninety-four thousand six hundred ninety-seven'),\n(21499, 8574, 'eight thousand five hundred seventy-four'),\n(21500, 49587, 'forty-nine thousand five hundred eighty-seven'),\n(21501, 38914, 'thirty-eight thousand nine hundred fourteen'),\n(21502, 98344, 'ninety-eight thousand three hundred forty-four'),\n(21503, 63146, 'sixty-three thousand one hundred forty-six'),\n(21504, 74695, 'seventy-four thousand six hundred ninety-five'),\n(21505, 80843, 'eighty thousand eight hundred forty-three'),\n(21506, 32987, 'thirty-two thousand nine hundred eighty-seven'),\n(21507, 15762, 'fifteen thousand seven hundred sixty-two'),\n(21508, 45077, 'forty-five thousand seventy-seven'),\n(21509, 59624, 'fifty-nine thousand six hundred twenty-four'),\n(21510, 18342, 'eighteen thousand three hundred forty-two'),\n(21511, 95890, 'ninety-five thousand eight hundred ninety'),\n(21512, 89234, 'eighty-nine thousand two hundred thirty-four'),\n(21513, 44716, 'forty-four thousand seven hundred sixteen'),\n(21514, 4542, 'four thousand five hundred forty-two'),\n(21515, 82616, 'eighty-two thousand six hundred sixteen'),\n(21516, 57197, 'fifty-seven thousand one hundred ninety-seven'),\n(21517, 17675, 'seventeen thousand six hundred seventy-five'),\n(21518, 70653, 'seventy thousand six hundred fifty-three'),\n(21519, 96781, 'ninety-six thousand seven hundred eighty-one'),\n(21520, 51478, 'fifty-one thousand four hundred seventy-eight'),\n(21521, 20295, 'twenty thousand two hundred ninety-five'),\n(21522, 97421, 'ninety-seven thousand four hundred twenty-one'),\n(21523, 52905, 'fifty-two thousand nine hundred five'),\n(21524, 30670, 'thirty thousand six hundred seventy'),\n(21525, 6862, 'six thousand eight hundred sixty-two'),\n(21526, 37099, 'thirty-seven thousand ninety-nine'),\n(21527, 5196, 'five thousand one hundred ninety-six'),\n(21528, 13272, 'thirteen thousand two hundred seventy-two'),\n(21529, 15139, 'fifteen thousand one hundred thirty-nine'),\n(21530, 49514, 'forty-nine thousand five hundred fourteen'),\n(21531, 37737, 'thirty-seven thousand seven hundred thirty-seven'),\n(21532, 23749, 'twenty-three thousand seven hundred forty-nine'),\n(21533, 97539, 'ninety-seven thousand five hundred thirty-nine'),\n(21534, 91772, 'ninety-one thousand seven hundred seventy-two'),\n(21535, 73126, 'seventy-three thousand one hundred twenty-six'),\n(21536, 86589, 'eighty-six thousand five hundred eighty-nine'),\n(21537, 96126, 'ninety-six thousand one hundred twenty-six'),\n(21538, 84447, 'eighty-four thousand four hundred forty-seven'),\n(21539, 72310, 'seventy-two thousand three hundred ten'),\n(21540, 18829, 'eighteen thousand eight hundred twenty-nine'),\n(21541, 19148, 'nineteen thousand one hundred forty-eight'),\n(21542, 97257, 'ninety-seven thousand two hundred fifty-seven'),\n(21543, 98677, 'ninety-eight thousand six hundred seventy-seven'),\n(21544, 29769, 'twenty-nine thousand seven hundred sixty-nine'),\n(21545, 54671, 'fifty-four thousand six hundred seventy-one'),\n(21546, 18598, 'eighteen thousand five hundred ninety-eight'),\n(21547, 53259, 'fifty-three thousand two hundred fifty-nine'),\n(21548, 26847, 'twenty-six thousand eight hundred forty-seven'),\n(21549, 8886, 'eight thousand eight hundred eighty-six'),\n(21550, 99129, 'ninety-nine thousand one hundred twenty-nine'),\n(21551, 74547, 'seventy-four thousand five hundred forty-seven'),\n(21552, 48185, 'forty-eight thousand one hundred eighty-five'),\n(21553, 73522, 'seventy-three thousand five hundred twenty-two'),\n(21554, 88478, 'eighty-eight thousand four hundred seventy-eight'),\n(21555, 61341, 'sixty-one thousand three hundred forty-one'),\n(21556, 76056, 'seventy-six thousand fifty-six'),\n(21557, 82915, 'eighty-two thousand nine hundred fifteen'),\n(21558, 89760, 'eighty-nine thousand seven hundred sixty'),\n(21559, 86237, 'eighty-six thousand two hundred thirty-seven'),\n(21560, 42146, 'forty-two thousand one hundred forty-six'),\n(21561, 56689, 'fifty-six thousand six hundred eighty-nine'),\n(21562, 13458, 'thirteen thousand four hundred fifty-eight'),\n(21563, 66809, 'sixty-six thousand eight hundred nine'),\n(21564, 59628, 'fifty-nine thousand six hundred twenty-eight'),\n(21565, 4091, 'four thousand ninety-one'),\n(21566, 6728, 'six thousand seven hundred twenty-eight'),\n(21567, 56263, 'fifty-six thousand two hundred sixty-three'),\n(21568, 64969, 'sixty-four thousand nine hundred sixty-nine'),\n(21569, 59894, 'fifty-nine thousand eight hundred ninety-four'),\n(21570, 34055, 'thirty-four thousand fifty-five'),\n(21571, 60244, 'sixty thousand two hundred forty-four'),\n(21572, 39364, 'thirty-nine thousand three hundred sixty-four'),\n(21573, 10139, 'ten thousand one hundred thirty-nine'),\n(21574, 87016, 'eighty-seven thousand sixteen'),\n(21575, 86302, 'eighty-six thousand three hundred two'),\n(21576, 71826, 'seventy-one thousand eight hundred twenty-six'),\n(21577, 72801, 'seventy-two thousand eight hundred one'),\n(21578, 88955, 'eighty-eight thousand nine hundred fifty-five'),\n(21579, 47171, 'forty-seven thousand one hundred seventy-one'),\n(21580, 16583, 'sixteen thousand five hundred eighty-three'),\n(21581, 12476, 'twelve thousand four hundred seventy-six'),\n(21582, 73586, 'seventy-three thousand five hundred eighty-six'),\n(21583, 69546, 'sixty-nine thousand five hundred forty-six'),\n(21584, 67841, 'sixty-seven thousand eight hundred forty-one'),\n(21585, 71758, 'seventy-one thousand seven hundred fifty-eight'),\n(21586, 96169, 'ninety-six thousand one hundred sixty-nine'),\n(21587, 25453, 'twenty-five thousand four hundred fifty-three'),\n(21588, 19691, 'nineteen thousand six hundred ninety-one'),\n(21589, 66236, 'sixty-six thousand two hundred thirty-six'),\n(21590, 48160, 'forty-eight thousand one hundred sixty'),\n(21591, 88173, 'eighty-eight thousand one hundred seventy-three'),\n(21592, 64755, 'sixty-four thousand seven hundred fifty-five'),\n(21593, 81286, 'eighty-one thousand two hundred eighty-six'),\n(21594, 68945, 'sixty-eight thousand nine hundred forty-five'),\n(21595, 27970, 'twenty-seven thousand nine hundred seventy'),\n(21596, 18679, 'eighteen thousand six hundred seventy-nine'),\n(21597, 35565, 'thirty-five thousand five hundred sixty-five'),\n(21598, 30835, 'thirty thousand eight hundred thirty-five'),\n(21599, 35010, 'thirty-five thousand ten'),\n(21600, 85539, 'eighty-five thousand five hundred thirty-nine'),\n(21601, 70412, 'seventy thousand four hundred twelve'),\n(21602, 21032, 'twenty-one thousand thirty-two'),\n(21603, 57223, 'fifty-seven thousand two hundred twenty-three'),\n(21604, 60443, 'sixty thousand four hundred forty-three'),\n(21605, 85621, 'eighty-five thousand six hundred twenty-one'),\n(21606, 19692, 'nineteen thousand six hundred ninety-two'),\n(21607, 54266, 'fifty-four thousand two hundred sixty-six'),\n(21608, 97028, 'ninety-seven thousand twenty-eight'),\n(21609, 4670, 'four thousand six hundred seventy'),\n(21610, 98178, 'ninety-eight thousand one hundred seventy-eight'),\n(21611, 98359, 'ninety-eight thousand three hundred fifty-nine'),\n(21612, 61961, 'sixty-one thousand nine hundred sixty-one'),\n(21613, 9739, 'nine thousand seven hundred thirty-nine'),\n(21614, 29973, 'twenty-nine thousand nine hundred seventy-three'),\n(21615, 35991, 'thirty-five thousand nine hundred ninety-one'),\n(21616, 28889, 'twenty-eight thousand eight hundred eighty-nine'),\n(21617, 55720, 'fifty-five thousand seven hundred twenty'),\n(21618, 33435, 'thirty-three thousand four hundred thirty-five'),\n(21619, 37358, 'thirty-seven thousand three hundred fifty-eight'),\n(21620, 54114, 'fifty-four thousand one hundred fourteen'),\n(21621, 43990, 'forty-three thousand nine hundred ninety'),\n(21622, 66541, 'sixty-six thousand five hundred forty-one'),\n(21623, 87493, 'eighty-seven thousand four hundred ninety-three'),\n(21624, 55828, 'fifty-five thousand eight hundred twenty-eight'),\n(21625, 77336, 'seventy-seven thousand three hundred thirty-six'),\n(21626, 76885, 'seventy-six thousand eight hundred eighty-five'),\n(21627, 94799, 'ninety-four thousand seven hundred ninety-nine'),\n(21628, 73560, 'seventy-three thousand five hundred sixty'),\n(21629, 24910, 'twenty-four thousand nine hundred ten'),\n(21630, 51904, 'fifty-one thousand nine hundred four'),\n(21631, 78312, 'seventy-eight thousand three hundred twelve'),\n(21632, 80111, 'eighty thousand one hundred eleven'),\n(21633, 47097, 'forty-seven thousand ninety-seven'),\n(21634, 58822, 'fifty-eight thousand eight hundred twenty-two'),\n(21635, 94797, 'ninety-four thousand seven hundred ninety-seven'),\n(21636, 41647, 'forty-one thousand six hundred forty-seven'),\n(21637, 67488, 'sixty-seven thousand four hundred eighty-eight'),\n(21638, 73991, 'seventy-three thousand nine hundred ninety-one'),\n(21639, 19018, 'nineteen thousand eighteen'),\n(21640, 46130, 'forty-six thousand one hundred thirty'),\n(21641, 49619, 'forty-nine thousand six hundred nineteen'),\n(21642, 86410, 'eighty-six thousand four hundred ten'),\n(21643, 98746, 'ninety-eight thousand seven hundred forty-six'),\n(21644, 80081, 'eighty thousand eighty-one'),\n(21645, 23602, 'twenty-three thousand six hundred two'),\n(21646, 53738, 'fifty-three thousand seven hundred thirty-eight'),\n(21647, 57507, 'fifty-seven thousand five hundred seven'),\n(21648, 91098, 'ninety-one thousand ninety-eight'),\n(21649, 22548, 'twenty-two thousand five hundred forty-eight'),\n(21650, 52949, 'fifty-two thousand nine hundred forty-nine'),\n(21651, 48397, 'forty-eight thousand three hundred ninety-seven'),\n(21652, 68520, 'sixty-eight thousand five hundred twenty'),\n(21653, 45764, 'forty-five thousand seven hundred sixty-four'),\n(21654, 89042, 'eighty-nine thousand forty-two'),\n(21655, 81841, 'eighty-one thousand eight hundred forty-one'),\n(21656, 61921, 'sixty-one thousand nine hundred twenty-one'),\n(21657, 33447, 'thirty-three thousand four hundred forty-seven'),\n(21658, 23029, 'twenty-three thousand twenty-nine'),\n(21659, 20860, 'twenty thousand eight hundred sixty'),\n(21660, 52724, 'fifty-two thousand seven hundred twenty-four'),\n(21661, 27520, 'twenty-seven thousand five hundred twenty'),\n(21662, 12842, 'twelve thousand eight hundred forty-two'),\n(21663, 58656, 'fifty-eight thousand six hundred fifty-six'),\n(21664, 99320, 'ninety-nine thousand three hundred twenty'),\n(21665, 80694, 'eighty thousand six hundred ninety-four'),\n(21666, 4065, 'four thousand sixty-five'),\n(21667, 68726, 'sixty-eight thousand seven hundred twenty-six'),\n(21668, 5703, 'five thousand seven hundred three'),\n(21669, 42800, 'forty-two thousand eight hundred'),\n(21670, 36919, 'thirty-six thousand nine hundred nineteen'),\n(21671, 17720, 'seventeen thousand seven hundred twenty'),\n(21672, 70908, 'seventy thousand nine hundred eight'),\n(21673, 64337, 'sixty-four thousand three hundred thirty-seven'),\n(21674, 27963, 'twenty-seven thousand nine hundred sixty-three'),\n(21675, 74404, 'seventy-four thousand four hundred four'),\n(21676, 62765, 'sixty-two thousand seven hundred sixty-five'),\n(21677, 86854, 'eighty-six thousand eight hundred fifty-four'),\n(21678, 20013, 'twenty thousand thirteen'),\n(21679, 89292, 'eighty-nine thousand two hundred ninety-two'),\n(21680, 17617, 'seventeen thousand six hundred seventeen'),\n(21681, 17373, 'seventeen thousand three hundred seventy-three'),\n(21682, 1565, 'one thousand five hundred sixty-five'),\n(21683, 66398, 'sixty-six thousand three hundred ninety-eight'),\n(21684, 90905, 'ninety thousand nine hundred five'),\n(21685, 82850, 'eighty-two thousand eight hundred fifty'),\n(21686, 39995, 'thirty-nine thousand nine hundred ninety-five'),\n(21687, 67839, 'sixty-seven thousand eight hundred thirty-nine'),\n(21688, 33093, 'thirty-three thousand ninety-three'),\n(21689, 93729, 'ninety-three thousand seven hundred twenty-nine'),\n(21690, 31005, 'thirty-one thousand five'),\n(21691, 37862, 'thirty-seven thousand eight hundred sixty-two'),\n(21692, 68511, 'sixty-eight thousand five hundred eleven'),\n(21693, 4341, 'four thousand three hundred forty-one'),\n(21694, 97807, 'ninety-seven thousand eight hundred seven'),\n(21695, 23951, 'twenty-three thousand nine hundred fifty-one'),\n(21696, 96296, 'ninety-six thousand two hundred ninety-six'),\n(21697, 5501, 'five thousand five hundred one'),\n(21698, 97834, 'ninety-seven thousand eight hundred thirty-four'),\n(21699, 45237, 'forty-five thousand two hundred thirty-seven'),\n(21700, 40405, 'forty thousand four hundred five'),\n(21701, 88857, 'eighty-eight thousand eight hundred fifty-seven'),\n(21702, 78751, 'seventy-eight thousand seven hundred fifty-one'),\n(21703, 89831, 'eighty-nine thousand eight hundred thirty-one'),\n(21704, 6171, 'six thousand one hundred seventy-one'),\n(21705, 90377, 'ninety thousand three hundred seventy-seven'),\n(21706, 43306, 'forty-three thousand three hundred six'),\n(21707, 56331, 'fifty-six thousand three hundred thirty-one'),\n(21708, 98964, 'ninety-eight thousand nine hundred sixty-four'),\n(21709, 21825, 'twenty-one thousand eight hundred twenty-five'),\n(21710, 69346, 'sixty-nine thousand three hundred forty-six'),\n(21711, 53177, 'fifty-three thousand one hundred seventy-seven'),\n(21712, 83594, 'eighty-three thousand five hundred ninety-four'),\n(21713, 60761, 'sixty thousand seven hundred sixty-one'),\n(21714, 42793, 'forty-two thousand seven hundred ninety-three'),\n(21715, 29174, 'twenty-nine thousand one hundred seventy-four'),\n(21716, 56968, 'fifty-six thousand nine hundred sixty-eight'),\n(21717, 37084, 'thirty-seven thousand eighty-four'),\n(21718, 61554, 'sixty-one thousand five hundred fifty-four'),\n(21719, 64985, 'sixty-four thousand nine hundred eighty-five'),\n(21720, 68130, 'sixty-eight thousand one hundred thirty'),\n(21721, 30015, 'thirty thousand fifteen'),\n(21722, 71322, 'seventy-one thousand three hundred twenty-two'),\n(21723, 15126, 'fifteen thousand one hundred twenty-six'),\n(21724, 34535, 'thirty-four thousand five hundred thirty-five'),\n(21725, 65715, 'sixty-five thousand seven hundred fifteen'),\n(21726, 79774, 'seventy-nine thousand seven hundred seventy-four'),\n(21727, 81942, 'eighty-one thousand nine hundred forty-two'),\n(21728, 94781, 'ninety-four thousand seven hundred eighty-one'),\n(21729, 83743, 'eighty-three thousand seven hundred forty-three'),\n(21730, 63858, 'sixty-three thousand eight hundred fifty-eight'),\n(21731, 94141, 'ninety-four thousand one hundred forty-one'),\n(21732, 21591, 'twenty-one thousand five hundred ninety-one'),\n(21733, 57667, 'fifty-seven thousand six hundred sixty-seven'),\n(21734, 4716, 'four thousand seven hundred sixteen'),\n(21735, 46004, 'forty-six thousand four'),\n(21736, 86420, 'eighty-six thousand four hundred twenty'),\n(21737, 90992, 'ninety thousand nine hundred ninety-two'),\n(21738, 19485, 'nineteen thousand four hundred eighty-five'),\n(21739, 6993, 'six thousand nine hundred ninety-three'),\n(21740, 25064, 'twenty-five thousand sixty-four'),\n(21741, 69267, 'sixty-nine thousand two hundred sixty-seven'),\n(21742, 28914, 'twenty-eight thousand nine hundred fourteen'),\n(21743, 3114, 'three thousand one hundred fourteen'),\n(21744, 95079, 'ninety-five thousand seventy-nine'),\n(21745, 27567, 'twenty-seven thousand five hundred sixty-seven'),\n(21746, 60035, 'sixty thousand thirty-five'),\n(21747, 84652, 'eighty-four thousand six hundred fifty-two'),\n(21748, 40368, 'forty thousand three hundred sixty-eight'),\n(21749, 51076, 'fifty-one thousand seventy-six'),\n(21750, 9999, 'nine thousand nine hundred ninety-nine'),\n(21751, 54720, 'fifty-four thousand seven hundred twenty'),\n(21752, 75631, 'seventy-five thousand six hundred thirty-one'),\n(21753, 15827, 'fifteen thousand eight hundred twenty-seven'),\n(21754, 81618, 'eighty-one thousand six hundred eighteen'),\n(21755, 58561, 'fifty-eight thousand five hundred sixty-one'),\n(21756, 97117, 'ninety-seven thousand one hundred seventeen'),\n(21757, 39525, 'thirty-nine thousand five hundred twenty-five'),\n(21758, 43578, 'forty-three thousand five hundred seventy-eight'),\n(21759, 94515, 'ninety-four thousand five hundred fifteen'),\n(21760, 72718, 'seventy-two thousand seven hundred eighteen'),\n(21761, 21522, 'twenty-one thousand five hundred twenty-two'),\n(21762, 50014, 'fifty thousand fourteen'),\n(21763, 51048, 'fifty-one thousand forty-eight'),\n(21764, 67155, 'sixty-seven thousand one hundred fifty-five'),\n(21765, 25380, 'twenty-five thousand three hundred eighty'),\n(21766, 80252, 'eighty thousand two hundred fifty-two'),\n(21767, 68528, 'sixty-eight thousand five hundred twenty-eight'),\n(21768, 73870, 'seventy-three thousand eight hundred seventy'),\n(21769, 51953, 'fifty-one thousand nine hundred fifty-three'),\n(21770, 39891, 'thirty-nine thousand eight hundred ninety-one'),\n(21771, 16758, 'sixteen thousand seven hundred fifty-eight'),\n(21772, 13352, 'thirteen thousand three hundred fifty-two'),\n(21773, 88431, 'eighty-eight thousand four hundred thirty-one'),\n(21774, 4485, 'four thousand four hundred eighty-five'),\n(21775, 53749, 'fifty-three thousand seven hundred forty-nine'),\n(21776, 14934, 'fourteen thousand nine hundred thirty-four'),\n(21777, 70610, 'seventy thousand six hundred ten'),\n(21778, 23436, 'twenty-three thousand four hundred thirty-six'),\n(21779, 91687, 'ninety-one thousand six hundred eighty-seven'),\n(21780, 82018, 'eighty-two thousand eighteen'),\n(21781, 98497, 'ninety-eight thousand four hundred ninety-seven'),\n(21782, 17450, 'seventeen thousand four hundred fifty'),\n(21783, 93562, 'ninety-three thousand five hundred sixty-two'),\n(21784, 38979, 'thirty-eight thousand nine hundred seventy-nine'),\n(21785, 91797, 'ninety-one thousand seven hundred ninety-seven'),\n(21786, 75183, 'seventy-five thousand one hundred eighty-three'),\n(21787, 94341, 'ninety-four thousand three hundred forty-one'),\n(21788, 75405, 'seventy-five thousand four hundred five'),\n(21789, 66537, 'sixty-six thousand five hundred thirty-seven'),\n(21790, 52209, 'fifty-two thousand two hundred nine'),\n(21791, 99338, 'ninety-nine thousand three hundred thirty-eight'),\n(21792, 20662, 'twenty thousand six hundred sixty-two'),\n(21793, 10920, 'ten thousand nine hundred twenty'),\n(21794, 2709, 'two thousand seven hundred nine'),\n(21795, 72310, 'seventy-two thousand three hundred ten'),\n(21796, 6286, 'six thousand two hundred eighty-six'),\n(21797, 87500, 'eighty-seven thousand five hundred'),\n(21798, 72328, 'seventy-two thousand three hundred twenty-eight'),\n(21799, 76075, 'seventy-six thousand seventy-five'),\n(21800, 8544, 'eight thousand five hundred forty-four'),\n(21801, 74734, 'seventy-four thousand seven hundred thirty-four'),\n(21802, 67474, 'sixty-seven thousand four hundred seventy-four'),\n(21803, 87012, 'eighty-seven thousand twelve'),\n(21804, 99064, 'ninety-nine thousand sixty-four'),\n(21805, 29634, 'twenty-nine thousand six hundred thirty-four'),\n(21806, 47705, 'forty-seven thousand seven hundred five'),\n(21807, 33764, 'thirty-three thousand seven hundred sixty-four'),\n(21808, 39170, 'thirty-nine thousand one hundred seventy'),\n(21809, 41108, 'forty-one thousand one hundred eight'),\n(21810, 57917, 'fifty-seven thousand nine hundred seventeen'),\n(21811, 8329, 'eight thousand three hundred twenty-nine'),\n(21812, 67604, 'sixty-seven thousand six hundred four'),\n(21813, 59359, 'fifty-nine thousand three hundred fifty-nine'),\n(21814, 17918, 'seventeen thousand nine hundred eighteen'),\n(21815, 87327, 'eighty-seven thousand three hundred twenty-seven'),\n(21816, 31095, 'thirty-one thousand ninety-five'),\n(21817, 27969, 'twenty-seven thousand nine hundred sixty-nine'),\n(21818, 69506, 'sixty-nine thousand five hundred six'),\n(21819, 70904, 'seventy thousand nine hundred four'),\n(21820, 92884, 'ninety-two thousand eight hundred eighty-four'),\n(21821, 32971, 'thirty-two thousand nine hundred seventy-one'),\n(21822, 65546, 'sixty-five thousand five hundred forty-six'),\n(21823, 50857, 'fifty thousand eight hundred fifty-seven'),\n(21824, 35789, 'thirty-five thousand seven hundred eighty-nine'),\n(21825, 4288, 'four thousand two hundred eighty-eight'),\n(21826, 90398, 'ninety thousand three hundred ninety-eight'),\n(21827, 42854, 'forty-two thousand eight hundred fifty-four'),\n(21828, 32745, 'thirty-two thousand seven hundred forty-five'),\n(21829, 48947, 'forty-eight thousand nine hundred forty-seven'),\n(21830, 92941, 'ninety-two thousand nine hundred forty-one'),\n(21831, 23727, 'twenty-three thousand seven hundred twenty-seven'),\n(21832, 68653, 'sixty-eight thousand six hundred fifty-three'),\n(21833, 30849, 'thirty thousand eight hundred forty-nine'),\n(21834, 22341, 'twenty-two thousand three hundred forty-one'),\n(21835, 75943, 'seventy-five thousand nine hundred forty-three'),\n(21836, 60832, 'sixty thousand eight hundred thirty-two'),\n(21837, 15379, 'fifteen thousand three hundred seventy-nine'),\n(21838, 9633, 'nine thousand six hundred thirty-three'),\n(21839, 16192, 'sixteen thousand one hundred ninety-two'),\n(21840, 7455, 'seven thousand four hundred fifty-five'),\n(21841, 93093, 'ninety-three thousand ninety-three'),\n(21842, 16607, 'sixteen thousand six hundred seven'),\n(21843, 44581, 'forty-four thousand five hundred eighty-one'),\n(21844, 44141, 'forty-four thousand one hundred forty-one'),\n(21845, 99823, 'ninety-nine thousand eight hundred twenty-three'),\n(21846, 79086, 'seventy-nine thousand eighty-six'),\n(21847, 53969, 'fifty-three thousand nine hundred sixty-nine'),\n(21848, 30312, 'thirty thousand three hundred twelve'),\n(21849, 65113, 'sixty-five thousand one hundred thirteen'),\n(21850, 10777, 'ten thousand seven hundred seventy-seven'),\n(21851, 47268, 'forty-seven thousand two hundred sixty-eight'),\n(21852, 84667, 'eighty-four thousand six hundred sixty-seven'),\n(21853, 39774, 'thirty-nine thousand seven hundred seventy-four'),\n(21854, 52091, 'fifty-two thousand ninety-one'),\n(21855, 92660, 'ninety-two thousand six hundred sixty'),\n(21856, 47736, 'forty-seven thousand seven hundred thirty-six'),\n(21857, 97166, 'ninety-seven thousand one hundred sixty-six'),\n(21858, 96227, 'ninety-six thousand two hundred twenty-seven'),\n(21859, 33203, 'thirty-three thousand two hundred three'),\n(21860, 33046, 'thirty-three thousand forty-six'),\n(21861, 30118, 'thirty thousand one hundred eighteen'),\n(21862, 56096, 'fifty-six thousand ninety-six'),\n(21863, 35752, 'thirty-five thousand seven hundred fifty-two'),\n(21864, 33698, 'thirty-three thousand six hundred ninety-eight'),\n(21865, 78295, 'seventy-eight thousand two hundred ninety-five'),\n(21866, 10199, 'ten thousand one hundred ninety-nine'),\n(21867, 39004, 'thirty-nine thousand four'),\n(21868, 90378, 'ninety thousand three hundred seventy-eight'),\n(21869, 76915, 'seventy-six thousand nine hundred fifteen'),\n(21870, 55631, 'fifty-five thousand six hundred thirty-one'),\n(21871, 74979, 'seventy-four thousand nine hundred seventy-nine'),\n(21872, 97225, 'ninety-seven thousand two hundred twenty-five'),\n(21873, 94842, 'ninety-four thousand eight hundred forty-two'),\n(21874, 21478, 'twenty-one thousand four hundred seventy-eight'),\n(21875, 4652, 'four thousand six hundred fifty-two'),\n(21876, 82748, 'eighty-two thousand seven hundred forty-eight'),\n(21877, 47630, 'forty-seven thousand six hundred thirty'),\n(21878, 43209, 'forty-three thousand two hundred nine'),\n(21879, 37997, 'thirty-seven thousand nine hundred ninety-seven'),\n(21880, 68641, 'sixty-eight thousand six hundred forty-one'),\n(21881, 56459, 'fifty-six thousand four hundred fifty-nine'),\n(21882, 39403, 'thirty-nine thousand four hundred three'),\n(21883, 57796, 'fifty-seven thousand seven hundred ninety-six'),\n(21884, 8415, 'eight thousand four hundred fifteen'),\n(21885, 47413, 'forty-seven thousand four hundred thirteen'),\n(21886, 38099, 'thirty-eight thousand ninety-nine'),\n(21887, 5485, 'five thousand four hundred eighty-five'),\n(21888, 91519, 'ninety-one thousand five hundred nineteen'),\n(21889, 55128, 'fifty-five thousand one hundred twenty-eight'),\n(21890, 28634, 'twenty-eight thousand six hundred thirty-four'),\n(21891, 76248, 'seventy-six thousand two hundred forty-eight'),\n(21892, 89658, 'eighty-nine thousand six hundred fifty-eight'),\n(21893, 91945, 'ninety-one thousand nine hundred forty-five'),\n(21894, 64582, 'sixty-four thousand five hundred eighty-two'),\n(21895, 86153, 'eighty-six thousand one hundred fifty-three'),\n(21896, 78557, 'seventy-eight thousand five hundred fifty-seven'),\n(21897, 67688, 'sixty-seven thousand six hundred eighty-eight'),\n(21898, 66032, 'sixty-six thousand thirty-two'),\n(21899, 88081, 'eighty-eight thousand eighty-one'),\n(21900, 36291, 'thirty-six thousand two hundred ninety-one'),\n(21901, 44679, 'forty-four thousand six hundred seventy-nine'),\n(21902, 31126, 'thirty-one thousand one hundred twenty-six'),\n(21903, 46538, 'forty-six thousand five hundred thirty-eight'),\n(21904, 77708, 'seventy-seven thousand seven hundred eight'),\n(21905, 54121, 'fifty-four thousand one hundred twenty-one'),\n(21906, 76197, 'seventy-six thousand one hundred ninety-seven'),\n(21907, 25453, 'twenty-five thousand four hundred fifty-three'),\n(21908, 22099, 'twenty-two thousand ninety-nine'),\n(21909, 8369, 'eight thousand three hundred sixty-nine'),\n(21910, 83817, 'eighty-three thousand eight hundred seventeen'),\n(21911, 94769, 'ninety-four thousand seven hundred sixty-nine'),\n(21912, 47835, 'forty-seven thousand eight hundred thirty-five'),\n(21913, 62419, 'sixty-two thousand four hundred nineteen'),\n(21914, 44499, 'forty-four thousand four hundred ninety-nine'),\n(21915, 86687, 'eighty-six thousand six hundred eighty-seven'),\n(21916, 21177, 'twenty-one thousand one hundred seventy-seven'),\n(21917, 40121, 'forty thousand one hundred twenty-one'),\n(21918, 2924, 'two thousand nine hundred twenty-four'),\n(21919, 77515, 'seventy-seven thousand five hundred fifteen'),\n(21920, 23061, 'twenty-three thousand sixty-one'),\n(21921, 84221, 'eighty-four thousand two hundred twenty-one'),\n(21922, 60092, 'sixty thousand ninety-two'),\n(21923, 69903, 'sixty-nine thousand nine hundred three'),\n(21924, 45916, 'forty-five thousand nine hundred sixteen'),\n(21925, 98372, 'ninety-eight thousand three hundred seventy-two'),\n(21926, 29329, 'twenty-nine thousand three hundred twenty-nine'),\n(21927, 25083, 'twenty-five thousand eighty-three'),\n(21928, 52504, 'fifty-two thousand five hundred four'),\n(21929, 65295, 'sixty-five thousand two hundred ninety-five'),\n(21930, 15269, 'fifteen thousand two hundred sixty-nine'),\n(21931, 87628, 'eighty-seven thousand six hundred twenty-eight'),\n(21932, 77470, 'seventy-seven thousand four hundred seventy'),\n(21933, 13420, 'thirteen thousand four hundred twenty'),\n(21934, 83703, 'eighty-three thousand seven hundred three'),\n(21935, 94774, 'ninety-four thousand seven hundred seventy-four'),\n(21936, 33634, 'thirty-three thousand six hundred thirty-four'),\n(21937, 25273, 'twenty-five thousand two hundred seventy-three'),\n(21938, 95282, 'ninety-five thousand two hundred eighty-two'),\n(21939, 99845, 'ninety-nine thousand eight hundred forty-five'),\n(21940, 17647, 'seventeen thousand six hundred forty-seven'),\n(21941, 44078, 'forty-four thousand seventy-eight'),\n(21942, 75405, 'seventy-five thousand four hundred five'),\n(21943, 36585, 'thirty-six thousand five hundred eighty-five'),\n(21944, 6473, 'six thousand four hundred seventy-three'),\n(21945, 76932, 'seventy-six thousand nine hundred thirty-two'),\n(21946, 14319, 'fourteen thousand three hundred nineteen'),\n(21947, 63996, 'sixty-three thousand nine hundred ninety-six'),\n(21948, 56276, 'fifty-six thousand two hundred seventy-six'),\n(21949, 22356, 'twenty-two thousand three hundred fifty-six'),\n(21950, 40348, 'forty thousand three hundred forty-eight'),\n(21951, 42079, 'forty-two thousand seventy-nine'),\n(21952, 80634, 'eighty thousand six hundred thirty-four'),\n(21953, 70610, 'seventy thousand six hundred ten'),\n(21954, 66029, 'sixty-six thousand twenty-nine'),\n(21955, 90633, 'ninety thousand six hundred thirty-three'),\n(21956, 65380, 'sixty-five thousand three hundred eighty'),\n(21957, 94403, 'ninety-four thousand four hundred three'),\n(21958, 46758, 'forty-six thousand seven hundred fifty-eight'),\n(21959, 26535, 'twenty-six thousand five hundred thirty-five'),\n(21960, 48445, 'forty-eight thousand four hundred forty-five'),\n(21961, 8762, 'eight thousand seven hundred sixty-two'),\n(21962, 79914, 'seventy-nine thousand nine hundred fourteen'),\n(21963, 56382, 'fifty-six thousand three hundred eighty-two'),\n(21964, 30100, 'thirty thousand one hundred'),\n(21965, 17523, 'seventeen thousand five hundred twenty-three'),\n(21966, 49851, 'forty-nine thousand eight hundred fifty-one'),\n(21967, 74393, 'seventy-four thousand three hundred ninety-three'),\n(21968, 68835, 'sixty-eight thousand eight hundred thirty-five'),\n(21969, 18575, 'eighteen thousand five hundred seventy-five'),\n(21970, 30917, 'thirty thousand nine hundred seventeen'),\n(21971, 44203, 'forty-four thousand two hundred three'),\n(21972, 11347, 'eleven thousand three hundred forty-seven'),\n(21973, 92433, 'ninety-two thousand four hundred thirty-three'),\n(21974, 60395, 'sixty thousand three hundred ninety-five'),\n(21975, 90768, 'ninety thousand seven hundred sixty-eight'),\n(21976, 82429, 'eighty-two thousand four hundred twenty-nine'),\n(21977, 96538, 'ninety-six thousand five hundred thirty-eight'),\n(21978, 5518, 'five thousand five hundred eighteen'),\n(21979, 26303, 'twenty-six thousand three hundred three'),\n(21980, 24734, 'twenty-four thousand seven hundred thirty-four'),\n(21981, 35227, 'thirty-five thousand two hundred twenty-seven'),\n(21982, 50495, 'fifty thousand four hundred ninety-five'),\n(21983, 93473, 'ninety-three thousand four hundred seventy-three'),\n(21984, 38333, 'thirty-eight thousand three hundred thirty-three'),\n(21985, 1973, 'one thousand nine hundred seventy-three'),\n(21986, 72879, 'seventy-two thousand eight hundred seventy-nine'),\n(21987, 28969, 'twenty-eight thousand nine hundred sixty-nine'),\n(21988, 55017, 'fifty-five thousand seventeen'),\n(21989, 78751, 'seventy-eight thousand seven hundred fifty-one'),\n(21990, 27198, 'twenty-seven thousand one hundred ninety-eight'),\n(21991, 24835, 'twenty-four thousand eight hundred thirty-five'),\n(21992, 98192, 'ninety-eight thousand one hundred ninety-two'),\n(21993, 19795, 'nineteen thousand seven hundred ninety-five'),\n(21994, 39801, 'thirty-nine thousand eight hundred one'),\n(21995, 20349, 'twenty thousand three hundred forty-nine'),\n(21996, 99510, 'ninety-nine thousand five hundred ten'),\n(21997, 48628, 'forty-eight thousand six hundred twenty-eight'),\n(21998, 25333, 'twenty-five thousand three hundred thirty-three'),\n(21999, 36647, 'thirty-six thousand six hundred forty-seven'),\n(22000, 66560, 'sixty-six thousand five hundred sixty'),\n(22001, 92593, 'ninety-two thousand five hundred ninety-three'),\n(22002, 60865, 'sixty thousand eight hundred sixty-five'),\n(22003, 26079, 'twenty-six thousand seventy-nine'),\n(22004, 42325, 'forty-two thousand three hundred twenty-five'),\n(22005, 46686, 'forty-six thousand six hundred eighty-six'),\n(22006, 95396, 'ninety-five thousand three hundred ninety-six'),\n(22007, 19469, 'nineteen thousand four hundred sixty-nine'),\n(22008, 31944, 'thirty-one thousand nine hundred forty-four'),\n(22009, 50232, 'fifty thousand two hundred thirty-two'),\n(22010, 87423, 'eighty-seven thousand four hundred twenty-three'),\n(22011, 70904, 'seventy thousand nine hundred four'),\n(22012, 11860, 'eleven thousand eight hundred sixty'),\n(22013, 24315, 'twenty-four thousand three hundred fifteen'),\n(22014, 21198, 'twenty-one thousand one hundred ninety-eight'),\n(22015, 70848, 'seventy thousand eight hundred forty-eight'),\n(22016, 61107, 'sixty-one thousand one hundred seven'),\n(22017, 76396, 'seventy-six thousand three hundred ninety-six'),\n(22018, 16940, 'sixteen thousand nine hundred forty'),\n(22019, 16966, 'sixteen thousand nine hundred sixty-six'),\n(22020, 63684, 'sixty-three thousand six hundred eighty-four'),\n(22021, 80970, 'eighty thousand nine hundred seventy'),\n(22022, 67388, 'sixty-seven thousand three hundred eighty-eight'),\n(22023, 52517, 'fifty-two thousand five hundred seventeen'),\n(22024, 70927, 'seventy thousand nine hundred twenty-seven'),\n(22025, 9211, 'nine thousand two hundred eleven'),\n(22026, 48190, 'forty-eight thousand one hundred ninety'),\n(22027, 85062, 'eighty-five thousand sixty-two'),\n(22028, 63665, 'sixty-three thousand six hundred sixty-five'),\n(22029, 31791, 'thirty-one thousand seven hundred ninety-one'),\n(22030, 83974, 'eighty-three thousand nine hundred seventy-four'),\n(22031, 38592, 'thirty-eight thousand five hundred ninety-two'),\n(22032, 60492, 'sixty thousand four hundred ninety-two'),\n(22033, 67278, 'sixty-seven thousand two hundred seventy-eight'),\n(22034, 40641, 'forty thousand six hundred forty-one'),\n(22035, 88920, 'eighty-eight thousand nine hundred twenty'),\n(22036, 98712, 'ninety-eight thousand seven hundred twelve'),\n(22037, 57458, 'fifty-seven thousand four hundred fifty-eight'),\n(22038, 6475, 'six thousand four hundred seventy-five'),\n(22039, 85301, 'eighty-five thousand three hundred one'),\n(22040, 70311, 'seventy thousand three hundred eleven'),\n(22041, 50789, 'fifty thousand seven hundred eighty-nine'),\n(22042, 1718, 'one thousand seven hundred eighteen'),\n(22043, 40565, 'forty thousand five hundred sixty-five'),\n(22044, 171, 'one hundred seventy-one'),\n(22045, 57255, 'fifty-seven thousand two hundred fifty-five'),\n(22046, 20144, 'twenty thousand one hundred forty-four'),\n(22047, 75646, 'seventy-five thousand six hundred forty-six'),\n(22048, 80232, 'eighty thousand two hundred thirty-two'),\n(22049, 20449, 'twenty thousand four hundred forty-nine'),\n(22050, 66904, 'sixty-six thousand nine hundred four'),\n(22051, 4763, 'four thousand seven hundred sixty-three'),\n(22052, 86920, 'eighty-six thousand nine hundred twenty'),\n(22053, 21218, 'twenty-one thousand two hundred eighteen'),\n(22054, 5994, 'five thousand nine hundred ninety-four'),\n(22055, 66771, 'sixty-six thousand seven hundred seventy-one'),\n(22056, 82911, 'eighty-two thousand nine hundred eleven'),\n(22057, 12842, 'twelve thousand eight hundred forty-two'),\n(22058, 33261, 'thirty-three thousand two hundred sixty-one'),\n(22059, 82572, 'eighty-two thousand five hundred seventy-two'),\n(22060, 12893, 'twelve thousand eight hundred ninety-three'),\n(22061, 4185, 'four thousand one hundred eighty-five'),\n(22062, 21705, 'twenty-one thousand seven hundred five'),\n(22063, 86817, 'eighty-six thousand eight hundred seventeen'),\n(22064, 76944, 'seventy-six thousand nine hundred forty-four'),\n(22065, 92861, 'ninety-two thousand eight hundred sixty-one'),\n(22066, 40617, 'forty thousand six hundred seventeen'),\n(22067, 78125, 'seventy-eight thousand one hundred twenty-five'),\n(22068, 84567, 'eighty-four thousand five hundred sixty-seven'),\n(22069, 54283, 'fifty-four thousand two hundred eighty-three'),\n(22070, 41122, 'forty-one thousand one hundred twenty-two'),\n(22071, 64794, 'sixty-four thousand seven hundred ninety-four'),\n(22072, 57904, 'fifty-seven thousand nine hundred four'),\n(22073, 70334, 'seventy thousand three hundred thirty-four'),\n(22074, 76547, 'seventy-six thousand five hundred forty-seven'),\n(22075, 41099, 'forty-one thousand ninety-nine'),\n(22076, 41852, 'forty-one thousand eight hundred fifty-two'),\n(22077, 95399, 'ninety-five thousand three hundred ninety-nine'),\n(22078, 33041, 'thirty-three thousand forty-one'),\n(22079, 90452, 'ninety thousand four hundred fifty-two'),\n(22080, 7987, 'seven thousand nine hundred eighty-seven'),\n(22081, 24217, 'twenty-four thousand two hundred seventeen'),\n(22082, 33572, 'thirty-three thousand five hundred seventy-two'),\n(22083, 85749, 'eighty-five thousand seven hundred forty-nine'),\n(22084, 86845, 'eighty-six thousand eight hundred forty-five'),\n(22085, 67807, 'sixty-seven thousand eight hundred seven'),\n(22086, 80578, 'eighty thousand five hundred seventy-eight'),\n(22087, 23327, 'twenty-three thousand three hundred twenty-seven'),\n(22088, 39754, 'thirty-nine thousand seven hundred fifty-four'),\n(22089, 63761, 'sixty-three thousand seven hundred sixty-one'),\n(22090, 2636, 'two thousand six hundred thirty-six'),\n(22091, 75310, 'seventy-five thousand three hundred ten'),\n(22092, 73297, 'seventy-three thousand two hundred ninety-seven'),\n(22093, 14881, 'fourteen thousand eight hundred eighty-one'),\n(22094, 83964, 'eighty-three thousand nine hundred sixty-four'),\n(22095, 51004, 'fifty-one thousand four'),\n(22096, 1125, 'one thousand one hundred twenty-five'),\n(22097, 63339, 'sixty-three thousand three hundred thirty-nine'),\n(22098, 32238, 'thirty-two thousand two hundred thirty-eight'),\n(22099, 3737, 'three thousand seven hundred thirty-seven'),\n(22100, 10713, 'ten thousand seven hundred thirteen'),\n(22101, 58180, 'fifty-eight thousand one hundred eighty'),\n(22102, 35979, 'thirty-five thousand nine hundred seventy-nine'),\n(22103, 85736, 'eighty-five thousand seven hundred thirty-six'),\n(22104, 33023, 'thirty-three thousand twenty-three'),\n(22105, 97869, 'ninety-seven thousand eight hundred sixty-nine'),\n(22106, 40387, 'forty thousand three hundred eighty-seven'),\n(22107, 61887, 'sixty-one thousand eight hundred eighty-seven'),\n(22108, 94088, 'ninety-four thousand eighty-eight'),\n(22109, 25966, 'twenty-five thousand nine hundred sixty-six'),\n(22110, 93545, 'ninety-three thousand five hundred forty-five'),\n(22111, 82846, 'eighty-two thousand eight hundred forty-six'),\n(22112, 20382, 'twenty thousand three hundred eighty-two'),\n(22113, 45079, 'forty-five thousand seventy-nine'),\n(22114, 73263, 'seventy-three thousand two hundred sixty-three'),\n(22115, 54981, 'fifty-four thousand nine hundred eighty-one'),\n(22116, 80869, 'eighty thousand eight hundred sixty-nine'),\n(22117, 29987, 'twenty-nine thousand nine hundred eighty-seven'),\n(22118, 18504, 'eighteen thousand five hundred four'),\n(22119, 75998, 'seventy-five thousand nine hundred ninety-eight'),\n(22120, 48009, 'forty-eight thousand nine'),\n(22121, 48218, 'forty-eight thousand two hundred eighteen'),\n(22122, 34127, 'thirty-four thousand one hundred twenty-seven'),\n(22123, 87784, 'eighty-seven thousand seven hundred eighty-four'),\n(22124, 14684, 'fourteen thousand six hundred eighty-four'),\n(22125, 74809, 'seventy-four thousand eight hundred nine'),\n(22126, 77260, 'seventy-seven thousand two hundred sixty'),\n(22127, 30377, 'thirty thousand three hundred seventy-seven'),\n(22128, 94871, 'ninety-four thousand eight hundred seventy-one'),\n(22129, 52853, 'fifty-two thousand eight hundred fifty-three'),\n(22130, 53170, 'fifty-three thousand one hundred seventy'),\n(22131, 79606, 'seventy-nine thousand six hundred six'),\n(22132, 72761, 'seventy-two thousand seven hundred sixty-one'),\n(22133, 82911, 'eighty-two thousand nine hundred eleven'),\n(22134, 70998, 'seventy thousand nine hundred ninety-eight'),\n(22135, 72642, 'seventy-two thousand six hundred forty-two'),\n(22136, 28308, 'twenty-eight thousand three hundred eight'),\n(22137, 74693, 'seventy-four thousand six hundred ninety-three'),\n(22138, 63906, 'sixty-three thousand nine hundred six'),\n(22139, 10514, 'ten thousand five hundred fourteen'),\n(22140, 91274, 'ninety-one thousand two hundred seventy-four'),\n(22141, 76512, 'seventy-six thousand five hundred twelve'),\n(22142, 11170, 'eleven thousand one hundred seventy'),\n(22143, 82167, 'eighty-two thousand one hundred sixty-seven'),\n(22144, 54032, 'fifty-four thousand thirty-two'),\n(22145, 42032, 'forty-two thousand thirty-two'),\n(22146, 89546, 'eighty-nine thousand five hundred forty-six'),\n(22147, 14355, 'fourteen thousand three hundred fifty-five'),\n(22148, 57704, 'fifty-seven thousand seven hundred four'),\n(22149, 75763, 'seventy-five thousand seven hundred sixty-three'),\n(22150, 11673, 'eleven thousand six hundred seventy-three'),\n(22151, 51496, 'fifty-one thousand four hundred ninety-six'),\n(22152, 87000, 'eighty-seven thousand'),\n(22153, 52696, 'fifty-two thousand six hundred ninety-six'),\n(22154, 3053, 'three thousand fifty-three'),\n(22155, 49341, 'forty-nine thousand three hundred forty-one'),\n(22156, 74935, 'seventy-four thousand nine hundred thirty-five'),\n(22157, 14683, 'fourteen thousand six hundred eighty-three'),\n(22158, 89605, 'eighty-nine thousand six hundred five'),\n(22159, 2163, 'two thousand one hundred sixty-three'),\n(22160, 17040, 'seventeen thousand forty'),\n(22161, 21273, 'twenty-one thousand two hundred seventy-three'),\n(22162, 22030, 'twenty-two thousand thirty'),\n(22163, 67304, 'sixty-seven thousand three hundred four'),\n(22164, 60825, 'sixty thousand eight hundred twenty-five'),\n(22165, 36470, 'thirty-six thousand four hundred seventy'),\n(22166, 24639, 'twenty-four thousand six hundred thirty-nine'),\n(22167, 73691, 'seventy-three thousand six hundred ninety-one'),\n(22168, 78480, 'seventy-eight thousand four hundred eighty'),\n(22169, 55117, 'fifty-five thousand one hundred seventeen'),\n(22170, 81330, 'eighty-one thousand three hundred thirty'),\n(22171, 59072, 'fifty-nine thousand seventy-two'),\n(22172, 84281, 'eighty-four thousand two hundred eighty-one'),\n(22173, 99234, 'ninety-nine thousand two hundred thirty-four'),\n(22174, 43945, 'forty-three thousand nine hundred forty-five'),\n(22175, 64726, 'sixty-four thousand seven hundred twenty-six'),\n(22176, 62291, 'sixty-two thousand two hundred ninety-one'),\n(22177, 85230, 'eighty-five thousand two hundred thirty'),\n(22178, 73236, 'seventy-three thousand two hundred thirty-six'),\n(22179, 45742, 'forty-five thousand seven hundred forty-two'),\n(22180, 66694, 'sixty-six thousand six hundred ninety-four'),\n(22181, 41176, 'forty-one thousand one hundred seventy-six'),\n(22182, 3667, 'three thousand six hundred sixty-seven'),\n(22183, 1534, 'one thousand five hundred thirty-four'),\n(22184, 47968, 'forty-seven thousand nine hundred sixty-eight'),\n(22185, 42396, 'forty-two thousand three hundred ninety-six'),\n(22186, 5384, 'five thousand three hundred eighty-four'),\n(22187, 84542, 'eighty-four thousand five hundred forty-two'),\n(22188, 17584, 'seventeen thousand five hundred eighty-four'),\n(22189, 41676, 'forty-one thousand six hundred seventy-six'),\n(22190, 63638, 'sixty-three thousand six hundred thirty-eight'),\n(22191, 32257, 'thirty-two thousand two hundred fifty-seven'),\n(22192, 27905, 'twenty-seven thousand nine hundred five'),\n(22193, 42782, 'forty-two thousand seven hundred eighty-two'),\n(22194, 46624, 'forty-six thousand six hundred twenty-four'),\n(22195, 36917, 'thirty-six thousand nine hundred seventeen'),\n(22196, 12763, 'twelve thousand seven hundred sixty-three'),\n(22197, 61144, 'sixty-one thousand one hundred forty-four'),\n(22198, 62532, 'sixty-two thousand five hundred thirty-two'),\n(22199, 81763, 'eighty-one thousand seven hundred sixty-three'),\n(22200, 49107, 'forty-nine thousand one hundred seven'),\n(22201, 28109, 'twenty-eight thousand one hundred nine'),\n(22202, 64467, 'sixty-four thousand four hundred sixty-seven'),\n(22203, 1124, 'one thousand one hundred twenty-four'),\n(22204, 26410, 'twenty-six thousand four hundred ten'),\n(22205, 43587, 'forty-three thousand five hundred eighty-seven'),\n(22206, 34727, 'thirty-four thousand seven hundred twenty-seven'),\n(22207, 95716, 'ninety-five thousand seven hundred sixteen'),\n(22208, 92279, 'ninety-two thousand two hundred seventy-nine'),\n(22209, 35788, 'thirty-five thousand seven hundred eighty-eight'),\n(22210, 81985, 'eighty-one thousand nine hundred eighty-five'),\n(22211, 7868, 'seven thousand eight hundred sixty-eight'),\n(22212, 71330, 'seventy-one thousand three hundred thirty'),\n(22213, 58023, 'fifty-eight thousand twenty-three'),\n(22214, 88477, 'eighty-eight thousand four hundred seventy-seven'),\n(22215, 64213, 'sixty-four thousand two hundred thirteen'),\n(22216, 80826, 'eighty thousand eight hundred twenty-six'),\n(22217, 16682, 'sixteen thousand six hundred eighty-two'),\n(22218, 80776, 'eighty thousand seven hundred seventy-six'),\n(22219, 53842, 'fifty-three thousand eight hundred forty-two'),\n(22220, 7046, 'seven thousand forty-six'),\n(22221, 60079, 'sixty thousand seventy-nine'),\n(22222, 87325, 'eighty-seven thousand three hundred twenty-five'),\n(22223, 44786, 'forty-four thousand seven hundred eighty-six'),\n(22224, 23913, 'twenty-three thousand nine hundred thirteen'),\n(22225, 54119, 'fifty-four thousand one hundred nineteen'),\n(22226, 23761, 'twenty-three thousand seven hundred sixty-one'),\n(22227, 12017, 'twelve thousand seventeen'),\n(22228, 8419, 'eight thousand four hundred nineteen'),\n(22229, 43363, 'forty-three thousand three hundred sixty-three'),\n(22230, 21331, 'twenty-one thousand three hundred thirty-one'),\n(22231, 79039, 'seventy-nine thousand thirty-nine'),\n(22232, 99062, 'ninety-nine thousand sixty-two'),\n(22233, 40008, 'forty thousand eight'),\n(22234, 51089, 'fifty-one thousand eighty-nine'),\n(22235, 67742, 'sixty-seven thousand seven hundred forty-two'),\n(22236, 62695, 'sixty-two thousand six hundred ninety-five'),\n(22237, 28883, 'twenty-eight thousand eight hundred eighty-three'),\n(22238, 85403, 'eighty-five thousand four hundred three'),\n(22239, 11587, 'eleven thousand five hundred eighty-seven'),\n(22240, 55658, 'fifty-five thousand six hundred fifty-eight'),\n(22241, 93458, 'ninety-three thousand four hundred fifty-eight'),\n(22242, 90818, 'ninety thousand eight hundred eighteen'),\n(22243, 30392, 'thirty thousand three hundred ninety-two'),\n(22244, 49103, 'forty-nine thousand one hundred three'),\n(22245, 63938, 'sixty-three thousand nine hundred thirty-eight'),\n(22246, 82730, 'eighty-two thousand seven hundred thirty'),\n(22247, 74486, 'seventy-four thousand four hundred eighty-six'),\n(22248, 48080, 'forty-eight thousand eighty'),\n(22249, 91120, 'ninety-one thousand one hundred twenty'),\n(22250, 99009, 'ninety-nine thousand nine'),\n(22251, 31387, 'thirty-one thousand three hundred eighty-seven'),\n(22252, 9844, 'nine thousand eight hundred forty-four'),\n(22253, 7762, 'seven thousand seven hundred sixty-two'),\n(22254, 76669, 'seventy-six thousand six hundred sixty-nine'),\n(22255, 99610, 'ninety-nine thousand six hundred ten'),\n(22256, 95934, 'ninety-five thousand nine hundred thirty-four'),\n(22257, 92261, 'ninety-two thousand two hundred sixty-one'),\n(22258, 2922, 'two thousand nine hundred twenty-two'),\n(22259, 31718, 'thirty-one thousand seven hundred eighteen'),\n(22260, 16480, 'sixteen thousand four hundred eighty'),\n(22261, 45693, 'forty-five thousand six hundred ninety-three'),\n(22262, 74182, 'seventy-four thousand one hundred eighty-two'),\n(22263, 77439, 'seventy-seven thousand four hundred thirty-nine'),\n(22264, 1307, 'one thousand three hundred seven'),\n(22265, 98301, 'ninety-eight thousand three hundred one'),\n(22266, 52033, 'fifty-two thousand thirty-three'),\n(22267, 50061, 'fifty thousand sixty-one'),\n(22268, 42286, 'forty-two thousand two hundred eighty-six'),\n(22269, 12585, 'twelve thousand five hundred eighty-five'),\n(22270, 95924, 'ninety-five thousand nine hundred twenty-four'),\n(22271, 11159, 'eleven thousand one hundred fifty-nine'),\n(22272, 98641, 'ninety-eight thousand six hundred forty-one'),\n(22273, 67024, 'sixty-seven thousand twenty-four'),\n(22274, 3976, 'three thousand nine hundred seventy-six'),\n(22275, 86312, 'eighty-six thousand three hundred twelve'),\n(22276, 97764, 'ninety-seven thousand seven hundred sixty-four'),\n(22277, 9204, 'nine thousand two hundred four'),\n(22278, 66999, 'sixty-six thousand nine hundred ninety-nine'),\n(22279, 77110, 'seventy-seven thousand one hundred ten'),\n(22280, 68710, 'sixty-eight thousand seven hundred ten'),\n(22281, 21654, 'twenty-one thousand six hundred fifty-four'),\n(22282, 32178, 'thirty-two thousand one hundred seventy-eight'),\n(22283, 50938, 'fifty thousand nine hundred thirty-eight'),\n(22284, 60472, 'sixty thousand four hundred seventy-two'),\n(22285, 57332, 'fifty-seven thousand three hundred thirty-two'),\n(22286, 81781, 'eighty-one thousand seven hundred eighty-one'),\n(22287, 46591, 'forty-six thousand five hundred ninety-one'),\n(22288, 61060, 'sixty-one thousand sixty'),\n(22289, 40000, 'forty thousand'),\n(22290, 17242, 'seventeen thousand two hundred forty-two'),\n(22291, 47359, 'forty-seven thousand three hundred fifty-nine'),\n(22292, 53394, 'fifty-three thousand three hundred ninety-four'),\n(22293, 73258, 'seventy-three thousand two hundred fifty-eight'),\n(22294, 37930, 'thirty-seven thousand nine hundred thirty'),\n(22295, 88902, 'eighty-eight thousand nine hundred two'),\n(22296, 23865, 'twenty-three thousand eight hundred sixty-five'),\n(22297, 52522, 'fifty-two thousand five hundred twenty-two'),\n(22298, 10986, 'ten thousand nine hundred eighty-six'),\n(22299, 67658, 'sixty-seven thousand six hundred fifty-eight'),\n(22300, 80184, 'eighty thousand one hundred eighty-four'),\n(22301, 59131, 'fifty-nine thousand one hundred thirty-one'),\n(22302, 12625, 'twelve thousand six hundred twenty-five'),\n(22303, 8368, 'eight thousand three hundred sixty-eight'),\n(22304, 10908, 'ten thousand nine hundred eight'),\n(22305, 20317, 'twenty thousand three hundred seventeen'),\n(22306, 44456, 'forty-four thousand four hundred fifty-six'),\n(22307, 52754, 'fifty-two thousand seven hundred fifty-four'),\n(22308, 51128, 'fifty-one thousand one hundred twenty-eight'),\n(22309, 3730, 'three thousand seven hundred thirty'),\n(22310, 84201, 'eighty-four thousand two hundred one'),\n(22311, 25468, 'twenty-five thousand four hundred sixty-eight'),\n(22312, 773, 'seven hundred seventy-three'),\n(22313, 52296, 'fifty-two thousand two hundred ninety-six'),\n(22314, 63724, 'sixty-three thousand seven hundred twenty-four'),\n(22315, 27149, 'twenty-seven thousand one hundred forty-nine'),\n(22316, 97401, 'ninety-seven thousand four hundred one'),\n(22317, 56210, 'fifty-six thousand two hundred ten'),\n(22318, 2715, 'two thousand seven hundred fifteen'),\n(22319, 35745, 'thirty-five thousand seven hundred forty-five'),\n(22320, 36475, 'thirty-six thousand four hundred seventy-five'),\n(22321, 25178, 'twenty-five thousand one hundred seventy-eight'),\n(22322, 82726, 'eighty-two thousand seven hundred twenty-six'),\n(22323, 17715, 'seventeen thousand seven hundred fifteen'),\n(22324, 90969, 'ninety thousand nine hundred sixty-nine'),\n(22325, 35633, 'thirty-five thousand six hundred thirty-three'),\n(22326, 70702, 'seventy thousand seven hundred two'),\n(22327, 83992, 'eighty-three thousand nine hundred ninety-two'),\n(22328, 29490, 'twenty-nine thousand four hundred ninety'),\n(22329, 35399, 'thirty-five thousand three hundred ninety-nine'),\n(22330, 85766, 'eighty-five thousand seven hundred sixty-six'),\n(22331, 2271, 'two thousand two hundred seventy-one'),\n(22332, 16685, 'sixteen thousand six hundred eighty-five'),\n(22333, 20762, 'twenty thousand seven hundred sixty-two'),\n(22334, 94064, 'ninety-four thousand sixty-four'),\n(22335, 84347, 'eighty-four thousand three hundred forty-seven'),\n(22336, 86339, 'eighty-six thousand three hundred thirty-nine'),\n(22337, 19130, 'nineteen thousand one hundred thirty'),\n(22338, 85596, 'eighty-five thousand five hundred ninety-six'),\n(22339, 50706, 'fifty thousand seven hundred six'),\n(22340, 56772, 'fifty-six thousand seven hundred seventy-two'),\n(22341, 52976, 'fifty-two thousand nine hundred seventy-six'),\n(22342, 22760, 'twenty-two thousand seven hundred sixty'),\n(22343, 24765, 'twenty-four thousand seven hundred sixty-five'),\n(22344, 97206, 'ninety-seven thousand two hundred six'),\n(22345, 63438, 'sixty-three thousand four hundred thirty-eight'),\n(22346, 72553, 'seventy-two thousand five hundred fifty-three'),\n(22347, 55990, 'fifty-five thousand nine hundred ninety'),\n(22348, 51665, 'fifty-one thousand six hundred sixty-five'),\n(22349, 7379, 'seven thousand three hundred seventy-nine'),\n(22350, 90234, 'ninety thousand two hundred thirty-four'),\n(22351, 69009, 'sixty-nine thousand nine'),\n(22352, 69078, 'sixty-nine thousand seventy-eight'),\n(22353, 18873, 'eighteen thousand eight hundred seventy-three'),\n(22354, 20351, 'twenty thousand three hundred fifty-one'),\n(22355, 23257, 'twenty-three thousand two hundred fifty-seven'),\n(22356, 47683, 'forty-seven thousand six hundred eighty-three'),\n(22357, 25129, 'twenty-five thousand one hundred twenty-nine'),\n(22358, 42392, 'forty-two thousand three hundred ninety-two'),\n(22359, 61533, 'sixty-one thousand five hundred thirty-three'),\n(22360, 74504, 'seventy-four thousand five hundred four'),\n(22361, 21283, 'twenty-one thousand two hundred eighty-three'),\n(22362, 34181, 'thirty-four thousand one hundred eighty-one'),\n(22363, 90907, 'ninety thousand nine hundred seven'),\n(22364, 20857, 'twenty thousand eight hundred fifty-seven'),\n(22365, 81696, 'eighty-one thousand six hundred ninety-six'),\n(22366, 40214, 'forty thousand two hundred fourteen'),\n(22367, 63976, 'sixty-three thousand nine hundred seventy-six'),\n(22368, 50398, 'fifty thousand three hundred ninety-eight'),\n(22369, 13364, 'thirteen thousand three hundred sixty-four'),\n(22370, 97470, 'ninety-seven thousand four hundred seventy'),\n(22371, 27065, 'twenty-seven thousand sixty-five'),\n(22372, 73598, 'seventy-three thousand five hundred ninety-eight'),\n(22373, 89848, 'eighty-nine thousand eight hundred forty-eight'),\n(22374, 42272, 'forty-two thousand two hundred seventy-two'),\n(22375, 60287, 'sixty thousand two hundred eighty-seven'),\n(22376, 3178, 'three thousand one hundred seventy-eight'),\n(22377, 57321, 'fifty-seven thousand three hundred twenty-one'),\n(22378, 78679, 'seventy-eight thousand six hundred seventy-nine'),\n(22379, 86227, 'eighty-six thousand two hundred twenty-seven'),\n(22380, 85683, 'eighty-five thousand six hundred eighty-three'),\n(22381, 47749, 'forty-seven thousand seven hundred forty-nine'),\n(22382, 1655, 'one thousand six hundred fifty-five'),\n(22383, 98561, 'ninety-eight thousand five hundred sixty-one'),\n(22384, 66277, 'sixty-six thousand two hundred seventy-seven'),\n(22385, 27619, 'twenty-seven thousand six hundred nineteen'),\n(22386, 33063, 'thirty-three thousand sixty-three'),\n(22387, 51934, 'fifty-one thousand nine hundred thirty-four'),\n(22388, 51697, 'fifty-one thousand six hundred ninety-seven'),\n(22389, 94067, 'ninety-four thousand sixty-seven'),\n(22390, 9406, 'nine thousand four hundred six'),\n(22391, 77419, 'seventy-seven thousand four hundred nineteen'),\n(22392, 51600, 'fifty-one thousand six hundred'),\n(22393, 68734, 'sixty-eight thousand seven hundred thirty-four'),\n(22394, 94698, 'ninety-four thousand six hundred ninety-eight'),\n(22395, 26845, 'twenty-six thousand eight hundred forty-five'),\n(22396, 33145, 'thirty-three thousand one hundred forty-five'),\n(22397, 46414, 'forty-six thousand four hundred fourteen'),\n(22398, 94506, 'ninety-four thousand five hundred six'),\n(22399, 95090, 'ninety-five thousand ninety'),\n(22400, 6585, 'six thousand five hundred eighty-five'),\n(22401, 40779, 'forty thousand seven hundred seventy-nine'),\n(22402, 96607, 'ninety-six thousand six hundred seven'),\n(22403, 64492, 'sixty-four thousand four hundred ninety-two'),\n(22404, 84078, 'eighty-four thousand seventy-eight'),\n(22405, 36908, 'thirty-six thousand nine hundred eight'),\n(22406, 40657, 'forty thousand six hundred fifty-seven'),\n(22407, 20646, 'twenty thousand six hundred forty-six'),\n(22408, 60510, 'sixty thousand five hundred ten'),\n(22409, 73961, 'seventy-three thousand nine hundred sixty-one'),\n(22410, 13169, 'thirteen thousand one hundred sixty-nine'),\n(22411, 21915, 'twenty-one thousand nine hundred fifteen'),\n(22412, 11303, 'eleven thousand three hundred three'),\n(22413, 39326, 'thirty-nine thousand three hundred twenty-six'),\n(22414, 5671, 'five thousand six hundred seventy-one'),\n(22415, 52919, 'fifty-two thousand nine hundred nineteen'),\n(22416, 75336, 'seventy-five thousand three hundred thirty-six'),\n(22417, 99578, 'ninety-nine thousand five hundred seventy-eight'),\n(22418, 32711, 'thirty-two thousand seven hundred eleven'),\n(22419, 36038, 'thirty-six thousand thirty-eight'),\n(22420, 6707, 'six thousand seven hundred seven'),\n(22421, 3678, 'three thousand six hundred seventy-eight'),\n(22422, 30427, 'thirty thousand four hundred twenty-seven'),\n(22423, 25681, 'twenty-five thousand six hundred eighty-one'),\n(22424, 86599, 'eighty-six thousand five hundred ninety-nine'),\n(22425, 80271, 'eighty thousand two hundred seventy-one'),\n(22426, 43175, 'forty-three thousand one hundred seventy-five'),\n(22427, 81706, 'eighty-one thousand seven hundred six'),\n(22428, 83982, 'eighty-three thousand nine hundred eighty-two'),\n(22429, 54881, 'fifty-four thousand eight hundred eighty-one'),\n(22430, 31451, 'thirty-one thousand four hundred fifty-one'),\n(22431, 4086, 'four thousand eighty-six'),\n(22432, 69995, 'sixty-nine thousand nine hundred ninety-five'),\n(22433, 49166, 'forty-nine thousand one hundred sixty-six'),\n(22434, 89482, 'eighty-nine thousand four hundred eighty-two'),\n(22435, 82005, 'eighty-two thousand five'),\n(22436, 49004, 'forty-nine thousand four'),\n(22437, 63147, 'sixty-three thousand one hundred forty-seven'),\n(22438, 80267, 'eighty thousand two hundred sixty-seven'),\n(22439, 50796, 'fifty thousand seven hundred ninety-six'),\n(22440, 75097, 'seventy-five thousand ninety-seven'),\n(22441, 13363, 'thirteen thousand three hundred sixty-three'),\n(22442, 8339, 'eight thousand three hundred thirty-nine'),\n(22443, 34388, 'thirty-four thousand three hundred eighty-eight'),\n(22444, 3952, 'three thousand nine hundred fifty-two'),\n(22445, 13186, 'thirteen thousand one hundred eighty-six'),\n(22446, 30296, 'thirty thousand two hundred ninety-six'),\n(22447, 31017, 'thirty-one thousand seventeen'),\n(22448, 17804, 'seventeen thousand eight hundred four'),\n(22449, 34962, 'thirty-four thousand nine hundred sixty-two'),\n(22450, 55189, 'fifty-five thousand one hundred eighty-nine'),\n(22451, 91833, 'ninety-one thousand eight hundred thirty-three'),\n(22452, 49688, 'forty-nine thousand six hundred eighty-eight'),\n(22453, 66182, 'sixty-six thousand one hundred eighty-two'),\n(22454, 99582, 'ninety-nine thousand five hundred eighty-two'),\n(22455, 86313, 'eighty-six thousand three hundred thirteen'),\n(22456, 35188, 'thirty-five thousand one hundred eighty-eight'),\n(22457, 96210, 'ninety-six thousand two hundred ten'),\n(22458, 95687, 'ninety-five thousand six hundred eighty-seven'),\n(22459, 91745, 'ninety-one thousand seven hundred forty-five'),\n(22460, 82713, 'eighty-two thousand seven hundred thirteen'),\n(22461, 46026, 'forty-six thousand twenty-six'),\n(22462, 96590, 'ninety-six thousand five hundred ninety'),\n(22463, 26335, 'twenty-six thousand three hundred thirty-five'),\n(22464, 73744, 'seventy-three thousand seven hundred forty-four'),\n(22465, 4912, 'four thousand nine hundred twelve'),\n(22466, 74079, 'seventy-four thousand seventy-nine'),\n(22467, 71283, 'seventy-one thousand two hundred eighty-three'),\n(22468, 82510, 'eighty-two thousand five hundred ten'),\n(22469, 36400, 'thirty-six thousand four hundred'),\n(22470, 24584, 'twenty-four thousand five hundred eighty-four'),\n(22471, 62690, 'sixty-two thousand six hundred ninety'),\n(22472, 74182, 'seventy-four thousand one hundred eighty-two'),\n(22473, 59501, 'fifty-nine thousand five hundred one'),\n(22474, 73906, 'seventy-three thousand nine hundred six'),\n(22475, 84201, 'eighty-four thousand two hundred one'),\n(22476, 19013, 'nineteen thousand thirteen'),\n(22477, 21821, 'twenty-one thousand eight hundred twenty-one'),\n(22478, 47711, 'forty-seven thousand seven hundred eleven'),\n(22479, 10009, 'ten thousand nine'),\n(22480, 23909, 'twenty-three thousand nine hundred nine'),\n(22481, 39934, 'thirty-nine thousand nine hundred thirty-four'),\n(22482, 76259, 'seventy-six thousand two hundred fifty-nine'),\n(22483, 26065, 'twenty-six thousand sixty-five'),\n(22484, 39543, 'thirty-nine thousand five hundred forty-three'),\n(22485, 49427, 'forty-nine thousand four hundred twenty-seven'),\n(22486, 91481, 'ninety-one thousand four hundred eighty-one'),\n(22487, 51955, 'fifty-one thousand nine hundred fifty-five'),\n(22488, 73018, 'seventy-three thousand eighteen'),\n(22489, 42658, 'forty-two thousand six hundred fifty-eight'),\n(22490, 1012, 'one thousand twelve'),\n(22491, 66699, 'sixty-six thousand six hundred ninety-nine'),\n(22492, 99683, 'ninety-nine thousand six hundred eighty-three'),\n(22493, 26364, 'twenty-six thousand three hundred sixty-four'),\n(22494, 14630, 'fourteen thousand six hundred thirty'),\n(22495, 97375, 'ninety-seven thousand three hundred seventy-five'),\n(22496, 97080, 'ninety-seven thousand eighty'),\n(22497, 2373, 'two thousand three hundred seventy-three'),\n(22498, 41211, 'forty-one thousand two hundred eleven'),\n(22499, 29659, 'twenty-nine thousand six hundred fifty-nine'),\n(22500, 6419, 'six thousand four hundred nineteen'),\n(22501, 17338, 'seventeen thousand three hundred thirty-eight'),\n(22502, 76924, 'seventy-six thousand nine hundred twenty-four'),\n(22503, 19371, 'nineteen thousand three hundred seventy-one'),\n(22504, 20685, 'twenty thousand six hundred eighty-five'),\n(22505, 36069, 'thirty-six thousand sixty-nine'),\n(22506, 73981, 'seventy-three thousand nine hundred eighty-one'),\n(22507, 13129, 'thirteen thousand one hundred twenty-nine'),\n(22508, 88970, 'eighty-eight thousand nine hundred seventy'),\n(22509, 82916, 'eighty-two thousand nine hundred sixteen'),\n(22510, 38938, 'thirty-eight thousand nine hundred thirty-eight'),\n(22511, 94741, 'ninety-four thousand seven hundred forty-one'),\n(22512, 38227, 'thirty-eight thousand two hundred twenty-seven'),\n(22513, 68239, 'sixty-eight thousand two hundred thirty-nine'),\n(22514, 81326, 'eighty-one thousand three hundred twenty-six'),\n(22515, 94805, 'ninety-four thousand eight hundred five'),\n(22516, 6101, 'six thousand one hundred one'),\n(22517, 14592, 'fourteen thousand five hundred ninety-two'),\n(22518, 99163, 'ninety-nine thousand one hundred sixty-three'),\n(22519, 18708, 'eighteen thousand seven hundred eight'),\n(22520, 51549, 'fifty-one thousand five hundred forty-nine'),\n(22521, 56196, 'fifty-six thousand one hundred ninety-six'),\n(22522, 13361, 'thirteen thousand three hundred sixty-one'),\n(22523, 821, 'eight hundred twenty-one'),\n(22524, 67528, 'sixty-seven thousand five hundred twenty-eight'),\n(22525, 44933, 'forty-four thousand nine hundred thirty-three'),\n(22526, 54841, 'fifty-four thousand eight hundred forty-one'),\n(22527, 77904, 'seventy-seven thousand nine hundred four'),\n(22528, 12606, 'twelve thousand six hundred six'),\n(22529, 14951, 'fourteen thousand nine hundred fifty-one'),\n(22530, 62014, 'sixty-two thousand fourteen'),\n(22531, 14627, 'fourteen thousand six hundred twenty-seven'),\n(22532, 99277, 'ninety-nine thousand two hundred seventy-seven'),\n(22533, 69933, 'sixty-nine thousand nine hundred thirty-three'),\n(22534, 58272, 'fifty-eight thousand two hundred seventy-two'),\n(22535, 47217, 'forty-seven thousand two hundred seventeen'),\n(22536, 78599, 'seventy-eight thousand five hundred ninety-nine'),\n(22537, 10699, 'ten thousand six hundred ninety-nine'),\n(22538, 60801, 'sixty thousand eight hundred one'),\n(22539, 23594, 'twenty-three thousand five hundred ninety-four'),\n(22540, 91715, 'ninety-one thousand seven hundred fifteen'),\n(22541, 10879, 'ten thousand eight hundred seventy-nine'),\n(22542, 53661, 'fifty-three thousand six hundred sixty-one'),\n(22543, 8007, 'eight thousand seven'),\n(22544, 54731, 'fifty-four thousand seven hundred thirty-one'),\n(22545, 38540, 'thirty-eight thousand five hundred forty'),\n(22546, 1512, 'one thousand five hundred twelve'),\n(22547, 5898, 'five thousand eight hundred ninety-eight'),\n(22548, 79462, 'seventy-nine thousand four hundred sixty-two'),\n(22549, 68885, 'sixty-eight thousand eight hundred eighty-five'),\n(22550, 9204, 'nine thousand two hundred four'),\n(22551, 40727, 'forty thousand seven hundred twenty-seven'),\n(22552, 63189, 'sixty-three thousand one hundred eighty-nine'),\n(22553, 8225, 'eight thousand two hundred twenty-five'),\n(22554, 10054, 'ten thousand fifty-four'),\n(22555, 91146, 'ninety-one thousand one hundred forty-six'),\n(22556, 15561, 'fifteen thousand five hundred sixty-one'),\n(22557, 99349, 'ninety-nine thousand three hundred forty-nine'),\n(22558, 13638, 'thirteen thousand six hundred thirty-eight'),\n(22559, 77478, 'seventy-seven thousand four hundred seventy-eight'),\n(22560, 70421, 'seventy thousand four hundred twenty-one'),\n(22561, 63773, 'sixty-three thousand seven hundred seventy-three'),\n(22562, 21984, 'twenty-one thousand nine hundred eighty-four'),\n(22563, 26207, 'twenty-six thousand two hundred seven'),\n(22564, 57262, 'fifty-seven thousand two hundred sixty-two'),\n(22565, 14062, 'fourteen thousand sixty-two'),\n(22566, 54079, 'fifty-four thousand seventy-nine'),\n(22567, 67119, 'sixty-seven thousand one hundred nineteen'),\n(22568, 52911, 'fifty-two thousand nine hundred eleven'),\n(22569, 68926, 'sixty-eight thousand nine hundred twenty-six'),\n(22570, 20437, 'twenty thousand four hundred thirty-seven'),\n(22571, 10588, 'ten thousand five hundred eighty-eight'),\n(22572, 60399, 'sixty thousand three hundred ninety-nine'),\n(22573, 45134, 'forty-five thousand one hundred thirty-four'),\n(22574, 38698, 'thirty-eight thousand six hundred ninety-eight'),\n(22575, 89621, 'eighty-nine thousand six hundred twenty-one'),\n(22576, 13891, 'thirteen thousand eight hundred ninety-one'),\n(22577, 42727, 'forty-two thousand seven hundred twenty-seven'),\n(22578, 17700, 'seventeen thousand seven hundred'),\n(22579, 78109, 'seventy-eight thousand one hundred nine'),\n(22580, 13448, 'thirteen thousand four hundred forty-eight'),\n(22581, 80599, 'eighty thousand five hundred ninety-nine'),\n(22582, 85955, 'eighty-five thousand nine hundred fifty-five'),\n(22583, 47326, 'forty-seven thousand three hundred twenty-six'),\n(22584, 95948, 'ninety-five thousand nine hundred forty-eight'),\n(22585, 80920, 'eighty thousand nine hundred twenty'),\n(22586, 71642, 'seventy-one thousand six hundred forty-two'),\n(22587, 35628, 'thirty-five thousand six hundred twenty-eight'),\n(22588, 63218, 'sixty-three thousand two hundred eighteen'),\n(22589, 88825, 'eighty-eight thousand eight hundred twenty-five'),\n(22590, 62320, 'sixty-two thousand three hundred twenty'),\n(22591, 46363, 'forty-six thousand three hundred sixty-three'),\n(22592, 14135, 'fourteen thousand one hundred thirty-five'),\n(22593, 34076, 'thirty-four thousand seventy-six'),\n(22594, 53105, 'fifty-three thousand one hundred five'),\n(22595, 31265, 'thirty-one thousand two hundred sixty-five'),\n(22596, 86163, 'eighty-six thousand one hundred sixty-three'),\n(22597, 68260, 'sixty-eight thousand two hundred sixty'),\n(22598, 59241, 'fifty-nine thousand two hundred forty-one'),\n(22599, 68074, 'sixty-eight thousand seventy-four'),\n(22600, 96699, 'ninety-six thousand six hundred ninety-nine'),\n(22601, 29323, 'twenty-nine thousand three hundred twenty-three'),\n(22602, 69624, 'sixty-nine thousand six hundred twenty-four'),\n(22603, 68641, 'sixty-eight thousand six hundred forty-one'),\n(22604, 10943, 'ten thousand nine hundred forty-three'),\n(22605, 86206, 'eighty-six thousand two hundred six'),\n(22606, 17687, 'seventeen thousand six hundred eighty-seven'),\n(22607, 69124, 'sixty-nine thousand one hundred twenty-four'),\n(22608, 37262, 'thirty-seven thousand two hundred sixty-two'),\n(22609, 76436, 'seventy-six thousand four hundred thirty-six'),\n(22610, 8463, 'eight thousand four hundred sixty-three'),\n(22611, 77467, 'seventy-seven thousand four hundred sixty-seven'),\n(22612, 8572, 'eight thousand five hundred seventy-two'),\n(22613, 68056, 'sixty-eight thousand fifty-six'),\n(22614, 93635, 'ninety-three thousand six hundred thirty-five'),\n(22615, 54697, 'fifty-four thousand six hundred ninety-seven'),\n(22616, 21655, 'twenty-one thousand six hundred fifty-five'),\n(22617, 99454, 'ninety-nine thousand four hundred fifty-four'),\n(22618, 48855, 'forty-eight thousand eight hundred fifty-five'),\n(22619, 86744, 'eighty-six thousand seven hundred forty-four'),\n(22620, 10357, 'ten thousand three hundred fifty-seven'),\n(22621, 37591, 'thirty-seven thousand five hundred ninety-one'),\n(22622, 44149, 'forty-four thousand one hundred forty-nine'),\n(22623, 13913, 'thirteen thousand nine hundred thirteen'),\n(22624, 38012, 'thirty-eight thousand twelve'),\n(22625, 77186, 'seventy-seven thousand one hundred eighty-six'),\n(22626, 38275, 'thirty-eight thousand two hundred seventy-five'),\n(22627, 82596, 'eighty-two thousand five hundred ninety-six'),\n(22628, 31863, 'thirty-one thousand eight hundred sixty-three'),\n(22629, 59071, 'fifty-nine thousand seventy-one'),\n(22630, 17881, 'seventeen thousand eight hundred eighty-one'),\n(22631, 67570, 'sixty-seven thousand five hundred seventy'),\n(22632, 43826, 'forty-three thousand eight hundred twenty-six'),\n(22633, 83633, 'eighty-three thousand six hundred thirty-three'),\n(22634, 31002, 'thirty-one thousand two'),\n(22635, 60684, 'sixty thousand six hundred eighty-four'),\n(22636, 28923, 'twenty-eight thousand nine hundred twenty-three'),\n(22637, 22175, 'twenty-two thousand one hundred seventy-five'),\n(22638, 89221, 'eighty-nine thousand two hundred twenty-one'),\n(22639, 63361, 'sixty-three thousand three hundred sixty-one'),\n(22640, 58237, 'fifty-eight thousand two hundred thirty-seven'),\n(22641, 35054, 'thirty-five thousand fifty-four'),\n(22642, 1424, 'one thousand four hundred twenty-four'),\n(22643, 43666, 'forty-three thousand six hundred sixty-six'),\n(22644, 40409, 'forty thousand four hundred nine'),\n(22645, 33682, 'thirty-three thousand six hundred eighty-two'),\n(22646, 65654, 'sixty-five thousand six hundred fifty-four'),\n(22647, 38851, 'thirty-eight thousand eight hundred fifty-one'),\n(22648, 90697, 'ninety thousand six hundred ninety-seven'),\n(22649, 55186, 'fifty-five thousand one hundred eighty-six'),\n(22650, 47660, 'forty-seven thousand six hundred sixty'),\n(22651, 73333, 'seventy-three thousand three hundred thirty-three'),\n(22652, 80656, 'eighty thousand six hundred fifty-six'),\n(22653, 90456, 'ninety thousand four hundred fifty-six'),\n(22654, 80206, 'eighty thousand two hundred six'),\n(22655, 13317, 'thirteen thousand three hundred seventeen'),\n(22656, 92130, 'ninety-two thousand one hundred thirty'),\n(22657, 69691, 'sixty-nine thousand six hundred ninety-one'),\n(22658, 49643, 'forty-nine thousand six hundred forty-three'),\n(22659, 72908, 'seventy-two thousand nine hundred eight'),\n(22660, 17863, 'seventeen thousand eight hundred sixty-three'),\n(22661, 56125, 'fifty-six thousand one hundred twenty-five'),\n(22662, 56476, 'fifty-six thousand four hundred seventy-six'),\n(22663, 47629, 'forty-seven thousand six hundred twenty-nine'),\n(22664, 95842, 'ninety-five thousand eight hundred forty-two'),\n(22665, 30306, 'thirty thousand three hundred six'),\n(22666, 73791, 'seventy-three thousand seven hundred ninety-one'),\n(22667, 93124, 'ninety-three thousand one hundred twenty-four'),\n(22668, 72960, 'seventy-two thousand nine hundred sixty'),\n(22669, 39190, 'thirty-nine thousand one hundred ninety'),\n(22670, 31214, 'thirty-one thousand two hundred fourteen'),\n(22671, 24897, 'twenty-four thousand eight hundred ninety-seven'),\n(22672, 36517, 'thirty-six thousand five hundred seventeen'),\n(22673, 1381, 'one thousand three hundred eighty-one'),\n(22674, 81193, 'eighty-one thousand one hundred ninety-three'),\n(22675, 49723, 'forty-nine thousand seven hundred twenty-three'),\n(22676, 58089, 'fifty-eight thousand eighty-nine'),\n(22677, 42656, 'forty-two thousand six hundred fifty-six'),\n(22678, 53931, 'fifty-three thousand nine hundred thirty-one'),\n(22679, 98745, 'ninety-eight thousand seven hundred forty-five'),\n(22680, 70780, 'seventy thousand seven hundred eighty'),\n(22681, 42708, 'forty-two thousand seven hundred eight'),\n(22682, 94266, 'ninety-four thousand two hundred sixty-six'),\n(22683, 35797, 'thirty-five thousand seven hundred ninety-seven'),\n(22684, 94661, 'ninety-four thousand six hundred sixty-one'),\n(22685, 725, 'seven hundred twenty-five'),\n(22686, 66150, 'sixty-six thousand one hundred fifty'),\n(22687, 47855, 'forty-seven thousand eight hundred fifty-five'),\n(22688, 51487, 'fifty-one thousand four hundred eighty-seven'),\n(22689, 85336, 'eighty-five thousand three hundred thirty-six'),\n(22690, 58295, 'fifty-eight thousand two hundred ninety-five'),\n(22691, 79736, 'seventy-nine thousand seven hundred thirty-six'),\n(22692, 62021, 'sixty-two thousand twenty-one'),\n(22693, 47243, 'forty-seven thousand two hundred forty-three'),\n(22694, 71839, 'seventy-one thousand eight hundred thirty-nine'),\n(22695, 80541, 'eighty thousand five hundred forty-one'),\n(22696, 55725, 'fifty-five thousand seven hundred twenty-five'),\n(22697, 12857, 'twelve thousand eight hundred fifty-seven'),\n(22698, 80649, 'eighty thousand six hundred forty-nine'),\n(22699, 24997, 'twenty-four thousand nine hundred ninety-seven'),\n(22700, 56304, 'fifty-six thousand three hundred four'),\n(22701, 5252, 'five thousand two hundred fifty-two'),\n(22702, 43552, 'forty-three thousand five hundred fifty-two'),\n(22703, 5, 'five'),\n(22704, 13340, 'thirteen thousand three hundred forty'),\n(22705, 2375, 'two thousand three hundred seventy-five'),\n(22706, 44108, 'forty-four thousand one hundred eight'),\n(22707, 95838, 'ninety-five thousand eight hundred thirty-eight'),\n(22708, 8189, 'eight thousand one hundred eighty-nine'),\n(22709, 84953, 'eighty-four thousand nine hundred fifty-three'),\n(22710, 24689, 'twenty-four thousand six hundred eighty-nine'),\n(22711, 84885, 'eighty-four thousand eight hundred eighty-five'),\n(22712, 1806, 'one thousand eight hundred six'),\n(22713, 49348, 'forty-nine thousand three hundred forty-eight'),\n(22714, 67161, 'sixty-seven thousand one hundred sixty-one'),\n(22715, 94487, 'ninety-four thousand four hundred eighty-seven'),\n(22716, 38308, 'thirty-eight thousand three hundred eight'),\n(22717, 17704, 'seventeen thousand seven hundred four'),\n(22718, 22828, 'twenty-two thousand eight hundred twenty-eight'),\n(22719, 48924, 'forty-eight thousand nine hundred twenty-four'),\n(22720, 49914, 'forty-nine thousand nine hundred fourteen'),\n(22721, 97594, 'ninety-seven thousand five hundred ninety-four'),\n(22722, 74533, 'seventy-four thousand five hundred thirty-three'),\n(22723, 35492, 'thirty-five thousand four hundred ninety-two'),\n(22724, 22402, 'twenty-two thousand four hundred two'),\n(22725, 19780, 'nineteen thousand seven hundred eighty'),\n(22726, 33038, 'thirty-three thousand thirty-eight'),\n(22727, 66726, 'sixty-six thousand seven hundred twenty-six'),\n(22728, 30253, 'thirty thousand two hundred fifty-three'),\n(22729, 76364, 'seventy-six thousand three hundred sixty-four'),\n(22730, 9212, 'nine thousand two hundred twelve'),\n(22731, 11843, 'eleven thousand eight hundred forty-three'),\n(22732, 58408, 'fifty-eight thousand four hundred eight'),\n(22733, 33650, 'thirty-three thousand six hundred fifty'),\n(22734, 9744, 'nine thousand seven hundred forty-four'),\n(22735, 82056, 'eighty-two thousand fifty-six'),\n(22736, 94458, 'ninety-four thousand four hundred fifty-eight'),\n(22737, 26991, 'twenty-six thousand nine hundred ninety-one'),\n(22738, 42960, 'forty-two thousand nine hundred sixty'),\n(22739, 13422, 'thirteen thousand four hundred twenty-two'),\n(22740, 9496, 'nine thousand four hundred ninety-six'),\n(22741, 30449, 'thirty thousand four hundred forty-nine'),\n(22742, 57562, 'fifty-seven thousand five hundred sixty-two'),\n(22743, 54016, 'fifty-four thousand sixteen'),\n(22744, 97907, 'ninety-seven thousand nine hundred seven'),\n(22745, 81128, 'eighty-one thousand one hundred twenty-eight'),\n(22746, 27930, 'twenty-seven thousand nine hundred thirty'),\n(22747, 85207, 'eighty-five thousand two hundred seven'),\n(22748, 39185, 'thirty-nine thousand one hundred eighty-five'),\n(22749, 77846, 'seventy-seven thousand eight hundred forty-six'),\n(22750, 51781, 'fifty-one thousand seven hundred eighty-one'),\n(22751, 79854, 'seventy-nine thousand eight hundred fifty-four'),\n(22752, 9606, 'nine thousand six hundred six'),\n(22753, 50958, 'fifty thousand nine hundred fifty-eight'),\n(22754, 16512, 'sixteen thousand five hundred twelve'),\n(22755, 61013, 'sixty-one thousand thirteen'),\n(22756, 18658, 'eighteen thousand six hundred fifty-eight'),\n(22757, 58300, 'fifty-eight thousand three hundred'),\n(22758, 98007, 'ninety-eight thousand seven'),\n(22759, 71426, 'seventy-one thousand four hundred twenty-six'),\n(22760, 75233, 'seventy-five thousand two hundred thirty-three'),\n(22761, 47294, 'forty-seven thousand two hundred ninety-four'),\n(22762, 15051, 'fifteen thousand fifty-one'),\n(22763, 70283, 'seventy thousand two hundred eighty-three'),\n(22764, 31152, 'thirty-one thousand one hundred fifty-two'),\n(22765, 3590, 'three thousand five hundred ninety'),\n(22766, 65487, 'sixty-five thousand four hundred eighty-seven'),\n(22767, 24637, 'twenty-four thousand six hundred thirty-seven'),\n(22768, 70476, 'seventy thousand four hundred seventy-six'),\n(22769, 22345, 'twenty-two thousand three hundred forty-five'),\n(22770, 53565, 'fifty-three thousand five hundred sixty-five'),\n(22771, 69842, 'sixty-nine thousand eight hundred forty-two'),\n(22772, 57504, 'fifty-seven thousand five hundred four'),\n(22773, 13734, 'thirteen thousand seven hundred thirty-four'),\n(22774, 64786, 'sixty-four thousand seven hundred eighty-six'),\n(22775, 71061, 'seventy-one thousand sixty-one'),\n(22776, 76605, 'seventy-six thousand six hundred five'),\n(22777, 40969, 'forty thousand nine hundred sixty-nine'),\n(22778, 7010, 'seven thousand ten'),\n(22779, 14256, 'fourteen thousand two hundred fifty-six'),\n(22780, 80568, 'eighty thousand five hundred sixty-eight'),\n(22781, 86164, 'eighty-six thousand one hundred sixty-four'),\n(22782, 30268, 'thirty thousand two hundred sixty-eight'),\n(22783, 45155, 'forty-five thousand one hundred fifty-five'),\n(22784, 89211, 'eighty-nine thousand two hundred eleven'),\n(22785, 32628, 'thirty-two thousand six hundred twenty-eight'),\n(22786, 63124, 'sixty-three thousand one hundred twenty-four'),\n(22787, 34098, 'thirty-four thousand ninety-eight'),\n(22788, 81545, 'eighty-one thousand five hundred forty-five'),\n(22789, 18780, 'eighteen thousand seven hundred eighty'),\n(22790, 94641, 'ninety-four thousand six hundred forty-one'),\n(22791, 11975, 'eleven thousand nine hundred seventy-five'),\n(22792, 18230, 'eighteen thousand two hundred thirty'),\n(22793, 97006, 'ninety-seven thousand six'),\n(22794, 44021, 'forty-four thousand twenty-one'),\n(22795, 90412, 'ninety thousand four hundred twelve'),\n(22796, 58337, 'fifty-eight thousand three hundred thirty-seven'),\n(22797, 64127, 'sixty-four thousand one hundred twenty-seven'),\n(22798, 18269, 'eighteen thousand two hundred sixty-nine'),\n(22799, 4267, 'four thousand two hundred sixty-seven'),\n(22800, 68632, 'sixty-eight thousand six hundred thirty-two'),\n(22801, 53660, 'fifty-three thousand six hundred sixty'),\n(22802, 59516, 'fifty-nine thousand five hundred sixteen'),\n(22803, 84911, 'eighty-four thousand nine hundred eleven'),\n(22804, 68153, 'sixty-eight thousand one hundred fifty-three'),\n(22805, 20918, 'twenty thousand nine hundred eighteen'),\n(22806, 51369, 'fifty-one thousand three hundred sixty-nine'),\n(22807, 98827, 'ninety-eight thousand eight hundred twenty-seven'),\n(22808, 31139, 'thirty-one thousand one hundred thirty-nine'),\n(22809, 30834, 'thirty thousand eight hundred thirty-four'),\n(22810, 47328, 'forty-seven thousand three hundred twenty-eight'),\n(22811, 12819, 'twelve thousand eight hundred nineteen'),\n(22812, 95853, 'ninety-five thousand eight hundred fifty-three'),\n(22813, 56234, 'fifty-six thousand two hundred thirty-four'),\n(22814, 63364, 'sixty-three thousand three hundred sixty-four'),\n(22815, 50632, 'fifty thousand six hundred thirty-two'),\n(22816, 96322, 'ninety-six thousand three hundred twenty-two'),\n(22817, 31209, 'thirty-one thousand two hundred nine'),\n(22818, 79984, 'seventy-nine thousand nine hundred eighty-four'),\n(22819, 14699, 'fourteen thousand six hundred ninety-nine'),\n(22820, 46747, 'forty-six thousand seven hundred forty-seven'),\n(22821, 67471, 'sixty-seven thousand four hundred seventy-one'),\n(22822, 58140, 'fifty-eight thousand one hundred forty'),\n(22823, 66496, 'sixty-six thousand four hundred ninety-six'),\n(22824, 1201, 'one thousand two hundred one'),\n(22825, 73674, 'seventy-three thousand six hundred seventy-four'),\n(22826, 54786, 'fifty-four thousand seven hundred eighty-six'),\n(22827, 17528, 'seventeen thousand five hundred twenty-eight'),\n(22828, 97169, 'ninety-seven thousand one hundred sixty-nine'),\n(22829, 29489, 'twenty-nine thousand four hundred eighty-nine'),\n(22830, 53143, 'fifty-three thousand one hundred forty-three'),\n(22831, 60344, 'sixty thousand three hundred forty-four'),\n(22832, 40566, 'forty thousand five hundred sixty-six'),\n(22833, 53504, 'fifty-three thousand five hundred four'),\n(22834, 68612, 'sixty-eight thousand six hundred twelve'),\n(22835, 47093, 'forty-seven thousand ninety-three'),\n(22836, 10012, 'ten thousand twelve'),\n(22837, 38837, 'thirty-eight thousand eight hundred thirty-seven'),\n(22838, 32262, 'thirty-two thousand two hundred sixty-two'),\n(22839, 92035, 'ninety-two thousand thirty-five'),\n(22840, 45549, 'forty-five thousand five hundred forty-nine'),\n(22841, 59702, 'fifty-nine thousand seven hundred two'),\n(22842, 86555, 'eighty-six thousand five hundred fifty-five'),\n(22843, 29582, 'twenty-nine thousand five hundred eighty-two'),\n(22844, 55207, 'fifty-five thousand two hundred seven'),\n(22845, 61230, 'sixty-one thousand two hundred thirty'),\n(22846, 42412, 'forty-two thousand four hundred twelve'),\n(22847, 58210, 'fifty-eight thousand two hundred ten'),\n(22848, 44653, 'forty-four thousand six hundred fifty-three'),\n(22849, 12389, 'twelve thousand three hundred eighty-nine'),\n(22850, 35040, 'thirty-five thousand forty'),\n(22851, 28941, 'twenty-eight thousand nine hundred forty-one'),\n(22852, 93101, 'ninety-three thousand one hundred one'),\n(22853, 10222, 'ten thousand two hundred twenty-two'),\n(22854, 82013, 'eighty-two thousand thirteen'),\n(22855, 275, 'two hundred seventy-five'),\n(22856, 4327, 'four thousand three hundred twenty-seven'),\n(22857, 49325, 'forty-nine thousand three hundred twenty-five'),\n(22858, 2367, 'two thousand three hundred sixty-seven'),\n(22859, 63900, 'sixty-three thousand nine hundred'),\n(22860, 97488, 'ninety-seven thousand four hundred eighty-eight'),\n(22861, 49314, 'forty-nine thousand three hundred fourteen'),\n(22862, 80974, 'eighty thousand nine hundred seventy-four'),\n(22863, 16594, 'sixteen thousand five hundred ninety-four'),\n(22864, 41280, 'forty-one thousand two hundred eighty'),\n(22865, 61373, 'sixty-one thousand three hundred seventy-three'),\n(22866, 19224, 'nineteen thousand two hundred twenty-four'),\n(22867, 43507, 'forty-three thousand five hundred seven'),\n(22868, 31376, 'thirty-one thousand three hundred seventy-six'),\n(22869, 39992, 'thirty-nine thousand nine hundred ninety-two'),\n(22870, 31748, 'thirty-one thousand seven hundred forty-eight'),\n(22871, 99487, 'ninety-nine thousand four hundred eighty-seven'),\n(22872, 35881, 'thirty-five thousand eight hundred eighty-one'),\n(22873, 33317, 'thirty-three thousand three hundred seventeen'),\n(22874, 13641, 'thirteen thousand six hundred forty-one'),\n(22875, 3369, 'three thousand three hundred sixty-nine'),\n(22876, 68216, 'sixty-eight thousand two hundred sixteen'),\n(22877, 48698, 'forty-eight thousand six hundred ninety-eight'),\n(22878, 45380, 'forty-five thousand three hundred eighty'),\n(22879, 54102, 'fifty-four thousand one hundred two'),\n(22880, 92108, 'ninety-two thousand one hundred eight'),\n(22881, 46749, 'forty-six thousand seven hundred forty-nine'),\n(22882, 69667, 'sixty-nine thousand six hundred sixty-seven'),\n(22883, 3973, 'three thousand nine hundred seventy-three'),\n(22884, 62945, 'sixty-two thousand nine hundred forty-five'),\n(22885, 49955, 'forty-nine thousand nine hundred fifty-five'),\n(22886, 86100, 'eighty-six thousand one hundred'),\n(22887, 85299, 'eighty-five thousand two hundred ninety-nine'),\n(22888, 65291, 'sixty-five thousand two hundred ninety-one'),\n(22889, 11694, 'eleven thousand six hundred ninety-four'),\n(22890, 90309, 'ninety thousand three hundred nine'),\n(22891, 16983, 'sixteen thousand nine hundred eighty-three'),\n(22892, 12167, 'twelve thousand one hundred sixty-seven'),\n(22893, 24894, 'twenty-four thousand eight hundred ninety-four'),\n(22894, 39342, 'thirty-nine thousand three hundred forty-two'),\n(22895, 660, 'six hundred sixty'),\n(22896, 15285, 'fifteen thousand two hundred eighty-five'),\n(22897, 61519, 'sixty-one thousand five hundred nineteen'),\n(22898, 40291, 'forty thousand two hundred ninety-one'),\n(22899, 36560, 'thirty-six thousand five hundred sixty'),\n(22900, 84379, 'eighty-four thousand three hundred seventy-nine'),\n(22901, 76362, 'seventy-six thousand three hundred sixty-two'),\n(22902, 89723, 'eighty-nine thousand seven hundred twenty-three'),\n(22903, 58355, 'fifty-eight thousand three hundred fifty-five'),\n(22904, 45419, 'forty-five thousand four hundred nineteen'),\n(22905, 32225, 'thirty-two thousand two hundred twenty-five'),\n(22906, 97406, 'ninety-seven thousand four hundred six'),\n(22907, 56868, 'fifty-six thousand eight hundred sixty-eight'),\n(22908, 93462, 'ninety-three thousand four hundred sixty-two'),\n(22909, 63205, 'sixty-three thousand two hundred five'),\n(22910, 27987, 'twenty-seven thousand nine hundred eighty-seven'),\n(22911, 59525, 'fifty-nine thousand five hundred twenty-five'),\n(22912, 70262, 'seventy thousand two hundred sixty-two'),\n(22913, 39374, 'thirty-nine thousand three hundred seventy-four'),\n(22914, 40047, 'forty thousand forty-seven'),\n(22915, 22047, 'twenty-two thousand forty-seven'),\n(22916, 81424, 'eighty-one thousand four hundred twenty-four'),\n(22917, 20440, 'twenty thousand four hundred forty'),\n(22918, 75087, 'seventy-five thousand eighty-seven'),\n(22919, 81908, 'eighty-one thousand nine hundred eight'),\n(22920, 21473, 'twenty-one thousand four hundred seventy-three'),\n(22921, 35063, 'thirty-five thousand sixty-three'),\n(22922, 62545, 'sixty-two thousand five hundred forty-five'),\n(22923, 59027, 'fifty-nine thousand twenty-seven'),\n(22924, 23539, 'twenty-three thousand five hundred thirty-nine'),\n(22925, 67118, 'sixty-seven thousand one hundred eighteen'),\n(22926, 32933, 'thirty-two thousand nine hundred thirty-three'),\n(22927, 18681, 'eighteen thousand six hundred eighty-one'),\n(22928, 58604, 'fifty-eight thousand six hundred four'),\n(22929, 40455, 'forty thousand four hundred fifty-five'),\n(22930, 88400, 'eighty-eight thousand four hundred'),\n(22931, 28814, 'twenty-eight thousand eight hundred fourteen'),\n(22932, 63577, 'sixty-three thousand five hundred seventy-seven'),\n(22933, 4947, 'four thousand nine hundred forty-seven'),\n(22934, 6039, 'six thousand thirty-nine'),\n(22935, 8664, 'eight thousand six hundred sixty-four'),\n(22936, 15823, 'fifteen thousand eight hundred twenty-three'),\n(22937, 64187, 'sixty-four thousand one hundred eighty-seven'),\n(22938, 24621, 'twenty-four thousand six hundred twenty-one'),\n(22939, 83123, 'eighty-three thousand one hundred twenty-three'),\n(22940, 67581, 'sixty-seven thousand five hundred eighty-one'),\n(22941, 74700, 'seventy-four thousand seven hundred'),\n(22942, 16105, 'sixteen thousand one hundred five'),\n(22943, 80916, 'eighty thousand nine hundred sixteen'),\n(22944, 34414, 'thirty-four thousand four hundred fourteen'),\n(22945, 47875, 'forty-seven thousand eight hundred seventy-five'),\n(22946, 90804, 'ninety thousand eight hundred four'),\n(22947, 2445, 'two thousand four hundred forty-five'),\n(22948, 95420, 'ninety-five thousand four hundred twenty'),\n(22949, 25641, 'twenty-five thousand six hundred forty-one'),\n(22950, 42960, 'forty-two thousand nine hundred sixty'),\n(22951, 79147, 'seventy-nine thousand one hundred forty-seven'),\n(22952, 44372, 'forty-four thousand three hundred seventy-two'),\n(22953, 97313, 'ninety-seven thousand three hundred thirteen'),\n(22954, 14157, 'fourteen thousand one hundred fifty-seven'),\n(22955, 52264, 'fifty-two thousand two hundred sixty-four'),\n(22956, 35769, 'thirty-five thousand seven hundred sixty-nine'),\n(22957, 1400, 'one thousand four hundred'),\n(22958, 8281, 'eight thousand two hundred eighty-one'),\n(22959, 18991, 'eighteen thousand nine hundred ninety-one'),\n(22960, 38254, 'thirty-eight thousand two hundred fifty-four'),\n(22961, 26838, 'twenty-six thousand eight hundred thirty-eight'),\n(22962, 76795, 'seventy-six thousand seven hundred ninety-five'),\n(22963, 62194, 'sixty-two thousand one hundred ninety-four'),\n(22964, 16614, 'sixteen thousand six hundred fourteen'),\n(22965, 94025, 'ninety-four thousand twenty-five'),\n(22966, 70055, 'seventy thousand fifty-five'),\n(22967, 37001, 'thirty-seven thousand one'),\n(22968, 1595, 'one thousand five hundred ninety-five'),\n(22969, 41386, 'forty-one thousand three hundred eighty-six'),\n(22970, 80505, 'eighty thousand five hundred five'),\n(22971, 19489, 'nineteen thousand four hundred eighty-nine'),\n(22972, 3409, 'three thousand four hundred nine'),\n(22973, 72882, 'seventy-two thousand eight hundred eighty-two'),\n(22974, 48677, 'forty-eight thousand six hundred seventy-seven'),\n(22975, 23885, 'twenty-three thousand eight hundred eighty-five'),\n(22976, 14376, 'fourteen thousand three hundred seventy-six'),\n(22977, 53459, 'fifty-three thousand four hundred fifty-nine'),\n(22978, 64701, 'sixty-four thousand seven hundred one'),\n(22979, 34054, 'thirty-four thousand fifty-four'),\n(22980, 46734, 'forty-six thousand seven hundred thirty-four'),\n(22981, 91189, 'ninety-one thousand one hundred eighty-nine'),\n(22982, 14075, 'fourteen thousand seventy-five'),\n(22983, 39615, 'thirty-nine thousand six hundred fifteen'),\n(22984, 85059, 'eighty-five thousand fifty-nine'),\n(22985, 59457, 'fifty-nine thousand four hundred fifty-seven'),\n(22986, 10143, 'ten thousand one hundred forty-three'),\n(22987, 75054, 'seventy-five thousand fifty-four'),\n(22988, 61469, 'sixty-one thousand four hundred sixty-nine'),\n(22989, 12803, 'twelve thousand eight hundred three'),\n(22990, 15617, 'fifteen thousand six hundred seventeen'),\n(22991, 23181, 'twenty-three thousand one hundred eighty-one'),\n(22992, 65662, 'sixty-five thousand six hundred sixty-two'),\n(22993, 23783, 'twenty-three thousand seven hundred eighty-three'),\n(22994, 12011, 'twelve thousand eleven'),\n(22995, 40657, 'forty thousand six hundred fifty-seven'),\n(22996, 18837, 'eighteen thousand eight hundred thirty-seven'),\n(22997, 68983, 'sixty-eight thousand nine hundred eighty-three'),\n(22998, 78511, 'seventy-eight thousand five hundred eleven'),\n(22999, 10581, 'ten thousand five hundred eighty-one'),\n(23000, 11350, 'eleven thousand three hundred fifty'),\n(23001, 66567, 'sixty-six thousand five hundred sixty-seven'),\n(23002, 48073, 'forty-eight thousand seventy-three'),\n(23003, 76384, 'seventy-six thousand three hundred eighty-four'),\n(23004, 25536, 'twenty-five thousand five hundred thirty-six'),\n(23005, 6861, 'six thousand eight hundred sixty-one'),\n(23006, 99209, 'ninety-nine thousand two hundred nine'),\n(23007, 66833, 'sixty-six thousand eight hundred thirty-three'),\n(23008, 14114, 'fourteen thousand one hundred fourteen'),\n(23009, 24192, 'twenty-four thousand one hundred ninety-two'),\n(23010, 9552, 'nine thousand five hundred fifty-two'),\n(23011, 36135, 'thirty-six thousand one hundred thirty-five'),\n(23012, 91087, 'ninety-one thousand eighty-seven'),\n(23013, 61946, 'sixty-one thousand nine hundred forty-six'),\n(23014, 16485, 'sixteen thousand four hundred eighty-five'),\n(23015, 98493, 'ninety-eight thousand four hundred ninety-three'),\n(23016, 67539, 'sixty-seven thousand five hundred thirty-nine'),\n(23017, 78278, 'seventy-eight thousand two hundred seventy-eight'),\n(23018, 41429, 'forty-one thousand four hundred twenty-nine'),\n(23019, 19827, 'nineteen thousand eight hundred twenty-seven'),\n(23020, 79489, 'seventy-nine thousand four hundred eighty-nine'),\n(23021, 91287, 'ninety-one thousand two hundred eighty-seven'),\n(23022, 91843, 'ninety-one thousand eight hundred forty-three'),\n(23023, 76153, 'seventy-six thousand one hundred fifty-three'),\n(23024, 50683, 'fifty thousand six hundred eighty-three'),\n(23025, 28875, 'twenty-eight thousand eight hundred seventy-five'),\n(23026, 81191, 'eighty-one thousand one hundred ninety-one'),\n(23027, 58883, 'fifty-eight thousand eight hundred eighty-three'),\n(23028, 25628, 'twenty-five thousand six hundred twenty-eight'),\n(23029, 30816, 'thirty thousand eight hundred sixteen'),\n(23030, 63716, 'sixty-three thousand seven hundred sixteen'),\n(23031, 41084, 'forty-one thousand eighty-four'),\n(23032, 20720, 'twenty thousand seven hundred twenty'),\n(23033, 42353, 'forty-two thousand three hundred fifty-three'),\n(23034, 56594, 'fifty-six thousand five hundred ninety-four'),\n(23035, 87754, 'eighty-seven thousand seven hundred fifty-four'),\n(23036, 5313, 'five thousand three hundred thirteen'),\n(23037, 72281, 'seventy-two thousand two hundred eighty-one'),\n(23038, 85904, 'eighty-five thousand nine hundred four'),\n(23039, 34449, 'thirty-four thousand four hundred forty-nine'),\n(23040, 1053, 'one thousand fifty-three'),\n(23041, 71285, 'seventy-one thousand two hundred eighty-five'),\n(23042, 43866, 'forty-three thousand eight hundred sixty-six'),\n(23043, 51646, 'fifty-one thousand six hundred forty-six'),\n(23044, 53961, 'fifty-three thousand nine hundred sixty-one'),\n(23045, 52878, 'fifty-two thousand eight hundred seventy-eight'),\n(23046, 4008, 'four thousand eight'),\n(23047, 34585, 'thirty-four thousand five hundred eighty-five'),\n(23048, 35507, 'thirty-five thousand five hundred seven'),\n(23049, 21406, 'twenty-one thousand four hundred six'),\n(23050, 48613, 'forty-eight thousand six hundred thirteen'),\n(23051, 95326, 'ninety-five thousand three hundred twenty-six'),\n(23052, 66962, 'sixty-six thousand nine hundred sixty-two'),\n(23053, 5894, 'five thousand eight hundred ninety-four'),\n(23054, 70930, 'seventy thousand nine hundred thirty'),\n(23055, 99180, 'ninety-nine thousand one hundred eighty'),\n(23056, 54294, 'fifty-four thousand two hundred ninety-four'),\n(23057, 72453, 'seventy-two thousand four hundred fifty-three'),\n(23058, 27943, 'twenty-seven thousand nine hundred forty-three'),\n(23059, 6644, 'six thousand six hundred forty-four'),\n(23060, 23131, 'twenty-three thousand one hundred thirty-one'),\n(23061, 52234, 'fifty-two thousand two hundred thirty-four'),\n(23062, 34433, 'thirty-four thousand four hundred thirty-three'),\n(23063, 11985, 'eleven thousand nine hundred eighty-five'),\n(23064, 83619, 'eighty-three thousand six hundred nineteen'),\n(23065, 7549, 'seven thousand five hundred forty-nine'),\n(23066, 61214, 'sixty-one thousand two hundred fourteen'),\n(23067, 83855, 'eighty-three thousand eight hundred fifty-five'),\n(23068, 46128, 'forty-six thousand one hundred twenty-eight'),\n(23069, 86560, 'eighty-six thousand five hundred sixty'),\n(23070, 96219, 'ninety-six thousand two hundred nineteen'),\n(23071, 73016, 'seventy-three thousand sixteen'),\n(23072, 10887, 'ten thousand eight hundred eighty-seven'),\n(23073, 75265, 'seventy-five thousand two hundred sixty-five'),\n(23074, 98835, 'ninety-eight thousand eight hundred thirty-five'),\n(23075, 91250, 'ninety-one thousand two hundred fifty'),\n(23076, 27001, 'twenty-seven thousand one'),\n(23077, 18930, 'eighteen thousand nine hundred thirty'),\n(23078, 76974, 'seventy-six thousand nine hundred seventy-four'),\n(23079, 19006, 'nineteen thousand six'),\n(23080, 95770, 'ninety-five thousand seven hundred seventy'),\n(23081, 40934, 'forty thousand nine hundred thirty-four'),\n(23082, 39149, 'thirty-nine thousand one hundred forty-nine'),\n(23083, 76963, 'seventy-six thousand nine hundred sixty-three'),\n(23084, 46497, 'forty-six thousand four hundred ninety-seven'),\n(23085, 92177, 'ninety-two thousand one hundred seventy-seven'),\n(23086, 62186, 'sixty-two thousand one hundred eighty-six'),\n(23087, 481, 'four hundred eighty-one'),\n(23088, 82975, 'eighty-two thousand nine hundred seventy-five'),\n(23089, 96149, 'ninety-six thousand one hundred forty-nine'),\n(23090, 94670, 'ninety-four thousand six hundred seventy'),\n(23091, 94696, 'ninety-four thousand six hundred ninety-six'),\n(23092, 39892, 'thirty-nine thousand eight hundred ninety-two'),\n(23093, 68058, 'sixty-eight thousand fifty-eight'),\n(23094, 37851, 'thirty-seven thousand eight hundred fifty-one'),\n(23095, 67218, 'sixty-seven thousand two hundred eighteen'),\n(23096, 52925, 'fifty-two thousand nine hundred twenty-five'),\n(23097, 64368, 'sixty-four thousand three hundred sixty-eight'),\n(23098, 29304, 'twenty-nine thousand three hundred four'),\n(23099, 20209, 'twenty thousand two hundred nine'),\n(23100, 5995, 'five thousand nine hundred ninety-five'),\n(23101, 12562, 'twelve thousand five hundred sixty-two'),\n(23102, 18938, 'eighteen thousand nine hundred thirty-eight'),\n(23103, 10478, 'ten thousand four hundred seventy-eight'),\n(23104, 61098, 'sixty-one thousand ninety-eight'),\n(23105, 99284, 'ninety-nine thousand two hundred eighty-four'),\n(23106, 17911, 'seventeen thousand nine hundred eleven'),\n(23107, 18150, 'eighteen thousand one hundred fifty'),\n(23108, 6214, 'six thousand two hundred fourteen'),\n(23109, 47205, 'forty-seven thousand two hundred five'),\n(23110, 9065, 'nine thousand sixty-five'),\n(23111, 46042, 'forty-six thousand forty-two'),\n(23112, 55490, 'fifty-five thousand four hundred ninety'),\n(23113, 68322, 'sixty-eight thousand three hundred twenty-two'),\n(23114, 60574, 'sixty thousand five hundred seventy-four'),\n(23115, 73601, 'seventy-three thousand six hundred one'),\n(23116, 32783, 'thirty-two thousand seven hundred eighty-three'),\n(23117, 98620, 'ninety-eight thousand six hundred twenty'),\n(23118, 31790, 'thirty-one thousand seven hundred ninety'),\n(23119, 1375, 'one thousand three hundred seventy-five'),\n(23120, 10330, 'ten thousand three hundred thirty'),\n(23121, 30552, 'thirty thousand five hundred fifty-two'),\n(23122, 60630, 'sixty thousand six hundred thirty'),\n(23123, 71198, 'seventy-one thousand one hundred ninety-eight'),\n(23124, 86487, 'eighty-six thousand four hundred eighty-seven'),\n(23125, 19938, 'nineteen thousand nine hundred thirty-eight'),\n(23126, 79990, 'seventy-nine thousand nine hundred ninety'),\n(23127, 27717, 'twenty-seven thousand seven hundred seventeen'),\n(23128, 96471, 'ninety-six thousand four hundred seventy-one'),\n(23129, 51872, 'fifty-one thousand eight hundred seventy-two'),\n(23130, 80786, 'eighty thousand seven hundred eighty-six'),\n(23131, 54547, 'fifty-four thousand five hundred forty-seven'),\n(23132, 82645, 'eighty-two thousand six hundred forty-five'),\n(23133, 85876, 'eighty-five thousand eight hundred seventy-six'),\n(23134, 41386, 'forty-one thousand three hundred eighty-six'),\n(23135, 20498, 'twenty thousand four hundred ninety-eight'),\n(23136, 26093, 'twenty-six thousand ninety-three'),\n(23137, 19592, 'nineteen thousand five hundred ninety-two'),\n(23138, 79794, 'seventy-nine thousand seven hundred ninety-four'),\n(23139, 52073, 'fifty-two thousand seventy-three'),\n(23140, 19289, 'nineteen thousand two hundred eighty-nine'),\n(23141, 66033, 'sixty-six thousand thirty-three'),\n(23142, 81274, 'eighty-one thousand two hundred seventy-four'),\n(23143, 73729, 'seventy-three thousand seven hundred twenty-nine'),\n(23144, 96530, 'ninety-six thousand five hundred thirty'),\n(23145, 99634, 'ninety-nine thousand six hundred thirty-four'),\n(23146, 68224, 'sixty-eight thousand two hundred twenty-four'),\n(23147, 15392, 'fifteen thousand three hundred ninety-two'),\n(23148, 16454, 'sixteen thousand four hundred fifty-four'),\n(23149, 9850, 'nine thousand eight hundred fifty'),\n(23150, 87416, 'eighty-seven thousand four hundred sixteen'),\n(23151, 44719, 'forty-four thousand seven hundred nineteen'),\n(23152, 24418, 'twenty-four thousand four hundred eighteen'),\n(23153, 45169, 'forty-five thousand one hundred sixty-nine'),\n(23154, 84136, 'eighty-four thousand one hundred thirty-six'),\n(23155, 11471, 'eleven thousand four hundred seventy-one'),\n(23156, 97232, 'ninety-seven thousand two hundred thirty-two'),\n(23157, 95879, 'ninety-five thousand eight hundred seventy-nine'),\n(23158, 39264, 'thirty-nine thousand two hundred sixty-four'),\n(23159, 54919, 'fifty-four thousand nine hundred nineteen'),\n(23160, 59821, 'fifty-nine thousand eight hundred twenty-one'),\n(23161, 85477, 'eighty-five thousand four hundred seventy-seven'),\n(23162, 56209, 'fifty-six thousand two hundred nine'),\n(23163, 91301, 'ninety-one thousand three hundred one'),\n(23164, 48433, 'forty-eight thousand four hundred thirty-three'),\n(23165, 46090, 'forty-six thousand ninety'),\n(23166, 84253, 'eighty-four thousand two hundred fifty-three'),\n(23167, 45992, 'forty-five thousand nine hundred ninety-two'),\n(23168, 72540, 'seventy-two thousand five hundred forty'),\n(23169, 68022, 'sixty-eight thousand twenty-two'),\n(23170, 93401, 'ninety-three thousand four hundred one'),\n(23171, 58412, 'fifty-eight thousand four hundred twelve'),\n(23172, 56328, 'fifty-six thousand three hundred twenty-eight'),\n(23173, 98224, 'ninety-eight thousand two hundred twenty-four'),\n(23174, 99950, 'ninety-nine thousand nine hundred fifty'),\n(23175, 25006, 'twenty-five thousand six'),\n(23176, 85041, 'eighty-five thousand forty-one'),\n(23177, 29170, 'twenty-nine thousand one hundred seventy'),\n(23178, 59211, 'fifty-nine thousand two hundred eleven'),\n(23179, 42934, 'forty-two thousand nine hundred thirty-four'),\n(23180, 8273, 'eight thousand two hundred seventy-three'),\n(23181, 2480, 'two thousand four hundred eighty'),\n(23182, 21749, 'twenty-one thousand seven hundred forty-nine'),\n(23183, 50524, 'fifty thousand five hundred twenty-four'),\n(23184, 34177, 'thirty-four thousand one hundred seventy-seven'),\n(23185, 32279, 'thirty-two thousand two hundred seventy-nine'),\n(23186, 24393, 'twenty-four thousand three hundred ninety-three'),\n(23187, 40406, 'forty thousand four hundred six'),\n(23188, 12174, 'twelve thousand one hundred seventy-four'),\n(23189, 89902, 'eighty-nine thousand nine hundred two'),\n(23190, 7553, 'seven thousand five hundred fifty-three'),\n(23191, 32574, 'thirty-two thousand five hundred seventy-four'),\n(23192, 12878, 'twelve thousand eight hundred seventy-eight'),\n(23193, 58930, 'fifty-eight thousand nine hundred thirty'),\n(23194, 15381, 'fifteen thousand three hundred eighty-one'),\n(23195, 52001, 'fifty-two thousand one'),\n(23196, 52185, 'fifty-two thousand one hundred eighty-five'),\n(23197, 77302, 'seventy-seven thousand three hundred two'),\n(23198, 71116, 'seventy-one thousand one hundred sixteen'),\n(23199, 6608, 'six thousand six hundred eight'),\n(23200, 18785, 'eighteen thousand seven hundred eighty-five'),\n(23201, 22015, 'twenty-two thousand fifteen'),\n(23202, 52050, 'fifty-two thousand fifty'),\n(23203, 46707, 'forty-six thousand seven hundred seven'),\n(23204, 57026, 'fifty-seven thousand twenty-six'),\n(23205, 5542, 'five thousand five hundred forty-two'),\n(23206, 59209, 'fifty-nine thousand two hundred nine'),\n(23207, 73010, 'seventy-three thousand ten'),\n(23208, 4497, 'four thousand four hundred ninety-seven'),\n(23209, 21277, 'twenty-one thousand two hundred seventy-seven'),\n(23210, 21827, 'twenty-one thousand eight hundred twenty-seven'),\n(23211, 20842, 'twenty thousand eight hundred forty-two'),\n(23212, 61158, 'sixty-one thousand one hundred fifty-eight'),\n(23213, 64285, 'sixty-four thousand two hundred eighty-five'),\n(23214, 38411, 'thirty-eight thousand four hundred eleven'),\n(23215, 35084, 'thirty-five thousand eighty-four'),\n(23216, 56475, 'fifty-six thousand four hundred seventy-five'),\n(23217, 36618, 'thirty-six thousand six hundred eighteen'),\n(23218, 69348, 'sixty-nine thousand three hundred forty-eight'),\n(23219, 95593, 'ninety-five thousand five hundred ninety-three'),\n(23220, 45175, 'forty-five thousand one hundred seventy-five'),\n(23221, 23965, 'twenty-three thousand nine hundred sixty-five'),\n(23222, 10674, 'ten thousand six hundred seventy-four'),\n(23223, 40173, 'forty thousand one hundred seventy-three'),\n(23224, 43460, 'forty-three thousand four hundred sixty'),\n(23225, 69230, 'sixty-nine thousand two hundred thirty'),\n(23226, 12050, 'twelve thousand fifty'),\n(23227, 82804, 'eighty-two thousand eight hundred four'),\n(23228, 81191, 'eighty-one thousand one hundred ninety-one'),\n(23229, 16192, 'sixteen thousand one hundred ninety-two'),\n(23230, 21229, 'twenty-one thousand two hundred twenty-nine'),\n(23231, 54057, 'fifty-four thousand fifty-seven'),\n(23232, 89477, 'eighty-nine thousand four hundred seventy-seven'),\n(23233, 45420, 'forty-five thousand four hundred twenty'),\n(23234, 42627, 'forty-two thousand six hundred twenty-seven'),\n(23235, 41618, 'forty-one thousand six hundred eighteen'),\n(23236, 51029, 'fifty-one thousand twenty-nine'),\n(23237, 30136, 'thirty thousand one hundred thirty-six'),\n(23238, 94738, 'ninety-four thousand seven hundred thirty-eight'),\n(23239, 36657, 'thirty-six thousand six hundred fifty-seven'),\n(23240, 1490, 'one thousand four hundred ninety'),\n(23241, 45710, 'forty-five thousand seven hundred ten'),\n(23242, 53264, 'fifty-three thousand two hundred sixty-four'),\n(23243, 42754, 'forty-two thousand seven hundred fifty-four'),\n(23244, 6321, 'six thousand three hundred twenty-one'),\n(23245, 78860, 'seventy-eight thousand eight hundred sixty'),\n(23246, 3726, 'three thousand seven hundred twenty-six'),\n(23247, 65819, 'sixty-five thousand eight hundred nineteen'),\n(23248, 98692, 'ninety-eight thousand six hundred ninety-two'),\n(23249, 9544, 'nine thousand five hundred forty-four'),\n(23250, 83446, 'eighty-three thousand four hundred forty-six'),\n(23251, 13012, 'thirteen thousand twelve'),\n(23252, 744, 'seven hundred forty-four'),\n(23253, 43721, 'forty-three thousand seven hundred twenty-one'),\n(23254, 2573, 'two thousand five hundred seventy-three'),\n(23255, 28905, 'twenty-eight thousand nine hundred five'),\n(23256, 88956, 'eighty-eight thousand nine hundred fifty-six'),\n(23257, 4478, 'four thousand four hundred seventy-eight'),\n(23258, 3243, 'three thousand two hundred forty-three'),\n(23259, 80055, 'eighty thousand fifty-five'),\n(23260, 14059, 'fourteen thousand fifty-nine'),\n(23261, 69373, 'sixty-nine thousand three hundred seventy-three'),\n(23262, 67952, 'sixty-seven thousand nine hundred fifty-two'),\n(23263, 47982, 'forty-seven thousand nine hundred eighty-two'),\n(23264, 19665, 'nineteen thousand six hundred sixty-five'),\n(23265, 51533, 'fifty-one thousand five hundred thirty-three'),\n(23266, 37268, 'thirty-seven thousand two hundred sixty-eight'),\n(23267, 34734, 'thirty-four thousand seven hundred thirty-four'),\n(23268, 18763, 'eighteen thousand seven hundred sixty-three'),\n(23269, 57121, 'fifty-seven thousand one hundred twenty-one'),\n(23270, 21212, 'twenty-one thousand two hundred twelve'),\n(23271, 569, 'five hundred sixty-nine'),\n(23272, 10095, 'ten thousand ninety-five'),\n(23273, 20709, 'twenty thousand seven hundred nine'),\n(23274, 64638, 'sixty-four thousand six hundred thirty-eight'),\n(23275, 73673, 'seventy-three thousand six hundred seventy-three'),\n(23276, 65355, 'sixty-five thousand three hundred fifty-five'),\n(23277, 35863, 'thirty-five thousand eight hundred sixty-three'),\n(23278, 58863, 'fifty-eight thousand eight hundred sixty-three'),\n(23279, 28257, 'twenty-eight thousand two hundred fifty-seven'),\n(23280, 68402, 'sixty-eight thousand four hundred two'),\n(23281, 56490, 'fifty-six thousand four hundred ninety'),\n(23282, 27938, 'twenty-seven thousand nine hundred thirty-eight'),\n(23283, 35348, 'thirty-five thousand three hundred forty-eight'),\n(23284, 78663, 'seventy-eight thousand six hundred sixty-three'),\n(23285, 33958, 'thirty-three thousand nine hundred fifty-eight'),\n(23286, 5746, 'five thousand seven hundred forty-six'),\n(23287, 19777, 'nineteen thousand seven hundred seventy-seven'),\n(23288, 399, 'three hundred ninety-nine'),\n(23289, 23170, 'twenty-three thousand one hundred seventy'),\n(23290, 51670, 'fifty-one thousand six hundred seventy'),\n(23291, 74796, 'seventy-four thousand seven hundred ninety-six'),\n(23292, 8410, 'eight thousand four hundred ten'),\n(23293, 21286, 'twenty-one thousand two hundred eighty-six'),\n(23294, 23409, 'twenty-three thousand four hundred nine'),\n(23295, 46798, 'forty-six thousand seven hundred ninety-eight'),\n(23296, 76767, 'seventy-six thousand seven hundred sixty-seven'),\n(23297, 42024, 'forty-two thousand twenty-four'),\n(23298, 20189, 'twenty thousand one hundred eighty-nine'),\n(23299, 2198, 'two thousand one hundred ninety-eight'),\n(23300, 95112, 'ninety-five thousand one hundred twelve'),\n(23301, 82485, 'eighty-two thousand four hundred eighty-five'),\n(23302, 52747, 'fifty-two thousand seven hundred forty-seven'),\n(23303, 52766, 'fifty-two thousand seven hundred sixty-six'),\n(23304, 55894, 'fifty-five thousand eight hundred ninety-four'),\n(23305, 22554, 'twenty-two thousand five hundred fifty-four'),\n(23306, 93021, 'ninety-three thousand twenty-one'),\n(23307, 44701, 'forty-four thousand seven hundred one'),\n(23308, 38275, 'thirty-eight thousand two hundred seventy-five'),\n(23309, 7581, 'seven thousand five hundred eighty-one'),\n(23310, 29117, 'twenty-nine thousand one hundred seventeen'),\n(23311, 4578, 'four thousand five hundred seventy-eight'),\n(23312, 69371, 'sixty-nine thousand three hundred seventy-one'),\n(23313, 48153, 'forty-eight thousand one hundred fifty-three'),\n(23314, 94113, 'ninety-four thousand one hundred thirteen'),\n(23315, 60997, 'sixty thousand nine hundred ninety-seven'),\n(23316, 80722, 'eighty thousand seven hundred twenty-two'),\n(23317, 2000, 'two thousand'),\n(23318, 32432, 'thirty-two thousand four hundred thirty-two'),\n(23319, 57304, 'fifty-seven thousand three hundred four'),\n(23320, 58126, 'fifty-eight thousand one hundred twenty-six'),\n(23321, 53084, 'fifty-three thousand eighty-four'),\n(23322, 25830, 'twenty-five thousand eight hundred thirty'),\n(23323, 90572, 'ninety thousand five hundred seventy-two'),\n(23324, 16442, 'sixteen thousand four hundred forty-two'),\n(23325, 86995, 'eighty-six thousand nine hundred ninety-five'),\n(23326, 94924, 'ninety-four thousand nine hundred twenty-four'),\n(23327, 65952, 'sixty-five thousand nine hundred fifty-two'),\n(23328, 15351, 'fifteen thousand three hundred fifty-one'),\n(23329, 61859, 'sixty-one thousand eight hundred fifty-nine'),\n(23330, 88223, 'eighty-eight thousand two hundred twenty-three'),\n(23331, 77162, 'seventy-seven thousand one hundred sixty-two'),\n(23332, 9451, 'nine thousand four hundred fifty-one'),\n(23333, 40002, 'forty thousand two'),\n(23334, 44649, 'forty-four thousand six hundred forty-nine'),\n(23335, 43516, 'forty-three thousand five hundred sixteen'),\n(23336, 44651, 'forty-four thousand six hundred fifty-one'),\n(23337, 94737, 'ninety-four thousand seven hundred thirty-seven'),\n(23338, 79897, 'seventy-nine thousand eight hundred ninety-seven'),\n(23339, 25784, 'twenty-five thousand seven hundred eighty-four'),\n(23340, 63329, 'sixty-three thousand three hundred twenty-nine'),\n(23341, 8716, 'eight thousand seven hundred sixteen'),\n(23342, 48804, 'forty-eight thousand eight hundred four'),\n(23343, 25234, 'twenty-five thousand two hundred thirty-four'),\n(23344, 64381, 'sixty-four thousand three hundred eighty-one'),\n(23345, 21241, 'twenty-one thousand two hundred forty-one'),\n(23346, 20190, 'twenty thousand one hundred ninety'),\n(23347, 50515, 'fifty thousand five hundred fifteen'),\n(23348, 85348, 'eighty-five thousand three hundred forty-eight'),\n(23349, 74973, 'seventy-four thousand nine hundred seventy-three'),\n(23350, 24942, 'twenty-four thousand nine hundred forty-two'),\n(23351, 59084, 'fifty-nine thousand eighty-four'),\n(23352, 99109, 'ninety-nine thousand one hundred nine'),\n(23353, 90129, 'ninety thousand one hundred twenty-nine'),\n(23354, 48853, 'forty-eight thousand eight hundred fifty-three'),\n(23355, 81315, 'eighty-one thousand three hundred fifteen'),\n(23356, 72127, 'seventy-two thousand one hundred twenty-seven'),\n(23357, 83360, 'eighty-three thousand three hundred sixty'),\n(23358, 70460, 'seventy thousand four hundred sixty'),\n(23359, 44305, 'forty-four thousand three hundred five'),\n(23360, 70984, 'seventy thousand nine hundred eighty-four'),\n(23361, 75792, 'seventy-five thousand seven hundred ninety-two'),\n(23362, 72626, 'seventy-two thousand six hundred twenty-six'),\n(23363, 12300, 'twelve thousand three hundred'),\n(23364, 97133, 'ninety-seven thousand one hundred thirty-three'),\n(23365, 64205, 'sixty-four thousand two hundred five'),\n(23366, 76703, 'seventy-six thousand seven hundred three'),\n(23367, 22185, 'twenty-two thousand one hundred eighty-five'),\n(23368, 29390, 'twenty-nine thousand three hundred ninety'),\n(23369, 81470, 'eighty-one thousand four hundred seventy'),\n(23370, 80574, 'eighty thousand five hundred seventy-four'),\n(23371, 90910, 'ninety thousand nine hundred ten'),\n(23372, 40383, 'forty thousand three hundred eighty-three'),\n(23373, 53280, 'fifty-three thousand two hundred eighty'),\n(23374, 86649, 'eighty-six thousand six hundred forty-nine'),\n(23375, 82652, 'eighty-two thousand six hundred fifty-two'),\n(23376, 83720, 'eighty-three thousand seven hundred twenty'),\n(23377, 3875, 'three thousand eight hundred seventy-five'),\n(23378, 3651, 'three thousand six hundred fifty-one'),\n(23379, 30530, 'thirty thousand five hundred thirty'),\n(23380, 27788, 'twenty-seven thousand seven hundred eighty-eight'),\n(23381, 53028, 'fifty-three thousand twenty-eight'),\n(23382, 36076, 'thirty-six thousand seventy-six'),\n(23383, 24208, 'twenty-four thousand two hundred eight'),\n(23384, 92257, 'ninety-two thousand two hundred fifty-seven'),\n(23385, 80550, 'eighty thousand five hundred fifty'),\n(23386, 8594, 'eight thousand five hundred ninety-four'),\n(23387, 65989, 'sixty-five thousand nine hundred eighty-nine'),\n(23388, 51032, 'fifty-one thousand thirty-two'),\n(23389, 9293, 'nine thousand two hundred ninety-three'),\n(23390, 25268, 'twenty-five thousand two hundred sixty-eight'),\n(23391, 32198, 'thirty-two thousand one hundred ninety-eight'),\n(23392, 98849, 'ninety-eight thousand eight hundred forty-nine'),\n(23393, 46353, 'forty-six thousand three hundred fifty-three'),\n(23394, 98513, 'ninety-eight thousand five hundred thirteen'),\n(23395, 16495, 'sixteen thousand four hundred ninety-five'),\n(23396, 39765, 'thirty-nine thousand seven hundred sixty-five'),\n(23397, 19160, 'nineteen thousand one hundred sixty'),\n(23398, 97219, 'ninety-seven thousand two hundred nineteen'),\n(23399, 66678, 'sixty-six thousand six hundred seventy-eight'),\n(23400, 78864, 'seventy-eight thousand eight hundred sixty-four'),\n(23401, 23579, 'twenty-three thousand five hundred seventy-nine'),\n(23402, 50445, 'fifty thousand four hundred forty-five'),\n(23403, 49582, 'forty-nine thousand five hundred eighty-two'),\n(23404, 49279, 'forty-nine thousand two hundred seventy-nine'),\n(23405, 32229, 'thirty-two thousand two hundred twenty-nine'),\n(23406, 31784, 'thirty-one thousand seven hundred eighty-four'),\n(23407, 12278, 'twelve thousand two hundred seventy-eight'),\n(23408, 15041, 'fifteen thousand forty-one'),\n(23409, 97946, 'ninety-seven thousand nine hundred forty-six'),\n(23410, 34219, 'thirty-four thousand two hundred nineteen'),\n(23411, 69063, 'sixty-nine thousand sixty-three'),\n(23412, 67278, 'sixty-seven thousand two hundred seventy-eight'),\n(23413, 93825, 'ninety-three thousand eight hundred twenty-five'),\n(23414, 86096, 'eighty-six thousand ninety-six'),\n(23415, 69699, 'sixty-nine thousand six hundred ninety-nine'),\n(23416, 67540, 'sixty-seven thousand five hundred forty'),\n(23417, 36108, 'thirty-six thousand one hundred eight'),\n(23418, 14792, 'fourteen thousand seven hundred ninety-two'),\n(23419, 28293, 'twenty-eight thousand two hundred ninety-three'),\n(23420, 24306, 'twenty-four thousand three hundred six'),\n(23421, 65701, 'sixty-five thousand seven hundred one'),\n(23422, 43083, 'forty-three thousand eighty-three'),\n(23423, 5437, 'five thousand four hundred thirty-seven'),\n(23424, 75594, 'seventy-five thousand five hundred ninety-four'),\n(23425, 32724, 'thirty-two thousand seven hundred twenty-four'),\n(23426, 26494, 'twenty-six thousand four hundred ninety-four'),\n(23427, 51796, 'fifty-one thousand seven hundred ninety-six'),\n(23428, 22504, 'twenty-two thousand five hundred four'),\n(23429, 5493, 'five thousand four hundred ninety-three'),\n(23430, 28605, 'twenty-eight thousand six hundred five'),\n(23431, 75751, 'seventy-five thousand seven hundred fifty-one'),\n(23432, 14295, 'fourteen thousand two hundred ninety-five'),\n(23433, 95044, 'ninety-five thousand forty-four'),\n(23434, 22419, 'twenty-two thousand four hundred nineteen'),\n(23435, 92444, 'ninety-two thousand four hundred forty-four'),\n(23436, 18709, 'eighteen thousand seven hundred nine'),\n(23437, 8409, 'eight thousand four hundred nine'),\n(23438, 55631, 'fifty-five thousand six hundred thirty-one'),\n(23439, 43624, 'forty-three thousand six hundred twenty-four'),\n(23440, 64917, 'sixty-four thousand nine hundred seventeen'),\n(23441, 2672, 'two thousand six hundred seventy-two'),\n(23442, 94243, 'ninety-four thousand two hundred forty-three'),\n(23443, 3445, 'three thousand four hundred forty-five'),\n(23444, 93716, 'ninety-three thousand seven hundred sixteen'),\n(23445, 33007, 'thirty-three thousand seven'),\n(23446, 1623, 'one thousand six hundred twenty-three'),\n(23447, 63865, 'sixty-three thousand eight hundred sixty-five'),\n(23448, 99659, 'ninety-nine thousand six hundred fifty-nine'),\n(23449, 2847, 'two thousand eight hundred forty-seven'),\n(23450, 91135, 'ninety-one thousand one hundred thirty-five'),\n(23451, 68236, 'sixty-eight thousand two hundred thirty-six'),\n(23452, 564, 'five hundred sixty-four'),\n(23453, 74617, 'seventy-four thousand six hundred seventeen'),\n(23454, 24814, 'twenty-four thousand eight hundred fourteen'),\n(23455, 96192, 'ninety-six thousand one hundred ninety-two'),\n(23456, 59102, 'fifty-nine thousand one hundred two'),\n(23457, 76018, 'seventy-six thousand eighteen'),\n(23458, 8029, 'eight thousand twenty-nine'),\n(23459, 57431, 'fifty-seven thousand four hundred thirty-one'),\n(23460, 1815, 'one thousand eight hundred fifteen'),\n(23461, 17772, 'seventeen thousand seven hundred seventy-two'),\n(23462, 65183, 'sixty-five thousand one hundred eighty-three'),\n(23463, 72540, 'seventy-two thousand five hundred forty'),\n(23464, 24482, 'twenty-four thousand four hundred eighty-two'),\n(23465, 8490, 'eight thousand four hundred ninety'),\n(23466, 18404, 'eighteen thousand four hundred four'),\n(23467, 37344, 'thirty-seven thousand three hundred forty-four'),\n(23468, 48478, 'forty-eight thousand four hundred seventy-eight'),\n(23469, 98727, 'ninety-eight thousand seven hundred twenty-seven'),\n(23470, 52604, 'fifty-two thousand six hundred four'),\n(23471, 97024, 'ninety-seven thousand twenty-four'),\n(23472, 86328, 'eighty-six thousand three hundred twenty-eight'),\n(23473, 21559, 'twenty-one thousand five hundred fifty-nine'),\n(23474, 21147, 'twenty-one thousand one hundred forty-seven'),\n(23475, 15058, 'fifteen thousand fifty-eight'),\n(23476, 54076, 'fifty-four thousand seventy-six'),\n(23477, 22547, 'twenty-two thousand five hundred forty-seven'),\n(23478, 77433, 'seventy-seven thousand four hundred thirty-three'),\n(23479, 26859, 'twenty-six thousand eight hundred fifty-nine'),\n(23480, 21962, 'twenty-one thousand nine hundred sixty-two'),\n(23481, 76856, 'seventy-six thousand eight hundred fifty-six'),\n(23482, 27754, 'twenty-seven thousand seven hundred fifty-four'),\n(23483, 28591, 'twenty-eight thousand five hundred ninety-one'),\n(23484, 17376, 'seventeen thousand three hundred seventy-six'),\n(23485, 18813, 'eighteen thousand eight hundred thirteen'),\n(23486, 5282, 'five thousand two hundred eighty-two'),\n(23487, 52488, 'fifty-two thousand four hundred eighty-eight'),\n(23488, 10655, 'ten thousand six hundred fifty-five'),\n(23489, 16162, 'sixteen thousand one hundred sixty-two'),\n(23490, 43793, 'forty-three thousand seven hundred ninety-three'),\n(23491, 10226, 'ten thousand two hundred twenty-six'),\n(23492, 11628, 'eleven thousand six hundred twenty-eight'),\n(23493, 18775, 'eighteen thousand seven hundred seventy-five'),\n(23494, 50433, 'fifty thousand four hundred thirty-three'),\n(23495, 13932, 'thirteen thousand nine hundred thirty-two'),\n(23496, 82111, 'eighty-two thousand one hundred eleven'),\n(23497, 96458, 'ninety-six thousand four hundred fifty-eight'),\n(23498, 10118, 'ten thousand one hundred eighteen'),\n(23499, 95958, 'ninety-five thousand nine hundred fifty-eight'),\n(23500, 67526, 'sixty-seven thousand five hundred twenty-six'),\n(23501, 70795, 'seventy thousand seven hundred ninety-five'),\n(23502, 17859, 'seventeen thousand eight hundred fifty-nine'),\n(23503, 14355, 'fourteen thousand three hundred fifty-five'),\n(23504, 22810, 'twenty-two thousand eight hundred ten'),\n(23505, 90886, 'ninety thousand eight hundred eighty-six'),\n(23506, 8603, 'eight thousand six hundred three'),\n(23507, 84909, 'eighty-four thousand nine hundred nine'),\n(23508, 83846, 'eighty-three thousand eight hundred forty-six'),\n(23509, 71714, 'seventy-one thousand seven hundred fourteen'),\n(23510, 48247, 'forty-eight thousand two hundred forty-seven'),\n(23511, 86614, 'eighty-six thousand six hundred fourteen'),\n(23512, 26186, 'twenty-six thousand one hundred eighty-six'),\n(23513, 16558, 'sixteen thousand five hundred fifty-eight'),\n(23514, 30360, 'thirty thousand three hundred sixty'),\n(23515, 38691, 'thirty-eight thousand six hundred ninety-one'),\n(23516, 71548, 'seventy-one thousand five hundred forty-eight'),\n(23517, 54678, 'fifty-four thousand six hundred seventy-eight'),\n(23518, 47737, 'forty-seven thousand seven hundred thirty-seven'),\n(23519, 18355, 'eighteen thousand three hundred fifty-five'),\n(23520, 74423, 'seventy-four thousand four hundred twenty-three'),\n(23521, 95437, 'ninety-five thousand four hundred thirty-seven'),\n(23522, 9469, 'nine thousand four hundred sixty-nine'),\n(23523, 92722, 'ninety-two thousand seven hundred twenty-two'),\n(23524, 26722, 'twenty-six thousand seven hundred twenty-two'),\n(23525, 26761, 'twenty-six thousand seven hundred sixty-one'),\n(23526, 3402, 'three thousand four hundred two'),\n(23527, 74672, 'seventy-four thousand six hundred seventy-two'),\n(23528, 71706, 'seventy-one thousand seven hundred six'),\n(23529, 2883, 'two thousand eight hundred eighty-three'),\n(23530, 31197, 'thirty-one thousand one hundred ninety-seven'),\n(23531, 17244, 'seventeen thousand two hundred forty-four'),\n(23532, 37093, 'thirty-seven thousand ninety-three'),\n(23533, 38294, 'thirty-eight thousand two hundred ninety-four'),\n(23534, 61466, 'sixty-one thousand four hundred sixty-six'),\n(23535, 54430, 'fifty-four thousand four hundred thirty'),\n(23536, 87720, 'eighty-seven thousand seven hundred twenty'),\n(23537, 51579, 'fifty-one thousand five hundred seventy-nine'),\n(23538, 61482, 'sixty-one thousand four hundred eighty-two'),\n(23539, 93483, 'ninety-three thousand four hundred eighty-three'),\n(23540, 1278, 'one thousand two hundred seventy-eight'),\n(23541, 39606, 'thirty-nine thousand six hundred six'),\n(23542, 38473, 'thirty-eight thousand four hundred seventy-three'),\n(23543, 55195, 'fifty-five thousand one hundred ninety-five'),\n(23544, 64507, 'sixty-four thousand five hundred seven'),\n(23545, 3334, 'three thousand three hundred thirty-four'),\n(23546, 53799, 'fifty-three thousand seven hundred ninety-nine'),\n(23547, 92707, 'ninety-two thousand seven hundred seven'),\n(23548, 18125, 'eighteen thousand one hundred twenty-five'),\n(23549, 62649, 'sixty-two thousand six hundred forty-nine'),\n(23550, 69419, 'sixty-nine thousand four hundred nineteen'),\n(23551, 2370, 'two thousand three hundred seventy'),\n(23552, 16396, 'sixteen thousand three hundred ninety-six'),\n(23553, 61512, 'sixty-one thousand five hundred twelve'),\n(23554, 30759, 'thirty thousand seven hundred fifty-nine'),\n(23555, 40746, 'forty thousand seven hundred forty-six'),\n(23556, 10091, 'ten thousand ninety-one'),\n(23557, 36710, 'thirty-six thousand seven hundred ten'),\n(23558, 83900, 'eighty-three thousand nine hundred'),\n(23559, 30959, 'thirty thousand nine hundred fifty-nine'),\n(23560, 60182, 'sixty thousand one hundred eighty-two'),\n(23561, 59887, 'fifty-nine thousand eight hundred eighty-seven'),\n(23562, 42941, 'forty-two thousand nine hundred forty-one'),\n(23563, 94187, 'ninety-four thousand one hundred eighty-seven'),\n(23564, 5987, 'five thousand nine hundred eighty-seven'),\n(23565, 39046, 'thirty-nine thousand forty-six'),\n(23566, 7399, 'seven thousand three hundred ninety-nine'),\n(23567, 69957, 'sixty-nine thousand nine hundred fifty-seven'),\n(23568, 86820, 'eighty-six thousand eight hundred twenty'),\n(23569, 23573, 'twenty-three thousand five hundred seventy-three'),\n(23570, 54932, 'fifty-four thousand nine hundred thirty-two'),\n(23571, 2182, 'two thousand one hundred eighty-two'),\n(23572, 81298, 'eighty-one thousand two hundred ninety-eight'),\n(23573, 2196, 'two thousand one hundred ninety-six'),\n(23574, 27319, 'twenty-seven thousand three hundred nineteen'),\n(23575, 13215, 'thirteen thousand two hundred fifteen'),\n(23576, 80871, 'eighty thousand eight hundred seventy-one'),\n(23577, 30735, 'thirty thousand seven hundred thirty-five'),\n(23578, 64550, 'sixty-four thousand five hundred fifty'),\n(23579, 42344, 'forty-two thousand three hundred forty-four'),\n(23580, 4413, 'four thousand four hundred thirteen'),\n(23581, 26455, 'twenty-six thousand four hundred fifty-five'),\n(23582, 62610, 'sixty-two thousand six hundred ten'),\n(23583, 8899, 'eight thousand eight hundred ninety-nine'),\n(23584, 50846, 'fifty thousand eight hundred forty-six'),\n(23585, 49248, 'forty-nine thousand two hundred forty-eight'),\n(23586, 52575, 'fifty-two thousand five hundred seventy-five'),\n(23587, 57411, 'fifty-seven thousand four hundred eleven'),\n(23588, 25151, 'twenty-five thousand one hundred fifty-one'),\n(23589, 57624, 'fifty-seven thousand six hundred twenty-four'),\n(23590, 49571, 'forty-nine thousand five hundred seventy-one'),\n(23591, 67799, 'sixty-seven thousand seven hundred ninety-nine'),\n(23592, 40059, 'forty thousand fifty-nine'),\n(23593, 62167, 'sixty-two thousand one hundred sixty-seven'),\n(23594, 20583, 'twenty thousand five hundred eighty-three'),\n(23595, 24724, 'twenty-four thousand seven hundred twenty-four'),\n(23596, 40703, 'forty thousand seven hundred three'),\n(23597, 85707, 'eighty-five thousand seven hundred seven'),\n(23598, 38209, 'thirty-eight thousand two hundred nine'),\n(23599, 58826, 'fifty-eight thousand eight hundred twenty-six'),\n(23600, 99341, 'ninety-nine thousand three hundred forty-one'),\n(23601, 23133, 'twenty-three thousand one hundred thirty-three'),\n(23602, 73103, 'seventy-three thousand one hundred three'),\n(23603, 97851, 'ninety-seven thousand eight hundred fifty-one'),\n(23604, 79555, 'seventy-nine thousand five hundred fifty-five'),\n(23605, 95111, 'ninety-five thousand one hundred eleven'),\n(23606, 73440, 'seventy-three thousand four hundred forty'),\n(23607, 90824, 'ninety thousand eight hundred twenty-four'),\n(23608, 53358, 'fifty-three thousand three hundred fifty-eight'),\n(23609, 65004, 'sixty-five thousand four'),\n(23610, 82717, 'eighty-two thousand seven hundred seventeen'),\n(23611, 16867, 'sixteen thousand eight hundred sixty-seven'),\n(23612, 60442, 'sixty thousand four hundred forty-two'),\n(23613, 77593, 'seventy-seven thousand five hundred ninety-three'),\n(23614, 73115, 'seventy-three thousand one hundred fifteen'),\n(23615, 16073, 'sixteen thousand seventy-three'),\n(23616, 34014, 'thirty-four thousand fourteen'),\n(23617, 17573, 'seventeen thousand five hundred seventy-three'),\n(23618, 35465, 'thirty-five thousand four hundred sixty-five'),\n(23619, 82501, 'eighty-two thousand five hundred one'),\n(23620, 96795, 'ninety-six thousand seven hundred ninety-five'),\n(23621, 30923, 'thirty thousand nine hundred twenty-three'),\n(23622, 86696, 'eighty-six thousand six hundred ninety-six'),\n(23623, 66602, 'sixty-six thousand six hundred two'),\n(23624, 64764, 'sixty-four thousand seven hundred sixty-four'),\n(23625, 40955, 'forty thousand nine hundred fifty-five'),\n(23626, 17818, 'seventeen thousand eight hundred eighteen'),\n(23627, 14627, 'fourteen thousand six hundred twenty-seven'),\n(23628, 50966, 'fifty thousand nine hundred sixty-six'),\n(23629, 28307, 'twenty-eight thousand three hundred seven'),\n(23630, 5343, 'five thousand three hundred forty-three'),\n(23631, 75438, 'seventy-five thousand four hundred thirty-eight'),\n(23632, 18477, 'eighteen thousand four hundred seventy-seven'),\n(23633, 70317, 'seventy thousand three hundred seventeen'),\n(23634, 24792, 'twenty-four thousand seven hundred ninety-two'),\n(23635, 14079, 'fourteen thousand seventy-nine'),\n(23636, 71084, 'seventy-one thousand eighty-four'),\n(23637, 12620, 'twelve thousand six hundred twenty'),\n(23638, 17480, 'seventeen thousand four hundred eighty'),\n(23639, 24724, 'twenty-four thousand seven hundred twenty-four'),\n(23640, 16185, 'sixteen thousand one hundred eighty-five'),\n(23641, 74936, 'seventy-four thousand nine hundred thirty-six'),\n(23642, 86982, 'eighty-six thousand nine hundred eighty-two'),\n(23643, 64673, 'sixty-four thousand six hundred seventy-three'),\n(23644, 27413, 'twenty-seven thousand four hundred thirteen'),\n(23645, 76881, 'seventy-six thousand eight hundred eighty-one'),\n(23646, 96176, 'ninety-six thousand one hundred seventy-six'),\n(23647, 4524, 'four thousand five hundred twenty-four'),\n(23648, 38103, 'thirty-eight thousand one hundred three'),\n(23649, 44713, 'forty-four thousand seven hundred thirteen'),\n(23650, 51531, 'fifty-one thousand five hundred thirty-one'),\n(23651, 17723, 'seventeen thousand seven hundred twenty-three'),\n(23652, 33190, 'thirty-three thousand one hundred ninety'),\n(23653, 92518, 'ninety-two thousand five hundred eighteen'),\n(23654, 90485, 'ninety thousand four hundred eighty-five'),\n(23655, 86879, 'eighty-six thousand eight hundred seventy-nine'),\n(23656, 48126, 'forty-eight thousand one hundred twenty-six'),\n(23657, 86738, 'eighty-six thousand seven hundred thirty-eight'),\n(23658, 99642, 'ninety-nine thousand six hundred forty-two'),\n(23659, 76021, 'seventy-six thousand twenty-one'),\n(23660, 81664, 'eighty-one thousand six hundred sixty-four'),\n(23661, 50538, 'fifty thousand five hundred thirty-eight'),\n(23662, 51732, 'fifty-one thousand seven hundred thirty-two'),\n(23663, 37218, 'thirty-seven thousand two hundred eighteen'),\n(23664, 87061, 'eighty-seven thousand sixty-one'),\n(23665, 26895, 'twenty-six thousand eight hundred ninety-five'),\n(23666, 8686, 'eight thousand six hundred eighty-six'),\n(23667, 81487, 'eighty-one thousand four hundred eighty-seven'),\n(23668, 28329, 'twenty-eight thousand three hundred twenty-nine'),\n(23669, 88527, 'eighty-eight thousand five hundred twenty-seven'),\n(23670, 28915, 'twenty-eight thousand nine hundred fifteen'),\n(23671, 25845, 'twenty-five thousand eight hundred forty-five'),\n(23672, 42529, 'forty-two thousand five hundred twenty-nine'),\n(23673, 13321, 'thirteen thousand three hundred twenty-one'),\n(23674, 4907, 'four thousand nine hundred seven'),\n(23675, 28057, 'twenty-eight thousand fifty-seven'),\n(23676, 4316, 'four thousand three hundred sixteen'),\n(23677, 88438, 'eighty-eight thousand four hundred thirty-eight'),\n(23678, 46994, 'forty-six thousand nine hundred ninety-four'),\n(23679, 57761, 'fifty-seven thousand seven hundred sixty-one'),\n(23680, 25477, 'twenty-five thousand four hundred seventy-seven'),\n(23681, 56481, 'fifty-six thousand four hundred eighty-one'),\n(23682, 35285, 'thirty-five thousand two hundred eighty-five'),\n(23683, 40414, 'forty thousand four hundred fourteen'),\n(23684, 33727, 'thirty-three thousand seven hundred twenty-seven'),\n(23685, 42403, 'forty-two thousand four hundred three'),\n(23686, 10077, 'ten thousand seventy-seven'),\n(23687, 82837, 'eighty-two thousand eight hundred thirty-seven'),\n(23688, 89782, 'eighty-nine thousand seven hundred eighty-two'),\n(23689, 50995, 'fifty thousand nine hundred ninety-five'),\n(23690, 49859, 'forty-nine thousand eight hundred fifty-nine'),\n(23691, 4843, 'four thousand eight hundred forty-three'),\n(23692, 60366, 'sixty thousand three hundred sixty-six'),\n(23693, 85857, 'eighty-five thousand eight hundred fifty-seven'),\n(23694, 92262, 'ninety-two thousand two hundred sixty-two'),\n(23695, 51111, 'fifty-one thousand one hundred eleven'),\n(23696, 54124, 'fifty-four thousand one hundred twenty-four'),\n(23697, 68038, 'sixty-eight thousand thirty-eight'),\n(23698, 4959, 'four thousand nine hundred fifty-nine'),\n(23699, 78719, 'seventy-eight thousand seven hundred nineteen'),\n(23700, 71954, 'seventy-one thousand nine hundred fifty-four'),\n(23701, 50224, 'fifty thousand two hundred twenty-four'),\n(23702, 48630, 'forty-eight thousand six hundred thirty'),\n(23703, 6606, 'six thousand six hundred six'),\n(23704, 12784, 'twelve thousand seven hundred eighty-four'),\n(23705, 48375, 'forty-eight thousand three hundred seventy-five'),\n(23706, 59890, 'fifty-nine thousand eight hundred ninety'),\n(23707, 1834, 'one thousand eight hundred thirty-four'),\n(23708, 16932, 'sixteen thousand nine hundred thirty-two'),\n(23709, 93071, 'ninety-three thousand seventy-one'),\n(23710, 25041, 'twenty-five thousand forty-one'),\n(23711, 18141, 'eighteen thousand one hundred forty-one'),\n(23712, 66856, 'sixty-six thousand eight hundred fifty-six'),\n(23713, 73727, 'seventy-three thousand seven hundred twenty-seven'),\n(23714, 73236, 'seventy-three thousand two hundred thirty-six'),\n(23715, 39925, 'thirty-nine thousand nine hundred twenty-five'),\n(23716, 14269, 'fourteen thousand two hundred sixty-nine'),\n(23717, 87148, 'eighty-seven thousand one hundred forty-eight'),\n(23718, 45589, 'forty-five thousand five hundred eighty-nine'),\n(23719, 70828, 'seventy thousand eight hundred twenty-eight'),\n(23720, 47337, 'forty-seven thousand three hundred thirty-seven'),\n(23721, 57009, 'fifty-seven thousand nine'),\n(23722, 13121, 'thirteen thousand one hundred twenty-one'),\n(23723, 97971, 'ninety-seven thousand nine hundred seventy-one'),\n(23724, 54488, 'fifty-four thousand four hundred eighty-eight'),\n(23725, 76314, 'seventy-six thousand three hundred fourteen'),\n(23726, 37727, 'thirty-seven thousand seven hundred twenty-seven'),\n(23727, 45799, 'forty-five thousand seven hundred ninety-nine'),\n(23728, 13502, 'thirteen thousand five hundred two'),\n(23729, 27634, 'twenty-seven thousand six hundred thirty-four'),\n(23730, 42985, 'forty-two thousand nine hundred eighty-five'),\n(23731, 86995, 'eighty-six thousand nine hundred ninety-five'),\n(23732, 9107, 'nine thousand one hundred seven'),\n(23733, 98628, 'ninety-eight thousand six hundred twenty-eight'),\n(23734, 49058, 'forty-nine thousand fifty-eight'),\n(23735, 80684, 'eighty thousand six hundred eighty-four'),\n(23736, 13313, 'thirteen thousand three hundred thirteen'),\n(23737, 68137, 'sixty-eight thousand one hundred thirty-seven'),\n(23738, 13307, 'thirteen thousand three hundred seven'),\n(23739, 6261, 'six thousand two hundred sixty-one'),\n(23740, 84216, 'eighty-four thousand two hundred sixteen'),\n(23741, 21375, 'twenty-one thousand three hundred seventy-five'),\n(23742, 56627, 'fifty-six thousand six hundred twenty-seven'),\n(23743, 97402, 'ninety-seven thousand four hundred two'),\n(23744, 32714, 'thirty-two thousand seven hundred fourteen'),\n(23745, 72907, 'seventy-two thousand nine hundred seven'),\n(23746, 25554, 'twenty-five thousand five hundred fifty-four'),\n(23747, 90319, 'ninety thousand three hundred nineteen'),\n(23748, 75026, 'seventy-five thousand twenty-six'),\n(23749, 14558, 'fourteen thousand five hundred fifty-eight'),\n(23750, 39151, 'thirty-nine thousand one hundred fifty-one'),\n(23751, 67247, 'sixty-seven thousand two hundred forty-seven'),\n(23752, 34646, 'thirty-four thousand six hundred forty-six'),\n(23753, 8971, 'eight thousand nine hundred seventy-one'),\n(23754, 53488, 'fifty-three thousand four hundred eighty-eight'),\n(23755, 54866, 'fifty-four thousand eight hundred sixty-six'),\n(23756, 87762, 'eighty-seven thousand seven hundred sixty-two'),\n(23757, 57999, 'fifty-seven thousand nine hundred ninety-nine'),\n(23758, 14097, 'fourteen thousand ninety-seven'),\n(23759, 11700, 'eleven thousand seven hundred'),\n(23760, 56779, 'fifty-six thousand seven hundred seventy-nine'),\n(23761, 97944, 'ninety-seven thousand nine hundred forty-four'),\n(23762, 52631, 'fifty-two thousand six hundred thirty-one'),\n(23763, 26939, 'twenty-six thousand nine hundred thirty-nine'),\n(23764, 30676, 'thirty thousand six hundred seventy-six'),\n(23765, 23913, 'twenty-three thousand nine hundred thirteen'),\n(23766, 85419, 'eighty-five thousand four hundred nineteen'),\n(23767, 23862, 'twenty-three thousand eight hundred sixty-two'),\n(23768, 76562, 'seventy-six thousand five hundred sixty-two'),\n(23769, 47077, 'forty-seven thousand seventy-seven'),\n(23770, 27829, 'twenty-seven thousand eight hundred twenty-nine'),\n(23771, 72686, 'seventy-two thousand six hundred eighty-six'),\n(23772, 47292, 'forty-seven thousand two hundred ninety-two'),\n(23773, 20328, 'twenty thousand three hundred twenty-eight'),\n(23774, 5901, 'five thousand nine hundred one'),\n(23775, 39359, 'thirty-nine thousand three hundred fifty-nine'),\n(23776, 84815, 'eighty-four thousand eight hundred fifteen'),\n(23777, 84465, 'eighty-four thousand four hundred sixty-five'),\n(23778, 50404, 'fifty thousand four hundred four'),\n(23779, 7769, 'seven thousand seven hundred sixty-nine'),\n(23780, 17334, 'seventeen thousand three hundred thirty-four'),\n(23781, 54708, 'fifty-four thousand seven hundred eight'),\n(23782, 168, 'one hundred sixty-eight'),\n(23783, 27381, 'twenty-seven thousand three hundred eighty-one'),\n(23784, 4711, 'four thousand seven hundred eleven'),\n(23785, 79371, 'seventy-nine thousand three hundred seventy-one'),\n(23786, 28455, 'twenty-eight thousand four hundred fifty-five'),\n(23787, 80271, 'eighty thousand two hundred seventy-one'),\n(23788, 42986, 'forty-two thousand nine hundred eighty-six'),\n(23789, 65728, 'sixty-five thousand seven hundred twenty-eight'),\n(23790, 40154, 'forty thousand one hundred fifty-four'),\n(23791, 34146, 'thirty-four thousand one hundred forty-six'),\n(23792, 45928, 'forty-five thousand nine hundred twenty-eight'),\n(23793, 22438, 'twenty-two thousand four hundred thirty-eight'),\n(23794, 95764, 'ninety-five thousand seven hundred sixty-four'),\n(23795, 98693, 'ninety-eight thousand six hundred ninety-three'),\n(23796, 88040, 'eighty-eight thousand forty'),\n(23797, 57179, 'fifty-seven thousand one hundred seventy-nine'),\n(23798, 44329, 'forty-four thousand three hundred twenty-nine'),\n(23799, 47526, 'forty-seven thousand five hundred twenty-six'),\n(23800, 74130, 'seventy-four thousand one hundred thirty'),\n(23801, 59210, 'fifty-nine thousand two hundred ten'),\n(23802, 76351, 'seventy-six thousand three hundred fifty-one'),\n(23803, 74751, 'seventy-four thousand seven hundred fifty-one'),\n(23804, 5642, 'five thousand six hundred forty-two'),\n(23805, 81823, 'eighty-one thousand eight hundred twenty-three'),\n(23806, 44736, 'forty-four thousand seven hundred thirty-six'),\n(23807, 29374, 'twenty-nine thousand three hundred seventy-four'),\n(23808, 85145, 'eighty-five thousand one hundred forty-five'),\n(23809, 6764, 'six thousand seven hundred sixty-four'),\n(23810, 96775, 'ninety-six thousand seven hundred seventy-five'),\n(23811, 18354, 'eighteen thousand three hundred fifty-four'),\n(23812, 20977, 'twenty thousand nine hundred seventy-seven'),\n(23813, 43564, 'forty-three thousand five hundred sixty-four'),\n(23814, 3869, 'three thousand eight hundred sixty-nine'),\n(23815, 18821, 'eighteen thousand eight hundred twenty-one'),\n(23816, 46133, 'forty-six thousand one hundred thirty-three'),\n(23817, 1495, 'one thousand four hundred ninety-five'),\n(23818, 57541, 'fifty-seven thousand five hundred forty-one'),\n(23819, 72573, 'seventy-two thousand five hundred seventy-three'),\n(23820, 33494, 'thirty-three thousand four hundred ninety-four'),\n(23821, 51918, 'fifty-one thousand nine hundred eighteen'),\n(23822, 93391, 'ninety-three thousand three hundred ninety-one'),\n(23823, 58255, 'fifty-eight thousand two hundred fifty-five'),\n(23824, 1356, 'one thousand three hundred fifty-six'),\n(23825, 68965, 'sixty-eight thousand nine hundred sixty-five'),\n(23826, 33007, 'thirty-three thousand seven'),\n(23827, 3477, 'three thousand four hundred seventy-seven'),\n(23828, 83162, 'eighty-three thousand one hundred sixty-two'),\n(23829, 54242, 'fifty-four thousand two hundred forty-two'),\n(23830, 74037, 'seventy-four thousand thirty-seven'),\n(23831, 36860, 'thirty-six thousand eight hundred sixty'),\n(23832, 28096, 'twenty-eight thousand ninety-six'),\n(23833, 12737, 'twelve thousand seven hundred thirty-seven'),\n(23834, 79159, 'seventy-nine thousand one hundred fifty-nine'),\n(23835, 57547, 'fifty-seven thousand five hundred forty-seven'),\n(23836, 51154, 'fifty-one thousand one hundred fifty-four'),\n(23837, 77439, 'seventy-seven thousand four hundred thirty-nine'),\n(23838, 93124, 'ninety-three thousand one hundred twenty-four'),\n(23839, 67347, 'sixty-seven thousand three hundred forty-seven'),\n(23840, 39833, 'thirty-nine thousand eight hundred thirty-three'),\n(23841, 5447, 'five thousand four hundred forty-seven'),\n(23842, 12911, 'twelve thousand nine hundred eleven'),\n(23843, 12916, 'twelve thousand nine hundred sixteen'),\n(23844, 92452, 'ninety-two thousand four hundred fifty-two'),\n(23845, 50515, 'fifty thousand five hundred fifteen'),\n(23846, 15898, 'fifteen thousand eight hundred ninety-eight'),\n(23847, 68416, 'sixty-eight thousand four hundred sixteen'),\n(23848, 72179, 'seventy-two thousand one hundred seventy-nine'),\n(23849, 37175, 'thirty-seven thousand one hundred seventy-five'),\n(23850, 50495, 'fifty thousand four hundred ninety-five'),\n(23851, 56026, 'fifty-six thousand twenty-six'),\n(23852, 60961, 'sixty thousand nine hundred sixty-one'),\n(23853, 76351, 'seventy-six thousand three hundred fifty-one'),\n(23854, 73053, 'seventy-three thousand fifty-three'),\n(23855, 19211, 'nineteen thousand two hundred eleven'),\n(23856, 73516, 'seventy-three thousand five hundred sixteen'),\n(23857, 26319, 'twenty-six thousand three hundred nineteen'),\n(23858, 41276, 'forty-one thousand two hundred seventy-six'),\n(23859, 45926, 'forty-five thousand nine hundred twenty-six'),\n(23860, 5171, 'five thousand one hundred seventy-one'),\n(23861, 78829, 'seventy-eight thousand eight hundred twenty-nine'),\n(23862, 66865, 'sixty-six thousand eight hundred sixty-five'),\n(23863, 34401, 'thirty-four thousand four hundred one'),\n(23864, 55621, 'fifty-five thousand six hundred twenty-one'),\n(23865, 51118, 'fifty-one thousand one hundred eighteen'),\n(23866, 27574, 'twenty-seven thousand five hundred seventy-four'),\n(23867, 98813, 'ninety-eight thousand eight hundred thirteen'),\n(23868, 68913, 'sixty-eight thousand nine hundred thirteen'),\n(23869, 36079, 'thirty-six thousand seventy-nine'),\n(23870, 19794, 'nineteen thousand seven hundred ninety-four'),\n(23871, 59294, 'fifty-nine thousand two hundred ninety-four'),\n(23872, 82700, 'eighty-two thousand seven hundred'),\n(23873, 51582, 'fifty-one thousand five hundred eighty-two'),\n(23874, 71711, 'seventy-one thousand seven hundred eleven'),\n(23875, 20373, 'twenty thousand three hundred seventy-three'),\n(23876, 99834, 'ninety-nine thousand eight hundred thirty-four'),\n(23877, 18089, 'eighteen thousand eighty-nine'),\n(23878, 46778, 'forty-six thousand seven hundred seventy-eight'),\n(23879, 61674, 'sixty-one thousand six hundred seventy-four'),\n(23880, 35359, 'thirty-five thousand three hundred fifty-nine'),\n(23881, 3556, 'three thousand five hundred fifty-six'),\n(23882, 44793, 'forty-four thousand seven hundred ninety-three'),\n(23883, 46168, 'forty-six thousand one hundred sixty-eight'),\n(23884, 3762, 'three thousand seven hundred sixty-two'),\n(23885, 49049, 'forty-nine thousand forty-nine'),\n(23886, 47010, 'forty-seven thousand ten'),\n(23887, 31400, 'thirty-one thousand four hundred'),\n(23888, 66239, 'sixty-six thousand two hundred thirty-nine'),\n(23889, 2061, 'two thousand sixty-one'),\n(23890, 19073, 'nineteen thousand seventy-three'),\n(23891, 57056, 'fifty-seven thousand fifty-six'),\n(23892, 48949, 'forty-eight thousand nine hundred forty-nine'),\n(23893, 78308, 'seventy-eight thousand three hundred eight'),\n(23894, 40673, 'forty thousand six hundred seventy-three'),\n(23895, 48027, 'forty-eight thousand twenty-seven'),\n(23896, 91316, 'ninety-one thousand three hundred sixteen'),\n(23897, 64895, 'sixty-four thousand eight hundred ninety-five'),\n(23898, 82672, 'eighty-two thousand six hundred seventy-two'),\n(23899, 61551, 'sixty-one thousand five hundred fifty-one'),\n(23900, 26406, 'twenty-six thousand four hundred six'),\n(23901, 88116, 'eighty-eight thousand one hundred sixteen'),\n(23902, 47210, 'forty-seven thousand two hundred ten'),\n(23903, 67816, 'sixty-seven thousand eight hundred sixteen'),\n(23904, 6575, 'six thousand five hundred seventy-five'),\n(23905, 54459, 'fifty-four thousand four hundred fifty-nine'),\n(23906, 41446, 'forty-one thousand four hundred forty-six'),\n(23907, 84563, 'eighty-four thousand five hundred sixty-three'),\n(23908, 6719, 'six thousand seven hundred nineteen'),\n(23909, 15279, 'fifteen thousand two hundred seventy-nine'),\n(23910, 35365, 'thirty-five thousand three hundred sixty-five'),\n(23911, 33572, 'thirty-three thousand five hundred seventy-two'),\n(23912, 60664, 'sixty thousand six hundred sixty-four'),\n(23913, 780, 'seven hundred eighty'),\n(23914, 65557, 'sixty-five thousand five hundred fifty-seven'),\n(23915, 99238, 'ninety-nine thousand two hundred thirty-eight'),\n(23916, 31940, 'thirty-one thousand nine hundred forty'),\n(23917, 59345, 'fifty-nine thousand three hundred forty-five'),\n(23918, 30947, 'thirty thousand nine hundred forty-seven'),\n(23919, 8137, 'eight thousand one hundred thirty-seven'),\n(23920, 66843, 'sixty-six thousand eight hundred forty-three'),\n(23921, 52685, 'fifty-two thousand six hundred eighty-five'),\n(23922, 65848, 'sixty-five thousand eight hundred forty-eight'),\n(23923, 24628, 'twenty-four thousand six hundred twenty-eight'),\n(23924, 98908, 'ninety-eight thousand nine hundred eight'),\n(23925, 14938, 'fourteen thousand nine hundred thirty-eight'),\n(23926, 93863, 'ninety-three thousand eight hundred sixty-three'),\n(23927, 64580, 'sixty-four thousand five hundred eighty'),\n(23928, 50642, 'fifty thousand six hundred forty-two'),\n(23929, 94055, 'ninety-four thousand fifty-five'),\n(23930, 87291, 'eighty-seven thousand two hundred ninety-one'),\n(23931, 77405, 'seventy-seven thousand four hundred five'),\n(23932, 62586, 'sixty-two thousand five hundred eighty-six'),\n(23933, 58411, 'fifty-eight thousand four hundred eleven'),\n(23934, 30530, 'thirty thousand five hundred thirty'),\n(23935, 72649, 'seventy-two thousand six hundred forty-nine'),\n(23936, 51197, 'fifty-one thousand one hundred ninety-seven'),\n(23937, 52636, 'fifty-two thousand six hundred thirty-six'),\n(23938, 78415, 'seventy-eight thousand four hundred fifteen'),\n(23939, 67547, 'sixty-seven thousand five hundred forty-seven'),\n(23940, 12626, 'twelve thousand six hundred twenty-six'),\n(23941, 86230, 'eighty-six thousand two hundred thirty'),\n(23942, 72504, 'seventy-two thousand five hundred four'),\n(23943, 43234, 'forty-three thousand two hundred thirty-four'),\n(23944, 18554, 'eighteen thousand five hundred fifty-four'),\n(23945, 59763, 'fifty-nine thousand seven hundred sixty-three'),\n(23946, 36924, 'thirty-six thousand nine hundred twenty-four'),\n(23947, 75737, 'seventy-five thousand seven hundred thirty-seven'),\n(23948, 21297, 'twenty-one thousand two hundred ninety-seven'),\n(23949, 74578, 'seventy-four thousand five hundred seventy-eight'),\n(23950, 65189, 'sixty-five thousand one hundred eighty-nine'),\n(23951, 16955, 'sixteen thousand nine hundred fifty-five'),\n(23952, 13351, 'thirteen thousand three hundred fifty-one'),\n(23953, 74175, 'seventy-four thousand one hundred seventy-five'),\n(23954, 75675, 'seventy-five thousand six hundred seventy-five'),\n(23955, 31054, 'thirty-one thousand fifty-four'),\n(23956, 32687, 'thirty-two thousand six hundred eighty-seven'),\n(23957, 26821, 'twenty-six thousand eight hundred twenty-one'),\n(23958, 47698, 'forty-seven thousand six hundred ninety-eight'),\n(23959, 27589, 'twenty-seven thousand five hundred eighty-nine'),\n(23960, 14029, 'fourteen thousand twenty-nine'),\n(23961, 58632, 'fifty-eight thousand six hundred thirty-two'),\n(23962, 39282, 'thirty-nine thousand two hundred eighty-two'),\n(23963, 80040, 'eighty thousand forty'),\n(23964, 20882, 'twenty thousand eight hundred eighty-two'),\n(23965, 94832, 'ninety-four thousand eight hundred thirty-two'),\n(23966, 21360, 'twenty-one thousand three hundred sixty'),\n(23967, 87114, 'eighty-seven thousand one hundred fourteen'),\n(23968, 39850, 'thirty-nine thousand eight hundred fifty'),\n(23969, 80942, 'eighty thousand nine hundred forty-two'),\n(23970, 64624, 'sixty-four thousand six hundred twenty-four'),\n(23971, 50071, 'fifty thousand seventy-one'),\n(23972, 7611, 'seven thousand six hundred eleven'),\n(23973, 26896, 'twenty-six thousand eight hundred ninety-six'),\n(23974, 25091, 'twenty-five thousand ninety-one'),\n(23975, 55911, 'fifty-five thousand nine hundred eleven'),\n(23976, 78769, 'seventy-eight thousand seven hundred sixty-nine'),\n(23977, 61944, 'sixty-one thousand nine hundred forty-four'),\n(23978, 98430, 'ninety-eight thousand four hundred thirty'),\n(23979, 68960, 'sixty-eight thousand nine hundred sixty'),\n(23980, 87121, 'eighty-seven thousand one hundred twenty-one'),\n(23981, 98309, 'ninety-eight thousand three hundred nine'),\n(23982, 88462, 'eighty-eight thousand four hundred sixty-two'),\n(23983, 55234, 'fifty-five thousand two hundred thirty-four'),\n(23984, 21077, 'twenty-one thousand seventy-seven'),\n(23985, 90825, 'ninety thousand eight hundred twenty-five'),\n(23986, 25076, 'twenty-five thousand seventy-six'),\n(23987, 17326, 'seventeen thousand three hundred twenty-six'),\n(23988, 87564, 'eighty-seven thousand five hundred sixty-four'),\n(23989, 52365, 'fifty-two thousand three hundred sixty-five'),\n(23990, 14533, 'fourteen thousand five hundred thirty-three'),\n(23991, 28964, 'twenty-eight thousand nine hundred sixty-four'),\n(23992, 35622, 'thirty-five thousand six hundred twenty-two'),\n(23993, 86396, 'eighty-six thousand three hundred ninety-six'),\n(23994, 86612, 'eighty-six thousand six hundred twelve'),\n(23995, 49887, 'forty-nine thousand eight hundred eighty-seven'),\n(23996, 21185, 'twenty-one thousand one hundred eighty-five'),\n(23997, 19313, 'nineteen thousand three hundred thirteen'),\n(23998, 78892, 'seventy-eight thousand eight hundred ninety-two'),\n(23999, 54790, 'fifty-four thousand seven hundred ninety'),\n(24000, 90071, 'ninety thousand seventy-one'),\n(24001, 94931, 'ninety-four thousand nine hundred thirty-one'),\n(24002, 99001, 'ninety-nine thousand one'),\n(24003, 8140, 'eight thousand one hundred forty'),\n(24004, 23335, 'twenty-three thousand three hundred thirty-five'),\n(24005, 55695, 'fifty-five thousand six hundred ninety-five'),\n(24006, 52109, 'fifty-two thousand one hundred nine'),\n(24007, 33912, 'thirty-three thousand nine hundred twelve'),\n(24008, 55636, 'fifty-five thousand six hundred thirty-six'),\n(24009, 27909, 'twenty-seven thousand nine hundred nine'),\n(24010, 55259, 'fifty-five thousand two hundred fifty-nine'),\n(24011, 49855, 'forty-nine thousand eight hundred fifty-five'),\n(24012, 20303, 'twenty thousand three hundred three'),\n(24013, 4110, 'four thousand one hundred ten'),\n(24014, 8022, 'eight thousand twenty-two'),\n(24015, 93612, 'ninety-three thousand six hundred twelve'),\n(24016, 65783, 'sixty-five thousand seven hundred eighty-three'),\n(24017, 95618, 'ninety-five thousand six hundred eighteen'),\n(24018, 12357, 'twelve thousand three hundred fifty-seven'),\n(24019, 23889, 'twenty-three thousand eight hundred eighty-nine'),\n(24020, 53220, 'fifty-three thousand two hundred twenty'),\n(24021, 43163, 'forty-three thousand one hundred sixty-three'),\n(24022, 1629, 'one thousand six hundred twenty-nine'),\n(24023, 36, 'thirty-six'),\n(24024, 31719, 'thirty-one thousand seven hundred nineteen'),\n(24025, 59172, 'fifty-nine thousand one hundred seventy-two'),\n(24026, 76172, 'seventy-six thousand one hundred seventy-two'),\n(24027, 21949, 'twenty-one thousand nine hundred forty-nine'),\n(24028, 54965, 'fifty-four thousand nine hundred sixty-five'),\n(24029, 21240, 'twenty-one thousand two hundred forty'),\n(24030, 26377, 'twenty-six thousand three hundred seventy-seven'),\n(24031, 45731, 'forty-five thousand seven hundred thirty-one'),\n(24032, 7966, 'seven thousand nine hundred sixty-six'),\n(24033, 39163, 'thirty-nine thousand one hundred sixty-three'),\n(24034, 47215, 'forty-seven thousand two hundred fifteen'),\n(24035, 83299, 'eighty-three thousand two hundred ninety-nine'),\n(24036, 15845, 'fifteen thousand eight hundred forty-five'),\n(24037, 87940, 'eighty-seven thousand nine hundred forty'),\n(24038, 15816, 'fifteen thousand eight hundred sixteen'),\n(24039, 29868, 'twenty-nine thousand eight hundred sixty-eight'),\n(24040, 37258, 'thirty-seven thousand two hundred fifty-eight'),\n(24041, 40164, 'forty thousand one hundred sixty-four'),\n(24042, 3427, 'three thousand four hundred twenty-seven'),\n(24043, 88676, 'eighty-eight thousand six hundred seventy-six'),\n(24044, 19320, 'nineteen thousand three hundred twenty'),\n(24045, 54068, 'fifty-four thousand sixty-eight'),\n(24046, 87190, 'eighty-seven thousand one hundred ninety'),\n(24047, 66933, 'sixty-six thousand nine hundred thirty-three'),\n(24048, 23351, 'twenty-three thousand three hundred fifty-one'),\n(24049, 21806, 'twenty-one thousand eight hundred six'),\n(24050, 62236, 'sixty-two thousand two hundred thirty-six'),\n(24051, 54484, 'fifty-four thousand four hundred eighty-four'),\n(24052, 29894, 'twenty-nine thousand eight hundred ninety-four'),\n(24053, 97769, 'ninety-seven thousand seven hundred sixty-nine'),\n(24054, 95203, 'ninety-five thousand two hundred three'),\n(24055, 75525, 'seventy-five thousand five hundred twenty-five'),\n(24056, 30261, 'thirty thousand two hundred sixty-one'),\n(24057, 44374, 'forty-four thousand three hundred seventy-four'),\n(24058, 49104, 'forty-nine thousand one hundred four'),\n(24059, 92160, 'ninety-two thousand one hundred sixty'),\n(24060, 36988, 'thirty-six thousand nine hundred eighty-eight'),\n(24061, 46423, 'forty-six thousand four hundred twenty-three'),\n(24062, 74489, 'seventy-four thousand four hundred eighty-nine'),\n(24063, 16584, 'sixteen thousand five hundred eighty-four'),\n(24064, 5688, 'five thousand six hundred eighty-eight'),\n(24065, 92117, 'ninety-two thousand one hundred seventeen'),\n(24066, 90923, 'ninety thousand nine hundred twenty-three'),\n(24067, 21477, 'twenty-one thousand four hundred seventy-seven'),\n(24068, 70451, 'seventy thousand four hundred fifty-one'),\n(24069, 14295, 'fourteen thousand two hundred ninety-five'),\n(24070, 81918, 'eighty-one thousand nine hundred eighteen'),\n(24071, 26764, 'twenty-six thousand seven hundred sixty-four'),\n(24072, 60454, 'sixty thousand four hundred fifty-four'),\n(24073, 16923, 'sixteen thousand nine hundred twenty-three'),\n(24074, 22959, 'twenty-two thousand nine hundred fifty-nine'),\n(24075, 2292, 'two thousand two hundred ninety-two'),\n(24076, 71398, 'seventy-one thousand three hundred ninety-eight'),\n(24077, 56500, 'fifty-six thousand five hundred'),\n(24078, 35466, 'thirty-five thousand four hundred sixty-six'),\n(24079, 60552, 'sixty thousand five hundred fifty-two'),\n(24080, 39432, 'thirty-nine thousand four hundred thirty-two'),\n(24081, 22183, 'twenty-two thousand one hundred eighty-three'),\n(24082, 20019, 'twenty thousand nineteen'),\n(24083, 84798, 'eighty-four thousand seven hundred ninety-eight'),\n(24084, 35652, 'thirty-five thousand six hundred fifty-two'),\n(24085, 43387, 'forty-three thousand three hundred eighty-seven'),\n(24086, 41270, 'forty-one thousand two hundred seventy'),\n(24087, 57567, 'fifty-seven thousand five hundred sixty-seven'),\n(24088, 56276, 'fifty-six thousand two hundred seventy-six'),\n(24089, 49037, 'forty-nine thousand thirty-seven'),\n(24090, 96718, 'ninety-six thousand seven hundred eighteen'),\n(24091, 83590, 'eighty-three thousand five hundred ninety'),\n(24092, 52886, 'fifty-two thousand eight hundred eighty-six'),\n(24093, 59046, 'fifty-nine thousand forty-six'),\n(24094, 50641, 'fifty thousand six hundred forty-one'),\n(24095, 41908, 'forty-one thousand nine hundred eight'),\n(24096, 56235, 'fifty-six thousand two hundred thirty-five'),\n(24097, 68318, 'sixty-eight thousand three hundred eighteen'),\n(24098, 20710, 'twenty thousand seven hundred ten'),\n(24099, 74069, 'seventy-four thousand sixty-nine'),\n(24100, 99157, 'ninety-nine thousand one hundred fifty-seven'),\n(24101, 34599, 'thirty-four thousand five hundred ninety-nine'),\n(24102, 55257, 'fifty-five thousand two hundred fifty-seven'),\n(24103, 75281, 'seventy-five thousand two hundred eighty-one'),\n(24104, 54087, 'fifty-four thousand eighty-seven'),\n(24105, 71767, 'seventy-one thousand seven hundred sixty-seven'),\n(24106, 6888, 'six thousand eight hundred eighty-eight'),\n(24107, 84461, 'eighty-four thousand four hundred sixty-one'),\n(24108, 51451, 'fifty-one thousand four hundred fifty-one'),\n(24109, 85769, 'eighty-five thousand seven hundred sixty-nine'),\n(24110, 16592, 'sixteen thousand five hundred ninety-two'),\n(24111, 1479, 'one thousand four hundred seventy-nine'),\n(24112, 58823, 'fifty-eight thousand eight hundred twenty-three'),\n(24113, 70422, 'seventy thousand four hundred twenty-two'),\n(24114, 87284, 'eighty-seven thousand two hundred eighty-four'),\n(24115, 1718, 'one thousand seven hundred eighteen'),\n(24116, 87246, 'eighty-seven thousand two hundred forty-six'),\n(24117, 16900, 'sixteen thousand nine hundred'),\n(24118, 7435, 'seven thousand four hundred thirty-five'),\n(24119, 45711, 'forty-five thousand seven hundred eleven'),\n(24120, 40317, 'forty thousand three hundred seventeen'),\n(24121, 79996, 'seventy-nine thousand nine hundred ninety-six'),\n(24122, 2859, 'two thousand eight hundred fifty-nine'),\n(24123, 6234, 'six thousand two hundred thirty-four'),\n(24124, 77863, 'seventy-seven thousand eight hundred sixty-three'),\n(24125, 73021, 'seventy-three thousand twenty-one'),\n(24126, 45377, 'forty-five thousand three hundred seventy-seven'),\n(24127, 17756, 'seventeen thousand seven hundred fifty-six'),\n(24128, 744, 'seven hundred forty-four'),\n(24129, 37629, 'thirty-seven thousand six hundred twenty-nine'),\n(24130, 75416, 'seventy-five thousand four hundred sixteen'),\n(24131, 88361, 'eighty-eight thousand three hundred sixty-one'),\n(24132, 86522, 'eighty-six thousand five hundred twenty-two'),\n(24133, 55572, 'fifty-five thousand five hundred seventy-two'),\n(24134, 94502, 'ninety-four thousand five hundred two'),\n(24135, 66135, 'sixty-six thousand one hundred thirty-five'),\n(24136, 19773, 'nineteen thousand seven hundred seventy-three'),\n(24137, 5160, 'five thousand one hundred sixty'),\n(24138, 57793, 'fifty-seven thousand seven hundred ninety-three'),\n(24139, 96035, 'ninety-six thousand thirty-five'),\n(24140, 90243, 'ninety thousand two hundred forty-three'),\n(24141, 96147, 'ninety-six thousand one hundred forty-seven'),\n(24142, 50901, 'fifty thousand nine hundred one'),\n(24143, 61566, 'sixty-one thousand five hundred sixty-six'),\n(24144, 26813, 'twenty-six thousand eight hundred thirteen'),\n(24145, 36899, 'thirty-six thousand eight hundred ninety-nine'),\n(24146, 63756, 'sixty-three thousand seven hundred fifty-six'),\n(24147, 86063, 'eighty-six thousand sixty-three'),\n(24148, 18273, 'eighteen thousand two hundred seventy-three'),\n(24149, 32548, 'thirty-two thousand five hundred forty-eight'),\n(24150, 49109, 'forty-nine thousand one hundred nine'),\n(24151, 26996, 'twenty-six thousand nine hundred ninety-six'),\n(24152, 80234, 'eighty thousand two hundred thirty-four'),\n(24153, 91248, 'ninety-one thousand two hundred forty-eight'),\n(24154, 84814, 'eighty-four thousand eight hundred fourteen'),\n(24155, 45555, 'forty-five thousand five hundred fifty-five'),\n(24156, 20686, 'twenty thousand six hundred eighty-six'),\n(24157, 1059, 'one thousand fifty-nine'),\n(24158, 70472, 'seventy thousand four hundred seventy-two'),\n(24159, 9753, 'nine thousand seven hundred fifty-three'),\n(24160, 74767, 'seventy-four thousand seven hundred sixty-seven'),\n(24161, 42393, 'forty-two thousand three hundred ninety-three'),\n(24162, 6867, 'six thousand eight hundred sixty-seven'),\n(24163, 36977, 'thirty-six thousand nine hundred seventy-seven'),\n(24164, 82076, 'eighty-two thousand seventy-six'),\n(24165, 57751, 'fifty-seven thousand seven hundred fifty-one'),\n(24166, 62165, 'sixty-two thousand one hundred sixty-five'),\n(24167, 76151, 'seventy-six thousand one hundred fifty-one'),\n(24168, 27540, 'twenty-seven thousand five hundred forty'),\n(24169, 5612, 'five thousand six hundred twelve'),\n(24170, 46837, 'forty-six thousand eight hundred thirty-seven'),\n(24171, 86651, 'eighty-six thousand six hundred fifty-one'),\n(24172, 1344, 'one thousand three hundred forty-four'),\n(24173, 27004, 'twenty-seven thousand four'),\n(24174, 32518, 'thirty-two thousand five hundred eighteen'),\n(24175, 35958, 'thirty-five thousand nine hundred fifty-eight'),\n(24176, 73739, 'seventy-three thousand seven hundred thirty-nine'),\n(24177, 99477, 'ninety-nine thousand four hundred seventy-seven'),\n(24178, 42384, 'forty-two thousand three hundred eighty-four'),\n(24179, 57017, 'fifty-seven thousand seventeen'),\n(24180, 30865, 'thirty thousand eight hundred sixty-five'),\n(24181, 6790, 'six thousand seven hundred ninety'),\n(24182, 46218, 'forty-six thousand two hundred eighteen'),\n(24183, 63425, 'sixty-three thousand four hundred twenty-five'),\n(24184, 1656, 'one thousand six hundred fifty-six'),\n(24185, 60484, 'sixty thousand four hundred eighty-four'),\n(24186, 57439, 'fifty-seven thousand four hundred thirty-nine'),\n(24187, 26347, 'twenty-six thousand three hundred forty-seven'),\n(24188, 99269, 'ninety-nine thousand two hundred sixty-nine'),\n(24189, 85963, 'eighty-five thousand nine hundred sixty-three'),\n(24190, 60815, 'sixty thousand eight hundred fifteen'),\n(24191, 61964, 'sixty-one thousand nine hundred sixty-four'),\n(24192, 70323, 'seventy thousand three hundred twenty-three'),\n(24193, 43133, 'forty-three thousand one hundred thirty-three'),\n(24194, 54654, 'fifty-four thousand six hundred fifty-four'),\n(24195, 65737, 'sixty-five thousand seven hundred thirty-seven'),\n(24196, 19142, 'nineteen thousand one hundred forty-two'),\n(24197, 82550, 'eighty-two thousand five hundred fifty'),\n(24198, 30351, 'thirty thousand three hundred fifty-one'),\n(24199, 90266, 'ninety thousand two hundred sixty-six'),\n(24200, 20746, 'twenty thousand seven hundred forty-six'),\n(24201, 87818, 'eighty-seven thousand eight hundred eighteen'),\n(24202, 6139, 'six thousand one hundred thirty-nine'),\n(24203, 53332, 'fifty-three thousand three hundred thirty-two'),\n(24204, 23784, 'twenty-three thousand seven hundred eighty-four'),\n(24205, 34886, 'thirty-four thousand eight hundred eighty-six'),\n(24206, 76745, 'seventy-six thousand seven hundred forty-five'),\n(24207, 88544, 'eighty-eight thousand five hundred forty-four'),\n(24208, 39137, 'thirty-nine thousand one hundred thirty-seven'),\n(24209, 32481, 'thirty-two thousand four hundred eighty-one'),\n(24210, 30267, 'thirty thousand two hundred sixty-seven'),\n(24211, 83100, 'eighty-three thousand one hundred'),\n(24212, 18315, 'eighteen thousand three hundred fifteen'),\n(24213, 30801, 'thirty thousand eight hundred one'),\n(24214, 71607, 'seventy-one thousand six hundred seven'),\n(24215, 88756, 'eighty-eight thousand seven hundred fifty-six'),\n(24216, 85504, 'eighty-five thousand five hundred four'),\n(24217, 32305, 'thirty-two thousand three hundred five'),\n(24218, 10714, 'ten thousand seven hundred fourteen'),\n(24219, 90610, 'ninety thousand six hundred ten'),\n(24220, 75072, 'seventy-five thousand seventy-two'),\n(24221, 99570, 'ninety-nine thousand five hundred seventy'),\n(24222, 9757, 'nine thousand seven hundred fifty-seven'),\n(24223, 49580, 'forty-nine thousand five hundred eighty'),\n(24224, 55609, 'fifty-five thousand six hundred nine'),\n(24225, 17004, 'seventeen thousand four'),\n(24226, 20095, 'twenty thousand ninety-five'),\n(24227, 85427, 'eighty-five thousand four hundred twenty-seven'),\n(24228, 90566, 'ninety thousand five hundred sixty-six'),\n(24229, 70564, 'seventy thousand five hundred sixty-four'),\n(24230, 54460, 'fifty-four thousand four hundred sixty'),\n(24231, 18412, 'eighteen thousand four hundred twelve'),\n(24232, 21185, 'twenty-one thousand one hundred eighty-five'),\n(24233, 60896, 'sixty thousand eight hundred ninety-six'),\n(24234, 30189, 'thirty thousand one hundred eighty-nine'),\n(24235, 3247, 'three thousand two hundred forty-seven'),\n(24236, 75625, 'seventy-five thousand six hundred twenty-five'),\n(24237, 14206, 'fourteen thousand two hundred six'),\n(24238, 61125, 'sixty-one thousand one hundred twenty-five'),\n(24239, 60035, 'sixty thousand thirty-five'),\n(24240, 46132, 'forty-six thousand one hundred thirty-two'),\n(24241, 4114, 'four thousand one hundred fourteen'),\n(24242, 67192, 'sixty-seven thousand one hundred ninety-two'),\n(24243, 34113, 'thirty-four thousand one hundred thirteen'),\n(24244, 89568, 'eighty-nine thousand five hundred sixty-eight'),\n(24245, 67747, 'sixty-seven thousand seven hundred forty-seven'),\n(24246, 90778, 'ninety thousand seven hundred seventy-eight'),\n(24247, 55695, 'fifty-five thousand six hundred ninety-five'),\n(24248, 4052, 'four thousand fifty-two'),\n(24249, 9363, 'nine thousand three hundred sixty-three'),\n(24250, 47164, 'forty-seven thousand one hundred sixty-four'),\n(24251, 89184, 'eighty-nine thousand one hundred eighty-four'),\n(24252, 45096, 'forty-five thousand ninety-six'),\n(24253, 92163, 'ninety-two thousand one hundred sixty-three'),\n(24254, 29439, 'twenty-nine thousand four hundred thirty-nine'),\n(24255, 70999, 'seventy thousand nine hundred ninety-nine'),\n(24256, 7325, 'seven thousand three hundred twenty-five'),\n(24257, 81525, 'eighty-one thousand five hundred twenty-five'),\n(24258, 34198, 'thirty-four thousand one hundred ninety-eight'),\n(24259, 87047, 'eighty-seven thousand forty-seven'),\n(24260, 95417, 'ninety-five thousand four hundred seventeen'),\n(24261, 12295, 'twelve thousand two hundred ninety-five'),\n(24262, 53309, 'fifty-three thousand three hundred nine'),\n(24263, 94748, 'ninety-four thousand seven hundred forty-eight'),\n(24264, 51279, 'fifty-one thousand two hundred seventy-nine'),\n(24265, 9246, 'nine thousand two hundred forty-six'),\n(24266, 26322, 'twenty-six thousand three hundred twenty-two'),\n(24267, 99822, 'ninety-nine thousand eight hundred twenty-two'),\n(24268, 22495, 'twenty-two thousand four hundred ninety-five'),\n(24269, 86576, 'eighty-six thousand five hundred seventy-six'),\n(24270, 6341, 'six thousand three hundred forty-one'),\n(24271, 19839, 'nineteen thousand eight hundred thirty-nine'),\n(24272, 14212, 'fourteen thousand two hundred twelve'),\n(24273, 7512, 'seven thousand five hundred twelve'),\n(24274, 3569, 'three thousand five hundred sixty-nine'),\n(24275, 30740, 'thirty thousand seven hundred forty'),\n(24276, 22887, 'twenty-two thousand eight hundred eighty-seven'),\n(24277, 90008, 'ninety thousand eight'),\n(24278, 11432, 'eleven thousand four hundred thirty-two'),\n(24279, 9524, 'nine thousand five hundred twenty-four'),\n(24280, 8545, 'eight thousand five hundred forty-five'),\n(24281, 24301, 'twenty-four thousand three hundred one'),\n(24282, 27592, 'twenty-seven thousand five hundred ninety-two'),\n(24283, 46187, 'forty-six thousand one hundred eighty-seven'),\n(24284, 87906, 'eighty-seven thousand nine hundred six'),\n(24285, 82874, 'eighty-two thousand eight hundred seventy-four'),\n(24286, 14103, 'fourteen thousand one hundred three'),\n(24287, 36336, 'thirty-six thousand three hundred thirty-six'),\n(24288, 413, 'four hundred thirteen'),\n(24289, 80380, 'eighty thousand three hundred eighty'),\n(24290, 12130, 'twelve thousand one hundred thirty'),\n(24291, 33388, 'thirty-three thousand three hundred eighty-eight'),\n(24292, 27234, 'twenty-seven thousand two hundred thirty-four'),\n(24293, 23303, 'twenty-three thousand three hundred three'),\n(24294, 23785, 'twenty-three thousand seven hundred eighty-five'),\n(24295, 58047, 'fifty-eight thousand forty-seven'),\n(24296, 86222, 'eighty-six thousand two hundred twenty-two'),\n(24297, 72942, 'seventy-two thousand nine hundred forty-two'),\n(24298, 34234, 'thirty-four thousand two hundred thirty-four'),\n(24299, 95952, 'ninety-five thousand nine hundred fifty-two'),\n(24300, 67529, 'sixty-seven thousand five hundred twenty-nine'),\n(24301, 20170, 'twenty thousand one hundred seventy'),\n(24302, 16044, 'sixteen thousand forty-four'),\n(24303, 13010, 'thirteen thousand ten'),\n(24304, 61784, 'sixty-one thousand seven hundred eighty-four'),\n(24305, 67607, 'sixty-seven thousand six hundred seven'),\n(24306, 66520, 'sixty-six thousand five hundred twenty'),\n(24307, 24561, 'twenty-four thousand five hundred sixty-one'),\n(24308, 21322, 'twenty-one thousand three hundred twenty-two'),\n(24309, 91048, 'ninety-one thousand forty-eight'),\n(24310, 62144, 'sixty-two thousand one hundred forty-four'),\n(24311, 82240, 'eighty-two thousand two hundred forty'),\n(24312, 37167, 'thirty-seven thousand one hundred sixty-seven'),\n(24313, 64451, 'sixty-four thousand four hundred fifty-one'),\n(24314, 77498, 'seventy-seven thousand four hundred ninety-eight'),\n(24315, 92266, 'ninety-two thousand two hundred sixty-six'),\n(24316, 98716, 'ninety-eight thousand seven hundred sixteen'),\n(24317, 86872, 'eighty-six thousand eight hundred seventy-two'),\n(24318, 23925, 'twenty-three thousand nine hundred twenty-five'),\n(24319, 99540, 'ninety-nine thousand five hundred forty'),\n(24320, 17365, 'seventeen thousand three hundred sixty-five'),\n(24321, 37740, 'thirty-seven thousand seven hundred forty'),\n(24322, 4820, 'four thousand eight hundred twenty'),\n(24323, 42174, 'forty-two thousand one hundred seventy-four'),\n(24324, 70809, 'seventy thousand eight hundred nine'),\n(24325, 40942, 'forty thousand nine hundred forty-two'),\n(24326, 16925, 'sixteen thousand nine hundred twenty-five'),\n(24327, 33847, 'thirty-three thousand eight hundred forty-seven'),\n(24328, 16270, 'sixteen thousand two hundred seventy'),\n(24329, 49039, 'forty-nine thousand thirty-nine'),\n(24330, 97879, 'ninety-seven thousand eight hundred seventy-nine'),\n(24331, 38094, 'thirty-eight thousand ninety-four'),\n(24332, 10820, 'ten thousand eight hundred twenty'),\n(24333, 42248, 'forty-two thousand two hundred forty-eight'),\n(24334, 4932, 'four thousand nine hundred thirty-two'),\n(24335, 94550, 'ninety-four thousand five hundred fifty'),\n(24336, 44146, 'forty-four thousand one hundred forty-six'),\n(24337, 68447, 'sixty-eight thousand four hundred forty-seven'),\n(24338, 4194, 'four thousand one hundred ninety-four'),\n(24339, 35231, 'thirty-five thousand two hundred thirty-one'),\n(24340, 14755, 'fourteen thousand seven hundred fifty-five'),\n(24341, 44146, 'forty-four thousand one hundred forty-six'),\n(24342, 38066, 'thirty-eight thousand sixty-six'),\n(24343, 22902, 'twenty-two thousand nine hundred two'),\n(24344, 93823, 'ninety-three thousand eight hundred twenty-three'),\n(24345, 86633, 'eighty-six thousand six hundred thirty-three'),\n(24346, 72782, 'seventy-two thousand seven hundred eighty-two'),\n(24347, 27207, 'twenty-seven thousand two hundred seven'),\n(24348, 68015, 'sixty-eight thousand fifteen'),\n(24349, 30868, 'thirty thousand eight hundred sixty-eight'),\n(24350, 70852, 'seventy thousand eight hundred fifty-two'),\n(24351, 56358, 'fifty-six thousand three hundred fifty-eight'),\n(24352, 57722, 'fifty-seven thousand seven hundred twenty-two'),\n(24353, 67819, 'sixty-seven thousand eight hundred nineteen'),\n(24354, 869, 'eight hundred sixty-nine'),\n(24355, 23457, 'twenty-three thousand four hundred fifty-seven'),\n(24356, 72507, 'seventy-two thousand five hundred seven'),\n(24357, 90593, 'ninety thousand five hundred ninety-three'),\n(24358, 29056, 'twenty-nine thousand fifty-six'),\n(24359, 73383, 'seventy-three thousand three hundred eighty-three'),\n(24360, 81575, 'eighty-one thousand five hundred seventy-five'),\n(24361, 52289, 'fifty-two thousand two hundred eighty-nine'),\n(24362, 48070, 'forty-eight thousand seventy'),\n(24363, 2194, 'two thousand one hundred ninety-four'),\n(24364, 88547, 'eighty-eight thousand five hundred forty-seven'),\n(24365, 37819, 'thirty-seven thousand eight hundred nineteen'),\n(24366, 50800, 'fifty thousand eight hundred'),\n(24367, 47428, 'forty-seven thousand four hundred twenty-eight'),\n(24368, 75210, 'seventy-five thousand two hundred ten'),\n(24369, 82060, 'eighty-two thousand sixty'),\n(24370, 70475, 'seventy thousand four hundred seventy-five'),\n(24371, 90114, 'ninety thousand one hundred fourteen'),\n(24372, 2140, 'two thousand one hundred forty'),\n(24373, 38748, 'thirty-eight thousand seven hundred forty-eight'),\n(24374, 38895, 'thirty-eight thousand eight hundred ninety-five'),\n(24375, 56230, 'fifty-six thousand two hundred thirty'),\n(24376, 89212, 'eighty-nine thousand two hundred twelve'),\n(24377, 50995, 'fifty thousand nine hundred ninety-five'),\n(24378, 8667, 'eight thousand six hundred sixty-seven'),\n(24379, 76985, 'seventy-six thousand nine hundred eighty-five'),\n(24380, 19323, 'nineteen thousand three hundred twenty-three'),\n(24381, 28715, 'twenty-eight thousand seven hundred fifteen'),\n(24382, 95333, 'ninety-five thousand three hundred thirty-three'),\n(24383, 87775, 'eighty-seven thousand seven hundred seventy-five'),\n(24384, 79217, 'seventy-nine thousand two hundred seventeen'),\n(24385, 17528, 'seventeen thousand five hundred twenty-eight'),\n(24386, 19807, 'nineteen thousand eight hundred seven'),\n(24387, 50780, 'fifty thousand seven hundred eighty'),\n(24388, 1177, 'one thousand one hundred seventy-seven'),\n(24389, 2770, 'two thousand seven hundred seventy'),\n(24390, 23640, 'twenty-three thousand six hundred forty'),\n(24391, 3431, 'three thousand four hundred thirty-one'),\n(24392, 38215, 'thirty-eight thousand two hundred fifteen'),\n(24393, 54120, 'fifty-four thousand one hundred twenty'),\n(24394, 27689, 'twenty-seven thousand six hundred eighty-nine'),\n(24395, 76466, 'seventy-six thousand four hundred sixty-six'),\n(24396, 11482, 'eleven thousand four hundred eighty-two'),\n(24397, 34690, 'thirty-four thousand six hundred ninety'),\n(24398, 16757, 'sixteen thousand seven hundred fifty-seven'),\n(24399, 2875, 'two thousand eight hundred seventy-five'),\n(24400, 68747, 'sixty-eight thousand seven hundred forty-seven'),\n(24401, 67288, 'sixty-seven thousand two hundred eighty-eight'),\n(24402, 93617, 'ninety-three thousand six hundred seventeen'),\n(24403, 35251, 'thirty-five thousand two hundred fifty-one'),\n(24404, 9498, 'nine thousand four hundred ninety-eight'),\n(24405, 96559, 'ninety-six thousand five hundred fifty-nine'),\n(24406, 91503, 'ninety-one thousand five hundred three'),\n(24407, 66708, 'sixty-six thousand seven hundred eight'),\n(24408, 61119, 'sixty-one thousand one hundred nineteen'),\n(24409, 48100, 'forty-eight thousand one hundred'),\n(24410, 40588, 'forty thousand five hundred eighty-eight'),\n(24411, 16282, 'sixteen thousand two hundred eighty-two'),\n(24412, 19994, 'nineteen thousand nine hundred ninety-four'),\n(24413, 93293, 'ninety-three thousand two hundred ninety-three'),\n(24414, 75901, 'seventy-five thousand nine hundred one'),\n(24415, 62213, 'sixty-two thousand two hundred thirteen'),\n(24416, 45938, 'forty-five thousand nine hundred thirty-eight'),\n(24417, 23092, 'twenty-three thousand ninety-two'),\n(24418, 10660, 'ten thousand six hundred sixty'),\n(24419, 90159, 'ninety thousand one hundred fifty-nine'),\n(24420, 35123, 'thirty-five thousand one hundred twenty-three'),\n(24421, 77560, 'seventy-seven thousand five hundred sixty'),\n(24422, 34337, 'thirty-four thousand three hundred thirty-seven'),\n(24423, 90351, 'ninety thousand three hundred fifty-one'),\n(24424, 37659, 'thirty-seven thousand six hundred fifty-nine'),\n(24425, 35335, 'thirty-five thousand three hundred thirty-five'),\n(24426, 93515, 'ninety-three thousand five hundred fifteen'),\n(24427, 19652, 'nineteen thousand six hundred fifty-two'),\n(24428, 86115, 'eighty-six thousand one hundred fifteen'),\n(24429, 27073, 'twenty-seven thousand seventy-three'),\n(24430, 14415, 'fourteen thousand four hundred fifteen'),\n(24431, 47214, 'forty-seven thousand two hundred fourteen'),\n(24432, 48815, 'forty-eight thousand eight hundred fifteen'),\n(24433, 24870, 'twenty-four thousand eight hundred seventy'),\n(24434, 58889, 'fifty-eight thousand eight hundred eighty-nine'),\n(24435, 71158, 'seventy-one thousand one hundred fifty-eight'),\n(24436, 39961, 'thirty-nine thousand nine hundred sixty-one'),\n(24437, 98540, 'ninety-eight thousand five hundred forty'),\n(24438, 37466, 'thirty-seven thousand four hundred sixty-six'),\n(24439, 56040, 'fifty-six thousand forty'),\n(24440, 70629, 'seventy thousand six hundred twenty-nine'),\n(24441, 37860, 'thirty-seven thousand eight hundred sixty'),\n(24442, 15740, 'fifteen thousand seven hundred forty'),\n(24443, 93234, 'ninety-three thousand two hundred thirty-four'),\n(24444, 89390, 'eighty-nine thousand three hundred ninety'),\n(24445, 14526, 'fourteen thousand five hundred twenty-six'),\n(24446, 97962, 'ninety-seven thousand nine hundred sixty-two'),\n(24447, 42909, 'forty-two thousand nine hundred nine'),\n(24448, 74360, 'seventy-four thousand three hundred sixty'),\n(24449, 60817, 'sixty thousand eight hundred seventeen'),\n(24450, 25841, 'twenty-five thousand eight hundred forty-one'),\n(24451, 9101, 'nine thousand one hundred one'),\n(24452, 18890, 'eighteen thousand eight hundred ninety'),\n(24453, 81233, 'eighty-one thousand two hundred thirty-three'),\n(24454, 92974, 'ninety-two thousand nine hundred seventy-four'),\n(24455, 89356, 'eighty-nine thousand three hundred fifty-six'),\n(24456, 18243, 'eighteen thousand two hundred forty-three'),\n(24457, 98125, 'ninety-eight thousand one hundred twenty-five'),\n(24458, 52567, 'fifty-two thousand five hundred sixty-seven'),\n(24459, 3050, 'three thousand fifty'),\n(24460, 98478, 'ninety-eight thousand four hundred seventy-eight'),\n(24461, 55677, 'fifty-five thousand six hundred seventy-seven'),\n(24462, 90817, 'ninety thousand eight hundred seventeen'),\n(24463, 15455, 'fifteen thousand four hundred fifty-five'),\n(24464, 84762, 'eighty-four thousand seven hundred sixty-two'),\n(24465, 73081, 'seventy-three thousand eighty-one'),\n(24466, 15422, 'fifteen thousand four hundred twenty-two'),\n(24467, 24890, 'twenty-four thousand eight hundred ninety'),\n(24468, 90029, 'ninety thousand twenty-nine'),\n(24469, 61562, 'sixty-one thousand five hundred sixty-two'),\n(24470, 29744, 'twenty-nine thousand seven hundred forty-four'),\n(24471, 58936, 'fifty-eight thousand nine hundred thirty-six'),\n(24472, 71971, 'seventy-one thousand nine hundred seventy-one'),\n(24473, 70982, 'seventy thousand nine hundred eighty-two'),\n(24474, 41725, 'forty-one thousand seven hundred twenty-five'),\n(24475, 92927, 'ninety-two thousand nine hundred twenty-seven'),\n(24476, 33862, 'thirty-three thousand eight hundred sixty-two'),\n(24477, 93382, 'ninety-three thousand three hundred eighty-two'),\n(24478, 77954, 'seventy-seven thousand nine hundred fifty-four'),\n(24479, 15383, 'fifteen thousand three hundred eighty-three'),\n(24480, 28813, 'twenty-eight thousand eight hundred thirteen'),\n(24481, 5512, 'five thousand five hundred twelve'),\n(24482, 51480, 'fifty-one thousand four hundred eighty'),\n(24483, 6514, 'six thousand five hundred fourteen'),\n(24484, 30236, 'thirty thousand two hundred thirty-six'),\n(24485, 11104, 'eleven thousand one hundred four'),\n(24486, 86824, 'eighty-six thousand eight hundred twenty-four'),\n(24487, 78228, 'seventy-eight thousand two hundred twenty-eight'),\n(24488, 41145, 'forty-one thousand one hundred forty-five'),\n(24489, 29657, 'twenty-nine thousand six hundred fifty-seven'),\n(24490, 85757, 'eighty-five thousand seven hundred fifty-seven'),\n(24491, 69398, 'sixty-nine thousand three hundred ninety-eight'),\n(24492, 79563, 'seventy-nine thousand five hundred sixty-three'),\n(24493, 92682, 'ninety-two thousand six hundred eighty-two'),\n(24494, 2935, 'two thousand nine hundred thirty-five'),\n(24495, 35906, 'thirty-five thousand nine hundred six'),\n(24496, 75457, 'seventy-five thousand four hundred fifty-seven'),\n(24497, 26969, 'twenty-six thousand nine hundred sixty-nine'),\n(24498, 92773, 'ninety-two thousand seven hundred seventy-three'),\n(24499, 31957, 'thirty-one thousand nine hundred fifty-seven'),\n(24500, 70185, 'seventy thousand one hundred eighty-five'),\n(24501, 29928, 'twenty-nine thousand nine hundred twenty-eight'),\n(24502, 32432, 'thirty-two thousand four hundred thirty-two'),\n(24503, 25115, 'twenty-five thousand one hundred fifteen'),\n(24504, 50198, 'fifty thousand one hundred ninety-eight'),\n(24505, 79471, 'seventy-nine thousand four hundred seventy-one'),\n(24506, 42183, 'forty-two thousand one hundred eighty-three'),\n(24507, 84705, 'eighty-four thousand seven hundred five'),\n(24508, 46781, 'forty-six thousand seven hundred eighty-one'),\n(24509, 3406, 'three thousand four hundred six'),\n(24510, 82340, 'eighty-two thousand three hundred forty'),\n(24511, 72548, 'seventy-two thousand five hundred forty-eight'),\n(24512, 69097, 'sixty-nine thousand ninety-seven'),\n(24513, 78159, 'seventy-eight thousand one hundred fifty-nine'),\n(24514, 7241, 'seven thousand two hundred forty-one'),\n(24515, 11154, 'eleven thousand one hundred fifty-four'),\n(24516, 72759, 'seventy-two thousand seven hundred fifty-nine'),\n(24517, 37411, 'thirty-seven thousand four hundred eleven'),\n(24518, 90691, 'ninety thousand six hundred ninety-one'),\n(24519, 17329, 'seventeen thousand three hundred twenty-nine'),\n(24520, 21136, 'twenty-one thousand one hundred thirty-six'),\n(24521, 73397, 'seventy-three thousand three hundred ninety-seven'),\n(24522, 58848, 'fifty-eight thousand eight hundred forty-eight'),\n(24523, 29869, 'twenty-nine thousand eight hundred sixty-nine'),\n(24524, 74504, 'seventy-four thousand five hundred four'),\n(24525, 29171, 'twenty-nine thousand one hundred seventy-one'),\n(24526, 67023, 'sixty-seven thousand twenty-three'),\n(24527, 16021, 'sixteen thousand twenty-one'),\n(24528, 76889, 'seventy-six thousand eight hundred eighty-nine'),\n(24529, 13227, 'thirteen thousand two hundred twenty-seven'),\n(24530, 60563, 'sixty thousand five hundred sixty-three'),\n(24531, 9637, 'nine thousand six hundred thirty-seven'),\n(24532, 70863, 'seventy thousand eight hundred sixty-three'),\n(24533, 36076, 'thirty-six thousand seventy-six'),\n(24534, 98410, 'ninety-eight thousand four hundred ten'),\n(24535, 12095, 'twelve thousand ninety-five'),\n(24536, 24406, 'twenty-four thousand four hundred six'),\n(24537, 73409, 'seventy-three thousand four hundred nine'),\n(24538, 29768, 'twenty-nine thousand seven hundred sixty-eight'),\n(24539, 84265, 'eighty-four thousand two hundred sixty-five'),\n(24540, 26609, 'twenty-six thousand six hundred nine'),\n(24541, 35668, 'thirty-five thousand six hundred sixty-eight'),\n(24542, 85458, 'eighty-five thousand four hundred fifty-eight'),\n(24543, 12571, 'twelve thousand five hundred seventy-one'),\n(24544, 30268, 'thirty thousand two hundred sixty-eight'),\n(24545, 66940, 'sixty-six thousand nine hundred forty'),\n(24546, 89088, 'eighty-nine thousand eighty-eight'),\n(24547, 52116, 'fifty-two thousand one hundred sixteen'),\n(24548, 52044, 'fifty-two thousand forty-four'),\n(24549, 43022, 'forty-three thousand twenty-two'),\n(24550, 82921, 'eighty-two thousand nine hundred twenty-one'),\n(24551, 74469, 'seventy-four thousand four hundred sixty-nine'),\n(24552, 32766, 'thirty-two thousand seven hundred sixty-six'),\n(24553, 36163, 'thirty-six thousand one hundred sixty-three'),\n(24554, 42630, 'forty-two thousand six hundred thirty'),\n(24555, 40683, 'forty thousand six hundred eighty-three'),\n(24556, 19842, 'nineteen thousand eight hundred forty-two'),\n(24557, 33550, 'thirty-three thousand five hundred fifty'),\n(24558, 7122, 'seven thousand one hundred twenty-two'),\n(24559, 68362, 'sixty-eight thousand three hundred sixty-two'),\n(24560, 60637, 'sixty thousand six hundred thirty-seven'),\n(24561, 21302, 'twenty-one thousand three hundred two'),\n(24562, 77989, 'seventy-seven thousand nine hundred eighty-nine'),\n(24563, 73376, 'seventy-three thousand three hundred seventy-six'),\n(24564, 43376, 'forty-three thousand three hundred seventy-six'),\n(24565, 87694, 'eighty-seven thousand six hundred ninety-four'),\n(24566, 90797, 'ninety thousand seven hundred ninety-seven'),\n(24567, 46321, 'forty-six thousand three hundred twenty-one'),\n(24568, 19654, 'nineteen thousand six hundred fifty-four'),\n(24569, 28489, 'twenty-eight thousand four hundred eighty-nine'),\n(24570, 83580, 'eighty-three thousand five hundred eighty'),\n(24571, 24168, 'twenty-four thousand one hundred sixty-eight'),\n(24572, 35300, 'thirty-five thousand three hundred'),\n(24573, 86199, 'eighty-six thousand one hundred ninety-nine'),\n(24574, 39534, 'thirty-nine thousand five hundred thirty-four'),\n(24575, 53386, 'fifty-three thousand three hundred eighty-six'),\n(24576, 96527, 'ninety-six thousand five hundred twenty-seven'),\n(24577, 70262, 'seventy thousand two hundred sixty-two'),\n(24578, 56369, 'fifty-six thousand three hundred sixty-nine'),\n(24579, 71474, 'seventy-one thousand four hundred seventy-four'),\n(24580, 24093, 'twenty-four thousand ninety-three'),\n(24581, 48149, 'forty-eight thousand one hundred forty-nine'),\n(24582, 9717, 'nine thousand seven hundred seventeen'),\n(24583, 20205, 'twenty thousand two hundred five'),\n(24584, 15770, 'fifteen thousand seven hundred seventy'),\n(24585, 8601, 'eight thousand six hundred one'),\n(24586, 33272, 'thirty-three thousand two hundred seventy-two'),\n(24587, 9620, 'nine thousand six hundred twenty'),\n(24588, 19035, 'nineteen thousand thirty-five'),\n(24589, 77898, 'seventy-seven thousand eight hundred ninety-eight'),\n(24590, 43891, 'forty-three thousand eight hundred ninety-one'),\n(24591, 7341, 'seven thousand three hundred forty-one'),\n(24592, 21012, 'twenty-one thousand twelve'),\n(24593, 47304, 'forty-seven thousand three hundred four'),\n(24594, 13771, 'thirteen thousand seven hundred seventy-one'),\n(24595, 56852, 'fifty-six thousand eight hundred fifty-two'),\n(24596, 1092, 'one thousand ninety-two'),\n(24597, 10527, 'ten thousand five hundred twenty-seven'),\n(24598, 24351, 'twenty-four thousand three hundred fifty-one'),\n(24599, 3185, 'three thousand one hundred eighty-five'),\n(24600, 20932, 'twenty thousand nine hundred thirty-two'),\n(24601, 2044, 'two thousand forty-four'),\n(24602, 79491, 'seventy-nine thousand four hundred ninety-one'),\n(24603, 63479, 'sixty-three thousand four hundred seventy-nine'),\n(24604, 64144, 'sixty-four thousand one hundred forty-four'),\n(24605, 11553, 'eleven thousand five hundred fifty-three'),\n(24606, 80080, 'eighty thousand eighty'),\n(24607, 42841, 'forty-two thousand eight hundred forty-one'),\n(24608, 26094, 'twenty-six thousand ninety-four'),\n(24609, 38439, 'thirty-eight thousand four hundred thirty-nine'),\n(24610, 28474, 'twenty-eight thousand four hundred seventy-four'),\n(24611, 58847, 'fifty-eight thousand eight hundred forty-seven'),\n(24612, 8319, 'eight thousand three hundred nineteen'),\n(24613, 85074, 'eighty-five thousand seventy-four'),\n(24614, 26116, 'twenty-six thousand one hundred sixteen'),\n(24615, 32315, 'thirty-two thousand three hundred fifteen'),\n(24616, 23304, 'twenty-three thousand three hundred four'),\n(24617, 69448, 'sixty-nine thousand four hundred forty-eight'),\n(24618, 79351, 'seventy-nine thousand three hundred fifty-one'),\n(24619, 80548, 'eighty thousand five hundred forty-eight'),\n(24620, 74037, 'seventy-four thousand thirty-seven'),\n(24621, 11683, 'eleven thousand six hundred eighty-three'),\n(24622, 32115, 'thirty-two thousand one hundred fifteen'),\n(24623, 90383, 'ninety thousand three hundred eighty-three'),\n(24624, 95459, 'ninety-five thousand four hundred fifty-nine'),\n(24625, 6463, 'six thousand four hundred sixty-three'),\n(24626, 72425, 'seventy-two thousand four hundred twenty-five'),\n(24627, 96118, 'ninety-six thousand one hundred eighteen'),\n(24628, 99948, 'ninety-nine thousand nine hundred forty-eight'),\n(24629, 40496, 'forty thousand four hundred ninety-six'),\n(24630, 57027, 'fifty-seven thousand twenty-seven'),\n(24631, 54806, 'fifty-four thousand eight hundred six'),\n(24632, 74192, 'seventy-four thousand one hundred ninety-two'),\n(24633, 1458, 'one thousand four hundred fifty-eight'),\n(24634, 60022, 'sixty thousand twenty-two'),\n(24635, 13015, 'thirteen thousand fifteen'),\n(24636, 4182, 'four thousand one hundred eighty-two'),\n(24637, 47728, 'forty-seven thousand seven hundred twenty-eight'),\n(24638, 48780, 'forty-eight thousand seven hundred eighty'),\n(24639, 35252, 'thirty-five thousand two hundred fifty-two'),\n(24640, 5917, 'five thousand nine hundred seventeen'),\n(24641, 80663, 'eighty thousand six hundred sixty-three'),\n(24642, 16943, 'sixteen thousand nine hundred forty-three'),\n(24643, 14529, 'fourteen thousand five hundred twenty-nine'),\n(24644, 13366, 'thirteen thousand three hundred sixty-six'),\n(24645, 94467, 'ninety-four thousand four hundred sixty-seven'),\n(24646, 26831, 'twenty-six thousand eight hundred thirty-one'),\n(24647, 64859, 'sixty-four thousand eight hundred fifty-nine'),\n(24648, 79940, 'seventy-nine thousand nine hundred forty'),\n(24649, 56200, 'fifty-six thousand two hundred'),\n(24650, 48830, 'forty-eight thousand eight hundred thirty'),\n(24651, 90965, 'ninety thousand nine hundred sixty-five'),\n(24652, 67810, 'sixty-seven thousand eight hundred ten'),\n(24653, 77419, 'seventy-seven thousand four hundred nineteen'),\n(24654, 16345, 'sixteen thousand three hundred forty-five'),\n(24655, 28572, 'twenty-eight thousand five hundred seventy-two'),\n(24656, 24503, 'twenty-four thousand five hundred three'),\n(24657, 52829, 'fifty-two thousand eight hundred twenty-nine'),\n(24658, 9201, 'nine thousand two hundred one'),\n(24659, 60184, 'sixty thousand one hundred eighty-four'),\n(24660, 65258, 'sixty-five thousand two hundred fifty-eight'),\n(24661, 68277, 'sixty-eight thousand two hundred seventy-seven'),\n(24662, 12632, 'twelve thousand six hundred thirty-two'),\n(24663, 88871, 'eighty-eight thousand eight hundred seventy-one'),\n(24664, 88888, 'eighty-eight thousand eight hundred eighty-eight'),\n(24665, 94189, 'ninety-four thousand one hundred eighty-nine'),\n(24666, 17742, 'seventeen thousand seven hundred forty-two'),\n(24667, 46197, 'forty-six thousand one hundred ninety-seven'),\n(24668, 28493, 'twenty-eight thousand four hundred ninety-three'),\n(24669, 21476, 'twenty-one thousand four hundred seventy-six'),\n(24670, 59660, 'fifty-nine thousand six hundred sixty'),\n(24671, 33157, 'thirty-three thousand one hundred fifty-seven'),\n(24672, 70806, 'seventy thousand eight hundred six'),\n(24673, 10282, 'ten thousand two hundred eighty-two'),\n(24674, 46608, 'forty-six thousand six hundred eight'),\n(24675, 93057, 'ninety-three thousand fifty-seven'),\n(24676, 87137, 'eighty-seven thousand one hundred thirty-seven'),\n(24677, 59914, 'fifty-nine thousand nine hundred fourteen'),\n(24678, 15138, 'fifteen thousand one hundred thirty-eight'),\n(24679, 66081, 'sixty-six thousand eighty-one'),\n(24680, 2872, 'two thousand eight hundred seventy-two'),\n(24681, 58182, 'fifty-eight thousand one hundred eighty-two'),\n(24682, 98693, 'ninety-eight thousand six hundred ninety-three'),\n(24683, 6402, 'six thousand four hundred two'),\n(24684, 81893, 'eighty-one thousand eight hundred ninety-three'),\n(24685, 82769, 'eighty-two thousand seven hundred sixty-nine'),\n(24686, 28132, 'twenty-eight thousand one hundred thirty-two'),\n(24687, 23087, 'twenty-three thousand eighty-seven'),\n(24688, 39363, 'thirty-nine thousand three hundred sixty-three'),\n(24689, 33263, 'thirty-three thousand two hundred sixty-three'),\n(24690, 8211, 'eight thousand two hundred eleven'),\n(24691, 41329, 'forty-one thousand three hundred twenty-nine'),\n(24692, 95183, 'ninety-five thousand one hundred eighty-three'),\n(24693, 47040, 'forty-seven thousand forty'),\n(24694, 59347, 'fifty-nine thousand three hundred forty-seven'),\n(24695, 19887, 'nineteen thousand eight hundred eighty-seven'),\n(24696, 10700, 'ten thousand seven hundred'),\n(24697, 44206, 'forty-four thousand two hundred six'),\n(24698, 66580, 'sixty-six thousand five hundred eighty'),\n(24699, 47669, 'forty-seven thousand six hundred sixty-nine'),\n(24700, 80892, 'eighty thousand eight hundred ninety-two'),\n(24701, 75755, 'seventy-five thousand seven hundred fifty-five'),\n(24702, 70814, 'seventy thousand eight hundred fourteen'),\n(24703, 84205, 'eighty-four thousand two hundred five'),\n(24704, 49501, 'forty-nine thousand five hundred one'),\n(24705, 61490, 'sixty-one thousand four hundred ninety'),\n(24706, 95982, 'ninety-five thousand nine hundred eighty-two'),\n(24707, 15473, 'fifteen thousand four hundred seventy-three'),\n(24708, 59440, 'fifty-nine thousand four hundred forty'),\n(24709, 2995, 'two thousand nine hundred ninety-five'),\n(24710, 38547, 'thirty-eight thousand five hundred forty-seven'),\n(24711, 85352, 'eighty-five thousand three hundred fifty-two'),\n(24712, 10539, 'ten thousand five hundred thirty-nine'),\n(24713, 78665, 'seventy-eight thousand six hundred sixty-five'),\n(24714, 46340, 'forty-six thousand three hundred forty'),\n(24715, 52171, 'fifty-two thousand one hundred seventy-one'),\n(24716, 79592, 'seventy-nine thousand five hundred ninety-two'),\n(24717, 80347, 'eighty thousand three hundred forty-seven'),\n(24718, 36969, 'thirty-six thousand nine hundred sixty-nine'),\n(24719, 58825, 'fifty-eight thousand eight hundred twenty-five'),\n(24720, 50497, 'fifty thousand four hundred ninety-seven'),\n(24721, 52942, 'fifty-two thousand nine hundred forty-two'),\n(24722, 53225, 'fifty-three thousand two hundred twenty-five'),\n(24723, 35595, 'thirty-five thousand five hundred ninety-five'),\n(24724, 70411, 'seventy thousand four hundred eleven'),\n(24725, 23175, 'twenty-three thousand one hundred seventy-five'),\n(24726, 20256, 'twenty thousand two hundred fifty-six'),\n(24727, 75444, 'seventy-five thousand four hundred forty-four'),\n(24728, 29472, 'twenty-nine thousand four hundred seventy-two'),\n(24729, 74873, 'seventy-four thousand eight hundred seventy-three'),\n(24730, 96570, 'ninety-six thousand five hundred seventy'),\n(24731, 34886, 'thirty-four thousand eight hundred eighty-six'),\n(24732, 5332, 'five thousand three hundred thirty-two'),\n(24733, 2099, 'two thousand ninety-nine'),\n(24734, 54409, 'fifty-four thousand four hundred nine'),\n(24735, 3586, 'three thousand five hundred eighty-six'),\n(24736, 70081, 'seventy thousand eighty-one'),\n(24737, 44769, 'forty-four thousand seven hundred sixty-nine'),\n(24738, 9967, 'nine thousand nine hundred sixty-seven'),\n(24739, 86997, 'eighty-six thousand nine hundred ninety-seven'),\n(24740, 22978, 'twenty-two thousand nine hundred seventy-eight'),\n(24741, 41041, 'forty-one thousand forty-one'),\n(24742, 12900, 'twelve thousand nine hundred'),\n(24743, 16669, 'sixteen thousand six hundred sixty-nine'),\n(24744, 97688, 'ninety-seven thousand six hundred eighty-eight'),\n(24745, 33963, 'thirty-three thousand nine hundred sixty-three'),\n(24746, 13508, 'thirteen thousand five hundred eight'),\n(24747, 39008, 'thirty-nine thousand eight'),\n(24748, 53052, 'fifty-three thousand fifty-two'),\n(24749, 92622, 'ninety-two thousand six hundred twenty-two'),\n(24750, 95918, 'ninety-five thousand nine hundred eighteen'),\n(24751, 67927, 'sixty-seven thousand nine hundred twenty-seven'),\n(24752, 8489, 'eight thousand four hundred eighty-nine'),\n(24753, 38917, 'thirty-eight thousand nine hundred seventeen'),\n(24754, 13065, 'thirteen thousand sixty-five'),\n(24755, 15772, 'fifteen thousand seven hundred seventy-two'),\n(24756, 71996, 'seventy-one thousand nine hundred ninety-six'),\n(24757, 93804, 'ninety-three thousand eight hundred four'),\n(24758, 62376, 'sixty-two thousand three hundred seventy-six'),\n(24759, 19210, 'nineteen thousand two hundred ten'),\n(24760, 55669, 'fifty-five thousand six hundred sixty-nine'),\n(24761, 60397, 'sixty thousand three hundred ninety-seven'),\n(24762, 15157, 'fifteen thousand one hundred fifty-seven'),\n(24763, 17765, 'seventeen thousand seven hundred sixty-five'),\n(24764, 24303, 'twenty-four thousand three hundred three'),\n(24765, 74762, 'seventy-four thousand seven hundred sixty-two'),\n(24766, 12660, 'twelve thousand six hundred sixty'),\n(24767, 71115, 'seventy-one thousand one hundred fifteen'),\n(24768, 75727, 'seventy-five thousand seven hundred twenty-seven'),\n(24769, 81886, 'eighty-one thousand eight hundred eighty-six'),\n(24770, 93418, 'ninety-three thousand four hundred eighteen'),\n(24771, 55993, 'fifty-five thousand nine hundred ninety-three'),\n(24772, 98380, 'ninety-eight thousand three hundred eighty'),\n(24773, 58971, 'fifty-eight thousand nine hundred seventy-one'),\n(24774, 16900, 'sixteen thousand nine hundred'),\n(24775, 93345, 'ninety-three thousand three hundred forty-five'),\n(24776, 60673, 'sixty thousand six hundred seventy-three'),\n(24777, 50247, 'fifty thousand two hundred forty-seven'),\n(24778, 78763, 'seventy-eight thousand seven hundred sixty-three'),\n(24779, 2916, 'two thousand nine hundred sixteen'),\n(24780, 38779, 'thirty-eight thousand seven hundred seventy-nine'),\n(24781, 9671, 'nine thousand six hundred seventy-one'),\n(24782, 75048, 'seventy-five thousand forty-eight'),\n(24783, 71339, 'seventy-one thousand three hundred thirty-nine'),\n(24784, 99363, 'ninety-nine thousand three hundred sixty-three'),\n(24785, 43445, 'forty-three thousand four hundred forty-five'),\n(24786, 15216, 'fifteen thousand two hundred sixteen'),\n(24787, 86770, 'eighty-six thousand seven hundred seventy'),\n(24788, 94108, 'ninety-four thousand one hundred eight'),\n(24789, 53313, 'fifty-three thousand three hundred thirteen'),\n(24790, 62927, 'sixty-two thousand nine hundred twenty-seven'),\n(24791, 2633, 'two thousand six hundred thirty-three'),\n(24792, 71987, 'seventy-one thousand nine hundred eighty-seven'),\n(24793, 31816, 'thirty-one thousand eight hundred sixteen'),\n(24794, 44145, 'forty-four thousand one hundred forty-five'),\n(24795, 44670, 'forty-four thousand six hundred seventy'),\n(24796, 32652, 'thirty-two thousand six hundred fifty-two'),\n(24797, 86370, 'eighty-six thousand three hundred seventy'),\n(24798, 77806, 'seventy-seven thousand eight hundred six'),\n(24799, 49010, 'forty-nine thousand ten'),\n(24800, 41469, 'forty-one thousand four hundred sixty-nine'),\n(24801, 86497, 'eighty-six thousand four hundred ninety-seven'),\n(24802, 89416, 'eighty-nine thousand four hundred sixteen'),\n(24803, 22795, 'twenty-two thousand seven hundred ninety-five'),\n(24804, 16486, 'sixteen thousand four hundred eighty-six'),\n(24805, 83767, 'eighty-three thousand seven hundred sixty-seven'),\n(24806, 69813, 'sixty-nine thousand eight hundred thirteen'),\n(24807, 24398, 'twenty-four thousand three hundred ninety-eight'),\n(24808, 4641, 'four thousand six hundred forty-one'),\n(24809, 19155, 'nineteen thousand one hundred fifty-five'),\n(24810, 10874, 'ten thousand eight hundred seventy-four'),\n(24811, 35546, 'thirty-five thousand five hundred forty-six'),\n(24812, 13792, 'thirteen thousand seven hundred ninety-two'),\n(24813, 47786, 'forty-seven thousand seven hundred eighty-six'),\n(24814, 43075, 'forty-three thousand seventy-five'),\n(24815, 63969, 'sixty-three thousand nine hundred sixty-nine'),\n(24816, 42942, 'forty-two thousand nine hundred forty-two'),\n(24817, 46118, 'forty-six thousand one hundred eighteen'),\n(24818, 58231, 'fifty-eight thousand two hundred thirty-one'),\n(24819, 10334, 'ten thousand three hundred thirty-four'),\n(24820, 34774, 'thirty-four thousand seven hundred seventy-four'),\n(24821, 10146, 'ten thousand one hundred forty-six'),\n(24822, 99742, 'ninety-nine thousand seven hundred forty-two'),\n(24823, 11418, 'eleven thousand four hundred eighteen'),\n(24824, 69613, 'sixty-nine thousand six hundred thirteen'),\n(24825, 66806, 'sixty-six thousand eight hundred six'),\n(24826, 34060, 'thirty-four thousand sixty'),\n(24827, 40116, 'forty thousand one hundred sixteen'),\n(24828, 25042, 'twenty-five thousand forty-two'),\n(24829, 77863, 'seventy-seven thousand eight hundred sixty-three'),\n(24830, 97334, 'ninety-seven thousand three hundred thirty-four'),\n(24831, 84687, 'eighty-four thousand six hundred eighty-seven'),\n(24832, 44197, 'forty-four thousand one hundred ninety-seven'),\n(24833, 94141, 'ninety-four thousand one hundred forty-one'),\n(24834, 87283, 'eighty-seven thousand two hundred eighty-three'),\n(24835, 80045, 'eighty thousand forty-five'),\n(24836, 57110, 'fifty-seven thousand one hundred ten'),\n(24837, 98823, 'ninety-eight thousand eight hundred twenty-three'),\n(24838, 10560, 'ten thousand five hundred sixty'),\n(24839, 48709, 'forty-eight thousand seven hundred nine'),\n(24840, 84826, 'eighty-four thousand eight hundred twenty-six'),\n(24841, 8743, 'eight thousand seven hundred forty-three'),\n(24842, 5747, 'five thousand seven hundred forty-seven'),\n(24843, 96079, 'ninety-six thousand seventy-nine'),\n(24844, 29287, 'twenty-nine thousand two hundred eighty-seven'),\n(24845, 10503, 'ten thousand five hundred three'),\n(24846, 42835, 'forty-two thousand eight hundred thirty-five'),\n(24847, 39803, 'thirty-nine thousand eight hundred three'),\n(24848, 47531, 'forty-seven thousand five hundred thirty-one'),\n(24849, 12240, 'twelve thousand two hundred forty'),\n(24850, 41777, 'forty-one thousand seven hundred seventy-seven'),\n(24851, 21596, 'twenty-one thousand five hundred ninety-six'),\n(24852, 24048, 'twenty-four thousand forty-eight'),\n(24853, 36560, 'thirty-six thousand five hundred sixty'),\n(24854, 13578, 'thirteen thousand five hundred seventy-eight'),\n(24855, 49976, 'forty-nine thousand nine hundred seventy-six'),\n(24856, 54781, 'fifty-four thousand seven hundred eighty-one'),\n(24857, 94365, 'ninety-four thousand three hundred sixty-five'),\n(24858, 67888, 'sixty-seven thousand eight hundred eighty-eight'),\n(24859, 60940, 'sixty thousand nine hundred forty'),\n(24860, 45712, 'forty-five thousand seven hundred twelve'),\n(24861, 74303, 'seventy-four thousand three hundred three'),\n(24862, 21345, 'twenty-one thousand three hundred forty-five'),\n(24863, 22554, 'twenty-two thousand five hundred fifty-four'),\n(24864, 54730, 'fifty-four thousand seven hundred thirty'),\n(24865, 79057, 'seventy-nine thousand fifty-seven'),\n(24866, 13523, 'thirteen thousand five hundred twenty-three'),\n(24867, 43990, 'forty-three thousand nine hundred ninety'),\n(24868, 25902, 'twenty-five thousand nine hundred two'),\n(24869, 51825, 'fifty-one thousand eight hundred twenty-five'),\n(24870, 50909, 'fifty thousand nine hundred nine'),\n(24871, 18586, 'eighteen thousand five hundred eighty-six'),\n(24872, 6607, 'six thousand six hundred seven'),\n(24873, 3890, 'three thousand eight hundred ninety'),\n(24874, 46905, 'forty-six thousand nine hundred five'),\n(24875, 13209, 'thirteen thousand two hundred nine'),\n(24876, 63392, 'sixty-three thousand three hundred ninety-two'),\n(24877, 91399, 'ninety-one thousand three hundred ninety-nine'),\n(24878, 31171, 'thirty-one thousand one hundred seventy-one'),\n(24879, 35561, 'thirty-five thousand five hundred sixty-one'),\n(24880, 1318, 'one thousand three hundred eighteen'),\n(24881, 32933, 'thirty-two thousand nine hundred thirty-three'),\n(24882, 41733, 'forty-one thousand seven hundred thirty-three'),\n(24883, 65985, 'sixty-five thousand nine hundred eighty-five'),\n(24884, 57242, 'fifty-seven thousand two hundred forty-two'),\n(24885, 10678, 'ten thousand six hundred seventy-eight'),\n(24886, 12854, 'twelve thousand eight hundred fifty-four'),\n(24887, 14436, 'fourteen thousand four hundred thirty-six'),\n(24888, 23988, 'twenty-three thousand nine hundred eighty-eight'),\n(24889, 32428, 'thirty-two thousand four hundred twenty-eight'),\n(24890, 31980, 'thirty-one thousand nine hundred eighty'),\n(24891, 42592, 'forty-two thousand five hundred ninety-two'),\n(24892, 10777, 'ten thousand seven hundred seventy-seven'),\n(24893, 90039, 'ninety thousand thirty-nine'),\n(24894, 98488, 'ninety-eight thousand four hundred eighty-eight'),\n(24895, 66119, 'sixty-six thousand one hundred nineteen'),\n(24896, 90906, 'ninety thousand nine hundred six'),\n(24897, 43273, 'forty-three thousand two hundred seventy-three'),\n(24898, 86923, 'eighty-six thousand nine hundred twenty-three'),\n(24899, 24398, 'twenty-four thousand three hundred ninety-eight'),\n(24900, 70697, 'seventy thousand six hundred ninety-seven'),\n(24901, 67776, 'sixty-seven thousand seven hundred seventy-six'),\n(24902, 72999, 'seventy-two thousand nine hundred ninety-nine'),\n(24903, 64202, 'sixty-four thousand two hundred two'),\n(24904, 246, 'two hundred forty-six'),\n(24905, 8602, 'eight thousand six hundred two'),\n(24906, 2864, 'two thousand eight hundred sixty-four'),\n(24907, 7330, 'seven thousand three hundred thirty'),\n(24908, 21614, 'twenty-one thousand six hundred fourteen'),\n(24909, 98092, 'ninety-eight thousand ninety-two'),\n(24910, 53159, 'fifty-three thousand one hundred fifty-nine'),\n(24911, 24758, 'twenty-four thousand seven hundred fifty-eight'),\n(24912, 83464, 'eighty-three thousand four hundred sixty-four'),\n(24913, 79332, 'seventy-nine thousand three hundred thirty-two'),\n(24914, 73379, 'seventy-three thousand three hundred seventy-nine'),\n(24915, 78436, 'seventy-eight thousand four hundred thirty-six'),\n(24916, 55314, 'fifty-five thousand three hundred fourteen'),\n(24917, 49986, 'forty-nine thousand nine hundred eighty-six'),\n(24918, 20172, 'twenty thousand one hundred seventy-two'),\n(24919, 46094, 'forty-six thousand ninety-four'),\n(24920, 52678, 'fifty-two thousand six hundred seventy-eight'),\n(24921, 20785, 'twenty thousand seven hundred eighty-five'),\n(24922, 19531, 'nineteen thousand five hundred thirty-one'),\n(24923, 70323, 'seventy thousand three hundred twenty-three'),\n(24924, 29816, 'twenty-nine thousand eight hundred sixteen'),\n(24925, 95128, 'ninety-five thousand one hundred twenty-eight'),\n(24926, 95759, 'ninety-five thousand seven hundred fifty-nine'),\n(24927, 5910, 'five thousand nine hundred ten'),\n(24928, 72781, 'seventy-two thousand seven hundred eighty-one'),\n(24929, 71098, 'seventy-one thousand ninety-eight'),\n(24930, 52832, 'fifty-two thousand eight hundred thirty-two'),\n(24931, 96014, 'ninety-six thousand fourteen'),\n(24932, 70544, 'seventy thousand five hundred forty-four'),\n(24933, 161, 'one hundred sixty-one'),\n(24934, 623, 'six hundred twenty-three'),\n(24935, 72399, 'seventy-two thousand three hundred ninety-nine'),\n(24936, 83929, 'eighty-three thousand nine hundred twenty-nine'),\n(24937, 97985, 'ninety-seven thousand nine hundred eighty-five'),\n(24938, 25597, 'twenty-five thousand five hundred ninety-seven'),\n(24939, 78421, 'seventy-eight thousand four hundred twenty-one'),\n(24940, 60639, 'sixty thousand six hundred thirty-nine'),\n(24941, 50903, 'fifty thousand nine hundred three'),\n(24942, 934, 'nine hundred thirty-four'),\n(24943, 53684, 'fifty-three thousand six hundred eighty-four'),\n(24944, 12930, 'twelve thousand nine hundred thirty'),\n(24945, 38638, 'thirty-eight thousand six hundred thirty-eight'),\n(24946, 1269, 'one thousand two hundred sixty-nine'),\n(24947, 36603, 'thirty-six thousand six hundred three'),\n(24948, 43295, 'forty-three thousand two hundred ninety-five'),\n(24949, 58480, 'fifty-eight thousand four hundred eighty'),\n(24950, 74075, 'seventy-four thousand seventy-five'),\n(24951, 24688, 'twenty-four thousand six hundred eighty-eight'),\n(24952, 83209, 'eighty-three thousand two hundred nine'),\n(24953, 59084, 'fifty-nine thousand eighty-four'),\n(24954, 20663, 'twenty thousand six hundred sixty-three'),\n(24955, 79179, 'seventy-nine thousand one hundred seventy-nine'),\n(24956, 1978, 'one thousand nine hundred seventy-eight'),\n(24957, 66295, 'sixty-six thousand two hundred ninety-five'),\n(24958, 22993, 'twenty-two thousand nine hundred ninety-three'),\n(24959, 90318, 'ninety thousand three hundred eighteen'),\n(24960, 30818, 'thirty thousand eight hundred eighteen'),\n(24961, 83489, 'eighty-three thousand four hundred eighty-nine'),\n(24962, 50881, 'fifty thousand eight hundred eighty-one'),\n(24963, 91104, 'ninety-one thousand one hundred four'),\n(24964, 83683, 'eighty-three thousand six hundred eighty-three'),\n(24965, 27051, 'twenty-seven thousand fifty-one'),\n(24966, 84694, 'eighty-four thousand six hundred ninety-four'),\n(24967, 16269, 'sixteen thousand two hundred sixty-nine'),\n(24968, 21299, 'twenty-one thousand two hundred ninety-nine'),\n(24969, 21036, 'twenty-one thousand thirty-six'),\n(24970, 85042, 'eighty-five thousand forty-two'),\n(24971, 5100, 'five thousand one hundred'),\n(24972, 73645, 'seventy-three thousand six hundred forty-five'),\n(24973, 45681, 'forty-five thousand six hundred eighty-one'),\n(24974, 43656, 'forty-three thousand six hundred fifty-six'),\n(24975, 71105, 'seventy-one thousand one hundred five'),\n(24976, 7628, 'seven thousand six hundred twenty-eight'),\n(24977, 23163, 'twenty-three thousand one hundred sixty-three'),\n(24978, 146, 'one hundred forty-six'),\n(24979, 12055, 'twelve thousand fifty-five'),\n(24980, 36730, 'thirty-six thousand seven hundred thirty'),\n(24981, 96387, 'ninety-six thousand three hundred eighty-seven'),\n(24982, 30707, 'thirty thousand seven hundred seven'),\n(24983, 85821, 'eighty-five thousand eight hundred twenty-one'),\n(24984, 72713, 'seventy-two thousand seven hundred thirteen'),\n(24985, 89071, 'eighty-nine thousand seventy-one'),\n(24986, 95729, 'ninety-five thousand seven hundred twenty-nine'),\n(24987, 19944, 'nineteen thousand nine hundred forty-four'),\n(24988, 63977, 'sixty-three thousand nine hundred seventy-seven'),\n(24989, 80696, 'eighty thousand six hundred ninety-six'),\n(24990, 80543, 'eighty thousand five hundred forty-three'),\n(24991, 93012, 'ninety-three thousand twelve'),\n(24992, 53561, 'fifty-three thousand five hundred sixty-one'),\n(24993, 96345, 'ninety-six thousand three hundred forty-five'),\n(24994, 45500, 'forty-five thousand five hundred'),\n(24995, 71895, 'seventy-one thousand eight hundred ninety-five'),\n(24996, 88950, 'eighty-eight thousand nine hundred fifty'),\n(24997, 10863, 'ten thousand eight hundred sixty-three'),\n(24998, 94124, 'ninety-four thousand one hundred twenty-four'),\n(24999, 44871, 'forty-four thousand eight hundred seventy-one'),\n(25000, 35764, 'thirty-five thousand seven hundred sixty-four');\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark3.sql",
    "content": "BEGIN;\nCREATE TABLE t3(a INTEGER, b INTEGER, c VARCHAR(100));\nCREATE INDEX i3 ON t3(c);\nINSERT INTO t3 VALUES(1, 90183, 'ninety thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(2, 65182, 'sixty-five thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(3, 79184, 'seventy-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(4, 62773, 'sixty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(5, 6630, 'six thousand six hundred thirty');\nINSERT INTO t3 VALUES(6, 79715, 'seventy-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(7, 49778, 'forty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(8, 33198, 'thirty-three thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(9, 59322, 'fifty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(10, 48234, 'forty-eight thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(11, 21538, 'twenty-one thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(12, 24452, 'twenty-four thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(13, 23004, 'twenty-three thousand four');\nINSERT INTO t3 VALUES(14, 1240, 'one thousand two hundred forty');\nINSERT INTO t3 VALUES(15, 63122, 'sixty-three thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(16, 56286, 'fifty-six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(17, 25005, 'twenty-five thousand five');\nINSERT INTO t3 VALUES(18, 944, 'nine hundred forty-four');\nINSERT INTO t3 VALUES(19, 80737, 'eighty thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(20, 16724, 'sixteen thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(21, 31354, 'thirty-one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(22, 17696, 'seventeen thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(23, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24, 14105, 'fourteen thousand one hundred five');\nINSERT INTO t3 VALUES(25, 56396, 'fifty-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(26, 34947, 'thirty-four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(27, 73851, 'seventy-three thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(28, 36410, 'thirty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(29, 68033, 'sixty-eight thousand thirty-three');\nINSERT INTO t3 VALUES(30, 72153, 'seventy-two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(31, 29430, 'twenty-nine thousand four hundred thirty');\nINSERT INTO t3 VALUES(32, 435, 'four hundred thirty-five');\nINSERT INTO t3 VALUES(33, 8430, 'eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(34, 64854, 'sixty-four thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(35, 50457, 'fifty thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(36, 28095, 'twenty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(37, 87893, 'eighty-seven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(38, 81207, 'eighty-one thousand two hundred seven');\nINSERT INTO t3 VALUES(39, 72268, 'seventy-two thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(40, 45940, 'forty-five thousand nine hundred forty');\nINSERT INTO t3 VALUES(41, 55242, 'fifty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(42, 7100, 'seven thousand one hundred');\nINSERT INTO t3 VALUES(43, 35460, 'thirty-five thousand four hundred sixty');\nINSERT INTO t3 VALUES(44, 20012, 'twenty thousand twelve');\nINSERT INTO t3 VALUES(45, 95948, 'ninety-five thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(46, 12696, 'twelve thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(47, 81014, 'eighty-one thousand fourteen');\nINSERT INTO t3 VALUES(48, 73388, 'seventy-three thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(49, 52983, 'fifty-two thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(50, 19671, 'nineteen thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(51, 16274, 'sixteen thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(52, 82940, 'eighty-two thousand nine hundred forty');\nINSERT INTO t3 VALUES(53, 67503, 'sixty-seven thousand five hundred three');\nINSERT INTO t3 VALUES(54, 13522, 'thirteen thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(55, 51083, 'fifty-one thousand eighty-three');\nINSERT INTO t3 VALUES(56, 2617, 'two thousand six hundred seventeen');\nINSERT INTO t3 VALUES(57, 23555, 'twenty-three thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(58, 89075, 'eighty-nine thousand seventy-five');\nINSERT INTO t3 VALUES(59, 49313, 'forty-nine thousand three hundred thirteen');\nINSERT INTO t3 VALUES(60, 78873, 'seventy-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(61, 84645, 'eighty-four thousand six hundred forty-five');\nINSERT INTO t3 VALUES(62, 89920, 'eighty-nine thousand nine hundred twenty');\nINSERT INTO t3 VALUES(63, 58805, 'fifty-eight thousand eight hundred five');\nINSERT INTO t3 VALUES(64, 53068, 'fifty-three thousand sixty-eight');\nINSERT INTO t3 VALUES(65, 68084, 'sixty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(66, 29207, 'twenty-nine thousand two hundred seven');\nINSERT INTO t3 VALUES(67, 63457, 'sixty-three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(68, 40143, 'forty thousand one hundred forty-three');\nINSERT INTO t3 VALUES(69, 62048, 'sixty-two thousand forty-eight');\nINSERT INTO t3 VALUES(70, 36006, 'thirty-six thousand six');\nINSERT INTO t3 VALUES(71, 83152, 'eighty-three thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(72, 13387, 'thirteen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(73, 50704, 'fifty thousand seven hundred four');\nINSERT INTO t3 VALUES(74, 39743, 'thirty-nine thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(75, 44716, 'forty-four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(76, 31685, 'thirty-one thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(77, 65893, 'sixty-five thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(78, 62854, 'sixty-two thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(79, 8739, 'eight thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(80, 26513, 'twenty-six thousand five hundred thirteen');\nINSERT INTO t3 VALUES(81, 59948, 'fifty-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(82, 73120, 'seventy-three thousand one hundred twenty');\nINSERT INTO t3 VALUES(83, 96520, 'ninety-six thousand five hundred twenty');\nINSERT INTO t3 VALUES(84, 86506, 'eighty-six thousand five hundred six');\nINSERT INTO t3 VALUES(85, 3172, 'three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(86, 10494, 'ten thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(87, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(88, 65036, 'sixty-five thousand thirty-six');\nINSERT INTO t3 VALUES(89, 51863, 'fifty-one thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(90, 62035, 'sixty-two thousand thirty-five');\nINSERT INTO t3 VALUES(91, 59883, 'fifty-nine thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(92, 70677, 'seventy thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(93, 95902, 'ninety-five thousand nine hundred two');\nINSERT INTO t3 VALUES(94, 83317, 'eighty-three thousand three hundred seventeen');\nINSERT INTO t3 VALUES(95, 89743, 'eighty-nine thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(96, 63528, 'sixty-three thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(97, 76909, 'seventy-six thousand nine hundred nine');\nINSERT INTO t3 VALUES(98, 96469, 'ninety-six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(99, 46474, 'forty-six thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(100, 64326, 'sixty-four thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(101, 81805, 'eighty-one thousand eight hundred five');\nINSERT INTO t3 VALUES(102, 38591, 'thirty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(103, 3909, 'three thousand nine hundred nine');\nINSERT INTO t3 VALUES(104, 85755, 'eighty-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(105, 99762, 'ninety-nine thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(106, 56813, 'fifty-six thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(107, 50487, 'fifty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(108, 73438, 'seventy-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(109, 26555, 'twenty-six thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(110, 76235, 'seventy-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(111, 1879, 'one thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(112, 21174, 'twenty-one thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(113, 99289, 'ninety-nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(114, 72523, 'seventy-two thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(115, 93286, 'ninety-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(116, 76012, 'seventy-six thousand twelve');\nINSERT INTO t3 VALUES(117, 9372, 'nine thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(118, 33992, 'thirty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(119, 9869, 'nine thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(120, 87554, 'eighty-seven thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(121, 27130, 'twenty-seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(122, 24420, 'twenty-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(123, 81218, 'eighty-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(124, 87915, 'eighty-seven thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(125, 82797, 'eighty-two thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(126, 99867, 'ninety-nine thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(127, 45608, 'forty-five thousand six hundred eight');\nINSERT INTO t3 VALUES(128, 27027, 'twenty-seven thousand twenty-seven');\nINSERT INTO t3 VALUES(129, 10148, 'ten thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(130, 90119, 'ninety thousand one hundred nineteen');\nINSERT INTO t3 VALUES(131, 3539, 'three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(132, 14278, 'fourteen thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(133, 70628, 'seventy thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(134, 40495, 'forty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(135, 77630, 'seventy-seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(136, 24919, 'twenty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(137, 563, 'five hundred sixty-three');\nINSERT INTO t3 VALUES(138, 13613, 'thirteen thousand six hundred thirteen');\nINSERT INTO t3 VALUES(139, 83588, 'eighty-three thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(140, 27930, 'twenty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(141, 30958, 'thirty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(142, 75153, 'seventy-five thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(143, 99222, 'ninety-nine thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(144, 32451, 'thirty-two thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(145, 76632, 'seventy-six thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(146, 34681, 'thirty-four thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(147, 32317, 'thirty-two thousand three hundred seventeen');\nINSERT INTO t3 VALUES(148, 56149, 'fifty-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(149, 60229, 'sixty thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(150, 19532, 'nineteen thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(151, 87902, 'eighty-seven thousand nine hundred two');\nINSERT INTO t3 VALUES(152, 40686, 'forty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(153, 46888, 'forty-six thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(154, 12672, 'twelve thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(155, 74042, 'seventy-four thousand forty-two');\nINSERT INTO t3 VALUES(156, 43172, 'forty-three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(157, 41588, 'forty-one thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(158, 58654, 'fifty-eight thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(159, 80637, 'eighty thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(160, 25022, 'twenty-five thousand twenty-two');\nINSERT INTO t3 VALUES(161, 2878, 'two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(162, 87182, 'eighty-seven thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(163, 34851, 'thirty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(164, 4544, 'four thousand five hundred forty-four');\nINSERT INTO t3 VALUES(165, 75925, 'seventy-five thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(166, 65362, 'sixty-five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(167, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(168, 81481, 'eighty-one thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(169, 66526, 'sixty-six thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(170, 47242, 'forty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(171, 81290, 'eighty-one thousand two hundred ninety');\nINSERT INTO t3 VALUES(172, 98004, 'ninety-eight thousand four');\nINSERT INTO t3 VALUES(173, 80313, 'eighty thousand three hundred thirteen');\nINSERT INTO t3 VALUES(174, 93361, 'ninety-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(175, 29697, 'twenty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(176, 33778, 'thirty-three thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(177, 88134, 'eighty-eight thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(178, 30768, 'thirty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(179, 26673, 'twenty-six thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(180, 86295, 'eighty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(181, 41292, 'forty-one thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(182, 74272, 'seventy-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(183, 84254, 'eighty-four thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(184, 5812, 'five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(185, 12042, 'twelve thousand forty-two');\nINSERT INTO t3 VALUES(186, 11546, 'eleven thousand five hundred forty-six');\nINSERT INTO t3 VALUES(187, 60254, 'sixty thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(188, 39302, 'thirty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(189, 1812, 'one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(190, 12018, 'twelve thousand eighteen');\nINSERT INTO t3 VALUES(191, 94386, 'ninety-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(192, 44723, 'forty-four thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(193, 9197, 'nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(194, 99234, 'ninety-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(195, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(196, 99550, 'ninety-nine thousand five hundred fifty');\nINSERT INTO t3 VALUES(197, 68978, 'sixty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(198, 75951, 'seventy-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(199, 41705, 'forty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(200, 10998, 'ten thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(201, 36868, 'thirty-six thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(202, 17944, 'seventeen thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(203, 28310, 'twenty-eight thousand three hundred ten');\nINSERT INTO t3 VALUES(204, 50765, 'fifty thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(205, 58754, 'fifty-eight thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(206, 68159, 'sixty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(207, 1578, 'one thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(208, 77708, 'seventy-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(209, 2248, 'two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(210, 56563, 'fifty-six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(211, 39829, 'thirty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(212, 47346, 'forty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(213, 73875, 'seventy-three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(214, 78489, 'seventy-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(215, 375, 'three hundred seventy-five');\nINSERT INTO t3 VALUES(216, 89242, 'eighty-nine thousand two hundred forty-two');\nINSERT INTO t3 VALUES(217, 3818, 'three thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(218, 35355, 'thirty-five thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(219, 9835, 'nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(220, 20768, 'twenty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(221, 43749, 'forty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(222, 23736, 'twenty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(223, 8111, 'eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(224, 37926, 'thirty-seven thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(225, 25507, 'twenty-five thousand five hundred seven');\nINSERT INTO t3 VALUES(226, 44121, 'forty-four thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(227, 23445, 'twenty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(228, 5392, 'five thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(229, 96000, 'ninety-six thousand');\nINSERT INTO t3 VALUES(230, 69638, 'sixty-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(231, 44145, 'forty-four thousand one hundred forty-five');\nINSERT INTO t3 VALUES(232, 32916, 'thirty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(233, 85171, 'eighty-five thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(234, 2597, 'two thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(235, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(236, 88977, 'eighty-eight thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(237, 57311, 'fifty-seven thousand three hundred eleven');\nINSERT INTO t3 VALUES(238, 26687, 'twenty-six thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(239, 20185, 'twenty thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(240, 82839, 'eighty-two thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(241, 13801, 'thirteen thousand eight hundred one');\nINSERT INTO t3 VALUES(242, 53847, 'fifty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(243, 68561, 'sixty-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(244, 19898, 'nineteen thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(245, 63660, 'sixty-three thousand six hundred sixty');\nINSERT INTO t3 VALUES(246, 63738, 'sixty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(247, 6887, 'six thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(248, 94457, 'ninety-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(249, 37683, 'thirty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(250, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(251, 79271, 'seventy-nine thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(252, 43173, 'forty-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(253, 9368, 'nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(254, 66602, 'sixty-six thousand six hundred two');\nINSERT INTO t3 VALUES(255, 58241, 'fifty-eight thousand two hundred forty-one');\nINSERT INTO t3 VALUES(256, 7657, 'seven thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(257, 42926, 'forty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(258, 90780, 'ninety thousand seven hundred eighty');\nINSERT INTO t3 VALUES(259, 24357, 'twenty-four thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(260, 28660, 'twenty-eight thousand six hundred sixty');\nINSERT INTO t3 VALUES(261, 17525, 'seventeen thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(262, 32537, 'thirty-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(263, 78891, 'seventy-eight thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(264, 76052, 'seventy-six thousand fifty-two');\nINSERT INTO t3 VALUES(265, 55990, 'fifty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(266, 85622, 'eighty-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(267, 59213, 'fifty-nine thousand two hundred thirteen');\nINSERT INTO t3 VALUES(268, 8091, 'eight thousand ninety-one');\nINSERT INTO t3 VALUES(269, 20089, 'twenty thousand eighty-nine');\nINSERT INTO t3 VALUES(270, 10462, 'ten thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(271, 25496, 'twenty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(272, 51072, 'fifty-one thousand seventy-two');\nINSERT INTO t3 VALUES(273, 195, 'one hundred ninety-five');\nINSERT INTO t3 VALUES(274, 67763, 'sixty-seven thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(275, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(276, 63678, 'sixty-three thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(277, 147, 'one hundred forty-seven');\nINSERT INTO t3 VALUES(278, 18492, 'eighteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(279, 88892, 'eighty-eight thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(280, 30787, 'thirty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(281, 7265, 'seven thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(282, 24479, 'twenty-four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(283, 20177, 'twenty thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(284, 67194, 'sixty-seven thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(285, 52662, 'fifty-two thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(286, 35497, 'thirty-five thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(287, 36529, 'thirty-six thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(288, 36482, 'thirty-six thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(289, 39017, 'thirty-nine thousand seventeen');\nINSERT INTO t3 VALUES(290, 29718, 'twenty-nine thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(291, 38728, 'thirty-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(292, 78773, 'seventy-eight thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(293, 92733, 'ninety-two thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(294, 6736, 'six thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(295, 66806, 'sixty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(296, 86980, 'eighty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(297, 29884, 'twenty-nine thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(298, 30679, 'thirty thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(299, 79306, 'seventy-nine thousand three hundred six');\nINSERT INTO t3 VALUES(300, 65953, 'sixty-five thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(301, 17438, 'seventeen thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(302, 38751, 'thirty-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(303, 46399, 'forty-six thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(304, 78452, 'seventy-eight thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(305, 20000, 'twenty thousand');\nINSERT INTO t3 VALUES(306, 13194, 'thirteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(307, 81019, 'eighty-one thousand nineteen');\nINSERT INTO t3 VALUES(308, 76798, 'seventy-six thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(309, 22161, 'twenty-two thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(310, 37233, 'thirty-seven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(311, 74787, 'seventy-four thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(312, 30941, 'thirty thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(313, 78402, 'seventy-eight thousand four hundred two');\nINSERT INTO t3 VALUES(314, 16427, 'sixteen thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(315, 82948, 'eighty-two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(316, 5416, 'five thousand four hundred sixteen');\nINSERT INTO t3 VALUES(317, 58180, 'fifty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(318, 55537, 'fifty-five thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(319, 83931, 'eighty-three thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(320, 25393, 'twenty-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(321, 88398, 'eighty-eight thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(322, 53156, 'fifty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(323, 39695, 'thirty-nine thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(324, 35844, 'thirty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(325, 11225, 'eleven thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(326, 35707, 'thirty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(327, 29558, 'twenty-nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(328, 80039, 'eighty thousand thirty-nine');\nINSERT INTO t3 VALUES(329, 23028, 'twenty-three thousand twenty-eight');\nINSERT INTO t3 VALUES(330, 5767, 'five thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(331, 1959, 'one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(332, 21325, 'twenty-one thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(333, 81488, 'eighty-one thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(334, 12011, 'twelve thousand eleven');\nINSERT INTO t3 VALUES(335, 19694, 'nineteen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(336, 84000, 'eighty-four thousand');\nINSERT INTO t3 VALUES(337, 72761, 'seventy-two thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(338, 24198, 'twenty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(339, 30422, 'thirty thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(340, 75099, 'seventy-five thousand ninety-nine');\nINSERT INTO t3 VALUES(341, 4255, 'four thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(342, 48202, 'forty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(343, 53180, 'fifty-three thousand one hundred eighty');\nINSERT INTO t3 VALUES(344, 56346, 'fifty-six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(345, 94707, 'ninety-four thousand seven hundred seven');\nINSERT INTO t3 VALUES(346, 28275, 'twenty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(347, 20096, 'twenty thousand ninety-six');\nINSERT INTO t3 VALUES(348, 66336, 'sixty-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(349, 45394, 'forty-five thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(350, 99448, 'ninety-nine thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(351, 29637, 'twenty-nine thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(352, 14212, 'fourteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(353, 72503, 'seventy-two thousand five hundred three');\nINSERT INTO t3 VALUES(354, 82096, 'eighty-two thousand ninety-six');\nINSERT INTO t3 VALUES(355, 24848, 'twenty-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(356, 79870, 'seventy-nine thousand eight hundred seventy');\nINSERT INTO t3 VALUES(357, 61332, 'sixty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(358, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(359, 22266, 'twenty-two thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(360, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(361, 99933, 'ninety-nine thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(362, 49927, 'forty-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(363, 15041, 'fifteen thousand forty-one');\nINSERT INTO t3 VALUES(364, 34503, 'thirty-four thousand five hundred three');\nINSERT INTO t3 VALUES(365, 34573, 'thirty-four thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(366, 78481, 'seventy-eight thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(367, 98233, 'ninety-eight thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(368, 70101, 'seventy thousand one hundred one');\nINSERT INTO t3 VALUES(369, 89364, 'eighty-nine thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(370, 37758, 'thirty-seven thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(371, 90088, 'ninety thousand eighty-eight');\nINSERT INTO t3 VALUES(372, 94690, 'ninety-four thousand six hundred ninety');\nINSERT INTO t3 VALUES(373, 27142, 'twenty-seven thousand one hundred forty-two');\nINSERT INTO t3 VALUES(374, 50630, 'fifty thousand six hundred thirty');\nINSERT INTO t3 VALUES(375, 44828, 'forty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(376, 98807, 'ninety-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(377, 90633, 'ninety thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(378, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(379, 50847, 'fifty thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(380, 10041, 'ten thousand forty-one');\nINSERT INTO t3 VALUES(381, 66663, 'sixty-six thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(382, 59676, 'fifty-nine thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(383, 1066, 'one thousand sixty-six');\nINSERT INTO t3 VALUES(384, 36999, 'thirty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(385, 51597, 'fifty-one thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(386, 10998, 'ten thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(387, 23753, 'twenty-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(388, 42331, 'forty-two thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(389, 28060, 'twenty-eight thousand sixty');\nINSERT INTO t3 VALUES(390, 50748, 'fifty thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(391, 63826, 'sixty-three thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(392, 40657, 'forty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(393, 46977, 'forty-six thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(394, 78180, 'seventy-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(395, 53102, 'fifty-three thousand one hundred two');\nINSERT INTO t3 VALUES(396, 48776, 'forty-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(397, 53364, 'fifty-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(398, 33461, 'thirty-three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(399, 16726, 'sixteen thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(400, 56266, 'fifty-six thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(401, 6527, 'six thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(402, 79, 'seventy-nine');\nINSERT INTO t3 VALUES(403, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t3 VALUES(404, 60814, 'sixty thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(405, 10460, 'ten thousand four hundred sixty');\nINSERT INTO t3 VALUES(406, 47929, 'forty-seven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(407, 915, 'nine hundred fifteen');\nINSERT INTO t3 VALUES(408, 8265, 'eight thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(409, 61283, 'sixty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(410, 74918, 'seventy-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(411, 94696, 'ninety-four thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(412, 20180, 'twenty thousand one hundred eighty');\nINSERT INTO t3 VALUES(413, 51296, 'fifty-one thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(414, 4759, 'four thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(415, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t3 VALUES(416, 63344, 'sixty-three thousand three hundred forty-four');\nINSERT INTO t3 VALUES(417, 87408, 'eighty-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(418, 73199, 'seventy-three thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(419, 4080, 'four thousand eighty');\nINSERT INTO t3 VALUES(420, 83058, 'eighty-three thousand fifty-eight');\nINSERT INTO t3 VALUES(421, 26771, 'twenty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(422, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(423, 25723, 'twenty-five thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(424, 90849, 'ninety thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(425, 92601, 'ninety-two thousand six hundred one');\nINSERT INTO t3 VALUES(426, 6504, 'six thousand five hundred four');\nINSERT INTO t3 VALUES(427, 29563, 'twenty-nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(428, 68593, 'sixty-eight thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(429, 65691, 'sixty-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(430, 43039, 'forty-three thousand thirty-nine');\nINSERT INTO t3 VALUES(431, 58255, 'fifty-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(432, 80688, 'eighty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(433, 88514, 'eighty-eight thousand five hundred fourteen');\nINSERT INTO t3 VALUES(434, 79061, 'seventy-nine thousand sixty-one');\nINSERT INTO t3 VALUES(435, 3809, 'three thousand eight hundred nine');\nINSERT INTO t3 VALUES(436, 13032, 'thirteen thousand thirty-two');\nINSERT INTO t3 VALUES(437, 5484, 'five thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(438, 92694, 'ninety-two thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(439, 30988, 'thirty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(440, 47634, 'forty-seven thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(441, 93286, 'ninety-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(442, 52092, 'fifty-two thousand ninety-two');\nINSERT INTO t3 VALUES(443, 25338, 'twenty-five thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(444, 27407, 'twenty-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(445, 31005, 'thirty-one thousand five');\nINSERT INTO t3 VALUES(446, 51089, 'fifty-one thousand eighty-nine');\nINSERT INTO t3 VALUES(447, 67611, 'sixty-seven thousand six hundred eleven');\nINSERT INTO t3 VALUES(448, 59140, 'fifty-nine thousand one hundred forty');\nINSERT INTO t3 VALUES(449, 62305, 'sixty-two thousand three hundred five');\nINSERT INTO t3 VALUES(450, 65481, 'sixty-five thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(451, 56582, 'fifty-six thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(452, 73844, 'seventy-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(453, 80966, 'eighty thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(454, 63129, 'sixty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(455, 54072, 'fifty-four thousand seventy-two');\nINSERT INTO t3 VALUES(456, 89320, 'eighty-nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(457, 82740, 'eighty-two thousand seven hundred forty');\nINSERT INTO t3 VALUES(458, 80819, 'eighty thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(459, 77771, 'seventy-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(460, 60669, 'sixty thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(461, 39184, 'thirty-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(462, 68848, 'sixty-eight thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(463, 99938, 'ninety-nine thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(464, 93791, 'ninety-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(465, 24279, 'twenty-four thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(466, 15217, 'fifteen thousand two hundred seventeen');\nINSERT INTO t3 VALUES(467, 12705, 'twelve thousand seven hundred five');\nINSERT INTO t3 VALUES(468, 82683, 'eighty-two thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(469, 7164, 'seven thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(470, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(471, 2754, 'two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(472, 71229, 'seventy-one thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(473, 21874, 'twenty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(474, 9216, 'nine thousand two hundred sixteen');\nINSERT INTO t3 VALUES(475, 65001, 'sixty-five thousand one');\nINSERT INTO t3 VALUES(476, 28692, 'twenty-eight thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(477, 78230, 'seventy-eight thousand two hundred thirty');\nINSERT INTO t3 VALUES(478, 120, 'one hundred twenty');\nINSERT INTO t3 VALUES(479, 19649, 'nineteen thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(480, 40790, 'forty thousand seven hundred ninety');\nINSERT INTO t3 VALUES(481, 34612, 'thirty-four thousand six hundred twelve');\nINSERT INTO t3 VALUES(482, 61303, 'sixty-one thousand three hundred three');\nINSERT INTO t3 VALUES(483, 29631, 'twenty-nine thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(484, 92284, 'ninety-two thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(485, 13349, 'thirteen thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(486, 74211, 'seventy-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(487, 39512, 'thirty-nine thousand five hundred twelve');\nINSERT INTO t3 VALUES(488, 50529, 'fifty thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(489, 4724, 'four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(490, 78296, 'seventy-eight thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(491, 66338, 'sixty-six thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(492, 50105, 'fifty thousand one hundred five');\nINSERT INTO t3 VALUES(493, 54289, 'fifty-four thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(494, 89960, 'eighty-nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(495, 97482, 'ninety-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(496, 73469, 'seventy-three thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(497, 37240, 'thirty-seven thousand two hundred forty');\nINSERT INTO t3 VALUES(498, 25358, 'twenty-five thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(499, 90833, 'ninety thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(500, 67689, 'sixty-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(501, 86135, 'eighty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(502, 72655, 'seventy-two thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(503, 14299, 'fourteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(504, 58565, 'fifty-eight thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(505, 51039, 'fifty-one thousand thirty-nine');\nINSERT INTO t3 VALUES(506, 3781, 'three thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(507, 53031, 'fifty-three thousand thirty-one');\nINSERT INTO t3 VALUES(508, 83820, 'eighty-three thousand eight hundred twenty');\nINSERT INTO t3 VALUES(509, 52689, 'fifty-two thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(510, 75502, 'seventy-five thousand five hundred two');\nINSERT INTO t3 VALUES(511, 67061, 'sixty-seven thousand sixty-one');\nINSERT INTO t3 VALUES(512, 48192, 'forty-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(513, 43987, 'forty-three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(514, 79375, 'seventy-nine thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(515, 88227, 'eighty-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(516, 31058, 'thirty-one thousand fifty-eight');\nINSERT INTO t3 VALUES(517, 66045, 'sixty-six thousand forty-five');\nINSERT INTO t3 VALUES(518, 33816, 'thirty-three thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(519, 20901, 'twenty thousand nine hundred one');\nINSERT INTO t3 VALUES(520, 97866, 'ninety-seven thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(521, 95757, 'ninety-five thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(522, 5770, 'five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(523, 35260, 'thirty-five thousand two hundred sixty');\nINSERT INTO t3 VALUES(524, 27704, 'twenty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(525, 57938, 'fifty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(526, 40212, 'forty thousand two hundred twelve');\nINSERT INTO t3 VALUES(527, 23433, 'twenty-three thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(528, 53782, 'fifty-three thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(529, 91027, 'ninety-one thousand twenty-seven');\nINSERT INTO t3 VALUES(530, 24951, 'twenty-four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(531, 14166, 'fourteen thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(532, 4291, 'four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(533, 16897, 'sixteen thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(534, 30100, 'thirty thousand one hundred');\nINSERT INTO t3 VALUES(535, 15943, 'fifteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(536, 61552, 'sixty-one thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(537, 28251, 'twenty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(538, 74560, 'seventy-four thousand five hundred sixty');\nINSERT INTO t3 VALUES(539, 63732, 'sixty-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(540, 56346, 'fifty-six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(541, 19525, 'nineteen thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(542, 46029, 'forty-six thousand twenty-nine');\nINSERT INTO t3 VALUES(543, 90910, 'ninety thousand nine hundred ten');\nINSERT INTO t3 VALUES(544, 71723, 'seventy-one thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(545, 79085, 'seventy-nine thousand eighty-five');\nINSERT INTO t3 VALUES(546, 92607, 'ninety-two thousand six hundred seven');\nINSERT INTO t3 VALUES(547, 96583, 'ninety-six thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(548, 74964, 'seventy-four thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(549, 31048, 'thirty-one thousand forty-eight');\nINSERT INTO t3 VALUES(550, 78469, 'seventy-eight thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(551, 55499, 'fifty-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(552, 92389, 'ninety-two thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(553, 91848, 'ninety-one thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(554, 65795, 'sixty-five thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(555, 22453, 'twenty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(556, 31578, 'thirty-one thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(557, 47322, 'forty-seven thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(558, 5279, 'five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(559, 97232, 'ninety-seven thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(560, 41765, 'forty-one thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(561, 19565, 'nineteen thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(562, 90673, 'ninety thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(563, 34856, 'thirty-four thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(564, 18369, 'eighteen thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(565, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(566, 52590, 'fifty-two thousand five hundred ninety');\nINSERT INTO t3 VALUES(567, 91644, 'ninety-one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(568, 34637, 'thirty-four thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(569, 9244, 'nine thousand two hundred forty-four');\nINSERT INTO t3 VALUES(570, 76019, 'seventy-six thousand nineteen');\nINSERT INTO t3 VALUES(571, 40624, 'forty thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(572, 23892, 'twenty-three thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(573, 12027, 'twelve thousand twenty-seven');\nINSERT INTO t3 VALUES(574, 87744, 'eighty-seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(575, 92241, 'ninety-two thousand two hundred forty-one');\nINSERT INTO t3 VALUES(576, 18570, 'eighteen thousand five hundred seventy');\nINSERT INTO t3 VALUES(577, 12463, 'twelve thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(578, 27663, 'twenty-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(579, 98405, 'ninety-eight thousand four hundred five');\nINSERT INTO t3 VALUES(580, 97899, 'ninety-seven thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(581, 93129, 'ninety-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(582, 58876, 'fifty-eight thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(583, 75761, 'seventy-five thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(584, 3080, 'three thousand eighty');\nINSERT INTO t3 VALUES(585, 43332, 'forty-three thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(586, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(587, 23157, 'twenty-three thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(588, 71354, 'seventy-one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(589, 29656, 'twenty-nine thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(590, 34077, 'thirty-four thousand seventy-seven');\nINSERT INTO t3 VALUES(591, 86707, 'eighty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(592, 8135, 'eight thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(593, 49190, 'forty-nine thousand one hundred ninety');\nINSERT INTO t3 VALUES(594, 24109, 'twenty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(595, 2553, 'two thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(596, 8775, 'eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(597, 4192, 'four thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(598, 16535, 'sixteen thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(599, 70100, 'seventy thousand one hundred');\nINSERT INTO t3 VALUES(600, 72784, 'seventy-two thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(601, 85207, 'eighty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(602, 84033, 'eighty-four thousand thirty-three');\nINSERT INTO t3 VALUES(603, 50289, 'fifty thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(604, 45270, 'forty-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(605, 15121, 'fifteen thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(606, 96021, 'ninety-six thousand twenty-one');\nINSERT INTO t3 VALUES(607, 1700, 'one thousand seven hundred');\nINSERT INTO t3 VALUES(608, 32762, 'thirty-two thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(609, 98766, 'ninety-eight thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(610, 4557, 'four thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(611, 41504, 'forty-one thousand five hundred four');\nINSERT INTO t3 VALUES(612, 87199, 'eighty-seven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(613, 55255, 'fifty-five thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(614, 83727, 'eighty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(615, 9000, 'nine thousand');\nINSERT INTO t3 VALUES(616, 22676, 'twenty-two thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(617, 97094, 'ninety-seven thousand ninety-four');\nINSERT INTO t3 VALUES(618, 66160, 'sixty-six thousand one hundred sixty');\nINSERT INTO t3 VALUES(619, 53497, 'fifty-three thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(620, 61579, 'sixty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(621, 86571, 'eighty-six thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(622, 2308, 'two thousand three hundred eight');\nINSERT INTO t3 VALUES(623, 35960, 'thirty-five thousand nine hundred sixty');\nINSERT INTO t3 VALUES(624, 98290, 'ninety-eight thousand two hundred ninety');\nINSERT INTO t3 VALUES(625, 22605, 'twenty-two thousand six hundred five');\nINSERT INTO t3 VALUES(626, 73700, 'seventy-three thousand seven hundred');\nINSERT INTO t3 VALUES(627, 76160, 'seventy-six thousand one hundred sixty');\nINSERT INTO t3 VALUES(628, 63164, 'sixty-three thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(629, 54301, 'fifty-four thousand three hundred one');\nINSERT INTO t3 VALUES(630, 89457, 'eighty-nine thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(631, 9100, 'nine thousand one hundred');\nINSERT INTO t3 VALUES(632, 45220, 'forty-five thousand two hundred twenty');\nINSERT INTO t3 VALUES(633, 44339, 'forty-four thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(634, 99875, 'ninety-nine thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(635, 36622, 'thirty-six thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(636, 22818, 'twenty-two thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(637, 45079, 'forty-five thousand seventy-nine');\nINSERT INTO t3 VALUES(638, 79120, 'seventy-nine thousand one hundred twenty');\nINSERT INTO t3 VALUES(639, 19298, 'nineteen thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(640, 71225, 'seventy-one thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(641, 21129, 'twenty-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(642, 89568, 'eighty-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(643, 39972, 'thirty-nine thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(644, 68251, 'sixty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(645, 26025, 'twenty-six thousand twenty-five');\nINSERT INTO t3 VALUES(646, 66601, 'sixty-six thousand six hundred one');\nINSERT INTO t3 VALUES(647, 96932, 'ninety-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(648, 87168, 'eighty-seven thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(649, 96357, 'ninety-six thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(650, 20298, 'twenty thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(651, 37545, 'thirty-seven thousand five hundred forty-five');\nINSERT INTO t3 VALUES(652, 65636, 'sixty-five thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(653, 94130, 'ninety-four thousand one hundred thirty');\nINSERT INTO t3 VALUES(654, 81967, 'eighty-one thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(655, 20700, 'twenty thousand seven hundred');\nINSERT INTO t3 VALUES(656, 4484, 'four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(657, 27452, 'twenty-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(658, 76292, 'seventy-six thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(659, 42300, 'forty-two thousand three hundred');\nINSERT INTO t3 VALUES(660, 40073, 'forty thousand seventy-three');\nINSERT INTO t3 VALUES(661, 28949, 'twenty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(662, 36759, 'thirty-six thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(663, 29034, 'twenty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(664, 52711, 'fifty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(665, 79385, 'seventy-nine thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(666, 12945, 'twelve thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(667, 10377, 'ten thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(668, 28079, 'twenty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(669, 89753, 'eighty-nine thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(670, 8605, 'eight thousand six hundred five');\nINSERT INTO t3 VALUES(671, 37018, 'thirty-seven thousand eighteen');\nINSERT INTO t3 VALUES(672, 66150, 'sixty-six thousand one hundred fifty');\nINSERT INTO t3 VALUES(673, 66564, 'sixty-six thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(674, 99011, 'ninety-nine thousand eleven');\nINSERT INTO t3 VALUES(675, 68395, 'sixty-eight thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(676, 69904, 'sixty-nine thousand nine hundred four');\nINSERT INTO t3 VALUES(677, 34993, 'thirty-four thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(678, 2401, 'two thousand four hundred one');\nINSERT INTO t3 VALUES(679, 24145, 'twenty-four thousand one hundred forty-five');\nINSERT INTO t3 VALUES(680, 86250, 'eighty-six thousand two hundred fifty');\nINSERT INTO t3 VALUES(681, 58318, 'fifty-eight thousand three hundred eighteen');\nINSERT INTO t3 VALUES(682, 44353, 'forty-four thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(683, 45887, 'forty-five thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(684, 51925, 'fifty-one thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(685, 52235, 'fifty-two thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(686, 52428, 'fifty-two thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(687, 38146, 'thirty-eight thousand one hundred forty-six');\nINSERT INTO t3 VALUES(688, 68723, 'sixty-eight thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(689, 60883, 'sixty thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(690, 18111, 'eighteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(691, 91083, 'ninety-one thousand eighty-three');\nINSERT INTO t3 VALUES(692, 73801, 'seventy-three thousand eight hundred one');\nINSERT INTO t3 VALUES(693, 78093, 'seventy-eight thousand ninety-three');\nINSERT INTO t3 VALUES(694, 478, 'four hundred seventy-eight');\nINSERT INTO t3 VALUES(695, 53728, 'fifty-three thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(696, 16203, 'sixteen thousand two hundred three');\nINSERT INTO t3 VALUES(697, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t3 VALUES(698, 54762, 'fifty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(699, 39265, 'thirty-nine thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(700, 98331, 'ninety-eight thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(701, 72738, 'seventy-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(702, 93239, 'ninety-three thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(703, 83486, 'eighty-three thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(704, 63304, 'sixty-three thousand three hundred four');\nINSERT INTO t3 VALUES(705, 51732, 'fifty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(706, 59997, 'fifty-nine thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(707, 95198, 'ninety-five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(708, 64717, 'sixty-four thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(709, 77278, 'seventy-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(710, 60032, 'sixty thousand thirty-two');\nINSERT INTO t3 VALUES(711, 30972, 'thirty thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(712, 18631, 'eighteen thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(713, 85011, 'eighty-five thousand eleven');\nINSERT INTO t3 VALUES(714, 54491, 'fifty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(715, 3144, 'three thousand one hundred forty-four');\nINSERT INTO t3 VALUES(716, 46631, 'forty-six thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(717, 26420, 'twenty-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(718, 60444, 'sixty thousand four hundred forty-four');\nINSERT INTO t3 VALUES(719, 93079, 'ninety-three thousand seventy-nine');\nINSERT INTO t3 VALUES(720, 65486, 'sixty-five thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(721, 37657, 'thirty-seven thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(722, 89554, 'eighty-nine thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(723, 34795, 'thirty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(724, 61849, 'sixty-one thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(725, 50893, 'fifty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(726, 54824, 'fifty-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(727, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t3 VALUES(728, 18785, 'eighteen thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(729, 71155, 'seventy-one thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(730, 82657, 'eighty-two thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(731, 49123, 'forty-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(732, 30704, 'thirty thousand seven hundred four');\nINSERT INTO t3 VALUES(733, 34632, 'thirty-four thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(734, 6440, 'six thousand four hundred forty');\nINSERT INTO t3 VALUES(735, 39917, 'thirty-nine thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(736, 92176, 'ninety-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(737, 34647, 'thirty-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(738, 13096, 'thirteen thousand ninety-six');\nINSERT INTO t3 VALUES(739, 15165, 'fifteen thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(740, 26303, 'twenty-six thousand three hundred three');\nINSERT INTO t3 VALUES(741, 63149, 'sixty-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(742, 643, 'six hundred forty-three');\nINSERT INTO t3 VALUES(743, 46377, 'forty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(744, 75722, 'seventy-five thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(745, 904, 'nine hundred four');\nINSERT INTO t3 VALUES(746, 35726, 'thirty-five thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(747, 31409, 'thirty-one thousand four hundred nine');\nINSERT INTO t3 VALUES(748, 96595, 'ninety-six thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(749, 405, 'four hundred five');\nINSERT INTO t3 VALUES(750, 78860, 'seventy-eight thousand eight hundred sixty');\nINSERT INTO t3 VALUES(751, 78491, 'seventy-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(752, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t3 VALUES(753, 88873, 'eighty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(754, 75943, 'seventy-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(755, 87013, 'eighty-seven thousand thirteen');\nINSERT INTO t3 VALUES(756, 80357, 'eighty thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(757, 58039, 'fifty-eight thousand thirty-nine');\nINSERT INTO t3 VALUES(758, 33498, 'thirty-three thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(759, 63703, 'sixty-three thousand seven hundred three');\nINSERT INTO t3 VALUES(760, 14663, 'fourteen thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(761, 27734, 'twenty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(762, 84282, 'eighty-four thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(763, 15214, 'fifteen thousand two hundred fourteen');\nINSERT INTO t3 VALUES(764, 47449, 'forty-seven thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(765, 30014, 'thirty thousand fourteen');\nINSERT INTO t3 VALUES(766, 44734, 'forty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(767, 61854, 'sixty-one thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(768, 3346, 'three thousand three hundred forty-six');\nINSERT INTO t3 VALUES(769, 35580, 'thirty-five thousand five hundred eighty');\nINSERT INTO t3 VALUES(770, 98432, 'ninety-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(771, 300, 'three hundred');\nINSERT INTO t3 VALUES(772, 55376, 'fifty-five thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(773, 80877, 'eighty thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(774, 43933, 'forty-three thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(775, 51760, 'fifty-one thousand seven hundred sixty');\nINSERT INTO t3 VALUES(776, 33696, 'thirty-three thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(777, 82408, 'eighty-two thousand four hundred eight');\nINSERT INTO t3 VALUES(778, 14504, 'fourteen thousand five hundred four');\nINSERT INTO t3 VALUES(779, 50108, 'fifty thousand one hundred eight');\nINSERT INTO t3 VALUES(780, 97058, 'ninety-seven thousand fifty-eight');\nINSERT INTO t3 VALUES(781, 74468, 'seventy-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(782, 68213, 'sixty-eight thousand two hundred thirteen');\nINSERT INTO t3 VALUES(783, 1076, 'one thousand seventy-six');\nINSERT INTO t3 VALUES(784, 45271, 'forty-five thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(785, 34964, 'thirty-four thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(786, 14228, 'fourteen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(787, 19200, 'nineteen thousand two hundred');\nINSERT INTO t3 VALUES(788, 80414, 'eighty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(789, 27636, 'twenty-seven thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(790, 8214, 'eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(791, 27386, 'twenty-seven thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(792, 32242, 'thirty-two thousand two hundred forty-two');\nINSERT INTO t3 VALUES(793, 52548, 'fifty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(794, 8985, 'eight thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(795, 86741, 'eighty-six thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(796, 49915, 'forty-nine thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(797, 74705, 'seventy-four thousand seven hundred five');\nINSERT INTO t3 VALUES(798, 30034, 'thirty thousand thirty-four');\nINSERT INTO t3 VALUES(799, 61239, 'sixty-one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(800, 98196, 'ninety-eight thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(801, 91281, 'ninety-one thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(802, 84740, 'eighty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(803, 2070, 'two thousand seventy');\nINSERT INTO t3 VALUES(804, 78383, 'seventy-eight thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(805, 66789, 'sixty-six thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(806, 91529, 'ninety-one thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(807, 47484, 'forty-seven thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(808, 34303, 'thirty-four thousand three hundred three');\nINSERT INTO t3 VALUES(809, 60661, 'sixty thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(810, 99635, 'ninety-nine thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(811, 90865, 'ninety thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(812, 92401, 'ninety-two thousand four hundred one');\nINSERT INTO t3 VALUES(813, 89329, 'eighty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(814, 58767, 'fifty-eight thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(815, 38618, 'thirty-eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(816, 32645, 'thirty-two thousand six hundred forty-five');\nINSERT INTO t3 VALUES(817, 60147, 'sixty thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(818, 77130, 'seventy-seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(819, 89712, 'eighty-nine thousand seven hundred twelve');\nINSERT INTO t3 VALUES(820, 84405, 'eighty-four thousand four hundred five');\nINSERT INTO t3 VALUES(821, 68079, 'sixty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(822, 48312, 'forty-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(823, 52981, 'fifty-two thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(824, 67737, 'sixty-seven thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(825, 82728, 'eighty-two thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(826, 40074, 'forty thousand seventy-four');\nINSERT INTO t3 VALUES(827, 42727, 'forty-two thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(828, 25509, 'twenty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(829, 25994, 'twenty-five thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(830, 3000, 'three thousand');\nINSERT INTO t3 VALUES(831, 84969, 'eighty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(832, 55878, 'fifty-five thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(833, 67112, 'sixty-seven thousand one hundred twelve');\nINSERT INTO t3 VALUES(834, 83937, 'eighty-three thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(835, 81016, 'eighty-one thousand sixteen');\nINSERT INTO t3 VALUES(836, 40331, 'forty thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(837, 83067, 'eighty-three thousand sixty-seven');\nINSERT INTO t3 VALUES(838, 7500, 'seven thousand five hundred');\nINSERT INTO t3 VALUES(839, 43809, 'forty-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(840, 10120, 'ten thousand one hundred twenty');\nINSERT INTO t3 VALUES(841, 69871, 'sixty-nine thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(842, 63592, 'sixty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(843, 77310, 'seventy-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(844, 73925, 'seventy-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(845, 38003, 'thirty-eight thousand three');\nINSERT INTO t3 VALUES(846, 72814, 'seventy-two thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(847, 74602, 'seventy-four thousand six hundred two');\nINSERT INTO t3 VALUES(848, 91671, 'ninety-one thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(849, 72281, 'seventy-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(850, 26861, 'twenty-six thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(851, 12126, 'twelve thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(852, 5096, 'five thousand ninety-six');\nINSERT INTO t3 VALUES(853, 1116, 'one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(854, 80169, 'eighty thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(855, 62297, 'sixty-two thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(856, 7367, 'seven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(857, 16942, 'sixteen thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(858, 6685, 'six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(859, 93081, 'ninety-three thousand eighty-one');\nINSERT INTO t3 VALUES(860, 76562, 'seventy-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(861, 89286, 'eighty-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(862, 72002, 'seventy-two thousand two');\nINSERT INTO t3 VALUES(863, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(864, 91762, 'ninety-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(865, 79775, 'seventy-nine thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(866, 56480, 'fifty-six thousand four hundred eighty');\nINSERT INTO t3 VALUES(867, 56775, 'fifty-six thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(868, 23043, 'twenty-three thousand forty-three');\nINSERT INTO t3 VALUES(869, 71859, 'seventy-one thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(870, 2224, 'two thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(871, 33439, 'thirty-three thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(872, 49639, 'forty-nine thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(873, 35035, 'thirty-five thousand thirty-five');\nINSERT INTO t3 VALUES(874, 24312, 'twenty-four thousand three hundred twelve');\nINSERT INTO t3 VALUES(875, 58095, 'fifty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(876, 93932, 'ninety-three thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(877, 43410, 'forty-three thousand four hundred ten');\nINSERT INTO t3 VALUES(878, 77814, 'seventy-seven thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(879, 8232, 'eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(880, 2192, 'two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(881, 7342, 'seven thousand three hundred forty-two');\nINSERT INTO t3 VALUES(882, 77610, 'seventy-seven thousand six hundred ten');\nINSERT INTO t3 VALUES(883, 48520, 'forty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(884, 848, 'eight hundred forty-eight');\nINSERT INTO t3 VALUES(885, 59646, 'fifty-nine thousand six hundred forty-six');\nINSERT INTO t3 VALUES(886, 69356, 'sixty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(887, 14891, 'fourteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(888, 6407, 'six thousand four hundred seven');\nINSERT INTO t3 VALUES(889, 35514, 'thirty-five thousand five hundred fourteen');\nINSERT INTO t3 VALUES(890, 68643, 'sixty-eight thousand six hundred forty-three');\nINSERT INTO t3 VALUES(891, 86636, 'eighty-six thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(892, 39365, 'thirty-nine thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(893, 44205, 'forty-four thousand two hundred five');\nINSERT INTO t3 VALUES(894, 5198, 'five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(895, 5597, 'five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(896, 3459, 'three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(897, 4188, 'four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(898, 98567, 'ninety-eight thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(899, 17567, 'seventeen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(900, 22720, 'twenty-two thousand seven hundred twenty');\nINSERT INTO t3 VALUES(901, 99730, 'ninety-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(902, 16445, 'sixteen thousand four hundred forty-five');\nINSERT INTO t3 VALUES(903, 68994, 'sixty-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(904, 93584, 'ninety-three thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(905, 86750, 'eighty-six thousand seven hundred fifty');\nINSERT INTO t3 VALUES(906, 80181, 'eighty thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(907, 53732, 'fifty-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(908, 73027, 'seventy-three thousand twenty-seven');\nINSERT INTO t3 VALUES(909, 16179, 'sixteen thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(910, 84827, 'eighty-four thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(911, 78361, 'seventy-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(912, 4261, 'four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(913, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(914, 17073, 'seventeen thousand seventy-three');\nINSERT INTO t3 VALUES(915, 97, 'ninety-seven');\nINSERT INTO t3 VALUES(916, 92380, 'ninety-two thousand three hundred eighty');\nINSERT INTO t3 VALUES(917, 61506, 'sixty-one thousand five hundred six');\nINSERT INTO t3 VALUES(918, 50585, 'fifty thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(919, 56705, 'fifty-six thousand seven hundred five');\nINSERT INTO t3 VALUES(920, 38685, 'thirty-eight thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(921, 83442, 'eighty-three thousand four hundred forty-two');\nINSERT INTO t3 VALUES(922, 11260, 'eleven thousand two hundred sixty');\nINSERT INTO t3 VALUES(923, 21660, 'twenty-one thousand six hundred sixty');\nINSERT INTO t3 VALUES(924, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(925, 16513, 'sixteen thousand five hundred thirteen');\nINSERT INTO t3 VALUES(926, 30555, 'thirty thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(927, 79963, 'seventy-nine thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(928, 7254, 'seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(929, 62226, 'sixty-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(930, 25716, 'twenty-five thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(931, 66617, 'sixty-six thousand six hundred seventeen');\nINSERT INTO t3 VALUES(932, 73791, 'seventy-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(933, 40546, 'forty thousand five hundred forty-six');\nINSERT INTO t3 VALUES(934, 19036, 'nineteen thousand thirty-six');\nINSERT INTO t3 VALUES(935, 12583, 'twelve thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(936, 59331, 'fifty-nine thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(937, 72492, 'seventy-two thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(938, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(939, 73907, 'seventy-three thousand nine hundred seven');\nINSERT INTO t3 VALUES(940, 8321, 'eight thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(941, 53600, 'fifty-three thousand six hundred');\nINSERT INTO t3 VALUES(942, 10347, 'ten thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(943, 95048, 'ninety-five thousand forty-eight');\nINSERT INTO t3 VALUES(944, 87508, 'eighty-seven thousand five hundred eight');\nINSERT INTO t3 VALUES(945, 67881, 'sixty-seven thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(946, 16788, 'sixteen thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(947, 46220, 'forty-six thousand two hundred twenty');\nINSERT INTO t3 VALUES(948, 22600, 'twenty-two thousand six hundred');\nINSERT INTO t3 VALUES(949, 55802, 'fifty-five thousand eight hundred two');\nINSERT INTO t3 VALUES(950, 10327, 'ten thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(951, 60079, 'sixty thousand seventy-nine');\nINSERT INTO t3 VALUES(952, 86346, 'eighty-six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(953, 78039, 'seventy-eight thousand thirty-nine');\nINSERT INTO t3 VALUES(954, 42495, 'forty-two thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(955, 61802, 'sixty-one thousand eight hundred two');\nINSERT INTO t3 VALUES(956, 74935, 'seventy-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(957, 32848, 'thirty-two thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(958, 22843, 'twenty-two thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(959, 43434, 'forty-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(960, 55140, 'fifty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(961, 25101, 'twenty-five thousand one hundred one');\nINSERT INTO t3 VALUES(962, 66892, 'sixty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(963, 84404, 'eighty-four thousand four hundred four');\nINSERT INTO t3 VALUES(964, 95016, 'ninety-five thousand sixteen');\nINSERT INTO t3 VALUES(965, 82669, 'eighty-two thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(966, 47664, 'forty-seven thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(967, 67050, 'sixty-seven thousand fifty');\nINSERT INTO t3 VALUES(968, 65685, 'sixty-five thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(969, 13432, 'thirteen thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(970, 8364, 'eight thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(971, 33856, 'thirty-three thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(972, 38428, 'thirty-eight thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(973, 63682, 'sixty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(974, 61059, 'sixty-one thousand fifty-nine');\nINSERT INTO t3 VALUES(975, 48432, 'forty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(976, 15809, 'fifteen thousand eight hundred nine');\nINSERT INTO t3 VALUES(977, 75497, 'seventy-five thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(978, 84648, 'eighty-four thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(979, 12450, 'twelve thousand four hundred fifty');\nINSERT INTO t3 VALUES(980, 91915, 'ninety-one thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(981, 72230, 'seventy-two thousand two hundred thirty');\nINSERT INTO t3 VALUES(982, 39393, 'thirty-nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(983, 58539, 'fifty-eight thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(984, 8203, 'eight thousand two hundred three');\nINSERT INTO t3 VALUES(985, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t3 VALUES(986, 52469, 'fifty-two thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(987, 67579, 'sixty-seven thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(988, 96196, 'ninety-six thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(989, 35045, 'thirty-five thousand forty-five');\nINSERT INTO t3 VALUES(990, 90414, 'ninety thousand four hundred fourteen');\nINSERT INTO t3 VALUES(991, 30338, 'thirty thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(992, 13060, 'thirteen thousand sixty');\nINSERT INTO t3 VALUES(993, 89796, 'eighty-nine thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(994, 37165, 'thirty-seven thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(995, 47626, 'forty-seven thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(996, 48263, 'forty-eight thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(997, 89604, 'eighty-nine thousand six hundred four');\nINSERT INTO t3 VALUES(998, 22717, 'twenty-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(999, 96890, 'ninety-six thousand eight hundred ninety');\nINSERT INTO t3 VALUES(1000, 49281, 'forty-nine thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(1001, 97199, 'ninety-seven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(1002, 9105, 'nine thousand one hundred five');\nINSERT INTO t3 VALUES(1003, 47038, 'forty-seven thousand thirty-eight');\nINSERT INTO t3 VALUES(1004, 47997, 'forty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(1005, 29607, 'twenty-nine thousand six hundred seven');\nINSERT INTO t3 VALUES(1006, 90974, 'ninety thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(1007, 45881, 'forty-five thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1008, 75493, 'seventy-five thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1009, 60427, 'sixty thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(1010, 36340, 'thirty-six thousand three hundred forty');\nINSERT INTO t3 VALUES(1011, 25776, 'twenty-five thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(1012, 2298, 'two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(1013, 74993, 'seventy-four thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(1014, 84184, 'eighty-four thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1015, 63766, 'sixty-three thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(1016, 57229, 'fifty-seven thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(1017, 70358, 'seventy thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(1018, 81720, 'eighty-one thousand seven hundred twenty');\nINSERT INTO t3 VALUES(1019, 75643, 'seventy-five thousand six hundred forty-three');\nINSERT INTO t3 VALUES(1020, 97854, 'ninety-seven thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(1021, 64872, 'sixty-four thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(1022, 90183, 'ninety thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(1023, 55141, 'fifty-five thousand one hundred forty-one');\nINSERT INTO t3 VALUES(1024, 40225, 'forty thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(1025, 46110, 'forty-six thousand one hundred ten');\nINSERT INTO t3 VALUES(1026, 10425, 'ten thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(1027, 51852, 'fifty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(1028, 3105, 'three thousand one hundred five');\nINSERT INTO t3 VALUES(1029, 1682, 'one thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(1030, 5921, 'five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1031, 76812, 'seventy-six thousand eight hundred twelve');\nINSERT INTO t3 VALUES(1032, 8500, 'eight thousand five hundred');\nINSERT INTO t3 VALUES(1033, 39697, 'thirty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(1034, 26023, 'twenty-six thousand twenty-three');\nINSERT INTO t3 VALUES(1035, 63676, 'sixty-three thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(1036, 80944, 'eighty thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(1037, 5634, 'five thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(1038, 99197, 'ninety-nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(1039, 84278, 'eighty-four thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(1040, 79593, 'seventy-nine thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(1041, 90743, 'ninety thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(1042, 27103, 'twenty-seven thousand one hundred three');\nINSERT INTO t3 VALUES(1043, 5424, 'five thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1044, 33033, 'thirty-three thousand thirty-three');\nINSERT INTO t3 VALUES(1045, 70460, 'seventy thousand four hundred sixty');\nINSERT INTO t3 VALUES(1046, 86249, 'eighty-six thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(1047, 15048, 'fifteen thousand forty-eight');\nINSERT INTO t3 VALUES(1048, 89487, 'eighty-nine thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(1049, 28006, 'twenty-eight thousand six');\nINSERT INTO t3 VALUES(1050, 98931, 'ninety-eight thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(1051, 68014, 'sixty-eight thousand fourteen');\nINSERT INTO t3 VALUES(1052, 2809, 'two thousand eight hundred nine');\nINSERT INTO t3 VALUES(1053, 4099, 'four thousand ninety-nine');\nINSERT INTO t3 VALUES(1054, 38381, 'thirty-eight thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(1055, 74460, 'seventy-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(1056, 26766, 'twenty-six thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(1057, 57861, 'fifty-seven thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(1058, 9450, 'nine thousand four hundred fifty');\nINSERT INTO t3 VALUES(1059, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t3 VALUES(1060, 66697, 'sixty-six thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(1061, 48693, 'forty-eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(1062, 71134, 'seventy-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(1063, 33992, 'thirty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(1064, 97587, 'ninety-seven thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(1065, 88714, 'eighty-eight thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(1066, 28802, 'twenty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(1067, 69995, 'sixty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(1068, 43144, 'forty-three thousand one hundred forty-four');\nINSERT INTO t3 VALUES(1069, 66996, 'sixty-six thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(1070, 12277, 'twelve thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(1071, 41633, 'forty-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(1072, 712, 'seven hundred twelve');\nINSERT INTO t3 VALUES(1073, 70963, 'seventy thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(1074, 9700, 'nine thousand seven hundred');\nINSERT INTO t3 VALUES(1075, 63916, 'sixty-three thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(1076, 59439, 'fifty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(1077, 46112, 'forty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(1078, 79176, 'seventy-nine thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(1079, 12136, 'twelve thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(1080, 72113, 'seventy-two thousand one hundred thirteen');\nINSERT INTO t3 VALUES(1081, 79476, 'seventy-nine thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(1082, 49360, 'forty-nine thousand three hundred sixty');\nINSERT INTO t3 VALUES(1083, 24035, 'twenty-four thousand thirty-five');\nINSERT INTO t3 VALUES(1084, 38611, 'thirty-eight thousand six hundred eleven');\nINSERT INTO t3 VALUES(1085, 67502, 'sixty-seven thousand five hundred two');\nINSERT INTO t3 VALUES(1086, 15787, 'fifteen thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(1087, 45602, 'forty-five thousand six hundred two');\nINSERT INTO t3 VALUES(1088, 60098, 'sixty thousand ninety-eight');\nINSERT INTO t3 VALUES(1089, 12844, 'twelve thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(1090, 62637, 'sixty-two thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(1091, 35555, 'thirty-five thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(1092, 44883, 'forty-four thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(1093, 93964, 'ninety-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(1094, 82176, 'eighty-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(1095, 19420, 'nineteen thousand four hundred twenty');\nINSERT INTO t3 VALUES(1096, 15406, 'fifteen thousand four hundred six');\nINSERT INTO t3 VALUES(1097, 58163, 'fifty-eight thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(1098, 91616, 'ninety-one thousand six hundred sixteen');\nINSERT INTO t3 VALUES(1099, 91461, 'ninety-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(1100, 86510, 'eighty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(1101, 22347, 'twenty-two thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(1102, 67932, 'sixty-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(1103, 59003, 'fifty-nine thousand three');\nINSERT INTO t3 VALUES(1104, 11831, 'eleven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(1105, 2932, 'two thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(1106, 6237, 'six thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(1107, 14253, 'fourteen thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1108, 5294, 'five thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(1109, 41001, 'forty-one thousand one');\nINSERT INTO t3 VALUES(1110, 97290, 'ninety-seven thousand two hundred ninety');\nINSERT INTO t3 VALUES(1111, 343, 'three hundred forty-three');\nINSERT INTO t3 VALUES(1112, 33607, 'thirty-three thousand six hundred seven');\nINSERT INTO t3 VALUES(1113, 17415, 'seventeen thousand four hundred fifteen');\nINSERT INTO t3 VALUES(1114, 60356, 'sixty thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(1115, 2445, 'two thousand four hundred forty-five');\nINSERT INTO t3 VALUES(1116, 31461, 'thirty-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(1117, 73244, 'seventy-three thousand two hundred forty-four');\nINSERT INTO t3 VALUES(1118, 30405, 'thirty thousand four hundred five');\nINSERT INTO t3 VALUES(1119, 9412, 'nine thousand four hundred twelve');\nINSERT INTO t3 VALUES(1120, 20592, 'twenty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(1121, 85501, 'eighty-five thousand five hundred one');\nINSERT INTO t3 VALUES(1122, 53561, 'fifty-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(1123, 9897, 'nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(1124, 5217, 'five thousand two hundred seventeen');\nINSERT INTO t3 VALUES(1125, 97865, 'ninety-seven thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(1126, 11106, 'eleven thousand one hundred six');\nINSERT INTO t3 VALUES(1127, 97398, 'ninety-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(1128, 50152, 'fifty thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(1129, 73310, 'seventy-three thousand three hundred ten');\nINSERT INTO t3 VALUES(1130, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t3 VALUES(1131, 93117, 'ninety-three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(1132, 42559, 'forty-two thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(1133, 58212, 'fifty-eight thousand two hundred twelve');\nINSERT INTO t3 VALUES(1134, 55497, 'fifty-five thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(1135, 96013, 'ninety-six thousand thirteen');\nINSERT INTO t3 VALUES(1136, 94608, 'ninety-four thousand six hundred eight');\nINSERT INTO t3 VALUES(1137, 26072, 'twenty-six thousand seventy-two');\nINSERT INTO t3 VALUES(1138, 20988, 'twenty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(1139, 43531, 'forty-three thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(1140, 89146, 'eighty-nine thousand one hundred forty-six');\nINSERT INTO t3 VALUES(1141, 62142, 'sixty-two thousand one hundred forty-two');\nINSERT INTO t3 VALUES(1142, 46807, 'forty-six thousand eight hundred seven');\nINSERT INTO t3 VALUES(1143, 86238, 'eighty-six thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(1144, 83926, 'eighty-three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(1145, 71668, 'seventy-one thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(1146, 61916, 'sixty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(1147, 38403, 'thirty-eight thousand four hundred three');\nINSERT INTO t3 VALUES(1148, 82548, 'eighty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(1149, 81750, 'eighty-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1150, 20317, 'twenty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(1151, 71943, 'seventy-one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(1152, 29755, 'twenty-nine thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(1153, 67979, 'sixty-seven thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(1154, 24984, 'twenty-four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(1155, 77664, 'seventy-seven thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(1156, 4511, 'four thousand five hundred eleven');\nINSERT INTO t3 VALUES(1157, 85346, 'eighty-five thousand three hundred forty-six');\nINSERT INTO t3 VALUES(1158, 39469, 'thirty-nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(1159, 82021, 'eighty-two thousand twenty-one');\nINSERT INTO t3 VALUES(1160, 16319, 'sixteen thousand three hundred nineteen');\nINSERT INTO t3 VALUES(1161, 88589, 'eighty-eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(1162, 12892, 'twelve thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(1163, 30032, 'thirty thousand thirty-two');\nINSERT INTO t3 VALUES(1164, 16998, 'sixteen thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(1165, 80012, 'eighty thousand twelve');\nINSERT INTO t3 VALUES(1166, 59783, 'fifty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(1167, 19293, 'nineteen thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(1168, 1817, 'one thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(1169, 19305, 'nineteen thousand three hundred five');\nINSERT INTO t3 VALUES(1170, 63337, 'sixty-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(1171, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t3 VALUES(1172, 38956, 'thirty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(1173, 37556, 'thirty-seven thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(1174, 41018, 'forty-one thousand eighteen');\nINSERT INTO t3 VALUES(1175, 89937, 'eighty-nine thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(1176, 66116, 'sixty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(1177, 70582, 'seventy thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(1178, 59643, 'fifty-nine thousand six hundred forty-three');\nINSERT INTO t3 VALUES(1179, 57124, 'fifty-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(1180, 28428, 'twenty-eight thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(1181, 23417, 'twenty-three thousand four hundred seventeen');\nINSERT INTO t3 VALUES(1182, 90882, 'ninety thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1183, 68251, 'sixty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(1184, 32942, 'thirty-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(1185, 90299, 'ninety thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(1186, 48094, 'forty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(1187, 59916, 'fifty-nine thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(1188, 90808, 'ninety thousand eight hundred eight');\nINSERT INTO t3 VALUES(1189, 51195, 'fifty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(1190, 37695, 'thirty-seven thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(1191, 1001, 'one thousand one');\nINSERT INTO t3 VALUES(1192, 69242, 'sixty-nine thousand two hundred forty-two');\nINSERT INTO t3 VALUES(1193, 63726, 'sixty-three thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(1194, 27518, 'twenty-seven thousand five hundred eighteen');\nINSERT INTO t3 VALUES(1195, 36308, 'thirty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(1196, 6083, 'six thousand eighty-three');\nINSERT INTO t3 VALUES(1197, 47512, 'forty-seven thousand five hundred twelve');\nINSERT INTO t3 VALUES(1198, 16219, 'sixteen thousand two hundred nineteen');\nINSERT INTO t3 VALUES(1199, 53244, 'fifty-three thousand two hundred forty-four');\nINSERT INTO t3 VALUES(1200, 56966, 'fifty-six thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(1201, 68968, 'sixty-eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(1202, 73409, 'seventy-three thousand four hundred nine');\nINSERT INTO t3 VALUES(1203, 17591, 'seventeen thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(1204, 85015, 'eighty-five thousand fifteen');\nINSERT INTO t3 VALUES(1205, 58168, 'fifty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(1206, 67212, 'sixty-seven thousand two hundred twelve');\nINSERT INTO t3 VALUES(1207, 5715, 'five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(1208, 30513, 'thirty thousand five hundred thirteen');\nINSERT INTO t3 VALUES(1209, 13270, 'thirteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(1210, 81577, 'eighty-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(1211, 65057, 'sixty-five thousand fifty-seven');\nINSERT INTO t3 VALUES(1212, 13964, 'thirteen thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(1213, 55689, 'fifty-five thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(1214, 51240, 'fifty-one thousand two hundred forty');\nINSERT INTO t3 VALUES(1215, 96727, 'ninety-six thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(1216, 58780, 'fifty-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(1217, 49104, 'forty-nine thousand one hundred four');\nINSERT INTO t3 VALUES(1218, 7745, 'seven thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(1219, 11196, 'eleven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(1220, 46401, 'forty-six thousand four hundred one');\nINSERT INTO t3 VALUES(1221, 21603, 'twenty-one thousand six hundred three');\nINSERT INTO t3 VALUES(1222, 38565, 'thirty-eight thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(1223, 41527, 'forty-one thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(1224, 97123, 'ninety-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(1225, 77124, 'seventy-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(1226, 92537, 'ninety-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(1227, 57471, 'fifty-seven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(1228, 60445, 'sixty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(1229, 54092, 'fifty-four thousand ninety-two');\nINSERT INTO t3 VALUES(1230, 38603, 'thirty-eight thousand six hundred three');\nINSERT INTO t3 VALUES(1231, 70173, 'seventy thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(1232, 87517, 'eighty-seven thousand five hundred seventeen');\nINSERT INTO t3 VALUES(1233, 11572, 'eleven thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(1234, 31249, 'thirty-one thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(1235, 25790, 'twenty-five thousand seven hundred ninety');\nINSERT INTO t3 VALUES(1236, 26701, 'twenty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(1237, 96441, 'ninety-six thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1238, 57908, 'fifty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(1239, 68899, 'sixty-eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(1240, 65198, 'sixty-five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(1241, 48083, 'forty-eight thousand eighty-three');\nINSERT INTO t3 VALUES(1242, 48974, 'forty-eight thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(1243, 33636, 'thirty-three thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(1244, 86883, 'eighty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(1245, 24118, 'twenty-four thousand one hundred eighteen');\nINSERT INTO t3 VALUES(1246, 11624, 'eleven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(1247, 71832, 'seventy-one thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(1248, 14241, 'fourteen thousand two hundred forty-one');\nINSERT INTO t3 VALUES(1249, 13727, 'thirteen thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(1250, 98896, 'ninety-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(1251, 22466, 'twenty-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(1252, 51965, 'fifty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(1253, 5811, 'five thousand eight hundred eleven');\nINSERT INTO t3 VALUES(1254, 82040, 'eighty-two thousand forty');\nINSERT INTO t3 VALUES(1255, 42197, 'forty-two thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(1256, 71055, 'seventy-one thousand fifty-five');\nINSERT INTO t3 VALUES(1257, 79098, 'seventy-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(1258, 29148, 'twenty-nine thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(1259, 61808, 'sixty-one thousand eight hundred eight');\nINSERT INTO t3 VALUES(1260, 10755, 'ten thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(1261, 6921, 'six thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1262, 80787, 'eighty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(1263, 3455, 'three thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(1264, 9138, 'nine thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(1265, 13898, 'thirteen thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(1266, 94168, 'ninety-four thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(1267, 15361, 'fifteen thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(1268, 66571, 'sixty-six thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(1269, 98644, 'ninety-eight thousand six hundred forty-four');\nINSERT INTO t3 VALUES(1270, 2464, 'two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(1271, 3054, 'three thousand fifty-four');\nINSERT INTO t3 VALUES(1272, 98150, 'ninety-eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(1273, 30894, 'thirty thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(1274, 78137, 'seventy-eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(1275, 87380, 'eighty-seven thousand three hundred eighty');\nINSERT INTO t3 VALUES(1276, 96748, 'ninety-six thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(1277, 8470, 'eight thousand four hundred seventy');\nINSERT INTO t3 VALUES(1278, 91619, 'ninety-one thousand six hundred nineteen');\nINSERT INTO t3 VALUES(1279, 47809, 'forty-seven thousand eight hundred nine');\nINSERT INTO t3 VALUES(1280, 46125, 'forty-six thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(1281, 28577, 'twenty-eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(1282, 94539, 'ninety-four thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(1283, 87306, 'eighty-seven thousand three hundred six');\nINSERT INTO t3 VALUES(1284, 85815, 'eighty-five thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(1285, 78595, 'seventy-eight thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(1286, 13517, 'thirteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(1287, 50245, 'fifty thousand two hundred forty-five');\nINSERT INTO t3 VALUES(1288, 77424, 'seventy-seven thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1289, 15876, 'fifteen thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(1290, 22920, 'twenty-two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(1291, 64435, 'sixty-four thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(1292, 76768, 'seventy-six thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(1293, 43391, 'forty-three thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(1294, 34950, 'thirty-four thousand nine hundred fifty');\nINSERT INTO t3 VALUES(1295, 25178, 'twenty-five thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(1296, 56805, 'fifty-six thousand eight hundred five');\nINSERT INTO t3 VALUES(1297, 91578, 'ninety-one thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(1298, 809, 'eight hundred nine');\nINSERT INTO t3 VALUES(1299, 37088, 'thirty-seven thousand eighty-eight');\nINSERT INTO t3 VALUES(1300, 98258, 'ninety-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(1301, 10616, 'ten thousand six hundred sixteen');\nINSERT INTO t3 VALUES(1302, 57352, 'fifty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(1303, 15, 'fifteen');\nINSERT INTO t3 VALUES(1304, 43089, 'forty-three thousand eighty-nine');\nINSERT INTO t3 VALUES(1305, 60424, 'sixty thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1306, 37851, 'thirty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(1307, 86969, 'eighty-six thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(1308, 14795, 'fourteen thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(1309, 92219, 'ninety-two thousand two hundred nineteen');\nINSERT INTO t3 VALUES(1310, 59566, 'fifty-nine thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(1311, 31151, 'thirty-one thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(1312, 42130, 'forty-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(1313, 66603, 'sixty-six thousand six hundred three');\nINSERT INTO t3 VALUES(1314, 6130, 'six thousand one hundred thirty');\nINSERT INTO t3 VALUES(1315, 52192, 'fifty-two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(1316, 16269, 'sixteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(1317, 90244, 'ninety thousand two hundred forty-four');\nINSERT INTO t3 VALUES(1318, 7823, 'seven thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1319, 40621, 'forty thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(1320, 24321, 'twenty-four thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1321, 37443, 'thirty-seven thousand four hundred forty-three');\nINSERT INTO t3 VALUES(1322, 79623, 'seventy-nine thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(1323, 30079, 'thirty thousand seventy-nine');\nINSERT INTO t3 VALUES(1324, 26923, 'twenty-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(1325, 95823, 'ninety-five thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1326, 8493, 'eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1327, 2583, 'two thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(1328, 3296, 'three thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(1329, 31514, 'thirty-one thousand five hundred fourteen');\nINSERT INTO t3 VALUES(1330, 93837, 'ninety-three thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(1331, 5294, 'five thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(1332, 89455, 'eighty-nine thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(1333, 23735, 'twenty-three thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(1334, 10457, 'ten thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(1335, 90792, 'ninety thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(1336, 63964, 'sixty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(1337, 62810, 'sixty-two thousand eight hundred ten');\nINSERT INTO t3 VALUES(1338, 34157, 'thirty-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(1339, 64482, 'sixty-four thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(1340, 57185, 'fifty-seven thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(1341, 40320, 'forty thousand three hundred twenty');\nINSERT INTO t3 VALUES(1342, 7836, 'seven thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(1343, 79467, 'seventy-nine thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(1344, 75395, 'seventy-five thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(1345, 87556, 'eighty-seven thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(1346, 72239, 'seventy-two thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(1347, 32149, 'thirty-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(1348, 65816, 'sixty-five thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(1349, 23374, 'twenty-three thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(1350, 67750, 'sixty-seven thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1351, 65070, 'sixty-five thousand seventy');\nINSERT INTO t3 VALUES(1352, 34656, 'thirty-four thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(1353, 75525, 'seventy-five thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1354, 61261, 'sixty-one thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(1355, 19402, 'nineteen thousand four hundred two');\nINSERT INTO t3 VALUES(1356, 68104, 'sixty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(1357, 95231, 'ninety-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(1358, 98580, 'ninety-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(1359, 9571, 'nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(1360, 44427, 'forty-four thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(1361, 33019, 'thirty-three thousand nineteen');\nINSERT INTO t3 VALUES(1362, 38266, 'thirty-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(1363, 30826, 'thirty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(1364, 52381, 'fifty-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(1365, 46265, 'forty-six thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(1366, 89302, 'eighty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(1367, 4265, 'four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(1368, 30521, 'thirty thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(1369, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t3 VALUES(1370, 28966, 'twenty-eight thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(1371, 45024, 'forty-five thousand twenty-four');\nINSERT INTO t3 VALUES(1372, 41342, 'forty-one thousand three hundred forty-two');\nINSERT INTO t3 VALUES(1373, 49561, 'forty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(1374, 34543, 'thirty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(1375, 84984, 'eighty-four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(1376, 68593, 'sixty-eight thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(1377, 85461, 'eighty-five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(1378, 59726, 'fifty-nine thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(1379, 45242, 'forty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(1380, 29651, 'twenty-nine thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(1381, 64765, 'sixty-four thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(1382, 26568, 'twenty-six thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(1383, 36933, 'thirty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(1384, 94490, 'ninety-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(1385, 35036, 'thirty-five thousand thirty-six');\nINSERT INTO t3 VALUES(1386, 42971, 'forty-two thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(1387, 44831, 'forty-four thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(1388, 17790, 'seventeen thousand seven hundred ninety');\nINSERT INTO t3 VALUES(1389, 35361, 'thirty-five thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(1390, 52622, 'fifty-two thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(1391, 87742, 'eighty-seven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(1392, 63207, 'sixty-three thousand two hundred seven');\nINSERT INTO t3 VALUES(1393, 79106, 'seventy-nine thousand one hundred six');\nINSERT INTO t3 VALUES(1394, 93806, 'ninety-three thousand eight hundred six');\nINSERT INTO t3 VALUES(1395, 52567, 'fifty-two thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(1396, 43100, 'forty-three thousand one hundred');\nINSERT INTO t3 VALUES(1397, 26459, 'twenty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(1398, 43270, 'forty-three thousand two hundred seventy');\nINSERT INTO t3 VALUES(1399, 32584, 'thirty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(1400, 5213, 'five thousand two hundred thirteen');\nINSERT INTO t3 VALUES(1401, 54750, 'fifty-four thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1402, 52989, 'fifty-two thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1403, 24893, 'twenty-four thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(1404, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(1405, 68586, 'sixty-eight thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(1406, 88256, 'eighty-eight thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(1407, 19826, 'nineteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(1408, 7635, 'seven thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(1409, 53220, 'fifty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(1410, 33504, 'thirty-three thousand five hundred four');\nINSERT INTO t3 VALUES(1411, 44043, 'forty-four thousand forty-three');\nINSERT INTO t3 VALUES(1412, 73365, 'seventy-three thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(1413, 40119, 'forty thousand one hundred nineteen');\nINSERT INTO t3 VALUES(1414, 28251, 'twenty-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(1415, 27530, 'twenty-seven thousand five hundred thirty');\nINSERT INTO t3 VALUES(1416, 35089, 'thirty-five thousand eighty-nine');\nINSERT INTO t3 VALUES(1417, 74383, 'seventy-four thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(1418, 25861, 'twenty-five thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(1419, 33100, 'thirty-three thousand one hundred');\nINSERT INTO t3 VALUES(1420, 1924, 'one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(1421, 92486, 'ninety-two thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(1422, 65303, 'sixty-five thousand three hundred three');\nINSERT INTO t3 VALUES(1423, 45406, 'forty-five thousand four hundred six');\nINSERT INTO t3 VALUES(1424, 62525, 'sixty-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1425, 75622, 'seventy-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(1426, 72808, 'seventy-two thousand eight hundred eight');\nINSERT INTO t3 VALUES(1427, 23115, 'twenty-three thousand one hundred fifteen');\nINSERT INTO t3 VALUES(1428, 88348, 'eighty-eight thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(1429, 54075, 'fifty-four thousand seventy-five');\nINSERT INTO t3 VALUES(1430, 4823, 'four thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1431, 81215, 'eighty-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(1432, 28184, 'twenty-eight thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1433, 67225, 'sixty-seven thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(1434, 93642, 'ninety-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(1435, 67951, 'sixty-seven thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(1436, 83096, 'eighty-three thousand ninety-six');\nINSERT INTO t3 VALUES(1437, 36654, 'thirty-six thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(1438, 51904, 'fifty-one thousand nine hundred four');\nINSERT INTO t3 VALUES(1439, 8175, 'eight thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(1440, 70724, 'seventy thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(1441, 59652, 'fifty-nine thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(1442, 24583, 'twenty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(1443, 31864, 'thirty-one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(1444, 66077, 'sixty-six thousand seventy-seven');\nINSERT INTO t3 VALUES(1445, 84809, 'eighty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(1446, 66310, 'sixty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(1447, 68023, 'sixty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(1448, 60989, 'sixty thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1449, 58479, 'fifty-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(1450, 6397, 'six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(1451, 15312, 'fifteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(1452, 33482, 'thirty-three thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(1453, 65288, 'sixty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(1454, 691, 'six hundred ninety-one');\nINSERT INTO t3 VALUES(1455, 8952, 'eight thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(1456, 58815, 'fifty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(1457, 60639, 'sixty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(1458, 5418, 'five thousand four hundred eighteen');\nINSERT INTO t3 VALUES(1459, 19309, 'nineteen thousand three hundred nine');\nINSERT INTO t3 VALUES(1460, 62587, 'sixty-two thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(1461, 58739, 'fifty-eight thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(1462, 72625, 'seventy-two thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(1463, 54499, 'fifty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(1464, 79342, 'seventy-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(1465, 5924, 'five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(1466, 86304, 'eighty-six thousand three hundred four');\nINSERT INTO t3 VALUES(1467, 32065, 'thirty-two thousand sixty-five');\nINSERT INTO t3 VALUES(1468, 35725, 'thirty-five thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(1469, 16876, 'sixteen thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(1470, 71641, 'seventy-one thousand six hundred forty-one');\nINSERT INTO t3 VALUES(1471, 28399, 'twenty-eight thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(1472, 11765, 'eleven thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(1473, 76934, 'seventy-six thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(1474, 6358, 'six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(1475, 63043, 'sixty-three thousand forty-three');\nINSERT INTO t3 VALUES(1476, 50901, 'fifty thousand nine hundred one');\nINSERT INTO t3 VALUES(1477, 28043, 'twenty-eight thousand forty-three');\nINSERT INTO t3 VALUES(1478, 86547, 'eighty-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(1479, 94729, 'ninety-four thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(1480, 66862, 'sixty-six thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(1481, 76025, 'seventy-six thousand twenty-five');\nINSERT INTO t3 VALUES(1482, 3473, 'three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(1483, 82952, 'eighty-two thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(1484, 43056, 'forty-three thousand fifty-six');\nINSERT INTO t3 VALUES(1485, 17253, 'seventeen thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1486, 60835, 'sixty thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(1487, 74180, 'seventy-four thousand one hundred eighty');\nINSERT INTO t3 VALUES(1488, 22424, 'twenty-two thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1489, 24391, 'twenty-four thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(1490, 73879, 'seventy-three thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(1491, 34259, 'thirty-four thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(1492, 3650, 'three thousand six hundred fifty');\nINSERT INTO t3 VALUES(1493, 36136, 'thirty-six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(1494, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t3 VALUES(1495, 35314, 'thirty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(1496, 24073, 'twenty-four thousand seventy-three');\nINSERT INTO t3 VALUES(1497, 34121, 'thirty-four thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(1498, 6274, 'six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(1499, 69931, 'sixty-nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(1500, 75742, 'seventy-five thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(1501, 29960, 'twenty-nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(1502, 9293, 'nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(1503, 30339, 'thirty thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(1504, 20901, 'twenty thousand nine hundred one');\nINSERT INTO t3 VALUES(1505, 54874, 'fifty-four thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(1506, 63855, 'sixty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(1507, 61816, 'sixty-one thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(1508, 35403, 'thirty-five thousand four hundred three');\nINSERT INTO t3 VALUES(1509, 6552, 'six thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(1510, 33105, 'thirty-three thousand one hundred five');\nINSERT INTO t3 VALUES(1511, 51394, 'fifty-one thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(1512, 29236, 'twenty-nine thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(1513, 57423, 'fifty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(1514, 32304, 'thirty-two thousand three hundred four');\nINSERT INTO t3 VALUES(1515, 45100, 'forty-five thousand one hundred');\nINSERT INTO t3 VALUES(1516, 83599, 'eighty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(1517, 82256, 'eighty-two thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(1518, 16049, 'sixteen thousand forty-nine');\nINSERT INTO t3 VALUES(1519, 45463, 'forty-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(1520, 32310, 'thirty-two thousand three hundred ten');\nINSERT INTO t3 VALUES(1521, 6475, 'six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(1522, 70488, 'seventy thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(1523, 40257, 'forty thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(1524, 52374, 'fifty-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(1525, 70669, 'seventy thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(1526, 33910, 'thirty-three thousand nine hundred ten');\nINSERT INTO t3 VALUES(1527, 81072, 'eighty-one thousand seventy-two');\nINSERT INTO t3 VALUES(1528, 23172, 'twenty-three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(1529, 77387, 'seventy-seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(1530, 28441, 'twenty-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1531, 42804, 'forty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(1532, 42298, 'forty-two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(1533, 13594, 'thirteen thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(1534, 1045, 'one thousand forty-five');\nINSERT INTO t3 VALUES(1535, 56575, 'fifty-six thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(1536, 20197, 'twenty thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(1537, 21989, 'twenty-one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1538, 68341, 'sixty-eight thousand three hundred forty-one');\nINSERT INTO t3 VALUES(1539, 54258, 'fifty-four thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(1540, 32984, 'thirty-two thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(1541, 31747, 'thirty-one thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(1542, 88436, 'eighty-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(1543, 57530, 'fifty-seven thousand five hundred thirty');\nINSERT INTO t3 VALUES(1544, 31675, 'thirty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(1545, 77525, 'seventy-seven thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1546, 27764, 'twenty-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(1547, 49705, 'forty-nine thousand seven hundred five');\nINSERT INTO t3 VALUES(1548, 71362, 'seventy-one thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(1549, 96058, 'ninety-six thousand fifty-eight');\nINSERT INTO t3 VALUES(1550, 48130, 'forty-eight thousand one hundred thirty');\nINSERT INTO t3 VALUES(1551, 93355, 'ninety-three thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(1552, 20762, 'twenty thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(1553, 29874, 'twenty-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(1554, 48108, 'forty-eight thousand one hundred eight');\nINSERT INTO t3 VALUES(1555, 97598, 'ninety-seven thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(1556, 62902, 'sixty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(1557, 95447, 'ninety-five thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(1558, 63295, 'sixty-three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(1559, 59971, 'fifty-nine thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(1560, 85311, 'eighty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(1561, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(1562, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1563, 9574, 'nine thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(1564, 53832, 'fifty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(1565, 68806, 'sixty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(1566, 68886, 'sixty-eight thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(1567, 47312, 'forty-seven thousand three hundred twelve');\nINSERT INTO t3 VALUES(1568, 40956, 'forty thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(1569, 81278, 'eighty-one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(1570, 81024, 'eighty-one thousand twenty-four');\nINSERT INTO t3 VALUES(1571, 94492, 'ninety-four thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(1572, 14555, 'fourteen thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(1573, 88599, 'eighty-eight thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(1574, 17427, 'seventeen thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(1575, 37635, 'thirty-seven thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(1576, 14697, 'fourteen thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(1577, 23884, 'twenty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(1578, 49243, 'forty-nine thousand two hundred forty-three');\nINSERT INTO t3 VALUES(1579, 19993, 'nineteen thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(1580, 65763, 'sixty-five thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(1581, 70657, 'seventy thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(1582, 6309, 'six thousand three hundred nine');\nINSERT INTO t3 VALUES(1583, 95396, 'ninety-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(1584, 34119, 'thirty-four thousand one hundred nineteen');\nINSERT INTO t3 VALUES(1585, 60184, 'sixty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1586, 60530, 'sixty thousand five hundred thirty');\nINSERT INTO t3 VALUES(1587, 519, 'five hundred nineteen');\nINSERT INTO t3 VALUES(1588, 29332, 'twenty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(1589, 37833, 'thirty-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(1590, 61159, 'sixty-one thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(1591, 80522, 'eighty thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(1592, 53291, 'fifty-three thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(1593, 49051, 'forty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(1594, 2056, 'two thousand fifty-six');\nINSERT INTO t3 VALUES(1595, 77210, 'seventy-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(1596, 86325, 'eighty-six thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1597, 84665, 'eighty-four thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(1598, 67725, 'sixty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(1599, 26029, 'twenty-six thousand twenty-nine');\nINSERT INTO t3 VALUES(1600, 88601, 'eighty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(1601, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(1602, 19325, 'nineteen thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1603, 37076, 'thirty-seven thousand seventy-six');\nINSERT INTO t3 VALUES(1604, 15094, 'fifteen thousand ninety-four');\nINSERT INTO t3 VALUES(1605, 52998, 'fifty-two thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(1606, 26678, 'twenty-six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(1607, 69600, 'sixty-nine thousand six hundred');\nINSERT INTO t3 VALUES(1608, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(1609, 80950, 'eighty thousand nine hundred fifty');\nINSERT INTO t3 VALUES(1610, 98818, 'ninety-eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(1611, 51614, 'fifty-one thousand six hundred fourteen');\nINSERT INTO t3 VALUES(1612, 12599, 'twelve thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(1613, 39089, 'thirty-nine thousand eighty-nine');\nINSERT INTO t3 VALUES(1614, 95895, 'ninety-five thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(1615, 88094, 'eighty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(1616, 82079, 'eighty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(1617, 95142, 'ninety-five thousand one hundred forty-two');\nINSERT INTO t3 VALUES(1618, 73845, 'seventy-three thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(1619, 2906, 'two thousand nine hundred six');\nINSERT INTO t3 VALUES(1620, 80960, 'eighty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(1621, 23479, 'twenty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(1622, 88298, 'eighty-eight thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(1623, 57077, 'fifty-seven thousand seventy-seven');\nINSERT INTO t3 VALUES(1624, 24630, 'twenty-four thousand six hundred thirty');\nINSERT INTO t3 VALUES(1625, 74083, 'seventy-four thousand eighty-three');\nINSERT INTO t3 VALUES(1626, 32204, 'thirty-two thousand two hundred four');\nINSERT INTO t3 VALUES(1627, 40032, 'forty thousand thirty-two');\nINSERT INTO t3 VALUES(1628, 61026, 'sixty-one thousand twenty-six');\nINSERT INTO t3 VALUES(1629, 44543, 'forty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(1630, 58253, 'fifty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1631, 26899, 'twenty-six thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(1632, 97209, 'ninety-seven thousand two hundred nine');\nINSERT INTO t3 VALUES(1633, 41316, 'forty-one thousand three hundred sixteen');\nINSERT INTO t3 VALUES(1634, 4556, 'four thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(1635, 36548, 'thirty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(1636, 38921, 'thirty-eight thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1637, 9280, 'nine thousand two hundred eighty');\nINSERT INTO t3 VALUES(1638, 32498, 'thirty-two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(1639, 16992, 'sixteen thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(1640, 19324, 'nineteen thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(1641, 96451, 'ninety-six thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(1642, 22576, 'twenty-two thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(1643, 97309, 'ninety-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(1644, 80770, 'eighty thousand seven hundred seventy');\nINSERT INTO t3 VALUES(1645, 9121, 'nine thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(1646, 3338, 'three thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(1647, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t3 VALUES(1648, 19191, 'nineteen thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(1649, 54541, 'fifty-four thousand five hundred forty-one');\nINSERT INTO t3 VALUES(1650, 78396, 'seventy-eight thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(1651, 74699, 'seventy-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(1652, 27794, 'twenty-seven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(1653, 55989, 'fifty-five thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(1654, 54249, 'fifty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(1655, 14881, 'fourteen thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1656, 80268, 'eighty thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(1657, 95277, 'ninety-five thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(1658, 1797, 'one thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(1659, 1225, 'one thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(1660, 8618, 'eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(1661, 39882, 'thirty-nine thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1662, 54884, 'fifty-four thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(1663, 73047, 'seventy-three thousand forty-seven');\nINSERT INTO t3 VALUES(1664, 5927, 'five thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(1665, 13817, 'thirteen thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(1666, 30176, 'thirty thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(1667, 33774, 'thirty-three thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(1668, 9833, 'nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(1669, 65221, 'sixty-five thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(1670, 19520, 'nineteen thousand five hundred twenty');\nINSERT INTO t3 VALUES(1671, 35027, 'thirty-five thousand twenty-seven');\nINSERT INTO t3 VALUES(1672, 49390, 'forty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(1673, 76401, 'seventy-six thousand four hundred one');\nINSERT INTO t3 VALUES(1674, 57398, 'fifty-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(1675, 63452, 'sixty-three thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(1676, 69211, 'sixty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(1677, 43066, 'forty-three thousand sixty-six');\nINSERT INTO t3 VALUES(1678, 89905, 'eighty-nine thousand nine hundred five');\nINSERT INTO t3 VALUES(1679, 20694, 'twenty thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(1680, 53351, 'fifty-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(1681, 36442, 'thirty-six thousand four hundred forty-two');\nINSERT INTO t3 VALUES(1682, 19987, 'nineteen thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(1683, 78561, 'seventy-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(1684, 76690, 'seventy-six thousand six hundred ninety');\nINSERT INTO t3 VALUES(1685, 81665, 'eighty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(1686, 9725, 'nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(1687, 87526, 'eighty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(1688, 38779, 'thirty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(1689, 73641, 'seventy-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(1690, 31420, 'thirty-one thousand four hundred twenty');\nINSERT INTO t3 VALUES(1691, 49868, 'forty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(1692, 94217, 'ninety-four thousand two hundred seventeen');\nINSERT INTO t3 VALUES(1693, 80648, 'eighty thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(1694, 14059, 'fourteen thousand fifty-nine');\nINSERT INTO t3 VALUES(1695, 35226, 'thirty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(1696, 8847, 'eight thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(1697, 83846, 'eighty-three thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(1698, 81789, 'eighty-one thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(1699, 29756, 'twenty-nine thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(1700, 79253, 'seventy-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(1701, 4424, 'four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(1702, 96946, 'ninety-six thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(1703, 40452, 'forty thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(1704, 53559, 'fifty-three thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(1705, 99321, 'ninety-nine thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1706, 70435, 'seventy thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(1707, 70689, 'seventy thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(1708, 93232, 'ninety-three thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(1709, 25439, 'twenty-five thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(1710, 88816, 'eighty-eight thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(1711, 18057, 'eighteen thousand fifty-seven');\nINSERT INTO t3 VALUES(1712, 83538, 'eighty-three thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(1713, 14919, 'fourteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(1714, 65130, 'sixty-five thousand one hundred thirty');\nINSERT INTO t3 VALUES(1715, 351, 'three hundred fifty-one');\nINSERT INTO t3 VALUES(1716, 8796, 'eight thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(1717, 5647, 'five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(1718, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t3 VALUES(1719, 30128, 'thirty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(1720, 96358, 'ninety-six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(1721, 86275, 'eighty-six thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(1722, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(1723, 24988, 'twenty-four thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(1724, 81247, 'eighty-one thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(1725, 14632, 'fourteen thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(1726, 65441, 'sixty-five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1727, 27646, 'twenty-seven thousand six hundred forty-six');\nINSERT INTO t3 VALUES(1728, 61750, 'sixty-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(1729, 81287, 'eighty-one thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(1730, 47423, 'forty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(1731, 86776, 'eighty-six thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(1732, 86755, 'eighty-six thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(1733, 5222, 'five thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(1734, 53629, 'fifty-three thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(1735, 74582, 'seventy-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(1736, 17560, 'seventeen thousand five hundred sixty');\nINSERT INTO t3 VALUES(1737, 53440, 'fifty-three thousand four hundred forty');\nINSERT INTO t3 VALUES(1738, 25990, 'twenty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(1739, 47210, 'forty-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(1740, 57398, 'fifty-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(1741, 25842, 'twenty-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(1742, 77328, 'seventy-seven thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(1743, 18096, 'eighteen thousand ninety-six');\nINSERT INTO t3 VALUES(1744, 34754, 'thirty-four thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(1745, 45405, 'forty-five thousand four hundred five');\nINSERT INTO t3 VALUES(1746, 13823, 'thirteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(1747, 49923, 'forty-nine thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(1748, 83819, 'eighty-three thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(1749, 17607, 'seventeen thousand six hundred seven');\nINSERT INTO t3 VALUES(1750, 27690, 'twenty-seven thousand six hundred ninety');\nINSERT INTO t3 VALUES(1751, 94247, 'ninety-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(1752, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1753, 85965, 'eighty-five thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(1754, 91977, 'ninety-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(1755, 78239, 'seventy-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(1756, 85321, 'eighty-five thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1757, 9783, 'nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(1758, 52766, 'fifty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(1759, 60639, 'sixty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(1760, 51278, 'fifty-one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(1761, 27375, 'twenty-seven thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(1762, 1617, 'one thousand six hundred seventeen');\nINSERT INTO t3 VALUES(1763, 66623, 'sixty-six thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(1764, 74421, 'seventy-four thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(1765, 24325, 'twenty-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(1766, 79776, 'seventy-nine thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(1767, 33732, 'thirty-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(1768, 61564, 'sixty-one thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(1769, 79172, 'seventy-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(1770, 90022, 'ninety thousand twenty-two');\nINSERT INTO t3 VALUES(1771, 91525, 'ninety-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(1772, 85153, 'eighty-five thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(1773, 84868, 'eighty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(1774, 19344, 'nineteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(1775, 90744, 'ninety thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(1776, 15514, 'fifteen thousand five hundred fourteen');\nINSERT INTO t3 VALUES(1777, 71377, 'seventy-one thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(1778, 5810, 'five thousand eight hundred ten');\nINSERT INTO t3 VALUES(1779, 33066, 'thirty-three thousand sixty-six');\nINSERT INTO t3 VALUES(1780, 67045, 'sixty-seven thousand forty-five');\nINSERT INTO t3 VALUES(1781, 47539, 'forty-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(1782, 85185, 'eighty-five thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(1783, 22446, 'twenty-two thousand four hundred forty-six');\nINSERT INTO t3 VALUES(1784, 92330, 'ninety-two thousand three hundred thirty');\nINSERT INTO t3 VALUES(1785, 99813, 'ninety-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(1786, 92270, 'ninety-two thousand two hundred seventy');\nINSERT INTO t3 VALUES(1787, 71971, 'seventy-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(1788, 8653, 'eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(1789, 74307, 'seventy-four thousand three hundred seven');\nINSERT INTO t3 VALUES(1790, 45585, 'forty-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(1791, 60701, 'sixty thousand seven hundred one');\nINSERT INTO t3 VALUES(1792, 58417, 'fifty-eight thousand four hundred seventeen');\nINSERT INTO t3 VALUES(1793, 74492, 'seventy-four thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(1794, 89732, 'eighty-nine thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(1795, 67912, 'sixty-seven thousand nine hundred twelve');\nINSERT INTO t3 VALUES(1796, 18422, 'eighteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(1797, 11633, 'eleven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(1798, 38432, 'thirty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(1799, 53350, 'fifty-three thousand three hundred fifty');\nINSERT INTO t3 VALUES(1800, 3256, 'three thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(1801, 18800, 'eighteen thousand eight hundred');\nINSERT INTO t3 VALUES(1802, 74056, 'seventy-four thousand fifty-six');\nINSERT INTO t3 VALUES(1803, 39640, 'thirty-nine thousand six hundred forty');\nINSERT INTO t3 VALUES(1804, 17551, 'seventeen thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(1805, 33076, 'thirty-three thousand seventy-six');\nINSERT INTO t3 VALUES(1806, 5062, 'five thousand sixty-two');\nINSERT INTO t3 VALUES(1807, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(1808, 93580, 'ninety-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(1809, 49252, 'forty-nine thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(1810, 14480, 'fourteen thousand four hundred eighty');\nINSERT INTO t3 VALUES(1811, 13799, 'thirteen thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(1812, 6840, 'six thousand eight hundred forty');\nINSERT INTO t3 VALUES(1813, 87793, 'eighty-seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(1814, 41698, 'forty-one thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(1815, 37665, 'thirty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(1816, 71170, 'seventy-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(1817, 69307, 'sixty-nine thousand three hundred seven');\nINSERT INTO t3 VALUES(1818, 36344, 'thirty-six thousand three hundred forty-four');\nINSERT INTO t3 VALUES(1819, 82535, 'eighty-two thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(1820, 11733, 'eleven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(1821, 37335, 'thirty-seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(1822, 16657, 'sixteen thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(1823, 77184, 'seventy-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(1824, 29887, 'twenty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(1825, 38486, 'thirty-eight thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(1826, 15093, 'fifteen thousand ninety-three');\nINSERT INTO t3 VALUES(1827, 23045, 'twenty-three thousand forty-five');\nINSERT INTO t3 VALUES(1828, 84551, 'eighty-four thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(1829, 53035, 'fifty-three thousand thirty-five');\nINSERT INTO t3 VALUES(1830, 64634, 'sixty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(1831, 43246, 'forty-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(1832, 91381, 'ninety-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(1833, 48117, 'forty-eight thousand one hundred seventeen');\nINSERT INTO t3 VALUES(1834, 28126, 'twenty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(1835, 94457, 'ninety-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(1836, 53085, 'fifty-three thousand eighty-five');\nINSERT INTO t3 VALUES(1837, 91230, 'ninety-one thousand two hundred thirty');\nINSERT INTO t3 VALUES(1838, 80930, 'eighty thousand nine hundred thirty');\nINSERT INTO t3 VALUES(1839, 51813, 'fifty-one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(1840, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(1841, 10541, 'ten thousand five hundred forty-one');\nINSERT INTO t3 VALUES(1842, 63316, 'sixty-three thousand three hundred sixteen');\nINSERT INTO t3 VALUES(1843, 86642, 'eighty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(1844, 90329, 'ninety thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(1845, 45310, 'forty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(1846, 41949, 'forty-one thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(1847, 35438, 'thirty-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(1848, 46641, 'forty-six thousand six hundred forty-one');\nINSERT INTO t3 VALUES(1849, 23307, 'twenty-three thousand three hundred seven');\nINSERT INTO t3 VALUES(1850, 79886, 'seventy-nine thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(1851, 284, 'two hundred eighty-four');\nINSERT INTO t3 VALUES(1852, 13104, 'thirteen thousand one hundred four');\nINSERT INTO t3 VALUES(1853, 53609, 'fifty-three thousand six hundred nine');\nINSERT INTO t3 VALUES(1854, 58540, 'fifty-eight thousand five hundred forty');\nINSERT INTO t3 VALUES(1855, 22527, 'twenty-two thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(1856, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(1857, 17504, 'seventeen thousand five hundred four');\nINSERT INTO t3 VALUES(1858, 82012, 'eighty-two thousand twelve');\nINSERT INTO t3 VALUES(1859, 1468, 'one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(1860, 76117, 'seventy-six thousand one hundred seventeen');\nINSERT INTO t3 VALUES(1861, 83855, 'eighty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(1862, 84711, 'eighty-four thousand seven hundred eleven');\nINSERT INTO t3 VALUES(1863, 71607, 'seventy-one thousand six hundred seven');\nINSERT INTO t3 VALUES(1864, 13753, 'thirteen thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(1865, 44167, 'forty-four thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(1866, 49345, 'forty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(1867, 89810, 'eighty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(1868, 3843, 'three thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(1869, 55672, 'fifty-five thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(1870, 74000, 'seventy-four thousand');\nINSERT INTO t3 VALUES(1871, 74072, 'seventy-four thousand seventy-two');\nINSERT INTO t3 VALUES(1872, 92844, 'ninety-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(1873, 28448, 'twenty-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(1874, 33924, 'thirty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(1875, 34292, 'thirty-four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(1876, 45610, 'forty-five thousand six hundred ten');\nINSERT INTO t3 VALUES(1877, 62127, 'sixty-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(1878, 60105, 'sixty thousand one hundred five');\nINSERT INTO t3 VALUES(1879, 65062, 'sixty-five thousand sixty-two');\nINSERT INTO t3 VALUES(1880, 57148, 'fifty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(1881, 66796, 'sixty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(1882, 62699, 'sixty-two thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(1883, 75145, 'seventy-five thousand one hundred forty-five');\nINSERT INTO t3 VALUES(1884, 41321, 'forty-one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(1885, 2213, 'two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(1886, 74966, 'seventy-four thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(1887, 45305, 'forty-five thousand three hundred five');\nINSERT INTO t3 VALUES(1888, 76632, 'seventy-six thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(1889, 99047, 'ninety-nine thousand forty-seven');\nINSERT INTO t3 VALUES(1890, 54068, 'fifty-four thousand sixty-eight');\nINSERT INTO t3 VALUES(1891, 8881, 'eight thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1892, 46208, 'forty-six thousand two hundred eight');\nINSERT INTO t3 VALUES(1893, 73868, 'seventy-three thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(1894, 19510, 'nineteen thousand five hundred ten');\nINSERT INTO t3 VALUES(1895, 72069, 'seventy-two thousand sixty-nine');\nINSERT INTO t3 VALUES(1896, 51770, 'fifty-one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(1897, 91125, 'ninety-one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(1898, 69281, 'sixty-nine thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(1899, 96078, 'ninety-six thousand seventy-eight');\nINSERT INTO t3 VALUES(1900, 99710, 'ninety-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(1901, 92553, 'ninety-two thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(1902, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t3 VALUES(1903, 48921, 'forty-eight thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(1904, 57229, 'fifty-seven thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(1905, 4529, 'four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(1906, 38632, 'thirty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(1907, 12327, 'twelve thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(1908, 37881, 'thirty-seven thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(1909, 54221, 'fifty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(1910, 58504, 'fifty-eight thousand five hundred four');\nINSERT INTO t3 VALUES(1911, 81205, 'eighty-one thousand two hundred five');\nINSERT INTO t3 VALUES(1912, 49852, 'forty-nine thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(1913, 18990, 'eighteen thousand nine hundred ninety');\nINSERT INTO t3 VALUES(1914, 46686, 'forty-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(1915, 49449, 'forty-nine thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(1916, 32859, 'thirty-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(1917, 93576, 'ninety-three thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(1918, 79522, 'seventy-nine thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(1919, 48625, 'forty-eight thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(1920, 17379, 'seventeen thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(1921, 86661, 'eighty-six thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(1922, 89879, 'eighty-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(1923, 88484, 'eighty-eight thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(1924, 60303, 'sixty thousand three hundred three');\nINSERT INTO t3 VALUES(1925, 66627, 'sixty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(1926, 9889, 'nine thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(1927, 54268, 'fifty-four thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(1928, 509, 'five hundred nine');\nINSERT INTO t3 VALUES(1929, 29418, 'twenty-nine thousand four hundred eighteen');\nINSERT INTO t3 VALUES(1930, 1114, 'one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(1931, 57107, 'fifty-seven thousand one hundred seven');\nINSERT INTO t3 VALUES(1932, 49837, 'forty-nine thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(1933, 31332, 'thirty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(1934, 19882, 'nineteen thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(1935, 6390, 'six thousand three hundred ninety');\nINSERT INTO t3 VALUES(1936, 92051, 'ninety-two thousand fifty-one');\nINSERT INTO t3 VALUES(1937, 73591, 'seventy-three thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(1938, 73809, 'seventy-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(1939, 37123, 'thirty-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(1940, 46702, 'forty-six thousand seven hundred two');\nINSERT INTO t3 VALUES(1941, 44453, 'forty-four thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(1942, 94498, 'ninety-four thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(1943, 41213, 'forty-one thousand two hundred thirteen');\nINSERT INTO t3 VALUES(1944, 37512, 'thirty-seven thousand five hundred twelve');\nINSERT INTO t3 VALUES(1945, 40345, 'forty thousand three hundred forty-five');\nINSERT INTO t3 VALUES(1946, 65300, 'sixty-five thousand three hundred');\nINSERT INTO t3 VALUES(1947, 99023, 'ninety-nine thousand twenty-three');\nINSERT INTO t3 VALUES(1948, 51529, 'fifty-one thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(1949, 40564, 'forty thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(1950, 93119, 'ninety-three thousand one hundred nineteen');\nINSERT INTO t3 VALUES(1951, 95801, 'ninety-five thousand eight hundred one');\nINSERT INTO t3 VALUES(1952, 29139, 'twenty-nine thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(1953, 88533, 'eighty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(1954, 36391, 'thirty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(1955, 46914, 'forty-six thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(1956, 1945, 'one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(1957, 17441, 'seventeen thousand four hundred forty-one');\nINSERT INTO t3 VALUES(1958, 50389, 'fifty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(1959, 2919, 'two thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(1960, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(1961, 60435, 'sixty thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(1962, 87437, 'eighty-seven thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(1963, 48552, 'forty-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(1964, 97032, 'ninety-seven thousand thirty-two');\nINSERT INTO t3 VALUES(1965, 3774, 'three thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(1966, 88663, 'eighty-eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(1967, 49949, 'forty-nine thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(1968, 42172, 'forty-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(1969, 81342, 'eighty-one thousand three hundred forty-two');\nINSERT INTO t3 VALUES(1970, 50370, 'fifty thousand three hundred seventy');\nINSERT INTO t3 VALUES(1971, 68432, 'sixty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(1972, 74779, 'seventy-four thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(1973, 78931, 'seventy-eight thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(1974, 88840, 'eighty-eight thousand eight hundred forty');\nINSERT INTO t3 VALUES(1975, 33044, 'thirty-three thousand forty-four');\nINSERT INTO t3 VALUES(1976, 33493, 'thirty-three thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1977, 93664, 'ninety-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(1978, 18493, 'eighteen thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(1979, 31558, 'thirty-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(1980, 78410, 'seventy-eight thousand four hundred ten');\nINSERT INTO t3 VALUES(1981, 18024, 'eighteen thousand twenty-four');\nINSERT INTO t3 VALUES(1982, 84219, 'eighty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(1983, 93478, 'ninety-three thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(1984, 77514, 'seventy-seven thousand five hundred fourteen');\nINSERT INTO t3 VALUES(1985, 40296, 'forty thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(1986, 51888, 'fifty-one thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(1987, 16949, 'sixteen thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(1988, 68817, 'sixty-eight thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(1989, 69649, 'sixty-nine thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(1990, 72933, 'seventy-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(1991, 12206, 'twelve thousand two hundred six');\nINSERT INTO t3 VALUES(1992, 97291, 'ninety-seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(1993, 39229, 'thirty-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(1994, 37831, 'thirty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(1995, 33866, 'thirty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(1996, 85012, 'eighty-five thousand twelve');\nINSERT INTO t3 VALUES(1997, 38533, 'thirty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(1998, 46016, 'forty-six thousand sixteen');\nINSERT INTO t3 VALUES(1999, 93324, 'ninety-three thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(2000, 63623, 'sixty-three thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(2001, 98556, 'ninety-eight thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(2002, 58599, 'fifty-eight thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(2003, 45225, 'forty-five thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(2004, 37548, 'thirty-seven thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(2005, 83650, 'eighty-three thousand six hundred fifty');\nINSERT INTO t3 VALUES(2006, 14417, 'fourteen thousand four hundred seventeen');\nINSERT INTO t3 VALUES(2007, 32517, 'thirty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(2008, 22945, 'twenty-two thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(2009, 3316, 'three thousand three hundred sixteen');\nINSERT INTO t3 VALUES(2010, 93213, 'ninety-three thousand two hundred thirteen');\nINSERT INTO t3 VALUES(2011, 26724, 'twenty-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(2012, 21333, 'twenty-one thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(2013, 81607, 'eighty-one thousand six hundred seven');\nINSERT INTO t3 VALUES(2014, 82073, 'eighty-two thousand seventy-three');\nINSERT INTO t3 VALUES(2015, 79396, 'seventy-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(2016, 27732, 'twenty-seven thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(2017, 15834, 'fifteen thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(2018, 72301, 'seventy-two thousand three hundred one');\nINSERT INTO t3 VALUES(2019, 9948, 'nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(2020, 65047, 'sixty-five thousand forty-seven');\nINSERT INTO t3 VALUES(2021, 75772, 'seventy-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(2022, 79232, 'seventy-nine thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(2023, 97661, 'ninety-seven thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(2024, 25306, 'twenty-five thousand three hundred six');\nINSERT INTO t3 VALUES(2025, 31192, 'thirty-one thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(2026, 88179, 'eighty-eight thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(2027, 20441, 'twenty thousand four hundred forty-one');\nINSERT INTO t3 VALUES(2028, 47119, 'forty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(2029, 65133, 'sixty-five thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(2030, 8819, 'eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(2031, 6202, 'six thousand two hundred two');\nINSERT INTO t3 VALUES(2032, 20304, 'twenty thousand three hundred four');\nINSERT INTO t3 VALUES(2033, 1572, 'one thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(2034, 17955, 'seventeen thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(2035, 49827, 'forty-nine thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(2036, 61984, 'sixty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(2037, 56316, 'fifty-six thousand three hundred sixteen');\nINSERT INTO t3 VALUES(2038, 26547, 'twenty-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(2039, 47448, 'forty-seven thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(2040, 56793, 'fifty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(2041, 47578, 'forty-seven thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(2042, 70665, 'seventy thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(2043, 7051, 'seven thousand fifty-one');\nINSERT INTO t3 VALUES(2044, 26887, 'twenty-six thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(2045, 71921, 'seventy-one thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(2046, 69606, 'sixty-nine thousand six hundred six');\nINSERT INTO t3 VALUES(2047, 81647, 'eighty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(2048, 44218, 'forty-four thousand two hundred eighteen');\nINSERT INTO t3 VALUES(2049, 85354, 'eighty-five thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(2050, 8849, 'eight thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2051, 84181, 'eighty-four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(2052, 32708, 'thirty-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(2053, 68880, 'sixty-eight thousand eight hundred eighty');\nINSERT INTO t3 VALUES(2054, 75721, 'seventy-five thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(2055, 29936, 'twenty-nine thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(2056, 89236, 'eighty-nine thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(2057, 91416, 'ninety-one thousand four hundred sixteen');\nINSERT INTO t3 VALUES(2058, 63884, 'sixty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(2059, 33238, 'thirty-three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(2060, 74676, 'seventy-four thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(2061, 72246, 'seventy-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(2062, 69954, 'sixty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(2063, 23336, 'twenty-three thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(2064, 35017, 'thirty-five thousand seventeen');\nINSERT INTO t3 VALUES(2065, 86820, 'eighty-six thousand eight hundred twenty');\nINSERT INTO t3 VALUES(2066, 17954, 'seventeen thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(2067, 35069, 'thirty-five thousand sixty-nine');\nINSERT INTO t3 VALUES(2068, 44963, 'forty-four thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(2069, 16622, 'sixteen thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(2070, 77447, 'seventy-seven thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(2071, 4786, 'four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(2072, 77713, 'seventy-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(2073, 80044, 'eighty thousand forty-four');\nINSERT INTO t3 VALUES(2074, 84960, 'eighty-four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(2075, 75412, 'seventy-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(2076, 32987, 'thirty-two thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(2077, 27500, 'twenty-seven thousand five hundred');\nINSERT INTO t3 VALUES(2078, 69099, 'sixty-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(2079, 95854, 'ninety-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(2080, 60201, 'sixty thousand two hundred one');\nINSERT INTO t3 VALUES(2081, 18459, 'eighteen thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(2082, 35972, 'thirty-five thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(2083, 74050, 'seventy-four thousand fifty');\nINSERT INTO t3 VALUES(2084, 19799, 'nineteen thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(2085, 95778, 'ninety-five thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(2086, 62066, 'sixty-two thousand sixty-six');\nINSERT INTO t3 VALUES(2087, 61196, 'sixty-one thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(2088, 58432, 'fifty-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(2089, 97946, 'ninety-seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(2090, 12406, 'twelve thousand four hundred six');\nINSERT INTO t3 VALUES(2091, 68826, 'sixty-eight thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(2092, 88084, 'eighty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(2093, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t3 VALUES(2094, 61535, 'sixty-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(2095, 18262, 'eighteen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(2096, 23242, 'twenty-three thousand two hundred forty-two');\nINSERT INTO t3 VALUES(2097, 69693, 'sixty-nine thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(2098, 57613, 'fifty-seven thousand six hundred thirteen');\nINSERT INTO t3 VALUES(2099, 93021, 'ninety-three thousand twenty-one');\nINSERT INTO t3 VALUES(2100, 39809, 'thirty-nine thousand eight hundred nine');\nINSERT INTO t3 VALUES(2101, 67259, 'sixty-seven thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(2102, 6215, 'six thousand two hundred fifteen');\nINSERT INTO t3 VALUES(2103, 59291, 'fifty-nine thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(2104, 10985, 'ten thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(2105, 33289, 'thirty-three thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(2106, 82410, 'eighty-two thousand four hundred ten');\nINSERT INTO t3 VALUES(2107, 24220, 'twenty-four thousand two hundred twenty');\nINSERT INTO t3 VALUES(2108, 48165, 'forty-eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(2109, 82098, 'eighty-two thousand ninety-eight');\nINSERT INTO t3 VALUES(2110, 94652, 'ninety-four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(2111, 22610, 'twenty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(2112, 20576, 'twenty thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(2113, 66793, 'sixty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(2114, 89310, 'eighty-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(2115, 68790, 'sixty-eight thousand seven hundred ninety');\nINSERT INTO t3 VALUES(2116, 86133, 'eighty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(2117, 31710, 'thirty-one thousand seven hundred ten');\nINSERT INTO t3 VALUES(2118, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(2119, 26244, 'twenty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(2120, 30473, 'thirty thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(2121, 26424, 'twenty-six thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(2122, 90055, 'ninety thousand fifty-five');\nINSERT INTO t3 VALUES(2123, 85290, 'eighty-five thousand two hundred ninety');\nINSERT INTO t3 VALUES(2124, 63577, 'sixty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(2125, 73925, 'seventy-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(2126, 62904, 'sixty-two thousand nine hundred four');\nINSERT INTO t3 VALUES(2127, 12256, 'twelve thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(2128, 35748, 'thirty-five thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(2129, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(2130, 33621, 'thirty-three thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(2131, 61369, 'sixty-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(2132, 20108, 'twenty thousand one hundred eight');\nINSERT INTO t3 VALUES(2133, 47031, 'forty-seven thousand thirty-one');\nINSERT INTO t3 VALUES(2134, 16205, 'sixteen thousand two hundred five');\nINSERT INTO t3 VALUES(2135, 69777, 'sixty-nine thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(2136, 50091, 'fifty thousand ninety-one');\nINSERT INTO t3 VALUES(2137, 87328, 'eighty-seven thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(2138, 75202, 'seventy-five thousand two hundred two');\nINSERT INTO t3 VALUES(2139, 86031, 'eighty-six thousand thirty-one');\nINSERT INTO t3 VALUES(2140, 83275, 'eighty-three thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(2141, 91163, 'ninety-one thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(2142, 29596, 'twenty-nine thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2143, 80885, 'eighty thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(2144, 7114, 'seven thousand one hundred fourteen');\nINSERT INTO t3 VALUES(2145, 95311, 'ninety-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(2146, 41598, 'forty-one thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(2147, 15299, 'fifteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(2148, 68783, 'sixty-eight thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(2149, 77923, 'seventy-seven thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(2150, 84420, 'eighty-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(2151, 29543, 'twenty-nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(2152, 61605, 'sixty-one thousand six hundred five');\nINSERT INTO t3 VALUES(2153, 24259, 'twenty-four thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(2154, 26587, 'twenty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(2155, 3750, 'three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2156, 19736, 'nineteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(2157, 30736, 'thirty thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(2158, 90402, 'ninety thousand four hundred two');\nINSERT INTO t3 VALUES(2159, 2620, 'two thousand six hundred twenty');\nINSERT INTO t3 VALUES(2160, 88988, 'eighty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2161, 36807, 'thirty-six thousand eight hundred seven');\nINSERT INTO t3 VALUES(2162, 61988, 'sixty-one thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2163, 84714, 'eighty-four thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(2164, 60150, 'sixty thousand one hundred fifty');\nINSERT INTO t3 VALUES(2165, 10846, 'ten thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(2166, 60791, 'sixty thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(2167, 73750, 'seventy-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2168, 81970, 'eighty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(2169, 91144, 'ninety-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(2170, 3387, 'three thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(2171, 5474, 'five thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(2172, 98118, 'ninety-eight thousand one hundred eighteen');\nINSERT INTO t3 VALUES(2173, 1979, 'one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2174, 48815, 'forty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(2175, 65851, 'sixty-five thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(2176, 20554, 'twenty thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(2177, 74468, 'seventy-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(2178, 26877, 'twenty-six thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(2179, 8772, 'eight thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(2180, 14905, 'fourteen thousand nine hundred five');\nINSERT INTO t3 VALUES(2181, 26261, 'twenty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(2182, 81205, 'eighty-one thousand two hundred five');\nINSERT INTO t3 VALUES(2183, 3169, 'three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(2184, 60000, 'sixty thousand');\nINSERT INTO t3 VALUES(2185, 36692, 'thirty-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(2186, 66844, 'sixty-six thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2187, 84078, 'eighty-four thousand seventy-eight');\nINSERT INTO t3 VALUES(2188, 70466, 'seventy thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(2189, 87040, 'eighty-seven thousand forty');\nINSERT INTO t3 VALUES(2190, 36416, 'thirty-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(2191, 37209, 'thirty-seven thousand two hundred nine');\nINSERT INTO t3 VALUES(2192, 19563, 'nineteen thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(2193, 99620, 'ninety-nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(2194, 83710, 'eighty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(2195, 17594, 'seventeen thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(2196, 48053, 'forty-eight thousand fifty-three');\nINSERT INTO t3 VALUES(2197, 9309, 'nine thousand three hundred nine');\nINSERT INTO t3 VALUES(2198, 87289, 'eighty-seven thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(2199, 38833, 'thirty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(2200, 54107, 'fifty-four thousand one hundred seven');\nINSERT INTO t3 VALUES(2201, 33163, 'thirty-three thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(2202, 15512, 'fifteen thousand five hundred twelve');\nINSERT INTO t3 VALUES(2203, 36025, 'thirty-six thousand twenty-five');\nINSERT INTO t3 VALUES(2204, 68272, 'sixty-eight thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(2205, 96954, 'ninety-six thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(2206, 56025, 'fifty-six thousand twenty-five');\nINSERT INTO t3 VALUES(2207, 72751, 'seventy-two thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(2208, 98035, 'ninety-eight thousand thirty-five');\nINSERT INTO t3 VALUES(2209, 33551, 'thirty-three thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(2210, 8544, 'eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2211, 75038, 'seventy-five thousand thirty-eight');\nINSERT INTO t3 VALUES(2212, 53059, 'fifty-three thousand fifty-nine');\nINSERT INTO t3 VALUES(2213, 66618, 'sixty-six thousand six hundred eighteen');\nINSERT INTO t3 VALUES(2214, 57733, 'fifty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(2215, 49471, 'forty-nine thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(2216, 41965, 'forty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(2217, 12073, 'twelve thousand seventy-three');\nINSERT INTO t3 VALUES(2218, 20417, 'twenty thousand four hundred seventeen');\nINSERT INTO t3 VALUES(2219, 87203, 'eighty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(2220, 86819, 'eighty-six thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(2221, 93531, 'ninety-three thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(2222, 68156, 'sixty-eight thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(2223, 8306, 'eight thousand three hundred six');\nINSERT INTO t3 VALUES(2224, 72081, 'seventy-two thousand eighty-one');\nINSERT INTO t3 VALUES(2225, 96486, 'ninety-six thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(2226, 71337, 'seventy-one thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(2227, 55335, 'fifty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(2228, 37346, 'thirty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(2229, 15828, 'fifteen thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(2230, 47959, 'forty-seven thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(2231, 77454, 'seventy-seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(2232, 29837, 'twenty-nine thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(2233, 93078, 'ninety-three thousand seventy-eight');\nINSERT INTO t3 VALUES(2234, 4704, 'four thousand seven hundred four');\nINSERT INTO t3 VALUES(2235, 47966, 'forty-seven thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(2236, 27502, 'twenty-seven thousand five hundred two');\nINSERT INTO t3 VALUES(2237, 27683, 'twenty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(2238, 89607, 'eighty-nine thousand six hundred seven');\nINSERT INTO t3 VALUES(2239, 92749, 'ninety-two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(2240, 11907, 'eleven thousand nine hundred seven');\nINSERT INTO t3 VALUES(2241, 6074, 'six thousand seventy-four');\nINSERT INTO t3 VALUES(2242, 30711, 'thirty thousand seven hundred eleven');\nINSERT INTO t3 VALUES(2243, 61014, 'sixty-one thousand fourteen');\nINSERT INTO t3 VALUES(2244, 79255, 'seventy-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(2245, 71286, 'seventy-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(2246, 60934, 'sixty thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2247, 69311, 'sixty-nine thousand three hundred eleven');\nINSERT INTO t3 VALUES(2248, 86131, 'eighty-six thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(2249, 25307, 'twenty-five thousand three hundred seven');\nINSERT INTO t3 VALUES(2250, 72456, 'seventy-two thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(2251, 45054, 'forty-five thousand fifty-four');\nINSERT INTO t3 VALUES(2252, 50350, 'fifty thousand three hundred fifty');\nINSERT INTO t3 VALUES(2253, 38134, 'thirty-eight thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(2254, 65253, 'sixty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(2255, 23208, 'twenty-three thousand two hundred eight');\nINSERT INTO t3 VALUES(2256, 15835, 'fifteen thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(2257, 27997, 'twenty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(2258, 21168, 'twenty-one thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(2259, 6740, 'six thousand seven hundred forty');\nINSERT INTO t3 VALUES(2260, 89734, 'eighty-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(2261, 62215, 'sixty-two thousand two hundred fifteen');\nINSERT INTO t3 VALUES(2262, 92196, 'ninety-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(2263, 96590, 'ninety-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(2264, 35844, 'thirty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2265, 0, 'zero');\nINSERT INTO t3 VALUES(2266, 88210, 'eighty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(2267, 12229, 'twelve thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(2268, 4044, 'four thousand forty-four');\nINSERT INTO t3 VALUES(2269, 57305, 'fifty-seven thousand three hundred five');\nINSERT INTO t3 VALUES(2270, 60151, 'sixty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(2271, 87982, 'eighty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(2272, 82274, 'eighty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(2273, 25777, 'twenty-five thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(2274, 48417, 'forty-eight thousand four hundred seventeen');\nINSERT INTO t3 VALUES(2275, 91581, 'ninety-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(2276, 89561, 'eighty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2277, 98447, 'ninety-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(2278, 94677, 'ninety-four thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(2279, 87830, 'eighty-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(2280, 32972, 'thirty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(2281, 89701, 'eighty-nine thousand seven hundred one');\nINSERT INTO t3 VALUES(2282, 16398, 'sixteen thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(2283, 97877, 'ninety-seven thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(2284, 88436, 'eighty-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(2285, 12266, 'twelve thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(2286, 48915, 'forty-eight thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(2287, 26226, 'twenty-six thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(2288, 74341, 'seventy-four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(2289, 13094, 'thirteen thousand ninety-four');\nINSERT INTO t3 VALUES(2290, 4047, 'four thousand forty-seven');\nINSERT INTO t3 VALUES(2291, 77945, 'seventy-seven thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(2292, 56908, 'fifty-six thousand nine hundred eight');\nINSERT INTO t3 VALUES(2293, 7946, 'seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(2294, 64802, 'sixty-four thousand eight hundred two');\nINSERT INTO t3 VALUES(2295, 27687, 'twenty-seven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2296, 10869, 'ten thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(2297, 74280, 'seventy-four thousand two hundred eighty');\nINSERT INTO t3 VALUES(2298, 44015, 'forty-four thousand fifteen');\nINSERT INTO t3 VALUES(2299, 96226, 'ninety-six thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(2300, 84163, 'eighty-four thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(2301, 86187, 'eighty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(2302, 75480, 'seventy-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(2303, 47697, 'forty-seven thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(2304, 83305, 'eighty-three thousand three hundred five');\nINSERT INTO t3 VALUES(2305, 97239, 'ninety-seven thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(2306, 7950, 'seven thousand nine hundred fifty');\nINSERT INTO t3 VALUES(2307, 22901, 'twenty-two thousand nine hundred one');\nINSERT INTO t3 VALUES(2308, 79988, 'seventy-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2309, 27934, 'twenty-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2310, 25620, 'twenty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(2311, 81565, 'eighty-one thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(2312, 77671, 'seventy-seven thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(2313, 49585, 'forty-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(2314, 47771, 'forty-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(2315, 10113, 'ten thousand one hundred thirteen');\nINSERT INTO t3 VALUES(2316, 58491, 'fifty-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(2317, 98064, 'ninety-eight thousand sixty-four');\nINSERT INTO t3 VALUES(2318, 17766, 'seventeen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(2319, 37223, 'thirty-seven thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(2320, 36656, 'thirty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(2321, 9340, 'nine thousand three hundred forty');\nINSERT INTO t3 VALUES(2322, 20908, 'twenty thousand nine hundred eight');\nINSERT INTO t3 VALUES(2323, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(2324, 10204, 'ten thousand two hundred four');\nINSERT INTO t3 VALUES(2325, 95060, 'ninety-five thousand sixty');\nINSERT INTO t3 VALUES(2326, 71757, 'seventy-one thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(2327, 46087, 'forty-six thousand eighty-seven');\nINSERT INTO t3 VALUES(2328, 45770, 'forty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(2329, 66703, 'sixty-six thousand seven hundred three');\nINSERT INTO t3 VALUES(2330, 65978, 'sixty-five thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(2331, 9302, 'nine thousand three hundred two');\nINSERT INTO t3 VALUES(2332, 21573, 'twenty-one thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(2333, 3821, 'three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(2334, 5260, 'five thousand two hundred sixty');\nINSERT INTO t3 VALUES(2335, 67314, 'sixty-seven thousand three hundred fourteen');\nINSERT INTO t3 VALUES(2336, 44719, 'forty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(2337, 78552, 'seventy-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(2338, 37670, 'thirty-seven thousand six hundred seventy');\nINSERT INTO t3 VALUES(2339, 65650, 'sixty-five thousand six hundred fifty');\nINSERT INTO t3 VALUES(2340, 69105, 'sixty-nine thousand one hundred five');\nINSERT INTO t3 VALUES(2341, 58762, 'fifty-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(2342, 88042, 'eighty-eight thousand forty-two');\nINSERT INTO t3 VALUES(2343, 25627, 'twenty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(2344, 60636, 'sixty thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(2345, 78849, 'seventy-eight thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2346, 24665, 'twenty-four thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(2347, 84106, 'eighty-four thousand one hundred six');\nINSERT INTO t3 VALUES(2348, 5037, 'five thousand thirty-seven');\nINSERT INTO t3 VALUES(2349, 22737, 'twenty-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(2350, 42380, 'forty-two thousand three hundred eighty');\nINSERT INTO t3 VALUES(2351, 66356, 'sixty-six thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(2352, 80186, 'eighty thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(2353, 79687, 'seventy-nine thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2354, 23996, 'twenty-three thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(2355, 35446, 'thirty-five thousand four hundred forty-six');\nINSERT INTO t3 VALUES(2356, 81372, 'eighty-one thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(2357, 70867, 'seventy thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(2358, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t3 VALUES(2359, 74460, 'seventy-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(2360, 44116, 'forty-four thousand one hundred sixteen');\nINSERT INTO t3 VALUES(2361, 6833, 'six thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(2362, 90428, 'ninety thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(2363, 47466, 'forty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(2364, 2992, 'two thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(2365, 47872, 'forty-seven thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(2366, 38438, 'thirty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(2367, 8818, 'eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(2368, 50516, 'fifty thousand five hundred sixteen');\nINSERT INTO t3 VALUES(2369, 90572, 'ninety thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(2370, 63342, 'sixty-three thousand three hundred forty-two');\nINSERT INTO t3 VALUES(2371, 35210, 'thirty-five thousand two hundred ten');\nINSERT INTO t3 VALUES(2372, 37579, 'thirty-seven thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(2373, 32524, 'thirty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(2374, 34698, 'thirty-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(2375, 3342, 'three thousand three hundred forty-two');\nINSERT INTO t3 VALUES(2376, 41340, 'forty-one thousand three hundred forty');\nINSERT INTO t3 VALUES(2377, 22400, 'twenty-two thousand four hundred');\nINSERT INTO t3 VALUES(2378, 10603, 'ten thousand six hundred three');\nINSERT INTO t3 VALUES(2379, 18792, 'eighteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(2380, 69656, 'sixty-nine thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(2381, 1537, 'one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(2382, 65375, 'sixty-five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(2383, 68829, 'sixty-eight thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(2384, 76719, 'seventy-six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(2385, 45387, 'forty-five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(2386, 55655, 'fifty-five thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(2387, 3400, 'three thousand four hundred');\nINSERT INTO t3 VALUES(2388, 2563, 'two thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(2389, 52934, 'fifty-two thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2390, 18900, 'eighteen thousand nine hundred');\nINSERT INTO t3 VALUES(2391, 57718, 'fifty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(2392, 25010, 'twenty-five thousand ten');\nINSERT INTO t3 VALUES(2393, 42145, 'forty-two thousand one hundred forty-five');\nINSERT INTO t3 VALUES(2394, 70177, 'seventy thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(2395, 43561, 'forty-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2396, 50772, 'fifty thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(2397, 75624, 'seventy-five thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(2398, 19708, 'nineteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(2399, 39121, 'thirty-nine thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(2400, 7490, 'seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(2401, 93965, 'ninety-three thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(2402, 30359, 'thirty thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(2403, 83205, 'eighty-three thousand two hundred five');\nINSERT INTO t3 VALUES(2404, 63964, 'sixty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(2405, 63427, 'sixty-three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(2406, 85035, 'eighty-five thousand thirty-five');\nINSERT INTO t3 VALUES(2407, 76974, 'seventy-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(2408, 84544, 'eighty-four thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2409, 22880, 'twenty-two thousand eight hundred eighty');\nINSERT INTO t3 VALUES(2410, 32394, 'thirty-two thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(2411, 4397, 'four thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(2412, 58250, 'fifty-eight thousand two hundred fifty');\nINSERT INTO t3 VALUES(2413, 11423, 'eleven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(2414, 3384, 'three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(2415, 4653, 'four thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(2416, 95751, 'ninety-five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(2417, 78350, 'seventy-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(2418, 57494, 'fifty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(2419, 16605, 'sixteen thousand six hundred five');\nINSERT INTO t3 VALUES(2420, 52211, 'fifty-two thousand two hundred eleven');\nINSERT INTO t3 VALUES(2421, 24109, 'twenty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(2422, 73016, 'seventy-three thousand sixteen');\nINSERT INTO t3 VALUES(2423, 99809, 'ninety-nine thousand eight hundred nine');\nINSERT INTO t3 VALUES(2424, 57522, 'fifty-seven thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(2425, 66662, 'sixty-six thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(2426, 72539, 'seventy-two thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(2427, 49871, 'forty-nine thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(2428, 67148, 'sixty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(2429, 20157, 'twenty thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(2430, 88979, 'eighty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2431, 11450, 'eleven thousand four hundred fifty');\nINSERT INTO t3 VALUES(2432, 34394, 'thirty-four thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(2433, 34837, 'thirty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(2434, 96687, 'ninety-six thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2435, 25169, 'twenty-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(2436, 27018, 'twenty-seven thousand eighteen');\nINSERT INTO t3 VALUES(2437, 13348, 'thirteen thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(2438, 72334, 'seventy-two thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(2439, 53396, 'fifty-three thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(2440, 91877, 'ninety-one thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(2441, 49119, 'forty-nine thousand one hundred nineteen');\nINSERT INTO t3 VALUES(2442, 87228, 'eighty-seven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(2443, 63236, 'sixty-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(2444, 92588, 'ninety-two thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(2445, 26333, 'twenty-six thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(2446, 25720, 'twenty-five thousand seven hundred twenty');\nINSERT INTO t3 VALUES(2447, 9825, 'nine thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(2448, 36830, 'thirty-six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(2449, 75312, 'seventy-five thousand three hundred twelve');\nINSERT INTO t3 VALUES(2450, 8093, 'eight thousand ninety-three');\nINSERT INTO t3 VALUES(2451, 99357, 'ninety-nine thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(2452, 59573, 'fifty-nine thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(2453, 65022, 'sixty-five thousand twenty-two');\nINSERT INTO t3 VALUES(2454, 13828, 'thirteen thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(2455, 3673, 'three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(2456, 87125, 'eighty-seven thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(2457, 60795, 'sixty thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2458, 15605, 'fifteen thousand six hundred five');\nINSERT INTO t3 VALUES(2459, 80770, 'eighty thousand seven hundred seventy');\nINSERT INTO t3 VALUES(2460, 83596, 'eighty-three thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2461, 92525, 'ninety-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2462, 63263, 'sixty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(2463, 97131, 'ninety-seven thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(2464, 35456, 'thirty-five thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(2465, 64523, 'sixty-four thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(2466, 72571, 'seventy-two thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(2467, 54026, 'fifty-four thousand twenty-six');\nINSERT INTO t3 VALUES(2468, 61926, 'sixty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(2469, 62152, 'sixty-two thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(2470, 80596, 'eighty thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2471, 89606, 'eighty-nine thousand six hundred six');\nINSERT INTO t3 VALUES(2472, 72678, 'seventy-two thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(2473, 71118, 'seventy-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(2474, 28079, 'twenty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(2475, 95003, 'ninety-five thousand three');\nINSERT INTO t3 VALUES(2476, 42831, 'forty-two thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(2477, 98044, 'ninety-eight thousand forty-four');\nINSERT INTO t3 VALUES(2478, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(2479, 10492, 'ten thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(2480, 87908, 'eighty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(2481, 53349, 'fifty-three thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(2482, 68224, 'sixty-eight thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(2483, 37751, 'thirty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(2484, 18702, 'eighteen thousand seven hundred two');\nINSERT INTO t3 VALUES(2485, 45334, 'forty-five thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(2486, 24824, 'twenty-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(2487, 45140, 'forty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(2488, 71423, 'seventy-one thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(2489, 52624, 'fifty-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(2490, 35072, 'thirty-five thousand seventy-two');\nINSERT INTO t3 VALUES(2491, 22552, 'twenty-two thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(2492, 42079, 'forty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(2493, 59778, 'fifty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(2494, 67390, 'sixty-seven thousand three hundred ninety');\nINSERT INTO t3 VALUES(2495, 30808, 'thirty thousand eight hundred eight');\nINSERT INTO t3 VALUES(2496, 49898, 'forty-nine thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(2497, 26281, 'twenty-six thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(2498, 68377, 'sixty-eight thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(2499, 86484, 'eighty-six thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(2500, 68605, 'sixty-eight thousand six hundred five');\nINSERT INTO t3 VALUES(2501, 97418, 'ninety-seven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(2502, 13303, 'thirteen thousand three hundred three');\nINSERT INTO t3 VALUES(2503, 11002, 'eleven thousand two');\nINSERT INTO t3 VALUES(2504, 8381, 'eight thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(2505, 55441, 'fifty-five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(2506, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(2507, 62879, 'sixty-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(2508, 63232, 'sixty-three thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(2509, 1313, 'one thousand three hundred thirteen');\nINSERT INTO t3 VALUES(2510, 8467, 'eight thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(2511, 78551, 'seventy-eight thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(2512, 80986, 'eighty thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(2513, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(2514, 67781, 'sixty-seven thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(2515, 55836, 'fifty-five thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(2516, 48712, 'forty-eight thousand seven hundred twelve');\nINSERT INTO t3 VALUES(2517, 86037, 'eighty-six thousand thirty-seven');\nINSERT INTO t3 VALUES(2518, 88278, 'eighty-eight thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(2519, 28253, 'twenty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(2520, 40539, 'forty thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(2521, 41034, 'forty-one thousand thirty-four');\nINSERT INTO t3 VALUES(2522, 74231, 'seventy-four thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(2523, 69400, 'sixty-nine thousand four hundred');\nINSERT INTO t3 VALUES(2524, 82757, 'eighty-two thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(2525, 10172, 'ten thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(2526, 61081, 'sixty-one thousand eighty-one');\nINSERT INTO t3 VALUES(2527, 35435, 'thirty-five thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(2528, 65370, 'sixty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(2529, 65570, 'sixty-five thousand five hundred seventy');\nINSERT INTO t3 VALUES(2530, 9468, 'nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(2531, 30798, 'thirty thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(2532, 3973, 'three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(2533, 98690, 'ninety-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(2534, 42091, 'forty-two thousand ninety-one');\nINSERT INTO t3 VALUES(2535, 93808, 'ninety-three thousand eight hundred eight');\nINSERT INTO t3 VALUES(2536, 34476, 'thirty-four thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(2537, 94435, 'ninety-four thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(2538, 65549, 'sixty-five thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(2539, 17697, 'seventeen thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(2540, 89480, 'eighty-nine thousand four hundred eighty');\nINSERT INTO t3 VALUES(2541, 48800, 'forty-eight thousand eight hundred');\nINSERT INTO t3 VALUES(2542, 39972, 'thirty-nine thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(2543, 30739, 'thirty thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(2544, 69585, 'sixty-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(2545, 78525, 'seventy-eight thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2546, 93131, 'ninety-three thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(2547, 50469, 'fifty thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(2548, 54221, 'fifty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(2549, 47721, 'forty-seven thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(2550, 44819, 'forty-four thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(2551, 66606, 'sixty-six thousand six hundred six');\nINSERT INTO t3 VALUES(2552, 21323, 'twenty-one thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(2553, 80810, 'eighty thousand eight hundred ten');\nINSERT INTO t3 VALUES(2554, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(2555, 89194, 'eighty-nine thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(2556, 33832, 'thirty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(2557, 42125, 'forty-two thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(2558, 98532, 'ninety-eight thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(2559, 16766, 'sixteen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(2560, 42094, 'forty-two thousand ninety-four');\nINSERT INTO t3 VALUES(2561, 18849, 'eighteen thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2562, 51779, 'fifty-one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(2563, 57940, 'fifty-seven thousand nine hundred forty');\nINSERT INTO t3 VALUES(2564, 53670, 'fifty-three thousand six hundred seventy');\nINSERT INTO t3 VALUES(2565, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(2566, 7027, 'seven thousand twenty-seven');\nINSERT INTO t3 VALUES(2567, 12283, 'twelve thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(2568, 21365, 'twenty-one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(2569, 69557, 'sixty-nine thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(2570, 1114, 'one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(2571, 26469, 'twenty-six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(2572, 80281, 'eighty thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(2573, 56680, 'fifty-six thousand six hundred eighty');\nINSERT INTO t3 VALUES(2574, 33364, 'thirty-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(2575, 51200, 'fifty-one thousand two hundred');\nINSERT INTO t3 VALUES(2576, 87117, 'eighty-seven thousand one hundred seventeen');\nINSERT INTO t3 VALUES(2577, 67931, 'sixty-seven thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(2578, 95004, 'ninety-five thousand four');\nINSERT INTO t3 VALUES(2579, 77494, 'seventy-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(2580, 16408, 'sixteen thousand four hundred eight');\nINSERT INTO t3 VALUES(2581, 93608, 'ninety-three thousand six hundred eight');\nINSERT INTO t3 VALUES(2582, 53734, 'fifty-three thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(2583, 9750, 'nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2584, 15555, 'fifteen thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(2585, 40888, 'forty thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(2586, 21758, 'twenty-one thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(2587, 36876, 'thirty-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(2588, 71094, 'seventy-one thousand ninety-four');\nINSERT INTO t3 VALUES(2589, 71363, 'seventy-one thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(2590, 24553, 'twenty-four thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(2591, 73931, 'seventy-three thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(2592, 15314, 'fifteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(2593, 97503, 'ninety-seven thousand five hundred three');\nINSERT INTO t3 VALUES(2594, 25189, 'twenty-five thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(2595, 8199, 'eight thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(2596, 68451, 'sixty-eight thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(2597, 70192, 'seventy thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(2598, 46664, 'forty-six thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(2599, 42059, 'forty-two thousand fifty-nine');\nINSERT INTO t3 VALUES(2600, 45616, 'forty-five thousand six hundred sixteen');\nINSERT INTO t3 VALUES(2601, 5874, 'five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(2602, 15960, 'fifteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(2603, 34898, 'thirty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(2604, 55412, 'fifty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(2605, 6590, 'six thousand five hundred ninety');\nINSERT INTO t3 VALUES(2606, 45220, 'forty-five thousand two hundred twenty');\nINSERT INTO t3 VALUES(2607, 29499, 'twenty-nine thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(2608, 51342, 'fifty-one thousand three hundred forty-two');\nINSERT INTO t3 VALUES(2609, 8705, 'eight thousand seven hundred five');\nINSERT INTO t3 VALUES(2610, 45853, 'forty-five thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(2611, 35279, 'thirty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(2612, 62318, 'sixty-two thousand three hundred eighteen');\nINSERT INTO t3 VALUES(2613, 66736, 'sixty-six thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(2614, 45988, 'forty-five thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2615, 94586, 'ninety-four thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(2616, 21116, 'twenty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(2617, 1804, 'one thousand eight hundred four');\nINSERT INTO t3 VALUES(2618, 24905, 'twenty-four thousand nine hundred five');\nINSERT INTO t3 VALUES(2619, 88957, 'eighty-eight thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(2620, 58175, 'fifty-eight thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(2621, 85473, 'eighty-five thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(2622, 74166, 'seventy-four thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(2623, 74461, 'seventy-four thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(2624, 40501, 'forty thousand five hundred one');\nINSERT INTO t3 VALUES(2625, 43541, 'forty-three thousand five hundred forty-one');\nINSERT INTO t3 VALUES(2626, 85325, 'eighty-five thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(2627, 95640, 'ninety-five thousand six hundred forty');\nINSERT INTO t3 VALUES(2628, 75868, 'seventy-five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(2629, 69109, 'sixty-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(2630, 53050, 'fifty-three thousand fifty');\nINSERT INTO t3 VALUES(2631, 14024, 'fourteen thousand twenty-four');\nINSERT INTO t3 VALUES(2632, 13679, 'thirteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(2633, 67620, 'sixty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(2634, 32305, 'thirty-two thousand three hundred five');\nINSERT INTO t3 VALUES(2635, 61720, 'sixty-one thousand seven hundred twenty');\nINSERT INTO t3 VALUES(2636, 80107, 'eighty thousand one hundred seven');\nINSERT INTO t3 VALUES(2637, 82722, 'eighty-two thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(2638, 51847, 'fifty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(2639, 8453, 'eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(2640, 30105, 'thirty thousand one hundred five');\nINSERT INTO t3 VALUES(2641, 41861, 'forty-one thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(2642, 93561, 'ninety-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2643, 75440, 'seventy-five thousand four hundred forty');\nINSERT INTO t3 VALUES(2644, 22876, 'twenty-two thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(2645, 6604, 'six thousand six hundred four');\nINSERT INTO t3 VALUES(2646, 95596, 'ninety-five thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(2647, 19414, 'nineteen thousand four hundred fourteen');\nINSERT INTO t3 VALUES(2648, 77905, 'seventy-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(2649, 92789, 'ninety-two thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(2650, 20860, 'twenty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(2651, 99286, 'ninety-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(2652, 29996, 'twenty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(2653, 15159, 'fifteen thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(2654, 99606, 'ninety-nine thousand six hundred six');\nINSERT INTO t3 VALUES(2655, 54128, 'fifty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(2656, 77405, 'seventy-seven thousand four hundred five');\nINSERT INTO t3 VALUES(2657, 15625, 'fifteen thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(2658, 1525, 'one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2659, 34244, 'thirty-four thousand two hundred forty-four');\nINSERT INTO t3 VALUES(2660, 38687, 'thirty-eight thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(2661, 98998, 'ninety-eight thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(2662, 98698, 'ninety-eight thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(2663, 3920, 'three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(2664, 2, 'two');\nINSERT INTO t3 VALUES(2665, 91857, 'ninety-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(2666, 23195, 'twenty-three thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(2667, 49499, 'forty-nine thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(2668, 20086, 'twenty thousand eighty-six');\nINSERT INTO t3 VALUES(2669, 97756, 'ninety-seven thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(2670, 19579, 'nineteen thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(2671, 41971, 'forty-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(2672, 45456, 'forty-five thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(2673, 86745, 'eighty-six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(2674, 65633, 'sixty-five thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(2675, 36789, 'thirty-six thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(2676, 76483, 'seventy-six thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(2677, 36356, 'thirty-six thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(2678, 98591, 'ninety-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(2679, 44868, 'forty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(2680, 3562, 'three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(2681, 22007, 'twenty-two thousand seven');\nINSERT INTO t3 VALUES(2682, 9310, 'nine thousand three hundred ten');\nINSERT INTO t3 VALUES(2683, 20270, 'twenty thousand two hundred seventy');\nINSERT INTO t3 VALUES(2684, 3926, 'three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(2685, 66696, 'sixty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(2686, 28671, 'twenty-eight thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(2687, 72817, 'seventy-two thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(2688, 89783, 'eighty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(2689, 15300, 'fifteen thousand three hundred');\nINSERT INTO t3 VALUES(2690, 18812, 'eighteen thousand eight hundred twelve');\nINSERT INTO t3 VALUES(2691, 44985, 'forty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(2692, 82912, 'eighty-two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(2693, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(2694, 18031, 'eighteen thousand thirty-one');\nINSERT INTO t3 VALUES(2695, 71084, 'seventy-one thousand eighty-four');\nINSERT INTO t3 VALUES(2696, 45924, 'forty-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(2697, 36912, 'thirty-six thousand nine hundred twelve');\nINSERT INTO t3 VALUES(2698, 44209, 'forty-four thousand two hundred nine');\nINSERT INTO t3 VALUES(2699, 88553, 'eighty-eight thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(2700, 73660, 'seventy-three thousand six hundred sixty');\nINSERT INTO t3 VALUES(2701, 94137, 'ninety-four thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(2702, 88150, 'eighty-eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(2703, 59646, 'fifty-nine thousand six hundred forty-six');\nINSERT INTO t3 VALUES(2704, 64108, 'sixty-four thousand one hundred eight');\nINSERT INTO t3 VALUES(2705, 39472, 'thirty-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(2706, 69953, 'sixty-nine thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(2707, 74597, 'seventy-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(2708, 88306, 'eighty-eight thousand three hundred six');\nINSERT INTO t3 VALUES(2709, 67164, 'sixty-seven thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(2710, 44767, 'forty-four thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(2711, 21537, 'twenty-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(2712, 21814, 'twenty-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(2713, 30743, 'thirty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(2714, 62130, 'sixty-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(2715, 5202, 'five thousand two hundred two');\nINSERT INTO t3 VALUES(2716, 5298, 'five thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(2717, 38591, 'thirty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(2718, 44341, 'forty-four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(2719, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(2720, 65934, 'sixty-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(2721, 84085, 'eighty-four thousand eighty-five');\nINSERT INTO t3 VALUES(2722, 5445, 'five thousand four hundred forty-five');\nINSERT INTO t3 VALUES(2723, 92558, 'ninety-two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(2724, 41297, 'forty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(2725, 92501, 'ninety-two thousand five hundred one');\nINSERT INTO t3 VALUES(2726, 65477, 'sixty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(2727, 14831, 'fourteen thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(2728, 17597, 'seventeen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(2729, 18997, 'eighteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(2730, 23019, 'twenty-three thousand nineteen');\nINSERT INTO t3 VALUES(2731, 29811, 'twenty-nine thousand eight hundred eleven');\nINSERT INTO t3 VALUES(2732, 91076, 'ninety-one thousand seventy-six');\nINSERT INTO t3 VALUES(2733, 73795, 'seventy-three thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2734, 48080, 'forty-eight thousand eighty');\nINSERT INTO t3 VALUES(2735, 33473, 'thirty-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(2736, 20578, 'twenty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(2737, 26740, 'twenty-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(2738, 30309, 'thirty thousand three hundred nine');\nINSERT INTO t3 VALUES(2739, 58713, 'fifty-eight thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(2740, 30816, 'thirty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(2741, 78961, 'seventy-eight thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(2742, 17980, 'seventeen thousand nine hundred eighty');\nINSERT INTO t3 VALUES(2743, 62725, 'sixty-two thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(2744, 42900, 'forty-two thousand nine hundred');\nINSERT INTO t3 VALUES(2745, 12795, 'twelve thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2746, 30167, 'thirty thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(2747, 98000, 'ninety-eight thousand');\nINSERT INTO t3 VALUES(2748, 31452, 'thirty-one thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(2749, 50181, 'fifty thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(2750, 20346, 'twenty thousand three hundred forty-six');\nINSERT INTO t3 VALUES(2751, 76642, 'seventy-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(2752, 23856, 'twenty-three thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(2753, 12872, 'twelve thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(2754, 28961, 'twenty-eight thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(2755, 65273, 'sixty-five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(2756, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(2757, 3413, 'three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(2758, 18407, 'eighteen thousand four hundred seven');\nINSERT INTO t3 VALUES(2759, 74015, 'seventy-four thousand fifteen');\nINSERT INTO t3 VALUES(2760, 61982, 'sixty-one thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(2761, 42140, 'forty-two thousand one hundred forty');\nINSERT INTO t3 VALUES(2762, 15807, 'fifteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(2763, 97705, 'ninety-seven thousand seven hundred five');\nINSERT INTO t3 VALUES(2764, 78911, 'seventy-eight thousand nine hundred eleven');\nINSERT INTO t3 VALUES(2765, 91429, 'ninety-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(2766, 11774, 'eleven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(2767, 34703, 'thirty-four thousand seven hundred three');\nINSERT INTO t3 VALUES(2768, 59228, 'fifty-nine thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(2769, 77844, 'seventy-seven thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2770, 22568, 'twenty-two thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(2771, 71347, 'seventy-one thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(2772, 65482, 'sixty-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(2773, 13520, 'thirteen thousand five hundred twenty');\nINSERT INTO t3 VALUES(2774, 33718, 'thirty-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(2775, 71037, 'seventy-one thousand thirty-seven');\nINSERT INTO t3 VALUES(2776, 64303, 'sixty-four thousand three hundred three');\nINSERT INTO t3 VALUES(2777, 30809, 'thirty thousand eight hundred nine');\nINSERT INTO t3 VALUES(2778, 37571, 'thirty-seven thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(2779, 5279, 'five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(2780, 60787, 'sixty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(2781, 61872, 'sixty-one thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(2782, 71610, 'seventy-one thousand six hundred ten');\nINSERT INTO t3 VALUES(2783, 22146, 'twenty-two thousand one hundred forty-six');\nINSERT INTO t3 VALUES(2784, 63599, 'sixty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(2785, 72064, 'seventy-two thousand sixty-four');\nINSERT INTO t3 VALUES(2786, 55081, 'fifty-five thousand eighty-one');\nINSERT INTO t3 VALUES(2787, 52846, 'fifty-two thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(2788, 98065, 'ninety-eight thousand sixty-five');\nINSERT INTO t3 VALUES(2789, 30484, 'thirty thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(2790, 38907, 'thirty-eight thousand nine hundred seven');\nINSERT INTO t3 VALUES(2791, 46554, 'forty-six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(2792, 59014, 'fifty-nine thousand fourteen');\nINSERT INTO t3 VALUES(2793, 65648, 'sixty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(2794, 74065, 'seventy-four thousand sixty-five');\nINSERT INTO t3 VALUES(2795, 17116, 'seventeen thousand one hundred sixteen');\nINSERT INTO t3 VALUES(2796, 38993, 'thirty-eight thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(2797, 21715, 'twenty-one thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(2798, 15477, 'fifteen thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(2799, 4544, 'four thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2800, 75787, 'seventy-five thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(2801, 59319, 'fifty-nine thousand three hundred nineteen');\nINSERT INTO t3 VALUES(2802, 96873, 'ninety-six thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(2803, 24004, 'twenty-four thousand four');\nINSERT INTO t3 VALUES(2804, 63353, 'sixty-three thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(2805, 96846, 'ninety-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(2806, 57281, 'fifty-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(2807, 93566, 'ninety-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(2808, 15708, 'fifteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(2809, 46292, 'forty-six thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(2810, 78479, 'seventy-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(2811, 37086, 'thirty-seven thousand eighty-six');\nINSERT INTO t3 VALUES(2812, 81103, 'eighty-one thousand one hundred three');\nINSERT INTO t3 VALUES(2813, 90998, 'ninety thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(2814, 97436, 'ninety-seven thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(2815, 32908, 'thirty-two thousand nine hundred eight');\nINSERT INTO t3 VALUES(2816, 51525, 'fifty-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(2817, 97632, 'ninety-seven thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(2818, 97160, 'ninety-seven thousand one hundred sixty');\nINSERT INTO t3 VALUES(2819, 23392, 'twenty-three thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(2820, 80278, 'eighty thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(2821, 60041, 'sixty thousand forty-one');\nINSERT INTO t3 VALUES(2822, 38382, 'thirty-eight thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(2823, 61360, 'sixty-one thousand three hundred sixty');\nINSERT INTO t3 VALUES(2824, 44477, 'forty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(2825, 93896, 'ninety-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(2826, 67062, 'sixty-seven thousand sixty-two');\nINSERT INTO t3 VALUES(2827, 59706, 'fifty-nine thousand seven hundred six');\nINSERT INTO t3 VALUES(2828, 99114, 'ninety-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(2829, 85310, 'eighty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(2830, 86574, 'eighty-six thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(2831, 57310, 'fifty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(2832, 83371, 'eighty-three thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(2833, 92203, 'ninety-two thousand two hundred three');\nINSERT INTO t3 VALUES(2834, 58493, 'fifty-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(2835, 14561, 'fourteen thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(2836, 74188, 'seventy-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(2837, 56285, 'fifty-six thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(2838, 97663, 'ninety-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(2839, 70747, 'seventy thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(2840, 51624, 'fifty-one thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(2841, 60717, 'sixty thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(2842, 79443, 'seventy-nine thousand four hundred forty-three');\nINSERT INTO t3 VALUES(2843, 38812, 'thirty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(2844, 53715, 'fifty-three thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(2845, 46403, 'forty-six thousand four hundred three');\nINSERT INTO t3 VALUES(2846, 10139, 'ten thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(2847, 57390, 'fifty-seven thousand three hundred ninety');\nINSERT INTO t3 VALUES(2848, 60862, 'sixty thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(2849, 7243, 'seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(2850, 92790, 'ninety-two thousand seven hundred ninety');\nINSERT INTO t3 VALUES(2851, 19055, 'nineteen thousand fifty-five');\nINSERT INTO t3 VALUES(2852, 10827, 'ten thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(2853, 38979, 'thirty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2854, 24786, 'twenty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(2855, 22515, 'twenty-two thousand five hundred fifteen');\nINSERT INTO t3 VALUES(2856, 71199, 'seventy-one thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(2857, 84471, 'eighty-four thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(2858, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t3 VALUES(2859, 35002, 'thirty-five thousand two');\nINSERT INTO t3 VALUES(2860, 50215, 'fifty thousand two hundred fifteen');\nINSERT INTO t3 VALUES(2861, 66801, 'sixty-six thousand eight hundred one');\nINSERT INTO t3 VALUES(2862, 40186, 'forty thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(2863, 86213, 'eighty-six thousand two hundred thirteen');\nINSERT INTO t3 VALUES(2864, 38960, 'thirty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(2865, 2641, 'two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(2866, 88520, 'eighty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(2867, 99257, 'ninety-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(2868, 69547, 'sixty-nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(2869, 13986, 'thirteen thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(2870, 63408, 'sixty-three thousand four hundred eight');\nINSERT INTO t3 VALUES(2871, 39134, 'thirty-nine thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(2872, 94940, 'ninety-four thousand nine hundred forty');\nINSERT INTO t3 VALUES(2873, 62101, 'sixty-two thousand one hundred one');\nINSERT INTO t3 VALUES(2874, 85013, 'eighty-five thousand thirteen');\nINSERT INTO t3 VALUES(2875, 3429, 'three thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(2876, 2082, 'two thousand eighty-two');\nINSERT INTO t3 VALUES(2877, 73703, 'seventy-three thousand seven hundred three');\nINSERT INTO t3 VALUES(2878, 56579, 'fifty-six thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(2879, 8304, 'eight thousand three hundred four');\nINSERT INTO t3 VALUES(2880, 24126, 'twenty-four thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(2881, 73590, 'seventy-three thousand five hundred ninety');\nINSERT INTO t3 VALUES(2882, 53523, 'fifty-three thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(2883, 35807, 'thirty-five thousand eight hundred seven');\nINSERT INTO t3 VALUES(2884, 73785, 'seventy-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(2885, 29535, 'twenty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(2886, 45575, 'forty-five thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(2887, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(2888, 80544, 'eighty thousand five hundred forty-four');\nINSERT INTO t3 VALUES(2889, 27665, 'twenty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(2890, 89301, 'eighty-nine thousand three hundred one');\nINSERT INTO t3 VALUES(2891, 98443, 'ninety-eight thousand four hundred forty-three');\nINSERT INTO t3 VALUES(2892, 46410, 'forty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(2893, 55437, 'fifty-five thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(2894, 20985, 'twenty thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(2895, 26558, 'twenty-six thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(2896, 43405, 'forty-three thousand four hundred five');\nINSERT INTO t3 VALUES(2897, 35451, 'thirty-five thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(2898, 91920, 'ninety-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(2899, 16981, 'sixteen thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(2900, 51626, 'fifty-one thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(2901, 15867, 'fifteen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(2902, 1917, 'one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(2903, 3598, 'three thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(2904, 6021, 'six thousand twenty-one');\nINSERT INTO t3 VALUES(2905, 58385, 'fifty-eight thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(2906, 91305, 'ninety-one thousand three hundred five');\nINSERT INTO t3 VALUES(2907, 80849, 'eighty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(2908, 2038, 'two thousand thirty-eight');\nINSERT INTO t3 VALUES(2909, 74335, 'seventy-four thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(2910, 18766, 'eighteen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(2911, 92557, 'ninety-two thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(2912, 60464, 'sixty thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(2913, 29183, 'twenty-nine thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(2914, 68522, 'sixty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(2915, 8023, 'eight thousand twenty-three');\nINSERT INTO t3 VALUES(2916, 92844, 'ninety-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(2917, 60176, 'sixty thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(2918, 27847, 'twenty-seven thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(2919, 61306, 'sixty-one thousand three hundred six');\nINSERT INTO t3 VALUES(2920, 1652, 'one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(2921, 83708, 'eighty-three thousand seven hundred eight');\nINSERT INTO t3 VALUES(2922, 17423, 'seventeen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(2923, 28731, 'twenty-eight thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(2924, 84517, 'eighty-four thousand five hundred seventeen');\nINSERT INTO t3 VALUES(2925, 91257, 'ninety-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(2926, 102, 'one hundred two');\nINSERT INTO t3 VALUES(2927, 55034, 'fifty-five thousand thirty-four');\nINSERT INTO t3 VALUES(2928, 58807, 'fifty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(2929, 67341, 'sixty-seven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(2930, 26924, 'twenty-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(2931, 5980, 'five thousand nine hundred eighty');\nINSERT INTO t3 VALUES(2932, 84936, 'eighty-four thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(2933, 74198, 'seventy-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(2934, 88469, 'eighty-eight thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(2935, 59988, 'fifty-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(2936, 96305, 'ninety-six thousand three hundred five');\nINSERT INTO t3 VALUES(2937, 36534, 'thirty-six thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(2938, 96565, 'ninety-six thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(2939, 63601, 'sixty-three thousand six hundred one');\nINSERT INTO t3 VALUES(2940, 74848, 'seventy-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(2941, 3419, 'three thousand four hundred nineteen');\nINSERT INTO t3 VALUES(2942, 46979, 'forty-six thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(2943, 70502, 'seventy thousand five hundred two');\nINSERT INTO t3 VALUES(2944, 67926, 'sixty-seven thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(2945, 3646, 'three thousand six hundred forty-six');\nINSERT INTO t3 VALUES(2946, 23691, 'twenty-three thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(2947, 46257, 'forty-six thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(2948, 24501, 'twenty-four thousand five hundred one');\nINSERT INTO t3 VALUES(2949, 87797, 'eighty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(2950, 65232, 'sixty-five thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(2951, 61134, 'sixty-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(2952, 6112, 'six thousand one hundred twelve');\nINSERT INTO t3 VALUES(2953, 80928, 'eighty thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(2954, 29115, 'twenty-nine thousand one hundred fifteen');\nINSERT INTO t3 VALUES(2955, 39090, 'thirty-nine thousand ninety');\nINSERT INTO t3 VALUES(2956, 59496, 'fifty-nine thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(2957, 96603, 'ninety-six thousand six hundred three');\nINSERT INTO t3 VALUES(2958, 61338, 'sixty-one thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(2959, 89053, 'eighty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(2960, 16712, 'sixteen thousand seven hundred twelve');\nINSERT INTO t3 VALUES(2961, 18896, 'eighteen thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(2962, 43642, 'forty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(2963, 82354, 'eighty-two thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(2964, 29710, 'twenty-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(2965, 40168, 'forty thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(2966, 77207, 'seventy-seven thousand two hundred seven');\nINSERT INTO t3 VALUES(2967, 57743, 'fifty-seven thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(2968, 35097, 'thirty-five thousand ninety-seven');\nINSERT INTO t3 VALUES(2969, 23686, 'twenty-three thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(2970, 18806, 'eighteen thousand eight hundred six');\nINSERT INTO t3 VALUES(2971, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(2972, 38435, 'thirty-eight thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(2973, 90663, 'ninety thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(2974, 37123, 'thirty-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(2975, 17443, 'seventeen thousand four hundred forty-three');\nINSERT INTO t3 VALUES(2976, 69930, 'sixty-nine thousand nine hundred thirty');\nINSERT INTO t3 VALUES(2977, 36756, 'thirty-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(2978, 47146, 'forty-seven thousand one hundred forty-six');\nINSERT INTO t3 VALUES(2979, 82587, 'eighty-two thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(2980, 51656, 'fifty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(2981, 36488, 'thirty-six thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(2982, 15389, 'fifteen thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(2983, 10391, 'ten thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(2984, 57071, 'fifty-seven thousand seventy-one');\nINSERT INTO t3 VALUES(2985, 5693, 'five thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(2986, 91681, 'ninety-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(2987, 14795, 'fourteen thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(2988, 98622, 'ninety-eight thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(2989, 80049, 'eighty thousand forty-nine');\nINSERT INTO t3 VALUES(2990, 79991, 'seventy-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(2991, 16058, 'sixteen thousand fifty-eight');\nINSERT INTO t3 VALUES(2992, 84106, 'eighty-four thousand one hundred six');\nINSERT INTO t3 VALUES(2993, 11367, 'eleven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(2994, 96630, 'ninety-six thousand six hundred thirty');\nINSERT INTO t3 VALUES(2995, 60407, 'sixty thousand four hundred seven');\nINSERT INTO t3 VALUES(2996, 96793, 'ninety-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(2997, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(2998, 92353, 'ninety-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(2999, 12279, 'twelve thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(3000, 83061, 'eighty-three thousand sixty-one');\nINSERT INTO t3 VALUES(3001, 93474, 'ninety-three thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(3002, 61141, 'sixty-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(3003, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(3004, 15011, 'fifteen thousand eleven');\nINSERT INTO t3 VALUES(3005, 9935, 'nine thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3006, 96190, 'ninety-six thousand one hundred ninety');\nINSERT INTO t3 VALUES(3007, 8888, 'eight thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3008, 7642, 'seven thousand six hundred forty-two');\nINSERT INTO t3 VALUES(3009, 7963, 'seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(3010, 89639, 'eighty-nine thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(3011, 50589, 'fifty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3012, 72397, 'seventy-two thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(3013, 70401, 'seventy thousand four hundred one');\nINSERT INTO t3 VALUES(3014, 9318, 'nine thousand three hundred eighteen');\nINSERT INTO t3 VALUES(3015, 3896, 'three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(3016, 514, 'five hundred fourteen');\nINSERT INTO t3 VALUES(3017, 91559, 'ninety-one thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(3018, 5144, 'five thousand one hundred forty-four');\nINSERT INTO t3 VALUES(3019, 74807, 'seventy-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(3020, 69331, 'sixty-nine thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(3021, 78478, 'seventy-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(3022, 54085, 'fifty-four thousand eighty-five');\nINSERT INTO t3 VALUES(3023, 28495, 'twenty-eight thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(3024, 89152, 'eighty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(3025, 62723, 'sixty-two thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(3026, 10209, 'ten thousand two hundred nine');\nINSERT INTO t3 VALUES(3027, 75374, 'seventy-five thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(3028, 57968, 'fifty-seven thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(3029, 24154, 'twenty-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(3030, 42180, 'forty-two thousand one hundred eighty');\nINSERT INTO t3 VALUES(3031, 34365, 'thirty-four thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(3032, 36802, 'thirty-six thousand eight hundred two');\nINSERT INTO t3 VALUES(3033, 10804, 'ten thousand eight hundred four');\nINSERT INTO t3 VALUES(3034, 393, 'three hundred ninety-three');\nINSERT INTO t3 VALUES(3035, 32409, 'thirty-two thousand four hundred nine');\nINSERT INTO t3 VALUES(3036, 24639, 'twenty-four thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(3037, 31732, 'thirty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(3038, 93655, 'ninety-three thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(3039, 45352, 'forty-five thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(3040, 71495, 'seventy-one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(3041, 49125, 'forty-nine thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(3042, 71475, 'seventy-one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(3043, 88099, 'eighty-eight thousand ninety-nine');\nINSERT INTO t3 VALUES(3044, 2802, 'two thousand eight hundred two');\nINSERT INTO t3 VALUES(3045, 92302, 'ninety-two thousand three hundred two');\nINSERT INTO t3 VALUES(3046, 46223, 'forty-six thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(3047, 49251, 'forty-nine thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(3048, 53096, 'fifty-three thousand ninety-six');\nINSERT INTO t3 VALUES(3049, 6124, 'six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(3050, 60182, 'sixty thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(3051, 11384, 'eleven thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3052, 46371, 'forty-six thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(3053, 3496, 'three thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(3054, 75447, 'seventy-five thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(3055, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(3056, 84478, 'eighty-four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(3057, 6359, 'six thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(3058, 65080, 'sixty-five thousand eighty');\nINSERT INTO t3 VALUES(3059, 82568, 'eighty-two thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(3060, 38785, 'thirty-eight thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(3061, 5026, 'five thousand twenty-six');\nINSERT INTO t3 VALUES(3062, 10490, 'ten thousand four hundred ninety');\nINSERT INTO t3 VALUES(3063, 70633, 'seventy thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(3064, 5906, 'five thousand nine hundred six');\nINSERT INTO t3 VALUES(3065, 63913, 'sixty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(3066, 20968, 'twenty thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(3067, 76354, 'seventy-six thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(3068, 80536, 'eighty thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(3069, 90110, 'ninety thousand one hundred ten');\nINSERT INTO t3 VALUES(3070, 22153, 'twenty-two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(3071, 28585, 'twenty-eight thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(3072, 42975, 'forty-two thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(3073, 60548, 'sixty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(3074, 35162, 'thirty-five thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(3075, 17299, 'seventeen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(3076, 34103, 'thirty-four thousand one hundred three');\nINSERT INTO t3 VALUES(3077, 60403, 'sixty thousand four hundred three');\nINSERT INTO t3 VALUES(3078, 68821, 'sixty-eight thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(3079, 66551, 'sixty-six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(3080, 34044, 'thirty-four thousand forty-four');\nINSERT INTO t3 VALUES(3081, 2434, 'two thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(3082, 32678, 'thirty-two thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(3083, 97573, 'ninety-seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(3084, 79730, 'seventy-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(3085, 96952, 'ninety-six thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(3086, 12113, 'twelve thousand one hundred thirteen');\nINSERT INTO t3 VALUES(3087, 86105, 'eighty-six thousand one hundred five');\nINSERT INTO t3 VALUES(3088, 9565, 'nine thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(3089, 2746, 'two thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(3090, 73122, 'seventy-three thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(3091, 76138, 'seventy-six thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(3092, 83045, 'eighty-three thousand forty-five');\nINSERT INTO t3 VALUES(3093, 72737, 'seventy-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(3094, 43302, 'forty-three thousand three hundred two');\nINSERT INTO t3 VALUES(3095, 17047, 'seventeen thousand forty-seven');\nINSERT INTO t3 VALUES(3096, 24057, 'twenty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(3097, 55979, 'fifty-five thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(3098, 11932, 'eleven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(3099, 80004, 'eighty thousand four');\nINSERT INTO t3 VALUES(3100, 56325, 'fifty-six thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(3101, 60659, 'sixty thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(3102, 95109, 'ninety-five thousand one hundred nine');\nINSERT INTO t3 VALUES(3103, 89053, 'eighty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(3104, 97057, 'ninety-seven thousand fifty-seven');\nINSERT INTO t3 VALUES(3105, 56689, 'fifty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(3106, 83363, 'eighty-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(3107, 11483, 'eleven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(3108, 90357, 'ninety thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(3109, 26054, 'twenty-six thousand fifty-four');\nINSERT INTO t3 VALUES(3110, 85082, 'eighty-five thousand eighty-two');\nINSERT INTO t3 VALUES(3111, 24911, 'twenty-four thousand nine hundred eleven');\nINSERT INTO t3 VALUES(3112, 92631, 'ninety-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(3113, 21372, 'twenty-one thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(3114, 86961, 'eighty-six thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(3115, 14489, 'fourteen thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(3116, 18307, 'eighteen thousand three hundred seven');\nINSERT INTO t3 VALUES(3117, 6507, 'six thousand five hundred seven');\nINSERT INTO t3 VALUES(3118, 15450, 'fifteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(3119, 53337, 'fifty-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(3120, 15581, 'fifteen thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(3121, 46980, 'forty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(3122, 39734, 'thirty-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(3123, 58132, 'fifty-eight thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(3124, 22902, 'twenty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(3125, 77108, 'seventy-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(3126, 27427, 'twenty-seven thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(3127, 37714, 'thirty-seven thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(3128, 21911, 'twenty-one thousand nine hundred eleven');\nINSERT INTO t3 VALUES(3129, 21458, 'twenty-one thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(3130, 55137, 'fifty-five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(3131, 47173, 'forty-seven thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(3132, 50761, 'fifty thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(3133, 46622, 'forty-six thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(3134, 40402, 'forty thousand four hundred two');\nINSERT INTO t3 VALUES(3135, 80867, 'eighty thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(3136, 76342, 'seventy-six thousand three hundred forty-two');\nINSERT INTO t3 VALUES(3137, 16687, 'sixteen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(3138, 73752, 'seventy-three thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(3139, 39178, 'thirty-nine thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(3140, 41487, 'forty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(3141, 24561, 'twenty-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(3142, 20612, 'twenty thousand six hundred twelve');\nINSERT INTO t3 VALUES(3143, 87930, 'eighty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3144, 12138, 'twelve thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(3145, 3689, 'three thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(3146, 72938, 'seventy-two thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(3147, 69887, 'sixty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(3148, 90716, 'ninety thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(3149, 18817, 'eighteen thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(3150, 46065, 'forty-six thousand sixty-five');\nINSERT INTO t3 VALUES(3151, 86098, 'eighty-six thousand ninety-eight');\nINSERT INTO t3 VALUES(3152, 50593, 'fifty thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(3153, 33024, 'thirty-three thousand twenty-four');\nINSERT INTO t3 VALUES(3154, 31817, 'thirty-one thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(3155, 42271, 'forty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(3156, 11794, 'eleven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(3157, 79035, 'seventy-nine thousand thirty-five');\nINSERT INTO t3 VALUES(3158, 69096, 'sixty-nine thousand ninety-six');\nINSERT INTO t3 VALUES(3159, 20828, 'twenty thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(3160, 36978, 'thirty-six thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(3161, 44827, 'forty-four thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(3162, 22940, 'twenty-two thousand nine hundred forty');\nINSERT INTO t3 VALUES(3163, 17136, 'seventeen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(3164, 91650, 'ninety-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(3165, 61088, 'sixty-one thousand eighty-eight');\nINSERT INTO t3 VALUES(3166, 59033, 'fifty-nine thousand thirty-three');\nINSERT INTO t3 VALUES(3167, 72525, 'seventy-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(3168, 59873, 'fifty-nine thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(3169, 95312, 'ninety-five thousand three hundred twelve');\nINSERT INTO t3 VALUES(3170, 56056, 'fifty-six thousand fifty-six');\nINSERT INTO t3 VALUES(3171, 78722, 'seventy-eight thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(3172, 70408, 'seventy thousand four hundred eight');\nINSERT INTO t3 VALUES(3173, 79756, 'seventy-nine thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(3174, 20845, 'twenty thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(3175, 94769, 'ninety-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(3176, 10242, 'ten thousand two hundred forty-two');\nINSERT INTO t3 VALUES(3177, 28214, 'twenty-eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(3178, 15220, 'fifteen thousand two hundred twenty');\nINSERT INTO t3 VALUES(3179, 57142, 'fifty-seven thousand one hundred forty-two');\nINSERT INTO t3 VALUES(3180, 8049, 'eight thousand forty-nine');\nINSERT INTO t3 VALUES(3181, 99608, 'ninety-nine thousand six hundred eight');\nINSERT INTO t3 VALUES(3182, 16838, 'sixteen thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(3183, 14823, 'fourteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(3184, 95734, 'ninety-five thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(3185, 49103, 'forty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(3186, 76791, 'seventy-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(3187, 8509, 'eight thousand five hundred nine');\nINSERT INTO t3 VALUES(3188, 84475, 'eighty-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(3189, 58753, 'fifty-eight thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(3190, 36274, 'thirty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(3191, 3981, 'three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(3192, 71800, 'seventy-one thousand eight hundred');\nINSERT INTO t3 VALUES(3193, 70992, 'seventy thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(3194, 94931, 'ninety-four thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(3195, 28535, 'twenty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(3196, 41850, 'forty-one thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3197, 12618, 'twelve thousand six hundred eighteen');\nINSERT INTO t3 VALUES(3198, 43481, 'forty-three thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(3199, 67425, 'sixty-seven thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(3200, 21396, 'twenty-one thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(3201, 79411, 'seventy-nine thousand four hundred eleven');\nINSERT INTO t3 VALUES(3202, 36051, 'thirty-six thousand fifty-one');\nINSERT INTO t3 VALUES(3203, 39527, 'thirty-nine thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(3204, 74647, 'seventy-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(3205, 59682, 'fifty-nine thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(3206, 44226, 'forty-four thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(3207, 91876, 'ninety-one thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(3208, 42268, 'forty-two thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(3209, 32013, 'thirty-two thousand thirteen');\nINSERT INTO t3 VALUES(3210, 74405, 'seventy-four thousand four hundred five');\nINSERT INTO t3 VALUES(3211, 28426, 'twenty-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(3212, 6638, 'six thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(3213, 45690, 'forty-five thousand six hundred ninety');\nINSERT INTO t3 VALUES(3214, 43887, 'forty-three thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(3215, 70692, 'seventy thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(3216, 75903, 'seventy-five thousand nine hundred three');\nINSERT INTO t3 VALUES(3217, 4733, 'four thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(3218, 61268, 'sixty-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(3219, 96708, 'ninety-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(3220, 85602, 'eighty-five thousand six hundred two');\nINSERT INTO t3 VALUES(3221, 56994, 'fifty-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(3222, 29897, 'twenty-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(3223, 37207, 'thirty-seven thousand two hundred seven');\nINSERT INTO t3 VALUES(3224, 27267, 'twenty-seven thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(3225, 4364, 'four thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(3226, 4764, 'four thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(3227, 21280, 'twenty-one thousand two hundred eighty');\nINSERT INTO t3 VALUES(3228, 57894, 'fifty-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(3229, 97878, 'ninety-seven thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(3230, 20265, 'twenty thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(3231, 55906, 'fifty-five thousand nine hundred six');\nINSERT INTO t3 VALUES(3232, 45999, 'forty-five thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(3233, 26862, 'twenty-six thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(3234, 66546, 'sixty-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(3235, 58681, 'fifty-eight thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3236, 20634, 'twenty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(3237, 23165, 'twenty-three thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(3238, 69608, 'sixty-nine thousand six hundred eight');\nINSERT INTO t3 VALUES(3239, 51635, 'fifty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(3240, 78119, 'seventy-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(3241, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t3 VALUES(3242, 98193, 'ninety-eight thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(3243, 97710, 'ninety-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(3244, 39832, 'thirty-nine thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(3245, 1304, 'one thousand three hundred four');\nINSERT INTO t3 VALUES(3246, 77713, 'seventy-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(3247, 55426, 'fifty-five thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(3248, 30414, 'thirty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(3249, 36097, 'thirty-six thousand ninety-seven');\nINSERT INTO t3 VALUES(3250, 66159, 'sixty-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(3251, 48348, 'forty-eight thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(3252, 24606, 'twenty-four thousand six hundred six');\nINSERT INTO t3 VALUES(3253, 78026, 'seventy-eight thousand twenty-six');\nINSERT INTO t3 VALUES(3254, 33277, 'thirty-three thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(3255, 13613, 'thirteen thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3256, 22998, 'twenty-two thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(3257, 1499, 'one thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(3258, 54486, 'fifty-four thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(3259, 59699, 'fifty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(3260, 89747, 'eighty-nine thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(3261, 18002, 'eighteen thousand two');\nINSERT INTO t3 VALUES(3262, 46061, 'forty-six thousand sixty-one');\nINSERT INTO t3 VALUES(3263, 34695, 'thirty-four thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(3264, 30017, 'thirty thousand seventeen');\nINSERT INTO t3 VALUES(3265, 24428, 'twenty-four thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(3266, 50421, 'fifty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(3267, 14749, 'fourteen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(3268, 98725, 'ninety-eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(3269, 52706, 'fifty-two thousand seven hundred six');\nINSERT INTO t3 VALUES(3270, 55253, 'fifty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(3271, 79854, 'seventy-nine thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(3272, 23774, 'twenty-three thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(3273, 38704, 'thirty-eight thousand seven hundred four');\nINSERT INTO t3 VALUES(3274, 5778, 'five thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(3275, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(3276, 42048, 'forty-two thousand forty-eight');\nINSERT INTO t3 VALUES(3277, 89075, 'eighty-nine thousand seventy-five');\nINSERT INTO t3 VALUES(3278, 88616, 'eighty-eight thousand six hundred sixteen');\nINSERT INTO t3 VALUES(3279, 66289, 'sixty-six thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(3280, 63549, 'sixty-three thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(3281, 6772, 'six thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(3282, 88839, 'eighty-eight thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(3283, 335, 'three hundred thirty-five');\nINSERT INTO t3 VALUES(3284, 73167, 'seventy-three thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(3285, 26017, 'twenty-six thousand seventeen');\nINSERT INTO t3 VALUES(3286, 47230, 'forty-seven thousand two hundred thirty');\nINSERT INTO t3 VALUES(3287, 3536, 'three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(3288, 92717, 'ninety-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(3289, 92707, 'ninety-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(3290, 80363, 'eighty thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(3291, 70795, 'seventy thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(3292, 28974, 'twenty-eight thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(3293, 98907, 'ninety-eight thousand nine hundred seven');\nINSERT INTO t3 VALUES(3294, 16328, 'sixteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(3295, 52258, 'fifty-two thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(3296, 10018, 'ten thousand eighteen');\nINSERT INTO t3 VALUES(3297, 76504, 'seventy-six thousand five hundred four');\nINSERT INTO t3 VALUES(3298, 41695, 'forty-one thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(3299, 8079, 'eight thousand seventy-nine');\nINSERT INTO t3 VALUES(3300, 55552, 'fifty-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(3301, 59369, 'fifty-nine thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(3302, 95604, 'ninety-five thousand six hundred four');\nINSERT INTO t3 VALUES(3303, 54871, 'fifty-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(3304, 60447, 'sixty thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(3305, 16541, 'sixteen thousand five hundred forty-one');\nINSERT INTO t3 VALUES(3306, 4792, 'four thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(3307, 32900, 'thirty-two thousand nine hundred');\nINSERT INTO t3 VALUES(3308, 20302, 'twenty thousand three hundred two');\nINSERT INTO t3 VALUES(3309, 69833, 'sixty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(3310, 48982, 'forty-eight thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3311, 44646, 'forty-four thousand six hundred forty-six');\nINSERT INTO t3 VALUES(3312, 16740, 'sixteen thousand seven hundred forty');\nINSERT INTO t3 VALUES(3313, 84826, 'eighty-four thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(3314, 76724, 'seventy-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(3315, 20399, 'twenty thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(3316, 44189, 'forty-four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(3317, 52064, 'fifty-two thousand sixty-four');\nINSERT INTO t3 VALUES(3318, 19888, 'nineteen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3319, 87260, 'eighty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(3320, 60706, 'sixty thousand seven hundred six');\nINSERT INTO t3 VALUES(3321, 11743, 'eleven thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3322, 98332, 'ninety-eight thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(3323, 98608, 'ninety-eight thousand six hundred eight');\nINSERT INTO t3 VALUES(3324, 12706, 'twelve thousand seven hundred six');\nINSERT INTO t3 VALUES(3325, 80743, 'eighty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3326, 9245, 'nine thousand two hundred forty-five');\nINSERT INTO t3 VALUES(3327, 97091, 'ninety-seven thousand ninety-one');\nINSERT INTO t3 VALUES(3328, 37640, 'thirty-seven thousand six hundred forty');\nINSERT INTO t3 VALUES(3329, 30129, 'thirty thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3330, 14433, 'fourteen thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(3331, 36501, 'thirty-six thousand five hundred one');\nINSERT INTO t3 VALUES(3332, 98143, 'ninety-eight thousand one hundred forty-three');\nINSERT INTO t3 VALUES(3333, 94760, 'ninety-four thousand seven hundred sixty');\nINSERT INTO t3 VALUES(3334, 1365, 'one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(3335, 64789, 'sixty-four thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(3336, 91166, 'ninety-one thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(3337, 95275, 'ninety-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(3338, 29549, 'twenty-nine thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(3339, 3192, 'three thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(3340, 22206, 'twenty-two thousand two hundred six');\nINSERT INTO t3 VALUES(3341, 24498, 'twenty-four thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(3342, 96383, 'ninety-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(3343, 56472, 'fifty-six thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(3344, 19309, 'nineteen thousand three hundred nine');\nINSERT INTO t3 VALUES(3345, 28583, 'twenty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(3346, 18820, 'eighteen thousand eight hundred twenty');\nINSERT INTO t3 VALUES(3347, 14519, 'fourteen thousand five hundred nineteen');\nINSERT INTO t3 VALUES(3348, 19863, 'nineteen thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(3349, 82008, 'eighty-two thousand eight');\nINSERT INTO t3 VALUES(3350, 37956, 'thirty-seven thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(3351, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3352, 76470, 'seventy-six thousand four hundred seventy');\nINSERT INTO t3 VALUES(3353, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t3 VALUES(3354, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t3 VALUES(3355, 13736, 'thirteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(3356, 26905, 'twenty-six thousand nine hundred five');\nINSERT INTO t3 VALUES(3357, 94429, 'ninety-four thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(3358, 69232, 'sixty-nine thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(3359, 13347, 'thirteen thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(3360, 41222, 'forty-one thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(3361, 22915, 'twenty-two thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(3362, 99782, 'ninety-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(3363, 39237, 'thirty-nine thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(3364, 59013, 'fifty-nine thousand thirteen');\nINSERT INTO t3 VALUES(3365, 35271, 'thirty-five thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(3366, 87957, 'eighty-seven thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(3367, 96047, 'ninety-six thousand forty-seven');\nINSERT INTO t3 VALUES(3368, 44935, 'forty-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3369, 48207, 'forty-eight thousand two hundred seven');\nINSERT INTO t3 VALUES(3370, 59682, 'fifty-nine thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(3371, 34427, 'thirty-four thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(3372, 76097, 'seventy-six thousand ninety-seven');\nINSERT INTO t3 VALUES(3373, 6940, 'six thousand nine hundred forty');\nINSERT INTO t3 VALUES(3374, 34411, 'thirty-four thousand four hundred eleven');\nINSERT INTO t3 VALUES(3375, 76909, 'seventy-six thousand nine hundred nine');\nINSERT INTO t3 VALUES(3376, 37211, 'thirty-seven thousand two hundred eleven');\nINSERT INTO t3 VALUES(3377, 33070, 'thirty-three thousand seventy');\nINSERT INTO t3 VALUES(3378, 62925, 'sixty-two thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(3379, 10312, 'ten thousand three hundred twelve');\nINSERT INTO t3 VALUES(3380, 87309, 'eighty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(3381, 51257, 'fifty-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(3382, 41032, 'forty-one thousand thirty-two');\nINSERT INTO t3 VALUES(3383, 12112, 'twelve thousand one hundred twelve');\nINSERT INTO t3 VALUES(3384, 83862, 'eighty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(3385, 18658, 'eighteen thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(3386, 66391, 'sixty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(3387, 53702, 'fifty-three thousand seven hundred two');\nINSERT INTO t3 VALUES(3388, 70524, 'seventy thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(3389, 76634, 'seventy-six thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(3390, 70354, 'seventy thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(3391, 25667, 'twenty-five thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(3392, 51157, 'fifty-one thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(3393, 53810, 'fifty-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(3394, 43269, 'forty-three thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(3395, 56935, 'fifty-six thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3396, 69881, 'sixty-nine thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(3397, 80011, 'eighty thousand eleven');\nINSERT INTO t3 VALUES(3398, 3626, 'three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(3399, 73648, 'seventy-three thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(3400, 62576, 'sixty-two thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(3401, 93419, 'ninety-three thousand four hundred nineteen');\nINSERT INTO t3 VALUES(3402, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t3 VALUES(3403, 52611, 'fifty-two thousand six hundred eleven');\nINSERT INTO t3 VALUES(3404, 28500, 'twenty-eight thousand five hundred');\nINSERT INTO t3 VALUES(3405, 38930, 'thirty-eight thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3406, 91958, 'ninety-one thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(3407, 20713, 'twenty thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(3408, 93978, 'ninety-three thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(3409, 49774, 'forty-nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(3410, 1238, 'one thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(3411, 9685, 'nine thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(3412, 9456, 'nine thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(3413, 44453, 'forty-four thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(3414, 91541, 'ninety-one thousand five hundred forty-one');\nINSERT INTO t3 VALUES(3415, 14691, 'fourteen thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(3416, 53203, 'fifty-three thousand two hundred three');\nINSERT INTO t3 VALUES(3417, 94105, 'ninety-four thousand one hundred five');\nINSERT INTO t3 VALUES(3418, 60224, 'sixty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(3419, 89945, 'eighty-nine thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(3420, 17324, 'seventeen thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(3421, 17782, 'seventeen thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(3422, 48307, 'forty-eight thousand three hundred seven');\nINSERT INTO t3 VALUES(3423, 32385, 'thirty-two thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(3424, 9722, 'nine thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(3425, 81913, 'eighty-one thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(3426, 11459, 'eleven thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(3427, 58685, 'fifty-eight thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(3428, 46908, 'forty-six thousand nine hundred eight');\nINSERT INTO t3 VALUES(3429, 34277, 'thirty-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(3430, 83881, 'eighty-three thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(3431, 1014, 'one thousand fourteen');\nINSERT INTO t3 VALUES(3432, 5613, 'five thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3433, 37723, 'thirty-seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(3434, 1412, 'one thousand four hundred twelve');\nINSERT INTO t3 VALUES(3435, 29531, 'twenty-nine thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(3436, 52687, 'fifty-two thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(3437, 58641, 'fifty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(3438, 14948, 'fourteen thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(3439, 30402, 'thirty thousand four hundred two');\nINSERT INTO t3 VALUES(3440, 10454, 'ten thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(3441, 3681, 'three thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3442, 26793, 'twenty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(3443, 30432, 'thirty thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(3444, 97488, 'ninety-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(3445, 50850, 'fifty thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3446, 27925, 'twenty-seven thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(3447, 12718, 'twelve thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(3448, 92578, 'ninety-two thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(3449, 51978, 'fifty-one thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(3450, 86646, 'eighty-six thousand six hundred forty-six');\nINSERT INTO t3 VALUES(3451, 33086, 'thirty-three thousand eighty-six');\nINSERT INTO t3 VALUES(3452, 55619, 'fifty-five thousand six hundred nineteen');\nINSERT INTO t3 VALUES(3453, 65250, 'sixty-five thousand two hundred fifty');\nINSERT INTO t3 VALUES(3454, 59911, 'fifty-nine thousand nine hundred eleven');\nINSERT INTO t3 VALUES(3455, 81759, 'eighty-one thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(3456, 71062, 'seventy-one thousand sixty-two');\nINSERT INTO t3 VALUES(3457, 10868, 'ten thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(3458, 70403, 'seventy thousand four hundred three');\nINSERT INTO t3 VALUES(3459, 45063, 'forty-five thousand sixty-three');\nINSERT INTO t3 VALUES(3460, 45529, 'forty-five thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(3461, 94216, 'ninety-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(3462, 24337, 'twenty-four thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(3463, 7640, 'seven thousand six hundred forty');\nINSERT INTO t3 VALUES(3464, 16664, 'sixteen thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(3465, 37270, 'thirty-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(3466, 49452, 'forty-nine thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(3467, 1811, 'one thousand eight hundred eleven');\nINSERT INTO t3 VALUES(3468, 79888, 'seventy-nine thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3469, 15557, 'fifteen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(3470, 94193, 'ninety-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(3471, 2569, 'two thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(3472, 87304, 'eighty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(3473, 11008, 'eleven thousand eight');\nINSERT INTO t3 VALUES(3474, 16952, 'sixteen thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(3475, 86084, 'eighty-six thousand eighty-four');\nINSERT INTO t3 VALUES(3476, 83241, 'eighty-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(3477, 64364, 'sixty-four thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(3478, 78288, 'seventy-eight thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(3479, 14905, 'fourteen thousand nine hundred five');\nINSERT INTO t3 VALUES(3480, 69033, 'sixty-nine thousand thirty-three');\nINSERT INTO t3 VALUES(3481, 53276, 'fifty-three thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(3482, 21153, 'twenty-one thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(3483, 37373, 'thirty-seven thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(3484, 52384, 'fifty-two thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3485, 63492, 'sixty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(3486, 19040, 'nineteen thousand forty');\nINSERT INTO t3 VALUES(3487, 15865, 'fifteen thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(3488, 12410, 'twelve thousand four hundred ten');\nINSERT INTO t3 VALUES(3489, 5191, 'five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(3490, 8405, 'eight thousand four hundred five');\nINSERT INTO t3 VALUES(3491, 21078, 'twenty-one thousand seventy-eight');\nINSERT INTO t3 VALUES(3492, 70681, 'seventy thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3493, 19842, 'nineteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(3494, 36600, 'thirty-six thousand six hundred');\nINSERT INTO t3 VALUES(3495, 34675, 'thirty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(3496, 85508, 'eighty-five thousand five hundred eight');\nINSERT INTO t3 VALUES(3497, 81047, 'eighty-one thousand forty-seven');\nINSERT INTO t3 VALUES(3498, 20026, 'twenty thousand twenty-six');\nINSERT INTO t3 VALUES(3499, 51140, 'fifty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(3500, 38104, 'thirty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(3501, 40857, 'forty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(3502, 19692, 'nineteen thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(3503, 75578, 'seventy-five thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(3504, 7332, 'seven thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(3505, 50317, 'fifty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(3506, 88095, 'eighty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(3507, 79423, 'seventy-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(3508, 95804, 'ninety-five thousand eight hundred four');\nINSERT INTO t3 VALUES(3509, 50175, 'fifty thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3510, 67967, 'sixty-seven thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(3511, 44107, 'forty-four thousand one hundred seven');\nINSERT INTO t3 VALUES(3512, 4732, 'four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(3513, 6006, 'six thousand six');\nINSERT INTO t3 VALUES(3514, 89241, 'eighty-nine thousand two hundred forty-one');\nINSERT INTO t3 VALUES(3515, 33098, 'thirty-three thousand ninety-eight');\nINSERT INTO t3 VALUES(3516, 53970, 'fifty-three thousand nine hundred seventy');\nINSERT INTO t3 VALUES(3517, 50673, 'fifty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(3518, 71248, 'seventy-one thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(3519, 38851, 'thirty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(3520, 75879, 'seventy-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(3521, 55963, 'fifty-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(3522, 81847, 'eighty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(3523, 20088, 'twenty thousand eighty-eight');\nINSERT INTO t3 VALUES(3524, 24424, 'twenty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(3525, 98812, 'ninety-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(3526, 79831, 'seventy-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(3527, 82159, 'eighty-two thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(3528, 84576, 'eighty-four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(3529, 87260, 'eighty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(3530, 25149, 'twenty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(3531, 36043, 'thirty-six thousand forty-three');\nINSERT INTO t3 VALUES(3532, 27471, 'twenty-seven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(3533, 74261, 'seventy-four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(3534, 80999, 'eighty thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(3535, 92131, 'ninety-two thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(3536, 37716, 'thirty-seven thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(3537, 73671, 'seventy-three thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(3538, 12676, 'twelve thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(3539, 61303, 'sixty-one thousand three hundred three');\nINSERT INTO t3 VALUES(3540, 77151, 'seventy-seven thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(3541, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3542, 99886, 'ninety-nine thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(3543, 44288, 'forty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(3544, 37964, 'thirty-seven thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(3545, 51476, 'fifty-one thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(3546, 38822, 'thirty-eight thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(3547, 89678, 'eighty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(3548, 94251, 'ninety-four thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(3549, 86262, 'eighty-six thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(3550, 35023, 'thirty-five thousand twenty-three');\nINSERT INTO t3 VALUES(3551, 76586, 'seventy-six thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(3552, 6219, 'six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(3553, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(3554, 11137, 'eleven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(3555, 38217, 'thirty-eight thousand two hundred seventeen');\nINSERT INTO t3 VALUES(3556, 35364, 'thirty-five thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(3557, 10977, 'ten thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(3558, 30006, 'thirty thousand six');\nINSERT INTO t3 VALUES(3559, 64493, 'sixty-four thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(3560, 69257, 'sixty-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(3561, 55981, 'fifty-five thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(3562, 98127, 'ninety-eight thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(3563, 28253, 'twenty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(3564, 35260, 'thirty-five thousand two hundred sixty');\nINSERT INTO t3 VALUES(3565, 23799, 'twenty-three thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(3566, 59537, 'fifty-nine thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(3567, 87676, 'eighty-seven thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(3568, 95457, 'ninety-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(3569, 21582, 'twenty-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(3570, 67797, 'sixty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(3571, 42930, 'forty-two thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3572, 48312, 'forty-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(3573, 41226, 'forty-one thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(3574, 56975, 'fifty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(3575, 18167, 'eighteen thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(3576, 15265, 'fifteen thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(3577, 84769, 'eighty-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(3578, 16040, 'sixteen thousand forty');\nINSERT INTO t3 VALUES(3579, 22085, 'twenty-two thousand eighty-five');\nINSERT INTO t3 VALUES(3580, 62524, 'sixty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(3581, 34443, 'thirty-four thousand four hundred forty-three');\nINSERT INTO t3 VALUES(3582, 53238, 'fifty-three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(3583, 41441, 'forty-one thousand four hundred forty-one');\nINSERT INTO t3 VALUES(3584, 76927, 'seventy-six thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(3585, 97977, 'ninety-seven thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(3586, 18492, 'eighteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(3587, 60198, 'sixty thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(3588, 23384, 'twenty-three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3589, 12543, 'twelve thousand five hundred forty-three');\nINSERT INTO t3 VALUES(3590, 83354, 'eighty-three thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(3591, 32010, 'thirty-two thousand ten');\nINSERT INTO t3 VALUES(3592, 41820, 'forty-one thousand eight hundred twenty');\nINSERT INTO t3 VALUES(3593, 60217, 'sixty thousand two hundred seventeen');\nINSERT INTO t3 VALUES(3594, 45614, 'forty-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(3595, 81524, 'eighty-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(3596, 6468, 'six thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(3597, 3865, 'three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(3598, 25574, 'twenty-five thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(3599, 90048, 'ninety thousand forty-eight');\nINSERT INTO t3 VALUES(3600, 40344, 'forty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(3601, 14343, 'fourteen thousand three hundred forty-three');\nINSERT INTO t3 VALUES(3602, 9495, 'nine thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(3603, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t3 VALUES(3604, 9795, 'nine thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(3605, 34230, 'thirty-four thousand two hundred thirty');\nINSERT INTO t3 VALUES(3606, 90559, 'ninety thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(3607, 94175, 'ninety-four thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3608, 84020, 'eighty-four thousand twenty');\nINSERT INTO t3 VALUES(3609, 46560, 'forty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(3610, 59520, 'fifty-nine thousand five hundred twenty');\nINSERT INTO t3 VALUES(3611, 6613, 'six thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3612, 86324, 'eighty-six thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(3613, 250, 'two hundred fifty');\nINSERT INTO t3 VALUES(3614, 69136, 'sixty-nine thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(3615, 92537, 'ninety-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(3616, 13115, 'thirteen thousand one hundred fifteen');\nINSERT INTO t3 VALUES(3617, 23907, 'twenty-three thousand nine hundred seven');\nINSERT INTO t3 VALUES(3618, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t3 VALUES(3619, 26982, 'twenty-six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3620, 7879, 'seven thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(3621, 92331, 'ninety-two thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(3622, 2880, 'two thousand eight hundred eighty');\nINSERT INTO t3 VALUES(3623, 99525, 'ninety-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(3624, 46522, 'forty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(3625, 23039, 'twenty-three thousand thirty-nine');\nINSERT INTO t3 VALUES(3626, 34304, 'thirty-four thousand three hundred four');\nINSERT INTO t3 VALUES(3627, 78013, 'seventy-eight thousand thirteen');\nINSERT INTO t3 VALUES(3628, 94249, 'ninety-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(3629, 2279, 'two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(3630, 53610, 'fifty-three thousand six hundred ten');\nINSERT INTO t3 VALUES(3631, 63129, 'sixty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3632, 8500, 'eight thousand five hundred');\nINSERT INTO t3 VALUES(3633, 53798, 'fifty-three thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(3634, 38422, 'thirty-eight thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(3635, 10541, 'ten thousand five hundred forty-one');\nINSERT INTO t3 VALUES(3636, 49289, 'forty-nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(3637, 49273, 'forty-nine thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(3638, 91803, 'ninety-one thousand eight hundred three');\nINSERT INTO t3 VALUES(3639, 12468, 'twelve thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(3640, 44785, 'forty-four thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(3641, 95707, 'ninety-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(3642, 49976, 'forty-nine thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(3643, 86860, 'eighty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(3644, 92127, 'ninety-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(3645, 26431, 'twenty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(3646, 92262, 'ninety-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(3647, 37206, 'thirty-seven thousand two hundred six');\nINSERT INTO t3 VALUES(3648, 91060, 'ninety-one thousand sixty');\nINSERT INTO t3 VALUES(3649, 94561, 'ninety-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(3650, 98528, 'ninety-eight thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(3651, 9871, 'nine thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(3652, 82124, 'eighty-two thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(3653, 14270, 'fourteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(3654, 12047, 'twelve thousand forty-seven');\nINSERT INTO t3 VALUES(3655, 75356, 'seventy-five thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(3656, 15419, 'fifteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(3657, 67423, 'sixty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(3658, 42790, 'forty-two thousand seven hundred ninety');\nINSERT INTO t3 VALUES(3659, 76395, 'seventy-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(3660, 94864, 'ninety-four thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(3661, 52231, 'fifty-two thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(3662, 80409, 'eighty thousand four hundred nine');\nINSERT INTO t3 VALUES(3663, 17263, 'seventeen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(3664, 15859, 'fifteen thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(3665, 58869, 'fifty-eight thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(3666, 90772, 'ninety thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(3667, 17022, 'seventeen thousand twenty-two');\nINSERT INTO t3 VALUES(3668, 20295, 'twenty thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(3669, 66309, 'sixty-six thousand three hundred nine');\nINSERT INTO t3 VALUES(3670, 80008, 'eighty thousand eight');\nINSERT INTO t3 VALUES(3671, 17712, 'seventeen thousand seven hundred twelve');\nINSERT INTO t3 VALUES(3672, 66589, 'sixty-six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3673, 28283, 'twenty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(3674, 39222, 'thirty-nine thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(3675, 48453, 'forty-eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(3676, 23555, 'twenty-three thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(3677, 91764, 'ninety-one thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(3678, 22594, 'twenty-two thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(3679, 46680, 'forty-six thousand six hundred eighty');\nINSERT INTO t3 VALUES(3680, 76455, 'seventy-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(3681, 61116, 'sixty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(3682, 9267, 'nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(3683, 73619, 'seventy-three thousand six hundred nineteen');\nINSERT INTO t3 VALUES(3684, 4314, 'four thousand three hundred fourteen');\nINSERT INTO t3 VALUES(3685, 47379, 'forty-seven thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(3686, 27913, 'twenty-seven thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(3687, 40459, 'forty thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(3688, 87849, 'eighty-seven thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(3689, 73921, 'seventy-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(3690, 27243, 'twenty-seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(3691, 39125, 'thirty-nine thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(3692, 56011, 'fifty-six thousand eleven');\nINSERT INTO t3 VALUES(3693, 85383, 'eighty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(3694, 74158, 'seventy-four thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(3695, 24199, 'twenty-four thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(3696, 44257, 'forty-four thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(3697, 38808, 'thirty-eight thousand eight hundred eight');\nINSERT INTO t3 VALUES(3698, 11852, 'eleven thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(3699, 74550, 'seventy-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(3700, 79099, 'seventy-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(3701, 58589, 'fifty-eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3702, 9158, 'nine thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(3703, 16166, 'sixteen thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(3704, 84637, 'eighty-four thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(3705, 83306, 'eighty-three thousand three hundred six');\nINSERT INTO t3 VALUES(3706, 21595, 'twenty-one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(3707, 2151, 'two thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(3708, 44562, 'forty-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(3709, 70876, 'seventy thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(3710, 81209, 'eighty-one thousand two hundred nine');\nINSERT INTO t3 VALUES(3711, 38502, 'thirty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(3712, 5252, 'five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(3713, 46419, 'forty-six thousand four hundred nineteen');\nINSERT INTO t3 VALUES(3714, 31465, 'thirty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(3715, 88555, 'eighty-eight thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(3716, 63170, 'sixty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(3717, 49868, 'forty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(3718, 90823, 'ninety thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(3719, 69446, 'sixty-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(3720, 26892, 'twenty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(3721, 17543, 'seventeen thousand five hundred forty-three');\nINSERT INTO t3 VALUES(3722, 33844, 'thirty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(3723, 29478, 'twenty-nine thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(3724, 96685, 'ninety-six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(3725, 38526, 'thirty-eight thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(3726, 23760, 'twenty-three thousand seven hundred sixty');\nINSERT INTO t3 VALUES(3727, 22053, 'twenty-two thousand fifty-three');\nINSERT INTO t3 VALUES(3728, 41143, 'forty-one thousand one hundred forty-three');\nINSERT INTO t3 VALUES(3729, 16812, 'sixteen thousand eight hundred twelve');\nINSERT INTO t3 VALUES(3730, 88806, 'eighty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(3731, 57290, 'fifty-seven thousand two hundred ninety');\nINSERT INTO t3 VALUES(3732, 46403, 'forty-six thousand four hundred three');\nINSERT INTO t3 VALUES(3733, 14487, 'fourteen thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(3734, 76705, 'seventy-six thousand seven hundred five');\nINSERT INTO t3 VALUES(3735, 50634, 'fifty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(3736, 9062, 'nine thousand sixty-two');\nINSERT INTO t3 VALUES(3737, 1788, 'one thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(3738, 25958, 'twenty-five thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(3739, 11601, 'eleven thousand six hundred one');\nINSERT INTO t3 VALUES(3740, 74330, 'seventy-four thousand three hundred thirty');\nINSERT INTO t3 VALUES(3741, 22172, 'twenty-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(3742, 42888, 'forty-two thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3743, 5402, 'five thousand four hundred two');\nINSERT INTO t3 VALUES(3744, 72775, 'seventy-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(3745, 90270, 'ninety thousand two hundred seventy');\nINSERT INTO t3 VALUES(3746, 5137, 'five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(3747, 10295, 'ten thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(3748, 94444, 'ninety-four thousand four hundred forty-four');\nINSERT INTO t3 VALUES(3749, 75640, 'seventy-five thousand six hundred forty');\nINSERT INTO t3 VALUES(3750, 51028, 'fifty-one thousand twenty-eight');\nINSERT INTO t3 VALUES(3751, 95855, 'ninety-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(3752, 3382, 'three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(3753, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t3 VALUES(3754, 56076, 'fifty-six thousand seventy-six');\nINSERT INTO t3 VALUES(3755, 62902, 'sixty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(3756, 94747, 'ninety-four thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(3757, 7483, 'seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(3758, 79276, 'seventy-nine thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(3759, 48065, 'forty-eight thousand sixty-five');\nINSERT INTO t3 VALUES(3760, 78755, 'seventy-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(3761, 90005, 'ninety thousand five');\nINSERT INTO t3 VALUES(3762, 52348, 'fifty-two thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(3763, 38175, 'thirty-eight thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(3764, 53580, 'fifty-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(3765, 12084, 'twelve thousand eighty-four');\nINSERT INTO t3 VALUES(3766, 92991, 'ninety-two thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(3767, 47407, 'forty-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(3768, 41929, 'forty-one thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(3769, 82296, 'eighty-two thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(3770, 63828, 'sixty-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(3771, 21283, 'twenty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(3772, 89438, 'eighty-nine thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(3773, 24512, 'twenty-four thousand five hundred twelve');\nINSERT INTO t3 VALUES(3774, 66007, 'sixty-six thousand seven');\nINSERT INTO t3 VALUES(3775, 72757, 'seventy-two thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(3776, 41536, 'forty-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(3777, 71384, 'seventy-one thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(3778, 72708, 'seventy-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(3779, 74895, 'seventy-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(3780, 81670, 'eighty-one thousand six hundred seventy');\nINSERT INTO t3 VALUES(3781, 82046, 'eighty-two thousand forty-six');\nINSERT INTO t3 VALUES(3782, 21869, 'twenty-one thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(3783, 33329, 'thirty-three thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(3784, 77826, 'seventy-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(3785, 13056, 'thirteen thousand fifty-six');\nINSERT INTO t3 VALUES(3786, 86200, 'eighty-six thousand two hundred');\nINSERT INTO t3 VALUES(3787, 31648, 'thirty-one thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(3788, 57542, 'fifty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(3789, 1374, 'one thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(3790, 67665, 'sixty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(3791, 95754, 'ninety-five thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(3792, 35655, 'thirty-five thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(3793, 65333, 'sixty-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(3794, 64188, 'sixty-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(3795, 19698, 'nineteen thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(3796, 26736, 'twenty-six thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(3797, 14857, 'fourteen thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(3798, 42009, 'forty-two thousand nine');\nINSERT INTO t3 VALUES(3799, 91156, 'ninety-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(3800, 14638, 'fourteen thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(3801, 51122, 'fifty-one thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(3802, 20192, 'twenty thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(3803, 88185, 'eighty-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(3804, 13798, 'thirteen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(3805, 62073, 'sixty-two thousand seventy-three');\nINSERT INTO t3 VALUES(3806, 68516, 'sixty-eight thousand five hundred sixteen');\nINSERT INTO t3 VALUES(3807, 88104, 'eighty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(3808, 55007, 'fifty-five thousand seven');\nINSERT INTO t3 VALUES(3809, 49778, 'forty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(3810, 91147, 'ninety-one thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(3811, 48531, 'forty-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(3812, 61940, 'sixty-one thousand nine hundred forty');\nINSERT INTO t3 VALUES(3813, 79835, 'seventy-nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(3814, 53589, 'fifty-three thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(3815, 69097, 'sixty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(3816, 35293, 'thirty-five thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(3817, 39234, 'thirty-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(3818, 6271, 'six thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(3819, 10038, 'ten thousand thirty-eight');\nINSERT INTO t3 VALUES(3820, 22953, 'twenty-two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(3821, 99930, 'ninety-nine thousand nine hundred thirty');\nINSERT INTO t3 VALUES(3822, 41920, 'forty-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(3823, 65428, 'sixty-five thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(3824, 90627, 'ninety thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(3825, 76289, 'seventy-six thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(3826, 34994, 'thirty-four thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(3827, 33317, 'thirty-three thousand three hundred seventeen');\nINSERT INTO t3 VALUES(3828, 15994, 'fifteen thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(3829, 6982, 'six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3830, 74519, 'seventy-four thousand five hundred nineteen');\nINSERT INTO t3 VALUES(3831, 67713, 'sixty-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(3832, 47487, 'forty-seven thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(3833, 78746, 'seventy-eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(3834, 35846, 'thirty-five thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(3835, 15850, 'fifteen thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3836, 79240, 'seventy-nine thousand two hundred forty');\nINSERT INTO t3 VALUES(3837, 24858, 'twenty-four thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(3838, 61899, 'sixty-one thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(3839, 2494, 'two thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(3840, 83904, 'eighty-three thousand nine hundred four');\nINSERT INTO t3 VALUES(3841, 53824, 'fifty-three thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(3842, 55396, 'fifty-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(3843, 21043, 'twenty-one thousand forty-three');\nINSERT INTO t3 VALUES(3844, 26998, 'twenty-six thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(3845, 62737, 'sixty-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(3846, 6127, 'six thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(3847, 33690, 'thirty-three thousand six hundred ninety');\nINSERT INTO t3 VALUES(3848, 23612, 'twenty-three thousand six hundred twelve');\nINSERT INTO t3 VALUES(3849, 61672, 'sixty-one thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(3850, 98334, 'ninety-eight thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(3851, 15798, 'fifteen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(3852, 9049, 'nine thousand forty-nine');\nINSERT INTO t3 VALUES(3853, 68023, 'sixty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(3854, 13200, 'thirteen thousand two hundred');\nINSERT INTO t3 VALUES(3855, 44840, 'forty-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(3856, 52850, 'fifty-two thousand eight hundred fifty');\nINSERT INTO t3 VALUES(3857, 78920, 'seventy-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(3858, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3859, 73985, 'seventy-three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(3860, 90829, 'ninety thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(3861, 42114, 'forty-two thousand one hundred fourteen');\nINSERT INTO t3 VALUES(3862, 74654, 'seventy-four thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(3863, 82999, 'eighty-two thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(3864, 86163, 'eighty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(3865, 35046, 'thirty-five thousand forty-six');\nINSERT INTO t3 VALUES(3866, 26, 'twenty-six');\nINSERT INTO t3 VALUES(3867, 34716, 'thirty-four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(3868, 52005, 'fifty-two thousand five');\nINSERT INTO t3 VALUES(3869, 71929, 'seventy-one thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(3870, 98714, 'ninety-eight thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(3871, 80296, 'eighty thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(3872, 14160, 'fourteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(3873, 17204, 'seventeen thousand two hundred four');\nINSERT INTO t3 VALUES(3874, 81894, 'eighty-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(3875, 50209, 'fifty thousand two hundred nine');\nINSERT INTO t3 VALUES(3876, 14953, 'fourteen thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(3877, 88741, 'eighty-eight thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(3878, 82388, 'eighty-two thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(3879, 50662, 'fifty thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(3880, 47277, 'forty-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(3881, 60580, 'sixty thousand five hundred eighty');\nINSERT INTO t3 VALUES(3882, 62492, 'sixty-two thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(3883, 59825, 'fifty-nine thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(3884, 86562, 'eighty-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(3885, 84715, 'eighty-four thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(3886, 4030, 'four thousand thirty');\nINSERT INTO t3 VALUES(3887, 42269, 'forty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(3888, 20337, 'twenty thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(3889, 36923, 'thirty-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(3890, 55266, 'fifty-five thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(3891, 55697, 'fifty-five thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(3892, 89651, 'eighty-nine thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(3893, 56503, 'fifty-six thousand five hundred three');\nINSERT INTO t3 VALUES(3894, 241, 'two hundred forty-one');\nINSERT INTO t3 VALUES(3895, 96754, 'ninety-six thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(3896, 32415, 'thirty-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(3897, 74331, 'seventy-four thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(3898, 6841, 'six thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(3899, 88591, 'eighty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(3900, 9138, 'nine thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(3901, 64961, 'sixty-four thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(3902, 23722, 'twenty-three thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(3903, 39599, 'thirty-nine thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(3904, 42647, 'forty-two thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(3905, 12856, 'twelve thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(3906, 86363, 'eighty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(3907, 29129, 'twenty-nine thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3908, 84042, 'eighty-four thousand forty-two');\nINSERT INTO t3 VALUES(3909, 13888, 'thirteen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(3910, 9500, 'nine thousand five hundred');\nINSERT INTO t3 VALUES(3911, 53484, 'fifty-three thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(3912, 25395, 'twenty-five thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(3913, 27352, 'twenty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(3914, 89396, 'eighty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(3915, 31375, 'thirty-one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(3916, 60857, 'sixty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(3917, 61172, 'sixty-one thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(3918, 29329, 'twenty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(3919, 27707, 'twenty-seven thousand seven hundred seven');\nINSERT INTO t3 VALUES(3920, 29677, 'twenty-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(3921, 40205, 'forty thousand two hundred five');\nINSERT INTO t3 VALUES(3922, 45678, 'forty-five thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(3923, 99927, 'ninety-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(3924, 64743, 'sixty-four thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3925, 22868, 'twenty-two thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(3926, 70743, 'seventy thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(3927, 28192, 'twenty-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(3928, 3302, 'three thousand three hundred two');\nINSERT INTO t3 VALUES(3929, 47726, 'forty-seven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(3930, 37683, 'thirty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(3931, 6905, 'six thousand nine hundred five');\nINSERT INTO t3 VALUES(3932, 66454, 'sixty-six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(3933, 60775, 'sixty thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(3934, 87639, 'eighty-seven thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(3935, 59479, 'fifty-nine thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(3936, 89619, 'eighty-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(3937, 40144, 'forty thousand one hundred forty-four');\nINSERT INTO t3 VALUES(3938, 52613, 'fifty-two thousand six hundred thirteen');\nINSERT INTO t3 VALUES(3939, 96051, 'ninety-six thousand fifty-one');\nINSERT INTO t3 VALUES(3940, 24290, 'twenty-four thousand two hundred ninety');\nINSERT INTO t3 VALUES(3941, 7882, 'seven thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(3942, 44252, 'forty-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(3943, 88439, 'eighty-eight thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(3944, 54009, 'fifty-four thousand nine');\nINSERT INTO t3 VALUES(3945, 45373, 'forty-five thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(3946, 71039, 'seventy-one thousand thirty-nine');\nINSERT INTO t3 VALUES(3947, 55529, 'fifty-five thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(3948, 77501, 'seventy-seven thousand five hundred one');\nINSERT INTO t3 VALUES(3949, 280, 'two hundred eighty');\nINSERT INTO t3 VALUES(3950, 85133, 'eighty-five thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(3951, 761, 'seven hundred sixty-one');\nINSERT INTO t3 VALUES(3952, 43709, 'forty-three thousand seven hundred nine');\nINSERT INTO t3 VALUES(3953, 39383, 'thirty-nine thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(3954, 71129, 'seventy-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(3955, 78300, 'seventy-eight thousand three hundred');\nINSERT INTO t3 VALUES(3956, 15677, 'fifteen thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(3957, 45654, 'forty-five thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(3958, 37655, 'thirty-seven thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(3959, 73870, 'seventy-three thousand eight hundred seventy');\nINSERT INTO t3 VALUES(3960, 13586, 'thirteen thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(3961, 17935, 'seventeen thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(3962, 22377, 'twenty-two thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(3963, 83852, 'eighty-three thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(3964, 82982, 'eighty-two thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(3965, 23942, 'twenty-three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(3966, 4, 'four');\nINSERT INTO t3 VALUES(3967, 62696, 'sixty-two thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(3968, 80592, 'eighty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(3969, 76795, 'seventy-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(3970, 8968, 'eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(3971, 13813, 'thirteen thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(3972, 19275, 'nineteen thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(3973, 7545, 'seven thousand five hundred forty-five');\nINSERT INTO t3 VALUES(3974, 93004, 'ninety-three thousand four');\nINSERT INTO t3 VALUES(3975, 92311, 'ninety-two thousand three hundred eleven');\nINSERT INTO t3 VALUES(3976, 50992, 'fifty thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(3977, 61181, 'sixty-one thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(3978, 31652, 'thirty-one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(3979, 61949, 'sixty-one thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(3980, 11738, 'eleven thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(3981, 68579, 'sixty-eight thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(3982, 23943, 'twenty-three thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(3983, 98358, 'ninety-eight thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(3984, 84861, 'eighty-four thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(3985, 51132, 'fifty-one thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(3986, 56845, 'fifty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(3987, 7917, 'seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(3988, 84918, 'eighty-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(3989, 91809, 'ninety-one thousand eight hundred nine');\nINSERT INTO t3 VALUES(3990, 49335, 'forty-nine thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(3991, 26021, 'twenty-six thousand twenty-one');\nINSERT INTO t3 VALUES(3992, 88977, 'eighty-eight thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(3993, 85932, 'eighty-five thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(3994, 81681, 'eighty-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(3995, 80234, 'eighty thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(3996, 26116, 'twenty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(3997, 10573, 'ten thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(3998, 46517, 'forty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(3999, 67769, 'sixty-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(4000, 67841, 'sixty-seven thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(4001, 13891, 'thirteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(4002, 50116, 'fifty thousand one hundred sixteen');\nINSERT INTO t3 VALUES(4003, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t3 VALUES(4004, 18204, 'eighteen thousand two hundred four');\nINSERT INTO t3 VALUES(4005, 42378, 'forty-two thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(4006, 23498, 'twenty-three thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(4007, 87466, 'eighty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(4008, 65485, 'sixty-five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(4009, 58163, 'fifty-eight thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(4010, 11691, 'eleven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(4011, 12158, 'twelve thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(4012, 82826, 'eighty-two thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(4013, 27264, 'twenty-seven thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(4014, 28716, 'twenty-eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(4015, 56473, 'fifty-six thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(4016, 89156, 'eighty-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(4017, 22711, 'twenty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(4018, 55770, 'fifty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(4019, 95322, 'ninety-five thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(4020, 87100, 'eighty-seven thousand one hundred');\nINSERT INTO t3 VALUES(4021, 6281, 'six thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(4022, 78620, 'seventy-eight thousand six hundred twenty');\nINSERT INTO t3 VALUES(4023, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t3 VALUES(4024, 17579, 'seventeen thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(4025, 5873, 'five thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(4026, 56565, 'fifty-six thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(4027, 48526, 'forty-eight thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(4028, 10780, 'ten thousand seven hundred eighty');\nINSERT INTO t3 VALUES(4029, 97192, 'ninety-seven thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(4030, 46551, 'forty-six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(4031, 91319, 'ninety-one thousand three hundred nineteen');\nINSERT INTO t3 VALUES(4032, 72702, 'seventy-two thousand seven hundred two');\nINSERT INTO t3 VALUES(4033, 18348, 'eighteen thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(4034, 52538, 'fifty-two thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(4035, 3279, 'three thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(4036, 19798, 'nineteen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(4037, 95655, 'ninety-five thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(4038, 56546, 'fifty-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(4039, 90290, 'ninety thousand two hundred ninety');\nINSERT INTO t3 VALUES(4040, 18337, 'eighteen thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(4041, 17331, 'seventeen thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(4042, 68901, 'sixty-eight thousand nine hundred one');\nINSERT INTO t3 VALUES(4043, 5405, 'five thousand four hundred five');\nINSERT INTO t3 VALUES(4044, 37699, 'thirty-seven thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(4045, 71749, 'seventy-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(4046, 58436, 'fifty-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(4047, 46642, 'forty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(4048, 61738, 'sixty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(4049, 42610, 'forty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(4050, 90581, 'ninety thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(4051, 10680, 'ten thousand six hundred eighty');\nINSERT INTO t3 VALUES(4052, 90251, 'ninety thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(4053, 47153, 'forty-seven thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(4054, 39923, 'thirty-nine thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(4055, 11893, 'eleven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(4056, 50665, 'fifty thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(4057, 11104, 'eleven thousand one hundred four');\nINSERT INTO t3 VALUES(4058, 79874, 'seventy-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(4059, 4094, 'four thousand ninety-four');\nINSERT INTO t3 VALUES(4060, 38552, 'thirty-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(4061, 54111, 'fifty-four thousand one hundred eleven');\nINSERT INTO t3 VALUES(4062, 22374, 'twenty-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(4063, 60384, 'sixty thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(4064, 39523, 'thirty-nine thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(4065, 67745, 'sixty-seven thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(4066, 80339, 'eighty thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(4067, 9518, 'nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(4068, 51432, 'fifty-one thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(4069, 40099, 'forty thousand ninety-nine');\nINSERT INTO t3 VALUES(4070, 87356, 'eighty-seven thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(4071, 53766, 'fifty-three thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(4072, 2507, 'two thousand five hundred seven');\nINSERT INTO t3 VALUES(4073, 66416, 'sixty-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(4074, 51181, 'fifty-one thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(4075, 64977, 'sixty-four thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(4076, 56522, 'fifty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(4077, 31144, 'thirty-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(4078, 61935, 'sixty-one thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(4079, 10340, 'ten thousand three hundred forty');\nINSERT INTO t3 VALUES(4080, 29470, 'twenty-nine thousand four hundred seventy');\nINSERT INTO t3 VALUES(4081, 78829, 'seventy-eight thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(4082, 98781, 'ninety-eight thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(4083, 31055, 'thirty-one thousand fifty-five');\nINSERT INTO t3 VALUES(4084, 7417, 'seven thousand four hundred seventeen');\nINSERT INTO t3 VALUES(4085, 79189, 'seventy-nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(4086, 65370, 'sixty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(4087, 96578, 'ninety-six thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(4088, 97408, 'ninety-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(4089, 90722, 'ninety thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(4090, 22255, 'twenty-two thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(4091, 48402, 'forty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(4092, 35261, 'thirty-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(4093, 99676, 'ninety-nine thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(4094, 75546, 'seventy-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(4095, 87220, 'eighty-seven thousand two hundred twenty');\nINSERT INTO t3 VALUES(4096, 54875, 'fifty-four thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(4097, 39578, 'thirty-nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(4098, 92443, 'ninety-two thousand four hundred forty-three');\nINSERT INTO t3 VALUES(4099, 50914, 'fifty thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(4100, 13199, 'thirteen thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(4101, 80974, 'eighty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(4102, 27734, 'twenty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(4103, 621, 'six hundred twenty-one');\nINSERT INTO t3 VALUES(4104, 82337, 'eighty-two thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(4105, 59507, 'fifty-nine thousand five hundred seven');\nINSERT INTO t3 VALUES(4106, 48954, 'forty-eight thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(4107, 3461, 'three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(4108, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(4109, 58530, 'fifty-eight thousand five hundred thirty');\nINSERT INTO t3 VALUES(4110, 38254, 'thirty-eight thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(4111, 47627, 'forty-seven thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(4112, 1144, 'one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(4113, 57982, 'fifty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(4114, 12045, 'twelve thousand forty-five');\nINSERT INTO t3 VALUES(4115, 73737, 'seventy-three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(4116, 1705, 'one thousand seven hundred five');\nINSERT INTO t3 VALUES(4117, 44831, 'forty-four thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(4118, 10526, 'ten thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(4119, 67233, 'sixty-seven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(4120, 86347, 'eighty-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(4121, 56915, 'fifty-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(4122, 12764, 'twelve thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(4123, 1199, 'one thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(4124, 17277, 'seventeen thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(4125, 45789, 'forty-five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(4126, 93842, 'ninety-three thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(4127, 68211, 'sixty-eight thousand two hundred eleven');\nINSERT INTO t3 VALUES(4128, 71114, 'seventy-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(4129, 71842, 'seventy-one thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(4130, 79355, 'seventy-nine thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(4131, 26021, 'twenty-six thousand twenty-one');\nINSERT INTO t3 VALUES(4132, 534, 'five hundred thirty-four');\nINSERT INTO t3 VALUES(4133, 91055, 'ninety-one thousand fifty-five');\nINSERT INTO t3 VALUES(4134, 25406, 'twenty-five thousand four hundred six');\nINSERT INTO t3 VALUES(4135, 83441, 'eighty-three thousand four hundred forty-one');\nINSERT INTO t3 VALUES(4136, 85622, 'eighty-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(4137, 22765, 'twenty-two thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(4138, 82509, 'eighty-two thousand five hundred nine');\nINSERT INTO t3 VALUES(4139, 60793, 'sixty thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(4140, 67859, 'sixty-seven thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(4141, 28247, 'twenty-eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(4142, 38438, 'thirty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(4143, 39253, 'thirty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(4144, 59683, 'fifty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(4145, 70618, 'seventy thousand six hundred eighteen');\nINSERT INTO t3 VALUES(4146, 70076, 'seventy thousand seventy-six');\nINSERT INTO t3 VALUES(4147, 28746, 'twenty-eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4148, 98045, 'ninety-eight thousand forty-five');\nINSERT INTO t3 VALUES(4149, 44064, 'forty-four thousand sixty-four');\nINSERT INTO t3 VALUES(4150, 64983, 'sixty-four thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4151, 19396, 'nineteen thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(4152, 96122, 'ninety-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(4153, 48803, 'forty-eight thousand eight hundred three');\nINSERT INTO t3 VALUES(4154, 55604, 'fifty-five thousand six hundred four');\nINSERT INTO t3 VALUES(4155, 20081, 'twenty thousand eighty-one');\nINSERT INTO t3 VALUES(4156, 69433, 'sixty-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4157, 16188, 'sixteen thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(4158, 22864, 'twenty-two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(4159, 11513, 'eleven thousand five hundred thirteen');\nINSERT INTO t3 VALUES(4160, 47654, 'forty-seven thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(4161, 94904, 'ninety-four thousand nine hundred four');\nINSERT INTO t3 VALUES(4162, 63606, 'sixty-three thousand six hundred six');\nINSERT INTO t3 VALUES(4163, 75012, 'seventy-five thousand twelve');\nINSERT INTO t3 VALUES(4164, 99980, 'ninety-nine thousand nine hundred eighty');\nINSERT INTO t3 VALUES(4165, 50010, 'fifty thousand ten');\nINSERT INTO t3 VALUES(4166, 63239, 'sixty-three thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(4167, 46264, 'forty-six thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(4168, 3008, 'three thousand eight');\nINSERT INTO t3 VALUES(4169, 73017, 'seventy-three thousand seventeen');\nINSERT INTO t3 VALUES(4170, 80318, 'eighty thousand three hundred eighteen');\nINSERT INTO t3 VALUES(4171, 88927, 'eighty-eight thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(4172, 81274, 'eighty-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(4173, 2042, 'two thousand forty-two');\nINSERT INTO t3 VALUES(4174, 64208, 'sixty-four thousand two hundred eight');\nINSERT INTO t3 VALUES(4175, 68960, 'sixty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(4176, 35762, 'thirty-five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(4177, 34565, 'thirty-four thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(4178, 25206, 'twenty-five thousand two hundred six');\nINSERT INTO t3 VALUES(4179, 88983, 'eighty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4180, 1561, 'one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(4181, 78055, 'seventy-eight thousand fifty-five');\nINSERT INTO t3 VALUES(4182, 15211, 'fifteen thousand two hundred eleven');\nINSERT INTO t3 VALUES(4183, 6521, 'six thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(4184, 90252, 'ninety thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(4185, 36148, 'thirty-six thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(4186, 25154, 'twenty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(4187, 26225, 'twenty-six thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(4188, 29731, 'twenty-nine thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(4189, 53019, 'fifty-three thousand nineteen');\nINSERT INTO t3 VALUES(4190, 63655, 'sixty-three thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(4191, 98432, 'ninety-eight thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(4192, 35425, 'thirty-five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(4193, 76458, 'seventy-six thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(4194, 23698, 'twenty-three thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(4195, 17217, 'seventeen thousand two hundred seventeen');\nINSERT INTO t3 VALUES(4196, 47301, 'forty-seven thousand three hundred one');\nINSERT INTO t3 VALUES(4197, 27341, 'twenty-seven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(4198, 75533, 'seventy-five thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(4199, 12303, 'twelve thousand three hundred three');\nINSERT INTO t3 VALUES(4200, 24176, 'twenty-four thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(4201, 21438, 'twenty-one thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(4202, 21970, 'twenty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(4203, 59033, 'fifty-nine thousand thirty-three');\nINSERT INTO t3 VALUES(4204, 46814, 'forty-six thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(4205, 38981, 'thirty-eight thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(4206, 27904, 'twenty-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(4207, 24136, 'twenty-four thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(4208, 70749, 'seventy thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(4209, 45423, 'forty-five thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(4210, 24329, 'twenty-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(4211, 50187, 'fifty thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(4212, 40052, 'forty thousand fifty-two');\nINSERT INTO t3 VALUES(4213, 42353, 'forty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(4214, 15519, 'fifteen thousand five hundred nineteen');\nINSERT INTO t3 VALUES(4215, 56068, 'fifty-six thousand sixty-eight');\nINSERT INTO t3 VALUES(4216, 62342, 'sixty-two thousand three hundred forty-two');\nINSERT INTO t3 VALUES(4217, 12713, 'twelve thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(4218, 45393, 'forty-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(4219, 58954, 'fifty-eight thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(4220, 75288, 'seventy-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(4221, 17860, 'seventeen thousand eight hundred sixty');\nINSERT INTO t3 VALUES(4222, 81471, 'eighty-one thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(4223, 77160, 'seventy-seven thousand one hundred sixty');\nINSERT INTO t3 VALUES(4224, 79079, 'seventy-nine thousand seventy-nine');\nINSERT INTO t3 VALUES(4225, 12010, 'twelve thousand ten');\nINSERT INTO t3 VALUES(4226, 80815, 'eighty thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(4227, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(4228, 88816, 'eighty-eight thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(4229, 98715, 'ninety-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(4230, 21600, 'twenty-one thousand six hundred');\nINSERT INTO t3 VALUES(4231, 15447, 'fifteen thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(4232, 88291, 'eighty-eight thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(4233, 72622, 'seventy-two thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(4234, 12937, 'twelve thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(4235, 56112, 'fifty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(4236, 54464, 'fifty-four thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(4237, 53441, 'fifty-three thousand four hundred forty-one');\nINSERT INTO t3 VALUES(4238, 78597, 'seventy-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(4239, 36983, 'thirty-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4240, 2498, 'two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(4241, 9398, 'nine thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(4242, 27954, 'twenty-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(4243, 43254, 'forty-three thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(4244, 27133, 'twenty-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(4245, 11405, 'eleven thousand four hundred five');\nINSERT INTO t3 VALUES(4246, 90710, 'ninety thousand seven hundred ten');\nINSERT INTO t3 VALUES(4247, 65269, 'sixty-five thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(4248, 65463, 'sixty-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(4249, 20022, 'twenty thousand twenty-two');\nINSERT INTO t3 VALUES(4250, 57930, 'fifty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(4251, 84894, 'eighty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(4252, 6773, 'six thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(4253, 47603, 'forty-seven thousand six hundred three');\nINSERT INTO t3 VALUES(4254, 73149, 'seventy-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(4255, 56350, 'fifty-six thousand three hundred fifty');\nINSERT INTO t3 VALUES(4256, 31678, 'thirty-one thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(4257, 36192, 'thirty-six thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(4258, 88732, 'eighty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(4259, 78366, 'seventy-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(4260, 44574, 'forty-four thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(4261, 44046, 'forty-four thousand forty-six');\nINSERT INTO t3 VALUES(4262, 56665, 'fifty-six thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(4263, 24447, 'twenty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(4264, 17583, 'seventeen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(4265, 77045, 'seventy-seven thousand forty-five');\nINSERT INTO t3 VALUES(4266, 39551, 'thirty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(4267, 27270, 'twenty-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(4268, 10895, 'ten thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(4269, 14927, 'fourteen thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(4270, 9843, 'nine thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(4271, 69052, 'sixty-nine thousand fifty-two');\nINSERT INTO t3 VALUES(4272, 40042, 'forty thousand forty-two');\nINSERT INTO t3 VALUES(4273, 26035, 'twenty-six thousand thirty-five');\nINSERT INTO t3 VALUES(4274, 45101, 'forty-five thousand one hundred one');\nINSERT INTO t3 VALUES(4275, 87634, 'eighty-seven thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(4276, 26431, 'twenty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(4277, 95501, 'ninety-five thousand five hundred one');\nINSERT INTO t3 VALUES(4278, 43019, 'forty-three thousand nineteen');\nINSERT INTO t3 VALUES(4279, 13232, 'thirteen thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(4280, 73359, 'seventy-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(4281, 2032, 'two thousand thirty-two');\nINSERT INTO t3 VALUES(4282, 53445, 'fifty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(4283, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(4284, 54323, 'fifty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(4285, 26353, 'twenty-six thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(4286, 23823, 'twenty-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(4287, 10107, 'ten thousand one hundred seven');\nINSERT INTO t3 VALUES(4288, 38757, 'thirty-eight thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(4289, 72327, 'seventy-two thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(4290, 53587, 'fifty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(4291, 89088, 'eighty-nine thousand eighty-eight');\nINSERT INTO t3 VALUES(4292, 86628, 'eighty-six thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(4293, 10958, 'ten thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(4294, 58652, 'fifty-eight thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(4295, 58097, 'fifty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(4296, 4741, 'four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(4297, 97362, 'ninety-seven thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(4298, 26291, 'twenty-six thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(4299, 90689, 'ninety thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(4300, 21306, 'twenty-one thousand three hundred six');\nINSERT INTO t3 VALUES(4301, 12779, 'twelve thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(4302, 43906, 'forty-three thousand nine hundred six');\nINSERT INTO t3 VALUES(4303, 28345, 'twenty-eight thousand three hundred forty-five');\nINSERT INTO t3 VALUES(4304, 3431, 'three thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(4305, 76962, 'seventy-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(4306, 22743, 'twenty-two thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(4307, 76905, 'seventy-six thousand nine hundred five');\nINSERT INTO t3 VALUES(4308, 10903, 'ten thousand nine hundred three');\nINSERT INTO t3 VALUES(4309, 28471, 'twenty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(4310, 44109, 'forty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(4311, 61065, 'sixty-one thousand sixty-five');\nINSERT INTO t3 VALUES(4312, 5809, 'five thousand eight hundred nine');\nINSERT INTO t3 VALUES(4313, 81563, 'eighty-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(4314, 11876, 'eleven thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(4315, 48951, 'forty-eight thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(4316, 36415, 'thirty-six thousand four hundred fifteen');\nINSERT INTO t3 VALUES(4317, 88986, 'eighty-eight thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(4318, 28960, 'twenty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(4319, 98521, 'ninety-eight thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(4320, 37806, 'thirty-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(4321, 9153, 'nine thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(4322, 96439, 'ninety-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(4323, 351, 'three hundred fifty-one');\nINSERT INTO t3 VALUES(4324, 38983, 'thirty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(4325, 96646, 'ninety-six thousand six hundred forty-six');\nINSERT INTO t3 VALUES(4326, 14385, 'fourteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(4327, 40062, 'forty thousand sixty-two');\nINSERT INTO t3 VALUES(4328, 97905, 'ninety-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(4329, 91239, 'ninety-one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(4330, 91917, 'ninety-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4331, 37756, 'thirty-seven thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(4332, 59951, 'fifty-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(4333, 23108, 'twenty-three thousand one hundred eight');\nINSERT INTO t3 VALUES(4334, 75257, 'seventy-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(4335, 59810, 'fifty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(4336, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(4337, 39751, 'thirty-nine thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(4338, 87298, 'eighty-seven thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(4339, 88339, 'eighty-eight thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(4340, 43114, 'forty-three thousand one hundred fourteen');\nINSERT INTO t3 VALUES(4341, 22084, 'twenty-two thousand eighty-four');\nINSERT INTO t3 VALUES(4342, 17302, 'seventeen thousand three hundred two');\nINSERT INTO t3 VALUES(4343, 99188, 'ninety-nine thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(4344, 85310, 'eighty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(4345, 77776, 'seventy-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(4346, 46995, 'forty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(4347, 38237, 'thirty-eight thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(4348, 75675, 'seventy-five thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(4349, 43642, 'forty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(4350, 19739, 'nineteen thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(4351, 4855, 'four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(4352, 46928, 'forty-six thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4353, 76727, 'seventy-six thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(4354, 56960, 'fifty-six thousand nine hundred sixty');\nINSERT INTO t3 VALUES(4355, 84758, 'eighty-four thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(4356, 5461, 'five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(4357, 75425, 'seventy-five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(4358, 79900, 'seventy-nine thousand nine hundred');\nINSERT INTO t3 VALUES(4359, 49647, 'forty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(4360, 61141, 'sixty-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(4361, 59243, 'fifty-nine thousand two hundred forty-three');\nINSERT INTO t3 VALUES(4362, 51024, 'fifty-one thousand twenty-four');\nINSERT INTO t3 VALUES(4363, 84241, 'eighty-four thousand two hundred forty-one');\nINSERT INTO t3 VALUES(4364, 73234, 'seventy-three thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(4365, 95919, 'ninety-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(4366, 66637, 'sixty-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(4367, 21917, 'twenty-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4368, 40846, 'forty thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(4369, 34424, 'thirty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(4370, 10089, 'ten thousand eighty-nine');\nINSERT INTO t3 VALUES(4371, 55554, 'fifty-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(4372, 36478, 'thirty-six thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(4373, 94012, 'ninety-four thousand twelve');\nINSERT INTO t3 VALUES(4374, 637, 'six hundred thirty-seven');\nINSERT INTO t3 VALUES(4375, 30513, 'thirty thousand five hundred thirteen');\nINSERT INTO t3 VALUES(4376, 33790, 'thirty-three thousand seven hundred ninety');\nINSERT INTO t3 VALUES(4377, 8010, 'eight thousand ten');\nINSERT INTO t3 VALUES(4378, 72371, 'seventy-two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(4379, 59532, 'fifty-nine thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(4380, 38361, 'thirty-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(4381, 88203, 'eighty-eight thousand two hundred three');\nINSERT INTO t3 VALUES(4382, 39850, 'thirty-nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(4383, 27102, 'twenty-seven thousand one hundred two');\nINSERT INTO t3 VALUES(4384, 84757, 'eighty-four thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(4385, 31547, 'thirty-one thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(4386, 80939, 'eighty thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(4387, 72745, 'seventy-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(4388, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(4389, 63270, 'sixty-three thousand two hundred seventy');\nINSERT INTO t3 VALUES(4390, 30207, 'thirty thousand two hundred seven');\nINSERT INTO t3 VALUES(4391, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(4392, 92739, 'ninety-two thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(4393, 99894, 'ninety-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(4394, 88412, 'eighty-eight thousand four hundred twelve');\nINSERT INTO t3 VALUES(4395, 38460, 'thirty-eight thousand four hundred sixty');\nINSERT INTO t3 VALUES(4396, 50074, 'fifty thousand seventy-four');\nINSERT INTO t3 VALUES(4397, 99238, 'ninety-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(4398, 26264, 'twenty-six thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(4399, 73237, 'seventy-three thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(4400, 2738, 'two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(4401, 9490, 'nine thousand four hundred ninety');\nINSERT INTO t3 VALUES(4402, 12569, 'twelve thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(4403, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(4404, 36806, 'thirty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(4405, 48690, 'forty-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(4406, 82009, 'eighty-two thousand nine');\nINSERT INTO t3 VALUES(4407, 48119, 'forty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(4408, 70048, 'seventy thousand forty-eight');\nINSERT INTO t3 VALUES(4409, 35114, 'thirty-five thousand one hundred fourteen');\nINSERT INTO t3 VALUES(4410, 53675, 'fifty-three thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(4411, 59782, 'fifty-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(4412, 38477, 'thirty-eight thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(4413, 60429, 'sixty thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(4414, 29701, 'twenty-nine thousand seven hundred one');\nINSERT INTO t3 VALUES(4415, 36273, 'thirty-six thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(4416, 10241, 'ten thousand two hundred forty-one');\nINSERT INTO t3 VALUES(4417, 97422, 'ninety-seven thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(4418, 21979, 'twenty-one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(4419, 39535, 'thirty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(4420, 90185, 'ninety thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(4421, 6554, 'six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(4422, 69223, 'sixty-nine thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(4423, 38368, 'thirty-eight thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(4424, 79574, 'seventy-nine thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(4425, 6582, 'six thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(4426, 35160, 'thirty-five thousand one hundred sixty');\nINSERT INTO t3 VALUES(4427, 19450, 'nineteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(4428, 26477, 'twenty-six thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(4429, 46417, 'forty-six thousand four hundred seventeen');\nINSERT INTO t3 VALUES(4430, 64785, 'sixty-four thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(4431, 37436, 'thirty-seven thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(4432, 68095, 'sixty-eight thousand ninety-five');\nINSERT INTO t3 VALUES(4433, 90950, 'ninety thousand nine hundred fifty');\nINSERT INTO t3 VALUES(4434, 24468, 'twenty-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(4435, 10165, 'ten thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(4436, 89249, 'eighty-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(4437, 52842, 'fifty-two thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(4438, 65308, 'sixty-five thousand three hundred eight');\nINSERT INTO t3 VALUES(4439, 41228, 'forty-one thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(4440, 86740, 'eighty-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(4441, 25030, 'twenty-five thousand thirty');\nINSERT INTO t3 VALUES(4442, 96003, 'ninety-six thousand three');\nINSERT INTO t3 VALUES(4443, 83718, 'eighty-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(4444, 9289, 'nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(4445, 10192, 'ten thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(4446, 60579, 'sixty thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(4447, 18628, 'eighteen thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(4448, 62218, 'sixty-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(4449, 93144, 'ninety-three thousand one hundred forty-four');\nINSERT INTO t3 VALUES(4450, 11835, 'eleven thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(4451, 26689, 'twenty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(4452, 33231, 'thirty-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(4453, 10699, 'ten thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(4454, 95889, 'ninety-five thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(4455, 48434, 'forty-eight thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(4456, 87579, 'eighty-seven thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(4457, 65327, 'sixty-five thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(4458, 98690, 'ninety-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(4459, 48151, 'forty-eight thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(4460, 22126, 'twenty-two thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(4461, 63437, 'sixty-three thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(4462, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(4463, 15296, 'fifteen thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(4464, 82638, 'eighty-two thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(4465, 24493, 'twenty-four thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(4466, 82118, 'eighty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(4467, 4261, 'four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(4468, 57849, 'fifty-seven thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(4469, 61992, 'sixty-one thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(4470, 42803, 'forty-two thousand eight hundred three');\nINSERT INTO t3 VALUES(4471, 29108, 'twenty-nine thousand one hundred eight');\nINSERT INTO t3 VALUES(4472, 56794, 'fifty-six thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(4473, 18720, 'eighteen thousand seven hundred twenty');\nINSERT INTO t3 VALUES(4474, 98395, 'ninety-eight thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(4475, 63736, 'sixty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(4476, 70233, 'seventy thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(4477, 17035, 'seventeen thousand thirty-five');\nINSERT INTO t3 VALUES(4478, 56136, 'fifty-six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(4479, 51772, 'fifty-one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(4480, 48109, 'forty-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(4481, 70008, 'seventy thousand eight');\nINSERT INTO t3 VALUES(4482, 8527, 'eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(4483, 10841, 'ten thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(4484, 85544, 'eighty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(4485, 54307, 'fifty-four thousand three hundred seven');\nINSERT INTO t3 VALUES(4486, 16928, 'sixteen thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4487, 59755, 'fifty-nine thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(4488, 21933, 'twenty-one thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(4489, 4583, 'four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(4490, 89739, 'eighty-nine thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(4491, 99787, 'ninety-nine thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(4492, 89861, 'eighty-nine thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(4493, 78471, 'seventy-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(4494, 23109, 'twenty-three thousand one hundred nine');\nINSERT INTO t3 VALUES(4495, 55806, 'fifty-five thousand eight hundred six');\nINSERT INTO t3 VALUES(4496, 22721, 'twenty-two thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(4497, 74522, 'seventy-four thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(4498, 6563, 'six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(4499, 56428, 'fifty-six thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(4500, 44307, 'forty-four thousand three hundred seven');\nINSERT INTO t3 VALUES(4501, 49001, 'forty-nine thousand one');\nINSERT INTO t3 VALUES(4502, 40838, 'forty thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(4503, 21195, 'twenty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(4504, 91814, 'ninety-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(4505, 50396, 'fifty thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(4506, 61919, 'sixty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(4507, 48342, 'forty-eight thousand three hundred forty-two');\nINSERT INTO t3 VALUES(4508, 70753, 'seventy thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(4509, 71693, 'seventy-one thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(4510, 74549, 'seventy-four thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(4511, 60812, 'sixty thousand eight hundred twelve');\nINSERT INTO t3 VALUES(4512, 9859, 'nine thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(4513, 36854, 'thirty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(4514, 49793, 'forty-nine thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(4515, 75206, 'seventy-five thousand two hundred six');\nINSERT INTO t3 VALUES(4516, 78372, 'seventy-eight thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(4517, 4951, 'four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(4518, 5564, 'five thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(4519, 7772, 'seven thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(4520, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(4521, 84057, 'eighty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(4522, 79433, 'seventy-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4523, 2373, 'two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(4524, 45496, 'forty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(4525, 87313, 'eighty-seven thousand three hundred thirteen');\nINSERT INTO t3 VALUES(4526, 42552, 'forty-two thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(4527, 8510, 'eight thousand five hundred ten');\nINSERT INTO t3 VALUES(4528, 74269, 'seventy-four thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(4529, 54323, 'fifty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(4530, 20979, 'twenty thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(4531, 83057, 'eighty-three thousand fifty-seven');\nINSERT INTO t3 VALUES(4532, 95647, 'ninety-five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(4533, 80128, 'eighty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(4534, 82775, 'eighty-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(4535, 19071, 'nineteen thousand seventy-one');\nINSERT INTO t3 VALUES(4536, 30344, 'thirty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(4537, 69365, 'sixty-nine thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(4538, 1011, 'one thousand eleven');\nINSERT INTO t3 VALUES(4539, 7474, 'seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(4540, 69215, 'sixty-nine thousand two hundred fifteen');\nINSERT INTO t3 VALUES(4541, 81575, 'eighty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(4542, 62393, 'sixty-two thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(4543, 70505, 'seventy thousand five hundred five');\nINSERT INTO t3 VALUES(4544, 81573, 'eighty-one thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(4545, 80358, 'eighty thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(4546, 91336, 'ninety-one thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(4547, 76106, 'seventy-six thousand one hundred six');\nINSERT INTO t3 VALUES(4548, 38208, 'thirty-eight thousand two hundred eight');\nINSERT INTO t3 VALUES(4549, 46026, 'forty-six thousand twenty-six');\nINSERT INTO t3 VALUES(4550, 22083, 'twenty-two thousand eighty-three');\nINSERT INTO t3 VALUES(4551, 40384, 'forty thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(4552, 93542, 'ninety-three thousand five hundred forty-two');\nINSERT INTO t3 VALUES(4553, 36433, 'thirty-six thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4554, 70229, 'seventy thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(4555, 59512, 'fifty-nine thousand five hundred twelve');\nINSERT INTO t3 VALUES(4556, 26395, 'twenty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(4557, 25628, 'twenty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(4558, 98244, 'ninety-eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(4559, 12642, 'twelve thousand six hundred forty-two');\nINSERT INTO t3 VALUES(4560, 67710, 'sixty-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(4561, 84543, 'eighty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(4562, 94985, 'ninety-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(4563, 80433, 'eighty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(4564, 47221, 'forty-seven thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(4565, 74390, 'seventy-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(4566, 66652, 'sixty-six thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(4567, 59332, 'fifty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(4568, 62413, 'sixty-two thousand four hundred thirteen');\nINSERT INTO t3 VALUES(4569, 68194, 'sixty-eight thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(4570, 719, 'seven hundred nineteen');\nINSERT INTO t3 VALUES(4571, 41170, 'forty-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(4572, 82100, 'eighty-two thousand one hundred');\nINSERT INTO t3 VALUES(4573, 89093, 'eighty-nine thousand ninety-three');\nINSERT INTO t3 VALUES(4574, 75316, 'seventy-five thousand three hundred sixteen');\nINSERT INTO t3 VALUES(4575, 67400, 'sixty-seven thousand four hundred');\nINSERT INTO t3 VALUES(4576, 55157, 'fifty-five thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(4577, 60614, 'sixty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(4578, 5032, 'five thousand thirty-two');\nINSERT INTO t3 VALUES(4579, 56297, 'fifty-six thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(4580, 93783, 'ninety-three thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(4581, 17873, 'seventeen thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(4582, 40278, 'forty thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(4583, 42191, 'forty-two thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(4584, 10403, 'ten thousand four hundred three');\nINSERT INTO t3 VALUES(4585, 62976, 'sixty-two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(4586, 48973, 'forty-eight thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(4587, 84179, 'eighty-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(4588, 82617, 'eighty-two thousand six hundred seventeen');\nINSERT INTO t3 VALUES(4589, 98811, 'ninety-eight thousand eight hundred eleven');\nINSERT INTO t3 VALUES(4590, 10810, 'ten thousand eight hundred ten');\nINSERT INTO t3 VALUES(4591, 95530, 'ninety-five thousand five hundred thirty');\nINSERT INTO t3 VALUES(4592, 60056, 'sixty thousand fifty-six');\nINSERT INTO t3 VALUES(4593, 42375, 'forty-two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(4594, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(4595, 79545, 'seventy-nine thousand five hundred forty-five');\nINSERT INTO t3 VALUES(4596, 34917, 'thirty-four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4597, 8795, 'eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(4598, 69956, 'sixty-nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(4599, 15812, 'fifteen thousand eight hundred twelve');\nINSERT INTO t3 VALUES(4600, 92571, 'ninety-two thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(4601, 23220, 'twenty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(4602, 89679, 'eighty-nine thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(4603, 24818, 'twenty-four thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(4604, 67924, 'sixty-seven thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(4605, 99165, 'ninety-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(4606, 24311, 'twenty-four thousand three hundred eleven');\nINSERT INTO t3 VALUES(4607, 9894, 'nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(4608, 63083, 'sixty-three thousand eighty-three');\nINSERT INTO t3 VALUES(4609, 92776, 'ninety-two thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(4610, 25999, 'twenty-five thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(4611, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(4612, 23372, 'twenty-three thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(4613, 62772, 'sixty-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(4614, 26046, 'twenty-six thousand forty-six');\nINSERT INTO t3 VALUES(4615, 95053, 'ninety-five thousand fifty-three');\nINSERT INTO t3 VALUES(4616, 2782, 'two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(4617, 54566, 'fifty-four thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(4618, 42688, 'forty-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(4619, 79565, 'seventy-nine thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(4620, 54007, 'fifty-four thousand seven');\nINSERT INTO t3 VALUES(4621, 90412, 'ninety thousand four hundred twelve');\nINSERT INTO t3 VALUES(4622, 58728, 'fifty-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(4623, 37957, 'thirty-seven thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(4624, 43202, 'forty-three thousand two hundred two');\nINSERT INTO t3 VALUES(4625, 49790, 'forty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(4626, 33414, 'thirty-three thousand four hundred fourteen');\nINSERT INTO t3 VALUES(4627, 42322, 'forty-two thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(4628, 66051, 'sixty-six thousand fifty-one');\nINSERT INTO t3 VALUES(4629, 38905, 'thirty-eight thousand nine hundred five');\nINSERT INTO t3 VALUES(4630, 48833, 'forty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(4631, 5917, 'five thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(4632, 24691, 'twenty-four thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(4633, 1307, 'one thousand three hundred seven');\nINSERT INTO t3 VALUES(4634, 81004, 'eighty-one thousand four');\nINSERT INTO t3 VALUES(4635, 55384, 'fifty-five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(4636, 8380, 'eight thousand three hundred eighty');\nINSERT INTO t3 VALUES(4637, 7495, 'seven thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(4638, 1119, 'one thousand one hundred nineteen');\nINSERT INTO t3 VALUES(4639, 30853, 'thirty thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(4640, 44294, 'forty-four thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(4641, 17223, 'seventeen thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(4642, 71350, 'seventy-one thousand three hundred fifty');\nINSERT INTO t3 VALUES(4643, 47958, 'forty-seven thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(4644, 55460, 'fifty-five thousand four hundred sixty');\nINSERT INTO t3 VALUES(4645, 16224, 'sixteen thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(4646, 7300, 'seven thousand three hundred');\nINSERT INTO t3 VALUES(4647, 64606, 'sixty-four thousand six hundred six');\nINSERT INTO t3 VALUES(4648, 4906, 'four thousand nine hundred six');\nINSERT INTO t3 VALUES(4649, 83154, 'eighty-three thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(4650, 29720, 'twenty-nine thousand seven hundred twenty');\nINSERT INTO t3 VALUES(4651, 26178, 'twenty-six thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(4652, 67536, 'sixty-seven thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(4653, 89097, 'eighty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(4654, 69360, 'sixty-nine thousand three hundred sixty');\nINSERT INTO t3 VALUES(4655, 75725, 'seventy-five thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(4656, 31599, 'thirty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(4657, 86746, 'eighty-six thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4658, 8155, 'eight thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(4659, 10435, 'ten thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(4660, 64746, 'sixty-four thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4661, 88342, 'eighty-eight thousand three hundred forty-two');\nINSERT INTO t3 VALUES(4662, 29044, 'twenty-nine thousand forty-four');\nINSERT INTO t3 VALUES(4663, 87397, 'eighty-seven thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(4664, 95840, 'ninety-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(4665, 10172, 'ten thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(4666, 61756, 'sixty-one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(4667, 58421, 'fifty-eight thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(4668, 81554, 'eighty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(4669, 45405, 'forty-five thousand four hundred five');\nINSERT INTO t3 VALUES(4670, 87799, 'eighty-seven thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(4671, 896, 'eight hundred ninety-six');\nINSERT INTO t3 VALUES(4672, 87029, 'eighty-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(4673, 75762, 'seventy-five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(4674, 66069, 'sixty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(4675, 37825, 'thirty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(4676, 2593, 'two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(4677, 64303, 'sixty-four thousand three hundred three');\nINSERT INTO t3 VALUES(4678, 19227, 'nineteen thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(4679, 87241, 'eighty-seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(4680, 73328, 'seventy-three thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(4681, 98135, 'ninety-eight thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(4682, 96177, 'ninety-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(4683, 50127, 'fifty thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(4684, 13236, 'thirteen thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(4685, 78778, 'seventy-eight thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(4686, 67244, 'sixty-seven thousand two hundred forty-four');\nINSERT INTO t3 VALUES(4687, 73829, 'seventy-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(4688, 86310, 'eighty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(4689, 86329, 'eighty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(4690, 58308, 'fifty-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(4691, 85135, 'eighty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(4692, 62129, 'sixty-two thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(4693, 41309, 'forty-one thousand three hundred nine');\nINSERT INTO t3 VALUES(4694, 80303, 'eighty thousand three hundred three');\nINSERT INTO t3 VALUES(4695, 5007, 'five thousand seven');\nINSERT INTO t3 VALUES(4696, 53727, 'fifty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(4697, 48423, 'forty-eight thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(4698, 75795, 'seventy-five thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(4699, 34905, 'thirty-four thousand nine hundred five');\nINSERT INTO t3 VALUES(4700, 89553, 'eighty-nine thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(4701, 43494, 'forty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(4702, 40590, 'forty thousand five hundred ninety');\nINSERT INTO t3 VALUES(4703, 85488, 'eighty-five thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(4704, 12019, 'twelve thousand nineteen');\nINSERT INTO t3 VALUES(4705, 97967, 'ninety-seven thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(4706, 82118, 'eighty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(4707, 64177, 'sixty-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(4708, 62453, 'sixty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(4709, 7315, 'seven thousand three hundred fifteen');\nINSERT INTO t3 VALUES(4710, 45527, 'forty-five thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(4711, 68159, 'sixty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(4712, 52376, 'fifty-two thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(4713, 22528, 'twenty-two thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(4714, 38052, 'thirty-eight thousand fifty-two');\nINSERT INTO t3 VALUES(4715, 33765, 'thirty-three thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(4716, 58029, 'fifty-eight thousand twenty-nine');\nINSERT INTO t3 VALUES(4717, 69443, 'sixty-nine thousand four hundred forty-three');\nINSERT INTO t3 VALUES(4718, 34837, 'thirty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(4719, 75496, 'seventy-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(4720, 65687, 'sixty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(4721, 24103, 'twenty-four thousand one hundred three');\nINSERT INTO t3 VALUES(4722, 99773, 'ninety-nine thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(4723, 51813, 'fifty-one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(4724, 66608, 'sixty-six thousand six hundred eight');\nINSERT INTO t3 VALUES(4725, 30541, 'thirty thousand five hundred forty-one');\nINSERT INTO t3 VALUES(4726, 88596, 'eighty-eight thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(4727, 90716, 'ninety thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(4728, 33156, 'thirty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(4729, 31137, 'thirty-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(4730, 17821, 'seventeen thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(4731, 79641, 'seventy-nine thousand six hundred forty-one');\nINSERT INTO t3 VALUES(4732, 24006, 'twenty-four thousand six');\nINSERT INTO t3 VALUES(4733, 96030, 'ninety-six thousand thirty');\nINSERT INTO t3 VALUES(4734, 93044, 'ninety-three thousand forty-four');\nINSERT INTO t3 VALUES(4735, 31485, 'thirty-one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(4736, 37035, 'thirty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(4737, 12731, 'twelve thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(4738, 46662, 'forty-six thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(4739, 85320, 'eighty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(4740, 26230, 'twenty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(4741, 48928, 'forty-eight thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4742, 42254, 'forty-two thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(4743, 74631, 'seventy-four thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(4744, 87733, 'eighty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(4745, 69235, 'sixty-nine thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(4746, 94475, 'ninety-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(4747, 33328, 'thirty-three thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(4748, 65184, 'sixty-five thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(4749, 66030, 'sixty-six thousand thirty');\nINSERT INTO t3 VALUES(4750, 91364, 'ninety-one thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(4751, 57230, 'fifty-seven thousand two hundred thirty');\nINSERT INTO t3 VALUES(4752, 26124, 'twenty-six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(4753, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(4754, 37321, 'thirty-seven thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(4755, 62352, 'sixty-two thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(4756, 56073, 'fifty-six thousand seventy-three');\nINSERT INTO t3 VALUES(4757, 15541, 'fifteen thousand five hundred forty-one');\nINSERT INTO t3 VALUES(4758, 33714, 'thirty-three thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(4759, 32329, 'thirty-two thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(4760, 77725, 'seventy-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(4761, 14444, 'fourteen thousand four hundred forty-four');\nINSERT INTO t3 VALUES(4762, 48509, 'forty-eight thousand five hundred nine');\nINSERT INTO t3 VALUES(4763, 85064, 'eighty-five thousand sixty-four');\nINSERT INTO t3 VALUES(4764, 85186, 'eighty-five thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(4765, 1309, 'one thousand three hundred nine');\nINSERT INTO t3 VALUES(4766, 12047, 'twelve thousand forty-seven');\nINSERT INTO t3 VALUES(4767, 31292, 'thirty-one thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(4768, 32860, 'thirty-two thousand eight hundred sixty');\nINSERT INTO t3 VALUES(4769, 1770, 'one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(4770, 8379, 'eight thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(4771, 16549, 'sixteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(4772, 51602, 'fifty-one thousand six hundred two');\nINSERT INTO t3 VALUES(4773, 9098, 'nine thousand ninety-eight');\nINSERT INTO t3 VALUES(4774, 86228, 'eighty-six thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(4775, 56084, 'fifty-six thousand eighty-four');\nINSERT INTO t3 VALUES(4776, 67274, 'sixty-seven thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(4777, 9238, 'nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(4778, 42824, 'forty-two thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(4779, 95073, 'ninety-five thousand seventy-three');\nINSERT INTO t3 VALUES(4780, 64989, 'sixty-four thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(4781, 10437, 'ten thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(4782, 49216, 'forty-nine thousand two hundred sixteen');\nINSERT INTO t3 VALUES(4783, 17560, 'seventeen thousand five hundred sixty');\nINSERT INTO t3 VALUES(4784, 63865, 'sixty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(4785, 54517, 'fifty-four thousand five hundred seventeen');\nINSERT INTO t3 VALUES(4786, 74263, 'seventy-four thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(4787, 31483, 'thirty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(4788, 38967, 'thirty-eight thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(4789, 10923, 'ten thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(4790, 47843, 'forty-seven thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(4791, 84922, 'eighty-four thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(4792, 64591, 'sixty-four thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(4793, 80493, 'eighty thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(4794, 24902, 'twenty-four thousand nine hundred two');\nINSERT INTO t3 VALUES(4795, 63564, 'sixty-three thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(4796, 2881, 'two thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(4797, 13764, 'thirteen thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(4798, 61888, 'sixty-one thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(4799, 2098, 'two thousand ninety-eight');\nINSERT INTO t3 VALUES(4800, 45862, 'forty-five thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(4801, 69082, 'sixty-nine thousand eighty-two');\nINSERT INTO t3 VALUES(4802, 66271, 'sixty-six thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(4803, 42768, 'forty-two thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(4804, 35226, 'thirty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(4805, 84784, 'eighty-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(4806, 74277, 'seventy-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(4807, 92202, 'ninety-two thousand two hundred two');\nINSERT INTO t3 VALUES(4808, 80464, 'eighty thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(4809, 27697, 'twenty-seven thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(4810, 5353, 'five thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(4811, 5002, 'five thousand two');\nINSERT INTO t3 VALUES(4812, 7687, 'seven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(4813, 29414, 'twenty-nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(4814, 98274, 'ninety-eight thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(4815, 39652, 'thirty-nine thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(4816, 74237, 'seventy-four thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(4817, 26761, 'twenty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(4818, 74287, 'seventy-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(4819, 84035, 'eighty-four thousand thirty-five');\nINSERT INTO t3 VALUES(4820, 82892, 'eighty-two thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(4821, 1117, 'one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(4822, 32247, 'thirty-two thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(4823, 12453, 'twelve thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(4824, 25244, 'twenty-five thousand two hundred forty-four');\nINSERT INTO t3 VALUES(4825, 89896, 'eighty-nine thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(4826, 59883, 'fifty-nine thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(4827, 57300, 'fifty-seven thousand three hundred');\nINSERT INTO t3 VALUES(4828, 11907, 'eleven thousand nine hundred seven');\nINSERT INTO t3 VALUES(4829, 99518, 'ninety-nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(4830, 41801, 'forty-one thousand eight hundred one');\nINSERT INTO t3 VALUES(4831, 1239, 'one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(4832, 47840, 'forty-seven thousand eight hundred forty');\nINSERT INTO t3 VALUES(4833, 50098, 'fifty thousand ninety-eight');\nINSERT INTO t3 VALUES(4834, 77987, 'seventy-seven thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(4835, 23982, 'twenty-three thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(4836, 8077, 'eight thousand seventy-seven');\nINSERT INTO t3 VALUES(4837, 12074, 'twelve thousand seventy-four');\nINSERT INTO t3 VALUES(4838, 15024, 'fifteen thousand twenty-four');\nINSERT INTO t3 VALUES(4839, 7685, 'seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(4840, 88200, 'eighty-eight thousand two hundred');\nINSERT INTO t3 VALUES(4841, 23529, 'twenty-three thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(4842, 68902, 'sixty-eight thousand nine hundred two');\nINSERT INTO t3 VALUES(4843, 81465, 'eighty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(4844, 32099, 'thirty-two thousand ninety-nine');\nINSERT INTO t3 VALUES(4845, 73640, 'seventy-three thousand six hundred forty');\nINSERT INTO t3 VALUES(4846, 34012, 'thirty-four thousand twelve');\nINSERT INTO t3 VALUES(4847, 61675, 'sixty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(4848, 7280, 'seven thousand two hundred eighty');\nINSERT INTO t3 VALUES(4849, 82103, 'eighty-two thousand one hundred three');\nINSERT INTO t3 VALUES(4850, 70799, 'seventy thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(4851, 50494, 'fifty thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(4852, 77560, 'seventy-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(4853, 38742, 'thirty-eight thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(4854, 24288, 'twenty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(4855, 69058, 'sixty-nine thousand fifty-eight');\nINSERT INTO t3 VALUES(4856, 12216, 'twelve thousand two hundred sixteen');\nINSERT INTO t3 VALUES(4857, 99738, 'ninety-nine thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(4858, 10590, 'ten thousand five hundred ninety');\nINSERT INTO t3 VALUES(4859, 15070, 'fifteen thousand seventy');\nINSERT INTO t3 VALUES(4860, 90736, 'ninety thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(4861, 56521, 'fifty-six thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(4862, 75640, 'seventy-five thousand six hundred forty');\nINSERT INTO t3 VALUES(4863, 14212, 'fourteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(4864, 81937, 'eighty-one thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(4865, 99931, 'ninety-nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(4866, 64409, 'sixty-four thousand four hundred nine');\nINSERT INTO t3 VALUES(4867, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(4868, 12079, 'twelve thousand seventy-nine');\nINSERT INTO t3 VALUES(4869, 31677, 'thirty-one thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(4870, 95818, 'ninety-five thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(4871, 92679, 'ninety-two thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(4872, 80314, 'eighty thousand three hundred fourteen');\nINSERT INTO t3 VALUES(4873, 31833, 'thirty-one thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(4874, 14644, 'fourteen thousand six hundred forty-four');\nINSERT INTO t3 VALUES(4875, 57882, 'fifty-seven thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(4876, 26362, 'twenty-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(4877, 29571, 'twenty-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(4878, 44941, 'forty-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(4879, 79555, 'seventy-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(4880, 70562, 'seventy thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(4881, 99769, 'ninety-nine thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(4882, 34297, 'thirty-four thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(4883, 59558, 'fifty-nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(4884, 17514, 'seventeen thousand five hundred fourteen');\nINSERT INTO t3 VALUES(4885, 18280, 'eighteen thousand two hundred eighty');\nINSERT INTO t3 VALUES(4886, 15878, 'fifteen thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(4887, 24067, 'twenty-four thousand sixty-seven');\nINSERT INTO t3 VALUES(4888, 88931, 'eighty-eight thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(4889, 5181, 'five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(4890, 55054, 'fifty-five thousand fifty-four');\nINSERT INTO t3 VALUES(4891, 34607, 'thirty-four thousand six hundred seven');\nINSERT INTO t3 VALUES(4892, 26048, 'twenty-six thousand forty-eight');\nINSERT INTO t3 VALUES(4893, 21009, 'twenty-one thousand nine');\nINSERT INTO t3 VALUES(4894, 79519, 'seventy-nine thousand five hundred nineteen');\nINSERT INTO t3 VALUES(4895, 13919, 'thirteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(4896, 48879, 'forty-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(4897, 10839, 'ten thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(4898, 12357, 'twelve thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(4899, 84730, 'eighty-four thousand seven hundred thirty');\nINSERT INTO t3 VALUES(4900, 43492, 'forty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(4901, 55627, 'fifty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(4902, 44426, 'forty-four thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(4903, 14694, 'fourteen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(4904, 69454, 'sixty-nine thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(4905, 88501, 'eighty-eight thousand five hundred one');\nINSERT INTO t3 VALUES(4906, 55253, 'fifty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(4907, 75291, 'seventy-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(4908, 95152, 'ninety-five thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(4909, 31034, 'thirty-one thousand thirty-four');\nINSERT INTO t3 VALUES(4910, 99726, 'ninety-nine thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(4911, 24828, 'twenty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(4912, 44348, 'forty-four thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(4913, 30303, 'thirty thousand three hundred three');\nINSERT INTO t3 VALUES(4914, 5326, 'five thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(4915, 34050, 'thirty-four thousand fifty');\nINSERT INTO t3 VALUES(4916, 6457, 'six thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(4917, 41994, 'forty-one thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(4918, 59071, 'fifty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(4919, 23307, 'twenty-three thousand three hundred seven');\nINSERT INTO t3 VALUES(4920, 16993, 'sixteen thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(4921, 27380, 'twenty-seven thousand three hundred eighty');\nINSERT INTO t3 VALUES(4922, 52711, 'fifty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(4923, 16664, 'sixteen thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(4924, 83573, 'eighty-three thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(4925, 61448, 'sixty-one thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(4926, 46892, 'forty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(4927, 36083, 'thirty-six thousand eighty-three');\nINSERT INTO t3 VALUES(4928, 3469, 'three thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(4929, 5031, 'five thousand thirty-one');\nINSERT INTO t3 VALUES(4930, 21199, 'twenty-one thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(4931, 92415, 'ninety-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(4932, 51844, 'fifty-one thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(4933, 24551, 'twenty-four thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(4934, 81455, 'eighty-one thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(4935, 96000, 'ninety-six thousand');\nINSERT INTO t3 VALUES(4936, 71240, 'seventy-one thousand two hundred forty');\nINSERT INTO t3 VALUES(4937, 18378, 'eighteen thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(4938, 77605, 'seventy-seven thousand six hundred five');\nINSERT INTO t3 VALUES(4939, 49959, 'forty-nine thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(4940, 63338, 'sixty-three thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(4941, 44667, 'forty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(4942, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(4943, 40813, 'forty thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(4944, 70472, 'seventy thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(4945, 58210, 'fifty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(4946, 39310, 'thirty-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(4947, 51746, 'fifty-one thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(4948, 85335, 'eighty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(4949, 77283, 'seventy-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(4950, 84380, 'eighty-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(4951, 50945, 'fifty thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(4952, 32624, 'thirty-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(4953, 37367, 'thirty-seven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(4954, 34802, 'thirty-four thousand eight hundred two');\nINSERT INTO t3 VALUES(4955, 94202, 'ninety-four thousand two hundred two');\nINSERT INTO t3 VALUES(4956, 57492, 'fifty-seven thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(4957, 76334, 'seventy-six thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(4958, 50928, 'fifty thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(4959, 43286, 'forty-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(4960, 45969, 'forty-five thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(4961, 58281, 'fifty-eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(4962, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t3 VALUES(4963, 76339, 'seventy-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(4964, 99403, 'ninety-nine thousand four hundred three');\nINSERT INTO t3 VALUES(4965, 74862, 'seventy-four thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(4966, 33539, 'thirty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(4967, 33275, 'thirty-three thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(4968, 91223, 'ninety-one thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(4969, 59855, 'fifty-nine thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(4970, 78539, 'seventy-eight thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(4971, 20838, 'twenty thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(4972, 96413, 'ninety-six thousand four hundred thirteen');\nINSERT INTO t3 VALUES(4973, 41297, 'forty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(4974, 97134, 'ninety-seven thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(4975, 33788, 'thirty-three thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(4976, 18351, 'eighteen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(4977, 45544, 'forty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(4978, 95782, 'ninety-five thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(4979, 205, 'two hundred five');\nINSERT INTO t3 VALUES(4980, 37846, 'thirty-seven thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(4981, 31315, 'thirty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(4982, 84818, 'eighty-four thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(4983, 3995, 'three thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(4984, 73963, 'seventy-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(4985, 26633, 'twenty-six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(4986, 19891, 'nineteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(4987, 49856, 'forty-nine thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(4988, 69721, 'sixty-nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(4989, 43404, 'forty-three thousand four hundred four');\nINSERT INTO t3 VALUES(4990, 89304, 'eighty-nine thousand three hundred four');\nINSERT INTO t3 VALUES(4991, 21843, 'twenty-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(4992, 59798, 'fifty-nine thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(4993, 46883, 'forty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(4994, 58019, 'fifty-eight thousand nineteen');\nINSERT INTO t3 VALUES(4995, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(4996, 82912, 'eighty-two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(4997, 8586, 'eight thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(4998, 6723, 'six thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(4999, 85940, 'eighty-five thousand nine hundred forty');\nINSERT INTO t3 VALUES(5000, 66113, 'sixty-six thousand one hundred thirteen');\nINSERT INTO t3 VALUES(5001, 24322, 'twenty-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(5002, 8130, 'eight thousand one hundred thirty');\nINSERT INTO t3 VALUES(5003, 95971, 'ninety-five thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(5004, 14644, 'fourteen thousand six hundred forty-four');\nINSERT INTO t3 VALUES(5005, 37490, 'thirty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(5006, 65844, 'sixty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(5007, 84700, 'eighty-four thousand seven hundred');\nINSERT INTO t3 VALUES(5008, 10621, 'ten thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(5009, 80919, 'eighty thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(5010, 16642, 'sixteen thousand six hundred forty-two');\nINSERT INTO t3 VALUES(5011, 43103, 'forty-three thousand one hundred three');\nINSERT INTO t3 VALUES(5012, 25487, 'twenty-five thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(5013, 10485, 'ten thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5014, 56375, 'fifty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5015, 10406, 'ten thousand four hundred six');\nINSERT INTO t3 VALUES(5016, 5808, 'five thousand eight hundred eight');\nINSERT INTO t3 VALUES(5017, 5514, 'five thousand five hundred fourteen');\nINSERT INTO t3 VALUES(5018, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(5019, 1775, 'one thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(5020, 68369, 'sixty-eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(5021, 69277, 'sixty-nine thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(5022, 25740, 'twenty-five thousand seven hundred forty');\nINSERT INTO t3 VALUES(5023, 78878, 'seventy-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(5024, 83454, 'eighty-three thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(5025, 84490, 'eighty-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(5026, 39202, 'thirty-nine thousand two hundred two');\nINSERT INTO t3 VALUES(5027, 53072, 'fifty-three thousand seventy-two');\nINSERT INTO t3 VALUES(5028, 824, 'eight hundred twenty-four');\nINSERT INTO t3 VALUES(5029, 35709, 'thirty-five thousand seven hundred nine');\nINSERT INTO t3 VALUES(5030, 6074, 'six thousand seventy-four');\nINSERT INTO t3 VALUES(5031, 2581, 'two thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(5032, 24809, 'twenty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(5033, 12970, 'twelve thousand nine hundred seventy');\nINSERT INTO t3 VALUES(5034, 79953, 'seventy-nine thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(5035, 42603, 'forty-two thousand six hundred three');\nINSERT INTO t3 VALUES(5036, 14562, 'fourteen thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(5037, 79746, 'seventy-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(5038, 27403, 'twenty-seven thousand four hundred three');\nINSERT INTO t3 VALUES(5039, 16608, 'sixteen thousand six hundred eight');\nINSERT INTO t3 VALUES(5040, 92994, 'ninety-two thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(5041, 71370, 'seventy-one thousand three hundred seventy');\nINSERT INTO t3 VALUES(5042, 62781, 'sixty-two thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(5043, 39164, 'thirty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(5044, 55574, 'fifty-five thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(5045, 18066, 'eighteen thousand sixty-six');\nINSERT INTO t3 VALUES(5046, 26590, 'twenty-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(5047, 22684, 'twenty-two thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(5048, 87821, 'eighty-seven thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(5049, 50642, 'fifty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(5050, 69741, 'sixty-nine thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(5051, 98648, 'ninety-eight thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(5052, 99862, 'ninety-nine thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(5053, 58576, 'fifty-eight thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(5054, 69126, 'sixty-nine thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(5055, 73653, 'seventy-three thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(5056, 71722, 'seventy-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(5057, 2286, 'two thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(5058, 71000, 'seventy-one thousand');\nINSERT INTO t3 VALUES(5059, 79784, 'seventy-nine thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(5060, 82345, 'eighty-two thousand three hundred forty-five');\nINSERT INTO t3 VALUES(5061, 50878, 'fifty thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(5062, 55205, 'fifty-five thousand two hundred five');\nINSERT INTO t3 VALUES(5063, 60071, 'sixty thousand seventy-one');\nINSERT INTO t3 VALUES(5064, 11228, 'eleven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(5065, 43608, 'forty-three thousand six hundred eight');\nINSERT INTO t3 VALUES(5066, 85486, 'eighty-five thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(5067, 37168, 'thirty-seven thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(5068, 60688, 'sixty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(5069, 50678, 'fifty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(5070, 61226, 'sixty-one thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(5071, 38096, 'thirty-eight thousand ninety-six');\nINSERT INTO t3 VALUES(5072, 72403, 'seventy-two thousand four hundred three');\nINSERT INTO t3 VALUES(5073, 40796, 'forty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(5074, 60536, 'sixty thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(5075, 32704, 'thirty-two thousand seven hundred four');\nINSERT INTO t3 VALUES(5076, 82359, 'eighty-two thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(5077, 46989, 'forty-six thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(5078, 73857, 'seventy-three thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(5079, 65620, 'sixty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(5080, 13829, 'thirteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(5081, 48515, 'forty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(5082, 57684, 'fifty-seven thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(5083, 50132, 'fifty thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(5084, 41830, 'forty-one thousand eight hundred thirty');\nINSERT INTO t3 VALUES(5085, 78551, 'seventy-eight thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(5086, 27057, 'twenty-seven thousand fifty-seven');\nINSERT INTO t3 VALUES(5087, 21641, 'twenty-one thousand six hundred forty-one');\nINSERT INTO t3 VALUES(5088, 90341, 'ninety thousand three hundred forty-one');\nINSERT INTO t3 VALUES(5089, 411, 'four hundred eleven');\nINSERT INTO t3 VALUES(5090, 50736, 'fifty thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(5091, 85361, 'eighty-five thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(5092, 94252, 'ninety-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(5093, 8800, 'eight thousand eight hundred');\nINSERT INTO t3 VALUES(5094, 70026, 'seventy thousand twenty-six');\nINSERT INTO t3 VALUES(5095, 41483, 'forty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(5096, 32335, 'thirty-two thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(5097, 38522, 'thirty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(5098, 55682, 'fifty-five thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(5099, 78728, 'seventy-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(5100, 41736, 'forty-one thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(5101, 10910, 'ten thousand nine hundred ten');\nINSERT INTO t3 VALUES(5102, 22696, 'twenty-two thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(5103, 88552, 'eighty-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(5104, 60685, 'sixty thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(5105, 5912, 'five thousand nine hundred twelve');\nINSERT INTO t3 VALUES(5106, 32618, 'thirty-two thousand six hundred eighteen');\nINSERT INTO t3 VALUES(5107, 75531, 'seventy-five thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(5108, 34889, 'thirty-four thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(5109, 86766, 'eighty-six thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(5110, 57996, 'fifty-seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(5111, 43065, 'forty-three thousand sixty-five');\nINSERT INTO t3 VALUES(5112, 26383, 'twenty-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(5113, 55552, 'fifty-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(5114, 36143, 'thirty-six thousand one hundred forty-three');\nINSERT INTO t3 VALUES(5115, 67325, 'sixty-seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(5116, 52968, 'fifty-two thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(5117, 9070, 'nine thousand seventy');\nINSERT INTO t3 VALUES(5118, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5119, 30889, 'thirty thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(5120, 18379, 'eighteen thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(5121, 16918, 'sixteen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(5122, 87570, 'eighty-seven thousand five hundred seventy');\nINSERT INTO t3 VALUES(5123, 22310, 'twenty-two thousand three hundred ten');\nINSERT INTO t3 VALUES(5124, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t3 VALUES(5125, 90795, 'ninety thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(5126, 6061, 'six thousand sixty-one');\nINSERT INTO t3 VALUES(5127, 66987, 'sixty-six thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(5128, 39779, 'thirty-nine thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(5129, 19394, 'nineteen thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(5130, 46010, 'forty-six thousand ten');\nINSERT INTO t3 VALUES(5131, 91488, 'ninety-one thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(5132, 66494, 'sixty-six thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(5133, 39525, 'thirty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(5134, 31382, 'thirty-one thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(5135, 3680, 'three thousand six hundred eighty');\nINSERT INTO t3 VALUES(5136, 95424, 'ninety-five thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(5137, 21679, 'twenty-one thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(5138, 39293, 'thirty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(5139, 3425, 'three thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(5140, 74006, 'seventy-four thousand six');\nINSERT INTO t3 VALUES(5141, 17009, 'seventeen thousand nine');\nINSERT INTO t3 VALUES(5142, 14475, 'fourteen thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(5143, 48520, 'forty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(5144, 70568, 'seventy thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(5145, 24675, 'twenty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(5146, 42895, 'forty-two thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(5147, 39865, 'thirty-nine thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(5148, 70375, 'seventy thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5149, 75726, 'seventy-five thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(5150, 91335, 'ninety-one thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(5151, 26796, 'twenty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(5152, 17408, 'seventeen thousand four hundred eight');\nINSERT INTO t3 VALUES(5153, 50712, 'fifty thousand seven hundred twelve');\nINSERT INTO t3 VALUES(5154, 48776, 'forty-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(5155, 33845, 'thirty-three thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(5156, 87474, 'eighty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(5157, 32206, 'thirty-two thousand two hundred six');\nINSERT INTO t3 VALUES(5158, 65223, 'sixty-five thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(5159, 93682, 'ninety-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(5160, 35828, 'thirty-five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(5161, 76847, 'seventy-six thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(5162, 14408, 'fourteen thousand four hundred eight');\nINSERT INTO t3 VALUES(5163, 93166, 'ninety-three thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(5164, 65629, 'sixty-five thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(5165, 75257, 'seventy-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(5166, 17025, 'seventeen thousand twenty-five');\nINSERT INTO t3 VALUES(5167, 19091, 'nineteen thousand ninety-one');\nINSERT INTO t3 VALUES(5168, 98046, 'ninety-eight thousand forty-six');\nINSERT INTO t3 VALUES(5169, 54254, 'fifty-four thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(5170, 81464, 'eighty-one thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(5171, 44732, 'forty-four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(5172, 91734, 'ninety-one thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(5173, 47346, 'forty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(5174, 58097, 'fifty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(5175, 75380, 'seventy-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(5176, 39555, 'thirty-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(5177, 47373, 'forty-seven thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(5178, 64877, 'sixty-four thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(5179, 21348, 'twenty-one thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(5180, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t3 VALUES(5181, 13435, 'thirteen thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5182, 15048, 'fifteen thousand forty-eight');\nINSERT INTO t3 VALUES(5183, 77108, 'seventy-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(5184, 25707, 'twenty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(5185, 16716, 'sixteen thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(5186, 40386, 'forty thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(5187, 94386, 'ninety-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(5188, 61062, 'sixty-one thousand sixty-two');\nINSERT INTO t3 VALUES(5189, 32277, 'thirty-two thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(5190, 7382, 'seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(5191, 77969, 'seventy-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(5192, 97830, 'ninety-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(5193, 44012, 'forty-four thousand twelve');\nINSERT INTO t3 VALUES(5194, 27865, 'twenty-seven thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(5195, 2111, 'two thousand one hundred eleven');\nINSERT INTO t3 VALUES(5196, 92151, 'ninety-two thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(5197, 33711, 'thirty-three thousand seven hundred eleven');\nINSERT INTO t3 VALUES(5198, 86673, 'eighty-six thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5199, 32063, 'thirty-two thousand sixty-three');\nINSERT INTO t3 VALUES(5200, 58137, 'fifty-eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(5201, 26677, 'twenty-six thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(5202, 9393, 'nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(5203, 87719, 'eighty-seven thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(5204, 29921, 'twenty-nine thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(5205, 43815, 'forty-three thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(5206, 79022, 'seventy-nine thousand twenty-two');\nINSERT INTO t3 VALUES(5207, 49840, 'forty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(5208, 71770, 'seventy-one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(5209, 17187, 'seventeen thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5210, 71694, 'seventy-one thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(5211, 26982, 'twenty-six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(5212, 74211, 'seventy-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(5213, 12564, 'twelve thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(5214, 62500, 'sixty-two thousand five hundred');\nINSERT INTO t3 VALUES(5215, 50541, 'fifty thousand five hundred forty-one');\nINSERT INTO t3 VALUES(5216, 19991, 'nineteen thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(5217, 13397, 'thirteen thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5218, 44687, 'forty-four thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(5219, 70617, 'seventy thousand six hundred seventeen');\nINSERT INTO t3 VALUES(5220, 53581, 'fifty-three thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(5221, 18273, 'eighteen thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(5222, 20163, 'twenty thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(5223, 25076, 'twenty-five thousand seventy-six');\nINSERT INTO t3 VALUES(5224, 25315, 'twenty-five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(5225, 63187, 'sixty-three thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5226, 28879, 'twenty-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(5227, 21950, 'twenty-one thousand nine hundred fifty');\nINSERT INTO t3 VALUES(5228, 19570, 'nineteen thousand five hundred seventy');\nINSERT INTO t3 VALUES(5229, 18020, 'eighteen thousand twenty');\nINSERT INTO t3 VALUES(5230, 56642, 'fifty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(5231, 31942, 'thirty-one thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(5232, 57754, 'fifty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(5233, 65107, 'sixty-five thousand one hundred seven');\nINSERT INTO t3 VALUES(5234, 895, 'eight hundred ninety-five');\nINSERT INTO t3 VALUES(5235, 42916, 'forty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(5236, 77099, 'seventy-seven thousand ninety-nine');\nINSERT INTO t3 VALUES(5237, 30448, 'thirty thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(5238, 49991, 'forty-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(5239, 39896, 'thirty-nine thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(5240, 9542, 'nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(5241, 20577, 'twenty thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(5242, 86435, 'eighty-six thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5243, 30495, 'thirty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(5244, 16327, 'sixteen thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(5245, 7357, 'seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(5246, 47431, 'forty-seven thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(5247, 53954, 'fifty-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(5248, 89868, 'eighty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(5249, 71608, 'seventy-one thousand six hundred eight');\nINSERT INTO t3 VALUES(5250, 77979, 'seventy-seven thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(5251, 53920, 'fifty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(5252, 17102, 'seventeen thousand one hundred two');\nINSERT INTO t3 VALUES(5253, 41283, 'forty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(5254, 14681, 'fourteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(5255, 36124, 'thirty-six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(5256, 40148, 'forty thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(5257, 53118, 'fifty-three thousand one hundred eighteen');\nINSERT INTO t3 VALUES(5258, 98197, 'ninety-eight thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(5259, 13804, 'thirteen thousand eight hundred four');\nINSERT INTO t3 VALUES(5260, 90432, 'ninety thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(5261, 91215, 'ninety-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(5262, 67540, 'sixty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(5263, 94507, 'ninety-four thousand five hundred seven');\nINSERT INTO t3 VALUES(5264, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(5265, 27722, 'twenty-seven thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(5266, 5525, 'five thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(5267, 82660, 'eighty-two thousand six hundred sixty');\nINSERT INTO t3 VALUES(5268, 2493, 'two thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(5269, 57665, 'fifty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(5270, 11447, 'eleven thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(5271, 50975, 'fifty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(5272, 17031, 'seventeen thousand thirty-one');\nINSERT INTO t3 VALUES(5273, 46062, 'forty-six thousand sixty-two');\nINSERT INTO t3 VALUES(5274, 50788, 'fifty thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(5275, 66717, 'sixty-six thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(5276, 1022, 'one thousand twenty-two');\nINSERT INTO t3 VALUES(5277, 2084, 'two thousand eighty-four');\nINSERT INTO t3 VALUES(5278, 39473, 'thirty-nine thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(5279, 32962, 'thirty-two thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(5280, 3977, 'three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(5281, 97842, 'ninety-seven thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(5282, 30254, 'thirty thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(5283, 50811, 'fifty thousand eight hundred eleven');\nINSERT INTO t3 VALUES(5284, 94204, 'ninety-four thousand two hundred four');\nINSERT INTO t3 VALUES(5285, 4950, 'four thousand nine hundred fifty');\nINSERT INTO t3 VALUES(5286, 89870, 'eighty-nine thousand eight hundred seventy');\nINSERT INTO t3 VALUES(5287, 40037, 'forty thousand thirty-seven');\nINSERT INTO t3 VALUES(5288, 33708, 'thirty-three thousand seven hundred eight');\nINSERT INTO t3 VALUES(5289, 33189, 'thirty-three thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(5290, 68296, 'sixty-eight thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(5291, 48145, 'forty-eight thousand one hundred forty-five');\nINSERT INTO t3 VALUES(5292, 70236, 'seventy thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(5293, 10543, 'ten thousand five hundred forty-three');\nINSERT INTO t3 VALUES(5294, 3280, 'three thousand two hundred eighty');\nINSERT INTO t3 VALUES(5295, 2050, 'two thousand fifty');\nINSERT INTO t3 VALUES(5296, 1989, 'one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(5297, 1699, 'one thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(5298, 45121, 'forty-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(5299, 11781, 'eleven thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(5300, 48271, 'forty-eight thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(5301, 34294, 'thirty-four thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(5302, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(5303, 59753, 'fifty-nine thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(5304, 21853, 'twenty-one thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(5305, 83948, 'eighty-three thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(5306, 37917, 'thirty-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(5307, 60546, 'sixty thousand five hundred forty-six');\nINSERT INTO t3 VALUES(5308, 79951, 'seventy-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(5309, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(5310, 58113, 'fifty-eight thousand one hundred thirteen');\nINSERT INTO t3 VALUES(5311, 28184, 'twenty-eight thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(5312, 62196, 'sixty-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(5313, 87253, 'eighty-seven thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5314, 28779, 'twenty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(5315, 61512, 'sixty-one thousand five hundred twelve');\nINSERT INTO t3 VALUES(5316, 57415, 'fifty-seven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(5317, 45644, 'forty-five thousand six hundred forty-four');\nINSERT INTO t3 VALUES(5318, 73594, 'seventy-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(5319, 34783, 'thirty-four thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(5320, 47691, 'forty-seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(5321, 56864, 'fifty-six thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(5322, 48701, 'forty-eight thousand seven hundred one');\nINSERT INTO t3 VALUES(5323, 43437, 'forty-three thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(5324, 49428, 'forty-nine thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(5325, 69435, 'sixty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5326, 73541, 'seventy-three thousand five hundred forty-one');\nINSERT INTO t3 VALUES(5327, 12359, 'twelve thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(5328, 1215, 'one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(5329, 98618, 'ninety-eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(5330, 79937, 'seventy-nine thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(5331, 7028, 'seven thousand twenty-eight');\nINSERT INTO t3 VALUES(5332, 98602, 'ninety-eight thousand six hundred two');\nINSERT INTO t3 VALUES(5333, 8295, 'eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(5334, 244, 'two hundred forty-four');\nINSERT INTO t3 VALUES(5335, 76684, 'seventy-six thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(5336, 42986, 'forty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(5337, 28285, 'twenty-eight thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5338, 825, 'eight hundred twenty-five');\nINSERT INTO t3 VALUES(5339, 37649, 'thirty-seven thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(5340, 88441, 'eighty-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5341, 71026, 'seventy-one thousand twenty-six');\nINSERT INTO t3 VALUES(5342, 45722, 'forty-five thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(5343, 52700, 'fifty-two thousand seven hundred');\nINSERT INTO t3 VALUES(5344, 95810, 'ninety-five thousand eight hundred ten');\nINSERT INTO t3 VALUES(5345, 71403, 'seventy-one thousand four hundred three');\nINSERT INTO t3 VALUES(5346, 51049, 'fifty-one thousand forty-nine');\nINSERT INTO t3 VALUES(5347, 92748, 'ninety-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(5348, 26485, 'twenty-six thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5349, 87979, 'eighty-seven thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(5350, 91638, 'ninety-one thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(5351, 46457, 'forty-six thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(5352, 78445, 'seventy-eight thousand four hundred forty-five');\nINSERT INTO t3 VALUES(5353, 20075, 'twenty thousand seventy-five');\nINSERT INTO t3 VALUES(5354, 26129, 'twenty-six thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(5355, 57156, 'fifty-seven thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(5356, 21719, 'twenty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(5357, 92302, 'ninety-two thousand three hundred two');\nINSERT INTO t3 VALUES(5358, 96496, 'ninety-six thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(5359, 38411, 'thirty-eight thousand four hundred eleven');\nINSERT INTO t3 VALUES(5360, 37527, 'thirty-seven thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(5361, 15257, 'fifteen thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(5362, 25022, 'twenty-five thousand twenty-two');\nINSERT INTO t3 VALUES(5363, 72624, 'seventy-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(5364, 66452, 'sixty-six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(5365, 10082, 'ten thousand eighty-two');\nINSERT INTO t3 VALUES(5366, 90308, 'ninety thousand three hundred eight');\nINSERT INTO t3 VALUES(5367, 68128, 'sixty-eight thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(5368, 51238, 'fifty-one thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(5369, 38205, 'thirty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(5370, 67480, 'sixty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(5371, 54011, 'fifty-four thousand eleven');\nINSERT INTO t3 VALUES(5372, 25348, 'twenty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(5373, 43677, 'forty-three thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(5374, 56860, 'fifty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(5375, 10271, 'ten thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(5376, 23037, 'twenty-three thousand thirty-seven');\nINSERT INTO t3 VALUES(5377, 31953, 'thirty-one thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(5378, 84851, 'eighty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(5379, 49435, 'forty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(5380, 3206, 'three thousand two hundred six');\nINSERT INTO t3 VALUES(5381, 97808, 'ninety-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(5382, 92760, 'ninety-two thousand seven hundred sixty');\nINSERT INTO t3 VALUES(5383, 35161, 'thirty-five thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(5384, 8021, 'eight thousand twenty-one');\nINSERT INTO t3 VALUES(5385, 75268, 'seventy-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(5386, 14597, 'fourteen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(5387, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(5388, 31482, 'thirty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(5389, 33459, 'thirty-three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(5390, 1548, 'one thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(5391, 52926, 'fifty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(5392, 97575, 'ninety-seven thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(5393, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(5394, 62051, 'sixty-two thousand fifty-one');\nINSERT INTO t3 VALUES(5395, 81323, 'eighty-one thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(5396, 88375, 'eighty-eight thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5397, 90966, 'ninety thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(5398, 7711, 'seven thousand seven hundred eleven');\nINSERT INTO t3 VALUES(5399, 50960, 'fifty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(5400, 36562, 'thirty-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(5401, 72692, 'seventy-two thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(5402, 77801, 'seventy-seven thousand eight hundred one');\nINSERT INTO t3 VALUES(5403, 86674, 'eighty-six thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(5404, 80050, 'eighty thousand fifty');\nINSERT INTO t3 VALUES(5405, 96921, 'ninety-six thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(5406, 29254, 'twenty-nine thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(5407, 61762, 'sixty-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(5408, 9411, 'nine thousand four hundred eleven');\nINSERT INTO t3 VALUES(5409, 28873, 'twenty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(5410, 89536, 'eighty-nine thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(5411, 26799, 'twenty-six thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(5412, 65291, 'sixty-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(5413, 32381, 'thirty-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(5414, 83702, 'eighty-three thousand seven hundred two');\nINSERT INTO t3 VALUES(5415, 12798, 'twelve thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(5416, 98114, 'ninety-eight thousand one hundred fourteen');\nINSERT INTO t3 VALUES(5417, 66905, 'sixty-six thousand nine hundred five');\nINSERT INTO t3 VALUES(5418, 84363, 'eighty-four thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(5419, 50152, 'fifty thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(5420, 26278, 'twenty-six thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(5421, 78363, 'seventy-eight thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(5422, 73720, 'seventy-three thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5423, 33986, 'thirty-three thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(5424, 56758, 'fifty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(5425, 71785, 'seventy-one thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(5426, 56643, 'fifty-six thousand six hundred forty-three');\nINSERT INTO t3 VALUES(5427, 60454, 'sixty thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(5428, 34441, 'thirty-four thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5429, 56989, 'fifty-six thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(5430, 89730, 'eighty-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(5431, 50716, 'fifty thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(5432, 57336, 'fifty-seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(5433, 99140, 'ninety-nine thousand one hundred forty');\nINSERT INTO t3 VALUES(5434, 98878, 'ninety-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(5435, 22004, 'twenty-two thousand four');\nINSERT INTO t3 VALUES(5436, 88567, 'eighty-eight thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(5437, 30064, 'thirty thousand sixty-four');\nINSERT INTO t3 VALUES(5438, 68263, 'sixty-eight thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(5439, 76177, 'seventy-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(5440, 33737, 'thirty-three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(5441, 90124, 'ninety thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(5442, 61053, 'sixty-one thousand fifty-three');\nINSERT INTO t3 VALUES(5443, 91682, 'ninety-one thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(5444, 73299, 'seventy-three thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5445, 23952, 'twenty-three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(5446, 51457, 'fifty-one thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(5447, 85838, 'eighty-five thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(5448, 96053, 'ninety-six thousand fifty-three');\nINSERT INTO t3 VALUES(5449, 24583, 'twenty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(5450, 61000, 'sixty-one thousand');\nINSERT INTO t3 VALUES(5451, 83701, 'eighty-three thousand seven hundred one');\nINSERT INTO t3 VALUES(5452, 60602, 'sixty thousand six hundred two');\nINSERT INTO t3 VALUES(5453, 10405, 'ten thousand four hundred five');\nINSERT INTO t3 VALUES(5454, 39446, 'thirty-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(5455, 70187, 'seventy thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5456, 3063, 'three thousand sixty-three');\nINSERT INTO t3 VALUES(5457, 68077, 'sixty-eight thousand seventy-seven');\nINSERT INTO t3 VALUES(5458, 14049, 'fourteen thousand forty-nine');\nINSERT INTO t3 VALUES(5459, 38397, 'thirty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5460, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(5461, 23258, 'twenty-three thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(5462, 72720, 'seventy-two thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5463, 97742, 'ninety-seven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(5464, 60375, 'sixty thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(5465, 9858, 'nine thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(5466, 72274, 'seventy-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(5467, 7760, 'seven thousand seven hundred sixty');\nINSERT INTO t3 VALUES(5468, 51690, 'fifty-one thousand six hundred ninety');\nINSERT INTO t3 VALUES(5469, 87650, 'eighty-seven thousand six hundred fifty');\nINSERT INTO t3 VALUES(5470, 4724, 'four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(5471, 42255, 'forty-two thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(5472, 66310, 'sixty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(5473, 1321, 'one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(5474, 98609, 'ninety-eight thousand six hundred nine');\nINSERT INTO t3 VALUES(5475, 28262, 'twenty-eight thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(5476, 50470, 'fifty thousand four hundred seventy');\nINSERT INTO t3 VALUES(5477, 58119, 'fifty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(5478, 90226, 'ninety thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(5479, 94146, 'ninety-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(5480, 55638, 'fifty-five thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(5481, 13318, 'thirteen thousand three hundred eighteen');\nINSERT INTO t3 VALUES(5482, 72427, 'seventy-two thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(5483, 56061, 'fifty-six thousand sixty-one');\nINSERT INTO t3 VALUES(5484, 12825, 'twelve thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5485, 31526, 'thirty-one thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(5486, 16040, 'sixteen thousand forty');\nINSERT INTO t3 VALUES(5487, 31595, 'thirty-one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(5488, 87455, 'eighty-seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(5489, 87796, 'eighty-seven thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(5490, 98415, 'ninety-eight thousand four hundred fifteen');\nINSERT INTO t3 VALUES(5491, 34125, 'thirty-four thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(5492, 28284, 'twenty-eight thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(5493, 79619, 'seventy-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(5494, 84179, 'eighty-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(5495, 9543, 'nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(5496, 65201, 'sixty-five thousand two hundred one');\nINSERT INTO t3 VALUES(5497, 83926, 'eighty-three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(5498, 81078, 'eighty-one thousand seventy-eight');\nINSERT INTO t3 VALUES(5499, 4308, 'four thousand three hundred eight');\nINSERT INTO t3 VALUES(5500, 3702, 'three thousand seven hundred two');\nINSERT INTO t3 VALUES(5501, 25311, 'twenty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(5502, 8663, 'eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(5503, 3981, 'three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(5504, 97794, 'ninety-seven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(5505, 68196, 'sixty-eight thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(5506, 26957, 'twenty-six thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(5507, 47667, 'forty-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(5508, 3065, 'three thousand sixty-five');\nINSERT INTO t3 VALUES(5509, 81399, 'eighty-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(5510, 81906, 'eighty-one thousand nine hundred six');\nINSERT INTO t3 VALUES(5511, 21399, 'twenty-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(5512, 28441, 'twenty-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5513, 59836, 'fifty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(5514, 89341, 'eighty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(5515, 40958, 'forty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(5516, 7744, 'seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(5517, 62732, 'sixty-two thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(5518, 25056, 'twenty-five thousand fifty-six');\nINSERT INTO t3 VALUES(5519, 73818, 'seventy-three thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(5520, 35370, 'thirty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(5521, 42020, 'forty-two thousand twenty');\nINSERT INTO t3 VALUES(5522, 72596, 'seventy-two thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(5523, 23649, 'twenty-three thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(5524, 94298, 'ninety-four thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(5525, 81324, 'eighty-one thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(5526, 95626, 'ninety-five thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(5527, 61068, 'sixty-one thousand sixty-eight');\nINSERT INTO t3 VALUES(5528, 45707, 'forty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(5529, 4377, 'four thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(5530, 41483, 'forty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(5531, 18560, 'eighteen thousand five hundred sixty');\nINSERT INTO t3 VALUES(5532, 27875, 'twenty-seven thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(5533, 40865, 'forty thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(5534, 6151, 'six thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(5535, 70521, 'seventy thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(5536, 6130, 'six thousand one hundred thirty');\nINSERT INTO t3 VALUES(5537, 1706, 'one thousand seven hundred six');\nINSERT INTO t3 VALUES(5538, 43403, 'forty-three thousand four hundred three');\nINSERT INTO t3 VALUES(5539, 97125, 'ninety-seven thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(5540, 18306, 'eighteen thousand three hundred six');\nINSERT INTO t3 VALUES(5541, 11958, 'eleven thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(5542, 90373, 'ninety thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(5543, 11233, 'eleven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(5544, 97197, 'ninety-seven thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(5545, 99475, 'ninety-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(5546, 33390, 'thirty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(5547, 44377, 'forty-four thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(5548, 1956, 'one thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(5549, 57641, 'fifty-seven thousand six hundred forty-one');\nINSERT INTO t3 VALUES(5550, 63739, 'sixty-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(5551, 31748, 'thirty-one thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(5552, 51667, 'fifty-one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(5553, 1485, 'one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5554, 60430, 'sixty thousand four hundred thirty');\nINSERT INTO t3 VALUES(5555, 29723, 'twenty-nine thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(5556, 5253, 'five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5557, 98521, 'ninety-eight thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(5558, 18462, 'eighteen thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(5559, 58784, 'fifty-eight thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(5560, 9436, 'nine thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(5561, 75146, 'seventy-five thousand one hundred forty-six');\nINSERT INTO t3 VALUES(5562, 84907, 'eighty-four thousand nine hundred seven');\nINSERT INTO t3 VALUES(5563, 6703, 'six thousand seven hundred three');\nINSERT INTO t3 VALUES(5564, 27166, 'twenty-seven thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(5565, 79805, 'seventy-nine thousand eight hundred five');\nINSERT INTO t3 VALUES(5566, 2271, 'two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(5567, 814, 'eight hundred fourteen');\nINSERT INTO t3 VALUES(5568, 76791, 'seventy-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(5569, 41445, 'forty-one thousand four hundred forty-five');\nINSERT INTO t3 VALUES(5570, 67739, 'sixty-seven thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(5571, 40762, 'forty thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(5572, 49147, 'forty-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(5573, 68749, 'sixty-eight thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(5574, 24410, 'twenty-four thousand four hundred ten');\nINSERT INTO t3 VALUES(5575, 45029, 'forty-five thousand twenty-nine');\nINSERT INTO t3 VALUES(5576, 33054, 'thirty-three thousand fifty-four');\nINSERT INTO t3 VALUES(5577, 71189, 'seventy-one thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(5578, 26073, 'twenty-six thousand seventy-three');\nINSERT INTO t3 VALUES(5579, 43701, 'forty-three thousand seven hundred one');\nINSERT INTO t3 VALUES(5580, 32492, 'thirty-two thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(5581, 15974, 'fifteen thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(5582, 29783, 'twenty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(5583, 83848, 'eighty-three thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(5584, 38891, 'thirty-eight thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(5585, 10825, 'ten thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5586, 67744, 'sixty-seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(5587, 18754, 'eighteen thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(5588, 96347, 'ninety-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(5589, 65423, 'sixty-five thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(5590, 1812, 'one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(5591, 11898, 'eleven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(5592, 37945, 'thirty-seven thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(5593, 62917, 'sixty-two thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(5594, 26111, 'twenty-six thousand one hundred eleven');\nINSERT INTO t3 VALUES(5595, 52307, 'fifty-two thousand three hundred seven');\nINSERT INTO t3 VALUES(5596, 83623, 'eighty-three thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(5597, 90761, 'ninety thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(5598, 1138, 'one thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(5599, 31338, 'thirty-one thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(5600, 38653, 'thirty-eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(5601, 64253, 'sixty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5602, 73954, 'seventy-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(5603, 10868, 'ten thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(5604, 69293, 'sixty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(5605, 36958, 'thirty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(5606, 25181, 'twenty-five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(5607, 8429, 'eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(5608, 30458, 'thirty thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(5609, 34904, 'thirty-four thousand nine hundred four');\nINSERT INTO t3 VALUES(5610, 46150, 'forty-six thousand one hundred fifty');\nINSERT INTO t3 VALUES(5611, 68186, 'sixty-eight thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(5612, 28662, 'twenty-eight thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(5613, 15540, 'fifteen thousand five hundred forty');\nINSERT INTO t3 VALUES(5614, 67848, 'sixty-seven thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(5615, 85163, 'eighty-five thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(5616, 89170, 'eighty-nine thousand one hundred seventy');\nINSERT INTO t3 VALUES(5617, 62467, 'sixty-two thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(5618, 43081, 'forty-three thousand eighty-one');\nINSERT INTO t3 VALUES(5619, 95296, 'ninety-five thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(5620, 68397, 'sixty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5621, 99406, 'ninety-nine thousand four hundred six');\nINSERT INTO t3 VALUES(5622, 10050, 'ten thousand fifty');\nINSERT INTO t3 VALUES(5623, 79849, 'seventy-nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(5624, 34661, 'thirty-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(5625, 72438, 'seventy-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(5626, 52913, 'fifty-two thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(5627, 76994, 'seventy-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(5628, 77064, 'seventy-seven thousand sixty-four');\nINSERT INTO t3 VALUES(5629, 52451, 'fifty-two thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(5630, 68828, 'sixty-eight thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(5631, 31392, 'thirty-one thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(5632, 20532, 'twenty thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(5633, 69844, 'sixty-nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(5634, 13805, 'thirteen thousand eight hundred five');\nINSERT INTO t3 VALUES(5635, 47939, 'forty-seven thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(5636, 83289, 'eighty-three thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(5637, 66895, 'sixty-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(5638, 38344, 'thirty-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(5639, 18734, 'eighteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(5640, 73413, 'seventy-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(5641, 29702, 'twenty-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(5642, 35329, 'thirty-five thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(5643, 76505, 'seventy-six thousand five hundred five');\nINSERT INTO t3 VALUES(5644, 52903, 'fifty-two thousand nine hundred three');\nINSERT INTO t3 VALUES(5645, 47645, 'forty-seven thousand six hundred forty-five');\nINSERT INTO t3 VALUES(5646, 52273, 'fifty-two thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(5647, 78414, 'seventy-eight thousand four hundred fourteen');\nINSERT INTO t3 VALUES(5648, 68376, 'sixty-eight thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(5649, 9173, 'nine thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(5650, 22863, 'twenty-two thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(5651, 75193, 'seventy-five thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(5652, 71623, 'seventy-one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(5653, 5613, 'five thousand six hundred thirteen');\nINSERT INTO t3 VALUES(5654, 97606, 'ninety-seven thousand six hundred six');\nINSERT INTO t3 VALUES(5655, 32971, 'thirty-two thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(5656, 8357, 'eight thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(5657, 13702, 'thirteen thousand seven hundred two');\nINSERT INTO t3 VALUES(5658, 15368, 'fifteen thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(5659, 0, 'zero');\nINSERT INTO t3 VALUES(5660, 9272, 'nine thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(5661, 38762, 'thirty-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(5662, 46510, 'forty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(5663, 59925, 'fifty-nine thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(5664, 55025, 'fifty-five thousand twenty-five');\nINSERT INTO t3 VALUES(5665, 9341, 'nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(5666, 6423, 'six thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(5667, 34717, 'thirty-four thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(5668, 71495, 'seventy-one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(5669, 62372, 'sixty-two thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(5670, 44839, 'forty-four thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(5671, 33771, 'thirty-three thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(5672, 83481, 'eighty-three thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(5673, 64572, 'sixty-four thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(5674, 6422, 'six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(5675, 660, 'six hundred sixty');\nINSERT INTO t3 VALUES(5676, 42167, 'forty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(5677, 2714, 'two thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(5678, 26872, 'twenty-six thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(5679, 37913, 'thirty-seven thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(5680, 52935, 'fifty-two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(5681, 85784, 'eighty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(5682, 4393, 'four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(5683, 34709, 'thirty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(5684, 63511, 'sixty-three thousand five hundred eleven');\nINSERT INTO t3 VALUES(5685, 59152, 'fifty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(5686, 17749, 'seventeen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(5687, 19838, 'nineteen thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(5688, 57184, 'fifty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(5689, 76478, 'seventy-six thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(5690, 29167, 'twenty-nine thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(5691, 20600, 'twenty thousand six hundred');\nINSERT INTO t3 VALUES(5692, 96537, 'ninety-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(5693, 89189, 'eighty-nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(5694, 49690, 'forty-nine thousand six hundred ninety');\nINSERT INTO t3 VALUES(5695, 10691, 'ten thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(5696, 64497, 'sixty-four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(5697, 67310, 'sixty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(5698, 94114, 'ninety-four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(5699, 12674, 'twelve thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(5700, 90653, 'ninety thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(5701, 53064, 'fifty-three thousand sixty-four');\nINSERT INTO t3 VALUES(5702, 61561, 'sixty-one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(5703, 34023, 'thirty-four thousand twenty-three');\nINSERT INTO t3 VALUES(5704, 96895, 'ninety-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(5705, 41013, 'forty-one thousand thirteen');\nINSERT INTO t3 VALUES(5706, 90944, 'ninety thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(5707, 49251, 'forty-nine thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(5708, 4227, 'four thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(5709, 4355, 'four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(5710, 70217, 'seventy thousand two hundred seventeen');\nINSERT INTO t3 VALUES(5711, 11124, 'eleven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(5712, 85891, 'eighty-five thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(5713, 47594, 'forty-seven thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(5714, 13720, 'thirteen thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5715, 82368, 'eighty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(5716, 14558, 'fourteen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(5717, 93849, 'ninety-three thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(5718, 38932, 'thirty-eight thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(5719, 46889, 'forty-six thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(5720, 55006, 'fifty-five thousand six');\nINSERT INTO t3 VALUES(5721, 21140, 'twenty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(5722, 59249, 'fifty-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(5723, 77145, 'seventy-seven thousand one hundred forty-five');\nINSERT INTO t3 VALUES(5724, 61334, 'sixty-one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(5725, 57733, 'fifty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(5726, 8850, 'eight thousand eight hundred fifty');\nINSERT INTO t3 VALUES(5727, 11080, 'eleven thousand eighty');\nINSERT INTO t3 VALUES(5728, 87756, 'eighty-seven thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(5729, 82982, 'eighty-two thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(5730, 31389, 'thirty-one thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(5731, 99295, 'ninety-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(5732, 67086, 'sixty-seven thousand eighty-six');\nINSERT INTO t3 VALUES(5733, 25913, 'twenty-five thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(5734, 53918, 'fifty-three thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(5735, 77500, 'seventy-seven thousand five hundred');\nINSERT INTO t3 VALUES(5736, 51047, 'fifty-one thousand forty-seven');\nINSERT INTO t3 VALUES(5737, 79250, 'seventy-nine thousand two hundred fifty');\nINSERT INTO t3 VALUES(5738, 68652, 'sixty-eight thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(5739, 78012, 'seventy-eight thousand twelve');\nINSERT INTO t3 VALUES(5740, 34673, 'thirty-four thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5741, 40693, 'forty thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(5742, 32195, 'thirty-two thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(5743, 53934, 'fifty-three thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(5744, 52285, 'fifty-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5745, 99119, 'ninety-nine thousand one hundred nineteen');\nINSERT INTO t3 VALUES(5746, 32439, 'thirty-two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(5747, 67246, 'sixty-seven thousand two hundred forty-six');\nINSERT INTO t3 VALUES(5748, 29120, 'twenty-nine thousand one hundred twenty');\nINSERT INTO t3 VALUES(5749, 58397, 'fifty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(5750, 71563, 'seventy-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(5751, 10636, 'ten thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(5752, 50880, 'fifty thousand eight hundred eighty');\nINSERT INTO t3 VALUES(5753, 97776, 'ninety-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(5754, 21325, 'twenty-one thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(5755, 96183, 'ninety-six thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(5756, 61992, 'sixty-one thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(5757, 13919, 'thirteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(5758, 78709, 'seventy-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(5759, 17924, 'seventeen thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(5760, 40616, 'forty thousand six hundred sixteen');\nINSERT INTO t3 VALUES(5761, 30345, 'thirty thousand three hundred forty-five');\nINSERT INTO t3 VALUES(5762, 38964, 'thirty-eight thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(5763, 2773, 'two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(5764, 3421, 'three thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(5765, 81825, 'eighty-one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5766, 68110, 'sixty-eight thousand one hundred ten');\nINSERT INTO t3 VALUES(5767, 65071, 'sixty-five thousand seventy-one');\nINSERT INTO t3 VALUES(5768, 49628, 'forty-nine thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(5769, 84981, 'eighty-four thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(5770, 94146, 'ninety-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(5771, 93659, 'ninety-three thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(5772, 64318, 'sixty-four thousand three hundred eighteen');\nINSERT INTO t3 VALUES(5773, 31828, 'thirty-one thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(5774, 85160, 'eighty-five thousand one hundred sixty');\nINSERT INTO t3 VALUES(5775, 49836, 'forty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(5776, 3678, 'three thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(5777, 19652, 'nineteen thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(5778, 7761, 'seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(5779, 74211, 'seventy-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(5780, 71500, 'seventy-one thousand five hundred');\nINSERT INTO t3 VALUES(5781, 11908, 'eleven thousand nine hundred eight');\nINSERT INTO t3 VALUES(5782, 66743, 'sixty-six thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(5783, 49898, 'forty-nine thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(5784, 44882, 'forty-four thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(5785, 85537, 'eighty-five thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(5786, 6114, 'six thousand one hundred fourteen');\nINSERT INTO t3 VALUES(5787, 64709, 'sixty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(5788, 41330, 'forty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(5789, 51927, 'fifty-one thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(5790, 48156, 'forty-eight thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(5791, 44608, 'forty-four thousand six hundred eight');\nINSERT INTO t3 VALUES(5792, 43763, 'forty-three thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(5793, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(5794, 68301, 'sixty-eight thousand three hundred one');\nINSERT INTO t3 VALUES(5795, 44960, 'forty-four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(5796, 25732, 'twenty-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(5797, 30041, 'thirty thousand forty-one');\nINSERT INTO t3 VALUES(5798, 36695, 'thirty-six thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(5799, 14301, 'fourteen thousand three hundred one');\nINSERT INTO t3 VALUES(5800, 31040, 'thirty-one thousand forty');\nINSERT INTO t3 VALUES(5801, 62023, 'sixty-two thousand twenty-three');\nINSERT INTO t3 VALUES(5802, 70438, 'seventy thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(5803, 47811, 'forty-seven thousand eight hundred eleven');\nINSERT INTO t3 VALUES(5804, 1153, 'one thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(5805, 70381, 'seventy thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(5806, 7936, 'seven thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(5807, 47176, 'forty-seven thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(5808, 16829, 'sixteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(5809, 40046, 'forty thousand forty-six');\nINSERT INTO t3 VALUES(5810, 74002, 'seventy-four thousand two');\nINSERT INTO t3 VALUES(5811, 88807, 'eighty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(5812, 59044, 'fifty-nine thousand forty-four');\nINSERT INTO t3 VALUES(5813, 92143, 'ninety-two thousand one hundred forty-three');\nINSERT INTO t3 VALUES(5814, 37754, 'thirty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(5815, 94083, 'ninety-four thousand eighty-three');\nINSERT INTO t3 VALUES(5816, 15225, 'fifteen thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(5817, 55810, 'fifty-five thousand eight hundred ten');\nINSERT INTO t3 VALUES(5818, 71616, 'seventy-one thousand six hundred sixteen');\nINSERT INTO t3 VALUES(5819, 91356, 'ninety-one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(5820, 18545, 'eighteen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(5821, 16659, 'sixteen thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(5822, 88311, 'eighty-eight thousand three hundred eleven');\nINSERT INTO t3 VALUES(5823, 77535, 'seventy-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(5824, 89952, 'eighty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(5825, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t3 VALUES(5826, 33741, 'thirty-three thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(5827, 96591, 'ninety-six thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(5828, 99834, 'ninety-nine thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(5829, 65183, 'sixty-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(5830, 90140, 'ninety thousand one hundred forty');\nINSERT INTO t3 VALUES(5831, 55515, 'fifty-five thousand five hundred fifteen');\nINSERT INTO t3 VALUES(5832, 45151, 'forty-five thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(5833, 27098, 'twenty-seven thousand ninety-eight');\nINSERT INTO t3 VALUES(5834, 52417, 'fifty-two thousand four hundred seventeen');\nINSERT INTO t3 VALUES(5835, 56437, 'fifty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(5836, 6983, 'six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(5837, 65299, 'sixty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5838, 61929, 'sixty-one thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(5839, 96824, 'ninety-six thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(5840, 31520, 'thirty-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(5841, 7751, 'seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(5842, 48850, 'forty-eight thousand eight hundred fifty');\nINSERT INTO t3 VALUES(5843, 7669, 'seven thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(5844, 61495, 'sixty-one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(5845, 33480, 'thirty-three thousand four hundred eighty');\nINSERT INTO t3 VALUES(5846, 92299, 'ninety-two thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5847, 83539, 'eighty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(5848, 83700, 'eighty-three thousand seven hundred');\nINSERT INTO t3 VALUES(5849, 34720, 'thirty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(5850, 56299, 'fifty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(5851, 73157, 'seventy-three thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(5852, 113, 'one hundred thirteen');\nINSERT INTO t3 VALUES(5853, 99472, 'ninety-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(5854, 35740, 'thirty-five thousand seven hundred forty');\nINSERT INTO t3 VALUES(5855, 37123, 'thirty-seven thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(5856, 56894, 'fifty-six thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(5857, 28628, 'twenty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(5858, 97994, 'ninety-seven thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(5859, 60818, 'sixty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(5860, 32606, 'thirty-two thousand six hundred six');\nINSERT INTO t3 VALUES(5861, 66357, 'sixty-six thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(5862, 31200, 'thirty-one thousand two hundred');\nINSERT INTO t3 VALUES(5863, 83780, 'eighty-three thousand seven hundred eighty');\nINSERT INTO t3 VALUES(5864, 37285, 'thirty-seven thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5865, 84952, 'eighty-four thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(5866, 5673, 'five thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5867, 88758, 'eighty-eight thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(5868, 15934, 'fifteen thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(5869, 94157, 'ninety-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(5870, 97029, 'ninety-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(5871, 22195, 'twenty-two thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(5872, 16194, 'sixteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(5873, 11696, 'eleven thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(5874, 8538, 'eight thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(5875, 40134, 'forty thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(5876, 41631, 'forty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(5877, 5585, 'five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(5878, 16249, 'sixteen thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(5879, 60546, 'sixty thousand five hundred forty-six');\nINSERT INTO t3 VALUES(5880, 61229, 'sixty-one thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(5881, 46172, 'forty-six thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(5882, 48601, 'forty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(5883, 78108, 'seventy-eight thousand one hundred eight');\nINSERT INTO t3 VALUES(5884, 85412, 'eighty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(5885, 76313, 'seventy-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(5886, 32664, 'thirty-two thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(5887, 96577, 'ninety-six thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(5888, 33471, 'thirty-three thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(5889, 13233, 'thirteen thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(5890, 7834, 'seven thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(5891, 36432, 'thirty-six thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(5892, 57676, 'fifty-seven thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(5893, 95348, 'ninety-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(5894, 51577, 'fifty-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(5895, 6095, 'six thousand ninety-five');\nINSERT INTO t3 VALUES(5896, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t3 VALUES(5897, 10000, 'ten thousand');\nINSERT INTO t3 VALUES(5898, 20221, 'twenty thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(5899, 80668, 'eighty thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(5900, 98258, 'ninety-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(5901, 7951, 'seven thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(5902, 4674, 'four thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(5903, 51365, 'fifty-one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(5904, 5441, 'five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(5905, 78262, 'seventy-eight thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(5906, 35317, 'thirty-five thousand three hundred seventeen');\nINSERT INTO t3 VALUES(5907, 92374, 'ninety-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(5908, 6797, 'six thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(5909, 16025, 'sixteen thousand twenty-five');\nINSERT INTO t3 VALUES(5910, 80500, 'eighty thousand five hundred');\nINSERT INTO t3 VALUES(5911, 49666, 'forty-nine thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(5912, 27602, 'twenty-seven thousand six hundred two');\nINSERT INTO t3 VALUES(5913, 79360, 'seventy-nine thousand three hundred sixty');\nINSERT INTO t3 VALUES(5914, 57957, 'fifty-seven thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(5915, 49298, 'forty-nine thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(5916, 36372, 'thirty-six thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(5917, 42100, 'forty-two thousand one hundred');\nINSERT INTO t3 VALUES(5918, 97612, 'ninety-seven thousand six hundred twelve');\nINSERT INTO t3 VALUES(5919, 81689, 'eighty-one thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(5920, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(5921, 89285, 'eighty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5922, 69042, 'sixty-nine thousand forty-two');\nINSERT INTO t3 VALUES(5923, 8290, 'eight thousand two hundred ninety');\nINSERT INTO t3 VALUES(5924, 84675, 'eighty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(5925, 46719, 'forty-six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(5926, 52118, 'fifty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(5927, 12792, 'twelve thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(5928, 43253, 'forty-three thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(5929, 93656, 'ninety-three thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(5930, 6350, 'six thousand three hundred fifty');\nINSERT INTO t3 VALUES(5931, 9873, 'nine thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(5932, 40829, 'forty thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(5933, 23687, 'twenty-three thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(5934, 84640, 'eighty-four thousand six hundred forty');\nINSERT INTO t3 VALUES(5935, 8003, 'eight thousand three');\nINSERT INTO t3 VALUES(5936, 33545, 'thirty-three thousand five hundred forty-five');\nINSERT INTO t3 VALUES(5937, 10342, 'ten thousand three hundred forty-two');\nINSERT INTO t3 VALUES(5938, 50592, 'fifty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(5939, 96339, 'ninety-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(5940, 42938, 'forty-two thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(5941, 45882, 'forty-five thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(5942, 12284, 'twelve thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(5943, 39289, 'thirty-nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(5944, 51979, 'fifty-one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(5945, 54256, 'fifty-four thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(5946, 11595, 'eleven thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(5947, 34923, 'thirty-four thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(5948, 3290, 'three thousand two hundred ninety');\nINSERT INTO t3 VALUES(5949, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(5950, 41067, 'forty-one thousand sixty-seven');\nINSERT INTO t3 VALUES(5951, 74802, 'seventy-four thousand eight hundred two');\nINSERT INTO t3 VALUES(5952, 46936, 'forty-six thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(5953, 89141, 'eighty-nine thousand one hundred forty-one');\nINSERT INTO t3 VALUES(5954, 33920, 'thirty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(5955, 83400, 'eighty-three thousand four hundred');\nINSERT INTO t3 VALUES(5956, 36079, 'thirty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(5957, 67718, 'sixty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(5958, 10320, 'ten thousand three hundred twenty');\nINSERT INTO t3 VALUES(5959, 24947, 'twenty-four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(5960, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t3 VALUES(5961, 49594, 'forty-nine thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(5962, 6485, 'six thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(5963, 50921, 'fifty thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(5964, 52281, 'fifty-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(5965, 22198, 'twenty-two thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(5966, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(5967, 61308, 'sixty-one thousand three hundred eight');\nINSERT INTO t3 VALUES(5968, 58529, 'fifty-eight thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(5969, 4380, 'four thousand three hundred eighty');\nINSERT INTO t3 VALUES(5970, 63363, 'sixty-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(5971, 29841, 'twenty-nine thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(5972, 4359, 'four thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(5973, 22187, 'twenty-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(5974, 5382, 'five thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(5975, 33673, 'thirty-three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(5976, 66926, 'sixty-six thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(5977, 43729, 'forty-three thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(5978, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(5979, 5973, 'five thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(5980, 48347, 'forty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(5981, 49285, 'forty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(5982, 46546, 'forty-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(5983, 27825, 'twenty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(5984, 44198, 'forty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(5985, 60686, 'sixty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(5986, 4840, 'four thousand eight hundred forty');\nINSERT INTO t3 VALUES(5987, 50882, 'fifty thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(5988, 59679, 'fifty-nine thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(5989, 49542, 'forty-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(5990, 35414, 'thirty-five thousand four hundred fourteen');\nINSERT INTO t3 VALUES(5991, 70416, 'seventy thousand four hundred sixteen');\nINSERT INTO t3 VALUES(5992, 94475, 'ninety-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(5993, 16106, 'sixteen thousand one hundred six');\nINSERT INTO t3 VALUES(5994, 8453, 'eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(5995, 98273, 'ninety-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(5996, 29797, 'twenty-nine thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(5997, 68834, 'sixty-eight thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(5998, 89478, 'eighty-nine thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(5999, 54162, 'fifty-four thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(6000, 24008, 'twenty-four thousand eight');\nINSERT INTO t3 VALUES(6001, 2307, 'two thousand three hundred seven');\nINSERT INTO t3 VALUES(6002, 34992, 'thirty-four thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6003, 36018, 'thirty-six thousand eighteen');\nINSERT INTO t3 VALUES(6004, 29374, 'twenty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6005, 52748, 'fifty-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(6006, 53521, 'fifty-three thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(6007, 74448, 'seventy-four thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(6008, 61693, 'sixty-one thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(6009, 35803, 'thirty-five thousand eight hundred three');\nINSERT INTO t3 VALUES(6010, 80114, 'eighty thousand one hundred fourteen');\nINSERT INTO t3 VALUES(6011, 28576, 'twenty-eight thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(6012, 30343, 'thirty thousand three hundred forty-three');\nINSERT INTO t3 VALUES(6013, 55580, 'fifty-five thousand five hundred eighty');\nINSERT INTO t3 VALUES(6014, 46399, 'forty-six thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(6015, 17631, 'seventeen thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(6016, 83831, 'eighty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(6017, 85809, 'eighty-five thousand eight hundred nine');\nINSERT INTO t3 VALUES(6018, 70343, 'seventy thousand three hundred forty-three');\nINSERT INTO t3 VALUES(6019, 10277, 'ten thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(6020, 22823, 'twenty-two thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(6021, 16339, 'sixteen thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(6022, 29104, 'twenty-nine thousand one hundred four');\nINSERT INTO t3 VALUES(6023, 19441, 'nineteen thousand four hundred forty-one');\nINSERT INTO t3 VALUES(6024, 67324, 'sixty-seven thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(6025, 94375, 'ninety-four thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(6026, 24698, 'twenty-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(6027, 23410, 'twenty-three thousand four hundred ten');\nINSERT INTO t3 VALUES(6028, 65611, 'sixty-five thousand six hundred eleven');\nINSERT INTO t3 VALUES(6029, 79272, 'seventy-nine thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(6030, 4992, 'four thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6031, 72564, 'seventy-two thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(6032, 48448, 'forty-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(6033, 62748, 'sixty-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(6034, 43446, 'forty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(6035, 44380, 'forty-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(6036, 94157, 'ninety-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(6037, 92069, 'ninety-two thousand sixty-nine');\nINSERT INTO t3 VALUES(6038, 17669, 'seventeen thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(6039, 60076, 'sixty thousand seventy-six');\nINSERT INTO t3 VALUES(6040, 6630, 'six thousand six hundred thirty');\nINSERT INTO t3 VALUES(6041, 86668, 'eighty-six thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(6042, 31435, 'thirty-one thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(6043, 41854, 'forty-one thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(6044, 88936, 'eighty-eight thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(6045, 72159, 'seventy-two thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(6046, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(6047, 45804, 'forty-five thousand eight hundred four');\nINSERT INTO t3 VALUES(6048, 94112, 'ninety-four thousand one hundred twelve');\nINSERT INTO t3 VALUES(6049, 42870, 'forty-two thousand eight hundred seventy');\nINSERT INTO t3 VALUES(6050, 63661, 'sixty-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(6051, 58049, 'fifty-eight thousand forty-nine');\nINSERT INTO t3 VALUES(6052, 6206, 'six thousand two hundred six');\nINSERT INTO t3 VALUES(6053, 43765, 'forty-three thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(6054, 3409, 'three thousand four hundred nine');\nINSERT INTO t3 VALUES(6055, 93390, 'ninety-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(6056, 47959, 'forty-seven thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(6057, 47920, 'forty-seven thousand nine hundred twenty');\nINSERT INTO t3 VALUES(6058, 35000, 'thirty-five thousand');\nINSERT INTO t3 VALUES(6059, 72544, 'seventy-two thousand five hundred forty-four');\nINSERT INTO t3 VALUES(6060, 53087, 'fifty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(6061, 51653, 'fifty-one thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(6062, 56876, 'fifty-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(6063, 53639, 'fifty-three thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(6064, 58465, 'fifty-eight thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(6065, 44217, 'forty-four thousand two hundred seventeen');\nINSERT INTO t3 VALUES(6066, 95345, 'ninety-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(6067, 11098, 'eleven thousand ninety-eight');\nINSERT INTO t3 VALUES(6068, 35005, 'thirty-five thousand five');\nINSERT INTO t3 VALUES(6069, 16216, 'sixteen thousand two hundred sixteen');\nINSERT INTO t3 VALUES(6070, 78812, 'seventy-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(6071, 50748, 'fifty thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(6072, 63169, 'sixty-three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(6073, 83759, 'eighty-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(6074, 17745, 'seventeen thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(6075, 94833, 'ninety-four thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(6076, 10059, 'ten thousand fifty-nine');\nINSERT INTO t3 VALUES(6077, 42643, 'forty-two thousand six hundred forty-three');\nINSERT INTO t3 VALUES(6078, 77637, 'seventy-seven thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(6079, 8609, 'eight thousand six hundred nine');\nINSERT INTO t3 VALUES(6080, 11434, 'eleven thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(6081, 11045, 'eleven thousand forty-five');\nINSERT INTO t3 VALUES(6082, 31353, 'thirty-one thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(6083, 7984, 'seven thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(6084, 68189, 'sixty-eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(6085, 91516, 'ninety-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(6086, 50204, 'fifty thousand two hundred four');\nINSERT INTO t3 VALUES(6087, 54992, 'fifty-four thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6088, 77329, 'seventy-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6089, 32968, 'thirty-two thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6090, 63719, 'sixty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(6091, 47702, 'forty-seven thousand seven hundred two');\nINSERT INTO t3 VALUES(6092, 52202, 'fifty-two thousand two hundred two');\nINSERT INTO t3 VALUES(6093, 59382, 'fifty-nine thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(6094, 59392, 'fifty-nine thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6095, 81186, 'eighty-one thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(6096, 18689, 'eighteen thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(6097, 69433, 'sixty-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(6098, 128, 'one hundred twenty-eight');\nINSERT INTO t3 VALUES(6099, 65627, 'sixty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(6100, 23807, 'twenty-three thousand eight hundred seven');\nINSERT INTO t3 VALUES(6101, 43212, 'forty-three thousand two hundred twelve');\nINSERT INTO t3 VALUES(6102, 84247, 'eighty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(6103, 10001, 'ten thousand one');\nINSERT INTO t3 VALUES(6104, 22817, 'twenty-two thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(6105, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t3 VALUES(6106, 46219, 'forty-six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(6107, 4292, 'four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(6108, 74762, 'seventy-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(6109, 89807, 'eighty-nine thousand eight hundred seven');\nINSERT INTO t3 VALUES(6110, 87879, 'eighty-seven thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(6111, 48862, 'forty-eight thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(6112, 2206, 'two thousand two hundred six');\nINSERT INTO t3 VALUES(6113, 49516, 'forty-nine thousand five hundred sixteen');\nINSERT INTO t3 VALUES(6114, 22374, 'twenty-two thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6115, 47633, 'forty-seven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(6116, 12390, 'twelve thousand three hundred ninety');\nINSERT INTO t3 VALUES(6117, 18380, 'eighteen thousand three hundred eighty');\nINSERT INTO t3 VALUES(6118, 31722, 'thirty-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(6119, 756, 'seven hundred fifty-six');\nINSERT INTO t3 VALUES(6120, 73346, 'seventy-three thousand three hundred forty-six');\nINSERT INTO t3 VALUES(6121, 33008, 'thirty-three thousand eight');\nINSERT INTO t3 VALUES(6122, 18081, 'eighteen thousand eighty-one');\nINSERT INTO t3 VALUES(6123, 79796, 'seventy-nine thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(6124, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(6125, 48112, 'forty-eight thousand one hundred twelve');\nINSERT INTO t3 VALUES(6126, 90871, 'ninety thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(6127, 98029, 'ninety-eight thousand twenty-nine');\nINSERT INTO t3 VALUES(6128, 66186, 'sixty-six thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(6129, 91369, 'ninety-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(6130, 99314, 'ninety-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(6131, 71977, 'seventy-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(6132, 9013, 'nine thousand thirteen');\nINSERT INTO t3 VALUES(6133, 9356, 'nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(6134, 76414, 'seventy-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(6135, 4478, 'four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(6136, 35494, 'thirty-five thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(6137, 91433, 'ninety-one thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(6138, 94822, 'ninety-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(6139, 22465, 'twenty-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(6140, 4709, 'four thousand seven hundred nine');\nINSERT INTO t3 VALUES(6141, 60301, 'sixty thousand three hundred one');\nINSERT INTO t3 VALUES(6142, 58405, 'fifty-eight thousand four hundred five');\nINSERT INTO t3 VALUES(6143, 86106, 'eighty-six thousand one hundred six');\nINSERT INTO t3 VALUES(6144, 30029, 'thirty thousand twenty-nine');\nINSERT INTO t3 VALUES(6145, 29208, 'twenty-nine thousand two hundred eight');\nINSERT INTO t3 VALUES(6146, 78173, 'seventy-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(6147, 53904, 'fifty-three thousand nine hundred four');\nINSERT INTO t3 VALUES(6148, 69034, 'sixty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(6149, 1334, 'one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(6150, 34209, 'thirty-four thousand two hundred nine');\nINSERT INTO t3 VALUES(6151, 79540, 'seventy-nine thousand five hundred forty');\nINSERT INTO t3 VALUES(6152, 95094, 'ninety-five thousand ninety-four');\nINSERT INTO t3 VALUES(6153, 13212, 'thirteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(6154, 5923, 'five thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(6155, 86512, 'eighty-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(6156, 75022, 'seventy-five thousand twenty-two');\nINSERT INTO t3 VALUES(6157, 6507, 'six thousand five hundred seven');\nINSERT INTO t3 VALUES(6158, 61442, 'sixty-one thousand four hundred forty-two');\nINSERT INTO t3 VALUES(6159, 59715, 'fifty-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(6160, 25916, 'twenty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(6161, 64017, 'sixty-four thousand seventeen');\nINSERT INTO t3 VALUES(6162, 31489, 'thirty-one thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(6163, 83785, 'eighty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(6164, 49350, 'forty-nine thousand three hundred fifty');\nINSERT INTO t3 VALUES(6165, 20536, 'twenty thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(6166, 17509, 'seventeen thousand five hundred nine');\nINSERT INTO t3 VALUES(6167, 74261, 'seventy-four thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(6168, 55840, 'fifty-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(6169, 77248, 'seventy-seven thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(6170, 58492, 'fifty-eight thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(6171, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(6172, 69359, 'sixty-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(6173, 76926, 'seventy-six thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(6174, 24775, 'twenty-four thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(6175, 58389, 'fifty-eight thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(6176, 11163, 'eleven thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(6177, 69285, 'sixty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(6178, 54425, 'fifty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(6179, 30885, 'thirty thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(6180, 32422, 'thirty-two thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(6181, 60603, 'sixty thousand six hundred three');\nINSERT INTO t3 VALUES(6182, 20336, 'twenty thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(6183, 19036, 'nineteen thousand thirty-six');\nINSERT INTO t3 VALUES(6184, 5828, 'five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(6185, 92610, 'ninety-two thousand six hundred ten');\nINSERT INTO t3 VALUES(6186, 18058, 'eighteen thousand fifty-eight');\nINSERT INTO t3 VALUES(6187, 12805, 'twelve thousand eight hundred five');\nINSERT INTO t3 VALUES(6188, 38273, 'thirty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(6189, 18651, 'eighteen thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(6190, 70334, 'seventy thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(6191, 52816, 'fifty-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(6192, 39924, 'thirty-nine thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(6193, 61332, 'sixty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(6194, 79356, 'seventy-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(6195, 91286, 'ninety-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(6196, 69651, 'sixty-nine thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(6197, 13648, 'thirteen thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(6198, 51180, 'fifty-one thousand one hundred eighty');\nINSERT INTO t3 VALUES(6199, 55062, 'fifty-five thousand sixty-two');\nINSERT INTO t3 VALUES(6200, 4308, 'four thousand three hundred eight');\nINSERT INTO t3 VALUES(6201, 15057, 'fifteen thousand fifty-seven');\nINSERT INTO t3 VALUES(6202, 47894, 'forty-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6203, 10893, 'ten thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(6204, 87226, 'eighty-seven thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(6205, 85207, 'eighty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(6206, 43006, 'forty-three thousand six');\nINSERT INTO t3 VALUES(6207, 54781, 'fifty-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(6208, 65498, 'sixty-five thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(6209, 85704, 'eighty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(6210, 53787, 'fifty-three thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(6211, 77261, 'seventy-seven thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(6212, 18604, 'eighteen thousand six hundred four');\nINSERT INTO t3 VALUES(6213, 40460, 'forty thousand four hundred sixty');\nINSERT INTO t3 VALUES(6214, 18314, 'eighteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(6215, 26310, 'twenty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(6216, 2686, 'two thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(6217, 38087, 'thirty-eight thousand eighty-seven');\nINSERT INTO t3 VALUES(6218, 69619, 'sixty-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(6219, 26013, 'twenty-six thousand thirteen');\nINSERT INTO t3 VALUES(6220, 50610, 'fifty thousand six hundred ten');\nINSERT INTO t3 VALUES(6221, 85714, 'eighty-five thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(6222, 23353, 'twenty-three thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(6223, 62157, 'sixty-two thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(6224, 37591, 'thirty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(6225, 78047, 'seventy-eight thousand forty-seven');\nINSERT INTO t3 VALUES(6226, 62726, 'sixty-two thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(6227, 60641, 'sixty thousand six hundred forty-one');\nINSERT INTO t3 VALUES(6228, 97825, 'ninety-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(6229, 2607, 'two thousand six hundred seven');\nINSERT INTO t3 VALUES(6230, 8014, 'eight thousand fourteen');\nINSERT INTO t3 VALUES(6231, 46466, 'forty-six thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(6232, 57806, 'fifty-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(6233, 23166, 'twenty-three thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(6234, 92280, 'ninety-two thousand two hundred eighty');\nINSERT INTO t3 VALUES(6235, 27927, 'twenty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(6236, 25297, 'twenty-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(6237, 43535, 'forty-three thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(6238, 63253, 'sixty-three thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(6239, 69290, 'sixty-nine thousand two hundred ninety');\nINSERT INTO t3 VALUES(6240, 63322, 'sixty-three thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(6241, 464, 'four hundred sixty-four');\nINSERT INTO t3 VALUES(6242, 50530, 'fifty thousand five hundred thirty');\nINSERT INTO t3 VALUES(6243, 74350, 'seventy-four thousand three hundred fifty');\nINSERT INTO t3 VALUES(6244, 17144, 'seventeen thousand one hundred forty-four');\nINSERT INTO t3 VALUES(6245, 44542, 'forty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(6246, 99653, 'ninety-nine thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(6247, 86525, 'eighty-six thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(6248, 42008, 'forty-two thousand eight');\nINSERT INTO t3 VALUES(6249, 15948, 'fifteen thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(6250, 74661, 'seventy-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(6251, 77191, 'seventy-seven thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(6252, 60985, 'sixty thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(6253, 3124, 'three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(6254, 19478, 'nineteen thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(6255, 33284, 'thirty-three thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(6256, 29071, 'twenty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(6257, 71597, 'seventy-one thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(6258, 28837, 'twenty-eight thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(6259, 80589, 'eighty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(6260, 39642, 'thirty-nine thousand six hundred forty-two');\nINSERT INTO t3 VALUES(6261, 1625, 'one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(6262, 27144, 'twenty-seven thousand one hundred forty-four');\nINSERT INTO t3 VALUES(6263, 45420, 'forty-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(6264, 40640, 'forty thousand six hundred forty');\nINSERT INTO t3 VALUES(6265, 28218, 'twenty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(6266, 15926, 'fifteen thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(6267, 5943, 'five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(6268, 13862, 'thirteen thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(6269, 45206, 'forty-five thousand two hundred six');\nINSERT INTO t3 VALUES(6270, 17061, 'seventeen thousand sixty-one');\nINSERT INTO t3 VALUES(6271, 75997, 'seventy-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(6272, 79348, 'seventy-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(6273, 67597, 'sixty-seven thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(6274, 98651, 'ninety-eight thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(6275, 13566, 'thirteen thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(6276, 61555, 'sixty-one thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(6277, 14152, 'fourteen thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(6278, 39931, 'thirty-nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6279, 63366, 'sixty-three thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(6280, 38078, 'thirty-eight thousand seventy-eight');\nINSERT INTO t3 VALUES(6281, 63552, 'sixty-three thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(6282, 24355, 'twenty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6283, 76778, 'seventy-six thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6284, 37704, 'thirty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(6285, 67452, 'sixty-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(6286, 10168, 'ten thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(6287, 40233, 'forty thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(6288, 57993, 'fifty-seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(6289, 44453, 'forty-four thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(6290, 45171, 'forty-five thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(6291, 98533, 'ninety-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(6292, 64136, 'sixty-four thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(6293, 17545, 'seventeen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(6294, 34776, 'thirty-four thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(6295, 44914, 'forty-four thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(6296, 2385, 'two thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(6297, 3427, 'three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(6298, 90251, 'ninety thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(6299, 48179, 'forty-eight thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(6300, 23545, 'twenty-three thousand five hundred forty-five');\nINSERT INTO t3 VALUES(6301, 91963, 'ninety-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(6302, 36205, 'thirty-six thousand two hundred five');\nINSERT INTO t3 VALUES(6303, 39435, 'thirty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(6304, 29800, 'twenty-nine thousand eight hundred');\nINSERT INTO t3 VALUES(6305, 96509, 'ninety-six thousand five hundred nine');\nINSERT INTO t3 VALUES(6306, 57204, 'fifty-seven thousand two hundred four');\nINSERT INTO t3 VALUES(6307, 79563, 'seventy-nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(6308, 80867, 'eighty thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(6309, 45072, 'forty-five thousand seventy-two');\nINSERT INTO t3 VALUES(6310, 65593, 'sixty-five thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(6311, 80577, 'eighty thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(6312, 70703, 'seventy thousand seven hundred three');\nINSERT INTO t3 VALUES(6313, 55931, 'fifty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6314, 81354, 'eighty-one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(6315, 91349, 'ninety-one thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(6316, 48785, 'forty-eight thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(6317, 34562, 'thirty-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(6318, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(6319, 69561, 'sixty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(6320, 13635, 'thirteen thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6321, 37105, 'thirty-seven thousand one hundred five');\nINSERT INTO t3 VALUES(6322, 78774, 'seventy-eight thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(6323, 75724, 'seventy-five thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(6324, 70917, 'seventy thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(6325, 7787, 'seven thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(6326, 92398, 'ninety-two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(6327, 11381, 'eleven thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(6328, 75170, 'seventy-five thousand one hundred seventy');\nINSERT INTO t3 VALUES(6329, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(6330, 90797, 'ninety thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(6331, 47540, 'forty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(6332, 663, 'six hundred sixty-three');\nINSERT INTO t3 VALUES(6333, 33441, 'thirty-three thousand four hundred forty-one');\nINSERT INTO t3 VALUES(6334, 13129, 'thirteen thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(6335, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(6336, 80935, 'eighty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(6337, 36369, 'thirty-six thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(6338, 2929, 'two thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(6339, 42061, 'forty-two thousand sixty-one');\nINSERT INTO t3 VALUES(6340, 14756, 'fourteen thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(6341, 36945, 'thirty-six thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(6342, 45863, 'forty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(6343, 49551, 'forty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(6344, 81406, 'eighty-one thousand four hundred six');\nINSERT INTO t3 VALUES(6345, 33015, 'thirty-three thousand fifteen');\nINSERT INTO t3 VALUES(6346, 89048, 'eighty-nine thousand forty-eight');\nINSERT INTO t3 VALUES(6347, 85800, 'eighty-five thousand eight hundred');\nINSERT INTO t3 VALUES(6348, 56357, 'fifty-six thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(6349, 60330, 'sixty thousand three hundred thirty');\nINSERT INTO t3 VALUES(6350, 59368, 'fifty-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(6351, 7116, 'seven thousand one hundred sixteen');\nINSERT INTO t3 VALUES(6352, 51716, 'fifty-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(6353, 30310, 'thirty thousand three hundred ten');\nINSERT INTO t3 VALUES(6354, 97685, 'ninety-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(6355, 10474, 'ten thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(6356, 10999, 'ten thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(6357, 83964, 'eighty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(6358, 41674, 'forty-one thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(6359, 58272, 'fifty-eight thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(6360, 30137, 'thirty thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(6361, 58812, 'fifty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(6362, 25428, 'twenty-five thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(6363, 969, 'nine hundred sixty-nine');\nINSERT INTO t3 VALUES(6364, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(6365, 36351, 'thirty-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(6366, 83450, 'eighty-three thousand four hundred fifty');\nINSERT INTO t3 VALUES(6367, 37254, 'thirty-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(6368, 31765, 'thirty-one thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(6369, 35840, 'thirty-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(6370, 86235, 'eighty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(6371, 46187, 'forty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(6372, 98450, 'ninety-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(6373, 36362, 'thirty-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(6374, 29935, 'twenty-nine thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(6375, 44612, 'forty-four thousand six hundred twelve');\nINSERT INTO t3 VALUES(6376, 29621, 'twenty-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(6377, 53245, 'fifty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(6378, 50150, 'fifty thousand one hundred fifty');\nINSERT INTO t3 VALUES(6379, 55048, 'fifty-five thousand forty-eight');\nINSERT INTO t3 VALUES(6380, 86635, 'eighty-six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6381, 22673, 'twenty-two thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(6382, 67513, 'sixty-seven thousand five hundred thirteen');\nINSERT INTO t3 VALUES(6383, 11322, 'eleven thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(6384, 81429, 'eighty-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(6385, 77694, 'seventy-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(6386, 26955, 'twenty-six thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(6387, 50624, 'fifty thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(6388, 88337, 'eighty-eight thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(6389, 74642, 'seventy-four thousand six hundred forty-two');\nINSERT INTO t3 VALUES(6390, 25409, 'twenty-five thousand four hundred nine');\nINSERT INTO t3 VALUES(6391, 85246, 'eighty-five thousand two hundred forty-six');\nINSERT INTO t3 VALUES(6392, 39308, 'thirty-nine thousand three hundred eight');\nINSERT INTO t3 VALUES(6393, 88919, 'eighty-eight thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(6394, 53281, 'fifty-three thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(6395, 98267, 'ninety-eight thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(6396, 94201, 'ninety-four thousand two hundred one');\nINSERT INTO t3 VALUES(6397, 21657, 'twenty-one thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(6398, 94999, 'ninety-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(6399, 88766, 'eighty-eight thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(6400, 31558, 'thirty-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(6401, 54436, 'fifty-four thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(6402, 2398, 'two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(6403, 78834, 'seventy-eight thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(6404, 31629, 'thirty-one thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(6405, 84925, 'eighty-four thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(6406, 39224, 'thirty-nine thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(6407, 46854, 'forty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(6408, 85988, 'eighty-five thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(6409, 96730, 'ninety-six thousand seven hundred thirty');\nINSERT INTO t3 VALUES(6410, 81985, 'eighty-one thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(6411, 28446, 'twenty-eight thousand four hundred forty-six');\nINSERT INTO t3 VALUES(6412, 92945, 'ninety-two thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(6413, 42122, 'forty-two thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(6414, 84171, 'eighty-four thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(6415, 23582, 'twenty-three thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(6416, 32564, 'thirty-two thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(6417, 34568, 'thirty-four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(6418, 84656, 'eighty-four thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(6419, 48291, 'forty-eight thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(6420, 87243, 'eighty-seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(6421, 50125, 'fifty thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(6422, 90477, 'ninety thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(6423, 36164, 'thirty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(6424, 23696, 'twenty-three thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(6425, 33040, 'thirty-three thousand forty');\nINSERT INTO t3 VALUES(6426, 72836, 'seventy-two thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(6427, 86980, 'eighty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(6428, 40623, 'forty thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(6429, 91390, 'ninety-one thousand three hundred ninety');\nINSERT INTO t3 VALUES(6430, 84724, 'eighty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(6431, 35155, 'thirty-five thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(6432, 34401, 'thirty-four thousand four hundred one');\nINSERT INTO t3 VALUES(6433, 33430, 'thirty-three thousand four hundred thirty');\nINSERT INTO t3 VALUES(6434, 14729, 'fourteen thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(6435, 52049, 'fifty-two thousand forty-nine');\nINSERT INTO t3 VALUES(6436, 86968, 'eighty-six thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6437, 31113, 'thirty-one thousand one hundred thirteen');\nINSERT INTO t3 VALUES(6438, 62694, 'sixty-two thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(6439, 59821, 'fifty-nine thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(6440, 3480, 'three thousand four hundred eighty');\nINSERT INTO t3 VALUES(6441, 30845, 'thirty thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(6442, 31999, 'thirty-one thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(6443, 65500, 'sixty-five thousand five hundred');\nINSERT INTO t3 VALUES(6444, 56122, 'fifty-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(6445, 19409, 'nineteen thousand four hundred nine');\nINSERT INTO t3 VALUES(6446, 59094, 'fifty-nine thousand ninety-four');\nINSERT INTO t3 VALUES(6447, 61425, 'sixty-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(6448, 90974, 'ninety thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(6449, 4160, 'four thousand one hundred sixty');\nINSERT INTO t3 VALUES(6450, 25228, 'twenty-five thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(6451, 88487, 'eighty-eight thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(6452, 44319, 'forty-four thousand three hundred nineteen');\nINSERT INTO t3 VALUES(6453, 71594, 'seventy-one thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(6454, 29525, 'twenty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(6455, 96270, 'ninety-six thousand two hundred seventy');\nINSERT INTO t3 VALUES(6456, 71824, 'seventy-one thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(6457, 63054, 'sixty-three thousand fifty-four');\nINSERT INTO t3 VALUES(6458, 667, 'six hundred sixty-seven');\nINSERT INTO t3 VALUES(6459, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(6460, 7174, 'seven thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(6461, 64534, 'sixty-four thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(6462, 72956, 'seventy-two thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(6463, 28646, 'twenty-eight thousand six hundred forty-six');\nINSERT INTO t3 VALUES(6464, 9232, 'nine thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(6465, 82555, 'eighty-two thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(6466, 30862, 'thirty thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(6467, 18916, 'eighteen thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(6468, 74101, 'seventy-four thousand one hundred one');\nINSERT INTO t3 VALUES(6469, 22953, 'twenty-two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(6470, 97282, 'ninety-seven thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(6471, 68523, 'sixty-eight thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(6472, 83312, 'eighty-three thousand three hundred twelve');\nINSERT INTO t3 VALUES(6473, 87909, 'eighty-seven thousand nine hundred nine');\nINSERT INTO t3 VALUES(6474, 58630, 'fifty-eight thousand six hundred thirty');\nINSERT INTO t3 VALUES(6475, 89486, 'eighty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(6476, 61681, 'sixty-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(6477, 35167, 'thirty-five thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(6478, 68894, 'sixty-eight thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6479, 25761, 'twenty-five thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(6480, 25405, 'twenty-five thousand four hundred five');\nINSERT INTO t3 VALUES(6481, 21503, 'twenty-one thousand five hundred three');\nINSERT INTO t3 VALUES(6482, 83719, 'eighty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(6483, 66635, 'sixty-six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6484, 57844, 'fifty-seven thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(6485, 38179, 'thirty-eight thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(6486, 53271, 'fifty-three thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(6487, 79881, 'seventy-nine thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(6488, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(6489, 67614, 'sixty-seven thousand six hundred fourteen');\nINSERT INTO t3 VALUES(6490, 97143, 'ninety-seven thousand one hundred forty-three');\nINSERT INTO t3 VALUES(6491, 17704, 'seventeen thousand seven hundred four');\nINSERT INTO t3 VALUES(6492, 75236, 'seventy-five thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(6493, 9330, 'nine thousand three hundred thirty');\nINSERT INTO t3 VALUES(6494, 79717, 'seventy-nine thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(6495, 25511, 'twenty-five thousand five hundred eleven');\nINSERT INTO t3 VALUES(6496, 79585, 'seventy-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(6497, 18357, 'eighteen thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(6498, 80700, 'eighty thousand seven hundred');\nINSERT INTO t3 VALUES(6499, 34828, 'thirty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(6500, 98144, 'ninety-eight thousand one hundred forty-four');\nINSERT INTO t3 VALUES(6501, 90813, 'ninety thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(6502, 96512, 'ninety-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(6503, 30119, 'thirty thousand one hundred nineteen');\nINSERT INTO t3 VALUES(6504, 17465, 'seventeen thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(6505, 78894, 'seventy-eight thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6506, 99059, 'ninety-nine thousand fifty-nine');\nINSERT INTO t3 VALUES(6507, 74179, 'seventy-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(6508, 40283, 'forty thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(6509, 36084, 'thirty-six thousand eighty-four');\nINSERT INTO t3 VALUES(6510, 25931, 'twenty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6511, 15410, 'fifteen thousand four hundred ten');\nINSERT INTO t3 VALUES(6512, 36549, 'thirty-six thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(6513, 64300, 'sixty-four thousand three hundred');\nINSERT INTO t3 VALUES(6514, 3839, 'three thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(6515, 49750, 'forty-nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(6516, 15951, 'fifteen thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(6517, 12595, 'twelve thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(6518, 19644, 'nineteen thousand six hundred forty-four');\nINSERT INTO t3 VALUES(6519, 78167, 'seventy-eight thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(6520, 51664, 'fifty-one thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(6521, 33464, 'thirty-three thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(6522, 53416, 'fifty-three thousand four hundred sixteen');\nINSERT INTO t3 VALUES(6523, 6901, 'six thousand nine hundred one');\nINSERT INTO t3 VALUES(6524, 3388, 'three thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(6525, 55829, 'fifty-five thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(6526, 84538, 'eighty-four thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(6527, 81904, 'eighty-one thousand nine hundred four');\nINSERT INTO t3 VALUES(6528, 81219, 'eighty-one thousand two hundred nineteen');\nINSERT INTO t3 VALUES(6529, 49076, 'forty-nine thousand seventy-six');\nINSERT INTO t3 VALUES(6530, 70818, 'seventy thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(6531, 71645, 'seventy-one thousand six hundred forty-five');\nINSERT INTO t3 VALUES(6532, 56341, 'fifty-six thousand three hundred forty-one');\nINSERT INTO t3 VALUES(6533, 8023, 'eight thousand twenty-three');\nINSERT INTO t3 VALUES(6534, 91055, 'ninety-one thousand fifty-five');\nINSERT INTO t3 VALUES(6535, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t3 VALUES(6536, 7469, 'seven thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(6537, 22260, 'twenty-two thousand two hundred sixty');\nINSERT INTO t3 VALUES(6538, 85026, 'eighty-five thousand twenty-six');\nINSERT INTO t3 VALUES(6539, 11137, 'eleven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(6540, 5931, 'five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6541, 25921, 'twenty-five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(6542, 29376, 'twenty-nine thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(6543, 13252, 'thirteen thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(6544, 98943, 'ninety-eight thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(6545, 75499, 'seventy-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(6546, 91582, 'ninety-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(6547, 3533, 'three thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(6548, 269, 'two hundred sixty-nine');\nINSERT INTO t3 VALUES(6549, 51498, 'fifty-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(6550, 48037, 'forty-eight thousand thirty-seven');\nINSERT INTO t3 VALUES(6551, 77894, 'seventy-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6552, 28956, 'twenty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(6553, 91318, 'ninety-one thousand three hundred eighteen');\nINSERT INTO t3 VALUES(6554, 76032, 'seventy-six thousand thirty-two');\nINSERT INTO t3 VALUES(6555, 65407, 'sixty-five thousand four hundred seven');\nINSERT INTO t3 VALUES(6556, 10141, 'ten thousand one hundred forty-one');\nINSERT INTO t3 VALUES(6557, 25177, 'twenty-five thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(6558, 39927, 'thirty-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(6559, 93976, 'ninety-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(6560, 17883, 'seventeen thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(6561, 83992, 'eighty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(6562, 70612, 'seventy thousand six hundred twelve');\nINSERT INTO t3 VALUES(6563, 63063, 'sixty-three thousand sixty-three');\nINSERT INTO t3 VALUES(6564, 84038, 'eighty-four thousand thirty-eight');\nINSERT INTO t3 VALUES(6565, 88573, 'eighty-eight thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(6566, 14007, 'fourteen thousand seven');\nINSERT INTO t3 VALUES(6567, 20355, 'twenty thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6568, 88805, 'eighty-eight thousand eight hundred five');\nINSERT INTO t3 VALUES(6569, 74562, 'seventy-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(6570, 29439, 'twenty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(6571, 96238, 'ninety-six thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(6572, 69175, 'sixty-nine thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(6573, 98109, 'ninety-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(6574, 32877, 'thirty-two thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(6575, 19990, 'nineteen thousand nine hundred ninety');\nINSERT INTO t3 VALUES(6576, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(6577, 94034, 'ninety-four thousand thirty-four');\nINSERT INTO t3 VALUES(6578, 66816, 'sixty-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(6579, 1549, 'one thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(6580, 71258, 'seventy-one thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(6581, 12978, 'twelve thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(6582, 23457, 'twenty-three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(6583, 51508, 'fifty-one thousand five hundred eight');\nINSERT INTO t3 VALUES(6584, 35817, 'thirty-five thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(6585, 74355, 'seventy-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6586, 21771, 'twenty-one thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(6587, 21806, 'twenty-one thousand eight hundred six');\nINSERT INTO t3 VALUES(6588, 50591, 'fifty thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(6589, 81906, 'eighty-one thousand nine hundred six');\nINSERT INTO t3 VALUES(6590, 21753, 'twenty-one thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(6591, 76454, 'seventy-six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(6592, 97959, 'ninety-seven thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(6593, 19861, 'nineteen thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(6594, 74155, 'seventy-four thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(6595, 51804, 'fifty-one thousand eight hundred four');\nINSERT INTO t3 VALUES(6596, 26162, 'twenty-six thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(6597, 27725, 'twenty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(6598, 75275, 'seventy-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(6599, 28772, 'twenty-eight thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(6600, 12111, 'twelve thousand one hundred eleven');\nINSERT INTO t3 VALUES(6601, 86492, 'eighty-six thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(6602, 68872, 'sixty-eight thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(6603, 96635, 'ninety-six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6604, 24530, 'twenty-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(6605, 52095, 'fifty-two thousand ninety-five');\nINSERT INTO t3 VALUES(6606, 66430, 'sixty-six thousand four hundred thirty');\nINSERT INTO t3 VALUES(6607, 98708, 'ninety-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(6608, 81032, 'eighty-one thousand thirty-two');\nINSERT INTO t3 VALUES(6609, 46274, 'forty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(6610, 35214, 'thirty-five thousand two hundred fourteen');\nINSERT INTO t3 VALUES(6611, 25329, 'twenty-five thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6612, 89958, 'eighty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(6613, 56115, 'fifty-six thousand one hundred fifteen');\nINSERT INTO t3 VALUES(6614, 1508, 'one thousand five hundred eight');\nINSERT INTO t3 VALUES(6615, 66159, 'sixty-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(6616, 94091, 'ninety-four thousand ninety-one');\nINSERT INTO t3 VALUES(6617, 17931, 'seventeen thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(6618, 50776, 'fifty thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(6619, 51778, 'fifty-one thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6620, 45754, 'forty-five thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(6621, 1673, 'one thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(6622, 41574, 'forty-one thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(6623, 92439, 'ninety-two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(6624, 62210, 'sixty-two thousand two hundred ten');\nINSERT INTO t3 VALUES(6625, 41533, 'forty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(6626, 7793, 'seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(6627, 36450, 'thirty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(6628, 66720, 'sixty-six thousand seven hundred twenty');\nINSERT INTO t3 VALUES(6629, 37480, 'thirty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(6630, 35630, 'thirty-five thousand six hundred thirty');\nINSERT INTO t3 VALUES(6631, 75605, 'seventy-five thousand six hundred five');\nINSERT INTO t3 VALUES(6632, 7352, 'seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(6633, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t3 VALUES(6634, 83097, 'eighty-three thousand ninety-seven');\nINSERT INTO t3 VALUES(6635, 34271, 'thirty-four thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(6636, 71193, 'seventy-one thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(6637, 34249, 'thirty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(6638, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(6639, 66577, 'sixty-six thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(6640, 84774, 'eighty-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(6641, 67257, 'sixty-seven thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(6642, 55627, 'fifty-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(6643, 46698, 'forty-six thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(6644, 40160, 'forty thousand one hundred sixty');\nINSERT INTO t3 VALUES(6645, 99461, 'ninety-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(6646, 25300, 'twenty-five thousand three hundred');\nINSERT INTO t3 VALUES(6647, 75747, 'seventy-five thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(6648, 97000, 'ninety-seven thousand');\nINSERT INTO t3 VALUES(6649, 84151, 'eighty-four thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(6650, 81183, 'eighty-one thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(6651, 65033, 'sixty-five thousand thirty-three');\nINSERT INTO t3 VALUES(6652, 18443, 'eighteen thousand four hundred forty-three');\nINSERT INTO t3 VALUES(6653, 93426, 'ninety-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(6654, 66274, 'sixty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(6655, 71661, 'seventy-one thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(6656, 56328, 'fifty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(6657, 77429, 'seventy-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(6658, 49172, 'forty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(6659, 81563, 'eighty-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(6660, 15364, 'fifteen thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(6661, 40289, 'forty thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(6662, 65642, 'sixty-five thousand six hundred forty-two');\nINSERT INTO t3 VALUES(6663, 66392, 'sixty-six thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6664, 39051, 'thirty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(6665, 50455, 'fifty thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(6666, 86017, 'eighty-six thousand seventeen');\nINSERT INTO t3 VALUES(6667, 47725, 'forty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(6668, 20778, 'twenty thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6669, 26718, 'twenty-six thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(6670, 4198, 'four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(6671, 4003, 'four thousand three');\nINSERT INTO t3 VALUES(6672, 71920, 'seventy-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(6673, 23405, 'twenty-three thousand four hundred five');\nINSERT INTO t3 VALUES(6674, 45877, 'forty-five thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(6675, 84650, 'eighty-four thousand six hundred fifty');\nINSERT INTO t3 VALUES(6676, 92500, 'ninety-two thousand five hundred');\nINSERT INTO t3 VALUES(6677, 33756, 'thirty-three thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(6678, 16742, 'sixteen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(6679, 69714, 'sixty-nine thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(6680, 58512, 'fifty-eight thousand five hundred twelve');\nINSERT INTO t3 VALUES(6681, 48, 'forty-eight');\nINSERT INTO t3 VALUES(6682, 68903, 'sixty-eight thousand nine hundred three');\nINSERT INTO t3 VALUES(6683, 63885, 'sixty-three thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(6684, 87619, 'eighty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(6685, 93753, 'ninety-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(6686, 62988, 'sixty-two thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(6687, 85093, 'eighty-five thousand ninety-three');\nINSERT INTO t3 VALUES(6688, 76970, 'seventy-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(6689, 77131, 'seventy-seven thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(6690, 80972, 'eighty thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(6691, 94976, 'ninety-four thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(6692, 91698, 'ninety-one thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(6693, 40421, 'forty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(6694, 20937, 'twenty thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(6695, 14829, 'fourteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(6696, 54118, 'fifty-four thousand one hundred eighteen');\nINSERT INTO t3 VALUES(6697, 70324, 'seventy thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(6698, 69621, 'sixty-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(6699, 79897, 'seventy-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(6700, 26637, 'twenty-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(6701, 4777, 'four thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(6702, 51548, 'fifty-one thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(6703, 90392, 'ninety thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6704, 86107, 'eighty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(6705, 38488, 'thirty-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(6706, 44084, 'forty-four thousand eighty-four');\nINSERT INTO t3 VALUES(6707, 25919, 'twenty-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(6708, 68527, 'sixty-eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(6709, 65235, 'sixty-five thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(6710, 49374, 'forty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6711, 67287, 'sixty-seven thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(6712, 60554, 'sixty thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(6713, 61828, 'sixty-one thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(6714, 75101, 'seventy-five thousand one hundred one');\nINSERT INTO t3 VALUES(6715, 58843, 'fifty-eight thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(6716, 7528, 'seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(6717, 84326, 'eighty-four thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(6718, 26606, 'twenty-six thousand six hundred six');\nINSERT INTO t3 VALUES(6719, 63107, 'sixty-three thousand one hundred seven');\nINSERT INTO t3 VALUES(6720, 85704, 'eighty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(6721, 64592, 'sixty-four thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(6722, 4172, 'four thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(6723, 29724, 'twenty-nine thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(6724, 66256, 'sixty-six thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(6725, 28574, 'twenty-eight thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(6726, 65820, 'sixty-five thousand eight hundred twenty');\nINSERT INTO t3 VALUES(6727, 53820, 'fifty-three thousand eight hundred twenty');\nINSERT INTO t3 VALUES(6728, 94194, 'ninety-four thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(6729, 85547, 'eighty-five thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(6730, 59483, 'fifty-nine thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(6731, 88634, 'eighty-eight thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(6732, 20559, 'twenty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(6733, 47258, 'forty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(6734, 87086, 'eighty-seven thousand eighty-six');\nINSERT INTO t3 VALUES(6735, 74994, 'seventy-four thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(6736, 86848, 'eighty-six thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(6737, 38213, 'thirty-eight thousand two hundred thirteen');\nINSERT INTO t3 VALUES(6738, 65854, 'sixty-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(6739, 52416, 'fifty-two thousand four hundred sixteen');\nINSERT INTO t3 VALUES(6740, 13950, 'thirteen thousand nine hundred fifty');\nINSERT INTO t3 VALUES(6741, 52315, 'fifty-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(6742, 5782, 'five thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(6743, 47572, 'forty-seven thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(6744, 70865, 'seventy thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(6745, 13411, 'thirteen thousand four hundred eleven');\nINSERT INTO t3 VALUES(6746, 86184, 'eighty-six thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(6747, 29628, 'twenty-nine thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(6748, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(6749, 64383, 'sixty-four thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(6750, 65944, 'sixty-five thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(6751, 90876, 'ninety thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(6752, 22521, 'twenty-two thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(6753, 45905, 'forty-five thousand nine hundred five');\nINSERT INTO t3 VALUES(6754, 64244, 'sixty-four thousand two hundred forty-four');\nINSERT INTO t3 VALUES(6755, 75421, 'seventy-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(6756, 54487, 'fifty-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(6757, 30678, 'thirty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(6758, 66796, 'sixty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(6759, 80073, 'eighty thousand seventy-three');\nINSERT INTO t3 VALUES(6760, 96299, 'ninety-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(6761, 11195, 'eleven thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(6762, 33964, 'thirty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(6763, 46364, 'forty-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(6764, 97177, 'ninety-seven thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(6765, 41466, 'forty-one thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(6766, 61475, 'sixty-one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(6767, 69685, 'sixty-nine thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(6768, 50759, 'fifty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(6769, 64318, 'sixty-four thousand three hundred eighteen');\nINSERT INTO t3 VALUES(6770, 23477, 'twenty-three thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(6771, 74245, 'seventy-four thousand two hundred forty-five');\nINSERT INTO t3 VALUES(6772, 91218, 'ninety-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(6773, 64355, 'sixty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(6774, 47803, 'forty-seven thousand eight hundred three');\nINSERT INTO t3 VALUES(6775, 48927, 'forty-eight thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(6776, 60602, 'sixty thousand six hundred two');\nINSERT INTO t3 VALUES(6777, 76210, 'seventy-six thousand two hundred ten');\nINSERT INTO t3 VALUES(6778, 85169, 'eighty-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(6779, 8482, 'eight thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(6780, 27640, 'twenty-seven thousand six hundred forty');\nINSERT INTO t3 VALUES(6781, 69276, 'sixty-nine thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(6782, 81289, 'eighty-one thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(6783, 86269, 'eighty-six thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(6784, 38434, 'thirty-eight thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(6785, 40510, 'forty thousand five hundred ten');\nINSERT INTO t3 VALUES(6786, 18913, 'eighteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(6787, 28514, 'twenty-eight thousand five hundred fourteen');\nINSERT INTO t3 VALUES(6788, 80994, 'eighty thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(6789, 41680, 'forty-one thousand six hundred eighty');\nINSERT INTO t3 VALUES(6790, 26002, 'twenty-six thousand two');\nINSERT INTO t3 VALUES(6791, 40177, 'forty thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(6792, 72208, 'seventy-two thousand two hundred eight');\nINSERT INTO t3 VALUES(6793, 74431, 'seventy-four thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(6794, 82635, 'eighty-two thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(6795, 30379, 'thirty thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(6796, 65894, 'sixty-five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(6797, 46011, 'forty-six thousand eleven');\nINSERT INTO t3 VALUES(6798, 17613, 'seventeen thousand six hundred thirteen');\nINSERT INTO t3 VALUES(6799, 4141, 'four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(6800, 50157, 'fifty thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(6801, 48985, 'forty-eight thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(6802, 89454, 'eighty-nine thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(6803, 93896, 'ninety-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(6804, 88009, 'eighty-eight thousand nine');\nINSERT INTO t3 VALUES(6805, 89121, 'eighty-nine thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(6806, 35164, 'thirty-five thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(6807, 1979, 'one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(6808, 86539, 'eighty-six thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(6809, 28833, 'twenty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(6810, 65279, 'sixty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(6811, 51761, 'fifty-one thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(6812, 77496, 'seventy-seven thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(6813, 66427, 'sixty-six thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(6814, 44762, 'forty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(6815, 4346, 'four thousand three hundred forty-six');\nINSERT INTO t3 VALUES(6816, 93476, 'ninety-three thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(6817, 27757, 'twenty-seven thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(6818, 62063, 'sixty-two thousand sixty-three');\nINSERT INTO t3 VALUES(6819, 54096, 'fifty-four thousand ninety-six');\nINSERT INTO t3 VALUES(6820, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(6821, 71309, 'seventy-one thousand three hundred nine');\nINSERT INTO t3 VALUES(6822, 20614, 'twenty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(6823, 35252, 'thirty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(6824, 89126, 'eighty-nine thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(6825, 17968, 'seventeen thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6826, 96107, 'ninety-six thousand one hundred seven');\nINSERT INTO t3 VALUES(6827, 71625, 'seventy-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(6828, 78354, 'seventy-eight thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(6829, 68297, 'sixty-eight thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(6830, 19363, 'nineteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(6831, 3034, 'three thousand thirty-four');\nINSERT INTO t3 VALUES(6832, 1779, 'one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(6833, 56414, 'fifty-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(6834, 97655, 'ninety-seven thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(6835, 62338, 'sixty-two thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(6836, 61279, 'sixty-one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(6837, 12672, 'twelve thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(6838, 43260, 'forty-three thousand two hundred sixty');\nINSERT INTO t3 VALUES(6839, 41922, 'forty-one thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(6840, 2017, 'two thousand seventeen');\nINSERT INTO t3 VALUES(6841, 38979, 'thirty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(6842, 61662, 'sixty-one thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(6843, 87046, 'eighty-seven thousand forty-six');\nINSERT INTO t3 VALUES(6844, 9004, 'nine thousand four');\nINSERT INTO t3 VALUES(6845, 63812, 'sixty-three thousand eight hundred twelve');\nINSERT INTO t3 VALUES(6846, 94374, 'ninety-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(6847, 14000, 'fourteen thousand');\nINSERT INTO t3 VALUES(6848, 99440, 'ninety-nine thousand four hundred forty');\nINSERT INTO t3 VALUES(6849, 19142, 'nineteen thousand one hundred forty-two');\nINSERT INTO t3 VALUES(6850, 66431, 'sixty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(6851, 31091, 'thirty-one thousand ninety-one');\nINSERT INTO t3 VALUES(6852, 72977, 'seventy-two thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(6853, 6627, 'six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(6854, 3890, 'three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(6855, 79532, 'seventy-nine thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(6856, 82016, 'eighty-two thousand sixteen');\nINSERT INTO t3 VALUES(6857, 3935, 'three thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(6858, 18287, 'eighteen thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(6859, 67524, 'sixty-seven thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(6860, 88049, 'eighty-eight thousand forty-nine');\nINSERT INTO t3 VALUES(6861, 20482, 'twenty thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(6862, 6539, 'six thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(6863, 32581, 'thirty-two thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(6864, 77558, 'seventy-seven thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(6865, 15775, 'fifteen thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(6866, 66441, 'sixty-six thousand four hundred forty-one');\nINSERT INTO t3 VALUES(6867, 51390, 'fifty-one thousand three hundred ninety');\nINSERT INTO t3 VALUES(6868, 31984, 'thirty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(6869, 3406, 'three thousand four hundred six');\nINSERT INTO t3 VALUES(6870, 93957, 'ninety-three thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(6871, 78392, 'seventy-eight thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(6872, 23683, 'twenty-three thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(6873, 86656, 'eighty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(6874, 26091, 'twenty-six thousand ninety-one');\nINSERT INTO t3 VALUES(6875, 23091, 'twenty-three thousand ninety-one');\nINSERT INTO t3 VALUES(6876, 43220, 'forty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(6877, 42859, 'forty-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(6878, 63640, 'sixty-three thousand six hundred forty');\nINSERT INTO t3 VALUES(6879, 19381, 'nineteen thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(6880, 17280, 'seventeen thousand two hundred eighty');\nINSERT INTO t3 VALUES(6881, 5930, 'five thousand nine hundred thirty');\nINSERT INTO t3 VALUES(6882, 56086, 'fifty-six thousand eighty-six');\nINSERT INTO t3 VALUES(6883, 88653, 'eighty-eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(6884, 64320, 'sixty-four thousand three hundred twenty');\nINSERT INTO t3 VALUES(6885, 96914, 'ninety-six thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(6886, 17347, 'seventeen thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(6887, 61599, 'sixty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(6888, 57329, 'fifty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6889, 85546, 'eighty-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(6890, 75083, 'seventy-five thousand eighty-three');\nINSERT INTO t3 VALUES(6891, 58080, 'fifty-eight thousand eighty');\nINSERT INTO t3 VALUES(6892, 68641, 'sixty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(6893, 17888, 'seventeen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(6894, 38911, 'thirty-eight thousand nine hundred eleven');\nINSERT INTO t3 VALUES(6895, 30958, 'thirty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(6896, 96449, 'ninety-six thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(6897, 26963, 'twenty-six thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(6898, 13180, 'thirteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(6899, 97822, 'ninety-seven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(6900, 46022, 'forty-six thousand twenty-two');\nINSERT INTO t3 VALUES(6901, 73946, 'seventy-three thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(6902, 42740, 'forty-two thousand seven hundred forty');\nINSERT INTO t3 VALUES(6903, 68499, 'sixty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(6904, 29749, 'twenty-nine thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(6905, 6891, 'six thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(6906, 84251, 'eighty-four thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(6907, 29341, 'twenty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(6908, 40269, 'forty thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(6909, 16199, 'sixteen thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(6910, 76146, 'seventy-six thousand one hundred forty-six');\nINSERT INTO t3 VALUES(6911, 77087, 'seventy-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(6912, 3358, 'three thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(6913, 46544, 'forty-six thousand five hundred forty-four');\nINSERT INTO t3 VALUES(6914, 38597, 'thirty-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(6915, 72810, 'seventy-two thousand eight hundred ten');\nINSERT INTO t3 VALUES(6916, 95688, 'ninety-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(6917, 17000, 'seventeen thousand');\nINSERT INTO t3 VALUES(6918, 778, 'seven hundred seventy-eight');\nINSERT INTO t3 VALUES(6919, 73123, 'seventy-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(6920, 71200, 'seventy-one thousand two hundred');\nINSERT INTO t3 VALUES(6921, 57124, 'fifty-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(6922, 42774, 'forty-two thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(6923, 66072, 'sixty-six thousand seventy-two');\nINSERT INTO t3 VALUES(6924, 35498, 'thirty-five thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(6925, 23749, 'twenty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(6926, 96540, 'ninety-six thousand five hundred forty');\nINSERT INTO t3 VALUES(6927, 90601, 'ninety thousand six hundred one');\nINSERT INTO t3 VALUES(6928, 14570, 'fourteen thousand five hundred seventy');\nINSERT INTO t3 VALUES(6929, 92049, 'ninety-two thousand forty-nine');\nINSERT INTO t3 VALUES(6930, 40567, 'forty thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(6931, 66377, 'sixty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(6932, 29027, 'twenty-nine thousand twenty-seven');\nINSERT INTO t3 VALUES(6933, 56397, 'fifty-six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(6934, 15267, 'fifteen thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(6935, 28644, 'twenty-eight thousand six hundred forty-four');\nINSERT INTO t3 VALUES(6936, 30506, 'thirty thousand five hundred six');\nINSERT INTO t3 VALUES(6937, 48842, 'forty-eight thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(6938, 84447, 'eighty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(6939, 4814, 'four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(6940, 56864, 'fifty-six thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(6941, 85799, 'eighty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(6942, 13657, 'thirteen thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(6943, 72959, 'seventy-two thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(6944, 52196, 'fifty-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(6945, 64209, 'sixty-four thousand two hundred nine');\nINSERT INTO t3 VALUES(6946, 17592, 'seventeen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(6947, 17535, 'seventeen thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(6948, 27317, 'twenty-seven thousand three hundred seventeen');\nINSERT INTO t3 VALUES(6949, 58667, 'fifty-eight thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(6950, 39783, 'thirty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(6951, 37823, 'thirty-seven thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(6952, 33797, 'thirty-three thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(6953, 85768, 'eighty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(6954, 21336, 'twenty-one thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(6955, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t3 VALUES(6956, 26883, 'twenty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(6957, 49084, 'forty-nine thousand eighty-four');\nINSERT INTO t3 VALUES(6958, 2104, 'two thousand one hundred four');\nINSERT INTO t3 VALUES(6959, 58650, 'fifty-eight thousand six hundred fifty');\nINSERT INTO t3 VALUES(6960, 21218, 'twenty-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(6961, 83841, 'eighty-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(6962, 46776, 'forty-six thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(6963, 30017, 'thirty thousand seventeen');\nINSERT INTO t3 VALUES(6964, 12552, 'twelve thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(6965, 27693, 'twenty-seven thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(6966, 66629, 'sixty-six thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(6967, 54683, 'fifty-four thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(6968, 31658, 'thirty-one thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(6969, 11550, 'eleven thousand five hundred fifty');\nINSERT INTO t3 VALUES(6970, 63676, 'sixty-three thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(6971, 82573, 'eighty-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(6972, 83389, 'eighty-three thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(6973, 28968, 'twenty-eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(6974, 5490, 'five thousand four hundred ninety');\nINSERT INTO t3 VALUES(6975, 52254, 'fifty-two thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(6976, 12891, 'twelve thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(6977, 62032, 'sixty-two thousand thirty-two');\nINSERT INTO t3 VALUES(6978, 14329, 'fourteen thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(6979, 58369, 'fifty-eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(6980, 15772, 'fifteen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(6981, 56013, 'fifty-six thousand thirteen');\nINSERT INTO t3 VALUES(6982, 73181, 'seventy-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(6983, 48183, 'forty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(6984, 76611, 'seventy-six thousand six hundred eleven');\nINSERT INTO t3 VALUES(6985, 84938, 'eighty-four thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(6986, 35308, 'thirty-five thousand three hundred eight');\nINSERT INTO t3 VALUES(6987, 56710, 'fifty-six thousand seven hundred ten');\nINSERT INTO t3 VALUES(6988, 53066, 'fifty-three thousand sixty-six');\nINSERT INTO t3 VALUES(6989, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(6990, 43304, 'forty-three thousand three hundred four');\nINSERT INTO t3 VALUES(6991, 2192, 'two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(6992, 56252, 'fifty-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(6993, 23775, 'twenty-three thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(6994, 1901, 'one thousand nine hundred one');\nINSERT INTO t3 VALUES(6995, 24617, 'twenty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(6996, 78124, 'seventy-eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(6997, 40147, 'forty thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(6998, 41294, 'forty-one thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(6999, 12619, 'twelve thousand six hundred nineteen');\nINSERT INTO t3 VALUES(7000, 99847, 'ninety-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(7001, 24323, 'twenty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(7002, 90492, 'ninety thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(7003, 83106, 'eighty-three thousand one hundred six');\nINSERT INTO t3 VALUES(7004, 36329, 'thirty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(7005, 80341, 'eighty thousand three hundred forty-one');\nINSERT INTO t3 VALUES(7006, 19238, 'nineteen thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(7007, 44740, 'forty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(7008, 79234, 'seventy-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(7009, 87291, 'eighty-seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(7010, 37049, 'thirty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(7011, 50922, 'fifty thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(7012, 42654, 'forty-two thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(7013, 42608, 'forty-two thousand six hundred eight');\nINSERT INTO t3 VALUES(7014, 94993, 'ninety-four thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(7015, 69001, 'sixty-nine thousand one');\nINSERT INTO t3 VALUES(7016, 97800, 'ninety-seven thousand eight hundred');\nINSERT INTO t3 VALUES(7017, 23734, 'twenty-three thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(7018, 76026, 'seventy-six thousand twenty-six');\nINSERT INTO t3 VALUES(7019, 83205, 'eighty-three thousand two hundred five');\nINSERT INTO t3 VALUES(7020, 98968, 'ninety-eight thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(7021, 95951, 'ninety-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(7022, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(7023, 71311, 'seventy-one thousand three hundred eleven');\nINSERT INTO t3 VALUES(7024, 3536, 'three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(7025, 34569, 'thirty-four thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(7026, 89148, 'eighty-nine thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(7027, 19223, 'nineteen thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(7028, 46452, 'forty-six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(7029, 38054, 'thirty-eight thousand fifty-four');\nINSERT INTO t3 VALUES(7030, 3824, 'three thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7031, 60051, 'sixty thousand fifty-one');\nINSERT INTO t3 VALUES(7032, 71012, 'seventy-one thousand twelve');\nINSERT INTO t3 VALUES(7033, 90260, 'ninety thousand two hundred sixty');\nINSERT INTO t3 VALUES(7034, 85421, 'eighty-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(7035, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7036, 63714, 'sixty-three thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(7037, 11567, 'eleven thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(7038, 21215, 'twenty-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(7039, 18088, 'eighteen thousand eighty-eight');\nINSERT INTO t3 VALUES(7040, 36051, 'thirty-six thousand fifty-one');\nINSERT INTO t3 VALUES(7041, 85907, 'eighty-five thousand nine hundred seven');\nINSERT INTO t3 VALUES(7042, 24245, 'twenty-four thousand two hundred forty-five');\nINSERT INTO t3 VALUES(7043, 27277, 'twenty-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(7044, 33901, 'thirty-three thousand nine hundred one');\nINSERT INTO t3 VALUES(7045, 93841, 'ninety-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(7046, 84152, 'eighty-four thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(7047, 47889, 'forty-seven thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(7048, 6031, 'six thousand thirty-one');\nINSERT INTO t3 VALUES(7049, 95152, 'ninety-five thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(7050, 19764, 'nineteen thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7051, 58743, 'fifty-eight thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(7052, 45094, 'forty-five thousand ninety-four');\nINSERT INTO t3 VALUES(7053, 47239, 'forty-seven thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7054, 55871, 'fifty-five thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7055, 55700, 'fifty-five thousand seven hundred');\nINSERT INTO t3 VALUES(7056, 97138, 'ninety-seven thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(7057, 68397, 'sixty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(7058, 86286, 'eighty-six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(7059, 60433, 'sixty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(7060, 86295, 'eighty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(7061, 38072, 'thirty-eight thousand seventy-two');\nINSERT INTO t3 VALUES(7062, 74952, 'seventy-four thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(7063, 32070, 'thirty-two thousand seventy');\nINSERT INTO t3 VALUES(7064, 58471, 'fifty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(7065, 36852, 'thirty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(7066, 61165, 'sixty-one thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(7067, 22089, 'twenty-two thousand eighty-nine');\nINSERT INTO t3 VALUES(7068, 35839, 'thirty-five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(7069, 85417, 'eighty-five thousand four hundred seventeen');\nINSERT INTO t3 VALUES(7070, 68230, 'sixty-eight thousand two hundred thirty');\nINSERT INTO t3 VALUES(7071, 38104, 'thirty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(7072, 37538, 'thirty-seven thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(7073, 33802, 'thirty-three thousand eight hundred two');\nINSERT INTO t3 VALUES(7074, 69737, 'sixty-nine thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(7075, 5816, 'five thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(7076, 91862, 'ninety-one thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(7077, 68416, 'sixty-eight thousand four hundred sixteen');\nINSERT INTO t3 VALUES(7078, 13016, 'thirteen thousand sixteen');\nINSERT INTO t3 VALUES(7079, 8165, 'eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(7080, 84485, 'eighty-four thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7081, 53664, 'fifty-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(7082, 278, 'two hundred seventy-eight');\nINSERT INTO t3 VALUES(7083, 54590, 'fifty-four thousand five hundred ninety');\nINSERT INTO t3 VALUES(7084, 55644, 'fifty-five thousand six hundred forty-four');\nINSERT INTO t3 VALUES(7085, 5222, 'five thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(7086, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(7087, 14172, 'fourteen thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7088, 8485, 'eight thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7089, 66008, 'sixty-six thousand eight');\nINSERT INTO t3 VALUES(7090, 74780, 'seventy-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(7091, 67764, 'sixty-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7092, 44389, 'forty-four thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7093, 79372, 'seventy-nine thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(7094, 75617, 'seventy-five thousand six hundred seventeen');\nINSERT INTO t3 VALUES(7095, 36126, 'thirty-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(7096, 79591, 'seventy-nine thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(7097, 61635, 'sixty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(7098, 45116, 'forty-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7099, 31220, 'thirty-one thousand two hundred twenty');\nINSERT INTO t3 VALUES(7100, 50726, 'fifty thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(7101, 4479, 'four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(7102, 93759, 'ninety-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(7103, 51972, 'fifty-one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(7104, 70378, 'seventy thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(7105, 53346, 'fifty-three thousand three hundred forty-six');\nINSERT INTO t3 VALUES(7106, 97684, 'ninety-seven thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(7107, 9978, 'nine thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(7108, 36707, 'thirty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(7109, 64941, 'sixty-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(7110, 93739, 'ninety-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(7111, 94948, 'ninety-four thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(7112, 41867, 'forty-one thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(7113, 28515, 'twenty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(7114, 60341, 'sixty thousand three hundred forty-one');\nINSERT INTO t3 VALUES(7115, 4047, 'four thousand forty-seven');\nINSERT INTO t3 VALUES(7116, 59361, 'fifty-nine thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7117, 11983, 'eleven thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(7118, 1906, 'one thousand nine hundred six');\nINSERT INTO t3 VALUES(7119, 14323, 'fourteen thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(7120, 92640, 'ninety-two thousand six hundred forty');\nINSERT INTO t3 VALUES(7121, 11527, 'eleven thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(7122, 88232, 'eighty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(7123, 16507, 'sixteen thousand five hundred seven');\nINSERT INTO t3 VALUES(7124, 72272, 'seventy-two thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(7125, 7378, 'seven thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(7126, 14997, 'fourteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(7127, 67667, 'sixty-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(7128, 97793, 'ninety-seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(7129, 34287, 'thirty-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(7130, 39397, 'thirty-nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(7131, 83438, 'eighty-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(7132, 7585, 'seven thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(7133, 42113, 'forty-two thousand one hundred thirteen');\nINSERT INTO t3 VALUES(7134, 4189, 'four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(7135, 94919, 'ninety-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(7136, 77199, 'seventy-seven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(7137, 45667, 'forty-five thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(7138, 42730, 'forty-two thousand seven hundred thirty');\nINSERT INTO t3 VALUES(7139, 35776, 'thirty-five thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(7140, 31408, 'thirty-one thousand four hundred eight');\nINSERT INTO t3 VALUES(7141, 67406, 'sixty-seven thousand four hundred six');\nINSERT INTO t3 VALUES(7142, 43811, 'forty-three thousand eight hundred eleven');\nINSERT INTO t3 VALUES(7143, 66482, 'sixty-six thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(7144, 97833, 'ninety-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(7145, 95012, 'ninety-five thousand twelve');\nINSERT INTO t3 VALUES(7146, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(7147, 16761, 'sixteen thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(7148, 21732, 'twenty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(7149, 18523, 'eighteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(7150, 4223, 'four thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(7151, 9931, 'nine thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(7152, 78366, 'seventy-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(7153, 20581, 'twenty thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(7154, 357, 'three hundred fifty-seven');\nINSERT INTO t3 VALUES(7155, 43136, 'forty-three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(7156, 31700, 'thirty-one thousand seven hundred');\nINSERT INTO t3 VALUES(7157, 93442, 'ninety-three thousand four hundred forty-two');\nINSERT INTO t3 VALUES(7158, 48765, 'forty-eight thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(7159, 86211, 'eighty-six thousand two hundred eleven');\nINSERT INTO t3 VALUES(7160, 40331, 'forty thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(7161, 97315, 'ninety-seven thousand three hundred fifteen');\nINSERT INTO t3 VALUES(7162, 66147, 'sixty-six thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(7163, 73241, 'seventy-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(7164, 64669, 'sixty-four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(7165, 99813, 'ninety-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(7166, 13616, 'thirteen thousand six hundred sixteen');\nINSERT INTO t3 VALUES(7167, 25387, 'twenty-five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(7168, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(7169, 66643, 'sixty-six thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7170, 24967, 'twenty-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(7171, 80090, 'eighty thousand ninety');\nINSERT INTO t3 VALUES(7172, 88725, 'eighty-eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(7173, 10863, 'ten thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(7174, 17830, 'seventeen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(7175, 46076, 'forty-six thousand seventy-six');\nINSERT INTO t3 VALUES(7176, 53475, 'fifty-three thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(7177, 31456, 'thirty-one thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(7178, 85279, 'eighty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(7179, 30140, 'thirty thousand one hundred forty');\nINSERT INTO t3 VALUES(7180, 30633, 'thirty thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(7181, 80244, 'eighty thousand two hundred forty-four');\nINSERT INTO t3 VALUES(7182, 40054, 'forty thousand fifty-four');\nINSERT INTO t3 VALUES(7183, 87970, 'eighty-seven thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7184, 80555, 'eighty thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(7185, 58363, 'fifty-eight thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(7186, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(7187, 913, 'nine hundred thirteen');\nINSERT INTO t3 VALUES(7188, 75543, 'seventy-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(7189, 20338, 'twenty thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(7190, 60082, 'sixty thousand eighty-two');\nINSERT INTO t3 VALUES(7191, 85893, 'eighty-five thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(7192, 57415, 'fifty-seven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(7193, 29463, 'twenty-nine thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(7194, 57079, 'fifty-seven thousand seventy-nine');\nINSERT INTO t3 VALUES(7195, 62246, 'sixty-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(7196, 22708, 'twenty-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(7197, 73829, 'seventy-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(7198, 18328, 'eighteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(7199, 31738, 'thirty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(7200, 3161, 'three thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(7201, 74510, 'seventy-four thousand five hundred ten');\nINSERT INTO t3 VALUES(7202, 83115, 'eighty-three thousand one hundred fifteen');\nINSERT INTO t3 VALUES(7203, 4707, 'four thousand seven hundred seven');\nINSERT INTO t3 VALUES(7204, 20924, 'twenty thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(7205, 96143, 'ninety-six thousand one hundred forty-three');\nINSERT INTO t3 VALUES(7206, 26195, 'twenty-six thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(7207, 59345, 'fifty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(7208, 86450, 'eighty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(7209, 71425, 'seventy-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(7210, 6990, 'six thousand nine hundred ninety');\nINSERT INTO t3 VALUES(7211, 24491, 'twenty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(7212, 98181, 'ninety-eight thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(7213, 47808, 'forty-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(7214, 25363, 'twenty-five thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(7215, 26427, 'twenty-six thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(7216, 98541, 'ninety-eight thousand five hundred forty-one');\nINSERT INTO t3 VALUES(7217, 58438, 'fifty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(7218, 81857, 'eighty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(7219, 50613, 'fifty thousand six hundred thirteen');\nINSERT INTO t3 VALUES(7220, 69379, 'sixty-nine thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(7221, 89679, 'eighty-nine thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(7222, 5764, 'five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7223, 86354, 'eighty-six thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(7224, 5115, 'five thousand one hundred fifteen');\nINSERT INTO t3 VALUES(7225, 62679, 'sixty-two thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(7226, 11391, 'eleven thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(7227, 97281, 'ninety-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(7228, 33539, 'thirty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(7229, 31375, 'thirty-one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(7230, 77006, 'seventy-seven thousand six');\nINSERT INTO t3 VALUES(7231, 54360, 'fifty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(7232, 96812, 'ninety-six thousand eight hundred twelve');\nINSERT INTO t3 VALUES(7233, 18611, 'eighteen thousand six hundred eleven');\nINSERT INTO t3 VALUES(7234, 12079, 'twelve thousand seventy-nine');\nINSERT INTO t3 VALUES(7235, 34411, 'thirty-four thousand four hundred eleven');\nINSERT INTO t3 VALUES(7236, 64281, 'sixty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(7237, 17064, 'seventeen thousand sixty-four');\nINSERT INTO t3 VALUES(7238, 95552, 'ninety-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(7239, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(7240, 26079, 'twenty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(7241, 87235, 'eighty-seven thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(7242, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(7243, 50239, 'fifty thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7244, 59601, 'fifty-nine thousand six hundred one');\nINSERT INTO t3 VALUES(7245, 45706, 'forty-five thousand seven hundred six');\nINSERT INTO t3 VALUES(7246, 27308, 'twenty-seven thousand three hundred eight');\nINSERT INTO t3 VALUES(7247, 26573, 'twenty-six thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(7248, 93524, 'ninety-three thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(7249, 47438, 'forty-seven thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(7250, 403, 'four hundred three');\nINSERT INTO t3 VALUES(7251, 51586, 'fifty-one thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(7252, 40570, 'forty thousand five hundred seventy');\nINSERT INTO t3 VALUES(7253, 26997, 'twenty-six thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(7254, 32939, 'thirty-two thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7255, 21478, 'twenty-one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(7256, 82551, 'eighty-two thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(7257, 79146, 'seventy-nine thousand one hundred forty-six');\nINSERT INTO t3 VALUES(7258, 78890, 'seventy-eight thousand eight hundred ninety');\nINSERT INTO t3 VALUES(7259, 40685, 'forty thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(7260, 93267, 'ninety-three thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(7261, 60743, 'sixty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(7262, 40535, 'forty thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(7263, 66248, 'sixty-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(7264, 1632, 'one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7265, 91926, 'ninety-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(7266, 90327, 'ninety thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(7267, 24395, 'twenty-four thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(7268, 98064, 'ninety-eight thousand sixty-four');\nINSERT INTO t3 VALUES(7269, 84829, 'eighty-four thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(7270, 68154, 'sixty-eight thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(7271, 43866, 'forty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(7272, 32063, 'thirty-two thousand sixty-three');\nINSERT INTO t3 VALUES(7273, 86571, 'eighty-six thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(7274, 75604, 'seventy-five thousand six hundred four');\nINSERT INTO t3 VALUES(7275, 26373, 'twenty-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(7276, 27365, 'twenty-seven thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(7277, 45389, 'forty-five thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7278, 32778, 'thirty-two thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(7279, 79641, 'seventy-nine thousand six hundred forty-one');\nINSERT INTO t3 VALUES(7280, 68632, 'sixty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7281, 91680, 'ninety-one thousand six hundred eighty');\nINSERT INTO t3 VALUES(7282, 9698, 'nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(7283, 10169, 'ten thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(7284, 95137, 'ninety-five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(7285, 50545, 'fifty thousand five hundred forty-five');\nINSERT INTO t3 VALUES(7286, 28316, 'twenty-eight thousand three hundred sixteen');\nINSERT INTO t3 VALUES(7287, 75939, 'seventy-five thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7288, 99566, 'ninety-nine thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(7289, 58914, 'fifty-eight thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(7290, 46525, 'forty-six thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(7291, 17180, 'seventeen thousand one hundred eighty');\nINSERT INTO t3 VALUES(7292, 43503, 'forty-three thousand five hundred three');\nINSERT INTO t3 VALUES(7293, 42734, 'forty-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(7294, 52603, 'fifty-two thousand six hundred three');\nINSERT INTO t3 VALUES(7295, 37051, 'thirty-seven thousand fifty-one');\nINSERT INTO t3 VALUES(7296, 88547, 'eighty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(7297, 50661, 'fifty thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(7298, 63879, 'sixty-three thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(7299, 43116, 'forty-three thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7300, 41459, 'forty-one thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(7301, 52667, 'fifty-two thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(7302, 94465, 'ninety-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(7303, 1466, 'one thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(7304, 7554, 'seven thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(7305, 63773, 'sixty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(7306, 81490, 'eighty-one thousand four hundred ninety');\nINSERT INTO t3 VALUES(7307, 40160, 'forty thousand one hundred sixty');\nINSERT INTO t3 VALUES(7308, 50116, 'fifty thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7309, 23794, 'twenty-three thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(7310, 16229, 'sixteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(7311, 94774, 'ninety-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(7312, 81281, 'eighty-one thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(7313, 92361, 'ninety-two thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7314, 8777, 'eight thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(7315, 82318, 'eighty-two thousand three hundred eighteen');\nINSERT INTO t3 VALUES(7316, 84670, 'eighty-four thousand six hundred seventy');\nINSERT INTO t3 VALUES(7317, 97483, 'ninety-seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(7318, 63160, 'sixty-three thousand one hundred sixty');\nINSERT INTO t3 VALUES(7319, 57553, 'fifty-seven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(7320, 64537, 'sixty-four thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(7321, 82027, 'eighty-two thousand twenty-seven');\nINSERT INTO t3 VALUES(7322, 93718, 'ninety-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(7323, 87896, 'eighty-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(7324, 44585, 'forty-four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(7325, 40057, 'forty thousand fifty-seven');\nINSERT INTO t3 VALUES(7326, 26386, 'twenty-six thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(7327, 1766, 'one thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(7328, 34015, 'thirty-four thousand fifteen');\nINSERT INTO t3 VALUES(7329, 50261, 'fifty thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(7330, 78277, 'seventy-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(7331, 46721, 'forty-six thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(7332, 25314, 'twenty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7333, 16614, 'sixteen thousand six hundred fourteen');\nINSERT INTO t3 VALUES(7334, 48752, 'forty-eight thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(7335, 59627, 'fifty-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(7336, 99314, 'ninety-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7337, 19999, 'nineteen thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(7338, 75660, 'seventy-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(7339, 99677, 'ninety-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(7340, 73009, 'seventy-three thousand nine');\nINSERT INTO t3 VALUES(7341, 22318, 'twenty-two thousand three hundred eighteen');\nINSERT INTO t3 VALUES(7342, 60655, 'sixty thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(7343, 46171, 'forty-six thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(7344, 36168, 'thirty-six thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(7345, 80572, 'eighty thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(7346, 93370, 'ninety-three thousand three hundred seventy');\nINSERT INTO t3 VALUES(7347, 12796, 'twelve thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(7348, 48320, 'forty-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(7349, 91647, 'ninety-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(7350, 41767, 'forty-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(7351, 53956, 'fifty-three thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(7352, 39825, 'thirty-nine thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(7353, 31096, 'thirty-one thousand ninety-six');\nINSERT INTO t3 VALUES(7354, 61425, 'sixty-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(7355, 22037, 'twenty-two thousand thirty-seven');\nINSERT INTO t3 VALUES(7356, 92717, 'ninety-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(7357, 26391, 'twenty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(7358, 52610, 'fifty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(7359, 37210, 'thirty-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(7360, 91766, 'ninety-one thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(7361, 71153, 'seventy-one thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(7362, 99371, 'ninety-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(7363, 54607, 'fifty-four thousand six hundred seven');\nINSERT INTO t3 VALUES(7364, 31431, 'thirty-one thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(7365, 24555, 'twenty-four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(7366, 68445, 'sixty-eight thousand four hundred forty-five');\nINSERT INTO t3 VALUES(7367, 53641, 'fifty-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(7368, 64496, 'sixty-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(7369, 22525, 'twenty-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(7370, 96979, 'ninety-six thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(7371, 26026, 'twenty-six thousand twenty-six');\nINSERT INTO t3 VALUES(7372, 66299, 'sixty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(7373, 63489, 'sixty-three thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(7374, 49429, 'forty-nine thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(7375, 78692, 'seventy-eight thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(7376, 837, 'eight hundred thirty-seven');\nINSERT INTO t3 VALUES(7377, 70519, 'seventy thousand five hundred nineteen');\nINSERT INTO t3 VALUES(7378, 65336, 'sixty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(7379, 32764, 'thirty-two thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(7380, 38253, 'thirty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(7381, 11074, 'eleven thousand seventy-four');\nINSERT INTO t3 VALUES(7382, 85697, 'eighty-five thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(7383, 39179, 'thirty-nine thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(7384, 65031, 'sixty-five thousand thirty-one');\nINSERT INTO t3 VALUES(7385, 67408, 'sixty-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(7386, 92027, 'ninety-two thousand twenty-seven');\nINSERT INTO t3 VALUES(7387, 67498, 'sixty-seven thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(7388, 53423, 'fifty-three thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(7389, 74263, 'seventy-four thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(7390, 91085, 'ninety-one thousand eighty-five');\nINSERT INTO t3 VALUES(7391, 95463, 'ninety-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(7392, 77277, 'seventy-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(7393, 38802, 'thirty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(7394, 53304, 'fifty-three thousand three hundred four');\nINSERT INTO t3 VALUES(7395, 70192, 'seventy thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(7396, 94906, 'ninety-four thousand nine hundred six');\nINSERT INTO t3 VALUES(7397, 54039, 'fifty-four thousand thirty-nine');\nINSERT INTO t3 VALUES(7398, 20635, 'twenty thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(7399, 79504, 'seventy-nine thousand five hundred four');\nINSERT INTO t3 VALUES(7400, 9461, 'nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(7401, 38963, 'thirty-eight thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(7402, 8529, 'eight thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(7403, 81890, 'eighty-one thousand eight hundred ninety');\nINSERT INTO t3 VALUES(7404, 40177, 'forty thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(7405, 64703, 'sixty-four thousand seven hundred three');\nINSERT INTO t3 VALUES(7406, 79332, 'seventy-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(7407, 19102, 'nineteen thousand one hundred two');\nINSERT INTO t3 VALUES(7408, 69980, 'sixty-nine thousand nine hundred eighty');\nINSERT INTO t3 VALUES(7409, 98709, 'ninety-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(7410, 47286, 'forty-seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(7411, 94188, 'ninety-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(7412, 9888, 'nine thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(7413, 74431, 'seventy-four thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(7414, 85319, 'eighty-five thousand three hundred nineteen');\nINSERT INTO t3 VALUES(7415, 43359, 'forty-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(7416, 59822, 'fifty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(7417, 54754, 'fifty-four thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(7418, 19939, 'nineteen thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7419, 27173, 'twenty-seven thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(7420, 39417, 'thirty-nine thousand four hundred seventeen');\nINSERT INTO t3 VALUES(7421, 5050, 'five thousand fifty');\nINSERT INTO t3 VALUES(7422, 82733, 'eighty-two thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(7423, 71513, 'seventy-one thousand five hundred thirteen');\nINSERT INTO t3 VALUES(7424, 61625, 'sixty-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(7425, 38970, 'thirty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7426, 57012, 'fifty-seven thousand twelve');\nINSERT INTO t3 VALUES(7427, 86190, 'eighty-six thousand one hundred ninety');\nINSERT INTO t3 VALUES(7428, 49754, 'forty-nine thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(7429, 3570, 'three thousand five hundred seventy');\nINSERT INTO t3 VALUES(7430, 96076, 'ninety-six thousand seventy-six');\nINSERT INTO t3 VALUES(7431, 4745, 'four thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(7432, 92184, 'ninety-two thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(7433, 72315, 'seventy-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(7434, 85172, 'eighty-five thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7435, 35389, 'thirty-five thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7436, 67991, 'sixty-seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(7437, 35787, 'thirty-five thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(7438, 17895, 'seventeen thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(7439, 97226, 'ninety-seven thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(7440, 66758, 'sixty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(7441, 51392, 'fifty-one thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(7442, 9569, 'nine thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(7443, 11318, 'eleven thousand three hundred eighteen');\nINSERT INTO t3 VALUES(7444, 65677, 'sixty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(7445, 61757, 'sixty-one thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(7446, 66882, 'sixty-six thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(7447, 70581, 'seventy thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(7448, 34156, 'thirty-four thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(7449, 60205, 'sixty thousand two hundred five');\nINSERT INTO t3 VALUES(7450, 96642, 'ninety-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(7451, 72517, 'seventy-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(7452, 61711, 'sixty-one thousand seven hundred eleven');\nINSERT INTO t3 VALUES(7453, 64009, 'sixty-four thousand nine');\nINSERT INTO t3 VALUES(7454, 4585, 'four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(7455, 2992, 'two thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(7456, 69552, 'sixty-nine thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(7457, 48447, 'forty-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7458, 40860, 'forty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(7459, 48556, 'forty-eight thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(7460, 54763, 'fifty-four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(7461, 80128, 'eighty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(7462, 12294, 'twelve thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(7463, 99064, 'ninety-nine thousand sixty-four');\nINSERT INTO t3 VALUES(7464, 95603, 'ninety-five thousand six hundred three');\nINSERT INTO t3 VALUES(7465, 22560, 'twenty-two thousand five hundred sixty');\nINSERT INTO t3 VALUES(7466, 4045, 'four thousand forty-five');\nINSERT INTO t3 VALUES(7467, 13916, 'thirteen thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(7468, 71415, 'seventy-one thousand four hundred fifteen');\nINSERT INTO t3 VALUES(7469, 96384, 'ninety-six thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(7470, 47370, 'forty-seven thousand three hundred seventy');\nINSERT INTO t3 VALUES(7471, 32635, 'thirty-two thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(7472, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(7473, 77570, 'seventy-seven thousand five hundred seventy');\nINSERT INTO t3 VALUES(7474, 16982, 'sixteen thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(7475, 57260, 'fifty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(7476, 81874, 'eighty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(7477, 12504, 'twelve thousand five hundred four');\nINSERT INTO t3 VALUES(7478, 6017, 'six thousand seventeen');\nINSERT INTO t3 VALUES(7479, 92489, 'ninety-two thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(7480, 24565, 'twenty-four thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(7481, 66542, 'sixty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(7482, 55826, 'fifty-five thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(7483, 58424, 'fifty-eight thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(7484, 35503, 'thirty-five thousand five hundred three');\nINSERT INTO t3 VALUES(7485, 37619, 'thirty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(7486, 35052, 'thirty-five thousand fifty-two');\nINSERT INTO t3 VALUES(7487, 20516, 'twenty thousand five hundred sixteen');\nINSERT INTO t3 VALUES(7488, 28207, 'twenty-eight thousand two hundred seven');\nINSERT INTO t3 VALUES(7489, 37939, 'thirty-seven thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(7490, 64114, 'sixty-four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(7491, 57495, 'fifty-seven thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(7492, 1723, 'one thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(7493, 30893, 'thirty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(7494, 84887, 'eighty-four thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(7495, 80399, 'eighty thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(7496, 78016, 'seventy-eight thousand sixteen');\nINSERT INTO t3 VALUES(7497, 98840, 'ninety-eight thousand eight hundred forty');\nINSERT INTO t3 VALUES(7498, 46953, 'forty-six thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(7499, 44776, 'forty-four thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(7500, 9547, 'nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(7501, 90833, 'ninety thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(7502, 53107, 'fifty-three thousand one hundred seven');\nINSERT INTO t3 VALUES(7503, 52712, 'fifty-two thousand seven hundred twelve');\nINSERT INTO t3 VALUES(7504, 68252, 'sixty-eight thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(7505, 74509, 'seventy-four thousand five hundred nine');\nINSERT INTO t3 VALUES(7506, 65288, 'sixty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(7507, 50712, 'fifty thousand seven hundred twelve');\nINSERT INTO t3 VALUES(7508, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(7509, 79046, 'seventy-nine thousand forty-six');\nINSERT INTO t3 VALUES(7510, 41546, 'forty-one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(7511, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(7512, 27949, 'twenty-seven thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(7513, 7411, 'seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(7514, 34311, 'thirty-four thousand three hundred eleven');\nINSERT INTO t3 VALUES(7515, 74659, 'seventy-four thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(7516, 66488, 'sixty-six thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(7517, 13787, 'thirteen thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(7518, 46028, 'forty-six thousand twenty-eight');\nINSERT INTO t3 VALUES(7519, 11820, 'eleven thousand eight hundred twenty');\nINSERT INTO t3 VALUES(7520, 45427, 'forty-five thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(7521, 52355, 'fifty-two thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(7522, 28745, 'twenty-eight thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(7523, 9026, 'nine thousand twenty-six');\nINSERT INTO t3 VALUES(7524, 94884, 'ninety-four thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(7525, 76702, 'seventy-six thousand seven hundred two');\nINSERT INTO t3 VALUES(7526, 39677, 'thirty-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(7527, 72087, 'seventy-two thousand eighty-seven');\nINSERT INTO t3 VALUES(7528, 97734, 'ninety-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(7529, 32518, 'thirty-two thousand five hundred eighteen');\nINSERT INTO t3 VALUES(7530, 50306, 'fifty thousand three hundred six');\nINSERT INTO t3 VALUES(7531, 37149, 'thirty-seven thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(7532, 97313, 'ninety-seven thousand three hundred thirteen');\nINSERT INTO t3 VALUES(7533, 1129, 'one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(7534, 12070, 'twelve thousand seventy');\nINSERT INTO t3 VALUES(7535, 30942, 'thirty thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(7536, 77989, 'seventy-seven thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(7537, 54855, 'fifty-four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(7538, 35213, 'thirty-five thousand two hundred thirteen');\nINSERT INTO t3 VALUES(7539, 39137, 'thirty-nine thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(7540, 14845, 'fourteen thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(7541, 97824, 'ninety-seven thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7542, 34872, 'thirty-four thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(7543, 35272, 'thirty-five thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(7544, 78747, 'seventy-eight thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(7545, 12609, 'twelve thousand six hundred nine');\nINSERT INTO t3 VALUES(7546, 22610, 'twenty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(7547, 74120, 'seventy-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(7548, 11307, 'eleven thousand three hundred seven');\nINSERT INTO t3 VALUES(7549, 78732, 'seventy-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(7550, 38744, 'thirty-eight thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(7551, 86177, 'eighty-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(7552, 76698, 'seventy-six thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(7553, 98127, 'ninety-eight thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(7554, 45165, 'forty-five thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(7555, 20447, 'twenty thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7556, 50029, 'fifty thousand twenty-nine');\nINSERT INTO t3 VALUES(7557, 45474, 'forty-five thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(7558, 58763, 'fifty-eight thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(7559, 1595, 'one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(7560, 85801, 'eighty-five thousand eight hundred one');\nINSERT INTO t3 VALUES(7561, 71686, 'seventy-one thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(7562, 48690, 'forty-eight thousand six hundred ninety');\nINSERT INTO t3 VALUES(7563, 69831, 'sixty-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(7564, 41830, 'forty-one thousand eight hundred thirty');\nINSERT INTO t3 VALUES(7565, 39401, 'thirty-nine thousand four hundred one');\nINSERT INTO t3 VALUES(7566, 36409, 'thirty-six thousand four hundred nine');\nINSERT INTO t3 VALUES(7567, 93546, 'ninety-three thousand five hundred forty-six');\nINSERT INTO t3 VALUES(7568, 28623, 'twenty-eight thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(7569, 76447, 'seventy-six thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7570, 74155, 'seventy-four thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(7571, 27676, 'twenty-seven thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(7572, 93103, 'ninety-three thousand one hundred three');\nINSERT INTO t3 VALUES(7573, 74447, 'seventy-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(7574, 15621, 'fifteen thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(7575, 2525, 'two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(7576, 33109, 'thirty-three thousand one hundred nine');\nINSERT INTO t3 VALUES(7577, 64120, 'sixty-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(7578, 52964, 'fifty-two thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(7579, 76616, 'seventy-six thousand six hundred sixteen');\nINSERT INTO t3 VALUES(7580, 48564, 'forty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(7581, 16025, 'sixteen thousand twenty-five');\nINSERT INTO t3 VALUES(7582, 80423, 'eighty thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(7583, 70279, 'seventy thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(7584, 5922, 'five thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(7585, 98448, 'ninety-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(7586, 87113, 'eighty-seven thousand one hundred thirteen');\nINSERT INTO t3 VALUES(7587, 94305, 'ninety-four thousand three hundred five');\nINSERT INTO t3 VALUES(7588, 16578, 'sixteen thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(7589, 82326, 'eighty-two thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(7590, 88899, 'eighty-eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(7591, 44787, 'forty-four thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(7592, 33204, 'thirty-three thousand two hundred four');\nINSERT INTO t3 VALUES(7593, 57376, 'fifty-seven thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(7594, 13450, 'thirteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(7595, 12044, 'twelve thousand forty-four');\nINSERT INTO t3 VALUES(7596, 44098, 'forty-four thousand ninety-eight');\nINSERT INTO t3 VALUES(7597, 52412, 'fifty-two thousand four hundred twelve');\nINSERT INTO t3 VALUES(7598, 10663, 'ten thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(7599, 99892, 'ninety-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7600, 63839, 'sixty-three thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(7601, 49410, 'forty-nine thousand four hundred ten');\nINSERT INTO t3 VALUES(7602, 61592, 'sixty-one thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(7603, 24187, 'twenty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(7604, 697, 'six hundred ninety-seven');\nINSERT INTO t3 VALUES(7605, 73808, 'seventy-three thousand eight hundred eight');\nINSERT INTO t3 VALUES(7606, 51709, 'fifty-one thousand seven hundred nine');\nINSERT INTO t3 VALUES(7607, 28293, 'twenty-eight thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(7608, 10204, 'ten thousand two hundred four');\nINSERT INTO t3 VALUES(7609, 67203, 'sixty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(7610, 12565, 'twelve thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(7611, 25215, 'twenty-five thousand two hundred fifteen');\nINSERT INTO t3 VALUES(7612, 34623, 'thirty-four thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(7613, 69754, 'sixty-nine thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(7614, 11969, 'eleven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(7615, 86414, 'eighty-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(7616, 77625, 'seventy-seven thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(7617, 73643, 'seventy-three thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7618, 82224, 'eighty-two thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(7619, 86857, 'eighty-six thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(7620, 23712, 'twenty-three thousand seven hundred twelve');\nINSERT INTO t3 VALUES(7621, 9453, 'nine thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(7622, 14528, 'fourteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(7623, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(7624, 80800, 'eighty thousand eight hundred');\nINSERT INTO t3 VALUES(7625, 36617, 'thirty-six thousand six hundred seventeen');\nINSERT INTO t3 VALUES(7626, 43490, 'forty-three thousand four hundred ninety');\nINSERT INTO t3 VALUES(7627, 40014, 'forty thousand fourteen');\nINSERT INTO t3 VALUES(7628, 27058, 'twenty-seven thousand fifty-eight');\nINSERT INTO t3 VALUES(7629, 31330, 'thirty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(7630, 18183, 'eighteen thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(7631, 26692, 'twenty-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(7632, 2326, 'two thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(7633, 8740, 'eight thousand seven hundred forty');\nINSERT INTO t3 VALUES(7634, 71872, 'seventy-one thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(7635, 94980, 'ninety-four thousand nine hundred eighty');\nINSERT INTO t3 VALUES(7636, 57421, 'fifty-seven thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(7637, 50262, 'fifty thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(7638, 92558, 'ninety-two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(7639, 28433, 'twenty-eight thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(7640, 38487, 'thirty-eight thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(7641, 57935, 'fifty-seven thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(7642, 80686, 'eighty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(7643, 82288, 'eighty-two thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(7644, 45145, 'forty-five thousand one hundred forty-five');\nINSERT INTO t3 VALUES(7645, 42731, 'forty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(7646, 92859, 'ninety-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(7647, 25249, 'twenty-five thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(7648, 27889, 'twenty-seven thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(7649, 32498, 'thirty-two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(7650, 67190, 'sixty-seven thousand one hundred ninety');\nINSERT INTO t3 VALUES(7651, 16483, 'sixteen thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(7652, 92921, 'ninety-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(7653, 81931, 'eighty-one thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(7654, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(7655, 65606, 'sixty-five thousand six hundred six');\nINSERT INTO t3 VALUES(7656, 80140, 'eighty thousand one hundred forty');\nINSERT INTO t3 VALUES(7657, 17924, 'seventeen thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(7658, 73424, 'seventy-three thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(7659, 44329, 'forty-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(7660, 17251, 'seventeen thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(7661, 76550, 'seventy-six thousand five hundred fifty');\nINSERT INTO t3 VALUES(7662, 96373, 'ninety-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(7663, 74089, 'seventy-four thousand eighty-nine');\nINSERT INTO t3 VALUES(7664, 59197, 'fifty-nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(7665, 33611, 'thirty-three thousand six hundred eleven');\nINSERT INTO t3 VALUES(7666, 95643, 'ninety-five thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7667, 75288, 'seventy-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(7668, 80946, 'eighty thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(7669, 65429, 'sixty-five thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(7670, 93209, 'ninety-three thousand two hundred nine');\nINSERT INTO t3 VALUES(7671, 57171, 'fifty-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(7672, 7760, 'seven thousand seven hundred sixty');\nINSERT INTO t3 VALUES(7673, 91460, 'ninety-one thousand four hundred sixty');\nINSERT INTO t3 VALUES(7674, 63700, 'sixty-three thousand seven hundred');\nINSERT INTO t3 VALUES(7675, 82372, 'eighty-two thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(7676, 50389, 'fifty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7677, 67003, 'sixty-seven thousand three');\nINSERT INTO t3 VALUES(7678, 9189, 'nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(7679, 35140, 'thirty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(7680, 23469, 'twenty-three thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(7681, 75837, 'seventy-five thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(7682, 50823, 'fifty thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(7683, 39602, 'thirty-nine thousand six hundred two');\nINSERT INTO t3 VALUES(7684, 2325, 'two thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(7685, 20892, 'twenty thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7686, 37539, 'thirty-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(7687, 48973, 'forty-eight thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(7688, 30137, 'thirty thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(7689, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(7690, 29011, 'twenty-nine thousand eleven');\nINSERT INTO t3 VALUES(7691, 28390, 'twenty-eight thousand three hundred ninety');\nINSERT INTO t3 VALUES(7692, 46941, 'forty-six thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(7693, 41927, 'forty-one thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(7694, 87484, 'eighty-seven thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(7695, 41679, 'forty-one thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(7696, 26773, 'twenty-six thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(7697, 10393, 'ten thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(7698, 14423, 'fourteen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(7699, 15814, 'fifteen thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(7700, 89719, 'eighty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(7701, 28084, 'twenty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(7702, 22485, 'twenty-two thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7703, 41293, 'forty-one thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(7704, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(7705, 52637, 'fifty-two thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(7706, 88522, 'eighty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(7707, 18970, 'eighteen thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7708, 43657, 'forty-three thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(7709, 97783, 'ninety-seven thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(7710, 54116, 'fifty-four thousand one hundred sixteen');\nINSERT INTO t3 VALUES(7711, 82187, 'eighty-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(7712, 73570, 'seventy-three thousand five hundred seventy');\nINSERT INTO t3 VALUES(7713, 44730, 'forty-four thousand seven hundred thirty');\nINSERT INTO t3 VALUES(7714, 34501, 'thirty-four thousand five hundred one');\nINSERT INTO t3 VALUES(7715, 42000, 'forty-two thousand');\nINSERT INTO t3 VALUES(7716, 24661, 'twenty-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(7717, 77717, 'seventy-seven thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(7718, 40548, 'forty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(7719, 50510, 'fifty thousand five hundred ten');\nINSERT INTO t3 VALUES(7720, 3961, 'three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(7721, 39790, 'thirty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(7722, 38183, 'thirty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(7723, 66361, 'sixty-six thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7724, 45077, 'forty-five thousand seventy-seven');\nINSERT INTO t3 VALUES(7725, 28732, 'twenty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(7726, 38696, 'thirty-eight thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(7727, 30611, 'thirty thousand six hundred eleven');\nINSERT INTO t3 VALUES(7728, 76970, 'seventy-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7729, 71637, 'seventy-one thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(7730, 53458, 'fifty-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(7731, 59707, 'fifty-nine thousand seven hundred seven');\nINSERT INTO t3 VALUES(7732, 22138, 'twenty-two thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(7733, 98817, 'ninety-eight thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(7734, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(7735, 90389, 'ninety thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(7736, 32177, 'thirty-two thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(7737, 45441, 'forty-five thousand four hundred forty-one');\nINSERT INTO t3 VALUES(7738, 37475, 'thirty-seven thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(7739, 86254, 'eighty-six thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(7740, 67310, 'sixty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(7741, 44406, 'forty-four thousand four hundred six');\nINSERT INTO t3 VALUES(7742, 92365, 'ninety-two thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(7743, 3669, 'three thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(7744, 72385, 'seventy-two thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(7745, 28656, 'twenty-eight thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(7746, 34393, 'thirty-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(7747, 23183, 'twenty-three thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(7748, 94824, 'ninety-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7749, 80816, 'eighty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(7750, 43350, 'forty-three thousand three hundred fifty');\nINSERT INTO t3 VALUES(7751, 74944, 'seventy-four thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(7752, 57786, 'fifty-seven thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(7753, 76814, 'seventy-six thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(7754, 48104, 'forty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(7755, 65442, 'sixty-five thousand four hundred forty-two');\nINSERT INTO t3 VALUES(7756, 45982, 'forty-five thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(7757, 72415, 'seventy-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(7758, 49098, 'forty-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(7759, 59919, 'fifty-nine thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(7760, 56507, 'fifty-six thousand five hundred seven');\nINSERT INTO t3 VALUES(7761, 85707, 'eighty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(7762, 54960, 'fifty-four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(7763, 97175, 'ninety-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(7764, 37918, 'thirty-seven thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(7765, 73860, 'seventy-three thousand eight hundred sixty');\nINSERT INTO t3 VALUES(7766, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7767, 41566, 'forty-one thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(7768, 82413, 'eighty-two thousand four hundred thirteen');\nINSERT INTO t3 VALUES(7769, 59479, 'fifty-nine thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(7770, 64370, 'sixty-four thousand three hundred seventy');\nINSERT INTO t3 VALUES(7771, 4669, 'four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(7772, 14769, 'fourteen thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(7773, 53780, 'fifty-three thousand seven hundred eighty');\nINSERT INTO t3 VALUES(7774, 62838, 'sixty-two thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(7775, 34292, 'thirty-four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(7776, 3466, 'three thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(7777, 76865, 'seventy-six thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(7778, 17160, 'seventeen thousand one hundred sixty');\nINSERT INTO t3 VALUES(7779, 401, 'four hundred one');\nINSERT INTO t3 VALUES(7780, 17164, 'seventeen thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(7781, 75688, 'seventy-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(7782, 11361, 'eleven thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(7783, 37011, 'thirty-seven thousand eleven');\nINSERT INTO t3 VALUES(7784, 1004, 'one thousand four');\nINSERT INTO t3 VALUES(7785, 59597, 'fifty-nine thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(7786, 95316, 'ninety-five thousand three hundred sixteen');\nINSERT INTO t3 VALUES(7787, 98556, 'ninety-eight thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(7788, 21101, 'twenty-one thousand one hundred one');\nINSERT INTO t3 VALUES(7789, 61503, 'sixty-one thousand five hundred three');\nINSERT INTO t3 VALUES(7790, 18958, 'eighteen thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(7791, 16053, 'sixteen thousand fifty-three');\nINSERT INTO t3 VALUES(7792, 34345, 'thirty-four thousand three hundred forty-five');\nINSERT INTO t3 VALUES(7793, 71286, 'seventy-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(7794, 55079, 'fifty-five thousand seventy-nine');\nINSERT INTO t3 VALUES(7795, 84709, 'eighty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(7796, 6401, 'six thousand four hundred one');\nINSERT INTO t3 VALUES(7797, 49916, 'forty-nine thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(7798, 16557, 'sixteen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(7799, 53884, 'fifty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(7800, 49497, 'forty-nine thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(7801, 35399, 'thirty-five thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(7802, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t3 VALUES(7803, 80150, 'eighty thousand one hundred fifty');\nINSERT INTO t3 VALUES(7804, 76209, 'seventy-six thousand two hundred nine');\nINSERT INTO t3 VALUES(7805, 27119, 'twenty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(7806, 1436, 'one thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(7807, 28443, 'twenty-eight thousand four hundred forty-three');\nINSERT INTO t3 VALUES(7808, 5128, 'five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(7809, 42019, 'forty-two thousand nineteen');\nINSERT INTO t3 VALUES(7810, 67110, 'sixty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(7811, 72176, 'seventy-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(7812, 85266, 'eighty-five thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(7813, 57660, 'fifty-seven thousand six hundred sixty');\nINSERT INTO t3 VALUES(7814, 12268, 'twelve thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(7815, 49656, 'forty-nine thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(7816, 16759, 'sixteen thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(7817, 58515, 'fifty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(7818, 71716, 'seventy-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(7819, 3380, 'three thousand three hundred eighty');\nINSERT INTO t3 VALUES(7820, 41427, 'forty-one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(7821, 45370, 'forty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(7822, 71901, 'seventy-one thousand nine hundred one');\nINSERT INTO t3 VALUES(7823, 65301, 'sixty-five thousand three hundred one');\nINSERT INTO t3 VALUES(7824, 2670, 'two thousand six hundred seventy');\nINSERT INTO t3 VALUES(7825, 19172, 'nineteen thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7826, 68339, 'sixty-eight thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(7827, 16225, 'sixteen thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(7828, 18858, 'eighteen thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(7829, 88999, 'eighty-eight thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(7830, 51327, 'fifty-one thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(7831, 48742, 'forty-eight thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(7832, 23314, 'twenty-three thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7833, 91632, 'ninety-one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7834, 64090, 'sixty-four thousand ninety');\nINSERT INTO t3 VALUES(7835, 35586, 'thirty-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(7836, 68515, 'sixty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(7837, 29135, 'twenty-nine thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(7838, 82777, 'eighty-two thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(7839, 11929, 'eleven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(7840, 90970, 'ninety thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7841, 28168, 'twenty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(7842, 33405, 'thirty-three thousand four hundred five');\nINSERT INTO t3 VALUES(7843, 39836, 'thirty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(7844, 95084, 'ninety-five thousand eighty-four');\nINSERT INTO t3 VALUES(7845, 69434, 'sixty-nine thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(7846, 9721, 'nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(7847, 95295, 'ninety-five thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(7848, 67347, 'sixty-seven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(7849, 98004, 'ninety-eight thousand four');\nINSERT INTO t3 VALUES(7850, 68255, 'sixty-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(7851, 27363, 'twenty-seven thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(7852, 57905, 'fifty-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(7853, 24252, 'twenty-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(7854, 67704, 'sixty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(7855, 21725, 'twenty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(7856, 91845, 'ninety-one thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(7857, 1314, 'one thousand three hundred fourteen');\nINSERT INTO t3 VALUES(7858, 9917, 'nine thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(7859, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t3 VALUES(7860, 85623, 'eighty-five thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(7861, 71987, 'seventy-one thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(7862, 24285, 'twenty-four thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(7863, 58454, 'fifty-eight thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(7864, 42786, 'forty-two thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(7865, 79234, 'seventy-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(7866, 99516, 'ninety-nine thousand five hundred sixteen');\nINSERT INTO t3 VALUES(7867, 64444, 'sixty-four thousand four hundred forty-four');\nINSERT INTO t3 VALUES(7868, 7352, 'seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(7869, 63602, 'sixty-three thousand six hundred two');\nINSERT INTO t3 VALUES(7870, 9958, 'nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(7871, 71753, 'seventy-one thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(7872, 86691, 'eighty-six thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(7873, 47792, 'forty-seven thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(7874, 33791, 'thirty-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(7875, 51444, 'fifty-one thousand four hundred forty-four');\nINSERT INTO t3 VALUES(7876, 11292, 'eleven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(7877, 78248, 'seventy-eight thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(7878, 75482, 'seventy-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(7879, 20041, 'twenty thousand forty-one');\nINSERT INTO t3 VALUES(7880, 98709, 'ninety-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(7881, 83684, 'eighty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(7882, 25884, 'twenty-five thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(7883, 4485, 'four thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(7884, 58970, 'fifty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(7885, 56064, 'fifty-six thousand sixty-four');\nINSERT INTO t3 VALUES(7886, 37825, 'thirty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(7887, 60151, 'sixty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(7888, 24460, 'twenty-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(7889, 91714, 'ninety-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(7890, 8689, 'eight thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(7891, 86106, 'eighty-six thousand one hundred six');\nINSERT INTO t3 VALUES(7892, 67108, 'sixty-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(7893, 2998, 'two thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(7894, 19490, 'nineteen thousand four hundred ninety');\nINSERT INTO t3 VALUES(7895, 94871, 'ninety-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7896, 71871, 'seventy-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7897, 59040, 'fifty-nine thousand forty');\nINSERT INTO t3 VALUES(7898, 30046, 'thirty thousand forty-six');\nINSERT INTO t3 VALUES(7899, 33383, 'thirty-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(7900, 90123, 'ninety thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(7901, 59580, 'fifty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(7902, 37492, 'thirty-seven thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(7903, 46958, 'forty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(7904, 36796, 'thirty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(7905, 52956, 'fifty-two thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(7906, 50908, 'fifty thousand nine hundred eight');\nINSERT INTO t3 VALUES(7907, 91976, 'ninety-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(7908, 22398, 'twenty-two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(7909, 24275, 'twenty-four thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(7910, 74154, 'seventy-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(7911, 34601, 'thirty-four thousand six hundred one');\nINSERT INTO t3 VALUES(7912, 66135, 'sixty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(7913, 16419, 'sixteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(7914, 78589, 'seventy-eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(7915, 15470, 'fifteen thousand four hundred seventy');\nINSERT INTO t3 VALUES(7916, 95304, 'ninety-five thousand three hundred four');\nINSERT INTO t3 VALUES(7917, 86871, 'eighty-six thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(7918, 12575, 'twelve thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(7919, 43291, 'forty-three thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(7920, 15152, 'fifteen thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(7921, 56256, 'fifty-six thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(7922, 57666, 'fifty-seven thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(7923, 44178, 'forty-four thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(7924, 4593, 'four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(7925, 19782, 'nineteen thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(7926, 40497, 'forty thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(7927, 98209, 'ninety-eight thousand two hundred nine');\nINSERT INTO t3 VALUES(7928, 69063, 'sixty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(7929, 59555, 'fifty-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(7930, 30160, 'thirty thousand one hundred sixty');\nINSERT INTO t3 VALUES(7931, 50693, 'fifty thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(7932, 51358, 'fifty-one thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(7933, 79522, 'seventy-nine thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(7934, 99189, 'ninety-nine thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(7935, 58707, 'fifty-eight thousand seven hundred seven');\nINSERT INTO t3 VALUES(7936, 50317, 'fifty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(7937, 78319, 'seventy-eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(7938, 94596, 'ninety-four thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(7939, 77718, 'seventy-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(7940, 92647, 'ninety-two thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(7941, 53345, 'fifty-three thousand three hundred forty-five');\nINSERT INTO t3 VALUES(7942, 69238, 'sixty-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(7943, 37157, 'thirty-seven thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(7944, 23715, 'twenty-three thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(7945, 38810, 'thirty-eight thousand eight hundred ten');\nINSERT INTO t3 VALUES(7946, 8941, 'eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(7947, 46752, 'forty-six thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(7948, 25448, 'twenty-five thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(7949, 22886, 'twenty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(7950, 57989, 'fifty-seven thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(7951, 92414, 'ninety-two thousand four hundred fourteen');\nINSERT INTO t3 VALUES(7952, 12194, 'twelve thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(7953, 97932, 'ninety-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(7954, 61142, 'sixty-one thousand one hundred forty-two');\nINSERT INTO t3 VALUES(7955, 84938, 'eighty-four thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(7956, 15406, 'fifteen thousand four hundred six');\nINSERT INTO t3 VALUES(7957, 71546, 'seventy-one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(7958, 41813, 'forty-one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(7959, 21609, 'twenty-one thousand six hundred nine');\nINSERT INTO t3 VALUES(7960, 19274, 'nineteen thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(7961, 21582, 'twenty-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(7962, 22003, 'twenty-two thousand three');\nINSERT INTO t3 VALUES(7963, 49892, 'forty-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(7964, 57352, 'fifty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(7965, 43051, 'forty-three thousand fifty-one');\nINSERT INTO t3 VALUES(7966, 91397, 'ninety-one thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(7967, 85229, 'eighty-five thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(7968, 39150, 'thirty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(7969, 35499, 'thirty-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(7970, 72590, 'seventy-two thousand five hundred ninety');\nINSERT INTO t3 VALUES(7971, 20282, 'twenty thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(7972, 27358, 'twenty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(7973, 27479, 'twenty-seven thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(7974, 65659, 'sixty-five thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(7975, 18603, 'eighteen thousand six hundred three');\nINSERT INTO t3 VALUES(7976, 33109, 'thirty-three thousand one hundred nine');\nINSERT INTO t3 VALUES(7977, 18538, 'eighteen thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(7978, 5783, 'five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(7979, 69921, 'sixty-nine thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(7980, 33659, 'thirty-three thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(7981, 24916, 'twenty-four thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(7982, 56172, 'fifty-six thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(7983, 2643, 'two thousand six hundred forty-three');\nINSERT INTO t3 VALUES(7984, 40158, 'forty thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(7985, 85074, 'eighty-five thousand seventy-four');\nINSERT INTO t3 VALUES(7986, 70835, 'seventy thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(7987, 99934, 'ninety-nine thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(7988, 57245, 'fifty-seven thousand two hundred forty-five');\nINSERT INTO t3 VALUES(7989, 18632, 'eighteen thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(7990, 39069, 'thirty-nine thousand sixty-nine');\nINSERT INTO t3 VALUES(7991, 1110, 'one thousand one hundred ten');\nINSERT INTO t3 VALUES(7992, 2711, 'two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(7993, 67841, 'sixty-seven thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(7994, 60824, 'sixty thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(7995, 85780, 'eighty-five thousand seven hundred eighty');\nINSERT INTO t3 VALUES(7996, 60914, 'sixty thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(7997, 52986, 'fifty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(7998, 33458, 'thirty-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(7999, 2844, 'two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(8000, 25070, 'twenty-five thousand seventy');\nINSERT INTO t3 VALUES(8001, 8928, 'eight thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(8002, 66324, 'sixty-six thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8003, 53873, 'fifty-three thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(8004, 42018, 'forty-two thousand eighteen');\nINSERT INTO t3 VALUES(8005, 3208, 'three thousand two hundred eight');\nINSERT INTO t3 VALUES(8006, 43547, 'forty-three thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8007, 22134, 'twenty-two thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(8008, 77906, 'seventy-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(8009, 61053, 'sixty-one thousand fifty-three');\nINSERT INTO t3 VALUES(8010, 78344, 'seventy-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(8011, 70308, 'seventy thousand three hundred eight');\nINSERT INTO t3 VALUES(8012, 16823, 'sixteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(8013, 27022, 'twenty-seven thousand twenty-two');\nINSERT INTO t3 VALUES(8014, 64371, 'sixty-four thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8015, 38814, 'thirty-eight thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(8016, 85065, 'eighty-five thousand sixty-five');\nINSERT INTO t3 VALUES(8017, 34790, 'thirty-four thousand seven hundred ninety');\nINSERT INTO t3 VALUES(8018, 37346, 'thirty-seven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(8019, 30352, 'thirty thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(8020, 32487, 'thirty-two thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(8021, 75987, 'seventy-five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(8022, 11705, 'eleven thousand seven hundred five');\nINSERT INTO t3 VALUES(8023, 12606, 'twelve thousand six hundred six');\nINSERT INTO t3 VALUES(8024, 74122, 'seventy-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(8025, 34554, 'thirty-four thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(8026, 66, 'sixty-six');\nINSERT INTO t3 VALUES(8027, 63000, 'sixty-three thousand');\nINSERT INTO t3 VALUES(8028, 59204, 'fifty-nine thousand two hundred four');\nINSERT INTO t3 VALUES(8029, 46175, 'forty-six thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(8030, 57222, 'fifty-seven thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(8031, 65923, 'sixty-five thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(8032, 45749, 'forty-five thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(8033, 90379, 'ninety thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(8034, 50801, 'fifty thousand eight hundred one');\nINSERT INTO t3 VALUES(8035, 50274, 'fifty thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(8036, 31845, 'thirty-one thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(8037, 60255, 'sixty thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(8038, 46856, 'forty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(8039, 78744, 'seventy-eight thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(8040, 26629, 'twenty-six thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(8041, 2948, 'two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(8042, 49812, 'forty-nine thousand eight hundred twelve');\nINSERT INTO t3 VALUES(8043, 24675, 'twenty-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(8044, 82955, 'eighty-two thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(8045, 13014, 'thirteen thousand fourteen');\nINSERT INTO t3 VALUES(8046, 72677, 'seventy-two thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(8047, 7789, 'seven thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(8048, 745, 'seven hundred forty-five');\nINSERT INTO t3 VALUES(8049, 23420, 'twenty-three thousand four hundred twenty');\nINSERT INTO t3 VALUES(8050, 19677, 'nineteen thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(8051, 33494, 'thirty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(8052, 58613, 'fifty-eight thousand six hundred thirteen');\nINSERT INTO t3 VALUES(8053, 16831, 'sixteen thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(8054, 33938, 'thirty-three thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(8055, 44808, 'forty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(8056, 83042, 'eighty-three thousand forty-two');\nINSERT INTO t3 VALUES(8057, 69593, 'sixty-nine thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(8058, 43322, 'forty-three thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(8059, 14947, 'fourteen thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(8060, 73891, 'seventy-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(8061, 5146, 'five thousand one hundred forty-six');\nINSERT INTO t3 VALUES(8062, 97232, 'ninety-seven thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(8063, 71076, 'seventy-one thousand seventy-six');\nINSERT INTO t3 VALUES(8064, 48429, 'forty-eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8065, 50647, 'fifty thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(8066, 42078, 'forty-two thousand seventy-eight');\nINSERT INTO t3 VALUES(8067, 98266, 'ninety-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(8068, 90976, 'ninety thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(8069, 3942, 'three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(8070, 14231, 'fourteen thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(8071, 43755, 'forty-three thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8072, 19136, 'nineteen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(8073, 87900, 'eighty-seven thousand nine hundred');\nINSERT INTO t3 VALUES(8074, 12572, 'twelve thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(8075, 65299, 'sixty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(8076, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(8077, 70547, 'seventy thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8078, 70255, 'seventy thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(8079, 53491, 'fifty-three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(8080, 84856, 'eighty-four thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(8081, 64583, 'sixty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(8082, 15853, 'fifteen thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(8083, 68244, 'sixty-eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(8084, 94505, 'ninety-four thousand five hundred five');\nINSERT INTO t3 VALUES(8085, 63942, 'sixty-three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(8086, 12813, 'twelve thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(8087, 74644, 'seventy-four thousand six hundred forty-four');\nINSERT INTO t3 VALUES(8088, 5559, 'five thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(8089, 75874, 'seventy-five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(8090, 73084, 'seventy-three thousand eighty-four');\nINSERT INTO t3 VALUES(8091, 94530, 'ninety-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(8092, 73051, 'seventy-three thousand fifty-one');\nINSERT INTO t3 VALUES(8093, 67429, 'sixty-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8094, 90987, 'ninety thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(8095, 69402, 'sixty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(8096, 46649, 'forty-six thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(8097, 83657, 'eighty-three thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(8098, 51060, 'fifty-one thousand sixty');\nINSERT INTO t3 VALUES(8099, 5454, 'five thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(8100, 80481, 'eighty thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(8101, 72941, 'seventy-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(8102, 59662, 'fifty-nine thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8103, 94896, 'ninety-four thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8104, 43533, 'forty-three thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8105, 44784, 'forty-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(8106, 34969, 'thirty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(8107, 85870, 'eighty-five thousand eight hundred seventy');\nINSERT INTO t3 VALUES(8108, 39439, 'thirty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(8109, 69082, 'sixty-nine thousand eighty-two');\nINSERT INTO t3 VALUES(8110, 87282, 'eighty-seven thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(8111, 92034, 'ninety-two thousand thirty-four');\nINSERT INTO t3 VALUES(8112, 51510, 'fifty-one thousand five hundred ten');\nINSERT INTO t3 VALUES(8113, 88207, 'eighty-eight thousand two hundred seven');\nINSERT INTO t3 VALUES(8114, 43004, 'forty-three thousand four');\nINSERT INTO t3 VALUES(8115, 97505, 'ninety-seven thousand five hundred five');\nINSERT INTO t3 VALUES(8116, 95511, 'ninety-five thousand five hundred eleven');\nINSERT INTO t3 VALUES(8117, 56740, 'fifty-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(8118, 55445, 'fifty-five thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8119, 54452, 'fifty-four thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(8120, 12929, 'twelve thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8121, 14668, 'fourteen thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(8122, 98628, 'ninety-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(8123, 51968, 'fifty-one thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(8124, 77764, 'seventy-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(8125, 20181, 'twenty thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(8126, 69051, 'sixty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(8127, 70075, 'seventy thousand seventy-five');\nINSERT INTO t3 VALUES(8128, 31563, 'thirty-one thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(8129, 7790, 'seven thousand seven hundred ninety');\nINSERT INTO t3 VALUES(8130, 1957, 'one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(8131, 84808, 'eighty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(8132, 4292, 'four thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(8133, 44569, 'forty-four thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(8134, 47193, 'forty-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(8135, 36028, 'thirty-six thousand twenty-eight');\nINSERT INTO t3 VALUES(8136, 15304, 'fifteen thousand three hundred four');\nINSERT INTO t3 VALUES(8137, 67755, 'sixty-seven thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8138, 89332, 'eighty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(8139, 64504, 'sixty-four thousand five hundred four');\nINSERT INTO t3 VALUES(8140, 7286, 'seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(8141, 32677, 'thirty-two thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(8142, 41147, 'forty-one thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(8143, 39377, 'thirty-nine thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(8144, 7483, 'seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(8145, 96098, 'ninety-six thousand ninety-eight');\nINSERT INTO t3 VALUES(8146, 83280, 'eighty-three thousand two hundred eighty');\nINSERT INTO t3 VALUES(8147, 54576, 'fifty-four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(8148, 29133, 'twenty-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(8149, 99857, 'ninety-nine thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(8150, 43188, 'forty-three thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(8151, 85086, 'eighty-five thousand eighty-six');\nINSERT INTO t3 VALUES(8152, 68935, 'sixty-eight thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(8153, 53435, 'fifty-three thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(8154, 79809, 'seventy-nine thousand eight hundred nine');\nINSERT INTO t3 VALUES(8155, 6183, 'six thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8156, 6566, 'six thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(8157, 54440, 'fifty-four thousand four hundred forty');\nINSERT INTO t3 VALUES(8158, 23358, 'twenty-three thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(8159, 58084, 'fifty-eight thousand eighty-four');\nINSERT INTO t3 VALUES(8160, 84325, 'eighty-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(8161, 99143, 'ninety-nine thousand one hundred forty-three');\nINSERT INTO t3 VALUES(8162, 80258, 'eighty thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(8163, 66455, 'sixty-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(8164, 92738, 'ninety-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(8165, 87998, 'eighty-seven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(8166, 53623, 'fifty-three thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(8167, 96117, 'ninety-six thousand one hundred seventeen');\nINSERT INTO t3 VALUES(8168, 37290, 'thirty-seven thousand two hundred ninety');\nINSERT INTO t3 VALUES(8169, 24322, 'twenty-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(8170, 73911, 'seventy-three thousand nine hundred eleven');\nINSERT INTO t3 VALUES(8171, 12578, 'twelve thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(8172, 21959, 'twenty-one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(8173, 25342, 'twenty-five thousand three hundred forty-two');\nINSERT INTO t3 VALUES(8174, 21320, 'twenty-one thousand three hundred twenty');\nINSERT INTO t3 VALUES(8175, 71598, 'seventy-one thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(8176, 70198, 'seventy thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(8177, 14674, 'fourteen thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8178, 6437, 'six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(8179, 2993, 'two thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(8180, 85920, 'eighty-five thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8181, 3411, 'three thousand four hundred eleven');\nINSERT INTO t3 VALUES(8182, 95554, 'ninety-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(8183, 5261, 'five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(8184, 78776, 'seventy-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(8185, 85782, 'eighty-five thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(8186, 44491, 'forty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(8187, 21749, 'twenty-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(8188, 91535, 'ninety-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(8189, 32517, 'thirty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(8190, 91762, 'ninety-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(8191, 3283, 'three thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(8192, 68033, 'sixty-eight thousand thirty-three');\nINSERT INTO t3 VALUES(8193, 64778, 'sixty-four thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(8194, 51967, 'fifty-one thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(8195, 9192, 'nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(8196, 21752, 'twenty-one thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(8197, 46847, 'forty-six thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(8198, 42572, 'forty-two thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(8199, 11026, 'eleven thousand twenty-six');\nINSERT INTO t3 VALUES(8200, 35955, 'thirty-five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(8201, 889, 'eight hundred eighty-nine');\nINSERT INTO t3 VALUES(8202, 82958, 'eighty-two thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(8203, 26821, 'twenty-six thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(8204, 20434, 'twenty thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(8205, 62281, 'sixty-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(8206, 83577, 'eighty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(8207, 27138, 'twenty-seven thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(8208, 76683, 'seventy-six thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(8209, 51137, 'fifty-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(8210, 72581, 'seventy-two thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(8211, 62964, 'sixty-two thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(8212, 62490, 'sixty-two thousand four hundred ninety');\nINSERT INTO t3 VALUES(8213, 44681, 'forty-four thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(8214, 77074, 'seventy-seven thousand seventy-four');\nINSERT INTO t3 VALUES(8215, 83710, 'eighty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(8216, 60067, 'sixty thousand sixty-seven');\nINSERT INTO t3 VALUES(8217, 49962, 'forty-nine thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(8218, 61116, 'sixty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(8219, 20499, 'twenty thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(8220, 16566, 'sixteen thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(8221, 4896, 'four thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8222, 99790, 'ninety-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(8223, 76178, 'seventy-six thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(8224, 94185, 'ninety-four thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(8225, 40965, 'forty thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(8226, 77461, 'seventy-seven thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(8227, 58507, 'fifty-eight thousand five hundred seven');\nINSERT INTO t3 VALUES(8228, 28533, 'twenty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8229, 97940, 'ninety-seven thousand nine hundred forty');\nINSERT INTO t3 VALUES(8230, 9378, 'nine thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(8231, 22730, 'twenty-two thousand seven hundred thirty');\nINSERT INTO t3 VALUES(8232, 41840, 'forty-one thousand eight hundred forty');\nINSERT INTO t3 VALUES(8233, 96246, 'ninety-six thousand two hundred forty-six');\nINSERT INTO t3 VALUES(8234, 89165, 'eighty-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(8235, 34253, 'thirty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(8236, 16670, 'sixteen thousand six hundred seventy');\nINSERT INTO t3 VALUES(8237, 7604, 'seven thousand six hundred four');\nINSERT INTO t3 VALUES(8238, 17221, 'seventeen thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(8239, 4489, 'four thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(8240, 6714, 'six thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(8241, 41924, 'forty-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(8242, 62639, 'sixty-two thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(8243, 26024, 'twenty-six thousand twenty-four');\nINSERT INTO t3 VALUES(8244, 79183, 'seventy-nine thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8245, 74813, 'seventy-four thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(8246, 27014, 'twenty-seven thousand fourteen');\nINSERT INTO t3 VALUES(8247, 19087, 'nineteen thousand eighty-seven');\nINSERT INTO t3 VALUES(8248, 12466, 'twelve thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(8249, 99145, 'ninety-nine thousand one hundred forty-five');\nINSERT INTO t3 VALUES(8250, 44735, 'forty-four thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(8251, 62032, 'sixty-two thousand thirty-two');\nINSERT INTO t3 VALUES(8252, 77552, 'seventy-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(8253, 99639, 'ninety-nine thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(8254, 54249, 'fifty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(8255, 61701, 'sixty-one thousand seven hundred one');\nINSERT INTO t3 VALUES(8256, 83396, 'eighty-three thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(8257, 47620, 'forty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(8258, 1042, 'one thousand forty-two');\nINSERT INTO t3 VALUES(8259, 15422, 'fifteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(8260, 71502, 'seventy-one thousand five hundred two');\nINSERT INTO t3 VALUES(8261, 29782, 'twenty-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(8262, 96449, 'ninety-six thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(8263, 43260, 'forty-three thousand two hundred sixty');\nINSERT INTO t3 VALUES(8264, 30715, 'thirty thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(8265, 19509, 'nineteen thousand five hundred nine');\nINSERT INTO t3 VALUES(8266, 43298, 'forty-three thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(8267, 32807, 'thirty-two thousand eight hundred seven');\nINSERT INTO t3 VALUES(8268, 5203, 'five thousand two hundred three');\nINSERT INTO t3 VALUES(8269, 27490, 'twenty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(8270, 13856, 'thirteen thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(8271, 34788, 'thirty-four thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(8272, 79621, 'seventy-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(8273, 82808, 'eighty-two thousand eight hundred eight');\nINSERT INTO t3 VALUES(8274, 37417, 'thirty-seven thousand four hundred seventeen');\nINSERT INTO t3 VALUES(8275, 13244, 'thirteen thousand two hundred forty-four');\nINSERT INTO t3 VALUES(8276, 89970, 'eighty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8277, 96425, 'ninety-six thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(8278, 34543, 'thirty-four thousand five hundred forty-three');\nINSERT INTO t3 VALUES(8279, 53736, 'fifty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(8280, 9308, 'nine thousand three hundred eight');\nINSERT INTO t3 VALUES(8281, 63750, 'sixty-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(8282, 82176, 'eighty-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(8283, 13194, 'thirteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(8284, 13409, 'thirteen thousand four hundred nine');\nINSERT INTO t3 VALUES(8285, 28129, 'twenty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(8286, 81386, 'eighty-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(8287, 85996, 'eighty-five thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(8288, 48277, 'forty-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(8289, 18567, 'eighteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(8290, 97133, 'ninety-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(8291, 76330, 'seventy-six thousand three hundred thirty');\nINSERT INTO t3 VALUES(8292, 91044, 'ninety-one thousand forty-four');\nINSERT INTO t3 VALUES(8293, 46072, 'forty-six thousand seventy-two');\nINSERT INTO t3 VALUES(8294, 76296, 'seventy-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(8295, 48214, 'forty-eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(8296, 6752, 'six thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(8297, 76845, 'seventy-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(8298, 13543, 'thirteen thousand five hundred forty-three');\nINSERT INTO t3 VALUES(8299, 36318, 'thirty-six thousand three hundred eighteen');\nINSERT INTO t3 VALUES(8300, 889, 'eight hundred eighty-nine');\nINSERT INTO t3 VALUES(8301, 40713, 'forty thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(8302, 70521, 'seventy thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(8303, 89295, 'eighty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(8304, 44531, 'forty-four thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(8305, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(8306, 86912, 'eighty-six thousand nine hundred twelve');\nINSERT INTO t3 VALUES(8307, 54944, 'fifty-four thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(8308, 68025, 'sixty-eight thousand twenty-five');\nINSERT INTO t3 VALUES(8309, 63382, 'sixty-three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(8310, 72931, 'seventy-two thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(8311, 50168, 'fifty thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(8312, 32605, 'thirty-two thousand six hundred five');\nINSERT INTO t3 VALUES(8313, 20937, 'twenty thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(8314, 25080, 'twenty-five thousand eighty');\nINSERT INTO t3 VALUES(8315, 9824, 'nine thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(8316, 71137, 'seventy-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(8317, 24958, 'twenty-four thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(8318, 99835, 'ninety-nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(8319, 28418, 'twenty-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(8320, 90929, 'ninety thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8321, 3172, 'three thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(8322, 46563, 'forty-six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(8323, 29177, 'twenty-nine thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(8324, 1303, 'one thousand three hundred three');\nINSERT INTO t3 VALUES(8325, 30302, 'thirty thousand three hundred two');\nINSERT INTO t3 VALUES(8326, 52575, 'fifty-two thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(8327, 36542, 'thirty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(8328, 12329, 'twelve thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(8329, 92604, 'ninety-two thousand six hundred four');\nINSERT INTO t3 VALUES(8330, 51696, 'fifty-one thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(8331, 61183, 'sixty-one thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8332, 34611, 'thirty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(8333, 88779, 'eighty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(8334, 2666, 'two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(8335, 6915, 'six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(8336, 46174, 'forty-six thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(8337, 78896, 'seventy-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8338, 6459, 'six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(8339, 27371, 'twenty-seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8340, 15615, 'fifteen thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8341, 80469, 'eighty thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(8342, 35237, 'thirty-five thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(8343, 63927, 'sixty-three thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(8344, 13826, 'thirteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(8345, 76699, 'seventy-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(8346, 75679, 'seventy-five thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(8347, 6505, 'six thousand five hundred five');\nINSERT INTO t3 VALUES(8348, 2695, 'two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(8349, 1716, 'one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(8350, 79143, 'seventy-nine thousand one hundred forty-three');\nINSERT INTO t3 VALUES(8351, 44558, 'forty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(8352, 78615, 'seventy-eight thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8353, 37550, 'thirty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(8354, 49053, 'forty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(8355, 47259, 'forty-seven thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(8356, 22621, 'twenty-two thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(8357, 39368, 'thirty-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(8358, 92407, 'ninety-two thousand four hundred seven');\nINSERT INTO t3 VALUES(8359, 77946, 'seventy-seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(8360, 34266, 'thirty-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(8361, 9912, 'nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(8362, 85464, 'eighty-five thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(8363, 46679, 'forty-six thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(8364, 14462, 'fourteen thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(8365, 11746, 'eleven thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(8366, 6500, 'six thousand five hundred');\nINSERT INTO t3 VALUES(8367, 54701, 'fifty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(8368, 41957, 'forty-one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(8369, 48638, 'forty-eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(8370, 49833, 'forty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(8371, 70205, 'seventy thousand two hundred five');\nINSERT INTO t3 VALUES(8372, 41075, 'forty-one thousand seventy-five');\nINSERT INTO t3 VALUES(8373, 60126, 'sixty thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(8374, 26884, 'twenty-six thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(8375, 5956, 'five thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(8376, 46191, 'forty-six thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(8377, 11167, 'eleven thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(8378, 71835, 'seventy-one thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(8379, 65888, 'sixty-five thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(8380, 86164, 'eighty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(8381, 98878, 'ninety-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(8382, 16039, 'sixteen thousand thirty-nine');\nINSERT INTO t3 VALUES(8383, 85445, 'eighty-five thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8384, 64447, 'sixty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(8385, 37932, 'thirty-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(8386, 15854, 'fifteen thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(8387, 28488, 'twenty-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(8388, 99324, 'ninety-nine thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8389, 5481, 'five thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(8390, 89056, 'eighty-nine thousand fifty-six');\nINSERT INTO t3 VALUES(8391, 20327, 'twenty thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(8392, 37222, 'thirty-seven thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(8393, 43052, 'forty-three thousand fifty-two');\nINSERT INTO t3 VALUES(8394, 90659, 'ninety thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(8395, 27154, 'twenty-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(8396, 736, 'seven hundred thirty-six');\nINSERT INTO t3 VALUES(8397, 86046, 'eighty-six thousand forty-six');\nINSERT INTO t3 VALUES(8398, 7500, 'seven thousand five hundred');\nINSERT INTO t3 VALUES(8399, 51472, 'fifty-one thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(8400, 65371, 'sixty-five thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8401, 49446, 'forty-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(8402, 51721, 'fifty-one thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(8403, 25678, 'twenty-five thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(8404, 7300, 'seven thousand three hundred');\nINSERT INTO t3 VALUES(8405, 78695, 'seventy-eight thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(8406, 26671, 'twenty-six thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(8407, 77010, 'seventy-seven thousand ten');\nINSERT INTO t3 VALUES(8408, 63530, 'sixty-three thousand five hundred thirty');\nINSERT INTO t3 VALUES(8409, 164, 'one hundred sixty-four');\nINSERT INTO t3 VALUES(8410, 80868, 'eighty thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(8411, 12023, 'twelve thousand twenty-three');\nINSERT INTO t3 VALUES(8412, 22292, 'twenty-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(8413, 58107, 'fifty-eight thousand one hundred seven');\nINSERT INTO t3 VALUES(8414, 13943, 'thirteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(8415, 11209, 'eleven thousand two hundred nine');\nINSERT INTO t3 VALUES(8416, 98621, 'ninety-eight thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(8417, 72478, 'seventy-two thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(8418, 59721, 'fifty-nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(8419, 9399, 'nine thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(8420, 44360, 'forty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(8421, 85990, 'eighty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(8422, 17766, 'seventeen thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(8423, 65448, 'sixty-five thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(8424, 85640, 'eighty-five thousand six hundred forty');\nINSERT INTO t3 VALUES(8425, 95741, 'ninety-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(8426, 83159, 'eighty-three thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(8427, 99747, 'ninety-nine thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(8428, 65036, 'sixty-five thousand thirty-six');\nINSERT INTO t3 VALUES(8429, 21519, 'twenty-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(8430, 78546, 'seventy-eight thousand five hundred forty-six');\nINSERT INTO t3 VALUES(8431, 56437, 'fifty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(8432, 26476, 'twenty-six thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(8433, 41553, 'forty-one thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(8434, 29048, 'twenty-nine thousand forty-eight');\nINSERT INTO t3 VALUES(8435, 48807, 'forty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(8436, 68858, 'sixty-eight thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(8437, 31610, 'thirty-one thousand six hundred ten');\nINSERT INTO t3 VALUES(8438, 64515, 'sixty-four thousand five hundred fifteen');\nINSERT INTO t3 VALUES(8439, 54131, 'fifty-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(8440, 58378, 'fifty-eight thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(8441, 51510, 'fifty-one thousand five hundred ten');\nINSERT INTO t3 VALUES(8442, 38323, 'thirty-eight thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(8443, 32906, 'thirty-two thousand nine hundred six');\nINSERT INTO t3 VALUES(8444, 98429, 'ninety-eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8445, 41483, 'forty-one thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(8446, 36830, 'thirty-six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(8447, 56528, 'fifty-six thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(8448, 55012, 'fifty-five thousand twelve');\nINSERT INTO t3 VALUES(8449, 1194, 'one thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(8450, 89068, 'eighty-nine thousand sixty-eight');\nINSERT INTO t3 VALUES(8451, 40667, 'forty thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(8452, 26453, 'twenty-six thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(8453, 82099, 'eighty-two thousand ninety-nine');\nINSERT INTO t3 VALUES(8454, 77124, 'seventy-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(8455, 112, 'one hundred twelve');\nINSERT INTO t3 VALUES(8456, 505, 'five hundred five');\nINSERT INTO t3 VALUES(8457, 66191, 'sixty-six thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(8458, 31908, 'thirty-one thousand nine hundred eight');\nINSERT INTO t3 VALUES(8459, 50473, 'fifty thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(8460, 85303, 'eighty-five thousand three hundred three');\nINSERT INTO t3 VALUES(8461, 31574, 'thirty-one thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(8462, 58783, 'fifty-eight thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(8463, 62521, 'sixty-two thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(8464, 51627, 'fifty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(8465, 25990, 'twenty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(8466, 13789, 'thirteen thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(8467, 34652, 'thirty-four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(8468, 63, 'sixty-three');\nINSERT INTO t3 VALUES(8469, 4073, 'four thousand seventy-three');\nINSERT INTO t3 VALUES(8470, 4299, 'four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(8471, 98594, 'ninety-eight thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(8472, 83104, 'eighty-three thousand one hundred four');\nINSERT INTO t3 VALUES(8473, 9718, 'nine thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(8474, 80496, 'eighty thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(8475, 36709, 'thirty-six thousand seven hundred nine');\nINSERT INTO t3 VALUES(8476, 1097, 'one thousand ninety-seven');\nINSERT INTO t3 VALUES(8477, 82095, 'eighty-two thousand ninety-five');\nINSERT INTO t3 VALUES(8478, 7709, 'seven thousand seven hundred nine');\nINSERT INTO t3 VALUES(8479, 53651, 'fifty-three thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(8480, 75797, 'seventy-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(8481, 83547, 'eighty-three thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8482, 57254, 'fifty-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(8483, 20577, 'twenty thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(8484, 78552, 'seventy-eight thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(8485, 91373, 'ninety-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(8486, 88403, 'eighty-eight thousand four hundred three');\nINSERT INTO t3 VALUES(8487, 97507, 'ninety-seven thousand five hundred seven');\nINSERT INTO t3 VALUES(8488, 59476, 'fifty-nine thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(8489, 26359, 'twenty-six thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(8490, 66974, 'sixty-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(8491, 4046, 'four thousand forty-six');\nINSERT INTO t3 VALUES(8492, 48533, 'forty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8493, 63661, 'sixty-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(8494, 90604, 'ninety thousand six hundred four');\nINSERT INTO t3 VALUES(8495, 16909, 'sixteen thousand nine hundred nine');\nINSERT INTO t3 VALUES(8496, 15437, 'fifteen thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(8497, 55730, 'fifty-five thousand seven hundred thirty');\nINSERT INTO t3 VALUES(8498, 6950, 'six thousand nine hundred fifty');\nINSERT INTO t3 VALUES(8499, 24277, 'twenty-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(8500, 12909, 'twelve thousand nine hundred nine');\nINSERT INTO t3 VALUES(8501, 78383, 'seventy-eight thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(8502, 22091, 'twenty-two thousand ninety-one');\nINSERT INTO t3 VALUES(8503, 38405, 'thirty-eight thousand four hundred five');\nINSERT INTO t3 VALUES(8504, 69844, 'sixty-nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(8505, 67603, 'sixty-seven thousand six hundred three');\nINSERT INTO t3 VALUES(8506, 59345, 'fifty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(8507, 80394, 'eighty thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(8508, 30834, 'thirty thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(8509, 33971, 'thirty-three thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(8510, 74079, 'seventy-four thousand seventy-nine');\nINSERT INTO t3 VALUES(8511, 86757, 'eighty-six thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(8512, 60409, 'sixty thousand four hundred nine');\nINSERT INTO t3 VALUES(8513, 84463, 'eighty-four thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(8514, 88810, 'eighty-eight thousand eight hundred ten');\nINSERT INTO t3 VALUES(8515, 26806, 'twenty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(8516, 82994, 'eighty-two thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(8517, 89988, 'eighty-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(8518, 32147, 'thirty-two thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(8519, 9594, 'nine thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(8520, 1445, 'one thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8521, 21467, 'twenty-one thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(8522, 69172, 'sixty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(8523, 78531, 'seventy-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(8524, 6630, 'six thousand six hundred thirty');\nINSERT INTO t3 VALUES(8525, 90687, 'ninety thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(8526, 82271, 'eighty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(8527, 47990, 'forty-seven thousand nine hundred ninety');\nINSERT INTO t3 VALUES(8528, 19897, 'nineteen thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(8529, 12909, 'twelve thousand nine hundred nine');\nINSERT INTO t3 VALUES(8530, 69152, 'sixty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(8531, 55779, 'fifty-five thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(8532, 95875, 'ninety-five thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(8533, 80275, 'eighty thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(8534, 98215, 'ninety-eight thousand two hundred fifteen');\nINSERT INTO t3 VALUES(8535, 71919, 'seventy-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(8536, 43898, 'forty-three thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(8537, 31571, 'thirty-one thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(8538, 18403, 'eighteen thousand four hundred three');\nINSERT INTO t3 VALUES(8539, 92908, 'ninety-two thousand nine hundred eight');\nINSERT INTO t3 VALUES(8540, 81109, 'eighty-one thousand one hundred nine');\nINSERT INTO t3 VALUES(8541, 38809, 'thirty-eight thousand eight hundred nine');\nINSERT INTO t3 VALUES(8542, 67031, 'sixty-seven thousand thirty-one');\nINSERT INTO t3 VALUES(8543, 85667, 'eighty-five thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(8544, 56152, 'fifty-six thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(8545, 66775, 'sixty-six thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(8546, 54679, 'fifty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(8547, 24674, 'twenty-four thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8548, 19133, 'nineteen thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(8549, 9177, 'nine thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(8550, 40371, 'forty thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(8551, 48097, 'forty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(8552, 55150, 'fifty-five thousand one hundred fifty');\nINSERT INTO t3 VALUES(8553, 75691, 'seventy-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(8554, 48760, 'forty-eight thousand seven hundred sixty');\nINSERT INTO t3 VALUES(8555, 3509, 'three thousand five hundred nine');\nINSERT INTO t3 VALUES(8556, 71295, 'seventy-one thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(8557, 84206, 'eighty-four thousand two hundred six');\nINSERT INTO t3 VALUES(8558, 84802, 'eighty-four thousand eight hundred two');\nINSERT INTO t3 VALUES(8559, 41560, 'forty-one thousand five hundred sixty');\nINSERT INTO t3 VALUES(8560, 20674, 'twenty thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8561, 77122, 'seventy-seven thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(8562, 69472, 'sixty-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(8563, 71524, 'seventy-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(8564, 71472, 'seventy-one thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(8565, 61975, 'sixty-one thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(8566, 51520, 'fifty-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(8567, 34972, 'thirty-four thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(8568, 68854, 'sixty-eight thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(8569, 39970, 'thirty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8570, 77254, 'seventy-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(8571, 62055, 'sixty-two thousand fifty-five');\nINSERT INTO t3 VALUES(8572, 76553, 'seventy-six thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(8573, 69329, 'sixty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(8574, 29285, 'twenty-nine thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(8575, 67299, 'sixty-seven thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(8576, 81738, 'eighty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(8577, 58923, 'fifty-eight thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(8578, 88154, 'eighty-eight thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(8579, 65662, 'sixty-five thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8580, 14772, 'fourteen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(8581, 80355, 'eighty thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(8582, 38061, 'thirty-eight thousand sixty-one');\nINSERT INTO t3 VALUES(8583, 97193, 'ninety-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(8584, 80250, 'eighty thousand two hundred fifty');\nINSERT INTO t3 VALUES(8585, 78505, 'seventy-eight thousand five hundred five');\nINSERT INTO t3 VALUES(8586, 63134, 'sixty-three thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(8587, 50787, 'fifty thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(8588, 62379, 'sixty-two thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(8589, 63284, 'sixty-three thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(8590, 13024, 'thirteen thousand twenty-four');\nINSERT INTO t3 VALUES(8591, 26078, 'twenty-six thousand seventy-eight');\nINSERT INTO t3 VALUES(8592, 61146, 'sixty-one thousand one hundred forty-six');\nINSERT INTO t3 VALUES(8593, 34917, 'thirty-four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(8594, 9701, 'nine thousand seven hundred one');\nINSERT INTO t3 VALUES(8595, 47688, 'forty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(8596, 64719, 'sixty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(8597, 69920, 'sixty-nine thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8598, 72744, 'seventy-two thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(8599, 97489, 'ninety-seven thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(8600, 18853, 'eighteen thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(8601, 86574, 'eighty-six thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(8602, 29577, 'twenty-nine thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(8603, 40183, 'forty thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(8604, 34530, 'thirty-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(8605, 40642, 'forty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(8606, 51141, 'fifty-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(8607, 26970, 'twenty-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8608, 84351, 'eighty-four thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(8609, 37576, 'thirty-seven thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(8610, 46952, 'forty-six thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(8611, 5745, 'five thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(8612, 30098, 'thirty thousand ninety-eight');\nINSERT INTO t3 VALUES(8613, 80019, 'eighty thousand nineteen');\nINSERT INTO t3 VALUES(8614, 96206, 'ninety-six thousand two hundred six');\nINSERT INTO t3 VALUES(8615, 46491, 'forty-six thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(8616, 78279, 'seventy-eight thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(8617, 92949, 'ninety-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(8618, 87338, 'eighty-seven thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(8619, 67852, 'sixty-seven thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(8620, 70463, 'seventy thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(8621, 90441, 'ninety thousand four hundred forty-one');\nINSERT INTO t3 VALUES(8622, 2171, 'two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(8623, 63831, 'sixty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(8624, 44159, 'forty-four thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(8625, 13967, 'thirteen thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(8626, 47445, 'forty-seven thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8627, 7992, 'seven thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(8628, 36205, 'thirty-six thousand two hundred five');\nINSERT INTO t3 VALUES(8629, 14502, 'fourteen thousand five hundred two');\nINSERT INTO t3 VALUES(8630, 6704, 'six thousand seven hundred four');\nINSERT INTO t3 VALUES(8631, 7821, 'seven thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(8632, 24643, 'twenty-four thousand six hundred forty-three');\nINSERT INTO t3 VALUES(8633, 45674, 'forty-five thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(8634, 64487, 'sixty-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(8635, 12007, 'twelve thousand seven');\nINSERT INTO t3 VALUES(8636, 39929, 'thirty-nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8637, 53304, 'fifty-three thousand three hundred four');\nINSERT INTO t3 VALUES(8638, 2231, 'two thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(8639, 77189, 'seventy-seven thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(8640, 3887, 'three thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(8641, 44122, 'forty-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(8642, 63883, 'sixty-three thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(8643, 9229, 'nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(8644, 69943, 'sixty-nine thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(8645, 12970, 'twelve thousand nine hundred seventy');\nINSERT INTO t3 VALUES(8646, 76176, 'seventy-six thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(8647, 17089, 'seventeen thousand eighty-nine');\nINSERT INTO t3 VALUES(8648, 68542, 'sixty-eight thousand five hundred forty-two');\nINSERT INTO t3 VALUES(8649, 43947, 'forty-three thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(8650, 14743, 'fourteen thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(8651, 83124, 'eighty-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(8652, 18569, 'eighteen thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(8653, 80463, 'eighty thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(8654, 81819, 'eighty-one thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(8655, 8615, 'eight thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8656, 39918, 'thirty-nine thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(8657, 72064, 'seventy-two thousand sixty-four');\nINSERT INTO t3 VALUES(8658, 90041, 'ninety thousand forty-one');\nINSERT INTO t3 VALUES(8659, 95297, 'ninety-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(8660, 70516, 'seventy thousand five hundred sixteen');\nINSERT INTO t3 VALUES(8661, 76766, 'seventy-six thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(8662, 16492, 'sixteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(8663, 16189, 'sixteen thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(8664, 91662, 'ninety-one thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8665, 59057, 'fifty-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(8666, 65902, 'sixty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(8667, 17171, 'seventeen thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(8668, 24003, 'twenty-four thousand three');\nINSERT INTO t3 VALUES(8669, 92149, 'ninety-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(8670, 1792, 'one thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(8671, 67411, 'sixty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(8672, 66464, 'sixty-six thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(8673, 63074, 'sixty-three thousand seventy-four');\nINSERT INTO t3 VALUES(8674, 10873, 'ten thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(8675, 55524, 'fifty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(8676, 95313, 'ninety-five thousand three hundred thirteen');\nINSERT INTO t3 VALUES(8677, 28052, 'twenty-eight thousand fifty-two');\nINSERT INTO t3 VALUES(8678, 24289, 'twenty-four thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(8679, 68418, 'sixty-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(8680, 53276, 'fifty-three thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(8681, 82162, 'eighty-two thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(8682, 41681, 'forty-one thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(8683, 68119, 'sixty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(8684, 70728, 'seventy thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(8685, 8034, 'eight thousand thirty-four');\nINSERT INTO t3 VALUES(8686, 60929, 'sixty thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(8687, 21362, 'twenty-one thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(8688, 74845, 'seventy-four thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(8689, 5697, 'five thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(8690, 93968, 'ninety-three thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(8691, 51095, 'fifty-one thousand ninety-five');\nINSERT INTO t3 VALUES(8692, 83810, 'eighty-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(8693, 15741, 'fifteen thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(8694, 69922, 'sixty-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(8695, 184, 'one hundred eighty-four');\nINSERT INTO t3 VALUES(8696, 91324, 'ninety-one thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8697, 95777, 'ninety-five thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(8698, 15723, 'fifteen thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(8699, 43921, 'forty-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(8700, 58646, 'fifty-eight thousand six hundred forty-six');\nINSERT INTO t3 VALUES(8701, 93710, 'ninety-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(8702, 66251, 'sixty-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(8703, 71083, 'seventy-one thousand eighty-three');\nINSERT INTO t3 VALUES(8704, 24317, 'twenty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(8705, 24353, 'twenty-four thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(8706, 89820, 'eighty-nine thousand eight hundred twenty');\nINSERT INTO t3 VALUES(8707, 98100, 'ninety-eight thousand one hundred');\nINSERT INTO t3 VALUES(8708, 69014, 'sixty-nine thousand fourteen');\nINSERT INTO t3 VALUES(8709, 99625, 'ninety-nine thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(8710, 91098, 'ninety-one thousand ninety-eight');\nINSERT INTO t3 VALUES(8711, 92458, 'ninety-two thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(8712, 31397, 'thirty-one thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(8713, 432, 'four hundred thirty-two');\nINSERT INTO t3 VALUES(8714, 32584, 'thirty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(8715, 8666, 'eight thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(8716, 96638, 'ninety-six thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(8717, 7791, 'seven thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(8718, 1427, 'one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(8719, 14231, 'fourteen thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(8720, 28045, 'twenty-eight thousand forty-five');\nINSERT INTO t3 VALUES(8721, 69475, 'sixty-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(8722, 91064, 'ninety-one thousand sixty-four');\nINSERT INTO t3 VALUES(8723, 39915, 'thirty-nine thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(8724, 83169, 'eighty-three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(8725, 96548, 'ninety-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(8726, 35018, 'thirty-five thousand eighteen');\nINSERT INTO t3 VALUES(8727, 49950, 'forty-nine thousand nine hundred fifty');\nINSERT INTO t3 VALUES(8728, 70855, 'seventy thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(8729, 11953, 'eleven thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(8730, 43863, 'forty-three thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(8731, 7490, 'seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(8732, 11977, 'eleven thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(8733, 28119, 'twenty-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(8734, 59887, 'fifty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(8735, 73473, 'seventy-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(8736, 19309, 'nineteen thousand three hundred nine');\nINSERT INTO t3 VALUES(8737, 70079, 'seventy thousand seventy-nine');\nINSERT INTO t3 VALUES(8738, 58537, 'fifty-eight thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(8739, 31414, 'thirty-one thousand four hundred fourteen');\nINSERT INTO t3 VALUES(8740, 29081, 'twenty-nine thousand eighty-one');\nINSERT INTO t3 VALUES(8741, 18025, 'eighteen thousand twenty-five');\nINSERT INTO t3 VALUES(8742, 44324, 'forty-four thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(8743, 99072, 'ninety-nine thousand seventy-two');\nINSERT INTO t3 VALUES(8744, 85289, 'eighty-five thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(8745, 9000, 'nine thousand');\nINSERT INTO t3 VALUES(8746, 3985, 'three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(8747, 56314, 'fifty-six thousand three hundred fourteen');\nINSERT INTO t3 VALUES(8748, 14264, 'fourteen thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(8749, 89332, 'eighty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(8750, 69541, 'sixty-nine thousand five hundred forty-one');\nINSERT INTO t3 VALUES(8751, 85916, 'eighty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(8752, 21170, 'twenty-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(8753, 6500, 'six thousand five hundred');\nINSERT INTO t3 VALUES(8754, 9578, 'nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(8755, 89787, 'eighty-nine thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(8756, 34742, 'thirty-four thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(8757, 50788, 'fifty thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(8758, 70835, 'seventy thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(8759, 96005, 'ninety-six thousand five');\nINSERT INTO t3 VALUES(8760, 42368, 'forty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(8761, 15670, 'fifteen thousand six hundred seventy');\nINSERT INTO t3 VALUES(8762, 20354, 'twenty thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(8763, 51169, 'fifty-one thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(8764, 79100, 'seventy-nine thousand one hundred');\nINSERT INTO t3 VALUES(8765, 89010, 'eighty-nine thousand ten');\nINSERT INTO t3 VALUES(8766, 41959, 'forty-one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(8767, 89858, 'eighty-nine thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(8768, 12061, 'twelve thousand sixty-one');\nINSERT INTO t3 VALUES(8769, 34533, 'thirty-four thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(8770, 99846, 'ninety-nine thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(8771, 53210, 'fifty-three thousand two hundred ten');\nINSERT INTO t3 VALUES(8772, 52662, 'fifty-two thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(8773, 86340, 'eighty-six thousand three hundred forty');\nINSERT INTO t3 VALUES(8774, 96204, 'ninety-six thousand two hundred four');\nINSERT INTO t3 VALUES(8775, 41401, 'forty-one thousand four hundred one');\nINSERT INTO t3 VALUES(8776, 53906, 'fifty-three thousand nine hundred six');\nINSERT INTO t3 VALUES(8777, 30974, 'thirty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(8778, 8229, 'eight thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(8779, 32145, 'thirty-two thousand one hundred forty-five');\nINSERT INTO t3 VALUES(8780, 98200, 'ninety-eight thousand two hundred');\nINSERT INTO t3 VALUES(8781, 66462, 'sixty-six thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(8782, 15757, 'fifteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(8783, 41432, 'forty-one thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(8784, 5004, 'five thousand four');\nINSERT INTO t3 VALUES(8785, 65586, 'sixty-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(8786, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(8787, 40511, 'forty thousand five hundred eleven');\nINSERT INTO t3 VALUES(8788, 86308, 'eighty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(8789, 10066, 'ten thousand sixty-six');\nINSERT INTO t3 VALUES(8790, 87586, 'eighty-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(8791, 36308, 'thirty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(8792, 14513, 'fourteen thousand five hundred thirteen');\nINSERT INTO t3 VALUES(8793, 21879, 'twenty-one thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(8794, 92112, 'ninety-two thousand one hundred twelve');\nINSERT INTO t3 VALUES(8795, 21754, 'twenty-one thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(8796, 83071, 'eighty-three thousand seventy-one');\nINSERT INTO t3 VALUES(8797, 53182, 'fifty-three thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(8798, 14305, 'fourteen thousand three hundred five');\nINSERT INTO t3 VALUES(8799, 91092, 'ninety-one thousand ninety-two');\nINSERT INTO t3 VALUES(8800, 55635, 'fifty-five thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(8801, 51303, 'fifty-one thousand three hundred three');\nINSERT INTO t3 VALUES(8802, 10897, 'ten thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(8803, 86460, 'eighty-six thousand four hundred sixty');\nINSERT INTO t3 VALUES(8804, 4877, 'four thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(8805, 19681, 'nineteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(8806, 62275, 'sixty-two thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(8807, 97781, 'ninety-seven thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(8808, 43961, 'forty-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(8809, 71519, 'seventy-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(8810, 84180, 'eighty-four thousand one hundred eighty');\nINSERT INTO t3 VALUES(8811, 14910, 'fourteen thousand nine hundred ten');\nINSERT INTO t3 VALUES(8812, 49664, 'forty-nine thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(8813, 89952, 'eighty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(8814, 53247, 'fifty-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(8815, 66226, 'sixty-six thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(8816, 57384, 'fifty-seven thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(8817, 31951, 'thirty-one thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(8818, 44210, 'forty-four thousand two hundred ten');\nINSERT INTO t3 VALUES(8819, 55985, 'fifty-five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(8820, 60322, 'sixty thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(8821, 13591, 'thirteen thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(8822, 45349, 'forty-five thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(8823, 44807, 'forty-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(8824, 75197, 'seventy-five thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(8825, 28009, 'twenty-eight thousand nine');\nINSERT INTO t3 VALUES(8826, 51527, 'fifty-one thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(8827, 578, 'five hundred seventy-eight');\nINSERT INTO t3 VALUES(8828, 83112, 'eighty-three thousand one hundred twelve');\nINSERT INTO t3 VALUES(8829, 36658, 'thirty-six thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(8830, 20388, 'twenty thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(8831, 32378, 'thirty-two thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(8832, 22213, 'twenty-two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(8833, 10178, 'ten thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(8834, 75615, 'seventy-five thousand six hundred fifteen');\nINSERT INTO t3 VALUES(8835, 2848, 'two thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(8836, 22770, 'twenty-two thousand seven hundred seventy');\nINSERT INTO t3 VALUES(8837, 1945, 'one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(8838, 64352, 'sixty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(8839, 66296, 'sixty-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(8840, 26810, 'twenty-six thousand eight hundred ten');\nINSERT INTO t3 VALUES(8841, 9063, 'nine thousand sixty-three');\nINSERT INTO t3 VALUES(8842, 70208, 'seventy thousand two hundred eight');\nINSERT INTO t3 VALUES(8843, 56121, 'fifty-six thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(8844, 94374, 'ninety-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(8845, 5647, 'five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(8846, 51547, 'fifty-one thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(8847, 73646, 'seventy-three thousand six hundred forty-six');\nINSERT INTO t3 VALUES(8848, 89250, 'eighty-nine thousand two hundred fifty');\nINSERT INTO t3 VALUES(8849, 51303, 'fifty-one thousand three hundred three');\nINSERT INTO t3 VALUES(8850, 41930, 'forty-one thousand nine hundred thirty');\nINSERT INTO t3 VALUES(8851, 87727, 'eighty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(8852, 28453, 'twenty-eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(8853, 50451, 'fifty thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(8854, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(8855, 82827, 'eighty-two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(8856, 71581, 'seventy-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(8857, 14394, 'fourteen thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(8858, 46068, 'forty-six thousand sixty-eight');\nINSERT INTO t3 VALUES(8859, 76252, 'seventy-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(8860, 27505, 'twenty-seven thousand five hundred five');\nINSERT INTO t3 VALUES(8861, 30289, 'thirty thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(8862, 38900, 'thirty-eight thousand nine hundred');\nINSERT INTO t3 VALUES(8863, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(8864, 49229, 'forty-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(8865, 81206, 'eighty-one thousand two hundred six');\nINSERT INTO t3 VALUES(8866, 25077, 'twenty-five thousand seventy-seven');\nINSERT INTO t3 VALUES(8867, 30768, 'thirty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(8868, 76620, 'seventy-six thousand six hundred twenty');\nINSERT INTO t3 VALUES(8869, 88283, 'eighty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(8870, 69601, 'sixty-nine thousand six hundred one');\nINSERT INTO t3 VALUES(8871, 15776, 'fifteen thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(8872, 31227, 'thirty-one thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(8873, 66875, 'sixty-six thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(8874, 11949, 'eleven thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(8875, 43867, 'forty-three thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(8876, 23306, 'twenty-three thousand three hundred six');\nINSERT INTO t3 VALUES(8877, 95692, 'ninety-five thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(8878, 18750, 'eighteen thousand seven hundred fifty');\nINSERT INTO t3 VALUES(8879, 66788, 'sixty-six thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(8880, 29822, 'twenty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(8881, 76107, 'seventy-six thousand one hundred seven');\nINSERT INTO t3 VALUES(8882, 45957, 'forty-five thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(8883, 73445, 'seventy-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(8884, 2545, 'two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(8885, 19954, 'nineteen thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(8886, 27381, 'twenty-seven thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(8887, 49683, 'forty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(8888, 97902, 'ninety-seven thousand nine hundred two');\nINSERT INTO t3 VALUES(8889, 5402, 'five thousand four hundred two');\nINSERT INTO t3 VALUES(8890, 99699, 'ninety-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(8891, 59650, 'fifty-nine thousand six hundred fifty');\nINSERT INTO t3 VALUES(8892, 33569, 'thirty-three thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(8893, 93460, 'ninety-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(8894, 77070, 'seventy-seven thousand seventy');\nINSERT INTO t3 VALUES(8895, 23010, 'twenty-three thousand ten');\nINSERT INTO t3 VALUES(8896, 54896, 'fifty-four thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(8897, 30246, 'thirty thousand two hundred forty-six');\nINSERT INTO t3 VALUES(8898, 29053, 'twenty-nine thousand fifty-three');\nINSERT INTO t3 VALUES(8899, 83920, 'eighty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8900, 99441, 'ninety-nine thousand four hundred forty-one');\nINSERT INTO t3 VALUES(8901, 8083, 'eight thousand eighty-three');\nINSERT INTO t3 VALUES(8902, 47671, 'forty-seven thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(8903, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(8904, 27541, 'twenty-seven thousand five hundred forty-one');\nINSERT INTO t3 VALUES(8905, 85863, 'eighty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(8906, 53989, 'fifty-three thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(8907, 14198, 'fourteen thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(8908, 6871, 'six thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(8909, 61035, 'sixty-one thousand thirty-five');\nINSERT INTO t3 VALUES(8910, 58806, 'fifty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(8911, 94134, 'ninety-four thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(8912, 44315, 'forty-four thousand three hundred fifteen');\nINSERT INTO t3 VALUES(8913, 45755, 'forty-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8914, 80281, 'eighty thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(8915, 43508, 'forty-three thousand five hundred eight');\nINSERT INTO t3 VALUES(8916, 5750, 'five thousand seven hundred fifty');\nINSERT INTO t3 VALUES(8917, 41402, 'forty-one thousand four hundred two');\nINSERT INTO t3 VALUES(8918, 37310, 'thirty-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(8919, 50893, 'fifty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(8920, 183, 'one hundred eighty-three');\nINSERT INTO t3 VALUES(8921, 38346, 'thirty-eight thousand three hundred forty-six');\nINSERT INTO t3 VALUES(8922, 97429, 'ninety-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(8923, 98566, 'ninety-eight thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(8924, 6844, 'six thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(8925, 21894, 'twenty-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(8926, 53738, 'fifty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(8927, 72729, 'seventy-two thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(8928, 96701, 'ninety-six thousand seven hundred one');\nINSERT INTO t3 VALUES(8929, 89221, 'eighty-nine thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(8930, 51201, 'fifty-one thousand two hundred one');\nINSERT INTO t3 VALUES(8931, 31702, 'thirty-one thousand seven hundred two');\nINSERT INTO t3 VALUES(8932, 24390, 'twenty-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(8933, 55746, 'fifty-five thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(8934, 68375, 'sixty-eight thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(8935, 87377, 'eighty-seven thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(8936, 30091, 'thirty thousand ninety-one');\nINSERT INTO t3 VALUES(8937, 82666, 'eighty-two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(8938, 67335, 'sixty-seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(8939, 80977, 'eighty thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(8940, 39017, 'thirty-nine thousand seventeen');\nINSERT INTO t3 VALUES(8941, 22438, 'twenty-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(8942, 96170, 'ninety-six thousand one hundred seventy');\nINSERT INTO t3 VALUES(8943, 69719, 'sixty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(8944, 61880, 'sixty-one thousand eight hundred eighty');\nINSERT INTO t3 VALUES(8945, 87408, 'eighty-seven thousand four hundred eight');\nINSERT INTO t3 VALUES(8946, 32094, 'thirty-two thousand ninety-four');\nINSERT INTO t3 VALUES(8947, 54233, 'fifty-four thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(8948, 46995, 'forty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(8949, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(8950, 79004, 'seventy-nine thousand four');\nINSERT INTO t3 VALUES(8951, 24787, 'twenty-four thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(8952, 33917, 'thirty-three thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(8953, 20650, 'twenty thousand six hundred fifty');\nINSERT INTO t3 VALUES(8954, 15545, 'fifteen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(8955, 28465, 'twenty-eight thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(8956, 77966, 'seventy-seven thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(8957, 40490, 'forty thousand four hundred ninety');\nINSERT INTO t3 VALUES(8958, 65944, 'sixty-five thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(8959, 71646, 'seventy-one thousand six hundred forty-six');\nINSERT INTO t3 VALUES(8960, 83584, 'eighty-three thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(8961, 73512, 'seventy-three thousand five hundred twelve');\nINSERT INTO t3 VALUES(8962, 49920, 'forty-nine thousand nine hundred twenty');\nINSERT INTO t3 VALUES(8963, 53318, 'fifty-three thousand three hundred eighteen');\nINSERT INTO t3 VALUES(8964, 39959, 'thirty-nine thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(8965, 72167, 'seventy-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(8966, 86184, 'eighty-six thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(8967, 24020, 'twenty-four thousand twenty');\nINSERT INTO t3 VALUES(8968, 51653, 'fifty-one thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(8969, 80578, 'eighty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(8970, 39003, 'thirty-nine thousand three');\nINSERT INTO t3 VALUES(8971, 80866, 'eighty thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(8972, 14425, 'fourteen thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(8973, 55029, 'fifty-five thousand twenty-nine');\nINSERT INTO t3 VALUES(8974, 57905, 'fifty-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(8975, 20717, 'twenty thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(8976, 89894, 'eighty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(8977, 30105, 'thirty thousand one hundred five');\nINSERT INTO t3 VALUES(8978, 78493, 'seventy-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(8979, 17777, 'seventeen thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(8980, 74946, 'seventy-four thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(8981, 72797, 'seventy-two thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(8982, 75024, 'seventy-five thousand twenty-four');\nINSERT INTO t3 VALUES(8983, 51532, 'fifty-one thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(8984, 33724, 'thirty-three thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(8985, 2930, 'two thousand nine hundred thirty');\nINSERT INTO t3 VALUES(8986, 54770, 'fifty-four thousand seven hundred seventy');\nINSERT INTO t3 VALUES(8987, 80780, 'eighty thousand seven hundred eighty');\nINSERT INTO t3 VALUES(8988, 73147, 'seventy-three thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(8989, 89684, 'eighty-nine thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(8990, 71585, 'seventy-one thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(8991, 51694, 'fifty-one thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(8992, 55158, 'fifty-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(8993, 28755, 'twenty-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(8994, 66584, 'sixty-six thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(8995, 59752, 'fifty-nine thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(8996, 95143, 'ninety-five thousand one hundred forty-three');\nINSERT INTO t3 VALUES(8997, 5092, 'five thousand ninety-two');\nINSERT INTO t3 VALUES(8998, 56792, 'fifty-six thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(8999, 88899, 'eighty-eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(9000, 42062, 'forty-two thousand sixty-two');\nINSERT INTO t3 VALUES(9001, 87458, 'eighty-seven thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9002, 83037, 'eighty-three thousand thirty-seven');\nINSERT INTO t3 VALUES(9003, 45442, 'forty-five thousand four hundred forty-two');\nINSERT INTO t3 VALUES(9004, 96335, 'ninety-six thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(9005, 17437, 'seventeen thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(9006, 41234, 'forty-one thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(9007, 38464, 'thirty-eight thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(9008, 25912, 'twenty-five thousand nine hundred twelve');\nINSERT INTO t3 VALUES(9009, 18006, 'eighteen thousand six');\nINSERT INTO t3 VALUES(9010, 58518, 'fifty-eight thousand five hundred eighteen');\nINSERT INTO t3 VALUES(9011, 96286, 'ninety-six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(9012, 88919, 'eighty-eight thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(9013, 86871, 'eighty-six thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(9014, 55545, 'fifty-five thousand five hundred forty-five');\nINSERT INTO t3 VALUES(9015, 52368, 'fifty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9016, 42202, 'forty-two thousand two hundred two');\nINSERT INTO t3 VALUES(9017, 31564, 'thirty-one thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(9018, 17558, 'seventeen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(9019, 25854, 'twenty-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(9020, 346, 'three hundred forty-six');\nINSERT INTO t3 VALUES(9021, 67734, 'sixty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(9022, 65704, 'sixty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(9023, 95894, 'ninety-five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9024, 18630, 'eighteen thousand six hundred thirty');\nINSERT INTO t3 VALUES(9025, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(9026, 40109, 'forty thousand one hundred nine');\nINSERT INTO t3 VALUES(9027, 63064, 'sixty-three thousand sixty-four');\nINSERT INTO t3 VALUES(9028, 77187, 'seventy-seven thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(9029, 99038, 'ninety-nine thousand thirty-eight');\nINSERT INTO t3 VALUES(9030, 76139, 'seventy-six thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(9031, 82667, 'eighty-two thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(9032, 70647, 'seventy thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(9033, 38367, 'thirty-eight thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(9034, 93294, 'ninety-three thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(9035, 66244, 'sixty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(9036, 24895, 'twenty-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(9037, 28956, 'twenty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(9038, 21442, 'twenty-one thousand four hundred forty-two');\nINSERT INTO t3 VALUES(9039, 82489, 'eighty-two thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(9040, 15722, 'fifteen thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(9041, 5325, 'five thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(9042, 3042, 'three thousand forty-two');\nINSERT INTO t3 VALUES(9043, 69840, 'sixty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(9044, 86368, 'eighty-six thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9045, 41213, 'forty-one thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9046, 66450, 'sixty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(9047, 80470, 'eighty thousand four hundred seventy');\nINSERT INTO t3 VALUES(9048, 63488, 'sixty-three thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(9049, 9774, 'nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(9050, 79757, 'seventy-nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(9051, 31476, 'thirty-one thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(9052, 54062, 'fifty-four thousand sixty-two');\nINSERT INTO t3 VALUES(9053, 99610, 'ninety-nine thousand six hundred ten');\nINSERT INTO t3 VALUES(9054, 50809, 'fifty thousand eight hundred nine');\nINSERT INTO t3 VALUES(9055, 29135, 'twenty-nine thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(9056, 58535, 'fifty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9057, 62396, 'sixty-two thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(9058, 85313, 'eighty-five thousand three hundred thirteen');\nINSERT INTO t3 VALUES(9059, 18362, 'eighteen thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(9060, 33031, 'thirty-three thousand thirty-one');\nINSERT INTO t3 VALUES(9061, 76547, 'seventy-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(9062, 18035, 'eighteen thousand thirty-five');\nINSERT INTO t3 VALUES(9063, 93426, 'ninety-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(9064, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(9065, 36240, 'thirty-six thousand two hundred forty');\nINSERT INTO t3 VALUES(9066, 95982, 'ninety-five thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(9067, 63305, 'sixty-three thousand three hundred five');\nINSERT INTO t3 VALUES(9068, 49114, 'forty-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(9069, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(9070, 39056, 'thirty-nine thousand fifty-six');\nINSERT INTO t3 VALUES(9071, 39255, 'thirty-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(9072, 18392, 'eighteen thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(9073, 52779, 'fifty-two thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(9074, 70740, 'seventy thousand seven hundred forty');\nINSERT INTO t3 VALUES(9075, 28177, 'twenty-eight thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(9076, 53022, 'fifty-three thousand twenty-two');\nINSERT INTO t3 VALUES(9077, 8438, 'eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(9078, 90857, 'ninety thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(9079, 71045, 'seventy-one thousand forty-five');\nINSERT INTO t3 VALUES(9080, 73389, 'seventy-three thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(9081, 62752, 'sixty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(9082, 68794, 'sixty-eight thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(9083, 61942, 'sixty-one thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9084, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t3 VALUES(9085, 76440, 'seventy-six thousand four hundred forty');\nINSERT INTO t3 VALUES(9086, 67343, 'sixty-seven thousand three hundred forty-three');\nINSERT INTO t3 VALUES(9087, 96950, 'ninety-six thousand nine hundred fifty');\nINSERT INTO t3 VALUES(9088, 38512, 'thirty-eight thousand five hundred twelve');\nINSERT INTO t3 VALUES(9089, 65977, 'sixty-five thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(9090, 14040, 'fourteen thousand forty');\nINSERT INTO t3 VALUES(9091, 64962, 'sixty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(9092, 57923, 'fifty-seven thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(9093, 39954, 'thirty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(9094, 44316, 'forty-four thousand three hundred sixteen');\nINSERT INTO t3 VALUES(9095, 59214, 'fifty-nine thousand two hundred fourteen');\nINSERT INTO t3 VALUES(9096, 33593, 'thirty-three thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(9097, 92761, 'ninety-two thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(9098, 10028, 'ten thousand twenty-eight');\nINSERT INTO t3 VALUES(9099, 35798, 'thirty-five thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(9100, 84095, 'eighty-four thousand ninety-five');\nINSERT INTO t3 VALUES(9101, 29822, 'twenty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(9102, 37880, 'thirty-seven thousand eight hundred eighty');\nINSERT INTO t3 VALUES(9103, 35717, 'thirty-five thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(9104, 68276, 'sixty-eight thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(9105, 19185, 'nineteen thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(9106, 33368, 'thirty-three thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9107, 93229, 'ninety-three thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(9108, 22248, 'twenty-two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(9109, 94024, 'ninety-four thousand twenty-four');\nINSERT INTO t3 VALUES(9110, 76816, 'seventy-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(9111, 8189, 'eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(9112, 14797, 'fourteen thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(9113, 32570, 'thirty-two thousand five hundred seventy');\nINSERT INTO t3 VALUES(9114, 9894, 'nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9115, 68941, 'sixty-eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(9116, 27996, 'twenty-seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(9117, 35583, 'thirty-five thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(9118, 25430, 'twenty-five thousand four hundred thirty');\nINSERT INTO t3 VALUES(9119, 22255, 'twenty-two thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(9120, 58894, 'fifty-eight thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9121, 24066, 'twenty-four thousand sixty-six');\nINSERT INTO t3 VALUES(9122, 38320, 'thirty-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(9123, 10351, 'ten thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(9124, 8349, 'eight thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(9125, 79192, 'seventy-nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(9126, 11116, 'eleven thousand one hundred sixteen');\nINSERT INTO t3 VALUES(9127, 8725, 'eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(9128, 65492, 'sixty-five thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(9129, 37008, 'thirty-seven thousand eight');\nINSERT INTO t3 VALUES(9130, 28614, 'twenty-eight thousand six hundred fourteen');\nINSERT INTO t3 VALUES(9131, 2083, 'two thousand eighty-three');\nINSERT INTO t3 VALUES(9132, 15522, 'fifteen thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(9133, 37053, 'thirty-seven thousand fifty-three');\nINSERT INTO t3 VALUES(9134, 54309, 'fifty-four thousand three hundred nine');\nINSERT INTO t3 VALUES(9135, 56198, 'fifty-six thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(9136, 11354, 'eleven thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(9137, 32381, 'thirty-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(9138, 11379, 'eleven thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(9139, 79715, 'seventy-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(9140, 99040, 'ninety-nine thousand forty');\nINSERT INTO t3 VALUES(9141, 42907, 'forty-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(9142, 97582, 'ninety-seven thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(9143, 26920, 'twenty-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(9144, 14972, 'fourteen thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(9145, 99929, 'ninety-nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(9146, 18113, 'eighteen thousand one hundred thirteen');\nINSERT INTO t3 VALUES(9147, 48729, 'forty-eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(9148, 38634, 'thirty-eight thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(9149, 36178, 'thirty-six thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(9150, 20243, 'twenty thousand two hundred forty-three');\nINSERT INTO t3 VALUES(9151, 42704, 'forty-two thousand seven hundred four');\nINSERT INTO t3 VALUES(9152, 18710, 'eighteen thousand seven hundred ten');\nINSERT INTO t3 VALUES(9153, 16143, 'sixteen thousand one hundred forty-three');\nINSERT INTO t3 VALUES(9154, 32009, 'thirty-two thousand nine');\nINSERT INTO t3 VALUES(9155, 63727, 'sixty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(9156, 53242, 'fifty-three thousand two hundred forty-two');\nINSERT INTO t3 VALUES(9157, 3236, 'three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(9158, 55435, 'fifty-five thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(9159, 77610, 'seventy-seven thousand six hundred ten');\nINSERT INTO t3 VALUES(9160, 1072, 'one thousand seventy-two');\nINSERT INTO t3 VALUES(9161, 95288, 'ninety-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(9162, 64213, 'sixty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9163, 92749, 'ninety-two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9164, 31485, 'thirty-one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(9165, 22927, 'twenty-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9166, 89768, 'eighty-nine thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(9167, 10867, 'ten thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(9168, 11046, 'eleven thousand forty-six');\nINSERT INTO t3 VALUES(9169, 98054, 'ninety-eight thousand fifty-four');\nINSERT INTO t3 VALUES(9170, 11549, 'eleven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(9171, 67832, 'sixty-seven thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(9172, 2112, 'two thousand one hundred twelve');\nINSERT INTO t3 VALUES(9173, 94490, 'ninety-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(9174, 51480, 'fifty-one thousand four hundred eighty');\nINSERT INTO t3 VALUES(9175, 60796, 'sixty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(9176, 26361, 'twenty-six thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(9177, 67022, 'sixty-seven thousand twenty-two');\nINSERT INTO t3 VALUES(9178, 63130, 'sixty-three thousand one hundred thirty');\nINSERT INTO t3 VALUES(9179, 46755, 'forty-six thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(9180, 21060, 'twenty-one thousand sixty');\nINSERT INTO t3 VALUES(9181, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(9182, 82727, 'eighty-two thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(9183, 1546, 'one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(9184, 72420, 'seventy-two thousand four hundred twenty');\nINSERT INTO t3 VALUES(9185, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t3 VALUES(9186, 2821, 'two thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9187, 81558, 'eighty-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(9188, 91643, 'ninety-one thousand six hundred forty-three');\nINSERT INTO t3 VALUES(9189, 41793, 'forty-one thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(9190, 88071, 'eighty-eight thousand seventy-one');\nINSERT INTO t3 VALUES(9191, 17534, 'seventeen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(9192, 88129, 'eighty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(9193, 80657, 'eighty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(9194, 91355, 'ninety-one thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(9195, 23533, 'twenty-three thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(9196, 27599, 'twenty-seven thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(9197, 72294, 'seventy-two thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(9198, 78603, 'seventy-eight thousand six hundred three');\nINSERT INTO t3 VALUES(9199, 26761, 'twenty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(9200, 59860, 'fifty-nine thousand eight hundred sixty');\nINSERT INTO t3 VALUES(9201, 50947, 'fifty thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(9202, 43175, 'forty-three thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(9203, 48134, 'forty-eight thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(9204, 18280, 'eighteen thousand two hundred eighty');\nINSERT INTO t3 VALUES(9205, 35461, 'thirty-five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(9206, 91273, 'ninety-one thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(9207, 6046, 'six thousand forty-six');\nINSERT INTO t3 VALUES(9208, 90076, 'ninety thousand seventy-six');\nINSERT INTO t3 VALUES(9209, 66903, 'sixty-six thousand nine hundred three');\nINSERT INTO t3 VALUES(9210, 13199, 'thirteen thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(9211, 83217, 'eighty-three thousand two hundred seventeen');\nINSERT INTO t3 VALUES(9212, 92154, 'ninety-two thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(9213, 38937, 'thirty-eight thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(9214, 20628, 'twenty thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(9215, 62348, 'sixty-two thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(9216, 29919, 'twenty-nine thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(9217, 34281, 'thirty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(9218, 15475, 'fifteen thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(9219, 37942, 'thirty-seven thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9220, 31341, 'thirty-one thousand three hundred forty-one');\nINSERT INTO t3 VALUES(9221, 59714, 'fifty-nine thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(9222, 33237, 'thirty-three thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(9223, 70487, 'seventy thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(9224, 62617, 'sixty-two thousand six hundred seventeen');\nINSERT INTO t3 VALUES(9225, 61349, 'sixty-one thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(9226, 64067, 'sixty-four thousand sixty-seven');\nINSERT INTO t3 VALUES(9227, 65358, 'sixty-five thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(9228, 88344, 'eighty-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9229, 64528, 'sixty-four thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(9230, 96716, 'ninety-six thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(9231, 77063, 'seventy-seven thousand sixty-three');\nINSERT INTO t3 VALUES(9232, 75673, 'seventy-five thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(9233, 92475, 'ninety-two thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(9234, 50843, 'fifty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(9235, 97043, 'ninety-seven thousand forty-three');\nINSERT INTO t3 VALUES(9236, 6072, 'six thousand seventy-two');\nINSERT INTO t3 VALUES(9237, 65314, 'sixty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(9238, 82344, 'eighty-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9239, 74018, 'seventy-four thousand eighteen');\nINSERT INTO t3 VALUES(9240, 32928, 'thirty-two thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(9241, 60082, 'sixty thousand eighty-two');\nINSERT INTO t3 VALUES(9242, 81604, 'eighty-one thousand six hundred four');\nINSERT INTO t3 VALUES(9243, 38115, 'thirty-eight thousand one hundred fifteen');\nINSERT INTO t3 VALUES(9244, 80246, 'eighty thousand two hundred forty-six');\nINSERT INTO t3 VALUES(9245, 50234, 'fifty thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(9246, 8465, 'eight thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(9247, 43140, 'forty-three thousand one hundred forty');\nINSERT INTO t3 VALUES(9248, 17223, 'seventeen thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(9249, 93099, 'ninety-three thousand ninety-nine');\nINSERT INTO t3 VALUES(9250, 70775, 'seventy thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(9251, 77097, 'seventy-seven thousand ninety-seven');\nINSERT INTO t3 VALUES(9252, 26685, 'twenty-six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(9253, 84011, 'eighty-four thousand eleven');\nINSERT INTO t3 VALUES(9254, 35749, 'thirty-five thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9255, 43137, 'forty-three thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(9256, 73765, 'seventy-three thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(9257, 61041, 'sixty-one thousand forty-one');\nINSERT INTO t3 VALUES(9258, 59354, 'fifty-nine thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(9259, 19542, 'nineteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(9260, 71523, 'seventy-one thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(9261, 2298, 'two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(9262, 715, 'seven hundred fifteen');\nINSERT INTO t3 VALUES(9263, 60243, 'sixty thousand two hundred forty-three');\nINSERT INTO t3 VALUES(9264, 32053, 'thirty-two thousand fifty-three');\nINSERT INTO t3 VALUES(9265, 12963, 'twelve thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(9266, 24250, 'twenty-four thousand two hundred fifty');\nINSERT INTO t3 VALUES(9267, 36631, 'thirty-six thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(9268, 52928, 'fifty-two thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(9269, 16333, 'sixteen thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(9270, 82870, 'eighty-two thousand eight hundred seventy');\nINSERT INTO t3 VALUES(9271, 81515, 'eighty-one thousand five hundred fifteen');\nINSERT INTO t3 VALUES(9272, 99191, 'ninety-nine thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(9273, 87415, 'eighty-seven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9274, 55020, 'fifty-five thousand twenty');\nINSERT INTO t3 VALUES(9275, 25213, 'twenty-five thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9276, 38515, 'thirty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(9277, 56758, 'fifty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(9278, 24777, 'twenty-four thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(9279, 4780, 'four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(9280, 12336, 'twelve thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9281, 24419, 'twenty-four thousand four hundred nineteen');\nINSERT INTO t3 VALUES(9282, 29000, 'twenty-nine thousand');\nINSERT INTO t3 VALUES(9283, 26475, 'twenty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(9284, 10365, 'ten thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(9285, 4733, 'four thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(9286, 62551, 'sixty-two thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(9287, 9207, 'nine thousand two hundred seven');\nINSERT INTO t3 VALUES(9288, 69259, 'sixty-nine thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(9289, 64025, 'sixty-four thousand twenty-five');\nINSERT INTO t3 VALUES(9290, 79316, 'seventy-nine thousand three hundred sixteen');\nINSERT INTO t3 VALUES(9291, 53916, 'fifty-three thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(9292, 56301, 'fifty-six thousand three hundred one');\nINSERT INTO t3 VALUES(9293, 17156, 'seventeen thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(9294, 81030, 'eighty-one thousand thirty');\nINSERT INTO t3 VALUES(9295, 65931, 'sixty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(9296, 70204, 'seventy thousand two hundred four');\nINSERT INTO t3 VALUES(9297, 88942, 'eighty-eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9298, 54425, 'fifty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(9299, 45614, 'forty-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(9300, 33829, 'thirty-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9301, 47087, 'forty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(9302, 89386, 'eighty-nine thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(9303, 80191, 'eighty thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(9304, 52285, 'fifty-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(9305, 44795, 'forty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(9306, 71836, 'seventy-one thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(9307, 19547, 'nineteen thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(9308, 94144, 'ninety-four thousand one hundred forty-four');\nINSERT INTO t3 VALUES(9309, 50085, 'fifty thousand eighty-five');\nINSERT INTO t3 VALUES(9310, 12091, 'twelve thousand ninety-one');\nINSERT INTO t3 VALUES(9311, 90620, 'ninety thousand six hundred twenty');\nINSERT INTO t3 VALUES(9312, 21667, 'twenty-one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(9313, 2828, 'two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(9314, 79979, 'seventy-nine thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(9315, 42653, 'forty-two thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(9316, 22651, 'twenty-two thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(9317, 46836, 'forty-six thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(9318, 6891, 'six thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(9319, 65648, 'sixty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(9320, 4568, 'four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(9321, 70927, 'seventy thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9322, 43772, 'forty-three thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9323, 13829, 'thirteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9324, 90942, 'ninety thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(9325, 16722, 'sixteen thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(9326, 70488, 'seventy thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(9327, 10181, 'ten thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(9328, 51044, 'fifty-one thousand forty-four');\nINSERT INTO t3 VALUES(9329, 51516, 'fifty-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(9330, 22091, 'twenty-two thousand ninety-one');\nINSERT INTO t3 VALUES(9331, 46933, 'forty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(9332, 13896, 'thirteen thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(9333, 52569, 'fifty-two thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(9334, 26404, 'twenty-six thousand four hundred four');\nINSERT INTO t3 VALUES(9335, 65553, 'sixty-five thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(9336, 7091, 'seven thousand ninety-one');\nINSERT INTO t3 VALUES(9337, 53998, 'fifty-three thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(9338, 80480, 'eighty thousand four hundred eighty');\nINSERT INTO t3 VALUES(9339, 73810, 'seventy-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(9340, 14807, 'fourteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(9341, 47446, 'forty-seven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(9342, 94755, 'ninety-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(9343, 41874, 'forty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(9344, 49840, 'forty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(9345, 98442, 'ninety-eight thousand four hundred forty-two');\nINSERT INTO t3 VALUES(9346, 52772, 'fifty-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9347, 29363, 'twenty-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(9348, 22819, 'twenty-two thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(9349, 70973, 'seventy thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(9350, 83032, 'eighty-three thousand thirty-two');\nINSERT INTO t3 VALUES(9351, 22199, 'twenty-two thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(9352, 59295, 'fifty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9353, 51235, 'fifty-one thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(9354, 70910, 'seventy thousand nine hundred ten');\nINSERT INTO t3 VALUES(9355, 30627, 'thirty thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(9356, 30518, 'thirty thousand five hundred eighteen');\nINSERT INTO t3 VALUES(9357, 92969, 'ninety-two thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(9358, 25130, 'twenty-five thousand one hundred thirty');\nINSERT INTO t3 VALUES(9359, 54858, 'fifty-four thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(9360, 1656, 'one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(9361, 96248, 'ninety-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(9362, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(9363, 23849, 'twenty-three thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(9364, 68780, 'sixty-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(9365, 68674, 'sixty-eight thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(9366, 9263, 'nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(9367, 15001, 'fifteen thousand one');\nINSERT INTO t3 VALUES(9368, 44927, 'forty-four thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9369, 74966, 'seventy-four thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(9370, 77659, 'seventy-seven thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(9371, 16585, 'sixteen thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(9372, 70397, 'seventy thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9373, 54297, 'fifty-four thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(9374, 16079, 'sixteen thousand seventy-nine');\nINSERT INTO t3 VALUES(9375, 57305, 'fifty-seven thousand three hundred five');\nINSERT INTO t3 VALUES(9376, 28710, 'twenty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(9377, 72838, 'seventy-two thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(9378, 65613, 'sixty-five thousand six hundred thirteen');\nINSERT INTO t3 VALUES(9379, 2299, 'two thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(9380, 81974, 'eighty-one thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(9381, 74535, 'seventy-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9382, 92645, 'ninety-two thousand six hundred forty-five');\nINSERT INTO t3 VALUES(9383, 46704, 'forty-six thousand seven hundred four');\nINSERT INTO t3 VALUES(9384, 87040, 'eighty-seven thousand forty');\nINSERT INTO t3 VALUES(9385, 17892, 'seventeen thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(9386, 17587, 'seventeen thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(9387, 46374, 'forty-six thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(9388, 33874, 'thirty-three thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(9389, 35921, 'thirty-five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(9390, 34701, 'thirty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(9391, 69836, 'sixty-nine thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(9392, 25533, 'twenty-five thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(9393, 24734, 'twenty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(9394, 93359, 'ninety-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(9395, 85681, 'eighty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(9396, 83898, 'eighty-three thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(9397, 83847, 'eighty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(9398, 91137, 'ninety-one thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(9399, 39397, 'thirty-nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9400, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(9401, 51388, 'fifty-one thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(9402, 2759, 'two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(9403, 50512, 'fifty thousand five hundred twelve');\nINSERT INTO t3 VALUES(9404, 91961, 'ninety-one thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(9405, 25773, 'twenty-five thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9406, 90873, 'ninety thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(9407, 48072, 'forty-eight thousand seventy-two');\nINSERT INTO t3 VALUES(9408, 76197, 'seventy-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(9409, 23501, 'twenty-three thousand five hundred one');\nINSERT INTO t3 VALUES(9410, 15196, 'fifteen thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9411, 92399, 'ninety-two thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(9412, 97769, 'ninety-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(9413, 27952, 'twenty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(9414, 11128, 'eleven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(9415, 63811, 'sixty-three thousand eight hundred eleven');\nINSERT INTO t3 VALUES(9416, 70663, 'seventy thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(9417, 95007, 'ninety-five thousand seven');\nINSERT INTO t3 VALUES(9418, 58978, 'fifty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(9419, 31954, 'thirty-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(9420, 81219, 'eighty-one thousand two hundred nineteen');\nINSERT INTO t3 VALUES(9421, 5188, 'five thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(9422, 7825, 'seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(9423, 9196, 'nine thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9424, 86791, 'eighty-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(9425, 29721, 'twenty-nine thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(9426, 12847, 'twelve thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(9427, 99213, 'ninety-nine thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9428, 66885, 'sixty-six thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(9429, 42654, 'forty-two thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(9430, 20906, 'twenty thousand nine hundred six');\nINSERT INTO t3 VALUES(9431, 62821, 'sixty-two thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9432, 75368, 'seventy-five thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(9433, 49370, 'forty-nine thousand three hundred seventy');\nINSERT INTO t3 VALUES(9434, 39473, 'thirty-nine thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(9435, 9521, 'nine thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(9436, 89273, 'eighty-nine thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(9437, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t3 VALUES(9438, 41305, 'forty-one thousand three hundred five');\nINSERT INTO t3 VALUES(9439, 31247, 'thirty-one thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(9440, 81295, 'eighty-one thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9441, 86702, 'eighty-six thousand seven hundred two');\nINSERT INTO t3 VALUES(9442, 58812, 'fifty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(9443, 94537, 'ninety-four thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(9444, 27049, 'twenty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(9445, 17031, 'seventeen thousand thirty-one');\nINSERT INTO t3 VALUES(9446, 69314, 'sixty-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(9447, 23716, 'twenty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(9448, 76076, 'seventy-six thousand seventy-six');\nINSERT INTO t3 VALUES(9449, 2717, 'two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(9450, 44747, 'forty-four thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(9451, 53340, 'fifty-three thousand three hundred forty');\nINSERT INTO t3 VALUES(9452, 95746, 'ninety-five thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(9453, 71187, 'seventy-one thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(9454, 7917, 'seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(9455, 28789, 'twenty-eight thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(9456, 60796, 'sixty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(9457, 81345, 'eighty-one thousand three hundred forty-five');\nINSERT INTO t3 VALUES(9458, 9391, 'nine thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(9459, 64031, 'sixty-four thousand thirty-one');\nINSERT INTO t3 VALUES(9460, 55265, 'fifty-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(9461, 34927, 'thirty-four thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(9462, 41428, 'forty-one thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(9463, 83770, 'eighty-three thousand seven hundred seventy');\nINSERT INTO t3 VALUES(9464, 70159, 'seventy thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(9465, 18267, 'eighteen thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(9466, 39244, 'thirty-nine thousand two hundred forty-four');\nINSERT INTO t3 VALUES(9467, 44228, 'forty-four thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(9468, 1947, 'one thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(9469, 72422, 'seventy-two thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(9470, 53802, 'fifty-three thousand eight hundred two');\nINSERT INTO t3 VALUES(9471, 64829, 'sixty-four thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9472, 6289, 'six thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(9473, 62878, 'sixty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(9474, 22415, 'twenty-two thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9475, 69964, 'sixty-nine thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(9476, 59869, 'fifty-nine thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(9477, 2433, 'two thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(9478, 35295, 'thirty-five thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9479, 44059, 'forty-four thousand fifty-nine');\nINSERT INTO t3 VALUES(9480, 49410, 'forty-nine thousand four hundred ten');\nINSERT INTO t3 VALUES(9481, 10316, 'ten thousand three hundred sixteen');\nINSERT INTO t3 VALUES(9482, 11864, 'eleven thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(9483, 45783, 'forty-five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(9484, 71139, 'seventy-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(9485, 64769, 'sixty-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(9486, 69627, 'sixty-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(9487, 6160, 'six thousand one hundred sixty');\nINSERT INTO t3 VALUES(9488, 1622, 'one thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(9489, 32963, 'thirty-two thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(9490, 4482, 'four thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(9491, 65797, 'sixty-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(9492, 6525, 'six thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(9493, 95289, 'ninety-five thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(9494, 94277, 'ninety-four thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(9495, 38195, 'thirty-eight thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(9496, 73136, 'seventy-three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(9497, 24640, 'twenty-four thousand six hundred forty');\nINSERT INTO t3 VALUES(9498, 50773, 'fifty thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9499, 53197, 'fifty-three thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(9500, 28393, 'twenty-eight thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(9501, 68463, 'sixty-eight thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(9502, 97319, 'ninety-seven thousand three hundred nineteen');\nINSERT INTO t3 VALUES(9503, 7449, 'seven thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(9504, 40053, 'forty thousand fifty-three');\nINSERT INTO t3 VALUES(9505, 92826, 'ninety-two thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(9506, 92280, 'ninety-two thousand two hundred eighty');\nINSERT INTO t3 VALUES(9507, 66373, 'sixty-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(9508, 46904, 'forty-six thousand nine hundred four');\nINSERT INTO t3 VALUES(9509, 36587, 'thirty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(9510, 24990, 'twenty-four thousand nine hundred ninety');\nINSERT INTO t3 VALUES(9511, 34899, 'thirty-four thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(9512, 65838, 'sixty-five thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(9513, 37982, 'thirty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(9514, 95348, 'ninety-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(9515, 99069, 'ninety-nine thousand sixty-nine');\nINSERT INTO t3 VALUES(9516, 19341, 'nineteen thousand three hundred forty-one');\nINSERT INTO t3 VALUES(9517, 34630, 'thirty-four thousand six hundred thirty');\nINSERT INTO t3 VALUES(9518, 62749, 'sixty-two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9519, 54795, 'fifty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(9520, 65885, 'sixty-five thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(9521, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t3 VALUES(9522, 94995, 'ninety-four thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(9523, 44099, 'forty-four thousand ninety-nine');\nINSERT INTO t3 VALUES(9524, 5023, 'five thousand twenty-three');\nINSERT INTO t3 VALUES(9525, 44432, 'forty-four thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(9526, 58385, 'fifty-eight thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(9527, 27411, 'twenty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(9528, 46696, 'forty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(9529, 35288, 'thirty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(9530, 51650, 'fifty-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(9531, 50346, 'fifty thousand three hundred forty-six');\nINSERT INTO t3 VALUES(9532, 53778, 'fifty-three thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(9533, 77104, 'seventy-seven thousand one hundred four');\nINSERT INTO t3 VALUES(9534, 81645, 'eighty-one thousand six hundred forty-five');\nINSERT INTO t3 VALUES(9535, 93730, 'ninety-three thousand seven hundred thirty');\nINSERT INTO t3 VALUES(9536, 53911, 'fifty-three thousand nine hundred eleven');\nINSERT INTO t3 VALUES(9537, 46429, 'forty-six thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(9538, 912, 'nine hundred twelve');\nINSERT INTO t3 VALUES(9539, 80247, 'eighty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(9540, 59461, 'fifty-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(9541, 85411, 'eighty-five thousand four hundred eleven');\nINSERT INTO t3 VALUES(9542, 88498, 'eighty-eight thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(9543, 64667, 'sixty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(9544, 86721, 'eighty-six thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(9545, 42294, 'forty-two thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(9546, 95975, 'ninety-five thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(9547, 85394, 'eighty-five thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(9548, 2596, 'two thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(9549, 15830, 'fifteen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(9550, 11774, 'eleven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(9551, 58243, 'fifty-eight thousand two hundred forty-three');\nINSERT INTO t3 VALUES(9552, 49363, 'forty-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(9553, 17763, 'seventeen thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(9554, 37835, 'thirty-seven thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(9555, 62394, 'sixty-two thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(9556, 82566, 'eighty-two thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(9557, 9620, 'nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(9558, 43924, 'forty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(9559, 13939, 'thirteen thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(9560, 42034, 'forty-two thousand thirty-four');\nINSERT INTO t3 VALUES(9561, 39386, 'thirty-nine thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(9562, 37292, 'thirty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(9563, 55768, 'fifty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(9564, 12746, 'twelve thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(9565, 15598, 'fifteen thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(9566, 76861, 'seventy-six thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(9567, 88958, 'eighty-eight thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(9568, 57242, 'fifty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(9569, 53535, 'fifty-three thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9570, 68429, 'sixty-eight thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(9571, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(9572, 61897, 'sixty-one thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(9573, 56375, 'fifty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(9574, 53383, 'fifty-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(9575, 75975, 'seventy-five thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(9576, 52430, 'fifty-two thousand four hundred thirty');\nINSERT INTO t3 VALUES(9577, 32397, 'thirty-two thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9578, 52315, 'fifty-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(9579, 92937, 'ninety-two thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(9580, 97196, 'ninety-seven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9581, 51060, 'fifty-one thousand sixty');\nINSERT INTO t3 VALUES(9582, 73173, 'seventy-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(9583, 69205, 'sixty-nine thousand two hundred five');\nINSERT INTO t3 VALUES(9584, 72584, 'seventy-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(9585, 62794, 'sixty-two thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(9586, 95094, 'ninety-five thousand ninety-four');\nINSERT INTO t3 VALUES(9587, 93164, 'ninety-three thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(9588, 31782, 'thirty-one thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(9589, 67414, 'sixty-seven thousand four hundred fourteen');\nINSERT INTO t3 VALUES(9590, 14328, 'fourteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(9591, 28027, 'twenty-eight thousand twenty-seven');\nINSERT INTO t3 VALUES(9592, 36845, 'thirty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(9593, 90582, 'ninety thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(9594, 78397, 'seventy-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9595, 32621, 'thirty-two thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(9596, 33893, 'thirty-three thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(9597, 3035, 'three thousand thirty-five');\nINSERT INTO t3 VALUES(9598, 2249, 'two thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(9599, 28115, 'twenty-eight thousand one hundred fifteen');\nINSERT INTO t3 VALUES(9600, 48283, 'forty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(9601, 82132, 'eighty-two thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(9602, 35998, 'thirty-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(9603, 1349, 'one thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(9604, 18482, 'eighteen thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(9605, 8550, 'eight thousand five hundred fifty');\nINSERT INTO t3 VALUES(9606, 41277, 'forty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(9607, 63595, 'sixty-three thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(9608, 11102, 'eleven thousand one hundred two');\nINSERT INTO t3 VALUES(9609, 75196, 'seventy-five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(9610, 21415, 'twenty-one thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9611, 62935, 'sixty-two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(9612, 60561, 'sixty thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(9613, 42112, 'forty-two thousand one hundred twelve');\nINSERT INTO t3 VALUES(9614, 3546, 'three thousand five hundred forty-six');\nINSERT INTO t3 VALUES(9615, 84965, 'eighty-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(9616, 23021, 'twenty-three thousand twenty-one');\nINSERT INTO t3 VALUES(9617, 11024, 'eleven thousand twenty-four');\nINSERT INTO t3 VALUES(9618, 19148, 'nineteen thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(9619, 62660, 'sixty-two thousand six hundred sixty');\nINSERT INTO t3 VALUES(9620, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(9621, 7150, 'seven thousand one hundred fifty');\nINSERT INTO t3 VALUES(9622, 94115, 'ninety-four thousand one hundred fifteen');\nINSERT INTO t3 VALUES(9623, 79455, 'seventy-nine thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(9624, 66501, 'sixty-six thousand five hundred one');\nINSERT INTO t3 VALUES(9625, 25874, 'twenty-five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(9626, 83933, 'eighty-three thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(9627, 45557, 'forty-five thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(9628, 42680, 'forty-two thousand six hundred eighty');\nINSERT INTO t3 VALUES(9629, 41739, 'forty-one thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(9630, 8693, 'eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(9631, 55585, 'fifty-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(9632, 38535, 'thirty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9633, 21156, 'twenty-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(9634, 20406, 'twenty thousand four hundred six');\nINSERT INTO t3 VALUES(9635, 66134, 'sixty-six thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(9636, 52453, 'fifty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(9637, 41268, 'forty-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(9638, 63276, 'sixty-three thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(9639, 87526, 'eighty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(9640, 90635, 'ninety thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(9641, 97688, 'ninety-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(9642, 36016, 'thirty-six thousand sixteen');\nINSERT INTO t3 VALUES(9643, 43498, 'forty-three thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(9644, 22834, 'twenty-two thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(9645, 9528, 'nine thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(9646, 74739, 'seventy-four thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(9647, 536, 'five hundred thirty-six');\nINSERT INTO t3 VALUES(9648, 77270, 'seventy-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(9649, 97018, 'ninety-seven thousand eighteen');\nINSERT INTO t3 VALUES(9650, 50645, 'fifty thousand six hundred forty-five');\nINSERT INTO t3 VALUES(9651, 69848, 'sixty-nine thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(9652, 11415, 'eleven thousand four hundred fifteen');\nINSERT INTO t3 VALUES(9653, 11438, 'eleven thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(9654, 38760, 'thirty-eight thousand seven hundred sixty');\nINSERT INTO t3 VALUES(9655, 36497, 'thirty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(9656, 9140, 'nine thousand one hundred forty');\nINSERT INTO t3 VALUES(9657, 29546, 'twenty-nine thousand five hundred forty-six');\nINSERT INTO t3 VALUES(9658, 31898, 'thirty-one thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(9659, 25844, 'twenty-five thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(9660, 32481, 'thirty-two thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(9661, 60532, 'sixty thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(9662, 29790, 'twenty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(9663, 74747, 'seventy-four thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(9664, 58643, 'fifty-eight thousand six hundred forty-three');\nINSERT INTO t3 VALUES(9665, 33744, 'thirty-three thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(9666, 59480, 'fifty-nine thousand four hundred eighty');\nINSERT INTO t3 VALUES(9667, 50128, 'fifty thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(9668, 70384, 'seventy thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(9669, 7158, 'seven thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(9670, 80151, 'eighty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(9671, 24344, 'twenty-four thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9672, 61214, 'sixty-one thousand two hundred fourteen');\nINSERT INTO t3 VALUES(9673, 35741, 'thirty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(9674, 24894, 'twenty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(9675, 19114, 'nineteen thousand one hundred fourteen');\nINSERT INTO t3 VALUES(9676, 12239, 'twelve thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(9677, 88554, 'eighty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(9678, 36293, 'thirty-six thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(9679, 48425, 'forty-eight thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(9680, 99726, 'ninety-nine thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(9681, 62229, 'sixty-two thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(9682, 63653, 'sixty-three thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(9683, 15592, 'fifteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(9684, 33061, 'thirty-three thousand sixty-one');\nINSERT INTO t3 VALUES(9685, 53447, 'fifty-three thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(9686, 63564, 'sixty-three thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(9687, 57386, 'fifty-seven thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(9688, 81975, 'eighty-one thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(9689, 35470, 'thirty-five thousand four hundred seventy');\nINSERT INTO t3 VALUES(9690, 98418, 'ninety-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(9691, 88402, 'eighty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(9692, 98496, 'ninety-eight thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(9693, 97784, 'ninety-seven thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(9694, 35214, 'thirty-five thousand two hundred fourteen');\nINSERT INTO t3 VALUES(9695, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t3 VALUES(9696, 76077, 'seventy-six thousand seventy-seven');\nINSERT INTO t3 VALUES(9697, 23088, 'twenty-three thousand eighty-eight');\nINSERT INTO t3 VALUES(9698, 14265, 'fourteen thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(9699, 76827, 'seventy-six thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(9700, 27804, 'twenty-seven thousand eight hundred four');\nINSERT INTO t3 VALUES(9701, 53844, 'fifty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(9702, 4007, 'four thousand seven');\nINSERT INTO t3 VALUES(9703, 96952, 'ninety-six thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(9704, 46585, 'forty-six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(9705, 83391, 'eighty-three thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(9706, 78111, 'seventy-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(9707, 80532, 'eighty thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(9708, 43375, 'forty-three thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(9709, 56714, 'fifty-six thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(9710, 57329, 'fifty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9711, 16576, 'sixteen thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(9712, 1329, 'one thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9713, 88054, 'eighty-eight thousand fifty-four');\nINSERT INTO t3 VALUES(9714, 70183, 'seventy thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(9715, 70877, 'seventy thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(9716, 7748, 'seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(9717, 53011, 'fifty-three thousand eleven');\nINSERT INTO t3 VALUES(9718, 54458, 'fifty-four thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9719, 55829, 'fifty-five thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(9720, 23875, 'twenty-three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(9721, 83438, 'eighty-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(9722, 30843, 'thirty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(9723, 31460, 'thirty-one thousand four hundred sixty');\nINSERT INTO t3 VALUES(9724, 1279, 'one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(9725, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t3 VALUES(9726, 9956, 'nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(9727, 59878, 'fifty-nine thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(9728, 95406, 'ninety-five thousand four hundred six');\nINSERT INTO t3 VALUES(9729, 78322, 'seventy-eight thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(9730, 54152, 'fifty-four thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(9731, 28924, 'twenty-eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(9732, 86051, 'eighty-six thousand fifty-one');\nINSERT INTO t3 VALUES(9733, 54314, 'fifty-four thousand three hundred fourteen');\nINSERT INTO t3 VALUES(9734, 86506, 'eighty-six thousand five hundred six');\nINSERT INTO t3 VALUES(9735, 43503, 'forty-three thousand five hundred three');\nINSERT INTO t3 VALUES(9736, 76407, 'seventy-six thousand four hundred seven');\nINSERT INTO t3 VALUES(9737, 81693, 'eighty-one thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(9738, 68742, 'sixty-eight thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(9739, 93083, 'ninety-three thousand eighty-three');\nINSERT INTO t3 VALUES(9740, 15616, 'fifteen thousand six hundred sixteen');\nINSERT INTO t3 VALUES(9741, 25334, 'twenty-five thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(9742, 16841, 'sixteen thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(9743, 15428, 'fifteen thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(9744, 11639, 'eleven thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(9745, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(9746, 4539, 'four thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(9747, 12686, 'twelve thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(9748, 76435, 'seventy-six thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(9749, 87542, 'eighty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(9750, 66329, 'sixty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9751, 68697, 'sixty-eight thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(9752, 61991, 'sixty-one thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(9753, 30348, 'thirty thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(9754, 45560, 'forty-five thousand five hundred sixty');\nINSERT INTO t3 VALUES(9755, 88732, 'eighty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(9756, 51458, 'fifty-one thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9757, 24599, 'twenty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(9758, 72912, 'seventy-two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(9759, 95571, 'ninety-five thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(9760, 20329, 'twenty thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(9761, 57317, 'fifty-seven thousand three hundred seventeen');\nINSERT INTO t3 VALUES(9762, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(9763, 62989, 'sixty-two thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(9764, 27606, 'twenty-seven thousand six hundred six');\nINSERT INTO t3 VALUES(9765, 57035, 'fifty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(9766, 69996, 'sixty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(9767, 44204, 'forty-four thousand two hundred four');\nINSERT INTO t3 VALUES(9768, 69784, 'sixty-nine thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(9769, 4270, 'four thousand two hundred seventy');\nINSERT INTO t3 VALUES(9770, 82805, 'eighty-two thousand eight hundred five');\nINSERT INTO t3 VALUES(9771, 13843, 'thirteen thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(9772, 65155, 'sixty-five thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(9773, 87772, 'eighty-seven thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9774, 22324, 'twenty-two thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(9775, 28212, 'twenty-eight thousand two hundred twelve');\nINSERT INTO t3 VALUES(9776, 3590, 'three thousand five hundred ninety');\nINSERT INTO t3 VALUES(9777, 76740, 'seventy-six thousand seven hundred forty');\nINSERT INTO t3 VALUES(9778, 26033, 'twenty-six thousand thirty-three');\nINSERT INTO t3 VALUES(9779, 70943, 'seventy thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(9780, 78762, 'seventy-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(9781, 30940, 'thirty thousand nine hundred forty');\nINSERT INTO t3 VALUES(9782, 25141, 'twenty-five thousand one hundred forty-one');\nINSERT INTO t3 VALUES(9783, 70917, 'seventy thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(9784, 75039, 'seventy-five thousand thirty-nine');\nINSERT INTO t3 VALUES(9785, 5772, 'five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(9786, 39799, 'thirty-nine thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(9787, 64216, 'sixty-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(9788, 53001, 'fifty-three thousand one');\nINSERT INTO t3 VALUES(9789, 83948, 'eighty-three thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(9790, 24615, 'twenty-four thousand six hundred fifteen');\nINSERT INTO t3 VALUES(9791, 78344, 'seventy-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(9792, 27521, 'twenty-seven thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(9793, 94991, 'ninety-four thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(9794, 16917, 'sixteen thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(9795, 80476, 'eighty thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(9796, 49562, 'forty-nine thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(9797, 95018, 'ninety-five thousand eighteen');\nINSERT INTO t3 VALUES(9798, 95112, 'ninety-five thousand one hundred twelve');\nINSERT INTO t3 VALUES(9799, 31541, 'thirty-one thousand five hundred forty-one');\nINSERT INTO t3 VALUES(9800, 40264, 'forty thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(9801, 54100, 'fifty-four thousand one hundred');\nINSERT INTO t3 VALUES(9802, 16500, 'sixteen thousand five hundred');\nINSERT INTO t3 VALUES(9803, 95598, 'ninety-five thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(9804, 8549, 'eight thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(9805, 97901, 'ninety-seven thousand nine hundred one');\nINSERT INTO t3 VALUES(9806, 70092, 'seventy thousand ninety-two');\nINSERT INTO t3 VALUES(9807, 65868, 'sixty-five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(9808, 4120, 'four thousand one hundred twenty');\nINSERT INTO t3 VALUES(9809, 45413, 'forty-five thousand four hundred thirteen');\nINSERT INTO t3 VALUES(9810, 58910, 'fifty-eight thousand nine hundred ten');\nINSERT INTO t3 VALUES(9811, 99750, 'ninety-nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(9812, 69120, 'sixty-nine thousand one hundred twenty');\nINSERT INTO t3 VALUES(9813, 32266, 'thirty-two thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(9814, 6083, 'six thousand eighty-three');\nINSERT INTO t3 VALUES(9815, 6993, 'six thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(9816, 35572, 'thirty-five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(9817, 11700, 'eleven thousand seven hundred');\nINSERT INTO t3 VALUES(9818, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(9819, 28761, 'twenty-eight thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(9820, 56504, 'fifty-six thousand five hundred four');\nINSERT INTO t3 VALUES(9821, 65920, 'sixty-five thousand nine hundred twenty');\nINSERT INTO t3 VALUES(9822, 35287, 'thirty-five thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(9823, 13096, 'thirteen thousand ninety-six');\nINSERT INTO t3 VALUES(9824, 44804, 'forty-four thousand eight hundred four');\nINSERT INTO t3 VALUES(9825, 48610, 'forty-eight thousand six hundred ten');\nINSERT INTO t3 VALUES(9826, 80980, 'eighty thousand nine hundred eighty');\nINSERT INTO t3 VALUES(9827, 12163, 'twelve thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(9828, 52121, 'fifty-two thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(9829, 28802, 'twenty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(9830, 98320, 'ninety-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(9831, 38135, 'thirty-eight thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(9832, 75067, 'seventy-five thousand sixty-seven');\nINSERT INTO t3 VALUES(9833, 64249, 'sixty-four thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(9834, 78018, 'seventy-eight thousand eighteen');\nINSERT INTO t3 VALUES(9835, 51877, 'fifty-one thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(9836, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(9837, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t3 VALUES(9838, 12202, 'twelve thousand two hundred two');\nINSERT INTO t3 VALUES(9839, 26133, 'twenty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(9840, 13765, 'thirteen thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(9841, 39184, 'thirty-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(9842, 57565, 'fifty-seven thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(9843, 41440, 'forty-one thousand four hundred forty');\nINSERT INTO t3 VALUES(9844, 3492, 'three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(9845, 44020, 'forty-four thousand twenty');\nINSERT INTO t3 VALUES(9846, 44709, 'forty-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(9847, 59773, 'fifty-nine thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9848, 89604, 'eighty-nine thousand six hundred four');\nINSERT INTO t3 VALUES(9849, 37881, 'thirty-seven thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(9850, 5299, 'five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(9851, 41217, 'forty-one thousand two hundred seventeen');\nINSERT INTO t3 VALUES(9852, 50078, 'fifty thousand seventy-eight');\nINSERT INTO t3 VALUES(9853, 39677, 'thirty-nine thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(9854, 25455, 'twenty-five thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(9855, 74369, 'seventy-four thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(9856, 18940, 'eighteen thousand nine hundred forty');\nINSERT INTO t3 VALUES(9857, 53098, 'fifty-three thousand ninety-eight');\nINSERT INTO t3 VALUES(9858, 88932, 'eighty-eight thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(9859, 45679, 'forty-five thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(9860, 61413, 'sixty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(9861, 40594, 'forty thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(9862, 77281, 'seventy-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(9863, 75998, 'seventy-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(9864, 72702, 'seventy-two thousand seven hundred two');\nINSERT INTO t3 VALUES(9865, 3295, 'three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9866, 92616, 'ninety-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(9867, 65642, 'sixty-five thousand six hundred forty-two');\nINSERT INTO t3 VALUES(9868, 57131, 'fifty-seven thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(9869, 58547, 'fifty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(9870, 88583, 'eighty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(9871, 59711, 'fifty-nine thousand seven hundred eleven');\nINSERT INTO t3 VALUES(9872, 25812, 'twenty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(9873, 75902, 'seventy-five thousand nine hundred two');\nINSERT INTO t3 VALUES(9874, 99458, 'ninety-nine thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9875, 10805, 'ten thousand eight hundred five');\nINSERT INTO t3 VALUES(9876, 49524, 'forty-nine thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(9877, 57630, 'fifty-seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(9878, 46295, 'forty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(9879, 79257, 'seventy-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(9880, 3821, 'three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9881, 94527, 'ninety-four thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(9882, 90174, 'ninety thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(9883, 65336, 'sixty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9884, 9558, 'nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(9885, 95116, 'ninety-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(9886, 5593, 'five thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(9887, 47175, 'forty-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(9888, 82353, 'eighty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(9889, 78374, 'seventy-eight thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(9890, 49833, 'forty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(9891, 31965, 'thirty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(9892, 50490, 'fifty thousand four hundred ninety');\nINSERT INTO t3 VALUES(9893, 18358, 'eighteen thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(9894, 21924, 'twenty-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(9895, 83905, 'eighty-three thousand nine hundred five');\nINSERT INTO t3 VALUES(9896, 15656, 'fifteen thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(9897, 41036, 'forty-one thousand thirty-six');\nINSERT INTO t3 VALUES(9898, 42128, 'forty-two thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(9899, 75773, 'seventy-five thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(9900, 56627, 'fifty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(9901, 71417, 'seventy-one thousand four hundred seventeen');\nINSERT INTO t3 VALUES(9902, 23768, 'twenty-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(9903, 88086, 'eighty-eight thousand eighty-six');\nINSERT INTO t3 VALUES(9904, 46849, 'forty-six thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(9905, 36057, 'thirty-six thousand fifty-seven');\nINSERT INTO t3 VALUES(9906, 83187, 'eighty-three thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(9907, 55292, 'fifty-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(9908, 80397, 'eighty thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(9909, 29647, 'twenty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(9910, 50336, 'fifty thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9911, 74987, 'seventy-four thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(9912, 41905, 'forty-one thousand nine hundred five');\nINSERT INTO t3 VALUES(9913, 9432, 'nine thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(9914, 4855, 'four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(9915, 7991, 'seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(9916, 13472, 'thirteen thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(9917, 29238, 'twenty-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(9918, 6738, 'six thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(9919, 57081, 'fifty-seven thousand eighty-one');\nINSERT INTO t3 VALUES(9920, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(9921, 10879, 'ten thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(9922, 79359, 'seventy-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(9923, 98281, 'ninety-eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(9924, 67749, 'sixty-seven thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(9925, 18918, 'eighteen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(9926, 5137, 'five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(9927, 74561, 'seventy-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(9928, 80642, 'eighty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(9929, 33164, 'thirty-three thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(9930, 65336, 'sixty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(9931, 3439, 'three thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(9932, 52804, 'fifty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(9933, 32821, 'thirty-two thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(9934, 87478, 'eighty-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(9935, 44868, 'forty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(9936, 21660, 'twenty-one thousand six hundred sixty');\nINSERT INTO t3 VALUES(9937, 77320, 'seventy-seven thousand three hundred twenty');\nINSERT INTO t3 VALUES(9938, 8024, 'eight thousand twenty-four');\nINSERT INTO t3 VALUES(9939, 18026, 'eighteen thousand twenty-six');\nINSERT INTO t3 VALUES(9940, 75202, 'seventy-five thousand two hundred two');\nINSERT INTO t3 VALUES(9941, 3285, 'three thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(9942, 37685, 'thirty-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(9943, 31654, 'thirty-one thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(9944, 42470, 'forty-two thousand four hundred seventy');\nINSERT INTO t3 VALUES(9945, 63642, 'sixty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(9946, 46964, 'forty-six thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(9947, 22816, 'twenty-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(9948, 80389, 'eighty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(9949, 59048, 'fifty-nine thousand forty-eight');\nINSERT INTO t3 VALUES(9950, 13320, 'thirteen thousand three hundred twenty');\nINSERT INTO t3 VALUES(9951, 27617, 'twenty-seven thousand six hundred seventeen');\nINSERT INTO t3 VALUES(9952, 27069, 'twenty-seven thousand sixty-nine');\nINSERT INTO t3 VALUES(9953, 13166, 'thirteen thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(9954, 62500, 'sixty-two thousand five hundred');\nINSERT INTO t3 VALUES(9955, 89697, 'eighty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(9956, 94209, 'ninety-four thousand two hundred nine');\nINSERT INTO t3 VALUES(9957, 28971, 'twenty-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(9958, 23306, 'twenty-three thousand three hundred six');\nINSERT INTO t3 VALUES(9959, 85340, 'eighty-five thousand three hundred forty');\nINSERT INTO t3 VALUES(9960, 88517, 'eighty-eight thousand five hundred seventeen');\nINSERT INTO t3 VALUES(9961, 69535, 'sixty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(9962, 48865, 'forty-eight thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(9963, 21321, 'twenty-one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(9964, 88185, 'eighty-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(9965, 54339, 'fifty-four thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(9966, 47482, 'forty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(9967, 51378, 'fifty-one thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(9968, 42984, 'forty-two thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(9969, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(9970, 20893, 'twenty thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(9971, 8304, 'eight thousand three hundred four');\nINSERT INTO t3 VALUES(9972, 82458, 'eighty-two thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(9973, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(9974, 32604, 'thirty-two thousand six hundred four');\nINSERT INTO t3 VALUES(9975, 77734, 'seventy-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(9976, 86587, 'eighty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(9977, 15574, 'fifteen thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(9978, 6699, 'six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(9979, 49970, 'forty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(9980, 32108, 'thirty-two thousand one hundred eight');\nINSERT INTO t3 VALUES(9981, 79519, 'seventy-nine thousand five hundred nineteen');\nINSERT INTO t3 VALUES(9982, 1760, 'one thousand seven hundred sixty');\nINSERT INTO t3 VALUES(9983, 86997, 'eighty-six thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(9984, 1514, 'one thousand five hundred fourteen');\nINSERT INTO t3 VALUES(9985, 82448, 'eighty-two thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(9986, 20963, 'twenty thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(9987, 43593, 'forty-three thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(9988, 52932, 'fifty-two thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(9989, 22809, 'twenty-two thousand eight hundred nine');\nINSERT INTO t3 VALUES(9990, 2423, 'two thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(9991, 14254, 'fourteen thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(9992, 34857, 'thirty-four thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(9993, 38878, 'thirty-eight thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(9994, 78264, 'seventy-eight thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(9995, 30166, 'thirty thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(9996, 92097, 'ninety-two thousand ninety-seven');\nINSERT INTO t3 VALUES(9997, 90726, 'ninety thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(9998, 77552, 'seventy-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(9999, 90712, 'ninety thousand seven hundred twelve');\nINSERT INTO t3 VALUES(10000, 38233, 'thirty-eight thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(10001, 47108, 'forty-seven thousand one hundred eight');\nINSERT INTO t3 VALUES(10002, 12575, 'twelve thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(10003, 41464, 'forty-one thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(10004, 99617, 'ninety-nine thousand six hundred seventeen');\nINSERT INTO t3 VALUES(10005, 47435, 'forty-seven thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(10006, 40042, 'forty thousand forty-two');\nINSERT INTO t3 VALUES(10007, 15138, 'fifteen thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(10008, 96584, 'ninety-six thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(10009, 61595, 'sixty-one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(10010, 96037, 'ninety-six thousand thirty-seven');\nINSERT INTO t3 VALUES(10011, 56384, 'fifty-six thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(10012, 86369, 'eighty-six thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(10013, 87206, 'eighty-seven thousand two hundred six');\nINSERT INTO t3 VALUES(10014, 56057, 'fifty-six thousand fifty-seven');\nINSERT INTO t3 VALUES(10015, 39328, 'thirty-nine thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(10016, 3104, 'three thousand one hundred four');\nINSERT INTO t3 VALUES(10017, 56656, 'fifty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(10018, 99538, 'ninety-nine thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(10019, 88851, 'eighty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(10020, 42842, 'forty-two thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(10021, 9208, 'nine thousand two hundred eight');\nINSERT INTO t3 VALUES(10022, 51921, 'fifty-one thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(10023, 74366, 'seventy-four thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(10024, 11710, 'eleven thousand seven hundred ten');\nINSERT INTO t3 VALUES(10025, 59456, 'fifty-nine thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(10026, 28553, 'twenty-eight thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(10027, 35135, 'thirty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(10028, 9698, 'nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(10029, 67917, 'sixty-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(10030, 55651, 'fifty-five thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(10031, 64240, 'sixty-four thousand two hundred forty');\nINSERT INTO t3 VALUES(10032, 4942, 'four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(10033, 95924, 'ninety-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(10034, 93532, 'ninety-three thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(10035, 42543, 'forty-two thousand five hundred forty-three');\nINSERT INTO t3 VALUES(10036, 4791, 'four thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(10037, 2016, 'two thousand sixteen');\nINSERT INTO t3 VALUES(10038, 74850, 'seventy-four thousand eight hundred fifty');\nINSERT INTO t3 VALUES(10039, 84055, 'eighty-four thousand fifty-five');\nINSERT INTO t3 VALUES(10040, 58297, 'fifty-eight thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(10041, 11878, 'eleven thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(10042, 15505, 'fifteen thousand five hundred five');\nINSERT INTO t3 VALUES(10043, 26858, 'twenty-six thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(10044, 93023, 'ninety-three thousand twenty-three');\nINSERT INTO t3 VALUES(10045, 49549, 'forty-nine thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(10046, 41047, 'forty-one thousand forty-seven');\nINSERT INTO t3 VALUES(10047, 69762, 'sixty-nine thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(10048, 26771, 'twenty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(10049, 24496, 'twenty-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(10050, 10114, 'ten thousand one hundred fourteen');\nINSERT INTO t3 VALUES(10051, 69017, 'sixty-nine thousand seventeen');\nINSERT INTO t3 VALUES(10052, 68461, 'sixty-eight thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(10053, 85812, 'eighty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(10054, 76224, 'seventy-six thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(10055, 26925, 'twenty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(10056, 11490, 'eleven thousand four hundred ninety');\nINSERT INTO t3 VALUES(10057, 29995, 'twenty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(10058, 62768, 'sixty-two thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(10059, 36851, 'thirty-six thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(10060, 56606, 'fifty-six thousand six hundred six');\nINSERT INTO t3 VALUES(10061, 27400, 'twenty-seven thousand four hundred');\nINSERT INTO t3 VALUES(10062, 7682, 'seven thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(10063, 8759, 'eight thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(10064, 40218, 'forty thousand two hundred eighteen');\nINSERT INTO t3 VALUES(10065, 59475, 'fifty-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(10066, 62438, 'sixty-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(10067, 73426, 'seventy-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(10068, 14902, 'fourteen thousand nine hundred two');\nINSERT INTO t3 VALUES(10069, 96269, 'ninety-six thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(10070, 95485, 'ninety-five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(10071, 48764, 'forty-eight thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(10072, 8358, 'eight thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(10073, 41444, 'forty-one thousand four hundred forty-four');\nINSERT INTO t3 VALUES(10074, 2920, 'two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(10075, 77790, 'seventy-seven thousand seven hundred ninety');\nINSERT INTO t3 VALUES(10076, 33153, 'thirty-three thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(10077, 75841, 'seventy-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(10078, 14008, 'fourteen thousand eight');\nINSERT INTO t3 VALUES(10079, 69256, 'sixty-nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(10080, 66827, 'sixty-six thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(10081, 37227, 'thirty-seven thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(10082, 19492, 'nineteen thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(10083, 79671, 'seventy-nine thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(10084, 79054, 'seventy-nine thousand fifty-four');\nINSERT INTO t3 VALUES(10085, 98994, 'ninety-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(10086, 96096, 'ninety-six thousand ninety-six');\nINSERT INTO t3 VALUES(10087, 80967, 'eighty thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(10088, 48633, 'forty-eight thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(10089, 38057, 'thirty-eight thousand fifty-seven');\nINSERT INTO t3 VALUES(10090, 63749, 'sixty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(10091, 55860, 'fifty-five thousand eight hundred sixty');\nINSERT INTO t3 VALUES(10092, 82701, 'eighty-two thousand seven hundred one');\nINSERT INTO t3 VALUES(10093, 50344, 'fifty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(10094, 47347, 'forty-seven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(10095, 143, 'one hundred forty-three');\nINSERT INTO t3 VALUES(10096, 59282, 'fifty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(10097, 46944, 'forty-six thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(10098, 20309, 'twenty thousand three hundred nine');\nINSERT INTO t3 VALUES(10099, 76981, 'seventy-six thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(10100, 89378, 'eighty-nine thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(10101, 11902, 'eleven thousand nine hundred two');\nINSERT INTO t3 VALUES(10102, 21903, 'twenty-one thousand nine hundred three');\nINSERT INTO t3 VALUES(10103, 10377, 'ten thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(10104, 88499, 'eighty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(10105, 21575, 'twenty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(10106, 93190, 'ninety-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(10107, 61166, 'sixty-one thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(10108, 99043, 'ninety-nine thousand forty-three');\nINSERT INTO t3 VALUES(10109, 41545, 'forty-one thousand five hundred forty-five');\nINSERT INTO t3 VALUES(10110, 17181, 'seventeen thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(10111, 25942, 'twenty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(10112, 69505, 'sixty-nine thousand five hundred five');\nINSERT INTO t3 VALUES(10113, 74574, 'seventy-four thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(10114, 11019, 'eleven thousand nineteen');\nINSERT INTO t3 VALUES(10115, 39297, 'thirty-nine thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(10116, 96084, 'ninety-six thousand eighty-four');\nINSERT INTO t3 VALUES(10117, 95688, 'ninety-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(10118, 38350, 'thirty-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(10119, 8942, 'eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(10120, 21936, 'twenty-one thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(10121, 2361, 'two thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(10122, 70758, 'seventy thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(10123, 79416, 'seventy-nine thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10124, 50921, 'fifty thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(10125, 16709, 'sixteen thousand seven hundred nine');\nINSERT INTO t3 VALUES(10126, 86402, 'eighty-six thousand four hundred two');\nINSERT INTO t3 VALUES(10127, 98444, 'ninety-eight thousand four hundred forty-four');\nINSERT INTO t3 VALUES(10128, 81170, 'eighty-one thousand one hundred seventy');\nINSERT INTO t3 VALUES(10129, 67494, 'sixty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(10130, 68126, 'sixty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(10131, 29829, 'twenty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(10132, 7464, 'seven thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(10133, 63402, 'sixty-three thousand four hundred two');\nINSERT INTO t3 VALUES(10134, 32300, 'thirty-two thousand three hundred');\nINSERT INTO t3 VALUES(10135, 79483, 'seventy-nine thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(10136, 48425, 'forty-eight thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(10137, 17150, 'seventeen thousand one hundred fifty');\nINSERT INTO t3 VALUES(10138, 19168, 'nineteen thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(10139, 67698, 'sixty-seven thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(10140, 75516, 'seventy-five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(10141, 57137, 'fifty-seven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(10142, 80464, 'eighty thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(10143, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(10144, 42731, 'forty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(10145, 56972, 'fifty-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(10146, 70343, 'seventy thousand three hundred forty-three');\nINSERT INTO t3 VALUES(10147, 9097, 'nine thousand ninety-seven');\nINSERT INTO t3 VALUES(10148, 32219, 'thirty-two thousand two hundred nineteen');\nINSERT INTO t3 VALUES(10149, 55485, 'fifty-five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(10150, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(10151, 77631, 'seventy-seven thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(10152, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t3 VALUES(10153, 69533, 'sixty-nine thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(10154, 41671, 'forty-one thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(10155, 1864, 'one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(10156, 90970, 'ninety thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10157, 35812, 'thirty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(10158, 8564, 'eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(10159, 39889, 'thirty-nine thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(10160, 19612, 'nineteen thousand six hundred twelve');\nINSERT INTO t3 VALUES(10161, 52799, 'fifty-two thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10162, 98925, 'ninety-eight thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(10163, 8366, 'eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(10164, 85195, 'eighty-five thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(10165, 51871, 'fifty-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(10166, 65532, 'sixty-five thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(10167, 5273, 'five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(10168, 88582, 'eighty-eight thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(10169, 96024, 'ninety-six thousand twenty-four');\nINSERT INTO t3 VALUES(10170, 57607, 'fifty-seven thousand six hundred seven');\nINSERT INTO t3 VALUES(10171, 98123, 'ninety-eight thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(10172, 97314, 'ninety-seven thousand three hundred fourteen');\nINSERT INTO t3 VALUES(10173, 43727, 'forty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(10174, 94052, 'ninety-four thousand fifty-two');\nINSERT INTO t3 VALUES(10175, 85173, 'eighty-five thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(10176, 97991, 'ninety-seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(10177, 92052, 'ninety-two thousand fifty-two');\nINSERT INTO t3 VALUES(10178, 75865, 'seventy-five thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(10179, 72141, 'seventy-two thousand one hundred forty-one');\nINSERT INTO t3 VALUES(10180, 55382, 'fifty-five thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(10181, 95116, 'ninety-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(10182, 88060, 'eighty-eight thousand sixty');\nINSERT INTO t3 VALUES(10183, 487, 'four hundred eighty-seven');\nINSERT INTO t3 VALUES(10184, 4659, 'four thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(10185, 80149, 'eighty thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(10186, 16930, 'sixteen thousand nine hundred thirty');\nINSERT INTO t3 VALUES(10187, 10589, 'ten thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(10188, 84137, 'eighty-four thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(10189, 80164, 'eighty thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(10190, 10661, 'ten thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(10191, 76568, 'seventy-six thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10192, 92075, 'ninety-two thousand seventy-five');\nINSERT INTO t3 VALUES(10193, 26674, 'twenty-six thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(10194, 68303, 'sixty-eight thousand three hundred three');\nINSERT INTO t3 VALUES(10195, 75931, 'seventy-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(10196, 8152, 'eight thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(10197, 33799, 'thirty-three thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10198, 21738, 'twenty-one thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(10199, 5672, 'five thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(10200, 99898, 'ninety-nine thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(10201, 16033, 'sixteen thousand thirty-three');\nINSERT INTO t3 VALUES(10202, 3964, 'three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(10203, 24986, 'twenty-four thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(10204, 39973, 'thirty-nine thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(10205, 70562, 'seventy thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(10206, 66954, 'sixty-six thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(10207, 99968, 'ninety-nine thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(10208, 91741, 'ninety-one thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(10209, 66459, 'sixty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(10210, 90387, 'ninety thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(10211, 12882, 'twelve thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(10212, 94967, 'ninety-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(10213, 29799, 'twenty-nine thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10214, 918, 'nine hundred eighteen');\nINSERT INTO t3 VALUES(10215, 86300, 'eighty-six thousand three hundred');\nINSERT INTO t3 VALUES(10216, 29489, 'twenty-nine thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(10217, 26758, 'twenty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(10218, 83512, 'eighty-three thousand five hundred twelve');\nINSERT INTO t3 VALUES(10219, 59831, 'fifty-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(10220, 33960, 'thirty-three thousand nine hundred sixty');\nINSERT INTO t3 VALUES(10221, 10857, 'ten thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(10222, 79734, 'seventy-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(10223, 91431, 'ninety-one thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(10224, 85389, 'eighty-five thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(10225, 9711, 'nine thousand seven hundred eleven');\nINSERT INTO t3 VALUES(10226, 817, 'eight hundred seventeen');\nINSERT INTO t3 VALUES(10227, 5281, 'five thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(10228, 18861, 'eighteen thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(10229, 42662, 'forty-two thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(10230, 52754, 'fifty-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(10231, 99160, 'ninety-nine thousand one hundred sixty');\nINSERT INTO t3 VALUES(10232, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(10233, 19758, 'nineteen thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(10234, 1128, 'one thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(10235, 13216, 'thirteen thousand two hundred sixteen');\nINSERT INTO t3 VALUES(10236, 40414, 'forty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(10237, 68008, 'sixty-eight thousand eight');\nINSERT INTO t3 VALUES(10238, 55273, 'fifty-five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(10239, 57731, 'fifty-seven thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(10240, 7753, 'seven thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(10241, 84248, 'eighty-four thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(10242, 73512, 'seventy-three thousand five hundred twelve');\nINSERT INTO t3 VALUES(10243, 5151, 'five thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(10244, 22687, 'twenty-two thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(10245, 87087, 'eighty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(10246, 96113, 'ninety-six thousand one hundred thirteen');\nINSERT INTO t3 VALUES(10247, 38032, 'thirty-eight thousand thirty-two');\nINSERT INTO t3 VALUES(10248, 37952, 'thirty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(10249, 29910, 'twenty-nine thousand nine hundred ten');\nINSERT INTO t3 VALUES(10250, 73037, 'seventy-three thousand thirty-seven');\nINSERT INTO t3 VALUES(10251, 37533, 'thirty-seven thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(10252, 25552, 'twenty-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(10253, 95890, 'ninety-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(10254, 73384, 'seventy-three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(10255, 28153, 'twenty-eight thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(10256, 73075, 'seventy-three thousand seventy-five');\nINSERT INTO t3 VALUES(10257, 37272, 'thirty-seven thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(10258, 76836, 'seventy-six thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(10259, 47128, 'forty-seven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(10260, 44580, 'forty-four thousand five hundred eighty');\nINSERT INTO t3 VALUES(10261, 25791, 'twenty-five thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(10262, 75732, 'seventy-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(10263, 34477, 'thirty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(10264, 17554, 'seventeen thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10265, 97767, 'ninety-seven thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(10266, 26958, 'twenty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(10267, 7899, 'seven thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(10268, 61767, 'sixty-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(10269, 91063, 'ninety-one thousand sixty-three');\nINSERT INTO t3 VALUES(10270, 33260, 'thirty-three thousand two hundred sixty');\nINSERT INTO t3 VALUES(10271, 6346, 'six thousand three hundred forty-six');\nINSERT INTO t3 VALUES(10272, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(10273, 30455, 'thirty thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(10274, 68343, 'sixty-eight thousand three hundred forty-three');\nINSERT INTO t3 VALUES(10275, 42090, 'forty-two thousand ninety');\nINSERT INTO t3 VALUES(10276, 64780, 'sixty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(10277, 58562, 'fifty-eight thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(10278, 52566, 'fifty-two thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10279, 31319, 'thirty-one thousand three hundred nineteen');\nINSERT INTO t3 VALUES(10280, 6021, 'six thousand twenty-one');\nINSERT INTO t3 VALUES(10281, 20805, 'twenty thousand eight hundred five');\nINSERT INTO t3 VALUES(10282, 8022, 'eight thousand twenty-two');\nINSERT INTO t3 VALUES(10283, 50421, 'fifty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10284, 7331, 'seven thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10285, 1475, 'one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(10286, 47424, 'forty-seven thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(10287, 43754, 'forty-three thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(10288, 67350, 'sixty-seven thousand three hundred fifty');\nINSERT INTO t3 VALUES(10289, 12017, 'twelve thousand seventeen');\nINSERT INTO t3 VALUES(10290, 22773, 'twenty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(10291, 46287, 'forty-six thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(10292, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t3 VALUES(10293, 52897, 'fifty-two thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(10294, 39020, 'thirty-nine thousand twenty');\nINSERT INTO t3 VALUES(10295, 27674, 'twenty-seven thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(10296, 21666, 'twenty-one thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(10297, 37082, 'thirty-seven thousand eighty-two');\nINSERT INTO t3 VALUES(10298, 17733, 'seventeen thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10299, 64767, 'sixty-four thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(10300, 5043, 'five thousand forty-three');\nINSERT INTO t3 VALUES(10301, 91348, 'ninety-one thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(10302, 17016, 'seventeen thousand sixteen');\nINSERT INTO t3 VALUES(10303, 5728, 'five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(10304, 22891, 'twenty-two thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(10305, 4838, 'four thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(10306, 66294, 'sixty-six thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(10307, 92489, 'ninety-two thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(10308, 51575, 'fifty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(10309, 37191, 'thirty-seven thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(10310, 87785, 'eighty-seven thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(10311, 56922, 'fifty-six thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(10312, 486, 'four hundred eighty-six');\nINSERT INTO t3 VALUES(10313, 48655, 'forty-eight thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(10314, 54416, 'fifty-four thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10315, 12962, 'twelve thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(10316, 6234, 'six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(10317, 39580, 'thirty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(10318, 78548, 'seventy-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(10319, 56983, 'fifty-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(10320, 70958, 'seventy thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(10321, 98896, 'ninety-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(10322, 68666, 'sixty-eight thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(10323, 67669, 'sixty-seven thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(10324, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(10325, 17265, 'seventeen thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(10326, 77734, 'seventy-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(10327, 82137, 'eighty-two thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(10328, 21674, 'twenty-one thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(10329, 73095, 'seventy-three thousand ninety-five');\nINSERT INTO t3 VALUES(10330, 26810, 'twenty-six thousand eight hundred ten');\nINSERT INTO t3 VALUES(10331, 40933, 'forty thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(10332, 28879, 'twenty-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(10333, 2228, 'two thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(10334, 12687, 'twelve thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(10335, 21435, 'twenty-one thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(10336, 11286, 'eleven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(10337, 41422, 'forty-one thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(10338, 65350, 'sixty-five thousand three hundred fifty');\nINSERT INTO t3 VALUES(10339, 20648, 'twenty thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(10340, 83924, 'eighty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(10341, 1398, 'one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(10342, 19390, 'nineteen thousand three hundred ninety');\nINSERT INTO t3 VALUES(10343, 10477, 'ten thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(10344, 2545, 'two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(10345, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10346, 25421, 'twenty-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10347, 9548, 'nine thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(10348, 13150, 'thirteen thousand one hundred fifty');\nINSERT INTO t3 VALUES(10349, 68366, 'sixty-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(10350, 40111, 'forty thousand one hundred eleven');\nINSERT INTO t3 VALUES(10351, 2468, 'two thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(10352, 75127, 'seventy-five thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(10353, 72225, 'seventy-two thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(10354, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(10355, 90483, 'ninety thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(10356, 36430, 'thirty-six thousand four hundred thirty');\nINSERT INTO t3 VALUES(10357, 48789, 'forty-eight thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(10358, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(10359, 42686, 'forty-two thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(10360, 57024, 'fifty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(10361, 99842, 'ninety-nine thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(10362, 48014, 'forty-eight thousand fourteen');\nINSERT INTO t3 VALUES(10363, 44062, 'forty-four thousand sixty-two');\nINSERT INTO t3 VALUES(10364, 33789, 'thirty-three thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(10365, 40954, 'forty thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(10366, 67608, 'sixty-seven thousand six hundred eight');\nINSERT INTO t3 VALUES(10367, 70049, 'seventy thousand forty-nine');\nINSERT INTO t3 VALUES(10368, 27817, 'twenty-seven thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(10369, 1078, 'one thousand seventy-eight');\nINSERT INTO t3 VALUES(10370, 8400, 'eight thousand four hundred');\nINSERT INTO t3 VALUES(10371, 76108, 'seventy-six thousand one hundred eight');\nINSERT INTO t3 VALUES(10372, 72883, 'seventy-two thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(10373, 38984, 'thirty-eight thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(10374, 72397, 'seventy-two thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(10375, 23620, 'twenty-three thousand six hundred twenty');\nINSERT INTO t3 VALUES(10376, 22452, 'twenty-two thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(10377, 77334, 'seventy-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(10378, 61498, 'sixty-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(10379, 95522, 'ninety-five thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(10380, 95614, 'ninety-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(10381, 16085, 'sixteen thousand eighty-five');\nINSERT INTO t3 VALUES(10382, 93566, 'ninety-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10383, 75815, 'seventy-five thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(10384, 34576, 'thirty-four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(10385, 36145, 'thirty-six thousand one hundred forty-five');\nINSERT INTO t3 VALUES(10386, 18074, 'eighteen thousand seventy-four');\nINSERT INTO t3 VALUES(10387, 84877, 'eighty-four thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(10388, 25586, 'twenty-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(10389, 78809, 'seventy-eight thousand eight hundred nine');\nINSERT INTO t3 VALUES(10390, 8662, 'eight thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(10391, 29182, 'twenty-nine thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(10392, 88864, 'eighty-eight thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(10393, 14679, 'fourteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(10394, 91224, 'ninety-one thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(10395, 18697, 'eighteen thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(10396, 1975, 'one thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(10397, 35566, 'thirty-five thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10398, 90649, 'ninety thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(10399, 41587, 'forty-one thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(10400, 92369, 'ninety-two thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(10401, 59313, 'fifty-nine thousand three hundred thirteen');\nINSERT INTO t3 VALUES(10402, 92753, 'ninety-two thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(10403, 67006, 'sixty-seven thousand six');\nINSERT INTO t3 VALUES(10404, 90298, 'ninety thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(10405, 23566, 'twenty-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(10406, 48896, 'forty-eight thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(10407, 3496, 'three thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(10408, 15665, 'fifteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(10409, 77591, 'seventy-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(10410, 41215, 'forty-one thousand two hundred fifteen');\nINSERT INTO t3 VALUES(10411, 75719, 'seventy-five thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(10412, 56052, 'fifty-six thousand fifty-two');\nINSERT INTO t3 VALUES(10413, 63159, 'sixty-three thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10414, 37775, 'thirty-seven thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(10415, 80290, 'eighty thousand two hundred ninety');\nINSERT INTO t3 VALUES(10416, 71632, 'seventy-one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(10417, 55940, 'fifty-five thousand nine hundred forty');\nINSERT INTO t3 VALUES(10418, 17948, 'seventeen thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(10419, 61118, 'sixty-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(10420, 73096, 'seventy-three thousand ninety-six');\nINSERT INTO t3 VALUES(10421, 84122, 'eighty-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(10422, 30211, 'thirty thousand two hundred eleven');\nINSERT INTO t3 VALUES(10423, 12525, 'twelve thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(10424, 31874, 'thirty-one thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(10425, 40188, 'forty thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(10426, 20263, 'twenty thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(10427, 87825, 'eighty-seven thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(10428, 14178, 'fourteen thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(10429, 7006, 'seven thousand six');\nINSERT INTO t3 VALUES(10430, 83573, 'eighty-three thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(10431, 98305, 'ninety-eight thousand three hundred five');\nINSERT INTO t3 VALUES(10432, 47815, 'forty-seven thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(10433, 88362, 'eighty-eight thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(10434, 65333, 'sixty-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(10435, 74064, 'seventy-four thousand sixty-four');\nINSERT INTO t3 VALUES(10436, 48996, 'forty-eight thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(10437, 10622, 'ten thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(10438, 37478, 'thirty-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(10439, 73908, 'seventy-three thousand nine hundred eight');\nINSERT INTO t3 VALUES(10440, 51870, 'fifty-one thousand eight hundred seventy');\nINSERT INTO t3 VALUES(10441, 53408, 'fifty-three thousand four hundred eight');\nINSERT INTO t3 VALUES(10442, 71735, 'seventy-one thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(10443, 10872, 'ten thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(10444, 21056, 'twenty-one thousand fifty-six');\nINSERT INTO t3 VALUES(10445, 45370, 'forty-five thousand three hundred seventy');\nINSERT INTO t3 VALUES(10446, 33759, 'thirty-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(10447, 79263, 'seventy-nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(10448, 28087, 'twenty-eight thousand eighty-seven');\nINSERT INTO t3 VALUES(10449, 70700, 'seventy thousand seven hundred');\nINSERT INTO t3 VALUES(10450, 80511, 'eighty thousand five hundred eleven');\nINSERT INTO t3 VALUES(10451, 85319, 'eighty-five thousand three hundred nineteen');\nINSERT INTO t3 VALUES(10452, 92756, 'ninety-two thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(10453, 85247, 'eighty-five thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(10454, 16858, 'sixteen thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(10455, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10456, 77277, 'seventy-seven thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(10457, 6750, 'six thousand seven hundred fifty');\nINSERT INTO t3 VALUES(10458, 48205, 'forty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(10459, 96825, 'ninety-six thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(10460, 32918, 'thirty-two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(10461, 58060, 'fifty-eight thousand sixty');\nINSERT INTO t3 VALUES(10462, 25279, 'twenty-five thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10463, 88729, 'eighty-eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(10464, 70945, 'seventy thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(10465, 6980, 'six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(10466, 23519, 'twenty-three thousand five hundred nineteen');\nINSERT INTO t3 VALUES(10467, 65339, 'sixty-five thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(10468, 81502, 'eighty-one thousand five hundred two');\nINSERT INTO t3 VALUES(10469, 3684, 'three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(10470, 57249, 'fifty-seven thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(10471, 27618, 'twenty-seven thousand six hundred eighteen');\nINSERT INTO t3 VALUES(10472, 43156, 'forty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(10473, 42109, 'forty-two thousand one hundred nine');\nINSERT INTO t3 VALUES(10474, 96017, 'ninety-six thousand seventeen');\nINSERT INTO t3 VALUES(10475, 22000, 'twenty-two thousand');\nINSERT INTO t3 VALUES(10476, 26633, 'twenty-six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(10477, 47049, 'forty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(10478, 78305, 'seventy-eight thousand three hundred five');\nINSERT INTO t3 VALUES(10479, 33063, 'thirty-three thousand sixty-three');\nINSERT INTO t3 VALUES(10480, 79879, 'seventy-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(10481, 20387, 'twenty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(10482, 21999, 'twenty-one thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(10483, 74860, 'seventy-four thousand eight hundred sixty');\nINSERT INTO t3 VALUES(10484, 45815, 'forty-five thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(10485, 93116, 'ninety-three thousand one hundred sixteen');\nINSERT INTO t3 VALUES(10486, 8024, 'eight thousand twenty-four');\nINSERT INTO t3 VALUES(10487, 18762, 'eighteen thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(10488, 57358, 'fifty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(10489, 82633, 'eighty-two thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(10490, 13679, 'thirteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(10491, 91321, 'ninety-one thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(10492, 89799, 'eighty-nine thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10493, 39322, 'thirty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(10494, 2976, 'two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(10495, 62766, 'sixty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(10496, 18157, 'eighteen thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(10497, 76805, 'seventy-six thousand eight hundred five');\nINSERT INTO t3 VALUES(10498, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t3 VALUES(10499, 25320, 'twenty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(10500, 62990, 'sixty-two thousand nine hundred ninety');\nINSERT INTO t3 VALUES(10501, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(10502, 46396, 'forty-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(10503, 10416, 'ten thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10504, 26590, 'twenty-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(10505, 10628, 'ten thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(10506, 26998, 'twenty-six thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(10507, 84962, 'eighty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(10508, 71326, 'seventy-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(10509, 23527, 'twenty-three thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(10510, 34961, 'thirty-four thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(10511, 22176, 'twenty-two thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(10512, 28897, 'twenty-eight thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(10513, 92324, 'ninety-two thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(10514, 34571, 'thirty-four thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(10515, 39630, 'thirty-nine thousand six hundred thirty');\nINSERT INTO t3 VALUES(10516, 32629, 'thirty-two thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(10517, 22073, 'twenty-two thousand seventy-three');\nINSERT INTO t3 VALUES(10518, 61773, 'sixty-one thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(10519, 92914, 'ninety-two thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(10520, 36986, 'thirty-six thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(10521, 8014, 'eight thousand fourteen');\nINSERT INTO t3 VALUES(10522, 620, 'six hundred twenty');\nINSERT INTO t3 VALUES(10523, 62244, 'sixty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(10524, 26554, 'twenty-six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10525, 18554, 'eighteen thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10526, 57124, 'fifty-seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(10527, 60698, 'sixty thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(10528, 94766, 'ninety-four thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(10529, 77812, 'seventy-seven thousand eight hundred twelve');\nINSERT INTO t3 VALUES(10530, 93719, 'ninety-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(10531, 47365, 'forty-seven thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(10532, 87389, 'eighty-seven thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(10533, 64982, 'sixty-four thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(10534, 68138, 'sixty-eight thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(10535, 19826, 'nineteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(10536, 48277, 'forty-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(10537, 60402, 'sixty thousand four hundred two');\nINSERT INTO t3 VALUES(10538, 95435, 'ninety-five thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(10539, 85718, 'eighty-five thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(10540, 16919, 'sixteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(10541, 79484, 'seventy-nine thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(10542, 90653, 'ninety thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(10543, 55175, 'fifty-five thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(10544, 56264, 'fifty-six thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(10545, 15385, 'fifteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(10546, 96283, 'ninety-six thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(10547, 14326, 'fourteen thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(10548, 21968, 'twenty-one thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(10549, 76800, 'seventy-six thousand eight hundred');\nINSERT INTO t3 VALUES(10550, 63662, 'sixty-three thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(10551, 381, 'three hundred eighty-one');\nINSERT INTO t3 VALUES(10552, 83093, 'eighty-three thousand ninety-three');\nINSERT INTO t3 VALUES(10553, 33168, 'thirty-three thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(10554, 47298, 'forty-seven thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(10555, 77502, 'seventy-seven thousand five hundred two');\nINSERT INTO t3 VALUES(10556, 93598, 'ninety-three thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(10557, 93288, 'ninety-three thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(10558, 29031, 'twenty-nine thousand thirty-one');\nINSERT INTO t3 VALUES(10559, 72558, 'seventy-two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(10560, 64221, 'sixty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(10561, 61336, 'sixty-one thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(10562, 47425, 'forty-seven thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(10563, 66118, 'sixty-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(10564, 94202, 'ninety-four thousand two hundred two');\nINSERT INTO t3 VALUES(10565, 64386, 'sixty-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(10566, 23446, 'twenty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(10567, 70765, 'seventy thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(10568, 99956, 'ninety-nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(10569, 84965, 'eighty-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(10570, 34288, 'thirty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(10571, 65799, 'sixty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(10572, 53377, 'fifty-three thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(10573, 75598, 'seventy-five thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(10574, 69838, 'sixty-nine thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(10575, 7407, 'seven thousand four hundred seven');\nINSERT INTO t3 VALUES(10576, 89051, 'eighty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(10577, 79424, 'seventy-nine thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(10578, 23182, 'twenty-three thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(10579, 2439, 'two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(10580, 82595, 'eighty-two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(10581, 84904, 'eighty-four thousand nine hundred four');\nINSERT INTO t3 VALUES(10582, 17317, 'seventeen thousand three hundred seventeen');\nINSERT INTO t3 VALUES(10583, 7454, 'seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(10584, 26856, 'twenty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(10585, 39450, 'thirty-nine thousand four hundred fifty');\nINSERT INTO t3 VALUES(10586, 46229, 'forty-six thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(10587, 18416, 'eighteen thousand four hundred sixteen');\nINSERT INTO t3 VALUES(10588, 27678, 'twenty-seven thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10589, 62272, 'sixty-two thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(10590, 28858, 'twenty-eight thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(10591, 29580, 'twenty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(10592, 223, 'two hundred twenty-three');\nINSERT INTO t3 VALUES(10593, 32756, 'thirty-two thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(10594, 88077, 'eighty-eight thousand seventy-seven');\nINSERT INTO t3 VALUES(10595, 1615, 'one thousand six hundred fifteen');\nINSERT INTO t3 VALUES(10596, 9083, 'nine thousand eighty-three');\nINSERT INTO t3 VALUES(10597, 76769, 'seventy-six thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(10598, 2127, 'two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(10599, 7844, 'seven thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(10600, 25991, 'twenty-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(10601, 92078, 'ninety-two thousand seventy-eight');\nINSERT INTO t3 VALUES(10602, 77023, 'seventy-seven thousand twenty-three');\nINSERT INTO t3 VALUES(10603, 65345, 'sixty-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(10604, 29761, 'twenty-nine thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(10605, 22301, 'twenty-two thousand three hundred one');\nINSERT INTO t3 VALUES(10606, 42009, 'forty-two thousand nine');\nINSERT INTO t3 VALUES(10607, 8044, 'eight thousand forty-four');\nINSERT INTO t3 VALUES(10608, 92535, 'ninety-two thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(10609, 18115, 'eighteen thousand one hundred fifteen');\nINSERT INTO t3 VALUES(10610, 69586, 'sixty-nine thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(10611, 21970, 'twenty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10612, 40028, 'forty thousand twenty-eight');\nINSERT INTO t3 VALUES(10613, 95062, 'ninety-five thousand sixty-two');\nINSERT INTO t3 VALUES(10614, 18665, 'eighteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(10615, 41276, 'forty-one thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(10616, 58155, 'fifty-eight thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(10617, 26099, 'twenty-six thousand ninety-nine');\nINSERT INTO t3 VALUES(10618, 4490, 'four thousand four hundred ninety');\nINSERT INTO t3 VALUES(10619, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(10620, 62972, 'sixty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(10621, 28466, 'twenty-eight thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(10622, 40135, 'forty thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(10623, 44157, 'forty-four thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(10624, 34688, 'thirty-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(10625, 7993, 'seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(10626, 56261, 'fifty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(10627, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t3 VALUES(10628, 73458, 'seventy-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(10629, 73568, 'seventy-three thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10630, 41156, 'forty-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(10631, 88168, 'eighty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(10632, 85962, 'eighty-five thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(10633, 71189, 'seventy-one thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(10634, 90972, 'ninety thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(10635, 7654, 'seven thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(10636, 18384, 'eighteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(10637, 66261, 'sixty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(10638, 38844, 'thirty-eight thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(10639, 28843, 'twenty-eight thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(10640, 66852, 'sixty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(10641, 2329, 'two thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(10642, 40783, 'forty thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(10643, 27332, 'twenty-seven thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(10644, 17419, 'seventeen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(10645, 79638, 'seventy-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(10646, 59611, 'fifty-nine thousand six hundred eleven');\nINSERT INTO t3 VALUES(10647, 16088, 'sixteen thousand eighty-eight');\nINSERT INTO t3 VALUES(10648, 17910, 'seventeen thousand nine hundred ten');\nINSERT INTO t3 VALUES(10649, 33871, 'thirty-three thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(10650, 32269, 'thirty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(10651, 86992, 'eighty-six thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(10652, 84530, 'eighty-four thousand five hundred thirty');\nINSERT INTO t3 VALUES(10653, 35047, 'thirty-five thousand forty-seven');\nINSERT INTO t3 VALUES(10654, 85542, 'eighty-five thousand five hundred forty-two');\nINSERT INTO t3 VALUES(10655, 3445, 'three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(10656, 68836, 'sixty-eight thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(10657, 11956, 'eleven thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(10658, 95292, 'ninety-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(10659, 91386, 'ninety-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(10660, 71837, 'seventy-one thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(10661, 66915, 'sixty-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(10662, 70161, 'seventy thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(10663, 99641, 'ninety-nine thousand six hundred forty-one');\nINSERT INTO t3 VALUES(10664, 96026, 'ninety-six thousand twenty-six');\nINSERT INTO t3 VALUES(10665, 88334, 'eighty-eight thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(10666, 47846, 'forty-seven thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(10667, 17913, 'seventeen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(10668, 46243, 'forty-six thousand two hundred forty-three');\nINSERT INTO t3 VALUES(10669, 30678, 'thirty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10670, 69251, 'sixty-nine thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(10671, 25890, 'twenty-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(10672, 57601, 'fifty-seven thousand six hundred one');\nINSERT INTO t3 VALUES(10673, 29708, 'twenty-nine thousand seven hundred eight');\nINSERT INTO t3 VALUES(10674, 89733, 'eighty-nine thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10675, 69295, 'sixty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(10676, 48895, 'forty-eight thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(10677, 61664, 'sixty-one thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(10678, 55014, 'fifty-five thousand fourteen');\nINSERT INTO t3 VALUES(10679, 99738, 'ninety-nine thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(10680, 29179, 'twenty-nine thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(10681, 9607, 'nine thousand six hundred seven');\nINSERT INTO t3 VALUES(10682, 80451, 'eighty thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(10683, 44822, 'forty-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(10684, 84018, 'eighty-four thousand eighteen');\nINSERT INTO t3 VALUES(10685, 16729, 'sixteen thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(10686, 91979, 'ninety-one thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(10687, 60625, 'sixty thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(10688, 99882, 'ninety-nine thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(10689, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(10690, 84733, 'eighty-four thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10691, 45772, 'forty-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(10692, 8, 'eight');\nINSERT INTO t3 VALUES(10693, 98736, 'ninety-eight thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(10694, 93590, 'ninety-three thousand five hundred ninety');\nINSERT INTO t3 VALUES(10695, 49561, 'forty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(10696, 88854, 'eighty-eight thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(10697, 22625, 'twenty-two thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(10698, 64550, 'sixty-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(10699, 67, 'sixty-seven');\nINSERT INTO t3 VALUES(10700, 59263, 'fifty-nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(10701, 72292, 'seventy-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(10702, 72744, 'seventy-two thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(10703, 90621, 'ninety thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(10704, 28998, 'twenty-eight thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(10705, 52921, 'fifty-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(10706, 23829, 'twenty-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(10707, 10467, 'ten thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(10708, 10845, 'ten thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(10709, 75247, 'seventy-five thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(10710, 14709, 'fourteen thousand seven hundred nine');\nINSERT INTO t3 VALUES(10711, 33817, 'thirty-three thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(10712, 43932, 'forty-three thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(10713, 25641, 'twenty-five thousand six hundred forty-one');\nINSERT INTO t3 VALUES(10714, 60279, 'sixty thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10715, 58241, 'fifty-eight thousand two hundred forty-one');\nINSERT INTO t3 VALUES(10716, 91520, 'ninety-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(10717, 10554, 'ten thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(10718, 72043, 'seventy-two thousand forty-three');\nINSERT INTO t3 VALUES(10719, 14954, 'fourteen thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(10720, 3162, 'three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(10721, 79965, 'seventy-nine thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(10722, 93779, 'ninety-three thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(10723, 5425, 'five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(10724, 94473, 'ninety-four thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(10725, 55444, 'fifty-five thousand four hundred forty-four');\nINSERT INTO t3 VALUES(10726, 65769, 'sixty-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(10727, 8657, 'eight thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(10728, 74068, 'seventy-four thousand sixty-eight');\nINSERT INTO t3 VALUES(10729, 11370, 'eleven thousand three hundred seventy');\nINSERT INTO t3 VALUES(10730, 48920, 'forty-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(10731, 36068, 'thirty-six thousand sixty-eight');\nINSERT INTO t3 VALUES(10732, 5915, 'five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(10733, 3206, 'three thousand two hundred six');\nINSERT INTO t3 VALUES(10734, 43790, 'forty-three thousand seven hundred ninety');\nINSERT INTO t3 VALUES(10735, 30421, 'thirty thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10736, 37784, 'thirty-seven thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(10737, 98331, 'ninety-eight thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10738, 310, 'three hundred ten');\nINSERT INTO t3 VALUES(10739, 13404, 'thirteen thousand four hundred four');\nINSERT INTO t3 VALUES(10740, 11981, 'eleven thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(10741, 59970, 'fifty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10742, 49494, 'forty-nine thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(10743, 6994, 'six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(10744, 7963, 'seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(10745, 72666, 'seventy-two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(10746, 64219, 'sixty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(10747, 66853, 'sixty-six thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(10748, 40465, 'forty thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(10749, 16456, 'sixteen thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(10750, 33101, 'thirty-three thousand one hundred one');\nINSERT INTO t3 VALUES(10751, 493, 'four hundred ninety-three');\nINSERT INTO t3 VALUES(10752, 93733, 'ninety-three thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(10753, 14553, 'fourteen thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(10754, 67620, 'sixty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(10755, 95814, 'ninety-five thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(10756, 38707, 'thirty-eight thousand seven hundred seven');\nINSERT INTO t3 VALUES(10757, 98011, 'ninety-eight thousand eleven');\nINSERT INTO t3 VALUES(10758, 3228, 'three thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(10759, 42719, 'forty-two thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(10760, 66266, 'sixty-six thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(10761, 20277, 'twenty thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(10762, 95086, 'ninety-five thousand eighty-six');\nINSERT INTO t3 VALUES(10763, 77175, 'seventy-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(10764, 73903, 'seventy-three thousand nine hundred three');\nINSERT INTO t3 VALUES(10765, 54567, 'fifty-four thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(10766, 2049, 'two thousand forty-nine');\nINSERT INTO t3 VALUES(10767, 10613, 'ten thousand six hundred thirteen');\nINSERT INTO t3 VALUES(10768, 83046, 'eighty-three thousand forty-six');\nINSERT INTO t3 VALUES(10769, 88476, 'eighty-eight thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(10770, 5472, 'five thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(10771, 64693, 'sixty-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(10772, 91556, 'ninety-one thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(10773, 89342, 'eighty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(10774, 40578, 'forty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(10775, 33641, 'thirty-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(10776, 89678, 'eighty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(10777, 29041, 'twenty-nine thousand forty-one');\nINSERT INTO t3 VALUES(10778, 84569, 'eighty-four thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(10779, 39293, 'thirty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(10780, 69547, 'sixty-nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(10781, 68847, 'sixty-eight thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(10782, 42339, 'forty-two thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(10783, 79802, 'seventy-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(10784, 16404, 'sixteen thousand four hundred four');\nINSERT INTO t3 VALUES(10785, 75227, 'seventy-five thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(10786, 55243, 'fifty-five thousand two hundred forty-three');\nINSERT INTO t3 VALUES(10787, 33653, 'thirty-three thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(10788, 22919, 'twenty-two thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(10789, 32032, 'thirty-two thousand thirty-two');\nINSERT INTO t3 VALUES(10790, 33047, 'thirty-three thousand forty-seven');\nINSERT INTO t3 VALUES(10791, 9311, 'nine thousand three hundred eleven');\nINSERT INTO t3 VALUES(10792, 97304, 'ninety-seven thousand three hundred four');\nINSERT INTO t3 VALUES(10793, 81534, 'eighty-one thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(10794, 71401, 'seventy-one thousand four hundred one');\nINSERT INTO t3 VALUES(10795, 76388, 'seventy-six thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(10796, 53599, 'fifty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(10797, 80347, 'eighty thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(10798, 55653, 'fifty-five thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(10799, 6553, 'six thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(10800, 28492, 'twenty-eight thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(10801, 12151, 'twelve thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(10802, 21140, 'twenty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(10803, 49912, 'forty-nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(10804, 70308, 'seventy thousand three hundred eight');\nINSERT INTO t3 VALUES(10805, 26252, 'twenty-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(10806, 5600, 'five thousand six hundred');\nINSERT INTO t3 VALUES(10807, 92066, 'ninety-two thousand sixty-six');\nINSERT INTO t3 VALUES(10808, 47028, 'forty-seven thousand twenty-eight');\nINSERT INTO t3 VALUES(10809, 94053, 'ninety-four thousand fifty-three');\nINSERT INTO t3 VALUES(10810, 67529, 'sixty-seven thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(10811, 6408, 'six thousand four hundred eight');\nINSERT INTO t3 VALUES(10812, 10116, 'ten thousand one hundred sixteen');\nINSERT INTO t3 VALUES(10813, 53925, 'fifty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(10814, 69930, 'sixty-nine thousand nine hundred thirty');\nINSERT INTO t3 VALUES(10815, 72684, 'seventy-two thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(10816, 42314, 'forty-two thousand three hundred fourteen');\nINSERT INTO t3 VALUES(10817, 30607, 'thirty thousand six hundred seven');\nINSERT INTO t3 VALUES(10818, 67474, 'sixty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(10819, 94213, 'ninety-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(10820, 64568, 'sixty-four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10821, 18940, 'eighteen thousand nine hundred forty');\nINSERT INTO t3 VALUES(10822, 68450, 'sixty-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(10823, 12469, 'twelve thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(10824, 80658, 'eighty thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(10825, 35318, 'thirty-five thousand three hundred eighteen');\nINSERT INTO t3 VALUES(10826, 53041, 'fifty-three thousand forty-one');\nINSERT INTO t3 VALUES(10827, 86618, 'eighty-six thousand six hundred eighteen');\nINSERT INTO t3 VALUES(10828, 29611, 'twenty-nine thousand six hundred eleven');\nINSERT INTO t3 VALUES(10829, 90236, 'ninety thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(10830, 12596, 'twelve thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(10831, 6870, 'six thousand eight hundred seventy');\nINSERT INTO t3 VALUES(10832, 82402, 'eighty-two thousand four hundred two');\nINSERT INTO t3 VALUES(10833, 91415, 'ninety-one thousand four hundred fifteen');\nINSERT INTO t3 VALUES(10834, 48761, 'forty-eight thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(10835, 92362, 'ninety-two thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(10836, 2232, 'two thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(10837, 44704, 'forty-four thousand seven hundred four');\nINSERT INTO t3 VALUES(10838, 57685, 'fifty-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(10839, 65459, 'sixty-five thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(10840, 4310, 'four thousand three hundred ten');\nINSERT INTO t3 VALUES(10841, 24407, 'twenty-four thousand four hundred seven');\nINSERT INTO t3 VALUES(10842, 16371, 'sixteen thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(10843, 90077, 'ninety thousand seventy-seven');\nINSERT INTO t3 VALUES(10844, 84437, 'eighty-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(10845, 12623, 'twelve thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(10846, 20706, 'twenty thousand seven hundred six');\nINSERT INTO t3 VALUES(10847, 87851, 'eighty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(10848, 46832, 'forty-six thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(10849, 13313, 'thirteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(10850, 27800, 'twenty-seven thousand eight hundred');\nINSERT INTO t3 VALUES(10851, 89290, 'eighty-nine thousand two hundred ninety');\nINSERT INTO t3 VALUES(10852, 36846, 'thirty-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(10853, 12370, 'twelve thousand three hundred seventy');\nINSERT INTO t3 VALUES(10854, 46960, 'forty-six thousand nine hundred sixty');\nINSERT INTO t3 VALUES(10855, 96617, 'ninety-six thousand six hundred seventeen');\nINSERT INTO t3 VALUES(10856, 5765, 'five thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(10857, 51413, 'fifty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(10858, 63089, 'sixty-three thousand eighty-nine');\nINSERT INTO t3 VALUES(10859, 27286, 'twenty-seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(10860, 41034, 'forty-one thousand thirty-four');\nINSERT INTO t3 VALUES(10861, 69970, 'sixty-nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(10862, 17890, 'seventeen thousand eight hundred ninety');\nINSERT INTO t3 VALUES(10863, 90405, 'ninety thousand four hundred five');\nINSERT INTO t3 VALUES(10864, 38216, 'thirty-eight thousand two hundred sixteen');\nINSERT INTO t3 VALUES(10865, 69559, 'sixty-nine thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(10866, 16568, 'sixteen thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(10867, 70392, 'seventy thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(10868, 77787, 'seventy-seven thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(10869, 76020, 'seventy-six thousand twenty');\nINSERT INTO t3 VALUES(10870, 98387, 'ninety-eight thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(10871, 85823, 'eighty-five thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(10872, 89197, 'eighty-nine thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(10873, 45427, 'forty-five thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(10874, 87352, 'eighty-seven thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(10875, 71029, 'seventy-one thousand twenty-nine');\nINSERT INTO t3 VALUES(10876, 72829, 'seventy-two thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(10877, 11497, 'eleven thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(10878, 93275, 'ninety-three thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(10879, 57055, 'fifty-seven thousand fifty-five');\nINSERT INTO t3 VALUES(10880, 24600, 'twenty-four thousand six hundred');\nINSERT INTO t3 VALUES(10881, 83867, 'eighty-three thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(10882, 66656, 'sixty-six thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(10883, 90995, 'ninety thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(10884, 71675, 'seventy-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(10885, 62782, 'sixty-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(10886, 92267, 'ninety-two thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(10887, 43924, 'forty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(10888, 95518, 'ninety-five thousand five hundred eighteen');\nINSERT INTO t3 VALUES(10889, 43147, 'forty-three thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(10890, 49343, 'forty-nine thousand three hundred forty-three');\nINSERT INTO t3 VALUES(10891, 38069, 'thirty-eight thousand sixty-nine');\nINSERT INTO t3 VALUES(10892, 33796, 'thirty-three thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(10893, 24255, 'twenty-four thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(10894, 22434, 'twenty-two thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(10895, 75506, 'seventy-five thousand five hundred six');\nINSERT INTO t3 VALUES(10896, 72279, 'seventy-two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10897, 93236, 'ninety-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(10898, 88144, 'eighty-eight thousand one hundred forty-four');\nINSERT INTO t3 VALUES(10899, 65763, 'sixty-five thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(10900, 70948, 'seventy thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(10901, 1960, 'one thousand nine hundred sixty');\nINSERT INTO t3 VALUES(10902, 83281, 'eighty-three thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(10903, 84650, 'eighty-four thousand six hundred fifty');\nINSERT INTO t3 VALUES(10904, 16765, 'sixteen thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(10905, 75963, 'seventy-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(10906, 69832, 'sixty-nine thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(10907, 44509, 'forty-four thousand five hundred nine');\nINSERT INTO t3 VALUES(10908, 44148, 'forty-four thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(10909, 19685, 'nineteen thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(10910, 85157, 'eighty-five thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(10911, 28159, 'twenty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10912, 28786, 'twenty-eight thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(10913, 68380, 'sixty-eight thousand three hundred eighty');\nINSERT INTO t3 VALUES(10914, 69751, 'sixty-nine thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(10915, 24201, 'twenty-four thousand two hundred one');\nINSERT INTO t3 VALUES(10916, 66909, 'sixty-six thousand nine hundred nine');\nINSERT INTO t3 VALUES(10917, 97251, 'ninety-seven thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(10918, 31144, 'thirty-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(10919, 87052, 'eighty-seven thousand fifty-two');\nINSERT INTO t3 VALUES(10920, 22233, 'twenty-two thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(10921, 36134, 'thirty-six thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(10922, 81986, 'eighty-one thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(10923, 29602, 'twenty-nine thousand six hundred two');\nINSERT INTO t3 VALUES(10924, 31699, 'thirty-one thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(10925, 40368, 'forty thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(10926, 13196, 'thirteen thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(10927, 67233, 'sixty-seven thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(10928, 28292, 'twenty-eight thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(10929, 60938, 'sixty thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(10930, 22981, 'twenty-two thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(10931, 55293, 'fifty-five thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(10932, 1442, 'one thousand four hundred forty-two');\nINSERT INTO t3 VALUES(10933, 89451, 'eighty-nine thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(10934, 74352, 'seventy-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(10935, 53110, 'fifty-three thousand one hundred ten');\nINSERT INTO t3 VALUES(10936, 72118, 'seventy-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(10937, 71427, 'seventy-one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(10938, 73888, 'seventy-three thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(10939, 53151, 'fifty-three thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(10940, 16279, 'sixteen thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10941, 19747, 'nineteen thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(10942, 69530, 'sixty-nine thousand five hundred thirty');\nINSERT INTO t3 VALUES(10943, 82903, 'eighty-two thousand nine hundred three');\nINSERT INTO t3 VALUES(10944, 10401, 'ten thousand four hundred one');\nINSERT INTO t3 VALUES(10945, 28338, 'twenty-eight thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(10946, 18533, 'eighteen thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(10947, 54540, 'fifty-four thousand five hundred forty');\nINSERT INTO t3 VALUES(10948, 14713, 'fourteen thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(10949, 98920, 'ninety-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(10950, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(10951, 64025, 'sixty-four thousand twenty-five');\nINSERT INTO t3 VALUES(10952, 509, 'five hundred nine');\nINSERT INTO t3 VALUES(10953, 11087, 'eleven thousand eighty-seven');\nINSERT INTO t3 VALUES(10954, 72134, 'seventy-two thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(10955, 47045, 'forty-seven thousand forty-five');\nINSERT INTO t3 VALUES(10956, 65681, 'sixty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(10957, 79936, 'seventy-nine thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(10958, 7810, 'seven thousand eight hundred ten');\nINSERT INTO t3 VALUES(10959, 27203, 'twenty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(10960, 45275, 'forty-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(10961, 83078, 'eighty-three thousand seventy-eight');\nINSERT INTO t3 VALUES(10962, 80874, 'eighty thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(10963, 49629, 'forty-nine thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(10964, 44591, 'forty-four thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(10965, 33517, 'thirty-three thousand five hundred seventeen');\nINSERT INTO t3 VALUES(10966, 13108, 'thirteen thousand one hundred eight');\nINSERT INTO t3 VALUES(10967, 78838, 'seventy-eight thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(10968, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t3 VALUES(10969, 46472, 'forty-six thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(10970, 70047, 'seventy thousand forty-seven');\nINSERT INTO t3 VALUES(10971, 10331, 'ten thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(10972, 19159, 'nineteen thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10973, 76159, 'seventy-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(10974, 16310, 'sixteen thousand three hundred ten');\nINSERT INTO t3 VALUES(10975, 12279, 'twelve thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(10976, 28404, 'twenty-eight thousand four hundred four');\nINSERT INTO t3 VALUES(10977, 17025, 'seventeen thousand twenty-five');\nINSERT INTO t3 VALUES(10978, 30381, 'thirty thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(10979, 69400, 'sixty-nine thousand four hundred');\nINSERT INTO t3 VALUES(10980, 73936, 'seventy-three thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(10981, 33825, 'thirty-three thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(10982, 60746, 'sixty thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(10983, 4917, 'four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(10984, 77692, 'seventy-seven thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(10985, 39683, 'thirty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(10986, 92658, 'ninety-two thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(10987, 66522, 'sixty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(10988, 23990, 'twenty-three thousand nine hundred ninety');\nINSERT INTO t3 VALUES(10989, 37734, 'thirty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(10990, 82274, 'eighty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(10991, 45421, 'forty-five thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(10992, 34156, 'thirty-four thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(10993, 3791, 'three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(10994, 26429, 'twenty-six thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(10995, 84978, 'eighty-four thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(10996, 48180, 'forty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(10997, 71311, 'seventy-one thousand three hundred eleven');\nINSERT INTO t3 VALUES(10998, 30852, 'thirty thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(10999, 45959, 'forty-five thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11000, 10512, 'ten thousand five hundred twelve');\nINSERT INTO t3 VALUES(11001, 30183, 'thirty thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(11002, 73351, 'seventy-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(11003, 67270, 'sixty-seven thousand two hundred seventy');\nINSERT INTO t3 VALUES(11004, 89632, 'eighty-nine thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(11005, 4057, 'four thousand fifty-seven');\nINSERT INTO t3 VALUES(11006, 65163, 'sixty-five thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11007, 39256, 'thirty-nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(11008, 86978, 'eighty-six thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(11009, 56962, 'fifty-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(11010, 63263, 'sixty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(11011, 18335, 'eighteen thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(11012, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(11013, 21035, 'twenty-one thousand thirty-five');\nINSERT INTO t3 VALUES(11014, 23236, 'twenty-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(11015, 63952, 'sixty-three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(11016, 24442, 'twenty-four thousand four hundred forty-two');\nINSERT INTO t3 VALUES(11017, 88347, 'eighty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(11018, 74322, 'seventy-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(11019, 39544, 'thirty-nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(11020, 5834, 'five thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(11021, 72605, 'seventy-two thousand six hundred five');\nINSERT INTO t3 VALUES(11022, 35217, 'thirty-five thousand two hundred seventeen');\nINSERT INTO t3 VALUES(11023, 43060, 'forty-three thousand sixty');\nINSERT INTO t3 VALUES(11024, 51837, 'fifty-one thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11025, 45135, 'forty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(11026, 67767, 'sixty-seven thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(11027, 27976, 'twenty-seven thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(11028, 65836, 'sixty-five thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(11029, 18096, 'eighteen thousand ninety-six');\nINSERT INTO t3 VALUES(11030, 84463, 'eighty-four thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(11031, 84247, 'eighty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(11032, 80923, 'eighty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11033, 63983, 'sixty-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(11034, 92431, 'ninety-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(11035, 91538, 'ninety-one thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(11036, 90053, 'ninety thousand fifty-three');\nINSERT INTO t3 VALUES(11037, 61166, 'sixty-one thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(11038, 19959, 'nineteen thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11039, 81429, 'eighty-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(11040, 24863, 'twenty-four thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(11041, 78128, 'seventy-eight thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(11042, 78672, 'seventy-eight thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(11043, 35473, 'thirty-five thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(11044, 80758, 'eighty thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(11045, 26306, 'twenty-six thousand three hundred six');\nINSERT INTO t3 VALUES(11046, 58280, 'fifty-eight thousand two hundred eighty');\nINSERT INTO t3 VALUES(11047, 87616, 'eighty-seven thousand six hundred sixteen');\nINSERT INTO t3 VALUES(11048, 23750, 'twenty-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(11049, 28679, 'twenty-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11050, 27309, 'twenty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(11051, 5706, 'five thousand seven hundred six');\nINSERT INTO t3 VALUES(11052, 18708, 'eighteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(11053, 14416, 'fourteen thousand four hundred sixteen');\nINSERT INTO t3 VALUES(11054, 84060, 'eighty-four thousand sixty');\nINSERT INTO t3 VALUES(11055, 5425, 'five thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(11056, 79057, 'seventy-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(11057, 90187, 'ninety thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(11058, 82494, 'eighty-two thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(11059, 98482, 'ninety-eight thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(11060, 13681, 'thirteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(11061, 48138, 'forty-eight thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(11062, 9837, 'nine thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11063, 33882, 'thirty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(11064, 54906, 'fifty-four thousand nine hundred six');\nINSERT INTO t3 VALUES(11065, 62330, 'sixty-two thousand three hundred thirty');\nINSERT INTO t3 VALUES(11066, 89439, 'eighty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(11067, 92900, 'ninety-two thousand nine hundred');\nINSERT INTO t3 VALUES(11068, 7689, 'seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(11069, 71557, 'seventy-one thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(11070, 22907, 'twenty-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(11071, 31465, 'thirty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(11072, 83976, 'eighty-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(11073, 25962, 'twenty-five thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(11074, 99005, 'ninety-nine thousand five');\nINSERT INTO t3 VALUES(11075, 5751, 'five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(11076, 78356, 'seventy-eight thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(11077, 94808, 'ninety-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(11078, 45204, 'forty-five thousand two hundred four');\nINSERT INTO t3 VALUES(11079, 45877, 'forty-five thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(11080, 91834, 'ninety-one thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(11081, 3333, 'three thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(11082, 78102, 'seventy-eight thousand one hundred two');\nINSERT INTO t3 VALUES(11083, 5407, 'five thousand four hundred seven');\nINSERT INTO t3 VALUES(11084, 12084, 'twelve thousand eighty-four');\nINSERT INTO t3 VALUES(11085, 4565, 'four thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(11086, 27751, 'twenty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(11087, 84913, 'eighty-four thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(11088, 70328, 'seventy thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(11089, 61211, 'sixty-one thousand two hundred eleven');\nINSERT INTO t3 VALUES(11090, 403, 'four hundred three');\nINSERT INTO t3 VALUES(11091, 16552, 'sixteen thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(11092, 25030, 'twenty-five thousand thirty');\nINSERT INTO t3 VALUES(11093, 69512, 'sixty-nine thousand five hundred twelve');\nINSERT INTO t3 VALUES(11094, 51926, 'fifty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(11095, 4266, 'four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(11096, 92534, 'ninety-two thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(11097, 86815, 'eighty-six thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11098, 49396, 'forty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(11099, 28502, 'twenty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(11100, 89435, 'eighty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(11101, 52041, 'fifty-two thousand forty-one');\nINSERT INTO t3 VALUES(11102, 11767, 'eleven thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(11103, 96382, 'ninety-six thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(11104, 48470, 'forty-eight thousand four hundred seventy');\nINSERT INTO t3 VALUES(11105, 76268, 'seventy-six thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(11106, 25589, 'twenty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11107, 72587, 'seventy-two thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(11108, 67263, 'sixty-seven thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(11109, 66930, 'sixty-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(11110, 19956, 'nineteen thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(11111, 74380, 'seventy-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(11112, 87688, 'eighty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(11113, 67537, 'sixty-seven thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(11114, 20848, 'twenty thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(11115, 75957, 'seventy-five thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(11116, 62091, 'sixty-two thousand ninety-one');\nINSERT INTO t3 VALUES(11117, 35331, 'thirty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(11118, 80361, 'eighty thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(11119, 31820, 'thirty-one thousand eight hundred twenty');\nINSERT INTO t3 VALUES(11120, 18194, 'eighteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(11121, 32192, 'thirty-two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(11122, 31710, 'thirty-one thousand seven hundred ten');\nINSERT INTO t3 VALUES(11123, 52760, 'fifty-two thousand seven hundred sixty');\nINSERT INTO t3 VALUES(11124, 44424, 'forty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(11125, 70434, 'seventy thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(11126, 66378, 'sixty-six thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(11127, 67007, 'sixty-seven thousand seven');\nINSERT INTO t3 VALUES(11128, 28218, 'twenty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(11129, 62373, 'sixty-two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(11130, 79043, 'seventy-nine thousand forty-three');\nINSERT INTO t3 VALUES(11131, 88281, 'eighty-eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(11132, 46277, 'forty-six thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(11133, 2777, 'two thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(11134, 65802, 'sixty-five thousand eight hundred two');\nINSERT INTO t3 VALUES(11135, 50437, 'fifty thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(11136, 57691, 'fifty-seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(11137, 18696, 'eighteen thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(11138, 48939, 'forty-eight thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(11139, 71127, 'seventy-one thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(11140, 44397, 'forty-four thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(11141, 43218, 'forty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(11142, 91156, 'ninety-one thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11143, 61725, 'sixty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(11144, 3837, 'three thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11145, 47329, 'forty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(11146, 70, 'seventy');\nINSERT INTO t3 VALUES(11147, 52445, 'fifty-two thousand four hundred forty-five');\nINSERT INTO t3 VALUES(11148, 60824, 'sixty thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(11149, 36397, 'thirty-six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(11150, 94180, 'ninety-four thousand one hundred eighty');\nINSERT INTO t3 VALUES(11151, 54837, 'fifty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11152, 9405, 'nine thousand four hundred five');\nINSERT INTO t3 VALUES(11153, 77189, 'seventy-seven thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(11154, 96640, 'ninety-six thousand six hundred forty');\nINSERT INTO t3 VALUES(11155, 71752, 'seventy-one thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(11156, 29213, 'twenty-nine thousand two hundred thirteen');\nINSERT INTO t3 VALUES(11157, 9410, 'nine thousand four hundred ten');\nINSERT INTO t3 VALUES(11158, 20087, 'twenty thousand eighty-seven');\nINSERT INTO t3 VALUES(11159, 39088, 'thirty-nine thousand eighty-eight');\nINSERT INTO t3 VALUES(11160, 51053, 'fifty-one thousand fifty-three');\nINSERT INTO t3 VALUES(11161, 90947, 'ninety thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(11162, 66163, 'sixty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11163, 31910, 'thirty-one thousand nine hundred ten');\nINSERT INTO t3 VALUES(11164, 35284, 'thirty-five thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(11165, 56390, 'fifty-six thousand three hundred ninety');\nINSERT INTO t3 VALUES(11166, 55863, 'fifty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(11167, 74, 'seventy-four');\nINSERT INTO t3 VALUES(11168, 32946, 'thirty-two thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(11169, 48776, 'forty-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(11170, 91812, 'ninety-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(11171, 44538, 'forty-four thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(11172, 55368, 'fifty-five thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(11173, 12683, 'twelve thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(11174, 73514, 'seventy-three thousand five hundred fourteen');\nINSERT INTO t3 VALUES(11175, 28569, 'twenty-eight thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(11176, 1915, 'one thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(11177, 16241, 'sixteen thousand two hundred forty-one');\nINSERT INTO t3 VALUES(11178, 32149, 'thirty-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11179, 55457, 'fifty-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(11180, 15350, 'fifteen thousand three hundred fifty');\nINSERT INTO t3 VALUES(11181, 91026, 'ninety-one thousand twenty-six');\nINSERT INTO t3 VALUES(11182, 56756, 'fifty-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(11183, 4659, 'four thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(11184, 52715, 'fifty-two thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(11185, 80117, 'eighty thousand one hundred seventeen');\nINSERT INTO t3 VALUES(11186, 1154, 'one thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(11187, 17609, 'seventeen thousand six hundred nine');\nINSERT INTO t3 VALUES(11188, 62436, 'sixty-two thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(11189, 79283, 'seventy-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11190, 2215, 'two thousand two hundred fifteen');\nINSERT INTO t3 VALUES(11191, 82097, 'eighty-two thousand ninety-seven');\nINSERT INTO t3 VALUES(11192, 13349, 'thirteen thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(11193, 11629, 'eleven thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(11194, 39647, 'thirty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(11195, 52799, 'fifty-two thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(11196, 6056, 'six thousand fifty-six');\nINSERT INTO t3 VALUES(11197, 72419, 'seventy-two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(11198, 71084, 'seventy-one thousand eighty-four');\nINSERT INTO t3 VALUES(11199, 22972, 'twenty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(11200, 15439, 'fifteen thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(11201, 43453, 'forty-three thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(11202, 51486, 'fifty-one thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(11203, 42007, 'forty-two thousand seven');\nINSERT INTO t3 VALUES(11204, 40911, 'forty thousand nine hundred eleven');\nINSERT INTO t3 VALUES(11205, 71131, 'seventy-one thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(11206, 19540, 'nineteen thousand five hundred forty');\nINSERT INTO t3 VALUES(11207, 70399, 'seventy thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(11208, 86560, 'eighty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(11209, 28959, 'twenty-eight thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11210, 97042, 'ninety-seven thousand forty-two');\nINSERT INTO t3 VALUES(11211, 83365, 'eighty-three thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(11212, 92641, 'ninety-two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(11213, 4092, 'four thousand ninety-two');\nINSERT INTO t3 VALUES(11214, 39897, 'thirty-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(11215, 22955, 'twenty-two thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(11216, 34836, 'thirty-four thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(11217, 28866, 'twenty-eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(11218, 52782, 'fifty-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(11219, 17209, 'seventeen thousand two hundred nine');\nINSERT INTO t3 VALUES(11220, 39108, 'thirty-nine thousand one hundred eight');\nINSERT INTO t3 VALUES(11221, 75816, 'seventy-five thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(11222, 72616, 'seventy-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(11223, 33417, 'thirty-three thousand four hundred seventeen');\nINSERT INTO t3 VALUES(11224, 93679, 'ninety-three thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11225, 52960, 'fifty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(11226, 30311, 'thirty thousand three hundred eleven');\nINSERT INTO t3 VALUES(11227, 12191, 'twelve thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(11228, 89102, 'eighty-nine thousand one hundred two');\nINSERT INTO t3 VALUES(11229, 96198, 'ninety-six thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(11230, 97540, 'ninety-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(11231, 9085, 'nine thousand eighty-five');\nINSERT INTO t3 VALUES(11232, 46069, 'forty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(11233, 75687, 'seventy-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(11234, 25724, 'twenty-five thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(11235, 41590, 'forty-one thousand five hundred ninety');\nINSERT INTO t3 VALUES(11236, 80445, 'eighty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(11237, 63073, 'sixty-three thousand seventy-three');\nINSERT INTO t3 VALUES(11238, 38755, 'thirty-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(11239, 60809, 'sixty thousand eight hundred nine');\nINSERT INTO t3 VALUES(11240, 22330, 'twenty-two thousand three hundred thirty');\nINSERT INTO t3 VALUES(11241, 59893, 'fifty-nine thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(11242, 33710, 'thirty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(11243, 37837, 'thirty-seven thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(11244, 94588, 'ninety-four thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(11245, 24821, 'twenty-four thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(11246, 83984, 'eighty-three thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(11247, 84558, 'eighty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11248, 18676, 'eighteen thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(11249, 60062, 'sixty thousand sixty-two');\nINSERT INTO t3 VALUES(11250, 35283, 'thirty-five thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11251, 28738, 'twenty-eight thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(11252, 83718, 'eighty-three thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(11253, 10063, 'ten thousand sixty-three');\nINSERT INTO t3 VALUES(11254, 86317, 'eighty-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(11255, 14531, 'fourteen thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(11256, 14168, 'fourteen thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(11257, 2723, 'two thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(11258, 47599, 'forty-seven thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(11259, 53148, 'fifty-three thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(11260, 5570, 'five thousand five hundred seventy');\nINSERT INTO t3 VALUES(11261, 36026, 'thirty-six thousand twenty-six');\nINSERT INTO t3 VALUES(11262, 96930, 'ninety-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(11263, 17867, 'seventeen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(11264, 95334, 'ninety-five thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(11265, 70686, 'seventy thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(11266, 12498, 'twelve thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(11267, 92754, 'ninety-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(11268, 96156, 'ninety-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11269, 83130, 'eighty-three thousand one hundred thirty');\nINSERT INTO t3 VALUES(11270, 95538, 'ninety-five thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(11271, 71498, 'seventy-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(11272, 25488, 'twenty-five thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(11273, 34216, 'thirty-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(11274, 63954, 'sixty-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(11275, 61635, 'sixty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(11276, 89166, 'eighty-nine thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(11277, 66069, 'sixty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(11278, 69532, 'sixty-nine thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(11279, 14136, 'fourteen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(11280, 56829, 'fifty-six thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(11281, 73841, 'seventy-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11282, 82222, 'eighty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(11283, 68802, 'sixty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(11284, 54815, 'fifty-four thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11285, 31933, 'thirty-one thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(11286, 26543, 'twenty-six thousand five hundred forty-three');\nINSERT INTO t3 VALUES(11287, 86579, 'eighty-six thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(11288, 58123, 'fifty-eight thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(11289, 35272, 'thirty-five thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(11290, 83122, 'eighty-three thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(11291, 52857, 'fifty-two thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(11292, 14345, 'fourteen thousand three hundred forty-five');\nINSERT INTO t3 VALUES(11293, 25953, 'twenty-five thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(11294, 76965, 'seventy-six thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(11295, 91485, 'ninety-one thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(11296, 42274, 'forty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(11297, 13176, 'thirteen thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(11298, 9724, 'nine thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(11299, 68239, 'sixty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(11300, 17095, 'seventeen thousand ninety-five');\nINSERT INTO t3 VALUES(11301, 81118, 'eighty-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(11302, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(11303, 94959, 'ninety-four thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11304, 44838, 'forty-four thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(11305, 11998, 'eleven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(11306, 34732, 'thirty-four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(11307, 48092, 'forty-eight thousand ninety-two');\nINSERT INTO t3 VALUES(11308, 48208, 'forty-eight thousand two hundred eight');\nINSERT INTO t3 VALUES(11309, 86109, 'eighty-six thousand one hundred nine');\nINSERT INTO t3 VALUES(11310, 84440, 'eighty-four thousand four hundred forty');\nINSERT INTO t3 VALUES(11311, 28070, 'twenty-eight thousand seventy');\nINSERT INTO t3 VALUES(11312, 53496, 'fifty-three thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(11313, 17786, 'seventeen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(11314, 5016, 'five thousand sixteen');\nINSERT INTO t3 VALUES(11315, 1230, 'one thousand two hundred thirty');\nINSERT INTO t3 VALUES(11316, 35383, 'thirty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(11317, 64270, 'sixty-four thousand two hundred seventy');\nINSERT INTO t3 VALUES(11318, 64500, 'sixty-four thousand five hundred');\nINSERT INTO t3 VALUES(11319, 42906, 'forty-two thousand nine hundred six');\nINSERT INTO t3 VALUES(11320, 92747, 'ninety-two thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(11321, 24862, 'twenty-four thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(11322, 87202, 'eighty-seven thousand two hundred two');\nINSERT INTO t3 VALUES(11323, 63626, 'sixty-three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(11324, 19956, 'nineteen thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(11325, 37053, 'thirty-seven thousand fifty-three');\nINSERT INTO t3 VALUES(11326, 37830, 'thirty-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(11327, 18255, 'eighteen thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(11328, 57473, 'fifty-seven thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(11329, 53078, 'fifty-three thousand seventy-eight');\nINSERT INTO t3 VALUES(11330, 72570, 'seventy-two thousand five hundred seventy');\nINSERT INTO t3 VALUES(11331, 86761, 'eighty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(11332, 62066, 'sixty-two thousand sixty-six');\nINSERT INTO t3 VALUES(11333, 71596, 'seventy-one thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(11334, 6184, 'six thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(11335, 5516, 'five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(11336, 45329, 'forty-five thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(11337, 85884, 'eighty-five thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(11338, 76347, 'seventy-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(11339, 82035, 'eighty-two thousand thirty-five');\nINSERT INTO t3 VALUES(11340, 48565, 'forty-eight thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(11341, 15716, 'fifteen thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(11342, 44293, 'forty-four thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(11343, 362, 'three hundred sixty-two');\nINSERT INTO t3 VALUES(11344, 29591, 'twenty-nine thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(11345, 56955, 'fifty-six thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(11346, 38548, 'thirty-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(11347, 17307, 'seventeen thousand three hundred seven');\nINSERT INTO t3 VALUES(11348, 78978, 'seventy-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(11349, 64685, 'sixty-four thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(11350, 47855, 'forty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(11351, 65951, 'sixty-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(11352, 14685, 'fourteen thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(11353, 93213, 'ninety-three thousand two hundred thirteen');\nINSERT INTO t3 VALUES(11354, 51313, 'fifty-one thousand three hundred thirteen');\nINSERT INTO t3 VALUES(11355, 92868, 'ninety-two thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(11356, 31384, 'thirty-one thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(11357, 21938, 'twenty-one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(11358, 51745, 'fifty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(11359, 87292, 'eighty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(11360, 45071, 'forty-five thousand seventy-one');\nINSERT INTO t3 VALUES(11361, 67087, 'sixty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(11362, 67809, 'sixty-seven thousand eight hundred nine');\nINSERT INTO t3 VALUES(11363, 49186, 'forty-nine thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(11364, 46375, 'forty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(11365, 87694, 'eighty-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(11366, 9470, 'nine thousand four hundred seventy');\nINSERT INTO t3 VALUES(11367, 46648, 'forty-six thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(11368, 63094, 'sixty-three thousand ninety-four');\nINSERT INTO t3 VALUES(11369, 97956, 'ninety-seven thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(11370, 40843, 'forty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(11371, 81668, 'eighty-one thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(11372, 40076, 'forty thousand seventy-six');\nINSERT INTO t3 VALUES(11373, 81790, 'eighty-one thousand seven hundred ninety');\nINSERT INTO t3 VALUES(11374, 8734, 'eight thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(11375, 72734, 'seventy-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(11376, 74402, 'seventy-four thousand four hundred two');\nINSERT INTO t3 VALUES(11377, 91455, 'ninety-one thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(11378, 53189, 'fifty-three thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(11379, 22371, 'twenty-two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(11380, 90031, 'ninety thousand thirty-one');\nINSERT INTO t3 VALUES(11381, 21005, 'twenty-one thousand five');\nINSERT INTO t3 VALUES(11382, 46662, 'forty-six thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(11383, 65611, 'sixty-five thousand six hundred eleven');\nINSERT INTO t3 VALUES(11384, 64529, 'sixty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(11385, 33323, 'thirty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(11386, 26092, 'twenty-six thousand ninety-two');\nINSERT INTO t3 VALUES(11387, 26208, 'twenty-six thousand two hundred eight');\nINSERT INTO t3 VALUES(11388, 23028, 'twenty-three thousand twenty-eight');\nINSERT INTO t3 VALUES(11389, 59263, 'fifty-nine thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(11390, 19355, 'nineteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(11391, 40818, 'forty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(11392, 13983, 'thirteen thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(11393, 35597, 'thirty-five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(11394, 70679, 'seventy thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11395, 140, 'one hundred forty');\nINSERT INTO t3 VALUES(11396, 14735, 'fourteen thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(11397, 9901, 'nine thousand nine hundred one');\nINSERT INTO t3 VALUES(11398, 3850, 'three thousand eight hundred fifty');\nINSERT INTO t3 VALUES(11399, 69256, 'sixty-nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(11400, 76261, 'seventy-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(11401, 86019, 'eighty-six thousand nineteen');\nINSERT INTO t3 VALUES(11402, 65412, 'sixty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(11403, 38063, 'thirty-eight thousand sixty-three');\nINSERT INTO t3 VALUES(11404, 68221, 'sixty-eight thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(11405, 51080, 'fifty-one thousand eighty');\nINSERT INTO t3 VALUES(11406, 3324, 'three thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(11407, 77335, 'seventy-seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(11408, 15169, 'fifteen thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(11409, 63181, 'sixty-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(11410, 11934, 'eleven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(11411, 20759, 'twenty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(11412, 79098, 'seventy-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(11413, 8830, 'eight thousand eight hundred thirty');\nINSERT INTO t3 VALUES(11414, 72585, 'seventy-two thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(11415, 79219, 'seventy-nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(11416, 53323, 'fifty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(11417, 75558, 'seventy-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11418, 98440, 'ninety-eight thousand four hundred forty');\nINSERT INTO t3 VALUES(11419, 64723, 'sixty-four thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(11420, 29164, 'twenty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(11421, 13905, 'thirteen thousand nine hundred five');\nINSERT INTO t3 VALUES(11422, 53559, 'fifty-three thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(11423, 46375, 'forty-six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(11424, 49493, 'forty-nine thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(11425, 98149, 'ninety-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11426, 32086, 'thirty-two thousand eighty-six');\nINSERT INTO t3 VALUES(11427, 98364, 'ninety-eight thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(11428, 61177, 'sixty-one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(11429, 31358, 'thirty-one thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(11430, 19406, 'nineteen thousand four hundred six');\nINSERT INTO t3 VALUES(11431, 5513, 'five thousand five hundred thirteen');\nINSERT INTO t3 VALUES(11432, 85855, 'eighty-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(11433, 39060, 'thirty-nine thousand sixty');\nINSERT INTO t3 VALUES(11434, 59061, 'fifty-nine thousand sixty-one');\nINSERT INTO t3 VALUES(11435, 85856, 'eighty-five thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(11436, 7417, 'seven thousand four hundred seventeen');\nINSERT INTO t3 VALUES(11437, 72822, 'seventy-two thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(11438, 33939, 'thirty-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(11439, 27855, 'twenty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(11440, 83991, 'eighty-three thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(11441, 69927, 'sixty-nine thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(11442, 92195, 'ninety-two thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(11443, 12214, 'twelve thousand two hundred fourteen');\nINSERT INTO t3 VALUES(11444, 79905, 'seventy-nine thousand nine hundred five');\nINSERT INTO t3 VALUES(11445, 40109, 'forty thousand one hundred nine');\nINSERT INTO t3 VALUES(11446, 87472, 'eighty-seven thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(11447, 32641, 'thirty-two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(11448, 98532, 'ninety-eight thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(11449, 9061, 'nine thousand sixty-one');\nINSERT INTO t3 VALUES(11450, 99133, 'ninety-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(11451, 49725, 'forty-nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(11452, 27998, 'twenty-seven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(11453, 65589, 'sixty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11454, 96383, 'ninety-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(11455, 26139, 'twenty-six thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(11456, 99366, 'ninety-nine thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(11457, 52304, 'fifty-two thousand three hundred four');\nINSERT INTO t3 VALUES(11458, 64265, 'sixty-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(11459, 1666, 'one thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(11460, 61856, 'sixty-one thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(11461, 59283, 'fifty-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11462, 81271, 'eighty-one thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(11463, 67156, 'sixty-seven thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11464, 72906, 'seventy-two thousand nine hundred six');\nINSERT INTO t3 VALUES(11465, 60735, 'sixty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(11466, 46075, 'forty-six thousand seventy-five');\nINSERT INTO t3 VALUES(11467, 59144, 'fifty-nine thousand one hundred forty-four');\nINSERT INTO t3 VALUES(11468, 10913, 'ten thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(11469, 69991, 'sixty-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(11470, 75679, 'seventy-five thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11471, 20790, 'twenty thousand seven hundred ninety');\nINSERT INTO t3 VALUES(11472, 76456, 'seventy-six thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(11473, 1974, 'one thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(11474, 87969, 'eighty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(11475, 71298, 'seventy-one thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(11476, 51425, 'fifty-one thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(11477, 42326, 'forty-two thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(11478, 42923, 'forty-two thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11479, 7171, 'seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(11480, 84697, 'eighty-four thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(11481, 73177, 'seventy-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(11482, 44859, 'forty-four thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(11483, 87578, 'eighty-seven thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(11484, 84187, 'eighty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(11485, 47707, 'forty-seven thousand seven hundred seven');\nINSERT INTO t3 VALUES(11486, 89698, 'eighty-nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(11487, 76876, 'seventy-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(11488, 87271, 'eighty-seven thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(11489, 4452, 'four thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(11490, 10145, 'ten thousand one hundred forty-five');\nINSERT INTO t3 VALUES(11491, 85193, 'eighty-five thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(11492, 28159, 'twenty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(11493, 65748, 'sixty-five thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(11494, 90981, 'ninety thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(11495, 42289, 'forty-two thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(11496, 90226, 'ninety thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(11497, 8799, 'eight thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(11498, 30748, 'thirty thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(11499, 75149, 'seventy-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11500, 77633, 'seventy-seven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(11501, 96361, 'ninety-six thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(11502, 27529, 'twenty-seven thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(11503, 65516, 'sixty-five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(11504, 41684, 'forty-one thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(11505, 6349, 'six thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(11506, 96745, 'ninety-six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(11507, 72707, 'seventy-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(11508, 54477, 'fifty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(11509, 27248, 'twenty-seven thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(11510, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11511, 56276, 'fifty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(11512, 21843, 'twenty-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(11513, 91633, 'ninety-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(11514, 99252, 'ninety-nine thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(11515, 87771, 'eighty-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(11516, 83352, 'eighty-three thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(11517, 15402, 'fifteen thousand four hundred two');\nINSERT INTO t3 VALUES(11518, 85261, 'eighty-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(11519, 76493, 'seventy-six thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(11520, 64749, 'sixty-four thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(11521, 91714, 'ninety-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(11522, 93919, 'ninety-three thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11523, 10405, 'ten thousand four hundred five');\nINSERT INTO t3 VALUES(11524, 1601, 'one thousand six hundred one');\nINSERT INTO t3 VALUES(11525, 8456, 'eight thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(11526, 97383, 'ninety-seven thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(11527, 60982, 'sixty thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(11528, 31025, 'thirty-one thousand twenty-five');\nINSERT INTO t3 VALUES(11529, 99450, 'ninety-nine thousand four hundred fifty');\nINSERT INTO t3 VALUES(11530, 18995, 'eighteen thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(11531, 62005, 'sixty-two thousand five');\nINSERT INTO t3 VALUES(11532, 72817, 'seventy-two thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(11533, 34325, 'thirty-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(11534, 27524, 'twenty-seven thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(11535, 31700, 'thirty-one thousand seven hundred');\nINSERT INTO t3 VALUES(11536, 24894, 'twenty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(11537, 47550, 'forty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(11538, 4593, 'four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(11539, 57504, 'fifty-seven thousand five hundred four');\nINSERT INTO t3 VALUES(11540, 35379, 'thirty-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(11541, 46360, 'forty-six thousand three hundred sixty');\nINSERT INTO t3 VALUES(11542, 10016, 'ten thousand sixteen');\nINSERT INTO t3 VALUES(11543, 56653, 'fifty-six thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(11544, 20556, 'twenty thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(11545, 73367, 'seventy-three thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(11546, 39418, 'thirty-nine thousand four hundred eighteen');\nINSERT INTO t3 VALUES(11547, 40785, 'forty thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(11548, 2341, 'two thousand three hundred forty-one');\nINSERT INTO t3 VALUES(11549, 37849, 'thirty-seven thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(11550, 70967, 'seventy thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(11551, 14564, 'fourteen thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(11552, 64094, 'sixty-four thousand ninety-four');\nINSERT INTO t3 VALUES(11553, 74273, 'seventy-four thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(11554, 59823, 'fifty-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(11555, 76224, 'seventy-six thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(11556, 11430, 'eleven thousand four hundred thirty');\nINSERT INTO t3 VALUES(11557, 57467, 'fifty-seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(11558, 85942, 'eighty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11559, 15638, 'fifteen thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(11560, 48558, 'forty-eight thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11561, 88086, 'eighty-eight thousand eighty-six');\nINSERT INTO t3 VALUES(11562, 70378, 'seventy thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(11563, 23132, 'twenty-three thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(11564, 35014, 'thirty-five thousand fourteen');\nINSERT INTO t3 VALUES(11565, 23330, 'twenty-three thousand three hundred thirty');\nINSERT INTO t3 VALUES(11566, 78371, 'seventy-eight thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(11567, 91395, 'ninety-one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(11568, 53664, 'fifty-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(11569, 61805, 'sixty-one thousand eight hundred five');\nINSERT INTO t3 VALUES(11570, 99207, 'ninety-nine thousand two hundred seven');\nINSERT INTO t3 VALUES(11571, 47569, 'forty-seven thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(11572, 92879, 'ninety-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(11573, 36929, 'thirty-six thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(11574, 60151, 'sixty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(11575, 81954, 'eighty-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(11576, 91591, 'ninety-one thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(11577, 10942, 'ten thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11578, 97663, 'ninety-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(11579, 84918, 'eighty-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(11580, 80587, 'eighty thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(11581, 47675, 'forty-seven thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(11582, 41679, 'forty-one thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(11583, 32270, 'thirty-two thousand two hundred seventy');\nINSERT INTO t3 VALUES(11584, 86234, 'eighty-six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(11585, 88, 'eighty-eight');\nINSERT INTO t3 VALUES(11586, 56924, 'fifty-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(11587, 95872, 'ninety-five thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(11588, 8206, 'eight thousand two hundred six');\nINSERT INTO t3 VALUES(11589, 29602, 'twenty-nine thousand six hundred two');\nINSERT INTO t3 VALUES(11590, 71481, 'seventy-one thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(11591, 5352, 'five thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(11592, 68841, 'sixty-eight thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11593, 36050, 'thirty-six thousand fifty');\nINSERT INTO t3 VALUES(11594, 33688, 'thirty-three thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(11595, 66846, 'sixty-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(11596, 28149, 'twenty-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(11597, 25789, 'twenty-five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(11598, 43626, 'forty-three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(11599, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(11600, 52616, 'fifty-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(11601, 1209, 'one thousand two hundred nine');\nINSERT INTO t3 VALUES(11602, 78254, 'seventy-eight thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(11603, 51943, 'fifty-one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(11604, 47217, 'forty-seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(11605, 16252, 'sixteen thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(11606, 95575, 'ninety-five thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(11607, 12198, 'twelve thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(11608, 17119, 'seventeen thousand one hundred nineteen');\nINSERT INTO t3 VALUES(11609, 88907, 'eighty-eight thousand nine hundred seven');\nINSERT INTO t3 VALUES(11610, 40266, 'forty thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(11611, 91620, 'ninety-one thousand six hundred twenty');\nINSERT INTO t3 VALUES(11612, 47029, 'forty-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(11613, 98400, 'ninety-eight thousand four hundred');\nINSERT INTO t3 VALUES(11614, 54738, 'fifty-four thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(11615, 46033, 'forty-six thousand thirty-three');\nINSERT INTO t3 VALUES(11616, 96272, 'ninety-six thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(11617, 15814, 'fifteen thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(11618, 96535, 'ninety-six thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(11619, 17062, 'seventeen thousand sixty-two');\nINSERT INTO t3 VALUES(11620, 87295, 'eighty-seven thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(11621, 66649, 'sixty-six thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(11622, 88056, 'eighty-eight thousand fifty-six');\nINSERT INTO t3 VALUES(11623, 72071, 'seventy-two thousand seventy-one');\nINSERT INTO t3 VALUES(11624, 2343, 'two thousand three hundred forty-three');\nINSERT INTO t3 VALUES(11625, 18142, 'eighteen thousand one hundred forty-two');\nINSERT INTO t3 VALUES(11626, 5621, 'five thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(11627, 95596, 'ninety-five thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(11628, 59760, 'fifty-nine thousand seven hundred sixty');\nINSERT INTO t3 VALUES(11629, 35927, 'thirty-five thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(11630, 26830, 'twenty-six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(11631, 94860, 'ninety-four thousand eight hundred sixty');\nINSERT INTO t3 VALUES(11632, 62995, 'sixty-two thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(11633, 14163, 'fourteen thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11634, 35378, 'thirty-five thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(11635, 88319, 'eighty-eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(11636, 99214, 'ninety-nine thousand two hundred fourteen');\nINSERT INTO t3 VALUES(11637, 75969, 'seventy-five thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(11638, 60158, 'sixty thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(11639, 1035, 'one thousand thirty-five');\nINSERT INTO t3 VALUES(11640, 24573, 'twenty-four thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(11641, 92899, 'ninety-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(11642, 82980, 'eighty-two thousand nine hundred eighty');\nINSERT INTO t3 VALUES(11643, 57369, 'fifty-seven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(11644, 67895, 'sixty-seven thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(11645, 55084, 'fifty-five thousand eighty-four');\nINSERT INTO t3 VALUES(11646, 22034, 'twenty-two thousand thirty-four');\nINSERT INTO t3 VALUES(11647, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11648, 81056, 'eighty-one thousand fifty-six');\nINSERT INTO t3 VALUES(11649, 83270, 'eighty-three thousand two hundred seventy');\nINSERT INTO t3 VALUES(11650, 92373, 'ninety-two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(11651, 3912, 'three thousand nine hundred twelve');\nINSERT INTO t3 VALUES(11652, 69180, 'sixty-nine thousand one hundred eighty');\nINSERT INTO t3 VALUES(11653, 27208, 'twenty-seven thousand two hundred eight');\nINSERT INTO t3 VALUES(11654, 66841, 'sixty-six thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11655, 7032, 'seven thousand thirty-two');\nINSERT INTO t3 VALUES(11656, 84356, 'eighty-four thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(11657, 29853, 'twenty-nine thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(11658, 2066, 'two thousand sixty-six');\nINSERT INTO t3 VALUES(11659, 88164, 'eighty-eight thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(11660, 25832, 'twenty-five thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(11661, 21040, 'twenty-one thousand forty');\nINSERT INTO t3 VALUES(11662, 78441, 'seventy-eight thousand four hundred forty-one');\nINSERT INTO t3 VALUES(11663, 25490, 'twenty-five thousand four hundred ninety');\nINSERT INTO t3 VALUES(11664, 95833, 'ninety-five thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(11665, 44350, 'forty-four thousand three hundred fifty');\nINSERT INTO t3 VALUES(11666, 55410, 'fifty-five thousand four hundred ten');\nINSERT INTO t3 VALUES(11667, 66586, 'sixty-six thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(11668, 48512, 'forty-eight thousand five hundred twelve');\nINSERT INTO t3 VALUES(11669, 31588, 'thirty-one thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(11670, 71438, 'seventy-one thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(11671, 52689, 'fifty-two thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(11672, 70942, 'seventy thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11673, 60981, 'sixty thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(11674, 7996, 'seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(11675, 80461, 'eighty thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(11676, 88784, 'eighty-eight thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(11677, 67574, 'sixty-seven thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(11678, 41129, 'forty-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(11679, 85524, 'eighty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(11680, 53194, 'fifty-three thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(11681, 41114, 'forty-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(11682, 54224, 'fifty-four thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(11683, 10802, 'ten thousand eight hundred two');\nINSERT INTO t3 VALUES(11684, 16472, 'sixteen thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(11685, 17967, 'seventeen thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(11686, 50698, 'fifty thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(11687, 69813, 'sixty-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(11688, 65960, 'sixty-five thousand nine hundred sixty');\nINSERT INTO t3 VALUES(11689, 29887, 'twenty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(11690, 81718, 'eighty-one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(11691, 51062, 'fifty-one thousand sixty-two');\nINSERT INTO t3 VALUES(11692, 76307, 'seventy-six thousand three hundred seven');\nINSERT INTO t3 VALUES(11693, 60101, 'sixty thousand one hundred one');\nINSERT INTO t3 VALUES(11694, 50075, 'fifty thousand seventy-five');\nINSERT INTO t3 VALUES(11695, 9563, 'nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(11696, 70846, 'seventy thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(11697, 79914, 'seventy-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(11698, 1784, 'one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(11699, 90575, 'ninety thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(11700, 55055, 'fifty-five thousand fifty-five');\nINSERT INTO t3 VALUES(11701, 60297, 'sixty thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(11702, 95805, 'ninety-five thousand eight hundred five');\nINSERT INTO t3 VALUES(11703, 13273, 'thirteen thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(11704, 79815, 'seventy-nine thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(11705, 59620, 'fifty-nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(11706, 21919, 'twenty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11707, 11005, 'eleven thousand five');\nINSERT INTO t3 VALUES(11708, 77163, 'seventy-seven thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(11709, 26919, 'twenty-six thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11710, 55824, 'fifty-five thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(11711, 80913, 'eighty thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(11712, 90684, 'ninety thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(11713, 75231, 'seventy-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(11714, 98491, 'ninety-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(11715, 73973, 'seventy-three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(11716, 37283, 'thirty-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(11717, 21152, 'twenty-one thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(11718, 80724, 'eighty thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(11719, 27993, 'twenty-seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(11720, 67639, 'sixty-seven thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(11721, 55483, 'fifty-five thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(11722, 72527, 'seventy-two thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(11723, 1344, 'one thousand three hundred forty-four');\nINSERT INTO t3 VALUES(11724, 23303, 'twenty-three thousand three hundred three');\nINSERT INTO t3 VALUES(11725, 51649, 'fifty-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(11726, 56219, 'fifty-six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(11727, 83074, 'eighty-three thousand seventy-four');\nINSERT INTO t3 VALUES(11728, 96280, 'ninety-six thousand two hundred eighty');\nINSERT INTO t3 VALUES(11729, 38192, 'thirty-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(11730, 19189, 'nineteen thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(11731, 59908, 'fifty-nine thousand nine hundred eight');\nINSERT INTO t3 VALUES(11732, 96743, 'ninety-six thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(11733, 73681, 'seventy-three thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(11734, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(11735, 37638, 'thirty-seven thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(11736, 80457, 'eighty thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(11737, 85102, 'eighty-five thousand one hundred two');\nINSERT INTO t3 VALUES(11738, 14923, 'fourteen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11739, 26066, 'twenty-six thousand sixty-six');\nINSERT INTO t3 VALUES(11740, 6474, 'six thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(11741, 50681, 'fifty thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(11742, 90915, 'ninety thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(11743, 5375, 'five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(11744, 96972, 'ninety-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(11745, 81165, 'eighty-one thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(11746, 32559, 'thirty-two thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(11747, 21887, 'twenty-one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(11748, 8227, 'eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(11749, 49316, 'forty-nine thousand three hundred sixteen');\nINSERT INTO t3 VALUES(11750, 39034, 'thirty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(11751, 440, 'four hundred forty');\nINSERT INTO t3 VALUES(11752, 18325, 'eighteen thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(11753, 5570, 'five thousand five hundred seventy');\nINSERT INTO t3 VALUES(11754, 75698, 'seventy-five thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(11755, 57080, 'fifty-seven thousand eighty');\nINSERT INTO t3 VALUES(11756, 54906, 'fifty-four thousand nine hundred six');\nINSERT INTO t3 VALUES(11757, 97788, 'ninety-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(11758, 26394, 'twenty-six thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(11759, 12022, 'twelve thousand twenty-two');\nINSERT INTO t3 VALUES(11760, 83671, 'eighty-three thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(11761, 49503, 'forty-nine thousand five hundred three');\nINSERT INTO t3 VALUES(11762, 10326, 'ten thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(11763, 95984, 'ninety-five thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(11764, 36728, 'thirty-six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(11765, 36439, 'thirty-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(11766, 88093, 'eighty-eight thousand ninety-three');\nINSERT INTO t3 VALUES(11767, 33177, 'thirty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(11768, 40412, 'forty thousand four hundred twelve');\nINSERT INTO t3 VALUES(11769, 25415, 'twenty-five thousand four hundred fifteen');\nINSERT INTO t3 VALUES(11770, 37087, 'thirty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(11771, 55410, 'fifty-five thousand four hundred ten');\nINSERT INTO t3 VALUES(11772, 71558, 'seventy-one thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(11773, 85188, 'eighty-five thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(11774, 33580, 'thirty-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(11775, 23461, 'twenty-three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(11776, 7467, 'seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(11777, 73274, 'seventy-three thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(11778, 49985, 'forty-nine thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(11779, 23604, 'twenty-three thousand six hundred four');\nINSERT INTO t3 VALUES(11780, 87154, 'eighty-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(11781, 36464, 'thirty-six thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(11782, 1245, 'one thousand two hundred forty-five');\nINSERT INTO t3 VALUES(11783, 19899, 'nineteen thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(11784, 64, 'sixty-four');\nINSERT INTO t3 VALUES(11785, 35942, 'thirty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(11786, 36544, 'thirty-six thousand five hundred forty-four');\nINSERT INTO t3 VALUES(11787, 39453, 'thirty-nine thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(11788, 35472, 'thirty-five thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(11789, 95839, 'ninety-five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(11790, 65438, 'sixty-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(11791, 80881, 'eighty thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(11792, 91049, 'ninety-one thousand forty-nine');\nINSERT INTO t3 VALUES(11793, 45401, 'forty-five thousand four hundred one');\nINSERT INTO t3 VALUES(11794, 56910, 'fifty-six thousand nine hundred ten');\nINSERT INTO t3 VALUES(11795, 59246, 'fifty-nine thousand two hundred forty-six');\nINSERT INTO t3 VALUES(11796, 60146, 'sixty thousand one hundred forty-six');\nINSERT INTO t3 VALUES(11797, 50273, 'fifty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(11798, 48601, 'forty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(11799, 32324, 'thirty-two thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(11800, 36917, 'thirty-six thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(11801, 8041, 'eight thousand forty-one');\nINSERT INTO t3 VALUES(11802, 57508, 'fifty-seven thousand five hundred eight');\nINSERT INTO t3 VALUES(11803, 88699, 'eighty-eight thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(11804, 56013, 'fifty-six thousand thirteen');\nINSERT INTO t3 VALUES(11805, 89561, 'eighty-nine thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(11806, 35853, 'thirty-five thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(11807, 91112, 'ninety-one thousand one hundred twelve');\nINSERT INTO t3 VALUES(11808, 72755, 'seventy-two thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(11809, 78468, 'seventy-eight thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(11810, 8638, 'eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(11811, 51627, 'fifty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(11812, 15833, 'fifteen thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(11813, 55768, 'fifty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(11814, 51803, 'fifty-one thousand eight hundred three');\nINSERT INTO t3 VALUES(11815, 87582, 'eighty-seven thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(11816, 12511, 'twelve thousand five hundred eleven');\nINSERT INTO t3 VALUES(11817, 31315, 'thirty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(11818, 65312, 'sixty-five thousand three hundred twelve');\nINSERT INTO t3 VALUES(11819, 67665, 'sixty-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(11820, 43973, 'forty-three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(11821, 43589, 'forty-three thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(11822, 5111, 'five thousand one hundred eleven');\nINSERT INTO t3 VALUES(11823, 43796, 'forty-three thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(11824, 65904, 'sixty-five thousand nine hundred four');\nINSERT INTO t3 VALUES(11825, 69766, 'sixty-nine thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(11826, 19447, 'nineteen thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(11827, 20647, 'twenty thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(11828, 6613, 'six thousand six hundred thirteen');\nINSERT INTO t3 VALUES(11829, 62267, 'sixty-two thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(11830, 30086, 'thirty thousand eighty-six');\nINSERT INTO t3 VALUES(11831, 10725, 'ten thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(11832, 3074, 'three thousand seventy-four');\nINSERT INTO t3 VALUES(11833, 19696, 'nineteen thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(11834, 22933, 'twenty-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(11835, 67482, 'sixty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(11836, 79397, 'seventy-nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(11837, 86421, 'eighty-six thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(11838, 39226, 'thirty-nine thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(11839, 29997, 'twenty-nine thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(11840, 79509, 'seventy-nine thousand five hundred nine');\nINSERT INTO t3 VALUES(11841, 44657, 'forty-four thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(11842, 63587, 'sixty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(11843, 14479, 'fourteen thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(11844, 4629, 'four thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(11845, 74761, 'seventy-four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(11846, 9036, 'nine thousand thirty-six');\nINSERT INTO t3 VALUES(11847, 25931, 'twenty-five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(11848, 91702, 'ninety-one thousand seven hundred two');\nINSERT INTO t3 VALUES(11849, 63578, 'sixty-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(11850, 78491, 'seventy-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(11851, 50923, 'fifty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(11852, 28873, 'twenty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(11853, 28932, 'twenty-eight thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(11854, 73152, 'seventy-three thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(11855, 44726, 'forty-four thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(11856, 61010, 'sixty-one thousand ten');\nINSERT INTO t3 VALUES(11857, 70973, 'seventy thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(11858, 77361, 'seventy-seven thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(11859, 21841, 'twenty-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(11860, 42493, 'forty-two thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(11861, 6008, 'six thousand eight');\nINSERT INTO t3 VALUES(11862, 33090, 'thirty-three thousand ninety');\nINSERT INTO t3 VALUES(11863, 24484, 'twenty-four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(11864, 82338, 'eighty-two thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(11865, 72875, 'seventy-two thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(11866, 53087, 'fifty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(11867, 38368, 'thirty-eight thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(11868, 15277, 'fifteen thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(11869, 38838, 'thirty-eight thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(11870, 85835, 'eighty-five thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(11871, 2091, 'two thousand ninety-one');\nINSERT INTO t3 VALUES(11872, 9794, 'nine thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(11873, 89091, 'eighty-nine thousand ninety-one');\nINSERT INTO t3 VALUES(11874, 74736, 'seventy-four thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(11875, 29798, 'twenty-nine thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(11876, 27035, 'twenty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(11877, 12553, 'twelve thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(11878, 73894, 'seventy-three thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(11879, 73009, 'seventy-three thousand nine');\nINSERT INTO t3 VALUES(11880, 6554, 'six thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(11881, 87612, 'eighty-seven thousand six hundred twelve');\nINSERT INTO t3 VALUES(11882, 94342, 'ninety-four thousand three hundred forty-two');\nINSERT INTO t3 VALUES(11883, 42012, 'forty-two thousand twelve');\nINSERT INTO t3 VALUES(11884, 1825, 'one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(11885, 90919, 'ninety thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(11886, 50519, 'fifty thousand five hundred nineteen');\nINSERT INTO t3 VALUES(11887, 6022, 'six thousand twenty-two');\nINSERT INTO t3 VALUES(11888, 3404, 'three thousand four hundred four');\nINSERT INTO t3 VALUES(11889, 97645, 'ninety-seven thousand six hundred forty-five');\nINSERT INTO t3 VALUES(11890, 32575, 'thirty-two thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(11891, 3982, 'three thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(11892, 71443, 'seventy-one thousand four hundred forty-three');\nINSERT INTO t3 VALUES(11893, 42456, 'forty-two thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(11894, 47404, 'forty-seven thousand four hundred four');\nINSERT INTO t3 VALUES(11895, 97548, 'ninety-seven thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(11896, 55393, 'fifty-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(11897, 10696, 'ten thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(11898, 15414, 'fifteen thousand four hundred fourteen');\nINSERT INTO t3 VALUES(11899, 87596, 'eighty-seven thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(11900, 19344, 'nineteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(11901, 61027, 'sixty-one thousand twenty-seven');\nINSERT INTO t3 VALUES(11902, 14105, 'fourteen thousand one hundred five');\nINSERT INTO t3 VALUES(11903, 45470, 'forty-five thousand four hundred seventy');\nINSERT INTO t3 VALUES(11904, 31957, 'thirty-one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(11905, 1912, 'one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(11906, 95194, 'ninety-five thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(11907, 48183, 'forty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(11908, 75915, 'seventy-five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(11909, 97717, 'ninety-seven thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(11910, 34737, 'thirty-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(11911, 67401, 'sixty-seven thousand four hundred one');\nINSERT INTO t3 VALUES(11912, 62222, 'sixty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(11913, 37064, 'thirty-seven thousand sixty-four');\nINSERT INTO t3 VALUES(11914, 81917, 'eighty-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(11915, 71965, 'seventy-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(11916, 7275, 'seven thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(11917, 20064, 'twenty thousand sixty-four');\nINSERT INTO t3 VALUES(11918, 16388, 'sixteen thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(11919, 62706, 'sixty-two thousand seven hundred six');\nINSERT INTO t3 VALUES(11920, 50645, 'fifty thousand six hundred forty-five');\nINSERT INTO t3 VALUES(11921, 15051, 'fifteen thousand fifty-one');\nINSERT INTO t3 VALUES(11922, 51706, 'fifty-one thousand seven hundred six');\nINSERT INTO t3 VALUES(11923, 81934, 'eighty-one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(11924, 70976, 'seventy thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(11925, 503, 'five hundred three');\nINSERT INTO t3 VALUES(11926, 78888, 'seventy-eight thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(11927, 58858, 'fifty-eight thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(11928, 93364, 'ninety-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(11929, 95068, 'ninety-five thousand sixty-eight');\nINSERT INTO t3 VALUES(11930, 84890, 'eighty-four thousand eight hundred ninety');\nINSERT INTO t3 VALUES(11931, 55955, 'fifty-five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(11932, 68322, 'sixty-eight thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(11933, 91462, 'ninety-one thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(11934, 14983, 'fourteen thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(11935, 74169, 'seventy-four thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(11936, 16367, 'sixteen thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(11937, 71572, 'seventy-one thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(11938, 72172, 'seventy-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(11939, 58667, 'fifty-eight thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(11940, 75015, 'seventy-five thousand fifteen');\nINSERT INTO t3 VALUES(11941, 5744, 'five thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(11942, 72618, 'seventy-two thousand six hundred eighteen');\nINSERT INTO t3 VALUES(11943, 27111, 'twenty-seven thousand one hundred eleven');\nINSERT INTO t3 VALUES(11944, 78011, 'seventy-eight thousand eleven');\nINSERT INTO t3 VALUES(11945, 46133, 'forty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(11946, 18135, 'eighteen thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(11947, 38877, 'thirty-eight thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(11948, 53753, 'fifty-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(11949, 73991, 'seventy-three thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(11950, 83165, 'eighty-three thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(11951, 61627, 'sixty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(11952, 84238, 'eighty-four thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(11953, 10115, 'ten thousand one hundred fifteen');\nINSERT INTO t3 VALUES(11954, 85230, 'eighty-five thousand two hundred thirty');\nINSERT INTO t3 VALUES(11955, 7217, 'seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(11956, 35963, 'thirty-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(11957, 9498, 'nine thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(11958, 66553, 'sixty-six thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(11959, 38111, 'thirty-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(11960, 43959, 'forty-three thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(11961, 63156, 'sixty-three thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(11962, 9518, 'nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(11963, 97171, 'ninety-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(11964, 86771, 'eighty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(11965, 69, 'sixty-nine');\nINSERT INTO t3 VALUES(11966, 71894, 'seventy-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(11967, 79599, 'seventy-nine thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(11968, 24985, 'twenty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(11969, 94272, 'ninety-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(11970, 62954, 'sixty-two thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(11971, 20343, 'twenty thousand three hundred forty-three');\nINSERT INTO t3 VALUES(11972, 67213, 'sixty-seven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(11973, 3899, 'three thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(11974, 36809, 'thirty-six thousand eight hundred nine');\nINSERT INTO t3 VALUES(11975, 12182, 'twelve thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(11976, 25246, 'twenty-five thousand two hundred forty-six');\nINSERT INTO t3 VALUES(11977, 44154, 'forty-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(11978, 863, 'eight hundred sixty-three');\nINSERT INTO t3 VALUES(11979, 17694, 'seventeen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(11980, 90126, 'ninety thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(11981, 22030, 'twenty-two thousand thirty');\nINSERT INTO t3 VALUES(11982, 97792, 'ninety-seven thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(11983, 53180, 'fifty-three thousand one hundred eighty');\nINSERT INTO t3 VALUES(11984, 28533, 'twenty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(11985, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(11986, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(11987, 72171, 'seventy-two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(11988, 84881, 'eighty-four thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(11989, 18068, 'eighteen thousand sixty-eight');\nINSERT INTO t3 VALUES(11990, 15229, 'fifteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(11991, 69248, 'sixty-nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(11992, 16246, 'sixteen thousand two hundred forty-six');\nINSERT INTO t3 VALUES(11993, 86592, 'eighty-six thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(11994, 20767, 'twenty thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(11995, 78504, 'seventy-eight thousand five hundred four');\nINSERT INTO t3 VALUES(11996, 54547, 'fifty-four thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(11997, 48341, 'forty-eight thousand three hundred forty-one');\nINSERT INTO t3 VALUES(11998, 40232, 'forty thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(11999, 68392, 'sixty-eight thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(12000, 51554, 'fifty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(12001, 65801, 'sixty-five thousand eight hundred one');\nINSERT INTO t3 VALUES(12002, 53753, 'fifty-three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(12003, 32296, 'thirty-two thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(12004, 87943, 'eighty-seven thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(12005, 44196, 'forty-four thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(12006, 16664, 'sixteen thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(12007, 2471, 'two thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(12008, 83255, 'eighty-three thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(12009, 86819, 'eighty-six thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(12010, 26459, 'twenty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(12011, 63043, 'sixty-three thousand forty-three');\nINSERT INTO t3 VALUES(12012, 42042, 'forty-two thousand forty-two');\nINSERT INTO t3 VALUES(12013, 79976, 'seventy-nine thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(12014, 38489, 'thirty-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(12015, 10762, 'ten thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(12016, 84345, 'eighty-four thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12017, 34126, 'thirty-four thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(12018, 92073, 'ninety-two thousand seventy-three');\nINSERT INTO t3 VALUES(12019, 18829, 'eighteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(12020, 93695, 'ninety-three thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(12021, 77837, 'seventy-seven thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(12022, 70889, 'seventy thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(12023, 24732, 'twenty-four thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(12024, 33022, 'thirty-three thousand twenty-two');\nINSERT INTO t3 VALUES(12025, 63120, 'sixty-three thousand one hundred twenty');\nINSERT INTO t3 VALUES(12026, 55172, 'fifty-five thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(12027, 10044, 'ten thousand forty-four');\nINSERT INTO t3 VALUES(12028, 55713, 'fifty-five thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(12029, 95963, 'ninety-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(12030, 47040, 'forty-seven thousand forty');\nINSERT INTO t3 VALUES(12031, 32114, 'thirty-two thousand one hundred fourteen');\nINSERT INTO t3 VALUES(12032, 53632, 'fifty-three thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(12033, 26503, 'twenty-six thousand five hundred three');\nINSERT INTO t3 VALUES(12034, 202, 'two hundred two');\nINSERT INTO t3 VALUES(12035, 64647, 'sixty-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(12036, 27092, 'twenty-seven thousand ninety-two');\nINSERT INTO t3 VALUES(12037, 93899, 'ninety-three thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(12038, 18597, 'eighteen thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(12039, 43637, 'forty-three thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(12040, 24440, 'twenty-four thousand four hundred forty');\nINSERT INTO t3 VALUES(12041, 33105, 'thirty-three thousand one hundred five');\nINSERT INTO t3 VALUES(12042, 39500, 'thirty-nine thousand five hundred');\nINSERT INTO t3 VALUES(12043, 27059, 'twenty-seven thousand fifty-nine');\nINSERT INTO t3 VALUES(12044, 58717, 'fifty-eight thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(12045, 53111, 'fifty-three thousand one hundred eleven');\nINSERT INTO t3 VALUES(12046, 41779, 'forty-one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(12047, 15163, 'fifteen thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(12048, 29164, 'twenty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(12049, 89874, 'eighty-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(12050, 21246, 'twenty-one thousand two hundred forty-six');\nINSERT INTO t3 VALUES(12051, 37226, 'thirty-seven thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(12052, 24850, 'twenty-four thousand eight hundred fifty');\nINSERT INTO t3 VALUES(12053, 54187, 'fifty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(12054, 95951, 'ninety-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(12055, 62399, 'sixty-two thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(12056, 83078, 'eighty-three thousand seventy-eight');\nINSERT INTO t3 VALUES(12057, 6860, 'six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(12058, 60798, 'sixty thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12059, 76887, 'seventy-six thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(12060, 89067, 'eighty-nine thousand sixty-seven');\nINSERT INTO t3 VALUES(12061, 94654, 'ninety-four thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(12062, 35551, 'thirty-five thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(12063, 82960, 'eighty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(12064, 36925, 'thirty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(12065, 8681, 'eight thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12066, 93072, 'ninety-three thousand seventy-two');\nINSERT INTO t3 VALUES(12067, 41628, 'forty-one thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(12068, 90514, 'ninety thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12069, 22772, 'twenty-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(12070, 54182, 'fifty-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(12071, 29198, 'twenty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(12072, 50855, 'fifty thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(12073, 4904, 'four thousand nine hundred four');\nINSERT INTO t3 VALUES(12074, 94642, 'ninety-four thousand six hundred forty-two');\nINSERT INTO t3 VALUES(12075, 10151, 'ten thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(12076, 61006, 'sixty-one thousand six');\nINSERT INTO t3 VALUES(12077, 51419, 'fifty-one thousand four hundred nineteen');\nINSERT INTO t3 VALUES(12078, 2005, 'two thousand five');\nINSERT INTO t3 VALUES(12079, 29342, 'twenty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(12080, 85539, 'eighty-five thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(12081, 29893, 'twenty-nine thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(12082, 46842, 'forty-six thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(12083, 6470, 'six thousand four hundred seventy');\nINSERT INTO t3 VALUES(12084, 890, 'eight hundred ninety');\nINSERT INTO t3 VALUES(12085, 5458, 'five thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(12086, 95722, 'ninety-five thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(12087, 34434, 'thirty-four thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(12088, 65788, 'sixty-five thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(12089, 58906, 'fifty-eight thousand nine hundred six');\nINSERT INTO t3 VALUES(12090, 66846, 'sixty-six thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(12091, 62130, 'sixty-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(12092, 18517, 'eighteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(12093, 1055, 'one thousand fifty-five');\nINSERT INTO t3 VALUES(12094, 86514, 'eighty-six thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12095, 87724, 'eighty-seven thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(12096, 38686, 'thirty-eight thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(12097, 52524, 'fifty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(12098, 68645, 'sixty-eight thousand six hundred forty-five');\nINSERT INTO t3 VALUES(12099, 86971, 'eighty-six thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(12100, 6454, 'six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(12101, 13352, 'thirteen thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12102, 2788, 'two thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(12103, 24667, 'twenty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(12104, 27157, 'twenty-seven thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(12105, 74556, 'seventy-four thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(12106, 17054, 'seventeen thousand fifty-four');\nINSERT INTO t3 VALUES(12107, 28219, 'twenty-eight thousand two hundred nineteen');\nINSERT INTO t3 VALUES(12108, 99698, 'ninety-nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(12109, 55770, 'fifty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(12110, 95691, 'ninety-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(12111, 77680, 'seventy-seven thousand six hundred eighty');\nINSERT INTO t3 VALUES(12112, 82557, 'eighty-two thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(12113, 84289, 'eighty-four thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(12114, 92640, 'ninety-two thousand six hundred forty');\nINSERT INTO t3 VALUES(12115, 24198, 'twenty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(12116, 43715, 'forty-three thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(12117, 94437, 'ninety-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(12118, 72542, 'seventy-two thousand five hundred forty-two');\nINSERT INTO t3 VALUES(12119, 97924, 'ninety-seven thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(12120, 75797, 'seventy-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(12121, 89770, 'eighty-nine thousand seven hundred seventy');\nINSERT INTO t3 VALUES(12122, 29356, 'twenty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(12123, 79476, 'seventy-nine thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(12124, 11380, 'eleven thousand three hundred eighty');\nINSERT INTO t3 VALUES(12125, 35412, 'thirty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(12126, 86036, 'eighty-six thousand thirty-six');\nINSERT INTO t3 VALUES(12127, 51651, 'fifty-one thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12128, 15728, 'fifteen thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(12129, 50357, 'fifty thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(12130, 39694, 'thirty-nine thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(12131, 51963, 'fifty-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(12132, 46895, 'forty-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(12133, 17207, 'seventeen thousand two hundred seven');\nINSERT INTO t3 VALUES(12134, 49024, 'forty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(12135, 78280, 'seventy-eight thousand two hundred eighty');\nINSERT INTO t3 VALUES(12136, 83475, 'eighty-three thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(12137, 63565, 'sixty-three thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(12138, 54154, 'fifty-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(12139, 57673, 'fifty-seven thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(12140, 85932, 'eighty-five thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(12141, 31555, 'thirty-one thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(12142, 9508, 'nine thousand five hundred eight');\nINSERT INTO t3 VALUES(12143, 73567, 'seventy-three thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(12144, 44988, 'forty-four thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(12145, 21127, 'twenty-one thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(12146, 61012, 'sixty-one thousand twelve');\nINSERT INTO t3 VALUES(12147, 77837, 'seventy-seven thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(12148, 73851, 'seventy-three thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(12149, 2111, 'two thousand one hundred eleven');\nINSERT INTO t3 VALUES(12150, 73767, 'seventy-three thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(12151, 62354, 'sixty-two thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(12152, 61977, 'sixty-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(12153, 73744, 'seventy-three thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(12154, 95066, 'ninety-five thousand sixty-six');\nINSERT INTO t3 VALUES(12155, 31700, 'thirty-one thousand seven hundred');\nINSERT INTO t3 VALUES(12156, 72926, 'seventy-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(12157, 72676, 'seventy-two thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(12158, 72285, 'seventy-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(12159, 49915, 'forty-nine thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(12160, 7776, 'seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(12161, 43821, 'forty-three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(12162, 28575, 'twenty-eight thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(12163, 92576, 'ninety-two thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(12164, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t3 VALUES(12165, 88258, 'eighty-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(12166, 95707, 'ninety-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(12167, 24589, 'twenty-four thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(12168, 46285, 'forty-six thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(12169, 5068, 'five thousand sixty-eight');\nINSERT INTO t3 VALUES(12170, 51316, 'fifty-one thousand three hundred sixteen');\nINSERT INTO t3 VALUES(12171, 15037, 'fifteen thousand thirty-seven');\nINSERT INTO t3 VALUES(12172, 66199, 'sixty-six thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(12173, 33768, 'thirty-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(12174, 24122, 'twenty-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(12175, 17389, 'seventeen thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(12176, 65942, 'sixty-five thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(12177, 52529, 'fifty-two thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(12178, 68202, 'sixty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(12179, 72068, 'seventy-two thousand sixty-eight');\nINSERT INTO t3 VALUES(12180, 83937, 'eighty-three thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(12181, 61400, 'sixty-one thousand four hundred');\nINSERT INTO t3 VALUES(12182, 13197, 'thirteen thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(12183, 13985, 'thirteen thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(12184, 52156, 'fifty-two thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(12185, 40126, 'forty thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(12186, 58642, 'fifty-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(12187, 58419, 'fifty-eight thousand four hundred nineteen');\nINSERT INTO t3 VALUES(12188, 49468, 'forty-nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(12189, 72777, 'seventy-two thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(12190, 95503, 'ninety-five thousand five hundred three');\nINSERT INTO t3 VALUES(12191, 49326, 'forty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(12192, 42014, 'forty-two thousand fourteen');\nINSERT INTO t3 VALUES(12193, 79926, 'seventy-nine thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(12194, 57119, 'fifty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(12195, 42271, 'forty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(12196, 23936, 'twenty-three thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(12197, 42816, 'forty-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(12198, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(12199, 37571, 'thirty-seven thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(12200, 59291, 'fifty-nine thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12201, 15587, 'fifteen thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(12202, 38850, 'thirty-eight thousand eight hundred fifty');\nINSERT INTO t3 VALUES(12203, 96783, 'ninety-six thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(12204, 10262, 'ten thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(12205, 19792, 'nineteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(12206, 25424, 'twenty-five thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(12207, 86536, 'eighty-six thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(12208, 91299, 'ninety-one thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(12209, 9903, 'nine thousand nine hundred three');\nINSERT INTO t3 VALUES(12210, 75237, 'seventy-five thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(12211, 53924, 'fifty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(12212, 25495, 'twenty-five thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(12213, 67720, 'sixty-seven thousand seven hundred twenty');\nINSERT INTO t3 VALUES(12214, 33077, 'thirty-three thousand seventy-seven');\nINSERT INTO t3 VALUES(12215, 65158, 'sixty-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(12216, 67488, 'sixty-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(12217, 25822, 'twenty-five thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(12218, 38798, 'thirty-eight thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12219, 92248, 'ninety-two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(12220, 3957, 'three thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(12221, 23961, 'twenty-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(12222, 83061, 'eighty-three thousand sixty-one');\nINSERT INTO t3 VALUES(12223, 47859, 'forty-seven thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(12224, 23347, 'twenty-three thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(12225, 78524, 'seventy-eight thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(12226, 97047, 'ninety-seven thousand forty-seven');\nINSERT INTO t3 VALUES(12227, 27575, 'twenty-seven thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(12228, 10705, 'ten thousand seven hundred five');\nINSERT INTO t3 VALUES(12229, 49985, 'forty-nine thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(12230, 38058, 'thirty-eight thousand fifty-eight');\nINSERT INTO t3 VALUES(12231, 44581, 'forty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(12232, 91085, 'ninety-one thousand eighty-five');\nINSERT INTO t3 VALUES(12233, 18906, 'eighteen thousand nine hundred six');\nINSERT INTO t3 VALUES(12234, 74999, 'seventy-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(12235, 93218, 'ninety-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(12236, 48374, 'forty-eight thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(12237, 20996, 'twenty thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(12238, 89650, 'eighty-nine thousand six hundred fifty');\nINSERT INTO t3 VALUES(12239, 42672, 'forty-two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(12240, 44001, 'forty-four thousand one');\nINSERT INTO t3 VALUES(12241, 70701, 'seventy thousand seven hundred one');\nINSERT INTO t3 VALUES(12242, 8247, 'eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(12243, 51628, 'fifty-one thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(12244, 63409, 'sixty-three thousand four hundred nine');\nINSERT INTO t3 VALUES(12245, 54207, 'fifty-four thousand two hundred seven');\nINSERT INTO t3 VALUES(12246, 42940, 'forty-two thousand nine hundred forty');\nINSERT INTO t3 VALUES(12247, 18088, 'eighteen thousand eighty-eight');\nINSERT INTO t3 VALUES(12248, 58027, 'fifty-eight thousand twenty-seven');\nINSERT INTO t3 VALUES(12249, 2377, 'two thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(12250, 75368, 'seventy-five thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(12251, 75268, 'seventy-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(12252, 30975, 'thirty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(12253, 20743, 'twenty thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(12254, 88758, 'eighty-eight thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(12255, 84075, 'eighty-four thousand seventy-five');\nINSERT INTO t3 VALUES(12256, 68101, 'sixty-eight thousand one hundred one');\nINSERT INTO t3 VALUES(12257, 99073, 'ninety-nine thousand seventy-three');\nINSERT INTO t3 VALUES(12258, 40425, 'forty thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(12259, 72976, 'seventy-two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(12260, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(12261, 14725, 'fourteen thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(12262, 71352, 'seventy-one thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12263, 70754, 'seventy thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(12264, 56111, 'fifty-six thousand one hundred eleven');\nINSERT INTO t3 VALUES(12265, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(12266, 82841, 'eighty-two thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(12267, 14546, 'fourteen thousand five hundred forty-six');\nINSERT INTO t3 VALUES(12268, 68833, 'sixty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(12269, 13914, 'thirteen thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(12270, 94002, 'ninety-four thousand two');\nINSERT INTO t3 VALUES(12271, 17228, 'seventeen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(12272, 50320, 'fifty thousand three hundred twenty');\nINSERT INTO t3 VALUES(12273, 81657, 'eighty-one thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(12274, 26352, 'twenty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12275, 33434, 'thirty-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(12276, 63140, 'sixty-three thousand one hundred forty');\nINSERT INTO t3 VALUES(12277, 61847, 'sixty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(12278, 60849, 'sixty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(12279, 58925, 'fifty-eight thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(12280, 82246, 'eighty-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(12281, 75025, 'seventy-five thousand twenty-five');\nINSERT INTO t3 VALUES(12282, 16427, 'sixteen thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(12283, 84464, 'eighty-four thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(12284, 85030, 'eighty-five thousand thirty');\nINSERT INTO t3 VALUES(12285, 54040, 'fifty-four thousand forty');\nINSERT INTO t3 VALUES(12286, 57978, 'fifty-seven thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(12287, 32230, 'thirty-two thousand two hundred thirty');\nINSERT INTO t3 VALUES(12288, 62464, 'sixty-two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(12289, 6503, 'six thousand five hundred three');\nINSERT INTO t3 VALUES(12290, 11213, 'eleven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(12291, 20569, 'twenty thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(12292, 76107, 'seventy-six thousand one hundred seven');\nINSERT INTO t3 VALUES(12293, 69219, 'sixty-nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(12294, 75998, 'seventy-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(12295, 76402, 'seventy-six thousand four hundred two');\nINSERT INTO t3 VALUES(12296, 42049, 'forty-two thousand forty-nine');\nINSERT INTO t3 VALUES(12297, 44074, 'forty-four thousand seventy-four');\nINSERT INTO t3 VALUES(12298, 97327, 'ninety-seven thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(12299, 88499, 'eighty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(12300, 88271, 'eighty-eight thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(12301, 91414, 'ninety-one thousand four hundred fourteen');\nINSERT INTO t3 VALUES(12302, 25551, 'twenty-five thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(12303, 92869, 'ninety-two thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(12304, 17470, 'seventeen thousand four hundred seventy');\nINSERT INTO t3 VALUES(12305, 49322, 'forty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(12306, 4405, 'four thousand four hundred five');\nINSERT INTO t3 VALUES(12307, 49683, 'forty-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(12308, 93222, 'ninety-three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(12309, 36708, 'thirty-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(12310, 66742, 'sixty-six thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(12311, 34969, 'thirty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(12312, 89482, 'eighty-nine thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12313, 58554, 'fifty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(12314, 39993, 'thirty-nine thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(12315, 50638, 'fifty thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(12316, 4791, 'four thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(12317, 66854, 'sixty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(12318, 25504, 'twenty-five thousand five hundred four');\nINSERT INTO t3 VALUES(12319, 67298, 'sixty-seven thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(12320, 7335, 'seven thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(12321, 89558, 'eighty-nine thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(12322, 45790, 'forty-five thousand seven hundred ninety');\nINSERT INTO t3 VALUES(12323, 48365, 'forty-eight thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(12324, 19106, 'nineteen thousand one hundred six');\nINSERT INTO t3 VALUES(12325, 51267, 'fifty-one thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(12326, 3146, 'three thousand one hundred forty-six');\nINSERT INTO t3 VALUES(12327, 87813, 'eighty-seven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(12328, 10331, 'ten thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(12329, 96012, 'ninety-six thousand twelve');\nINSERT INTO t3 VALUES(12330, 28797, 'twenty-eight thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(12331, 91533, 'ninety-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(12332, 14340, 'fourteen thousand three hundred forty');\nINSERT INTO t3 VALUES(12333, 52036, 'fifty-two thousand thirty-six');\nINSERT INTO t3 VALUES(12334, 5733, 'five thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(12335, 8866, 'eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(12336, 11371, 'eleven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(12337, 55413, 'fifty-five thousand four hundred thirteen');\nINSERT INTO t3 VALUES(12338, 23904, 'twenty-three thousand nine hundred four');\nINSERT INTO t3 VALUES(12339, 56802, 'fifty-six thousand eight hundred two');\nINSERT INTO t3 VALUES(12340, 87067, 'eighty-seven thousand sixty-seven');\nINSERT INTO t3 VALUES(12341, 83206, 'eighty-three thousand two hundred six');\nINSERT INTO t3 VALUES(12342, 40947, 'forty thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(12343, 72030, 'seventy-two thousand thirty');\nINSERT INTO t3 VALUES(12344, 88626, 'eighty-eight thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(12345, 80309, 'eighty thousand three hundred nine');\nINSERT INTO t3 VALUES(12346, 31106, 'thirty-one thousand one hundred six');\nINSERT INTO t3 VALUES(12347, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(12348, 78295, 'seventy-eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(12349, 79065, 'seventy-nine thousand sixty-five');\nINSERT INTO t3 VALUES(12350, 23927, 'twenty-three thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(12351, 54139, 'fifty-four thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(12352, 83607, 'eighty-three thousand six hundred seven');\nINSERT INTO t3 VALUES(12353, 97703, 'ninety-seven thousand seven hundred three');\nINSERT INTO t3 VALUES(12354, 86390, 'eighty-six thousand three hundred ninety');\nINSERT INTO t3 VALUES(12355, 81581, 'eighty-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(12356, 65125, 'sixty-five thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(12357, 25619, 'twenty-five thousand six hundred nineteen');\nINSERT INTO t3 VALUES(12358, 45601, 'forty-five thousand six hundred one');\nINSERT INTO t3 VALUES(12359, 65234, 'sixty-five thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(12360, 76715, 'seventy-six thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(12361, 35896, 'thirty-five thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(12362, 69346, 'sixty-nine thousand three hundred forty-six');\nINSERT INTO t3 VALUES(12363, 67174, 'sixty-seven thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12364, 3094, 'three thousand ninety-four');\nINSERT INTO t3 VALUES(12365, 558, 'five hundred fifty-eight');\nINSERT INTO t3 VALUES(12366, 47389, 'forty-seven thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(12367, 44635, 'forty-four thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(12368, 54662, 'fifty-four thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(12369, 32752, 'thirty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(12370, 78081, 'seventy-eight thousand eighty-one');\nINSERT INTO t3 VALUES(12371, 33368, 'thirty-three thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(12372, 31931, 'thirty-one thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(12373, 43170, 'forty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(12374, 71960, 'seventy-one thousand nine hundred sixty');\nINSERT INTO t3 VALUES(12375, 38617, 'thirty-eight thousand six hundred seventeen');\nINSERT INTO t3 VALUES(12376, 82807, 'eighty-two thousand eight hundred seven');\nINSERT INTO t3 VALUES(12377, 10336, 'ten thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(12378, 1412, 'one thousand four hundred twelve');\nINSERT INTO t3 VALUES(12379, 32118, 'thirty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(12380, 64392, 'sixty-four thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(12381, 42476, 'forty-two thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(12382, 27134, 'twenty-seven thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(12383, 47740, 'forty-seven thousand seven hundred forty');\nINSERT INTO t3 VALUES(12384, 7011, 'seven thousand eleven');\nINSERT INTO t3 VALUES(12385, 20480, 'twenty thousand four hundred eighty');\nINSERT INTO t3 VALUES(12386, 78531, 'seventy-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(12387, 71055, 'seventy-one thousand fifty-five');\nINSERT INTO t3 VALUES(12388, 8399, 'eight thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(12389, 58006, 'fifty-eight thousand six');\nINSERT INTO t3 VALUES(12390, 69496, 'sixty-nine thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(12391, 96798, 'ninety-six thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12392, 79086, 'seventy-nine thousand eighty-six');\nINSERT INTO t3 VALUES(12393, 56704, 'fifty-six thousand seven hundred four');\nINSERT INTO t3 VALUES(12394, 32766, 'thirty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(12395, 15365, 'fifteen thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(12396, 56636, 'fifty-six thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(12397, 52152, 'fifty-two thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(12398, 4018, 'four thousand eighteen');\nINSERT INTO t3 VALUES(12399, 95012, 'ninety-five thousand twelve');\nINSERT INTO t3 VALUES(12400, 43967, 'forty-three thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(12401, 30962, 'thirty thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(12402, 51535, 'fifty-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(12403, 66800, 'sixty-six thousand eight hundred');\nINSERT INTO t3 VALUES(12404, 46071, 'forty-six thousand seventy-one');\nINSERT INTO t3 VALUES(12405, 63123, 'sixty-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(12406, 96410, 'ninety-six thousand four hundred ten');\nINSERT INTO t3 VALUES(12407, 42174, 'forty-two thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12408, 83887, 'eighty-three thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(12409, 24188, 'twenty-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(12410, 41230, 'forty-one thousand two hundred thirty');\nINSERT INTO t3 VALUES(12411, 57121, 'fifty-seven thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(12412, 47047, 'forty-seven thousand forty-seven');\nINSERT INTO t3 VALUES(12413, 65933, 'sixty-five thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(12414, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(12415, 28993, 'twenty-eight thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(12416, 43252, 'forty-three thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(12417, 59452, 'fifty-nine thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(12418, 67675, 'sixty-seven thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(12419, 4068, 'four thousand sixty-eight');\nINSERT INTO t3 VALUES(12420, 51511, 'fifty-one thousand five hundred eleven');\nINSERT INTO t3 VALUES(12421, 37323, 'thirty-seven thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(12422, 98598, 'ninety-eight thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(12423, 70363, 'seventy thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(12424, 88471, 'eighty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(12425, 96800, 'ninety-six thousand eight hundred');\nINSERT INTO t3 VALUES(12426, 66953, 'sixty-six thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(12427, 93859, 'ninety-three thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(12428, 85522, 'eighty-five thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(12429, 83734, 'eighty-three thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12430, 8259, 'eight thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(12431, 39924, 'thirty-nine thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(12432, 75262, 'seventy-five thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(12433, 20752, 'twenty thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(12434, 32105, 'thirty-two thousand one hundred five');\nINSERT INTO t3 VALUES(12435, 16337, 'sixteen thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(12436, 1699, 'one thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(12437, 88600, 'eighty-eight thousand six hundred');\nINSERT INTO t3 VALUES(12438, 15719, 'fifteen thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(12439, 46010, 'forty-six thousand ten');\nINSERT INTO t3 VALUES(12440, 46329, 'forty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(12441, 60870, 'sixty thousand eight hundred seventy');\nINSERT INTO t3 VALUES(12442, 15013, 'fifteen thousand thirteen');\nINSERT INTO t3 VALUES(12443, 1396, 'one thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(12444, 9929, 'nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(12445, 82977, 'eighty-two thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(12446, 20123, 'twenty thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(12447, 18137, 'eighteen thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(12448, 84531, 'eighty-four thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(12449, 22905, 'twenty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(12450, 8244, 'eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(12451, 79957, 'seventy-nine thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(12452, 6762, 'six thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(12453, 80350, 'eighty thousand three hundred fifty');\nINSERT INTO t3 VALUES(12454, 24058, 'twenty-four thousand fifty-eight');\nINSERT INTO t3 VALUES(12455, 28450, 'twenty-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(12456, 25114, 'twenty-five thousand one hundred fourteen');\nINSERT INTO t3 VALUES(12457, 25121, 'twenty-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(12458, 81767, 'eighty-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(12459, 32815, 'thirty-two thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(12460, 58684, 'fifty-eight thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(12461, 12150, 'twelve thousand one hundred fifty');\nINSERT INTO t3 VALUES(12462, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(12463, 94481, 'ninety-four thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(12464, 25271, 'twenty-five thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(12465, 15510, 'fifteen thousand five hundred ten');\nINSERT INTO t3 VALUES(12466, 37587, 'thirty-seven thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(12467, 18037, 'eighteen thousand thirty-seven');\nINSERT INTO t3 VALUES(12468, 47583, 'forty-seven thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(12469, 48867, 'forty-eight thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(12470, 50053, 'fifty thousand fifty-three');\nINSERT INTO t3 VALUES(12471, 94736, 'ninety-four thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(12472, 87965, 'eighty-seven thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(12473, 55778, 'fifty-five thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(12474, 67748, 'sixty-seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(12475, 34690, 'thirty-four thousand six hundred ninety');\nINSERT INTO t3 VALUES(12476, 50922, 'fifty thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(12477, 8715, 'eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(12478, 12945, 'twelve thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(12479, 68002, 'sixty-eight thousand two');\nINSERT INTO t3 VALUES(12480, 15048, 'fifteen thousand forty-eight');\nINSERT INTO t3 VALUES(12481, 91440, 'ninety-one thousand four hundred forty');\nINSERT INTO t3 VALUES(12482, 51865, 'fifty-one thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(12483, 11627, 'eleven thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(12484, 98039, 'ninety-eight thousand thirty-nine');\nINSERT INTO t3 VALUES(12485, 32256, 'thirty-two thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(12486, 99595, 'ninety-nine thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(12487, 29250, 'twenty-nine thousand two hundred fifty');\nINSERT INTO t3 VALUES(12488, 77049, 'seventy-seven thousand forty-nine');\nINSERT INTO t3 VALUES(12489, 86646, 'eighty-six thousand six hundred forty-six');\nINSERT INTO t3 VALUES(12490, 41257, 'forty-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(12491, 77597, 'seventy-seven thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(12492, 9909, 'nine thousand nine hundred nine');\nINSERT INTO t3 VALUES(12493, 72690, 'seventy-two thousand six hundred ninety');\nINSERT INTO t3 VALUES(12494, 73231, 'seventy-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(12495, 1184, 'one thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(12496, 27663, 'twenty-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(12497, 29064, 'twenty-nine thousand sixty-four');\nINSERT INTO t3 VALUES(12498, 44542, 'forty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(12499, 50700, 'fifty thousand seven hundred');\nINSERT INTO t3 VALUES(12500, 64527, 'sixty-four thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(12501, 27776, 'twenty-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(12502, 71905, 'seventy-one thousand nine hundred five');\nINSERT INTO t3 VALUES(12503, 63327, 'sixty-three thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(12504, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(12505, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(12506, 41381, 'forty-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(12507, 12987, 'twelve thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(12508, 94291, 'ninety-four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12509, 83630, 'eighty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(12510, 36087, 'thirty-six thousand eighty-seven');\nINSERT INTO t3 VALUES(12511, 28941, 'twenty-eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(12512, 68723, 'sixty-eight thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(12513, 36126, 'thirty-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(12514, 63247, 'sixty-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(12515, 69046, 'sixty-nine thousand forty-six');\nINSERT INTO t3 VALUES(12516, 23716, 'twenty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(12517, 54643, 'fifty-four thousand six hundred forty-three');\nINSERT INTO t3 VALUES(12518, 68032, 'sixty-eight thousand thirty-two');\nINSERT INTO t3 VALUES(12519, 15832, 'fifteen thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(12520, 28522, 'twenty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(12521, 1615, 'one thousand six hundred fifteen');\nINSERT INTO t3 VALUES(12522, 56734, 'fifty-six thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12523, 29381, 'twenty-nine thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(12524, 96784, 'ninety-six thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(12525, 25678, 'twenty-five thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(12526, 25660, 'twenty-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(12527, 51583, 'fifty-one thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(12528, 41817, 'forty-one thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(12529, 65995, 'sixty-five thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(12530, 18128, 'eighteen thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(12531, 26780, 'twenty-six thousand seven hundred eighty');\nINSERT INTO t3 VALUES(12532, 35231, 'thirty-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(12533, 54947, 'fifty-four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(12534, 45299, 'forty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(12535, 16410, 'sixteen thousand four hundred ten');\nINSERT INTO t3 VALUES(12536, 28447, 'twenty-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(12537, 34234, 'thirty-four thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(12538, 93067, 'ninety-three thousand sixty-seven');\nINSERT INTO t3 VALUES(12539, 357, 'three hundred fifty-seven');\nINSERT INTO t3 VALUES(12540, 37564, 'thirty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(12541, 78133, 'seventy-eight thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(12542, 12698, 'twelve thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(12543, 81735, 'eighty-one thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(12544, 85149, 'eighty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(12545, 6787, 'six thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(12546, 8320, 'eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(12547, 7963, 'seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(12548, 66394, 'sixty-six thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(12549, 83934, 'eighty-three thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(12550, 67896, 'sixty-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(12551, 18949, 'eighteen thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(12552, 75265, 'seventy-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(12553, 12320, 'twelve thousand three hundred twenty');\nINSERT INTO t3 VALUES(12554, 50364, 'fifty thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(12555, 85557, 'eighty-five thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(12556, 61745, 'sixty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(12557, 33129, 'thirty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(12558, 82482, 'eighty-two thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12559, 29300, 'twenty-nine thousand three hundred');\nINSERT INTO t3 VALUES(12560, 39206, 'thirty-nine thousand two hundred six');\nINSERT INTO t3 VALUES(12561, 31842, 'thirty-one thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(12562, 21973, 'twenty-one thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(12563, 24646, 'twenty-four thousand six hundred forty-six');\nINSERT INTO t3 VALUES(12564, 17006, 'seventeen thousand six');\nINSERT INTO t3 VALUES(12565, 57897, 'fifty-seven thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(12566, 46859, 'forty-six thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(12567, 68650, 'sixty-eight thousand six hundred fifty');\nINSERT INTO t3 VALUES(12568, 19990, 'nineteen thousand nine hundred ninety');\nINSERT INTO t3 VALUES(12569, 54074, 'fifty-four thousand seventy-four');\nINSERT INTO t3 VALUES(12570, 75240, 'seventy-five thousand two hundred forty');\nINSERT INTO t3 VALUES(12571, 53637, 'fifty-three thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(12572, 33994, 'thirty-three thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(12573, 40402, 'forty thousand four hundred two');\nINSERT INTO t3 VALUES(12574, 23534, 'twenty-three thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(12575, 38116, 'thirty-eight thousand one hundred sixteen');\nINSERT INTO t3 VALUES(12576, 63651, 'sixty-three thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12577, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(12578, 84345, 'eighty-four thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12579, 24704, 'twenty-four thousand seven hundred four');\nINSERT INTO t3 VALUES(12580, 6299, 'six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(12581, 13423, 'thirteen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(12582, 49551, 'forty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(12583, 61536, 'sixty-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(12584, 99195, 'ninety-nine thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(12585, 90974, 'ninety thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(12586, 86382, 'eighty-six thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(12587, 98600, 'ninety-eight thousand six hundred');\nINSERT INTO t3 VALUES(12588, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(12589, 6230, 'six thousand two hundred thirty');\nINSERT INTO t3 VALUES(12590, 84415, 'eighty-four thousand four hundred fifteen');\nINSERT INTO t3 VALUES(12591, 13190, 'thirteen thousand one hundred ninety');\nINSERT INTO t3 VALUES(12592, 40445, 'forty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(12593, 27416, 'twenty-seven thousand four hundred sixteen');\nINSERT INTO t3 VALUES(12594, 22997, 'twenty-two thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(12595, 73654, 'seventy-three thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(12596, 45799, 'forty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(12597, 11809, 'eleven thousand eight hundred nine');\nINSERT INTO t3 VALUES(12598, 71345, 'seventy-one thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12599, 78930, 'seventy-eight thousand nine hundred thirty');\nINSERT INTO t3 VALUES(12600, 44539, 'forty-four thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(12601, 25888, 'twenty-five thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(12602, 55168, 'fifty-five thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(12603, 17408, 'seventeen thousand four hundred eight');\nINSERT INTO t3 VALUES(12604, 91046, 'ninety-one thousand forty-six');\nINSERT INTO t3 VALUES(12605, 60487, 'sixty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(12606, 38260, 'thirty-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(12607, 34970, 'thirty-four thousand nine hundred seventy');\nINSERT INTO t3 VALUES(12608, 87774, 'eighty-seven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(12609, 33514, 'thirty-three thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12610, 6794, 'six thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(12611, 70503, 'seventy thousand five hundred three');\nINSERT INTO t3 VALUES(12612, 51852, 'fifty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(12613, 23008, 'twenty-three thousand eight');\nINSERT INTO t3 VALUES(12614, 2474, 'two thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(12615, 14304, 'fourteen thousand three hundred four');\nINSERT INTO t3 VALUES(12616, 78739, 'seventy-eight thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(12617, 33290, 'thirty-three thousand two hundred ninety');\nINSERT INTO t3 VALUES(12618, 82004, 'eighty-two thousand four');\nINSERT INTO t3 VALUES(12619, 24390, 'twenty-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(12620, 87146, 'eighty-seven thousand one hundred forty-six');\nINSERT INTO t3 VALUES(12621, 8691, 'eight thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(12622, 99344, 'ninety-nine thousand three hundred forty-four');\nINSERT INTO t3 VALUES(12623, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(12624, 71113, 'seventy-one thousand one hundred thirteen');\nINSERT INTO t3 VALUES(12625, 71441, 'seventy-one thousand four hundred forty-one');\nINSERT INTO t3 VALUES(12626, 71434, 'seventy-one thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(12627, 82644, 'eighty-two thousand six hundred forty-four');\nINSERT INTO t3 VALUES(12628, 89276, 'eighty-nine thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(12629, 8501, 'eight thousand five hundred one');\nINSERT INTO t3 VALUES(12630, 60214, 'sixty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(12631, 84718, 'eighty-four thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(12632, 87349, 'eighty-seven thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(12633, 91038, 'ninety-one thousand thirty-eight');\nINSERT INTO t3 VALUES(12634, 41025, 'forty-one thousand twenty-five');\nINSERT INTO t3 VALUES(12635, 52699, 'fifty-two thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(12636, 81366, 'eighty-one thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(12637, 9633, 'nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(12638, 47238, 'forty-seven thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(12639, 9001, 'nine thousand one');\nINSERT INTO t3 VALUES(12640, 66941, 'sixty-six thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(12641, 52593, 'fifty-two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(12642, 97813, 'ninety-seven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(12643, 5987, 'five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(12644, 82630, 'eighty-two thousand six hundred thirty');\nINSERT INTO t3 VALUES(12645, 98160, 'ninety-eight thousand one hundred sixty');\nINSERT INTO t3 VALUES(12646, 222, 'two hundred twenty-two');\nINSERT INTO t3 VALUES(12647, 86892, 'eighty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(12648, 63743, 'sixty-three thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(12649, 81734, 'eighty-one thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12650, 48541, 'forty-eight thousand five hundred forty-one');\nINSERT INTO t3 VALUES(12651, 36365, 'thirty-six thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(12652, 20826, 'twenty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(12653, 85203, 'eighty-five thousand two hundred three');\nINSERT INTO t3 VALUES(12654, 26495, 'twenty-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(12655, 19571, 'nineteen thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(12656, 1139, 'one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(12657, 64406, 'sixty-four thousand four hundred six');\nINSERT INTO t3 VALUES(12658, 57451, 'fifty-seven thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(12659, 79223, 'seventy-nine thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(12660, 57009, 'fifty-seven thousand nine');\nINSERT INTO t3 VALUES(12661, 73333, 'seventy-three thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(12662, 51819, 'fifty-one thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(12663, 63717, 'sixty-three thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(12664, 75607, 'seventy-five thousand six hundred seven');\nINSERT INTO t3 VALUES(12665, 30413, 'thirty thousand four hundred thirteen');\nINSERT INTO t3 VALUES(12666, 43176, 'forty-three thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(12667, 9969, 'nine thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(12668, 84541, 'eighty-four thousand five hundred forty-one');\nINSERT INTO t3 VALUES(12669, 61457, 'sixty-one thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(12670, 39097, 'thirty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(12671, 10062, 'ten thousand sixty-two');\nINSERT INTO t3 VALUES(12672, 75919, 'seventy-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(12673, 33105, 'thirty-three thousand one hundred five');\nINSERT INTO t3 VALUES(12674, 85001, 'eighty-five thousand one');\nINSERT INTO t3 VALUES(12675, 70635, 'seventy thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(12676, 1633, 'one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(12677, 56254, 'fifty-six thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(12678, 96865, 'ninety-six thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(12679, 32482, 'thirty-two thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12680, 8805, 'eight thousand eight hundred five');\nINSERT INTO t3 VALUES(12681, 44699, 'forty-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(12682, 67454, 'sixty-seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(12683, 6728, 'six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(12684, 60834, 'sixty thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(12685, 69492, 'sixty-nine thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(12686, 75870, 'seventy-five thousand eight hundred seventy');\nINSERT INTO t3 VALUES(12687, 46922, 'forty-six thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(12688, 49954, 'forty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(12689, 89469, 'eighty-nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(12690, 19961, 'nineteen thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(12691, 44740, 'forty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(12692, 44840, 'forty-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(12693, 92446, 'ninety-two thousand four hundred forty-six');\nINSERT INTO t3 VALUES(12694, 58104, 'fifty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(12695, 85813, 'eighty-five thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(12696, 31356, 'thirty-one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(12697, 36930, 'thirty-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(12698, 33444, 'thirty-three thousand four hundred forty-four');\nINSERT INTO t3 VALUES(12699, 49152, 'forty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(12700, 77609, 'seventy-seven thousand six hundred nine');\nINSERT INTO t3 VALUES(12701, 66681, 'sixty-six thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12702, 41452, 'forty-one thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(12703, 45766, 'forty-five thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(12704, 30935, 'thirty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(12705, 67848, 'sixty-seven thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(12706, 20793, 'twenty thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(12707, 20614, 'twenty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(12708, 80832, 'eighty thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(12709, 93210, 'ninety-three thousand two hundred ten');\nINSERT INTO t3 VALUES(12710, 62573, 'sixty-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(12711, 34415, 'thirty-four thousand four hundred fifteen');\nINSERT INTO t3 VALUES(12712, 37357, 'thirty-seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(12713, 72961, 'seventy-two thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(12714, 14852, 'fourteen thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(12715, 28075, 'twenty-eight thousand seventy-five');\nINSERT INTO t3 VALUES(12716, 83557, 'eighty-three thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(12717, 78992, 'seventy-eight thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(12718, 69052, 'sixty-nine thousand fifty-two');\nINSERT INTO t3 VALUES(12719, 41901, 'forty-one thousand nine hundred one');\nINSERT INTO t3 VALUES(12720, 76886, 'seventy-six thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(12721, 19779, 'nineteen thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(12722, 84912, 'eighty-four thousand nine hundred twelve');\nINSERT INTO t3 VALUES(12723, 66187, 'sixty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(12724, 78636, 'seventy-eight thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(12725, 30044, 'thirty thousand forty-four');\nINSERT INTO t3 VALUES(12726, 28176, 'twenty-eight thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(12727, 27874, 'twenty-seven thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(12728, 95578, 'ninety-five thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(12729, 33681, 'thirty-three thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12730, 12222, 'twelve thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(12731, 26598, 'twenty-six thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(12732, 62513, 'sixty-two thousand five hundred thirteen');\nINSERT INTO t3 VALUES(12733, 11509, 'eleven thousand five hundred nine');\nINSERT INTO t3 VALUES(12734, 83392, 'eighty-three thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(12735, 97773, 'ninety-seven thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(12736, 3058, 'three thousand fifty-eight');\nINSERT INTO t3 VALUES(12737, 89802, 'eighty-nine thousand eight hundred two');\nINSERT INTO t3 VALUES(12738, 49401, 'forty-nine thousand four hundred one');\nINSERT INTO t3 VALUES(12739, 28921, 'twenty-eight thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(12740, 45066, 'forty-five thousand sixty-six');\nINSERT INTO t3 VALUES(12741, 23035, 'twenty-three thousand thirty-five');\nINSERT INTO t3 VALUES(12742, 63245, 'sixty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(12743, 2524, 'two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(12744, 21784, 'twenty-one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(12745, 94512, 'ninety-four thousand five hundred twelve');\nINSERT INTO t3 VALUES(12746, 80023, 'eighty thousand twenty-three');\nINSERT INTO t3 VALUES(12747, 22798, 'twenty-two thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12748, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(12749, 29678, 'twenty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(12750, 4367, 'four thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(12751, 73647, 'seventy-three thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(12752, 24278, 'twenty-four thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(12753, 40519, 'forty thousand five hundred nineteen');\nINSERT INTO t3 VALUES(12754, 15534, 'fifteen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(12755, 68479, 'sixty-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(12756, 29542, 'twenty-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(12757, 20877, 'twenty thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(12758, 80932, 'eighty thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(12759, 66037, 'sixty-six thousand thirty-seven');\nINSERT INTO t3 VALUES(12760, 17970, 'seventeen thousand nine hundred seventy');\nINSERT INTO t3 VALUES(12761, 58418, 'fifty-eight thousand four hundred eighteen');\nINSERT INTO t3 VALUES(12762, 19130, 'nineteen thousand one hundred thirty');\nINSERT INTO t3 VALUES(12763, 77982, 'seventy-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(12764, 61486, 'sixty-one thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(12765, 98514, 'ninety-eight thousand five hundred fourteen');\nINSERT INTO t3 VALUES(12766, 7357, 'seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(12767, 3509, 'three thousand five hundred nine');\nINSERT INTO t3 VALUES(12768, 1141, 'one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(12769, 39136, 'thirty-nine thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(12770, 80580, 'eighty thousand five hundred eighty');\nINSERT INTO t3 VALUES(12771, 15069, 'fifteen thousand sixty-nine');\nINSERT INTO t3 VALUES(12772, 87482, 'eighty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12773, 54223, 'fifty-four thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(12774, 3540, 'three thousand five hundred forty');\nINSERT INTO t3 VALUES(12775, 15949, 'fifteen thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(12776, 12876, 'twelve thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(12777, 96495, 'ninety-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(12778, 17739, 'seventeen thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(12779, 93418, 'ninety-three thousand four hundred eighteen');\nINSERT INTO t3 VALUES(12780, 68798, 'sixty-eight thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12781, 73562, 'seventy-three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(12782, 89855, 'eighty-nine thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(12783, 52512, 'fifty-two thousand five hundred twelve');\nINSERT INTO t3 VALUES(12784, 70913, 'seventy thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(12785, 19681, 'nineteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(12786, 15170, 'fifteen thousand one hundred seventy');\nINSERT INTO t3 VALUES(12787, 1278, 'one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(12788, 7387, 'seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(12789, 76076, 'seventy-six thousand seventy-six');\nINSERT INTO t3 VALUES(12790, 9618, 'nine thousand six hundred eighteen');\nINSERT INTO t3 VALUES(12791, 82352, 'eighty-two thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(12792, 70463, 'seventy thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(12793, 8868, 'eight thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(12794, 71028, 'seventy-one thousand twenty-eight');\nINSERT INTO t3 VALUES(12795, 74951, 'seventy-four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(12796, 43086, 'forty-three thousand eighty-six');\nINSERT INTO t3 VALUES(12797, 14586, 'fourteen thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(12798, 89832, 'eighty-nine thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(12799, 11578, 'eleven thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(12800, 73228, 'seventy-three thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(12801, 51916, 'fifty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(12802, 75684, 'seventy-five thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(12803, 9282, 'nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(12804, 62773, 'sixty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(12805, 76492, 'seventy-six thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(12806, 38490, 'thirty-eight thousand four hundred ninety');\nINSERT INTO t3 VALUES(12807, 77016, 'seventy-seven thousand sixteen');\nINSERT INTO t3 VALUES(12808, 36651, 'thirty-six thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12809, 32828, 'thirty-two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(12810, 46669, 'forty-six thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(12811, 5839, 'five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(12812, 87461, 'eighty-seven thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(12813, 68394, 'sixty-eight thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(12814, 8589, 'eight thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(12815, 36381, 'thirty-six thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(12816, 38955, 'thirty-eight thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(12817, 7651, 'seven thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(12818, 36513, 'thirty-six thousand five hundred thirteen');\nINSERT INTO t3 VALUES(12819, 61571, 'sixty-one thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(12820, 78388, 'seventy-eight thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(12821, 96959, 'ninety-six thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(12822, 64174, 'sixty-four thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12823, 77853, 'seventy-seven thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(12824, 83875, 'eighty-three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(12825, 34097, 'thirty-four thousand ninety-seven');\nINSERT INTO t3 VALUES(12826, 49286, 'forty-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(12827, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t3 VALUES(12828, 50010, 'fifty thousand ten');\nINSERT INTO t3 VALUES(12829, 82545, 'eighty-two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(12830, 10096, 'ten thousand ninety-six');\nINSERT INTO t3 VALUES(12831, 87893, 'eighty-seven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(12832, 22147, 'twenty-two thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(12833, 35019, 'thirty-five thousand nineteen');\nINSERT INTO t3 VALUES(12834, 88197, 'eighty-eight thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(12835, 1190, 'one thousand one hundred ninety');\nINSERT INTO t3 VALUES(12836, 31003, 'thirty-one thousand three');\nINSERT INTO t3 VALUES(12837, 90966, 'ninety thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(12838, 82353, 'eighty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(12839, 10483, 'ten thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(12840, 34201, 'thirty-four thousand two hundred one');\nINSERT INTO t3 VALUES(12841, 8659, 'eight thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(12842, 4141, 'four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(12843, 99048, 'ninety-nine thousand forty-eight');\nINSERT INTO t3 VALUES(12844, 36881, 'thirty-six thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(12845, 50482, 'fifty thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12846, 16753, 'sixteen thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(12847, 34601, 'thirty-four thousand six hundred one');\nINSERT INTO t3 VALUES(12848, 69668, 'sixty-nine thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(12849, 5723, 'five thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(12850, 78806, 'seventy-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(12851, 37255, 'thirty-seven thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(12852, 1243, 'one thousand two hundred forty-three');\nINSERT INTO t3 VALUES(12853, 85509, 'eighty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(12854, 23359, 'twenty-three thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(12855, 61139, 'sixty-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(12856, 71717, 'seventy-one thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(12857, 83152, 'eighty-three thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(12858, 91280, 'ninety-one thousand two hundred eighty');\nINSERT INTO t3 VALUES(12859, 42023, 'forty-two thousand twenty-three');\nINSERT INTO t3 VALUES(12860, 96972, 'ninety-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(12861, 6091, 'six thousand ninety-one');\nINSERT INTO t3 VALUES(12862, 62824, 'sixty-two thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(12863, 512, 'five hundred twelve');\nINSERT INTO t3 VALUES(12864, 49396, 'forty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(12865, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(12866, 68481, 'sixty-eight thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(12867, 27450, 'twenty-seven thousand four hundred fifty');\nINSERT INTO t3 VALUES(12868, 99983, 'ninety-nine thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(12869, 24262, 'twenty-four thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(12870, 38760, 'thirty-eight thousand seven hundred sixty');\nINSERT INTO t3 VALUES(12871, 43360, 'forty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(12872, 80619, 'eighty thousand six hundred nineteen');\nINSERT INTO t3 VALUES(12873, 75727, 'seventy-five thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(12874, 2630, 'two thousand six hundred thirty');\nINSERT INTO t3 VALUES(12875, 7541, 'seven thousand five hundred forty-one');\nINSERT INTO t3 VALUES(12876, 7291, 'seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12877, 88162, 'eighty-eight thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(12878, 24432, 'twenty-four thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(12879, 14501, 'fourteen thousand five hundred one');\nINSERT INTO t3 VALUES(12880, 11520, 'eleven thousand five hundred twenty');\nINSERT INTO t3 VALUES(12881, 92393, 'ninety-two thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(12882, 46755, 'forty-six thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(12883, 63663, 'sixty-three thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(12884, 49559, 'forty-nine thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(12885, 56492, 'fifty-six thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(12886, 72253, 'seventy-two thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(12887, 96666, 'ninety-six thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(12888, 71969, 'seventy-one thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(12889, 46863, 'forty-six thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(12890, 15652, 'fifteen thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(12891, 72052, 'seventy-two thousand fifty-two');\nINSERT INTO t3 VALUES(12892, 66925, 'sixty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(12893, 85517, 'eighty-five thousand five hundred seventeen');\nINSERT INTO t3 VALUES(12894, 69393, 'sixty-nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(12895, 81891, 'eighty-one thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(12896, 17057, 'seventeen thousand fifty-seven');\nINSERT INTO t3 VALUES(12897, 20521, 'twenty thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(12898, 68199, 'sixty-eight thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(12899, 72803, 'seventy-two thousand eight hundred three');\nINSERT INTO t3 VALUES(12900, 91889, 'ninety-one thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(12901, 78360, 'seventy-eight thousand three hundred sixty');\nINSERT INTO t3 VALUES(12902, 93107, 'ninety-three thousand one hundred seven');\nINSERT INTO t3 VALUES(12903, 45987, 'forty-five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(12904, 45793, 'forty-five thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(12905, 8970, 'eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(12906, 56082, 'fifty-six thousand eighty-two');\nINSERT INTO t3 VALUES(12907, 91257, 'ninety-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(12908, 62921, 'sixty-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(12909, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(12910, 24205, 'twenty-four thousand two hundred five');\nINSERT INTO t3 VALUES(12911, 11390, 'eleven thousand three hundred ninety');\nINSERT INTO t3 VALUES(12912, 73121, 'seventy-three thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(12913, 95764, 'ninety-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(12914, 36677, 'thirty-six thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(12915, 86653, 'eighty-six thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(12916, 65247, 'sixty-five thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(12917, 30872, 'thirty thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(12918, 46363, 'forty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(12919, 42258, 'forty-two thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(12920, 27708, 'twenty-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(12921, 61779, 'sixty-one thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(12922, 24349, 'twenty-four thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(12923, 96704, 'ninety-six thousand seven hundred four');\nINSERT INTO t3 VALUES(12924, 95275, 'ninety-five thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(12925, 87231, 'eighty-seven thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(12926, 53844, 'fifty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(12927, 41310, 'forty-one thousand three hundred ten');\nINSERT INTO t3 VALUES(12928, 14740, 'fourteen thousand seven hundred forty');\nINSERT INTO t3 VALUES(12929, 25345, 'twenty-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(12930, 25025, 'twenty-five thousand twenty-five');\nINSERT INTO t3 VALUES(12931, 31759, 'thirty-one thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(12932, 67993, 'sixty-seven thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(12933, 41174, 'forty-one thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(12934, 56221, 'fifty-six thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(12935, 94024, 'ninety-four thousand twenty-four');\nINSERT INTO t3 VALUES(12936, 47734, 'forty-seven thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(12937, 52968, 'fifty-two thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(12938, 28183, 'twenty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(12939, 90718, 'ninety thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(12940, 26636, 'twenty-six thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(12941, 9657, 'nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(12942, 55732, 'fifty-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(12943, 3136, 'three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(12944, 85190, 'eighty-five thousand one hundred ninety');\nINSERT INTO t3 VALUES(12945, 70538, 'seventy thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(12946, 1230, 'one thousand two hundred thirty');\nINSERT INTO t3 VALUES(12947, 22112, 'twenty-two thousand one hundred twelve');\nINSERT INTO t3 VALUES(12948, 72798, 'seventy-two thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(12949, 82090, 'eighty-two thousand ninety');\nINSERT INTO t3 VALUES(12950, 17523, 'seventeen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(12951, 68350, 'sixty-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(12952, 32789, 'thirty-two thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(12953, 41081, 'forty-one thousand eighty-one');\nINSERT INTO t3 VALUES(12954, 2253, 'two thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(12955, 50080, 'fifty thousand eighty');\nINSERT INTO t3 VALUES(12956, 54578, 'fifty-four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(12957, 2331, 'two thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(12958, 93221, 'ninety-three thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(12959, 19311, 'nineteen thousand three hundred eleven');\nINSERT INTO t3 VALUES(12960, 90975, 'ninety thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(12961, 19742, 'nineteen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(12962, 75866, 'seventy-five thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(12963, 93547, 'ninety-three thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(12964, 96560, 'ninety-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(12965, 75627, 'seventy-five thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(12966, 34291, 'thirty-four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(12967, 32072, 'thirty-two thousand seventy-two');\nINSERT INTO t3 VALUES(12968, 41331, 'forty-one thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(12969, 33966, 'thirty-three thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(12970, 30509, 'thirty thousand five hundred nine');\nINSERT INTO t3 VALUES(12971, 26004, 'twenty-six thousand four');\nINSERT INTO t3 VALUES(12972, 79445, 'seventy-nine thousand four hundred forty-five');\nINSERT INTO t3 VALUES(12973, 59729, 'fifty-nine thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(12974, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(12975, 50568, 'fifty thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(12976, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t3 VALUES(12977, 79150, 'seventy-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(12978, 5568, 'five thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(12979, 29024, 'twenty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(12980, 36483, 'thirty-six thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(12981, 82251, 'eighty-two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(12982, 60002, 'sixty thousand two');\nINSERT INTO t3 VALUES(12983, 45482, 'forty-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(12984, 93006, 'ninety-three thousand six');\nINSERT INTO t3 VALUES(12985, 27898, 'twenty-seven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(12986, 61300, 'sixty-one thousand three hundred');\nINSERT INTO t3 VALUES(12987, 92218, 'ninety-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(12988, 67535, 'sixty-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(12989, 76339, 'seventy-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(12990, 72070, 'seventy-two thousand seventy');\nINSERT INTO t3 VALUES(12991, 28943, 'twenty-eight thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(12992, 66395, 'sixty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(12993, 42842, 'forty-two thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(12994, 16532, 'sixteen thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(12995, 34635, 'thirty-four thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(12996, 55582, 'fifty-five thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(12997, 9467, 'nine thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(12998, 64893, 'sixty-four thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(12999, 23940, 'twenty-three thousand nine hundred forty');\nINSERT INTO t3 VALUES(13000, 55126, 'fifty-five thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(13001, 69249, 'sixty-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(13002, 6594, 'six thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(13003, 859, 'eight hundred fifty-nine');\nINSERT INTO t3 VALUES(13004, 73199, 'seventy-three thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(13005, 60033, 'sixty thousand thirty-three');\nINSERT INTO t3 VALUES(13006, 95594, 'ninety-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(13007, 74763, 'seventy-four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(13008, 80143, 'eighty thousand one hundred forty-three');\nINSERT INTO t3 VALUES(13009, 15977, 'fifteen thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(13010, 28553, 'twenty-eight thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(13011, 10883, 'ten thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(13012, 52986, 'fifty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13013, 98725, 'ninety-eight thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(13014, 23894, 'twenty-three thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(13015, 16058, 'sixteen thousand fifty-eight');\nINSERT INTO t3 VALUES(13016, 28094, 'twenty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(13017, 72037, 'seventy-two thousand thirty-seven');\nINSERT INTO t3 VALUES(13018, 72724, 'seventy-two thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(13019, 29083, 'twenty-nine thousand eighty-three');\nINSERT INTO t3 VALUES(13020, 61504, 'sixty-one thousand five hundred four');\nINSERT INTO t3 VALUES(13021, 98472, 'ninety-eight thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(13022, 22160, 'twenty-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(13023, 36434, 'thirty-six thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(13024, 33592, 'thirty-three thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(13025, 49671, 'forty-nine thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(13026, 78062, 'seventy-eight thousand sixty-two');\nINSERT INTO t3 VALUES(13027, 8393, 'eight thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(13028, 34389, 'thirty-four thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(13029, 15687, 'fifteen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13030, 19960, 'nineteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(13031, 79730, 'seventy-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(13032, 73414, 'seventy-three thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13033, 16789, 'sixteen thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(13034, 22755, 'twenty-two thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(13035, 71141, 'seventy-one thousand one hundred forty-one');\nINSERT INTO t3 VALUES(13036, 29026, 'twenty-nine thousand twenty-six');\nINSERT INTO t3 VALUES(13037, 55375, 'fifty-five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(13038, 15263, 'fifteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(13039, 11836, 'eleven thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(13040, 28710, 'twenty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(13041, 23040, 'twenty-three thousand forty');\nINSERT INTO t3 VALUES(13042, 34904, 'thirty-four thousand nine hundred four');\nINSERT INTO t3 VALUES(13043, 66708, 'sixty-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(13044, 47542, 'forty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13045, 77947, 'seventy-seven thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(13046, 72736, 'seventy-two thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(13047, 1134, 'one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(13048, 48033, 'forty-eight thousand thirty-three');\nINSERT INTO t3 VALUES(13049, 27029, 'twenty-seven thousand twenty-nine');\nINSERT INTO t3 VALUES(13050, 35890, 'thirty-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(13051, 79681, 'seventy-nine thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(13052, 35486, 'thirty-five thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(13053, 66726, 'sixty-six thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(13054, 83162, 'eighty-three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(13055, 97255, 'ninety-seven thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(13056, 41277, 'forty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(13057, 25423, 'twenty-five thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(13058, 281, 'two hundred eighty-one');\nINSERT INTO t3 VALUES(13059, 90417, 'ninety thousand four hundred seventeen');\nINSERT INTO t3 VALUES(13060, 62305, 'sixty-two thousand three hundred five');\nINSERT INTO t3 VALUES(13061, 49849, 'forty-nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(13062, 95997, 'ninety-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(13063, 49575, 'forty-nine thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(13064, 12959, 'twelve thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(13065, 78908, 'seventy-eight thousand nine hundred eight');\nINSERT INTO t3 VALUES(13066, 17761, 'seventeen thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(13067, 69050, 'sixty-nine thousand fifty');\nINSERT INTO t3 VALUES(13068, 13445, 'thirteen thousand four hundred forty-five');\nINSERT INTO t3 VALUES(13069, 67021, 'sixty-seven thousand twenty-one');\nINSERT INTO t3 VALUES(13070, 51585, 'fifty-one thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(13071, 11363, 'eleven thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(13072, 36716, 'thirty-six thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(13073, 46088, 'forty-six thousand eighty-eight');\nINSERT INTO t3 VALUES(13074, 92349, 'ninety-two thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(13075, 85292, 'eighty-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(13076, 20095, 'twenty thousand ninety-five');\nINSERT INTO t3 VALUES(13077, 28912, 'twenty-eight thousand nine hundred twelve');\nINSERT INTO t3 VALUES(13078, 55114, 'fifty-five thousand one hundred fourteen');\nINSERT INTO t3 VALUES(13079, 68563, 'sixty-eight thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(13080, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(13081, 74404, 'seventy-four thousand four hundred four');\nINSERT INTO t3 VALUES(13082, 47088, 'forty-seven thousand eighty-eight');\nINSERT INTO t3 VALUES(13083, 94552, 'ninety-four thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(13084, 37271, 'thirty-seven thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(13085, 64669, 'sixty-four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(13086, 19183, 'nineteen thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(13087, 9634, 'nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(13088, 90937, 'ninety thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(13089, 88092, 'eighty-eight thousand ninety-two');\nINSERT INTO t3 VALUES(13090, 54780, 'fifty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(13091, 53309, 'fifty-three thousand three hundred nine');\nINSERT INTO t3 VALUES(13092, 99026, 'ninety-nine thousand twenty-six');\nINSERT INTO t3 VALUES(13093, 17, 'seventeen');\nINSERT INTO t3 VALUES(13094, 69486, 'sixty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(13095, 59899, 'fifty-nine thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(13096, 80285, 'eighty thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(13097, 85509, 'eighty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(13098, 94755, 'ninety-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(13099, 67450, 'sixty-seven thousand four hundred fifty');\nINSERT INTO t3 VALUES(13100, 56947, 'fifty-six thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(13101, 42153, 'forty-two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(13102, 40568, 'forty thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(13103, 91808, 'ninety-one thousand eight hundred eight');\nINSERT INTO t3 VALUES(13104, 92218, 'ninety-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(13105, 38607, 'thirty-eight thousand six hundred seven');\nINSERT INTO t3 VALUES(13106, 59004, 'fifty-nine thousand four');\nINSERT INTO t3 VALUES(13107, 40999, 'forty thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(13108, 98708, 'ninety-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(13109, 69257, 'sixty-nine thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(13110, 57812, 'fifty-seven thousand eight hundred twelve');\nINSERT INTO t3 VALUES(13111, 97011, 'ninety-seven thousand eleven');\nINSERT INTO t3 VALUES(13112, 63689, 'sixty-three thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(13113, 47810, 'forty-seven thousand eight hundred ten');\nINSERT INTO t3 VALUES(13114, 48543, 'forty-eight thousand five hundred forty-three');\nINSERT INTO t3 VALUES(13115, 32738, 'thirty-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(13116, 98108, 'ninety-eight thousand one hundred eight');\nINSERT INTO t3 VALUES(13117, 85594, 'eighty-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(13118, 90226, 'ninety thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(13119, 80261, 'eighty thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(13120, 23272, 'twenty-three thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(13121, 19053, 'nineteen thousand fifty-three');\nINSERT INTO t3 VALUES(13122, 56373, 'fifty-six thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(13123, 19322, 'nineteen thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(13124, 97254, 'ninety-seven thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(13125, 47329, 'forty-seven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(13126, 84678, 'eighty-four thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(13127, 20059, 'twenty thousand fifty-nine');\nINSERT INTO t3 VALUES(13128, 12108, 'twelve thousand one hundred eight');\nINSERT INTO t3 VALUES(13129, 16420, 'sixteen thousand four hundred twenty');\nINSERT INTO t3 VALUES(13130, 67952, 'sixty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(13131, 36158, 'thirty-six thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(13132, 34597, 'thirty-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13133, 71732, 'seventy-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(13134, 31284, 'thirty-one thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(13135, 26136, 'twenty-six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(13136, 39234, 'thirty-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(13137, 66958, 'sixty-six thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(13138, 5617, 'five thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13139, 48970, 'forty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(13140, 76398, 'seventy-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(13141, 87695, 'eighty-seven thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(13142, 31650, 'thirty-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(13143, 73864, 'seventy-three thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(13144, 22223, 'twenty-two thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(13145, 63003, 'sixty-three thousand three');\nINSERT INTO t3 VALUES(13146, 98235, 'ninety-eight thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(13147, 73516, 'seventy-three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(13148, 22055, 'twenty-two thousand fifty-five');\nINSERT INTO t3 VALUES(13149, 84687, 'eighty-four thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13150, 16220, 'sixteen thousand two hundred twenty');\nINSERT INTO t3 VALUES(13151, 20833, 'twenty thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(13152, 7128, 'seven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(13153, 27644, 'twenty-seven thousand six hundred forty-four');\nINSERT INTO t3 VALUES(13154, 68264, 'sixty-eight thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(13155, 33776, 'thirty-three thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(13156, 49827, 'forty-nine thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(13157, 12916, 'twelve thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13158, 45687, 'forty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13159, 7743, 'seven thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(13160, 63030, 'sixty-three thousand thirty');\nINSERT INTO t3 VALUES(13161, 38906, 'thirty-eight thousand nine hundred six');\nINSERT INTO t3 VALUES(13162, 44710, 'forty-four thousand seven hundred ten');\nINSERT INTO t3 VALUES(13163, 9474, 'nine thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(13164, 37011, 'thirty-seven thousand eleven');\nINSERT INTO t3 VALUES(13165, 77744, 'seventy-seven thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(13166, 57850, 'fifty-seven thousand eight hundred fifty');\nINSERT INTO t3 VALUES(13167, 24437, 'twenty-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(13168, 23844, 'twenty-three thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(13169, 49159, 'forty-nine thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(13170, 90603, 'ninety thousand six hundred three');\nINSERT INTO t3 VALUES(13171, 8572, 'eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13172, 56313, 'fifty-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(13173, 19119, 'nineteen thousand one hundred nineteen');\nINSERT INTO t3 VALUES(13174, 65311, 'sixty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(13175, 35790, 'thirty-five thousand seven hundred ninety');\nINSERT INTO t3 VALUES(13176, 20728, 'twenty thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(13177, 54455, 'fifty-four thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(13178, 60544, 'sixty thousand five hundred forty-four');\nINSERT INTO t3 VALUES(13179, 57973, 'fifty-seven thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(13180, 7535, 'seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(13181, 25572, 'twenty-five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13182, 61500, 'sixty-one thousand five hundred');\nINSERT INTO t3 VALUES(13183, 68875, 'sixty-eight thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(13184, 90763, 'ninety thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(13185, 86035, 'eighty-six thousand thirty-five');\nINSERT INTO t3 VALUES(13186, 45854, 'forty-five thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(13187, 11968, 'eleven thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(13188, 81860, 'eighty-one thousand eight hundred sixty');\nINSERT INTO t3 VALUES(13189, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(13190, 70187, 'seventy thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(13191, 17308, 'seventeen thousand three hundred eight');\nINSERT INTO t3 VALUES(13192, 73925, 'seventy-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(13193, 691, 'six hundred ninety-one');\nINSERT INTO t3 VALUES(13194, 94456, 'ninety-four thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(13195, 77428, 'seventy-seven thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(13196, 31298, 'thirty-one thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(13197, 97105, 'ninety-seven thousand one hundred five');\nINSERT INTO t3 VALUES(13198, 57128, 'fifty-seven thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(13199, 46300, 'forty-six thousand three hundred');\nINSERT INTO t3 VALUES(13200, 63106, 'sixty-three thousand one hundred six');\nINSERT INTO t3 VALUES(13201, 89302, 'eighty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(13202, 86112, 'eighty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(13203, 39338, 'thirty-nine thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(13204, 88424, 'eighty-eight thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(13205, 81912, 'eighty-one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(13206, 74848, 'seventy-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(13207, 87127, 'eighty-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(13208, 96602, 'ninety-six thousand six hundred two');\nINSERT INTO t3 VALUES(13209, 48708, 'forty-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(13210, 61251, 'sixty-one thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(13211, 27573, 'twenty-seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(13212, 22015, 'twenty-two thousand fifteen');\nINSERT INTO t3 VALUES(13213, 9616, 'nine thousand six hundred sixteen');\nINSERT INTO t3 VALUES(13214, 93052, 'ninety-three thousand fifty-two');\nINSERT INTO t3 VALUES(13215, 67520, 'sixty-seven thousand five hundred twenty');\nINSERT INTO t3 VALUES(13216, 64749, 'sixty-four thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(13217, 28090, 'twenty-eight thousand ninety');\nINSERT INTO t3 VALUES(13218, 87071, 'eighty-seven thousand seventy-one');\nINSERT INTO t3 VALUES(13219, 25414, 'twenty-five thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13220, 45265, 'forty-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(13221, 63788, 'sixty-three thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(13222, 59271, 'fifty-nine thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(13223, 47929, 'forty-seven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(13224, 40363, 'forty thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(13225, 82602, 'eighty-two thousand six hundred two');\nINSERT INTO t3 VALUES(13226, 63778, 'sixty-three thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(13227, 71237, 'seventy-one thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(13228, 77446, 'seventy-seven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(13229, 18974, 'eighteen thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(13230, 36156, 'thirty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(13231, 1495, 'one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(13232, 49776, 'forty-nine thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(13233, 10976, 'ten thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(13234, 33832, 'thirty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(13235, 42095, 'forty-two thousand ninety-five');\nINSERT INTO t3 VALUES(13236, 64617, 'sixty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13237, 80279, 'eighty thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(13238, 13504, 'thirteen thousand five hundred four');\nINSERT INTO t3 VALUES(13239, 49514, 'forty-nine thousand five hundred fourteen');\nINSERT INTO t3 VALUES(13240, 51916, 'fifty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13241, 28720, 'twenty-eight thousand seven hundred twenty');\nINSERT INTO t3 VALUES(13242, 17828, 'seventeen thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(13243, 55057, 'fifty-five thousand fifty-seven');\nINSERT INTO t3 VALUES(13244, 24817, 'twenty-four thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(13245, 86737, 'eighty-six thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(13246, 13114, 'thirteen thousand one hundred fourteen');\nINSERT INTO t3 VALUES(13247, 75817, 'seventy-five thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(13248, 26975, 'twenty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(13249, 41421, 'forty-one thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(13250, 33492, 'thirty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(13251, 48601, 'forty-eight thousand six hundred one');\nINSERT INTO t3 VALUES(13252, 46762, 'forty-six thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13253, 77731, 'seventy-seven thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(13254, 63058, 'sixty-three thousand fifty-eight');\nINSERT INTO t3 VALUES(13255, 37971, 'thirty-seven thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(13256, 68213, 'sixty-eight thousand two hundred thirteen');\nINSERT INTO t3 VALUES(13257, 9320, 'nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(13258, 33706, 'thirty-three thousand seven hundred six');\nINSERT INTO t3 VALUES(13259, 18617, 'eighteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13260, 57406, 'fifty-seven thousand four hundred six');\nINSERT INTO t3 VALUES(13261, 34096, 'thirty-four thousand ninety-six');\nINSERT INTO t3 VALUES(13262, 24762, 'twenty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13263, 65449, 'sixty-five thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(13264, 71265, 'seventy-one thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(13265, 88866, 'eighty-eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(13266, 3049, 'three thousand forty-nine');\nINSERT INTO t3 VALUES(13267, 6758, 'six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(13268, 69365, 'sixty-nine thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(13269, 30374, 'thirty thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(13270, 91542, 'ninety-one thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13271, 5572, 'five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13272, 64239, 'sixty-four thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(13273, 83705, 'eighty-three thousand seven hundred five');\nINSERT INTO t3 VALUES(13274, 39370, 'thirty-nine thousand three hundred seventy');\nINSERT INTO t3 VALUES(13275, 58680, 'fifty-eight thousand six hundred eighty');\nINSERT INTO t3 VALUES(13276, 36183, 'thirty-six thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(13277, 78239, 'seventy-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(13278, 7171, 'seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13279, 36180, 'thirty-six thousand one hundred eighty');\nINSERT INTO t3 VALUES(13280, 16163, 'sixteen thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(13281, 76747, 'seventy-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(13282, 65685, 'sixty-five thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(13283, 25680, 'twenty-five thousand six hundred eighty');\nINSERT INTO t3 VALUES(13284, 33224, 'thirty-three thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(13285, 78, 'seventy-eight');\nINSERT INTO t3 VALUES(13286, 22597, 'twenty-two thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13287, 13482, 'thirteen thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(13288, 86333, 'eighty-six thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(13289, 70133, 'seventy thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(13290, 13783, 'thirteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(13291, 37938, 'thirty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13292, 52579, 'fifty-two thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(13293, 68753, 'sixty-eight thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(13294, 70174, 'seventy thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(13295, 13561, 'thirteen thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(13296, 51882, 'fifty-one thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(13297, 28939, 'twenty-eight thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(13298, 3693, 'three thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(13299, 31130, 'thirty-one thousand one hundred thirty');\nINSERT INTO t3 VALUES(13300, 83831, 'eighty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(13301, 77722, 'seventy-seven thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(13302, 65337, 'sixty-five thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(13303, 96037, 'ninety-six thousand thirty-seven');\nINSERT INTO t3 VALUES(13304, 32773, 'thirty-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(13305, 2990, 'two thousand nine hundred ninety');\nINSERT INTO t3 VALUES(13306, 49823, 'forty-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(13307, 8124, 'eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(13308, 25198, 'twenty-five thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13309, 49663, 'forty-nine thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(13310, 71537, 'seventy-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(13311, 69998, 'sixty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(13312, 41111, 'forty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(13313, 78488, 'seventy-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(13314, 17571, 'seventeen thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(13315, 69172, 'sixty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(13316, 75159, 'seventy-five thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(13317, 83883, 'eighty-three thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(13318, 36430, 'thirty-six thousand four hundred thirty');\nINSERT INTO t3 VALUES(13319, 27033, 'twenty-seven thousand thirty-three');\nINSERT INTO t3 VALUES(13320, 43834, 'forty-three thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(13321, 51292, 'fifty-one thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(13322, 25457, 'twenty-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(13323, 48910, 'forty-eight thousand nine hundred ten');\nINSERT INTO t3 VALUES(13324, 80817, 'eighty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(13325, 99773, 'ninety-nine thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(13326, 33940, 'thirty-three thousand nine hundred forty');\nINSERT INTO t3 VALUES(13327, 90828, 'ninety thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(13328, 55948, 'fifty-five thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(13329, 1767, 'one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(13330, 56542, 'fifty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13331, 88543, 'eighty-eight thousand five hundred forty-three');\nINSERT INTO t3 VALUES(13332, 32759, 'thirty-two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(13333, 5327, 'five thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(13334, 76276, 'seventy-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(13335, 90742, 'ninety thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(13336, 30611, 'thirty thousand six hundred eleven');\nINSERT INTO t3 VALUES(13337, 25649, 'twenty-five thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(13338, 96874, 'ninety-six thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(13339, 17912, 'seventeen thousand nine hundred twelve');\nINSERT INTO t3 VALUES(13340, 79403, 'seventy-nine thousand four hundred three');\nINSERT INTO t3 VALUES(13341, 91357, 'ninety-one thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(13342, 77050, 'seventy-seven thousand fifty');\nINSERT INTO t3 VALUES(13343, 82053, 'eighty-two thousand fifty-three');\nINSERT INTO t3 VALUES(13344, 64347, 'sixty-four thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(13345, 87792, 'eighty-seven thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(13346, 64101, 'sixty-four thousand one hundred one');\nINSERT INTO t3 VALUES(13347, 63491, 'sixty-three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(13348, 42040, 'forty-two thousand forty');\nINSERT INTO t3 VALUES(13349, 40355, 'forty thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(13350, 6843, 'six thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(13351, 55892, 'fifty-five thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(13352, 14744, 'fourteen thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(13353, 88165, 'eighty-eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13354, 10518, 'ten thousand five hundred eighteen');\nINSERT INTO t3 VALUES(13355, 19050, 'nineteen thousand fifty');\nINSERT INTO t3 VALUES(13356, 43738, 'forty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(13357, 70895, 'seventy thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(13358, 54828, 'fifty-four thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(13359, 99368, 'ninety-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(13360, 55406, 'fifty-five thousand four hundred six');\nINSERT INTO t3 VALUES(13361, 28328, 'twenty-eight thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13362, 62528, 'sixty-two thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(13363, 29122, 'twenty-nine thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(13364, 11852, 'eleven thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(13365, 85065, 'eighty-five thousand sixty-five');\nINSERT INTO t3 VALUES(13366, 45208, 'forty-five thousand two hundred eight');\nINSERT INTO t3 VALUES(13367, 55281, 'fifty-five thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(13368, 94404, 'ninety-four thousand four hundred four');\nINSERT INTO t3 VALUES(13369, 43021, 'forty-three thousand twenty-one');\nINSERT INTO t3 VALUES(13370, 10467, 'ten thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13371, 4830, 'four thousand eight hundred thirty');\nINSERT INTO t3 VALUES(13372, 59383, 'fifty-nine thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(13373, 36140, 'thirty-six thousand one hundred forty');\nINSERT INTO t3 VALUES(13374, 603, 'six hundred three');\nINSERT INTO t3 VALUES(13375, 53699, 'fifty-three thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(13376, 95404, 'ninety-five thousand four hundred four');\nINSERT INTO t3 VALUES(13377, 90574, 'ninety thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(13378, 26510, 'twenty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(13379, 9397, 'nine thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(13380, 36162, 'thirty-six thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(13381, 31027, 'thirty-one thousand twenty-seven');\nINSERT INTO t3 VALUES(13382, 97783, 'ninety-seven thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(13383, 56834, 'fifty-six thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(13384, 89437, 'eighty-nine thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(13385, 92233, 'ninety-two thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(13386, 44514, 'forty-four thousand five hundred fourteen');\nINSERT INTO t3 VALUES(13387, 47258, 'forty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(13388, 15198, 'fifteen thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13389, 42412, 'forty-two thousand four hundred twelve');\nINSERT INTO t3 VALUES(13390, 91467, 'ninety-one thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13391, 75997, 'seventy-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(13392, 58256, 'fifty-eight thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(13393, 12222, 'twelve thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(13394, 2419, 'two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(13395, 84900, 'eighty-four thousand nine hundred');\nINSERT INTO t3 VALUES(13396, 98269, 'ninety-eight thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(13397, 17206, 'seventeen thousand two hundred six');\nINSERT INTO t3 VALUES(13398, 51361, 'fifty-one thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(13399, 23467, 'twenty-three thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13400, 8055, 'eight thousand fifty-five');\nINSERT INTO t3 VALUES(13401, 87241, 'eighty-seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(13402, 32080, 'thirty-two thousand eighty');\nINSERT INTO t3 VALUES(13403, 83390, 'eighty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(13404, 23000, 'twenty-three thousand');\nINSERT INTO t3 VALUES(13405, 43354, 'forty-three thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(13406, 44491, 'forty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(13407, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(13408, 90336, 'ninety thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(13409, 15523, 'fifteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(13410, 11877, 'eleven thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(13411, 67309, 'sixty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(13412, 99542, 'ninety-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13413, 19838, 'nineteen thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(13414, 22532, 'twenty-two thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(13415, 78981, 'seventy-eight thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(13416, 1052, 'one thousand fifty-two');\nINSERT INTO t3 VALUES(13417, 57547, 'fifty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(13418, 56696, 'fifty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(13419, 48605, 'forty-eight thousand six hundred five');\nINSERT INTO t3 VALUES(13420, 94545, 'ninety-four thousand five hundred forty-five');\nINSERT INTO t3 VALUES(13421, 55045, 'fifty-five thousand forty-five');\nINSERT INTO t3 VALUES(13422, 74036, 'seventy-four thousand thirty-six');\nINSERT INTO t3 VALUES(13423, 64263, 'sixty-four thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(13424, 28331, 'twenty-eight thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(13425, 35170, 'thirty-five thousand one hundred seventy');\nINSERT INTO t3 VALUES(13426, 78992, 'seventy-eight thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(13427, 83426, 'eighty-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(13428, 8310, 'eight thousand three hundred ten');\nINSERT INTO t3 VALUES(13429, 99895, 'ninety-nine thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(13430, 55767, 'fifty-five thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(13431, 44342, 'forty-four thousand three hundred forty-two');\nINSERT INTO t3 VALUES(13432, 2243, 'two thousand two hundred forty-three');\nINSERT INTO t3 VALUES(13433, 41475, 'forty-one thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(13434, 57794, 'fifty-seven thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(13435, 64889, 'sixty-four thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(13436, 86777, 'eighty-six thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(13437, 47762, 'forty-seven thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13438, 8420, 'eight thousand four hundred twenty');\nINSERT INTO t3 VALUES(13439, 26278, 'twenty-six thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(13440, 42886, 'forty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(13441, 33345, 'thirty-three thousand three hundred forty-five');\nINSERT INTO t3 VALUES(13442, 66540, 'sixty-six thousand five hundred forty');\nINSERT INTO t3 VALUES(13443, 16851, 'sixteen thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(13444, 93006, 'ninety-three thousand six');\nINSERT INTO t3 VALUES(13445, 82573, 'eighty-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(13446, 62178, 'sixty-two thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(13447, 95367, 'ninety-five thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(13448, 31606, 'thirty-one thousand six hundred six');\nINSERT INTO t3 VALUES(13449, 74497, 'seventy-four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(13450, 83378, 'eighty-three thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(13451, 41392, 'forty-one thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(13452, 33072, 'thirty-three thousand seventy-two');\nINSERT INTO t3 VALUES(13453, 1977, 'one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(13454, 62995, 'sixty-two thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(13455, 61623, 'sixty-one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(13456, 49220, 'forty-nine thousand two hundred twenty');\nINSERT INTO t3 VALUES(13457, 60349, 'sixty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(13458, 22280, 'twenty-two thousand two hundred eighty');\nINSERT INTO t3 VALUES(13459, 48986, 'forty-eight thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13460, 67323, 'sixty-seven thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(13461, 13842, 'thirteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(13462, 79808, 'seventy-nine thousand eight hundred eight');\nINSERT INTO t3 VALUES(13463, 80092, 'eighty thousand ninety-two');\nINSERT INTO t3 VALUES(13464, 90793, 'ninety thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(13465, 76587, 'seventy-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(13466, 29211, 'twenty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(13467, 11014, 'eleven thousand fourteen');\nINSERT INTO t3 VALUES(13468, 59699, 'fifty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(13469, 86477, 'eighty-six thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(13470, 78971, 'seventy-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(13471, 50759, 'fifty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(13472, 95098, 'ninety-five thousand ninety-eight');\nINSERT INTO t3 VALUES(13473, 2732, 'two thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(13474, 40096, 'forty thousand ninety-six');\nINSERT INTO t3 VALUES(13475, 26418, 'twenty-six thousand four hundred eighteen');\nINSERT INTO t3 VALUES(13476, 71511, 'seventy-one thousand five hundred eleven');\nINSERT INTO t3 VALUES(13477, 61899, 'sixty-one thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(13478, 4927, 'four thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(13479, 52956, 'fifty-two thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(13480, 77986, 'seventy-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13481, 13187, 'thirteen thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(13482, 22526, 'twenty-two thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(13483, 1377, 'one thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13484, 20634, 'twenty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(13485, 81756, 'eighty-one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(13486, 20205, 'twenty thousand two hundred five');\nINSERT INTO t3 VALUES(13487, 25049, 'twenty-five thousand forty-nine');\nINSERT INTO t3 VALUES(13488, 31776, 'thirty-one thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(13489, 64630, 'sixty-four thousand six hundred thirty');\nINSERT INTO t3 VALUES(13490, 33492, 'thirty-three thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(13491, 12518, 'twelve thousand five hundred eighteen');\nINSERT INTO t3 VALUES(13492, 29394, 'twenty-nine thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(13493, 92382, 'ninety-two thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(13494, 51703, 'fifty-one thousand seven hundred three');\nINSERT INTO t3 VALUES(13495, 516, 'five hundred sixteen');\nINSERT INTO t3 VALUES(13496, 95945, 'ninety-five thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(13497, 9909, 'nine thousand nine hundred nine');\nINSERT INTO t3 VALUES(13498, 23810, 'twenty-three thousand eight hundred ten');\nINSERT INTO t3 VALUES(13499, 14560, 'fourteen thousand five hundred sixty');\nINSERT INTO t3 VALUES(13500, 34702, 'thirty-four thousand seven hundred two');\nINSERT INTO t3 VALUES(13501, 60387, 'sixty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(13502, 61499, 'sixty-one thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13503, 19884, 'nineteen thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(13504, 57856, 'fifty-seven thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(13505, 41398, 'forty-one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(13506, 57526, 'fifty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(13507, 35265, 'thirty-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(13508, 35691, 'thirty-five thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(13509, 818, 'eight hundred eighteen');\nINSERT INTO t3 VALUES(13510, 22039, 'twenty-two thousand thirty-nine');\nINSERT INTO t3 VALUES(13511, 55871, 'fifty-five thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(13512, 92931, 'ninety-two thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(13513, 63543, 'sixty-three thousand five hundred forty-three');\nINSERT INTO t3 VALUES(13514, 84377, 'eighty-four thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13515, 44593, 'forty-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(13516, 51739, 'fifty-one thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(13517, 6910, 'six thousand nine hundred ten');\nINSERT INTO t3 VALUES(13518, 17557, 'seventeen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(13519, 59217, 'fifty-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(13520, 94841, 'ninety-four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(13521, 66358, 'sixty-six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(13522, 19619, 'nineteen thousand six hundred nineteen');\nINSERT INTO t3 VALUES(13523, 64737, 'sixty-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(13524, 73839, 'seventy-three thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13525, 35628, 'thirty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(13526, 58372, 'fifty-eight thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(13527, 99278, 'ninety-nine thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(13528, 763, 'seven hundred sixty-three');\nINSERT INTO t3 VALUES(13529, 69991, 'sixty-nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(13530, 79568, 'seventy-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(13531, 9667, 'nine thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(13532, 63436, 'sixty-three thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(13533, 991, 'nine hundred ninety-one');\nINSERT INTO t3 VALUES(13534, 73161, 'seventy-three thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(13535, 32088, 'thirty-two thousand eighty-eight');\nINSERT INTO t3 VALUES(13536, 49035, 'forty-nine thousand thirty-five');\nINSERT INTO t3 VALUES(13537, 96727, 'ninety-six thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(13538, 72707, 'seventy-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(13539, 3444, 'three thousand four hundred forty-four');\nINSERT INTO t3 VALUES(13540, 19145, 'nineteen thousand one hundred forty-five');\nINSERT INTO t3 VALUES(13541, 76918, 'seventy-six thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(13542, 63463, 'sixty-three thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(13543, 14934, 'fourteen thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(13544, 68275, 'sixty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(13545, 88665, 'eighty-eight thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(13546, 8713, 'eight thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(13547, 25661, 'twenty-five thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(13548, 58355, 'fifty-eight thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(13549, 30055, 'thirty thousand fifty-five');\nINSERT INTO t3 VALUES(13550, 67285, 'sixty-seven thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(13551, 23326, 'twenty-three thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(13552, 95446, 'ninety-five thousand four hundred forty-six');\nINSERT INTO t3 VALUES(13553, 63153, 'sixty-three thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(13554, 8540, 'eight thousand five hundred forty');\nINSERT INTO t3 VALUES(13555, 67361, 'sixty-seven thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(13556, 29414, 'twenty-nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13557, 44839, 'forty-four thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13558, 95335, 'ninety-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(13559, 86735, 'eighty-six thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(13560, 84792, 'eighty-four thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(13561, 3618, 'three thousand six hundred eighteen');\nINSERT INTO t3 VALUES(13562, 28983, 'twenty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(13563, 49829, 'forty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(13564, 53821, 'fifty-three thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(13565, 68650, 'sixty-eight thousand six hundred fifty');\nINSERT INTO t3 VALUES(13566, 68622, 'sixty-eight thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(13567, 80151, 'eighty thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(13568, 64110, 'sixty-four thousand one hundred ten');\nINSERT INTO t3 VALUES(13569, 96810, 'ninety-six thousand eight hundred ten');\nINSERT INTO t3 VALUES(13570, 45608, 'forty-five thousand six hundred eight');\nINSERT INTO t3 VALUES(13571, 56692, 'fifty-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(13572, 44602, 'forty-four thousand six hundred two');\nINSERT INTO t3 VALUES(13573, 67918, 'sixty-seven thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(13574, 1803, 'one thousand eight hundred three');\nINSERT INTO t3 VALUES(13575, 15145, 'fifteen thousand one hundred forty-five');\nINSERT INTO t3 VALUES(13576, 36537, 'thirty-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(13577, 24109, 'twenty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(13578, 19876, 'nineteen thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(13579, 60207, 'sixty thousand two hundred seven');\nINSERT INTO t3 VALUES(13580, 29207, 'twenty-nine thousand two hundred seven');\nINSERT INTO t3 VALUES(13581, 56429, 'fifty-six thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(13582, 37535, 'thirty-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(13583, 85934, 'eighty-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(13584, 41938, 'forty-one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13585, 46784, 'forty-six thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(13586, 78580, 'seventy-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(13587, 45566, 'forty-five thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(13588, 10161, 'ten thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(13589, 6154, 'six thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(13590, 23301, 'twenty-three thousand three hundred one');\nINSERT INTO t3 VALUES(13591, 57986, 'fifty-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(13592, 44499, 'forty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13593, 99171, 'ninety-nine thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13594, 29175, 'twenty-nine thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(13595, 92886, 'ninety-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(13596, 18921, 'eighteen thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(13597, 24201, 'twenty-four thousand two hundred one');\nINSERT INTO t3 VALUES(13598, 73123, 'seventy-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(13599, 66328, 'sixty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13600, 55686, 'fifty-five thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(13601, 1943, 'one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(13602, 81508, 'eighty-one thousand five hundred eight');\nINSERT INTO t3 VALUES(13603, 21239, 'twenty-one thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(13604, 9414, 'nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(13605, 29164, 'twenty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(13606, 41613, 'forty-one thousand six hundred thirteen');\nINSERT INTO t3 VALUES(13607, 74457, 'seventy-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(13608, 8754, 'eight thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(13609, 10681, 'ten thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(13610, 24393, 'twenty-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(13611, 24211, 'twenty-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(13612, 30021, 'thirty thousand twenty-one');\nINSERT INTO t3 VALUES(13613, 50349, 'fifty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(13614, 66275, 'sixty-six thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(13615, 97350, 'ninety-seven thousand three hundred fifty');\nINSERT INTO t3 VALUES(13616, 92377, 'ninety-two thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13617, 41627, 'forty-one thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(13618, 41964, 'forty-one thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(13619, 82508, 'eighty-two thousand five hundred eight');\nINSERT INTO t3 VALUES(13620, 48449, 'forty-eight thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(13621, 88595, 'eighty-eight thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(13622, 11994, 'eleven thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(13623, 39306, 'thirty-nine thousand three hundred six');\nINSERT INTO t3 VALUES(13624, 6551, 'six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(13625, 47896, 'forty-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(13626, 37404, 'thirty-seven thousand four hundred four');\nINSERT INTO t3 VALUES(13627, 93261, 'ninety-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(13628, 83021, 'eighty-three thousand twenty-one');\nINSERT INTO t3 VALUES(13629, 56118, 'fifty-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(13630, 52551, 'fifty-two thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(13631, 47110, 'forty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(13632, 43167, 'forty-three thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(13633, 79542, 'seventy-nine thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13634, 46939, 'forty-six thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(13635, 71268, 'seventy-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(13636, 86534, 'eighty-six thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(13637, 38618, 'thirty-eight thousand six hundred eighteen');\nINSERT INTO t3 VALUES(13638, 99131, 'ninety-nine thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(13639, 84472, 'eighty-four thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(13640, 89328, 'eighty-nine thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13641, 29245, 'twenty-nine thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13642, 59709, 'fifty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(13643, 85723, 'eighty-five thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(13644, 30019, 'thirty thousand nineteen');\nINSERT INTO t3 VALUES(13645, 16138, 'sixteen thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(13646, 52688, 'fifty-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(13647, 62478, 'sixty-two thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(13648, 96156, 'ninety-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(13649, 88164, 'eighty-eight thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(13650, 71440, 'seventy-one thousand four hundred forty');\nINSERT INTO t3 VALUES(13651, 74688, 'seventy-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(13652, 18531, 'eighteen thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(13653, 14557, 'fourteen thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(13654, 89227, 'eighty-nine thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(13655, 32160, 'thirty-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(13656, 42452, 'forty-two thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(13657, 65362, 'sixty-five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(13658, 13918, 'thirteen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(13659, 33572, 'thirty-three thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(13660, 82546, 'eighty-two thousand five hundred forty-six');\nINSERT INTO t3 VALUES(13661, 51285, 'fifty-one thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(13662, 95766, 'ninety-five thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(13663, 33710, 'thirty-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(13664, 12569, 'twelve thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(13665, 75196, 'seventy-five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(13666, 45772, 'forty-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(13667, 59020, 'fifty-nine thousand twenty');\nINSERT INTO t3 VALUES(13668, 39879, 'thirty-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(13669, 97366, 'ninety-seven thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(13670, 80589, 'eighty thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(13671, 11067, 'eleven thousand sixty-seven');\nINSERT INTO t3 VALUES(13672, 12016, 'twelve thousand sixteen');\nINSERT INTO t3 VALUES(13673, 92022, 'ninety-two thousand twenty-two');\nINSERT INTO t3 VALUES(13674, 40134, 'forty thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(13675, 30202, 'thirty thousand two hundred two');\nINSERT INTO t3 VALUES(13676, 75688, 'seventy-five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(13677, 43070, 'forty-three thousand seventy');\nINSERT INTO t3 VALUES(13678, 86228, 'eighty-six thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(13679, 59165, 'fifty-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13680, 18286, 'eighteen thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(13681, 46328, 'forty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(13682, 86548, 'eighty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(13683, 97667, 'ninety-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(13684, 7244, 'seven thousand two hundred forty-four');\nINSERT INTO t3 VALUES(13685, 31509, 'thirty-one thousand five hundred nine');\nINSERT INTO t3 VALUES(13686, 41970, 'forty-one thousand nine hundred seventy');\nINSERT INTO t3 VALUES(13687, 9049, 'nine thousand forty-nine');\nINSERT INTO t3 VALUES(13688, 8910, 'eight thousand nine hundred ten');\nINSERT INTO t3 VALUES(13689, 8756, 'eight thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(13690, 64988, 'sixty-four thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(13691, 1099, 'one thousand ninety-nine');\nINSERT INTO t3 VALUES(13692, 15267, 'fifteen thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(13693, 95581, 'ninety-five thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(13694, 20672, 'twenty thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(13695, 99139, 'ninety-nine thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(13696, 64165, 'sixty-four thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13697, 22449, 'twenty-two thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(13698, 28197, 'twenty-eight thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(13699, 37007, 'thirty-seven thousand seven');\nINSERT INTO t3 VALUES(13700, 22127, 'twenty-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(13701, 40755, 'forty thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(13702, 38069, 'thirty-eight thousand sixty-nine');\nINSERT INTO t3 VALUES(13703, 28323, 'twenty-eight thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(13704, 12626, 'twelve thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(13705, 28772, 'twenty-eight thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(13706, 86658, 'eighty-six thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(13707, 73460, 'seventy-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(13708, 38173, 'thirty-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(13709, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t3 VALUES(13710, 72134, 'seventy-two thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(13711, 61051, 'sixty-one thousand fifty-one');\nINSERT INTO t3 VALUES(13712, 93012, 'ninety-three thousand twelve');\nINSERT INTO t3 VALUES(13713, 73181, 'seventy-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(13714, 29444, 'twenty-nine thousand four hundred forty-four');\nINSERT INTO t3 VALUES(13715, 59951, 'fifty-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(13716, 79914, 'seventy-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13717, 36786, 'thirty-six thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(13718, 55355, 'fifty-five thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(13719, 3937, 'three thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(13720, 27914, 'twenty-seven thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13721, 89498, 'eighty-nine thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(13722, 68150, 'sixty-eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(13723, 2253, 'two thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(13724, 95501, 'ninety-five thousand five hundred one');\nINSERT INTO t3 VALUES(13725, 97012, 'ninety-seven thousand twelve');\nINSERT INTO t3 VALUES(13726, 99433, 'ninety-nine thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(13727, 45098, 'forty-five thousand ninety-eight');\nINSERT INTO t3 VALUES(13728, 39812, 'thirty-nine thousand eight hundred twelve');\nINSERT INTO t3 VALUES(13729, 50499, 'fifty thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13730, 43791, 'forty-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(13731, 22768, 'twenty-two thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(13732, 91279, 'ninety-one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(13733, 31694, 'thirty-one thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(13734, 47770, 'forty-seven thousand seven hundred seventy');\nINSERT INTO t3 VALUES(13735, 21564, 'twenty-one thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(13736, 26072, 'twenty-six thousand seventy-two');\nINSERT INTO t3 VALUES(13737, 83165, 'eighty-three thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13738, 17221, 'seventeen thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(13739, 98498, 'ninety-eight thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(13740, 14842, 'fourteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(13741, 90554, 'ninety thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(13742, 62205, 'sixty-two thousand two hundred five');\nINSERT INTO t3 VALUES(13743, 94700, 'ninety-four thousand seven hundred');\nINSERT INTO t3 VALUES(13744, 78382, 'seventy-eight thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(13745, 51795, 'fifty-one thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(13746, 94887, 'ninety-four thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(13747, 79649, 'seventy-nine thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(13748, 92354, 'ninety-two thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(13749, 61632, 'sixty-one thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(13750, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13751, 54854, 'fifty-four thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(13752, 50764, 'fifty thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(13753, 59233, 'fifty-nine thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(13754, 8977, 'eight thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(13755, 54352, 'fifty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(13756, 92304, 'ninety-two thousand three hundred four');\nINSERT INTO t3 VALUES(13757, 48804, 'forty-eight thousand eight hundred four');\nINSERT INTO t3 VALUES(13758, 68205, 'sixty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(13759, 40565, 'forty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(13760, 23726, 'twenty-three thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(13761, 68846, 'sixty-eight thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(13762, 50131, 'fifty thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(13763, 87075, 'eighty-seven thousand seventy-five');\nINSERT INTO t3 VALUES(13764, 44491, 'forty-four thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(13765, 51590, 'fifty-one thousand five hundred ninety');\nINSERT INTO t3 VALUES(13766, 82560, 'eighty-two thousand five hundred sixty');\nINSERT INTO t3 VALUES(13767, 37576, 'thirty-seven thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(13768, 30956, 'thirty thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(13769, 18433, 'eighteen thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(13770, 49862, 'forty-nine thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(13771, 26441, 'twenty-six thousand four hundred forty-one');\nINSERT INTO t3 VALUES(13772, 46839, 'forty-six thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13773, 36345, 'thirty-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(13774, 42273, 'forty-two thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(13775, 61839, 'sixty-one thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(13776, 23622, 'twenty-three thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(13777, 90466, 'ninety thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(13778, 72220, 'seventy-two thousand two hundred twenty');\nINSERT INTO t3 VALUES(13779, 34782, 'thirty-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(13780, 76923, 'seventy-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(13781, 47080, 'forty-seven thousand eighty');\nINSERT INTO t3 VALUES(13782, 86362, 'eighty-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(13783, 87536, 'eighty-seven thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(13784, 12350, 'twelve thousand three hundred fifty');\nINSERT INTO t3 VALUES(13785, 53004, 'fifty-three thousand four');\nINSERT INTO t3 VALUES(13786, 66595, 'sixty-six thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(13787, 15994, 'fifteen thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(13788, 7954, 'seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(13789, 28835, 'twenty-eight thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(13790, 26989, 'twenty-six thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(13791, 53616, 'fifty-three thousand six hundred sixteen');\nINSERT INTO t3 VALUES(13792, 18222, 'eighteen thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(13793, 1916, 'one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13794, 53626, 'fifty-three thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(13795, 46533, 'forty-six thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(13796, 82218, 'eighty-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(13797, 22862, 'twenty-two thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(13798, 42844, 'forty-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(13799, 51560, 'fifty-one thousand five hundred sixty');\nINSERT INTO t3 VALUES(13800, 98578, 'ninety-eight thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(13801, 83245, 'eighty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13802, 15231, 'fifteen thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(13803, 62861, 'sixty-two thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(13804, 42344, 'forty-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(13805, 28132, 'twenty-eight thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(13806, 2983, 'two thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(13807, 10633, 'ten thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(13808, 71782, 'seventy-one thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(13809, 22697, 'twenty-two thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(13810, 26234, 'twenty-six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(13811, 10511, 'ten thousand five hundred eleven');\nINSERT INTO t3 VALUES(13812, 45386, 'forty-five thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(13813, 63246, 'sixty-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(13814, 24842, 'twenty-four thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(13815, 56436, 'fifty-six thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(13816, 81131, 'eighty-one thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(13817, 93008, 'ninety-three thousand eight');\nINSERT INTO t3 VALUES(13818, 47600, 'forty-seven thousand six hundred');\nINSERT INTO t3 VALUES(13819, 12384, 'twelve thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(13820, 69453, 'sixty-nine thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(13821, 15467, 'fifteen thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(13822, 59634, 'fifty-nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(13823, 84148, 'eighty-four thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(13824, 70593, 'seventy thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(13825, 46990, 'forty-six thousand nine hundred ninety');\nINSERT INTO t3 VALUES(13826, 12809, 'twelve thousand eight hundred nine');\nINSERT INTO t3 VALUES(13827, 49764, 'forty-nine thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(13828, 14476, 'fourteen thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(13829, 25191, 'twenty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(13830, 59687, 'fifty-nine thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(13831, 19781, 'nineteen thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(13832, 32597, 'thirty-two thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13833, 35175, 'thirty-five thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(13834, 87914, 'eighty-seven thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(13835, 31894, 'thirty-one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(13836, 70854, 'seventy thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(13837, 17345, 'seventeen thousand three hundred forty-five');\nINSERT INTO t3 VALUES(13838, 86380, 'eighty-six thousand three hundred eighty');\nINSERT INTO t3 VALUES(13839, 3198, 'three thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13840, 24795, 'twenty-four thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(13841, 26975, 'twenty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(13842, 79249, 'seventy-nine thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(13843, 32446, 'thirty-two thousand four hundred forty-six');\nINSERT INTO t3 VALUES(13844, 67718, 'sixty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(13845, 50939, 'fifty thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(13846, 43242, 'forty-three thousand two hundred forty-two');\nINSERT INTO t3 VALUES(13847, 19433, 'nineteen thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(13848, 11490, 'eleven thousand four hundred ninety');\nINSERT INTO t3 VALUES(13849, 51334, 'fifty-one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(13850, 87938, 'eighty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13851, 39493, 'thirty-nine thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(13852, 27455, 'twenty-seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(13853, 50078, 'fifty thousand seventy-eight');\nINSERT INTO t3 VALUES(13854, 83424, 'eighty-three thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(13855, 4286, 'four thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(13856, 35938, 'thirty-five thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(13857, 53375, 'fifty-three thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(13858, 96106, 'ninety-six thousand one hundred six');\nINSERT INTO t3 VALUES(13859, 85902, 'eighty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(13860, 55837, 'fifty-five thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(13861, 9830, 'nine thousand eight hundred thirty');\nINSERT INTO t3 VALUES(13862, 15241, 'fifteen thousand two hundred forty-one');\nINSERT INTO t3 VALUES(13863, 16384, 'sixteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(13864, 41241, 'forty-one thousand two hundred forty-one');\nINSERT INTO t3 VALUES(13865, 74496, 'seventy-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(13866, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(13867, 83762, 'eighty-three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(13868, 69616, 'sixty-nine thousand six hundred sixteen');\nINSERT INTO t3 VALUES(13869, 76765, 'seventy-six thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(13870, 94862, 'ninety-four thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(13871, 34444, 'thirty-four thousand four hundred forty-four');\nINSERT INTO t3 VALUES(13872, 18245, 'eighteen thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13873, 506, 'five hundred six');\nINSERT INTO t3 VALUES(13874, 2004, 'two thousand four');\nINSERT INTO t3 VALUES(13875, 18450, 'eighteen thousand four hundred fifty');\nINSERT INTO t3 VALUES(13876, 93173, 'ninety-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(13877, 78260, 'seventy-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(13878, 53617, 'fifty-three thousand six hundred seventeen');\nINSERT INTO t3 VALUES(13879, 67591, 'sixty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(13880, 50003, 'fifty thousand three');\nINSERT INTO t3 VALUES(13881, 3881, 'three thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(13882, 24719, 'twenty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(13883, 11308, 'eleven thousand three hundred eight');\nINSERT INTO t3 VALUES(13884, 99283, 'ninety-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13885, 11004, 'eleven thousand four');\nINSERT INTO t3 VALUES(13886, 72708, 'seventy-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(13887, 36791, 'thirty-six thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(13888, 17542, 'seventeen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(13889, 14809, 'fourteen thousand eight hundred nine');\nINSERT INTO t3 VALUES(13890, 92123, 'ninety-two thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(13891, 17326, 'seventeen thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(13892, 74709, 'seventy-four thousand seven hundred nine');\nINSERT INTO t3 VALUES(13893, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(13894, 8078, 'eight thousand seventy-eight');\nINSERT INTO t3 VALUES(13895, 46879, 'forty-six thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(13896, 58011, 'fifty-eight thousand eleven');\nINSERT INTO t3 VALUES(13897, 54352, 'fifty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(13898, 16235, 'sixteen thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(13899, 4278, 'four thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(13900, 85315, 'eighty-five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(13901, 8374, 'eight thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(13902, 17825, 'seventeen thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(13903, 10431, 'ten thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(13904, 74458, 'seventy-four thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(13905, 64768, 'sixty-four thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(13906, 53411, 'fifty-three thousand four hundred eleven');\nINSERT INTO t3 VALUES(13907, 44856, 'forty-four thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(13908, 85283, 'eighty-five thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13909, 50595, 'fifty thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(13910, 32334, 'thirty-two thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(13911, 72344, 'seventy-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(13912, 71649, 'seventy-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(13913, 89150, 'eighty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(13914, 84303, 'eighty-four thousand three hundred three');\nINSERT INTO t3 VALUES(13915, 30665, 'thirty thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(13916, 78780, 'seventy-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(13917, 89025, 'eighty-nine thousand twenty-five');\nINSERT INTO t3 VALUES(13918, 41063, 'forty-one thousand sixty-three');\nINSERT INTO t3 VALUES(13919, 33110, 'thirty-three thousand one hundred ten');\nINSERT INTO t3 VALUES(13920, 65803, 'sixty-five thousand eight hundred three');\nINSERT INTO t3 VALUES(13921, 49198, 'forty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(13922, 90327, 'ninety thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(13923, 68471, 'sixty-eight thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(13924, 7429, 'seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(13925, 8150, 'eight thousand one hundred fifty');\nINSERT INTO t3 VALUES(13926, 89548, 'eighty-nine thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(13927, 7171, 'seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13928, 90836, 'ninety thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(13929, 25283, 'twenty-five thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13930, 88507, 'eighty-eight thousand five hundred seven');\nINSERT INTO t3 VALUES(13931, 20224, 'twenty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(13932, 73097, 'seventy-three thousand ninety-seven');\nINSERT INTO t3 VALUES(13933, 4549, 'four thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(13934, 37916, 'thirty-seven thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(13935, 61924, 'sixty-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(13936, 67336, 'sixty-seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(13937, 95064, 'ninety-five thousand sixty-four');\nINSERT INTO t3 VALUES(13938, 96587, 'ninety-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(13939, 29571, 'twenty-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(13940, 28864, 'twenty-eight thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(13941, 23332, 'twenty-three thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(13942, 61389, 'sixty-one thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(13943, 71524, 'seventy-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(13944, 57931, 'fifty-seven thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(13945, 4443, 'four thousand four hundred forty-three');\nINSERT INTO t3 VALUES(13946, 6783, 'six thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(13947, 58263, 'fifty-eight thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(13948, 94460, 'ninety-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(13949, 75297, 'seventy-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(13950, 61635, 'sixty-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(13951, 52074, 'fifty-two thousand seventy-four');\nINSERT INTO t3 VALUES(13952, 53478, 'fifty-three thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(13953, 72076, 'seventy-two thousand seventy-six');\nINSERT INTO t3 VALUES(13954, 17923, 'seventeen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(13955, 77086, 'seventy-seven thousand eighty-six');\nINSERT INTO t3 VALUES(13956, 10932, 'ten thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(13957, 57580, 'fifty-seven thousand five hundred eighty');\nINSERT INTO t3 VALUES(13958, 31437, 'thirty-one thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(13959, 41326, 'forty-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(13960, 80597, 'eighty thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(13961, 46540, 'forty-six thousand five hundred forty');\nINSERT INTO t3 VALUES(13962, 75245, 'seventy-five thousand two hundred forty-five');\nINSERT INTO t3 VALUES(13963, 54585, 'fifty-four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(13964, 1122, 'one thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(13965, 73413, 'seventy-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(13966, 20334, 'twenty thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(13967, 95300, 'ninety-five thousand three hundred');\nINSERT INTO t3 VALUES(13968, 7348, 'seven thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(13969, 74165, 'seventy-four thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(13970, 30473, 'thirty thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(13971, 15377, 'fifteen thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(13972, 43499, 'forty-three thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(13973, 22262, 'twenty-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(13974, 17978, 'seventeen thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(13975, 78716, 'seventy-eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(13976, 62759, 'sixty-two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(13977, 65360, 'sixty-five thousand three hundred sixty');\nINSERT INTO t3 VALUES(13978, 94651, 'ninety-four thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(13979, 69989, 'sixty-nine thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(13980, 65567, 'sixty-five thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(13981, 81075, 'eighty-one thousand seventy-five');\nINSERT INTO t3 VALUES(13982, 57906, 'fifty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(13983, 64171, 'sixty-four thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(13984, 41289, 'forty-one thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(13985, 28860, 'twenty-eight thousand eight hundred sixty');\nINSERT INTO t3 VALUES(13986, 22556, 'twenty-two thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(13987, 16439, 'sixteen thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(13988, 95639, 'ninety-five thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(13989, 49010, 'forty-nine thousand ten');\nINSERT INTO t3 VALUES(13990, 90766, 'ninety thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(13991, 84651, 'eighty-four thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(13992, 50935, 'fifty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(13993, 88748, 'eighty-eight thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(13994, 84745, 'eighty-four thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(13995, 39283, 'thirty-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(13996, 7382, 'seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(13997, 90804, 'ninety thousand eight hundred four');\nINSERT INTO t3 VALUES(13998, 33033, 'thirty-three thousand thirty-three');\nINSERT INTO t3 VALUES(13999, 55866, 'fifty-five thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(14000, 27443, 'twenty-seven thousand four hundred forty-three');\nINSERT INTO t3 VALUES(14001, 6070, 'six thousand seventy');\nINSERT INTO t3 VALUES(14002, 80920, 'eighty thousand nine hundred twenty');\nINSERT INTO t3 VALUES(14003, 33757, 'thirty-three thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(14004, 97400, 'ninety-seven thousand four hundred');\nINSERT INTO t3 VALUES(14005, 87218, 'eighty-seven thousand two hundred eighteen');\nINSERT INTO t3 VALUES(14006, 80987, 'eighty thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14007, 64071, 'sixty-four thousand seventy-one');\nINSERT INTO t3 VALUES(14008, 660, 'six hundred sixty');\nINSERT INTO t3 VALUES(14009, 90275, 'ninety thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(14010, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(14011, 1142, 'one thousand one hundred forty-two');\nINSERT INTO t3 VALUES(14012, 3728, 'three thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(14013, 58292, 'fifty-eight thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(14014, 38028, 'thirty-eight thousand twenty-eight');\nINSERT INTO t3 VALUES(14015, 53442, 'fifty-three thousand four hundred forty-two');\nINSERT INTO t3 VALUES(14016, 24799, 'twenty-four thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(14017, 81197, 'eighty-one thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(14018, 73241, 'seventy-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14019, 55543, 'fifty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(14020, 94372, 'ninety-four thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(14021, 85179, 'eighty-five thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(14022, 98999, 'ninety-eight thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(14023, 16290, 'sixteen thousand two hundred ninety');\nINSERT INTO t3 VALUES(14024, 47770, 'forty-seven thousand seven hundred seventy');\nINSERT INTO t3 VALUES(14025, 47769, 'forty-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(14026, 25395, 'twenty-five thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(14027, 63378, 'sixty-three thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(14028, 8868, 'eight thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(14029, 53151, 'fifty-three thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(14030, 21042, 'twenty-one thousand forty-two');\nINSERT INTO t3 VALUES(14031, 41835, 'forty-one thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(14032, 16, 'sixteen');\nINSERT INTO t3 VALUES(14033, 91849, 'ninety-one thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(14034, 98327, 'ninety-eight thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(14035, 30459, 'thirty thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(14036, 5717, 'five thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(14037, 46998, 'forty-six thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(14038, 75117, 'seventy-five thousand one hundred seventeen');\nINSERT INTO t3 VALUES(14039, 85536, 'eighty-five thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(14040, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(14041, 16306, 'sixteen thousand three hundred six');\nINSERT INTO t3 VALUES(14042, 81135, 'eighty-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(14043, 5391, 'five thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(14044, 44837, 'forty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(14045, 57077, 'fifty-seven thousand seventy-seven');\nINSERT INTO t3 VALUES(14046, 83177, 'eighty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(14047, 9160, 'nine thousand one hundred sixty');\nINSERT INTO t3 VALUES(14048, 35946, 'thirty-five thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(14049, 279, 'two hundred seventy-nine');\nINSERT INTO t3 VALUES(14050, 64595, 'sixty-four thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14051, 19603, 'nineteen thousand six hundred three');\nINSERT INTO t3 VALUES(14052, 50428, 'fifty thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(14053, 71887, 'seventy-one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(14054, 8099, 'eight thousand ninety-nine');\nINSERT INTO t3 VALUES(14055, 98815, 'ninety-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(14056, 34011, 'thirty-four thousand eleven');\nINSERT INTO t3 VALUES(14057, 21291, 'twenty-one thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14058, 54405, 'fifty-four thousand four hundred five');\nINSERT INTO t3 VALUES(14059, 5340, 'five thousand three hundred forty');\nINSERT INTO t3 VALUES(14060, 17683, 'seventeen thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(14061, 70167, 'seventy thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(14062, 50277, 'fifty thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(14063, 49889, 'forty-nine thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(14064, 74868, 'seventy-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(14065, 57759, 'fifty-seven thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(14066, 83959, 'eighty-three thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(14067, 21287, 'twenty-one thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(14068, 7022, 'seven thousand twenty-two');\nINSERT INTO t3 VALUES(14069, 79342, 'seventy-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(14070, 18522, 'eighteen thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(14071, 96548, 'ninety-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(14072, 70039, 'seventy thousand thirty-nine');\nINSERT INTO t3 VALUES(14073, 67499, 'sixty-seven thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(14074, 44843, 'forty-four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(14075, 60852, 'sixty thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(14076, 49005, 'forty-nine thousand five');\nINSERT INTO t3 VALUES(14077, 42691, 'forty-two thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14078, 76353, 'seventy-six thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(14079, 73231, 'seventy-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(14080, 51812, 'fifty-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(14081, 4065, 'four thousand sixty-five');\nINSERT INTO t3 VALUES(14082, 20048, 'twenty thousand forty-eight');\nINSERT INTO t3 VALUES(14083, 29253, 'twenty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(14084, 7918, 'seven thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(14085, 46036, 'forty-six thousand thirty-six');\nINSERT INTO t3 VALUES(14086, 80726, 'eighty thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(14087, 41651, 'forty-one thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(14088, 66489, 'sixty-six thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(14089, 90786, 'ninety thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(14090, 70711, 'seventy thousand seven hundred eleven');\nINSERT INTO t3 VALUES(14091, 2226, 'two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14092, 34868, 'thirty-four thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(14093, 44909, 'forty-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(14094, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(14095, 11780, 'eleven thousand seven hundred eighty');\nINSERT INTO t3 VALUES(14096, 70448, 'seventy thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(14097, 32410, 'thirty-two thousand four hundred ten');\nINSERT INTO t3 VALUES(14098, 52775, 'fifty-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(14099, 80734, 'eighty thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(14100, 64700, 'sixty-four thousand seven hundred');\nINSERT INTO t3 VALUES(14101, 30, 'thirty');\nINSERT INTO t3 VALUES(14102, 58756, 'fifty-eight thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(14103, 26156, 'twenty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(14104, 29099, 'twenty-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(14105, 32031, 'thirty-two thousand thirty-one');\nINSERT INTO t3 VALUES(14106, 78367, 'seventy-eight thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(14107, 47451, 'forty-seven thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(14108, 25179, 'twenty-five thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(14109, 26956, 'twenty-six thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(14110, 71063, 'seventy-one thousand sixty-three');\nINSERT INTO t3 VALUES(14111, 88631, 'eighty-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(14112, 20676, 'twenty thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(14113, 38569, 'thirty-eight thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(14114, 45862, 'forty-five thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(14115, 97222, 'ninety-seven thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(14116, 23847, 'twenty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(14117, 27914, 'twenty-seven thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(14118, 26343, 'twenty-six thousand three hundred forty-three');\nINSERT INTO t3 VALUES(14119, 5566, 'five thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14120, 91348, 'ninety-one thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(14121, 72169, 'seventy-two thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(14122, 35229, 'thirty-five thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(14123, 20626, 'twenty thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(14124, 84934, 'eighty-four thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(14125, 97143, 'ninety-seven thousand one hundred forty-three');\nINSERT INTO t3 VALUES(14126, 57316, 'fifty-seven thousand three hundred sixteen');\nINSERT INTO t3 VALUES(14127, 70205, 'seventy thousand two hundred five');\nINSERT INTO t3 VALUES(14128, 55119, 'fifty-five thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14129, 14023, 'fourteen thousand twenty-three');\nINSERT INTO t3 VALUES(14130, 69712, 'sixty-nine thousand seven hundred twelve');\nINSERT INTO t3 VALUES(14131, 69034, 'sixty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(14132, 27592, 'twenty-seven thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(14133, 14323, 'fourteen thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(14134, 56164, 'fifty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(14135, 67875, 'sixty-seven thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(14136, 7556, 'seven thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(14137, 47319, 'forty-seven thousand three hundred nineteen');\nINSERT INTO t3 VALUES(14138, 39533, 'thirty-nine thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(14139, 37545, 'thirty-seven thousand five hundred forty-five');\nINSERT INTO t3 VALUES(14140, 42119, 'forty-two thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14141, 39886, 'thirty-nine thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(14142, 83467, 'eighty-three thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(14143, 65379, 'sixty-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(14144, 74107, 'seventy-four thousand one hundred seven');\nINSERT INTO t3 VALUES(14145, 92627, 'ninety-two thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(14146, 20984, 'twenty thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(14147, 72444, 'seventy-two thousand four hundred forty-four');\nINSERT INTO t3 VALUES(14148, 36611, 'thirty-six thousand six hundred eleven');\nINSERT INTO t3 VALUES(14149, 83169, 'eighty-three thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(14150, 22705, 'twenty-two thousand seven hundred five');\nINSERT INTO t3 VALUES(14151, 34171, 'thirty-four thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(14152, 37130, 'thirty-seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(14153, 92769, 'ninety-two thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(14154, 70754, 'seventy thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(14155, 51656, 'fifty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(14156, 50732, 'fifty thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(14157, 16488, 'sixteen thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(14158, 79570, 'seventy-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(14159, 62083, 'sixty-two thousand eighty-three');\nINSERT INTO t3 VALUES(14160, 4761, 'four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(14161, 27727, 'twenty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(14162, 37092, 'thirty-seven thousand ninety-two');\nINSERT INTO t3 VALUES(14163, 64288, 'sixty-four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(14164, 97438, 'ninety-seven thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(14165, 31498, 'thirty-one thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(14166, 99157, 'ninety-nine thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(14167, 15456, 'fifteen thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(14168, 79114, 'seventy-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(14169, 28346, 'twenty-eight thousand three hundred forty-six');\nINSERT INTO t3 VALUES(14170, 48753, 'forty-eight thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(14171, 14314, 'fourteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(14172, 69211, 'sixty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(14173, 87614, 'eighty-seven thousand six hundred fourteen');\nINSERT INTO t3 VALUES(14174, 21482, 'twenty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(14175, 84555, 'eighty-four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(14176, 92481, 'ninety-two thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(14177, 80601, 'eighty thousand six hundred one');\nINSERT INTO t3 VALUES(14178, 86326, 'eighty-six thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(14179, 51725, 'fifty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(14180, 25639, 'twenty-five thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(14181, 86604, 'eighty-six thousand six hundred four');\nINSERT INTO t3 VALUES(14182, 9013, 'nine thousand thirteen');\nINSERT INTO t3 VALUES(14183, 10834, 'ten thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(14184, 24644, 'twenty-four thousand six hundred forty-four');\nINSERT INTO t3 VALUES(14185, 69444, 'sixty-nine thousand four hundred forty-four');\nINSERT INTO t3 VALUES(14186, 13141, 'thirteen thousand one hundred forty-one');\nINSERT INTO t3 VALUES(14187, 29103, 'twenty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(14188, 83682, 'eighty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(14189, 43992, 'forty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(14190, 74783, 'seventy-four thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(14191, 42437, 'forty-two thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(14192, 4381, 'four thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14193, 61759, 'sixty-one thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(14194, 54951, 'fifty-four thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(14195, 19140, 'nineteen thousand one hundred forty');\nINSERT INTO t3 VALUES(14196, 57927, 'fifty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(14197, 47775, 'forty-seven thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(14198, 52878, 'fifty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(14199, 83869, 'eighty-three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(14200, 41009, 'forty-one thousand nine');\nINSERT INTO t3 VALUES(14201, 32065, 'thirty-two thousand sixty-five');\nINSERT INTO t3 VALUES(14202, 75242, 'seventy-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(14203, 88982, 'eighty-eight thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(14204, 84425, 'eighty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(14205, 86469, 'eighty-six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(14206, 4916, 'four thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(14207, 40930, 'forty thousand nine hundred thirty');\nINSERT INTO t3 VALUES(14208, 43178, 'forty-three thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(14209, 16744, 'sixteen thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(14210, 7823, 'seven thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(14211, 88086, 'eighty-eight thousand eighty-six');\nINSERT INTO t3 VALUES(14212, 19551, 'nineteen thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(14213, 25943, 'twenty-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(14214, 89127, 'eighty-nine thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(14215, 63497, 'sixty-three thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(14216, 82765, 'eighty-two thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(14217, 30305, 'thirty thousand three hundred five');\nINSERT INTO t3 VALUES(14218, 58564, 'fifty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(14219, 28257, 'twenty-eight thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(14220, 77279, 'seventy-seven thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(14221, 51722, 'fifty-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(14222, 24282, 'twenty-four thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(14223, 62794, 'sixty-two thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(14224, 44363, 'forty-four thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(14225, 89297, 'eighty-nine thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(14226, 39420, 'thirty-nine thousand four hundred twenty');\nINSERT INTO t3 VALUES(14227, 8990, 'eight thousand nine hundred ninety');\nINSERT INTO t3 VALUES(14228, 92556, 'ninety-two thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(14229, 47958, 'forty-seven thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(14230, 94381, 'ninety-four thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14231, 94323, 'ninety-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(14232, 43972, 'forty-three thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(14233, 2510, 'two thousand five hundred ten');\nINSERT INTO t3 VALUES(14234, 21945, 'twenty-one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(14235, 23777, 'twenty-three thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(14236, 64407, 'sixty-four thousand four hundred seven');\nINSERT INTO t3 VALUES(14237, 30935, 'thirty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14238, 38018, 'thirty-eight thousand eighteen');\nINSERT INTO t3 VALUES(14239, 96118, 'ninety-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(14240, 45534, 'forty-five thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(14241, 85873, 'eighty-five thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(14242, 67184, 'sixty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(14243, 65712, 'sixty-five thousand seven hundred twelve');\nINSERT INTO t3 VALUES(14244, 9435, 'nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(14245, 35322, 'thirty-five thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(14246, 91405, 'ninety-one thousand four hundred five');\nINSERT INTO t3 VALUES(14247, 62911, 'sixty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(14248, 7842, 'seven thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(14249, 51414, 'fifty-one thousand four hundred fourteen');\nINSERT INTO t3 VALUES(14250, 22465, 'twenty-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(14251, 32639, 'thirty-two thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(14252, 62212, 'sixty-two thousand two hundred twelve');\nINSERT INTO t3 VALUES(14253, 20304, 'twenty thousand three hundred four');\nINSERT INTO t3 VALUES(14254, 69574, 'sixty-nine thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(14255, 54688, 'fifty-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(14256, 59382, 'fifty-nine thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(14257, 63230, 'sixty-three thousand two hundred thirty');\nINSERT INTO t3 VALUES(14258, 94295, 'ninety-four thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(14259, 97845, 'ninety-seven thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(14260, 90665, 'ninety thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(14261, 57241, 'fifty-seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14262, 31129, 'thirty-one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(14263, 52584, 'fifty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(14264, 64248, 'sixty-four thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(14265, 74634, 'seventy-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(14266, 76404, 'seventy-six thousand four hundred four');\nINSERT INTO t3 VALUES(14267, 29486, 'twenty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(14268, 17786, 'seventeen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(14269, 62839, 'sixty-two thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(14270, 36637, 'thirty-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(14271, 50990, 'fifty thousand nine hundred ninety');\nINSERT INTO t3 VALUES(14272, 76728, 'seventy-six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(14273, 52060, 'fifty-two thousand sixty');\nINSERT INTO t3 VALUES(14274, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(14275, 60588, 'sixty thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(14276, 5076, 'five thousand seventy-six');\nINSERT INTO t3 VALUES(14277, 74857, 'seventy-four thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(14278, 46644, 'forty-six thousand six hundred forty-four');\nINSERT INTO t3 VALUES(14279, 60609, 'sixty thousand six hundred nine');\nINSERT INTO t3 VALUES(14280, 69598, 'sixty-nine thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14281, 57260, 'fifty-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(14282, 94989, 'ninety-four thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(14283, 58789, 'fifty-eight thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(14284, 73219, 'seventy-three thousand two hundred nineteen');\nINSERT INTO t3 VALUES(14285, 29093, 'twenty-nine thousand ninety-three');\nINSERT INTO t3 VALUES(14286, 21412, 'twenty-one thousand four hundred twelve');\nINSERT INTO t3 VALUES(14287, 90352, 'ninety thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(14288, 7151, 'seven thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(14289, 9830, 'nine thousand eight hundred thirty');\nINSERT INTO t3 VALUES(14290, 70265, 'seventy thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(14291, 7236, 'seven thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(14292, 24213, 'twenty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(14293, 34717, 'thirty-four thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(14294, 90624, 'ninety thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(14295, 36920, 'thirty-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(14296, 5055, 'five thousand fifty-five');\nINSERT INTO t3 VALUES(14297, 9154, 'nine thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(14298, 82441, 'eighty-two thousand four hundred forty-one');\nINSERT INTO t3 VALUES(14299, 40498, 'forty thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(14300, 5931, 'five thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(14301, 81847, 'eighty-one thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(14302, 16365, 'sixteen thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(14303, 64044, 'sixty-four thousand forty-four');\nINSERT INTO t3 VALUES(14304, 42828, 'forty-two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(14305, 77245, 'seventy-seven thousand two hundred forty-five');\nINSERT INTO t3 VALUES(14306, 68101, 'sixty-eight thousand one hundred one');\nINSERT INTO t3 VALUES(14307, 22692, 'twenty-two thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(14308, 33884, 'thirty-three thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(14309, 59114, 'fifty-nine thousand one hundred fourteen');\nINSERT INTO t3 VALUES(14310, 76416, 'seventy-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(14311, 49710, 'forty-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(14312, 51303, 'fifty-one thousand three hundred three');\nINSERT INTO t3 VALUES(14313, 72241, 'seventy-two thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14314, 90059, 'ninety thousand fifty-nine');\nINSERT INTO t3 VALUES(14315, 98357, 'ninety-eight thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(14316, 38819, 'thirty-eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(14317, 31864, 'thirty-one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(14318, 60077, 'sixty thousand seventy-seven');\nINSERT INTO t3 VALUES(14319, 76181, 'seventy-six thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(14320, 19692, 'nineteen thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(14321, 97806, 'ninety-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(14322, 61599, 'sixty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(14323, 34611, 'thirty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(14324, 84140, 'eighty-four thousand one hundred forty');\nINSERT INTO t3 VALUES(14325, 12217, 'twelve thousand two hundred seventeen');\nINSERT INTO t3 VALUES(14326, 82300, 'eighty-two thousand three hundred');\nINSERT INTO t3 VALUES(14327, 74272, 'seventy-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(14328, 74265, 'seventy-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(14329, 60922, 'sixty thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(14330, 45274, 'forty-five thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(14331, 29864, 'twenty-nine thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(14332, 43869, 'forty-three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(14333, 97801, 'ninety-seven thousand eight hundred one');\nINSERT INTO t3 VALUES(14334, 44111, 'forty-four thousand one hundred eleven');\nINSERT INTO t3 VALUES(14335, 31140, 'thirty-one thousand one hundred forty');\nINSERT INTO t3 VALUES(14336, 26431, 'twenty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(14337, 95892, 'ninety-five thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(14338, 23643, 'twenty-three thousand six hundred forty-three');\nINSERT INTO t3 VALUES(14339, 9987, 'nine thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14340, 38559, 'thirty-eight thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(14341, 12285, 'twelve thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(14342, 95915, 'ninety-five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(14343, 83802, 'eighty-three thousand eight hundred two');\nINSERT INTO t3 VALUES(14344, 27394, 'twenty-seven thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(14345, 2087, 'two thousand eighty-seven');\nINSERT INTO t3 VALUES(14346, 95448, 'ninety-five thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(14347, 68544, 'sixty-eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(14348, 96637, 'ninety-six thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(14349, 97022, 'ninety-seven thousand twenty-two');\nINSERT INTO t3 VALUES(14350, 22948, 'twenty-two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(14351, 60979, 'sixty thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14352, 95824, 'ninety-five thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(14353, 57159, 'fifty-seven thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(14354, 54898, 'fifty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(14355, 35741, 'thirty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(14356, 14997, 'fourteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(14357, 79366, 'seventy-nine thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(14358, 99647, 'ninety-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(14359, 65949, 'sixty-five thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(14360, 7391, 'seven thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(14361, 4665, 'four thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(14362, 54674, 'fifty-four thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(14363, 48491, 'forty-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(14364, 64611, 'sixty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(14365, 5079, 'five thousand seventy-nine');\nINSERT INTO t3 VALUES(14366, 96510, 'ninety-six thousand five hundred ten');\nINSERT INTO t3 VALUES(14367, 19930, 'nineteen thousand nine hundred thirty');\nINSERT INTO t3 VALUES(14368, 14729, 'fourteen thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(14369, 54085, 'fifty-four thousand eighty-five');\nINSERT INTO t3 VALUES(14370, 18388, 'eighteen thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(14371, 47262, 'forty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(14372, 38350, 'thirty-eight thousand three hundred fifty');\nINSERT INTO t3 VALUES(14373, 14133, 'fourteen thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(14374, 4247, 'four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(14375, 15359, 'fifteen thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(14376, 10308, 'ten thousand three hundred eight');\nINSERT INTO t3 VALUES(14377, 26455, 'twenty-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(14378, 71989, 'seventy-one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(14379, 2371, 'two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(14380, 44012, 'forty-four thousand twelve');\nINSERT INTO t3 VALUES(14381, 3578, 'three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(14382, 33913, 'thirty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(14383, 87445, 'eighty-seven thousand four hundred forty-five');\nINSERT INTO t3 VALUES(14384, 26229, 'twenty-six thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(14385, 1263, 'one thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(14386, 68279, 'sixty-eight thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(14387, 13226, 'thirteen thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14388, 87733, 'eighty-seven thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(14389, 79940, 'seventy-nine thousand nine hundred forty');\nINSERT INTO t3 VALUES(14390, 94181, 'ninety-four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(14391, 98470, 'ninety-eight thousand four hundred seventy');\nINSERT INTO t3 VALUES(14392, 29106, 'twenty-nine thousand one hundred six');\nINSERT INTO t3 VALUES(14393, 325, 'three hundred twenty-five');\nINSERT INTO t3 VALUES(14394, 57983, 'fifty-seven thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(14395, 7554, 'seven thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(14396, 94566, 'ninety-four thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14397, 10174, 'ten thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(14398, 60058, 'sixty thousand fifty-eight');\nINSERT INTO t3 VALUES(14399, 83177, 'eighty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(14400, 84461, 'eighty-four thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(14401, 10453, 'ten thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(14402, 79568, 'seventy-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(14403, 2432, 'two thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(14404, 22426, 'twenty-two thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(14405, 55022, 'fifty-five thousand twenty-two');\nINSERT INTO t3 VALUES(14406, 54477, 'fifty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(14407, 224, 'two hundred twenty-four');\nINSERT INTO t3 VALUES(14408, 80170, 'eighty thousand one hundred seventy');\nINSERT INTO t3 VALUES(14409, 74617, 'seventy-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(14410, 37826, 'thirty-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(14411, 13481, 'thirteen thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(14412, 55903, 'fifty-five thousand nine hundred three');\nINSERT INTO t3 VALUES(14413, 98563, 'ninety-eight thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(14414, 56487, 'fifty-six thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(14415, 69806, 'sixty-nine thousand eight hundred six');\nINSERT INTO t3 VALUES(14416, 78030, 'seventy-eight thousand thirty');\nINSERT INTO t3 VALUES(14417, 90461, 'ninety thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(14418, 32670, 'thirty-two thousand six hundred seventy');\nINSERT INTO t3 VALUES(14419, 90171, 'ninety thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(14420, 71633, 'seventy-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(14421, 34699, 'thirty-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(14422, 68435, 'sixty-eight thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(14423, 86962, 'eighty-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(14424, 7094, 'seven thousand ninety-four');\nINSERT INTO t3 VALUES(14425, 9991, 'nine thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(14426, 17207, 'seventeen thousand two hundred seven');\nINSERT INTO t3 VALUES(14427, 88226, 'eighty-eight thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14428, 46157, 'forty-six thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(14429, 99262, 'ninety-nine thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(14430, 45542, 'forty-five thousand five hundred forty-two');\nINSERT INTO t3 VALUES(14431, 85504, 'eighty-five thousand five hundred four');\nINSERT INTO t3 VALUES(14432, 70406, 'seventy thousand four hundred six');\nINSERT INTO t3 VALUES(14433, 12940, 'twelve thousand nine hundred forty');\nINSERT INTO t3 VALUES(14434, 30821, 'thirty thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(14435, 36246, 'thirty-six thousand two hundred forty-six');\nINSERT INTO t3 VALUES(14436, 89217, 'eighty-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(14437, 87303, 'eighty-seven thousand three hundred three');\nINSERT INTO t3 VALUES(14438, 10572, 'ten thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(14439, 29156, 'twenty-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(14440, 46980, 'forty-six thousand nine hundred eighty');\nINSERT INTO t3 VALUES(14441, 43683, 'forty-three thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(14442, 95156, 'ninety-five thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(14443, 15716, 'fifteen thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(14444, 44693, 'forty-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(14445, 49162, 'forty-nine thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(14446, 48546, 'forty-eight thousand five hundred forty-six');\nINSERT INTO t3 VALUES(14447, 36516, 'thirty-six thousand five hundred sixteen');\nINSERT INTO t3 VALUES(14448, 48270, 'forty-eight thousand two hundred seventy');\nINSERT INTO t3 VALUES(14449, 29979, 'twenty-nine thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14450, 6000, 'six thousand');\nINSERT INTO t3 VALUES(14451, 89570, 'eighty-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(14452, 1531, 'one thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(14453, 52598, 'fifty-two thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14454, 3987, 'three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14455, 80410, 'eighty thousand four hundred ten');\nINSERT INTO t3 VALUES(14456, 66354, 'sixty-six thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(14457, 82652, 'eighty-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(14458, 16187, 'sixteen thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(14459, 90640, 'ninety thousand six hundred forty');\nINSERT INTO t3 VALUES(14460, 23381, 'twenty-three thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14461, 24338, 'twenty-four thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(14462, 92652, 'ninety-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(14463, 41077, 'forty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(14464, 36577, 'thirty-six thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(14465, 20299, 'twenty thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(14466, 62776, 'sixty-two thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(14467, 67506, 'sixty-seven thousand five hundred six');\nINSERT INTO t3 VALUES(14468, 73012, 'seventy-three thousand twelve');\nINSERT INTO t3 VALUES(14469, 81291, 'eighty-one thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14470, 51806, 'fifty-one thousand eight hundred six');\nINSERT INTO t3 VALUES(14471, 10356, 'ten thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(14472, 14935, 'fourteen thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14473, 92150, 'ninety-two thousand one hundred fifty');\nINSERT INTO t3 VALUES(14474, 85918, 'eighty-five thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(14475, 22235, 'twenty-two thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(14476, 22731, 'twenty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(14477, 34465, 'thirty-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(14478, 20592, 'twenty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(14479, 42785, 'forty-two thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14480, 48326, 'forty-eight thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(14481, 11939, 'eleven thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(14482, 35144, 'thirty-five thousand one hundred forty-four');\nINSERT INTO t3 VALUES(14483, 92610, 'ninety-two thousand six hundred ten');\nINSERT INTO t3 VALUES(14484, 33640, 'thirty-three thousand six hundred forty');\nINSERT INTO t3 VALUES(14485, 69147, 'sixty-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(14486, 59398, 'fifty-nine thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(14487, 72857, 'seventy-two thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(14488, 13955, 'thirteen thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(14489, 14269, 'fourteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(14490, 51046, 'fifty-one thousand forty-six');\nINSERT INTO t3 VALUES(14491, 1683, 'one thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(14492, 34176, 'thirty-four thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(14493, 78035, 'seventy-eight thousand thirty-five');\nINSERT INTO t3 VALUES(14494, 6010, 'six thousand ten');\nINSERT INTO t3 VALUES(14495, 25220, 'twenty-five thousand two hundred twenty');\nINSERT INTO t3 VALUES(14496, 10069, 'ten thousand sixty-nine');\nINSERT INTO t3 VALUES(14497, 32014, 'thirty-two thousand fourteen');\nINSERT INTO t3 VALUES(14498, 42905, 'forty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(14499, 38341, 'thirty-eight thousand three hundred forty-one');\nINSERT INTO t3 VALUES(14500, 68819, 'sixty-eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(14501, 17996, 'seventeen thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(14502, 13424, 'thirteen thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(14503, 98015, 'ninety-eight thousand fifteen');\nINSERT INTO t3 VALUES(14504, 60066, 'sixty thousand sixty-six');\nINSERT INTO t3 VALUES(14505, 62737, 'sixty-two thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(14506, 43719, 'forty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(14507, 72053, 'seventy-two thousand fifty-three');\nINSERT INTO t3 VALUES(14508, 84111, 'eighty-four thousand one hundred eleven');\nINSERT INTO t3 VALUES(14509, 14871, 'fourteen thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(14510, 51984, 'fifty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(14511, 24022, 'twenty-four thousand twenty-two');\nINSERT INTO t3 VALUES(14512, 82959, 'eighty-two thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(14513, 61332, 'sixty-one thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(14514, 91621, 'ninety-one thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(14515, 79851, 'seventy-nine thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(14516, 62831, 'sixty-two thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(14517, 23427, 'twenty-three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(14518, 46295, 'forty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(14519, 66657, 'sixty-six thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(14520, 6208, 'six thousand two hundred eight');\nINSERT INTO t3 VALUES(14521, 66380, 'sixty-six thousand three hundred eighty');\nINSERT INTO t3 VALUES(14522, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t3 VALUES(14523, 61566, 'sixty-one thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14524, 89253, 'eighty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(14525, 59985, 'fifty-nine thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(14526, 97636, 'ninety-seven thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(14527, 9563, 'nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(14528, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(14529, 5650, 'five thousand six hundred fifty');\nINSERT INTO t3 VALUES(14530, 89709, 'eighty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(14531, 24506, 'twenty-four thousand five hundred six');\nINSERT INTO t3 VALUES(14532, 18122, 'eighteen thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(14533, 11118, 'eleven thousand one hundred eighteen');\nINSERT INTO t3 VALUES(14534, 19254, 'nineteen thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(14535, 48795, 'forty-eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(14536, 47002, 'forty-seven thousand two');\nINSERT INTO t3 VALUES(14537, 93246, 'ninety-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(14538, 93657, 'ninety-three thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(14539, 95971, 'ninety-five thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14540, 19687, 'nineteen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(14541, 7745, 'seven thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(14542, 95532, 'ninety-five thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(14543, 47374, 'forty-seven thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(14544, 66780, 'sixty-six thousand seven hundred eighty');\nINSERT INTO t3 VALUES(14545, 6678, 'six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(14546, 1601, 'one thousand six hundred one');\nINSERT INTO t3 VALUES(14547, 56690, 'fifty-six thousand six hundred ninety');\nINSERT INTO t3 VALUES(14548, 61801, 'sixty-one thousand eight hundred one');\nINSERT INTO t3 VALUES(14549, 18009, 'eighteen thousand nine');\nINSERT INTO t3 VALUES(14550, 28747, 'twenty-eight thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(14551, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(14552, 43763, 'forty-three thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(14553, 54158, 'fifty-four thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(14554, 1818, 'one thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(14555, 24612, 'twenty-four thousand six hundred twelve');\nINSERT INTO t3 VALUES(14556, 46670, 'forty-six thousand six hundred seventy');\nINSERT INTO t3 VALUES(14557, 91736, 'ninety-one thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(14558, 17262, 'seventeen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(14559, 78245, 'seventy-eight thousand two hundred forty-five');\nINSERT INTO t3 VALUES(14560, 97168, 'ninety-seven thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(14561, 80533, 'eighty thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(14562, 55311, 'fifty-five thousand three hundred eleven');\nINSERT INTO t3 VALUES(14563, 54210, 'fifty-four thousand two hundred ten');\nINSERT INTO t3 VALUES(14564, 48670, 'forty-eight thousand six hundred seventy');\nINSERT INTO t3 VALUES(14565, 69117, 'sixty-nine thousand one hundred seventeen');\nINSERT INTO t3 VALUES(14566, 45768, 'forty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(14567, 15407, 'fifteen thousand four hundred seven');\nINSERT INTO t3 VALUES(14568, 50050, 'fifty thousand fifty');\nINSERT INTO t3 VALUES(14569, 94177, 'ninety-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(14570, 48762, 'forty-eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(14571, 8834, 'eight thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(14572, 21433, 'twenty-one thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(14573, 14194, 'fourteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(14574, 38715, 'thirty-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(14575, 62721, 'sixty-two thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(14576, 2339, 'two thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(14577, 35936, 'thirty-five thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(14578, 62465, 'sixty-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(14579, 31586, 'thirty-one thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(14580, 95906, 'ninety-five thousand nine hundred six');\nINSERT INTO t3 VALUES(14581, 71334, 'seventy-one thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(14582, 84597, 'eighty-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(14583, 43360, 'forty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(14584, 38515, 'thirty-eight thousand five hundred fifteen');\nINSERT INTO t3 VALUES(14585, 76042, 'seventy-six thousand forty-two');\nINSERT INTO t3 VALUES(14586, 96336, 'ninety-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(14587, 42584, 'forty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(14588, 13018, 'thirteen thousand eighteen');\nINSERT INTO t3 VALUES(14589, 17527, 'seventeen thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(14590, 18176, 'eighteen thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(14591, 545, 'five hundred forty-five');\nINSERT INTO t3 VALUES(14592, 33773, 'thirty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(14593, 56040, 'fifty-six thousand forty');\nINSERT INTO t3 VALUES(14594, 78879, 'seventy-eight thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(14595, 19897, 'nineteen thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(14596, 65648, 'sixty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(14597, 76673, 'seventy-six thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(14598, 61800, 'sixty-one thousand eight hundred');\nINSERT INTO t3 VALUES(14599, 84624, 'eighty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(14600, 431, 'four hundred thirty-one');\nINSERT INTO t3 VALUES(14601, 10560, 'ten thousand five hundred sixty');\nINSERT INTO t3 VALUES(14602, 21302, 'twenty-one thousand three hundred two');\nINSERT INTO t3 VALUES(14603, 39091, 'thirty-nine thousand ninety-one');\nINSERT INTO t3 VALUES(14604, 65297, 'sixty-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(14605, 13528, 'thirteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14606, 28883, 'twenty-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(14607, 28028, 'twenty-eight thousand twenty-eight');\nINSERT INTO t3 VALUES(14608, 81862, 'eighty-one thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(14609, 43381, 'forty-three thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(14610, 16975, 'sixteen thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(14611, 8729, 'eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(14612, 61607, 'sixty-one thousand six hundred seven');\nINSERT INTO t3 VALUES(14613, 8924, 'eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(14614, 45396, 'forty-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(14615, 18785, 'eighteen thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14616, 58059, 'fifty-eight thousand fifty-nine');\nINSERT INTO t3 VALUES(14617, 7730, 'seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(14618, 92665, 'ninety-two thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(14619, 11839, 'eleven thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(14620, 14363, 'fourteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(14621, 44468, 'forty-four thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(14622, 1261, 'one thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(14623, 70566, 'seventy thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(14624, 84631, 'eighty-four thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(14625, 29741, 'twenty-nine thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(14626, 23415, 'twenty-three thousand four hundred fifteen');\nINSERT INTO t3 VALUES(14627, 16647, 'sixteen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(14628, 96296, 'ninety-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(14629, 22149, 'twenty-two thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(14630, 96119, 'ninety-six thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14631, 84117, 'eighty-four thousand one hundred seventeen');\nINSERT INTO t3 VALUES(14632, 74454, 'seventy-four thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(14633, 35335, 'thirty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(14634, 17656, 'seventeen thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(14635, 48971, 'forty-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14636, 30253, 'thirty thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(14637, 69918, 'sixty-nine thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(14638, 15651, 'fifteen thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(14639, 23684, 'twenty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(14640, 53382, 'fifty-three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(14641, 60408, 'sixty thousand four hundred eight');\nINSERT INTO t3 VALUES(14642, 92, 'ninety-two');\nINSERT INTO t3 VALUES(14643, 96043, 'ninety-six thousand forty-three');\nINSERT INTO t3 VALUES(14644, 32274, 'thirty-two thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(14645, 33194, 'thirty-three thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(14646, 27182, 'twenty-seven thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(14647, 25971, 'twenty-five thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14648, 61471, 'sixty-one thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(14649, 76607, 'seventy-six thousand six hundred seven');\nINSERT INTO t3 VALUES(14650, 66598, 'sixty-six thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14651, 73046, 'seventy-three thousand forty-six');\nINSERT INTO t3 VALUES(14652, 60290, 'sixty thousand two hundred ninety');\nINSERT INTO t3 VALUES(14653, 49954, 'forty-nine thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(14654, 40613, 'forty thousand six hundred thirteen');\nINSERT INTO t3 VALUES(14655, 18493, 'eighteen thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(14656, 47749, 'forty-seven thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(14657, 10241, 'ten thousand two hundred forty-one');\nINSERT INTO t3 VALUES(14658, 41418, 'forty-one thousand four hundred eighteen');\nINSERT INTO t3 VALUES(14659, 63347, 'sixty-three thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(14660, 96691, 'ninety-six thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14661, 36200, 'thirty-six thousand two hundred');\nINSERT INTO t3 VALUES(14662, 40970, 'forty thousand nine hundred seventy');\nINSERT INTO t3 VALUES(14663, 50620, 'fifty thousand six hundred twenty');\nINSERT INTO t3 VALUES(14664, 9166, 'nine thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(14665, 79757, 'seventy-nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(14666, 16569, 'sixteen thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(14667, 58815, 'fifty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(14668, 40528, 'forty thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14669, 94154, 'ninety-four thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(14670, 26496, 'twenty-six thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(14671, 26876, 'twenty-six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(14672, 37035, 'thirty-seven thousand thirty-five');\nINSERT INTO t3 VALUES(14673, 9839, 'nine thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(14674, 86149, 'eighty-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(14675, 1814, 'one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(14676, 52484, 'fifty-two thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(14677, 27971, 'twenty-seven thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(14678, 83691, 'eighty-three thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14679, 90928, 'ninety thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(14680, 38663, 'thirty-eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(14681, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(14682, 61583, 'sixty-one thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(14683, 53255, 'fifty-three thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(14684, 99600, 'ninety-nine thousand six hundred');\nINSERT INTO t3 VALUES(14685, 76202, 'seventy-six thousand two hundred two');\nINSERT INTO t3 VALUES(14686, 44120, 'forty-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(14687, 24322, 'twenty-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(14688, 21637, 'twenty-one thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(14689, 67258, 'sixty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(14690, 68273, 'sixty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(14691, 80361, 'eighty thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(14692, 68710, 'sixty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(14693, 67598, 'sixty-seven thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(14694, 89210, 'eighty-nine thousand two hundred ten');\nINSERT INTO t3 VALUES(14695, 7539, 'seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(14696, 97320, 'ninety-seven thousand three hundred twenty');\nINSERT INTO t3 VALUES(14697, 25192, 'twenty-five thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(14698, 94338, 'ninety-four thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(14699, 35995, 'thirty-five thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(14700, 90606, 'ninety thousand six hundred six');\nINSERT INTO t3 VALUES(14701, 10162, 'ten thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(14702, 96067, 'ninety-six thousand sixty-seven');\nINSERT INTO t3 VALUES(14703, 47228, 'forty-seven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(14704, 24641, 'twenty-four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(14705, 23059, 'twenty-three thousand fifty-nine');\nINSERT INTO t3 VALUES(14706, 10987, 'ten thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14707, 43983, 'forty-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(14708, 91510, 'ninety-one thousand five hundred ten');\nINSERT INTO t3 VALUES(14709, 37927, 'thirty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(14710, 76941, 'seventy-six thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(14711, 79922, 'seventy-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(14712, 49050, 'forty-nine thousand fifty');\nINSERT INTO t3 VALUES(14713, 58439, 'fifty-eight thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(14714, 28349, 'twenty-eight thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(14715, 94768, 'ninety-four thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(14716, 46010, 'forty-six thousand ten');\nINSERT INTO t3 VALUES(14717, 93285, 'ninety-three thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(14718, 76260, 'seventy-six thousand two hundred sixty');\nINSERT INTO t3 VALUES(14719, 40291, 'forty thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14720, 58924, 'fifty-eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(14721, 7485, 'seven thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(14722, 2979, 'two thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14723, 96733, 'ninety-six thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(14724, 88617, 'eighty-eight thousand six hundred seventeen');\nINSERT INTO t3 VALUES(14725, 46276, 'forty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(14726, 93069, 'ninety-three thousand sixty-nine');\nINSERT INTO t3 VALUES(14727, 28286, 'twenty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(14728, 54933, 'fifty-four thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(14729, 10434, 'ten thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(14730, 50818, 'fifty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(14731, 64699, 'sixty-four thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(14732, 77213, 'seventy-seven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(14733, 31291, 'thirty-one thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(14734, 86987, 'eighty-six thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(14735, 12738, 'twelve thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(14736, 33222, 'thirty-three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(14737, 64977, 'sixty-four thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(14738, 99141, 'ninety-nine thousand one hundred forty-one');\nINSERT INTO t3 VALUES(14739, 89130, 'eighty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(14740, 65348, 'sixty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(14741, 18826, 'eighteen thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(14742, 82411, 'eighty-two thousand four hundred eleven');\nINSERT INTO t3 VALUES(14743, 83515, 'eighty-three thousand five hundred fifteen');\nINSERT INTO t3 VALUES(14744, 16623, 'sixteen thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(14745, 29742, 'twenty-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(14746, 97023, 'ninety-seven thousand twenty-three');\nINSERT INTO t3 VALUES(14747, 21967, 'twenty-one thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(14748, 15804, 'fifteen thousand eight hundred four');\nINSERT INTO t3 VALUES(14749, 84800, 'eighty-four thousand eight hundred');\nINSERT INTO t3 VALUES(14750, 63397, 'sixty-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(14751, 49999, 'forty-nine thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(14752, 3108, 'three thousand one hundred eight');\nINSERT INTO t3 VALUES(14753, 87015, 'eighty-seven thousand fifteen');\nINSERT INTO t3 VALUES(14754, 42119, 'forty-two thousand one hundred nineteen');\nINSERT INTO t3 VALUES(14755, 31636, 'thirty-one thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(14756, 33528, 'thirty-three thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14757, 65330, 'sixty-five thousand three hundred thirty');\nINSERT INTO t3 VALUES(14758, 69672, 'sixty-nine thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(14759, 81612, 'eighty-one thousand six hundred twelve');\nINSERT INTO t3 VALUES(14760, 34074, 'thirty-four thousand seventy-four');\nINSERT INTO t3 VALUES(14761, 7038, 'seven thousand thirty-eight');\nINSERT INTO t3 VALUES(14762, 73759, 'seventy-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(14763, 26853, 'twenty-six thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(14764, 79302, 'seventy-nine thousand three hundred two');\nINSERT INTO t3 VALUES(14765, 23506, 'twenty-three thousand five hundred six');\nINSERT INTO t3 VALUES(14766, 69411, 'sixty-nine thousand four hundred eleven');\nINSERT INTO t3 VALUES(14767, 11155, 'eleven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(14768, 40620, 'forty thousand six hundred twenty');\nINSERT INTO t3 VALUES(14769, 18344, 'eighteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(14770, 22042, 'twenty-two thousand forty-two');\nINSERT INTO t3 VALUES(14771, 22681, 'twenty-two thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(14772, 71667, 'seventy-one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(14773, 51150, 'fifty-one thousand one hundred fifty');\nINSERT INTO t3 VALUES(14774, 28543, 'twenty-eight thousand five hundred forty-three');\nINSERT INTO t3 VALUES(14775, 14495, 'fourteen thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(14776, 52373, 'fifty-two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(14777, 20145, 'twenty thousand one hundred forty-five');\nINSERT INTO t3 VALUES(14778, 25804, 'twenty-five thousand eight hundred four');\nINSERT INTO t3 VALUES(14779, 75745, 'seventy-five thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(14780, 2670, 'two thousand six hundred seventy');\nINSERT INTO t3 VALUES(14781, 31554, 'thirty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(14782, 60319, 'sixty thousand three hundred nineteen');\nINSERT INTO t3 VALUES(14783, 94965, 'ninety-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(14784, 68317, 'sixty-eight thousand three hundred seventeen');\nINSERT INTO t3 VALUES(14785, 65496, 'sixty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(14786, 14829, 'fourteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(14787, 62039, 'sixty-two thousand thirty-nine');\nINSERT INTO t3 VALUES(14788, 78255, 'seventy-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(14789, 55623, 'fifty-five thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(14790, 89645, 'eighty-nine thousand six hundred forty-five');\nINSERT INTO t3 VALUES(14791, 83493, 'eighty-three thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(14792, 29073, 'twenty-nine thousand seventy-three');\nINSERT INTO t3 VALUES(14793, 58226, 'fifty-eight thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(14794, 18239, 'eighteen thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(14795, 24851, 'twenty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(14796, 48202, 'forty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(14797, 96300, 'ninety-six thousand three hundred');\nINSERT INTO t3 VALUES(14798, 44737, 'forty-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(14799, 26558, 'twenty-six thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(14800, 98718, 'ninety-eight thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(14801, 26845, 'twenty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(14802, 64692, 'sixty-four thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(14803, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(14804, 19624, 'nineteen thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(14805, 14552, 'fourteen thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(14806, 50990, 'fifty thousand nine hundred ninety');\nINSERT INTO t3 VALUES(14807, 13238, 'thirteen thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(14808, 93617, 'ninety-three thousand six hundred seventeen');\nINSERT INTO t3 VALUES(14809, 40089, 'forty thousand eighty-nine');\nINSERT INTO t3 VALUES(14810, 88897, 'eighty-eight thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(14811, 84395, 'eighty-four thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(14812, 8229, 'eight thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(14813, 45799, 'forty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(14814, 41014, 'forty-one thousand fourteen');\nINSERT INTO t3 VALUES(14815, 23969, 'twenty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(14816, 90422, 'ninety thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(14817, 76993, 'seventy-six thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(14818, 4635, 'four thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(14819, 61719, 'sixty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(14820, 63981, 'sixty-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(14821, 72436, 'seventy-two thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(14822, 76396, 'seventy-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(14823, 36606, 'thirty-six thousand six hundred six');\nINSERT INTO t3 VALUES(14824, 25753, 'twenty-five thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(14825, 2595, 'two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14826, 26604, 'twenty-six thousand six hundred four');\nINSERT INTO t3 VALUES(14827, 79310, 'seventy-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(14828, 14786, 'fourteen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(14829, 63633, 'sixty-three thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(14830, 28430, 'twenty-eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(14831, 84113, 'eighty-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(14832, 13312, 'thirteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(14833, 2072, 'two thousand seventy-two');\nINSERT INTO t3 VALUES(14834, 95674, 'ninety-five thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(14835, 26157, 'twenty-six thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(14836, 36267, 'thirty-six thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(14837, 62430, 'sixty-two thousand four hundred thirty');\nINSERT INTO t3 VALUES(14838, 37766, 'thirty-seven thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(14839, 76086, 'seventy-six thousand eighty-six');\nINSERT INTO t3 VALUES(14840, 26475, 'twenty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(14841, 43407, 'forty-three thousand four hundred seven');\nINSERT INTO t3 VALUES(14842, 22528, 'twenty-two thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(14843, 44323, 'forty-four thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(14844, 41830, 'forty-one thousand eight hundred thirty');\nINSERT INTO t3 VALUES(14845, 96621, 'ninety-six thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(14846, 33664, 'thirty-three thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(14847, 71976, 'seventy-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(14848, 4884, 'four thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(14849, 23942, 'twenty-three thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(14850, 82899, 'eighty-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(14851, 11813, 'eleven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(14852, 71725, 'seventy-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(14853, 31297, 'thirty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(14854, 29492, 'twenty-nine thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(14855, 48771, 'forty-eight thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(14856, 45991, 'forty-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(14857, 10437, 'ten thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(14858, 54922, 'fifty-four thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(14859, 19106, 'nineteen thousand one hundred six');\nINSERT INTO t3 VALUES(14860, 48819, 'forty-eight thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(14861, 2515, 'two thousand five hundred fifteen');\nINSERT INTO t3 VALUES(14862, 65063, 'sixty-five thousand sixty-three');\nINSERT INTO t3 VALUES(14863, 33414, 'thirty-three thousand four hundred fourteen');\nINSERT INTO t3 VALUES(14864, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(14865, 5307, 'five thousand three hundred seven');\nINSERT INTO t3 VALUES(14866, 979, 'nine hundred seventy-nine');\nINSERT INTO t3 VALUES(14867, 49605, 'forty-nine thousand six hundred five');\nINSERT INTO t3 VALUES(14868, 6170, 'six thousand one hundred seventy');\nINSERT INTO t3 VALUES(14869, 28136, 'twenty-eight thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(14870, 95342, 'ninety-five thousand three hundred forty-two');\nINSERT INTO t3 VALUES(14871, 20883, 'twenty thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(14872, 70619, 'seventy thousand six hundred nineteen');\nINSERT INTO t3 VALUES(14873, 89998, 'eighty-nine thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(14874, 26091, 'twenty-six thousand ninety-one');\nINSERT INTO t3 VALUES(14875, 10527, 'ten thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(14876, 81134, 'eighty-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(14877, 39098, 'thirty-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(14878, 70841, 'seventy thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(14879, 51836, 'fifty-one thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(14880, 4935, 'four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14881, 7788, 'seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(14882, 90595, 'ninety thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14883, 4865, 'four thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(14884, 88060, 'eighty-eight thousand sixty');\nINSERT INTO t3 VALUES(14885, 20560, 'twenty thousand five hundred sixty');\nINSERT INTO t3 VALUES(14886, 93983, 'ninety-three thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(14887, 4848, 'four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(14888, 41796, 'forty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(14889, 4761, 'four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(14890, 93682, 'ninety-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(14891, 54567, 'fifty-four thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(14892, 64420, 'sixty-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(14893, 97054, 'ninety-seven thousand fifty-four');\nINSERT INTO t3 VALUES(14894, 53773, 'fifty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(14895, 29994, 'twenty-nine thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(14896, 4332, 'four thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(14897, 88187, 'eighty-eight thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(14898, 38629, 'thirty-eight thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(14899, 91071, 'ninety-one thousand seventy-one');\nINSERT INTO t3 VALUES(14900, 47748, 'forty-seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(14901, 65322, 'sixty-five thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(14902, 32041, 'thirty-two thousand forty-one');\nINSERT INTO t3 VALUES(14903, 20425, 'twenty thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(14904, 29704, 'twenty-nine thousand seven hundred four');\nINSERT INTO t3 VALUES(14905, 36747, 'thirty-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(14906, 72935, 'seventy-two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(14907, 66552, 'sixty-six thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(14908, 71347, 'seventy-one thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(14909, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(14910, 75330, 'seventy-five thousand three hundred thirty');\nINSERT INTO t3 VALUES(14911, 74040, 'seventy-four thousand forty');\nINSERT INTO t3 VALUES(14912, 38239, 'thirty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(14913, 53106, 'fifty-three thousand one hundred six');\nINSERT INTO t3 VALUES(14914, 54499, 'fifty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(14915, 12373, 'twelve thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(14916, 85494, 'eighty-five thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(14917, 32666, 'thirty-two thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(14918, 55173, 'fifty-five thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(14919, 97205, 'ninety-seven thousand two hundred five');\nINSERT INTO t3 VALUES(14920, 33136, 'thirty-three thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(14921, 97678, 'ninety-seven thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(14922, 21070, 'twenty-one thousand seventy');\nINSERT INTO t3 VALUES(14923, 35605, 'thirty-five thousand six hundred five');\nINSERT INTO t3 VALUES(14924, 29698, 'twenty-nine thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(14925, 76243, 'seventy-six thousand two hundred forty-three');\nINSERT INTO t3 VALUES(14926, 19999, 'nineteen thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(14927, 79076, 'seventy-nine thousand seventy-six');\nINSERT INTO t3 VALUES(14928, 65351, 'sixty-five thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(14929, 78249, 'seventy-eight thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(14930, 7308, 'seven thousand three hundred eight');\nINSERT INTO t3 VALUES(14931, 98436, 'ninety-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(14932, 49595, 'forty-nine thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(14933, 96764, 'ninety-six thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(14934, 6612, 'six thousand six hundred twelve');\nINSERT INTO t3 VALUES(14935, 21010, 'twenty-one thousand ten');\nINSERT INTO t3 VALUES(14936, 41545, 'forty-one thousand five hundred forty-five');\nINSERT INTO t3 VALUES(14937, 5713, 'five thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(14938, 69238, 'sixty-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(14939, 21864, 'twenty-one thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(14940, 93295, 'ninety-three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(14941, 788, 'seven hundred eighty-eight');\nINSERT INTO t3 VALUES(14942, 32785, 'thirty-two thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14943, 68994, 'sixty-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(14944, 97350, 'ninety-seven thousand three hundred fifty');\nINSERT INTO t3 VALUES(14945, 78785, 'seventy-eight thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(14946, 93985, 'ninety-three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(14947, 14195, 'fourteen thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(14948, 54921, 'fifty-four thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(14949, 68516, 'sixty-eight thousand five hundred sixteen');\nINSERT INTO t3 VALUES(14950, 50487, 'fifty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(14951, 20389, 'twenty thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(14952, 37214, 'thirty-seven thousand two hundred fourteen');\nINSERT INTO t3 VALUES(14953, 29725, 'twenty-nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(14954, 99687, 'ninety-nine thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(14955, 89462, 'eighty-nine thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(14956, 66416, 'sixty-six thousand four hundred sixteen');\nINSERT INTO t3 VALUES(14957, 64494, 'sixty-four thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(14958, 13542, 'thirteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(14959, 57723, 'fifty-seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(14960, 63327, 'sixty-three thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(14961, 50067, 'fifty thousand sixty-seven');\nINSERT INTO t3 VALUES(14962, 64840, 'sixty-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(14963, 25890, 'twenty-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(14964, 8217, 'eight thousand two hundred seventeen');\nINSERT INTO t3 VALUES(14965, 95393, 'ninety-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(14966, 34495, 'thirty-four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(14967, 58041, 'fifty-eight thousand forty-one');\nINSERT INTO t3 VALUES(14968, 20691, 'twenty thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(14969, 38165, 'thirty-eight thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(14970, 85633, 'eighty-five thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(14971, 82115, 'eighty-two thousand one hundred fifteen');\nINSERT INTO t3 VALUES(14972, 6720, 'six thousand seven hundred twenty');\nINSERT INTO t3 VALUES(14973, 21940, 'twenty-one thousand nine hundred forty');\nINSERT INTO t3 VALUES(14974, 65468, 'sixty-five thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(14975, 37278, 'thirty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(14976, 26972, 'twenty-six thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(14977, 55929, 'fifty-five thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(14978, 94039, 'ninety-four thousand thirty-nine');\nINSERT INTO t3 VALUES(14979, 15596, 'fifteen thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(14980, 68242, 'sixty-eight thousand two hundred forty-two');\nINSERT INTO t3 VALUES(14981, 36690, 'thirty-six thousand six hundred ninety');\nINSERT INTO t3 VALUES(14982, 20648, 'twenty thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(14983, 41652, 'forty-one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(14984, 97396, 'ninety-seven thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(14985, 65387, 'sixty-five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(14986, 98366, 'ninety-eight thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(14987, 302, 'three hundred two');\nINSERT INTO t3 VALUES(14988, 91288, 'ninety-one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(14989, 98564, 'ninety-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(14990, 99750, 'ninety-nine thousand seven hundred fifty');\nINSERT INTO t3 VALUES(14991, 19715, 'nineteen thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(14992, 26296, 'twenty-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(14993, 36436, 'thirty-six thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(14994, 13402, 'thirteen thousand four hundred two');\nINSERT INTO t3 VALUES(14995, 89198, 'eighty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(14996, 2298, 'two thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(14997, 31320, 'thirty-one thousand three hundred twenty');\nINSERT INTO t3 VALUES(14998, 42469, 'forty-two thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(14999, 98056, 'ninety-eight thousand fifty-six');\nINSERT INTO t3 VALUES(15000, 24312, 'twenty-four thousand three hundred twelve');\nINSERT INTO t3 VALUES(15001, 48459, 'forty-eight thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(15002, 78491, 'seventy-eight thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(15003, 57934, 'fifty-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(15004, 60247, 'sixty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(15005, 2389, 'two thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(15006, 11267, 'eleven thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(15007, 70173, 'seventy thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(15008, 47493, 'forty-seven thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(15009, 33183, 'thirty-three thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(15010, 83222, 'eighty-three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(15011, 51238, 'fifty-one thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(15012, 69383, 'sixty-nine thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15013, 29037, 'twenty-nine thousand thirty-seven');\nINSERT INTO t3 VALUES(15014, 40275, 'forty thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(15015, 65086, 'sixty-five thousand eighty-six');\nINSERT INTO t3 VALUES(15016, 28340, 'twenty-eight thousand three hundred forty');\nINSERT INTO t3 VALUES(15017, 41656, 'forty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(15018, 12641, 'twelve thousand six hundred forty-one');\nINSERT INTO t3 VALUES(15019, 94465, 'ninety-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(15020, 32260, 'thirty-two thousand two hundred sixty');\nINSERT INTO t3 VALUES(15021, 40288, 'forty thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15022, 12452, 'twelve thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(15023, 919, 'nine hundred nineteen');\nINSERT INTO t3 VALUES(15024, 64311, 'sixty-four thousand three hundred eleven');\nINSERT INTO t3 VALUES(15025, 30233, 'thirty thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(15026, 61123, 'sixty-one thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(15027, 41643, 'forty-one thousand six hundred forty-three');\nINSERT INTO t3 VALUES(15028, 47552, 'forty-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(15029, 34309, 'thirty-four thousand three hundred nine');\nINSERT INTO t3 VALUES(15030, 34812, 'thirty-four thousand eight hundred twelve');\nINSERT INTO t3 VALUES(15031, 87831, 'eighty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(15032, 61005, 'sixty-one thousand five');\nINSERT INTO t3 VALUES(15033, 30859, 'thirty thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(15034, 94069, 'ninety-four thousand sixty-nine');\nINSERT INTO t3 VALUES(15035, 83479, 'eighty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(15036, 5123, 'five thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(15037, 75540, 'seventy-five thousand five hundred forty');\nINSERT INTO t3 VALUES(15038, 9790, 'nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(15039, 90672, 'ninety thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(15040, 10709, 'ten thousand seven hundred nine');\nINSERT INTO t3 VALUES(15041, 8592, 'eight thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(15042, 43725, 'forty-three thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(15043, 1227, 'one thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(15044, 32559, 'thirty-two thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15045, 1544, 'one thousand five hundred forty-four');\nINSERT INTO t3 VALUES(15046, 57811, 'fifty-seven thousand eight hundred eleven');\nINSERT INTO t3 VALUES(15047, 78062, 'seventy-eight thousand sixty-two');\nINSERT INTO t3 VALUES(15048, 37334, 'thirty-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(15049, 41926, 'forty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15050, 95826, 'ninety-five thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(15051, 58909, 'fifty-eight thousand nine hundred nine');\nINSERT INTO t3 VALUES(15052, 89262, 'eighty-nine thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15053, 34054, 'thirty-four thousand fifty-four');\nINSERT INTO t3 VALUES(15054, 40249, 'forty thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(15055, 35047, 'thirty-five thousand forty-seven');\nINSERT INTO t3 VALUES(15056, 69988, 'sixty-nine thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(15057, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t3 VALUES(15058, 99075, 'ninety-nine thousand seventy-five');\nINSERT INTO t3 VALUES(15059, 94545, 'ninety-four thousand five hundred forty-five');\nINSERT INTO t3 VALUES(15060, 85451, 'eighty-five thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(15061, 33577, 'thirty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(15062, 59678, 'fifty-nine thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(15063, 16810, 'sixteen thousand eight hundred ten');\nINSERT INTO t3 VALUES(15064, 8853, 'eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(15065, 64193, 'sixty-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(15066, 48195, 'forty-eight thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(15067, 36665, 'thirty-six thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(15068, 31579, 'thirty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(15069, 98313, 'ninety-eight thousand three hundred thirteen');\nINSERT INTO t3 VALUES(15070, 88972, 'eighty-eight thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(15071, 90902, 'ninety thousand nine hundred two');\nINSERT INTO t3 VALUES(15072, 10554, 'ten thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(15073, 39186, 'thirty-nine thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(15074, 50974, 'fifty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(15075, 75245, 'seventy-five thousand two hundred forty-five');\nINSERT INTO t3 VALUES(15076, 53080, 'fifty-three thousand eighty');\nINSERT INTO t3 VALUES(15077, 15656, 'fifteen thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(15078, 62057, 'sixty-two thousand fifty-seven');\nINSERT INTO t3 VALUES(15079, 58774, 'fifty-eight thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(15080, 97382, 'ninety-seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(15081, 43349, 'forty-three thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(15082, 6745, 'six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(15083, 27013, 'twenty-seven thousand thirteen');\nINSERT INTO t3 VALUES(15084, 9994, 'nine thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(15085, 31823, 'thirty-one thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(15086, 78388, 'seventy-eight thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(15087, 77119, 'seventy-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(15088, 56016, 'fifty-six thousand sixteen');\nINSERT INTO t3 VALUES(15089, 42894, 'forty-two thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15090, 66096, 'sixty-six thousand ninety-six');\nINSERT INTO t3 VALUES(15091, 85017, 'eighty-five thousand seventeen');\nINSERT INTO t3 VALUES(15092, 79847, 'seventy-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(15093, 16920, 'sixteen thousand nine hundred twenty');\nINSERT INTO t3 VALUES(15094, 93099, 'ninety-three thousand ninety-nine');\nINSERT INTO t3 VALUES(15095, 35251, 'thirty-five thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(15096, 53434, 'fifty-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15097, 10204, 'ten thousand two hundred four');\nINSERT INTO t3 VALUES(15098, 50288, 'fifty thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15099, 1180, 'one thousand one hundred eighty');\nINSERT INTO t3 VALUES(15100, 96251, 'ninety-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(15101, 45406, 'forty-five thousand four hundred six');\nINSERT INTO t3 VALUES(15102, 53607, 'fifty-three thousand six hundred seven');\nINSERT INTO t3 VALUES(15103, 84373, 'eighty-four thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(15104, 4189, 'four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(15105, 29865, 'twenty-nine thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(15106, 65752, 'sixty-five thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(15107, 52589, 'fifty-two thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(15108, 9791, 'nine thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(15109, 87316, 'eighty-seven thousand three hundred sixteen');\nINSERT INTO t3 VALUES(15110, 58209, 'fifty-eight thousand two hundred nine');\nINSERT INTO t3 VALUES(15111, 39764, 'thirty-nine thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(15112, 21925, 'twenty-one thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(15113, 61637, 'sixty-one thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(15114, 70146, 'seventy thousand one hundred forty-six');\nINSERT INTO t3 VALUES(15115, 27943, 'twenty-seven thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(15116, 8717, 'eight thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(15117, 5985, 'five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(15118, 3557, 'three thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(15119, 6136, 'six thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(15120, 53281, 'fifty-three thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(15121, 52900, 'fifty-two thousand nine hundred');\nINSERT INTO t3 VALUES(15122, 16339, 'sixteen thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(15123, 2927, 'two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(15124, 83020, 'eighty-three thousand twenty');\nINSERT INTO t3 VALUES(15125, 94829, 'ninety-four thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(15126, 8211, 'eight thousand two hundred eleven');\nINSERT INTO t3 VALUES(15127, 92871, 'ninety-two thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(15128, 81871, 'eighty-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(15129, 44724, 'forty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(15130, 20938, 'twenty thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(15131, 76790, 'seventy-six thousand seven hundred ninety');\nINSERT INTO t3 VALUES(15132, 31461, 'thirty-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(15133, 54190, 'fifty-four thousand one hundred ninety');\nINSERT INTO t3 VALUES(15134, 83218, 'eighty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15135, 9374, 'nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(15136, 44996, 'forty-four thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(15137, 25919, 'twenty-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15138, 14401, 'fourteen thousand four hundred one');\nINSERT INTO t3 VALUES(15139, 89091, 'eighty-nine thousand ninety-one');\nINSERT INTO t3 VALUES(15140, 7094, 'seven thousand ninety-four');\nINSERT INTO t3 VALUES(15141, 89779, 'eighty-nine thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(15142, 45544, 'forty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(15143, 61814, 'sixty-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(15144, 75992, 'seventy-five thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(15145, 44953, 'forty-four thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(15146, 87908, 'eighty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(15147, 17184, 'seventeen thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(15148, 7494, 'seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(15149, 87607, 'eighty-seven thousand six hundred seven');\nINSERT INTO t3 VALUES(15150, 68389, 'sixty-eight thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(15151, 30805, 'thirty thousand eight hundred five');\nINSERT INTO t3 VALUES(15152, 52612, 'fifty-two thousand six hundred twelve');\nINSERT INTO t3 VALUES(15153, 32799, 'thirty-two thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(15154, 51205, 'fifty-one thousand two hundred five');\nINSERT INTO t3 VALUES(15155, 91303, 'ninety-one thousand three hundred three');\nINSERT INTO t3 VALUES(15156, 43134, 'forty-three thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(15157, 40954, 'forty thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(15158, 96839, 'ninety-six thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(15159, 26383, 'twenty-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15160, 22684, 'twenty-two thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(15161, 70925, 'seventy thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(15162, 51971, 'fifty-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(15163, 93460, 'ninety-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(15164, 96282, 'ninety-six thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(15165, 49349, 'forty-nine thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(15166, 68247, 'sixty-eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(15167, 87528, 'eighty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(15168, 10749, 'ten thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(15169, 7130, 'seven thousand one hundred thirty');\nINSERT INTO t3 VALUES(15170, 19408, 'nineteen thousand four hundred eight');\nINSERT INTO t3 VALUES(15171, 34355, 'thirty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(15172, 7459, 'seven thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(15173, 98695, 'ninety-eight thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15174, 74727, 'seventy-four thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(15175, 32950, 'thirty-two thousand nine hundred fifty');\nINSERT INTO t3 VALUES(15176, 73806, 'seventy-three thousand eight hundred six');\nINSERT INTO t3 VALUES(15177, 72083, 'seventy-two thousand eighty-three');\nINSERT INTO t3 VALUES(15178, 70027, 'seventy thousand twenty-seven');\nINSERT INTO t3 VALUES(15179, 30314, 'thirty thousand three hundred fourteen');\nINSERT INTO t3 VALUES(15180, 32293, 'thirty-two thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(15181, 82222, 'eighty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(15182, 89715, 'eighty-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(15183, 27840, 'twenty-seven thousand eight hundred forty');\nINSERT INTO t3 VALUES(15184, 54016, 'fifty-four thousand sixteen');\nINSERT INTO t3 VALUES(15185, 46942, 'forty-six thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(15186, 47854, 'forty-seven thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(15187, 29209, 'twenty-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(15188, 82926, 'eighty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15189, 89013, 'eighty-nine thousand thirteen');\nINSERT INTO t3 VALUES(15190, 90638, 'ninety thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(15191, 44679, 'forty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(15192, 17617, 'seventeen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(15193, 85687, 'eighty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(15194, 75840, 'seventy-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(15195, 27339, 'twenty-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(15196, 31892, 'thirty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(15197, 14552, 'fourteen thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(15198, 98296, 'ninety-eight thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(15199, 14840, 'fourteen thousand eight hundred forty');\nINSERT INTO t3 VALUES(15200, 3633, 'three thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(15201, 88171, 'eighty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(15202, 5315, 'five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(15203, 52524, 'fifty-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(15204, 48973, 'forty-eight thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(15205, 53065, 'fifty-three thousand sixty-five');\nINSERT INTO t3 VALUES(15206, 20083, 'twenty thousand eighty-three');\nINSERT INTO t3 VALUES(15207, 18069, 'eighteen thousand sixty-nine');\nINSERT INTO t3 VALUES(15208, 46100, 'forty-six thousand one hundred');\nINSERT INTO t3 VALUES(15209, 4467, 'four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(15210, 39098, 'thirty-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(15211, 32186, 'thirty-two thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(15212, 73930, 'seventy-three thousand nine hundred thirty');\nINSERT INTO t3 VALUES(15213, 89006, 'eighty-nine thousand six');\nINSERT INTO t3 VALUES(15214, 21675, 'twenty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(15215, 13837, 'thirteen thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(15216, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t3 VALUES(15217, 53517, 'fifty-three thousand five hundred seventeen');\nINSERT INTO t3 VALUES(15218, 10831, 'ten thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(15219, 85924, 'eighty-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(15220, 1226, 'one thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(15221, 75393, 'seventy-five thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(15222, 27748, 'twenty-seven thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(15223, 61966, 'sixty-one thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(15224, 27482, 'twenty-seven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(15225, 34456, 'thirty-four thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(15226, 55243, 'fifty-five thousand two hundred forty-three');\nINSERT INTO t3 VALUES(15227, 81705, 'eighty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(15228, 72449, 'seventy-two thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(15229, 25870, 'twenty-five thousand eight hundred seventy');\nINSERT INTO t3 VALUES(15230, 56666, 'fifty-six thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(15231, 99702, 'ninety-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(15232, 38426, 'thirty-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(15233, 3947, 'three thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(15234, 64428, 'sixty-four thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(15235, 75604, 'seventy-five thousand six hundred four');\nINSERT INTO t3 VALUES(15236, 69304, 'sixty-nine thousand three hundred four');\nINSERT INTO t3 VALUES(15237, 47275, 'forty-seven thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(15238, 189, 'one hundred eighty-nine');\nINSERT INTO t3 VALUES(15239, 37105, 'thirty-seven thousand one hundred five');\nINSERT INTO t3 VALUES(15240, 39332, 'thirty-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(15241, 94420, 'ninety-four thousand four hundred twenty');\nINSERT INTO t3 VALUES(15242, 88422, 'eighty-eight thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(15243, 32271, 'thirty-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(15244, 6911, 'six thousand nine hundred eleven');\nINSERT INTO t3 VALUES(15245, 2246, 'two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(15246, 57039, 'fifty-seven thousand thirty-nine');\nINSERT INTO t3 VALUES(15247, 83255, 'eighty-three thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(15248, 45845, 'forty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(15249, 45221, 'forty-five thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(15250, 61423, 'sixty-one thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(15251, 32602, 'thirty-two thousand six hundred two');\nINSERT INTO t3 VALUES(15252, 56957, 'fifty-six thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(15253, 60214, 'sixty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(15254, 41559, 'forty-one thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15255, 13004, 'thirteen thousand four');\nINSERT INTO t3 VALUES(15256, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t3 VALUES(15257, 63630, 'sixty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(15258, 54179, 'fifty-four thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(15259, 99707, 'ninety-nine thousand seven hundred seven');\nINSERT INTO t3 VALUES(15260, 65951, 'sixty-five thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(15261, 76709, 'seventy-six thousand seven hundred nine');\nINSERT INTO t3 VALUES(15262, 95585, 'ninety-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(15263, 85603, 'eighty-five thousand six hundred three');\nINSERT INTO t3 VALUES(15264, 28235, 'twenty-eight thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(15265, 61653, 'sixty-one thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(15266, 95054, 'ninety-five thousand fifty-four');\nINSERT INTO t3 VALUES(15267, 71257, 'seventy-one thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(15268, 56321, 'fifty-six thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(15269, 29625, 'twenty-nine thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(15270, 30291, 'thirty thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(15271, 33091, 'thirty-three thousand ninety-one');\nINSERT INTO t3 VALUES(15272, 91296, 'ninety-one thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(15273, 52439, 'fifty-two thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(15274, 94504, 'ninety-four thousand five hundred four');\nINSERT INTO t3 VALUES(15275, 56825, 'fifty-six thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(15276, 85384, 'eighty-five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(15277, 831, 'eight hundred thirty-one');\nINSERT INTO t3 VALUES(15278, 95252, 'ninety-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(15279, 38926, 'thirty-eight thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15280, 86963, 'eighty-six thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(15281, 56364, 'fifty-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(15282, 62775, 'sixty-two thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(15283, 99223, 'ninety-nine thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(15284, 88778, 'eighty-eight thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(15285, 20115, 'twenty thousand one hundred fifteen');\nINSERT INTO t3 VALUES(15286, 51919, 'fifty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15287, 98400, 'ninety-eight thousand four hundred');\nINSERT INTO t3 VALUES(15288, 44049, 'forty-four thousand forty-nine');\nINSERT INTO t3 VALUES(15289, 59049, 'fifty-nine thousand forty-nine');\nINSERT INTO t3 VALUES(15290, 38583, 'thirty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(15291, 96495, 'ninety-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(15292, 83335, 'eighty-three thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(15293, 78994, 'seventy-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(15294, 24197, 'twenty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(15295, 56202, 'fifty-six thousand two hundred two');\nINSERT INTO t3 VALUES(15296, 25225, 'twenty-five thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(15297, 29783, 'twenty-nine thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(15298, 41034, 'forty-one thousand thirty-four');\nINSERT INTO t3 VALUES(15299, 97372, 'ninety-seven thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(15300, 95756, 'ninety-five thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(15301, 40816, 'forty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(15302, 1667, 'one thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(15303, 40673, 'forty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(15304, 73939, 'seventy-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(15305, 71785, 'seventy-one thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(15306, 64919, 'sixty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15307, 41301, 'forty-one thousand three hundred one');\nINSERT INTO t3 VALUES(15308, 95111, 'ninety-five thousand one hundred eleven');\nINSERT INTO t3 VALUES(15309, 6169, 'six thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(15310, 13050, 'thirteen thousand fifty');\nINSERT INTO t3 VALUES(15311, 6444, 'six thousand four hundred forty-four');\nINSERT INTO t3 VALUES(15312, 1395, 'one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(15313, 31331, 'thirty-one thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(15314, 92688, 'ninety-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(15315, 95693, 'ninety-five thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(15316, 56211, 'fifty-six thousand two hundred eleven');\nINSERT INTO t3 VALUES(15317, 34657, 'thirty-four thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(15318, 26844, 'twenty-six thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(15319, 66581, 'sixty-six thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(15320, 40256, 'forty thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(15321, 81516, 'eighty-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(15322, 51781, 'fifty-one thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(15323, 16434, 'sixteen thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15324, 10127, 'ten thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(15325, 41196, 'forty-one thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(15326, 64562, 'sixty-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(15327, 19383, 'nineteen thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15328, 94087, 'ninety-four thousand eighty-seven');\nINSERT INTO t3 VALUES(15329, 51878, 'fifty-one thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(15330, 48812, 'forty-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(15331, 94582, 'ninety-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(15332, 20214, 'twenty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(15333, 18830, 'eighteen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(15334, 64582, 'sixty-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(15335, 52008, 'fifty-two thousand eight');\nINSERT INTO t3 VALUES(15336, 21911, 'twenty-one thousand nine hundred eleven');\nINSERT INTO t3 VALUES(15337, 76122, 'seventy-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(15338, 97286, 'ninety-seven thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(15339, 74177, 'seventy-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(15340, 56231, 'fifty-six thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(15341, 51242, 'fifty-one thousand two hundred forty-two');\nINSERT INTO t3 VALUES(15342, 64052, 'sixty-four thousand fifty-two');\nINSERT INTO t3 VALUES(15343, 36548, 'thirty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(15344, 12798, 'twelve thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(15345, 18539, 'eighteen thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(15346, 89895, 'eighty-nine thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(15347, 64855, 'sixty-four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(15348, 66380, 'sixty-six thousand three hundred eighty');\nINSERT INTO t3 VALUES(15349, 53006, 'fifty-three thousand six');\nINSERT INTO t3 VALUES(15350, 5062, 'five thousand sixty-two');\nINSERT INTO t3 VALUES(15351, 11178, 'eleven thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(15352, 72292, 'seventy-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(15353, 48624, 'forty-eight thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(15354, 48421, 'forty-eight thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(15355, 91356, 'ninety-one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15356, 5997, 'five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(15357, 49684, 'forty-nine thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(15358, 8597, 'eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(15359, 87449, 'eighty-seven thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(15360, 63129, 'sixty-three thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(15361, 9320, 'nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(15362, 37962, 'thirty-seven thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(15363, 56329, 'fifty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(15364, 99423, 'ninety-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(15365, 94529, 'ninety-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(15366, 32555, 'thirty-two thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(15367, 61818, 'sixty-one thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15368, 79419, 'seventy-nine thousand four hundred nineteen');\nINSERT INTO t3 VALUES(15369, 48659, 'forty-eight thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15370, 6360, 'six thousand three hundred sixty');\nINSERT INTO t3 VALUES(15371, 13590, 'thirteen thousand five hundred ninety');\nINSERT INTO t3 VALUES(15372, 65950, 'sixty-five thousand nine hundred fifty');\nINSERT INTO t3 VALUES(15373, 7124, 'seven thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(15374, 30300, 'thirty thousand three hundred');\nINSERT INTO t3 VALUES(15375, 44695, 'forty-four thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15376, 51090, 'fifty-one thousand ninety');\nINSERT INTO t3 VALUES(15377, 64297, 'sixty-four thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(15378, 75586, 'seventy-five thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(15379, 44763, 'forty-four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(15380, 76894, 'seventy-six thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15381, 58198, 'fifty-eight thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(15382, 66968, 'sixty-six thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(15383, 41683, 'forty-one thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(15384, 62876, 'sixty-two thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(15385, 88946, 'eighty-eight thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(15386, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(15387, 75499, 'seventy-five thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(15388, 9810, 'nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(15389, 76002, 'seventy-six thousand two');\nINSERT INTO t3 VALUES(15390, 50520, 'fifty thousand five hundred twenty');\nINSERT INTO t3 VALUES(15391, 73645, 'seventy-three thousand six hundred forty-five');\nINSERT INTO t3 VALUES(15392, 47325, 'forty-seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(15393, 9843, 'nine thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(15394, 94023, 'ninety-four thousand twenty-three');\nINSERT INTO t3 VALUES(15395, 67362, 'sixty-seven thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(15396, 24942, 'twenty-four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(15397, 32226, 'thirty-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(15398, 33866, 'thirty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(15399, 51620, 'fifty-one thousand six hundred twenty');\nINSERT INTO t3 VALUES(15400, 38992, 'thirty-eight thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(15401, 36468, 'thirty-six thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(15402, 73214, 'seventy-three thousand two hundred fourteen');\nINSERT INTO t3 VALUES(15403, 14517, 'fourteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(15404, 59435, 'fifty-nine thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(15405, 12805, 'twelve thousand eight hundred five');\nINSERT INTO t3 VALUES(15406, 9955, 'nine thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(15407, 82672, 'eighty-two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(15408, 44340, 'forty-four thousand three hundred forty');\nINSERT INTO t3 VALUES(15409, 57866, 'fifty-seven thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(15410, 19575, 'nineteen thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(15411, 47928, 'forty-seven thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(15412, 90723, 'ninety thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(15413, 99434, 'ninety-nine thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15414, 1969, 'one thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15415, 82788, 'eighty-two thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(15416, 5265, 'five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(15417, 47184, 'forty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(15418, 14677, 'fourteen thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(15419, 76920, 'seventy-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(15420, 22209, 'twenty-two thousand two hundred nine');\nINSERT INTO t3 VALUES(15421, 58818, 'fifty-eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15422, 70708, 'seventy thousand seven hundred eight');\nINSERT INTO t3 VALUES(15423, 45378, 'forty-five thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(15424, 42092, 'forty-two thousand ninety-two');\nINSERT INTO t3 VALUES(15425, 6883, 'six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(15426, 20513, 'twenty thousand five hundred thirteen');\nINSERT INTO t3 VALUES(15427, 65932, 'sixty-five thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(15428, 73963, 'seventy-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(15429, 18038, 'eighteen thousand thirty-eight');\nINSERT INTO t3 VALUES(15430, 74803, 'seventy-four thousand eight hundred three');\nINSERT INTO t3 VALUES(15431, 31482, 'thirty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(15432, 81695, 'eighty-one thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15433, 68728, 'sixty-eight thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(15434, 67661, 'sixty-seven thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(15435, 54724, 'fifty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(15436, 5391, 'five thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(15437, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(15438, 90343, 'ninety thousand three hundred forty-three');\nINSERT INTO t3 VALUES(15439, 95208, 'ninety-five thousand two hundred eight');\nINSERT INTO t3 VALUES(15440, 64272, 'sixty-four thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(15441, 99068, 'ninety-nine thousand sixty-eight');\nINSERT INTO t3 VALUES(15442, 31652, 'thirty-one thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(15443, 40310, 'forty thousand three hundred ten');\nINSERT INTO t3 VALUES(15444, 96665, 'ninety-six thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(15445, 60894, 'sixty thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15446, 54553, 'fifty-four thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(15447, 19617, 'nineteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(15448, 27605, 'twenty-seven thousand six hundred five');\nINSERT INTO t3 VALUES(15449, 57490, 'fifty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(15450, 81444, 'eighty-one thousand four hundred forty-four');\nINSERT INTO t3 VALUES(15451, 30833, 'thirty thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(15452, 76711, 'seventy-six thousand seven hundred eleven');\nINSERT INTO t3 VALUES(15453, 9248, 'nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(15454, 37547, 'thirty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(15455, 2020, 'two thousand twenty');\nINSERT INTO t3 VALUES(15456, 43137, 'forty-three thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(15457, 45929, 'forty-five thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(15458, 67445, 'sixty-seven thousand four hundred forty-five');\nINSERT INTO t3 VALUES(15459, 3117, 'three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(15460, 91073, 'ninety-one thousand seventy-three');\nINSERT INTO t3 VALUES(15461, 93809, 'ninety-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(15462, 60740, 'sixty thousand seven hundred forty');\nINSERT INTO t3 VALUES(15463, 84024, 'eighty-four thousand twenty-four');\nINSERT INTO t3 VALUES(15464, 25320, 'twenty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(15465, 7755, 'seven thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(15466, 55645, 'fifty-five thousand six hundred forty-five');\nINSERT INTO t3 VALUES(15467, 12025, 'twelve thousand twenty-five');\nINSERT INTO t3 VALUES(15468, 88285, 'eighty-eight thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(15469, 68818, 'sixty-eight thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15470, 74935, 'seventy-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(15471, 18407, 'eighteen thousand four hundred seven');\nINSERT INTO t3 VALUES(15472, 72695, 'seventy-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(15473, 95558, 'ninety-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(15474, 95336, 'ninety-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(15475, 81969, 'eighty-one thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15476, 70686, 'seventy thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(15477, 71231, 'seventy-one thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(15478, 24524, 'twenty-four thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(15479, 94822, 'ninety-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(15480, 19421, 'nineteen thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(15481, 30813, 'thirty thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(15482, 93902, 'ninety-three thousand nine hundred two');\nINSERT INTO t3 VALUES(15483, 94260, 'ninety-four thousand two hundred sixty');\nINSERT INTO t3 VALUES(15484, 60975, 'sixty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(15485, 72872, 'seventy-two thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(15486, 65741, 'sixty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(15487, 82101, 'eighty-two thousand one hundred one');\nINSERT INTO t3 VALUES(15488, 14434, 'fourteen thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15489, 40356, 'forty thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15490, 17390, 'seventeen thousand three hundred ninety');\nINSERT INTO t3 VALUES(15491, 43054, 'forty-three thousand fifty-four');\nINSERT INTO t3 VALUES(15492, 30814, 'thirty thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(15493, 78776, 'seventy-eight thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(15494, 3878, 'three thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(15495, 84175, 'eighty-four thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(15496, 2918, 'two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(15497, 77896, 'seventy-seven thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(15498, 78047, 'seventy-eight thousand forty-seven');\nINSERT INTO t3 VALUES(15499, 91207, 'ninety-one thousand two hundred seven');\nINSERT INTO t3 VALUES(15500, 32139, 'thirty-two thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(15501, 350, 'three hundred fifty');\nINSERT INTO t3 VALUES(15502, 9474, 'nine thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(15503, 26932, 'twenty-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(15504, 32224, 'thirty-two thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(15505, 27952, 'twenty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15506, 56252, 'fifty-six thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(15507, 31413, 'thirty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(15508, 51205, 'fifty-one thousand two hundred five');\nINSERT INTO t3 VALUES(15509, 44065, 'forty-four thousand sixty-five');\nINSERT INTO t3 VALUES(15510, 1268, 'one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(15511, 46053, 'forty-six thousand fifty-three');\nINSERT INTO t3 VALUES(15512, 26724, 'twenty-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(15513, 3986, 'three thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(15514, 31623, 'thirty-one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(15515, 47262, 'forty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15516, 32036, 'thirty-two thousand thirty-six');\nINSERT INTO t3 VALUES(15517, 84270, 'eighty-four thousand two hundred seventy');\nINSERT INTO t3 VALUES(15518, 57826, 'fifty-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(15519, 69694, 'sixty-nine thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(15520, 86780, 'eighty-six thousand seven hundred eighty');\nINSERT INTO t3 VALUES(15521, 29766, 'twenty-nine thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(15522, 70457, 'seventy thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(15523, 12357, 'twelve thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(15524, 6569, 'six thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(15525, 57650, 'fifty-seven thousand six hundred fifty');\nINSERT INTO t3 VALUES(15526, 42102, 'forty-two thousand one hundred two');\nINSERT INTO t3 VALUES(15527, 491, 'four hundred ninety-one');\nINSERT INTO t3 VALUES(15528, 8547, 'eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(15529, 3720, 'three thousand seven hundred twenty');\nINSERT INTO t3 VALUES(15530, 20799, 'twenty thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(15531, 48268, 'forty-eight thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(15532, 72420, 'seventy-two thousand four hundred twenty');\nINSERT INTO t3 VALUES(15533, 44593, 'forty-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(15534, 87184, 'eighty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(15535, 37084, 'thirty-seven thousand eighty-four');\nINSERT INTO t3 VALUES(15536, 98810, 'ninety-eight thousand eight hundred ten');\nINSERT INTO t3 VALUES(15537, 71066, 'seventy-one thousand sixty-six');\nINSERT INTO t3 VALUES(15538, 92659, 'ninety-two thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15539, 44022, 'forty-four thousand twenty-two');\nINSERT INTO t3 VALUES(15540, 45634, 'forty-five thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(15541, 57085, 'fifty-seven thousand eighty-five');\nINSERT INTO t3 VALUES(15542, 73174, 'seventy-three thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(15543, 1105, 'one thousand one hundred five');\nINSERT INTO t3 VALUES(15544, 88577, 'eighty-eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(15545, 48066, 'forty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(15546, 4841, 'four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(15547, 76625, 'seventy-six thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(15548, 40559, 'forty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15549, 21395, 'twenty-one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(15550, 6657, 'six thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(15551, 27024, 'twenty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(15552, 15913, 'fifteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(15553, 63823, 'sixty-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(15554, 68258, 'sixty-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(15555, 40155, 'forty thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(15556, 75624, 'seventy-five thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(15557, 74218, 'seventy-four thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15558, 57172, 'fifty-seven thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(15559, 35342, 'thirty-five thousand three hundred forty-two');\nINSERT INTO t3 VALUES(15560, 95966, 'ninety-five thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(15561, 1465, 'one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(15562, 71536, 'seventy-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(15563, 84352, 'eighty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(15564, 31812, 'thirty-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(15565, 23847, 'twenty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(15566, 21254, 'twenty-one thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(15567, 85969, 'eighty-five thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15568, 98266, 'ninety-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(15569, 22063, 'twenty-two thousand sixty-three');\nINSERT INTO t3 VALUES(15570, 35764, 'thirty-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(15571, 4904, 'four thousand nine hundred four');\nINSERT INTO t3 VALUES(15572, 19127, 'nineteen thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(15573, 32867, 'thirty-two thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(15574, 88541, 'eighty-eight thousand five hundred forty-one');\nINSERT INTO t3 VALUES(15575, 87898, 'eighty-seven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(15576, 98948, 'ninety-eight thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(15577, 93534, 'ninety-three thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(15578, 92973, 'ninety-two thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(15579, 78496, 'seventy-eight thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(15580, 66900, 'sixty-six thousand nine hundred');\nINSERT INTO t3 VALUES(15581, 97447, 'ninety-seven thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(15582, 89535, 'eighty-nine thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(15583, 70522, 'seventy thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(15584, 14458, 'fourteen thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(15585, 18063, 'eighteen thousand sixty-three');\nINSERT INTO t3 VALUES(15586, 80696, 'eighty thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(15587, 95327, 'ninety-five thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(15588, 50265, 'fifty thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(15589, 73877, 'seventy-three thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(15590, 84161, 'eighty-four thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(15591, 44658, 'forty-four thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(15592, 42609, 'forty-two thousand six hundred nine');\nINSERT INTO t3 VALUES(15593, 84581, 'eighty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(15594, 66835, 'sixty-six thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(15595, 61856, 'sixty-one thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(15596, 34083, 'thirty-four thousand eighty-three');\nINSERT INTO t3 VALUES(15597, 69322, 'sixty-nine thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(15598, 66222, 'sixty-six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(15599, 23245, 'twenty-three thousand two hundred forty-five');\nINSERT INTO t3 VALUES(15600, 44352, 'forty-four thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(15601, 85721, 'eighty-five thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(15602, 21126, 'twenty-one thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(15603, 21775, 'twenty-one thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(15604, 69027, 'sixty-nine thousand twenty-seven');\nINSERT INTO t3 VALUES(15605, 92896, 'ninety-two thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(15606, 6056, 'six thousand fifty-six');\nINSERT INTO t3 VALUES(15607, 21216, 'twenty-one thousand two hundred sixteen');\nINSERT INTO t3 VALUES(15608, 33335, 'thirty-three thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(15609, 46550, 'forty-six thousand five hundred fifty');\nINSERT INTO t3 VALUES(15610, 33635, 'thirty-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(15611, 73447, 'seventy-three thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(15612, 42517, 'forty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(15613, 45154, 'forty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(15614, 87054, 'eighty-seven thousand fifty-four');\nINSERT INTO t3 VALUES(15615, 95552, 'ninety-five thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(15616, 42509, 'forty-two thousand five hundred nine');\nINSERT INTO t3 VALUES(15617, 53218, 'fifty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15618, 28067, 'twenty-eight thousand sixty-seven');\nINSERT INTO t3 VALUES(15619, 4553, 'four thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(15620, 93782, 'ninety-three thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(15621, 11969, 'eleven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(15622, 83594, 'eighty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(15623, 59747, 'fifty-nine thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(15624, 53397, 'fifty-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(15625, 26971, 'twenty-six thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(15626, 11884, 'eleven thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(15627, 30798, 'thirty thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(15628, 20639, 'twenty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(15629, 48773, 'forty-eight thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(15630, 36322, 'thirty-six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(15631, 85659, 'eighty-five thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15632, 60447, 'sixty thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(15633, 62408, 'sixty-two thousand four hundred eight');\nINSERT INTO t3 VALUES(15634, 89423, 'eighty-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(15635, 4500, 'four thousand five hundred');\nINSERT INTO t3 VALUES(15636, 10906, 'ten thousand nine hundred six');\nINSERT INTO t3 VALUES(15637, 43008, 'forty-three thousand eight');\nINSERT INTO t3 VALUES(15638, 538, 'five hundred thirty-eight');\nINSERT INTO t3 VALUES(15639, 74504, 'seventy-four thousand five hundred four');\nINSERT INTO t3 VALUES(15640, 14763, 'fourteen thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(15641, 71382, 'seventy-one thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(15642, 3321, 'three thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(15643, 96983, 'ninety-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(15644, 6240, 'six thousand two hundred forty');\nINSERT INTO t3 VALUES(15645, 44308, 'forty-four thousand three hundred eight');\nINSERT INTO t3 VALUES(15646, 31682, 'thirty-one thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(15647, 49152, 'forty-nine thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(15648, 42366, 'forty-two thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(15649, 33822, 'thirty-three thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(15650, 16229, 'sixteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(15651, 16421, 'sixteen thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(15652, 64615, 'sixty-four thousand six hundred fifteen');\nINSERT INTO t3 VALUES(15653, 79938, 'seventy-nine thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(15654, 83185, 'eighty-three thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(15655, 17177, 'seventeen thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(15656, 12554, 'twelve thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(15657, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(15658, 70773, 'seventy thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(15659, 89818, 'eighty-nine thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(15660, 84378, 'eighty-four thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(15661, 59971, 'fifty-nine thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(15662, 91733, 'ninety-one thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(15663, 75806, 'seventy-five thousand eight hundred six');\nINSERT INTO t3 VALUES(15664, 43785, 'forty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(15665, 43764, 'forty-three thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(15666, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(15667, 85252, 'eighty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(15668, 19643, 'nineteen thousand six hundred forty-three');\nINSERT INTO t3 VALUES(15669, 81796, 'eighty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(15670, 94310, 'ninety-four thousand three hundred ten');\nINSERT INTO t3 VALUES(15671, 11687, 'eleven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(15672, 78338, 'seventy-eight thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(15673, 97652, 'ninety-seven thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(15674, 75142, 'seventy-five thousand one hundred forty-two');\nINSERT INTO t3 VALUES(15675, 54356, 'fifty-four thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15676, 61108, 'sixty-one thousand one hundred eight');\nINSERT INTO t3 VALUES(15677, 40225, 'forty thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(15678, 67635, 'sixty-seven thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(15679, 36218, 'thirty-six thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15680, 30738, 'thirty thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(15681, 41289, 'forty-one thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(15682, 72411, 'seventy-two thousand four hundred eleven');\nINSERT INTO t3 VALUES(15683, 7192, 'seven thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(15684, 69013, 'sixty-nine thousand thirteen');\nINSERT INTO t3 VALUES(15685, 80966, 'eighty thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(15686, 42431, 'forty-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(15687, 42877, 'forty-two thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(15688, 39315, 'thirty-nine thousand three hundred fifteen');\nINSERT INTO t3 VALUES(15689, 34061, 'thirty-four thousand sixty-one');\nINSERT INTO t3 VALUES(15690, 13457, 'thirteen thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(15691, 79104, 'seventy-nine thousand one hundred four');\nINSERT INTO t3 VALUES(15692, 67954, 'sixty-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(15693, 12001, 'twelve thousand one');\nINSERT INTO t3 VALUES(15694, 54317, 'fifty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(15695, 15385, 'fifteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(15696, 60047, 'sixty thousand forty-seven');\nINSERT INTO t3 VALUES(15697, 61315, 'sixty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(15698, 45573, 'forty-five thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(15699, 24967, 'twenty-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(15700, 67584, 'sixty-seven thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(15701, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(15702, 95759, 'ninety-five thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(15703, 91262, 'ninety-one thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15704, 50559, 'fifty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(15705, 97383, 'ninety-seven thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15706, 56746, 'fifty-six thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(15707, 20422, 'twenty thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(15708, 38250, 'thirty-eight thousand two hundred fifty');\nINSERT INTO t3 VALUES(15709, 92201, 'ninety-two thousand two hundred one');\nINSERT INTO t3 VALUES(15710, 68104, 'sixty-eight thousand one hundred four');\nINSERT INTO t3 VALUES(15711, 28795, 'twenty-eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(15712, 87416, 'eighty-seven thousand four hundred sixteen');\nINSERT INTO t3 VALUES(15713, 20602, 'twenty thousand six hundred two');\nINSERT INTO t3 VALUES(15714, 13791, 'thirteen thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(15715, 79861, 'seventy-nine thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(15716, 20005, 'twenty thousand five');\nINSERT INTO t3 VALUES(15717, 69614, 'sixty-nine thousand six hundred fourteen');\nINSERT INTO t3 VALUES(15718, 25071, 'twenty-five thousand seventy-one');\nINSERT INTO t3 VALUES(15719, 62503, 'sixty-two thousand five hundred three');\nINSERT INTO t3 VALUES(15720, 69073, 'sixty-nine thousand seventy-three');\nINSERT INTO t3 VALUES(15721, 78212, 'seventy-eight thousand two hundred twelve');\nINSERT INTO t3 VALUES(15722, 97084, 'ninety-seven thousand eighty-four');\nINSERT INTO t3 VALUES(15723, 21195, 'twenty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(15724, 60542, 'sixty thousand five hundred forty-two');\nINSERT INTO t3 VALUES(15725, 52533, 'fifty-two thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(15726, 82899, 'eighty-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(15727, 68450, 'sixty-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(15728, 19189, 'nineteen thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(15729, 27181, 'twenty-seven thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(15730, 40376, 'forty thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(15731, 16341, 'sixteen thousand three hundred forty-one');\nINSERT INTO t3 VALUES(15732, 92738, 'ninety-two thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(15733, 53368, 'fifty-three thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(15734, 55383, 'fifty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(15735, 21569, 'twenty-one thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(15736, 11134, 'eleven thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(15737, 44808, 'forty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(15738, 82905, 'eighty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(15739, 80952, 'eighty thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15740, 1588, 'one thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(15741, 14497, 'fourteen thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(15742, 4170, 'four thousand one hundred seventy');\nINSERT INTO t3 VALUES(15743, 35543, 'thirty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(15744, 61346, 'sixty-one thousand three hundred forty-six');\nINSERT INTO t3 VALUES(15745, 5614, 'five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(15746, 35975, 'thirty-five thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(15747, 48674, 'forty-eight thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(15748, 81427, 'eighty-one thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(15749, 71471, 'seventy-one thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(15750, 71200, 'seventy-one thousand two hundred');\nINSERT INTO t3 VALUES(15751, 75890, 'seventy-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(15752, 13088, 'thirteen thousand eighty-eight');\nINSERT INTO t3 VALUES(15753, 19567, 'nineteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(15754, 88286, 'eighty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(15755, 10822, 'ten thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(15756, 73853, 'seventy-three thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(15757, 58448, 'fifty-eight thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(15758, 55431, 'fifty-five thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(15759, 898, 'eight hundred ninety-eight');\nINSERT INTO t3 VALUES(15760, 54258, 'fifty-four thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(15761, 58699, 'fifty-eight thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(15762, 44903, 'forty-four thousand nine hundred three');\nINSERT INTO t3 VALUES(15763, 40042, 'forty thousand forty-two');\nINSERT INTO t3 VALUES(15764, 4641, 'four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(15765, 96301, 'ninety-six thousand three hundred one');\nINSERT INTO t3 VALUES(15766, 73044, 'seventy-three thousand forty-four');\nINSERT INTO t3 VALUES(15767, 72434, 'seventy-two thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(15768, 85941, 'eighty-five thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(15769, 14424, 'fourteen thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(15770, 81697, 'eighty-one thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(15771, 91811, 'ninety-one thousand eight hundred eleven');\nINSERT INTO t3 VALUES(15772, 35268, 'thirty-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(15773, 70058, 'seventy thousand fifty-eight');\nINSERT INTO t3 VALUES(15774, 36253, 'thirty-six thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(15775, 20459, 'twenty thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(15776, 80544, 'eighty thousand five hundred forty-four');\nINSERT INTO t3 VALUES(15777, 67655, 'sixty-seven thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(15778, 27480, 'twenty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(15779, 16348, 'sixteen thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(15780, 75500, 'seventy-five thousand five hundred');\nINSERT INTO t3 VALUES(15781, 21443, 'twenty-one thousand four hundred forty-three');\nINSERT INTO t3 VALUES(15782, 40079, 'forty thousand seventy-nine');\nINSERT INTO t3 VALUES(15783, 62601, 'sixty-two thousand six hundred one');\nINSERT INTO t3 VALUES(15784, 49688, 'forty-nine thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(15785, 74956, 'seventy-four thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(15786, 6530, 'six thousand five hundred thirty');\nINSERT INTO t3 VALUES(15787, 65597, 'sixty-five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(15788, 24680, 'twenty-four thousand six hundred eighty');\nINSERT INTO t3 VALUES(15789, 48273, 'forty-eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(15790, 78826, 'seventy-eight thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(15791, 91324, 'ninety-one thousand three hundred twenty-four');\nINSERT INTO t3 VALUES(15792, 73637, 'seventy-three thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(15793, 53471, 'fifty-three thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(15794, 70629, 'seventy thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(15795, 9735, 'nine thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(15796, 6108, 'six thousand one hundred eight');\nINSERT INTO t3 VALUES(15797, 38855, 'thirty-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(15798, 73926, 'seventy-three thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(15799, 43288, 'forty-three thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15800, 12859, 'twelve thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(15801, 27847, 'twenty-seven thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(15802, 2827, 'two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(15803, 54025, 'fifty-four thousand twenty-five');\nINSERT INTO t3 VALUES(15804, 76576, 'seventy-six thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(15805, 72236, 'seventy-two thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(15806, 96420, 'ninety-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(15807, 6322, 'six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(15808, 73095, 'seventy-three thousand ninety-five');\nINSERT INTO t3 VALUES(15809, 72603, 'seventy-two thousand six hundred three');\nINSERT INTO t3 VALUES(15810, 20120, 'twenty thousand one hundred twenty');\nINSERT INTO t3 VALUES(15811, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(15812, 90127, 'ninety thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(15813, 53449, 'fifty-three thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(15814, 57535, 'fifty-seven thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(15815, 38151, 'thirty-eight thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(15816, 84575, 'eighty-four thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(15817, 57975, 'fifty-seven thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(15818, 54378, 'fifty-four thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(15819, 80231, 'eighty thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(15820, 74490, 'seventy-four thousand four hundred ninety');\nINSERT INTO t3 VALUES(15821, 93000, 'ninety-three thousand');\nINSERT INTO t3 VALUES(15822, 53804, 'fifty-three thousand eight hundred four');\nINSERT INTO t3 VALUES(15823, 72659, 'seventy-two thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15824, 82196, 'eighty-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(15825, 74290, 'seventy-four thousand two hundred ninety');\nINSERT INTO t3 VALUES(15826, 81337, 'eighty-one thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(15827, 65291, 'sixty-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(15828, 20270, 'twenty thousand two hundred seventy');\nINSERT INTO t3 VALUES(15829, 50130, 'fifty thousand one hundred thirty');\nINSERT INTO t3 VALUES(15830, 56392, 'fifty-six thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(15831, 75784, 'seventy-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(15832, 57274, 'fifty-seven thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(15833, 46715, 'forty-six thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(15834, 74839, 'seventy-four thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(15835, 97753, 'ninety-seven thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(15836, 27198, 'twenty-seven thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(15837, 29151, 'twenty-nine thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(15838, 13052, 'thirteen thousand fifty-two');\nINSERT INTO t3 VALUES(15839, 54863, 'fifty-four thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(15840, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(15841, 43745, 'forty-three thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(15842, 64386, 'sixty-four thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(15843, 3084, 'three thousand eighty-four');\nINSERT INTO t3 VALUES(15844, 92479, 'ninety-two thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(15845, 35910, 'thirty-five thousand nine hundred ten');\nINSERT INTO t3 VALUES(15846, 65149, 'sixty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(15847, 24507, 'twenty-four thousand five hundred seven');\nINSERT INTO t3 VALUES(15848, 75000, 'seventy-five thousand');\nINSERT INTO t3 VALUES(15849, 82539, 'eighty-two thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(15850, 51689, 'fifty-one thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(15851, 89567, 'eighty-nine thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(15852, 73056, 'seventy-three thousand fifty-six');\nINSERT INTO t3 VALUES(15853, 71067, 'seventy-one thousand sixty-seven');\nINSERT INTO t3 VALUES(15854, 12457, 'twelve thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(15855, 26706, 'twenty-six thousand seven hundred six');\nINSERT INTO t3 VALUES(15856, 2912, 'two thousand nine hundred twelve');\nINSERT INTO t3 VALUES(15857, 55005, 'fifty-five thousand five');\nINSERT INTO t3 VALUES(15858, 37894, 'thirty-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(15859, 39584, 'thirty-nine thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(15860, 51846, 'fifty-one thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(15861, 81164, 'eighty-one thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(15862, 20254, 'twenty thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(15863, 1529, 'one thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(15864, 30952, 'thirty thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15865, 18580, 'eighteen thousand five hundred eighty');\nINSERT INTO t3 VALUES(15866, 27203, 'twenty-seven thousand two hundred three');\nINSERT INTO t3 VALUES(15867, 29178, 'twenty-nine thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(15868, 2871, 'two thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(15869, 20110, 'twenty thousand one hundred ten');\nINSERT INTO t3 VALUES(15870, 59595, 'fifty-nine thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(15871, 90346, 'ninety thousand three hundred forty-six');\nINSERT INTO t3 VALUES(15872, 49951, 'forty-nine thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(15873, 89218, 'eighty-nine thousand two hundred eighteen');\nINSERT INTO t3 VALUES(15874, 46432, 'forty-six thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(15875, 83179, 'eighty-three thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(15876, 39442, 'thirty-nine thousand four hundred forty-two');\nINSERT INTO t3 VALUES(15877, 56640, 'fifty-six thousand six hundred forty');\nINSERT INTO t3 VALUES(15878, 62928, 'sixty-two thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(15879, 19757, 'nineteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(15880, 21134, 'twenty-one thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(15881, 10120, 'ten thousand one hundred twenty');\nINSERT INTO t3 VALUES(15882, 86006, 'eighty-six thousand six');\nINSERT INTO t3 VALUES(15883, 25262, 'twenty-five thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(15884, 99733, 'ninety-nine thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(15885, 42110, 'forty-two thousand one hundred ten');\nINSERT INTO t3 VALUES(15886, 33981, 'thirty-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(15887, 88952, 'eighty-eight thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(15888, 43788, 'forty-three thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(15889, 32857, 'thirty-two thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(15890, 30809, 'thirty thousand eight hundred nine');\nINSERT INTO t3 VALUES(15891, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(15892, 39109, 'thirty-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(15893, 90617, 'ninety thousand six hundred seventeen');\nINSERT INTO t3 VALUES(15894, 22633, 'twenty-two thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(15895, 18549, 'eighteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(15896, 82776, 'eighty-two thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(15897, 4576, 'four thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(15898, 31219, 'thirty-one thousand two hundred nineteen');\nINSERT INTO t3 VALUES(15899, 9301, 'nine thousand three hundred one');\nINSERT INTO t3 VALUES(15900, 28554, 'twenty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(15901, 481, 'four hundred eighty-one');\nINSERT INTO t3 VALUES(15902, 29167, 'twenty-nine thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(15903, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(15904, 16451, 'sixteen thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(15905, 13885, 'thirteen thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(15906, 91841, 'ninety-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(15907, 97112, 'ninety-seven thousand one hundred twelve');\nINSERT INTO t3 VALUES(15908, 39319, 'thirty-nine thousand three hundred nineteen');\nINSERT INTO t3 VALUES(15909, 29294, 'twenty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(15910, 5086, 'five thousand eighty-six');\nINSERT INTO t3 VALUES(15911, 9715, 'nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(15912, 29295, 'twenty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(15913, 29313, 'twenty-nine thousand three hundred thirteen');\nINSERT INTO t3 VALUES(15914, 85821, 'eighty-five thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(15915, 9970, 'nine thousand nine hundred seventy');\nINSERT INTO t3 VALUES(15916, 94835, 'ninety-four thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(15917, 48286, 'forty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(15918, 47916, 'forty-seven thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(15919, 86919, 'eighty-six thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(15920, 52691, 'fifty-two thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(15921, 18178, 'eighteen thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(15922, 22089, 'twenty-two thousand eighty-nine');\nINSERT INTO t3 VALUES(15923, 23263, 'twenty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(15924, 76782, 'seventy-six thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(15925, 37280, 'thirty-seven thousand two hundred eighty');\nINSERT INTO t3 VALUES(15926, 66211, 'sixty-six thousand two hundred eleven');\nINSERT INTO t3 VALUES(15927, 18769, 'eighteen thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(15928, 52527, 'fifty-two thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(15929, 13964, 'thirteen thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(15930, 77013, 'seventy-seven thousand thirteen');\nINSERT INTO t3 VALUES(15931, 87217, 'eighty-seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(15932, 58723, 'fifty-eight thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(15933, 45694, 'forty-five thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(15934, 73566, 'seventy-three thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(15935, 4799, 'four thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(15936, 44725, 'forty-four thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(15937, 81732, 'eighty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(15938, 25916, 'twenty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(15939, 17399, 'seventeen thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(15940, 10941, 'ten thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(15941, 84526, 'eighty-four thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(15942, 29237, 'twenty-nine thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(15943, 16483, 'sixteen thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(15944, 16545, 'sixteen thousand five hundred forty-five');\nINSERT INTO t3 VALUES(15945, 85472, 'eighty-five thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(15946, 90402, 'ninety thousand four hundred two');\nINSERT INTO t3 VALUES(15947, 69356, 'sixty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(15948, 98401, 'ninety-eight thousand four hundred one');\nINSERT INTO t3 VALUES(15949, 36109, 'thirty-six thousand one hundred nine');\nINSERT INTO t3 VALUES(15950, 85041, 'eighty-five thousand forty-one');\nINSERT INTO t3 VALUES(15951, 22035, 'twenty-two thousand thirty-five');\nINSERT INTO t3 VALUES(15952, 54581, 'fifty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(15953, 19057, 'nineteen thousand fifty-seven');\nINSERT INTO t3 VALUES(15954, 56795, 'fifty-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(15955, 95939, 'ninety-five thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(15956, 2417, 'two thousand four hundred seventeen');\nINSERT INTO t3 VALUES(15957, 91270, 'ninety-one thousand two hundred seventy');\nINSERT INTO t3 VALUES(15958, 40899, 'forty thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(15959, 87942, 'eighty-seven thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(15960, 75647, 'seventy-five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(15961, 24984, 'twenty-four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(15962, 85564, 'eighty-five thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(15963, 78694, 'seventy-eight thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(15964, 21360, 'twenty-one thousand three hundred sixty');\nINSERT INTO t3 VALUES(15965, 85288, 'eighty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(15966, 13749, 'thirteen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(15967, 68260, 'sixty-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(15968, 16359, 'sixteen thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(15969, 36265, 'thirty-six thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(15970, 52948, 'fifty-two thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(15971, 50751, 'fifty thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(15972, 48659, 'forty-eight thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(15973, 76413, 'seventy-six thousand four hundred thirteen');\nINSERT INTO t3 VALUES(15974, 43925, 'forty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(15975, 35488, 'thirty-five thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(15976, 47650, 'forty-seven thousand six hundred fifty');\nINSERT INTO t3 VALUES(15977, 64588, 'sixty-four thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(15978, 37111, 'thirty-seven thousand one hundred eleven');\nINSERT INTO t3 VALUES(15979, 1296, 'one thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(15980, 71106, 'seventy-one thousand one hundred six');\nINSERT INTO t3 VALUES(15981, 1978, 'one thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(15982, 7573, 'seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(15983, 48238, 'forty-eight thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(15984, 96048, 'ninety-six thousand forty-eight');\nINSERT INTO t3 VALUES(15985, 34429, 'thirty-four thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(15986, 86902, 'eighty-six thousand nine hundred two');\nINSERT INTO t3 VALUES(15987, 71973, 'seventy-one thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(15988, 27220, 'twenty-seven thousand two hundred twenty');\nINSERT INTO t3 VALUES(15989, 97652, 'ninety-seven thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(15990, 40297, 'forty thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(15991, 70229, 'seventy thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(15992, 23440, 'twenty-three thousand four hundred forty');\nINSERT INTO t3 VALUES(15993, 74759, 'seventy-four thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(15994, 77050, 'seventy-seven thousand fifty');\nINSERT INTO t3 VALUES(15995, 99274, 'ninety-nine thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(15996, 98047, 'ninety-eight thousand forty-seven');\nINSERT INTO t3 VALUES(15997, 29133, 'twenty-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(15998, 82205, 'eighty-two thousand two hundred five');\nINSERT INTO t3 VALUES(15999, 70141, 'seventy thousand one hundred forty-one');\nINSERT INTO t3 VALUES(16000, 76251, 'seventy-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(16001, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t3 VALUES(16002, 91043, 'ninety-one thousand forty-three');\nINSERT INTO t3 VALUES(16003, 87672, 'eighty-seven thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(16004, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(16005, 58608, 'fifty-eight thousand six hundred eight');\nINSERT INTO t3 VALUES(16006, 96816, 'ninety-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(16007, 28584, 'twenty-eight thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(16008, 56670, 'fifty-six thousand six hundred seventy');\nINSERT INTO t3 VALUES(16009, 7630, 'seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(16010, 94290, 'ninety-four thousand two hundred ninety');\nINSERT INTO t3 VALUES(16011, 12913, 'twelve thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(16012, 94587, 'ninety-four thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(16013, 18624, 'eighteen thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(16014, 87441, 'eighty-seven thousand four hundred forty-one');\nINSERT INTO t3 VALUES(16015, 58243, 'fifty-eight thousand two hundred forty-three');\nINSERT INTO t3 VALUES(16016, 71871, 'seventy-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(16017, 82033, 'eighty-two thousand thirty-three');\nINSERT INTO t3 VALUES(16018, 14443, 'fourteen thousand four hundred forty-three');\nINSERT INTO t3 VALUES(16019, 42290, 'forty-two thousand two hundred ninety');\nINSERT INTO t3 VALUES(16020, 47334, 'forty-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(16021, 84039, 'eighty-four thousand thirty-nine');\nINSERT INTO t3 VALUES(16022, 31982, 'thirty-one thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(16023, 21716, 'twenty-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(16024, 79688, 'seventy-nine thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(16025, 10315, 'ten thousand three hundred fifteen');\nINSERT INTO t3 VALUES(16026, 49694, 'forty-nine thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16027, 21387, 'twenty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16028, 5082, 'five thousand eighty-two');\nINSERT INTO t3 VALUES(16029, 63886, 'sixty-three thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16030, 34656, 'thirty-four thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(16031, 49531, 'forty-nine thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(16032, 95666, 'ninety-five thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(16033, 85709, 'eighty-five thousand seven hundred nine');\nINSERT INTO t3 VALUES(16034, 2086, 'two thousand eighty-six');\nINSERT INTO t3 VALUES(16035, 72110, 'seventy-two thousand one hundred ten');\nINSERT INTO t3 VALUES(16036, 21688, 'twenty-one thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(16037, 46976, 'forty-six thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(16038, 60339, 'sixty thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16039, 18327, 'eighteen thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(16040, 80395, 'eighty thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(16041, 98302, 'ninety-eight thousand three hundred two');\nINSERT INTO t3 VALUES(16042, 5387, 'five thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16043, 6078, 'six thousand seventy-eight');\nINSERT INTO t3 VALUES(16044, 9051, 'nine thousand fifty-one');\nINSERT INTO t3 VALUES(16045, 12295, 'twelve thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(16046, 85567, 'eighty-five thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(16047, 61870, 'sixty-one thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16048, 73569, 'seventy-three thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(16049, 30847, 'thirty thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(16050, 57768, 'fifty-seven thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16051, 87632, 'eighty-seven thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(16052, 10860, 'ten thousand eight hundred sixty');\nINSERT INTO t3 VALUES(16053, 95099, 'ninety-five thousand ninety-nine');\nINSERT INTO t3 VALUES(16054, 16308, 'sixteen thousand three hundred eight');\nINSERT INTO t3 VALUES(16055, 19403, 'nineteen thousand four hundred three');\nINSERT INTO t3 VALUES(16056, 25261, 'twenty-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(16057, 25641, 'twenty-five thousand six hundred forty-one');\nINSERT INTO t3 VALUES(16058, 2087, 'two thousand eighty-seven');\nINSERT INTO t3 VALUES(16059, 92824, 'ninety-two thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(16060, 60191, 'sixty thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(16061, 94860, 'ninety-four thousand eight hundred sixty');\nINSERT INTO t3 VALUES(16062, 62525, 'sixty-two thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(16063, 29113, 'twenty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(16064, 44740, 'forty-four thousand seven hundred forty');\nINSERT INTO t3 VALUES(16065, 27831, 'twenty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(16066, 54713, 'fifty-four thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(16067, 2363, 'two thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(16068, 49810, 'forty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(16069, 10021, 'ten thousand twenty-one');\nINSERT INTO t3 VALUES(16070, 63987, 'sixty-three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(16071, 22812, 'twenty-two thousand eight hundred twelve');\nINSERT INTO t3 VALUES(16072, 48094, 'forty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(16073, 62218, 'sixty-two thousand two hundred eighteen');\nINSERT INTO t3 VALUES(16074, 27155, 'twenty-seven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(16075, 99053, 'ninety-nine thousand fifty-three');\nINSERT INTO t3 VALUES(16076, 16807, 'sixteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(16077, 23527, 'twenty-three thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(16078, 85282, 'eighty-five thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(16079, 97038, 'ninety-seven thousand thirty-eight');\nINSERT INTO t3 VALUES(16080, 77910, 'seventy-seven thousand nine hundred ten');\nINSERT INTO t3 VALUES(16081, 20870, 'twenty thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16082, 59185, 'fifty-nine thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(16083, 77996, 'seventy-seven thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(16084, 18470, 'eighteen thousand four hundred seventy');\nINSERT INTO t3 VALUES(16085, 81078, 'eighty-one thousand seventy-eight');\nINSERT INTO t3 VALUES(16086, 9262, 'nine thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(16087, 35307, 'thirty-five thousand three hundred seven');\nINSERT INTO t3 VALUES(16088, 39244, 'thirty-nine thousand two hundred forty-four');\nINSERT INTO t3 VALUES(16089, 8882, 'eight thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(16090, 21110, 'twenty-one thousand one hundred ten');\nINSERT INTO t3 VALUES(16091, 37331, 'thirty-seven thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(16092, 70242, 'seventy thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16093, 61850, 'sixty-one thousand eight hundred fifty');\nINSERT INTO t3 VALUES(16094, 75197, 'seventy-five thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(16095, 66512, 'sixty-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(16096, 42722, 'forty-two thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(16097, 99254, 'ninety-nine thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(16098, 61338, 'sixty-one thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(16099, 96694, 'ninety-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16100, 46680, 'forty-six thousand six hundred eighty');\nINSERT INTO t3 VALUES(16101, 7371, 'seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(16102, 41255, 'forty-one thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(16103, 56563, 'fifty-six thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(16104, 45600, 'forty-five thousand six hundred');\nINSERT INTO t3 VALUES(16105, 98904, 'ninety-eight thousand nine hundred four');\nINSERT INTO t3 VALUES(16106, 78223, 'seventy-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(16107, 57420, 'fifty-seven thousand four hundred twenty');\nINSERT INTO t3 VALUES(16108, 35945, 'thirty-five thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(16109, 57187, 'fifty-seven thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(16110, 77349, 'seventy-seven thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(16111, 42789, 'forty-two thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(16112, 35906, 'thirty-five thousand nine hundred six');\nINSERT INTO t3 VALUES(16113, 51085, 'fifty-one thousand eighty-five');\nINSERT INTO t3 VALUES(16114, 86768, 'eighty-six thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16115, 51828, 'fifty-one thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(16116, 19442, 'nineteen thousand four hundred forty-two');\nINSERT INTO t3 VALUES(16117, 27486, 'twenty-seven thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(16118, 15511, 'fifteen thousand five hundred eleven');\nINSERT INTO t3 VALUES(16119, 10224, 'ten thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(16120, 1887, 'one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(16121, 94072, 'ninety-four thousand seventy-two');\nINSERT INTO t3 VALUES(16122, 38517, 'thirty-eight thousand five hundred seventeen');\nINSERT INTO t3 VALUES(16123, 81149, 'eighty-one thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(16124, 6642, 'six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(16125, 93889, 'ninety-three thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(16126, 13319, 'thirteen thousand three hundred nineteen');\nINSERT INTO t3 VALUES(16127, 47727, 'forty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(16128, 39412, 'thirty-nine thousand four hundred twelve');\nINSERT INTO t3 VALUES(16129, 63979, 'sixty-three thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(16130, 982, 'nine hundred eighty-two');\nINSERT INTO t3 VALUES(16131, 76188, 'seventy-six thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16132, 53246, 'fifty-three thousand two hundred forty-six');\nINSERT INTO t3 VALUES(16133, 37034, 'thirty-seven thousand thirty-four');\nINSERT INTO t3 VALUES(16134, 25812, 'twenty-five thousand eight hundred twelve');\nINSERT INTO t3 VALUES(16135, 63184, 'sixty-three thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(16136, 19783, 'nineteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(16137, 57997, 'fifty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(16138, 76135, 'seventy-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(16139, 16756, 'sixteen thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(16140, 70935, 'seventy thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(16141, 59119, 'fifty-nine thousand one hundred nineteen');\nINSERT INTO t3 VALUES(16142, 18065, 'eighteen thousand sixty-five');\nINSERT INTO t3 VALUES(16143, 15408, 'fifteen thousand four hundred eight');\nINSERT INTO t3 VALUES(16144, 41387, 'forty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16145, 33319, 'thirty-three thousand three hundred nineteen');\nINSERT INTO t3 VALUES(16146, 62577, 'sixty-two thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(16147, 46805, 'forty-six thousand eight hundred five');\nINSERT INTO t3 VALUES(16148, 49174, 'forty-nine thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(16149, 89647, 'eighty-nine thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(16150, 1934, 'one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(16151, 9996, 'nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(16152, 45686, 'forty-five thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(16153, 86495, 'eighty-six thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(16154, 46939, 'forty-six thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(16155, 84358, 'eighty-four thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(16156, 85226, 'eighty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(16157, 3259, 'three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(16158, 31960, 'thirty-one thousand nine hundred sixty');\nINSERT INTO t3 VALUES(16159, 19489, 'nineteen thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16160, 13754, 'thirteen thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(16161, 8984, 'eight thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(16162, 32860, 'thirty-two thousand eight hundred sixty');\nINSERT INTO t3 VALUES(16163, 98639, 'ninety-eight thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(16164, 8832, 'eight thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(16165, 25823, 'twenty-five thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(16166, 42372, 'forty-two thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(16167, 20932, 'twenty thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(16168, 646, 'six hundred forty-six');\nINSERT INTO t3 VALUES(16169, 48906, 'forty-eight thousand nine hundred six');\nINSERT INTO t3 VALUES(16170, 48227, 'forty-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(16171, 19963, 'nineteen thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(16172, 49439, 'forty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(16173, 48081, 'forty-eight thousand eighty-one');\nINSERT INTO t3 VALUES(16174, 38632, 'thirty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(16175, 17196, 'seventeen thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(16176, 72207, 'seventy-two thousand two hundred seven');\nINSERT INTO t3 VALUES(16177, 8430, 'eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(16178, 28319, 'twenty-eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(16179, 85779, 'eighty-five thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(16180, 88955, 'eighty-eight thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(16181, 62648, 'sixty-two thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(16182, 255, 'two hundred fifty-five');\nINSERT INTO t3 VALUES(16183, 6398, 'six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(16184, 56235, 'fifty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(16185, 82051, 'eighty-two thousand fifty-one');\nINSERT INTO t3 VALUES(16186, 8568, 'eight thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(16187, 77839, 'seventy-seven thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(16188, 82034, 'eighty-two thousand thirty-four');\nINSERT INTO t3 VALUES(16189, 23832, 'twenty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(16190, 36042, 'thirty-six thousand forty-two');\nINSERT INTO t3 VALUES(16191, 21665, 'twenty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(16192, 196, 'one hundred ninety-six');\nINSERT INTO t3 VALUES(16193, 80706, 'eighty thousand seven hundred six');\nINSERT INTO t3 VALUES(16194, 95914, 'ninety-five thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(16195, 42866, 'forty-two thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(16196, 36279, 'thirty-six thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(16197, 54542, 'fifty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(16198, 87180, 'eighty-seven thousand one hundred eighty');\nINSERT INTO t3 VALUES(16199, 67856, 'sixty-seven thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(16200, 9116, 'nine thousand one hundred sixteen');\nINSERT INTO t3 VALUES(16201, 64021, 'sixty-four thousand twenty-one');\nINSERT INTO t3 VALUES(16202, 20565, 'twenty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(16203, 99625, 'ninety-nine thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(16204, 13416, 'thirteen thousand four hundred sixteen');\nINSERT INTO t3 VALUES(16205, 60633, 'sixty thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(16206, 30002, 'thirty thousand two');\nINSERT INTO t3 VALUES(16207, 60622, 'sixty thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(16208, 26307, 'twenty-six thousand three hundred seven');\nINSERT INTO t3 VALUES(16209, 97563, 'ninety-seven thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(16210, 55807, 'fifty-five thousand eight hundred seven');\nINSERT INTO t3 VALUES(16211, 22106, 'twenty-two thousand one hundred six');\nINSERT INTO t3 VALUES(16212, 4490, 'four thousand four hundred ninety');\nINSERT INTO t3 VALUES(16213, 91635, 'ninety-one thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(16214, 31135, 'thirty-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(16215, 49872, 'forty-nine thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(16216, 65808, 'sixty-five thousand eight hundred eight');\nINSERT INTO t3 VALUES(16217, 36010, 'thirty-six thousand ten');\nINSERT INTO t3 VALUES(16218, 33265, 'thirty-three thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(16219, 84849, 'eighty-four thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(16220, 11340, 'eleven thousand three hundred forty');\nINSERT INTO t3 VALUES(16221, 85480, 'eighty-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(16222, 7234, 'seven thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(16223, 28974, 'twenty-eight thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(16224, 46542, 'forty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(16225, 41413, 'forty-one thousand four hundred thirteen');\nINSERT INTO t3 VALUES(16226, 56244, 'fifty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(16227, 18165, 'eighteen thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(16228, 48462, 'forty-eight thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(16229, 96480, 'ninety-six thousand four hundred eighty');\nINSERT INTO t3 VALUES(16230, 29633, 'twenty-nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(16231, 44582, 'forty-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(16232, 80132, 'eighty thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(16233, 71522, 'seventy-one thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(16234, 62916, 'sixty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(16235, 61373, 'sixty-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(16236, 54532, 'fifty-four thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(16237, 71995, 'seventy-one thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(16238, 35558, 'thirty-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(16239, 91537, 'ninety-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(16240, 22038, 'twenty-two thousand thirty-eight');\nINSERT INTO t3 VALUES(16241, 25339, 'twenty-five thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16242, 9899, 'nine thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(16243, 75618, 'seventy-five thousand six hundred eighteen');\nINSERT INTO t3 VALUES(16244, 4967, 'four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(16245, 76204, 'seventy-six thousand two hundred four');\nINSERT INTO t3 VALUES(16246, 46582, 'forty-six thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(16247, 2728, 'two thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(16248, 42985, 'forty-two thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16249, 31809, 'thirty-one thousand eight hundred nine');\nINSERT INTO t3 VALUES(16250, 93601, 'ninety-three thousand six hundred one');\nINSERT INTO t3 VALUES(16251, 39570, 'thirty-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(16252, 74782, 'seventy-four thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(16253, 17383, 'seventeen thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16254, 90613, 'ninety thousand six hundred thirteen');\nINSERT INTO t3 VALUES(16255, 83804, 'eighty-three thousand eight hundred four');\nINSERT INTO t3 VALUES(16256, 72251, 'seventy-two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(16257, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(16258, 52977, 'fifty-two thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(16259, 95811, 'ninety-five thousand eight hundred eleven');\nINSERT INTO t3 VALUES(16260, 78113, 'seventy-eight thousand one hundred thirteen');\nINSERT INTO t3 VALUES(16261, 45720, 'forty-five thousand seven hundred twenty');\nINSERT INTO t3 VALUES(16262, 9158, 'nine thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(16263, 64131, 'sixty-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(16264, 44225, 'forty-four thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(16265, 46856, 'forty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(16266, 77173, 'seventy-seven thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(16267, 22839, 'twenty-two thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(16268, 57339, 'fifty-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16269, 29735, 'twenty-nine thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(16270, 4850, 'four thousand eight hundred fifty');\nINSERT INTO t3 VALUES(16271, 99310, 'ninety-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(16272, 83699, 'eighty-three thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(16273, 74231, 'seventy-four thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(16274, 98971, 'ninety-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(16275, 91330, 'ninety-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(16276, 55128, 'fifty-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(16277, 36250, 'thirty-six thousand two hundred fifty');\nINSERT INTO t3 VALUES(16278, 89901, 'eighty-nine thousand nine hundred one');\nINSERT INTO t3 VALUES(16279, 67826, 'sixty-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(16280, 64001, 'sixty-four thousand one');\nINSERT INTO t3 VALUES(16281, 70308, 'seventy thousand three hundred eight');\nINSERT INTO t3 VALUES(16282, 67318, 'sixty-seven thousand three hundred eighteen');\nINSERT INTO t3 VALUES(16283, 56771, 'fifty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(16284, 1677, 'one thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(16285, 5888, 'five thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(16286, 94270, 'ninety-four thousand two hundred seventy');\nINSERT INTO t3 VALUES(16287, 10332, 'ten thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(16288, 14107, 'fourteen thousand one hundred seven');\nINSERT INTO t3 VALUES(16289, 948, 'nine hundred forty-eight');\nINSERT INTO t3 VALUES(16290, 202, 'two hundred two');\nINSERT INTO t3 VALUES(16291, 75169, 'seventy-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(16292, 79522, 'seventy-nine thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(16293, 71927, 'seventy-one thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(16294, 1138, 'one thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(16295, 98919, 'ninety-eight thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(16296, 58024, 'fifty-eight thousand twenty-four');\nINSERT INTO t3 VALUES(16297, 30489, 'thirty thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16298, 50409, 'fifty thousand four hundred nine');\nINSERT INTO t3 VALUES(16299, 6894, 'six thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(16300, 53285, 'fifty-three thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(16301, 36270, 'thirty-six thousand two hundred seventy');\nINSERT INTO t3 VALUES(16302, 42252, 'forty-two thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16303, 30362, 'thirty thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(16304, 52895, 'fifty-two thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(16305, 64909, 'sixty-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(16306, 60806, 'sixty thousand eight hundred six');\nINSERT INTO t3 VALUES(16307, 11936, 'eleven thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(16308, 36296, 'thirty-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(16309, 99074, 'ninety-nine thousand seventy-four');\nINSERT INTO t3 VALUES(16310, 5695, 'five thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(16311, 91351, 'ninety-one thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(16312, 46110, 'forty-six thousand one hundred ten');\nINSERT INTO t3 VALUES(16313, 59810, 'fifty-nine thousand eight hundred ten');\nINSERT INTO t3 VALUES(16314, 69024, 'sixty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(16315, 46756, 'forty-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(16316, 17170, 'seventeen thousand one hundred seventy');\nINSERT INTO t3 VALUES(16317, 71402, 'seventy-one thousand four hundred two');\nINSERT INTO t3 VALUES(16318, 81600, 'eighty-one thousand six hundred');\nINSERT INTO t3 VALUES(16319, 3407, 'three thousand four hundred seven');\nINSERT INTO t3 VALUES(16320, 32188, 'thirty-two thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16321, 16842, 'sixteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(16322, 6375, 'six thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(16323, 62878, 'sixty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(16324, 53426, 'fifty-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(16325, 93337, 'ninety-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(16326, 55886, 'fifty-five thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16327, 49437, 'forty-nine thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(16328, 39960, 'thirty-nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(16329, 30953, 'thirty thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(16330, 23339, 'twenty-three thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16331, 40207, 'forty thousand two hundred seven');\nINSERT INTO t3 VALUES(16332, 71581, 'seventy-one thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(16333, 62429, 'sixty-two thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(16334, 30739, 'thirty thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(16335, 36016, 'thirty-six thousand sixteen');\nINSERT INTO t3 VALUES(16336, 70272, 'seventy thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(16337, 68870, 'sixty-eight thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16338, 16131, 'sixteen thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(16339, 16757, 'sixteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(16340, 61245, 'sixty-one thousand two hundred forty-five');\nINSERT INTO t3 VALUES(16341, 85830, 'eighty-five thousand eight hundred thirty');\nINSERT INTO t3 VALUES(16342, 19743, 'nineteen thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(16343, 15977, 'fifteen thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(16344, 29168, 'twenty-nine thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(16345, 67100, 'sixty-seven thousand one hundred');\nINSERT INTO t3 VALUES(16346, 80098, 'eighty thousand ninety-eight');\nINSERT INTO t3 VALUES(16347, 93153, 'ninety-three thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(16348, 65069, 'sixty-five thousand sixty-nine');\nINSERT INTO t3 VALUES(16349, 45760, 'forty-five thousand seven hundred sixty');\nINSERT INTO t3 VALUES(16350, 57927, 'fifty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(16351, 94757, 'ninety-four thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(16352, 29768, 'twenty-nine thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16353, 38222, 'thirty-eight thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(16354, 30870, 'thirty thousand eight hundred seventy');\nINSERT INTO t3 VALUES(16355, 85694, 'eighty-five thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16356, 71346, 'seventy-one thousand three hundred forty-six');\nINSERT INTO t3 VALUES(16357, 31036, 'thirty-one thousand thirty-six');\nINSERT INTO t3 VALUES(16358, 96987, 'ninety-six thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(16359, 26137, 'twenty-six thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(16360, 86739, 'eighty-six thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(16361, 73896, 'seventy-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(16362, 33026, 'thirty-three thousand twenty-six');\nINSERT INTO t3 VALUES(16363, 84924, 'eighty-four thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(16364, 61463, 'sixty-one thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(16365, 19377, 'nineteen thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(16366, 72052, 'seventy-two thousand fifty-two');\nINSERT INTO t3 VALUES(16367, 87059, 'eighty-seven thousand fifty-nine');\nINSERT INTO t3 VALUES(16368, 91232, 'ninety-one thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16369, 3943, 'three thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16370, 98321, 'ninety-eight thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(16371, 19363, 'nineteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(16372, 31774, 'thirty-one thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(16373, 14384, 'fourteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(16374, 61879, 'sixty-one thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(16375, 16085, 'sixteen thousand eighty-five');\nINSERT INTO t3 VALUES(16376, 1008, 'one thousand eight');\nINSERT INTO t3 VALUES(16377, 76827, 'seventy-six thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(16378, 96159, 'ninety-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(16379, 44128, 'forty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(16380, 80042, 'eighty thousand forty-two');\nINSERT INTO t3 VALUES(16381, 89518, 'eighty-nine thousand five hundred eighteen');\nINSERT INTO t3 VALUES(16382, 86365, 'eighty-six thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(16383, 91358, 'ninety-one thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(16384, 38116, 'thirty-eight thousand one hundred sixteen');\nINSERT INTO t3 VALUES(16385, 25, 'twenty-five');\nINSERT INTO t3 VALUES(16386, 53486, 'fifty-three thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(16387, 34164, 'thirty-four thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(16388, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(16389, 63052, 'sixty-three thousand fifty-two');\nINSERT INTO t3 VALUES(16390, 73188, 'seventy-three thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16391, 79627, 'seventy-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(16392, 18066, 'eighteen thousand sixty-six');\nINSERT INTO t3 VALUES(16393, 31726, 'thirty-one thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(16394, 95102, 'ninety-five thousand one hundred two');\nINSERT INTO t3 VALUES(16395, 9848, 'nine thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(16396, 11797, 'eleven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(16397, 12525, 'twelve thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(16398, 69709, 'sixty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(16399, 21914, 'twenty-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(16400, 15578, 'fifteen thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(16401, 2941, 'two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(16402, 44751, 'forty-four thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(16403, 5166, 'five thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(16404, 31610, 'thirty-one thousand six hundred ten');\nINSERT INTO t3 VALUES(16405, 9989, 'nine thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(16406, 38502, 'thirty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(16407, 77586, 'seventy-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(16408, 5357, 'five thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(16409, 60596, 'sixty thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(16410, 43738, 'forty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(16411, 54102, 'fifty-four thousand one hundred two');\nINSERT INTO t3 VALUES(16412, 25696, 'twenty-five thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(16413, 56156, 'fifty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(16414, 52572, 'fifty-two thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(16415, 5467, 'five thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(16416, 25563, 'twenty-five thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(16417, 22000, 'twenty-two thousand');\nINSERT INTO t3 VALUES(16418, 29063, 'twenty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(16419, 87619, 'eighty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(16420, 9880, 'nine thousand eight hundred eighty');\nINSERT INTO t3 VALUES(16421, 84634, 'eighty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(16422, 58183, 'fifty-eight thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(16423, 17798, 'seventeen thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(16424, 28489, 'twenty-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16425, 72350, 'seventy-two thousand three hundred fifty');\nINSERT INTO t3 VALUES(16426, 70677, 'seventy thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(16427, 97117, 'ninety-seven thousand one hundred seventeen');\nINSERT INTO t3 VALUES(16428, 50980, 'fifty thousand nine hundred eighty');\nINSERT INTO t3 VALUES(16429, 6242, 'six thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16430, 96689, 'ninety-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16431, 90942, 'ninety thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(16432, 65985, 'sixty-five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16433, 28628, 'twenty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(16434, 1894, 'one thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(16435, 50375, 'fifty thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(16436, 56479, 'fifty-six thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(16437, 26548, 'twenty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(16438, 48816, 'forty-eight thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(16439, 26452, 'twenty-six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(16440, 70126, 'seventy thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(16441, 14081, 'fourteen thousand eighty-one');\nINSERT INTO t3 VALUES(16442, 6910, 'six thousand nine hundred ten');\nINSERT INTO t3 VALUES(16443, 99267, 'ninety-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(16444, 1959, 'one thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(16445, 7385, 'seven thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(16446, 53227, 'fifty-three thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(16447, 3823, 'three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(16448, 70798, 'seventy thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(16449, 45192, 'forty-five thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(16450, 12664, 'twelve thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(16451, 22962, 'twenty-two thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(16452, 46753, 'forty-six thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(16453, 24233, 'twenty-four thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(16454, 41168, 'forty-one thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(16455, 98612, 'ninety-eight thousand six hundred twelve');\nINSERT INTO t3 VALUES(16456, 46050, 'forty-six thousand fifty');\nINSERT INTO t3 VALUES(16457, 80354, 'eighty thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(16458, 11067, 'eleven thousand sixty-seven');\nINSERT INTO t3 VALUES(16459, 98333, 'ninety-eight thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(16460, 43830, 'forty-three thousand eight hundred thirty');\nINSERT INTO t3 VALUES(16461, 95140, 'ninety-five thousand one hundred forty');\nINSERT INTO t3 VALUES(16462, 34244, 'thirty-four thousand two hundred forty-four');\nINSERT INTO t3 VALUES(16463, 7730, 'seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(16464, 84998, 'eighty-four thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(16465, 38262, 'thirty-eight thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(16466, 27851, 'twenty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(16467, 74183, 'seventy-four thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(16468, 71961, 'seventy-one thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(16469, 20150, 'twenty thousand one hundred fifty');\nINSERT INTO t3 VALUES(16470, 97161, 'ninety-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(16471, 37515, 'thirty-seven thousand five hundred fifteen');\nINSERT INTO t3 VALUES(16472, 44636, 'forty-four thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(16473, 54391, 'fifty-four thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(16474, 40704, 'forty thousand seven hundred four');\nINSERT INTO t3 VALUES(16475, 92388, 'ninety-two thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(16476, 23913, 'twenty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(16477, 5553, 'five thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(16478, 2111, 'two thousand one hundred eleven');\nINSERT INTO t3 VALUES(16479, 10017, 'ten thousand seventeen');\nINSERT INTO t3 VALUES(16480, 59341, 'fifty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(16481, 6943, 'six thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16482, 27474, 'twenty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(16483, 21919, 'twenty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(16484, 75523, 'seventy-five thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(16485, 11804, 'eleven thousand eight hundred four');\nINSERT INTO t3 VALUES(16486, 77689, 'seventy-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16487, 93631, 'ninety-three thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(16488, 24989, 'twenty-four thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(16489, 43707, 'forty-three thousand seven hundred seven');\nINSERT INTO t3 VALUES(16490, 84187, 'eighty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(16491, 37401, 'thirty-seven thousand four hundred one');\nINSERT INTO t3 VALUES(16492, 92105, 'ninety-two thousand one hundred five');\nINSERT INTO t3 VALUES(16493, 5740, 'five thousand seven hundred forty');\nINSERT INTO t3 VALUES(16494, 46408, 'forty-six thousand four hundred eight');\nINSERT INTO t3 VALUES(16495, 20796, 'twenty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(16496, 54911, 'fifty-four thousand nine hundred eleven');\nINSERT INTO t3 VALUES(16497, 57730, 'fifty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(16498, 28369, 'twenty-eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(16499, 50018, 'fifty thousand eighteen');\nINSERT INTO t3 VALUES(16500, 5554, 'five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(16501, 64164, 'sixty-four thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(16502, 22750, 'twenty-two thousand seven hundred fifty');\nINSERT INTO t3 VALUES(16503, 4604, 'four thousand six hundred four');\nINSERT INTO t3 VALUES(16504, 43792, 'forty-three thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(16505, 78767, 'seventy-eight thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(16506, 16689, 'sixteen thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16507, 73463, 'seventy-three thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(16508, 71135, 'seventy-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(16509, 93149, 'ninety-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(16510, 3504, 'three thousand five hundred four');\nINSERT INTO t3 VALUES(16511, 98538, 'ninety-eight thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(16512, 89108, 'eighty-nine thousand one hundred eight');\nINSERT INTO t3 VALUES(16513, 97708, 'ninety-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(16514, 57353, 'fifty-seven thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(16515, 21626, 'twenty-one thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(16516, 89719, 'eighty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(16517, 94085, 'ninety-four thousand eighty-five');\nINSERT INTO t3 VALUES(16518, 85095, 'eighty-five thousand ninety-five');\nINSERT INTO t3 VALUES(16519, 49252, 'forty-nine thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16520, 48114, 'forty-eight thousand one hundred fourteen');\nINSERT INTO t3 VALUES(16521, 78855, 'seventy-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16522, 15596, 'fifteen thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(16523, 94790, 'ninety-four thousand seven hundred ninety');\nINSERT INTO t3 VALUES(16524, 74232, 'seventy-four thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16525, 37928, 'thirty-seven thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(16526, 4075, 'four thousand seventy-five');\nINSERT INTO t3 VALUES(16527, 81990, 'eighty-one thousand nine hundred ninety');\nINSERT INTO t3 VALUES(16528, 42126, 'forty-two thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(16529, 13943, 'thirteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16530, 94325, 'ninety-four thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(16531, 7122, 'seven thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(16532, 67562, 'sixty-seven thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(16533, 40253, 'forty thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16534, 70042, 'seventy thousand forty-two');\nINSERT INTO t3 VALUES(16535, 69253, 'sixty-nine thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16536, 66007, 'sixty-six thousand seven');\nINSERT INTO t3 VALUES(16537, 83630, 'eighty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(16538, 33589, 'thirty-three thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(16539, 70993, 'seventy thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(16540, 24581, 'twenty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(16541, 12489, 'twelve thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(16542, 37807, 'thirty-seven thousand eight hundred seven');\nINSERT INTO t3 VALUES(16543, 31594, 'thirty-one thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(16544, 6248, 'six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(16545, 91117, 'ninety-one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(16546, 16096, 'sixteen thousand ninety-six');\nINSERT INTO t3 VALUES(16547, 83898, 'eighty-three thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(16548, 94402, 'ninety-four thousand four hundred two');\nINSERT INTO t3 VALUES(16549, 5180, 'five thousand one hundred eighty');\nINSERT INTO t3 VALUES(16550, 65020, 'sixty-five thousand twenty');\nINSERT INTO t3 VALUES(16551, 82203, 'eighty-two thousand two hundred three');\nINSERT INTO t3 VALUES(16552, 89424, 'eighty-nine thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(16553, 82060, 'eighty-two thousand sixty');\nINSERT INTO t3 VALUES(16554, 34425, 'thirty-four thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(16555, 29211, 'twenty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(16556, 94496, 'ninety-four thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(16557, 26701, 'twenty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(16558, 60958, 'sixty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(16559, 81826, 'eighty-one thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(16560, 42157, 'forty-two thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(16561, 35660, 'thirty-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(16562, 78893, 'seventy-eight thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(16563, 99288, 'ninety-nine thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(16564, 84784, 'eighty-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(16565, 55252, 'fifty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16566, 7686, 'seven thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(16567, 49280, 'forty-nine thousand two hundred eighty');\nINSERT INTO t3 VALUES(16568, 29623, 'twenty-nine thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(16569, 14298, 'fourteen thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(16570, 50356, 'fifty thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(16571, 26867, 'twenty-six thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(16572, 67817, 'sixty-seven thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(16573, 25310, 'twenty-five thousand three hundred ten');\nINSERT INTO t3 VALUES(16574, 24928, 'twenty-four thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(16575, 72510, 'seventy-two thousand five hundred ten');\nINSERT INTO t3 VALUES(16576, 44975, 'forty-four thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(16577, 23957, 'twenty-three thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(16578, 88426, 'eighty-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(16579, 76158, 'seventy-six thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(16580, 16503, 'sixteen thousand five hundred three');\nINSERT INTO t3 VALUES(16581, 97127, 'ninety-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(16582, 93858, 'ninety-three thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(16583, 68715, 'sixty-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(16584, 55142, 'fifty-five thousand one hundred forty-two');\nINSERT INTO t3 VALUES(16585, 56164, 'fifty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(16586, 90967, 'ninety thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(16587, 90260, 'ninety thousand two hundred sixty');\nINSERT INTO t3 VALUES(16588, 5762, 'five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(16589, 6257, 'six thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(16590, 81436, 'eighty-one thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(16591, 6830, 'six thousand eight hundred thirty');\nINSERT INTO t3 VALUES(16592, 15419, 'fifteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(16593, 57242, 'fifty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16594, 45880, 'forty-five thousand eight hundred eighty');\nINSERT INTO t3 VALUES(16595, 95943, 'ninety-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(16596, 58916, 'fifty-eight thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(16597, 39368, 'thirty-nine thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(16598, 49719, 'forty-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(16599, 71253, 'seventy-one thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16600, 78996, 'seventy-eight thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(16601, 85298, 'eighty-five thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(16602, 29028, 'twenty-nine thousand twenty-eight');\nINSERT INTO t3 VALUES(16603, 9968, 'nine thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(16604, 19528, 'nineteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(16605, 97740, 'ninety-seven thousand seven hundred forty');\nINSERT INTO t3 VALUES(16606, 82269, 'eighty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(16607, 31525, 'thirty-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(16608, 84320, 'eighty-four thousand three hundred twenty');\nINSERT INTO t3 VALUES(16609, 32254, 'thirty-two thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(16610, 82210, 'eighty-two thousand two hundred ten');\nINSERT INTO t3 VALUES(16611, 4707, 'four thousand seven hundred seven');\nINSERT INTO t3 VALUES(16612, 88726, 'eighty-eight thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(16613, 59890, 'fifty-nine thousand eight hundred ninety');\nINSERT INTO t3 VALUES(16614, 48064, 'forty-eight thousand sixty-four');\nINSERT INTO t3 VALUES(16615, 79186, 'seventy-nine thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(16616, 96873, 'ninety-six thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(16617, 67112, 'sixty-seven thousand one hundred twelve');\nINSERT INTO t3 VALUES(16618, 64281, 'sixty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(16619, 51857, 'fifty-one thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(16620, 86019, 'eighty-six thousand nineteen');\nINSERT INTO t3 VALUES(16621, 1557, 'one thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(16622, 70741, 'seventy thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(16623, 71783, 'seventy-one thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(16624, 25620, 'twenty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(16625, 40113, 'forty thousand one hundred thirteen');\nINSERT INTO t3 VALUES(16626, 97310, 'ninety-seven thousand three hundred ten');\nINSERT INTO t3 VALUES(16627, 19707, 'nineteen thousand seven hundred seven');\nINSERT INTO t3 VALUES(16628, 80869, 'eighty thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(16629, 73997, 'seventy-three thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(16630, 95063, 'ninety-five thousand sixty-three');\nINSERT INTO t3 VALUES(16631, 40131, 'forty thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(16632, 83385, 'eighty-three thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(16633, 17344, 'seventeen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(16634, 81701, 'eighty-one thousand seven hundred one');\nINSERT INTO t3 VALUES(16635, 40864, 'forty thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(16636, 73484, 'seventy-three thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(16637, 47371, 'forty-seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(16638, 13680, 'thirteen thousand six hundred eighty');\nINSERT INTO t3 VALUES(16639, 58944, 'fifty-eight thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(16640, 48766, 'forty-eight thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(16641, 56983, 'fifty-six thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(16642, 49063, 'forty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(16643, 35055, 'thirty-five thousand fifty-five');\nINSERT INTO t3 VALUES(16644, 16333, 'sixteen thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(16645, 2595, 'two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(16646, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(16647, 23070, 'twenty-three thousand seventy');\nINSERT INTO t3 VALUES(16648, 94879, 'ninety-four thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(16649, 78876, 'seventy-eight thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(16650, 40040, 'forty thousand forty');\nINSERT INTO t3 VALUES(16651, 40327, 'forty thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(16652, 94773, 'ninety-four thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(16653, 97894, 'ninety-seven thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(16654, 28232, 'twenty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16655, 41606, 'forty-one thousand six hundred six');\nINSERT INTO t3 VALUES(16656, 58347, 'fifty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(16657, 70372, 'seventy thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(16658, 2307, 'two thousand three hundred seven');\nINSERT INTO t3 VALUES(16659, 10443, 'ten thousand four hundred forty-three');\nINSERT INTO t3 VALUES(16660, 98569, 'ninety-eight thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(16661, 64822, 'sixty-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(16662, 4020, 'four thousand twenty');\nINSERT INTO t3 VALUES(16663, 61330, 'sixty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(16664, 25805, 'twenty-five thousand eight hundred five');\nINSERT INTO t3 VALUES(16665, 85760, 'eighty-five thousand seven hundred sixty');\nINSERT INTO t3 VALUES(16666, 49823, 'forty-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(16667, 13946, 'thirteen thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(16668, 10774, 'ten thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(16669, 70412, 'seventy thousand four hundred twelve');\nINSERT INTO t3 VALUES(16670, 75357, 'seventy-five thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(16671, 40273, 'forty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(16672, 41325, 'forty-one thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(16673, 80069, 'eighty thousand sixty-nine');\nINSERT INTO t3 VALUES(16674, 79826, 'seventy-nine thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(16675, 40063, 'forty thousand sixty-three');\nINSERT INTO t3 VALUES(16676, 4729, 'four thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(16677, 33520, 'thirty-three thousand five hundred twenty');\nINSERT INTO t3 VALUES(16678, 10896, 'ten thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(16679, 39604, 'thirty-nine thousand six hundred four');\nINSERT INTO t3 VALUES(16680, 91270, 'ninety-one thousand two hundred seventy');\nINSERT INTO t3 VALUES(16681, 31440, 'thirty-one thousand four hundred forty');\nINSERT INTO t3 VALUES(16682, 67528, 'sixty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(16683, 47873, 'forty-seven thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(16684, 71769, 'seventy-one thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(16685, 41492, 'forty-one thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(16686, 23302, 'twenty-three thousand three hundred two');\nINSERT INTO t3 VALUES(16687, 36299, 'thirty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(16688, 32092, 'thirty-two thousand ninety-two');\nINSERT INTO t3 VALUES(16689, 74985, 'seventy-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16690, 92065, 'ninety-two thousand sixty-five');\nINSERT INTO t3 VALUES(16691, 18205, 'eighteen thousand two hundred five');\nINSERT INTO t3 VALUES(16692, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(16693, 41416, 'forty-one thousand four hundred sixteen');\nINSERT INTO t3 VALUES(16694, 88002, 'eighty-eight thousand two');\nINSERT INTO t3 VALUES(16695, 94338, 'ninety-four thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(16696, 95261, 'ninety-five thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(16697, 50277, 'fifty thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(16698, 17066, 'seventeen thousand sixty-six');\nINSERT INTO t3 VALUES(16699, 38162, 'thirty-eight thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(16700, 44807, 'forty-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(16701, 10727, 'ten thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(16702, 14542, 'fourteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(16703, 95518, 'ninety-five thousand five hundred eighteen');\nINSERT INTO t3 VALUES(16704, 83077, 'eighty-three thousand seventy-seven');\nINSERT INTO t3 VALUES(16705, 55666, 'fifty-five thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(16706, 25202, 'twenty-five thousand two hundred two');\nINSERT INTO t3 VALUES(16707, 73677, 'seventy-three thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(16708, 73768, 'seventy-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(16709, 84851, 'eighty-four thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(16710, 37636, 'thirty-seven thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(16711, 18429, 'eighteen thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(16712, 71339, 'seventy-one thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(16713, 55770, 'fifty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(16714, 9861, 'nine thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(16715, 17973, 'seventeen thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(16716, 38438, 'thirty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(16717, 67855, 'sixty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16718, 40450, 'forty thousand four hundred fifty');\nINSERT INTO t3 VALUES(16719, 40228, 'forty thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(16720, 75986, 'seventy-five thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(16721, 4348, 'four thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(16722, 80956, 'eighty thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(16723, 72242, 'seventy-two thousand two hundred forty-two');\nINSERT INTO t3 VALUES(16724, 50975, 'fifty thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(16725, 66261, 'sixty-six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(16726, 74527, 'seventy-four thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(16727, 73247, 'seventy-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(16728, 39306, 'thirty-nine thousand three hundred six');\nINSERT INTO t3 VALUES(16729, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(16730, 46180, 'forty-six thousand one hundred eighty');\nINSERT INTO t3 VALUES(16731, 41076, 'forty-one thousand seventy-six');\nINSERT INTO t3 VALUES(16732, 20270, 'twenty thousand two hundred seventy');\nINSERT INTO t3 VALUES(16733, 81210, 'eighty-one thousand two hundred ten');\nINSERT INTO t3 VALUES(16734, 8430, 'eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(16735, 43882, 'forty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(16736, 88178, 'eighty-eight thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(16737, 1745, 'one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(16738, 50680, 'fifty thousand six hundred eighty');\nINSERT INTO t3 VALUES(16739, 30272, 'thirty thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(16740, 42171, 'forty-two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(16741, 15460, 'fifteen thousand four hundred sixty');\nINSERT INTO t3 VALUES(16742, 15161, 'fifteen thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(16743, 20855, 'twenty thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16744, 38718, 'thirty-eight thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(16745, 4495, 'four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(16746, 25727, 'twenty-five thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(16747, 77573, 'seventy-seven thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(16748, 161, 'one hundred sixty-one');\nINSERT INTO t3 VALUES(16749, 91763, 'ninety-one thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(16750, 96121, 'ninety-six thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(16751, 94514, 'ninety-four thousand five hundred fourteen');\nINSERT INTO t3 VALUES(16752, 84448, 'eighty-four thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(16753, 54246, 'fifty-four thousand two hundred forty-six');\nINSERT INTO t3 VALUES(16754, 70057, 'seventy thousand fifty-seven');\nINSERT INTO t3 VALUES(16755, 1893, 'one thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(16756, 65360, 'sixty-five thousand three hundred sixty');\nINSERT INTO t3 VALUES(16757, 68082, 'sixty-eight thousand eighty-two');\nINSERT INTO t3 VALUES(16758, 94486, 'ninety-four thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(16759, 16424, 'sixteen thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(16760, 8171, 'eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(16761, 66650, 'sixty-six thousand six hundred fifty');\nINSERT INTO t3 VALUES(16762, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(16763, 81716, 'eighty-one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(16764, 20959, 'twenty thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(16765, 64886, 'sixty-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16766, 11942, 'eleven thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(16767, 43713, 'forty-three thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(16768, 27009, 'twenty-seven thousand nine');\nINSERT INTO t3 VALUES(16769, 65097, 'sixty-five thousand ninety-seven');\nINSERT INTO t3 VALUES(16770, 224, 'two hundred twenty-four');\nINSERT INTO t3 VALUES(16771, 68279, 'sixty-eight thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(16772, 75585, 'seventy-five thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(16773, 25412, 'twenty-five thousand four hundred twelve');\nINSERT INTO t3 VALUES(16774, 8120, 'eight thousand one hundred twenty');\nINSERT INTO t3 VALUES(16775, 77387, 'seventy-seven thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16776, 55274, 'fifty-five thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(16777, 98376, 'ninety-eight thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(16778, 32920, 'thirty-two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(16779, 9442, 'nine thousand four hundred forty-two');\nINSERT INTO t3 VALUES(16780, 47345, 'forty-seven thousand three hundred forty-five');\nINSERT INTO t3 VALUES(16781, 80701, 'eighty thousand seven hundred one');\nINSERT INTO t3 VALUES(16782, 81536, 'eighty-one thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(16783, 24773, 'twenty-four thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(16784, 43372, 'forty-three thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(16785, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t3 VALUES(16786, 75910, 'seventy-five thousand nine hundred ten');\nINSERT INTO t3 VALUES(16787, 43921, 'forty-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(16788, 67223, 'sixty-seven thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(16789, 16180, 'sixteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(16790, 5120, 'five thousand one hundred twenty');\nINSERT INTO t3 VALUES(16791, 33007, 'thirty-three thousand seven');\nINSERT INTO t3 VALUES(16792, 16289, 'sixteen thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(16793, 9307, 'nine thousand three hundred seven');\nINSERT INTO t3 VALUES(16794, 99746, 'ninety-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(16795, 4384, 'four thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(16796, 34029, 'thirty-four thousand twenty-nine');\nINSERT INTO t3 VALUES(16797, 52498, 'fifty-two thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(16798, 25558, 'twenty-five thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(16799, 45698, 'forty-five thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(16800, 46660, 'forty-six thousand six hundred sixty');\nINSERT INTO t3 VALUES(16801, 62847, 'sixty-two thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(16802, 87048, 'eighty-seven thousand forty-eight');\nINSERT INTO t3 VALUES(16803, 36782, 'thirty-six thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(16804, 29840, 'twenty-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(16805, 87985, 'eighty-seven thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(16806, 49742, 'forty-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(16807, 45591, 'forty-five thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(16808, 88951, 'eighty-eight thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(16809, 91650, 'ninety-one thousand six hundred fifty');\nINSERT INTO t3 VALUES(16810, 5211, 'five thousand two hundred eleven');\nINSERT INTO t3 VALUES(16811, 72990, 'seventy-two thousand nine hundred ninety');\nINSERT INTO t3 VALUES(16812, 11207, 'eleven thousand two hundred seven');\nINSERT INTO t3 VALUES(16813, 75821, 'seventy-five thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(16814, 80781, 'eighty thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(16815, 81383, 'eighty-one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16816, 54858, 'fifty-four thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(16817, 23954, 'twenty-three thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(16818, 16825, 'sixteen thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(16819, 20043, 'twenty thousand forty-three');\nINSERT INTO t3 VALUES(16820, 25323, 'twenty-five thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(16821, 88853, 'eighty-eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(16822, 66251, 'sixty-six thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(16823, 53299, 'fifty-three thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(16824, 73133, 'seventy-three thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(16825, 54252, 'fifty-four thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(16826, 42210, 'forty-two thousand two hundred ten');\nINSERT INTO t3 VALUES(16827, 1008, 'one thousand eight');\nINSERT INTO t3 VALUES(16828, 88511, 'eighty-eight thousand five hundred eleven');\nINSERT INTO t3 VALUES(16829, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(16830, 90538, 'ninety thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(16831, 5984, 'five thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(16832, 64051, 'sixty-four thousand fifty-one');\nINSERT INTO t3 VALUES(16833, 93119, 'ninety-three thousand one hundred nineteen');\nINSERT INTO t3 VALUES(16834, 2658, 'two thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(16835, 5181, 'five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(16836, 6647, 'six thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(16837, 13864, 'thirteen thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(16838, 21195, 'twenty-one thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(16839, 31379, 'thirty-one thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(16840, 20884, 'twenty thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(16841, 31841, 'thirty-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(16842, 17804, 'seventeen thousand eight hundred four');\nINSERT INTO t3 VALUES(16843, 34418, 'thirty-four thousand four hundred eighteen');\nINSERT INTO t3 VALUES(16844, 81012, 'eighty-one thousand twelve');\nINSERT INTO t3 VALUES(16845, 34202, 'thirty-four thousand two hundred two');\nINSERT INTO t3 VALUES(16846, 41365, 'forty-one thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(16847, 57005, 'fifty-seven thousand five');\nINSERT INTO t3 VALUES(16848, 13783, 'thirteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(16849, 26317, 'twenty-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(16850, 15735, 'fifteen thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(16851, 52702, 'fifty-two thousand seven hundred two');\nINSERT INTO t3 VALUES(16852, 46999, 'forty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(16853, 17673, 'seventeen thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(16854, 34843, 'thirty-four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(16855, 91000, 'ninety-one thousand');\nINSERT INTO t3 VALUES(16856, 23654, 'twenty-three thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(16857, 39864, 'thirty-nine thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(16858, 36335, 'thirty-six thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(16859, 62564, 'sixty-two thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(16860, 10970, 'ten thousand nine hundred seventy');\nINSERT INTO t3 VALUES(16861, 54194, 'fifty-four thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(16862, 7003, 'seven thousand three');\nINSERT INTO t3 VALUES(16863, 42238, 'forty-two thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(16864, 86694, 'eighty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(16865, 76589, 'seventy-six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(16866, 2153, 'two thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(16867, 5233, 'five thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(16868, 51793, 'fifty-one thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(16869, 88978, 'eighty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(16870, 21437, 'twenty-one thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(16871, 49746, 'forty-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(16872, 75343, 'seventy-five thousand three hundred forty-three');\nINSERT INTO t3 VALUES(16873, 84019, 'eighty-four thousand nineteen');\nINSERT INTO t3 VALUES(16874, 5524, 'five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(16875, 92466, 'ninety-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(16876, 94043, 'ninety-four thousand forty-three');\nINSERT INTO t3 VALUES(16877, 41692, 'forty-one thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(16878, 60075, 'sixty thousand seventy-five');\nINSERT INTO t3 VALUES(16879, 57777, 'fifty-seven thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(16880, 63361, 'sixty-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(16881, 12691, 'twelve thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(16882, 35852, 'thirty-five thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(16883, 89924, 'eighty-nine thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(16884, 37922, 'thirty-seven thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(16885, 19978, 'nineteen thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(16886, 69874, 'sixty-nine thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(16887, 37673, 'thirty-seven thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(16888, 47718, 'forty-seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(16889, 81335, 'eighty-one thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(16890, 20094, 'twenty thousand ninety-four');\nINSERT INTO t3 VALUES(16891, 39051, 'thirty-nine thousand fifty-one');\nINSERT INTO t3 VALUES(16892, 87785, 'eighty-seven thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(16893, 3777, 'three thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(16894, 48554, 'forty-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(16895, 55848, 'fifty-five thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(16896, 65128, 'sixty-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(16897, 866, 'eight hundred sixty-six');\nINSERT INTO t3 VALUES(16898, 91552, 'ninety-one thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(16899, 42745, 'forty-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(16900, 44360, 'forty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(16901, 76329, 'seventy-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(16902, 39101, 'thirty-nine thousand one hundred one');\nINSERT INTO t3 VALUES(16903, 87458, 'eighty-seven thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(16904, 11345, 'eleven thousand three hundred forty-five');\nINSERT INTO t3 VALUES(16905, 60509, 'sixty thousand five hundred nine');\nINSERT INTO t3 VALUES(16906, 65765, 'sixty-five thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(16907, 1938, 'one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(16908, 51533, 'fifty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(16909, 51167, 'fifty-one thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(16910, 32618, 'thirty-two thousand six hundred eighteen');\nINSERT INTO t3 VALUES(16911, 2213, 'two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(16912, 90188, 'ninety thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(16913, 33544, 'thirty-three thousand five hundred forty-four');\nINSERT INTO t3 VALUES(16914, 36602, 'thirty-six thousand six hundred two');\nINSERT INTO t3 VALUES(16915, 59814, 'fifty-nine thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(16916, 58502, 'fifty-eight thousand five hundred two');\nINSERT INTO t3 VALUES(16917, 14464, 'fourteen thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(16918, 60101, 'sixty thousand one hundred one');\nINSERT INTO t3 VALUES(16919, 54040, 'fifty-four thousand forty');\nINSERT INTO t3 VALUES(16920, 90217, 'ninety thousand two hundred seventeen');\nINSERT INTO t3 VALUES(16921, 29392, 'twenty-nine thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(16922, 91626, 'ninety-one thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(16923, 75991, 'seventy-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(16924, 15585, 'fifteen thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(16925, 64082, 'sixty-four thousand eighty-two');\nINSERT INTO t3 VALUES(16926, 38232, 'thirty-eight thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(16927, 11196, 'eleven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(16928, 30689, 'thirty thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(16929, 28855, 'twenty-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16930, 32059, 'thirty-two thousand fifty-nine');\nINSERT INTO t3 VALUES(16931, 91177, 'ninety-one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(16932, 53387, 'fifty-three thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(16933, 42930, 'forty-two thousand nine hundred thirty');\nINSERT INTO t3 VALUES(16934, 27797, 'twenty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(16935, 41899, 'forty-one thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(16936, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(16937, 79068, 'seventy-nine thousand sixty-eight');\nINSERT INTO t3 VALUES(16938, 47908, 'forty-seven thousand nine hundred eight');\nINSERT INTO t3 VALUES(16939, 19993, 'nineteen thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(16940, 58154, 'fifty-eight thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(16941, 4725, 'four thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(16942, 36570, 'thirty-six thousand five hundred seventy');\nINSERT INTO t3 VALUES(16943, 6516, 'six thousand five hundred sixteen');\nINSERT INTO t3 VALUES(16944, 7855, 'seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(16945, 47358, 'forty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(16946, 99510, 'ninety-nine thousand five hundred ten');\nINSERT INTO t3 VALUES(16947, 81640, 'eighty-one thousand six hundred forty');\nINSERT INTO t3 VALUES(16948, 76124, 'seventy-six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(16949, 21127, 'twenty-one thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(16950, 23642, 'twenty-three thousand six hundred forty-two');\nINSERT INTO t3 VALUES(16951, 34613, 'thirty-four thousand six hundred thirteen');\nINSERT INTO t3 VALUES(16952, 12952, 'twelve thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(16953, 30383, 'thirty thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16954, 76084, 'seventy-six thousand eighty-four');\nINSERT INTO t3 VALUES(16955, 32886, 'thirty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(16956, 82780, 'eighty-two thousand seven hundred eighty');\nINSERT INTO t3 VALUES(16957, 23413, 'twenty-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(16958, 70806, 'seventy thousand eight hundred six');\nINSERT INTO t3 VALUES(16959, 10306, 'ten thousand three hundred six');\nINSERT INTO t3 VALUES(16960, 96443, 'ninety-six thousand four hundred forty-three');\nINSERT INTO t3 VALUES(16961, 26933, 'twenty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(16962, 34535, 'thirty-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(16963, 60531, 'sixty thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(16964, 67857, 'sixty-seven thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(16965, 25588, 'twenty-five thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(16966, 93291, 'ninety-three thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(16967, 75840, 'seventy-five thousand eight hundred forty');\nINSERT INTO t3 VALUES(16968, 54350, 'fifty-four thousand three hundred fifty');\nINSERT INTO t3 VALUES(16969, 9060, 'nine thousand sixty');\nINSERT INTO t3 VALUES(16970, 21383, 'twenty-one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(16971, 77407, 'seventy-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(16972, 70534, 'seventy thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(16973, 6166, 'six thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(16974, 27907, 'twenty-seven thousand nine hundred seven');\nINSERT INTO t3 VALUES(16975, 14888, 'fourteen thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(16976, 91496, 'ninety-one thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(16977, 74124, 'seventy-four thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(16978, 38036, 'thirty-eight thousand thirty-six');\nINSERT INTO t3 VALUES(16979, 31916, 'thirty-one thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(16980, 81656, 'eighty-one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(16981, 33247, 'thirty-three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(16982, 10253, 'ten thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(16983, 66230, 'sixty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(16984, 9165, 'nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(16985, 2763, 'two thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(16986, 63257, 'sixty-three thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(16987, 51111, 'fifty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(16988, 93673, 'ninety-three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(16989, 65158, 'sixty-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(16990, 25098, 'twenty-five thousand ninety-eight');\nINSERT INTO t3 VALUES(16991, 41649, 'forty-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(16992, 92139, 'ninety-two thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(16993, 68270, 'sixty-eight thousand two hundred seventy');\nINSERT INTO t3 VALUES(16994, 89759, 'eighty-nine thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(16995, 58740, 'fifty-eight thousand seven hundred forty');\nINSERT INTO t3 VALUES(16996, 28522, 'twenty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(16997, 65057, 'sixty-five thousand fifty-seven');\nINSERT INTO t3 VALUES(16998, 75102, 'seventy-five thousand one hundred two');\nINSERT INTO t3 VALUES(16999, 95953, 'ninety-five thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(17000, 2106, 'two thousand one hundred six');\nINSERT INTO t3 VALUES(17001, 63494, 'sixty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17002, 35242, 'thirty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(17003, 97552, 'ninety-seven thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(17004, 56337, 'fifty-six thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(17005, 82048, 'eighty-two thousand forty-eight');\nINSERT INTO t3 VALUES(17006, 62080, 'sixty-two thousand eighty');\nINSERT INTO t3 VALUES(17007, 60988, 'sixty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(17008, 97047, 'ninety-seven thousand forty-seven');\nINSERT INTO t3 VALUES(17009, 81550, 'eighty-one thousand five hundred fifty');\nINSERT INTO t3 VALUES(17010, 46611, 'forty-six thousand six hundred eleven');\nINSERT INTO t3 VALUES(17011, 53479, 'fifty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(17012, 60548, 'sixty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(17013, 92466, 'ninety-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(17014, 21052, 'twenty-one thousand fifty-two');\nINSERT INTO t3 VALUES(17015, 49849, 'forty-nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(17016, 34225, 'thirty-four thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(17017, 39376, 'thirty-nine thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(17018, 4686, 'four thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(17019, 81570, 'eighty-one thousand five hundred seventy');\nINSERT INTO t3 VALUES(17020, 46477, 'forty-six thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(17021, 77972, 'seventy-seven thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(17022, 39055, 'thirty-nine thousand fifty-five');\nINSERT INTO t3 VALUES(17023, 95375, 'ninety-five thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(17024, 91815, 'ninety-one thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(17025, 735, 'seven hundred thirty-five');\nINSERT INTO t3 VALUES(17026, 43397, 'forty-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(17027, 45161, 'forty-five thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17028, 39624, 'thirty-nine thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17029, 16783, 'sixteen thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(17030, 19972, 'nineteen thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(17031, 52155, 'fifty-two thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(17032, 4652, 'four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(17033, 39468, 'thirty-nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17034, 68683, 'sixty-eight thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(17035, 81991, 'eighty-one thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(17036, 15181, 'fifteen thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(17037, 27494, 'twenty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17038, 71154, 'seventy-one thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(17039, 11199, 'eleven thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(17040, 62844, 'sixty-two thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(17041, 15174, 'fifteen thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(17042, 32416, 'thirty-two thousand four hundred sixteen');\nINSERT INTO t3 VALUES(17043, 70650, 'seventy thousand six hundred fifty');\nINSERT INTO t3 VALUES(17044, 18574, 'eighteen thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(17045, 22158, 'twenty-two thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(17046, 49011, 'forty-nine thousand eleven');\nINSERT INTO t3 VALUES(17047, 30590, 'thirty thousand five hundred ninety');\nINSERT INTO t3 VALUES(17048, 24304, 'twenty-four thousand three hundred four');\nINSERT INTO t3 VALUES(17049, 81443, 'eighty-one thousand four hundred forty-three');\nINSERT INTO t3 VALUES(17050, 2895, 'two thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(17051, 85918, 'eighty-five thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17052, 38673, 'thirty-eight thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(17053, 19919, 'nineteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(17054, 31687, 'thirty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(17055, 78710, 'seventy-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(17056, 58359, 'fifty-eight thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(17057, 16313, 'sixteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(17058, 51524, 'fifty-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(17059, 94909, 'ninety-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(17060, 97295, 'ninety-seven thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(17061, 22096, 'twenty-two thousand ninety-six');\nINSERT INTO t3 VALUES(17062, 54751, 'fifty-four thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(17063, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t3 VALUES(17064, 91707, 'ninety-one thousand seven hundred seven');\nINSERT INTO t3 VALUES(17065, 28529, 'twenty-eight thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(17066, 98122, 'ninety-eight thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(17067, 29868, 'twenty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(17068, 35526, 'thirty-five thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(17069, 59778, 'fifty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(17070, 22656, 'twenty-two thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(17071, 93149, 'ninety-three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(17072, 63377, 'sixty-three thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(17073, 93865, 'ninety-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(17074, 14180, 'fourteen thousand one hundred eighty');\nINSERT INTO t3 VALUES(17075, 34188, 'thirty-four thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(17076, 89235, 'eighty-nine thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(17077, 93828, 'ninety-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(17078, 7899, 'seven thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(17079, 98138, 'ninety-eight thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(17080, 80323, 'eighty thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(17081, 53807, 'fifty-three thousand eight hundred seven');\nINSERT INTO t3 VALUES(17082, 20562, 'twenty thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(17083, 58572, 'fifty-eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(17084, 46951, 'forty-six thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(17085, 90458, 'ninety thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(17086, 59746, 'fifty-nine thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(17087, 98561, 'ninety-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(17088, 36478, 'thirty-six thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(17089, 45280, 'forty-five thousand two hundred eighty');\nINSERT INTO t3 VALUES(17090, 12372, 'twelve thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(17091, 60392, 'sixty thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(17092, 62, 'sixty-two');\nINSERT INTO t3 VALUES(17093, 99396, 'ninety-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(17094, 67809, 'sixty-seven thousand eight hundred nine');\nINSERT INTO t3 VALUES(17095, 48807, 'forty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(17096, 72405, 'seventy-two thousand four hundred five');\nINSERT INTO t3 VALUES(17097, 57368, 'fifty-seven thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(17098, 69057, 'sixty-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(17099, 15945, 'fifteen thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(17100, 43936, 'forty-three thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17101, 89880, 'eighty-nine thousand eight hundred eighty');\nINSERT INTO t3 VALUES(17102, 21105, 'twenty-one thousand one hundred five');\nINSERT INTO t3 VALUES(17103, 87808, 'eighty-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(17104, 55528, 'fifty-five thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(17105, 89706, 'eighty-nine thousand seven hundred six');\nINSERT INTO t3 VALUES(17106, 81463, 'eighty-one thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(17107, 78574, 'seventy-eight thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(17108, 52927, 'fifty-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(17109, 93016, 'ninety-three thousand sixteen');\nINSERT INTO t3 VALUES(17110, 3222, 'three thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(17111, 18419, 'eighteen thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17112, 95128, 'ninety-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(17113, 64838, 'sixty-four thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(17114, 69028, 'sixty-nine thousand twenty-eight');\nINSERT INTO t3 VALUES(17115, 78468, 'seventy-eight thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17116, 6485, 'six thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(17117, 55154, 'fifty-five thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(17118, 73539, 'seventy-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(17119, 33698, 'thirty-three thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(17120, 83939, 'eighty-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(17121, 14141, 'fourteen thousand one hundred forty-one');\nINSERT INTO t3 VALUES(17122, 86954, 'eighty-six thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(17123, 8303, 'eight thousand three hundred three');\nINSERT INTO t3 VALUES(17124, 55917, 'fifty-five thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(17125, 9175, 'nine thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(17126, 96897, 'ninety-six thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(17127, 68871, 'sixty-eight thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(17128, 10538, 'ten thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(17129, 73302, 'seventy-three thousand three hundred two');\nINSERT INTO t3 VALUES(17130, 34807, 'thirty-four thousand eight hundred seven');\nINSERT INTO t3 VALUES(17131, 17621, 'seventeen thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(17132, 4673, 'four thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(17133, 90590, 'ninety thousand five hundred ninety');\nINSERT INTO t3 VALUES(17134, 25996, 'twenty-five thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(17135, 33932, 'thirty-three thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(17136, 40592, 'forty thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(17137, 95991, 'ninety-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(17138, 91788, 'ninety-one thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(17139, 41981, 'forty-one thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(17140, 65715, 'sixty-five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(17141, 22104, 'twenty-two thousand one hundred four');\nINSERT INTO t3 VALUES(17142, 53630, 'fifty-three thousand six hundred thirty');\nINSERT INTO t3 VALUES(17143, 54650, 'fifty-four thousand six hundred fifty');\nINSERT INTO t3 VALUES(17144, 36936, 'thirty-six thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17145, 93432, 'ninety-three thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(17146, 24318, 'twenty-four thousand three hundred eighteen');\nINSERT INTO t3 VALUES(17147, 92624, 'ninety-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17148, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(17149, 79128, 'seventy-nine thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(17150, 59929, 'fifty-nine thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(17151, 9996, 'nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(17152, 50132, 'fifty thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(17153, 4093, 'four thousand ninety-three');\nINSERT INTO t3 VALUES(17154, 76092, 'seventy-six thousand ninety-two');\nINSERT INTO t3 VALUES(17155, 34664, 'thirty-four thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(17156, 21112, 'twenty-one thousand one hundred twelve');\nINSERT INTO t3 VALUES(17157, 55122, 'fifty-five thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(17158, 59103, 'fifty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(17159, 87026, 'eighty-seven thousand twenty-six');\nINSERT INTO t3 VALUES(17160, 65022, 'sixty-five thousand twenty-two');\nINSERT INTO t3 VALUES(17161, 27318, 'twenty-seven thousand three hundred eighteen');\nINSERT INTO t3 VALUES(17162, 17662, 'seventeen thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(17163, 46278, 'forty-six thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(17164, 77712, 'seventy-seven thousand seven hundred twelve');\nINSERT INTO t3 VALUES(17165, 53207, 'fifty-three thousand two hundred seven');\nINSERT INTO t3 VALUES(17166, 23658, 'twenty-three thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(17167, 26472, 'twenty-six thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(17168, 67377, 'sixty-seven thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(17169, 888, 'eight hundred eighty-eight');\nINSERT INTO t3 VALUES(17170, 8775, 'eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(17171, 58278, 'fifty-eight thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(17172, 48347, 'forty-eight thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(17173, 76870, 'seventy-six thousand eight hundred seventy');\nINSERT INTO t3 VALUES(17174, 65663, 'sixty-five thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17175, 90062, 'ninety thousand sixty-two');\nINSERT INTO t3 VALUES(17176, 8813, 'eight thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(17177, 37052, 'thirty-seven thousand fifty-two');\nINSERT INTO t3 VALUES(17178, 72063, 'seventy-two thousand sixty-three');\nINSERT INTO t3 VALUES(17179, 10988, 'ten thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(17180, 3149, 'three thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(17181, 33735, 'thirty-three thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(17182, 87434, 'eighty-seven thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(17183, 8757, 'eight thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(17184, 95461, 'ninety-five thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(17185, 56422, 'fifty-six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(17186, 91783, 'ninety-one thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(17187, 10699, 'ten thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(17188, 21675, 'twenty-one thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(17189, 53553, 'fifty-three thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(17190, 88533, 'eighty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(17191, 2480, 'two thousand four hundred eighty');\nINSERT INTO t3 VALUES(17192, 38926, 'thirty-eight thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(17193, 65269, 'sixty-five thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(17194, 26628, 'twenty-six thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(17195, 32774, 'thirty-two thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(17196, 46194, 'forty-six thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(17197, 96839, 'ninety-six thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(17198, 91090, 'ninety-one thousand ninety');\nINSERT INTO t3 VALUES(17199, 8269, 'eight thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(17200, 63390, 'sixty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(17201, 83483, 'eighty-three thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(17202, 47181, 'forty-seven thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(17203, 13357, 'thirteen thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(17204, 98189, 'ninety-eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(17205, 78812, 'seventy-eight thousand eight hundred twelve');\nINSERT INTO t3 VALUES(17206, 14344, 'fourteen thousand three hundred forty-four');\nINSERT INTO t3 VALUES(17207, 84390, 'eighty-four thousand three hundred ninety');\nINSERT INTO t3 VALUES(17208, 14158, 'fourteen thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(17209, 93841, 'ninety-three thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(17210, 21158, 'twenty-one thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(17211, 50851, 'fifty thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(17212, 70584, 'seventy thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17213, 85215, 'eighty-five thousand two hundred fifteen');\nINSERT INTO t3 VALUES(17214, 82167, 'eighty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(17215, 41063, 'forty-one thousand sixty-three');\nINSERT INTO t3 VALUES(17216, 93141, 'ninety-three thousand one hundred forty-one');\nINSERT INTO t3 VALUES(17217, 84600, 'eighty-four thousand six hundred');\nINSERT INTO t3 VALUES(17218, 49293, 'forty-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(17219, 33538, 'thirty-three thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(17220, 30856, 'thirty thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(17221, 48479, 'forty-eight thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(17222, 13694, 'thirteen thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(17223, 76600, 'seventy-six thousand six hundred');\nINSERT INTO t3 VALUES(17224, 59023, 'fifty-nine thousand twenty-three');\nINSERT INTO t3 VALUES(17225, 54963, 'fifty-four thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(17226, 39854, 'thirty-nine thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(17227, 40256, 'forty thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(17228, 28092, 'twenty-eight thousand ninety-two');\nINSERT INTO t3 VALUES(17229, 27349, 'twenty-seven thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(17230, 47690, 'forty-seven thousand six hundred ninety');\nINSERT INTO t3 VALUES(17231, 46433, 'forty-six thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(17232, 41026, 'forty-one thousand twenty-six');\nINSERT INTO t3 VALUES(17233, 53599, 'fifty-three thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(17234, 30550, 'thirty thousand five hundred fifty');\nINSERT INTO t3 VALUES(17235, 61934, 'sixty-one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(17236, 53803, 'fifty-three thousand eight hundred three');\nINSERT INTO t3 VALUES(17237, 91617, 'ninety-one thousand six hundred seventeen');\nINSERT INTO t3 VALUES(17238, 53567, 'fifty-three thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(17239, 64500, 'sixty-four thousand five hundred');\nINSERT INTO t3 VALUES(17240, 98670, 'ninety-eight thousand six hundred seventy');\nINSERT INTO t3 VALUES(17241, 17892, 'seventeen thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(17242, 27127, 'twenty-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(17243, 96444, 'ninety-six thousand four hundred forty-four');\nINSERT INTO t3 VALUES(17244, 60476, 'sixty thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(17245, 67161, 'sixty-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17246, 63900, 'sixty-three thousand nine hundred');\nINSERT INTO t3 VALUES(17247, 2094, 'two thousand ninety-four');\nINSERT INTO t3 VALUES(17248, 52811, 'fifty-two thousand eight hundred eleven');\nINSERT INTO t3 VALUES(17249, 74228, 'seventy-four thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(17250, 37440, 'thirty-seven thousand four hundred forty');\nINSERT INTO t3 VALUES(17251, 89085, 'eighty-nine thousand eighty-five');\nINSERT INTO t3 VALUES(17252, 59547, 'fifty-nine thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(17253, 60700, 'sixty thousand seven hundred');\nINSERT INTO t3 VALUES(17254, 53466, 'fifty-three thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(17255, 66011, 'sixty-six thousand eleven');\nINSERT INTO t3 VALUES(17256, 34632, 'thirty-four thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(17257, 41468, 'forty-one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17258, 94596, 'ninety-four thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(17259, 55601, 'fifty-five thousand six hundred one');\nINSERT INTO t3 VALUES(17260, 5446, 'five thousand four hundred forty-six');\nINSERT INTO t3 VALUES(17261, 88094, 'eighty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(17262, 72755, 'seventy-two thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(17263, 66707, 'sixty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(17264, 8056, 'eight thousand fifty-six');\nINSERT INTO t3 VALUES(17265, 30860, 'thirty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(17266, 19647, 'nineteen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17267, 77559, 'seventy-seven thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(17268, 35563, 'thirty-five thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(17269, 46642, 'forty-six thousand six hundred forty-two');\nINSERT INTO t3 VALUES(17270, 99099, 'ninety-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(17271, 9219, 'nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17272, 79523, 'seventy-nine thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17273, 91917, 'ninety-one thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(17274, 60014, 'sixty thousand fourteen');\nINSERT INTO t3 VALUES(17275, 71364, 'seventy-one thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(17276, 557, 'five hundred fifty-seven');\nINSERT INTO t3 VALUES(17277, 28117, 'twenty-eight thousand one hundred seventeen');\nINSERT INTO t3 VALUES(17278, 87812, 'eighty-seven thousand eight hundred twelve');\nINSERT INTO t3 VALUES(17279, 93135, 'ninety-three thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(17280, 18468, 'eighteen thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17281, 56091, 'fifty-six thousand ninety-one');\nINSERT INTO t3 VALUES(17282, 72680, 'seventy-two thousand six hundred eighty');\nINSERT INTO t3 VALUES(17283, 75736, 'seventy-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(17284, 83168, 'eighty-three thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(17285, 86728, 'eighty-six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(17286, 97068, 'ninety-seven thousand sixty-eight');\nINSERT INTO t3 VALUES(17287, 32244, 'thirty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(17288, 81858, 'eighty-one thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(17289, 23694, 'twenty-three thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(17290, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(17291, 20224, 'twenty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(17292, 1067, 'one thousand sixty-seven');\nINSERT INTO t3 VALUES(17293, 46648, 'forty-six thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(17294, 56363, 'fifty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(17295, 88953, 'eighty-eight thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(17296, 43058, 'forty-three thousand fifty-eight');\nINSERT INTO t3 VALUES(17297, 83410, 'eighty-three thousand four hundred ten');\nINSERT INTO t3 VALUES(17298, 97488, 'ninety-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(17299, 39155, 'thirty-nine thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(17300, 42067, 'forty-two thousand sixty-seven');\nINSERT INTO t3 VALUES(17301, 99319, 'ninety-nine thousand three hundred nineteen');\nINSERT INTO t3 VALUES(17302, 13988, 'thirteen thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(17303, 76283, 'seventy-six thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17304, 19680, 'nineteen thousand six hundred eighty');\nINSERT INTO t3 VALUES(17305, 25786, 'twenty-five thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(17306, 88533, 'eighty-eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(17307, 93832, 'ninety-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(17308, 84794, 'eighty-four thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(17309, 71713, 'seventy-one thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(17310, 76074, 'seventy-six thousand seventy-four');\nINSERT INTO t3 VALUES(17311, 17658, 'seventeen thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(17312, 67593, 'sixty-seven thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(17313, 13007, 'thirteen thousand seven');\nINSERT INTO t3 VALUES(17314, 63949, 'sixty-three thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17315, 82744, 'eighty-two thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(17316, 65270, 'sixty-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(17317, 43890, 'forty-three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(17318, 49784, 'forty-nine thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(17319, 18125, 'eighteen thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(17320, 75522, 'seventy-five thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(17321, 18754, 'eighteen thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(17322, 88535, 'eighty-eight thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(17323, 12107, 'twelve thousand one hundred seven');\nINSERT INTO t3 VALUES(17324, 75921, 'seventy-five thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(17325, 24134, 'twenty-four thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(17326, 95164, 'ninety-five thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(17327, 61678, 'sixty-one thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(17328, 66420, 'sixty-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(17329, 33320, 'thirty-three thousand three hundred twenty');\nINSERT INTO t3 VALUES(17330, 76596, 'seventy-six thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(17331, 99900, 'ninety-nine thousand nine hundred');\nINSERT INTO t3 VALUES(17332, 31240, 'thirty-one thousand two hundred forty');\nINSERT INTO t3 VALUES(17333, 22729, 'twenty-two thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(17334, 1535, 'one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(17335, 77161, 'seventy-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17336, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17337, 18582, 'eighteen thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(17338, 60282, 'sixty thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(17339, 87311, 'eighty-seven thousand three hundred eleven');\nINSERT INTO t3 VALUES(17340, 67938, 'sixty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(17341, 57163, 'fifty-seven thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(17342, 22950, 'twenty-two thousand nine hundred fifty');\nINSERT INTO t3 VALUES(17343, 15736, 'fifteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(17344, 24865, 'twenty-four thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(17345, 27625, 'twenty-seven thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(17346, 70419, 'seventy thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17347, 33160, 'thirty-three thousand one hundred sixty');\nINSERT INTO t3 VALUES(17348, 37, 'thirty-seven');\nINSERT INTO t3 VALUES(17349, 59209, 'fifty-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(17350, 82707, 'eighty-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(17351, 41629, 'forty-one thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(17352, 14169, 'fourteen thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(17353, 88522, 'eighty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(17354, 34182, 'thirty-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(17355, 78215, 'seventy-eight thousand two hundred fifteen');\nINSERT INTO t3 VALUES(17356, 46537, 'forty-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(17357, 9696, 'nine thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(17358, 42283, 'forty-two thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17359, 80535, 'eighty thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(17360, 78685, 'seventy-eight thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17361, 37087, 'thirty-seven thousand eighty-seven');\nINSERT INTO t3 VALUES(17362, 37816, 'thirty-seven thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(17363, 60918, 'sixty thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17364, 18999, 'eighteen thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(17365, 33862, 'thirty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(17366, 24617, 'twenty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(17367, 10363, 'ten thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(17368, 42079, 'forty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(17369, 67730, 'sixty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(17370, 80735, 'eighty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(17371, 32515, 'thirty-two thousand five hundred fifteen');\nINSERT INTO t3 VALUES(17372, 74332, 'seventy-four thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(17373, 30849, 'thirty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(17374, 96863, 'ninety-six thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(17375, 93536, 'ninety-three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(17376, 91972, 'ninety-one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(17377, 13228, 'thirteen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(17378, 91561, 'ninety-one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(17379, 76561, 'seventy-six thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(17380, 4676, 'four thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(17381, 195, 'one hundred ninety-five');\nINSERT INTO t3 VALUES(17382, 1109, 'one thousand one hundred nine');\nINSERT INTO t3 VALUES(17383, 14509, 'fourteen thousand five hundred nine');\nINSERT INTO t3 VALUES(17384, 26918, 'twenty-six thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17385, 79922, 'seventy-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(17386, 41019, 'forty-one thousand nineteen');\nINSERT INTO t3 VALUES(17387, 35935, 'thirty-five thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(17388, 89528, 'eighty-nine thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(17389, 47490, 'forty-seven thousand four hundred ninety');\nINSERT INTO t3 VALUES(17390, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17391, 31467, 'thirty-one thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(17392, 58023, 'fifty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(17393, 4147, 'four thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(17394, 30051, 'thirty thousand fifty-one');\nINSERT INTO t3 VALUES(17395, 90608, 'ninety thousand six hundred eight');\nINSERT INTO t3 VALUES(17396, 25770, 'twenty-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(17397, 85241, 'eighty-five thousand two hundred forty-one');\nINSERT INTO t3 VALUES(17398, 29384, 'twenty-nine thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(17399, 25326, 'twenty-five thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(17400, 35119, 'thirty-five thousand one hundred nineteen');\nINSERT INTO t3 VALUES(17401, 60678, 'sixty thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(17402, 77889, 'seventy-seven thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(17403, 67076, 'sixty-seven thousand seventy-six');\nINSERT INTO t3 VALUES(17404, 43069, 'forty-three thousand sixty-nine');\nINSERT INTO t3 VALUES(17405, 95869, 'ninety-five thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(17406, 2903, 'two thousand nine hundred three');\nINSERT INTO t3 VALUES(17407, 96462, 'ninety-six thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(17408, 53568, 'fifty-three thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(17409, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(17410, 54962, 'fifty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(17411, 98593, 'ninety-eight thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(17412, 57265, 'fifty-seven thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(17413, 3813, 'three thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(17414, 1201, 'one thousand two hundred one');\nINSERT INTO t3 VALUES(17415, 87004, 'eighty-seven thousand four');\nINSERT INTO t3 VALUES(17416, 44213, 'forty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(17417, 23674, 'twenty-three thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(17418, 57964, 'fifty-seven thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(17419, 89736, 'eighty-nine thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(17420, 4479, 'four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(17421, 16580, 'sixteen thousand five hundred eighty');\nINSERT INTO t3 VALUES(17422, 16003, 'sixteen thousand three');\nINSERT INTO t3 VALUES(17423, 83659, 'eighty-three thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(17424, 33902, 'thirty-three thousand nine hundred two');\nINSERT INTO t3 VALUES(17425, 73288, 'seventy-three thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17426, 48838, 'forty-eight thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(17427, 91513, 'ninety-one thousand five hundred thirteen');\nINSERT INTO t3 VALUES(17428, 45571, 'forty-five thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(17429, 94675, 'ninety-four thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(17430, 68769, 'sixty-eight thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(17431, 42647, 'forty-two thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17432, 72533, 'seventy-two thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(17433, 57278, 'fifty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(17434, 12087, 'twelve thousand eighty-seven');\nINSERT INTO t3 VALUES(17435, 5075, 'five thousand seventy-five');\nINSERT INTO t3 VALUES(17436, 36197, 'thirty-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(17437, 19769, 'nineteen thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(17438, 47337, 'forty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(17439, 56534, 'fifty-six thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(17440, 58181, 'fifty-eight thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(17441, 92020, 'ninety-two thousand twenty');\nINSERT INTO t3 VALUES(17442, 10268, 'ten thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(17443, 5868, 'five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(17444, 13103, 'thirteen thousand one hundred three');\nINSERT INTO t3 VALUES(17445, 52922, 'fifty-two thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(17446, 51880, 'fifty-one thousand eight hundred eighty');\nINSERT INTO t3 VALUES(17447, 41381, 'forty-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(17448, 2827, 'two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(17449, 55685, 'fifty-five thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17450, 25345, 'twenty-five thousand three hundred forty-five');\nINSERT INTO t3 VALUES(17451, 24964, 'twenty-four thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(17452, 8355, 'eight thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(17453, 74437, 'seventy-four thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(17454, 74994, 'seventy-four thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(17455, 89371, 'eighty-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(17456, 39282, 'thirty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(17457, 46014, 'forty-six thousand fourteen');\nINSERT INTO t3 VALUES(17458, 51057, 'fifty-one thousand fifty-seven');\nINSERT INTO t3 VALUES(17459, 91001, 'ninety-one thousand one');\nINSERT INTO t3 VALUES(17460, 33003, 'thirty-three thousand three');\nINSERT INTO t3 VALUES(17461, 56644, 'fifty-six thousand six hundred forty-four');\nINSERT INTO t3 VALUES(17462, 6452, 'six thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(17463, 74031, 'seventy-four thousand thirty-one');\nINSERT INTO t3 VALUES(17464, 56371, 'fifty-six thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(17465, 33284, 'thirty-three thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(17466, 79683, 'seventy-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(17467, 13263, 'thirteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(17468, 90917, 'ninety thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(17469, 72584, 'seventy-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17470, 86612, 'eighty-six thousand six hundred twelve');\nINSERT INTO t3 VALUES(17471, 98649, 'ninety-eight thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(17472, 43030, 'forty-three thousand thirty');\nINSERT INTO t3 VALUES(17473, 26670, 'twenty-six thousand six hundred seventy');\nINSERT INTO t3 VALUES(17474, 26883, 'twenty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(17475, 79136, 'seventy-nine thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(17476, 84623, 'eighty-four thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(17477, 93465, 'ninety-three thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(17478, 53845, 'fifty-three thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(17479, 93261, 'ninety-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(17480, 3051, 'three thousand fifty-one');\nINSERT INTO t3 VALUES(17481, 24643, 'twenty-four thousand six hundred forty-three');\nINSERT INTO t3 VALUES(17482, 99914, 'ninety-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(17483, 14836, 'fourteen thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(17484, 10282, 'ten thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(17485, 24457, 'twenty-four thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(17486, 35734, 'thirty-five thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(17487, 15776, 'fifteen thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(17488, 77932, 'seventy-seven thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(17489, 97120, 'ninety-seven thousand one hundred twenty');\nINSERT INTO t3 VALUES(17490, 63723, 'sixty-three thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(17491, 67452, 'sixty-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(17492, 88195, 'eighty-eight thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(17493, 37465, 'thirty-seven thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(17494, 75229, 'seventy-five thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(17495, 43176, 'forty-three thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(17496, 41789, 'forty-one thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(17497, 26937, 'twenty-six thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(17498, 74888, 'seventy-four thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(17499, 11412, 'eleven thousand four hundred twelve');\nINSERT INTO t3 VALUES(17500, 31516, 'thirty-one thousand five hundred sixteen');\nINSERT INTO t3 VALUES(17501, 57568, 'fifty-seven thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(17502, 15612, 'fifteen thousand six hundred twelve');\nINSERT INTO t3 VALUES(17503, 91895, 'ninety-one thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(17504, 17165, 'seventeen thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(17505, 41926, 'forty-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(17506, 96692, 'ninety-six thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(17507, 14031, 'fourteen thousand thirty-one');\nINSERT INTO t3 VALUES(17508, 25832, 'twenty-five thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(17509, 67804, 'sixty-seven thousand eight hundred four');\nINSERT INTO t3 VALUES(17510, 93924, 'ninety-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(17511, 42288, 'forty-two thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17512, 95876, 'ninety-five thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(17513, 69269, 'sixty-nine thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(17514, 12747, 'twelve thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(17515, 41387, 'forty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(17516, 10493, 'ten thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(17517, 45226, 'forty-five thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(17518, 66508, 'sixty-six thousand five hundred eight');\nINSERT INTO t3 VALUES(17519, 37969, 'thirty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(17520, 75665, 'seventy-five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(17521, 78876, 'seventy-eight thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(17522, 88242, 'eighty-eight thousand two hundred forty-two');\nINSERT INTO t3 VALUES(17523, 73739, 'seventy-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(17524, 22731, 'twenty-two thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(17525, 37589, 'thirty-seven thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(17526, 51762, 'fifty-one thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(17527, 61697, 'sixty-one thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(17528, 89318, 'eighty-nine thousand three hundred eighteen');\nINSERT INTO t3 VALUES(17529, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(17530, 87247, 'eighty-seven thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(17531, 22926, 'twenty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(17532, 94472, 'ninety-four thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(17533, 99708, 'ninety-nine thousand seven hundred eight');\nINSERT INTO t3 VALUES(17534, 12875, 'twelve thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(17535, 88, 'eighty-eight');\nINSERT INTO t3 VALUES(17536, 10150, 'ten thousand one hundred fifty');\nINSERT INTO t3 VALUES(17537, 24199, 'twenty-four thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(17538, 18188, 'eighteen thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(17539, 20030, 'twenty thousand thirty');\nINSERT INTO t3 VALUES(17540, 52891, 'fifty-two thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(17541, 93155, 'ninety-three thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(17542, 93154, 'ninety-three thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(17543, 86312, 'eighty-six thousand three hundred twelve');\nINSERT INTO t3 VALUES(17544, 41385, 'forty-one thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(17545, 75473, 'seventy-five thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(17546, 12444, 'twelve thousand four hundred forty-four');\nINSERT INTO t3 VALUES(17547, 32865, 'thirty-two thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(17548, 20502, 'twenty thousand five hundred two');\nINSERT INTO t3 VALUES(17549, 56523, 'fifty-six thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17550, 98949, 'ninety-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17551, 69419, 'sixty-nine thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17552, 10870, 'ten thousand eight hundred seventy');\nINSERT INTO t3 VALUES(17553, 39468, 'thirty-nine thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(17554, 39858, 'thirty-nine thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(17555, 49087, 'forty-nine thousand eighty-seven');\nINSERT INTO t3 VALUES(17556, 77726, 'seventy-seven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(17557, 7803, 'seven thousand eight hundred three');\nINSERT INTO t3 VALUES(17558, 37196, 'thirty-seven thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(17559, 56807, 'fifty-six thousand eight hundred seven');\nINSERT INTO t3 VALUES(17560, 50037, 'fifty thousand thirty-seven');\nINSERT INTO t3 VALUES(17561, 95382, 'ninety-five thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(17562, 12584, 'twelve thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17563, 52870, 'fifty-two thousand eight hundred seventy');\nINSERT INTO t3 VALUES(17564, 17676, 'seventeen thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(17565, 65768, 'sixty-five thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(17566, 50764, 'fifty thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(17567, 9737, 'nine thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(17568, 74778, 'seventy-four thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(17569, 60936, 'sixty thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17570, 62682, 'sixty-two thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(17571, 35256, 'thirty-five thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(17572, 41055, 'forty-one thousand fifty-five');\nINSERT INTO t3 VALUES(17573, 51172, 'fifty-one thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(17574, 95407, 'ninety-five thousand four hundred seven');\nINSERT INTO t3 VALUES(17575, 90030, 'ninety thousand thirty');\nINSERT INTO t3 VALUES(17576, 26852, 'twenty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(17577, 51152, 'fifty-one thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(17578, 67455, 'sixty-seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(17579, 21796, 'twenty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(17580, 56047, 'fifty-six thousand forty-seven');\nINSERT INTO t3 VALUES(17581, 65081, 'sixty-five thousand eighty-one');\nINSERT INTO t3 VALUES(17582, 31077, 'thirty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(17583, 74918, 'seventy-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17584, 62546, 'sixty-two thousand five hundred forty-six');\nINSERT INTO t3 VALUES(17585, 90853, 'ninety thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(17586, 55438, 'fifty-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(17587, 90330, 'ninety thousand three hundred thirty');\nINSERT INTO t3 VALUES(17588, 77923, 'seventy-seven thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(17589, 80184, 'eighty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(17590, 35732, 'thirty-five thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17591, 39709, 'thirty-nine thousand seven hundred nine');\nINSERT INTO t3 VALUES(17592, 17693, 'seventeen thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(17593, 85741, 'eighty-five thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(17594, 51620, 'fifty-one thousand six hundred twenty');\nINSERT INTO t3 VALUES(17595, 30830, 'thirty thousand eight hundred thirty');\nINSERT INTO t3 VALUES(17596, 31848, 'thirty-one thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(17597, 59390, 'fifty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(17598, 24918, 'twenty-four thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17599, 62418, 'sixty-two thousand four hundred eighteen');\nINSERT INTO t3 VALUES(17600, 21171, 'twenty-one thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(17601, 34830, 'thirty-four thousand eight hundred thirty');\nINSERT INTO t3 VALUES(17602, 43768, 'forty-three thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(17603, 59847, 'fifty-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(17604, 89342, 'eighty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(17605, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(17606, 11726, 'eleven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(17607, 56860, 'fifty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(17608, 41407, 'forty-one thousand four hundred seven');\nINSERT INTO t3 VALUES(17609, 43786, 'forty-three thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(17610, 86377, 'eighty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(17611, 55855, 'fifty-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(17612, 7715, 'seven thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(17613, 11419, 'eleven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(17614, 23784, 'twenty-three thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(17615, 17653, 'seventeen thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(17616, 91732, 'ninety-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17617, 7860, 'seven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(17618, 72271, 'seventy-two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(17619, 83737, 'eighty-three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(17620, 75751, 'seventy-five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(17621, 77700, 'seventy-seven thousand seven hundred');\nINSERT INTO t3 VALUES(17622, 79743, 'seventy-nine thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(17623, 56795, 'fifty-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(17624, 39975, 'thirty-nine thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(17625, 21684, 'twenty-one thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(17626, 29248, 'twenty-nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(17627, 89903, 'eighty-nine thousand nine hundred three');\nINSERT INTO t3 VALUES(17628, 16404, 'sixteen thousand four hundred four');\nINSERT INTO t3 VALUES(17629, 60768, 'sixty thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(17630, 24833, 'twenty-four thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(17631, 52624, 'fifty-two thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17632, 69077, 'sixty-nine thousand seventy-seven');\nINSERT INTO t3 VALUES(17633, 36519, 'thirty-six thousand five hundred nineteen');\nINSERT INTO t3 VALUES(17634, 96660, 'ninety-six thousand six hundred sixty');\nINSERT INTO t3 VALUES(17635, 74495, 'seventy-four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(17636, 25592, 'twenty-five thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(17637, 46957, 'forty-six thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(17638, 52685, 'fifty-two thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17639, 35020, 'thirty-five thousand twenty');\nINSERT INTO t3 VALUES(17640, 15625, 'fifteen thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(17641, 35781, 'thirty-five thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(17642, 99379, 'ninety-nine thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(17643, 98631, 'ninety-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(17644, 80614, 'eighty thousand six hundred fourteen');\nINSERT INTO t3 VALUES(17645, 1920, 'one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(17646, 98111, 'ninety-eight thousand one hundred eleven');\nINSERT INTO t3 VALUES(17647, 14585, 'fourteen thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(17648, 87757, 'eighty-seven thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(17649, 57772, 'fifty-seven thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(17650, 47167, 'forty-seven thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(17651, 17867, 'seventeen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(17652, 6589, 'six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(17653, 51462, 'fifty-one thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(17654, 98288, 'ninety-eight thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17655, 7811, 'seven thousand eight hundred eleven');\nINSERT INTO t3 VALUES(17656, 78378, 'seventy-eight thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(17657, 26411, 'twenty-six thousand four hundred eleven');\nINSERT INTO t3 VALUES(17658, 28167, 'twenty-eight thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(17659, 3454, 'three thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(17660, 39847, 'thirty-nine thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(17661, 82093, 'eighty-two thousand ninety-three');\nINSERT INTO t3 VALUES(17662, 86634, 'eighty-six thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(17663, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(17664, 63171, 'sixty-three thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(17665, 76944, 'seventy-six thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(17666, 82239, 'eighty-two thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(17667, 54575, 'fifty-four thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(17668, 37685, 'thirty-seven thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17669, 77488, 'seventy-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(17670, 21665, 'twenty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(17671, 63199, 'sixty-three thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(17672, 21983, 'twenty-one thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(17673, 94443, 'ninety-four thousand four hundred forty-three');\nINSERT INTO t3 VALUES(17674, 91733, 'ninety-one thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(17675, 95647, 'ninety-five thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17676, 92221, 'ninety-two thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(17677, 87880, 'eighty-seven thousand eight hundred eighty');\nINSERT INTO t3 VALUES(17678, 53685, 'fifty-three thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17679, 8883, 'eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(17680, 31725, 'thirty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(17681, 91081, 'ninety-one thousand eighty-one');\nINSERT INTO t3 VALUES(17682, 82949, 'eighty-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17683, 90581, 'ninety thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(17684, 63938, 'sixty-three thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(17685, 48851, 'forty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(17686, 19564, 'nineteen thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(17687, 52663, 'fifty-two thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17688, 75487, 'seventy-five thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(17689, 72695, 'seventy-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(17690, 46730, 'forty-six thousand seven hundred thirty');\nINSERT INTO t3 VALUES(17691, 67831, 'sixty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(17692, 46946, 'forty-six thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(17693, 53113, 'fifty-three thousand one hundred thirteen');\nINSERT INTO t3 VALUES(17694, 13244, 'thirteen thousand two hundred forty-four');\nINSERT INTO t3 VALUES(17695, 87, 'eighty-seven');\nINSERT INTO t3 VALUES(17696, 19494, 'nineteen thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17697, 99792, 'ninety-nine thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(17698, 73340, 'seventy-three thousand three hundred forty');\nINSERT INTO t3 VALUES(17699, 81613, 'eighty-one thousand six hundred thirteen');\nINSERT INTO t3 VALUES(17700, 93920, 'ninety-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(17701, 73732, 'seventy-three thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17702, 80410, 'eighty thousand four hundred ten');\nINSERT INTO t3 VALUES(17703, 51994, 'fifty-one thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(17704, 42307, 'forty-two thousand three hundred seven');\nINSERT INTO t3 VALUES(17705, 36248, 'thirty-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(17706, 36489, 'thirty-six thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(17707, 19005, 'nineteen thousand five');\nINSERT INTO t3 VALUES(17708, 37548, 'thirty-seven thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(17709, 69366, 'sixty-nine thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(17710, 14395, 'fourteen thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(17711, 35288, 'thirty-five thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17712, 29790, 'twenty-nine thousand seven hundred ninety');\nINSERT INTO t3 VALUES(17713, 13633, 'thirteen thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(17714, 83464, 'eighty-three thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(17715, 22097, 'twenty-two thousand ninety-seven');\nINSERT INTO t3 VALUES(17716, 5682, 'five thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(17717, 73064, 'seventy-three thousand sixty-four');\nINSERT INTO t3 VALUES(17718, 7691, 'seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(17719, 13390, 'thirteen thousand three hundred ninety');\nINSERT INTO t3 VALUES(17720, 6306, 'six thousand three hundred six');\nINSERT INTO t3 VALUES(17721, 99715, 'ninety-nine thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(17722, 84750, 'eighty-four thousand seven hundred fifty');\nINSERT INTO t3 VALUES(17723, 12202, 'twelve thousand two hundred two');\nINSERT INTO t3 VALUES(17724, 49268, 'forty-nine thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(17725, 87166, 'eighty-seven thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(17726, 25358, 'twenty-five thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(17727, 54847, 'fifty-four thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(17728, 69387, 'sixty-nine thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(17729, 55417, 'fifty-five thousand four hundred seventeen');\nINSERT INTO t3 VALUES(17730, 9609, 'nine thousand six hundred nine');\nINSERT INTO t3 VALUES(17731, 76930, 'seventy-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(17732, 91924, 'ninety-one thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(17733, 8422, 'eight thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(17734, 17809, 'seventeen thousand eight hundred nine');\nINSERT INTO t3 VALUES(17735, 46685, 'forty-six thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(17736, 53399, 'fifty-three thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(17737, 29952, 'twenty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(17738, 90447, 'ninety thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(17739, 16263, 'sixteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(17740, 76348, 'seventy-six thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(17741, 8173, 'eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(17742, 16328, 'sixteen thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(17743, 58642, 'fifty-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(17744, 31944, 'thirty-one thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(17745, 67730, 'sixty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(17746, 59165, 'fifty-nine thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(17747, 8866, 'eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(17748, 20806, 'twenty thousand eight hundred six');\nINSERT INTO t3 VALUES(17749, 86418, 'eighty-six thousand four hundred eighteen');\nINSERT INTO t3 VALUES(17750, 82864, 'eighty-two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(17751, 58171, 'fifty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(17752, 76204, 'seventy-six thousand two hundred four');\nINSERT INTO t3 VALUES(17753, 89838, 'eighty-nine thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(17754, 52827, 'fifty-two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(17755, 16458, 'sixteen thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(17756, 14893, 'fourteen thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(17757, 53896, 'fifty-three thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(17758, 8478, 'eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(17759, 68662, 'sixty-eight thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(17760, 46437, 'forty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(17761, 63750, 'sixty-three thousand seven hundred fifty');\nINSERT INTO t3 VALUES(17762, 35093, 'thirty-five thousand ninety-three');\nINSERT INTO t3 VALUES(17763, 772, 'seven hundred seventy-two');\nINSERT INTO t3 VALUES(17764, 98314, 'ninety-eight thousand three hundred fourteen');\nINSERT INTO t3 VALUES(17765, 60801, 'sixty thousand eight hundred one');\nINSERT INTO t3 VALUES(17766, 89526, 'eighty-nine thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(17767, 36376, 'thirty-six thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(17768, 94593, 'ninety-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(17769, 78598, 'seventy-eight thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(17770, 21062, 'twenty-one thousand sixty-two');\nINSERT INTO t3 VALUES(17771, 27746, 'twenty-seven thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(17772, 76638, 'seventy-six thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(17773, 62875, 'sixty-two thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(17774, 26599, 'twenty-six thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(17775, 5629, 'five thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(17776, 82263, 'eighty-two thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(17777, 61294, 'sixty-one thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(17778, 33953, 'thirty-three thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(17779, 53874, 'fifty-three thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(17780, 14011, 'fourteen thousand eleven');\nINSERT INTO t3 VALUES(17781, 50811, 'fifty thousand eight hundred eleven');\nINSERT INTO t3 VALUES(17782, 53219, 'fifty-three thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17783, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(17784, 1809, 'one thousand eight hundred nine');\nINSERT INTO t3 VALUES(17785, 82258, 'eighty-two thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(17786, 94045, 'ninety-four thousand forty-five');\nINSERT INTO t3 VALUES(17787, 29348, 'twenty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(17788, 30412, 'thirty thousand four hundred twelve');\nINSERT INTO t3 VALUES(17789, 87681, 'eighty-seven thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(17790, 60273, 'sixty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(17791, 40092, 'forty thousand ninety-two');\nINSERT INTO t3 VALUES(17792, 81275, 'eighty-one thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(17793, 20076, 'twenty thousand seventy-six');\nINSERT INTO t3 VALUES(17794, 61402, 'sixty-one thousand four hundred two');\nINSERT INTO t3 VALUES(17795, 26374, 'twenty-six thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(17796, 33432, 'thirty-three thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(17797, 61706, 'sixty-one thousand seven hundred six');\nINSERT INTO t3 VALUES(17798, 82056, 'eighty-two thousand fifty-six');\nINSERT INTO t3 VALUES(17799, 68873, 'sixty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(17800, 6825, 'six thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(17801, 37695, 'thirty-seven thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(17802, 70432, 'seventy thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(17803, 62135, 'sixty-two thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(17804, 28082, 'twenty-eight thousand eighty-two');\nINSERT INTO t3 VALUES(17805, 63759, 'sixty-three thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(17806, 88376, 'eighty-eight thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(17807, 74151, 'seventy-four thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(17808, 29346, 'twenty-nine thousand three hundred forty-six');\nINSERT INTO t3 VALUES(17809, 12150, 'twelve thousand one hundred fifty');\nINSERT INTO t3 VALUES(17810, 85825, 'eighty-five thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(17811, 62769, 'sixty-two thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(17812, 43568, 'forty-three thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(17813, 71883, 'seventy-one thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(17814, 69112, 'sixty-nine thousand one hundred twelve');\nINSERT INTO t3 VALUES(17815, 32911, 'thirty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(17816, 12044, 'twelve thousand forty-four');\nINSERT INTO t3 VALUES(17817, 56352, 'fifty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(17818, 45003, 'forty-five thousand three');\nINSERT INTO t3 VALUES(17819, 35502, 'thirty-five thousand five hundred two');\nINSERT INTO t3 VALUES(17820, 22350, 'twenty-two thousand three hundred fifty');\nINSERT INTO t3 VALUES(17821, 56070, 'fifty-six thousand seventy');\nINSERT INTO t3 VALUES(17822, 56816, 'fifty-six thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(17823, 83065, 'eighty-three thousand sixty-five');\nINSERT INTO t3 VALUES(17824, 22631, 'twenty-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(17825, 88120, 'eighty-eight thousand one hundred twenty');\nINSERT INTO t3 VALUES(17826, 74633, 'seventy-four thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(17827, 8139, 'eight thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(17828, 79216, 'seventy-nine thousand two hundred sixteen');\nINSERT INTO t3 VALUES(17829, 85046, 'eighty-five thousand forty-six');\nINSERT INTO t3 VALUES(17830, 5617, 'five thousand six hundred seventeen');\nINSERT INTO t3 VALUES(17831, 32949, 'thirty-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(17832, 26317, 'twenty-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(17833, 79722, 'seventy-nine thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(17834, 86904, 'eighty-six thousand nine hundred four');\nINSERT INTO t3 VALUES(17835, 39538, 'thirty-nine thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(17836, 19647, 'nineteen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(17837, 44283, 'forty-four thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17838, 39081, 'thirty-nine thousand eighty-one');\nINSERT INTO t3 VALUES(17839, 34624, 'thirty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(17840, 42048, 'forty-two thousand forty-eight');\nINSERT INTO t3 VALUES(17841, 74551, 'seventy-four thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(17842, 59597, 'fifty-nine thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(17843, 8040, 'eight thousand forty');\nINSERT INTO t3 VALUES(17844, 19093, 'nineteen thousand ninety-three');\nINSERT INTO t3 VALUES(17845, 19410, 'nineteen thousand four hundred ten');\nINSERT INTO t3 VALUES(17846, 31251, 'thirty-one thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(17847, 14022, 'fourteen thousand twenty-two');\nINSERT INTO t3 VALUES(17848, 29958, 'twenty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(17849, 79087, 'seventy-nine thousand eighty-seven');\nINSERT INTO t3 VALUES(17850, 52688, 'fifty-two thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(17851, 15659, 'fifteen thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(17852, 66253, 'sixty-six thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(17853, 83549, 'eighty-three thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(17854, 89996, 'eighty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(17855, 65554, 'sixty-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(17856, 14523, 'fourteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(17857, 82825, 'eighty-two thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(17858, 13218, 'thirteen thousand two hundred eighteen');\nINSERT INTO t3 VALUES(17859, 77149, 'seventy-seven thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(17860, 64741, 'sixty-four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(17861, 15653, 'fifteen thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(17862, 85936, 'eighty-five thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(17863, 65480, 'sixty-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(17864, 47998, 'forty-seven thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(17865, 2382, 'two thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(17866, 93477, 'ninety-three thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(17867, 73813, 'seventy-three thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(17868, 71602, 'seventy-one thousand six hundred two');\nINSERT INTO t3 VALUES(17869, 91069, 'ninety-one thousand sixty-nine');\nINSERT INTO t3 VALUES(17870, 51829, 'fifty-one thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(17871, 75886, 'seventy-five thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(17872, 96103, 'ninety-six thousand one hundred three');\nINSERT INTO t3 VALUES(17873, 23981, 'twenty-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(17874, 76315, 'seventy-six thousand three hundred fifteen');\nINSERT INTO t3 VALUES(17875, 16276, 'sixteen thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(17876, 94634, 'ninety-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(17877, 3216, 'three thousand two hundred sixteen');\nINSERT INTO t3 VALUES(17878, 89150, 'eighty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(17879, 16375, 'sixteen thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(17880, 12629, 'twelve thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(17881, 95663, 'ninety-five thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17882, 91220, 'ninety-one thousand two hundred twenty');\nINSERT INTO t3 VALUES(17883, 56519, 'fifty-six thousand five hundred nineteen');\nINSERT INTO t3 VALUES(17884, 13454, 'thirteen thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(17885, 89501, 'eighty-nine thousand five hundred one');\nINSERT INTO t3 VALUES(17886, 92338, 'ninety-two thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(17887, 98119, 'ninety-eight thousand one hundred nineteen');\nINSERT INTO t3 VALUES(17888, 72505, 'seventy-two thousand five hundred five');\nINSERT INTO t3 VALUES(17889, 4299, 'four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(17890, 64775, 'sixty-four thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(17891, 83595, 'eighty-three thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(17892, 98721, 'ninety-eight thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(17893, 9219, 'nine thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17894, 8209, 'eight thousand two hundred nine');\nINSERT INTO t3 VALUES(17895, 55911, 'fifty-five thousand nine hundred eleven');\nINSERT INTO t3 VALUES(17896, 94223, 'ninety-four thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(17897, 63077, 'sixty-three thousand seventy-seven');\nINSERT INTO t3 VALUES(17898, 5698, 'five thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(17899, 16246, 'sixteen thousand two hundred forty-six');\nINSERT INTO t3 VALUES(17900, 25465, 'twenty-five thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(17901, 67774, 'sixty-seven thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(17902, 49246, 'forty-nine thousand two hundred forty-six');\nINSERT INTO t3 VALUES(17903, 91288, 'ninety-one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(17904, 72734, 'seventy-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(17905, 1354, 'one thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(17906, 84056, 'eighty-four thousand fifty-six');\nINSERT INTO t3 VALUES(17907, 95351, 'ninety-five thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(17908, 15392, 'fifteen thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(17909, 47084, 'forty-seven thousand eighty-four');\nINSERT INTO t3 VALUES(17910, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(17911, 23022, 'twenty-three thousand twenty-two');\nINSERT INTO t3 VALUES(17912, 42752, 'forty-two thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(17913, 63080, 'sixty-three thousand eighty');\nINSERT INTO t3 VALUES(17914, 27426, 'twenty-seven thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(17915, 23584, 'twenty-three thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(17916, 36291, 'thirty-six thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(17917, 13101, 'thirteen thousand one hundred one');\nINSERT INTO t3 VALUES(17918, 48775, 'forty-eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(17919, 82615, 'eighty-two thousand six hundred fifteen');\nINSERT INTO t3 VALUES(17920, 55879, 'fifty-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(17921, 57494, 'fifty-seven thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(17922, 76448, 'seventy-six thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(17923, 28283, 'twenty-eight thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(17924, 75078, 'seventy-five thousand seventy-eight');\nINSERT INTO t3 VALUES(17925, 88310, 'eighty-eight thousand three hundred ten');\nINSERT INTO t3 VALUES(17926, 95161, 'ninety-five thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(17927, 51378, 'fifty-one thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(17928, 58869, 'fifty-eight thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(17929, 40507, 'forty thousand five hundred seven');\nINSERT INTO t3 VALUES(17930, 24474, 'twenty-four thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(17931, 47542, 'forty-seven thousand five hundred forty-two');\nINSERT INTO t3 VALUES(17932, 52732, 'fifty-two thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(17933, 56947, 'fifty-six thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(17934, 29519, 'twenty-nine thousand five hundred nineteen');\nINSERT INTO t3 VALUES(17935, 99309, 'ninety-nine thousand three hundred nine');\nINSERT INTO t3 VALUES(17936, 70286, 'seventy thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(17937, 9444, 'nine thousand four hundred forty-four');\nINSERT INTO t3 VALUES(17938, 32244, 'thirty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(17939, 90349, 'ninety thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(17940, 47663, 'forty-seven thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(17941, 68129, 'sixty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(17942, 42894, 'forty-two thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(17943, 22371, 'twenty-two thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(17944, 2050, 'two thousand fifty');\nINSERT INTO t3 VALUES(17945, 54080, 'fifty-four thousand eighty');\nINSERT INTO t3 VALUES(17946, 32418, 'thirty-two thousand four hundred eighteen');\nINSERT INTO t3 VALUES(17947, 10752, 'ten thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(17948, 30485, 'thirty thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(17949, 53889, 'fifty-three thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(17950, 20835, 'twenty thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(17951, 96020, 'ninety-six thousand twenty');\nINSERT INTO t3 VALUES(17952, 57995, 'fifty-seven thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(17953, 29325, 'twenty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(17954, 96345, 'ninety-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(17955, 68578, 'sixty-eight thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(17956, 17093, 'seventeen thousand ninety-three');\nINSERT INTO t3 VALUES(17957, 62325, 'sixty-two thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(17958, 68485, 'sixty-eight thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(17959, 21071, 'twenty-one thousand seventy-one');\nINSERT INTO t3 VALUES(17960, 52918, 'fifty-two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(17961, 80859, 'eighty thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(17962, 72353, 'seventy-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(17963, 71133, 'seventy-one thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(17964, 73061, 'seventy-three thousand sixty-one');\nINSERT INTO t3 VALUES(17965, 37682, 'thirty-seven thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(17966, 82745, 'eighty-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(17967, 40224, 'forty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(17968, 99229, 'ninety-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(17969, 42472, 'forty-two thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(17970, 93964, 'ninety-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(17971, 7893, 'seven thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(17972, 84563, 'eighty-four thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(17973, 57563, 'fifty-seven thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(17974, 42823, 'forty-two thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(17975, 1971, 'one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(17976, 96182, 'ninety-six thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(17977, 52709, 'fifty-two thousand seven hundred nine');\nINSERT INTO t3 VALUES(17978, 43323, 'forty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(17979, 16690, 'sixteen thousand six hundred ninety');\nINSERT INTO t3 VALUES(17980, 6635, 'six thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(17981, 64219, 'sixty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(17982, 45442, 'forty-five thousand four hundred forty-two');\nINSERT INTO t3 VALUES(17983, 46858, 'forty-six thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(17984, 3606, 'three thousand six hundred six');\nINSERT INTO t3 VALUES(17985, 80516, 'eighty thousand five hundred sixteen');\nINSERT INTO t3 VALUES(17986, 33192, 'thirty-three thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(17987, 64247, 'sixty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(17988, 92874, 'ninety-two thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(17989, 11726, 'eleven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(17990, 49012, 'forty-nine thousand twelve');\nINSERT INTO t3 VALUES(17991, 38807, 'thirty-eight thousand eight hundred seven');\nINSERT INTO t3 VALUES(17992, 16052, 'sixteen thousand fifty-two');\nINSERT INTO t3 VALUES(17993, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(17994, 71190, 'seventy-one thousand one hundred ninety');\nINSERT INTO t3 VALUES(17995, 6621, 'six thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(17996, 19299, 'nineteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(17997, 43855, 'forty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(17998, 9654, 'nine thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(17999, 1262, 'one thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(18000, 46607, 'forty-six thousand six hundred seven');\nINSERT INTO t3 VALUES(18001, 80357, 'eighty thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(18002, 40502, 'forty thousand five hundred two');\nINSERT INTO t3 VALUES(18003, 7463, 'seven thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(18004, 44920, 'forty-four thousand nine hundred twenty');\nINSERT INTO t3 VALUES(18005, 69025, 'sixty-nine thousand twenty-five');\nINSERT INTO t3 VALUES(18006, 53259, 'fifty-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(18007, 95385, 'ninety-five thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(18008, 28584, 'twenty-eight thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(18009, 64394, 'sixty-four thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(18010, 97418, 'ninety-seven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(18011, 60303, 'sixty thousand three hundred three');\nINSERT INTO t3 VALUES(18012, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(18013, 70024, 'seventy thousand twenty-four');\nINSERT INTO t3 VALUES(18014, 30126, 'thirty thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(18015, 81077, 'eighty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(18016, 56914, 'fifty-six thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(18017, 53828, 'fifty-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(18018, 27228, 'twenty-seven thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(18019, 9993, 'nine thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(18020, 3068, 'three thousand sixty-eight');\nINSERT INTO t3 VALUES(18021, 37906, 'thirty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(18022, 74579, 'seventy-four thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(18023, 65759, 'sixty-five thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(18024, 85183, 'eighty-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(18025, 58336, 'fifty-eight thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(18026, 34942, 'thirty-four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(18027, 47704, 'forty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(18028, 29699, 'twenty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(18029, 48239, 'forty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(18030, 95087, 'ninety-five thousand eighty-seven');\nINSERT INTO t3 VALUES(18031, 4932, 'four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(18032, 46522, 'forty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(18033, 27530, 'twenty-seven thousand five hundred thirty');\nINSERT INTO t3 VALUES(18034, 30769, 'thirty thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(18035, 36540, 'thirty-six thousand five hundred forty');\nINSERT INTO t3 VALUES(18036, 50683, 'fifty thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(18037, 2368, 'two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(18038, 94257, 'ninety-four thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(18039, 9613, 'nine thousand six hundred thirteen');\nINSERT INTO t3 VALUES(18040, 55861, 'fifty-five thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(18041, 88442, 'eighty-eight thousand four hundred forty-two');\nINSERT INTO t3 VALUES(18042, 16143, 'sixteen thousand one hundred forty-three');\nINSERT INTO t3 VALUES(18043, 84943, 'eighty-four thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18044, 68504, 'sixty-eight thousand five hundred four');\nINSERT INTO t3 VALUES(18045, 93843, 'ninety-three thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(18046, 13186, 'thirteen thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(18047, 23238, 'twenty-three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(18048, 98507, 'ninety-eight thousand five hundred seven');\nINSERT INTO t3 VALUES(18049, 5925, 'five thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18050, 85957, 'eighty-five thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(18051, 31111, 'thirty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(18052, 59965, 'fifty-nine thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(18053, 92816, 'ninety-two thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(18054, 52710, 'fifty-two thousand seven hundred ten');\nINSERT INTO t3 VALUES(18055, 10541, 'ten thousand five hundred forty-one');\nINSERT INTO t3 VALUES(18056, 12322, 'twelve thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(18057, 43736, 'forty-three thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(18058, 68988, 'sixty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(18059, 59005, 'fifty-nine thousand five');\nINSERT INTO t3 VALUES(18060, 51783, 'fifty-one thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(18061, 75873, 'seventy-five thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(18062, 56628, 'fifty-six thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18063, 65081, 'sixty-five thousand eighty-one');\nINSERT INTO t3 VALUES(18064, 33059, 'thirty-three thousand fifty-nine');\nINSERT INTO t3 VALUES(18065, 34342, 'thirty-four thousand three hundred forty-two');\nINSERT INTO t3 VALUES(18066, 92252, 'ninety-two thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(18067, 88614, 'eighty-eight thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18068, 71734, 'seventy-one thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(18069, 13511, 'thirteen thousand five hundred eleven');\nINSERT INTO t3 VALUES(18070, 1641, 'one thousand six hundred forty-one');\nINSERT INTO t3 VALUES(18071, 60353, 'sixty thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(18072, 55540, 'fifty-five thousand five hundred forty');\nINSERT INTO t3 VALUES(18073, 81987, 'eighty-one thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(18074, 81009, 'eighty-one thousand nine');\nINSERT INTO t3 VALUES(18075, 42246, 'forty-two thousand two hundred forty-six');\nINSERT INTO t3 VALUES(18076, 5935, 'five thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(18077, 62205, 'sixty-two thousand two hundred five');\nINSERT INTO t3 VALUES(18078, 65614, 'sixty-five thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18079, 95842, 'ninety-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(18080, 39588, 'thirty-nine thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(18081, 84271, 'eighty-four thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(18082, 50839, 'fifty thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(18083, 53520, 'fifty-three thousand five hundred twenty');\nINSERT INTO t3 VALUES(18084, 46391, 'forty-six thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(18085, 96597, 'ninety-six thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18086, 50655, 'fifty thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(18087, 70757, 'seventy thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(18088, 14714, 'fourteen thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(18089, 97339, 'ninety-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(18090, 31265, 'thirty-one thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(18091, 27668, 'twenty-seven thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(18092, 43832, 'forty-three thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(18093, 97418, 'ninety-seven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(18094, 65042, 'sixty-five thousand forty-two');\nINSERT INTO t3 VALUES(18095, 90074, 'ninety thousand seventy-four');\nINSERT INTO t3 VALUES(18096, 87805, 'eighty-seven thousand eight hundred five');\nINSERT INTO t3 VALUES(18097, 12612, 'twelve thousand six hundred twelve');\nINSERT INTO t3 VALUES(18098, 86175, 'eighty-six thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(18099, 83403, 'eighty-three thousand four hundred three');\nINSERT INTO t3 VALUES(18100, 97528, 'ninety-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18101, 18517, 'eighteen thousand five hundred seventeen');\nINSERT INTO t3 VALUES(18102, 51258, 'fifty-one thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(18103, 90469, 'ninety thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(18104, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(18105, 44780, 'forty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(18106, 17402, 'seventeen thousand four hundred two');\nINSERT INTO t3 VALUES(18107, 65102, 'sixty-five thousand one hundred two');\nINSERT INTO t3 VALUES(18108, 36667, 'thirty-six thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(18109, 60010, 'sixty thousand ten');\nINSERT INTO t3 VALUES(18110, 11518, 'eleven thousand five hundred eighteen');\nINSERT INTO t3 VALUES(18111, 20867, 'twenty thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(18112, 23135, 'twenty-three thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(18113, 97125, 'ninety-seven thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(18114, 90884, 'ninety thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(18115, 3753, 'three thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(18116, 84093, 'eighty-four thousand ninety-three');\nINSERT INTO t3 VALUES(18117, 15786, 'fifteen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(18118, 23000, 'twenty-three thousand');\nINSERT INTO t3 VALUES(18119, 33087, 'thirty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(18120, 64898, 'sixty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(18121, 16200, 'sixteen thousand two hundred');\nINSERT INTO t3 VALUES(18122, 74484, 'seventy-four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(18123, 33502, 'thirty-three thousand five hundred two');\nINSERT INTO t3 VALUES(18124, 47339, 'forty-seven thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(18125, 96785, 'ninety-six thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(18126, 54734, 'fifty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(18127, 24230, 'twenty-four thousand two hundred thirty');\nINSERT INTO t3 VALUES(18128, 63860, 'sixty-three thousand eight hundred sixty');\nINSERT INTO t3 VALUES(18129, 48822, 'forty-eight thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(18130, 82896, 'eighty-two thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(18131, 10112, 'ten thousand one hundred twelve');\nINSERT INTO t3 VALUES(18132, 9075, 'nine thousand seventy-five');\nINSERT INTO t3 VALUES(18133, 14780, 'fourteen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(18134, 49475, 'forty-nine thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(18135, 24714, 'twenty-four thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(18136, 14943, 'fourteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18137, 24686, 'twenty-four thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(18138, 36880, 'thirty-six thousand eight hundred eighty');\nINSERT INTO t3 VALUES(18139, 79326, 'seventy-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(18140, 30601, 'thirty thousand six hundred one');\nINSERT INTO t3 VALUES(18141, 81379, 'eighty-one thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(18142, 35694, 'thirty-five thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(18143, 5153, 'five thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(18144, 35016, 'thirty-five thousand sixteen');\nINSERT INTO t3 VALUES(18145, 36034, 'thirty-six thousand thirty-four');\nINSERT INTO t3 VALUES(18146, 6296, 'six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(18147, 24982, 'twenty-four thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(18148, 56176, 'fifty-six thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(18149, 3253, 'three thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(18150, 55845, 'fifty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(18151, 81684, 'eighty-one thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(18152, 86517, 'eighty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(18153, 99051, 'ninety-nine thousand fifty-one');\nINSERT INTO t3 VALUES(18154, 48695, 'forty-eight thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(18155, 69661, 'sixty-nine thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(18156, 76037, 'seventy-six thousand thirty-seven');\nINSERT INTO t3 VALUES(18157, 41687, 'forty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(18158, 44266, 'forty-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(18159, 48769, 'forty-eight thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(18160, 5780, 'five thousand seven hundred eighty');\nINSERT INTO t3 VALUES(18161, 53399, 'fifty-three thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(18162, 2897, 'two thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(18163, 76323, 'seventy-six thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(18164, 49273, 'forty-nine thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18165, 9685, 'nine thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(18166, 27050, 'twenty-seven thousand fifty');\nINSERT INTO t3 VALUES(18167, 25116, 'twenty-five thousand one hundred sixteen');\nINSERT INTO t3 VALUES(18168, 8942, 'eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(18169, 74359, 'seventy-four thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(18170, 16774, 'sixteen thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(18171, 17060, 'seventeen thousand sixty');\nINSERT INTO t3 VALUES(18172, 84211, 'eighty-four thousand two hundred eleven');\nINSERT INTO t3 VALUES(18173, 82852, 'eighty-two thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(18174, 35496, 'thirty-five thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(18175, 59457, 'fifty-nine thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(18176, 47516, 'forty-seven thousand five hundred sixteen');\nINSERT INTO t3 VALUES(18177, 43854, 'forty-three thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(18178, 92712, 'ninety-two thousand seven hundred twelve');\nINSERT INTO t3 VALUES(18179, 79098, 'seventy-nine thousand ninety-eight');\nINSERT INTO t3 VALUES(18180, 21502, 'twenty-one thousand five hundred two');\nINSERT INTO t3 VALUES(18181, 59637, 'fifty-nine thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(18182, 64537, 'sixty-four thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(18183, 84158, 'eighty-four thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(18184, 50642, 'fifty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(18185, 52862, 'fifty-two thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(18186, 53577, 'fifty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(18187, 1878, 'one thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(18188, 22071, 'twenty-two thousand seventy-one');\nINSERT INTO t3 VALUES(18189, 27161, 'twenty-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(18190, 64374, 'sixty-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(18191, 20246, 'twenty thousand two hundred forty-six');\nINSERT INTO t3 VALUES(18192, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t3 VALUES(18193, 84932, 'eighty-four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(18194, 23998, 'twenty-three thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(18195, 11418, 'eleven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(18196, 60607, 'sixty thousand six hundred seven');\nINSERT INTO t3 VALUES(18197, 59348, 'fifty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(18198, 30387, 'thirty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(18199, 61315, 'sixty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(18200, 81309, 'eighty-one thousand three hundred nine');\nINSERT INTO t3 VALUES(18201, 24516, 'twenty-four thousand five hundred sixteen');\nINSERT INTO t3 VALUES(18202, 50635, 'fifty thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(18203, 51920, 'fifty-one thousand nine hundred twenty');\nINSERT INTO t3 VALUES(18204, 93460, 'ninety-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(18205, 19742, 'nineteen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(18206, 18636, 'eighteen thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(18207, 46930, 'forty-six thousand nine hundred thirty');\nINSERT INTO t3 VALUES(18208, 9529, 'nine thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(18209, 51897, 'fifty-one thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(18210, 68078, 'sixty-eight thousand seventy-eight');\nINSERT INTO t3 VALUES(18211, 2627, 'two thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18212, 76397, 'seventy-six thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(18213, 3804, 'three thousand eight hundred four');\nINSERT INTO t3 VALUES(18214, 69943, 'sixty-nine thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18215, 78204, 'seventy-eight thousand two hundred four');\nINSERT INTO t3 VALUES(18216, 21311, 'twenty-one thousand three hundred eleven');\nINSERT INTO t3 VALUES(18217, 8966, 'eight thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(18218, 52972, 'fifty-two thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18219, 43969, 'forty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(18220, 11308, 'eleven thousand three hundred eight');\nINSERT INTO t3 VALUES(18221, 7718, 'seven thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(18222, 77721, 'seventy-seven thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(18223, 28942, 'twenty-eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(18224, 49210, 'forty-nine thousand two hundred ten');\nINSERT INTO t3 VALUES(18225, 16401, 'sixteen thousand four hundred one');\nINSERT INTO t3 VALUES(18226, 86843, 'eighty-six thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(18227, 30902, 'thirty thousand nine hundred two');\nINSERT INTO t3 VALUES(18228, 56063, 'fifty-six thousand sixty-three');\nINSERT INTO t3 VALUES(18229, 6257, 'six thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(18230, 76737, 'seventy-six thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(18231, 34825, 'thirty-four thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(18232, 16194, 'sixteen thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(18233, 26122, 'twenty-six thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(18234, 70025, 'seventy thousand twenty-five');\nINSERT INTO t3 VALUES(18235, 48124, 'forty-eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(18236, 78417, 'seventy-eight thousand four hundred seventeen');\nINSERT INTO t3 VALUES(18237, 86395, 'eighty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18238, 87713, 'eighty-seven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(18239, 51009, 'fifty-one thousand nine');\nINSERT INTO t3 VALUES(18240, 73813, 'seventy-three thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(18241, 31835, 'thirty-one thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(18242, 19299, 'nineteen thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(18243, 47732, 'forty-seven thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(18244, 996, 'nine hundred ninety-six');\nINSERT INTO t3 VALUES(18245, 8223, 'eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(18246, 10792, 'ten thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(18247, 5085, 'five thousand eighty-five');\nINSERT INTO t3 VALUES(18248, 64617, 'sixty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(18249, 2321, 'two thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(18250, 38299, 'thirty-eight thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(18251, 80401, 'eighty thousand four hundred one');\nINSERT INTO t3 VALUES(18252, 53315, 'fifty-three thousand three hundred fifteen');\nINSERT INTO t3 VALUES(18253, 58755, 'fifty-eight thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(18254, 64247, 'sixty-four thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(18255, 86587, 'eighty-six thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(18256, 77288, 'seventy-seven thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(18257, 30358, 'thirty thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(18258, 74818, 'seventy-four thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(18259, 77945, 'seventy-seven thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(18260, 7023, 'seven thousand twenty-three');\nINSERT INTO t3 VALUES(18261, 87292, 'eighty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(18262, 97220, 'ninety-seven thousand two hundred twenty');\nINSERT INTO t3 VALUES(18263, 25983, 'twenty-five thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(18264, 56976, 'fifty-six thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(18265, 84091, 'eighty-four thousand ninety-one');\nINSERT INTO t3 VALUES(18266, 88097, 'eighty-eight thousand ninety-seven');\nINSERT INTO t3 VALUES(18267, 52424, 'fifty-two thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(18268, 19355, 'nineteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(18269, 31643, 'thirty-one thousand six hundred forty-three');\nINSERT INTO t3 VALUES(18270, 54584, 'fifty-four thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(18271, 51599, 'fifty-one thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(18272, 60062, 'sixty thousand sixty-two');\nINSERT INTO t3 VALUES(18273, 54742, 'fifty-four thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(18274, 57724, 'fifty-seven thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(18275, 45933, 'forty-five thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(18276, 29680, 'twenty-nine thousand six hundred eighty');\nINSERT INTO t3 VALUES(18277, 97832, 'ninety-seven thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(18278, 64374, 'sixty-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(18279, 42366, 'forty-two thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(18280, 30522, 'thirty thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(18281, 19807, 'nineteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(18282, 59948, 'fifty-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(18283, 6594, 'six thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(18284, 41687, 'forty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(18285, 976, 'nine hundred seventy-six');\nINSERT INTO t3 VALUES(18286, 24438, 'twenty-four thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(18287, 91114, 'ninety-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(18288, 20747, 'twenty thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(18289, 71132, 'seventy-one thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18290, 65628, 'sixty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18291, 68844, 'sixty-eight thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(18292, 78142, 'seventy-eight thousand one hundred forty-two');\nINSERT INTO t3 VALUES(18293, 73195, 'seventy-three thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(18294, 44241, 'forty-four thousand two hundred forty-one');\nINSERT INTO t3 VALUES(18295, 61208, 'sixty-one thousand two hundred eight');\nINSERT INTO t3 VALUES(18296, 38710, 'thirty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(18297, 15264, 'fifteen thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(18298, 16725, 'sixteen thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(18299, 44131, 'forty-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(18300, 55692, 'fifty-five thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(18301, 65051, 'sixty-five thousand fifty-one');\nINSERT INTO t3 VALUES(18302, 46725, 'forty-six thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(18303, 45137, 'forty-five thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(18304, 88708, 'eighty-eight thousand seven hundred eight');\nINSERT INTO t3 VALUES(18305, 22612, 'twenty-two thousand six hundred twelve');\nINSERT INTO t3 VALUES(18306, 51228, 'fifty-one thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(18307, 68304, 'sixty-eight thousand three hundred four');\nINSERT INTO t3 VALUES(18308, 33177, 'thirty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(18309, 57633, 'fifty-seven thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(18310, 25377, 'twenty-five thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(18311, 69279, 'sixty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(18312, 86015, 'eighty-six thousand fifteen');\nINSERT INTO t3 VALUES(18313, 76678, 'seventy-six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(18314, 24319, 'twenty-four thousand three hundred nineteen');\nINSERT INTO t3 VALUES(18315, 35107, 'thirty-five thousand one hundred seven');\nINSERT INTO t3 VALUES(18316, 38478, 'thirty-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(18317, 53921, 'fifty-three thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(18318, 81705, 'eighty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(18319, 74888, 'seventy-four thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(18320, 49500, 'forty-nine thousand five hundred');\nINSERT INTO t3 VALUES(18321, 19384, 'nineteen thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(18322, 18388, 'eighteen thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(18323, 61515, 'sixty-one thousand five hundred fifteen');\nINSERT INTO t3 VALUES(18324, 41419, 'forty-one thousand four hundred nineteen');\nINSERT INTO t3 VALUES(18325, 82468, 'eighty-two thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(18326, 99380, 'ninety-nine thousand three hundred eighty');\nINSERT INTO t3 VALUES(18327, 45167, 'forty-five thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(18328, 85160, 'eighty-five thousand one hundred sixty');\nINSERT INTO t3 VALUES(18329, 72739, 'seventy-two thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(18330, 903, 'nine hundred three');\nINSERT INTO t3 VALUES(18331, 3952, 'three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(18332, 80286, 'eighty thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(18333, 37632, 'thirty-seven thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(18334, 67183, 'sixty-seven thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(18335, 74772, 'seventy-four thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(18336, 45775, 'forty-five thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(18337, 6140, 'six thousand one hundred forty');\nINSERT INTO t3 VALUES(18338, 66729, 'sixty-six thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(18339, 63314, 'sixty-three thousand three hundred fourteen');\nINSERT INTO t3 VALUES(18340, 55524, 'fifty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(18341, 27110, 'twenty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(18342, 64228, 'sixty-four thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(18343, 94382, 'ninety-four thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(18344, 83692, 'eighty-three thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(18345, 66141, 'sixty-six thousand one hundred forty-one');\nINSERT INTO t3 VALUES(18346, 47972, 'forty-seven thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18347, 50844, 'fifty thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(18348, 89925, 'eighty-nine thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18349, 27064, 'twenty-seven thousand sixty-four');\nINSERT INTO t3 VALUES(18350, 28613, 'twenty-eight thousand six hundred thirteen');\nINSERT INTO t3 VALUES(18351, 26202, 'twenty-six thousand two hundred two');\nINSERT INTO t3 VALUES(18352, 77549, 'seventy-seven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(18353, 63689, 'sixty-three thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(18354, 50428, 'fifty thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(18355, 74060, 'seventy-four thousand sixty');\nINSERT INTO t3 VALUES(18356, 74889, 'seventy-four thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(18357, 1489, 'one thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(18358, 93198, 'ninety-three thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(18359, 64793, 'sixty-four thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(18360, 87947, 'eighty-seven thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(18361, 87510, 'eighty-seven thousand five hundred ten');\nINSERT INTO t3 VALUES(18362, 39211, 'thirty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(18363, 23641, 'twenty-three thousand six hundred forty-one');\nINSERT INTO t3 VALUES(18364, 70192, 'seventy thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(18365, 90185, 'ninety thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(18366, 60627, 'sixty thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18367, 90277, 'ninety thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(18368, 22697, 'twenty-two thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(18369, 25456, 'twenty-five thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(18370, 27193, 'twenty-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(18371, 83459, 'eighty-three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(18372, 58361, 'fifty-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(18373, 94507, 'ninety-four thousand five hundred seven');\nINSERT INTO t3 VALUES(18374, 42456, 'forty-two thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(18375, 45775, 'forty-five thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(18376, 78177, 'seventy-eight thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(18377, 99884, 'ninety-nine thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(18378, 89989, 'eighty-nine thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(18379, 3411, 'three thousand four hundred eleven');\nINSERT INTO t3 VALUES(18380, 39445, 'thirty-nine thousand four hundred forty-five');\nINSERT INTO t3 VALUES(18381, 80567, 'eighty thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(18382, 75406, 'seventy-five thousand four hundred six');\nINSERT INTO t3 VALUES(18383, 69302, 'sixty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(18384, 17856, 'seventeen thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(18385, 69150, 'sixty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(18386, 91985, 'ninety-one thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(18387, 50213, 'fifty thousand two hundred thirteen');\nINSERT INTO t3 VALUES(18388, 50372, 'fifty thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(18389, 79670, 'seventy-nine thousand six hundred seventy');\nINSERT INTO t3 VALUES(18390, 36403, 'thirty-six thousand four hundred three');\nINSERT INTO t3 VALUES(18391, 67890, 'sixty-seven thousand eight hundred ninety');\nINSERT INTO t3 VALUES(18392, 85477, 'eighty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(18393, 83491, 'eighty-three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(18394, 62623, 'sixty-two thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(18395, 55489, 'fifty-five thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(18396, 96528, 'ninety-six thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18397, 92954, 'ninety-two thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(18398, 1654, 'one thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(18399, 30687, 'thirty thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(18400, 43342, 'forty-three thousand three hundred forty-two');\nINSERT INTO t3 VALUES(18401, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(18402, 14932, 'fourteen thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(18403, 61091, 'sixty-one thousand ninety-one');\nINSERT INTO t3 VALUES(18404, 51662, 'fifty-one thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(18405, 94771, 'ninety-four thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(18406, 1972, 'one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18407, 58946, 'fifty-eight thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(18408, 92849, 'ninety-two thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(18409, 71729, 'seventy-one thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(18410, 99638, 'ninety-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(18411, 13245, 'thirteen thousand two hundred forty-five');\nINSERT INTO t3 VALUES(18412, 8477, 'eight thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(18413, 17911, 'seventeen thousand nine hundred eleven');\nINSERT INTO t3 VALUES(18414, 53383, 'fifty-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(18415, 89717, 'eighty-nine thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(18416, 59461, 'fifty-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(18417, 97991, 'ninety-seven thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(18418, 97374, 'ninety-seven thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(18419, 24503, 'twenty-four thousand five hundred three');\nINSERT INTO t3 VALUES(18420, 42542, 'forty-two thousand five hundred forty-two');\nINSERT INTO t3 VALUES(18421, 75529, 'seventy-five thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(18422, 75777, 'seventy-five thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(18423, 66107, 'sixty-six thousand one hundred seven');\nINSERT INTO t3 VALUES(18424, 35511, 'thirty-five thousand five hundred eleven');\nINSERT INTO t3 VALUES(18425, 32886, 'thirty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(18426, 46627, 'forty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18427, 39785, 'thirty-nine thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(18428, 95150, 'ninety-five thousand one hundred fifty');\nINSERT INTO t3 VALUES(18429, 16706, 'sixteen thousand seven hundred six');\nINSERT INTO t3 VALUES(18430, 25967, 'twenty-five thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(18431, 43901, 'forty-three thousand nine hundred one');\nINSERT INTO t3 VALUES(18432, 388, 'three hundred eighty-eight');\nINSERT INTO t3 VALUES(18433, 93434, 'ninety-three thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(18434, 63865, 'sixty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(18435, 55652, 'fifty-five thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(18436, 92549, 'ninety-two thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(18437, 93456, 'ninety-three thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(18438, 46926, 'forty-six thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18439, 72986, 'seventy-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(18440, 87309, 'eighty-seven thousand three hundred nine');\nINSERT INTO t3 VALUES(18441, 14182, 'fourteen thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18442, 75379, 'seventy-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(18443, 17174, 'seventeen thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(18444, 42335, 'forty-two thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(18445, 33390, 'thirty-three thousand three hundred ninety');\nINSERT INTO t3 VALUES(18446, 3238, 'three thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(18447, 41810, 'forty-one thousand eight hundred ten');\nINSERT INTO t3 VALUES(18448, 72465, 'seventy-two thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(18449, 35974, 'thirty-five thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(18450, 52491, 'fifty-two thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(18451, 76467, 'seventy-six thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(18452, 81814, 'eighty-one thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(18453, 93487, 'ninety-three thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(18454, 33693, 'thirty-three thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(18455, 50781, 'fifty thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(18456, 29834, 'twenty-nine thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(18457, 37711, 'thirty-seven thousand seven hundred eleven');\nINSERT INTO t3 VALUES(18458, 33883, 'thirty-three thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(18459, 32302, 'thirty-two thousand three hundred two');\nINSERT INTO t3 VALUES(18460, 67171, 'sixty-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(18461, 17351, 'seventeen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(18462, 36245, 'thirty-six thousand two hundred forty-five');\nINSERT INTO t3 VALUES(18463, 55781, 'fifty-five thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(18464, 89311, 'eighty-nine thousand three hundred eleven');\nINSERT INTO t3 VALUES(18465, 2192, 'two thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(18466, 76841, 'seventy-six thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(18467, 8533, 'eight thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(18468, 2852, 'two thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(18469, 55734, 'fifty-five thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(18470, 96069, 'ninety-six thousand sixty-nine');\nINSERT INTO t3 VALUES(18471, 89693, 'eighty-nine thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(18472, 49818, 'forty-nine thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(18473, 84487, 'eighty-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(18474, 88751, 'eighty-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(18475, 12503, 'twelve thousand five hundred three');\nINSERT INTO t3 VALUES(18476, 91114, 'ninety-one thousand one hundred fourteen');\nINSERT INTO t3 VALUES(18477, 57500, 'fifty-seven thousand five hundred');\nINSERT INTO t3 VALUES(18478, 7997, 'seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(18479, 62648, 'sixty-two thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18480, 45973, 'forty-five thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(18481, 10878, 'ten thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(18482, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(18483, 75392, 'seventy-five thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(18484, 95091, 'ninety-five thousand ninety-one');\nINSERT INTO t3 VALUES(18485, 67895, 'sixty-seven thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(18486, 45044, 'forty-five thousand forty-four');\nINSERT INTO t3 VALUES(18487, 98820, 'ninety-eight thousand eight hundred twenty');\nINSERT INTO t3 VALUES(18488, 85904, 'eighty-five thousand nine hundred four');\nINSERT INTO t3 VALUES(18489, 26344, 'twenty-six thousand three hundred forty-four');\nINSERT INTO t3 VALUES(18490, 63503, 'sixty-three thousand five hundred three');\nINSERT INTO t3 VALUES(18491, 59648, 'fifty-nine thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18492, 90336, 'ninety thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(18493, 34940, 'thirty-four thousand nine hundred forty');\nINSERT INTO t3 VALUES(18494, 57506, 'fifty-seven thousand five hundred six');\nINSERT INTO t3 VALUES(18495, 46592, 'forty-six thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(18496, 42923, 'forty-two thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(18497, 9972, 'nine thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18498, 26883, 'twenty-six thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(18499, 35845, 'thirty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(18500, 27429, 'twenty-seven thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(18501, 66395, 'sixty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18502, 38444, 'thirty-eight thousand four hundred forty-four');\nINSERT INTO t3 VALUES(18503, 20797, 'twenty thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(18504, 13173, 'thirteen thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(18505, 27531, 'twenty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(18506, 28425, 'twenty-eight thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(18507, 65182, 'sixty-five thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18508, 53616, 'fifty-three thousand six hundred sixteen');\nINSERT INTO t3 VALUES(18509, 88065, 'eighty-eight thousand sixty-five');\nINSERT INTO t3 VALUES(18510, 93708, 'ninety-three thousand seven hundred eight');\nINSERT INTO t3 VALUES(18511, 11671, 'eleven thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(18512, 65037, 'sixty-five thousand thirty-seven');\nINSERT INTO t3 VALUES(18513, 32758, 'thirty-two thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(18514, 67010, 'sixty-seven thousand ten');\nINSERT INTO t3 VALUES(18515, 26448, 'twenty-six thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(18516, 73537, 'seventy-three thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(18517, 64700, 'sixty-four thousand seven hundred');\nINSERT INTO t3 VALUES(18518, 45543, 'forty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(18519, 59593, 'fifty-nine thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(18520, 95337, 'ninety-five thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(18521, 54809, 'fifty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(18522, 29661, 'twenty-nine thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(18523, 14182, 'fourteen thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18524, 35101, 'thirty-five thousand one hundred one');\nINSERT INTO t3 VALUES(18525, 1288, 'one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(18526, 60433, 'sixty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(18527, 5988, 'five thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(18528, 80143, 'eighty thousand one hundred forty-three');\nINSERT INTO t3 VALUES(18529, 89770, 'eighty-nine thousand seven hundred seventy');\nINSERT INTO t3 VALUES(18530, 66060, 'sixty-six thousand sixty');\nINSERT INTO t3 VALUES(18531, 35544, 'thirty-five thousand five hundred forty-four');\nINSERT INTO t3 VALUES(18532, 16239, 'sixteen thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(18533, 87566, 'eighty-seven thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(18534, 87869, 'eighty-seven thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(18535, 36552, 'thirty-six thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(18536, 20681, 'twenty thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(18537, 32961, 'thirty-two thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(18538, 61273, 'sixty-one thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18539, 28139, 'twenty-eight thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(18540, 62584, 'sixty-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(18541, 61020, 'sixty-one thousand twenty');\nINSERT INTO t3 VALUES(18542, 88856, 'eighty-eight thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(18543, 25926, 'twenty-five thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18544, 86626, 'eighty-six thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(18545, 32770, 'thirty-two thousand seven hundred seventy');\nINSERT INTO t3 VALUES(18546, 67162, 'sixty-seven thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(18547, 77954, 'seventy-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(18548, 95855, 'ninety-five thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(18549, 92285, 'ninety-two thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(18550, 24628, 'twenty-four thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18551, 76317, 'seventy-six thousand three hundred seventeen');\nINSERT INTO t3 VALUES(18552, 42831, 'forty-two thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(18553, 43663, 'forty-three thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(18554, 79880, 'seventy-nine thousand eight hundred eighty');\nINSERT INTO t3 VALUES(18555, 42843, 'forty-two thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(18556, 29024, 'twenty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(18557, 49405, 'forty-nine thousand four hundred five');\nINSERT INTO t3 VALUES(18558, 56569, 'fifty-six thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(18559, 51993, 'fifty-one thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(18560, 38950, 'thirty-eight thousand nine hundred fifty');\nINSERT INTO t3 VALUES(18561, 38611, 'thirty-eight thousand six hundred eleven');\nINSERT INTO t3 VALUES(18562, 51912, 'fifty-one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(18563, 95065, 'ninety-five thousand sixty-five');\nINSERT INTO t3 VALUES(18564, 4978, 'four thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(18565, 53049, 'fifty-three thousand forty-nine');\nINSERT INTO t3 VALUES(18566, 50983, 'fifty thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(18567, 61528, 'sixty-one thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18568, 11574, 'eleven thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(18569, 89229, 'eighty-nine thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(18570, 81508, 'eighty-one thousand five hundred eight');\nINSERT INTO t3 VALUES(18571, 2888, 'two thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(18572, 45677, 'forty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(18573, 35397, 'thirty-five thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(18574, 27297, 'twenty-seven thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(18575, 49487, 'forty-nine thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(18576, 7079, 'seven thousand seventy-nine');\nINSERT INTO t3 VALUES(18577, 1439, 'one thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(18578, 91577, 'ninety-one thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(18579, 52222, 'fifty-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(18580, 98450, 'ninety-eight thousand four hundred fifty');\nINSERT INTO t3 VALUES(18581, 96404, 'ninety-six thousand four hundred four');\nINSERT INTO t3 VALUES(18582, 16749, 'sixteen thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(18583, 77369, 'seventy-seven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(18584, 94287, 'ninety-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(18585, 50644, 'fifty thousand six hundred forty-four');\nINSERT INTO t3 VALUES(18586, 16600, 'sixteen thousand six hundred');\nINSERT INTO t3 VALUES(18587, 5604, 'five thousand six hundred four');\nINSERT INTO t3 VALUES(18588, 95991, 'ninety-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(18589, 12146, 'twelve thousand one hundred forty-six');\nINSERT INTO t3 VALUES(18590, 94594, 'ninety-four thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(18591, 68674, 'sixty-eight thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(18592, 7973, 'seven thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(18593, 548, 'five hundred forty-eight');\nINSERT INTO t3 VALUES(18594, 15923, 'fifteen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(18595, 9617, 'nine thousand six hundred seventeen');\nINSERT INTO t3 VALUES(18596, 46310, 'forty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(18597, 38998, 'thirty-eight thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(18598, 57096, 'fifty-seven thousand ninety-six');\nINSERT INTO t3 VALUES(18599, 41587, 'forty-one thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(18600, 42024, 'forty-two thousand twenty-four');\nINSERT INTO t3 VALUES(18601, 83167, 'eighty-three thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(18602, 9964, 'nine thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(18603, 92292, 'ninety-two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(18604, 46817, 'forty-six thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(18605, 25176, 'twenty-five thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(18606, 17832, 'seventeen thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(18607, 77585, 'seventy-seven thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(18608, 63098, 'sixty-three thousand ninety-eight');\nINSERT INTO t3 VALUES(18609, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t3 VALUES(18610, 14254, 'fourteen thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(18611, 4597, 'four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18612, 91313, 'ninety-one thousand three hundred thirteen');\nINSERT INTO t3 VALUES(18613, 25550, 'twenty-five thousand five hundred fifty');\nINSERT INTO t3 VALUES(18614, 33302, 'thirty-three thousand three hundred two');\nINSERT INTO t3 VALUES(18615, 35703, 'thirty-five thousand seven hundred three');\nINSERT INTO t3 VALUES(18616, 82237, 'eighty-two thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(18617, 34118, 'thirty-four thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18618, 46597, 'forty-six thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18619, 30992, 'thirty thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(18620, 62118, 'sixty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18621, 79099, 'seventy-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(18622, 9459, 'nine thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(18623, 62395, 'sixty-two thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18624, 72918, 'seventy-two thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(18625, 26053, 'twenty-six thousand fifty-three');\nINSERT INTO t3 VALUES(18626, 37779, 'thirty-seven thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(18627, 15200, 'fifteen thousand two hundred');\nINSERT INTO t3 VALUES(18628, 1543, 'one thousand five hundred forty-three');\nINSERT INTO t3 VALUES(18629, 59638, 'fifty-nine thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(18630, 44749, 'forty-four thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(18631, 11191, 'eleven thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(18632, 95989, 'ninety-five thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(18633, 49339, 'forty-nine thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(18634, 41797, 'forty-one thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(18635, 23431, 'twenty-three thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(18636, 43870, 'forty-three thousand eight hundred seventy');\nINSERT INTO t3 VALUES(18637, 84647, 'eighty-four thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(18638, 27268, 'twenty-seven thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(18639, 40935, 'forty thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(18640, 60727, 'sixty thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(18641, 96167, 'ninety-six thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(18642, 51546, 'fifty-one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(18643, 25410, 'twenty-five thousand four hundred ten');\nINSERT INTO t3 VALUES(18644, 13248, 'thirteen thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(18645, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(18646, 4181, 'four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(18647, 39132, 'thirty-nine thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18648, 30539, 'thirty thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(18649, 55099, 'fifty-five thousand ninety-nine');\nINSERT INTO t3 VALUES(18650, 48603, 'forty-eight thousand six hundred three');\nINSERT INTO t3 VALUES(18651, 42679, 'forty-two thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(18652, 28675, 'twenty-eight thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(18653, 60301, 'sixty thousand three hundred one');\nINSERT INTO t3 VALUES(18654, 85341, 'eighty-five thousand three hundred forty-one');\nINSERT INTO t3 VALUES(18655, 35306, 'thirty-five thousand three hundred six');\nINSERT INTO t3 VALUES(18656, 49343, 'forty-nine thousand three hundred forty-three');\nINSERT INTO t3 VALUES(18657, 52614, 'fifty-two thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18658, 31677, 'thirty-one thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(18659, 11346, 'eleven thousand three hundred forty-six');\nINSERT INTO t3 VALUES(18660, 53411, 'fifty-three thousand four hundred eleven');\nINSERT INTO t3 VALUES(18661, 99199, 'ninety-nine thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(18662, 32163, 'thirty-two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(18663, 68289, 'sixty-eight thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(18664, 90230, 'ninety thousand two hundred thirty');\nINSERT INTO t3 VALUES(18665, 75919, 'seventy-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(18666, 34044, 'thirty-four thousand forty-four');\nINSERT INTO t3 VALUES(18667, 49904, 'forty-nine thousand nine hundred four');\nINSERT INTO t3 VALUES(18668, 85650, 'eighty-five thousand six hundred fifty');\nINSERT INTO t3 VALUES(18669, 18062, 'eighteen thousand sixty-two');\nINSERT INTO t3 VALUES(18670, 22579, 'twenty-two thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(18671, 11010, 'eleven thousand ten');\nINSERT INTO t3 VALUES(18672, 11271, 'eleven thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(18673, 7284, 'seven thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(18674, 18480, 'eighteen thousand four hundred eighty');\nINSERT INTO t3 VALUES(18675, 9578, 'nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(18676, 43174, 'forty-three thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(18677, 75965, 'seventy-five thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(18678, 98446, 'ninety-eight thousand four hundred forty-six');\nINSERT INTO t3 VALUES(18679, 11444, 'eleven thousand four hundred forty-four');\nINSERT INTO t3 VALUES(18680, 98202, 'ninety-eight thousand two hundred two');\nINSERT INTO t3 VALUES(18681, 8258, 'eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(18682, 32675, 'thirty-two thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(18683, 78554, 'seventy-eight thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(18684, 16884, 'sixteen thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(18685, 15310, 'fifteen thousand three hundred ten');\nINSERT INTO t3 VALUES(18686, 35758, 'thirty-five thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(18687, 36913, 'thirty-six thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(18688, 92009, 'ninety-two thousand nine');\nINSERT INTO t3 VALUES(18689, 68205, 'sixty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(18690, 84239, 'eighty-four thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(18691, 88664, 'eighty-eight thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(18692, 97755, 'ninety-seven thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(18693, 7560, 'seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(18694, 55386, 'fifty-five thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(18695, 44610, 'forty-four thousand six hundred ten');\nINSERT INTO t3 VALUES(18696, 27478, 'twenty-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(18697, 47371, 'forty-seven thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(18698, 11486, 'eleven thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(18699, 51099, 'fifty-one thousand ninety-nine');\nINSERT INTO t3 VALUES(18700, 78602, 'seventy-eight thousand six hundred two');\nINSERT INTO t3 VALUES(18701, 63112, 'sixty-three thousand one hundred twelve');\nINSERT INTO t3 VALUES(18702, 27265, 'twenty-seven thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(18703, 70689, 'seventy thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(18704, 90717, 'ninety thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(18705, 25091, 'twenty-five thousand ninety-one');\nINSERT INTO t3 VALUES(18706, 18528, 'eighteen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(18707, 33035, 'thirty-three thousand thirty-five');\nINSERT INTO t3 VALUES(18708, 69001, 'sixty-nine thousand one');\nINSERT INTO t3 VALUES(18709, 78426, 'seventy-eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(18710, 13304, 'thirteen thousand three hundred four');\nINSERT INTO t3 VALUES(18711, 89892, 'eighty-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(18712, 84291, 'eighty-four thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(18713, 87791, 'eighty-seven thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(18714, 90040, 'ninety thousand forty');\nINSERT INTO t3 VALUES(18715, 5994, 'five thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18716, 50395, 'fifty thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(18717, 6911, 'six thousand nine hundred eleven');\nINSERT INTO t3 VALUES(18718, 95743, 'ninety-five thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(18719, 64628, 'sixty-four thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(18720, 22269, 'twenty-two thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(18721, 16314, 'sixteen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(18722, 14946, 'fourteen thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(18723, 52244, 'fifty-two thousand two hundred forty-four');\nINSERT INTO t3 VALUES(18724, 58671, 'fifty-eight thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(18725, 61846, 'sixty-one thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(18726, 74758, 'seventy-four thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(18727, 81530, 'eighty-one thousand five hundred thirty');\nINSERT INTO t3 VALUES(18728, 42428, 'forty-two thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(18729, 24627, 'twenty-four thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(18730, 106, 'one hundred six');\nINSERT INTO t3 VALUES(18731, 42431, 'forty-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(18732, 2282, 'two thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(18733, 79844, 'seventy-nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(18734, 48786, 'forty-eight thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(18735, 85320, 'eighty-five thousand three hundred twenty');\nINSERT INTO t3 VALUES(18736, 11154, 'eleven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(18737, 97251, 'ninety-seven thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(18738, 92147, 'ninety-two thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(18739, 87396, 'eighty-seven thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(18740, 66999, 'sixty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(18741, 13294, 'thirteen thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(18742, 61125, 'sixty-one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(18743, 60732, 'sixty thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(18744, 48337, 'forty-eight thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(18745, 6341, 'six thousand three hundred forty-one');\nINSERT INTO t3 VALUES(18746, 74634, 'seventy-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(18747, 86994, 'eighty-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18748, 42118, 'forty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18749, 31398, 'thirty-one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(18750, 44913, 'forty-four thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(18751, 34848, 'thirty-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(18752, 39400, 'thirty-nine thousand four hundred');\nINSERT INTO t3 VALUES(18753, 56601, 'fifty-six thousand six hundred one');\nINSERT INTO t3 VALUES(18754, 16294, 'sixteen thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(18755, 63656, 'sixty-three thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(18756, 98194, 'ninety-eight thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(18757, 92858, 'ninety-two thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(18758, 65206, 'sixty-five thousand two hundred six');\nINSERT INTO t3 VALUES(18759, 85648, 'eighty-five thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18760, 96686, 'ninety-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(18761, 74897, 'seventy-four thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(18762, 59926, 'fifty-nine thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18763, 64164, 'sixty-four thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(18764, 33597, 'thirty-three thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(18765, 81268, 'eighty-one thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(18766, 28863, 'twenty-eight thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(18767, 43485, 'forty-three thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(18768, 84159, 'eighty-four thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(18769, 45494, 'forty-five thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(18770, 77193, 'seventy-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(18771, 90676, 'ninety thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(18772, 36719, 'thirty-six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(18773, 4193, 'four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(18774, 56371, 'fifty-six thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(18775, 75903, 'seventy-five thousand nine hundred three');\nINSERT INTO t3 VALUES(18776, 42276, 'forty-two thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(18777, 67061, 'sixty-seven thousand sixty-one');\nINSERT INTO t3 VALUES(18778, 19155, 'nineteen thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(18779, 87725, 'eighty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(18780, 76126, 'seventy-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(18781, 17401, 'seventeen thousand four hundred one');\nINSERT INTO t3 VALUES(18782, 6778, 'six thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(18783, 11369, 'eleven thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(18784, 46896, 'forty-six thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(18785, 52100, 'fifty-two thousand one hundred');\nINSERT INTO t3 VALUES(18786, 78444, 'seventy-eight thousand four hundred forty-four');\nINSERT INTO t3 VALUES(18787, 95937, 'ninety-five thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(18788, 59928, 'fifty-nine thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(18789, 66090, 'sixty-six thousand ninety');\nINSERT INTO t3 VALUES(18790, 32284, 'thirty-two thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(18791, 62217, 'sixty-two thousand two hundred seventeen');\nINSERT INTO t3 VALUES(18792, 60527, 'sixty thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(18793, 59742, 'fifty-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(18794, 26273, 'twenty-six thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18795, 70231, 'seventy thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(18796, 96756, 'ninety-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(18797, 79571, 'seventy-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(18798, 53384, 'fifty-three thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(18799, 65062, 'sixty-five thousand sixty-two');\nINSERT INTO t3 VALUES(18800, 72008, 'seventy-two thousand eight');\nINSERT INTO t3 VALUES(18801, 94847, 'ninety-four thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(18802, 3457, 'three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(18803, 47953, 'forty-seven thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(18804, 44271, 'forty-four thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(18805, 83249, 'eighty-three thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(18806, 70124, 'seventy thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(18807, 76273, 'seventy-six thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(18808, 72531, 'seventy-two thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(18809, 76750, 'seventy-six thousand seven hundred fifty');\nINSERT INTO t3 VALUES(18810, 19297, 'nineteen thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(18811, 98994, 'ninety-eight thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18812, 59393, 'fifty-nine thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(18813, 36450, 'thirty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(18814, 29968, 'twenty-nine thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(18815, 97467, 'ninety-seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(18816, 72920, 'seventy-two thousand nine hundred twenty');\nINSERT INTO t3 VALUES(18817, 19864, 'nineteen thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(18818, 65690, 'sixty-five thousand six hundred ninety');\nINSERT INTO t3 VALUES(18819, 44368, 'forty-four thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(18820, 59460, 'fifty-nine thousand four hundred sixty');\nINSERT INTO t3 VALUES(18821, 1117, 'one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(18822, 42064, 'forty-two thousand sixty-four');\nINSERT INTO t3 VALUES(18823, 51994, 'fifty-one thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(18824, 21207, 'twenty-one thousand two hundred seven');\nINSERT INTO t3 VALUES(18825, 70781, 'seventy thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(18826, 71788, 'seventy-one thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(18827, 8187, 'eight thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(18828, 52185, 'fifty-two thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(18829, 43560, 'forty-three thousand five hundred sixty');\nINSERT INTO t3 VALUES(18830, 4447, 'four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(18831, 57691, 'fifty-seven thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(18832, 73173, 'seventy-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(18833, 97262, 'ninety-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(18834, 53716, 'fifty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(18835, 27801, 'twenty-seven thousand eight hundred one');\nINSERT INTO t3 VALUES(18836, 24232, 'twenty-four thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(18837, 65524, 'sixty-five thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(18838, 4322, 'four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(18839, 34317, 'thirty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(18840, 91648, 'ninety-one thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(18841, 75457, 'seventy-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(18842, 65874, 'sixty-five thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(18843, 24299, 'twenty-four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(18844, 18617, 'eighteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(18845, 47054, 'forty-seven thousand fifty-four');\nINSERT INTO t3 VALUES(18846, 76445, 'seventy-six thousand four hundred forty-five');\nINSERT INTO t3 VALUES(18847, 44521, 'forty-four thousand five hundred twenty-one');\nINSERT INTO t3 VALUES(18848, 11903, 'eleven thousand nine hundred three');\nINSERT INTO t3 VALUES(18849, 58548, 'fifty-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(18850, 63366, 'sixty-three thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(18851, 50522, 'fifty thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(18852, 60409, 'sixty thousand four hundred nine');\nINSERT INTO t3 VALUES(18853, 94726, 'ninety-four thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(18854, 8362, 'eight thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(18855, 58704, 'fifty-eight thousand seven hundred four');\nINSERT INTO t3 VALUES(18856, 34083, 'thirty-four thousand eighty-three');\nINSERT INTO t3 VALUES(18857, 32163, 'thirty-two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(18858, 76585, 'seventy-six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(18859, 58877, 'fifty-eight thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(18860, 885, 'eight hundred eighty-five');\nINSERT INTO t3 VALUES(18861, 77870, 'seventy-seven thousand eight hundred seventy');\nINSERT INTO t3 VALUES(18862, 7294, 'seven thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(18863, 88072, 'eighty-eight thousand seventy-two');\nINSERT INTO t3 VALUES(18864, 54439, 'fifty-four thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(18865, 85053, 'eighty-five thousand fifty-three');\nINSERT INTO t3 VALUES(18866, 29349, 'twenty-nine thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(18867, 88188, 'eighty-eight thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(18868, 46796, 'forty-six thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(18869, 68455, 'sixty-eight thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(18870, 44864, 'forty-four thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(18871, 89739, 'eighty-nine thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(18872, 74125, 'seventy-four thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(18873, 1383, 'one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(18874, 26463, 'twenty-six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(18875, 50189, 'fifty thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(18876, 89975, 'eighty-nine thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(18877, 16997, 'sixteen thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(18878, 98227, 'ninety-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(18879, 7065, 'seven thousand sixty-five');\nINSERT INTO t3 VALUES(18880, 91772, 'ninety-one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(18881, 72483, 'seventy-two thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(18882, 37213, 'thirty-seven thousand two hundred thirteen');\nINSERT INTO t3 VALUES(18883, 55182, 'fifty-five thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18884, 65889, 'sixty-five thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(18885, 46315, 'forty-six thousand three hundred fifteen');\nINSERT INTO t3 VALUES(18886, 47201, 'forty-seven thousand two hundred one');\nINSERT INTO t3 VALUES(18887, 92058, 'ninety-two thousand fifty-eight');\nINSERT INTO t3 VALUES(18888, 55764, 'fifty-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(18889, 61412, 'sixty-one thousand four hundred twelve');\nINSERT INTO t3 VALUES(18890, 70546, 'seventy thousand five hundred forty-six');\nINSERT INTO t3 VALUES(18891, 46174, 'forty-six thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(18892, 32242, 'thirty-two thousand two hundred forty-two');\nINSERT INTO t3 VALUES(18893, 62182, 'sixty-two thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(18894, 62651, 'sixty-two thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(18895, 5214, 'five thousand two hundred fourteen');\nINSERT INTO t3 VALUES(18896, 18847, 'eighteen thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(18897, 69003, 'sixty-nine thousand three');\nINSERT INTO t3 VALUES(18898, 57563, 'fifty-seven thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(18899, 78251, 'seventy-eight thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(18900, 34366, 'thirty-four thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(18901, 84677, 'eighty-four thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(18902, 34614, 'thirty-four thousand six hundred fourteen');\nINSERT INTO t3 VALUES(18903, 75476, 'seventy-five thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(18904, 76851, 'seventy-six thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(18905, 84055, 'eighty-four thousand fifty-five');\nINSERT INTO t3 VALUES(18906, 32503, 'thirty-two thousand five hundred three');\nINSERT INTO t3 VALUES(18907, 9465, 'nine thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(18908, 18852, 'eighteen thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(18909, 87675, 'eighty-seven thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(18910, 55541, 'fifty-five thousand five hundred forty-one');\nINSERT INTO t3 VALUES(18911, 1378, 'one thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(18912, 97259, 'ninety-seven thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(18913, 82405, 'eighty-two thousand four hundred five');\nINSERT INTO t3 VALUES(18914, 60871, 'sixty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(18915, 80236, 'eighty thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(18916, 41450, 'forty-one thousand four hundred fifty');\nINSERT INTO t3 VALUES(18917, 71297, 'seventy-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(18918, 92569, 'ninety-two thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(18919, 20765, 'twenty thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(18920, 19735, 'nineteen thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(18921, 84972, 'eighty-four thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(18922, 62076, 'sixty-two thousand seventy-six');\nINSERT INTO t3 VALUES(18923, 94141, 'ninety-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(18924, 59902, 'fifty-nine thousand nine hundred two');\nINSERT INTO t3 VALUES(18925, 97838, 'ninety-seven thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(18926, 85728, 'eighty-five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(18927, 63132, 'sixty-three thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18928, 68867, 'sixty-eight thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(18929, 40247, 'forty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(18930, 77917, 'seventy-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(18931, 81676, 'eighty-one thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(18932, 56925, 'fifty-six thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18933, 3544, 'three thousand five hundred forty-four');\nINSERT INTO t3 VALUES(18934, 67215, 'sixty-seven thousand two hundred fifteen');\nINSERT INTO t3 VALUES(18935, 45788, 'forty-five thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(18936, 39372, 'thirty-nine thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(18937, 87080, 'eighty-seven thousand eighty');\nINSERT INTO t3 VALUES(18938, 74440, 'seventy-four thousand four hundred forty');\nINSERT INTO t3 VALUES(18939, 70762, 'seventy thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(18940, 13355, 'thirteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(18941, 73977, 'seventy-three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(18942, 55475, 'fifty-five thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(18943, 66975, 'sixty-six thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(18944, 73274, 'seventy-three thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(18945, 60413, 'sixty thousand four hundred thirteen');\nINSERT INTO t3 VALUES(18946, 80572, 'eighty thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(18947, 42795, 'forty-two thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(18948, 18583, 'eighteen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(18949, 95420, 'ninety-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(18950, 25248, 'twenty-five thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(18951, 85879, 'eighty-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(18952, 51771, 'fifty-one thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(18953, 44598, 'forty-four thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(18954, 30002, 'thirty thousand two');\nINSERT INTO t3 VALUES(18955, 84066, 'eighty-four thousand sixty-six');\nINSERT INTO t3 VALUES(18956, 8118, 'eight thousand one hundred eighteen');\nINSERT INTO t3 VALUES(18957, 74216, 'seventy-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(18958, 74502, 'seventy-four thousand five hundred two');\nINSERT INTO t3 VALUES(18959, 45132, 'forty-five thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(18960, 66694, 'sixty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(18961, 6417, 'six thousand four hundred seventeen');\nINSERT INTO t3 VALUES(18962, 73161, 'seventy-three thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(18963, 72779, 'seventy-two thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(18964, 53925, 'fifty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(18965, 12992, 'twelve thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(18966, 56070, 'fifty-six thousand seventy');\nINSERT INTO t3 VALUES(18967, 58621, 'fifty-eight thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(18968, 30892, 'thirty thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(18969, 93924, 'ninety-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(18970, 11515, 'eleven thousand five hundred fifteen');\nINSERT INTO t3 VALUES(18971, 33578, 'thirty-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(18972, 50926, 'fifty thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(18973, 59551, 'fifty-nine thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(18974, 32804, 'thirty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(18975, 74070, 'seventy-four thousand seventy');\nINSERT INTO t3 VALUES(18976, 15476, 'fifteen thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(18977, 82143, 'eighty-two thousand one hundred forty-three');\nINSERT INTO t3 VALUES(18978, 60288, 'sixty thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(18979, 34265, 'thirty-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(18980, 98020, 'ninety-eight thousand twenty');\nINSERT INTO t3 VALUES(18981, 36902, 'thirty-six thousand nine hundred two');\nINSERT INTO t3 VALUES(18982, 94328, 'ninety-four thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(18983, 96352, 'ninety-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(18984, 36689, 'thirty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(18985, 27598, 'twenty-seven thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(18986, 38840, 'thirty-eight thousand eight hundred forty');\nINSERT INTO t3 VALUES(18987, 44259, 'forty-four thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(18988, 18362, 'eighteen thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(18989, 37280, 'thirty-seven thousand two hundred eighty');\nINSERT INTO t3 VALUES(18990, 83787, 'eighty-three thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(18991, 75121, 'seventy-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(18992, 10175, 'ten thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(18993, 33943, 'thirty-three thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(18994, 6876, 'six thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(18995, 97034, 'ninety-seven thousand thirty-four');\nINSERT INTO t3 VALUES(18996, 49544, 'forty-nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(18997, 30537, 'thirty thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(18998, 48124, 'forty-eight thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(18999, 35328, 'thirty-five thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(19000, 30960, 'thirty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19001, 26399, 'twenty-six thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(19002, 38409, 'thirty-eight thousand four hundred nine');\nINSERT INTO t3 VALUES(19003, 24082, 'twenty-four thousand eighty-two');\nINSERT INTO t3 VALUES(19004, 62351, 'sixty-two thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(19005, 70781, 'seventy thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(19006, 85776, 'eighty-five thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(19007, 3070, 'three thousand seventy');\nINSERT INTO t3 VALUES(19008, 44907, 'forty-four thousand nine hundred seven');\nINSERT INTO t3 VALUES(19009, 20046, 'twenty thousand forty-six');\nINSERT INTO t3 VALUES(19010, 24002, 'twenty-four thousand two');\nINSERT INTO t3 VALUES(19011, 84822, 'eighty-four thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19012, 92772, 'ninety-two thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19013, 27401, 'twenty-seven thousand four hundred one');\nINSERT INTO t3 VALUES(19014, 81771, 'eighty-one thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(19015, 27904, 'twenty-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(19016, 82691, 'eighty-two thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(19017, 96336, 'ninety-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(19018, 45300, 'forty-five thousand three hundred');\nINSERT INTO t3 VALUES(19019, 85509, 'eighty-five thousand five hundred nine');\nINSERT INTO t3 VALUES(19020, 69922, 'sixty-nine thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(19021, 57586, 'fifty-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(19022, 70111, 'seventy thousand one hundred eleven');\nINSERT INTO t3 VALUES(19023, 22784, 'twenty-two thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(19024, 92222, 'ninety-two thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(19025, 86158, 'eighty-six thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(19026, 35704, 'thirty-five thousand seven hundred four');\nINSERT INTO t3 VALUES(19027, 21669, 'twenty-one thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(19028, 61658, 'sixty-one thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(19029, 5937, 'five thousand nine hundred thirty-seven');\nINSERT INTO t3 VALUES(19030, 2332, 'two thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(19031, 3516, 'three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(19032, 79192, 'seventy-nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(19033, 55569, 'fifty-five thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(19034, 48449, 'forty-eight thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(19035, 27747, 'twenty-seven thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(19036, 13815, 'thirteen thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(19037, 12806, 'twelve thousand eight hundred six');\nINSERT INTO t3 VALUES(19038, 3871, 'three thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19039, 92915, 'ninety-two thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(19040, 47689, 'forty-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(19041, 30862, 'thirty thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(19042, 2879, 'two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(19043, 98883, 'ninety-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(19044, 79072, 'seventy-nine thousand seventy-two');\nINSERT INTO t3 VALUES(19045, 98286, 'ninety-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(19046, 59325, 'fifty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(19047, 82941, 'eighty-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(19048, 52351, 'fifty-two thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(19049, 38304, 'thirty-eight thousand three hundred four');\nINSERT INTO t3 VALUES(19050, 45242, 'forty-five thousand two hundred forty-two');\nINSERT INTO t3 VALUES(19051, 53761, 'fifty-three thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(19052, 78370, 'seventy-eight thousand three hundred seventy');\nINSERT INTO t3 VALUES(19053, 45632, 'forty-five thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(19054, 91602, 'ninety-one thousand six hundred two');\nINSERT INTO t3 VALUES(19055, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(19056, 10216, 'ten thousand two hundred sixteen');\nINSERT INTO t3 VALUES(19057, 99867, 'ninety-nine thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(19058, 98142, 'ninety-eight thousand one hundred forty-two');\nINSERT INTO t3 VALUES(19059, 14549, 'fourteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(19060, 14907, 'fourteen thousand nine hundred seven');\nINSERT INTO t3 VALUES(19061, 71373, 'seventy-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(19062, 63785, 'sixty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(19063, 5362, 'five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(19064, 30362, 'thirty thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(19065, 54061, 'fifty-four thousand sixty-one');\nINSERT INTO t3 VALUES(19066, 12468, 'twelve thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19067, 85315, 'eighty-five thousand three hundred fifteen');\nINSERT INTO t3 VALUES(19068, 82368, 'eighty-two thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(19069, 11763, 'eleven thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(19070, 55905, 'fifty-five thousand nine hundred five');\nINSERT INTO t3 VALUES(19071, 12865, 'twelve thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(19072, 65471, 'sixty-five thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(19073, 82453, 'eighty-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(19074, 96920, 'ninety-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(19075, 23505, 'twenty-three thousand five hundred five');\nINSERT INTO t3 VALUES(19076, 57822, 'fifty-seven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19077, 75785, 'seventy-five thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(19078, 33855, 'thirty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(19079, 52546, 'fifty-two thousand five hundred forty-six');\nINSERT INTO t3 VALUES(19080, 16080, 'sixteen thousand eighty');\nINSERT INTO t3 VALUES(19081, 48402, 'forty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(19082, 45543, 'forty-five thousand five hundred forty-three');\nINSERT INTO t3 VALUES(19083, 81897, 'eighty-one thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(19084, 64036, 'sixty-four thousand thirty-six');\nINSERT INTO t3 VALUES(19085, 71160, 'seventy-one thousand one hundred sixty');\nINSERT INTO t3 VALUES(19086, 42053, 'forty-two thousand fifty-three');\nINSERT INTO t3 VALUES(19087, 51602, 'fifty-one thousand six hundred two');\nINSERT INTO t3 VALUES(19088, 8241, 'eight thousand two hundred forty-one');\nINSERT INTO t3 VALUES(19089, 69556, 'sixty-nine thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(19090, 1356, 'one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(19091, 27155, 'twenty-seven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(19092, 16002, 'sixteen thousand two');\nINSERT INTO t3 VALUES(19093, 12649, 'twelve thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(19094, 8934, 'eight thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19095, 26227, 'twenty-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(19096, 50221, 'fifty thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(19097, 67833, 'sixty-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(19098, 92708, 'ninety-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(19099, 98898, 'ninety-eight thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(19100, 16873, 'sixteen thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(19101, 88274, 'eighty-eight thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(19102, 13946, 'thirteen thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(19103, 68794, 'sixty-eight thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(19104, 53188, 'fifty-three thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(19105, 82426, 'eighty-two thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(19106, 88988, 'eighty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(19107, 51507, 'fifty-one thousand five hundred seven');\nINSERT INTO t3 VALUES(19108, 23007, 'twenty-three thousand seven');\nINSERT INTO t3 VALUES(19109, 55150, 'fifty-five thousand one hundred fifty');\nINSERT INTO t3 VALUES(19110, 40871, 'forty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19111, 12719, 'twelve thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(19112, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(19113, 96995, 'ninety-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(19114, 86974, 'eighty-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(19115, 68066, 'sixty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(19116, 77620, 'seventy-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(19117, 75970, 'seventy-five thousand nine hundred seventy');\nINSERT INTO t3 VALUES(19118, 3491, 'three thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(19119, 6774, 'six thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(19120, 56688, 'fifty-six thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19121, 55841, 'fifty-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(19122, 32028, 'thirty-two thousand twenty-eight');\nINSERT INTO t3 VALUES(19123, 1938, 'one thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(19124, 6840, 'six thousand eight hundred forty');\nINSERT INTO t3 VALUES(19125, 81500, 'eighty-one thousand five hundred');\nINSERT INTO t3 VALUES(19126, 77506, 'seventy-seven thousand five hundred six');\nINSERT INTO t3 VALUES(19127, 74941, 'seventy-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(19128, 84442, 'eighty-four thousand four hundred forty-two');\nINSERT INTO t3 VALUES(19129, 19488, 'nineteen thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(19130, 72826, 'seventy-two thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(19131, 51902, 'fifty-one thousand nine hundred two');\nINSERT INTO t3 VALUES(19132, 50409, 'fifty thousand four hundred nine');\nINSERT INTO t3 VALUES(19133, 89130, 'eighty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(19134, 25031, 'twenty-five thousand thirty-one');\nINSERT INTO t3 VALUES(19135, 29878, 'twenty-nine thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(19136, 94723, 'ninety-four thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(19137, 44705, 'forty-four thousand seven hundred five');\nINSERT INTO t3 VALUES(19138, 7336, 'seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(19139, 71163, 'seventy-one thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(19140, 37845, 'thirty-seven thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(19141, 83676, 'eighty-three thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(19142, 78520, 'seventy-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(19143, 43294, 'forty-three thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(19144, 15680, 'fifteen thousand six hundred eighty');\nINSERT INTO t3 VALUES(19145, 649, 'six hundred forty-nine');\nINSERT INTO t3 VALUES(19146, 38942, 'thirty-eight thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(19147, 54722, 'fifty-four thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(19148, 32631, 'thirty-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(19149, 32537, 'thirty-two thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(19150, 12435, 'twelve thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(19151, 57531, 'fifty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(19152, 18768, 'eighteen thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(19153, 7575, 'seven thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(19154, 57788, 'fifty-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(19155, 99296, 'ninety-nine thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(19156, 99079, 'ninety-nine thousand seventy-nine');\nINSERT INTO t3 VALUES(19157, 51450, 'fifty-one thousand four hundred fifty');\nINSERT INTO t3 VALUES(19158, 76474, 'seventy-six thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(19159, 25216, 'twenty-five thousand two hundred sixteen');\nINSERT INTO t3 VALUES(19160, 87368, 'eighty-seven thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(19161, 38802, 'thirty-eight thousand eight hundred two');\nINSERT INTO t3 VALUES(19162, 90680, 'ninety thousand six hundred eighty');\nINSERT INTO t3 VALUES(19163, 27929, 'twenty-seven thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(19164, 11041, 'eleven thousand forty-one');\nINSERT INTO t3 VALUES(19165, 29294, 'twenty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(19166, 40817, 'forty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(19167, 94846, 'ninety-four thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(19168, 43202, 'forty-three thousand two hundred two');\nINSERT INTO t3 VALUES(19169, 4176, 'four thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(19170, 52655, 'fifty-two thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(19171, 30971, 'thirty thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(19172, 36164, 'thirty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(19173, 21434, 'twenty-one thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(19174, 7540, 'seven thousand five hundred forty');\nINSERT INTO t3 VALUES(19175, 21745, 'twenty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(19176, 74374, 'seventy-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(19177, 10027, 'ten thousand twenty-seven');\nINSERT INTO t3 VALUES(19178, 69286, 'sixty-nine thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(19179, 39631, 'thirty-nine thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(19180, 1756, 'one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(19181, 40258, 'forty thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(19182, 79403, 'seventy-nine thousand four hundred three');\nINSERT INTO t3 VALUES(19183, 63237, 'sixty-three thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(19184, 45039, 'forty-five thousand thirty-nine');\nINSERT INTO t3 VALUES(19185, 3482, 'three thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(19186, 9956, 'nine thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(19187, 84470, 'eighty-four thousand four hundred seventy');\nINSERT INTO t3 VALUES(19188, 42458, 'forty-two thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(19189, 68936, 'sixty-eight thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(19190, 16164, 'sixteen thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(19191, 2558, 'two thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(19192, 8798, 'eight thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(19193, 20677, 'twenty thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(19194, 74619, 'seventy-four thousand six hundred nineteen');\nINSERT INTO t3 VALUES(19195, 8139, 'eight thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(19196, 52851, 'fifty-two thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(19197, 23480, 'twenty-three thousand four hundred eighty');\nINSERT INTO t3 VALUES(19198, 50974, 'fifty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(19199, 83924, 'eighty-three thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(19200, 48805, 'forty-eight thousand eight hundred five');\nINSERT INTO t3 VALUES(19201, 74834, 'seventy-four thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(19202, 38775, 'thirty-eight thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(19203, 73541, 'seventy-three thousand five hundred forty-one');\nINSERT INTO t3 VALUES(19204, 5628, 'five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(19205, 34459, 'thirty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(19206, 99156, 'ninety-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(19207, 14020, 'fourteen thousand twenty');\nINSERT INTO t3 VALUES(19208, 25878, 'twenty-five thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(19209, 3654, 'three thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(19210, 37485, 'thirty-seven thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(19211, 60960, 'sixty thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19212, 42698, 'forty-two thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(19213, 37372, 'thirty-seven thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(19214, 35289, 'thirty-five thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(19215, 63126, 'sixty-three thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(19216, 4885, 'four thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(19217, 82297, 'eighty-two thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(19218, 14835, 'fourteen thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(19219, 89944, 'eighty-nine thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(19220, 29919, 'twenty-nine thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(19221, 76797, 'seventy-six thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(19222, 49302, 'forty-nine thousand three hundred two');\nINSERT INTO t3 VALUES(19223, 26299, 'twenty-six thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(19224, 77060, 'seventy-seven thousand sixty');\nINSERT INTO t3 VALUES(19225, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(19226, 84837, 'eighty-four thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(19227, 14129, 'fourteen thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19228, 86156, 'eighty-six thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(19229, 38468, 'thirty-eight thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19230, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19231, 27960, 'twenty-seven thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19232, 10536, 'ten thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(19233, 33587, 'thirty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(19234, 54041, 'fifty-four thousand forty-one');\nINSERT INTO t3 VALUES(19235, 72170, 'seventy-two thousand one hundred seventy');\nINSERT INTO t3 VALUES(19236, 22027, 'twenty-two thousand twenty-seven');\nINSERT INTO t3 VALUES(19237, 86352, 'eighty-six thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(19238, 11058, 'eleven thousand fifty-eight');\nINSERT INTO t3 VALUES(19239, 81770, 'eighty-one thousand seven hundred seventy');\nINSERT INTO t3 VALUES(19240, 66570, 'sixty-six thousand five hundred seventy');\nINSERT INTO t3 VALUES(19241, 58845, 'fifty-eight thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(19242, 47560, 'forty-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(19243, 24883, 'twenty-four thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(19244, 84170, 'eighty-four thousand one hundred seventy');\nINSERT INTO t3 VALUES(19245, 80654, 'eighty thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(19246, 59459, 'fifty-nine thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(19247, 66891, 'sixty-six thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(19248, 82190, 'eighty-two thousand one hundred ninety');\nINSERT INTO t3 VALUES(19249, 4497, 'four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19250, 69744, 'sixty-nine thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(19251, 93005, 'ninety-three thousand five');\nINSERT INTO t3 VALUES(19252, 24295, 'twenty-four thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(19253, 40096, 'forty thousand ninety-six');\nINSERT INTO t3 VALUES(19254, 11787, 'eleven thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(19255, 29662, 'twenty-nine thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(19256, 25747, 'twenty-five thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(19257, 53060, 'fifty-three thousand sixty');\nINSERT INTO t3 VALUES(19258, 42716, 'forty-two thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(19259, 13387, 'thirteen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(19260, 57184, 'fifty-seven thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(19261, 8762, 'eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19262, 91502, 'ninety-one thousand five hundred two');\nINSERT INTO t3 VALUES(19263, 90584, 'ninety thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(19264, 20696, 'twenty thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(19265, 28461, 'twenty-eight thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(19266, 56947, 'fifty-six thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(19267, 62628, 'sixty-two thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(19268, 36006, 'thirty-six thousand six');\nINSERT INTO t3 VALUES(19269, 62814, 'sixty-two thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(19270, 19012, 'nineteen thousand twelve');\nINSERT INTO t3 VALUES(19271, 5111, 'five thousand one hundred eleven');\nINSERT INTO t3 VALUES(19272, 17350, 'seventeen thousand three hundred fifty');\nINSERT INTO t3 VALUES(19273, 31091, 'thirty-one thousand ninety-one');\nINSERT INTO t3 VALUES(19274, 19263, 'nineteen thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(19275, 15340, 'fifteen thousand three hundred forty');\nINSERT INTO t3 VALUES(19276, 43789, 'forty-three thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(19277, 13304, 'thirteen thousand three hundred four');\nINSERT INTO t3 VALUES(19278, 84999, 'eighty-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(19279, 98484, 'ninety-eight thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(19280, 3135, 'three thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(19281, 13038, 'thirteen thousand thirty-eight');\nINSERT INTO t3 VALUES(19282, 27710, 'twenty-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(19283, 98051, 'ninety-eight thousand fifty-one');\nINSERT INTO t3 VALUES(19284, 72987, 'seventy-two thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(19285, 36497, 'thirty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19286, 9566, 'nine thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(19287, 22220, 'twenty-two thousand two hundred twenty');\nINSERT INTO t3 VALUES(19288, 55902, 'fifty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(19289, 68522, 'sixty-eight thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(19290, 22980, 'twenty-two thousand nine hundred eighty');\nINSERT INTO t3 VALUES(19291, 21642, 'twenty-one thousand six hundred forty-two');\nINSERT INTO t3 VALUES(19292, 74886, 'seventy-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(19293, 78815, 'seventy-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(19294, 41243, 'forty-one thousand two hundred forty-three');\nINSERT INTO t3 VALUES(19295, 62219, 'sixty-two thousand two hundred nineteen');\nINSERT INTO t3 VALUES(19296, 8671, 'eight thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(19297, 68166, 'sixty-eight thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(19298, 13329, 'thirteen thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(19299, 62502, 'sixty-two thousand five hundred two');\nINSERT INTO t3 VALUES(19300, 57816, 'fifty-seven thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(19301, 43200, 'forty-three thousand two hundred');\nINSERT INTO t3 VALUES(19302, 73233, 'seventy-three thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(19303, 87550, 'eighty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(19304, 48825, 'forty-eight thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(19305, 52004, 'fifty-two thousand four');\nINSERT INTO t3 VALUES(19306, 66329, 'sixty-six thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(19307, 50483, 'fifty thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(19308, 81052, 'eighty-one thousand fifty-two');\nINSERT INTO t3 VALUES(19309, 42063, 'forty-two thousand sixty-three');\nINSERT INTO t3 VALUES(19310, 63746, 'sixty-three thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(19311, 38013, 'thirty-eight thousand thirteen');\nINSERT INTO t3 VALUES(19312, 83479, 'eighty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19313, 48264, 'forty-eight thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(19314, 77479, 'seventy-seven thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19315, 34929, 'thirty-four thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(19316, 93940, 'ninety-three thousand nine hundred forty');\nINSERT INTO t3 VALUES(19317, 74500, 'seventy-four thousand five hundred');\nINSERT INTO t3 VALUES(19318, 32088, 'thirty-two thousand eighty-eight');\nINSERT INTO t3 VALUES(19319, 6824, 'six thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(19320, 29822, 'twenty-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19321, 35919, 'thirty-five thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(19322, 36168, 'thirty-six thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(19323, 50482, 'fifty thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(19324, 54143, 'fifty-four thousand one hundred forty-three');\nINSERT INTO t3 VALUES(19325, 54764, 'fifty-four thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(19326, 38564, 'thirty-eight thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(19327, 52634, 'fifty-two thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(19328, 21695, 'twenty-one thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(19329, 40688, 'forty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19330, 73201, 'seventy-three thousand two hundred one');\nINSERT INTO t3 VALUES(19331, 8022, 'eight thousand twenty-two');\nINSERT INTO t3 VALUES(19332, 45075, 'forty-five thousand seventy-five');\nINSERT INTO t3 VALUES(19333, 24083, 'twenty-four thousand eighty-three');\nINSERT INTO t3 VALUES(19334, 29778, 'twenty-nine thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(19335, 78567, 'seventy-eight thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(19336, 12268, 'twelve thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(19337, 71123, 'seventy-one thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(19338, 61497, 'sixty-one thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19339, 68928, 'sixty-eight thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(19340, 73731, 'seventy-three thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(19341, 57916, 'fifty-seven thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(19342, 38249, 'thirty-eight thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(19343, 66808, 'sixty-six thousand eight hundred eight');\nINSERT INTO t3 VALUES(19344, 50991, 'fifty thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(19345, 97340, 'ninety-seven thousand three hundred forty');\nINSERT INTO t3 VALUES(19346, 24648, 'twenty-four thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(19347, 61487, 'sixty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(19348, 20005, 'twenty thousand five');\nINSERT INTO t3 VALUES(19349, 10661, 'ten thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(19350, 24221, 'twenty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(19351, 70621, 'seventy thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(19352, 95002, 'ninety-five thousand two');\nINSERT INTO t3 VALUES(19353, 20369, 'twenty thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(19354, 81437, 'eighty-one thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(19355, 38349, 'thirty-eight thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(19356, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(19357, 47986, 'forty-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(19358, 24843, 'twenty-four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(19359, 62771, 'sixty-two thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(19360, 55203, 'fifty-five thousand two hundred three');\nINSERT INTO t3 VALUES(19361, 20827, 'twenty thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(19362, 75422, 'seventy-five thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(19363, 23511, 'twenty-three thousand five hundred eleven');\nINSERT INTO t3 VALUES(19364, 44941, 'forty-four thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(19365, 76031, 'seventy-six thousand thirty-one');\nINSERT INTO t3 VALUES(19366, 47483, 'forty-seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(19367, 22838, 'twenty-two thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(19368, 40943, 'forty thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(19369, 39962, 'thirty-nine thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(19370, 44467, 'forty-four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(19371, 40881, 'forty thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(19372, 40948, 'forty thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(19373, 15781, 'fifteen thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(19374, 42097, 'forty-two thousand ninety-seven');\nINSERT INTO t3 VALUES(19375, 50040, 'fifty thousand forty');\nINSERT INTO t3 VALUES(19376, 23848, 'twenty-three thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(19377, 34824, 'thirty-four thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(19378, 63401, 'sixty-three thousand four hundred one');\nINSERT INTO t3 VALUES(19379, 4028, 'four thousand twenty-eight');\nINSERT INTO t3 VALUES(19380, 11031, 'eleven thousand thirty-one');\nINSERT INTO t3 VALUES(19381, 20010, 'twenty thousand ten');\nINSERT INTO t3 VALUES(19382, 79127, 'seventy-nine thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(19383, 91267, 'ninety-one thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(19384, 37367, 'thirty-seven thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(19385, 24251, 'twenty-four thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(19386, 4007, 'four thousand seven');\nINSERT INTO t3 VALUES(19387, 93082, 'ninety-three thousand eighty-two');\nINSERT INTO t3 VALUES(19388, 92026, 'ninety-two thousand twenty-six');\nINSERT INTO t3 VALUES(19389, 79191, 'seventy-nine thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(19390, 54203, 'fifty-four thousand two hundred three');\nINSERT INTO t3 VALUES(19391, 23416, 'twenty-three thousand four hundred sixteen');\nINSERT INTO t3 VALUES(19392, 1644, 'one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(19393, 37158, 'thirty-seven thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(19394, 3649, 'three thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(19395, 23719, 'twenty-three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(19396, 13818, 'thirteen thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(19397, 14942, 'fourteen thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(19398, 47030, 'forty-seven thousand thirty');\nINSERT INTO t3 VALUES(19399, 75713, 'seventy-five thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(19400, 4984, 'four thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(19401, 59030, 'fifty-nine thousand thirty');\nINSERT INTO t3 VALUES(19402, 85772, 'eighty-five thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19403, 58356, 'fifty-eight thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(19404, 27157, 'twenty-seven thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(19405, 81669, 'eighty-one thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(19406, 12946, 'twelve thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(19407, 10503, 'ten thousand five hundred three');\nINSERT INTO t3 VALUES(19408, 90744, 'ninety thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(19409, 17218, 'seventeen thousand two hundred eighteen');\nINSERT INTO t3 VALUES(19410, 75769, 'seventy-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(19411, 20569, 'twenty thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(19412, 4762, 'four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19413, 52701, 'fifty-two thousand seven hundred one');\nINSERT INTO t3 VALUES(19414, 58258, 'fifty-eight thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(19415, 10573, 'ten thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(19416, 66853, 'sixty-six thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(19417, 30150, 'thirty thousand one hundred fifty');\nINSERT INTO t3 VALUES(19418, 29555, 'twenty-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(19419, 40950, 'forty thousand nine hundred fifty');\nINSERT INTO t3 VALUES(19420, 17094, 'seventeen thousand ninety-four');\nINSERT INTO t3 VALUES(19421, 16641, 'sixteen thousand six hundred forty-one');\nINSERT INTO t3 VALUES(19422, 27514, 'twenty-seven thousand five hundred fourteen');\nINSERT INTO t3 VALUES(19423, 74113, 'seventy-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(19424, 19084, 'nineteen thousand eighty-four');\nINSERT INTO t3 VALUES(19425, 67528, 'sixty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(19426, 94108, 'ninety-four thousand one hundred eight');\nINSERT INTO t3 VALUES(19427, 7342, 'seven thousand three hundred forty-two');\nINSERT INTO t3 VALUES(19428, 87382, 'eighty-seven thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(19429, 6274, 'six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(19430, 8839, 'eight thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(19431, 82365, 'eighty-two thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(19432, 8566, 'eight thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(19433, 81837, 'eighty-one thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(19434, 69217, 'sixty-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(19435, 72010, 'seventy-two thousand ten');\nINSERT INTO t3 VALUES(19436, 65223, 'sixty-five thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(19437, 27739, 'twenty-seven thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(19438, 74026, 'seventy-four thousand twenty-six');\nINSERT INTO t3 VALUES(19439, 50419, 'fifty thousand four hundred nineteen');\nINSERT INTO t3 VALUES(19440, 55579, 'fifty-five thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(19441, 34087, 'thirty-four thousand eighty-seven');\nINSERT INTO t3 VALUES(19442, 41468, 'forty-one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19443, 60871, 'sixty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19444, 76019, 'seventy-six thousand nineteen');\nINSERT INTO t3 VALUES(19445, 46668, 'forty-six thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(19446, 42665, 'forty-two thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19447, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19448, 38321, 'thirty-eight thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(19449, 80086, 'eighty thousand eighty-six');\nINSERT INTO t3 VALUES(19450, 39787, 'thirty-nine thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(19451, 19767, 'nineteen thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(19452, 34380, 'thirty-four thousand three hundred eighty');\nINSERT INTO t3 VALUES(19453, 28171, 'twenty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(19454, 90990, 'ninety thousand nine hundred ninety');\nINSERT INTO t3 VALUES(19455, 79448, 'seventy-nine thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(19456, 76235, 'seventy-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(19457, 23829, 'twenty-three thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(19458, 49486, 'forty-nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(19459, 34634, 'thirty-four thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(19460, 52118, 'fifty-two thousand one hundred eighteen');\nINSERT INTO t3 VALUES(19461, 50940, 'fifty thousand nine hundred forty');\nINSERT INTO t3 VALUES(19462, 71601, 'seventy-one thousand six hundred one');\nINSERT INTO t3 VALUES(19463, 1992, 'one thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(19464, 24335, 'twenty-four thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(19465, 20424, 'twenty thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(19466, 93259, 'ninety-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(19467, 26351, 'twenty-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(19468, 75270, 'seventy-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(19469, 88988, 'eighty-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(19470, 39984, 'thirty-nine thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(19471, 96634, 'ninety-six thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(19472, 1772, 'one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19473, 71056, 'seventy-one thousand fifty-six');\nINSERT INTO t3 VALUES(19474, 62891, 'sixty-two thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(19475, 69856, 'sixty-nine thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(19476, 81369, 'eighty-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(19477, 8940, 'eight thousand nine hundred forty');\nINSERT INTO t3 VALUES(19478, 66439, 'sixty-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(19479, 66313, 'sixty-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19480, 16695, 'sixteen thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(19481, 70150, 'seventy thousand one hundred fifty');\nINSERT INTO t3 VALUES(19482, 79462, 'seventy-nine thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(19483, 21151, 'twenty-one thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(19484, 1070, 'one thousand seventy');\nINSERT INTO t3 VALUES(19485, 34701, 'thirty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(19486, 58249, 'fifty-eight thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(19487, 23890, 'twenty-three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(19488, 48438, 'forty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(19489, 33987, 'thirty-three thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(19490, 6411, 'six thousand four hundred eleven');\nINSERT INTO t3 VALUES(19491, 24962, 'twenty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(19492, 90714, 'ninety thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(19493, 65087, 'sixty-five thousand eighty-seven');\nINSERT INTO t3 VALUES(19494, 93866, 'ninety-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(19495, 25135, 'twenty-five thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(19496, 48147, 'forty-eight thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(19497, 42033, 'forty-two thousand thirty-three');\nINSERT INTO t3 VALUES(19498, 71644, 'seventy-one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(19499, 49267, 'forty-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(19500, 90474, 'ninety thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(19501, 24721, 'twenty-four thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(19502, 66812, 'sixty-six thousand eight hundred twelve');\nINSERT INTO t3 VALUES(19503, 85934, 'eighty-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19504, 29788, 'twenty-nine thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(19505, 4555, 'four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(19506, 78210, 'seventy-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(19507, 29423, 'twenty-nine thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(19508, 99737, 'ninety-nine thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(19509, 65009, 'sixty-five thousand nine');\nINSERT INTO t3 VALUES(19510, 82090, 'eighty-two thousand ninety');\nINSERT INTO t3 VALUES(19511, 12260, 'twelve thousand two hundred sixty');\nINSERT INTO t3 VALUES(19512, 62869, 'sixty-two thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(19513, 29318, 'twenty-nine thousand three hundred eighteen');\nINSERT INTO t3 VALUES(19514, 56175, 'fifty-six thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(19515, 3130, 'three thousand one hundred thirty');\nINSERT INTO t3 VALUES(19516, 51537, 'fifty-one thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(19517, 76463, 'seventy-six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(19518, 2425, 'two thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(19519, 93173, 'ninety-three thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(19520, 66383, 'sixty-six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(19521, 99310, 'ninety-nine thousand three hundred ten');\nINSERT INTO t3 VALUES(19522, 32574, 'thirty-two thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(19523, 99192, 'ninety-nine thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(19524, 84320, 'eighty-four thousand three hundred twenty');\nINSERT INTO t3 VALUES(19525, 69763, 'sixty-nine thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(19526, 80323, 'eighty thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(19527, 94322, 'ninety-four thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(19528, 49608, 'forty-nine thousand six hundred eight');\nINSERT INTO t3 VALUES(19529, 1716, 'one thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(19530, 14239, 'fourteen thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(19531, 69469, 'sixty-nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(19532, 38129, 'thirty-eight thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19533, 57751, 'fifty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(19534, 83980, 'eighty-three thousand nine hundred eighty');\nINSERT INTO t3 VALUES(19535, 3741, 'three thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(19536, 43682, 'forty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(19537, 19228, 'nineteen thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(19538, 27463, 'twenty-seven thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(19539, 66551, 'sixty-six thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(19540, 96082, 'ninety-six thousand eighty-two');\nINSERT INTO t3 VALUES(19541, 56533, 'fifty-six thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(19542, 73140, 'seventy-three thousand one hundred forty');\nINSERT INTO t3 VALUES(19543, 17485, 'seventeen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(19544, 96640, 'ninety-six thousand six hundred forty');\nINSERT INTO t3 VALUES(19545, 74765, 'seventy-four thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(19546, 42865, 'forty-two thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(19547, 99163, 'ninety-nine thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(19548, 75413, 'seventy-five thousand four hundred thirteen');\nINSERT INTO t3 VALUES(19549, 7084, 'seven thousand eighty-four');\nINSERT INTO t3 VALUES(19550, 17387, 'seventeen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(19551, 47377, 'forty-seven thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(19552, 5600, 'five thousand six hundred');\nINSERT INTO t3 VALUES(19553, 47422, 'forty-seven thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(19554, 71011, 'seventy-one thousand eleven');\nINSERT INTO t3 VALUES(19555, 13051, 'thirteen thousand fifty-one');\nINSERT INTO t3 VALUES(19556, 49894, 'forty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(19557, 9139, 'nine thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(19558, 65841, 'sixty-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(19559, 47289, 'forty-seven thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(19560, 32328, 'thirty-two thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(19561, 25482, 'twenty-five thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(19562, 67366, 'sixty-seven thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(19563, 54187, 'fifty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(19564, 60024, 'sixty thousand twenty-four');\nINSERT INTO t3 VALUES(19565, 81200, 'eighty-one thousand two hundred');\nINSERT INTO t3 VALUES(19566, 92367, 'ninety-two thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(19567, 65367, 'sixty-five thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(19568, 40393, 'forty thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(19569, 43767, 'forty-three thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(19570, 69296, 'sixty-nine thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(19571, 6751, 'six thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(19572, 79303, 'seventy-nine thousand three hundred three');\nINSERT INTO t3 VALUES(19573, 10762, 'ten thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(19574, 56400, 'fifty-six thousand four hundred');\nINSERT INTO t3 VALUES(19575, 28473, 'twenty-eight thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(19576, 70473, 'seventy thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(19577, 79981, 'seventy-nine thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(19578, 53920, 'fifty-three thousand nine hundred twenty');\nINSERT INTO t3 VALUES(19579, 62161, 'sixty-two thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(19580, 22223, 'twenty-two thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(19581, 46901, 'forty-six thousand nine hundred one');\nINSERT INTO t3 VALUES(19582, 1420, 'one thousand four hundred twenty');\nINSERT INTO t3 VALUES(19583, 2379, 'two thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(19584, 56826, 'fifty-six thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(19585, 71097, 'seventy-one thousand ninety-seven');\nINSERT INTO t3 VALUES(19586, 83243, 'eighty-three thousand two hundred forty-three');\nINSERT INTO t3 VALUES(19587, 62366, 'sixty-two thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(19588, 72168, 'seventy-two thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(19589, 34441, 'thirty-four thousand four hundred forty-one');\nINSERT INTO t3 VALUES(19590, 35373, 'thirty-five thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(19591, 66907, 'sixty-six thousand nine hundred seven');\nINSERT INTO t3 VALUES(19592, 51812, 'fifty-one thousand eight hundred twelve');\nINSERT INTO t3 VALUES(19593, 50333, 'fifty thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(19594, 94849, 'ninety-four thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(19595, 68171, 'sixty-eight thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(19596, 56179, 'fifty-six thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(19597, 60905, 'sixty thousand nine hundred five');\nINSERT INTO t3 VALUES(19598, 51465, 'fifty-one thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(19599, 71288, 'seventy-one thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(19600, 10479, 'ten thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19601, 54583, 'fifty-four thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(19602, 19665, 'nineteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19603, 74329, 'seventy-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(19604, 99730, 'ninety-nine thousand seven hundred thirty');\nINSERT INTO t3 VALUES(19605, 27510, 'twenty-seven thousand five hundred ten');\nINSERT INTO t3 VALUES(19606, 61606, 'sixty-one thousand six hundred six');\nINSERT INTO t3 VALUES(19607, 50992, 'fifty thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(19608, 59499, 'fifty-nine thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(19609, 19786, 'nineteen thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(19610, 96247, 'ninety-six thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(19611, 84024, 'eighty-four thousand twenty-four');\nINSERT INTO t3 VALUES(19612, 5501, 'five thousand five hundred one');\nINSERT INTO t3 VALUES(19613, 77281, 'seventy-seven thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(19614, 31446, 'thirty-one thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19615, 13030, 'thirteen thousand thirty');\nINSERT INTO t3 VALUES(19616, 99772, 'ninety-nine thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(19617, 74603, 'seventy-four thousand six hundred three');\nINSERT INTO t3 VALUES(19618, 79584, 'seventy-nine thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(19619, 70165, 'seventy thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(19620, 19582, 'nineteen thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(19621, 84299, 'eighty-four thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(19622, 39072, 'thirty-nine thousand seventy-two');\nINSERT INTO t3 VALUES(19623, 90871, 'ninety thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19624, 10223, 'ten thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(19625, 13913, 'thirteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(19626, 66601, 'sixty-six thousand six hundred one');\nINSERT INTO t3 VALUES(19627, 71461, 'seventy-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(19628, 63563, 'sixty-three thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(19629, 18564, 'eighteen thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(19630, 49072, 'forty-nine thousand seventy-two');\nINSERT INTO t3 VALUES(19631, 18366, 'eighteen thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(19632, 20203, 'twenty thousand two hundred three');\nINSERT INTO t3 VALUES(19633, 85191, 'eighty-five thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(19634, 1383, 'one thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(19635, 38597, 'thirty-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(19636, 47337, 'forty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(19637, 55480, 'fifty-five thousand four hundred eighty');\nINSERT INTO t3 VALUES(19638, 32288, 'thirty-two thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(19639, 37063, 'thirty-seven thousand sixty-three');\nINSERT INTO t3 VALUES(19640, 10462, 'ten thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(19641, 8688, 'eight thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19642, 39222, 'thirty-nine thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(19643, 54962, 'fifty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(19644, 77710, 'seventy-seven thousand seven hundred ten');\nINSERT INTO t3 VALUES(19645, 43534, 'forty-three thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(19646, 24987, 'twenty-four thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(19647, 85361, 'eighty-five thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(19648, 30092, 'thirty thousand ninety-two');\nINSERT INTO t3 VALUES(19649, 43636, 'forty-three thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(19650, 26230, 'twenty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(19651, 84234, 'eighty-four thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(19652, 32251, 'thirty-two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(19653, 882, 'eight hundred eighty-two');\nINSERT INTO t3 VALUES(19654, 92107, 'ninety-two thousand one hundred seven');\nINSERT INTO t3 VALUES(19655, 99716, 'ninety-nine thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(19656, 50542, 'fifty thousand five hundred forty-two');\nINSERT INTO t3 VALUES(19657, 45478, 'forty-five thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(19658, 38320, 'thirty-eight thousand three hundred twenty');\nINSERT INTO t3 VALUES(19659, 15275, 'fifteen thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(19660, 23080, 'twenty-three thousand eighty');\nINSERT INTO t3 VALUES(19661, 68580, 'sixty-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(19662, 79123, 'seventy-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(19663, 97516, 'ninety-seven thousand five hundred sixteen');\nINSERT INTO t3 VALUES(19664, 59696, 'fifty-nine thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(19665, 25986, 'twenty-five thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(19666, 36244, 'thirty-six thousand two hundred forty-four');\nINSERT INTO t3 VALUES(19667, 48938, 'forty-eight thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(19668, 61749, 'sixty-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(19669, 85629, 'eighty-five thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(19670, 27798, 'twenty-seven thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(19671, 60826, 'sixty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(19672, 19402, 'nineteen thousand four hundred two');\nINSERT INTO t3 VALUES(19673, 40330, 'forty thousand three hundred thirty');\nINSERT INTO t3 VALUES(19674, 88833, 'eighty-eight thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(19675, 77860, 'seventy-seven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(19676, 66794, 'sixty-six thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(19677, 36817, 'thirty-six thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(19678, 67337, 'sixty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(19679, 8582, 'eight thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(19680, 88205, 'eighty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(19681, 42375, 'forty-two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(19682, 52953, 'fifty-two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(19683, 98214, 'ninety-eight thousand two hundred fourteen');\nINSERT INTO t3 VALUES(19684, 44401, 'forty-four thousand four hundred one');\nINSERT INTO t3 VALUES(19685, 39133, 'thirty-nine thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(19686, 39340, 'thirty-nine thousand three hundred forty');\nINSERT INTO t3 VALUES(19687, 21943, 'twenty-one thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(19688, 33226, 'thirty-three thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(19689, 94784, 'ninety-four thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(19690, 50677, 'fifty thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(19691, 60817, 'sixty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(19692, 2026, 'two thousand twenty-six');\nINSERT INTO t3 VALUES(19693, 90895, 'ninety thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(19694, 86422, 'eighty-six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(19695, 83445, 'eighty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(19696, 65549, 'sixty-five thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(19697, 28657, 'twenty-eight thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(19698, 98125, 'ninety-eight thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(19699, 67725, 'sixty-seven thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(19700, 12133, 'twelve thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(19701, 9044, 'nine thousand forty-four');\nINSERT INTO t3 VALUES(19702, 67802, 'sixty-seven thousand eight hundred two');\nINSERT INTO t3 VALUES(19703, 71589, 'seventy-one thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(19704, 79185, 'seventy-nine thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(19705, 63241, 'sixty-three thousand two hundred forty-one');\nINSERT INTO t3 VALUES(19706, 85620, 'eighty-five thousand six hundred twenty');\nINSERT INTO t3 VALUES(19707, 17780, 'seventeen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(19708, 89943, 'eighty-nine thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(19709, 14640, 'fourteen thousand six hundred forty');\nINSERT INTO t3 VALUES(19710, 45665, 'forty-five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19711, 85205, 'eighty-five thousand two hundred five');\nINSERT INTO t3 VALUES(19712, 10290, 'ten thousand two hundred ninety');\nINSERT INTO t3 VALUES(19713, 45735, 'forty-five thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(19714, 80588, 'eighty thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(19715, 15032, 'fifteen thousand thirty-two');\nINSERT INTO t3 VALUES(19716, 33082, 'thirty-three thousand eighty-two');\nINSERT INTO t3 VALUES(19717, 55344, 'fifty-five thousand three hundred forty-four');\nINSERT INTO t3 VALUES(19718, 17423, 'seventeen thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(19719, 75379, 'seventy-five thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(19720, 2893, 'two thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(19721, 66038, 'sixty-six thousand thirty-eight');\nINSERT INTO t3 VALUES(19722, 82191, 'eighty-two thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(19723, 48842, 'forty-eight thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(19724, 31711, 'thirty-one thousand seven hundred eleven');\nINSERT INTO t3 VALUES(19725, 93787, 'ninety-three thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(19726, 25164, 'twenty-five thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(19727, 96793, 'ninety-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(19728, 28407, 'twenty-eight thousand four hundred seven');\nINSERT INTO t3 VALUES(19729, 52847, 'fifty-two thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(19730, 49130, 'forty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(19731, 46686, 'forty-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(19732, 96039, 'ninety-six thousand thirty-nine');\nINSERT INTO t3 VALUES(19733, 61381, 'sixty-one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(19734, 53597, 'fifty-three thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(19735, 23959, 'twenty-three thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(19736, 61829, 'sixty-one thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(19737, 81176, 'eighty-one thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(19738, 43831, 'forty-three thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(19739, 7036, 'seven thousand thirty-six');\nINSERT INTO t3 VALUES(19740, 32322, 'thirty-two thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(19741, 37934, 'thirty-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19742, 66758, 'sixty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(19743, 45174, 'forty-five thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(19744, 83864, 'eighty-three thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(19745, 75121, 'seventy-five thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(19746, 15547, 'fifteen thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(19747, 42879, 'forty-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(19748, 59338, 'fifty-nine thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(19749, 83235, 'eighty-three thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(19750, 81696, 'eighty-one thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(19751, 81932, 'eighty-one thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(19752, 82448, 'eighty-two thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(19753, 18173, 'eighteen thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(19754, 39948, 'thirty-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(19755, 9960, 'nine thousand nine hundred sixty');\nINSERT INTO t3 VALUES(19756, 13506, 'thirteen thousand five hundred six');\nINSERT INTO t3 VALUES(19757, 69330, 'sixty-nine thousand three hundred thirty');\nINSERT INTO t3 VALUES(19758, 41610, 'forty-one thousand six hundred ten');\nINSERT INTO t3 VALUES(19759, 10375, 'ten thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(19760, 12254, 'twelve thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(19761, 27022, 'twenty-seven thousand twenty-two');\nINSERT INTO t3 VALUES(19762, 21672, 'twenty-one thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(19763, 97924, 'ninety-seven thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(19764, 21275, 'twenty-one thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(19765, 41434, 'forty-one thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(19766, 67561, 'sixty-seven thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(19767, 29913, 'twenty-nine thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(19768, 2251, 'two thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(19769, 86272, 'eighty-six thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(19770, 27018, 'twenty-seven thousand eighteen');\nINSERT INTO t3 VALUES(19771, 60262, 'sixty thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(19772, 88037, 'eighty-eight thousand thirty-seven');\nINSERT INTO t3 VALUES(19773, 94890, 'ninety-four thousand eight hundred ninety');\nINSERT INTO t3 VALUES(19774, 58644, 'fifty-eight thousand six hundred forty-four');\nINSERT INTO t3 VALUES(19775, 31719, 'thirty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(19776, 23190, 'twenty-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(19777, 82442, 'eighty-two thousand four hundred forty-two');\nINSERT INTO t3 VALUES(19778, 20141, 'twenty thousand one hundred forty-one');\nINSERT INTO t3 VALUES(19779, 70728, 'seventy thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(19780, 83587, 'eighty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(19781, 60129, 'sixty thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19782, 70021, 'seventy thousand twenty-one');\nINSERT INTO t3 VALUES(19783, 62802, 'sixty-two thousand eight hundred two');\nINSERT INTO t3 VALUES(19784, 78640, 'seventy-eight thousand six hundred forty');\nINSERT INTO t3 VALUES(19785, 90621, 'ninety thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(19786, 31976, 'thirty-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(19787, 37063, 'thirty-seven thousand sixty-three');\nINSERT INTO t3 VALUES(19788, 62699, 'sixty-two thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(19789, 6977, 'six thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(19790, 51912, 'fifty-one thousand nine hundred twelve');\nINSERT INTO t3 VALUES(19791, 90446, 'ninety thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19792, 1478, 'one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(19793, 72252, 'seventy-two thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(19794, 47687, 'forty-seven thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(19795, 65765, 'sixty-five thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(19796, 61418, 'sixty-one thousand four hundred eighteen');\nINSERT INTO t3 VALUES(19797, 72313, 'seventy-two thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19798, 90370, 'ninety thousand three hundred seventy');\nINSERT INTO t3 VALUES(19799, 1015, 'one thousand fifteen');\nINSERT INTO t3 VALUES(19800, 18947, 'eighteen thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(19801, 17851, 'seventeen thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(19802, 1129, 'one thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19803, 15667, 'fifteen thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(19804, 50535, 'fifty thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(19805, 70946, 'seventy thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(19806, 70067, 'seventy thousand sixty-seven');\nINSERT INTO t3 VALUES(19807, 2556, 'two thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(19808, 39882, 'thirty-nine thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(19809, 14889, 'fourteen thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(19810, 44477, 'forty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(19811, 86763, 'eighty-six thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(19812, 5665, 'five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(19813, 94413, 'ninety-four thousand four hundred thirteen');\nINSERT INTO t3 VALUES(19814, 84967, 'eighty-four thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(19815, 72708, 'seventy-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(19816, 59377, 'fifty-nine thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(19817, 25755, 'twenty-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(19818, 85276, 'eighty-five thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(19819, 37133, 'thirty-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(19820, 32899, 'thirty-two thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(19821, 46888, 'forty-six thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(19822, 37400, 'thirty-seven thousand four hundred');\nINSERT INTO t3 VALUES(19823, 31553, 'thirty-one thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(19824, 3975, 'three thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(19825, 60602, 'sixty thousand six hundred two');\nINSERT INTO t3 VALUES(19826, 34809, 'thirty-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(19827, 93913, 'ninety-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(19828, 60955, 'sixty thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(19829, 38244, 'thirty-eight thousand two hundred forty-four');\nINSERT INTO t3 VALUES(19830, 41871, 'forty-one thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(19831, 63818, 'sixty-three thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(19832, 71926, 'seventy-one thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(19833, 16497, 'sixteen thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(19834, 43479, 'forty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19835, 81730, 'eighty-one thousand seven hundred thirty');\nINSERT INTO t3 VALUES(19836, 99727, 'ninety-nine thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(19837, 91659, 'ninety-one thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(19838, 28872, 'twenty-eight thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(19839, 89897, 'eighty-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(19840, 30178, 'thirty thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(19841, 51585, 'fifty-one thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(19842, 69564, 'sixty-nine thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(19843, 63977, 'sixty-three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(19844, 92869, 'ninety-two thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(19845, 94104, 'ninety-four thousand one hundred four');\nINSERT INTO t3 VALUES(19846, 62170, 'sixty-two thousand one hundred seventy');\nINSERT INTO t3 VALUES(19847, 21038, 'twenty-one thousand thirty-eight');\nINSERT INTO t3 VALUES(19848, 40153, 'forty thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(19849, 58743, 'fifty-eight thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(19850, 87508, 'eighty-seven thousand five hundred eight');\nINSERT INTO t3 VALUES(19851, 47657, 'forty-seven thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(19852, 8778, 'eight thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(19853, 19032, 'nineteen thousand thirty-two');\nINSERT INTO t3 VALUES(19854, 97097, 'ninety-seven thousand ninety-seven');\nINSERT INTO t3 VALUES(19855, 46159, 'forty-six thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(19856, 63827, 'sixty-three thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(19857, 26517, 'twenty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(19858, 36600, 'thirty-six thousand six hundred');\nINSERT INTO t3 VALUES(19859, 84267, 'eighty-four thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(19860, 37159, 'thirty-seven thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(19861, 59740, 'fifty-nine thousand seven hundred forty');\nINSERT INTO t3 VALUES(19862, 73271, 'seventy-three thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(19863, 28873, 'twenty-eight thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(19864, 91438, 'ninety-one thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(19865, 20923, 'twenty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(19866, 27148, 'twenty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(19867, 64999, 'sixty-four thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(19868, 34313, 'thirty-four thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19869, 12471, 'twelve thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(19870, 73301, 'seventy-three thousand three hundred one');\nINSERT INTO t3 VALUES(19871, 34869, 'thirty-four thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(19872, 61468, 'sixty-one thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(19873, 15136, 'fifteen thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(19874, 15382, 'fifteen thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(19875, 46431, 'forty-six thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(19876, 52555, 'fifty-two thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(19877, 92447, 'ninety-two thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(19878, 92426, 'ninety-two thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(19879, 2934, 'two thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(19880, 35780, 'thirty-five thousand seven hundred eighty');\nINSERT INTO t3 VALUES(19881, 65149, 'sixty-five thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(19882, 99341, 'ninety-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(19883, 34445, 'thirty-four thousand four hundred forty-five');\nINSERT INTO t3 VALUES(19884, 6659, 'six thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(19885, 49294, 'forty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(19886, 70129, 'seventy thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(19887, 52160, 'fifty-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(19888, 9256, 'nine thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(19889, 27420, 'twenty-seven thousand four hundred twenty');\nINSERT INTO t3 VALUES(19890, 85105, 'eighty-five thousand one hundred five');\nINSERT INTO t3 VALUES(19891, 88313, 'eighty-eight thousand three hundred thirteen');\nINSERT INTO t3 VALUES(19892, 94589, 'ninety-four thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(19893, 50596, 'fifty thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(19894, 1419, 'one thousand four hundred nineteen');\nINSERT INTO t3 VALUES(19895, 98933, 'ninety-eight thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(19896, 23016, 'twenty-three thousand sixteen');\nINSERT INTO t3 VALUES(19897, 33872, 'thirty-three thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(19898, 8746, 'eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(19899, 60781, 'sixty thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(19900, 57197, 'fifty-seven thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(19901, 48381, 'forty-eight thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(19902, 36376, 'thirty-six thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(19903, 40747, 'forty thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(19904, 93661, 'ninety-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(19905, 39503, 'thirty-nine thousand five hundred three');\nINSERT INTO t3 VALUES(19906, 75834, 'seventy-five thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(19907, 39896, 'thirty-nine thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(19908, 21524, 'twenty-one thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(19909, 28841, 'twenty-eight thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(19910, 84599, 'eighty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(19911, 67626, 'sixty-seven thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(19912, 14462, 'fourteen thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(19913, 34477, 'thirty-four thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(19914, 73679, 'seventy-three thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(19915, 58623, 'fifty-eight thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(19916, 44535, 'forty-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(19917, 42057, 'forty-two thousand fifty-seven');\nINSERT INTO t3 VALUES(19918, 50415, 'fifty thousand four hundred fifteen');\nINSERT INTO t3 VALUES(19919, 56208, 'fifty-six thousand two hundred eight');\nINSERT INTO t3 VALUES(19920, 60080, 'sixty thousand eighty');\nINSERT INTO t3 VALUES(19921, 61892, 'sixty-one thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(19922, 2953, 'two thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(19923, 56019, 'fifty-six thousand nineteen');\nINSERT INTO t3 VALUES(19924, 3443, 'three thousand four hundred forty-three');\nINSERT INTO t3 VALUES(19925, 15304, 'fifteen thousand three hundred four');\nINSERT INTO t3 VALUES(19926, 11900, 'eleven thousand nine hundred');\nINSERT INTO t3 VALUES(19927, 82593, 'eighty-two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(19928, 65750, 'sixty-five thousand seven hundred fifty');\nINSERT INTO t3 VALUES(19929, 57487, 'fifty-seven thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(19930, 49996, 'forty-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(19931, 25910, 'twenty-five thousand nine hundred ten');\nINSERT INTO t3 VALUES(19932, 37419, 'thirty-seven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(19933, 51058, 'fifty-one thousand fifty-eight');\nINSERT INTO t3 VALUES(19934, 47063, 'forty-seven thousand sixty-three');\nINSERT INTO t3 VALUES(19935, 65359, 'sixty-five thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(19936, 21441, 'twenty-one thousand four hundred forty-one');\nINSERT INTO t3 VALUES(19937, 10523, 'ten thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(19938, 93248, 'ninety-three thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(19939, 40118, 'forty thousand one hundred eighteen');\nINSERT INTO t3 VALUES(19940, 13415, 'thirteen thousand four hundred fifteen');\nINSERT INTO t3 VALUES(19941, 71686, 'seventy-one thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(19942, 23126, 'twenty-three thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(19943, 20988, 'twenty thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(19944, 96562, 'ninety-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(19945, 46135, 'forty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(19946, 87688, 'eighty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(19947, 20017, 'twenty thousand seventeen');\nINSERT INTO t3 VALUES(19948, 64558, 'sixty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(19949, 29409, 'twenty-nine thousand four hundred nine');\nINSERT INTO t3 VALUES(19950, 81852, 'eighty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(19951, 50508, 'fifty thousand five hundred eight');\nINSERT INTO t3 VALUES(19952, 70948, 'seventy thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(19953, 49295, 'forty-nine thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(19954, 14605, 'fourteen thousand six hundred five');\nINSERT INTO t3 VALUES(19955, 58637, 'fifty-eight thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(19956, 67154, 'sixty-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(19957, 29958, 'twenty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(19958, 43635, 'forty-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(19959, 45428, 'forty-five thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(19960, 77933, 'seventy-seven thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(19961, 39866, 'thirty-nine thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(19962, 1300, 'one thousand three hundred');\nINSERT INTO t3 VALUES(19963, 71768, 'seventy-one thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(19964, 9086, 'nine thousand eighty-six');\nINSERT INTO t3 VALUES(19965, 81277, 'eighty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(19966, 79415, 'seventy-nine thousand four hundred fifteen');\nINSERT INTO t3 VALUES(19967, 31317, 'thirty-one thousand three hundred seventeen');\nINSERT INTO t3 VALUES(19968, 34975, 'thirty-four thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(19969, 72187, 'seventy-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(19970, 59586, 'fifty-nine thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(19971, 61657, 'sixty-one thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(19972, 50029, 'fifty thousand twenty-nine');\nINSERT INTO t3 VALUES(19973, 33323, 'thirty-three thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(19974, 30487, 'thirty thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(19975, 92473, 'ninety-two thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(19976, 39835, 'thirty-nine thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(19977, 93597, 'ninety-three thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(19978, 97398, 'ninety-seven thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(19979, 52199, 'fifty-two thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(19980, 89086, 'eighty-nine thousand eighty-six');\nINSERT INTO t3 VALUES(19981, 88142, 'eighty-eight thousand one hundred forty-two');\nINSERT INTO t3 VALUES(19982, 8792, 'eight thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(19983, 27822, 'twenty-seven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(19984, 47446, 'forty-seven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(19985, 56479, 'fifty-six thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(19986, 11341, 'eleven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(19987, 69157, 'sixty-nine thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(19988, 96921, 'ninety-six thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(19989, 68806, 'sixty-eight thousand eight hundred six');\nINSERT INTO t3 VALUES(19990, 59805, 'fifty-nine thousand eight hundred five');\nINSERT INTO t3 VALUES(19991, 46439, 'forty-six thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(19992, 9872, 'nine thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(19993, 10598, 'ten thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(19994, 22692, 'twenty-two thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(19995, 72003, 'seventy-two thousand three');\nINSERT INTO t3 VALUES(19996, 31972, 'thirty-one thousand nine hundred seventy-two');\nINSERT INTO t3 VALUES(19997, 9513, 'nine thousand five hundred thirteen');\nINSERT INTO t3 VALUES(19998, 85249, 'eighty-five thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(19999, 87644, 'eighty-seven thousand six hundred forty-four');\nINSERT INTO t3 VALUES(20000, 18342, 'eighteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(20001, 72862, 'seventy-two thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(20002, 27783, 'twenty-seven thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(20003, 49347, 'forty-nine thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(20004, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(20005, 87797, 'eighty-seven thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(20006, 14516, 'fourteen thousand five hundred sixteen');\nINSERT INTO t3 VALUES(20007, 29523, 'twenty-nine thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(20008, 84355, 'eighty-four thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(20009, 22001, 'twenty-two thousand one');\nINSERT INTO t3 VALUES(20010, 21492, 'twenty-one thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(20011, 27886, 'twenty-seven thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(20012, 39281, 'thirty-nine thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(20013, 78223, 'seventy-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(20014, 84396, 'eighty-four thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(20015, 46422, 'forty-six thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(20016, 77705, 'seventy-seven thousand seven hundred five');\nINSERT INTO t3 VALUES(20017, 79657, 'seventy-nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(20018, 29826, 'twenty-nine thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(20019, 64606, 'sixty-four thousand six hundred six');\nINSERT INTO t3 VALUES(20020, 11440, 'eleven thousand four hundred forty');\nINSERT INTO t3 VALUES(20021, 71914, 'seventy-one thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(20022, 7272, 'seven thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(20023, 35100, 'thirty-five thousand one hundred');\nINSERT INTO t3 VALUES(20024, 80122, 'eighty thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(20025, 32695, 'thirty-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(20026, 42114, 'forty-two thousand one hundred fourteen');\nINSERT INTO t3 VALUES(20027, 61052, 'sixty-one thousand fifty-two');\nINSERT INTO t3 VALUES(20028, 67891, 'sixty-seven thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(20029, 72012, 'seventy-two thousand twelve');\nINSERT INTO t3 VALUES(20030, 31745, 'thirty-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(20031, 24360, 'twenty-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(20032, 63286, 'sixty-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(20033, 1827, 'one thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(20034, 350, 'three hundred fifty');\nINSERT INTO t3 VALUES(20035, 80110, 'eighty thousand one hundred ten');\nINSERT INTO t3 VALUES(20036, 92311, 'ninety-two thousand three hundred eleven');\nINSERT INTO t3 VALUES(20037, 19998, 'nineteen thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(20038, 20848, 'twenty thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20039, 1933, 'one thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(20040, 37059, 'thirty-seven thousand fifty-nine');\nINSERT INTO t3 VALUES(20041, 99283, 'ninety-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(20042, 4257, 'four thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(20043, 55905, 'fifty-five thousand nine hundred five');\nINSERT INTO t3 VALUES(20044, 22092, 'twenty-two thousand ninety-two');\nINSERT INTO t3 VALUES(20045, 26126, 'twenty-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(20046, 59006, 'fifty-nine thousand six');\nINSERT INTO t3 VALUES(20047, 89616, 'eighty-nine thousand six hundred sixteen');\nINSERT INTO t3 VALUES(20048, 37275, 'thirty-seven thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(20049, 63717, 'sixty-three thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(20050, 43823, 'forty-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(20051, 23976, 'twenty-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(20052, 16387, 'sixteen thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(20053, 12225, 'twelve thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(20054, 12405, 'twelve thousand four hundred five');\nINSERT INTO t3 VALUES(20055, 49729, 'forty-nine thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(20056, 74226, 'seventy-four thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(20057, 60049, 'sixty thousand forty-nine');\nINSERT INTO t3 VALUES(20058, 81561, 'eighty-one thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(20059, 44020, 'forty-four thousand twenty');\nINSERT INTO t3 VALUES(20060, 86626, 'eighty-six thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(20061, 16821, 'sixteen thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(20062, 25113, 'twenty-five thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20063, 12880, 'twelve thousand eight hundred eighty');\nINSERT INTO t3 VALUES(20064, 74147, 'seventy-four thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(20065, 97826, 'ninety-seven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(20066, 45166, 'forty-five thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(20067, 91066, 'ninety-one thousand sixty-six');\nINSERT INTO t3 VALUES(20068, 89402, 'eighty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(20069, 89113, 'eighty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20070, 8, 'eight');\nINSERT INTO t3 VALUES(20071, 39403, 'thirty-nine thousand four hundred three');\nINSERT INTO t3 VALUES(20072, 7215, 'seven thousand two hundred fifteen');\nINSERT INTO t3 VALUES(20073, 47610, 'forty-seven thousand six hundred ten');\nINSERT INTO t3 VALUES(20074, 88159, 'eighty-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(20075, 40010, 'forty thousand ten');\nINSERT INTO t3 VALUES(20076, 11713, 'eleven thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(20077, 58482, 'fifty-eight thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(20078, 23014, 'twenty-three thousand fourteen');\nINSERT INTO t3 VALUES(20079, 89282, 'eighty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(20080, 20917, 'twenty thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(20081, 58392, 'fifty-eight thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(20082, 14355, 'fourteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(20083, 29034, 'twenty-nine thousand thirty-four');\nINSERT INTO t3 VALUES(20084, 81063, 'eighty-one thousand sixty-three');\nINSERT INTO t3 VALUES(20085, 49923, 'forty-nine thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(20086, 48645, 'forty-eight thousand six hundred forty-five');\nINSERT INTO t3 VALUES(20087, 59887, 'fifty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(20088, 48516, 'forty-eight thousand five hundred sixteen');\nINSERT INTO t3 VALUES(20089, 75736, 'seventy-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20090, 9612, 'nine thousand six hundred twelve');\nINSERT INTO t3 VALUES(20091, 97975, 'ninety-seven thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(20092, 88628, 'eighty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(20093, 29287, 'twenty-nine thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20094, 3449, 'three thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(20095, 31607, 'thirty-one thousand six hundred seven');\nINSERT INTO t3 VALUES(20096, 73131, 'seventy-three thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(20097, 4960, 'four thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20098, 14549, 'fourteen thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(20099, 40715, 'forty thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(20100, 48079, 'forty-eight thousand seventy-nine');\nINSERT INTO t3 VALUES(20101, 16078, 'sixteen thousand seventy-eight');\nINSERT INTO t3 VALUES(20102, 34676, 'thirty-four thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(20103, 63067, 'sixty-three thousand sixty-seven');\nINSERT INTO t3 VALUES(20104, 96366, 'ninety-six thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(20105, 52984, 'fifty-two thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(20106, 72429, 'seventy-two thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(20107, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t3 VALUES(20108, 72547, 'seventy-two thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(20109, 48978, 'forty-eight thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(20110, 99021, 'ninety-nine thousand twenty-one');\nINSERT INTO t3 VALUES(20111, 10349, 'ten thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(20112, 61108, 'sixty-one thousand one hundred eight');\nINSERT INTO t3 VALUES(20113, 19567, 'nineteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(20114, 98076, 'ninety-eight thousand seventy-six');\nINSERT INTO t3 VALUES(20115, 32649, 'thirty-two thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(20116, 89376, 'eighty-nine thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(20117, 80259, 'eighty thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(20118, 16508, 'sixteen thousand five hundred eight');\nINSERT INTO t3 VALUES(20119, 40664, 'forty thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(20120, 64867, 'sixty-four thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20121, 29464, 'twenty-nine thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20122, 84123, 'eighty-four thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(20123, 10426, 'ten thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20124, 97138, 'ninety-seven thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(20125, 57609, 'fifty-seven thousand six hundred nine');\nINSERT INTO t3 VALUES(20126, 68905, 'sixty-eight thousand nine hundred five');\nINSERT INTO t3 VALUES(20127, 88566, 'eighty-eight thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(20128, 73735, 'seventy-three thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(20129, 84373, 'eighty-four thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(20130, 23240, 'twenty-three thousand two hundred forty');\nINSERT INTO t3 VALUES(20131, 39150, 'thirty-nine thousand one hundred fifty');\nINSERT INTO t3 VALUES(20132, 28464, 'twenty-eight thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20133, 84955, 'eighty-four thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(20134, 32704, 'thirty-two thousand seven hundred four');\nINSERT INTO t3 VALUES(20135, 22677, 'twenty-two thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(20136, 65463, 'sixty-five thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(20137, 9486, 'nine thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(20138, 13158, 'thirteen thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(20139, 91570, 'ninety-one thousand five hundred seventy');\nINSERT INTO t3 VALUES(20140, 43322, 'forty-three thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(20141, 88949, 'eighty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(20142, 78149, 'seventy-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(20143, 72529, 'seventy-two thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(20144, 3711, 'three thousand seven hundred eleven');\nINSERT INTO t3 VALUES(20145, 8649, 'eight thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(20146, 23426, 'twenty-three thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20147, 34679, 'thirty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(20148, 81451, 'eighty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(20149, 98709, 'ninety-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(20150, 90607, 'ninety thousand six hundred seven');\nINSERT INTO t3 VALUES(20151, 22375, 'twenty-two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(20152, 8602, 'eight thousand six hundred two');\nINSERT INTO t3 VALUES(20153, 42276, 'forty-two thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(20154, 52226, 'fifty-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(20155, 34057, 'thirty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(20156, 20944, 'twenty thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(20157, 29028, 'twenty-nine thousand twenty-eight');\nINSERT INTO t3 VALUES(20158, 4897, 'four thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(20159, 81555, 'eighty-one thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(20160, 6222, 'six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(20161, 34985, 'thirty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20162, 26548, 'twenty-six thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(20163, 74916, 'seventy-four thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(20164, 97934, 'ninety-seven thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(20165, 27026, 'twenty-seven thousand twenty-six');\nINSERT INTO t3 VALUES(20166, 11742, 'eleven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(20167, 1714, 'one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(20168, 49035, 'forty-nine thousand thirty-five');\nINSERT INTO t3 VALUES(20169, 51243, 'fifty-one thousand two hundred forty-three');\nINSERT INTO t3 VALUES(20170, 66148, 'sixty-six thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(20171, 89710, 'eighty-nine thousand seven hundred ten');\nINSERT INTO t3 VALUES(20172, 54029, 'fifty-four thousand twenty-nine');\nINSERT INTO t3 VALUES(20173, 29283, 'twenty-nine thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(20174, 48651, 'forty-eight thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(20175, 15919, 'fifteen thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20176, 87723, 'eighty-seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(20177, 68795, 'sixty-eight thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(20178, 67533, 'sixty-seven thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(20179, 80581, 'eighty thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(20180, 30384, 'thirty thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(20181, 45186, 'forty-five thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(20182, 67694, 'sixty-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(20183, 29585, 'twenty-nine thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(20184, 34755, 'thirty-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(20185, 72418, 'seventy-two thousand four hundred eighteen');\nINSERT INTO t3 VALUES(20186, 87034, 'eighty-seven thousand thirty-four');\nINSERT INTO t3 VALUES(20187, 84495, 'eighty-four thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(20188, 97624, 'ninety-seven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(20189, 869, 'eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20190, 90134, 'ninety thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(20191, 47882, 'forty-seven thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(20192, 14472, 'fourteen thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(20193, 39259, 'thirty-nine thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(20194, 73963, 'seventy-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(20195, 67132, 'sixty-seven thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(20196, 49969, 'forty-nine thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(20197, 77803, 'seventy-seven thousand eight hundred three');\nINSERT INTO t3 VALUES(20198, 45476, 'forty-five thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20199, 8426, 'eight thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20200, 21633, 'twenty-one thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(20201, 69279, 'sixty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(20202, 27395, 'twenty-seven thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(20203, 97795, 'ninety-seven thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(20204, 30638, 'thirty thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(20205, 49290, 'forty-nine thousand two hundred ninety');\nINSERT INTO t3 VALUES(20206, 56915, 'fifty-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(20207, 44696, 'forty-four thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(20208, 14745, 'fourteen thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(20209, 92913, 'ninety-two thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(20210, 37422, 'thirty-seven thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(20211, 65899, 'sixty-five thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(20212, 71968, 'seventy-one thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(20213, 89164, 'eighty-nine thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(20214, 66721, 'sixty-six thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(20215, 62756, 'sixty-two thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(20216, 83207, 'eighty-three thousand two hundred seven');\nINSERT INTO t3 VALUES(20217, 4913, 'four thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(20218, 49123, 'forty-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(20219, 69819, 'sixty-nine thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(20220, 70861, 'seventy thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(20221, 14788, 'fourteen thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(20222, 27661, 'twenty-seven thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(20223, 31164, 'thirty-one thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(20224, 85828, 'eighty-five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(20225, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20226, 98642, 'ninety-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(20227, 63960, 'sixty-three thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20228, 69879, 'sixty-nine thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(20229, 88180, 'eighty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(20230, 10061, 'ten thousand sixty-one');\nINSERT INTO t3 VALUES(20231, 44878, 'forty-four thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(20232, 5789, 'five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(20233, 10630, 'ten thousand six hundred thirty');\nINSERT INTO t3 VALUES(20234, 92864, 'ninety-two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(20235, 71520, 'seventy-one thousand five hundred twenty');\nINSERT INTO t3 VALUES(20236, 59113, 'fifty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20237, 55590, 'fifty-five thousand five hundred ninety');\nINSERT INTO t3 VALUES(20238, 41222, 'forty-one thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(20239, 27480, 'twenty-seven thousand four hundred eighty');\nINSERT INTO t3 VALUES(20240, 50519, 'fifty thousand five hundred nineteen');\nINSERT INTO t3 VALUES(20241, 94614, 'ninety-four thousand six hundred fourteen');\nINSERT INTO t3 VALUES(20242, 57474, 'fifty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(20243, 67847, 'sixty-seven thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(20244, 31556, 'thirty-one thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(20245, 90532, 'ninety thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(20246, 69260, 'sixty-nine thousand two hundred sixty');\nINSERT INTO t3 VALUES(20247, 48035, 'forty-eight thousand thirty-five');\nINSERT INTO t3 VALUES(20248, 73504, 'seventy-three thousand five hundred four');\nINSERT INTO t3 VALUES(20249, 78185, 'seventy-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(20250, 40349, 'forty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(20251, 74600, 'seventy-four thousand six hundred');\nINSERT INTO t3 VALUES(20252, 47483, 'forty-seven thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(20253, 87093, 'eighty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(20254, 99883, 'ninety-nine thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(20255, 8908, 'eight thousand nine hundred eight');\nINSERT INTO t3 VALUES(20256, 18853, 'eighteen thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(20257, 19762, 'nineteen thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(20258, 7302, 'seven thousand three hundred two');\nINSERT INTO t3 VALUES(20259, 59806, 'fifty-nine thousand eight hundred six');\nINSERT INTO t3 VALUES(20260, 59271, 'fifty-nine thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(20261, 45947, 'forty-five thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(20262, 1535, 'one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(20263, 17297, 'seventeen thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(20264, 71649, 'seventy-one thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(20265, 30445, 'thirty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(20266, 18312, 'eighteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(20267, 12690, 'twelve thousand six hundred ninety');\nINSERT INTO t3 VALUES(20268, 24478, 'twenty-four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(20269, 66395, 'sixty-six thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(20270, 78133, 'seventy-eight thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(20271, 93571, 'ninety-three thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(20272, 31625, 'thirty-one thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(20273, 90725, 'ninety thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(20274, 62907, 'sixty-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(20275, 58476, 'fifty-eight thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20276, 67476, 'sixty-seven thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20277, 33733, 'thirty-three thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(20278, 87036, 'eighty-seven thousand thirty-six');\nINSERT INTO t3 VALUES(20279, 58642, 'fifty-eight thousand six hundred forty-two');\nINSERT INTO t3 VALUES(20280, 32142, 'thirty-two thousand one hundred forty-two');\nINSERT INTO t3 VALUES(20281, 20472, 'twenty thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(20282, 76455, 'seventy-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(20283, 66648, 'sixty-six thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(20284, 19122, 'nineteen thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(20285, 49942, 'forty-nine thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(20286, 54128, 'fifty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(20287, 76092, 'seventy-six thousand ninety-two');\nINSERT INTO t3 VALUES(20288, 51461, 'fifty-one thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(20289, 92708, 'ninety-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(20290, 41224, 'forty-one thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(20291, 50772, 'fifty thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(20292, 25478, 'twenty-five thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(20293, 11329, 'eleven thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(20294, 68580, 'sixty-eight thousand five hundred eighty');\nINSERT INTO t3 VALUES(20295, 58527, 'fifty-eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(20296, 307, 'three hundred seven');\nINSERT INTO t3 VALUES(20297, 95577, 'ninety-five thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(20298, 99602, 'ninety-nine thousand six hundred two');\nINSERT INTO t3 VALUES(20299, 74371, 'seventy-four thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(20300, 77802, 'seventy-seven thousand eight hundred two');\nINSERT INTO t3 VALUES(20301, 14037, 'fourteen thousand thirty-seven');\nINSERT INTO t3 VALUES(20302, 65270, 'sixty-five thousand two hundred seventy');\nINSERT INTO t3 VALUES(20303, 83992, 'eighty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(20304, 88705, 'eighty-eight thousand seven hundred five');\nINSERT INTO t3 VALUES(20305, 65671, 'sixty-five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(20306, 13563, 'thirteen thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(20307, 75158, 'seventy-five thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(20308, 32068, 'thirty-two thousand sixty-eight');\nINSERT INTO t3 VALUES(20309, 64761, 'sixty-four thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(20310, 30331, 'thirty thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(20311, 40, 'forty');\nINSERT INTO t3 VALUES(20312, 44317, 'forty-four thousand three hundred seventeen');\nINSERT INTO t3 VALUES(20313, 17848, 'seventeen thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20314, 51395, 'fifty-one thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(20315, 87078, 'eighty-seven thousand seventy-eight');\nINSERT INTO t3 VALUES(20316, 73363, 'seventy-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(20317, 97750, 'ninety-seven thousand seven hundred fifty');\nINSERT INTO t3 VALUES(20318, 64435, 'sixty-four thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(20319, 90450, 'ninety thousand four hundred fifty');\nINSERT INTO t3 VALUES(20320, 75574, 'seventy-five thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(20321, 19960, 'nineteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20322, 74593, 'seventy-four thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(20323, 49745, 'forty-nine thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(20324, 44849, 'forty-four thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(20325, 30015, 'thirty thousand fifteen');\nINSERT INTO t3 VALUES(20326, 78545, 'seventy-eight thousand five hundred forty-five');\nINSERT INTO t3 VALUES(20327, 78699, 'seventy-eight thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(20328, 70392, 'seventy thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(20329, 21027, 'twenty-one thousand twenty-seven');\nINSERT INTO t3 VALUES(20330, 77562, 'seventy-seven thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(20331, 11036, 'eleven thousand thirty-six');\nINSERT INTO t3 VALUES(20332, 68284, 'sixty-eight thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(20333, 49430, 'forty-nine thousand four hundred thirty');\nINSERT INTO t3 VALUES(20334, 96756, 'ninety-six thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(20335, 10476, 'ten thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(20336, 3721, 'three thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(20337, 87464, 'eighty-seven thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20338, 86393, 'eighty-six thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(20339, 12371, 'twelve thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(20340, 31432, 'thirty-one thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(20341, 18890, 'eighteen thousand eight hundred ninety');\nINSERT INTO t3 VALUES(20342, 25999, 'twenty-five thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(20343, 30466, 'thirty thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(20344, 23117, 'twenty-three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(20345, 54760, 'fifty-four thousand seven hundred sixty');\nINSERT INTO t3 VALUES(20346, 50415, 'fifty thousand four hundred fifteen');\nINSERT INTO t3 VALUES(20347, 41057, 'forty-one thousand fifty-seven');\nINSERT INTO t3 VALUES(20348, 71802, 'seventy-one thousand eight hundred two');\nINSERT INTO t3 VALUES(20349, 51995, 'fifty-one thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(20350, 16583, 'sixteen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(20351, 89543, 'eighty-nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(20352, 13374, 'thirteen thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(20353, 66932, 'sixty-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(20354, 99473, 'ninety-nine thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(20355, 48022, 'forty-eight thousand twenty-two');\nINSERT INTO t3 VALUES(20356, 75867, 'seventy-five thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20357, 61328, 'sixty-one thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(20358, 79963, 'seventy-nine thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(20359, 19830, 'nineteen thousand eight hundred thirty');\nINSERT INTO t3 VALUES(20360, 19382, 'nineteen thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(20361, 93361, 'ninety-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(20362, 3755, 'three thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(20363, 62155, 'sixty-two thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(20364, 23116, 'twenty-three thousand one hundred sixteen');\nINSERT INTO t3 VALUES(20365, 37229, 'thirty-seven thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(20366, 33044, 'thirty-three thousand forty-four');\nINSERT INTO t3 VALUES(20367, 90842, 'ninety thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(20368, 41054, 'forty-one thousand fifty-four');\nINSERT INTO t3 VALUES(20369, 1813, 'one thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(20370, 73985, 'seventy-three thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20371, 43705, 'forty-three thousand seven hundred five');\nINSERT INTO t3 VALUES(20372, 71838, 'seventy-one thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(20373, 84602, 'eighty-four thousand six hundred two');\nINSERT INTO t3 VALUES(20374, 29630, 'twenty-nine thousand six hundred thirty');\nINSERT INTO t3 VALUES(20375, 52846, 'fifty-two thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(20376, 92741, 'ninety-two thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(20377, 33094, 'thirty-three thousand ninety-four');\nINSERT INTO t3 VALUES(20378, 76200, 'seventy-six thousand two hundred');\nINSERT INTO t3 VALUES(20379, 65338, 'sixty-five thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(20380, 92689, 'ninety-two thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(20381, 85493, 'eighty-five thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(20382, 91242, 'ninety-one thousand two hundred forty-two');\nINSERT INTO t3 VALUES(20383, 37067, 'thirty-seven thousand sixty-seven');\nINSERT INTO t3 VALUES(20384, 24548, 'twenty-four thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(20385, 20168, 'twenty thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(20386, 89279, 'eighty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(20387, 44857, 'forty-four thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(20388, 84475, 'eighty-four thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(20389, 48457, 'forty-eight thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(20390, 15727, 'fifteen thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(20391, 89829, 'eighty-nine thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(20392, 97082, 'ninety-seven thousand eighty-two');\nINSERT INTO t3 VALUES(20393, 4575, 'four thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(20394, 76311, 'seventy-six thousand three hundred eleven');\nINSERT INTO t3 VALUES(20395, 13414, 'thirteen thousand four hundred fourteen');\nINSERT INTO t3 VALUES(20396, 44200, 'forty-four thousand two hundred');\nINSERT INTO t3 VALUES(20397, 18718, 'eighteen thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(20398, 14587, 'fourteen thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(20399, 99840, 'ninety-nine thousand eight hundred forty');\nINSERT INTO t3 VALUES(20400, 14243, 'fourteen thousand two hundred forty-three');\nINSERT INTO t3 VALUES(20401, 84287, 'eighty-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20402, 9289, 'nine thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(20403, 10957, 'ten thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(20404, 85839, 'eighty-five thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(20405, 44002, 'forty-four thousand two');\nINSERT INTO t3 VALUES(20406, 54719, 'fifty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(20407, 16367, 'sixteen thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(20408, 20067, 'twenty thousand sixty-seven');\nINSERT INTO t3 VALUES(20409, 11614, 'eleven thousand six hundred fourteen');\nINSERT INTO t3 VALUES(20410, 71523, 'seventy-one thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(20411, 2749, 'two thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(20412, 13229, 'thirteen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(20413, 98086, 'ninety-eight thousand eighty-six');\nINSERT INTO t3 VALUES(20414, 46089, 'forty-six thousand eighty-nine');\nINSERT INTO t3 VALUES(20415, 10941, 'ten thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(20416, 93739, 'ninety-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(20417, 35974, 'thirty-five thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(20418, 4226, 'four thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(20419, 37640, 'thirty-seven thousand six hundred forty');\nINSERT INTO t3 VALUES(20420, 29326, 'twenty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(20421, 99948, 'ninety-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(20422, 51704, 'fifty-one thousand seven hundred four');\nINSERT INTO t3 VALUES(20423, 32392, 'thirty-two thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(20424, 33479, 'thirty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(20425, 46703, 'forty-six thousand seven hundred three');\nINSERT INTO t3 VALUES(20426, 35829, 'thirty-five thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(20427, 88969, 'eighty-eight thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(20428, 9725, 'nine thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(20429, 29151, 'twenty-nine thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(20430, 3867, 'three thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20431, 6469, 'six thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(20432, 32910, 'thirty-two thousand nine hundred ten');\nINSERT INTO t3 VALUES(20433, 61884, 'sixty-one thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(20434, 5513, 'five thousand five hundred thirteen');\nINSERT INTO t3 VALUES(20435, 19049, 'nineteen thousand forty-nine');\nINSERT INTO t3 VALUES(20436, 26063, 'twenty-six thousand sixty-three');\nINSERT INTO t3 VALUES(20437, 48597, 'forty-eight thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(20438, 51750, 'fifty-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(20439, 12557, 'twelve thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(20440, 13770, 'thirteen thousand seven hundred seventy');\nINSERT INTO t3 VALUES(20441, 46516, 'forty-six thousand five hundred sixteen');\nINSERT INTO t3 VALUES(20442, 51217, 'fifty-one thousand two hundred seventeen');\nINSERT INTO t3 VALUES(20443, 17935, 'seventeen thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(20444, 8078, 'eight thousand seventy-eight');\nINSERT INTO t3 VALUES(20445, 43565, 'forty-three thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(20446, 72524, 'seventy-two thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(20447, 59901, 'fifty-nine thousand nine hundred one');\nINSERT INTO t3 VALUES(20448, 59402, 'fifty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(20449, 78458, 'seventy-eight thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(20450, 64109, 'sixty-four thousand one hundred nine');\nINSERT INTO t3 VALUES(20451, 79973, 'seventy-nine thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(20452, 62417, 'sixty-two thousand four hundred seventeen');\nINSERT INTO t3 VALUES(20453, 78484, 'seventy-eight thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(20454, 9569, 'nine thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(20455, 15794, 'fifteen thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(20456, 16175, 'sixteen thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(20457, 15906, 'fifteen thousand nine hundred six');\nINSERT INTO t3 VALUES(20458, 79140, 'seventy-nine thousand one hundred forty');\nINSERT INTO t3 VALUES(20459, 96082, 'ninety-six thousand eighty-two');\nINSERT INTO t3 VALUES(20460, 44463, 'forty-four thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(20461, 50305, 'fifty thousand three hundred five');\nINSERT INTO t3 VALUES(20462, 79389, 'seventy-nine thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(20463, 41931, 'forty-one thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(20464, 76179, 'seventy-six thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(20465, 713, 'seven hundred thirteen');\nINSERT INTO t3 VALUES(20466, 61012, 'sixty-one thousand twelve');\nINSERT INTO t3 VALUES(20467, 25827, 'twenty-five thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(20468, 549, 'five hundred forty-nine');\nINSERT INTO t3 VALUES(20469, 41269, 'forty-one thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(20470, 72172, 'seventy-two thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(20471, 89382, 'eighty-nine thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(20472, 37601, 'thirty-seven thousand six hundred one');\nINSERT INTO t3 VALUES(20473, 16979, 'sixteen thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(20474, 76345, 'seventy-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(20475, 37696, 'thirty-seven thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(20476, 74669, 'seventy-four thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(20477, 696, 'six hundred ninety-six');\nINSERT INTO t3 VALUES(20478, 19249, 'nineteen thousand two hundred forty-nine');\nINSERT INTO t3 VALUES(20479, 9849, 'nine thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(20480, 31551, 'thirty-one thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(20481, 74125, 'seventy-four thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(20482, 16960, 'sixteen thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20483, 30364, 'thirty thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(20484, 72335, 'seventy-two thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(20485, 94878, 'ninety-four thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(20486, 92301, 'ninety-two thousand three hundred one');\nINSERT INTO t3 VALUES(20487, 60978, 'sixty thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(20488, 69767, 'sixty-nine thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(20489, 13933, 'thirteen thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(20490, 33212, 'thirty-three thousand two hundred twelve');\nINSERT INTO t3 VALUES(20491, 90390, 'ninety thousand three hundred ninety');\nINSERT INTO t3 VALUES(20492, 30667, 'thirty thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(20493, 87652, 'eighty-seven thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(20494, 31049, 'thirty-one thousand forty-nine');\nINSERT INTO t3 VALUES(20495, 59932, 'fifty-nine thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(20496, 68922, 'sixty-eight thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(20497, 12761, 'twelve thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(20498, 81110, 'eighty-one thousand one hundred ten');\nINSERT INTO t3 VALUES(20499, 22859, 'twenty-two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(20500, 67753, 'sixty-seven thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(20501, 61919, 'sixty-one thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20502, 97152, 'ninety-seven thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(20503, 41109, 'forty-one thousand one hundred nine');\nINSERT INTO t3 VALUES(20504, 83430, 'eighty-three thousand four hundred thirty');\nINSERT INTO t3 VALUES(20505, 9429, 'nine thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(20506, 8447, 'eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(20507, 91117, 'ninety-one thousand one hundred seventeen');\nINSERT INTO t3 VALUES(20508, 99719, 'ninety-nine thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(20509, 11446, 'eleven thousand four hundred forty-six');\nINSERT INTO t3 VALUES(20510, 16205, 'sixteen thousand two hundred five');\nINSERT INTO t3 VALUES(20511, 63051, 'sixty-three thousand fifty-one');\nINSERT INTO t3 VALUES(20512, 58773, 'fifty-eight thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(20513, 81836, 'eighty-one thousand eight hundred thirty-six');\nINSERT INTO t3 VALUES(20514, 17045, 'seventeen thousand forty-five');\nINSERT INTO t3 VALUES(20515, 91505, 'ninety-one thousand five hundred five');\nINSERT INTO t3 VALUES(20516, 48991, 'forty-eight thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(20517, 44459, 'forty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(20518, 58453, 'fifty-eight thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(20519, 70909, 'seventy thousand nine hundred nine');\nINSERT INTO t3 VALUES(20520, 60103, 'sixty thousand one hundred three');\nINSERT INTO t3 VALUES(20521, 54991, 'fifty-four thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(20522, 16708, 'sixteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(20523, 17403, 'seventeen thousand four hundred three');\nINSERT INTO t3 VALUES(20524, 9083, 'nine thousand eighty-three');\nINSERT INTO t3 VALUES(20525, 20340, 'twenty thousand three hundred forty');\nINSERT INTO t3 VALUES(20526, 93037, 'ninety-three thousand thirty-seven');\nINSERT INTO t3 VALUES(20527, 7600, 'seven thousand six hundred');\nINSERT INTO t3 VALUES(20528, 86450, 'eighty-six thousand four hundred fifty');\nINSERT INTO t3 VALUES(20529, 84867, 'eighty-four thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(20530, 61092, 'sixty-one thousand ninety-two');\nINSERT INTO t3 VALUES(20531, 24401, 'twenty-four thousand four hundred one');\nINSERT INTO t3 VALUES(20532, 96588, 'ninety-six thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(20533, 97549, 'ninety-seven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(20534, 32355, 'thirty-two thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(20535, 71714, 'seventy-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(20536, 72398, 'seventy-two thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(20537, 18156, 'eighteen thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(20538, 98605, 'ninety-eight thousand six hundred five');\nINSERT INTO t3 VALUES(20539, 61579, 'sixty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(20540, 32126, 'thirty-two thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(20541, 31859, 'thirty-one thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(20542, 17709, 'seventeen thousand seven hundred nine');\nINSERT INTO t3 VALUES(20543, 21756, 'twenty-one thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(20544, 94866, 'ninety-four thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(20545, 43968, 'forty-three thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(20546, 43551, 'forty-three thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(20547, 19538, 'nineteen thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(20548, 49633, 'forty-nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(20549, 62508, 'sixty-two thousand five hundred eight');\nINSERT INTO t3 VALUES(20550, 80371, 'eighty thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(20551, 22064, 'twenty-two thousand sixty-four');\nINSERT INTO t3 VALUES(20552, 25577, 'twenty-five thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(20553, 93125, 'ninety-three thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(20554, 44459, 'forty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(20555, 81909, 'eighty-one thousand nine hundred nine');\nINSERT INTO t3 VALUES(20556, 44403, 'forty-four thousand four hundred three');\nINSERT INTO t3 VALUES(20557, 16111, 'sixteen thousand one hundred eleven');\nINSERT INTO t3 VALUES(20558, 66724, 'sixty-six thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(20559, 29464, 'twenty-nine thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20560, 82143, 'eighty-two thousand one hundred forty-three');\nINSERT INTO t3 VALUES(20561, 32352, 'thirty-two thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(20562, 26542, 'twenty-six thousand five hundred forty-two');\nINSERT INTO t3 VALUES(20563, 19247, 'nineteen thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(20564, 85640, 'eighty-five thousand six hundred forty');\nINSERT INTO t3 VALUES(20565, 43306, 'forty-three thousand three hundred six');\nINSERT INTO t3 VALUES(20566, 3101, 'three thousand one hundred one');\nINSERT INTO t3 VALUES(20567, 93085, 'ninety-three thousand eighty-five');\nINSERT INTO t3 VALUES(20568, 53939, 'fifty-three thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(20569, 90044, 'ninety thousand forty-four');\nINSERT INTO t3 VALUES(20570, 89458, 'eighty-nine thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(20571, 81200, 'eighty-one thousand two hundred');\nINSERT INTO t3 VALUES(20572, 83993, 'eighty-three thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(20573, 21213, 'twenty-one thousand two hundred thirteen');\nINSERT INTO t3 VALUES(20574, 92381, 'ninety-two thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(20575, 27559, 'twenty-seven thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(20576, 25835, 'twenty-five thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(20577, 90657, 'ninety thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(20578, 55662, 'fifty-five thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(20579, 77858, 'seventy-seven thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(20580, 98751, 'ninety-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(20581, 34780, 'thirty-four thousand seven hundred eighty');\nINSERT INTO t3 VALUES(20582, 12787, 'twelve thousand seven hundred eighty-seven');\nINSERT INTO t3 VALUES(20583, 11822, 'eleven thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(20584, 48995, 'forty-eight thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(20585, 47788, 'forty-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(20586, 93536, 'ninety-three thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(20587, 12965, 'twelve thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(20588, 26793, 'twenty-six thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(20589, 52086, 'fifty-two thousand eighty-six');\nINSERT INTO t3 VALUES(20590, 68691, 'sixty-eight thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(20591, 38386, 'thirty-eight thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(20592, 45715, 'forty-five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(20593, 60670, 'sixty thousand six hundred seventy');\nINSERT INTO t3 VALUES(20594, 42106, 'forty-two thousand one hundred six');\nINSERT INTO t3 VALUES(20595, 67586, 'sixty-seven thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(20596, 78811, 'seventy-eight thousand eight hundred eleven');\nINSERT INTO t3 VALUES(20597, 4821, 'four thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(20598, 82827, 'eighty-two thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(20599, 30627, 'thirty thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(20600, 68266, 'sixty-eight thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(20601, 10003, 'ten thousand three');\nINSERT INTO t3 VALUES(20602, 34100, 'thirty-four thousand one hundred');\nINSERT INTO t3 VALUES(20603, 51631, 'fifty-one thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(20604, 33292, 'thirty-three thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(20605, 20293, 'twenty thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(20606, 65053, 'sixty-five thousand fifty-three');\nINSERT INTO t3 VALUES(20607, 52574, 'fifty-two thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(20608, 22853, 'twenty-two thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(20609, 85257, 'eighty-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(20610, 9757, 'nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(20611, 19062, 'nineteen thousand sixty-two');\nINSERT INTO t3 VALUES(20612, 76393, 'seventy-six thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(20613, 1638, 'one thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(20614, 73224, 'seventy-three thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(20615, 11868, 'eleven thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(20616, 37770, 'thirty-seven thousand seven hundred seventy');\nINSERT INTO t3 VALUES(20617, 43848, 'forty-three thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20618, 46578, 'forty-six thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(20619, 55498, 'fifty-five thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(20620, 67263, 'sixty-seven thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(20621, 39353, 'thirty-nine thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(20622, 68732, 'sixty-eight thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(20623, 95702, 'ninety-five thousand seven hundred two');\nINSERT INTO t3 VALUES(20624, 10960, 'ten thousand nine hundred sixty');\nINSERT INTO t3 VALUES(20625, 54874, 'fifty-four thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(20626, 44253, 'forty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(20627, 60069, 'sixty thousand sixty-nine');\nINSERT INTO t3 VALUES(20628, 55331, 'fifty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(20629, 59255, 'fifty-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(20630, 77786, 'seventy-seven thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(20631, 18752, 'eighteen thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(20632, 71980, 'seventy-one thousand nine hundred eighty');\nINSERT INTO t3 VALUES(20633, 18353, 'eighteen thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(20634, 86345, 'eighty-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(20635, 6872, 'six thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(20636, 96741, 'ninety-six thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(20637, 18832, 'eighteen thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(20638, 60925, 'sixty thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(20639, 14442, 'fourteen thousand four hundred forty-two');\nINSERT INTO t3 VALUES(20640, 40773, 'forty thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(20641, 32332, 'thirty-two thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(20642, 14262, 'fourteen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(20643, 23154, 'twenty-three thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(20644, 77453, 'seventy-seven thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(20645, 50006, 'fifty thousand six');\nINSERT INTO t3 VALUES(20646, 48892, 'forty-eight thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(20647, 27647, 'twenty-seven thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(20648, 97154, 'ninety-seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(20649, 86498, 'eighty-six thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(20650, 45331, 'forty-five thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(20651, 77855, 'seventy-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(20652, 25185, 'twenty-five thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(20653, 87726, 'eighty-seven thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(20654, 95122, 'ninety-five thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(20655, 31884, 'thirty-one thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(20656, 50322, 'fifty thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(20657, 50565, 'fifty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(20658, 72873, 'seventy-two thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(20659, 97283, 'ninety-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(20660, 54358, 'fifty-four thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(20661, 13863, 'thirteen thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(20662, 23776, 'twenty-three thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(20663, 78957, 'seventy-eight thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(20664, 84058, 'eighty-four thousand fifty-eight');\nINSERT INTO t3 VALUES(20665, 87005, 'eighty-seven thousand five');\nINSERT INTO t3 VALUES(20666, 431, 'four hundred thirty-one');\nINSERT INTO t3 VALUES(20667, 17823, 'seventeen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(20668, 66985, 'sixty-six thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20669, 49520, 'forty-nine thousand five hundred twenty');\nINSERT INTO t3 VALUES(20670, 43160, 'forty-three thousand one hundred sixty');\nINSERT INTO t3 VALUES(20671, 4300, 'four thousand three hundred');\nINSERT INTO t3 VALUES(20672, 69912, 'sixty-nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(20673, 37963, 'thirty-seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(20674, 92299, 'ninety-two thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(20675, 89267, 'eighty-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(20676, 45422, 'forty-five thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(20677, 65500, 'sixty-five thousand five hundred');\nINSERT INTO t3 VALUES(20678, 29400, 'twenty-nine thousand four hundred');\nINSERT INTO t3 VALUES(20679, 8494, 'eight thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(20680, 89396, 'eighty-nine thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(20681, 11908, 'eleven thousand nine hundred eight');\nINSERT INTO t3 VALUES(20682, 55665, 'fifty-five thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(20683, 7747, 'seven thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(20684, 74265, 'seventy-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(20685, 1858, 'one thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(20686, 50175, 'fifty thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(20687, 24678, 'twenty-four thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(20688, 69402, 'sixty-nine thousand four hundred two');\nINSERT INTO t3 VALUES(20689, 83445, 'eighty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(20690, 67624, 'sixty-seven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(20691, 7340, 'seven thousand three hundred forty');\nINSERT INTO t3 VALUES(20692, 31104, 'thirty-one thousand one hundred four');\nINSERT INTO t3 VALUES(20693, 56268, 'fifty-six thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(20694, 43581, 'forty-three thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(20695, 73953, 'seventy-three thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(20696, 64906, 'sixty-four thousand nine hundred six');\nINSERT INTO t3 VALUES(20697, 80239, 'eighty thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(20698, 21376, 'twenty-one thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(20699, 72485, 'seventy-two thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(20700, 32057, 'thirty-two thousand fifty-seven');\nINSERT INTO t3 VALUES(20701, 10269, 'ten thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(20702, 29113, 'twenty-nine thousand one hundred thirteen');\nINSERT INTO t3 VALUES(20703, 91615, 'ninety-one thousand six hundred fifteen');\nINSERT INTO t3 VALUES(20704, 10517, 'ten thousand five hundred seventeen');\nINSERT INTO t3 VALUES(20705, 41237, 'forty-one thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(20706, 22845, 'twenty-two thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(20707, 5240, 'five thousand two hundred forty');\nINSERT INTO t3 VALUES(20708, 20548, 'twenty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(20709, 71854, 'seventy-one thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(20710, 82289, 'eighty-two thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(20711, 10179, 'ten thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(20712, 78783, 'seventy-eight thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(20713, 77833, 'seventy-seven thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(20714, 57407, 'fifty-seven thousand four hundred seven');\nINSERT INTO t3 VALUES(20715, 42436, 'forty-two thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(20716, 23594, 'twenty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(20717, 75767, 'seventy-five thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(20718, 4036, 'four thousand thirty-six');\nINSERT INTO t3 VALUES(20719, 3028, 'three thousand twenty-eight');\nINSERT INTO t3 VALUES(20720, 58126, 'fifty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(20721, 26808, 'twenty-six thousand eight hundred eight');\nINSERT INTO t3 VALUES(20722, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(20723, 72030, 'seventy-two thousand thirty');\nINSERT INTO t3 VALUES(20724, 80484, 'eighty thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(20725, 50928, 'fifty thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(20726, 62459, 'sixty-two thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(20727, 42085, 'forty-two thousand eighty-five');\nINSERT INTO t3 VALUES(20728, 94841, 'ninety-four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(20729, 13342, 'thirteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(20730, 18736, 'eighteen thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20731, 28673, 'twenty-eight thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(20732, 12408, 'twelve thousand four hundred eight');\nINSERT INTO t3 VALUES(20733, 68696, 'sixty-eight thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(20734, 49738, 'forty-nine thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(20735, 18335, 'eighteen thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(20736, 33631, 'thirty-three thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(20737, 81244, 'eighty-one thousand two hundred forty-four');\nINSERT INTO t3 VALUES(20738, 65037, 'sixty-five thousand thirty-seven');\nINSERT INTO t3 VALUES(20739, 40534, 'forty thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(20740, 60564, 'sixty thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(20741, 91139, 'ninety-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(20742, 95676, 'ninety-five thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(20743, 69153, 'sixty-nine thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(20744, 47813, 'forty-seven thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(20745, 9933, 'nine thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(20746, 60633, 'sixty thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(20747, 46093, 'forty-six thousand ninety-three');\nINSERT INTO t3 VALUES(20748, 33493, 'thirty-three thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(20749, 29406, 'twenty-nine thousand four hundred six');\nINSERT INTO t3 VALUES(20750, 14327, 'fourteen thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(20751, 18242, 'eighteen thousand two hundred forty-two');\nINSERT INTO t3 VALUES(20752, 56308, 'fifty-six thousand three hundred eight');\nINSERT INTO t3 VALUES(20753, 17229, 'seventeen thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(20754, 91534, 'ninety-one thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(20755, 49420, 'forty-nine thousand four hundred twenty');\nINSERT INTO t3 VALUES(20756, 67885, 'sixty-seven thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(20757, 14332, 'fourteen thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(20758, 59544, 'fifty-nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(20759, 92431, 'ninety-two thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(20760, 69142, 'sixty-nine thousand one hundred forty-two');\nINSERT INTO t3 VALUES(20761, 97357, 'ninety-seven thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(20762, 25729, 'twenty-five thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(20763, 38656, 'thirty-eight thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(20764, 87577, 'eighty-seven thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(20765, 55181, 'fifty-five thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(20766, 9439, 'nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(20767, 45984, 'forty-five thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(20768, 95565, 'ninety-five thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(20769, 15160, 'fifteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(20770, 20833, 'twenty thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(20771, 74562, 'seventy-four thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(20772, 18534, 'eighteen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(20773, 71951, 'seventy-one thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(20774, 12861, 'twelve thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(20775, 56609, 'fifty-six thousand six hundred nine');\nINSERT INTO t3 VALUES(20776, 65268, 'sixty-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(20777, 56988, 'fifty-six thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(20778, 57434, 'fifty-seven thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(20779, 86747, 'eighty-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(20780, 58210, 'fifty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(20781, 38729, 'thirty-eight thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(20782, 74131, 'seventy-four thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(20783, 45052, 'forty-five thousand fifty-two');\nINSERT INTO t3 VALUES(20784, 64970, 'sixty-four thousand nine hundred seventy');\nINSERT INTO t3 VALUES(20785, 4662, 'four thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(20786, 66009, 'sixty-six thousand nine');\nINSERT INTO t3 VALUES(20787, 36744, 'thirty-six thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(20788, 97665, 'ninety-seven thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(20789, 5712, 'five thousand seven hundred twelve');\nINSERT INTO t3 VALUES(20790, 60735, 'sixty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(20791, 98961, 'ninety-eight thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(20792, 64648, 'sixty-four thousand six hundred forty-eight');\nINSERT INTO t3 VALUES(20793, 76449, 'seventy-six thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(20794, 57372, 'fifty-seven thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(20795, 17349, 'seventeen thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(20796, 57011, 'fifty-seven thousand eleven');\nINSERT INTO t3 VALUES(20797, 51736, 'fifty-one thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20798, 97584, 'ninety-seven thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(20799, 22595, 'twenty-two thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(20800, 71976, 'seventy-one thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(20801, 51515, 'fifty-one thousand five hundred fifteen');\nINSERT INTO t3 VALUES(20802, 76089, 'seventy-six thousand eighty-nine');\nINSERT INTO t3 VALUES(20803, 77060, 'seventy-seven thousand sixty');\nINSERT INTO t3 VALUES(20804, 79446, 'seventy-nine thousand four hundred forty-six');\nINSERT INTO t3 VALUES(20805, 33286, 'thirty-three thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(20806, 38066, 'thirty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(20807, 33525, 'thirty-three thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(20808, 91750, 'ninety-one thousand seven hundred fifty');\nINSERT INTO t3 VALUES(20809, 71977, 'seventy-one thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(20810, 87678, 'eighty-seven thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(20811, 98988, 'ninety-eight thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(20812, 25993, 'twenty-five thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(20813, 67531, 'sixty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(20814, 52159, 'fifty-two thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(20815, 94970, 'ninety-four thousand nine hundred seventy');\nINSERT INTO t3 VALUES(20816, 90655, 'ninety thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(20817, 93054, 'ninety-three thousand fifty-four');\nINSERT INTO t3 VALUES(20818, 47093, 'forty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(20819, 30159, 'thirty thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(20820, 9763, 'nine thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(20821, 54900, 'fifty-four thousand nine hundred');\nINSERT INTO t3 VALUES(20822, 83891, 'eighty-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(20823, 5898, 'five thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(20824, 64287, 'sixty-four thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20825, 78880, 'seventy-eight thousand eight hundred eighty');\nINSERT INTO t3 VALUES(20826, 27520, 'twenty-seven thousand five hundred twenty');\nINSERT INTO t3 VALUES(20827, 72341, 'seventy-two thousand three hundred forty-one');\nINSERT INTO t3 VALUES(20828, 39326, 'thirty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(20829, 72734, 'seventy-two thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(20830, 75519, 'seventy-five thousand five hundred nineteen');\nINSERT INTO t3 VALUES(20831, 59511, 'fifty-nine thousand five hundred eleven');\nINSERT INTO t3 VALUES(20832, 38423, 'thirty-eight thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(20833, 31019, 'thirty-one thousand nineteen');\nINSERT INTO t3 VALUES(20834, 5794, 'five thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(20835, 95783, 'ninety-five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(20836, 68949, 'sixty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(20837, 5955, 'five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(20838, 46310, 'forty-six thousand three hundred ten');\nINSERT INTO t3 VALUES(20839, 73, 'seventy-three');\nINSERT INTO t3 VALUES(20840, 31497, 'thirty-one thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(20841, 28050, 'twenty-eight thousand fifty');\nINSERT INTO t3 VALUES(20842, 16080, 'sixteen thousand eighty');\nINSERT INTO t3 VALUES(20843, 76546, 'seventy-six thousand five hundred forty-six');\nINSERT INTO t3 VALUES(20844, 35140, 'thirty-five thousand one hundred forty');\nINSERT INTO t3 VALUES(20845, 39018, 'thirty-nine thousand eighteen');\nINSERT INTO t3 VALUES(20846, 35038, 'thirty-five thousand thirty-eight');\nINSERT INTO t3 VALUES(20847, 713, 'seven hundred thirteen');\nINSERT INTO t3 VALUES(20848, 49986, 'forty-nine thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(20849, 12599, 'twelve thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(20850, 44985, 'forty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(20851, 63869, 'sixty-three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20852, 55184, 'fifty-five thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(20853, 18393, 'eighteen thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(20854, 79607, 'seventy-nine thousand six hundred seven');\nINSERT INTO t3 VALUES(20855, 70721, 'seventy thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(20856, 23704, 'twenty-three thousand seven hundred four');\nINSERT INTO t3 VALUES(20857, 94840, 'ninety-four thousand eight hundred forty');\nINSERT INTO t3 VALUES(20858, 18866, 'eighteen thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(20859, 12650, 'twelve thousand six hundred fifty');\nINSERT INTO t3 VALUES(20860, 54339, 'fifty-four thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(20861, 90994, 'ninety thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(20862, 11553, 'eleven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(20863, 21094, 'twenty-one thousand ninety-four');\nINSERT INTO t3 VALUES(20864, 17314, 'seventeen thousand three hundred fourteen');\nINSERT INTO t3 VALUES(20865, 53828, 'fifty-three thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(20866, 69873, 'sixty-nine thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(20867, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(20868, 87110, 'eighty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(20869, 65001, 'sixty-five thousand one');\nINSERT INTO t3 VALUES(20870, 38710, 'thirty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(20871, 11303, 'eleven thousand three hundred three');\nINSERT INTO t3 VALUES(20872, 66116, 'sixty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(20873, 31910, 'thirty-one thousand nine hundred ten');\nINSERT INTO t3 VALUES(20874, 70287, 'seventy thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(20875, 67464, 'sixty-seven thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(20876, 16312, 'sixteen thousand three hundred twelve');\nINSERT INTO t3 VALUES(20877, 45563, 'forty-five thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(20878, 50869, 'fifty thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20879, 12900, 'twelve thousand nine hundred');\nINSERT INTO t3 VALUES(20880, 73595, 'seventy-three thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(20881, 3009, 'three thousand nine');\nINSERT INTO t3 VALUES(20882, 83706, 'eighty-three thousand seven hundred six');\nINSERT INTO t3 VALUES(20883, 72886, 'seventy-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(20884, 97365, 'ninety-seven thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(20885, 29661, 'twenty-nine thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(20886, 64571, 'sixty-four thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(20887, 34161, 'thirty-four thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(20888, 7808, 'seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(20889, 58029, 'fifty-eight thousand twenty-nine');\nINSERT INTO t3 VALUES(20890, 58286, 'fifty-eight thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(20891, 45915, 'forty-five thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(20892, 86274, 'eighty-six thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(20893, 19091, 'nineteen thousand ninety-one');\nINSERT INTO t3 VALUES(20894, 92017, 'ninety-two thousand seventeen');\nINSERT INTO t3 VALUES(20895, 10011, 'ten thousand eleven');\nINSERT INTO t3 VALUES(20896, 99703, 'ninety-nine thousand seven hundred three');\nINSERT INTO t3 VALUES(20897, 89702, 'eighty-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(20898, 56605, 'fifty-six thousand six hundred five');\nINSERT INTO t3 VALUES(20899, 89958, 'eighty-nine thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(20900, 84558, 'eighty-four thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(20901, 46970, 'forty-six thousand nine hundred seventy');\nINSERT INTO t3 VALUES(20902, 90213, 'ninety thousand two hundred thirteen');\nINSERT INTO t3 VALUES(20903, 86754, 'eighty-six thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(20904, 94557, 'ninety-four thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(20905, 90431, 'ninety thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(20906, 99255, 'ninety-nine thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(20907, 3510, 'three thousand five hundred ten');\nINSERT INTO t3 VALUES(20908, 92988, 'ninety-two thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(20909, 34617, 'thirty-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(20910, 73710, 'seventy-three thousand seven hundred ten');\nINSERT INTO t3 VALUES(20911, 54479, 'fifty-four thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(20912, 80877, 'eighty thousand eight hundred seventy-seven');\nINSERT INTO t3 VALUES(20913, 34343, 'thirty-four thousand three hundred forty-three');\nINSERT INTO t3 VALUES(20914, 34552, 'thirty-four thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(20915, 49156, 'forty-nine thousand one hundred fifty-six');\nINSERT INTO t3 VALUES(20916, 59708, 'fifty-nine thousand seven hundred eight');\nINSERT INTO t3 VALUES(20917, 50559, 'fifty thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(20918, 45551, 'forty-five thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(20919, 89426, 'eighty-nine thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(20920, 41571, 'forty-one thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(20921, 28131, 'twenty-eight thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(20922, 81271, 'eighty-one thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(20923, 7342, 'seven thousand three hundred forty-two');\nINSERT INTO t3 VALUES(20924, 84478, 'eighty-four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(20925, 13500, 'thirteen thousand five hundred');\nINSERT INTO t3 VALUES(20926, 65245, 'sixty-five thousand two hundred forty-five');\nINSERT INTO t3 VALUES(20927, 46142, 'forty-six thousand one hundred forty-two');\nINSERT INTO t3 VALUES(20928, 6124, 'six thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(20929, 81955, 'eighty-one thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(20930, 51579, 'fifty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(20931, 34983, 'thirty-four thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(20932, 31440, 'thirty-one thousand four hundred forty');\nINSERT INTO t3 VALUES(20933, 68096, 'sixty-eight thousand ninety-six');\nINSERT INTO t3 VALUES(20934, 82045, 'eighty-two thousand forty-five');\nINSERT INTO t3 VALUES(20935, 43707, 'forty-three thousand seven hundred seven');\nINSERT INTO t3 VALUES(20936, 69697, 'sixty-nine thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(20937, 93179, 'ninety-three thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(20938, 77302, 'seventy-seven thousand three hundred two');\nINSERT INTO t3 VALUES(20939, 9321, 'nine thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(20940, 37961, 'thirty-seven thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(20941, 40125, 'forty thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(20942, 94848, 'ninety-four thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(20943, 11962, 'eleven thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(20944, 62133, 'sixty-two thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(20945, 35225, 'thirty-five thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(20946, 62811, 'sixty-two thousand eight hundred eleven');\nINSERT INTO t3 VALUES(20947, 25119, 'twenty-five thousand one hundred nineteen');\nINSERT INTO t3 VALUES(20948, 6006, 'six thousand six');\nINSERT INTO t3 VALUES(20949, 32466, 'thirty-two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(20950, 45101, 'forty-five thousand one hundred one');\nINSERT INTO t3 VALUES(20951, 35736, 'thirty-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20952, 66224, 'sixty-six thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(20953, 46437, 'forty-six thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(20954, 47185, 'forty-seven thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(20955, 57869, 'fifty-seven thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(20956, 41204, 'forty-one thousand two hundred four');\nINSERT INTO t3 VALUES(20957, 64622, 'sixty-four thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(20958, 53458, 'fifty-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(20959, 99293, 'ninety-nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(20960, 28997, 'twenty-eight thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(20961, 12820, 'twelve thousand eight hundred twenty');\nINSERT INTO t3 VALUES(20962, 21644, 'twenty-one thousand six hundred forty-four');\nINSERT INTO t3 VALUES(20963, 10764, 'ten thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(20964, 90596, 'ninety thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(20965, 68661, 'sixty-eight thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(20966, 41532, 'forty-one thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(20967, 48499, 'forty-eight thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(20968, 36253, 'thirty-six thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(20969, 45061, 'forty-five thousand sixty-one');\nINSERT INTO t3 VALUES(20970, 84611, 'eighty-four thousand six hundred eleven');\nINSERT INTO t3 VALUES(20971, 77452, 'seventy-seven thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(20972, 57511, 'fifty-seven thousand five hundred eleven');\nINSERT INTO t3 VALUES(20973, 30688, 'thirty thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(20974, 78086, 'seventy-eight thousand eighty-six');\nINSERT INTO t3 VALUES(20975, 70241, 'seventy thousand two hundred forty-one');\nINSERT INTO t3 VALUES(20976, 52250, 'fifty-two thousand two hundred fifty');\nINSERT INTO t3 VALUES(20977, 94213, 'ninety-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(20978, 45993, 'forty-five thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(20979, 9415, 'nine thousand four hundred fifteen');\nINSERT INTO t3 VALUES(20980, 22496, 'twenty-two thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(20981, 94760, 'ninety-four thousand seven hundred sixty');\nINSERT INTO t3 VALUES(20982, 32736, 'thirty-two thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(20983, 20919, 'twenty thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(20984, 63891, 'sixty-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(20985, 5606, 'five thousand six hundred six');\nINSERT INTO t3 VALUES(20986, 86559, 'eighty-six thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(20987, 77443, 'seventy-seven thousand four hundred forty-three');\nINSERT INTO t3 VALUES(20988, 82235, 'eighty-two thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(20989, 92187, 'ninety-two thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(20990, 98638, 'ninety-eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(20991, 12531, 'twelve thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(20992, 39949, 'thirty-nine thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(20993, 64361, 'sixty-four thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(20994, 31996, 'thirty-one thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(20995, 12644, 'twelve thousand six hundred forty-four');\nINSERT INTO t3 VALUES(20996, 13802, 'thirteen thousand eight hundred two');\nINSERT INTO t3 VALUES(20997, 81663, 'eighty-one thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(20998, 27831, 'twenty-seven thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(20999, 10136, 'ten thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(21000, 76524, 'seventy-six thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(21001, 37425, 'thirty-seven thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(21002, 84150, 'eighty-four thousand one hundred fifty');\nINSERT INTO t3 VALUES(21003, 85297, 'eighty-five thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(21004, 98034, 'ninety-eight thousand thirty-four');\nINSERT INTO t3 VALUES(21005, 11826, 'eleven thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(21006, 48202, 'forty-eight thousand two hundred two');\nINSERT INTO t3 VALUES(21007, 73272, 'seventy-three thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(21008, 16035, 'sixteen thousand thirty-five');\nINSERT INTO t3 VALUES(21009, 4649, 'four thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(21010, 66088, 'sixty-six thousand eighty-eight');\nINSERT INTO t3 VALUES(21011, 99506, 'ninety-nine thousand five hundred six');\nINSERT INTO t3 VALUES(21012, 61038, 'sixty-one thousand thirty-eight');\nINSERT INTO t3 VALUES(21013, 88196, 'eighty-eight thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21014, 96517, 'ninety-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(21015, 26177, 'twenty-six thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(21016, 602, 'six hundred two');\nINSERT INTO t3 VALUES(21017, 21717, 'twenty-one thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(21018, 21469, 'twenty-one thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(21019, 64240, 'sixty-four thousand two hundred forty');\nINSERT INTO t3 VALUES(21020, 65443, 'sixty-five thousand four hundred forty-three');\nINSERT INTO t3 VALUES(21021, 87430, 'eighty-seven thousand four hundred thirty');\nINSERT INTO t3 VALUES(21022, 75716, 'seventy-five thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21023, 83743, 'eighty-three thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(21024, 70976, 'seventy thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(21025, 54193, 'fifty-four thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21026, 2466, 'two thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(21027, 23794, 'twenty-three thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(21028, 77808, 'seventy-seven thousand eight hundred eight');\nINSERT INTO t3 VALUES(21029, 82905, 'eighty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(21030, 96527, 'ninety-six thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(21031, 93562, 'ninety-three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(21032, 83259, 'eighty-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(21033, 31672, 'thirty-one thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(21034, 12597, 'twelve thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(21035, 27922, 'twenty-seven thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(21036, 60856, 'sixty thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(21037, 53038, 'fifty-three thousand thirty-eight');\nINSERT INTO t3 VALUES(21038, 39941, 'thirty-nine thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(21039, 91535, 'ninety-one thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(21040, 43868, 'forty-three thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(21041, 22105, 'twenty-two thousand one hundred five');\nINSERT INTO t3 VALUES(21042, 21722, 'twenty-one thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(21043, 5833, 'five thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(21044, 18864, 'eighteen thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(21045, 6383, 'six thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(21046, 53190, 'fifty-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(21047, 15280, 'fifteen thousand two hundred eighty');\nINSERT INTO t3 VALUES(21048, 35362, 'thirty-five thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(21049, 30900, 'thirty thousand nine hundred');\nINSERT INTO t3 VALUES(21050, 18104, 'eighteen thousand one hundred four');\nINSERT INTO t3 VALUES(21051, 62309, 'sixty-two thousand three hundred nine');\nINSERT INTO t3 VALUES(21052, 51843, 'fifty-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(21053, 10002, 'ten thousand two');\nINSERT INTO t3 VALUES(21054, 18605, 'eighteen thousand six hundred five');\nINSERT INTO t3 VALUES(21055, 46024, 'forty-six thousand twenty-four');\nINSERT INTO t3 VALUES(21056, 77012, 'seventy-seven thousand twelve');\nINSERT INTO t3 VALUES(21057, 57620, 'fifty-seven thousand six hundred twenty');\nINSERT INTO t3 VALUES(21058, 6770, 'six thousand seven hundred seventy');\nINSERT INTO t3 VALUES(21059, 40298, 'forty thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(21060, 48970, 'forty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(21061, 10779, 'ten thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(21062, 50657, 'fifty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(21063, 13479, 'thirteen thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(21064, 29909, 'twenty-nine thousand nine hundred nine');\nINSERT INTO t3 VALUES(21065, 75081, 'seventy-five thousand eighty-one');\nINSERT INTO t3 VALUES(21066, 16799, 'sixteen thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(21067, 13987, 'thirteen thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(21068, 78631, 'seventy-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21069, 32003, 'thirty-two thousand three');\nINSERT INTO t3 VALUES(21070, 71218, 'seventy-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(21071, 37771, 'thirty-seven thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(21072, 59579, 'fifty-nine thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(21073, 26602, 'twenty-six thousand six hundred two');\nINSERT INTO t3 VALUES(21074, 5604, 'five thousand six hundred four');\nINSERT INTO t3 VALUES(21075, 84568, 'eighty-four thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(21076, 59106, 'fifty-nine thousand one hundred six');\nINSERT INTO t3 VALUES(21077, 45690, 'forty-five thousand six hundred ninety');\nINSERT INTO t3 VALUES(21078, 93610, 'ninety-three thousand six hundred ten');\nINSERT INTO t3 VALUES(21079, 58583, 'fifty-eight thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(21080, 52384, 'fifty-two thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(21081, 65824, 'sixty-five thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(21082, 6716, 'six thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21083, 84130, 'eighty-four thousand one hundred thirty');\nINSERT INTO t3 VALUES(21084, 62103, 'sixty-two thousand one hundred three');\nINSERT INTO t3 VALUES(21085, 21557, 'twenty-one thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(21086, 4655, 'four thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(21087, 76820, 'seventy-six thousand eight hundred twenty');\nINSERT INTO t3 VALUES(21088, 53337, 'fifty-three thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(21089, 6606, 'six thousand six hundred six');\nINSERT INTO t3 VALUES(21090, 1724, 'one thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(21091, 50844, 'fifty thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(21092, 60610, 'sixty thousand six hundred ten');\nINSERT INTO t3 VALUES(21093, 37681, 'thirty-seven thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(21094, 54741, 'fifty-four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(21095, 36154, 'thirty-six thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(21096, 54755, 'fifty-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(21097, 10418, 'ten thousand four hundred eighteen');\nINSERT INTO t3 VALUES(21098, 41761, 'forty-one thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(21099, 18534, 'eighteen thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(21100, 98917, 'ninety-eight thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(21101, 32256, 'thirty-two thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(21102, 5103, 'five thousand one hundred three');\nINSERT INTO t3 VALUES(21103, 23475, 'twenty-three thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(21104, 7396, 'seven thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(21105, 39952, 'thirty-nine thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(21106, 46510, 'forty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(21107, 90204, 'ninety thousand two hundred four');\nINSERT INTO t3 VALUES(21108, 25762, 'twenty-five thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(21109, 52464, 'fifty-two thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(21110, 49024, 'forty-nine thousand twenty-four');\nINSERT INTO t3 VALUES(21111, 11161, 'eleven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(21112, 21274, 'twenty-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(21113, 78610, 'seventy-eight thousand six hundred ten');\nINSERT INTO t3 VALUES(21114, 35671, 'thirty-five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(21115, 24578, 'twenty-four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(21116, 79384, 'seventy-nine thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(21117, 1248, 'one thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(21118, 65359, 'sixty-five thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21119, 87627, 'eighty-seven thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(21120, 49099, 'forty-nine thousand ninety-nine');\nINSERT INTO t3 VALUES(21121, 77170, 'seventy-seven thousand one hundred seventy');\nINSERT INTO t3 VALUES(21122, 98679, 'ninety-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(21123, 18101, 'eighteen thousand one hundred one');\nINSERT INTO t3 VALUES(21124, 22036, 'twenty-two thousand thirty-six');\nINSERT INTO t3 VALUES(21125, 54864, 'fifty-four thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(21126, 2843, 'two thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(21127, 51339, 'fifty-one thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(21128, 72226, 'seventy-two thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(21129, 27815, 'twenty-seven thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(21130, 58312, 'fifty-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(21131, 55616, 'fifty-five thousand six hundred sixteen');\nINSERT INTO t3 VALUES(21132, 76763, 'seventy-six thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(21133, 38193, 'thirty-eight thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21134, 31399, 'thirty-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(21135, 94983, 'ninety-four thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21136, 93605, 'ninety-three thousand six hundred five');\nINSERT INTO t3 VALUES(21137, 59464, 'fifty-nine thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(21138, 56463, 'fifty-six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(21139, 50245, 'fifty thousand two hundred forty-five');\nINSERT INTO t3 VALUES(21140, 84319, 'eighty-four thousand three hundred nineteen');\nINSERT INTO t3 VALUES(21141, 8338, 'eight thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(21142, 74698, 'seventy-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(21143, 56701, 'fifty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(21144, 14385, 'fourteen thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(21145, 56034, 'fifty-six thousand thirty-four');\nINSERT INTO t3 VALUES(21146, 70383, 'seventy thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(21147, 72584, 'seventy-two thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(21148, 55092, 'fifty-five thousand ninety-two');\nINSERT INTO t3 VALUES(21149, 79780, 'seventy-nine thousand seven hundred eighty');\nINSERT INTO t3 VALUES(21150, 46694, 'forty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(21151, 57961, 'fifty-seven thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(21152, 58173, 'fifty-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(21153, 51989, 'fifty-one thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(21154, 91963, 'ninety-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(21155, 47380, 'forty-seven thousand three hundred eighty');\nINSERT INTO t3 VALUES(21156, 44128, 'forty-four thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(21157, 72012, 'seventy-two thousand twelve');\nINSERT INTO t3 VALUES(21158, 53635, 'fifty-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(21159, 34624, 'thirty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(21160, 77428, 'seventy-seven thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(21161, 47049, 'forty-seven thousand forty-nine');\nINSERT INTO t3 VALUES(21162, 45050, 'forty-five thousand fifty');\nINSERT INTO t3 VALUES(21163, 74721, 'seventy-four thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(21164, 22718, 'twenty-two thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(21165, 60983, 'sixty thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21166, 69130, 'sixty-nine thousand one hundred thirty');\nINSERT INTO t3 VALUES(21167, 57466, 'fifty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(21168, 9803, 'nine thousand eight hundred three');\nINSERT INTO t3 VALUES(21169, 79807, 'seventy-nine thousand eight hundred seven');\nINSERT INTO t3 VALUES(21170, 67194, 'sixty-seven thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(21171, 37746, 'thirty-seven thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(21172, 80860, 'eighty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(21173, 9850, 'nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(21174, 45383, 'forty-five thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(21175, 65997, 'sixty-five thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(21176, 95738, 'ninety-five thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(21177, 58828, 'fifty-eight thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(21178, 81971, 'eighty-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(21179, 7641, 'seven thousand six hundred forty-one');\nINSERT INTO t3 VALUES(21180, 7723, 'seven thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(21181, 3820, 'three thousand eight hundred twenty');\nINSERT INTO t3 VALUES(21182, 73511, 'seventy-three thousand five hundred eleven');\nINSERT INTO t3 VALUES(21183, 60887, 'sixty thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(21184, 33349, 'thirty-three thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(21185, 41303, 'forty-one thousand three hundred three');\nINSERT INTO t3 VALUES(21186, 99307, 'ninety-nine thousand three hundred seven');\nINSERT INTO t3 VALUES(21187, 19969, 'nineteen thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21188, 78923, 'seventy-eight thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(21189, 92739, 'ninety-two thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(21190, 64022, 'sixty-four thousand twenty-two');\nINSERT INTO t3 VALUES(21191, 13342, 'thirteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(21192, 66510, 'sixty-six thousand five hundred ten');\nINSERT INTO t3 VALUES(21193, 89912, 'eighty-nine thousand nine hundred twelve');\nINSERT INTO t3 VALUES(21194, 38205, 'thirty-eight thousand two hundred five');\nINSERT INTO t3 VALUES(21195, 11257, 'eleven thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(21196, 88842, 'eighty-eight thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21197, 21514, 'twenty-one thousand five hundred fourteen');\nINSERT INTO t3 VALUES(21198, 81451, 'eighty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(21199, 37321, 'thirty-seven thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(21200, 12376, 'twelve thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(21201, 94493, 'ninety-four thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(21202, 84579, 'eighty-four thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(21203, 64859, 'sixty-four thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(21204, 70935, 'seventy thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(21205, 64375, 'sixty-four thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(21206, 1923, 'one thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(21207, 11065, 'eleven thousand sixty-five');\nINSERT INTO t3 VALUES(21208, 69769, 'sixty-nine thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(21209, 79690, 'seventy-nine thousand six hundred ninety');\nINSERT INTO t3 VALUES(21210, 27326, 'twenty-seven thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(21211, 46426, 'forty-six thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(21212, 39032, 'thirty-nine thousand thirty-two');\nINSERT INTO t3 VALUES(21213, 16516, 'sixteen thousand five hundred sixteen');\nINSERT INTO t3 VALUES(21214, 56359, 'fifty-six thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21215, 65516, 'sixty-five thousand five hundred sixteen');\nINSERT INTO t3 VALUES(21216, 96327, 'ninety-six thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(21217, 28013, 'twenty-eight thousand thirteen');\nINSERT INTO t3 VALUES(21218, 19666, 'nineteen thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(21219, 52926, 'fifty-two thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(21220, 18147, 'eighteen thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(21221, 5065, 'five thousand sixty-five');\nINSERT INTO t3 VALUES(21222, 24529, 'twenty-four thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(21223, 69597, 'sixty-nine thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(21224, 99325, 'ninety-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(21225, 68459, 'sixty-eight thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(21226, 10431, 'ten thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(21227, 49123, 'forty-nine thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(21228, 65687, 'sixty-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21229, 93170, 'ninety-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(21230, 38223, 'thirty-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(21231, 43111, 'forty-three thousand one hundred eleven');\nINSERT INTO t3 VALUES(21232, 77938, 'seventy-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(21233, 72641, 'seventy-two thousand six hundred forty-one');\nINSERT INTO t3 VALUES(21234, 25133, 'twenty-five thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(21235, 16906, 'sixteen thousand nine hundred six');\nINSERT INTO t3 VALUES(21236, 6633, 'six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21237, 58631, 'fifty-eight thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21238, 35253, 'thirty-five thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(21239, 67550, 'sixty-seven thousand five hundred fifty');\nINSERT INTO t3 VALUES(21240, 79461, 'seventy-nine thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(21241, 30295, 'thirty thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21242, 43785, 'forty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(21243, 89336, 'eighty-nine thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(21244, 73351, 'seventy-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(21245, 37262, 'thirty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(21246, 35129, 'thirty-five thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(21247, 10119, 'ten thousand one hundred nineteen');\nINSERT INTO t3 VALUES(21248, 56112, 'fifty-six thousand one hundred twelve');\nINSERT INTO t3 VALUES(21249, 28548, 'twenty-eight thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(21250, 13115, 'thirteen thousand one hundred fifteen');\nINSERT INTO t3 VALUES(21251, 80286, 'eighty thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(21252, 69147, 'sixty-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(21253, 65728, 'sixty-five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(21254, 3719, 'three thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(21255, 25014, 'twenty-five thousand fourteen');\nINSERT INTO t3 VALUES(21256, 14991, 'fourteen thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(21257, 70268, 'seventy thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(21258, 54924, 'fifty-four thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(21259, 31017, 'thirty-one thousand seventeen');\nINSERT INTO t3 VALUES(21260, 90810, 'ninety thousand eight hundred ten');\nINSERT INTO t3 VALUES(21261, 26717, 'twenty-six thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(21262, 22031, 'twenty-two thousand thirty-one');\nINSERT INTO t3 VALUES(21263, 61116, 'sixty-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(21264, 51453, 'fifty-one thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(21265, 11482, 'eleven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(21266, 56454, 'fifty-six thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(21267, 97193, 'ninety-seven thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21268, 28472, 'twenty-eight thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(21269, 68957, 'sixty-eight thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(21270, 91060, 'ninety-one thousand sixty');\nINSERT INTO t3 VALUES(21271, 95292, 'ninety-five thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(21272, 8577, 'eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(21273, 38635, 'thirty-eight thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(21274, 17952, 'seventeen thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(21275, 49788, 'forty-nine thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(21276, 56854, 'fifty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(21277, 16567, 'sixteen thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(21278, 54793, 'fifty-four thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(21279, 95460, 'ninety-five thousand four hundred sixty');\nINSERT INTO t3 VALUES(21280, 37602, 'thirty-seven thousand six hundred two');\nINSERT INTO t3 VALUES(21281, 38717, 'thirty-eight thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(21282, 23758, 'twenty-three thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21283, 3027, 'three thousand twenty-seven');\nINSERT INTO t3 VALUES(21284, 699, 'six hundred ninety-nine');\nINSERT INTO t3 VALUES(21285, 50325, 'fifty thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(21286, 46260, 'forty-six thousand two hundred sixty');\nINSERT INTO t3 VALUES(21287, 24424, 'twenty-four thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(21288, 43256, 'forty-three thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(21289, 54408, 'fifty-four thousand four hundred eight');\nINSERT INTO t3 VALUES(21290, 83235, 'eighty-three thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(21291, 88866, 'eighty-eight thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(21292, 93809, 'ninety-three thousand eight hundred nine');\nINSERT INTO t3 VALUES(21293, 76333, 'seventy-six thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(21294, 19405, 'nineteen thousand four hundred five');\nINSERT INTO t3 VALUES(21295, 38694, 'thirty-eight thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(21296, 71078, 'seventy-one thousand seventy-eight');\nINSERT INTO t3 VALUES(21297, 43986, 'forty-three thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(21298, 14483, 'fourteen thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(21299, 67360, 'sixty-seven thousand three hundred sixty');\nINSERT INTO t3 VALUES(21300, 51192, 'fifty-one thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(21301, 76933, 'seventy-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(21302, 85569, 'eighty-five thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(21303, 68577, 'sixty-eight thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(21304, 2701, 'two thousand seven hundred one');\nINSERT INTO t3 VALUES(21305, 46845, 'forty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(21306, 53627, 'fifty-three thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(21307, 36701, 'thirty-six thousand seven hundred one');\nINSERT INTO t3 VALUES(21308, 8267, 'eight thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(21309, 81965, 'eighty-one thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(21310, 76699, 'seventy-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(21311, 87802, 'eighty-seven thousand eight hundred two');\nINSERT INTO t3 VALUES(21312, 22902, 'twenty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(21313, 57170, 'fifty-seven thousand one hundred seventy');\nINSERT INTO t3 VALUES(21314, 15532, 'fifteen thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(21315, 61255, 'sixty-one thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(21316, 45677, 'forty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(21317, 49736, 'forty-nine thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(21318, 22784, 'twenty-two thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(21319, 67308, 'sixty-seven thousand three hundred eight');\nINSERT INTO t3 VALUES(21320, 77073, 'seventy-seven thousand seventy-three');\nINSERT INTO t3 VALUES(21321, 58, 'fifty-eight');\nINSERT INTO t3 VALUES(21322, 91089, 'ninety-one thousand eighty-nine');\nINSERT INTO t3 VALUES(21323, 31013, 'thirty-one thousand thirteen');\nINSERT INTO t3 VALUES(21324, 60989, 'sixty thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(21325, 45384, 'forty-five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(21326, 91252, 'ninety-one thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(21327, 92086, 'ninety-two thousand eighty-six');\nINSERT INTO t3 VALUES(21328, 54231, 'fifty-four thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(21329, 56193, 'fifty-six thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(21330, 16542, 'sixteen thousand five hundred forty-two');\nINSERT INTO t3 VALUES(21331, 90770, 'ninety thousand seven hundred seventy');\nINSERT INTO t3 VALUES(21332, 21326, 'twenty-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(21333, 7154, 'seven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(21334, 64555, 'sixty-four thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(21335, 15486, 'fifteen thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(21336, 28218, 'twenty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(21337, 19153, 'nineteen thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(21338, 64241, 'sixty-four thousand two hundred forty-one');\nINSERT INTO t3 VALUES(21339, 284, 'two hundred eighty-four');\nINSERT INTO t3 VALUES(21340, 5998, 'five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(21341, 40075, 'forty thousand seventy-five');\nINSERT INTO t3 VALUES(21342, 1898, 'one thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(21343, 18262, 'eighteen thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(21344, 47969, 'forty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21345, 72196, 'seventy-two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21346, 88168, 'eighty-eight thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(21347, 59900, 'fifty-nine thousand nine hundred');\nINSERT INTO t3 VALUES(21348, 68024, 'sixty-eight thousand twenty-four');\nINSERT INTO t3 VALUES(21349, 18366, 'eighteen thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(21350, 28768, 'twenty-eight thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(21351, 64026, 'sixty-four thousand twenty-six');\nINSERT INTO t3 VALUES(21352, 9538, 'nine thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(21353, 9580, 'nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(21354, 14044, 'fourteen thousand forty-four');\nINSERT INTO t3 VALUES(21355, 66235, 'sixty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(21356, 20381, 'twenty thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(21357, 52306, 'fifty-two thousand three hundred six');\nINSERT INTO t3 VALUES(21358, 44789, 'forty-four thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(21359, 90283, 'ninety thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(21360, 43261, 'forty-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(21361, 66986, 'sixty-six thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(21362, 75009, 'seventy-five thousand nine');\nINSERT INTO t3 VALUES(21363, 69385, 'sixty-nine thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(21364, 29806, 'twenty-nine thousand eight hundred six');\nINSERT INTO t3 VALUES(21365, 68438, 'sixty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(21366, 53306, 'fifty-three thousand three hundred six');\nINSERT INTO t3 VALUES(21367, 166, 'one hundred sixty-six');\nINSERT INTO t3 VALUES(21368, 75263, 'seventy-five thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(21369, 18116, 'eighteen thousand one hundred sixteen');\nINSERT INTO t3 VALUES(21370, 23360, 'twenty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(21371, 70223, 'seventy thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(21372, 14270, 'fourteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(21373, 62807, 'sixty-two thousand eight hundred seven');\nINSERT INTO t3 VALUES(21374, 1479, 'one thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(21375, 25868, 'twenty-five thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(21376, 45842, 'forty-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21377, 38531, 'thirty-eight thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(21378, 28633, 'twenty-eight thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21379, 89657, 'eighty-nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(21380, 50729, 'fifty thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(21381, 6515, 'six thousand five hundred fifteen');\nINSERT INTO t3 VALUES(21382, 25163, 'twenty-five thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(21383, 13325, 'thirteen thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(21384, 33822, 'thirty-three thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(21385, 56555, 'fifty-six thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(21386, 86213, 'eighty-six thousand two hundred thirteen');\nINSERT INTO t3 VALUES(21387, 20050, 'twenty thousand fifty');\nINSERT INTO t3 VALUES(21388, 20905, 'twenty thousand nine hundred five');\nINSERT INTO t3 VALUES(21389, 73578, 'seventy-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(21390, 65196, 'sixty-five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21391, 98731, 'ninety-eight thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(21392, 49755, 'forty-nine thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(21393, 74855, 'seventy-four thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(21394, 43913, 'forty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(21395, 72070, 'seventy-two thousand seventy');\nINSERT INTO t3 VALUES(21396, 16311, 'sixteen thousand three hundred eleven');\nINSERT INTO t3 VALUES(21397, 79274, 'seventy-nine thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(21398, 42906, 'forty-two thousand nine hundred six');\nINSERT INTO t3 VALUES(21399, 53052, 'fifty-three thousand fifty-two');\nINSERT INTO t3 VALUES(21400, 87970, 'eighty-seven thousand nine hundred seventy');\nINSERT INTO t3 VALUES(21401, 71868, 'seventy-one thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(21402, 23882, 'twenty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(21403, 59125, 'fifty-nine thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(21404, 90598, 'ninety thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(21405, 55700, 'fifty-five thousand seven hundred');\nINSERT INTO t3 VALUES(21406, 98865, 'ninety-eight thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(21407, 99734, 'ninety-nine thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(21408, 35660, 'thirty-five thousand six hundred sixty');\nINSERT INTO t3 VALUES(21409, 96579, 'ninety-six thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(21410, 97555, 'ninety-seven thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(21411, 10380, 'ten thousand three hundred eighty');\nINSERT INTO t3 VALUES(21412, 57470, 'fifty-seven thousand four hundred seventy');\nINSERT INTO t3 VALUES(21413, 37730, 'thirty-seven thousand seven hundred thirty');\nINSERT INTO t3 VALUES(21414, 49065, 'forty-nine thousand sixty-five');\nINSERT INTO t3 VALUES(21415, 87986, 'eighty-seven thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(21416, 11150, 'eleven thousand one hundred fifty');\nINSERT INTO t3 VALUES(21417, 34808, 'thirty-four thousand eight hundred eight');\nINSERT INTO t3 VALUES(21418, 74280, 'seventy-four thousand two hundred eighty');\nINSERT INTO t3 VALUES(21419, 51963, 'fifty-one thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(21420, 42638, 'forty-two thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(21421, 83882, 'eighty-three thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(21422, 55078, 'fifty-five thousand seventy-eight');\nINSERT INTO t3 VALUES(21423, 22566, 'twenty-two thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(21424, 18029, 'eighteen thousand twenty-nine');\nINSERT INTO t3 VALUES(21425, 32124, 'thirty-two thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(21426, 94122, 'ninety-four thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(21427, 57186, 'fifty-seven thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(21428, 93900, 'ninety-three thousand nine hundred');\nINSERT INTO t3 VALUES(21429, 58253, 'fifty-eight thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(21430, 90206, 'ninety thousand two hundred six');\nINSERT INTO t3 VALUES(21431, 71120, 'seventy-one thousand one hundred twenty');\nINSERT INTO t3 VALUES(21432, 61687, 'sixty-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21433, 57180, 'fifty-seven thousand one hundred eighty');\nINSERT INTO t3 VALUES(21434, 59545, 'fifty-nine thousand five hundred forty-five');\nINSERT INTO t3 VALUES(21435, 85553, 'eighty-five thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(21436, 31645, 'thirty-one thousand six hundred forty-five');\nINSERT INTO t3 VALUES(21437, 97301, 'ninety-seven thousand three hundred one');\nINSERT INTO t3 VALUES(21438, 39198, 'thirty-nine thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(21439, 50337, 'fifty thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(21440, 51918, 'fifty-one thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(21441, 2819, 'two thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(21442, 44434, 'forty-four thousand four hundred thirty-four');\nINSERT INTO t3 VALUES(21443, 45954, 'forty-five thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(21444, 73117, 'seventy-three thousand one hundred seventeen');\nINSERT INTO t3 VALUES(21445, 86892, 'eighty-six thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(21446, 1546, 'one thousand five hundred forty-six');\nINSERT INTO t3 VALUES(21447, 85983, 'eighty-five thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21448, 45096, 'forty-five thousand ninety-six');\nINSERT INTO t3 VALUES(21449, 38385, 'thirty-eight thousand three hundred eighty-five');\nINSERT INTO t3 VALUES(21450, 89218, 'eighty-nine thousand two hundred eighteen');\nINSERT INTO t3 VALUES(21451, 77057, 'seventy-seven thousand fifty-seven');\nINSERT INTO t3 VALUES(21452, 97983, 'ninety-seven thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(21453, 67145, 'sixty-seven thousand one hundred forty-five');\nINSERT INTO t3 VALUES(21454, 80510, 'eighty thousand five hundred ten');\nINSERT INTO t3 VALUES(21455, 86018, 'eighty-six thousand eighteen');\nINSERT INTO t3 VALUES(21456, 81518, 'eighty-one thousand five hundred eighteen');\nINSERT INTO t3 VALUES(21457, 54371, 'fifty-four thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(21458, 93231, 'ninety-three thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(21459, 63953, 'sixty-three thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(21460, 17209, 'seventeen thousand two hundred nine');\nINSERT INTO t3 VALUES(21461, 90362, 'ninety thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(21462, 47282, 'forty-seven thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(21463, 83240, 'eighty-three thousand two hundred forty');\nINSERT INTO t3 VALUES(21464, 30838, 'thirty thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(21465, 14411, 'fourteen thousand four hundred eleven');\nINSERT INTO t3 VALUES(21466, 7401, 'seven thousand four hundred one');\nINSERT INTO t3 VALUES(21467, 59627, 'fifty-nine thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(21468, 51807, 'fifty-one thousand eight hundred seven');\nINSERT INTO t3 VALUES(21469, 81946, 'eighty-one thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(21470, 67830, 'sixty-seven thousand eight hundred thirty');\nINSERT INTO t3 VALUES(21471, 63413, 'sixty-three thousand four hundred thirteen');\nINSERT INTO t3 VALUES(21472, 47127, 'forty-seven thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(21473, 83482, 'eighty-three thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(21474, 94895, 'ninety-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(21475, 303, 'three hundred three');\nINSERT INTO t3 VALUES(21476, 9602, 'nine thousand six hundred two');\nINSERT INTO t3 VALUES(21477, 3700, 'three thousand seven hundred');\nINSERT INTO t3 VALUES(21478, 70204, 'seventy thousand two hundred four');\nINSERT INTO t3 VALUES(21479, 30340, 'thirty thousand three hundred forty');\nINSERT INTO t3 VALUES(21480, 58741, 'fifty-eight thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(21481, 9414, 'nine thousand four hundred fourteen');\nINSERT INTO t3 VALUES(21482, 20273, 'twenty thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(21483, 34814, 'thirty-four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(21484, 18909, 'eighteen thousand nine hundred nine');\nINSERT INTO t3 VALUES(21485, 7279, 'seven thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(21486, 11667, 'eleven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(21487, 54898, 'fifty-four thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(21488, 74597, 'seventy-four thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(21489, 60445, 'sixty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(21490, 53461, 'fifty-three thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(21491, 63266, 'sixty-three thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(21492, 52471, 'fifty-two thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(21493, 97454, 'ninety-seven thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(21494, 40920, 'forty thousand nine hundred twenty');\nINSERT INTO t3 VALUES(21495, 83251, 'eighty-three thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(21496, 295, 'two hundred ninety-five');\nINSERT INTO t3 VALUES(21497, 40824, 'forty thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(21498, 94697, 'ninety-four thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(21499, 8574, 'eight thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(21500, 49587, 'forty-nine thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(21501, 38914, 'thirty-eight thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(21502, 98344, 'ninety-eight thousand three hundred forty-four');\nINSERT INTO t3 VALUES(21503, 63146, 'sixty-three thousand one hundred forty-six');\nINSERT INTO t3 VALUES(21504, 74695, 'seventy-four thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(21505, 80843, 'eighty thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(21506, 32987, 'thirty-two thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(21507, 15762, 'fifteen thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(21508, 45077, 'forty-five thousand seventy-seven');\nINSERT INTO t3 VALUES(21509, 59624, 'fifty-nine thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(21510, 18342, 'eighteen thousand three hundred forty-two');\nINSERT INTO t3 VALUES(21511, 95890, 'ninety-five thousand eight hundred ninety');\nINSERT INTO t3 VALUES(21512, 89234, 'eighty-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(21513, 44716, 'forty-four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21514, 4542, 'four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(21515, 82616, 'eighty-two thousand six hundred sixteen');\nINSERT INTO t3 VALUES(21516, 57197, 'fifty-seven thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(21517, 17675, 'seventeen thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(21518, 70653, 'seventy thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(21519, 96781, 'ninety-six thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(21520, 51478, 'fifty-one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(21521, 20295, 'twenty thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21522, 97421, 'ninety-seven thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(21523, 52905, 'fifty-two thousand nine hundred five');\nINSERT INTO t3 VALUES(21524, 30670, 'thirty thousand six hundred seventy');\nINSERT INTO t3 VALUES(21525, 6862, 'six thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(21526, 37099, 'thirty-seven thousand ninety-nine');\nINSERT INTO t3 VALUES(21527, 5196, 'five thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(21528, 13272, 'thirteen thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(21529, 15139, 'fifteen thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(21530, 49514, 'forty-nine thousand five hundred fourteen');\nINSERT INTO t3 VALUES(21531, 37737, 'thirty-seven thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(21532, 23749, 'twenty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(21533, 97539, 'ninety-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(21534, 91772, 'ninety-one thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(21535, 73126, 'seventy-three thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21536, 86589, 'eighty-six thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(21537, 96126, 'ninety-six thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21538, 84447, 'eighty-four thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(21539, 72310, 'seventy-two thousand three hundred ten');\nINSERT INTO t3 VALUES(21540, 18829, 'eighteen thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(21541, 19148, 'nineteen thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(21542, 97257, 'ninety-seven thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(21543, 98677, 'ninety-eight thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(21544, 29769, 'twenty-nine thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(21545, 54671, 'fifty-four thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(21546, 18598, 'eighteen thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(21547, 53259, 'fifty-three thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(21548, 26847, 'twenty-six thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(21549, 8886, 'eight thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(21550, 99129, 'ninety-nine thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(21551, 74547, 'seventy-four thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(21552, 48185, 'forty-eight thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(21553, 73522, 'seventy-three thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(21554, 88478, 'eighty-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(21555, 61341, 'sixty-one thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21556, 76056, 'seventy-six thousand fifty-six');\nINSERT INTO t3 VALUES(21557, 82915, 'eighty-two thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(21558, 89760, 'eighty-nine thousand seven hundred sixty');\nINSERT INTO t3 VALUES(21559, 86237, 'eighty-six thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(21560, 42146, 'forty-two thousand one hundred forty-six');\nINSERT INTO t3 VALUES(21561, 56689, 'fifty-six thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(21562, 13458, 'thirteen thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(21563, 66809, 'sixty-six thousand eight hundred nine');\nINSERT INTO t3 VALUES(21564, 59628, 'fifty-nine thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(21565, 4091, 'four thousand ninety-one');\nINSERT INTO t3 VALUES(21566, 6728, 'six thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(21567, 56263, 'fifty-six thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(21568, 64969, 'sixty-four thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21569, 59894, 'fifty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(21570, 34055, 'thirty-four thousand fifty-five');\nINSERT INTO t3 VALUES(21571, 60244, 'sixty thousand two hundred forty-four');\nINSERT INTO t3 VALUES(21572, 39364, 'thirty-nine thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(21573, 10139, 'ten thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(21574, 87016, 'eighty-seven thousand sixteen');\nINSERT INTO t3 VALUES(21575, 86302, 'eighty-six thousand three hundred two');\nINSERT INTO t3 VALUES(21576, 71826, 'seventy-one thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(21577, 72801, 'seventy-two thousand eight hundred one');\nINSERT INTO t3 VALUES(21578, 88955, 'eighty-eight thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(21579, 47171, 'forty-seven thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(21580, 16583, 'sixteen thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(21581, 12476, 'twelve thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(21582, 73586, 'seventy-three thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(21583, 69546, 'sixty-nine thousand five hundred forty-six');\nINSERT INTO t3 VALUES(21584, 67841, 'sixty-seven thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(21585, 71758, 'seventy-one thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21586, 96169, 'ninety-six thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(21587, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(21588, 19691, 'nineteen thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(21589, 66236, 'sixty-six thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(21590, 48160, 'forty-eight thousand one hundred sixty');\nINSERT INTO t3 VALUES(21591, 88173, 'eighty-eight thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(21592, 64755, 'sixty-four thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(21593, 81286, 'eighty-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(21594, 68945, 'sixty-eight thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(21595, 27970, 'twenty-seven thousand nine hundred seventy');\nINSERT INTO t3 VALUES(21596, 18679, 'eighteen thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(21597, 35565, 'thirty-five thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(21598, 30835, 'thirty thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21599, 35010, 'thirty-five thousand ten');\nINSERT INTO t3 VALUES(21600, 85539, 'eighty-five thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(21601, 70412, 'seventy thousand four hundred twelve');\nINSERT INTO t3 VALUES(21602, 21032, 'twenty-one thousand thirty-two');\nINSERT INTO t3 VALUES(21603, 57223, 'fifty-seven thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(21604, 60443, 'sixty thousand four hundred forty-three');\nINSERT INTO t3 VALUES(21605, 85621, 'eighty-five thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(21606, 19692, 'nineteen thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(21607, 54266, 'fifty-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(21608, 97028, 'ninety-seven thousand twenty-eight');\nINSERT INTO t3 VALUES(21609, 4670, 'four thousand six hundred seventy');\nINSERT INTO t3 VALUES(21610, 98178, 'ninety-eight thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(21611, 98359, 'ninety-eight thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21612, 61961, 'sixty-one thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(21613, 9739, 'nine thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(21614, 29973, 'twenty-nine thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(21615, 35991, 'thirty-five thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(21616, 28889, 'twenty-eight thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(21617, 55720, 'fifty-five thousand seven hundred twenty');\nINSERT INTO t3 VALUES(21618, 33435, 'thirty-three thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(21619, 37358, 'thirty-seven thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(21620, 54114, 'fifty-four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(21621, 43990, 'forty-three thousand nine hundred ninety');\nINSERT INTO t3 VALUES(21622, 66541, 'sixty-six thousand five hundred forty-one');\nINSERT INTO t3 VALUES(21623, 87493, 'eighty-seven thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(21624, 55828, 'fifty-five thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(21625, 77336, 'seventy-seven thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(21626, 76885, 'seventy-six thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(21627, 94799, 'ninety-four thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(21628, 73560, 'seventy-three thousand five hundred sixty');\nINSERT INTO t3 VALUES(21629, 24910, 'twenty-four thousand nine hundred ten');\nINSERT INTO t3 VALUES(21630, 51904, 'fifty-one thousand nine hundred four');\nINSERT INTO t3 VALUES(21631, 78312, 'seventy-eight thousand three hundred twelve');\nINSERT INTO t3 VALUES(21632, 80111, 'eighty thousand one hundred eleven');\nINSERT INTO t3 VALUES(21633, 47097, 'forty-seven thousand ninety-seven');\nINSERT INTO t3 VALUES(21634, 58822, 'fifty-eight thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(21635, 94797, 'ninety-four thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(21636, 41647, 'forty-one thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(21637, 67488, 'sixty-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(21638, 73991, 'seventy-three thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(21639, 19018, 'nineteen thousand eighteen');\nINSERT INTO t3 VALUES(21640, 46130, 'forty-six thousand one hundred thirty');\nINSERT INTO t3 VALUES(21641, 49619, 'forty-nine thousand six hundred nineteen');\nINSERT INTO t3 VALUES(21642, 86410, 'eighty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(21643, 98746, 'ninety-eight thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(21644, 80081, 'eighty thousand eighty-one');\nINSERT INTO t3 VALUES(21645, 23602, 'twenty-three thousand six hundred two');\nINSERT INTO t3 VALUES(21646, 53738, 'fifty-three thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(21647, 57507, 'fifty-seven thousand five hundred seven');\nINSERT INTO t3 VALUES(21648, 91098, 'ninety-one thousand ninety-eight');\nINSERT INTO t3 VALUES(21649, 22548, 'twenty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(21650, 52949, 'fifty-two thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(21651, 48397, 'forty-eight thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(21652, 68520, 'sixty-eight thousand five hundred twenty');\nINSERT INTO t3 VALUES(21653, 45764, 'forty-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(21654, 89042, 'eighty-nine thousand forty-two');\nINSERT INTO t3 VALUES(21655, 81841, 'eighty-one thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(21656, 61921, 'sixty-one thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(21657, 33447, 'thirty-three thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(21658, 23029, 'twenty-three thousand twenty-nine');\nINSERT INTO t3 VALUES(21659, 20860, 'twenty thousand eight hundred sixty');\nINSERT INTO t3 VALUES(21660, 52724, 'fifty-two thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(21661, 27520, 'twenty-seven thousand five hundred twenty');\nINSERT INTO t3 VALUES(21662, 12842, 'twelve thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21663, 58656, 'fifty-eight thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(21664, 99320, 'ninety-nine thousand three hundred twenty');\nINSERT INTO t3 VALUES(21665, 80694, 'eighty thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(21666, 4065, 'four thousand sixty-five');\nINSERT INTO t3 VALUES(21667, 68726, 'sixty-eight thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(21668, 5703, 'five thousand seven hundred three');\nINSERT INTO t3 VALUES(21669, 42800, 'forty-two thousand eight hundred');\nINSERT INTO t3 VALUES(21670, 36919, 'thirty-six thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(21671, 17720, 'seventeen thousand seven hundred twenty');\nINSERT INTO t3 VALUES(21672, 70908, 'seventy thousand nine hundred eight');\nINSERT INTO t3 VALUES(21673, 64337, 'sixty-four thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(21674, 27963, 'twenty-seven thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(21675, 74404, 'seventy-four thousand four hundred four');\nINSERT INTO t3 VALUES(21676, 62765, 'sixty-two thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(21677, 86854, 'eighty-six thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(21678, 20013, 'twenty thousand thirteen');\nINSERT INTO t3 VALUES(21679, 89292, 'eighty-nine thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(21680, 17617, 'seventeen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(21681, 17373, 'seventeen thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(21682, 1565, 'one thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(21683, 66398, 'sixty-six thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(21684, 90905, 'ninety thousand nine hundred five');\nINSERT INTO t3 VALUES(21685, 82850, 'eighty-two thousand eight hundred fifty');\nINSERT INTO t3 VALUES(21686, 39995, 'thirty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(21687, 67839, 'sixty-seven thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(21688, 33093, 'thirty-three thousand ninety-three');\nINSERT INTO t3 VALUES(21689, 93729, 'ninety-three thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(21690, 31005, 'thirty-one thousand five');\nINSERT INTO t3 VALUES(21691, 37862, 'thirty-seven thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(21692, 68511, 'sixty-eight thousand five hundred eleven');\nINSERT INTO t3 VALUES(21693, 4341, 'four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21694, 97807, 'ninety-seven thousand eight hundred seven');\nINSERT INTO t3 VALUES(21695, 23951, 'twenty-three thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(21696, 96296, 'ninety-six thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(21697, 5501, 'five thousand five hundred one');\nINSERT INTO t3 VALUES(21698, 97834, 'ninety-seven thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(21699, 45237, 'forty-five thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(21700, 40405, 'forty thousand four hundred five');\nINSERT INTO t3 VALUES(21701, 88857, 'eighty-eight thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(21702, 78751, 'seventy-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(21703, 89831, 'eighty-nine thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(21704, 6171, 'six thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(21705, 90377, 'ninety thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(21706, 43306, 'forty-three thousand three hundred six');\nINSERT INTO t3 VALUES(21707, 56331, 'fifty-six thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(21708, 98964, 'ninety-eight thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(21709, 21825, 'twenty-one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(21710, 69346, 'sixty-nine thousand three hundred forty-six');\nINSERT INTO t3 VALUES(21711, 53177, 'fifty-three thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(21712, 83594, 'eighty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(21713, 60761, 'sixty thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(21714, 42793, 'forty-two thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(21715, 29174, 'twenty-nine thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(21716, 56968, 'fifty-six thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(21717, 37084, 'thirty-seven thousand eighty-four');\nINSERT INTO t3 VALUES(21718, 61554, 'sixty-one thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(21719, 64985, 'sixty-four thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(21720, 68130, 'sixty-eight thousand one hundred thirty');\nINSERT INTO t3 VALUES(21721, 30015, 'thirty thousand fifteen');\nINSERT INTO t3 VALUES(21722, 71322, 'seventy-one thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(21723, 15126, 'fifteen thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21724, 34535, 'thirty-four thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(21725, 65715, 'sixty-five thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(21726, 79774, 'seventy-nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(21727, 81942, 'eighty-one thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(21728, 94781, 'ninety-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(21729, 83743, 'eighty-three thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(21730, 63858, 'sixty-three thousand eight hundred fifty-eight');\nINSERT INTO t3 VALUES(21731, 94141, 'ninety-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(21732, 21591, 'twenty-one thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(21733, 57667, 'fifty-seven thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(21734, 4716, 'four thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(21735, 46004, 'forty-six thousand four');\nINSERT INTO t3 VALUES(21736, 86420, 'eighty-six thousand four hundred twenty');\nINSERT INTO t3 VALUES(21737, 90992, 'ninety thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(21738, 19485, 'nineteen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(21739, 6993, 'six thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(21740, 25064, 'twenty-five thousand sixty-four');\nINSERT INTO t3 VALUES(21741, 69267, 'sixty-nine thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(21742, 28914, 'twenty-eight thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(21743, 3114, 'three thousand one hundred fourteen');\nINSERT INTO t3 VALUES(21744, 95079, 'ninety-five thousand seventy-nine');\nINSERT INTO t3 VALUES(21745, 27567, 'twenty-seven thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(21746, 60035, 'sixty thousand thirty-five');\nINSERT INTO t3 VALUES(21747, 84652, 'eighty-four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(21748, 40368, 'forty thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(21749, 51076, 'fifty-one thousand seventy-six');\nINSERT INTO t3 VALUES(21750, 9999, 'nine thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(21751, 54720, 'fifty-four thousand seven hundred twenty');\nINSERT INTO t3 VALUES(21752, 75631, 'seventy-five thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21753, 15827, 'fifteen thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(21754, 81618, 'eighty-one thousand six hundred eighteen');\nINSERT INTO t3 VALUES(21755, 58561, 'fifty-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(21756, 97117, 'ninety-seven thousand one hundred seventeen');\nINSERT INTO t3 VALUES(21757, 39525, 'thirty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(21758, 43578, 'forty-three thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(21759, 94515, 'ninety-four thousand five hundred fifteen');\nINSERT INTO t3 VALUES(21760, 72718, 'seventy-two thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(21761, 21522, 'twenty-one thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(21762, 50014, 'fifty thousand fourteen');\nINSERT INTO t3 VALUES(21763, 51048, 'fifty-one thousand forty-eight');\nINSERT INTO t3 VALUES(21764, 67155, 'sixty-seven thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(21765, 25380, 'twenty-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(21766, 80252, 'eighty thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(21767, 68528, 'sixty-eight thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(21768, 73870, 'seventy-three thousand eight hundred seventy');\nINSERT INTO t3 VALUES(21769, 51953, 'fifty-one thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(21770, 39891, 'thirty-nine thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(21771, 16758, 'sixteen thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21772, 13352, 'thirteen thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(21773, 88431, 'eighty-eight thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(21774, 4485, 'four thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(21775, 53749, 'fifty-three thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(21776, 14934, 'fourteen thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(21777, 70610, 'seventy thousand six hundred ten');\nINSERT INTO t3 VALUES(21778, 23436, 'twenty-three thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(21779, 91687, 'ninety-one thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21780, 82018, 'eighty-two thousand eighteen');\nINSERT INTO t3 VALUES(21781, 98497, 'ninety-eight thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(21782, 17450, 'seventeen thousand four hundred fifty');\nINSERT INTO t3 VALUES(21783, 93562, 'ninety-three thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(21784, 38979, 'thirty-eight thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(21785, 91797, 'ninety-one thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(21786, 75183, 'seventy-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(21787, 94341, 'ninety-four thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21788, 75405, 'seventy-five thousand four hundred five');\nINSERT INTO t3 VALUES(21789, 66537, 'sixty-six thousand five hundred thirty-seven');\nINSERT INTO t3 VALUES(21790, 52209, 'fifty-two thousand two hundred nine');\nINSERT INTO t3 VALUES(21791, 99338, 'ninety-nine thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(21792, 20662, 'twenty thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(21793, 10920, 'ten thousand nine hundred twenty');\nINSERT INTO t3 VALUES(21794, 2709, 'two thousand seven hundred nine');\nINSERT INTO t3 VALUES(21795, 72310, 'seventy-two thousand three hundred ten');\nINSERT INTO t3 VALUES(21796, 6286, 'six thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(21797, 87500, 'eighty-seven thousand five hundred');\nINSERT INTO t3 VALUES(21798, 72328, 'seventy-two thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(21799, 76075, 'seventy-six thousand seventy-five');\nINSERT INTO t3 VALUES(21800, 8544, 'eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(21801, 74734, 'seventy-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(21802, 67474, 'sixty-seven thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(21803, 87012, 'eighty-seven thousand twelve');\nINSERT INTO t3 VALUES(21804, 99064, 'ninety-nine thousand sixty-four');\nINSERT INTO t3 VALUES(21805, 29634, 'twenty-nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21806, 47705, 'forty-seven thousand seven hundred five');\nINSERT INTO t3 VALUES(21807, 33764, 'thirty-three thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(21808, 39170, 'thirty-nine thousand one hundred seventy');\nINSERT INTO t3 VALUES(21809, 41108, 'forty-one thousand one hundred eight');\nINSERT INTO t3 VALUES(21810, 57917, 'fifty-seven thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(21811, 8329, 'eight thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(21812, 67604, 'sixty-seven thousand six hundred four');\nINSERT INTO t3 VALUES(21813, 59359, 'fifty-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(21814, 17918, 'seventeen thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(21815, 87327, 'eighty-seven thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(21816, 31095, 'thirty-one thousand ninety-five');\nINSERT INTO t3 VALUES(21817, 27969, 'twenty-seven thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21818, 69506, 'sixty-nine thousand five hundred six');\nINSERT INTO t3 VALUES(21819, 70904, 'seventy thousand nine hundred four');\nINSERT INTO t3 VALUES(21820, 92884, 'ninety-two thousand eight hundred eighty-four');\nINSERT INTO t3 VALUES(21821, 32971, 'thirty-two thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(21822, 65546, 'sixty-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(21823, 50857, 'fifty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(21824, 35789, 'thirty-five thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(21825, 4288, 'four thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(21826, 90398, 'ninety thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(21827, 42854, 'forty-two thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(21828, 32745, 'thirty-two thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(21829, 48947, 'forty-eight thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(21830, 92941, 'ninety-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(21831, 23727, 'twenty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(21832, 68653, 'sixty-eight thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(21833, 30849, 'thirty thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(21834, 22341, 'twenty-two thousand three hundred forty-one');\nINSERT INTO t3 VALUES(21835, 75943, 'seventy-five thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(21836, 60832, 'sixty thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(21837, 15379, 'fifteen thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(21838, 9633, 'nine thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21839, 16192, 'sixteen thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(21840, 7455, 'seven thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(21841, 93093, 'ninety-three thousand ninety-three');\nINSERT INTO t3 VALUES(21842, 16607, 'sixteen thousand six hundred seven');\nINSERT INTO t3 VALUES(21843, 44581, 'forty-four thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(21844, 44141, 'forty-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(21845, 99823, 'ninety-nine thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(21846, 79086, 'seventy-nine thousand eighty-six');\nINSERT INTO t3 VALUES(21847, 53969, 'fifty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21848, 30312, 'thirty thousand three hundred twelve');\nINSERT INTO t3 VALUES(21849, 65113, 'sixty-five thousand one hundred thirteen');\nINSERT INTO t3 VALUES(21850, 10777, 'ten thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(21851, 47268, 'forty-seven thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(21852, 84667, 'eighty-four thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(21853, 39774, 'thirty-nine thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(21854, 52091, 'fifty-two thousand ninety-one');\nINSERT INTO t3 VALUES(21855, 92660, 'ninety-two thousand six hundred sixty');\nINSERT INTO t3 VALUES(21856, 47736, 'forty-seven thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(21857, 97166, 'ninety-seven thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(21858, 96227, 'ninety-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(21859, 33203, 'thirty-three thousand two hundred three');\nINSERT INTO t3 VALUES(21860, 33046, 'thirty-three thousand forty-six');\nINSERT INTO t3 VALUES(21861, 30118, 'thirty thousand one hundred eighteen');\nINSERT INTO t3 VALUES(21862, 56096, 'fifty-six thousand ninety-six');\nINSERT INTO t3 VALUES(21863, 35752, 'thirty-five thousand seven hundred fifty-two');\nINSERT INTO t3 VALUES(21864, 33698, 'thirty-three thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(21865, 78295, 'seventy-eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21866, 10199, 'ten thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(21867, 39004, 'thirty-nine thousand four');\nINSERT INTO t3 VALUES(21868, 90378, 'ninety thousand three hundred seventy-eight');\nINSERT INTO t3 VALUES(21869, 76915, 'seventy-six thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(21870, 55631, 'fifty-five thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(21871, 74979, 'seventy-four thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(21872, 97225, 'ninety-seven thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(21873, 94842, 'ninety-four thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(21874, 21478, 'twenty-one thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(21875, 4652, 'four thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(21876, 82748, 'eighty-two thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(21877, 47630, 'forty-seven thousand six hundred thirty');\nINSERT INTO t3 VALUES(21878, 43209, 'forty-three thousand two hundred nine');\nINSERT INTO t3 VALUES(21879, 37997, 'thirty-seven thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(21880, 68641, 'sixty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(21881, 56459, 'fifty-six thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(21882, 39403, 'thirty-nine thousand four hundred three');\nINSERT INTO t3 VALUES(21883, 57796, 'fifty-seven thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(21884, 8415, 'eight thousand four hundred fifteen');\nINSERT INTO t3 VALUES(21885, 47413, 'forty-seven thousand four hundred thirteen');\nINSERT INTO t3 VALUES(21886, 38099, 'thirty-eight thousand ninety-nine');\nINSERT INTO t3 VALUES(21887, 5485, 'five thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(21888, 91519, 'ninety-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(21889, 55128, 'fifty-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(21890, 28634, 'twenty-eight thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21891, 76248, 'seventy-six thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(21892, 89658, 'eighty-nine thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(21893, 91945, 'ninety-one thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(21894, 64582, 'sixty-four thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(21895, 86153, 'eighty-six thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(21896, 78557, 'seventy-eight thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(21897, 67688, 'sixty-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(21898, 66032, 'sixty-six thousand thirty-two');\nINSERT INTO t3 VALUES(21899, 88081, 'eighty-eight thousand eighty-one');\nINSERT INTO t3 VALUES(21900, 36291, 'thirty-six thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(21901, 44679, 'forty-four thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(21902, 31126, 'thirty-one thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(21903, 46538, 'forty-six thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(21904, 77708, 'seventy-seven thousand seven hundred eight');\nINSERT INTO t3 VALUES(21905, 54121, 'fifty-four thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(21906, 76197, 'seventy-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(21907, 25453, 'twenty-five thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(21908, 22099, 'twenty-two thousand ninety-nine');\nINSERT INTO t3 VALUES(21909, 8369, 'eight thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(21910, 83817, 'eighty-three thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(21911, 94769, 'ninety-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(21912, 47835, 'forty-seven thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21913, 62419, 'sixty-two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(21914, 44499, 'forty-four thousand four hundred ninety-nine');\nINSERT INTO t3 VALUES(21915, 86687, 'eighty-six thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(21916, 21177, 'twenty-one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(21917, 40121, 'forty thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(21918, 2924, 'two thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(21919, 77515, 'seventy-seven thousand five hundred fifteen');\nINSERT INTO t3 VALUES(21920, 23061, 'twenty-three thousand sixty-one');\nINSERT INTO t3 VALUES(21921, 84221, 'eighty-four thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(21922, 60092, 'sixty thousand ninety-two');\nINSERT INTO t3 VALUES(21923, 69903, 'sixty-nine thousand nine hundred three');\nINSERT INTO t3 VALUES(21924, 45916, 'forty-five thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(21925, 98372, 'ninety-eight thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(21926, 29329, 'twenty-nine thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(21927, 25083, 'twenty-five thousand eighty-three');\nINSERT INTO t3 VALUES(21928, 52504, 'fifty-two thousand five hundred four');\nINSERT INTO t3 VALUES(21929, 65295, 'sixty-five thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(21930, 15269, 'fifteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(21931, 87628, 'eighty-seven thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(21932, 77470, 'seventy-seven thousand four hundred seventy');\nINSERT INTO t3 VALUES(21933, 13420, 'thirteen thousand four hundred twenty');\nINSERT INTO t3 VALUES(21934, 83703, 'eighty-three thousand seven hundred three');\nINSERT INTO t3 VALUES(21935, 94774, 'ninety-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(21936, 33634, 'thirty-three thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21937, 25273, 'twenty-five thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(21938, 95282, 'ninety-five thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(21939, 99845, 'ninety-nine thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(21940, 17647, 'seventeen thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(21941, 44078, 'forty-four thousand seventy-eight');\nINSERT INTO t3 VALUES(21942, 75405, 'seventy-five thousand four hundred five');\nINSERT INTO t3 VALUES(21943, 36585, 'thirty-six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(21944, 6473, 'six thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(21945, 76932, 'seventy-six thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(21946, 14319, 'fourteen thousand three hundred nineteen');\nINSERT INTO t3 VALUES(21947, 63996, 'sixty-three thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(21948, 56276, 'fifty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(21949, 22356, 'twenty-two thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(21950, 40348, 'forty thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(21951, 42079, 'forty-two thousand seventy-nine');\nINSERT INTO t3 VALUES(21952, 80634, 'eighty thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(21953, 70610, 'seventy thousand six hundred ten');\nINSERT INTO t3 VALUES(21954, 66029, 'sixty-six thousand twenty-nine');\nINSERT INTO t3 VALUES(21955, 90633, 'ninety thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(21956, 65380, 'sixty-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(21957, 94403, 'ninety-four thousand four hundred three');\nINSERT INTO t3 VALUES(21958, 46758, 'forty-six thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(21959, 26535, 'twenty-six thousand five hundred thirty-five');\nINSERT INTO t3 VALUES(21960, 48445, 'forty-eight thousand four hundred forty-five');\nINSERT INTO t3 VALUES(21961, 8762, 'eight thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(21962, 79914, 'seventy-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(21963, 56382, 'fifty-six thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(21964, 30100, 'thirty thousand one hundred');\nINSERT INTO t3 VALUES(21965, 17523, 'seventeen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(21966, 49851, 'forty-nine thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(21967, 74393, 'seventy-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(21968, 68835, 'sixty-eight thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21969, 18575, 'eighteen thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(21970, 30917, 'thirty thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(21971, 44203, 'forty-four thousand two hundred three');\nINSERT INTO t3 VALUES(21972, 11347, 'eleven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(21973, 92433, 'ninety-two thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(21974, 60395, 'sixty thousand three hundred ninety-five');\nINSERT INTO t3 VALUES(21975, 90768, 'ninety thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(21976, 82429, 'eighty-two thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(21977, 96538, 'ninety-six thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(21978, 5518, 'five thousand five hundred eighteen');\nINSERT INTO t3 VALUES(21979, 26303, 'twenty-six thousand three hundred three');\nINSERT INTO t3 VALUES(21980, 24734, 'twenty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(21981, 35227, 'thirty-five thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(21982, 50495, 'fifty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(21983, 93473, 'ninety-three thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(21984, 38333, 'thirty-eight thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(21985, 1973, 'one thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(21986, 72879, 'seventy-two thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(21987, 28969, 'twenty-eight thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(21988, 55017, 'fifty-five thousand seventeen');\nINSERT INTO t3 VALUES(21989, 78751, 'seventy-eight thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(21990, 27198, 'twenty-seven thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(21991, 24835, 'twenty-four thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(21992, 98192, 'ninety-eight thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(21993, 19795, 'nineteen thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(21994, 39801, 'thirty-nine thousand eight hundred one');\nINSERT INTO t3 VALUES(21995, 20349, 'twenty thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(21996, 99510, 'ninety-nine thousand five hundred ten');\nINSERT INTO t3 VALUES(21997, 48628, 'forty-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(21998, 25333, 'twenty-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(21999, 36647, 'thirty-six thousand six hundred forty-seven');\nINSERT INTO t3 VALUES(22000, 66560, 'sixty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(22001, 92593, 'ninety-two thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(22002, 60865, 'sixty thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(22003, 26079, 'twenty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(22004, 42325, 'forty-two thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(22005, 46686, 'forty-six thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(22006, 95396, 'ninety-five thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(22007, 19469, 'nineteen thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(22008, 31944, 'thirty-one thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(22009, 50232, 'fifty thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(22010, 87423, 'eighty-seven thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(22011, 70904, 'seventy thousand nine hundred four');\nINSERT INTO t3 VALUES(22012, 11860, 'eleven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(22013, 24315, 'twenty-four thousand three hundred fifteen');\nINSERT INTO t3 VALUES(22014, 21198, 'twenty-one thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(22015, 70848, 'seventy thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(22016, 61107, 'sixty-one thousand one hundred seven');\nINSERT INTO t3 VALUES(22017, 76396, 'seventy-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(22018, 16940, 'sixteen thousand nine hundred forty');\nINSERT INTO t3 VALUES(22019, 16966, 'sixteen thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(22020, 63684, 'sixty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(22021, 80970, 'eighty thousand nine hundred seventy');\nINSERT INTO t3 VALUES(22022, 67388, 'sixty-seven thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(22023, 52517, 'fifty-two thousand five hundred seventeen');\nINSERT INTO t3 VALUES(22024, 70927, 'seventy thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(22025, 9211, 'nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(22026, 48190, 'forty-eight thousand one hundred ninety');\nINSERT INTO t3 VALUES(22027, 85062, 'eighty-five thousand sixty-two');\nINSERT INTO t3 VALUES(22028, 63665, 'sixty-three thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(22029, 31791, 'thirty-one thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(22030, 83974, 'eighty-three thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(22031, 38592, 'thirty-eight thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(22032, 60492, 'sixty thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(22033, 67278, 'sixty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(22034, 40641, 'forty thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22035, 88920, 'eighty-eight thousand nine hundred twenty');\nINSERT INTO t3 VALUES(22036, 98712, 'ninety-eight thousand seven hundred twelve');\nINSERT INTO t3 VALUES(22037, 57458, 'fifty-seven thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(22038, 6475, 'six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(22039, 85301, 'eighty-five thousand three hundred one');\nINSERT INTO t3 VALUES(22040, 70311, 'seventy thousand three hundred eleven');\nINSERT INTO t3 VALUES(22041, 50789, 'fifty thousand seven hundred eighty-nine');\nINSERT INTO t3 VALUES(22042, 1718, 'one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(22043, 40565, 'forty thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(22044, 171, 'one hundred seventy-one');\nINSERT INTO t3 VALUES(22045, 57255, 'fifty-seven thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(22046, 20144, 'twenty thousand one hundred forty-four');\nINSERT INTO t3 VALUES(22047, 75646, 'seventy-five thousand six hundred forty-six');\nINSERT INTO t3 VALUES(22048, 80232, 'eighty thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(22049, 20449, 'twenty thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(22050, 66904, 'sixty-six thousand nine hundred four');\nINSERT INTO t3 VALUES(22051, 4763, 'four thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22052, 86920, 'eighty-six thousand nine hundred twenty');\nINSERT INTO t3 VALUES(22053, 21218, 'twenty-one thousand two hundred eighteen');\nINSERT INTO t3 VALUES(22054, 5994, 'five thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(22055, 66771, 'sixty-six thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(22056, 82911, 'eighty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22057, 12842, 'twelve thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22058, 33261, 'thirty-three thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(22059, 82572, 'eighty-two thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(22060, 12893, 'twelve thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(22061, 4185, 'four thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(22062, 21705, 'twenty-one thousand seven hundred five');\nINSERT INTO t3 VALUES(22063, 86817, 'eighty-six thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(22064, 76944, 'seventy-six thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(22065, 92861, 'ninety-two thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(22066, 40617, 'forty thousand six hundred seventeen');\nINSERT INTO t3 VALUES(22067, 78125, 'seventy-eight thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(22068, 84567, 'eighty-four thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(22069, 54283, 'fifty-four thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22070, 41122, 'forty-one thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(22071, 64794, 'sixty-four thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(22072, 57904, 'fifty-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(22073, 70334, 'seventy thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(22074, 76547, 'seventy-six thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(22075, 41099, 'forty-one thousand ninety-nine');\nINSERT INTO t3 VALUES(22076, 41852, 'forty-one thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(22077, 95399, 'ninety-five thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(22078, 33041, 'thirty-three thousand forty-one');\nINSERT INTO t3 VALUES(22079, 90452, 'ninety thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(22080, 7987, 'seven thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(22081, 24217, 'twenty-four thousand two hundred seventeen');\nINSERT INTO t3 VALUES(22082, 33572, 'thirty-three thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(22083, 85749, 'eighty-five thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(22084, 86845, 'eighty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(22085, 67807, 'sixty-seven thousand eight hundred seven');\nINSERT INTO t3 VALUES(22086, 80578, 'eighty thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(22087, 23327, 'twenty-three thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(22088, 39754, 'thirty-nine thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(22089, 63761, 'sixty-three thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(22090, 2636, 'two thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(22091, 75310, 'seventy-five thousand three hundred ten');\nINSERT INTO t3 VALUES(22092, 73297, 'seventy-three thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(22093, 14881, 'fourteen thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22094, 83964, 'eighty-three thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(22095, 51004, 'fifty-one thousand four');\nINSERT INTO t3 VALUES(22096, 1125, 'one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(22097, 63339, 'sixty-three thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(22098, 32238, 'thirty-two thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(22099, 3737, 'three thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(22100, 10713, 'ten thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(22101, 58180, 'fifty-eight thousand one hundred eighty');\nINSERT INTO t3 VALUES(22102, 35979, 'thirty-five thousand nine hundred seventy-nine');\nINSERT INTO t3 VALUES(22103, 85736, 'eighty-five thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(22104, 33023, 'thirty-three thousand twenty-three');\nINSERT INTO t3 VALUES(22105, 97869, 'ninety-seven thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(22106, 40387, 'forty thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(22107, 61887, 'sixty-one thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(22108, 94088, 'ninety-four thousand eighty-eight');\nINSERT INTO t3 VALUES(22109, 25966, 'twenty-five thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(22110, 93545, 'ninety-three thousand five hundred forty-five');\nINSERT INTO t3 VALUES(22111, 82846, 'eighty-two thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(22112, 20382, 'twenty thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(22113, 45079, 'forty-five thousand seventy-nine');\nINSERT INTO t3 VALUES(22114, 73263, 'seventy-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(22115, 54981, 'fifty-four thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(22116, 80869, 'eighty thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(22117, 29987, 'twenty-nine thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(22118, 18504, 'eighteen thousand five hundred four');\nINSERT INTO t3 VALUES(22119, 75998, 'seventy-five thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(22120, 48009, 'forty-eight thousand nine');\nINSERT INTO t3 VALUES(22121, 48218, 'forty-eight thousand two hundred eighteen');\nINSERT INTO t3 VALUES(22122, 34127, 'thirty-four thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(22123, 87784, 'eighty-seven thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(22124, 14684, 'fourteen thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(22125, 74809, 'seventy-four thousand eight hundred nine');\nINSERT INTO t3 VALUES(22126, 77260, 'seventy-seven thousand two hundred sixty');\nINSERT INTO t3 VALUES(22127, 30377, 'thirty thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(22128, 94871, 'ninety-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(22129, 52853, 'fifty-two thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(22130, 53170, 'fifty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(22131, 79606, 'seventy-nine thousand six hundred six');\nINSERT INTO t3 VALUES(22132, 72761, 'seventy-two thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(22133, 82911, 'eighty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22134, 70998, 'seventy thousand nine hundred ninety-eight');\nINSERT INTO t3 VALUES(22135, 72642, 'seventy-two thousand six hundred forty-two');\nINSERT INTO t3 VALUES(22136, 28308, 'twenty-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(22137, 74693, 'seventy-four thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(22138, 63906, 'sixty-three thousand nine hundred six');\nINSERT INTO t3 VALUES(22139, 10514, 'ten thousand five hundred fourteen');\nINSERT INTO t3 VALUES(22140, 91274, 'ninety-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(22141, 76512, 'seventy-six thousand five hundred twelve');\nINSERT INTO t3 VALUES(22142, 11170, 'eleven thousand one hundred seventy');\nINSERT INTO t3 VALUES(22143, 82167, 'eighty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(22144, 54032, 'fifty-four thousand thirty-two');\nINSERT INTO t3 VALUES(22145, 42032, 'forty-two thousand thirty-two');\nINSERT INTO t3 VALUES(22146, 89546, 'eighty-nine thousand five hundred forty-six');\nINSERT INTO t3 VALUES(22147, 14355, 'fourteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(22148, 57704, 'fifty-seven thousand seven hundred four');\nINSERT INTO t3 VALUES(22149, 75763, 'seventy-five thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22150, 11673, 'eleven thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(22151, 51496, 'fifty-one thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(22152, 87000, 'eighty-seven thousand');\nINSERT INTO t3 VALUES(22153, 52696, 'fifty-two thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(22154, 3053, 'three thousand fifty-three');\nINSERT INTO t3 VALUES(22155, 49341, 'forty-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(22156, 74935, 'seventy-four thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(22157, 14683, 'fourteen thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22158, 89605, 'eighty-nine thousand six hundred five');\nINSERT INTO t3 VALUES(22159, 2163, 'two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(22160, 17040, 'seventeen thousand forty');\nINSERT INTO t3 VALUES(22161, 21273, 'twenty-one thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(22162, 22030, 'twenty-two thousand thirty');\nINSERT INTO t3 VALUES(22163, 67304, 'sixty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(22164, 60825, 'sixty thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(22165, 36470, 'thirty-six thousand four hundred seventy');\nINSERT INTO t3 VALUES(22166, 24639, 'twenty-four thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(22167, 73691, 'seventy-three thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(22168, 78480, 'seventy-eight thousand four hundred eighty');\nINSERT INTO t3 VALUES(22169, 55117, 'fifty-five thousand one hundred seventeen');\nINSERT INTO t3 VALUES(22170, 81330, 'eighty-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(22171, 59072, 'fifty-nine thousand seventy-two');\nINSERT INTO t3 VALUES(22172, 84281, 'eighty-four thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(22173, 99234, 'ninety-nine thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(22174, 43945, 'forty-three thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(22175, 64726, 'sixty-four thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(22176, 62291, 'sixty-two thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(22177, 85230, 'eighty-five thousand two hundred thirty');\nINSERT INTO t3 VALUES(22178, 73236, 'seventy-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(22179, 45742, 'forty-five thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(22180, 66694, 'sixty-six thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(22181, 41176, 'forty-one thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(22182, 3667, 'three thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(22183, 1534, 'one thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(22184, 47968, 'forty-seven thousand nine hundred sixty-eight');\nINSERT INTO t3 VALUES(22185, 42396, 'forty-two thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(22186, 5384, 'five thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(22187, 84542, 'eighty-four thousand five hundred forty-two');\nINSERT INTO t3 VALUES(22188, 17584, 'seventeen thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(22189, 41676, 'forty-one thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(22190, 63638, 'sixty-three thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(22191, 32257, 'thirty-two thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(22192, 27905, 'twenty-seven thousand nine hundred five');\nINSERT INTO t3 VALUES(22193, 42782, 'forty-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(22194, 46624, 'forty-six thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(22195, 36917, 'thirty-six thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(22196, 12763, 'twelve thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22197, 61144, 'sixty-one thousand one hundred forty-four');\nINSERT INTO t3 VALUES(22198, 62532, 'sixty-two thousand five hundred thirty-two');\nINSERT INTO t3 VALUES(22199, 81763, 'eighty-one thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(22200, 49107, 'forty-nine thousand one hundred seven');\nINSERT INTO t3 VALUES(22201, 28109, 'twenty-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(22202, 64467, 'sixty-four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(22203, 1124, 'one thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22204, 26410, 'twenty-six thousand four hundred ten');\nINSERT INTO t3 VALUES(22205, 43587, 'forty-three thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(22206, 34727, 'thirty-four thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(22207, 95716, 'ninety-five thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(22208, 92279, 'ninety-two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(22209, 35788, 'thirty-five thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(22210, 81985, 'eighty-one thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(22211, 7868, 'seven thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(22212, 71330, 'seventy-one thousand three hundred thirty');\nINSERT INTO t3 VALUES(22213, 58023, 'fifty-eight thousand twenty-three');\nINSERT INTO t3 VALUES(22214, 88477, 'eighty-eight thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(22215, 64213, 'sixty-four thousand two hundred thirteen');\nINSERT INTO t3 VALUES(22216, 80826, 'eighty thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(22217, 16682, 'sixteen thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(22218, 80776, 'eighty thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(22219, 53842, 'fifty-three thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22220, 7046, 'seven thousand forty-six');\nINSERT INTO t3 VALUES(22221, 60079, 'sixty thousand seventy-nine');\nINSERT INTO t3 VALUES(22222, 87325, 'eighty-seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(22223, 44786, 'forty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(22224, 23913, 'twenty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(22225, 54119, 'fifty-four thousand one hundred nineteen');\nINSERT INTO t3 VALUES(22226, 23761, 'twenty-three thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(22227, 12017, 'twelve thousand seventeen');\nINSERT INTO t3 VALUES(22228, 8419, 'eight thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22229, 43363, 'forty-three thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(22230, 21331, 'twenty-one thousand three hundred thirty-one');\nINSERT INTO t3 VALUES(22231, 79039, 'seventy-nine thousand thirty-nine');\nINSERT INTO t3 VALUES(22232, 99062, 'ninety-nine thousand sixty-two');\nINSERT INTO t3 VALUES(22233, 40008, 'forty thousand eight');\nINSERT INTO t3 VALUES(22234, 51089, 'fifty-one thousand eighty-nine');\nINSERT INTO t3 VALUES(22235, 67742, 'sixty-seven thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(22236, 62695, 'sixty-two thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(22237, 28883, 'twenty-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(22238, 85403, 'eighty-five thousand four hundred three');\nINSERT INTO t3 VALUES(22239, 11587, 'eleven thousand five hundred eighty-seven');\nINSERT INTO t3 VALUES(22240, 55658, 'fifty-five thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22241, 93458, 'ninety-three thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(22242, 90818, 'ninety thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(22243, 30392, 'thirty thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(22244, 49103, 'forty-nine thousand one hundred three');\nINSERT INTO t3 VALUES(22245, 63938, 'sixty-three thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(22246, 82730, 'eighty-two thousand seven hundred thirty');\nINSERT INTO t3 VALUES(22247, 74486, 'seventy-four thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(22248, 48080, 'forty-eight thousand eighty');\nINSERT INTO t3 VALUES(22249, 91120, 'ninety-one thousand one hundred twenty');\nINSERT INTO t3 VALUES(22250, 99009, 'ninety-nine thousand nine');\nINSERT INTO t3 VALUES(22251, 31387, 'thirty-one thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(22252, 9844, 'nine thousand eight hundred forty-four');\nINSERT INTO t3 VALUES(22253, 7762, 'seven thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(22254, 76669, 'seventy-six thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(22255, 99610, 'ninety-nine thousand six hundred ten');\nINSERT INTO t3 VALUES(22256, 95934, 'ninety-five thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(22257, 92261, 'ninety-two thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(22258, 2922, 'two thousand nine hundred twenty-two');\nINSERT INTO t3 VALUES(22259, 31718, 'thirty-one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(22260, 16480, 'sixteen thousand four hundred eighty');\nINSERT INTO t3 VALUES(22261, 45693, 'forty-five thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(22262, 74182, 'seventy-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(22263, 77439, 'seventy-seven thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(22264, 1307, 'one thousand three hundred seven');\nINSERT INTO t3 VALUES(22265, 98301, 'ninety-eight thousand three hundred one');\nINSERT INTO t3 VALUES(22266, 52033, 'fifty-two thousand thirty-three');\nINSERT INTO t3 VALUES(22267, 50061, 'fifty thousand sixty-one');\nINSERT INTO t3 VALUES(22268, 42286, 'forty-two thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(22269, 12585, 'twelve thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(22270, 95924, 'ninety-five thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(22271, 11159, 'eleven thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(22272, 98641, 'ninety-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22273, 67024, 'sixty-seven thousand twenty-four');\nINSERT INTO t3 VALUES(22274, 3976, 'three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(22275, 86312, 'eighty-six thousand three hundred twelve');\nINSERT INTO t3 VALUES(22276, 97764, 'ninety-seven thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(22277, 9204, 'nine thousand two hundred four');\nINSERT INTO t3 VALUES(22278, 66999, 'sixty-six thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(22279, 77110, 'seventy-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(22280, 68710, 'sixty-eight thousand seven hundred ten');\nINSERT INTO t3 VALUES(22281, 21654, 'twenty-one thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(22282, 32178, 'thirty-two thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(22283, 50938, 'fifty thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(22284, 60472, 'sixty thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(22285, 57332, 'fifty-seven thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(22286, 81781, 'eighty-one thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(22287, 46591, 'forty-six thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(22288, 61060, 'sixty-one thousand sixty');\nINSERT INTO t3 VALUES(22289, 40000, 'forty thousand');\nINSERT INTO t3 VALUES(22290, 17242, 'seventeen thousand two hundred forty-two');\nINSERT INTO t3 VALUES(22291, 47359, 'forty-seven thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(22292, 53394, 'fifty-three thousand three hundred ninety-four');\nINSERT INTO t3 VALUES(22293, 73258, 'seventy-three thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(22294, 37930, 'thirty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(22295, 88902, 'eighty-eight thousand nine hundred two');\nINSERT INTO t3 VALUES(22296, 23865, 'twenty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(22297, 52522, 'fifty-two thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(22298, 10986, 'ten thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(22299, 67658, 'sixty-seven thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22300, 80184, 'eighty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(22301, 59131, 'fifty-nine thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(22302, 12625, 'twelve thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(22303, 8368, 'eight thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(22304, 10908, 'ten thousand nine hundred eight');\nINSERT INTO t3 VALUES(22305, 20317, 'twenty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(22306, 44456, 'forty-four thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(22307, 52754, 'fifty-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(22308, 51128, 'fifty-one thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(22309, 3730, 'three thousand seven hundred thirty');\nINSERT INTO t3 VALUES(22310, 84201, 'eighty-four thousand two hundred one');\nINSERT INTO t3 VALUES(22311, 25468, 'twenty-five thousand four hundred sixty-eight');\nINSERT INTO t3 VALUES(22312, 773, 'seven hundred seventy-three');\nINSERT INTO t3 VALUES(22313, 52296, 'fifty-two thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(22314, 63724, 'sixty-three thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(22315, 27149, 'twenty-seven thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(22316, 97401, 'ninety-seven thousand four hundred one');\nINSERT INTO t3 VALUES(22317, 56210, 'fifty-six thousand two hundred ten');\nINSERT INTO t3 VALUES(22318, 2715, 'two thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(22319, 35745, 'thirty-five thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(22320, 36475, 'thirty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(22321, 25178, 'twenty-five thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(22322, 82726, 'eighty-two thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(22323, 17715, 'seventeen thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(22324, 90969, 'ninety thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(22325, 35633, 'thirty-five thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(22326, 70702, 'seventy thousand seven hundred two');\nINSERT INTO t3 VALUES(22327, 83992, 'eighty-three thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(22328, 29490, 'twenty-nine thousand four hundred ninety');\nINSERT INTO t3 VALUES(22329, 35399, 'thirty-five thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(22330, 85766, 'eighty-five thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(22331, 2271, 'two thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(22332, 16685, 'sixteen thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(22333, 20762, 'twenty thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(22334, 94064, 'ninety-four thousand sixty-four');\nINSERT INTO t3 VALUES(22335, 84347, 'eighty-four thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(22336, 86339, 'eighty-six thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(22337, 19130, 'nineteen thousand one hundred thirty');\nINSERT INTO t3 VALUES(22338, 85596, 'eighty-five thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(22339, 50706, 'fifty thousand seven hundred six');\nINSERT INTO t3 VALUES(22340, 56772, 'fifty-six thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(22341, 52976, 'fifty-two thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(22342, 22760, 'twenty-two thousand seven hundred sixty');\nINSERT INTO t3 VALUES(22343, 24765, 'twenty-four thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(22344, 97206, 'ninety-seven thousand two hundred six');\nINSERT INTO t3 VALUES(22345, 63438, 'sixty-three thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(22346, 72553, 'seventy-two thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(22347, 55990, 'fifty-five thousand nine hundred ninety');\nINSERT INTO t3 VALUES(22348, 51665, 'fifty-one thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(22349, 7379, 'seven thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(22350, 90234, 'ninety thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(22351, 69009, 'sixty-nine thousand nine');\nINSERT INTO t3 VALUES(22352, 69078, 'sixty-nine thousand seventy-eight');\nINSERT INTO t3 VALUES(22353, 18873, 'eighteen thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(22354, 20351, 'twenty thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(22355, 23257, 'twenty-three thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(22356, 47683, 'forty-seven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22357, 25129, 'twenty-five thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(22358, 42392, 'forty-two thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(22359, 61533, 'sixty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(22360, 74504, 'seventy-four thousand five hundred four');\nINSERT INTO t3 VALUES(22361, 21283, 'twenty-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22362, 34181, 'thirty-four thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(22363, 90907, 'ninety thousand nine hundred seven');\nINSERT INTO t3 VALUES(22364, 20857, 'twenty thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(22365, 81696, 'eighty-one thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(22366, 40214, 'forty thousand two hundred fourteen');\nINSERT INTO t3 VALUES(22367, 63976, 'sixty-three thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(22368, 50398, 'fifty thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(22369, 13364, 'thirteen thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22370, 97470, 'ninety-seven thousand four hundred seventy');\nINSERT INTO t3 VALUES(22371, 27065, 'twenty-seven thousand sixty-five');\nINSERT INTO t3 VALUES(22372, 73598, 'seventy-three thousand five hundred ninety-eight');\nINSERT INTO t3 VALUES(22373, 89848, 'eighty-nine thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(22374, 42272, 'forty-two thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(22375, 60287, 'sixty thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(22376, 3178, 'three thousand one hundred seventy-eight');\nINSERT INTO t3 VALUES(22377, 57321, 'fifty-seven thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(22378, 78679, 'seventy-eight thousand six hundred seventy-nine');\nINSERT INTO t3 VALUES(22379, 86227, 'eighty-six thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(22380, 85683, 'eighty-five thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22381, 47749, 'forty-seven thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(22382, 1655, 'one thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(22383, 98561, 'ninety-eight thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(22384, 66277, 'sixty-six thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(22385, 27619, 'twenty-seven thousand six hundred nineteen');\nINSERT INTO t3 VALUES(22386, 33063, 'thirty-three thousand sixty-three');\nINSERT INTO t3 VALUES(22387, 51934, 'fifty-one thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(22388, 51697, 'fifty-one thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(22389, 94067, 'ninety-four thousand sixty-seven');\nINSERT INTO t3 VALUES(22390, 9406, 'nine thousand four hundred six');\nINSERT INTO t3 VALUES(22391, 77419, 'seventy-seven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22392, 51600, 'fifty-one thousand six hundred');\nINSERT INTO t3 VALUES(22393, 68734, 'sixty-eight thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(22394, 94698, 'ninety-four thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(22395, 26845, 'twenty-six thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(22396, 33145, 'thirty-three thousand one hundred forty-five');\nINSERT INTO t3 VALUES(22397, 46414, 'forty-six thousand four hundred fourteen');\nINSERT INTO t3 VALUES(22398, 94506, 'ninety-four thousand five hundred six');\nINSERT INTO t3 VALUES(22399, 95090, 'ninety-five thousand ninety');\nINSERT INTO t3 VALUES(22400, 6585, 'six thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(22401, 40779, 'forty thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(22402, 96607, 'ninety-six thousand six hundred seven');\nINSERT INTO t3 VALUES(22403, 64492, 'sixty-four thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(22404, 84078, 'eighty-four thousand seventy-eight');\nINSERT INTO t3 VALUES(22405, 36908, 'thirty-six thousand nine hundred eight');\nINSERT INTO t3 VALUES(22406, 40657, 'forty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(22407, 20646, 'twenty thousand six hundred forty-six');\nINSERT INTO t3 VALUES(22408, 60510, 'sixty thousand five hundred ten');\nINSERT INTO t3 VALUES(22409, 73961, 'seventy-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(22410, 13169, 'thirteen thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(22411, 21915, 'twenty-one thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(22412, 11303, 'eleven thousand three hundred three');\nINSERT INTO t3 VALUES(22413, 39326, 'thirty-nine thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(22414, 5671, 'five thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(22415, 52919, 'fifty-two thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(22416, 75336, 'seventy-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(22417, 99578, 'ninety-nine thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(22418, 32711, 'thirty-two thousand seven hundred eleven');\nINSERT INTO t3 VALUES(22419, 36038, 'thirty-six thousand thirty-eight');\nINSERT INTO t3 VALUES(22420, 6707, 'six thousand seven hundred seven');\nINSERT INTO t3 VALUES(22421, 3678, 'three thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(22422, 30427, 'thirty thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(22423, 25681, 'twenty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(22424, 86599, 'eighty-six thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(22425, 80271, 'eighty thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(22426, 43175, 'forty-three thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(22427, 81706, 'eighty-one thousand seven hundred six');\nINSERT INTO t3 VALUES(22428, 83982, 'eighty-three thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(22429, 54881, 'fifty-four thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22430, 31451, 'thirty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(22431, 4086, 'four thousand eighty-six');\nINSERT INTO t3 VALUES(22432, 69995, 'sixty-nine thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(22433, 49166, 'forty-nine thousand one hundred sixty-six');\nINSERT INTO t3 VALUES(22434, 89482, 'eighty-nine thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(22435, 82005, 'eighty-two thousand five');\nINSERT INTO t3 VALUES(22436, 49004, 'forty-nine thousand four');\nINSERT INTO t3 VALUES(22437, 63147, 'sixty-three thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(22438, 80267, 'eighty thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(22439, 50796, 'fifty thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(22440, 75097, 'seventy-five thousand ninety-seven');\nINSERT INTO t3 VALUES(22441, 13363, 'thirteen thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(22442, 8339, 'eight thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(22443, 34388, 'thirty-four thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(22444, 3952, 'three thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(22445, 13186, 'thirteen thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(22446, 30296, 'thirty thousand two hundred ninety-six');\nINSERT INTO t3 VALUES(22447, 31017, 'thirty-one thousand seventeen');\nINSERT INTO t3 VALUES(22448, 17804, 'seventeen thousand eight hundred four');\nINSERT INTO t3 VALUES(22449, 34962, 'thirty-four thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(22450, 55189, 'fifty-five thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22451, 91833, 'ninety-one thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(22452, 49688, 'forty-nine thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(22453, 66182, 'sixty-six thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(22454, 99582, 'ninety-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(22455, 86313, 'eighty-six thousand three hundred thirteen');\nINSERT INTO t3 VALUES(22456, 35188, 'thirty-five thousand one hundred eighty-eight');\nINSERT INTO t3 VALUES(22457, 96210, 'ninety-six thousand two hundred ten');\nINSERT INTO t3 VALUES(22458, 95687, 'ninety-five thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(22459, 91745, 'ninety-one thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(22460, 82713, 'eighty-two thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(22461, 46026, 'forty-six thousand twenty-six');\nINSERT INTO t3 VALUES(22462, 96590, 'ninety-six thousand five hundred ninety');\nINSERT INTO t3 VALUES(22463, 26335, 'twenty-six thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(22464, 73744, 'seventy-three thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(22465, 4912, 'four thousand nine hundred twelve');\nINSERT INTO t3 VALUES(22466, 74079, 'seventy-four thousand seventy-nine');\nINSERT INTO t3 VALUES(22467, 71283, 'seventy-one thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22468, 82510, 'eighty-two thousand five hundred ten');\nINSERT INTO t3 VALUES(22469, 36400, 'thirty-six thousand four hundred');\nINSERT INTO t3 VALUES(22470, 24584, 'twenty-four thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(22471, 62690, 'sixty-two thousand six hundred ninety');\nINSERT INTO t3 VALUES(22472, 74182, 'seventy-four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(22473, 59501, 'fifty-nine thousand five hundred one');\nINSERT INTO t3 VALUES(22474, 73906, 'seventy-three thousand nine hundred six');\nINSERT INTO t3 VALUES(22475, 84201, 'eighty-four thousand two hundred one');\nINSERT INTO t3 VALUES(22476, 19013, 'nineteen thousand thirteen');\nINSERT INTO t3 VALUES(22477, 21821, 'twenty-one thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(22478, 47711, 'forty-seven thousand seven hundred eleven');\nINSERT INTO t3 VALUES(22479, 10009, 'ten thousand nine');\nINSERT INTO t3 VALUES(22480, 23909, 'twenty-three thousand nine hundred nine');\nINSERT INTO t3 VALUES(22481, 39934, 'thirty-nine thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(22482, 76259, 'seventy-six thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(22483, 26065, 'twenty-six thousand sixty-five');\nINSERT INTO t3 VALUES(22484, 39543, 'thirty-nine thousand five hundred forty-three');\nINSERT INTO t3 VALUES(22485, 49427, 'forty-nine thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(22486, 91481, 'ninety-one thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(22487, 51955, 'fifty-one thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(22488, 73018, 'seventy-three thousand eighteen');\nINSERT INTO t3 VALUES(22489, 42658, 'forty-two thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22490, 1012, 'one thousand twelve');\nINSERT INTO t3 VALUES(22491, 66699, 'sixty-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22492, 99683, 'ninety-nine thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(22493, 26364, 'twenty-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22494, 14630, 'fourteen thousand six hundred thirty');\nINSERT INTO t3 VALUES(22495, 97375, 'ninety-seven thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(22496, 97080, 'ninety-seven thousand eighty');\nINSERT INTO t3 VALUES(22497, 2373, 'two thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(22498, 41211, 'forty-one thousand two hundred eleven');\nINSERT INTO t3 VALUES(22499, 29659, 'twenty-nine thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(22500, 6419, 'six thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22501, 17338, 'seventeen thousand three hundred thirty-eight');\nINSERT INTO t3 VALUES(22502, 76924, 'seventy-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(22503, 19371, 'nineteen thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(22504, 20685, 'twenty thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(22505, 36069, 'thirty-six thousand sixty-nine');\nINSERT INTO t3 VALUES(22506, 73981, 'seventy-three thousand nine hundred eighty-one');\nINSERT INTO t3 VALUES(22507, 13129, 'thirteen thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(22508, 88970, 'eighty-eight thousand nine hundred seventy');\nINSERT INTO t3 VALUES(22509, 82916, 'eighty-two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(22510, 38938, 'thirty-eight thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(22511, 94741, 'ninety-four thousand seven hundred forty-one');\nINSERT INTO t3 VALUES(22512, 38227, 'thirty-eight thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(22513, 68239, 'sixty-eight thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(22514, 81326, 'eighty-one thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(22515, 94805, 'ninety-four thousand eight hundred five');\nINSERT INTO t3 VALUES(22516, 6101, 'six thousand one hundred one');\nINSERT INTO t3 VALUES(22517, 14592, 'fourteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(22518, 99163, 'ninety-nine thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(22519, 18708, 'eighteen thousand seven hundred eight');\nINSERT INTO t3 VALUES(22520, 51549, 'fifty-one thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(22521, 56196, 'fifty-six thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(22522, 13361, 'thirteen thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(22523, 821, 'eight hundred twenty-one');\nINSERT INTO t3 VALUES(22524, 67528, 'sixty-seven thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(22525, 44933, 'forty-four thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(22526, 54841, 'fifty-four thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(22527, 77904, 'seventy-seven thousand nine hundred four');\nINSERT INTO t3 VALUES(22528, 12606, 'twelve thousand six hundred six');\nINSERT INTO t3 VALUES(22529, 14951, 'fourteen thousand nine hundred fifty-one');\nINSERT INTO t3 VALUES(22530, 62014, 'sixty-two thousand fourteen');\nINSERT INTO t3 VALUES(22531, 14627, 'fourteen thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(22532, 99277, 'ninety-nine thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(22533, 69933, 'sixty-nine thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(22534, 58272, 'fifty-eight thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(22535, 47217, 'forty-seven thousand two hundred seventeen');\nINSERT INTO t3 VALUES(22536, 78599, 'seventy-eight thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(22537, 10699, 'ten thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22538, 60801, 'sixty thousand eight hundred one');\nINSERT INTO t3 VALUES(22539, 23594, 'twenty-three thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(22540, 91715, 'ninety-one thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(22541, 10879, 'ten thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(22542, 53661, 'fifty-three thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(22543, 8007, 'eight thousand seven');\nINSERT INTO t3 VALUES(22544, 54731, 'fifty-four thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(22545, 38540, 'thirty-eight thousand five hundred forty');\nINSERT INTO t3 VALUES(22546, 1512, 'one thousand five hundred twelve');\nINSERT INTO t3 VALUES(22547, 5898, 'five thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(22548, 79462, 'seventy-nine thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(22549, 68885, 'sixty-eight thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(22550, 9204, 'nine thousand two hundred four');\nINSERT INTO t3 VALUES(22551, 40727, 'forty thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(22552, 63189, 'sixty-three thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22553, 8225, 'eight thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(22554, 10054, 'ten thousand fifty-four');\nINSERT INTO t3 VALUES(22555, 91146, 'ninety-one thousand one hundred forty-six');\nINSERT INTO t3 VALUES(22556, 15561, 'fifteen thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(22557, 99349, 'ninety-nine thousand three hundred forty-nine');\nINSERT INTO t3 VALUES(22558, 13638, 'thirteen thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(22559, 77478, 'seventy-seven thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(22560, 70421, 'seventy thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(22561, 63773, 'sixty-three thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(22562, 21984, 'twenty-one thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(22563, 26207, 'twenty-six thousand two hundred seven');\nINSERT INTO t3 VALUES(22564, 57262, 'fifty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22565, 14062, 'fourteen thousand sixty-two');\nINSERT INTO t3 VALUES(22566, 54079, 'fifty-four thousand seventy-nine');\nINSERT INTO t3 VALUES(22567, 67119, 'sixty-seven thousand one hundred nineteen');\nINSERT INTO t3 VALUES(22568, 52911, 'fifty-two thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22569, 68926, 'sixty-eight thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(22570, 20437, 'twenty thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(22571, 10588, 'ten thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(22572, 60399, 'sixty thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(22573, 45134, 'forty-five thousand one hundred thirty-four');\nINSERT INTO t3 VALUES(22574, 38698, 'thirty-eight thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(22575, 89621, 'eighty-nine thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(22576, 13891, 'thirteen thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(22577, 42727, 'forty-two thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(22578, 17700, 'seventeen thousand seven hundred');\nINSERT INTO t3 VALUES(22579, 78109, 'seventy-eight thousand one hundred nine');\nINSERT INTO t3 VALUES(22580, 13448, 'thirteen thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(22581, 80599, 'eighty thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(22582, 85955, 'eighty-five thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(22583, 47326, 'forty-seven thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(22584, 95948, 'ninety-five thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(22585, 80920, 'eighty thousand nine hundred twenty');\nINSERT INTO t3 VALUES(22586, 71642, 'seventy-one thousand six hundred forty-two');\nINSERT INTO t3 VALUES(22587, 35628, 'thirty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(22588, 63218, 'sixty-three thousand two hundred eighteen');\nINSERT INTO t3 VALUES(22589, 88825, 'eighty-eight thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(22590, 62320, 'sixty-two thousand three hundred twenty');\nINSERT INTO t3 VALUES(22591, 46363, 'forty-six thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(22592, 14135, 'fourteen thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(22593, 34076, 'thirty-four thousand seventy-six');\nINSERT INTO t3 VALUES(22594, 53105, 'fifty-three thousand one hundred five');\nINSERT INTO t3 VALUES(22595, 31265, 'thirty-one thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(22596, 86163, 'eighty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(22597, 68260, 'sixty-eight thousand two hundred sixty');\nINSERT INTO t3 VALUES(22598, 59241, 'fifty-nine thousand two hundred forty-one');\nINSERT INTO t3 VALUES(22599, 68074, 'sixty-eight thousand seventy-four');\nINSERT INTO t3 VALUES(22600, 96699, 'ninety-six thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22601, 29323, 'twenty-nine thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(22602, 69624, 'sixty-nine thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(22603, 68641, 'sixty-eight thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22604, 10943, 'ten thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(22605, 86206, 'eighty-six thousand two hundred six');\nINSERT INTO t3 VALUES(22606, 17687, 'seventeen thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(22607, 69124, 'sixty-nine thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22608, 37262, 'thirty-seven thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22609, 76436, 'seventy-six thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(22610, 8463, 'eight thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(22611, 77467, 'seventy-seven thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(22612, 8572, 'eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(22613, 68056, 'sixty-eight thousand fifty-six');\nINSERT INTO t3 VALUES(22614, 93635, 'ninety-three thousand six hundred thirty-five');\nINSERT INTO t3 VALUES(22615, 54697, 'fifty-four thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(22616, 21655, 'twenty-one thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(22617, 99454, 'ninety-nine thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(22618, 48855, 'forty-eight thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(22619, 86744, 'eighty-six thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(22620, 10357, 'ten thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(22621, 37591, 'thirty-seven thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(22622, 44149, 'forty-four thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(22623, 13913, 'thirteen thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(22624, 38012, 'thirty-eight thousand twelve');\nINSERT INTO t3 VALUES(22625, 77186, 'seventy-seven thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(22626, 38275, 'thirty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(22627, 82596, 'eighty-two thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(22628, 31863, 'thirty-one thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(22629, 59071, 'fifty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(22630, 17881, 'seventeen thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22631, 67570, 'sixty-seven thousand five hundred seventy');\nINSERT INTO t3 VALUES(22632, 43826, 'forty-three thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(22633, 83633, 'eighty-three thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(22634, 31002, 'thirty-one thousand two');\nINSERT INTO t3 VALUES(22635, 60684, 'sixty thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(22636, 28923, 'twenty-eight thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(22637, 22175, 'twenty-two thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(22638, 89221, 'eighty-nine thousand two hundred twenty-one');\nINSERT INTO t3 VALUES(22639, 63361, 'sixty-three thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(22640, 58237, 'fifty-eight thousand two hundred thirty-seven');\nINSERT INTO t3 VALUES(22641, 35054, 'thirty-five thousand fifty-four');\nINSERT INTO t3 VALUES(22642, 1424, 'one thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(22643, 43666, 'forty-three thousand six hundred sixty-six');\nINSERT INTO t3 VALUES(22644, 40409, 'forty thousand four hundred nine');\nINSERT INTO t3 VALUES(22645, 33682, 'thirty-three thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(22646, 65654, 'sixty-five thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(22647, 38851, 'thirty-eight thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(22648, 90697, 'ninety thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(22649, 55186, 'fifty-five thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(22650, 47660, 'forty-seven thousand six hundred sixty');\nINSERT INTO t3 VALUES(22651, 73333, 'seventy-three thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(22652, 80656, 'eighty thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(22653, 90456, 'ninety thousand four hundred fifty-six');\nINSERT INTO t3 VALUES(22654, 80206, 'eighty thousand two hundred six');\nINSERT INTO t3 VALUES(22655, 13317, 'thirteen thousand three hundred seventeen');\nINSERT INTO t3 VALUES(22656, 92130, 'ninety-two thousand one hundred thirty');\nINSERT INTO t3 VALUES(22657, 69691, 'sixty-nine thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(22658, 49643, 'forty-nine thousand six hundred forty-three');\nINSERT INTO t3 VALUES(22659, 72908, 'seventy-two thousand nine hundred eight');\nINSERT INTO t3 VALUES(22660, 17863, 'seventeen thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(22661, 56125, 'fifty-six thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(22662, 56476, 'fifty-six thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(22663, 47629, 'forty-seven thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(22664, 95842, 'ninety-five thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22665, 30306, 'thirty thousand three hundred six');\nINSERT INTO t3 VALUES(22666, 73791, 'seventy-three thousand seven hundred ninety-one');\nINSERT INTO t3 VALUES(22667, 93124, 'ninety-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22668, 72960, 'seventy-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(22669, 39190, 'thirty-nine thousand one hundred ninety');\nINSERT INTO t3 VALUES(22670, 31214, 'thirty-one thousand two hundred fourteen');\nINSERT INTO t3 VALUES(22671, 24897, 'twenty-four thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(22672, 36517, 'thirty-six thousand five hundred seventeen');\nINSERT INTO t3 VALUES(22673, 1381, 'one thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(22674, 81193, 'eighty-one thousand one hundred ninety-three');\nINSERT INTO t3 VALUES(22675, 49723, 'forty-nine thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(22676, 58089, 'fifty-eight thousand eighty-nine');\nINSERT INTO t3 VALUES(22677, 42656, 'forty-two thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(22678, 53931, 'fifty-three thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(22679, 98745, 'ninety-eight thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(22680, 70780, 'seventy thousand seven hundred eighty');\nINSERT INTO t3 VALUES(22681, 42708, 'forty-two thousand seven hundred eight');\nINSERT INTO t3 VALUES(22682, 94266, 'ninety-four thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(22683, 35797, 'thirty-five thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(22684, 94661, 'ninety-four thousand six hundred sixty-one');\nINSERT INTO t3 VALUES(22685, 725, 'seven hundred twenty-five');\nINSERT INTO t3 VALUES(22686, 66150, 'sixty-six thousand one hundred fifty');\nINSERT INTO t3 VALUES(22687, 47855, 'forty-seven thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(22688, 51487, 'fifty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22689, 85336, 'eighty-five thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(22690, 58295, 'fifty-eight thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(22691, 79736, 'seventy-nine thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(22692, 62021, 'sixty-two thousand twenty-one');\nINSERT INTO t3 VALUES(22693, 47243, 'forty-seven thousand two hundred forty-three');\nINSERT INTO t3 VALUES(22694, 71839, 'seventy-one thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(22695, 80541, 'eighty thousand five hundred forty-one');\nINSERT INTO t3 VALUES(22696, 55725, 'fifty-five thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(22697, 12857, 'twelve thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(22698, 80649, 'eighty thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(22699, 24997, 'twenty-four thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(22700, 56304, 'fifty-six thousand three hundred four');\nINSERT INTO t3 VALUES(22701, 5252, 'five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(22702, 43552, 'forty-three thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(22703, 5, 'five');\nINSERT INTO t3 VALUES(22704, 13340, 'thirteen thousand three hundred forty');\nINSERT INTO t3 VALUES(22705, 2375, 'two thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(22706, 44108, 'forty-four thousand one hundred eight');\nINSERT INTO t3 VALUES(22707, 95838, 'ninety-five thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(22708, 8189, 'eight thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22709, 84953, 'eighty-four thousand nine hundred fifty-three');\nINSERT INTO t3 VALUES(22710, 24689, 'twenty-four thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(22711, 84885, 'eighty-four thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(22712, 1806, 'one thousand eight hundred six');\nINSERT INTO t3 VALUES(22713, 49348, 'forty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(22714, 67161, 'sixty-seven thousand one hundred sixty-one');\nINSERT INTO t3 VALUES(22715, 94487, 'ninety-four thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22716, 38308, 'thirty-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(22717, 17704, 'seventeen thousand seven hundred four');\nINSERT INTO t3 VALUES(22718, 22828, 'twenty-two thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(22719, 48924, 'forty-eight thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(22720, 49914, 'forty-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(22721, 97594, 'ninety-seven thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(22722, 74533, 'seventy-four thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(22723, 35492, 'thirty-five thousand four hundred ninety-two');\nINSERT INTO t3 VALUES(22724, 22402, 'twenty-two thousand four hundred two');\nINSERT INTO t3 VALUES(22725, 19780, 'nineteen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(22726, 33038, 'thirty-three thousand thirty-eight');\nINSERT INTO t3 VALUES(22727, 66726, 'sixty-six thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(22728, 30253, 'thirty thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(22729, 76364, 'seventy-six thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22730, 9212, 'nine thousand two hundred twelve');\nINSERT INTO t3 VALUES(22731, 11843, 'eleven thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(22732, 58408, 'fifty-eight thousand four hundred eight');\nINSERT INTO t3 VALUES(22733, 33650, 'thirty-three thousand six hundred fifty');\nINSERT INTO t3 VALUES(22734, 9744, 'nine thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(22735, 82056, 'eighty-two thousand fifty-six');\nINSERT INTO t3 VALUES(22736, 94458, 'ninety-four thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(22737, 26991, 'twenty-six thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(22738, 42960, 'forty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(22739, 13422, 'thirteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(22740, 9496, 'nine thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(22741, 30449, 'thirty thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(22742, 57562, 'fifty-seven thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(22743, 54016, 'fifty-four thousand sixteen');\nINSERT INTO t3 VALUES(22744, 97907, 'ninety-seven thousand nine hundred seven');\nINSERT INTO t3 VALUES(22745, 81128, 'eighty-one thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(22746, 27930, 'twenty-seven thousand nine hundred thirty');\nINSERT INTO t3 VALUES(22747, 85207, 'eighty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(22748, 39185, 'thirty-nine thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(22749, 77846, 'seventy-seven thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(22750, 51781, 'fifty-one thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(22751, 79854, 'seventy-nine thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(22752, 9606, 'nine thousand six hundred six');\nINSERT INTO t3 VALUES(22753, 50958, 'fifty thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(22754, 16512, 'sixteen thousand five hundred twelve');\nINSERT INTO t3 VALUES(22755, 61013, 'sixty-one thousand thirteen');\nINSERT INTO t3 VALUES(22756, 18658, 'eighteen thousand six hundred fifty-eight');\nINSERT INTO t3 VALUES(22757, 58300, 'fifty-eight thousand three hundred');\nINSERT INTO t3 VALUES(22758, 98007, 'ninety-eight thousand seven');\nINSERT INTO t3 VALUES(22759, 71426, 'seventy-one thousand four hundred twenty-six');\nINSERT INTO t3 VALUES(22760, 75233, 'seventy-five thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(22761, 47294, 'forty-seven thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(22762, 15051, 'fifteen thousand fifty-one');\nINSERT INTO t3 VALUES(22763, 70283, 'seventy thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(22764, 31152, 'thirty-one thousand one hundred fifty-two');\nINSERT INTO t3 VALUES(22765, 3590, 'three thousand five hundred ninety');\nINSERT INTO t3 VALUES(22766, 65487, 'sixty-five thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22767, 24637, 'twenty-four thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(22768, 70476, 'seventy thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(22769, 22345, 'twenty-two thousand three hundred forty-five');\nINSERT INTO t3 VALUES(22770, 53565, 'fifty-three thousand five hundred sixty-five');\nINSERT INTO t3 VALUES(22771, 69842, 'sixty-nine thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(22772, 57504, 'fifty-seven thousand five hundred four');\nINSERT INTO t3 VALUES(22773, 13734, 'thirteen thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(22774, 64786, 'sixty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(22775, 71061, 'seventy-one thousand sixty-one');\nINSERT INTO t3 VALUES(22776, 76605, 'seventy-six thousand six hundred five');\nINSERT INTO t3 VALUES(22777, 40969, 'forty thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(22778, 7010, 'seven thousand ten');\nINSERT INTO t3 VALUES(22779, 14256, 'fourteen thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(22780, 80568, 'eighty thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(22781, 86164, 'eighty-six thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(22782, 30268, 'thirty thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(22783, 45155, 'forty-five thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(22784, 89211, 'eighty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(22785, 32628, 'thirty-two thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(22786, 63124, 'sixty-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(22787, 34098, 'thirty-four thousand ninety-eight');\nINSERT INTO t3 VALUES(22788, 81545, 'eighty-one thousand five hundred forty-five');\nINSERT INTO t3 VALUES(22789, 18780, 'eighteen thousand seven hundred eighty');\nINSERT INTO t3 VALUES(22790, 94641, 'ninety-four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22791, 11975, 'eleven thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(22792, 18230, 'eighteen thousand two hundred thirty');\nINSERT INTO t3 VALUES(22793, 97006, 'ninety-seven thousand six');\nINSERT INTO t3 VALUES(22794, 44021, 'forty-four thousand twenty-one');\nINSERT INTO t3 VALUES(22795, 90412, 'ninety thousand four hundred twelve');\nINSERT INTO t3 VALUES(22796, 58337, 'fifty-eight thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(22797, 64127, 'sixty-four thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(22798, 18269, 'eighteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(22799, 4267, 'four thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(22800, 68632, 'sixty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(22801, 53660, 'fifty-three thousand six hundred sixty');\nINSERT INTO t3 VALUES(22802, 59516, 'fifty-nine thousand five hundred sixteen');\nINSERT INTO t3 VALUES(22803, 84911, 'eighty-four thousand nine hundred eleven');\nINSERT INTO t3 VALUES(22804, 68153, 'sixty-eight thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(22805, 20918, 'twenty thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(22806, 51369, 'fifty-one thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(22807, 98827, 'ninety-eight thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(22808, 31139, 'thirty-one thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(22809, 30834, 'thirty thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(22810, 47328, 'forty-seven thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(22811, 12819, 'twelve thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(22812, 95853, 'ninety-five thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(22813, 56234, 'fifty-six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(22814, 63364, 'sixty-three thousand three hundred sixty-four');\nINSERT INTO t3 VALUES(22815, 50632, 'fifty thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(22816, 96322, 'ninety-six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(22817, 31209, 'thirty-one thousand two hundred nine');\nINSERT INTO t3 VALUES(22818, 79984, 'seventy-nine thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(22819, 14699, 'fourteen thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(22820, 46747, 'forty-six thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(22821, 67471, 'sixty-seven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(22822, 58140, 'fifty-eight thousand one hundred forty');\nINSERT INTO t3 VALUES(22823, 66496, 'sixty-six thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(22824, 1201, 'one thousand two hundred one');\nINSERT INTO t3 VALUES(22825, 73674, 'seventy-three thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(22826, 54786, 'fifty-four thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(22827, 17528, 'seventeen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(22828, 97169, 'ninety-seven thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(22829, 29489, 'twenty-nine thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(22830, 53143, 'fifty-three thousand one hundred forty-three');\nINSERT INTO t3 VALUES(22831, 60344, 'sixty thousand three hundred forty-four');\nINSERT INTO t3 VALUES(22832, 40566, 'forty thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(22833, 53504, 'fifty-three thousand five hundred four');\nINSERT INTO t3 VALUES(22834, 68612, 'sixty-eight thousand six hundred twelve');\nINSERT INTO t3 VALUES(22835, 47093, 'forty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(22836, 10012, 'ten thousand twelve');\nINSERT INTO t3 VALUES(22837, 38837, 'thirty-eight thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(22838, 32262, 'thirty-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22839, 92035, 'ninety-two thousand thirty-five');\nINSERT INTO t3 VALUES(22840, 45549, 'forty-five thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(22841, 59702, 'fifty-nine thousand seven hundred two');\nINSERT INTO t3 VALUES(22842, 86555, 'eighty-six thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(22843, 29582, 'twenty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(22844, 55207, 'fifty-five thousand two hundred seven');\nINSERT INTO t3 VALUES(22845, 61230, 'sixty-one thousand two hundred thirty');\nINSERT INTO t3 VALUES(22846, 42412, 'forty-two thousand four hundred twelve');\nINSERT INTO t3 VALUES(22847, 58210, 'fifty-eight thousand two hundred ten');\nINSERT INTO t3 VALUES(22848, 44653, 'forty-four thousand six hundred fifty-three');\nINSERT INTO t3 VALUES(22849, 12389, 'twelve thousand three hundred eighty-nine');\nINSERT INTO t3 VALUES(22850, 35040, 'thirty-five thousand forty');\nINSERT INTO t3 VALUES(22851, 28941, 'twenty-eight thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(22852, 93101, 'ninety-three thousand one hundred one');\nINSERT INTO t3 VALUES(22853, 10222, 'ten thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(22854, 82013, 'eighty-two thousand thirteen');\nINSERT INTO t3 VALUES(22855, 275, 'two hundred seventy-five');\nINSERT INTO t3 VALUES(22856, 4327, 'four thousand three hundred twenty-seven');\nINSERT INTO t3 VALUES(22857, 49325, 'forty-nine thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(22858, 2367, 'two thousand three hundred sixty-seven');\nINSERT INTO t3 VALUES(22859, 63900, 'sixty-three thousand nine hundred');\nINSERT INTO t3 VALUES(22860, 97488, 'ninety-seven thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(22861, 49314, 'forty-nine thousand three hundred fourteen');\nINSERT INTO t3 VALUES(22862, 80974, 'eighty thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(22863, 16594, 'sixteen thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(22864, 41280, 'forty-one thousand two hundred eighty');\nINSERT INTO t3 VALUES(22865, 61373, 'sixty-one thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(22866, 19224, 'nineteen thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(22867, 43507, 'forty-three thousand five hundred seven');\nINSERT INTO t3 VALUES(22868, 31376, 'thirty-one thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(22869, 39992, 'thirty-nine thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(22870, 31748, 'thirty-one thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(22871, 99487, 'ninety-nine thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(22872, 35881, 'thirty-five thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(22873, 33317, 'thirty-three thousand three hundred seventeen');\nINSERT INTO t3 VALUES(22874, 13641, 'thirteen thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22875, 3369, 'three thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(22876, 68216, 'sixty-eight thousand two hundred sixteen');\nINSERT INTO t3 VALUES(22877, 48698, 'forty-eight thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(22878, 45380, 'forty-five thousand three hundred eighty');\nINSERT INTO t3 VALUES(22879, 54102, 'fifty-four thousand one hundred two');\nINSERT INTO t3 VALUES(22880, 92108, 'ninety-two thousand one hundred eight');\nINSERT INTO t3 VALUES(22881, 46749, 'forty-six thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(22882, 69667, 'sixty-nine thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(22883, 3973, 'three thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(22884, 62945, 'sixty-two thousand nine hundred forty-five');\nINSERT INTO t3 VALUES(22885, 49955, 'forty-nine thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(22886, 86100, 'eighty-six thousand one hundred');\nINSERT INTO t3 VALUES(22887, 85299, 'eighty-five thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(22888, 65291, 'sixty-five thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(22889, 11694, 'eleven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(22890, 90309, 'ninety thousand three hundred nine');\nINSERT INTO t3 VALUES(22891, 16983, 'sixteen thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(22892, 12167, 'twelve thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(22893, 24894, 'twenty-four thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(22894, 39342, 'thirty-nine thousand three hundred forty-two');\nINSERT INTO t3 VALUES(22895, 660, 'six hundred sixty');\nINSERT INTO t3 VALUES(22896, 15285, 'fifteen thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(22897, 61519, 'sixty-one thousand five hundred nineteen');\nINSERT INTO t3 VALUES(22898, 40291, 'forty thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(22899, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(22900, 84379, 'eighty-four thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(22901, 76362, 'seventy-six thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(22902, 89723, 'eighty-nine thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(22903, 58355, 'fifty-eight thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(22904, 45419, 'forty-five thousand four hundred nineteen');\nINSERT INTO t3 VALUES(22905, 32225, 'thirty-two thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(22906, 97406, 'ninety-seven thousand four hundred six');\nINSERT INTO t3 VALUES(22907, 56868, 'fifty-six thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(22908, 93462, 'ninety-three thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(22909, 63205, 'sixty-three thousand two hundred five');\nINSERT INTO t3 VALUES(22910, 27987, 'twenty-seven thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(22911, 59525, 'fifty-nine thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(22912, 70262, 'seventy thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(22913, 39374, 'thirty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(22914, 40047, 'forty thousand forty-seven');\nINSERT INTO t3 VALUES(22915, 22047, 'twenty-two thousand forty-seven');\nINSERT INTO t3 VALUES(22916, 81424, 'eighty-one thousand four hundred twenty-four');\nINSERT INTO t3 VALUES(22917, 20440, 'twenty thousand four hundred forty');\nINSERT INTO t3 VALUES(22918, 75087, 'seventy-five thousand eighty-seven');\nINSERT INTO t3 VALUES(22919, 81908, 'eighty-one thousand nine hundred eight');\nINSERT INTO t3 VALUES(22920, 21473, 'twenty-one thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(22921, 35063, 'thirty-five thousand sixty-three');\nINSERT INTO t3 VALUES(22922, 62545, 'sixty-two thousand five hundred forty-five');\nINSERT INTO t3 VALUES(22923, 59027, 'fifty-nine thousand twenty-seven');\nINSERT INTO t3 VALUES(22924, 23539, 'twenty-three thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(22925, 67118, 'sixty-seven thousand one hundred eighteen');\nINSERT INTO t3 VALUES(22926, 32933, 'thirty-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(22927, 18681, 'eighteen thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(22928, 58604, 'fifty-eight thousand six hundred four');\nINSERT INTO t3 VALUES(22929, 40455, 'forty thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(22930, 88400, 'eighty-eight thousand four hundred');\nINSERT INTO t3 VALUES(22931, 28814, 'twenty-eight thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(22932, 63577, 'sixty-three thousand five hundred seventy-seven');\nINSERT INTO t3 VALUES(22933, 4947, 'four thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(22934, 6039, 'six thousand thirty-nine');\nINSERT INTO t3 VALUES(22935, 8664, 'eight thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(22936, 15823, 'fifteen thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(22937, 64187, 'sixty-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(22938, 24621, 'twenty-four thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(22939, 83123, 'eighty-three thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(22940, 67581, 'sixty-seven thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(22941, 74700, 'seventy-four thousand seven hundred');\nINSERT INTO t3 VALUES(22942, 16105, 'sixteen thousand one hundred five');\nINSERT INTO t3 VALUES(22943, 80916, 'eighty thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(22944, 34414, 'thirty-four thousand four hundred fourteen');\nINSERT INTO t3 VALUES(22945, 47875, 'forty-seven thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(22946, 90804, 'ninety thousand eight hundred four');\nINSERT INTO t3 VALUES(22947, 2445, 'two thousand four hundred forty-five');\nINSERT INTO t3 VALUES(22948, 95420, 'ninety-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(22949, 25641, 'twenty-five thousand six hundred forty-one');\nINSERT INTO t3 VALUES(22950, 42960, 'forty-two thousand nine hundred sixty');\nINSERT INTO t3 VALUES(22951, 79147, 'seventy-nine thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(22952, 44372, 'forty-four thousand three hundred seventy-two');\nINSERT INTO t3 VALUES(22953, 97313, 'ninety-seven thousand three hundred thirteen');\nINSERT INTO t3 VALUES(22954, 14157, 'fourteen thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(22955, 52264, 'fifty-two thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(22956, 35769, 'thirty-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(22957, 1400, 'one thousand four hundred');\nINSERT INTO t3 VALUES(22958, 8281, 'eight thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(22959, 18991, 'eighteen thousand nine hundred ninety-one');\nINSERT INTO t3 VALUES(22960, 38254, 'thirty-eight thousand two hundred fifty-four');\nINSERT INTO t3 VALUES(22961, 26838, 'twenty-six thousand eight hundred thirty-eight');\nINSERT INTO t3 VALUES(22962, 76795, 'seventy-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(22963, 62194, 'sixty-two thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(22964, 16614, 'sixteen thousand six hundred fourteen');\nINSERT INTO t3 VALUES(22965, 94025, 'ninety-four thousand twenty-five');\nINSERT INTO t3 VALUES(22966, 70055, 'seventy thousand fifty-five');\nINSERT INTO t3 VALUES(22967, 37001, 'thirty-seven thousand one');\nINSERT INTO t3 VALUES(22968, 1595, 'one thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(22969, 41386, 'forty-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(22970, 80505, 'eighty thousand five hundred five');\nINSERT INTO t3 VALUES(22971, 19489, 'nineteen thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(22972, 3409, 'three thousand four hundred nine');\nINSERT INTO t3 VALUES(22973, 72882, 'seventy-two thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(22974, 48677, 'forty-eight thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(22975, 23885, 'twenty-three thousand eight hundred eighty-five');\nINSERT INTO t3 VALUES(22976, 14376, 'fourteen thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(22977, 53459, 'fifty-three thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(22978, 64701, 'sixty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(22979, 34054, 'thirty-four thousand fifty-four');\nINSERT INTO t3 VALUES(22980, 46734, 'forty-six thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(22981, 91189, 'ninety-one thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(22982, 14075, 'fourteen thousand seventy-five');\nINSERT INTO t3 VALUES(22983, 39615, 'thirty-nine thousand six hundred fifteen');\nINSERT INTO t3 VALUES(22984, 85059, 'eighty-five thousand fifty-nine');\nINSERT INTO t3 VALUES(22985, 59457, 'fifty-nine thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(22986, 10143, 'ten thousand one hundred forty-three');\nINSERT INTO t3 VALUES(22987, 75054, 'seventy-five thousand fifty-four');\nINSERT INTO t3 VALUES(22988, 61469, 'sixty-one thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(22989, 12803, 'twelve thousand eight hundred three');\nINSERT INTO t3 VALUES(22990, 15617, 'fifteen thousand six hundred seventeen');\nINSERT INTO t3 VALUES(22991, 23181, 'twenty-three thousand one hundred eighty-one');\nINSERT INTO t3 VALUES(22992, 65662, 'sixty-five thousand six hundred sixty-two');\nINSERT INTO t3 VALUES(22993, 23783, 'twenty-three thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(22994, 12011, 'twelve thousand eleven');\nINSERT INTO t3 VALUES(22995, 40657, 'forty thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(22996, 18837, 'eighteen thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(22997, 68983, 'sixty-eight thousand nine hundred eighty-three');\nINSERT INTO t3 VALUES(22998, 78511, 'seventy-eight thousand five hundred eleven');\nINSERT INTO t3 VALUES(22999, 10581, 'ten thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(23000, 11350, 'eleven thousand three hundred fifty');\nINSERT INTO t3 VALUES(23001, 66567, 'sixty-six thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(23002, 48073, 'forty-eight thousand seventy-three');\nINSERT INTO t3 VALUES(23003, 76384, 'seventy-six thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(23004, 25536, 'twenty-five thousand five hundred thirty-six');\nINSERT INTO t3 VALUES(23005, 6861, 'six thousand eight hundred sixty-one');\nINSERT INTO t3 VALUES(23006, 99209, 'ninety-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(23007, 66833, 'sixty-six thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(23008, 14114, 'fourteen thousand one hundred fourteen');\nINSERT INTO t3 VALUES(23009, 24192, 'twenty-four thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(23010, 9552, 'nine thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(23011, 36135, 'thirty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(23012, 91087, 'ninety-one thousand eighty-seven');\nINSERT INTO t3 VALUES(23013, 61946, 'sixty-one thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(23014, 16485, 'sixteen thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(23015, 98493, 'ninety-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(23016, 67539, 'sixty-seven thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(23017, 78278, 'seventy-eight thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23018, 41429, 'forty-one thousand four hundred twenty-nine');\nINSERT INTO t3 VALUES(23019, 19827, 'nineteen thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(23020, 79489, 'seventy-nine thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(23021, 91287, 'ninety-one thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(23022, 91843, 'ninety-one thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(23023, 76153, 'seventy-six thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(23024, 50683, 'fifty thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(23025, 28875, 'twenty-eight thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(23026, 81191, 'eighty-one thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(23027, 58883, 'fifty-eight thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(23028, 25628, 'twenty-five thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23029, 30816, 'thirty thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(23030, 63716, 'sixty-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(23031, 41084, 'forty-one thousand eighty-four');\nINSERT INTO t3 VALUES(23032, 20720, 'twenty thousand seven hundred twenty');\nINSERT INTO t3 VALUES(23033, 42353, 'forty-two thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(23034, 56594, 'fifty-six thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(23035, 87754, 'eighty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(23036, 5313, 'five thousand three hundred thirteen');\nINSERT INTO t3 VALUES(23037, 72281, 'seventy-two thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(23038, 85904, 'eighty-five thousand nine hundred four');\nINSERT INTO t3 VALUES(23039, 34449, 'thirty-four thousand four hundred forty-nine');\nINSERT INTO t3 VALUES(23040, 1053, 'one thousand fifty-three');\nINSERT INTO t3 VALUES(23041, 71285, 'seventy-one thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(23042, 43866, 'forty-three thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(23043, 51646, 'fifty-one thousand six hundred forty-six');\nINSERT INTO t3 VALUES(23044, 53961, 'fifty-three thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(23045, 52878, 'fifty-two thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(23046, 4008, 'four thousand eight');\nINSERT INTO t3 VALUES(23047, 34585, 'thirty-four thousand five hundred eighty-five');\nINSERT INTO t3 VALUES(23048, 35507, 'thirty-five thousand five hundred seven');\nINSERT INTO t3 VALUES(23049, 21406, 'twenty-one thousand four hundred six');\nINSERT INTO t3 VALUES(23050, 48613, 'forty-eight thousand six hundred thirteen');\nINSERT INTO t3 VALUES(23051, 95326, 'ninety-five thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(23052, 66962, 'sixty-six thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(23053, 5894, 'five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(23054, 70930, 'seventy thousand nine hundred thirty');\nINSERT INTO t3 VALUES(23055, 99180, 'ninety-nine thousand one hundred eighty');\nINSERT INTO t3 VALUES(23056, 54294, 'fifty-four thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(23057, 72453, 'seventy-two thousand four hundred fifty-three');\nINSERT INTO t3 VALUES(23058, 27943, 'twenty-seven thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(23059, 6644, 'six thousand six hundred forty-four');\nINSERT INTO t3 VALUES(23060, 23131, 'twenty-three thousand one hundred thirty-one');\nINSERT INTO t3 VALUES(23061, 52234, 'fifty-two thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23062, 34433, 'thirty-four thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23063, 11985, 'eleven thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(23064, 83619, 'eighty-three thousand six hundred nineteen');\nINSERT INTO t3 VALUES(23065, 7549, 'seven thousand five hundred forty-nine');\nINSERT INTO t3 VALUES(23066, 61214, 'sixty-one thousand two hundred fourteen');\nINSERT INTO t3 VALUES(23067, 83855, 'eighty-three thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(23068, 46128, 'forty-six thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(23069, 86560, 'eighty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(23070, 96219, 'ninety-six thousand two hundred nineteen');\nINSERT INTO t3 VALUES(23071, 73016, 'seventy-three thousand sixteen');\nINSERT INTO t3 VALUES(23072, 10887, 'ten thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(23073, 75265, 'seventy-five thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(23074, 98835, 'ninety-eight thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(23075, 91250, 'ninety-one thousand two hundred fifty');\nINSERT INTO t3 VALUES(23076, 27001, 'twenty-seven thousand one');\nINSERT INTO t3 VALUES(23077, 18930, 'eighteen thousand nine hundred thirty');\nINSERT INTO t3 VALUES(23078, 76974, 'seventy-six thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(23079, 19006, 'nineteen thousand six');\nINSERT INTO t3 VALUES(23080, 95770, 'ninety-five thousand seven hundred seventy');\nINSERT INTO t3 VALUES(23081, 40934, 'forty thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(23082, 39149, 'thirty-nine thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(23083, 76963, 'seventy-six thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(23084, 46497, 'forty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(23085, 92177, 'ninety-two thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(23086, 62186, 'sixty-two thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(23087, 481, 'four hundred eighty-one');\nINSERT INTO t3 VALUES(23088, 82975, 'eighty-two thousand nine hundred seventy-five');\nINSERT INTO t3 VALUES(23089, 96149, 'ninety-six thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(23090, 94670, 'ninety-four thousand six hundred seventy');\nINSERT INTO t3 VALUES(23091, 94696, 'ninety-four thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(23092, 39892, 'thirty-nine thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(23093, 68058, 'sixty-eight thousand fifty-eight');\nINSERT INTO t3 VALUES(23094, 37851, 'thirty-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(23095, 67218, 'sixty-seven thousand two hundred eighteen');\nINSERT INTO t3 VALUES(23096, 52925, 'fifty-two thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(23097, 64368, 'sixty-four thousand three hundred sixty-eight');\nINSERT INTO t3 VALUES(23098, 29304, 'twenty-nine thousand three hundred four');\nINSERT INTO t3 VALUES(23099, 20209, 'twenty thousand two hundred nine');\nINSERT INTO t3 VALUES(23100, 5995, 'five thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23101, 12562, 'twelve thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(23102, 18938, 'eighteen thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23103, 10478, 'ten thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(23104, 61098, 'sixty-one thousand ninety-eight');\nINSERT INTO t3 VALUES(23105, 99284, 'ninety-nine thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(23106, 17911, 'seventeen thousand nine hundred eleven');\nINSERT INTO t3 VALUES(23107, 18150, 'eighteen thousand one hundred fifty');\nINSERT INTO t3 VALUES(23108, 6214, 'six thousand two hundred fourteen');\nINSERT INTO t3 VALUES(23109, 47205, 'forty-seven thousand two hundred five');\nINSERT INTO t3 VALUES(23110, 9065, 'nine thousand sixty-five');\nINSERT INTO t3 VALUES(23111, 46042, 'forty-six thousand forty-two');\nINSERT INTO t3 VALUES(23112, 55490, 'fifty-five thousand four hundred ninety');\nINSERT INTO t3 VALUES(23113, 68322, 'sixty-eight thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(23114, 60574, 'sixty thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23115, 73601, 'seventy-three thousand six hundred one');\nINSERT INTO t3 VALUES(23116, 32783, 'thirty-two thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(23117, 98620, 'ninety-eight thousand six hundred twenty');\nINSERT INTO t3 VALUES(23118, 31790, 'thirty-one thousand seven hundred ninety');\nINSERT INTO t3 VALUES(23119, 1375, 'one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(23120, 10330, 'ten thousand three hundred thirty');\nINSERT INTO t3 VALUES(23121, 30552, 'thirty thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(23122, 60630, 'sixty thousand six hundred thirty');\nINSERT INTO t3 VALUES(23123, 71198, 'seventy-one thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(23124, 86487, 'eighty-six thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(23125, 19938, 'nineteen thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23126, 79990, 'seventy-nine thousand nine hundred ninety');\nINSERT INTO t3 VALUES(23127, 27717, 'twenty-seven thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(23128, 96471, 'ninety-six thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(23129, 51872, 'fifty-one thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(23130, 80786, 'eighty thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(23131, 54547, 'fifty-four thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23132, 82645, 'eighty-two thousand six hundred forty-five');\nINSERT INTO t3 VALUES(23133, 85876, 'eighty-five thousand eight hundred seventy-six');\nINSERT INTO t3 VALUES(23134, 41386, 'forty-one thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(23135, 20498, 'twenty thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(23136, 26093, 'twenty-six thousand ninety-three');\nINSERT INTO t3 VALUES(23137, 19592, 'nineteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(23138, 79794, 'seventy-nine thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(23139, 52073, 'fifty-two thousand seventy-three');\nINSERT INTO t3 VALUES(23140, 19289, 'nineteen thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(23141, 66033, 'sixty-six thousand thirty-three');\nINSERT INTO t3 VALUES(23142, 81274, 'eighty-one thousand two hundred seventy-four');\nINSERT INTO t3 VALUES(23143, 73729, 'seventy-three thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(23144, 96530, 'ninety-six thousand five hundred thirty');\nINSERT INTO t3 VALUES(23145, 99634, 'ninety-nine thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(23146, 68224, 'sixty-eight thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(23147, 15392, 'fifteen thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(23148, 16454, 'sixteen thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(23149, 9850, 'nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(23150, 87416, 'eighty-seven thousand four hundred sixteen');\nINSERT INTO t3 VALUES(23151, 44719, 'forty-four thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(23152, 24418, 'twenty-four thousand four hundred eighteen');\nINSERT INTO t3 VALUES(23153, 45169, 'forty-five thousand one hundred sixty-nine');\nINSERT INTO t3 VALUES(23154, 84136, 'eighty-four thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(23155, 11471, 'eleven thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(23156, 97232, 'ninety-seven thousand two hundred thirty-two');\nINSERT INTO t3 VALUES(23157, 95879, 'ninety-five thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(23158, 39264, 'thirty-nine thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(23159, 54919, 'fifty-four thousand nine hundred nineteen');\nINSERT INTO t3 VALUES(23160, 59821, 'fifty-nine thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(23161, 85477, 'eighty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23162, 56209, 'fifty-six thousand two hundred nine');\nINSERT INTO t3 VALUES(23163, 91301, 'ninety-one thousand three hundred one');\nINSERT INTO t3 VALUES(23164, 48433, 'forty-eight thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23165, 46090, 'forty-six thousand ninety');\nINSERT INTO t3 VALUES(23166, 84253, 'eighty-four thousand two hundred fifty-three');\nINSERT INTO t3 VALUES(23167, 45992, 'forty-five thousand nine hundred ninety-two');\nINSERT INTO t3 VALUES(23168, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t3 VALUES(23169, 68022, 'sixty-eight thousand twenty-two');\nINSERT INTO t3 VALUES(23170, 93401, 'ninety-three thousand four hundred one');\nINSERT INTO t3 VALUES(23171, 58412, 'fifty-eight thousand four hundred twelve');\nINSERT INTO t3 VALUES(23172, 56328, 'fifty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(23173, 98224, 'ninety-eight thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(23174, 99950, 'ninety-nine thousand nine hundred fifty');\nINSERT INTO t3 VALUES(23175, 25006, 'twenty-five thousand six');\nINSERT INTO t3 VALUES(23176, 85041, 'eighty-five thousand forty-one');\nINSERT INTO t3 VALUES(23177, 29170, 'twenty-nine thousand one hundred seventy');\nINSERT INTO t3 VALUES(23178, 59211, 'fifty-nine thousand two hundred eleven');\nINSERT INTO t3 VALUES(23179, 42934, 'forty-two thousand nine hundred thirty-four');\nINSERT INTO t3 VALUES(23180, 8273, 'eight thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(23181, 2480, 'two thousand four hundred eighty');\nINSERT INTO t3 VALUES(23182, 21749, 'twenty-one thousand seven hundred forty-nine');\nINSERT INTO t3 VALUES(23183, 50524, 'fifty thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(23184, 34177, 'thirty-four thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(23185, 32279, 'thirty-two thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(23186, 24393, 'twenty-four thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(23187, 40406, 'forty thousand four hundred six');\nINSERT INTO t3 VALUES(23188, 12174, 'twelve thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(23189, 89902, 'eighty-nine thousand nine hundred two');\nINSERT INTO t3 VALUES(23190, 7553, 'seven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(23191, 32574, 'thirty-two thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23192, 12878, 'twelve thousand eight hundred seventy-eight');\nINSERT INTO t3 VALUES(23193, 58930, 'fifty-eight thousand nine hundred thirty');\nINSERT INTO t3 VALUES(23194, 15381, 'fifteen thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(23195, 52001, 'fifty-two thousand one');\nINSERT INTO t3 VALUES(23196, 52185, 'fifty-two thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23197, 77302, 'seventy-seven thousand three hundred two');\nINSERT INTO t3 VALUES(23198, 71116, 'seventy-one thousand one hundred sixteen');\nINSERT INTO t3 VALUES(23199, 6608, 'six thousand six hundred eight');\nINSERT INTO t3 VALUES(23200, 18785, 'eighteen thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(23201, 22015, 'twenty-two thousand fifteen');\nINSERT INTO t3 VALUES(23202, 52050, 'fifty-two thousand fifty');\nINSERT INTO t3 VALUES(23203, 46707, 'forty-six thousand seven hundred seven');\nINSERT INTO t3 VALUES(23204, 57026, 'fifty-seven thousand twenty-six');\nINSERT INTO t3 VALUES(23205, 5542, 'five thousand five hundred forty-two');\nINSERT INTO t3 VALUES(23206, 59209, 'fifty-nine thousand two hundred nine');\nINSERT INTO t3 VALUES(23207, 73010, 'seventy-three thousand ten');\nINSERT INTO t3 VALUES(23208, 4497, 'four thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(23209, 21277, 'twenty-one thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(23210, 21827, 'twenty-one thousand eight hundred twenty-seven');\nINSERT INTO t3 VALUES(23211, 20842, 'twenty thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(23212, 61158, 'sixty-one thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(23213, 64285, 'sixty-four thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(23214, 38411, 'thirty-eight thousand four hundred eleven');\nINSERT INTO t3 VALUES(23215, 35084, 'thirty-five thousand eighty-four');\nINSERT INTO t3 VALUES(23216, 56475, 'fifty-six thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(23217, 36618, 'thirty-six thousand six hundred eighteen');\nINSERT INTO t3 VALUES(23218, 69348, 'sixty-nine thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(23219, 95593, 'ninety-five thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(23220, 45175, 'forty-five thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(23221, 23965, 'twenty-three thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(23222, 10674, 'ten thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(23223, 40173, 'forty thousand one hundred seventy-three');\nINSERT INTO t3 VALUES(23224, 43460, 'forty-three thousand four hundred sixty');\nINSERT INTO t3 VALUES(23225, 69230, 'sixty-nine thousand two hundred thirty');\nINSERT INTO t3 VALUES(23226, 12050, 'twelve thousand fifty');\nINSERT INTO t3 VALUES(23227, 82804, 'eighty-two thousand eight hundred four');\nINSERT INTO t3 VALUES(23228, 81191, 'eighty-one thousand one hundred ninety-one');\nINSERT INTO t3 VALUES(23229, 16192, 'sixteen thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(23230, 21229, 'twenty-one thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(23231, 54057, 'fifty-four thousand fifty-seven');\nINSERT INTO t3 VALUES(23232, 89477, 'eighty-nine thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23233, 45420, 'forty-five thousand four hundred twenty');\nINSERT INTO t3 VALUES(23234, 42627, 'forty-two thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(23235, 41618, 'forty-one thousand six hundred eighteen');\nINSERT INTO t3 VALUES(23236, 51029, 'fifty-one thousand twenty-nine');\nINSERT INTO t3 VALUES(23237, 30136, 'thirty thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(23238, 94738, 'ninety-four thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(23239, 36657, 'thirty-six thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(23240, 1490, 'one thousand four hundred ninety');\nINSERT INTO t3 VALUES(23241, 45710, 'forty-five thousand seven hundred ten');\nINSERT INTO t3 VALUES(23242, 53264, 'fifty-three thousand two hundred sixty-four');\nINSERT INTO t3 VALUES(23243, 42754, 'forty-two thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(23244, 6321, 'six thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(23245, 78860, 'seventy-eight thousand eight hundred sixty');\nINSERT INTO t3 VALUES(23246, 3726, 'three thousand seven hundred twenty-six');\nINSERT INTO t3 VALUES(23247, 65819, 'sixty-five thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(23248, 98692, 'ninety-eight thousand six hundred ninety-two');\nINSERT INTO t3 VALUES(23249, 9544, 'nine thousand five hundred forty-four');\nINSERT INTO t3 VALUES(23250, 83446, 'eighty-three thousand four hundred forty-six');\nINSERT INTO t3 VALUES(23251, 13012, 'thirteen thousand twelve');\nINSERT INTO t3 VALUES(23252, 744, 'seven hundred forty-four');\nINSERT INTO t3 VALUES(23253, 43721, 'forty-three thousand seven hundred twenty-one');\nINSERT INTO t3 VALUES(23254, 2573, 'two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23255, 28905, 'twenty-eight thousand nine hundred five');\nINSERT INTO t3 VALUES(23256, 88956, 'eighty-eight thousand nine hundred fifty-six');\nINSERT INTO t3 VALUES(23257, 4478, 'four thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(23258, 3243, 'three thousand two hundred forty-three');\nINSERT INTO t3 VALUES(23259, 80055, 'eighty thousand fifty-five');\nINSERT INTO t3 VALUES(23260, 14059, 'fourteen thousand fifty-nine');\nINSERT INTO t3 VALUES(23261, 69373, 'sixty-nine thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(23262, 67952, 'sixty-seven thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(23263, 47982, 'forty-seven thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(23264, 19665, 'nineteen thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(23265, 51533, 'fifty-one thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(23266, 37268, 'thirty-seven thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(23267, 34734, 'thirty-four thousand seven hundred thirty-four');\nINSERT INTO t3 VALUES(23268, 18763, 'eighteen thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(23269, 57121, 'fifty-seven thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(23270, 21212, 'twenty-one thousand two hundred twelve');\nINSERT INTO t3 VALUES(23271, 569, 'five hundred sixty-nine');\nINSERT INTO t3 VALUES(23272, 10095, 'ten thousand ninety-five');\nINSERT INTO t3 VALUES(23273, 20709, 'twenty thousand seven hundred nine');\nINSERT INTO t3 VALUES(23274, 64638, 'sixty-four thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(23275, 73673, 'seventy-three thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(23276, 65355, 'sixty-five thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(23277, 35863, 'thirty-five thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(23278, 58863, 'fifty-eight thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(23279, 28257, 'twenty-eight thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(23280, 68402, 'sixty-eight thousand four hundred two');\nINSERT INTO t3 VALUES(23281, 56490, 'fifty-six thousand four hundred ninety');\nINSERT INTO t3 VALUES(23282, 27938, 'twenty-seven thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23283, 35348, 'thirty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(23284, 78663, 'seventy-eight thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(23285, 33958, 'thirty-three thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(23286, 5746, 'five thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(23287, 19777, 'nineteen thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(23288, 399, 'three hundred ninety-nine');\nINSERT INTO t3 VALUES(23289, 23170, 'twenty-three thousand one hundred seventy');\nINSERT INTO t3 VALUES(23290, 51670, 'fifty-one thousand six hundred seventy');\nINSERT INTO t3 VALUES(23291, 74796, 'seventy-four thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(23292, 8410, 'eight thousand four hundred ten');\nINSERT INTO t3 VALUES(23293, 21286, 'twenty-one thousand two hundred eighty-six');\nINSERT INTO t3 VALUES(23294, 23409, 'twenty-three thousand four hundred nine');\nINSERT INTO t3 VALUES(23295, 46798, 'forty-six thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(23296, 76767, 'seventy-six thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(23297, 42024, 'forty-two thousand twenty-four');\nINSERT INTO t3 VALUES(23298, 20189, 'twenty thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(23299, 2198, 'two thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(23300, 95112, 'ninety-five thousand one hundred twelve');\nINSERT INTO t3 VALUES(23301, 82485, 'eighty-two thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(23302, 52747, 'fifty-two thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(23303, 52766, 'fifty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(23304, 55894, 'fifty-five thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(23305, 22554, 'twenty-two thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(23306, 93021, 'ninety-three thousand twenty-one');\nINSERT INTO t3 VALUES(23307, 44701, 'forty-four thousand seven hundred one');\nINSERT INTO t3 VALUES(23308, 38275, 'thirty-eight thousand two hundred seventy-five');\nINSERT INTO t3 VALUES(23309, 7581, 'seven thousand five hundred eighty-one');\nINSERT INTO t3 VALUES(23310, 29117, 'twenty-nine thousand one hundred seventeen');\nINSERT INTO t3 VALUES(23311, 4578, 'four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(23312, 69371, 'sixty-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(23313, 48153, 'forty-eight thousand one hundred fifty-three');\nINSERT INTO t3 VALUES(23314, 94113, 'ninety-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(23315, 60997, 'sixty thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(23316, 80722, 'eighty thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(23317, 2000, 'two thousand');\nINSERT INTO t3 VALUES(23318, 32432, 'thirty-two thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(23319, 57304, 'fifty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(23320, 58126, 'fifty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(23321, 53084, 'fifty-three thousand eighty-four');\nINSERT INTO t3 VALUES(23322, 25830, 'twenty-five thousand eight hundred thirty');\nINSERT INTO t3 VALUES(23323, 90572, 'ninety thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(23324, 16442, 'sixteen thousand four hundred forty-two');\nINSERT INTO t3 VALUES(23325, 86995, 'eighty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23326, 94924, 'ninety-four thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(23327, 65952, 'sixty-five thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(23328, 15351, 'fifteen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23329, 61859, 'sixty-one thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23330, 88223, 'eighty-eight thousand two hundred twenty-three');\nINSERT INTO t3 VALUES(23331, 77162, 'seventy-seven thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(23332, 9451, 'nine thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(23333, 40002, 'forty thousand two');\nINSERT INTO t3 VALUES(23334, 44649, 'forty-four thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23335, 43516, 'forty-three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(23336, 44651, 'forty-four thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(23337, 94737, 'ninety-four thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23338, 79897, 'seventy-nine thousand eight hundred ninety-seven');\nINSERT INTO t3 VALUES(23339, 25784, 'twenty-five thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(23340, 63329, 'sixty-three thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(23341, 8716, 'eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(23342, 48804, 'forty-eight thousand eight hundred four');\nINSERT INTO t3 VALUES(23343, 25234, 'twenty-five thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23344, 64381, 'sixty-four thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(23345, 21241, 'twenty-one thousand two hundred forty-one');\nINSERT INTO t3 VALUES(23346, 20190, 'twenty thousand one hundred ninety');\nINSERT INTO t3 VALUES(23347, 50515, 'fifty thousand five hundred fifteen');\nINSERT INTO t3 VALUES(23348, 85348, 'eighty-five thousand three hundred forty-eight');\nINSERT INTO t3 VALUES(23349, 74973, 'seventy-four thousand nine hundred seventy-three');\nINSERT INTO t3 VALUES(23350, 24942, 'twenty-four thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(23351, 59084, 'fifty-nine thousand eighty-four');\nINSERT INTO t3 VALUES(23352, 99109, 'ninety-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(23353, 90129, 'ninety thousand one hundred twenty-nine');\nINSERT INTO t3 VALUES(23354, 48853, 'forty-eight thousand eight hundred fifty-three');\nINSERT INTO t3 VALUES(23355, 81315, 'eighty-one thousand three hundred fifteen');\nINSERT INTO t3 VALUES(23356, 72127, 'seventy-two thousand one hundred twenty-seven');\nINSERT INTO t3 VALUES(23357, 83360, 'eighty-three thousand three hundred sixty');\nINSERT INTO t3 VALUES(23358, 70460, 'seventy thousand four hundred sixty');\nINSERT INTO t3 VALUES(23359, 44305, 'forty-four thousand three hundred five');\nINSERT INTO t3 VALUES(23360, 70984, 'seventy thousand nine hundred eighty-four');\nINSERT INTO t3 VALUES(23361, 75792, 'seventy-five thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(23362, 72626, 'seventy-two thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(23363, 12300, 'twelve thousand three hundred');\nINSERT INTO t3 VALUES(23364, 97133, 'ninety-seven thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(23365, 64205, 'sixty-four thousand two hundred five');\nINSERT INTO t3 VALUES(23366, 76703, 'seventy-six thousand seven hundred three');\nINSERT INTO t3 VALUES(23367, 22185, 'twenty-two thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23368, 29390, 'twenty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(23369, 81470, 'eighty-one thousand four hundred seventy');\nINSERT INTO t3 VALUES(23370, 80574, 'eighty thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23371, 90910, 'ninety thousand nine hundred ten');\nINSERT INTO t3 VALUES(23372, 40383, 'forty thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(23373, 53280, 'fifty-three thousand two hundred eighty');\nINSERT INTO t3 VALUES(23374, 86649, 'eighty-six thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23375, 82652, 'eighty-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(23376, 83720, 'eighty-three thousand seven hundred twenty');\nINSERT INTO t3 VALUES(23377, 3875, 'three thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(23378, 3651, 'three thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(23379, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t3 VALUES(23380, 27788, 'twenty-seven thousand seven hundred eighty-eight');\nINSERT INTO t3 VALUES(23381, 53028, 'fifty-three thousand twenty-eight');\nINSERT INTO t3 VALUES(23382, 36076, 'thirty-six thousand seventy-six');\nINSERT INTO t3 VALUES(23383, 24208, 'twenty-four thousand two hundred eight');\nINSERT INTO t3 VALUES(23384, 92257, 'ninety-two thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(23385, 80550, 'eighty thousand five hundred fifty');\nINSERT INTO t3 VALUES(23386, 8594, 'eight thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(23387, 65989, 'sixty-five thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(23388, 51032, 'fifty-one thousand thirty-two');\nINSERT INTO t3 VALUES(23389, 9293, 'nine thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(23390, 25268, 'twenty-five thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(23391, 32198, 'thirty-two thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(23392, 98849, 'ninety-eight thousand eight hundred forty-nine');\nINSERT INTO t3 VALUES(23393, 46353, 'forty-six thousand three hundred fifty-three');\nINSERT INTO t3 VALUES(23394, 98513, 'ninety-eight thousand five hundred thirteen');\nINSERT INTO t3 VALUES(23395, 16495, 'sixteen thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(23396, 39765, 'thirty-nine thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(23397, 19160, 'nineteen thousand one hundred sixty');\nINSERT INTO t3 VALUES(23398, 97219, 'ninety-seven thousand two hundred nineteen');\nINSERT INTO t3 VALUES(23399, 66678, 'sixty-six thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(23400, 78864, 'seventy-eight thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(23401, 23579, 'twenty-three thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(23402, 50445, 'fifty thousand four hundred forty-five');\nINSERT INTO t3 VALUES(23403, 49582, 'forty-nine thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(23404, 49279, 'forty-nine thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(23405, 32229, 'thirty-two thousand two hundred twenty-nine');\nINSERT INTO t3 VALUES(23406, 31784, 'thirty-one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(23407, 12278, 'twelve thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23408, 15041, 'fifteen thousand forty-one');\nINSERT INTO t3 VALUES(23409, 97946, 'ninety-seven thousand nine hundred forty-six');\nINSERT INTO t3 VALUES(23410, 34219, 'thirty-four thousand two hundred nineteen');\nINSERT INTO t3 VALUES(23411, 69063, 'sixty-nine thousand sixty-three');\nINSERT INTO t3 VALUES(23412, 67278, 'sixty-seven thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23413, 93825, 'ninety-three thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(23414, 86096, 'eighty-six thousand ninety-six');\nINSERT INTO t3 VALUES(23415, 69699, 'sixty-nine thousand six hundred ninety-nine');\nINSERT INTO t3 VALUES(23416, 67540, 'sixty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(23417, 36108, 'thirty-six thousand one hundred eight');\nINSERT INTO t3 VALUES(23418, 14792, 'fourteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(23419, 28293, 'twenty-eight thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(23420, 24306, 'twenty-four thousand three hundred six');\nINSERT INTO t3 VALUES(23421, 65701, 'sixty-five thousand seven hundred one');\nINSERT INTO t3 VALUES(23422, 43083, 'forty-three thousand eighty-three');\nINSERT INTO t3 VALUES(23423, 5437, 'five thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(23424, 75594, 'seventy-five thousand five hundred ninety-four');\nINSERT INTO t3 VALUES(23425, 32724, 'thirty-two thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(23426, 26494, 'twenty-six thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(23427, 51796, 'fifty-one thousand seven hundred ninety-six');\nINSERT INTO t3 VALUES(23428, 22504, 'twenty-two thousand five hundred four');\nINSERT INTO t3 VALUES(23429, 5493, 'five thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(23430, 28605, 'twenty-eight thousand six hundred five');\nINSERT INTO t3 VALUES(23431, 75751, 'seventy-five thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(23432, 14295, 'fourteen thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(23433, 95044, 'ninety-five thousand forty-four');\nINSERT INTO t3 VALUES(23434, 22419, 'twenty-two thousand four hundred nineteen');\nINSERT INTO t3 VALUES(23435, 92444, 'ninety-two thousand four hundred forty-four');\nINSERT INTO t3 VALUES(23436, 18709, 'eighteen thousand seven hundred nine');\nINSERT INTO t3 VALUES(23437, 8409, 'eight thousand four hundred nine');\nINSERT INTO t3 VALUES(23438, 55631, 'fifty-five thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(23439, 43624, 'forty-three thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(23440, 64917, 'sixty-four thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(23441, 2672, 'two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(23442, 94243, 'ninety-four thousand two hundred forty-three');\nINSERT INTO t3 VALUES(23443, 3445, 'three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(23444, 93716, 'ninety-three thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(23445, 33007, 'thirty-three thousand seven');\nINSERT INTO t3 VALUES(23446, 1623, 'one thousand six hundred twenty-three');\nINSERT INTO t3 VALUES(23447, 63865, 'sixty-three thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(23448, 99659, 'ninety-nine thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(23449, 2847, 'two thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(23450, 91135, 'ninety-one thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(23451, 68236, 'sixty-eight thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(23452, 564, 'five hundred sixty-four');\nINSERT INTO t3 VALUES(23453, 74617, 'seventy-four thousand six hundred seventeen');\nINSERT INTO t3 VALUES(23454, 24814, 'twenty-four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(23455, 96192, 'ninety-six thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(23456, 59102, 'fifty-nine thousand one hundred two');\nINSERT INTO t3 VALUES(23457, 76018, 'seventy-six thousand eighteen');\nINSERT INTO t3 VALUES(23458, 8029, 'eight thousand twenty-nine');\nINSERT INTO t3 VALUES(23459, 57431, 'fifty-seven thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(23460, 1815, 'one thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(23461, 17772, 'seventeen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(23462, 65183, 'sixty-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(23463, 72540, 'seventy-two thousand five hundred forty');\nINSERT INTO t3 VALUES(23464, 24482, 'twenty-four thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(23465, 8490, 'eight thousand four hundred ninety');\nINSERT INTO t3 VALUES(23466, 18404, 'eighteen thousand four hundred four');\nINSERT INTO t3 VALUES(23467, 37344, 'thirty-seven thousand three hundred forty-four');\nINSERT INTO t3 VALUES(23468, 48478, 'forty-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(23469, 98727, 'ninety-eight thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23470, 52604, 'fifty-two thousand six hundred four');\nINSERT INTO t3 VALUES(23471, 97024, 'ninety-seven thousand twenty-four');\nINSERT INTO t3 VALUES(23472, 86328, 'eighty-six thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(23473, 21559, 'twenty-one thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(23474, 21147, 'twenty-one thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(23475, 15058, 'fifteen thousand fifty-eight');\nINSERT INTO t3 VALUES(23476, 54076, 'fifty-four thousand seventy-six');\nINSERT INTO t3 VALUES(23477, 22547, 'twenty-two thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23478, 77433, 'seventy-seven thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23479, 26859, 'twenty-six thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23480, 21962, 'twenty-one thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(23481, 76856, 'seventy-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(23482, 27754, 'twenty-seven thousand seven hundred fifty-four');\nINSERT INTO t3 VALUES(23483, 28591, 'twenty-eight thousand five hundred ninety-one');\nINSERT INTO t3 VALUES(23484, 17376, 'seventeen thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(23485, 18813, 'eighteen thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(23486, 5282, 'five thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(23487, 52488, 'fifty-two thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(23488, 10655, 'ten thousand six hundred fifty-five');\nINSERT INTO t3 VALUES(23489, 16162, 'sixteen thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(23490, 43793, 'forty-three thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(23491, 10226, 'ten thousand two hundred twenty-six');\nINSERT INTO t3 VALUES(23492, 11628, 'eleven thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23493, 18775, 'eighteen thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(23494, 50433, 'fifty thousand four hundred thirty-three');\nINSERT INTO t3 VALUES(23495, 13932, 'thirteen thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(23496, 82111, 'eighty-two thousand one hundred eleven');\nINSERT INTO t3 VALUES(23497, 96458, 'ninety-six thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(23498, 10118, 'ten thousand one hundred eighteen');\nINSERT INTO t3 VALUES(23499, 95958, 'ninety-five thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(23500, 67526, 'sixty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(23501, 70795, 'seventy thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(23502, 17859, 'seventeen thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23503, 14355, 'fourteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(23504, 22810, 'twenty-two thousand eight hundred ten');\nINSERT INTO t3 VALUES(23505, 90886, 'ninety thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(23506, 8603, 'eight thousand six hundred three');\nINSERT INTO t3 VALUES(23507, 84909, 'eighty-four thousand nine hundred nine');\nINSERT INTO t3 VALUES(23508, 83846, 'eighty-three thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(23509, 71714, 'seventy-one thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(23510, 48247, 'forty-eight thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(23511, 86614, 'eighty-six thousand six hundred fourteen');\nINSERT INTO t3 VALUES(23512, 26186, 'twenty-six thousand one hundred eighty-six');\nINSERT INTO t3 VALUES(23513, 16558, 'sixteen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(23514, 30360, 'thirty thousand three hundred sixty');\nINSERT INTO t3 VALUES(23515, 38691, 'thirty-eight thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(23516, 71548, 'seventy-one thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(23517, 54678, 'fifty-four thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(23518, 47737, 'forty-seven thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23519, 18355, 'eighteen thousand three hundred fifty-five');\nINSERT INTO t3 VALUES(23520, 74423, 'seventy-four thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(23521, 95437, 'ninety-five thousand four hundred thirty-seven');\nINSERT INTO t3 VALUES(23522, 9469, 'nine thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(23523, 92722, 'ninety-two thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(23524, 26722, 'twenty-six thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(23525, 26761, 'twenty-six thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(23526, 3402, 'three thousand four hundred two');\nINSERT INTO t3 VALUES(23527, 74672, 'seventy-four thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(23528, 71706, 'seventy-one thousand seven hundred six');\nINSERT INTO t3 VALUES(23529, 2883, 'two thousand eight hundred eighty-three');\nINSERT INTO t3 VALUES(23530, 31197, 'thirty-one thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(23531, 17244, 'seventeen thousand two hundred forty-four');\nINSERT INTO t3 VALUES(23532, 37093, 'thirty-seven thousand ninety-three');\nINSERT INTO t3 VALUES(23533, 38294, 'thirty-eight thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(23534, 61466, 'sixty-one thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(23535, 54430, 'fifty-four thousand four hundred thirty');\nINSERT INTO t3 VALUES(23536, 87720, 'eighty-seven thousand seven hundred twenty');\nINSERT INTO t3 VALUES(23537, 51579, 'fifty-one thousand five hundred seventy-nine');\nINSERT INTO t3 VALUES(23538, 61482, 'sixty-one thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(23539, 93483, 'ninety-three thousand four hundred eighty-three');\nINSERT INTO t3 VALUES(23540, 1278, 'one thousand two hundred seventy-eight');\nINSERT INTO t3 VALUES(23541, 39606, 'thirty-nine thousand six hundred six');\nINSERT INTO t3 VALUES(23542, 38473, 'thirty-eight thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(23543, 55195, 'fifty-five thousand one hundred ninety-five');\nINSERT INTO t3 VALUES(23544, 64507, 'sixty-four thousand five hundred seven');\nINSERT INTO t3 VALUES(23545, 3334, 'three thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(23546, 53799, 'fifty-three thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(23547, 92707, 'ninety-two thousand seven hundred seven');\nINSERT INTO t3 VALUES(23548, 18125, 'eighteen thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(23549, 62649, 'sixty-two thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23550, 69419, 'sixty-nine thousand four hundred nineteen');\nINSERT INTO t3 VALUES(23551, 2370, 'two thousand three hundred seventy');\nINSERT INTO t3 VALUES(23552, 16396, 'sixteen thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(23553, 61512, 'sixty-one thousand five hundred twelve');\nINSERT INTO t3 VALUES(23554, 30759, 'thirty thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(23555, 40746, 'forty thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(23556, 10091, 'ten thousand ninety-one');\nINSERT INTO t3 VALUES(23557, 36710, 'thirty-six thousand seven hundred ten');\nINSERT INTO t3 VALUES(23558, 83900, 'eighty-three thousand nine hundred');\nINSERT INTO t3 VALUES(23559, 30959, 'thirty thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(23560, 60182, 'sixty thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(23561, 59887, 'fifty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(23562, 42941, 'forty-two thousand nine hundred forty-one');\nINSERT INTO t3 VALUES(23563, 94187, 'ninety-four thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(23564, 5987, 'five thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(23565, 39046, 'thirty-nine thousand forty-six');\nINSERT INTO t3 VALUES(23566, 7399, 'seven thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(23567, 69957, 'sixty-nine thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(23568, 86820, 'eighty-six thousand eight hundred twenty');\nINSERT INTO t3 VALUES(23569, 23573, 'twenty-three thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23570, 54932, 'fifty-four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(23571, 2182, 'two thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(23572, 81298, 'eighty-one thousand two hundred ninety-eight');\nINSERT INTO t3 VALUES(23573, 2196, 'two thousand one hundred ninety-six');\nINSERT INTO t3 VALUES(23574, 27319, 'twenty-seven thousand three hundred nineteen');\nINSERT INTO t3 VALUES(23575, 13215, 'thirteen thousand two hundred fifteen');\nINSERT INTO t3 VALUES(23576, 80871, 'eighty thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(23577, 30735, 'thirty thousand seven hundred thirty-five');\nINSERT INTO t3 VALUES(23578, 64550, 'sixty-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(23579, 42344, 'forty-two thousand three hundred forty-four');\nINSERT INTO t3 VALUES(23580, 4413, 'four thousand four hundred thirteen');\nINSERT INTO t3 VALUES(23581, 26455, 'twenty-six thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(23582, 62610, 'sixty-two thousand six hundred ten');\nINSERT INTO t3 VALUES(23583, 8899, 'eight thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(23584, 50846, 'fifty thousand eight hundred forty-six');\nINSERT INTO t3 VALUES(23585, 49248, 'forty-nine thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(23586, 52575, 'fifty-two thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(23587, 57411, 'fifty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(23588, 25151, 'twenty-five thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(23589, 57624, 'fifty-seven thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(23590, 49571, 'forty-nine thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(23591, 67799, 'sixty-seven thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(23592, 40059, 'forty thousand fifty-nine');\nINSERT INTO t3 VALUES(23593, 62167, 'sixty-two thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(23594, 20583, 'twenty thousand five hundred eighty-three');\nINSERT INTO t3 VALUES(23595, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(23596, 40703, 'forty thousand seven hundred three');\nINSERT INTO t3 VALUES(23597, 85707, 'eighty-five thousand seven hundred seven');\nINSERT INTO t3 VALUES(23598, 38209, 'thirty-eight thousand two hundred nine');\nINSERT INTO t3 VALUES(23599, 58826, 'fifty-eight thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(23600, 99341, 'ninety-nine thousand three hundred forty-one');\nINSERT INTO t3 VALUES(23601, 23133, 'twenty-three thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(23602, 73103, 'seventy-three thousand one hundred three');\nINSERT INTO t3 VALUES(23603, 97851, 'ninety-seven thousand eight hundred fifty-one');\nINSERT INTO t3 VALUES(23604, 79555, 'seventy-nine thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(23605, 95111, 'ninety-five thousand one hundred eleven');\nINSERT INTO t3 VALUES(23606, 73440, 'seventy-three thousand four hundred forty');\nINSERT INTO t3 VALUES(23607, 90824, 'ninety thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(23608, 53358, 'fifty-three thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(23609, 65004, 'sixty-five thousand four');\nINSERT INTO t3 VALUES(23610, 82717, 'eighty-two thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(23611, 16867, 'sixteen thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(23612, 60442, 'sixty thousand four hundred forty-two');\nINSERT INTO t3 VALUES(23613, 77593, 'seventy-seven thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(23614, 73115, 'seventy-three thousand one hundred fifteen');\nINSERT INTO t3 VALUES(23615, 16073, 'sixteen thousand seventy-three');\nINSERT INTO t3 VALUES(23616, 34014, 'thirty-four thousand fourteen');\nINSERT INTO t3 VALUES(23617, 17573, 'seventeen thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23618, 35465, 'thirty-five thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(23619, 82501, 'eighty-two thousand five hundred one');\nINSERT INTO t3 VALUES(23620, 96795, 'ninety-six thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(23621, 30923, 'thirty thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(23622, 86696, 'eighty-six thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(23623, 66602, 'sixty-six thousand six hundred two');\nINSERT INTO t3 VALUES(23624, 64764, 'sixty-four thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(23625, 40955, 'forty thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(23626, 17818, 'seventeen thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(23627, 14627, 'fourteen thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(23628, 50966, 'fifty thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(23629, 28307, 'twenty-eight thousand three hundred seven');\nINSERT INTO t3 VALUES(23630, 5343, 'five thousand three hundred forty-three');\nINSERT INTO t3 VALUES(23631, 75438, 'seventy-five thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(23632, 18477, 'eighteen thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23633, 70317, 'seventy thousand three hundred seventeen');\nINSERT INTO t3 VALUES(23634, 24792, 'twenty-four thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(23635, 14079, 'fourteen thousand seventy-nine');\nINSERT INTO t3 VALUES(23636, 71084, 'seventy-one thousand eighty-four');\nINSERT INTO t3 VALUES(23637, 12620, 'twelve thousand six hundred twenty');\nINSERT INTO t3 VALUES(23638, 17480, 'seventeen thousand four hundred eighty');\nINSERT INTO t3 VALUES(23639, 24724, 'twenty-four thousand seven hundred twenty-four');\nINSERT INTO t3 VALUES(23640, 16185, 'sixteen thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23641, 74936, 'seventy-four thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(23642, 86982, 'eighty-six thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(23643, 64673, 'sixty-four thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(23644, 27413, 'twenty-seven thousand four hundred thirteen');\nINSERT INTO t3 VALUES(23645, 76881, 'seventy-six thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(23646, 96176, 'ninety-six thousand one hundred seventy-six');\nINSERT INTO t3 VALUES(23647, 4524, 'four thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(23648, 38103, 'thirty-eight thousand one hundred three');\nINSERT INTO t3 VALUES(23649, 44713, 'forty-four thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(23650, 51531, 'fifty-one thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(23651, 17723, 'seventeen thousand seven hundred twenty-three');\nINSERT INTO t3 VALUES(23652, 33190, 'thirty-three thousand one hundred ninety');\nINSERT INTO t3 VALUES(23653, 92518, 'ninety-two thousand five hundred eighteen');\nINSERT INTO t3 VALUES(23654, 90485, 'ninety thousand four hundred eighty-five');\nINSERT INTO t3 VALUES(23655, 86879, 'eighty-six thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(23656, 48126, 'forty-eight thousand one hundred twenty-six');\nINSERT INTO t3 VALUES(23657, 86738, 'eighty-six thousand seven hundred thirty-eight');\nINSERT INTO t3 VALUES(23658, 99642, 'ninety-nine thousand six hundred forty-two');\nINSERT INTO t3 VALUES(23659, 76021, 'seventy-six thousand twenty-one');\nINSERT INTO t3 VALUES(23660, 81664, 'eighty-one thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(23661, 50538, 'fifty thousand five hundred thirty-eight');\nINSERT INTO t3 VALUES(23662, 51732, 'fifty-one thousand seven hundred thirty-two');\nINSERT INTO t3 VALUES(23663, 37218, 'thirty-seven thousand two hundred eighteen');\nINSERT INTO t3 VALUES(23664, 87061, 'eighty-seven thousand sixty-one');\nINSERT INTO t3 VALUES(23665, 26895, 'twenty-six thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(23666, 8686, 'eight thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(23667, 81487, 'eighty-one thousand four hundred eighty-seven');\nINSERT INTO t3 VALUES(23668, 28329, 'twenty-eight thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(23669, 88527, 'eighty-eight thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(23670, 28915, 'twenty-eight thousand nine hundred fifteen');\nINSERT INTO t3 VALUES(23671, 25845, 'twenty-five thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(23672, 42529, 'forty-two thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(23673, 13321, 'thirteen thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(23674, 4907, 'four thousand nine hundred seven');\nINSERT INTO t3 VALUES(23675, 28057, 'twenty-eight thousand fifty-seven');\nINSERT INTO t3 VALUES(23676, 4316, 'four thousand three hundred sixteen');\nINSERT INTO t3 VALUES(23677, 88438, 'eighty-eight thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(23678, 46994, 'forty-six thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(23679, 57761, 'fifty-seven thousand seven hundred sixty-one');\nINSERT INTO t3 VALUES(23680, 25477, 'twenty-five thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23681, 56481, 'fifty-six thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(23682, 35285, 'thirty-five thousand two hundred eighty-five');\nINSERT INTO t3 VALUES(23683, 40414, 'forty thousand four hundred fourteen');\nINSERT INTO t3 VALUES(23684, 33727, 'thirty-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23685, 42403, 'forty-two thousand four hundred three');\nINSERT INTO t3 VALUES(23686, 10077, 'ten thousand seventy-seven');\nINSERT INTO t3 VALUES(23687, 82837, 'eighty-two thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(23688, 89782, 'eighty-nine thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(23689, 50995, 'fifty thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23690, 49859, 'forty-nine thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(23691, 4843, 'four thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(23692, 60366, 'sixty thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(23693, 85857, 'eighty-five thousand eight hundred fifty-seven');\nINSERT INTO t3 VALUES(23694, 92262, 'ninety-two thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(23695, 51111, 'fifty-one thousand one hundred eleven');\nINSERT INTO t3 VALUES(23696, 54124, 'fifty-four thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(23697, 68038, 'sixty-eight thousand thirty-eight');\nINSERT INTO t3 VALUES(23698, 4959, 'four thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(23699, 78719, 'seventy-eight thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(23700, 71954, 'seventy-one thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(23701, 50224, 'fifty thousand two hundred twenty-four');\nINSERT INTO t3 VALUES(23702, 48630, 'forty-eight thousand six hundred thirty');\nINSERT INTO t3 VALUES(23703, 6606, 'six thousand six hundred six');\nINSERT INTO t3 VALUES(23704, 12784, 'twelve thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(23705, 48375, 'forty-eight thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(23706, 59890, 'fifty-nine thousand eight hundred ninety');\nINSERT INTO t3 VALUES(23707, 1834, 'one thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(23708, 16932, 'sixteen thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(23709, 93071, 'ninety-three thousand seventy-one');\nINSERT INTO t3 VALUES(23710, 25041, 'twenty-five thousand forty-one');\nINSERT INTO t3 VALUES(23711, 18141, 'eighteen thousand one hundred forty-one');\nINSERT INTO t3 VALUES(23712, 66856, 'sixty-six thousand eight hundred fifty-six');\nINSERT INTO t3 VALUES(23713, 73727, 'seventy-three thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23714, 73236, 'seventy-three thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(23715, 39925, 'thirty-nine thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(23716, 14269, 'fourteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(23717, 87148, 'eighty-seven thousand one hundred forty-eight');\nINSERT INTO t3 VALUES(23718, 45589, 'forty-five thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(23719, 70828, 'seventy thousand eight hundred twenty-eight');\nINSERT INTO t3 VALUES(23720, 47337, 'forty-seven thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(23721, 57009, 'fifty-seven thousand nine');\nINSERT INTO t3 VALUES(23722, 13121, 'thirteen thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(23723, 97971, 'ninety-seven thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(23724, 54488, 'fifty-four thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(23725, 76314, 'seventy-six thousand three hundred fourteen');\nINSERT INTO t3 VALUES(23726, 37727, 'thirty-seven thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(23727, 45799, 'forty-five thousand seven hundred ninety-nine');\nINSERT INTO t3 VALUES(23728, 13502, 'thirteen thousand five hundred two');\nINSERT INTO t3 VALUES(23729, 27634, 'twenty-seven thousand six hundred thirty-four');\nINSERT INTO t3 VALUES(23730, 42985, 'forty-two thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(23731, 86995, 'eighty-six thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(23732, 9107, 'nine thousand one hundred seven');\nINSERT INTO t3 VALUES(23733, 98628, 'ninety-eight thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23734, 49058, 'forty-nine thousand fifty-eight');\nINSERT INTO t3 VALUES(23735, 80684, 'eighty thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(23736, 13313, 'thirteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(23737, 68137, 'sixty-eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(23738, 13307, 'thirteen thousand three hundred seven');\nINSERT INTO t3 VALUES(23739, 6261, 'six thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(23740, 84216, 'eighty-four thousand two hundred sixteen');\nINSERT INTO t3 VALUES(23741, 21375, 'twenty-one thousand three hundred seventy-five');\nINSERT INTO t3 VALUES(23742, 56627, 'fifty-six thousand six hundred twenty-seven');\nINSERT INTO t3 VALUES(23743, 97402, 'ninety-seven thousand four hundred two');\nINSERT INTO t3 VALUES(23744, 32714, 'thirty-two thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(23745, 72907, 'seventy-two thousand nine hundred seven');\nINSERT INTO t3 VALUES(23746, 25554, 'twenty-five thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(23747, 90319, 'ninety thousand three hundred nineteen');\nINSERT INTO t3 VALUES(23748, 75026, 'seventy-five thousand twenty-six');\nINSERT INTO t3 VALUES(23749, 14558, 'fourteen thousand five hundred fifty-eight');\nINSERT INTO t3 VALUES(23750, 39151, 'thirty-nine thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(23751, 67247, 'sixty-seven thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(23752, 34646, 'thirty-four thousand six hundred forty-six');\nINSERT INTO t3 VALUES(23753, 8971, 'eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(23754, 53488, 'fifty-three thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(23755, 54866, 'fifty-four thousand eight hundred sixty-six');\nINSERT INTO t3 VALUES(23756, 87762, 'eighty-seven thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(23757, 57999, 'fifty-seven thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(23758, 14097, 'fourteen thousand ninety-seven');\nINSERT INTO t3 VALUES(23759, 11700, 'eleven thousand seven hundred');\nINSERT INTO t3 VALUES(23760, 56779, 'fifty-six thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(23761, 97944, 'ninety-seven thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(23762, 52631, 'fifty-two thousand six hundred thirty-one');\nINSERT INTO t3 VALUES(23763, 26939, 'twenty-six thousand nine hundred thirty-nine');\nINSERT INTO t3 VALUES(23764, 30676, 'thirty thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(23765, 23913, 'twenty-three thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(23766, 85419, 'eighty-five thousand four hundred nineteen');\nINSERT INTO t3 VALUES(23767, 23862, 'twenty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(23768, 76562, 'seventy-six thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(23769, 47077, 'forty-seven thousand seventy-seven');\nINSERT INTO t3 VALUES(23770, 27829, 'twenty-seven thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(23771, 72686, 'seventy-two thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(23772, 47292, 'forty-seven thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(23773, 20328, 'twenty thousand three hundred twenty-eight');\nINSERT INTO t3 VALUES(23774, 5901, 'five thousand nine hundred one');\nINSERT INTO t3 VALUES(23775, 39359, 'thirty-nine thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(23776, 84815, 'eighty-four thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(23777, 84465, 'eighty-four thousand four hundred sixty-five');\nINSERT INTO t3 VALUES(23778, 50404, 'fifty thousand four hundred four');\nINSERT INTO t3 VALUES(23779, 7769, 'seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(23780, 17334, 'seventeen thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(23781, 54708, 'fifty-four thousand seven hundred eight');\nINSERT INTO t3 VALUES(23782, 168, 'one hundred sixty-eight');\nINSERT INTO t3 VALUES(23783, 27381, 'twenty-seven thousand three hundred eighty-one');\nINSERT INTO t3 VALUES(23784, 4711, 'four thousand seven hundred eleven');\nINSERT INTO t3 VALUES(23785, 79371, 'seventy-nine thousand three hundred seventy-one');\nINSERT INTO t3 VALUES(23786, 28455, 'twenty-eight thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(23787, 80271, 'eighty thousand two hundred seventy-one');\nINSERT INTO t3 VALUES(23788, 42986, 'forty-two thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(23789, 65728, 'sixty-five thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(23790, 40154, 'forty thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(23791, 34146, 'thirty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(23792, 45928, 'forty-five thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(23793, 22438, 'twenty-two thousand four hundred thirty-eight');\nINSERT INTO t3 VALUES(23794, 95764, 'ninety-five thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(23795, 98693, 'ninety-eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(23796, 88040, 'eighty-eight thousand forty');\nINSERT INTO t3 VALUES(23797, 57179, 'fifty-seven thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(23798, 44329, 'forty-four thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(23799, 47526, 'forty-seven thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(23800, 74130, 'seventy-four thousand one hundred thirty');\nINSERT INTO t3 VALUES(23801, 59210, 'fifty-nine thousand two hundred ten');\nINSERT INTO t3 VALUES(23802, 76351, 'seventy-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23803, 74751, 'seventy-four thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(23804, 5642, 'five thousand six hundred forty-two');\nINSERT INTO t3 VALUES(23805, 81823, 'eighty-one thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(23806, 44736, 'forty-four thousand seven hundred thirty-six');\nINSERT INTO t3 VALUES(23807, 29374, 'twenty-nine thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(23808, 85145, 'eighty-five thousand one hundred forty-five');\nINSERT INTO t3 VALUES(23809, 6764, 'six thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(23810, 96775, 'ninety-six thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(23811, 18354, 'eighteen thousand three hundred fifty-four');\nINSERT INTO t3 VALUES(23812, 20977, 'twenty thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(23813, 43564, 'forty-three thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(23814, 3869, 'three thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(23815, 18821, 'eighteen thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(23816, 46133, 'forty-six thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(23817, 1495, 'one thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(23818, 57541, 'fifty-seven thousand five hundred forty-one');\nINSERT INTO t3 VALUES(23819, 72573, 'seventy-two thousand five hundred seventy-three');\nINSERT INTO t3 VALUES(23820, 33494, 'thirty-three thousand four hundred ninety-four');\nINSERT INTO t3 VALUES(23821, 51918, 'fifty-one thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(23822, 93391, 'ninety-three thousand three hundred ninety-one');\nINSERT INTO t3 VALUES(23823, 58255, 'fifty-eight thousand two hundred fifty-five');\nINSERT INTO t3 VALUES(23824, 1356, 'one thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(23825, 68965, 'sixty-eight thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(23826, 33007, 'thirty-three thousand seven');\nINSERT INTO t3 VALUES(23827, 3477, 'three thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(23828, 83162, 'eighty-three thousand one hundred sixty-two');\nINSERT INTO t3 VALUES(23829, 54242, 'fifty-four thousand two hundred forty-two');\nINSERT INTO t3 VALUES(23830, 74037, 'seventy-four thousand thirty-seven');\nINSERT INTO t3 VALUES(23831, 36860, 'thirty-six thousand eight hundred sixty');\nINSERT INTO t3 VALUES(23832, 28096, 'twenty-eight thousand ninety-six');\nINSERT INTO t3 VALUES(23833, 12737, 'twelve thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23834, 79159, 'seventy-nine thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(23835, 57547, 'fifty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23836, 51154, 'fifty-one thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(23837, 77439, 'seventy-seven thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(23838, 93124, 'ninety-three thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(23839, 67347, 'sixty-seven thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(23840, 39833, 'thirty-nine thousand eight hundred thirty-three');\nINSERT INTO t3 VALUES(23841, 5447, 'five thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(23842, 12911, 'twelve thousand nine hundred eleven');\nINSERT INTO t3 VALUES(23843, 12916, 'twelve thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(23844, 92452, 'ninety-two thousand four hundred fifty-two');\nINSERT INTO t3 VALUES(23845, 50515, 'fifty thousand five hundred fifteen');\nINSERT INTO t3 VALUES(23846, 15898, 'fifteen thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(23847, 68416, 'sixty-eight thousand four hundred sixteen');\nINSERT INTO t3 VALUES(23848, 72179, 'seventy-two thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(23849, 37175, 'thirty-seven thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(23850, 50495, 'fifty thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(23851, 56026, 'fifty-six thousand twenty-six');\nINSERT INTO t3 VALUES(23852, 60961, 'sixty thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(23853, 76351, 'seventy-six thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23854, 73053, 'seventy-three thousand fifty-three');\nINSERT INTO t3 VALUES(23855, 19211, 'nineteen thousand two hundred eleven');\nINSERT INTO t3 VALUES(23856, 73516, 'seventy-three thousand five hundred sixteen');\nINSERT INTO t3 VALUES(23857, 26319, 'twenty-six thousand three hundred nineteen');\nINSERT INTO t3 VALUES(23858, 41276, 'forty-one thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(23859, 45926, 'forty-five thousand nine hundred twenty-six');\nINSERT INTO t3 VALUES(23860, 5171, 'five thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(23861, 78829, 'seventy-eight thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(23862, 66865, 'sixty-six thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(23863, 34401, 'thirty-four thousand four hundred one');\nINSERT INTO t3 VALUES(23864, 55621, 'fifty-five thousand six hundred twenty-one');\nINSERT INTO t3 VALUES(23865, 51118, 'fifty-one thousand one hundred eighteen');\nINSERT INTO t3 VALUES(23866, 27574, 'twenty-seven thousand five hundred seventy-four');\nINSERT INTO t3 VALUES(23867, 98813, 'ninety-eight thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(23868, 68913, 'sixty-eight thousand nine hundred thirteen');\nINSERT INTO t3 VALUES(23869, 36079, 'thirty-six thousand seventy-nine');\nINSERT INTO t3 VALUES(23870, 19794, 'nineteen thousand seven hundred ninety-four');\nINSERT INTO t3 VALUES(23871, 59294, 'fifty-nine thousand two hundred ninety-four');\nINSERT INTO t3 VALUES(23872, 82700, 'eighty-two thousand seven hundred');\nINSERT INTO t3 VALUES(23873, 51582, 'fifty-one thousand five hundred eighty-two');\nINSERT INTO t3 VALUES(23874, 71711, 'seventy-one thousand seven hundred eleven');\nINSERT INTO t3 VALUES(23875, 20373, 'twenty thousand three hundred seventy-three');\nINSERT INTO t3 VALUES(23876, 99834, 'ninety-nine thousand eight hundred thirty-four');\nINSERT INTO t3 VALUES(23877, 18089, 'eighteen thousand eighty-nine');\nINSERT INTO t3 VALUES(23878, 46778, 'forty-six thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(23879, 61674, 'sixty-one thousand six hundred seventy-four');\nINSERT INTO t3 VALUES(23880, 35359, 'thirty-five thousand three hundred fifty-nine');\nINSERT INTO t3 VALUES(23881, 3556, 'three thousand five hundred fifty-six');\nINSERT INTO t3 VALUES(23882, 44793, 'forty-four thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(23883, 46168, 'forty-six thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(23884, 3762, 'three thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(23885, 49049, 'forty-nine thousand forty-nine');\nINSERT INTO t3 VALUES(23886, 47010, 'forty-seven thousand ten');\nINSERT INTO t3 VALUES(23887, 31400, 'thirty-one thousand four hundred');\nINSERT INTO t3 VALUES(23888, 66239, 'sixty-six thousand two hundred thirty-nine');\nINSERT INTO t3 VALUES(23889, 2061, 'two thousand sixty-one');\nINSERT INTO t3 VALUES(23890, 19073, 'nineteen thousand seventy-three');\nINSERT INTO t3 VALUES(23891, 57056, 'fifty-seven thousand fifty-six');\nINSERT INTO t3 VALUES(23892, 48949, 'forty-eight thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(23893, 78308, 'seventy-eight thousand three hundred eight');\nINSERT INTO t3 VALUES(23894, 40673, 'forty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(23895, 48027, 'forty-eight thousand twenty-seven');\nINSERT INTO t3 VALUES(23896, 91316, 'ninety-one thousand three hundred sixteen');\nINSERT INTO t3 VALUES(23897, 64895, 'sixty-four thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(23898, 82672, 'eighty-two thousand six hundred seventy-two');\nINSERT INTO t3 VALUES(23899, 61551, 'sixty-one thousand five hundred fifty-one');\nINSERT INTO t3 VALUES(23900, 26406, 'twenty-six thousand four hundred six');\nINSERT INTO t3 VALUES(23901, 88116, 'eighty-eight thousand one hundred sixteen');\nINSERT INTO t3 VALUES(23902, 47210, 'forty-seven thousand two hundred ten');\nINSERT INTO t3 VALUES(23903, 67816, 'sixty-seven thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(23904, 6575, 'six thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(23905, 54459, 'fifty-four thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(23906, 41446, 'forty-one thousand four hundred forty-six');\nINSERT INTO t3 VALUES(23907, 84563, 'eighty-four thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(23908, 6719, 'six thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(23909, 15279, 'fifteen thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(23910, 35365, 'thirty-five thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(23911, 33572, 'thirty-three thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(23912, 60664, 'sixty thousand six hundred sixty-four');\nINSERT INTO t3 VALUES(23913, 780, 'seven hundred eighty');\nINSERT INTO t3 VALUES(23914, 65557, 'sixty-five thousand five hundred fifty-seven');\nINSERT INTO t3 VALUES(23915, 99238, 'ninety-nine thousand two hundred thirty-eight');\nINSERT INTO t3 VALUES(23916, 31940, 'thirty-one thousand nine hundred forty');\nINSERT INTO t3 VALUES(23917, 59345, 'fifty-nine thousand three hundred forty-five');\nINSERT INTO t3 VALUES(23918, 30947, 'thirty thousand nine hundred forty-seven');\nINSERT INTO t3 VALUES(23919, 8137, 'eight thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(23920, 66843, 'sixty-six thousand eight hundred forty-three');\nINSERT INTO t3 VALUES(23921, 52685, 'fifty-two thousand six hundred eighty-five');\nINSERT INTO t3 VALUES(23922, 65848, 'sixty-five thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(23923, 24628, 'twenty-four thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(23924, 98908, 'ninety-eight thousand nine hundred eight');\nINSERT INTO t3 VALUES(23925, 14938, 'fourteen thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(23926, 93863, 'ninety-three thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(23927, 64580, 'sixty-four thousand five hundred eighty');\nINSERT INTO t3 VALUES(23928, 50642, 'fifty thousand six hundred forty-two');\nINSERT INTO t3 VALUES(23929, 94055, 'ninety-four thousand fifty-five');\nINSERT INTO t3 VALUES(23930, 87291, 'eighty-seven thousand two hundred ninety-one');\nINSERT INTO t3 VALUES(23931, 77405, 'seventy-seven thousand four hundred five');\nINSERT INTO t3 VALUES(23932, 62586, 'sixty-two thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(23933, 58411, 'fifty-eight thousand four hundred eleven');\nINSERT INTO t3 VALUES(23934, 30530, 'thirty thousand five hundred thirty');\nINSERT INTO t3 VALUES(23935, 72649, 'seventy-two thousand six hundred forty-nine');\nINSERT INTO t3 VALUES(23936, 51197, 'fifty-one thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(23937, 52636, 'fifty-two thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(23938, 78415, 'seventy-eight thousand four hundred fifteen');\nINSERT INTO t3 VALUES(23939, 67547, 'sixty-seven thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(23940, 12626, 'twelve thousand six hundred twenty-six');\nINSERT INTO t3 VALUES(23941, 86230, 'eighty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(23942, 72504, 'seventy-two thousand five hundred four');\nINSERT INTO t3 VALUES(23943, 43234, 'forty-three thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23944, 18554, 'eighteen thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(23945, 59763, 'fifty-nine thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(23946, 36924, 'thirty-six thousand nine hundred twenty-four');\nINSERT INTO t3 VALUES(23947, 75737, 'seventy-five thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(23948, 21297, 'twenty-one thousand two hundred ninety-seven');\nINSERT INTO t3 VALUES(23949, 74578, 'seventy-four thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(23950, 65189, 'sixty-five thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(23951, 16955, 'sixteen thousand nine hundred fifty-five');\nINSERT INTO t3 VALUES(23952, 13351, 'thirteen thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(23953, 74175, 'seventy-four thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(23954, 75675, 'seventy-five thousand six hundred seventy-five');\nINSERT INTO t3 VALUES(23955, 31054, 'thirty-one thousand fifty-four');\nINSERT INTO t3 VALUES(23956, 32687, 'thirty-two thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(23957, 26821, 'twenty-six thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(23958, 47698, 'forty-seven thousand six hundred ninety-eight');\nINSERT INTO t3 VALUES(23959, 27589, 'twenty-seven thousand five hundred eighty-nine');\nINSERT INTO t3 VALUES(23960, 14029, 'fourteen thousand twenty-nine');\nINSERT INTO t3 VALUES(23961, 58632, 'fifty-eight thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(23962, 39282, 'thirty-nine thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(23963, 80040, 'eighty thousand forty');\nINSERT INTO t3 VALUES(23964, 20882, 'twenty thousand eight hundred eighty-two');\nINSERT INTO t3 VALUES(23965, 94832, 'ninety-four thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(23966, 21360, 'twenty-one thousand three hundred sixty');\nINSERT INTO t3 VALUES(23967, 87114, 'eighty-seven thousand one hundred fourteen');\nINSERT INTO t3 VALUES(23968, 39850, 'thirty-nine thousand eight hundred fifty');\nINSERT INTO t3 VALUES(23969, 80942, 'eighty thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(23970, 64624, 'sixty-four thousand six hundred twenty-four');\nINSERT INTO t3 VALUES(23971, 50071, 'fifty thousand seventy-one');\nINSERT INTO t3 VALUES(23972, 7611, 'seven thousand six hundred eleven');\nINSERT INTO t3 VALUES(23973, 26896, 'twenty-six thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(23974, 25091, 'twenty-five thousand ninety-one');\nINSERT INTO t3 VALUES(23975, 55911, 'fifty-five thousand nine hundred eleven');\nINSERT INTO t3 VALUES(23976, 78769, 'seventy-eight thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(23977, 61944, 'sixty-one thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(23978, 98430, 'ninety-eight thousand four hundred thirty');\nINSERT INTO t3 VALUES(23979, 68960, 'sixty-eight thousand nine hundred sixty');\nINSERT INTO t3 VALUES(23980, 87121, 'eighty-seven thousand one hundred twenty-one');\nINSERT INTO t3 VALUES(23981, 98309, 'ninety-eight thousand three hundred nine');\nINSERT INTO t3 VALUES(23982, 88462, 'eighty-eight thousand four hundred sixty-two');\nINSERT INTO t3 VALUES(23983, 55234, 'fifty-five thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(23984, 21077, 'twenty-one thousand seventy-seven');\nINSERT INTO t3 VALUES(23985, 90825, 'ninety thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(23986, 25076, 'twenty-five thousand seventy-six');\nINSERT INTO t3 VALUES(23987, 17326, 'seventeen thousand three hundred twenty-six');\nINSERT INTO t3 VALUES(23988, 87564, 'eighty-seven thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(23989, 52365, 'fifty-two thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(23990, 14533, 'fourteen thousand five hundred thirty-three');\nINSERT INTO t3 VALUES(23991, 28964, 'twenty-eight thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(23992, 35622, 'thirty-five thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(23993, 86396, 'eighty-six thousand three hundred ninety-six');\nINSERT INTO t3 VALUES(23994, 86612, 'eighty-six thousand six hundred twelve');\nINSERT INTO t3 VALUES(23995, 49887, 'forty-nine thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(23996, 21185, 'twenty-one thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(23997, 19313, 'nineteen thousand three hundred thirteen');\nINSERT INTO t3 VALUES(23998, 78892, 'seventy-eight thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(23999, 54790, 'fifty-four thousand seven hundred ninety');\nINSERT INTO t3 VALUES(24000, 90071, 'ninety thousand seventy-one');\nINSERT INTO t3 VALUES(24001, 94931, 'ninety-four thousand nine hundred thirty-one');\nINSERT INTO t3 VALUES(24002, 99001, 'ninety-nine thousand one');\nINSERT INTO t3 VALUES(24003, 8140, 'eight thousand one hundred forty');\nINSERT INTO t3 VALUES(24004, 23335, 'twenty-three thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(24005, 55695, 'fifty-five thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(24006, 52109, 'fifty-two thousand one hundred nine');\nINSERT INTO t3 VALUES(24007, 33912, 'thirty-three thousand nine hundred twelve');\nINSERT INTO t3 VALUES(24008, 55636, 'fifty-five thousand six hundred thirty-six');\nINSERT INTO t3 VALUES(24009, 27909, 'twenty-seven thousand nine hundred nine');\nINSERT INTO t3 VALUES(24010, 55259, 'fifty-five thousand two hundred fifty-nine');\nINSERT INTO t3 VALUES(24011, 49855, 'forty-nine thousand eight hundred fifty-five');\nINSERT INTO t3 VALUES(24012, 20303, 'twenty thousand three hundred three');\nINSERT INTO t3 VALUES(24013, 4110, 'four thousand one hundred ten');\nINSERT INTO t3 VALUES(24014, 8022, 'eight thousand twenty-two');\nINSERT INTO t3 VALUES(24015, 93612, 'ninety-three thousand six hundred twelve');\nINSERT INTO t3 VALUES(24016, 65783, 'sixty-five thousand seven hundred eighty-three');\nINSERT INTO t3 VALUES(24017, 95618, 'ninety-five thousand six hundred eighteen');\nINSERT INTO t3 VALUES(24018, 12357, 'twelve thousand three hundred fifty-seven');\nINSERT INTO t3 VALUES(24019, 23889, 'twenty-three thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(24020, 53220, 'fifty-three thousand two hundred twenty');\nINSERT INTO t3 VALUES(24021, 43163, 'forty-three thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24022, 1629, 'one thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(24023, 36, 'thirty-six');\nINSERT INTO t3 VALUES(24024, 31719, 'thirty-one thousand seven hundred nineteen');\nINSERT INTO t3 VALUES(24025, 59172, 'fifty-nine thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(24026, 76172, 'seventy-six thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(24027, 21949, 'twenty-one thousand nine hundred forty-nine');\nINSERT INTO t3 VALUES(24028, 54965, 'fifty-four thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(24029, 21240, 'twenty-one thousand two hundred forty');\nINSERT INTO t3 VALUES(24030, 26377, 'twenty-six thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(24031, 45731, 'forty-five thousand seven hundred thirty-one');\nINSERT INTO t3 VALUES(24032, 7966, 'seven thousand nine hundred sixty-six');\nINSERT INTO t3 VALUES(24033, 39163, 'thirty-nine thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24034, 47215, 'forty-seven thousand two hundred fifteen');\nINSERT INTO t3 VALUES(24035, 83299, 'eighty-three thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(24036, 15845, 'fifteen thousand eight hundred forty-five');\nINSERT INTO t3 VALUES(24037, 87940, 'eighty-seven thousand nine hundred forty');\nINSERT INTO t3 VALUES(24038, 15816, 'fifteen thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(24039, 29868, 'twenty-nine thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(24040, 37258, 'thirty-seven thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(24041, 40164, 'forty thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(24042, 3427, 'three thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(24043, 88676, 'eighty-eight thousand six hundred seventy-six');\nINSERT INTO t3 VALUES(24044, 19320, 'nineteen thousand three hundred twenty');\nINSERT INTO t3 VALUES(24045, 54068, 'fifty-four thousand sixty-eight');\nINSERT INTO t3 VALUES(24046, 87190, 'eighty-seven thousand one hundred ninety');\nINSERT INTO t3 VALUES(24047, 66933, 'sixty-six thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(24048, 23351, 'twenty-three thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24049, 21806, 'twenty-one thousand eight hundred six');\nINSERT INTO t3 VALUES(24050, 62236, 'sixty-two thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(24051, 54484, 'fifty-four thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(24052, 29894, 'twenty-nine thousand eight hundred ninety-four');\nINSERT INTO t3 VALUES(24053, 97769, 'ninety-seven thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24054, 95203, 'ninety-five thousand two hundred three');\nINSERT INTO t3 VALUES(24055, 75525, 'seventy-five thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(24056, 30261, 'thirty thousand two hundred sixty-one');\nINSERT INTO t3 VALUES(24057, 44374, 'forty-four thousand three hundred seventy-four');\nINSERT INTO t3 VALUES(24058, 49104, 'forty-nine thousand one hundred four');\nINSERT INTO t3 VALUES(24059, 92160, 'ninety-two thousand one hundred sixty');\nINSERT INTO t3 VALUES(24060, 36988, 'thirty-six thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(24061, 46423, 'forty-six thousand four hundred twenty-three');\nINSERT INTO t3 VALUES(24062, 74489, 'seventy-four thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24063, 16584, 'sixteen thousand five hundred eighty-four');\nINSERT INTO t3 VALUES(24064, 5688, 'five thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(24065, 92117, 'ninety-two thousand one hundred seventeen');\nINSERT INTO t3 VALUES(24066, 90923, 'ninety thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(24067, 21477, 'twenty-one thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(24068, 70451, 'seventy thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(24069, 14295, 'fourteen thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24070, 81918, 'eighty-one thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(24071, 26764, 'twenty-six thousand seven hundred sixty-four');\nINSERT INTO t3 VALUES(24072, 60454, 'sixty thousand four hundred fifty-four');\nINSERT INTO t3 VALUES(24073, 16923, 'sixteen thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(24074, 22959, 'twenty-two thousand nine hundred fifty-nine');\nINSERT INTO t3 VALUES(24075, 2292, 'two thousand two hundred ninety-two');\nINSERT INTO t3 VALUES(24076, 71398, 'seventy-one thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24077, 56500, 'fifty-six thousand five hundred');\nINSERT INTO t3 VALUES(24078, 35466, 'thirty-five thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(24079, 60552, 'sixty thousand five hundred fifty-two');\nINSERT INTO t3 VALUES(24080, 39432, 'thirty-nine thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(24081, 22183, 'twenty-two thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(24082, 20019, 'twenty thousand nineteen');\nINSERT INTO t3 VALUES(24083, 84798, 'eighty-four thousand seven hundred ninety-eight');\nINSERT INTO t3 VALUES(24084, 35652, 'thirty-five thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(24085, 43387, 'forty-three thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(24086, 41270, 'forty-one thousand two hundred seventy');\nINSERT INTO t3 VALUES(24087, 57567, 'fifty-seven thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(24088, 56276, 'fifty-six thousand two hundred seventy-six');\nINSERT INTO t3 VALUES(24089, 49037, 'forty-nine thousand thirty-seven');\nINSERT INTO t3 VALUES(24090, 96718, 'ninety-six thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(24091, 83590, 'eighty-three thousand five hundred ninety');\nINSERT INTO t3 VALUES(24092, 52886, 'fifty-two thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24093, 59046, 'fifty-nine thousand forty-six');\nINSERT INTO t3 VALUES(24094, 50641, 'fifty thousand six hundred forty-one');\nINSERT INTO t3 VALUES(24095, 41908, 'forty-one thousand nine hundred eight');\nINSERT INTO t3 VALUES(24096, 56235, 'fifty-six thousand two hundred thirty-five');\nINSERT INTO t3 VALUES(24097, 68318, 'sixty-eight thousand three hundred eighteen');\nINSERT INTO t3 VALUES(24098, 20710, 'twenty thousand seven hundred ten');\nINSERT INTO t3 VALUES(24099, 74069, 'seventy-four thousand sixty-nine');\nINSERT INTO t3 VALUES(24100, 99157, 'ninety-nine thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(24101, 34599, 'thirty-four thousand five hundred ninety-nine');\nINSERT INTO t3 VALUES(24102, 55257, 'fifty-five thousand two hundred fifty-seven');\nINSERT INTO t3 VALUES(24103, 75281, 'seventy-five thousand two hundred eighty-one');\nINSERT INTO t3 VALUES(24104, 54087, 'fifty-four thousand eighty-seven');\nINSERT INTO t3 VALUES(24105, 71767, 'seventy-one thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(24106, 6888, 'six thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(24107, 84461, 'eighty-four thousand four hundred sixty-one');\nINSERT INTO t3 VALUES(24108, 51451, 'fifty-one thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(24109, 85769, 'eighty-five thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24110, 16592, 'sixteen thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24111, 1479, 'one thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(24112, 58823, 'fifty-eight thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(24113, 70422, 'seventy thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(24114, 87284, 'eighty-seven thousand two hundred eighty-four');\nINSERT INTO t3 VALUES(24115, 1718, 'one thousand seven hundred eighteen');\nINSERT INTO t3 VALUES(24116, 87246, 'eighty-seven thousand two hundred forty-six');\nINSERT INTO t3 VALUES(24117, 16900, 'sixteen thousand nine hundred');\nINSERT INTO t3 VALUES(24118, 7435, 'seven thousand four hundred thirty-five');\nINSERT INTO t3 VALUES(24119, 45711, 'forty-five thousand seven hundred eleven');\nINSERT INTO t3 VALUES(24120, 40317, 'forty thousand three hundred seventeen');\nINSERT INTO t3 VALUES(24121, 79996, 'seventy-nine thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(24122, 2859, 'two thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(24123, 6234, 'six thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24124, 77863, 'seventy-seven thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24125, 73021, 'seventy-three thousand twenty-one');\nINSERT INTO t3 VALUES(24126, 45377, 'forty-five thousand three hundred seventy-seven');\nINSERT INTO t3 VALUES(24127, 17756, 'seventeen thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(24128, 744, 'seven hundred forty-four');\nINSERT INTO t3 VALUES(24129, 37629, 'thirty-seven thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(24130, 75416, 'seventy-five thousand four hundred sixteen');\nINSERT INTO t3 VALUES(24131, 88361, 'eighty-eight thousand three hundred sixty-one');\nINSERT INTO t3 VALUES(24132, 86522, 'eighty-six thousand five hundred twenty-two');\nINSERT INTO t3 VALUES(24133, 55572, 'fifty-five thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(24134, 94502, 'ninety-four thousand five hundred two');\nINSERT INTO t3 VALUES(24135, 66135, 'sixty-six thousand one hundred thirty-five');\nINSERT INTO t3 VALUES(24136, 19773, 'nineteen thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(24137, 5160, 'five thousand one hundred sixty');\nINSERT INTO t3 VALUES(24138, 57793, 'fifty-seven thousand seven hundred ninety-three');\nINSERT INTO t3 VALUES(24139, 96035, 'ninety-six thousand thirty-five');\nINSERT INTO t3 VALUES(24140, 90243, 'ninety thousand two hundred forty-three');\nINSERT INTO t3 VALUES(24141, 96147, 'ninety-six thousand one hundred forty-seven');\nINSERT INTO t3 VALUES(24142, 50901, 'fifty thousand nine hundred one');\nINSERT INTO t3 VALUES(24143, 61566, 'sixty-one thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(24144, 26813, 'twenty-six thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(24145, 36899, 'thirty-six thousand eight hundred ninety-nine');\nINSERT INTO t3 VALUES(24146, 63756, 'sixty-three thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(24147, 86063, 'eighty-six thousand sixty-three');\nINSERT INTO t3 VALUES(24148, 18273, 'eighteen thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(24149, 32548, 'thirty-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(24150, 49109, 'forty-nine thousand one hundred nine');\nINSERT INTO t3 VALUES(24151, 26996, 'twenty-six thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(24152, 80234, 'eighty thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24153, 91248, 'ninety-one thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(24154, 84814, 'eighty-four thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(24155, 45555, 'forty-five thousand five hundred fifty-five');\nINSERT INTO t3 VALUES(24156, 20686, 'twenty thousand six hundred eighty-six');\nINSERT INTO t3 VALUES(24157, 1059, 'one thousand fifty-nine');\nINSERT INTO t3 VALUES(24158, 70472, 'seventy thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(24159, 9753, 'nine thousand seven hundred fifty-three');\nINSERT INTO t3 VALUES(24160, 74767, 'seventy-four thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(24161, 42393, 'forty-two thousand three hundred ninety-three');\nINSERT INTO t3 VALUES(24162, 6867, 'six thousand eight hundred sixty-seven');\nINSERT INTO t3 VALUES(24163, 36977, 'thirty-six thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(24164, 82076, 'eighty-two thousand seventy-six');\nINSERT INTO t3 VALUES(24165, 57751, 'fifty-seven thousand seven hundred fifty-one');\nINSERT INTO t3 VALUES(24166, 62165, 'sixty-two thousand one hundred sixty-five');\nINSERT INTO t3 VALUES(24167, 76151, 'seventy-six thousand one hundred fifty-one');\nINSERT INTO t3 VALUES(24168, 27540, 'twenty-seven thousand five hundred forty');\nINSERT INTO t3 VALUES(24169, 5612, 'five thousand six hundred twelve');\nINSERT INTO t3 VALUES(24170, 46837, 'forty-six thousand eight hundred thirty-seven');\nINSERT INTO t3 VALUES(24171, 86651, 'eighty-six thousand six hundred fifty-one');\nINSERT INTO t3 VALUES(24172, 1344, 'one thousand three hundred forty-four');\nINSERT INTO t3 VALUES(24173, 27004, 'twenty-seven thousand four');\nINSERT INTO t3 VALUES(24174, 32518, 'thirty-two thousand five hundred eighteen');\nINSERT INTO t3 VALUES(24175, 35958, 'thirty-five thousand nine hundred fifty-eight');\nINSERT INTO t3 VALUES(24176, 73739, 'seventy-three thousand seven hundred thirty-nine');\nINSERT INTO t3 VALUES(24177, 99477, 'ninety-nine thousand four hundred seventy-seven');\nINSERT INTO t3 VALUES(24178, 42384, 'forty-two thousand three hundred eighty-four');\nINSERT INTO t3 VALUES(24179, 57017, 'fifty-seven thousand seventeen');\nINSERT INTO t3 VALUES(24180, 30865, 'thirty thousand eight hundred sixty-five');\nINSERT INTO t3 VALUES(24181, 6790, 'six thousand seven hundred ninety');\nINSERT INTO t3 VALUES(24182, 46218, 'forty-six thousand two hundred eighteen');\nINSERT INTO t3 VALUES(24183, 63425, 'sixty-three thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(24184, 1656, 'one thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(24185, 60484, 'sixty thousand four hundred eighty-four');\nINSERT INTO t3 VALUES(24186, 57439, 'fifty-seven thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(24187, 26347, 'twenty-six thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(24188, 99269, 'ninety-nine thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(24189, 85963, 'eighty-five thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(24190, 60815, 'sixty thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(24191, 61964, 'sixty-one thousand nine hundred sixty-four');\nINSERT INTO t3 VALUES(24192, 70323, 'seventy thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(24193, 43133, 'forty-three thousand one hundred thirty-three');\nINSERT INTO t3 VALUES(24194, 54654, 'fifty-four thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(24195, 65737, 'sixty-five thousand seven hundred thirty-seven');\nINSERT INTO t3 VALUES(24196, 19142, 'nineteen thousand one hundred forty-two');\nINSERT INTO t3 VALUES(24197, 82550, 'eighty-two thousand five hundred fifty');\nINSERT INTO t3 VALUES(24198, 30351, 'thirty thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24199, 90266, 'ninety thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(24200, 20746, 'twenty thousand seven hundred forty-six');\nINSERT INTO t3 VALUES(24201, 87818, 'eighty-seven thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(24202, 6139, 'six thousand one hundred thirty-nine');\nINSERT INTO t3 VALUES(24203, 53332, 'fifty-three thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(24204, 23784, 'twenty-three thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(24205, 34886, 'thirty-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24206, 76745, 'seventy-six thousand seven hundred forty-five');\nINSERT INTO t3 VALUES(24207, 88544, 'eighty-eight thousand five hundred forty-four');\nINSERT INTO t3 VALUES(24208, 39137, 'thirty-nine thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(24209, 32481, 'thirty-two thousand four hundred eighty-one');\nINSERT INTO t3 VALUES(24210, 30267, 'thirty thousand two hundred sixty-seven');\nINSERT INTO t3 VALUES(24211, 83100, 'eighty-three thousand one hundred');\nINSERT INTO t3 VALUES(24212, 18315, 'eighteen thousand three hundred fifteen');\nINSERT INTO t3 VALUES(24213, 30801, 'thirty thousand eight hundred one');\nINSERT INTO t3 VALUES(24214, 71607, 'seventy-one thousand six hundred seven');\nINSERT INTO t3 VALUES(24215, 88756, 'eighty-eight thousand seven hundred fifty-six');\nINSERT INTO t3 VALUES(24216, 85504, 'eighty-five thousand five hundred four');\nINSERT INTO t3 VALUES(24217, 32305, 'thirty-two thousand three hundred five');\nINSERT INTO t3 VALUES(24218, 10714, 'ten thousand seven hundred fourteen');\nINSERT INTO t3 VALUES(24219, 90610, 'ninety thousand six hundred ten');\nINSERT INTO t3 VALUES(24220, 75072, 'seventy-five thousand seventy-two');\nINSERT INTO t3 VALUES(24221, 99570, 'ninety-nine thousand five hundred seventy');\nINSERT INTO t3 VALUES(24222, 9757, 'nine thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(24223, 49580, 'forty-nine thousand five hundred eighty');\nINSERT INTO t3 VALUES(24224, 55609, 'fifty-five thousand six hundred nine');\nINSERT INTO t3 VALUES(24225, 17004, 'seventeen thousand four');\nINSERT INTO t3 VALUES(24226, 20095, 'twenty thousand ninety-five');\nINSERT INTO t3 VALUES(24227, 85427, 'eighty-five thousand four hundred twenty-seven');\nINSERT INTO t3 VALUES(24228, 90566, 'ninety thousand five hundred sixty-six');\nINSERT INTO t3 VALUES(24229, 70564, 'seventy thousand five hundred sixty-four');\nINSERT INTO t3 VALUES(24230, 54460, 'fifty-four thousand four hundred sixty');\nINSERT INTO t3 VALUES(24231, 18412, 'eighteen thousand four hundred twelve');\nINSERT INTO t3 VALUES(24232, 21185, 'twenty-one thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(24233, 60896, 'sixty thousand eight hundred ninety-six');\nINSERT INTO t3 VALUES(24234, 30189, 'thirty thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(24235, 3247, 'three thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(24236, 75625, 'seventy-five thousand six hundred twenty-five');\nINSERT INTO t3 VALUES(24237, 14206, 'fourteen thousand two hundred six');\nINSERT INTO t3 VALUES(24238, 61125, 'sixty-one thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(24239, 60035, 'sixty thousand thirty-five');\nINSERT INTO t3 VALUES(24240, 46132, 'forty-six thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(24241, 4114, 'four thousand one hundred fourteen');\nINSERT INTO t3 VALUES(24242, 67192, 'sixty-seven thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(24243, 34113, 'thirty-four thousand one hundred thirteen');\nINSERT INTO t3 VALUES(24244, 89568, 'eighty-nine thousand five hundred sixty-eight');\nINSERT INTO t3 VALUES(24245, 67747, 'sixty-seven thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(24246, 90778, 'ninety thousand seven hundred seventy-eight');\nINSERT INTO t3 VALUES(24247, 55695, 'fifty-five thousand six hundred ninety-five');\nINSERT INTO t3 VALUES(24248, 4052, 'four thousand fifty-two');\nINSERT INTO t3 VALUES(24249, 9363, 'nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(24250, 47164, 'forty-seven thousand one hundred sixty-four');\nINSERT INTO t3 VALUES(24251, 89184, 'eighty-nine thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(24252, 45096, 'forty-five thousand ninety-six');\nINSERT INTO t3 VALUES(24253, 92163, 'ninety-two thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24254, 29439, 'twenty-nine thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(24255, 70999, 'seventy thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(24256, 7325, 'seven thousand three hundred twenty-five');\nINSERT INTO t3 VALUES(24257, 81525, 'eighty-one thousand five hundred twenty-five');\nINSERT INTO t3 VALUES(24258, 34198, 'thirty-four thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(24259, 87047, 'eighty-seven thousand forty-seven');\nINSERT INTO t3 VALUES(24260, 95417, 'ninety-five thousand four hundred seventeen');\nINSERT INTO t3 VALUES(24261, 12295, 'twelve thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24262, 53309, 'fifty-three thousand three hundred nine');\nINSERT INTO t3 VALUES(24263, 94748, 'ninety-four thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(24264, 51279, 'fifty-one thousand two hundred seventy-nine');\nINSERT INTO t3 VALUES(24265, 9246, 'nine thousand two hundred forty-six');\nINSERT INTO t3 VALUES(24266, 26322, 'twenty-six thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(24267, 99822, 'ninety-nine thousand eight hundred twenty-two');\nINSERT INTO t3 VALUES(24268, 22495, 'twenty-two thousand four hundred ninety-five');\nINSERT INTO t3 VALUES(24269, 86576, 'eighty-six thousand five hundred seventy-six');\nINSERT INTO t3 VALUES(24270, 6341, 'six thousand three hundred forty-one');\nINSERT INTO t3 VALUES(24271, 19839, 'nineteen thousand eight hundred thirty-nine');\nINSERT INTO t3 VALUES(24272, 14212, 'fourteen thousand two hundred twelve');\nINSERT INTO t3 VALUES(24273, 7512, 'seven thousand five hundred twelve');\nINSERT INTO t3 VALUES(24274, 3569, 'three thousand five hundred sixty-nine');\nINSERT INTO t3 VALUES(24275, 30740, 'thirty thousand seven hundred forty');\nINSERT INTO t3 VALUES(24276, 22887, 'twenty-two thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(24277, 90008, 'ninety thousand eight');\nINSERT INTO t3 VALUES(24278, 11432, 'eleven thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(24279, 9524, 'nine thousand five hundred twenty-four');\nINSERT INTO t3 VALUES(24280, 8545, 'eight thousand five hundred forty-five');\nINSERT INTO t3 VALUES(24281, 24301, 'twenty-four thousand three hundred one');\nINSERT INTO t3 VALUES(24282, 27592, 'twenty-seven thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24283, 46187, 'forty-six thousand one hundred eighty-seven');\nINSERT INTO t3 VALUES(24284, 87906, 'eighty-seven thousand nine hundred six');\nINSERT INTO t3 VALUES(24285, 82874, 'eighty-two thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(24286, 14103, 'fourteen thousand one hundred three');\nINSERT INTO t3 VALUES(24287, 36336, 'thirty-six thousand three hundred thirty-six');\nINSERT INTO t3 VALUES(24288, 413, 'four hundred thirteen');\nINSERT INTO t3 VALUES(24289, 80380, 'eighty thousand three hundred eighty');\nINSERT INTO t3 VALUES(24290, 12130, 'twelve thousand one hundred thirty');\nINSERT INTO t3 VALUES(24291, 33388, 'thirty-three thousand three hundred eighty-eight');\nINSERT INTO t3 VALUES(24292, 27234, 'twenty-seven thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24293, 23303, 'twenty-three thousand three hundred three');\nINSERT INTO t3 VALUES(24294, 23785, 'twenty-three thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(24295, 58047, 'fifty-eight thousand forty-seven');\nINSERT INTO t3 VALUES(24296, 86222, 'eighty-six thousand two hundred twenty-two');\nINSERT INTO t3 VALUES(24297, 72942, 'seventy-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24298, 34234, 'thirty-four thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24299, 95952, 'ninety-five thousand nine hundred fifty-two');\nINSERT INTO t3 VALUES(24300, 67529, 'sixty-seven thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(24301, 20170, 'twenty thousand one hundred seventy');\nINSERT INTO t3 VALUES(24302, 16044, 'sixteen thousand forty-four');\nINSERT INTO t3 VALUES(24303, 13010, 'thirteen thousand ten');\nINSERT INTO t3 VALUES(24304, 61784, 'sixty-one thousand seven hundred eighty-four');\nINSERT INTO t3 VALUES(24305, 67607, 'sixty-seven thousand six hundred seven');\nINSERT INTO t3 VALUES(24306, 66520, 'sixty-six thousand five hundred twenty');\nINSERT INTO t3 VALUES(24307, 24561, 'twenty-four thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(24308, 21322, 'twenty-one thousand three hundred twenty-two');\nINSERT INTO t3 VALUES(24309, 91048, 'ninety-one thousand forty-eight');\nINSERT INTO t3 VALUES(24310, 62144, 'sixty-two thousand one hundred forty-four');\nINSERT INTO t3 VALUES(24311, 82240, 'eighty-two thousand two hundred forty');\nINSERT INTO t3 VALUES(24312, 37167, 'thirty-seven thousand one hundred sixty-seven');\nINSERT INTO t3 VALUES(24313, 64451, 'sixty-four thousand four hundred fifty-one');\nINSERT INTO t3 VALUES(24314, 77498, 'seventy-seven thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(24315, 92266, 'ninety-two thousand two hundred sixty-six');\nINSERT INTO t3 VALUES(24316, 98716, 'ninety-eight thousand seven hundred sixteen');\nINSERT INTO t3 VALUES(24317, 86872, 'eighty-six thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(24318, 23925, 'twenty-three thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(24319, 99540, 'ninety-nine thousand five hundred forty');\nINSERT INTO t3 VALUES(24320, 17365, 'seventeen thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(24321, 37740, 'thirty-seven thousand seven hundred forty');\nINSERT INTO t3 VALUES(24322, 4820, 'four thousand eight hundred twenty');\nINSERT INTO t3 VALUES(24323, 42174, 'forty-two thousand one hundred seventy-four');\nINSERT INTO t3 VALUES(24324, 70809, 'seventy thousand eight hundred nine');\nINSERT INTO t3 VALUES(24325, 40942, 'forty thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24326, 16925, 'sixteen thousand nine hundred twenty-five');\nINSERT INTO t3 VALUES(24327, 33847, 'thirty-three thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(24328, 16270, 'sixteen thousand two hundred seventy');\nINSERT INTO t3 VALUES(24329, 49039, 'forty-nine thousand thirty-nine');\nINSERT INTO t3 VALUES(24330, 97879, 'ninety-seven thousand eight hundred seventy-nine');\nINSERT INTO t3 VALUES(24331, 38094, 'thirty-eight thousand ninety-four');\nINSERT INTO t3 VALUES(24332, 10820, 'ten thousand eight hundred twenty');\nINSERT INTO t3 VALUES(24333, 42248, 'forty-two thousand two hundred forty-eight');\nINSERT INTO t3 VALUES(24334, 4932, 'four thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(24335, 94550, 'ninety-four thousand five hundred fifty');\nINSERT INTO t3 VALUES(24336, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24337, 68447, 'sixty-eight thousand four hundred forty-seven');\nINSERT INTO t3 VALUES(24338, 4194, 'four thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(24339, 35231, 'thirty-five thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(24340, 14755, 'fourteen thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(24341, 44146, 'forty-four thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24342, 38066, 'thirty-eight thousand sixty-six');\nINSERT INTO t3 VALUES(24343, 22902, 'twenty-two thousand nine hundred two');\nINSERT INTO t3 VALUES(24344, 93823, 'ninety-three thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(24345, 86633, 'eighty-six thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(24346, 72782, 'seventy-two thousand seven hundred eighty-two');\nINSERT INTO t3 VALUES(24347, 27207, 'twenty-seven thousand two hundred seven');\nINSERT INTO t3 VALUES(24348, 68015, 'sixty-eight thousand fifteen');\nINSERT INTO t3 VALUES(24349, 30868, 'thirty thousand eight hundred sixty-eight');\nINSERT INTO t3 VALUES(24350, 70852, 'seventy thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(24351, 56358, 'fifty-six thousand three hundred fifty-eight');\nINSERT INTO t3 VALUES(24352, 57722, 'fifty-seven thousand seven hundred twenty-two');\nINSERT INTO t3 VALUES(24353, 67819, 'sixty-seven thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(24354, 869, 'eight hundred sixty-nine');\nINSERT INTO t3 VALUES(24355, 23457, 'twenty-three thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(24356, 72507, 'seventy-two thousand five hundred seven');\nINSERT INTO t3 VALUES(24357, 90593, 'ninety thousand five hundred ninety-three');\nINSERT INTO t3 VALUES(24358, 29056, 'twenty-nine thousand fifty-six');\nINSERT INTO t3 VALUES(24359, 73383, 'seventy-three thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(24360, 81575, 'eighty-one thousand five hundred seventy-five');\nINSERT INTO t3 VALUES(24361, 52289, 'fifty-two thousand two hundred eighty-nine');\nINSERT INTO t3 VALUES(24362, 48070, 'forty-eight thousand seventy');\nINSERT INTO t3 VALUES(24363, 2194, 'two thousand one hundred ninety-four');\nINSERT INTO t3 VALUES(24364, 88547, 'eighty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(24365, 37819, 'thirty-seven thousand eight hundred nineteen');\nINSERT INTO t3 VALUES(24366, 50800, 'fifty thousand eight hundred');\nINSERT INTO t3 VALUES(24367, 47428, 'forty-seven thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(24368, 75210, 'seventy-five thousand two hundred ten');\nINSERT INTO t3 VALUES(24369, 82060, 'eighty-two thousand sixty');\nINSERT INTO t3 VALUES(24370, 70475, 'seventy thousand four hundred seventy-five');\nINSERT INTO t3 VALUES(24371, 90114, 'ninety thousand one hundred fourteen');\nINSERT INTO t3 VALUES(24372, 2140, 'two thousand one hundred forty');\nINSERT INTO t3 VALUES(24373, 38748, 'thirty-eight thousand seven hundred forty-eight');\nINSERT INTO t3 VALUES(24374, 38895, 'thirty-eight thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(24375, 56230, 'fifty-six thousand two hundred thirty');\nINSERT INTO t3 VALUES(24376, 89212, 'eighty-nine thousand two hundred twelve');\nINSERT INTO t3 VALUES(24377, 50995, 'fifty thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(24378, 8667, 'eight thousand six hundred sixty-seven');\nINSERT INTO t3 VALUES(24379, 76985, 'seventy-six thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(24380, 19323, 'nineteen thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(24381, 28715, 'twenty-eight thousand seven hundred fifteen');\nINSERT INTO t3 VALUES(24382, 95333, 'ninety-five thousand three hundred thirty-three');\nINSERT INTO t3 VALUES(24383, 87775, 'eighty-seven thousand seven hundred seventy-five');\nINSERT INTO t3 VALUES(24384, 79217, 'seventy-nine thousand two hundred seventeen');\nINSERT INTO t3 VALUES(24385, 17528, 'seventeen thousand five hundred twenty-eight');\nINSERT INTO t3 VALUES(24386, 19807, 'nineteen thousand eight hundred seven');\nINSERT INTO t3 VALUES(24387, 50780, 'fifty thousand seven hundred eighty');\nINSERT INTO t3 VALUES(24388, 1177, 'one thousand one hundred seventy-seven');\nINSERT INTO t3 VALUES(24389, 2770, 'two thousand seven hundred seventy');\nINSERT INTO t3 VALUES(24390, 23640, 'twenty-three thousand six hundred forty');\nINSERT INTO t3 VALUES(24391, 3431, 'three thousand four hundred thirty-one');\nINSERT INTO t3 VALUES(24392, 38215, 'thirty-eight thousand two hundred fifteen');\nINSERT INTO t3 VALUES(24393, 54120, 'fifty-four thousand one hundred twenty');\nINSERT INTO t3 VALUES(24394, 27689, 'twenty-seven thousand six hundred eighty-nine');\nINSERT INTO t3 VALUES(24395, 76466, 'seventy-six thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(24396, 11482, 'eleven thousand four hundred eighty-two');\nINSERT INTO t3 VALUES(24397, 34690, 'thirty-four thousand six hundred ninety');\nINSERT INTO t3 VALUES(24398, 16757, 'sixteen thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(24399, 2875, 'two thousand eight hundred seventy-five');\nINSERT INTO t3 VALUES(24400, 68747, 'sixty-eight thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(24401, 67288, 'sixty-seven thousand two hundred eighty-eight');\nINSERT INTO t3 VALUES(24402, 93617, 'ninety-three thousand six hundred seventeen');\nINSERT INTO t3 VALUES(24403, 35251, 'thirty-five thousand two hundred fifty-one');\nINSERT INTO t3 VALUES(24404, 9498, 'nine thousand four hundred ninety-eight');\nINSERT INTO t3 VALUES(24405, 96559, 'ninety-six thousand five hundred fifty-nine');\nINSERT INTO t3 VALUES(24406, 91503, 'ninety-one thousand five hundred three');\nINSERT INTO t3 VALUES(24407, 66708, 'sixty-six thousand seven hundred eight');\nINSERT INTO t3 VALUES(24408, 61119, 'sixty-one thousand one hundred nineteen');\nINSERT INTO t3 VALUES(24409, 48100, 'forty-eight thousand one hundred');\nINSERT INTO t3 VALUES(24410, 40588, 'forty thousand five hundred eighty-eight');\nINSERT INTO t3 VALUES(24411, 16282, 'sixteen thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(24412, 19994, 'nineteen thousand nine hundred ninety-four');\nINSERT INTO t3 VALUES(24413, 93293, 'ninety-three thousand two hundred ninety-three');\nINSERT INTO t3 VALUES(24414, 75901, 'seventy-five thousand nine hundred one');\nINSERT INTO t3 VALUES(24415, 62213, 'sixty-two thousand two hundred thirteen');\nINSERT INTO t3 VALUES(24416, 45938, 'forty-five thousand nine hundred thirty-eight');\nINSERT INTO t3 VALUES(24417, 23092, 'twenty-three thousand ninety-two');\nINSERT INTO t3 VALUES(24418, 10660, 'ten thousand six hundred sixty');\nINSERT INTO t3 VALUES(24419, 90159, 'ninety thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(24420, 35123, 'thirty-five thousand one hundred twenty-three');\nINSERT INTO t3 VALUES(24421, 77560, 'seventy-seven thousand five hundred sixty');\nINSERT INTO t3 VALUES(24422, 34337, 'thirty-four thousand three hundred thirty-seven');\nINSERT INTO t3 VALUES(24423, 90351, 'ninety thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24424, 37659, 'thirty-seven thousand six hundred fifty-nine');\nINSERT INTO t3 VALUES(24425, 35335, 'thirty-five thousand three hundred thirty-five');\nINSERT INTO t3 VALUES(24426, 93515, 'ninety-three thousand five hundred fifteen');\nINSERT INTO t3 VALUES(24427, 19652, 'nineteen thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(24428, 86115, 'eighty-six thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24429, 27073, 'twenty-seven thousand seventy-three');\nINSERT INTO t3 VALUES(24430, 14415, 'fourteen thousand four hundred fifteen');\nINSERT INTO t3 VALUES(24431, 47214, 'forty-seven thousand two hundred fourteen');\nINSERT INTO t3 VALUES(24432, 48815, 'forty-eight thousand eight hundred fifteen');\nINSERT INTO t3 VALUES(24433, 24870, 'twenty-four thousand eight hundred seventy');\nINSERT INTO t3 VALUES(24434, 58889, 'fifty-eight thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(24435, 71158, 'seventy-one thousand one hundred fifty-eight');\nINSERT INTO t3 VALUES(24436, 39961, 'thirty-nine thousand nine hundred sixty-one');\nINSERT INTO t3 VALUES(24437, 98540, 'ninety-eight thousand five hundred forty');\nINSERT INTO t3 VALUES(24438, 37466, 'thirty-seven thousand four hundred sixty-six');\nINSERT INTO t3 VALUES(24439, 56040, 'fifty-six thousand forty');\nINSERT INTO t3 VALUES(24440, 70629, 'seventy thousand six hundred twenty-nine');\nINSERT INTO t3 VALUES(24441, 37860, 'thirty-seven thousand eight hundred sixty');\nINSERT INTO t3 VALUES(24442, 15740, 'fifteen thousand seven hundred forty');\nINSERT INTO t3 VALUES(24443, 93234, 'ninety-three thousand two hundred thirty-four');\nINSERT INTO t3 VALUES(24444, 89390, 'eighty-nine thousand three hundred ninety');\nINSERT INTO t3 VALUES(24445, 14526, 'fourteen thousand five hundred twenty-six');\nINSERT INTO t3 VALUES(24446, 97962, 'ninety-seven thousand nine hundred sixty-two');\nINSERT INTO t3 VALUES(24447, 42909, 'forty-two thousand nine hundred nine');\nINSERT INTO t3 VALUES(24448, 74360, 'seventy-four thousand three hundred sixty');\nINSERT INTO t3 VALUES(24449, 60817, 'sixty thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(24450, 25841, 'twenty-five thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(24451, 9101, 'nine thousand one hundred one');\nINSERT INTO t3 VALUES(24452, 18890, 'eighteen thousand eight hundred ninety');\nINSERT INTO t3 VALUES(24453, 81233, 'eighty-one thousand two hundred thirty-three');\nINSERT INTO t3 VALUES(24454, 92974, 'ninety-two thousand nine hundred seventy-four');\nINSERT INTO t3 VALUES(24455, 89356, 'eighty-nine thousand three hundred fifty-six');\nINSERT INTO t3 VALUES(24456, 18243, 'eighteen thousand two hundred forty-three');\nINSERT INTO t3 VALUES(24457, 98125, 'ninety-eight thousand one hundred twenty-five');\nINSERT INTO t3 VALUES(24458, 52567, 'fifty-two thousand five hundred sixty-seven');\nINSERT INTO t3 VALUES(24459, 3050, 'three thousand fifty');\nINSERT INTO t3 VALUES(24460, 98478, 'ninety-eight thousand four hundred seventy-eight');\nINSERT INTO t3 VALUES(24461, 55677, 'fifty-five thousand six hundred seventy-seven');\nINSERT INTO t3 VALUES(24462, 90817, 'ninety thousand eight hundred seventeen');\nINSERT INTO t3 VALUES(24463, 15455, 'fifteen thousand four hundred fifty-five');\nINSERT INTO t3 VALUES(24464, 84762, 'eighty-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(24465, 73081, 'seventy-three thousand eighty-one');\nINSERT INTO t3 VALUES(24466, 15422, 'fifteen thousand four hundred twenty-two');\nINSERT INTO t3 VALUES(24467, 24890, 'twenty-four thousand eight hundred ninety');\nINSERT INTO t3 VALUES(24468, 90029, 'ninety thousand twenty-nine');\nINSERT INTO t3 VALUES(24469, 61562, 'sixty-one thousand five hundred sixty-two');\nINSERT INTO t3 VALUES(24470, 29744, 'twenty-nine thousand seven hundred forty-four');\nINSERT INTO t3 VALUES(24471, 58936, 'fifty-eight thousand nine hundred thirty-six');\nINSERT INTO t3 VALUES(24472, 71971, 'seventy-one thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(24473, 70982, 'seventy thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(24474, 41725, 'forty-one thousand seven hundred twenty-five');\nINSERT INTO t3 VALUES(24475, 92927, 'ninety-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(24476, 33862, 'thirty-three thousand eight hundred sixty-two');\nINSERT INTO t3 VALUES(24477, 93382, 'ninety-three thousand three hundred eighty-two');\nINSERT INTO t3 VALUES(24478, 77954, 'seventy-seven thousand nine hundred fifty-four');\nINSERT INTO t3 VALUES(24479, 15383, 'fifteen thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(24480, 28813, 'twenty-eight thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(24481, 5512, 'five thousand five hundred twelve');\nINSERT INTO t3 VALUES(24482, 51480, 'fifty-one thousand four hundred eighty');\nINSERT INTO t3 VALUES(24483, 6514, 'six thousand five hundred fourteen');\nINSERT INTO t3 VALUES(24484, 30236, 'thirty thousand two hundred thirty-six');\nINSERT INTO t3 VALUES(24485, 11104, 'eleven thousand one hundred four');\nINSERT INTO t3 VALUES(24486, 86824, 'eighty-six thousand eight hundred twenty-four');\nINSERT INTO t3 VALUES(24487, 78228, 'seventy-eight thousand two hundred twenty-eight');\nINSERT INTO t3 VALUES(24488, 41145, 'forty-one thousand one hundred forty-five');\nINSERT INTO t3 VALUES(24489, 29657, 'twenty-nine thousand six hundred fifty-seven');\nINSERT INTO t3 VALUES(24490, 85757, 'eighty-five thousand seven hundred fifty-seven');\nINSERT INTO t3 VALUES(24491, 69398, 'sixty-nine thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24492, 79563, 'seventy-nine thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(24493, 92682, 'ninety-two thousand six hundred eighty-two');\nINSERT INTO t3 VALUES(24494, 2935, 'two thousand nine hundred thirty-five');\nINSERT INTO t3 VALUES(24495, 35906, 'thirty-five thousand nine hundred six');\nINSERT INTO t3 VALUES(24496, 75457, 'seventy-five thousand four hundred fifty-seven');\nINSERT INTO t3 VALUES(24497, 26969, 'twenty-six thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(24498, 92773, 'ninety-two thousand seven hundred seventy-three');\nINSERT INTO t3 VALUES(24499, 31957, 'thirty-one thousand nine hundred fifty-seven');\nINSERT INTO t3 VALUES(24500, 70185, 'seventy thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(24501, 29928, 'twenty-nine thousand nine hundred twenty-eight');\nINSERT INTO t3 VALUES(24502, 32432, 'thirty-two thousand four hundred thirty-two');\nINSERT INTO t3 VALUES(24503, 25115, 'twenty-five thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24504, 50198, 'fifty thousand one hundred ninety-eight');\nINSERT INTO t3 VALUES(24505, 79471, 'seventy-nine thousand four hundred seventy-one');\nINSERT INTO t3 VALUES(24506, 42183, 'forty-two thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(24507, 84705, 'eighty-four thousand seven hundred five');\nINSERT INTO t3 VALUES(24508, 46781, 'forty-six thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(24509, 3406, 'three thousand four hundred six');\nINSERT INTO t3 VALUES(24510, 82340, 'eighty-two thousand three hundred forty');\nINSERT INTO t3 VALUES(24511, 72548, 'seventy-two thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(24512, 69097, 'sixty-nine thousand ninety-seven');\nINSERT INTO t3 VALUES(24513, 78159, 'seventy-eight thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(24514, 7241, 'seven thousand two hundred forty-one');\nINSERT INTO t3 VALUES(24515, 11154, 'eleven thousand one hundred fifty-four');\nINSERT INTO t3 VALUES(24516, 72759, 'seventy-two thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(24517, 37411, 'thirty-seven thousand four hundred eleven');\nINSERT INTO t3 VALUES(24518, 90691, 'ninety thousand six hundred ninety-one');\nINSERT INTO t3 VALUES(24519, 17329, 'seventeen thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(24520, 21136, 'twenty-one thousand one hundred thirty-six');\nINSERT INTO t3 VALUES(24521, 73397, 'seventy-three thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(24522, 58848, 'fifty-eight thousand eight hundred forty-eight');\nINSERT INTO t3 VALUES(24523, 29869, 'twenty-nine thousand eight hundred sixty-nine');\nINSERT INTO t3 VALUES(24524, 74504, 'seventy-four thousand five hundred four');\nINSERT INTO t3 VALUES(24525, 29171, 'twenty-nine thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(24526, 67023, 'sixty-seven thousand twenty-three');\nINSERT INTO t3 VALUES(24527, 16021, 'sixteen thousand twenty-one');\nINSERT INTO t3 VALUES(24528, 76889, 'seventy-six thousand eight hundred eighty-nine');\nINSERT INTO t3 VALUES(24529, 13227, 'thirteen thousand two hundred twenty-seven');\nINSERT INTO t3 VALUES(24530, 60563, 'sixty thousand five hundred sixty-three');\nINSERT INTO t3 VALUES(24531, 9637, 'nine thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(24532, 70863, 'seventy thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24533, 36076, 'thirty-six thousand seventy-six');\nINSERT INTO t3 VALUES(24534, 98410, 'ninety-eight thousand four hundred ten');\nINSERT INTO t3 VALUES(24535, 12095, 'twelve thousand ninety-five');\nINSERT INTO t3 VALUES(24536, 24406, 'twenty-four thousand four hundred six');\nINSERT INTO t3 VALUES(24537, 73409, 'seventy-three thousand four hundred nine');\nINSERT INTO t3 VALUES(24538, 29768, 'twenty-nine thousand seven hundred sixty-eight');\nINSERT INTO t3 VALUES(24539, 84265, 'eighty-four thousand two hundred sixty-five');\nINSERT INTO t3 VALUES(24540, 26609, 'twenty-six thousand six hundred nine');\nINSERT INTO t3 VALUES(24541, 35668, 'thirty-five thousand six hundred sixty-eight');\nINSERT INTO t3 VALUES(24542, 85458, 'eighty-five thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(24543, 12571, 'twelve thousand five hundred seventy-one');\nINSERT INTO t3 VALUES(24544, 30268, 'thirty thousand two hundred sixty-eight');\nINSERT INTO t3 VALUES(24545, 66940, 'sixty-six thousand nine hundred forty');\nINSERT INTO t3 VALUES(24546, 89088, 'eighty-nine thousand eighty-eight');\nINSERT INTO t3 VALUES(24547, 52116, 'fifty-two thousand one hundred sixteen');\nINSERT INTO t3 VALUES(24548, 52044, 'fifty-two thousand forty-four');\nINSERT INTO t3 VALUES(24549, 43022, 'forty-three thousand twenty-two');\nINSERT INTO t3 VALUES(24550, 82921, 'eighty-two thousand nine hundred twenty-one');\nINSERT INTO t3 VALUES(24551, 74469, 'seventy-four thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(24552, 32766, 'thirty-two thousand seven hundred sixty-six');\nINSERT INTO t3 VALUES(24553, 36163, 'thirty-six thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24554, 42630, 'forty-two thousand six hundred thirty');\nINSERT INTO t3 VALUES(24555, 40683, 'forty thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(24556, 19842, 'nineteen thousand eight hundred forty-two');\nINSERT INTO t3 VALUES(24557, 33550, 'thirty-three thousand five hundred fifty');\nINSERT INTO t3 VALUES(24558, 7122, 'seven thousand one hundred twenty-two');\nINSERT INTO t3 VALUES(24559, 68362, 'sixty-eight thousand three hundred sixty-two');\nINSERT INTO t3 VALUES(24560, 60637, 'sixty thousand six hundred thirty-seven');\nINSERT INTO t3 VALUES(24561, 21302, 'twenty-one thousand three hundred two');\nINSERT INTO t3 VALUES(24562, 77989, 'seventy-seven thousand nine hundred eighty-nine');\nINSERT INTO t3 VALUES(24563, 73376, 'seventy-three thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(24564, 43376, 'forty-three thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(24565, 87694, 'eighty-seven thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(24566, 90797, 'ninety thousand seven hundred ninety-seven');\nINSERT INTO t3 VALUES(24567, 46321, 'forty-six thousand three hundred twenty-one');\nINSERT INTO t3 VALUES(24568, 19654, 'nineteen thousand six hundred fifty-four');\nINSERT INTO t3 VALUES(24569, 28489, 'twenty-eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24570, 83580, 'eighty-three thousand five hundred eighty');\nINSERT INTO t3 VALUES(24571, 24168, 'twenty-four thousand one hundred sixty-eight');\nINSERT INTO t3 VALUES(24572, 35300, 'thirty-five thousand three hundred');\nINSERT INTO t3 VALUES(24573, 86199, 'eighty-six thousand one hundred ninety-nine');\nINSERT INTO t3 VALUES(24574, 39534, 'thirty-nine thousand five hundred thirty-four');\nINSERT INTO t3 VALUES(24575, 53386, 'fifty-three thousand three hundred eighty-six');\nINSERT INTO t3 VALUES(24576, 96527, 'ninety-six thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(24577, 70262, 'seventy thousand two hundred sixty-two');\nINSERT INTO t3 VALUES(24578, 56369, 'fifty-six thousand three hundred sixty-nine');\nINSERT INTO t3 VALUES(24579, 71474, 'seventy-one thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(24580, 24093, 'twenty-four thousand ninety-three');\nINSERT INTO t3 VALUES(24581, 48149, 'forty-eight thousand one hundred forty-nine');\nINSERT INTO t3 VALUES(24582, 9717, 'nine thousand seven hundred seventeen');\nINSERT INTO t3 VALUES(24583, 20205, 'twenty thousand two hundred five');\nINSERT INTO t3 VALUES(24584, 15770, 'fifteen thousand seven hundred seventy');\nINSERT INTO t3 VALUES(24585, 8601, 'eight thousand six hundred one');\nINSERT INTO t3 VALUES(24586, 33272, 'thirty-three thousand two hundred seventy-two');\nINSERT INTO t3 VALUES(24587, 9620, 'nine thousand six hundred twenty');\nINSERT INTO t3 VALUES(24588, 19035, 'nineteen thousand thirty-five');\nINSERT INTO t3 VALUES(24589, 77898, 'seventy-seven thousand eight hundred ninety-eight');\nINSERT INTO t3 VALUES(24590, 43891, 'forty-three thousand eight hundred ninety-one');\nINSERT INTO t3 VALUES(24591, 7341, 'seven thousand three hundred forty-one');\nINSERT INTO t3 VALUES(24592, 21012, 'twenty-one thousand twelve');\nINSERT INTO t3 VALUES(24593, 47304, 'forty-seven thousand three hundred four');\nINSERT INTO t3 VALUES(24594, 13771, 'thirteen thousand seven hundred seventy-one');\nINSERT INTO t3 VALUES(24595, 56852, 'fifty-six thousand eight hundred fifty-two');\nINSERT INTO t3 VALUES(24596, 1092, 'one thousand ninety-two');\nINSERT INTO t3 VALUES(24597, 10527, 'ten thousand five hundred twenty-seven');\nINSERT INTO t3 VALUES(24598, 24351, 'twenty-four thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24599, 3185, 'three thousand one hundred eighty-five');\nINSERT INTO t3 VALUES(24600, 20932, 'twenty thousand nine hundred thirty-two');\nINSERT INTO t3 VALUES(24601, 2044, 'two thousand forty-four');\nINSERT INTO t3 VALUES(24602, 79491, 'seventy-nine thousand four hundred ninety-one');\nINSERT INTO t3 VALUES(24603, 63479, 'sixty-three thousand four hundred seventy-nine');\nINSERT INTO t3 VALUES(24604, 64144, 'sixty-four thousand one hundred forty-four');\nINSERT INTO t3 VALUES(24605, 11553, 'eleven thousand five hundred fifty-three');\nINSERT INTO t3 VALUES(24606, 80080, 'eighty thousand eighty');\nINSERT INTO t3 VALUES(24607, 42841, 'forty-two thousand eight hundred forty-one');\nINSERT INTO t3 VALUES(24608, 26094, 'twenty-six thousand ninety-four');\nINSERT INTO t3 VALUES(24609, 38439, 'thirty-eight thousand four hundred thirty-nine');\nINSERT INTO t3 VALUES(24610, 28474, 'twenty-eight thousand four hundred seventy-four');\nINSERT INTO t3 VALUES(24611, 58847, 'fifty-eight thousand eight hundred forty-seven');\nINSERT INTO t3 VALUES(24612, 8319, 'eight thousand three hundred nineteen');\nINSERT INTO t3 VALUES(24613, 85074, 'eighty-five thousand seventy-four');\nINSERT INTO t3 VALUES(24614, 26116, 'twenty-six thousand one hundred sixteen');\nINSERT INTO t3 VALUES(24615, 32315, 'thirty-two thousand three hundred fifteen');\nINSERT INTO t3 VALUES(24616, 23304, 'twenty-three thousand three hundred four');\nINSERT INTO t3 VALUES(24617, 69448, 'sixty-nine thousand four hundred forty-eight');\nINSERT INTO t3 VALUES(24618, 79351, 'seventy-nine thousand three hundred fifty-one');\nINSERT INTO t3 VALUES(24619, 80548, 'eighty thousand five hundred forty-eight');\nINSERT INTO t3 VALUES(24620, 74037, 'seventy-four thousand thirty-seven');\nINSERT INTO t3 VALUES(24621, 11683, 'eleven thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(24622, 32115, 'thirty-two thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24623, 90383, 'ninety thousand three hundred eighty-three');\nINSERT INTO t3 VALUES(24624, 95459, 'ninety-five thousand four hundred fifty-nine');\nINSERT INTO t3 VALUES(24625, 6463, 'six thousand four hundred sixty-three');\nINSERT INTO t3 VALUES(24626, 72425, 'seventy-two thousand four hundred twenty-five');\nINSERT INTO t3 VALUES(24627, 96118, 'ninety-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(24628, 99948, 'ninety-nine thousand nine hundred forty-eight');\nINSERT INTO t3 VALUES(24629, 40496, 'forty thousand four hundred ninety-six');\nINSERT INTO t3 VALUES(24630, 57027, 'fifty-seven thousand twenty-seven');\nINSERT INTO t3 VALUES(24631, 54806, 'fifty-four thousand eight hundred six');\nINSERT INTO t3 VALUES(24632, 74192, 'seventy-four thousand one hundred ninety-two');\nINSERT INTO t3 VALUES(24633, 1458, 'one thousand four hundred fifty-eight');\nINSERT INTO t3 VALUES(24634, 60022, 'sixty thousand twenty-two');\nINSERT INTO t3 VALUES(24635, 13015, 'thirteen thousand fifteen');\nINSERT INTO t3 VALUES(24636, 4182, 'four thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(24637, 47728, 'forty-seven thousand seven hundred twenty-eight');\nINSERT INTO t3 VALUES(24638, 48780, 'forty-eight thousand seven hundred eighty');\nINSERT INTO t3 VALUES(24639, 35252, 'thirty-five thousand two hundred fifty-two');\nINSERT INTO t3 VALUES(24640, 5917, 'five thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(24641, 80663, 'eighty thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(24642, 16943, 'sixteen thousand nine hundred forty-three');\nINSERT INTO t3 VALUES(24643, 14529, 'fourteen thousand five hundred twenty-nine');\nINSERT INTO t3 VALUES(24644, 13366, 'thirteen thousand three hundred sixty-six');\nINSERT INTO t3 VALUES(24645, 94467, 'ninety-four thousand four hundred sixty-seven');\nINSERT INTO t3 VALUES(24646, 26831, 'twenty-six thousand eight hundred thirty-one');\nINSERT INTO t3 VALUES(24647, 64859, 'sixty-four thousand eight hundred fifty-nine');\nINSERT INTO t3 VALUES(24648, 79940, 'seventy-nine thousand nine hundred forty');\nINSERT INTO t3 VALUES(24649, 56200, 'fifty-six thousand two hundred');\nINSERT INTO t3 VALUES(24650, 48830, 'forty-eight thousand eight hundred thirty');\nINSERT INTO t3 VALUES(24651, 90965, 'ninety thousand nine hundred sixty-five');\nINSERT INTO t3 VALUES(24652, 67810, 'sixty-seven thousand eight hundred ten');\nINSERT INTO t3 VALUES(24653, 77419, 'seventy-seven thousand four hundred nineteen');\nINSERT INTO t3 VALUES(24654, 16345, 'sixteen thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24655, 28572, 'twenty-eight thousand five hundred seventy-two');\nINSERT INTO t3 VALUES(24656, 24503, 'twenty-four thousand five hundred three');\nINSERT INTO t3 VALUES(24657, 52829, 'fifty-two thousand eight hundred twenty-nine');\nINSERT INTO t3 VALUES(24658, 9201, 'nine thousand two hundred one');\nINSERT INTO t3 VALUES(24659, 60184, 'sixty thousand one hundred eighty-four');\nINSERT INTO t3 VALUES(24660, 65258, 'sixty-five thousand two hundred fifty-eight');\nINSERT INTO t3 VALUES(24661, 68277, 'sixty-eight thousand two hundred seventy-seven');\nINSERT INTO t3 VALUES(24662, 12632, 'twelve thousand six hundred thirty-two');\nINSERT INTO t3 VALUES(24663, 88871, 'eighty-eight thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(24664, 88888, 'eighty-eight thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(24665, 94189, 'ninety-four thousand one hundred eighty-nine');\nINSERT INTO t3 VALUES(24666, 17742, 'seventeen thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(24667, 46197, 'forty-six thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(24668, 28493, 'twenty-eight thousand four hundred ninety-three');\nINSERT INTO t3 VALUES(24669, 21476, 'twenty-one thousand four hundred seventy-six');\nINSERT INTO t3 VALUES(24670, 59660, 'fifty-nine thousand six hundred sixty');\nINSERT INTO t3 VALUES(24671, 33157, 'thirty-three thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(24672, 70806, 'seventy thousand eight hundred six');\nINSERT INTO t3 VALUES(24673, 10282, 'ten thousand two hundred eighty-two');\nINSERT INTO t3 VALUES(24674, 46608, 'forty-six thousand six hundred eight');\nINSERT INTO t3 VALUES(24675, 93057, 'ninety-three thousand fifty-seven');\nINSERT INTO t3 VALUES(24676, 87137, 'eighty-seven thousand one hundred thirty-seven');\nINSERT INTO t3 VALUES(24677, 59914, 'fifty-nine thousand nine hundred fourteen');\nINSERT INTO t3 VALUES(24678, 15138, 'fifteen thousand one hundred thirty-eight');\nINSERT INTO t3 VALUES(24679, 66081, 'sixty-six thousand eighty-one');\nINSERT INTO t3 VALUES(24680, 2872, 'two thousand eight hundred seventy-two');\nINSERT INTO t3 VALUES(24681, 58182, 'fifty-eight thousand one hundred eighty-two');\nINSERT INTO t3 VALUES(24682, 98693, 'ninety-eight thousand six hundred ninety-three');\nINSERT INTO t3 VALUES(24683, 6402, 'six thousand four hundred two');\nINSERT INTO t3 VALUES(24684, 81893, 'eighty-one thousand eight hundred ninety-three');\nINSERT INTO t3 VALUES(24685, 82769, 'eighty-two thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24686, 28132, 'twenty-eight thousand one hundred thirty-two');\nINSERT INTO t3 VALUES(24687, 23087, 'twenty-three thousand eighty-seven');\nINSERT INTO t3 VALUES(24688, 39363, 'thirty-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(24689, 33263, 'thirty-three thousand two hundred sixty-three');\nINSERT INTO t3 VALUES(24690, 8211, 'eight thousand two hundred eleven');\nINSERT INTO t3 VALUES(24691, 41329, 'forty-one thousand three hundred twenty-nine');\nINSERT INTO t3 VALUES(24692, 95183, 'ninety-five thousand one hundred eighty-three');\nINSERT INTO t3 VALUES(24693, 47040, 'forty-seven thousand forty');\nINSERT INTO t3 VALUES(24694, 59347, 'fifty-nine thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(24695, 19887, 'nineteen thousand eight hundred eighty-seven');\nINSERT INTO t3 VALUES(24696, 10700, 'ten thousand seven hundred');\nINSERT INTO t3 VALUES(24697, 44206, 'forty-four thousand two hundred six');\nINSERT INTO t3 VALUES(24698, 66580, 'sixty-six thousand five hundred eighty');\nINSERT INTO t3 VALUES(24699, 47669, 'forty-seven thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(24700, 80892, 'eighty thousand eight hundred ninety-two');\nINSERT INTO t3 VALUES(24701, 75755, 'seventy-five thousand seven hundred fifty-five');\nINSERT INTO t3 VALUES(24702, 70814, 'seventy thousand eight hundred fourteen');\nINSERT INTO t3 VALUES(24703, 84205, 'eighty-four thousand two hundred five');\nINSERT INTO t3 VALUES(24704, 49501, 'forty-nine thousand five hundred one');\nINSERT INTO t3 VALUES(24705, 61490, 'sixty-one thousand four hundred ninety');\nINSERT INTO t3 VALUES(24706, 95982, 'ninety-five thousand nine hundred eighty-two');\nINSERT INTO t3 VALUES(24707, 15473, 'fifteen thousand four hundred seventy-three');\nINSERT INTO t3 VALUES(24708, 59440, 'fifty-nine thousand four hundred forty');\nINSERT INTO t3 VALUES(24709, 2995, 'two thousand nine hundred ninety-five');\nINSERT INTO t3 VALUES(24710, 38547, 'thirty-eight thousand five hundred forty-seven');\nINSERT INTO t3 VALUES(24711, 85352, 'eighty-five thousand three hundred fifty-two');\nINSERT INTO t3 VALUES(24712, 10539, 'ten thousand five hundred thirty-nine');\nINSERT INTO t3 VALUES(24713, 78665, 'seventy-eight thousand six hundred sixty-five');\nINSERT INTO t3 VALUES(24714, 46340, 'forty-six thousand three hundred forty');\nINSERT INTO t3 VALUES(24715, 52171, 'fifty-two thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(24716, 79592, 'seventy-nine thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24717, 80347, 'eighty thousand three hundred forty-seven');\nINSERT INTO t3 VALUES(24718, 36969, 'thirty-six thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(24719, 58825, 'fifty-eight thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(24720, 50497, 'fifty thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(24721, 52942, 'fifty-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24722, 53225, 'fifty-three thousand two hundred twenty-five');\nINSERT INTO t3 VALUES(24723, 35595, 'thirty-five thousand five hundred ninety-five');\nINSERT INTO t3 VALUES(24724, 70411, 'seventy thousand four hundred eleven');\nINSERT INTO t3 VALUES(24725, 23175, 'twenty-three thousand one hundred seventy-five');\nINSERT INTO t3 VALUES(24726, 20256, 'twenty thousand two hundred fifty-six');\nINSERT INTO t3 VALUES(24727, 75444, 'seventy-five thousand four hundred forty-four');\nINSERT INTO t3 VALUES(24728, 29472, 'twenty-nine thousand four hundred seventy-two');\nINSERT INTO t3 VALUES(24729, 74873, 'seventy-four thousand eight hundred seventy-three');\nINSERT INTO t3 VALUES(24730, 96570, 'ninety-six thousand five hundred seventy');\nINSERT INTO t3 VALUES(24731, 34886, 'thirty-four thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24732, 5332, 'five thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(24733, 2099, 'two thousand ninety-nine');\nINSERT INTO t3 VALUES(24734, 54409, 'fifty-four thousand four hundred nine');\nINSERT INTO t3 VALUES(24735, 3586, 'three thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(24736, 70081, 'seventy thousand eighty-one');\nINSERT INTO t3 VALUES(24737, 44769, 'forty-four thousand seven hundred sixty-nine');\nINSERT INTO t3 VALUES(24738, 9967, 'nine thousand nine hundred sixty-seven');\nINSERT INTO t3 VALUES(24739, 86997, 'eighty-six thousand nine hundred ninety-seven');\nINSERT INTO t3 VALUES(24740, 22978, 'twenty-two thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(24741, 41041, 'forty-one thousand forty-one');\nINSERT INTO t3 VALUES(24742, 12900, 'twelve thousand nine hundred');\nINSERT INTO t3 VALUES(24743, 16669, 'sixteen thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(24744, 97688, 'ninety-seven thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(24745, 33963, 'thirty-three thousand nine hundred sixty-three');\nINSERT INTO t3 VALUES(24746, 13508, 'thirteen thousand five hundred eight');\nINSERT INTO t3 VALUES(24747, 39008, 'thirty-nine thousand eight');\nINSERT INTO t3 VALUES(24748, 53052, 'fifty-three thousand fifty-two');\nINSERT INTO t3 VALUES(24749, 92622, 'ninety-two thousand six hundred twenty-two');\nINSERT INTO t3 VALUES(24750, 95918, 'ninety-five thousand nine hundred eighteen');\nINSERT INTO t3 VALUES(24751, 67927, 'sixty-seven thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(24752, 8489, 'eight thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24753, 38917, 'thirty-eight thousand nine hundred seventeen');\nINSERT INTO t3 VALUES(24754, 13065, 'thirteen thousand sixty-five');\nINSERT INTO t3 VALUES(24755, 15772, 'fifteen thousand seven hundred seventy-two');\nINSERT INTO t3 VALUES(24756, 71996, 'seventy-one thousand nine hundred ninety-six');\nINSERT INTO t3 VALUES(24757, 93804, 'ninety-three thousand eight hundred four');\nINSERT INTO t3 VALUES(24758, 62376, 'sixty-two thousand three hundred seventy-six');\nINSERT INTO t3 VALUES(24759, 19210, 'nineteen thousand two hundred ten');\nINSERT INTO t3 VALUES(24760, 55669, 'fifty-five thousand six hundred sixty-nine');\nINSERT INTO t3 VALUES(24761, 60397, 'sixty thousand three hundred ninety-seven');\nINSERT INTO t3 VALUES(24762, 15157, 'fifteen thousand one hundred fifty-seven');\nINSERT INTO t3 VALUES(24763, 17765, 'seventeen thousand seven hundred sixty-five');\nINSERT INTO t3 VALUES(24764, 24303, 'twenty-four thousand three hundred three');\nINSERT INTO t3 VALUES(24765, 74762, 'seventy-four thousand seven hundred sixty-two');\nINSERT INTO t3 VALUES(24766, 12660, 'twelve thousand six hundred sixty');\nINSERT INTO t3 VALUES(24767, 71115, 'seventy-one thousand one hundred fifteen');\nINSERT INTO t3 VALUES(24768, 75727, 'seventy-five thousand seven hundred twenty-seven');\nINSERT INTO t3 VALUES(24769, 81886, 'eighty-one thousand eight hundred eighty-six');\nINSERT INTO t3 VALUES(24770, 93418, 'ninety-three thousand four hundred eighteen');\nINSERT INTO t3 VALUES(24771, 55993, 'fifty-five thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(24772, 98380, 'ninety-eight thousand three hundred eighty');\nINSERT INTO t3 VALUES(24773, 58971, 'fifty-eight thousand nine hundred seventy-one');\nINSERT INTO t3 VALUES(24774, 16900, 'sixteen thousand nine hundred');\nINSERT INTO t3 VALUES(24775, 93345, 'ninety-three thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24776, 60673, 'sixty thousand six hundred seventy-three');\nINSERT INTO t3 VALUES(24777, 50247, 'fifty thousand two hundred forty-seven');\nINSERT INTO t3 VALUES(24778, 78763, 'seventy-eight thousand seven hundred sixty-three');\nINSERT INTO t3 VALUES(24779, 2916, 'two thousand nine hundred sixteen');\nINSERT INTO t3 VALUES(24780, 38779, 'thirty-eight thousand seven hundred seventy-nine');\nINSERT INTO t3 VALUES(24781, 9671, 'nine thousand six hundred seventy-one');\nINSERT INTO t3 VALUES(24782, 75048, 'seventy-five thousand forty-eight');\nINSERT INTO t3 VALUES(24783, 71339, 'seventy-one thousand three hundred thirty-nine');\nINSERT INTO t3 VALUES(24784, 99363, 'ninety-nine thousand three hundred sixty-three');\nINSERT INTO t3 VALUES(24785, 43445, 'forty-three thousand four hundred forty-five');\nINSERT INTO t3 VALUES(24786, 15216, 'fifteen thousand two hundred sixteen');\nINSERT INTO t3 VALUES(24787, 86770, 'eighty-six thousand seven hundred seventy');\nINSERT INTO t3 VALUES(24788, 94108, 'ninety-four thousand one hundred eight');\nINSERT INTO t3 VALUES(24789, 53313, 'fifty-three thousand three hundred thirteen');\nINSERT INTO t3 VALUES(24790, 62927, 'sixty-two thousand nine hundred twenty-seven');\nINSERT INTO t3 VALUES(24791, 2633, 'two thousand six hundred thirty-three');\nINSERT INTO t3 VALUES(24792, 71987, 'seventy-one thousand nine hundred eighty-seven');\nINSERT INTO t3 VALUES(24793, 31816, 'thirty-one thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(24794, 44145, 'forty-four thousand one hundred forty-five');\nINSERT INTO t3 VALUES(24795, 44670, 'forty-four thousand six hundred seventy');\nINSERT INTO t3 VALUES(24796, 32652, 'thirty-two thousand six hundred fifty-two');\nINSERT INTO t3 VALUES(24797, 86370, 'eighty-six thousand three hundred seventy');\nINSERT INTO t3 VALUES(24798, 77806, 'seventy-seven thousand eight hundred six');\nINSERT INTO t3 VALUES(24799, 49010, 'forty-nine thousand ten');\nINSERT INTO t3 VALUES(24800, 41469, 'forty-one thousand four hundred sixty-nine');\nINSERT INTO t3 VALUES(24801, 86497, 'eighty-six thousand four hundred ninety-seven');\nINSERT INTO t3 VALUES(24802, 89416, 'eighty-nine thousand four hundred sixteen');\nINSERT INTO t3 VALUES(24803, 22795, 'twenty-two thousand seven hundred ninety-five');\nINSERT INTO t3 VALUES(24804, 16486, 'sixteen thousand four hundred eighty-six');\nINSERT INTO t3 VALUES(24805, 83767, 'eighty-three thousand seven hundred sixty-seven');\nINSERT INTO t3 VALUES(24806, 69813, 'sixty-nine thousand eight hundred thirteen');\nINSERT INTO t3 VALUES(24807, 24398, 'twenty-four thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24808, 4641, 'four thousand six hundred forty-one');\nINSERT INTO t3 VALUES(24809, 19155, 'nineteen thousand one hundred fifty-five');\nINSERT INTO t3 VALUES(24810, 10874, 'ten thousand eight hundred seventy-four');\nINSERT INTO t3 VALUES(24811, 35546, 'thirty-five thousand five hundred forty-six');\nINSERT INTO t3 VALUES(24812, 13792, 'thirteen thousand seven hundred ninety-two');\nINSERT INTO t3 VALUES(24813, 47786, 'forty-seven thousand seven hundred eighty-six');\nINSERT INTO t3 VALUES(24814, 43075, 'forty-three thousand seventy-five');\nINSERT INTO t3 VALUES(24815, 63969, 'sixty-three thousand nine hundred sixty-nine');\nINSERT INTO t3 VALUES(24816, 42942, 'forty-two thousand nine hundred forty-two');\nINSERT INTO t3 VALUES(24817, 46118, 'forty-six thousand one hundred eighteen');\nINSERT INTO t3 VALUES(24818, 58231, 'fifty-eight thousand two hundred thirty-one');\nINSERT INTO t3 VALUES(24819, 10334, 'ten thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(24820, 34774, 'thirty-four thousand seven hundred seventy-four');\nINSERT INTO t3 VALUES(24821, 10146, 'ten thousand one hundred forty-six');\nINSERT INTO t3 VALUES(24822, 99742, 'ninety-nine thousand seven hundred forty-two');\nINSERT INTO t3 VALUES(24823, 11418, 'eleven thousand four hundred eighteen');\nINSERT INTO t3 VALUES(24824, 69613, 'sixty-nine thousand six hundred thirteen');\nINSERT INTO t3 VALUES(24825, 66806, 'sixty-six thousand eight hundred six');\nINSERT INTO t3 VALUES(24826, 34060, 'thirty-four thousand sixty');\nINSERT INTO t3 VALUES(24827, 40116, 'forty thousand one hundred sixteen');\nINSERT INTO t3 VALUES(24828, 25042, 'twenty-five thousand forty-two');\nINSERT INTO t3 VALUES(24829, 77863, 'seventy-seven thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24830, 97334, 'ninety-seven thousand three hundred thirty-four');\nINSERT INTO t3 VALUES(24831, 84687, 'eighty-four thousand six hundred eighty-seven');\nINSERT INTO t3 VALUES(24832, 44197, 'forty-four thousand one hundred ninety-seven');\nINSERT INTO t3 VALUES(24833, 94141, 'ninety-four thousand one hundred forty-one');\nINSERT INTO t3 VALUES(24834, 87283, 'eighty-seven thousand two hundred eighty-three');\nINSERT INTO t3 VALUES(24835, 80045, 'eighty thousand forty-five');\nINSERT INTO t3 VALUES(24836, 57110, 'fifty-seven thousand one hundred ten');\nINSERT INTO t3 VALUES(24837, 98823, 'ninety-eight thousand eight hundred twenty-three');\nINSERT INTO t3 VALUES(24838, 10560, 'ten thousand five hundred sixty');\nINSERT INTO t3 VALUES(24839, 48709, 'forty-eight thousand seven hundred nine');\nINSERT INTO t3 VALUES(24840, 84826, 'eighty-four thousand eight hundred twenty-six');\nINSERT INTO t3 VALUES(24841, 8743, 'eight thousand seven hundred forty-three');\nINSERT INTO t3 VALUES(24842, 5747, 'five thousand seven hundred forty-seven');\nINSERT INTO t3 VALUES(24843, 96079, 'ninety-six thousand seventy-nine');\nINSERT INTO t3 VALUES(24844, 29287, 'twenty-nine thousand two hundred eighty-seven');\nINSERT INTO t3 VALUES(24845, 10503, 'ten thousand five hundred three');\nINSERT INTO t3 VALUES(24846, 42835, 'forty-two thousand eight hundred thirty-five');\nINSERT INTO t3 VALUES(24847, 39803, 'thirty-nine thousand eight hundred three');\nINSERT INTO t3 VALUES(24848, 47531, 'forty-seven thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(24849, 12240, 'twelve thousand two hundred forty');\nINSERT INTO t3 VALUES(24850, 41777, 'forty-one thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(24851, 21596, 'twenty-one thousand five hundred ninety-six');\nINSERT INTO t3 VALUES(24852, 24048, 'twenty-four thousand forty-eight');\nINSERT INTO t3 VALUES(24853, 36560, 'thirty-six thousand five hundred sixty');\nINSERT INTO t3 VALUES(24854, 13578, 'thirteen thousand five hundred seventy-eight');\nINSERT INTO t3 VALUES(24855, 49976, 'forty-nine thousand nine hundred seventy-six');\nINSERT INTO t3 VALUES(24856, 54781, 'fifty-four thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(24857, 94365, 'ninety-four thousand three hundred sixty-five');\nINSERT INTO t3 VALUES(24858, 67888, 'sixty-seven thousand eight hundred eighty-eight');\nINSERT INTO t3 VALUES(24859, 60940, 'sixty thousand nine hundred forty');\nINSERT INTO t3 VALUES(24860, 45712, 'forty-five thousand seven hundred twelve');\nINSERT INTO t3 VALUES(24861, 74303, 'seventy-four thousand three hundred three');\nINSERT INTO t3 VALUES(24862, 21345, 'twenty-one thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24863, 22554, 'twenty-two thousand five hundred fifty-four');\nINSERT INTO t3 VALUES(24864, 54730, 'fifty-four thousand seven hundred thirty');\nINSERT INTO t3 VALUES(24865, 79057, 'seventy-nine thousand fifty-seven');\nINSERT INTO t3 VALUES(24866, 13523, 'thirteen thousand five hundred twenty-three');\nINSERT INTO t3 VALUES(24867, 43990, 'forty-three thousand nine hundred ninety');\nINSERT INTO t3 VALUES(24868, 25902, 'twenty-five thousand nine hundred two');\nINSERT INTO t3 VALUES(24869, 51825, 'fifty-one thousand eight hundred twenty-five');\nINSERT INTO t3 VALUES(24870, 50909, 'fifty thousand nine hundred nine');\nINSERT INTO t3 VALUES(24871, 18586, 'eighteen thousand five hundred eighty-six');\nINSERT INTO t3 VALUES(24872, 6607, 'six thousand six hundred seven');\nINSERT INTO t3 VALUES(24873, 3890, 'three thousand eight hundred ninety');\nINSERT INTO t3 VALUES(24874, 46905, 'forty-six thousand nine hundred five');\nINSERT INTO t3 VALUES(24875, 13209, 'thirteen thousand two hundred nine');\nINSERT INTO t3 VALUES(24876, 63392, 'sixty-three thousand three hundred ninety-two');\nINSERT INTO t3 VALUES(24877, 91399, 'ninety-one thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(24878, 31171, 'thirty-one thousand one hundred seventy-one');\nINSERT INTO t3 VALUES(24879, 35561, 'thirty-five thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(24880, 1318, 'one thousand three hundred eighteen');\nINSERT INTO t3 VALUES(24881, 32933, 'thirty-two thousand nine hundred thirty-three');\nINSERT INTO t3 VALUES(24882, 41733, 'forty-one thousand seven hundred thirty-three');\nINSERT INTO t3 VALUES(24883, 65985, 'sixty-five thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(24884, 57242, 'fifty-seven thousand two hundred forty-two');\nINSERT INTO t3 VALUES(24885, 10678, 'ten thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(24886, 12854, 'twelve thousand eight hundred fifty-four');\nINSERT INTO t3 VALUES(24887, 14436, 'fourteen thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(24888, 23988, 'twenty-three thousand nine hundred eighty-eight');\nINSERT INTO t3 VALUES(24889, 32428, 'thirty-two thousand four hundred twenty-eight');\nINSERT INTO t3 VALUES(24890, 31980, 'thirty-one thousand nine hundred eighty');\nINSERT INTO t3 VALUES(24891, 42592, 'forty-two thousand five hundred ninety-two');\nINSERT INTO t3 VALUES(24892, 10777, 'ten thousand seven hundred seventy-seven');\nINSERT INTO t3 VALUES(24893, 90039, 'ninety thousand thirty-nine');\nINSERT INTO t3 VALUES(24894, 98488, 'ninety-eight thousand four hundred eighty-eight');\nINSERT INTO t3 VALUES(24895, 66119, 'sixty-six thousand one hundred nineteen');\nINSERT INTO t3 VALUES(24896, 90906, 'ninety thousand nine hundred six');\nINSERT INTO t3 VALUES(24897, 43273, 'forty-three thousand two hundred seventy-three');\nINSERT INTO t3 VALUES(24898, 86923, 'eighty-six thousand nine hundred twenty-three');\nINSERT INTO t3 VALUES(24899, 24398, 'twenty-four thousand three hundred ninety-eight');\nINSERT INTO t3 VALUES(24900, 70697, 'seventy thousand six hundred ninety-seven');\nINSERT INTO t3 VALUES(24901, 67776, 'sixty-seven thousand seven hundred seventy-six');\nINSERT INTO t3 VALUES(24902, 72999, 'seventy-two thousand nine hundred ninety-nine');\nINSERT INTO t3 VALUES(24903, 64202, 'sixty-four thousand two hundred two');\nINSERT INTO t3 VALUES(24904, 246, 'two hundred forty-six');\nINSERT INTO t3 VALUES(24905, 8602, 'eight thousand six hundred two');\nINSERT INTO t3 VALUES(24906, 2864, 'two thousand eight hundred sixty-four');\nINSERT INTO t3 VALUES(24907, 7330, 'seven thousand three hundred thirty');\nINSERT INTO t3 VALUES(24908, 21614, 'twenty-one thousand six hundred fourteen');\nINSERT INTO t3 VALUES(24909, 98092, 'ninety-eight thousand ninety-two');\nINSERT INTO t3 VALUES(24910, 53159, 'fifty-three thousand one hundred fifty-nine');\nINSERT INTO t3 VALUES(24911, 24758, 'twenty-four thousand seven hundred fifty-eight');\nINSERT INTO t3 VALUES(24912, 83464, 'eighty-three thousand four hundred sixty-four');\nINSERT INTO t3 VALUES(24913, 79332, 'seventy-nine thousand three hundred thirty-two');\nINSERT INTO t3 VALUES(24914, 73379, 'seventy-three thousand three hundred seventy-nine');\nINSERT INTO t3 VALUES(24915, 78436, 'seventy-eight thousand four hundred thirty-six');\nINSERT INTO t3 VALUES(24916, 55314, 'fifty-five thousand three hundred fourteen');\nINSERT INTO t3 VALUES(24917, 49986, 'forty-nine thousand nine hundred eighty-six');\nINSERT INTO t3 VALUES(24918, 20172, 'twenty thousand one hundred seventy-two');\nINSERT INTO t3 VALUES(24919, 46094, 'forty-six thousand ninety-four');\nINSERT INTO t3 VALUES(24920, 52678, 'fifty-two thousand six hundred seventy-eight');\nINSERT INTO t3 VALUES(24921, 20785, 'twenty thousand seven hundred eighty-five');\nINSERT INTO t3 VALUES(24922, 19531, 'nineteen thousand five hundred thirty-one');\nINSERT INTO t3 VALUES(24923, 70323, 'seventy thousand three hundred twenty-three');\nINSERT INTO t3 VALUES(24924, 29816, 'twenty-nine thousand eight hundred sixteen');\nINSERT INTO t3 VALUES(24925, 95128, 'ninety-five thousand one hundred twenty-eight');\nINSERT INTO t3 VALUES(24926, 95759, 'ninety-five thousand seven hundred fifty-nine');\nINSERT INTO t3 VALUES(24927, 5910, 'five thousand nine hundred ten');\nINSERT INTO t3 VALUES(24928, 72781, 'seventy-two thousand seven hundred eighty-one');\nINSERT INTO t3 VALUES(24929, 71098, 'seventy-one thousand ninety-eight');\nINSERT INTO t3 VALUES(24930, 52832, 'fifty-two thousand eight hundred thirty-two');\nINSERT INTO t3 VALUES(24931, 96014, 'ninety-six thousand fourteen');\nINSERT INTO t3 VALUES(24932, 70544, 'seventy thousand five hundred forty-four');\nINSERT INTO t3 VALUES(24933, 161, 'one hundred sixty-one');\nINSERT INTO t3 VALUES(24934, 623, 'six hundred twenty-three');\nINSERT INTO t3 VALUES(24935, 72399, 'seventy-two thousand three hundred ninety-nine');\nINSERT INTO t3 VALUES(24936, 83929, 'eighty-three thousand nine hundred twenty-nine');\nINSERT INTO t3 VALUES(24937, 97985, 'ninety-seven thousand nine hundred eighty-five');\nINSERT INTO t3 VALUES(24938, 25597, 'twenty-five thousand five hundred ninety-seven');\nINSERT INTO t3 VALUES(24939, 78421, 'seventy-eight thousand four hundred twenty-one');\nINSERT INTO t3 VALUES(24940, 60639, 'sixty thousand six hundred thirty-nine');\nINSERT INTO t3 VALUES(24941, 50903, 'fifty thousand nine hundred three');\nINSERT INTO t3 VALUES(24942, 934, 'nine hundred thirty-four');\nINSERT INTO t3 VALUES(24943, 53684, 'fifty-three thousand six hundred eighty-four');\nINSERT INTO t3 VALUES(24944, 12930, 'twelve thousand nine hundred thirty');\nINSERT INTO t3 VALUES(24945, 38638, 'thirty-eight thousand six hundred thirty-eight');\nINSERT INTO t3 VALUES(24946, 1269, 'one thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(24947, 36603, 'thirty-six thousand six hundred three');\nINSERT INTO t3 VALUES(24948, 43295, 'forty-three thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24949, 58480, 'fifty-eight thousand four hundred eighty');\nINSERT INTO t3 VALUES(24950, 74075, 'seventy-four thousand seventy-five');\nINSERT INTO t3 VALUES(24951, 24688, 'twenty-four thousand six hundred eighty-eight');\nINSERT INTO t3 VALUES(24952, 83209, 'eighty-three thousand two hundred nine');\nINSERT INTO t3 VALUES(24953, 59084, 'fifty-nine thousand eighty-four');\nINSERT INTO t3 VALUES(24954, 20663, 'twenty thousand six hundred sixty-three');\nINSERT INTO t3 VALUES(24955, 79179, 'seventy-nine thousand one hundred seventy-nine');\nINSERT INTO t3 VALUES(24956, 1978, 'one thousand nine hundred seventy-eight');\nINSERT INTO t3 VALUES(24957, 66295, 'sixty-six thousand two hundred ninety-five');\nINSERT INTO t3 VALUES(24958, 22993, 'twenty-two thousand nine hundred ninety-three');\nINSERT INTO t3 VALUES(24959, 90318, 'ninety thousand three hundred eighteen');\nINSERT INTO t3 VALUES(24960, 30818, 'thirty thousand eight hundred eighteen');\nINSERT INTO t3 VALUES(24961, 83489, 'eighty-three thousand four hundred eighty-nine');\nINSERT INTO t3 VALUES(24962, 50881, 'fifty thousand eight hundred eighty-one');\nINSERT INTO t3 VALUES(24963, 91104, 'ninety-one thousand one hundred four');\nINSERT INTO t3 VALUES(24964, 83683, 'eighty-three thousand six hundred eighty-three');\nINSERT INTO t3 VALUES(24965, 27051, 'twenty-seven thousand fifty-one');\nINSERT INTO t3 VALUES(24966, 84694, 'eighty-four thousand six hundred ninety-four');\nINSERT INTO t3 VALUES(24967, 16269, 'sixteen thousand two hundred sixty-nine');\nINSERT INTO t3 VALUES(24968, 21299, 'twenty-one thousand two hundred ninety-nine');\nINSERT INTO t3 VALUES(24969, 21036, 'twenty-one thousand thirty-six');\nINSERT INTO t3 VALUES(24970, 85042, 'eighty-five thousand forty-two');\nINSERT INTO t3 VALUES(24971, 5100, 'five thousand one hundred');\nINSERT INTO t3 VALUES(24972, 73645, 'seventy-three thousand six hundred forty-five');\nINSERT INTO t3 VALUES(24973, 45681, 'forty-five thousand six hundred eighty-one');\nINSERT INTO t3 VALUES(24974, 43656, 'forty-three thousand six hundred fifty-six');\nINSERT INTO t3 VALUES(24975, 71105, 'seventy-one thousand one hundred five');\nINSERT INTO t3 VALUES(24976, 7628, 'seven thousand six hundred twenty-eight');\nINSERT INTO t3 VALUES(24977, 23163, 'twenty-three thousand one hundred sixty-three');\nINSERT INTO t3 VALUES(24978, 146, 'one hundred forty-six');\nINSERT INTO t3 VALUES(24979, 12055, 'twelve thousand fifty-five');\nINSERT INTO t3 VALUES(24980, 36730, 'thirty-six thousand seven hundred thirty');\nINSERT INTO t3 VALUES(24981, 96387, 'ninety-six thousand three hundred eighty-seven');\nINSERT INTO t3 VALUES(24982, 30707, 'thirty thousand seven hundred seven');\nINSERT INTO t3 VALUES(24983, 85821, 'eighty-five thousand eight hundred twenty-one');\nINSERT INTO t3 VALUES(24984, 72713, 'seventy-two thousand seven hundred thirteen');\nINSERT INTO t3 VALUES(24985, 89071, 'eighty-nine thousand seventy-one');\nINSERT INTO t3 VALUES(24986, 95729, 'ninety-five thousand seven hundred twenty-nine');\nINSERT INTO t3 VALUES(24987, 19944, 'nineteen thousand nine hundred forty-four');\nINSERT INTO t3 VALUES(24988, 63977, 'sixty-three thousand nine hundred seventy-seven');\nINSERT INTO t3 VALUES(24989, 80696, 'eighty thousand six hundred ninety-six');\nINSERT INTO t3 VALUES(24990, 80543, 'eighty thousand five hundred forty-three');\nINSERT INTO t3 VALUES(24991, 93012, 'ninety-three thousand twelve');\nINSERT INTO t3 VALUES(24992, 53561, 'fifty-three thousand five hundred sixty-one');\nINSERT INTO t3 VALUES(24993, 96345, 'ninety-six thousand three hundred forty-five');\nINSERT INTO t3 VALUES(24994, 45500, 'forty-five thousand five hundred');\nINSERT INTO t3 VALUES(24995, 71895, 'seventy-one thousand eight hundred ninety-five');\nINSERT INTO t3 VALUES(24996, 88950, 'eighty-eight thousand nine hundred fifty');\nINSERT INTO t3 VALUES(24997, 10863, 'ten thousand eight hundred sixty-three');\nINSERT INTO t3 VALUES(24998, 94124, 'ninety-four thousand one hundred twenty-four');\nINSERT INTO t3 VALUES(24999, 44871, 'forty-four thousand eight hundred seventy-one');\nINSERT INTO t3 VALUES(25000, 35764, 'thirty-five thousand seven hundred sixty-four');\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark4.sql",
    "content": "BEGIN;\nSELECT count(*), avg(b) FROM t2 WHERE b>=0 AND b<1000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100 AND b<1100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200 AND b<1200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300 AND b<1300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400 AND b<1400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=500 AND b<1500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=600 AND b<1600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=700 AND b<1700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=800 AND b<1800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=900 AND b<1900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1000 AND b<2000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1100 AND b<2100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1200 AND b<2200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1300 AND b<2300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1400 AND b<2400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1500 AND b<2500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1600 AND b<2600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1700 AND b<2700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1800 AND b<2800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1900 AND b<2900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2000 AND b<3000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2100 AND b<3100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2200 AND b<3200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2300 AND b<3300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2400 AND b<3400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2500 AND b<3500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2600 AND b<3600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2700 AND b<3700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2800 AND b<3800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2900 AND b<3900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3000 AND b<4000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3100 AND b<4100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3200 AND b<4200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3300 AND b<4300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3400 AND b<4400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3500 AND b<4500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3600 AND b<4600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3700 AND b<4700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3800 AND b<4800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3900 AND b<4900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4000 AND b<5000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4100 AND b<5100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4200 AND b<5200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4300 AND b<5300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4400 AND b<5400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4500 AND b<5500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4600 AND b<5600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4700 AND b<5700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4800 AND b<5800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4900 AND b<5900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5000 AND b<6000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5100 AND b<6100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5200 AND b<6200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5300 AND b<6300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5400 AND b<6400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5500 AND b<6500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5600 AND b<6600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5700 AND b<6700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5800 AND b<6800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5900 AND b<6900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6000 AND b<7000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6100 AND b<7100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6200 AND b<7200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6300 AND b<7300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6400 AND b<7400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6500 AND b<7500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6600 AND b<7600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6700 AND b<7700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6800 AND b<7800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6900 AND b<7900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7000 AND b<8000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7100 AND b<8100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7200 AND b<8200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7300 AND b<8300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7400 AND b<8400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7500 AND b<8500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7600 AND b<8600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7700 AND b<8700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7800 AND b<8800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7900 AND b<8900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8000 AND b<9000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8100 AND b<9100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8200 AND b<9200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8300 AND b<9300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8400 AND b<9400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8500 AND b<9500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8600 AND b<9600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8700 AND b<9700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8800 AND b<9800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8900 AND b<9900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9000 AND b<10000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9100 AND b<10100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9200 AND b<10200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9300 AND b<10300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9400 AND b<10400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9500 AND b<10500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9600 AND b<10600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9700 AND b<10700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9800 AND b<10800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9900 AND b<10900;\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark5.sql",
    "content": "BEGIN;\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ten%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eleven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twelve%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fourteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventeen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%nineteen%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%twenty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%thirty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%forty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%fifty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%sixty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%seventy-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%eighty-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-one%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-two%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-three%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-four%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-five%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-six%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-seven%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-eight%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%ninety-nine%';\nSELECT count(*), avg(b) FROM t2 WHERE c LIKE '%one hundred%';\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark6.sql",
    "content": "CREATE INDEX i2a ON t2(a);\nCREATE INDEX i2b ON t2(b);\n"
  },
  {
    "path": "packages/benchmark/src/benchmark7.sql",
    "content": "BEGIN;\nSELECT count(*), avg(b) FROM t2 WHERE b>=0 AND b<100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100 AND b<200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200 AND b<300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300 AND b<400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400 AND b<500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=500 AND b<600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=600 AND b<700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=700 AND b<800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=800 AND b<900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=900 AND b<1000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1000 AND b<1100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1100 AND b<1200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1200 AND b<1300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1300 AND b<1400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1400 AND b<1500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1500 AND b<1600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1600 AND b<1700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1700 AND b<1800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1800 AND b<1900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=1900 AND b<2000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2000 AND b<2100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2100 AND b<2200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2200 AND b<2300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2300 AND b<2400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2400 AND b<2500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2500 AND b<2600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2600 AND b<2700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2700 AND b<2800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2800 AND b<2900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=2900 AND b<3000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3000 AND b<3100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3100 AND b<3200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3200 AND b<3300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3300 AND b<3400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3400 AND b<3500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3500 AND b<3600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3600 AND b<3700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3700 AND b<3800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3800 AND b<3900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=3900 AND b<4000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4000 AND b<4100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4100 AND b<4200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4200 AND b<4300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4300 AND b<4400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4400 AND b<4500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4500 AND b<4600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4600 AND b<4700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4700 AND b<4800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4800 AND b<4900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=4900 AND b<5000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5000 AND b<5100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5100 AND b<5200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5200 AND b<5300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5300 AND b<5400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5400 AND b<5500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5500 AND b<5600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5600 AND b<5700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5700 AND b<5800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5800 AND b<5900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=5900 AND b<6000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6000 AND b<6100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6100 AND b<6200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6200 AND b<6300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6300 AND b<6400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6400 AND b<6500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6500 AND b<6600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6600 AND b<6700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6700 AND b<6800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6800 AND b<6900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=6900 AND b<7000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7000 AND b<7100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7100 AND b<7200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7200 AND b<7300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7300 AND b<7400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7400 AND b<7500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7500 AND b<7600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7600 AND b<7700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7700 AND b<7800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7800 AND b<7900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=7900 AND b<8000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8000 AND b<8100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8100 AND b<8200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8200 AND b<8300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8300 AND b<8400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8400 AND b<8500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8500 AND b<8600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8600 AND b<8700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8700 AND b<8800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8800 AND b<8900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=8900 AND b<9000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9000 AND b<9100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9100 AND b<9200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9200 AND b<9300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9300 AND b<9400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9400 AND b<9500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9500 AND b<9600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9600 AND b<9700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9700 AND b<9800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9800 AND b<9900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=9900 AND b<10000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10000 AND b<10100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10100 AND b<10200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10200 AND b<10300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10300 AND b<10400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10400 AND b<10500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10500 AND b<10600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10600 AND b<10700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10700 AND b<10800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10800 AND b<10900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=10900 AND b<11000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11000 AND b<11100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11100 AND b<11200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11200 AND b<11300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11300 AND b<11400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11400 AND b<11500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11500 AND b<11600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11600 AND b<11700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11700 AND b<11800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11800 AND b<11900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=11900 AND b<12000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12000 AND b<12100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12100 AND b<12200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12200 AND b<12300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12300 AND b<12400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12400 AND b<12500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12500 AND b<12600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12600 AND b<12700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12700 AND b<12800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12800 AND b<12900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=12900 AND b<13000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13000 AND b<13100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13100 AND b<13200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13200 AND b<13300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13300 AND b<13400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13400 AND b<13500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13500 AND b<13600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13600 AND b<13700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13700 AND b<13800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13800 AND b<13900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=13900 AND b<14000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14000 AND b<14100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14100 AND b<14200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14200 AND b<14300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14300 AND b<14400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14400 AND b<14500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14500 AND b<14600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14600 AND b<14700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14700 AND b<14800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14800 AND b<14900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=14900 AND b<15000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15000 AND b<15100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15100 AND b<15200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15200 AND b<15300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15300 AND b<15400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15400 AND b<15500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15500 AND b<15600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15600 AND b<15700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15700 AND b<15800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15800 AND b<15900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=15900 AND b<16000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16000 AND b<16100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16100 AND b<16200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16200 AND b<16300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16300 AND b<16400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16400 AND b<16500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16500 AND b<16600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16600 AND b<16700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16700 AND b<16800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16800 AND b<16900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=16900 AND b<17000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17000 AND b<17100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17100 AND b<17200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17200 AND b<17300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17300 AND b<17400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17400 AND b<17500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17500 AND b<17600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17600 AND b<17700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17700 AND b<17800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17800 AND b<17900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=17900 AND b<18000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18000 AND b<18100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18100 AND b<18200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18200 AND b<18300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18300 AND b<18400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18400 AND b<18500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18500 AND b<18600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18600 AND b<18700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18700 AND b<18800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18800 AND b<18900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=18900 AND b<19000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19000 AND b<19100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19100 AND b<19200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19200 AND b<19300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19300 AND b<19400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19400 AND b<19500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19500 AND b<19600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19600 AND b<19700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19700 AND b<19800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19800 AND b<19900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=19900 AND b<20000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20000 AND b<20100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20100 AND b<20200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20200 AND b<20300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20300 AND b<20400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20400 AND b<20500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20500 AND b<20600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20600 AND b<20700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20700 AND b<20800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20800 AND b<20900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=20900 AND b<21000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21000 AND b<21100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21100 AND b<21200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21200 AND b<21300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21300 AND b<21400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21400 AND b<21500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21500 AND b<21600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21600 AND b<21700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21700 AND b<21800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21800 AND b<21900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=21900 AND b<22000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22000 AND b<22100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22100 AND b<22200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22200 AND b<22300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22300 AND b<22400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22400 AND b<22500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22500 AND b<22600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22600 AND b<22700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22700 AND b<22800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22800 AND b<22900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=22900 AND b<23000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23000 AND b<23100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23100 AND b<23200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23200 AND b<23300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23300 AND b<23400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23400 AND b<23500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23500 AND b<23600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23600 AND b<23700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23700 AND b<23800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23800 AND b<23900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=23900 AND b<24000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24000 AND b<24100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24100 AND b<24200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24200 AND b<24300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24300 AND b<24400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24400 AND b<24500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24500 AND b<24600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24600 AND b<24700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24700 AND b<24800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24800 AND b<24900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=24900 AND b<25000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25000 AND b<25100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25100 AND b<25200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25200 AND b<25300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25300 AND b<25400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25400 AND b<25500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25500 AND b<25600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25600 AND b<25700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25700 AND b<25800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25800 AND b<25900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=25900 AND b<26000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26000 AND b<26100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26100 AND b<26200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26200 AND b<26300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26300 AND b<26400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26400 AND b<26500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26500 AND b<26600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26600 AND b<26700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26700 AND b<26800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26800 AND b<26900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=26900 AND b<27000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27000 AND b<27100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27100 AND b<27200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27200 AND b<27300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27300 AND b<27400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27400 AND b<27500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27500 AND b<27600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27600 AND b<27700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27700 AND b<27800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27800 AND b<27900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=27900 AND b<28000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28000 AND b<28100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28100 AND b<28200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28200 AND b<28300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28300 AND b<28400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28400 AND b<28500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28500 AND b<28600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28600 AND b<28700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28700 AND b<28800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28800 AND b<28900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=28900 AND b<29000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29000 AND b<29100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29100 AND b<29200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29200 AND b<29300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29300 AND b<29400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29400 AND b<29500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29500 AND b<29600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29600 AND b<29700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29700 AND b<29800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29800 AND b<29900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=29900 AND b<30000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30000 AND b<30100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30100 AND b<30200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30200 AND b<30300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30300 AND b<30400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30400 AND b<30500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30500 AND b<30600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30600 AND b<30700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30700 AND b<30800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30800 AND b<30900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=30900 AND b<31000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31000 AND b<31100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31100 AND b<31200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31200 AND b<31300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31300 AND b<31400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31400 AND b<31500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31500 AND b<31600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31600 AND b<31700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31700 AND b<31800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31800 AND b<31900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=31900 AND b<32000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32000 AND b<32100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32100 AND b<32200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32200 AND b<32300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32300 AND b<32400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32400 AND b<32500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32500 AND b<32600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32600 AND b<32700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32700 AND b<32800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32800 AND b<32900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=32900 AND b<33000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33000 AND b<33100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33100 AND b<33200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33200 AND b<33300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33300 AND b<33400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33400 AND b<33500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33500 AND b<33600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33600 AND b<33700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33700 AND b<33800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33800 AND b<33900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=33900 AND b<34000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34000 AND b<34100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34100 AND b<34200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34200 AND b<34300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34300 AND b<34400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34400 AND b<34500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34500 AND b<34600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34600 AND b<34700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34700 AND b<34800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34800 AND b<34900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=34900 AND b<35000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35000 AND b<35100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35100 AND b<35200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35200 AND b<35300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35300 AND b<35400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35400 AND b<35500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35500 AND b<35600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35600 AND b<35700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35700 AND b<35800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35800 AND b<35900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=35900 AND b<36000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36000 AND b<36100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36100 AND b<36200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36200 AND b<36300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36300 AND b<36400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36400 AND b<36500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36500 AND b<36600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36600 AND b<36700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36700 AND b<36800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36800 AND b<36900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=36900 AND b<37000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37000 AND b<37100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37100 AND b<37200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37200 AND b<37300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37300 AND b<37400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37400 AND b<37500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37500 AND b<37600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37600 AND b<37700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37700 AND b<37800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37800 AND b<37900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=37900 AND b<38000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38000 AND b<38100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38100 AND b<38200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38200 AND b<38300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38300 AND b<38400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38400 AND b<38500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38500 AND b<38600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38600 AND b<38700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38700 AND b<38800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38800 AND b<38900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=38900 AND b<39000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39000 AND b<39100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39100 AND b<39200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39200 AND b<39300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39300 AND b<39400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39400 AND b<39500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39500 AND b<39600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39600 AND b<39700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39700 AND b<39800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39800 AND b<39900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=39900 AND b<40000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40000 AND b<40100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40100 AND b<40200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40200 AND b<40300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40300 AND b<40400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40400 AND b<40500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40500 AND b<40600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40600 AND b<40700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40700 AND b<40800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40800 AND b<40900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=40900 AND b<41000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41000 AND b<41100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41100 AND b<41200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41200 AND b<41300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41300 AND b<41400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41400 AND b<41500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41500 AND b<41600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41600 AND b<41700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41700 AND b<41800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41800 AND b<41900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=41900 AND b<42000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42000 AND b<42100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42100 AND b<42200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42200 AND b<42300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42300 AND b<42400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42400 AND b<42500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42500 AND b<42600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42600 AND b<42700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42700 AND b<42800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42800 AND b<42900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=42900 AND b<43000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43000 AND b<43100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43100 AND b<43200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43200 AND b<43300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43300 AND b<43400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43400 AND b<43500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43500 AND b<43600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43600 AND b<43700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43700 AND b<43800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43800 AND b<43900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=43900 AND b<44000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44000 AND b<44100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44100 AND b<44200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44200 AND b<44300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44300 AND b<44400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44400 AND b<44500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44500 AND b<44600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44600 AND b<44700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44700 AND b<44800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44800 AND b<44900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=44900 AND b<45000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45000 AND b<45100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45100 AND b<45200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45200 AND b<45300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45300 AND b<45400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45400 AND b<45500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45500 AND b<45600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45600 AND b<45700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45700 AND b<45800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45800 AND b<45900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=45900 AND b<46000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46000 AND b<46100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46100 AND b<46200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46200 AND b<46300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46300 AND b<46400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46400 AND b<46500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46500 AND b<46600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46600 AND b<46700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46700 AND b<46800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46800 AND b<46900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=46900 AND b<47000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47000 AND b<47100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47100 AND b<47200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47200 AND b<47300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47300 AND b<47400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47400 AND b<47500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47500 AND b<47600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47600 AND b<47700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47700 AND b<47800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47800 AND b<47900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=47900 AND b<48000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48000 AND b<48100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48100 AND b<48200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48200 AND b<48300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48300 AND b<48400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48400 AND b<48500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48500 AND b<48600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48600 AND b<48700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48700 AND b<48800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48800 AND b<48900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=48900 AND b<49000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49000 AND b<49100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49100 AND b<49200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49200 AND b<49300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49300 AND b<49400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49400 AND b<49500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49500 AND b<49600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49600 AND b<49700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49700 AND b<49800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49800 AND b<49900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=49900 AND b<50000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50000 AND b<50100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50100 AND b<50200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50200 AND b<50300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50300 AND b<50400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50400 AND b<50500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50500 AND b<50600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50600 AND b<50700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50700 AND b<50800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50800 AND b<50900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=50900 AND b<51000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51000 AND b<51100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51100 AND b<51200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51200 AND b<51300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51300 AND b<51400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51400 AND b<51500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51500 AND b<51600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51600 AND b<51700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51700 AND b<51800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51800 AND b<51900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=51900 AND b<52000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52000 AND b<52100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52100 AND b<52200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52200 AND b<52300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52300 AND b<52400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52400 AND b<52500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52500 AND b<52600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52600 AND b<52700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52700 AND b<52800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52800 AND b<52900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=52900 AND b<53000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53000 AND b<53100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53100 AND b<53200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53200 AND b<53300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53300 AND b<53400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53400 AND b<53500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53500 AND b<53600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53600 AND b<53700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53700 AND b<53800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53800 AND b<53900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=53900 AND b<54000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54000 AND b<54100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54100 AND b<54200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54200 AND b<54300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54300 AND b<54400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54400 AND b<54500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54500 AND b<54600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54600 AND b<54700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54700 AND b<54800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54800 AND b<54900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=54900 AND b<55000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55000 AND b<55100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55100 AND b<55200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55200 AND b<55300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55300 AND b<55400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55400 AND b<55500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55500 AND b<55600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55600 AND b<55700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55700 AND b<55800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55800 AND b<55900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=55900 AND b<56000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56000 AND b<56100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56100 AND b<56200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56200 AND b<56300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56300 AND b<56400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56400 AND b<56500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56500 AND b<56600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56600 AND b<56700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56700 AND b<56800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56800 AND b<56900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=56900 AND b<57000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57000 AND b<57100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57100 AND b<57200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57200 AND b<57300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57300 AND b<57400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57400 AND b<57500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57500 AND b<57600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57600 AND b<57700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57700 AND b<57800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57800 AND b<57900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=57900 AND b<58000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58000 AND b<58100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58100 AND b<58200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58200 AND b<58300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58300 AND b<58400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58400 AND b<58500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58500 AND b<58600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58600 AND b<58700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58700 AND b<58800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58800 AND b<58900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=58900 AND b<59000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59000 AND b<59100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59100 AND b<59200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59200 AND b<59300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59300 AND b<59400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59400 AND b<59500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59500 AND b<59600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59600 AND b<59700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59700 AND b<59800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59800 AND b<59900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=59900 AND b<60000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60000 AND b<60100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60100 AND b<60200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60200 AND b<60300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60300 AND b<60400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60400 AND b<60500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60500 AND b<60600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60600 AND b<60700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60700 AND b<60800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60800 AND b<60900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=60900 AND b<61000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61000 AND b<61100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61100 AND b<61200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61200 AND b<61300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61300 AND b<61400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61400 AND b<61500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61500 AND b<61600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61600 AND b<61700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61700 AND b<61800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61800 AND b<61900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=61900 AND b<62000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62000 AND b<62100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62100 AND b<62200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62200 AND b<62300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62300 AND b<62400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62400 AND b<62500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62500 AND b<62600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62600 AND b<62700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62700 AND b<62800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62800 AND b<62900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=62900 AND b<63000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63000 AND b<63100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63100 AND b<63200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63200 AND b<63300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63300 AND b<63400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63400 AND b<63500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63500 AND b<63600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63600 AND b<63700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63700 AND b<63800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63800 AND b<63900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=63900 AND b<64000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64000 AND b<64100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64100 AND b<64200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64200 AND b<64300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64300 AND b<64400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64400 AND b<64500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64500 AND b<64600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64600 AND b<64700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64700 AND b<64800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64800 AND b<64900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=64900 AND b<65000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65000 AND b<65100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65100 AND b<65200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65200 AND b<65300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65300 AND b<65400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65400 AND b<65500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65500 AND b<65600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65600 AND b<65700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65700 AND b<65800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65800 AND b<65900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=65900 AND b<66000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66000 AND b<66100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66100 AND b<66200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66200 AND b<66300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66300 AND b<66400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66400 AND b<66500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66500 AND b<66600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66600 AND b<66700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66700 AND b<66800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66800 AND b<66900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=66900 AND b<67000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67000 AND b<67100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67100 AND b<67200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67200 AND b<67300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67300 AND b<67400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67400 AND b<67500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67500 AND b<67600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67600 AND b<67700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67700 AND b<67800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67800 AND b<67900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=67900 AND b<68000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68000 AND b<68100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68100 AND b<68200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68200 AND b<68300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68300 AND b<68400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68400 AND b<68500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68500 AND b<68600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68600 AND b<68700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68700 AND b<68800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68800 AND b<68900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=68900 AND b<69000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69000 AND b<69100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69100 AND b<69200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69200 AND b<69300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69300 AND b<69400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69400 AND b<69500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69500 AND b<69600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69600 AND b<69700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69700 AND b<69800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69800 AND b<69900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=69900 AND b<70000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70000 AND b<70100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70100 AND b<70200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70200 AND b<70300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70300 AND b<70400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70400 AND b<70500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70500 AND b<70600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70600 AND b<70700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70700 AND b<70800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70800 AND b<70900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=70900 AND b<71000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71000 AND b<71100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71100 AND b<71200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71200 AND b<71300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71300 AND b<71400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71400 AND b<71500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71500 AND b<71600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71600 AND b<71700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71700 AND b<71800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71800 AND b<71900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=71900 AND b<72000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72000 AND b<72100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72100 AND b<72200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72200 AND b<72300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72300 AND b<72400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72400 AND b<72500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72500 AND b<72600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72600 AND b<72700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72700 AND b<72800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72800 AND b<72900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=72900 AND b<73000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73000 AND b<73100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73100 AND b<73200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73200 AND b<73300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73300 AND b<73400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73400 AND b<73500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73500 AND b<73600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73600 AND b<73700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73700 AND b<73800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73800 AND b<73900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=73900 AND b<74000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74000 AND b<74100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74100 AND b<74200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74200 AND b<74300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74300 AND b<74400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74400 AND b<74500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74500 AND b<74600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74600 AND b<74700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74700 AND b<74800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74800 AND b<74900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=74900 AND b<75000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75000 AND b<75100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75100 AND b<75200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75200 AND b<75300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75300 AND b<75400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75400 AND b<75500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75500 AND b<75600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75600 AND b<75700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75700 AND b<75800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75800 AND b<75900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=75900 AND b<76000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76000 AND b<76100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76100 AND b<76200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76200 AND b<76300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76300 AND b<76400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76400 AND b<76500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76500 AND b<76600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76600 AND b<76700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76700 AND b<76800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76800 AND b<76900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=76900 AND b<77000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77000 AND b<77100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77100 AND b<77200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77200 AND b<77300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77300 AND b<77400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77400 AND b<77500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77500 AND b<77600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77600 AND b<77700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77700 AND b<77800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77800 AND b<77900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=77900 AND b<78000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78000 AND b<78100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78100 AND b<78200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78200 AND b<78300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78300 AND b<78400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78400 AND b<78500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78500 AND b<78600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78600 AND b<78700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78700 AND b<78800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78800 AND b<78900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=78900 AND b<79000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79000 AND b<79100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79100 AND b<79200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79200 AND b<79300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79300 AND b<79400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79400 AND b<79500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79500 AND b<79600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79600 AND b<79700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79700 AND b<79800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79800 AND b<79900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=79900 AND b<80000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80000 AND b<80100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80100 AND b<80200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80200 AND b<80300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80300 AND b<80400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80400 AND b<80500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80500 AND b<80600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80600 AND b<80700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80700 AND b<80800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80800 AND b<80900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=80900 AND b<81000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81000 AND b<81100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81100 AND b<81200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81200 AND b<81300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81300 AND b<81400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81400 AND b<81500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81500 AND b<81600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81600 AND b<81700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81700 AND b<81800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81800 AND b<81900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=81900 AND b<82000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82000 AND b<82100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82100 AND b<82200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82200 AND b<82300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82300 AND b<82400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82400 AND b<82500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82500 AND b<82600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82600 AND b<82700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82700 AND b<82800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82800 AND b<82900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=82900 AND b<83000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83000 AND b<83100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83100 AND b<83200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83200 AND b<83300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83300 AND b<83400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83400 AND b<83500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83500 AND b<83600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83600 AND b<83700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83700 AND b<83800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83800 AND b<83900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=83900 AND b<84000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84000 AND b<84100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84100 AND b<84200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84200 AND b<84300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84300 AND b<84400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84400 AND b<84500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84500 AND b<84600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84600 AND b<84700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84700 AND b<84800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84800 AND b<84900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=84900 AND b<85000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85000 AND b<85100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85100 AND b<85200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85200 AND b<85300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85300 AND b<85400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85400 AND b<85500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85500 AND b<85600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85600 AND b<85700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85700 AND b<85800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85800 AND b<85900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=85900 AND b<86000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86000 AND b<86100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86100 AND b<86200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86200 AND b<86300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86300 AND b<86400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86400 AND b<86500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86500 AND b<86600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86600 AND b<86700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86700 AND b<86800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86800 AND b<86900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=86900 AND b<87000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87000 AND b<87100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87100 AND b<87200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87200 AND b<87300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87300 AND b<87400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87400 AND b<87500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87500 AND b<87600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87600 AND b<87700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87700 AND b<87800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87800 AND b<87900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=87900 AND b<88000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88000 AND b<88100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88100 AND b<88200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88200 AND b<88300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88300 AND b<88400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88400 AND b<88500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88500 AND b<88600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88600 AND b<88700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88700 AND b<88800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88800 AND b<88900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=88900 AND b<89000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89000 AND b<89100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89100 AND b<89200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89200 AND b<89300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89300 AND b<89400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89400 AND b<89500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89500 AND b<89600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89600 AND b<89700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89700 AND b<89800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89800 AND b<89900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=89900 AND b<90000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90000 AND b<90100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90100 AND b<90200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90200 AND b<90300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90300 AND b<90400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90400 AND b<90500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90500 AND b<90600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90600 AND b<90700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90700 AND b<90800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90800 AND b<90900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=90900 AND b<91000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91000 AND b<91100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91100 AND b<91200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91200 AND b<91300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91300 AND b<91400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91400 AND b<91500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91500 AND b<91600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91600 AND b<91700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91700 AND b<91800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91800 AND b<91900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=91900 AND b<92000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92000 AND b<92100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92100 AND b<92200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92200 AND b<92300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92300 AND b<92400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92400 AND b<92500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92500 AND b<92600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92600 AND b<92700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92700 AND b<92800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92800 AND b<92900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=92900 AND b<93000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93000 AND b<93100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93100 AND b<93200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93200 AND b<93300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93300 AND b<93400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93400 AND b<93500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93500 AND b<93600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93600 AND b<93700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93700 AND b<93800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93800 AND b<93900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=93900 AND b<94000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94000 AND b<94100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94100 AND b<94200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94200 AND b<94300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94300 AND b<94400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94400 AND b<94500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94500 AND b<94600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94600 AND b<94700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94700 AND b<94800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94800 AND b<94900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=94900 AND b<95000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95000 AND b<95100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95100 AND b<95200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95200 AND b<95300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95300 AND b<95400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95400 AND b<95500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95500 AND b<95600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95600 AND b<95700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95700 AND b<95800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95800 AND b<95900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=95900 AND b<96000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96000 AND b<96100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96100 AND b<96200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96200 AND b<96300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96300 AND b<96400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96400 AND b<96500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96500 AND b<96600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96600 AND b<96700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96700 AND b<96800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96800 AND b<96900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=96900 AND b<97000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97000 AND b<97100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97100 AND b<97200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97200 AND b<97300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97300 AND b<97400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97400 AND b<97500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97500 AND b<97600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97600 AND b<97700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97700 AND b<97800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97800 AND b<97900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=97900 AND b<98000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98000 AND b<98100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98100 AND b<98200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98200 AND b<98300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98300 AND b<98400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98400 AND b<98500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98500 AND b<98600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98600 AND b<98700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98700 AND b<98800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98800 AND b<98900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=98900 AND b<99000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99000 AND b<99100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99100 AND b<99200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99200 AND b<99300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99300 AND b<99400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99400 AND b<99500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99500 AND b<99600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99600 AND b<99700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99700 AND b<99800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99800 AND b<99900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=99900 AND b<100000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100000 AND b<100100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100100 AND b<100200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100200 AND b<100300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100300 AND b<100400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100400 AND b<100500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100500 AND b<100600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100600 AND b<100700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100700 AND b<100800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100800 AND b<100900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=100900 AND b<101000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101000 AND b<101100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101100 AND b<101200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101200 AND b<101300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101300 AND b<101400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101400 AND b<101500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101500 AND b<101600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101600 AND b<101700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101700 AND b<101800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101800 AND b<101900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=101900 AND b<102000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102000 AND b<102100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102100 AND b<102200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102200 AND b<102300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102300 AND b<102400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102400 AND b<102500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102500 AND b<102600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102600 AND b<102700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102700 AND b<102800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102800 AND b<102900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=102900 AND b<103000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103000 AND b<103100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103100 AND b<103200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103200 AND b<103300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103300 AND b<103400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103400 AND b<103500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103500 AND b<103600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103600 AND b<103700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103700 AND b<103800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103800 AND b<103900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=103900 AND b<104000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104000 AND b<104100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104100 AND b<104200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104200 AND b<104300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104300 AND b<104400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104400 AND b<104500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104500 AND b<104600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104600 AND b<104700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104700 AND b<104800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104800 AND b<104900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=104900 AND b<105000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105000 AND b<105100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105100 AND b<105200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105200 AND b<105300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105300 AND b<105400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105400 AND b<105500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105500 AND b<105600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105600 AND b<105700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105700 AND b<105800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105800 AND b<105900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=105900 AND b<106000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106000 AND b<106100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106100 AND b<106200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106200 AND b<106300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106300 AND b<106400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106400 AND b<106500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106500 AND b<106600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106600 AND b<106700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106700 AND b<106800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106800 AND b<106900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=106900 AND b<107000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107000 AND b<107100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107100 AND b<107200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107200 AND b<107300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107300 AND b<107400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107400 AND b<107500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107500 AND b<107600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107600 AND b<107700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107700 AND b<107800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107800 AND b<107900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=107900 AND b<108000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108000 AND b<108100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108100 AND b<108200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108200 AND b<108300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108300 AND b<108400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108400 AND b<108500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108500 AND b<108600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108600 AND b<108700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108700 AND b<108800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108800 AND b<108900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=108900 AND b<109000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109000 AND b<109100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109100 AND b<109200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109200 AND b<109300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109300 AND b<109400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109400 AND b<109500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109500 AND b<109600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109600 AND b<109700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109700 AND b<109800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109800 AND b<109900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=109900 AND b<110000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110000 AND b<110100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110100 AND b<110200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110200 AND b<110300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110300 AND b<110400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110400 AND b<110500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110500 AND b<110600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110600 AND b<110700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110700 AND b<110800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110800 AND b<110900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=110900 AND b<111000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111000 AND b<111100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111100 AND b<111200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111200 AND b<111300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111300 AND b<111400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111400 AND b<111500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111500 AND b<111600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111600 AND b<111700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111700 AND b<111800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111800 AND b<111900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=111900 AND b<112000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112000 AND b<112100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112100 AND b<112200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112200 AND b<112300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112300 AND b<112400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112400 AND b<112500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112500 AND b<112600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112600 AND b<112700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112700 AND b<112800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112800 AND b<112900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=112900 AND b<113000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113000 AND b<113100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113100 AND b<113200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113200 AND b<113300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113300 AND b<113400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113400 AND b<113500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113500 AND b<113600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113600 AND b<113700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113700 AND b<113800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113800 AND b<113900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=113900 AND b<114000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114000 AND b<114100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114100 AND b<114200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114200 AND b<114300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114300 AND b<114400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114400 AND b<114500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114500 AND b<114600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114600 AND b<114700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114700 AND b<114800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114800 AND b<114900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=114900 AND b<115000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115000 AND b<115100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115100 AND b<115200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115200 AND b<115300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115300 AND b<115400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115400 AND b<115500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115500 AND b<115600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115600 AND b<115700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115700 AND b<115800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115800 AND b<115900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=115900 AND b<116000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116000 AND b<116100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116100 AND b<116200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116200 AND b<116300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116300 AND b<116400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116400 AND b<116500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116500 AND b<116600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116600 AND b<116700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116700 AND b<116800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116800 AND b<116900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=116900 AND b<117000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117000 AND b<117100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117100 AND b<117200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117200 AND b<117300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117300 AND b<117400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117400 AND b<117500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117500 AND b<117600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117600 AND b<117700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117700 AND b<117800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117800 AND b<117900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=117900 AND b<118000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118000 AND b<118100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118100 AND b<118200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118200 AND b<118300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118300 AND b<118400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118400 AND b<118500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118500 AND b<118600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118600 AND b<118700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118700 AND b<118800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118800 AND b<118900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=118900 AND b<119000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119000 AND b<119100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119100 AND b<119200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119200 AND b<119300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119300 AND b<119400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119400 AND b<119500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119500 AND b<119600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119600 AND b<119700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119700 AND b<119800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119800 AND b<119900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=119900 AND b<120000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120000 AND b<120100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120100 AND b<120200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120200 AND b<120300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120300 AND b<120400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120400 AND b<120500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120500 AND b<120600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120600 AND b<120700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120700 AND b<120800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120800 AND b<120900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=120900 AND b<121000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121000 AND b<121100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121100 AND b<121200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121200 AND b<121300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121300 AND b<121400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121400 AND b<121500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121500 AND b<121600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121600 AND b<121700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121700 AND b<121800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121800 AND b<121900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=121900 AND b<122000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122000 AND b<122100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122100 AND b<122200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122200 AND b<122300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122300 AND b<122400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122400 AND b<122500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122500 AND b<122600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122600 AND b<122700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122700 AND b<122800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122800 AND b<122900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=122900 AND b<123000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123000 AND b<123100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123100 AND b<123200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123200 AND b<123300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123300 AND b<123400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123400 AND b<123500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123500 AND b<123600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123600 AND b<123700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123700 AND b<123800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123800 AND b<123900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=123900 AND b<124000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124000 AND b<124100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124100 AND b<124200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124200 AND b<124300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124300 AND b<124400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124400 AND b<124500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124500 AND b<124600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124600 AND b<124700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124700 AND b<124800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124800 AND b<124900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=124900 AND b<125000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125000 AND b<125100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125100 AND b<125200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125200 AND b<125300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125300 AND b<125400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125400 AND b<125500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125500 AND b<125600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125600 AND b<125700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125700 AND b<125800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125800 AND b<125900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=125900 AND b<126000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126000 AND b<126100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126100 AND b<126200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126200 AND b<126300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126300 AND b<126400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126400 AND b<126500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126500 AND b<126600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126600 AND b<126700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126700 AND b<126800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126800 AND b<126900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=126900 AND b<127000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127000 AND b<127100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127100 AND b<127200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127200 AND b<127300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127300 AND b<127400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127400 AND b<127500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127500 AND b<127600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127600 AND b<127700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127700 AND b<127800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127800 AND b<127900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=127900 AND b<128000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128000 AND b<128100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128100 AND b<128200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128200 AND b<128300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128300 AND b<128400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128400 AND b<128500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128500 AND b<128600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128600 AND b<128700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128700 AND b<128800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128800 AND b<128900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=128900 AND b<129000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129000 AND b<129100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129100 AND b<129200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129200 AND b<129300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129300 AND b<129400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129400 AND b<129500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129500 AND b<129600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129600 AND b<129700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129700 AND b<129800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129800 AND b<129900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=129900 AND b<130000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130000 AND b<130100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130100 AND b<130200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130200 AND b<130300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130300 AND b<130400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130400 AND b<130500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130500 AND b<130600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130600 AND b<130700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130700 AND b<130800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130800 AND b<130900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=130900 AND b<131000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131000 AND b<131100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131100 AND b<131200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131200 AND b<131300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131300 AND b<131400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131400 AND b<131500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131500 AND b<131600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131600 AND b<131700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131700 AND b<131800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131800 AND b<131900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=131900 AND b<132000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132000 AND b<132100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132100 AND b<132200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132200 AND b<132300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132300 AND b<132400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132400 AND b<132500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132500 AND b<132600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132600 AND b<132700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132700 AND b<132800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132800 AND b<132900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=132900 AND b<133000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133000 AND b<133100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133100 AND b<133200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133200 AND b<133300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133300 AND b<133400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133400 AND b<133500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133500 AND b<133600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133600 AND b<133700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133700 AND b<133800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133800 AND b<133900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=133900 AND b<134000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134000 AND b<134100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134100 AND b<134200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134200 AND b<134300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134300 AND b<134400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134400 AND b<134500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134500 AND b<134600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134600 AND b<134700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134700 AND b<134800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134800 AND b<134900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=134900 AND b<135000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135000 AND b<135100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135100 AND b<135200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135200 AND b<135300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135300 AND b<135400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135400 AND b<135500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135500 AND b<135600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135600 AND b<135700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135700 AND b<135800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135800 AND b<135900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=135900 AND b<136000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136000 AND b<136100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136100 AND b<136200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136200 AND b<136300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136300 AND b<136400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136400 AND b<136500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136500 AND b<136600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136600 AND b<136700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136700 AND b<136800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136800 AND b<136900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=136900 AND b<137000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137000 AND b<137100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137100 AND b<137200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137200 AND b<137300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137300 AND b<137400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137400 AND b<137500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137500 AND b<137600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137600 AND b<137700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137700 AND b<137800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137800 AND b<137900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=137900 AND b<138000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138000 AND b<138100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138100 AND b<138200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138200 AND b<138300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138300 AND b<138400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138400 AND b<138500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138500 AND b<138600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138600 AND b<138700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138700 AND b<138800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138800 AND b<138900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=138900 AND b<139000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139000 AND b<139100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139100 AND b<139200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139200 AND b<139300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139300 AND b<139400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139400 AND b<139500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139500 AND b<139600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139600 AND b<139700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139700 AND b<139800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139800 AND b<139900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=139900 AND b<140000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140000 AND b<140100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140100 AND b<140200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140200 AND b<140300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140300 AND b<140400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140400 AND b<140500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140500 AND b<140600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140600 AND b<140700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140700 AND b<140800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140800 AND b<140900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=140900 AND b<141000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141000 AND b<141100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141100 AND b<141200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141200 AND b<141300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141300 AND b<141400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141400 AND b<141500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141500 AND b<141600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141600 AND b<141700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141700 AND b<141800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141800 AND b<141900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=141900 AND b<142000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142000 AND b<142100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142100 AND b<142200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142200 AND b<142300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142300 AND b<142400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142400 AND b<142500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142500 AND b<142600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142600 AND b<142700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142700 AND b<142800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142800 AND b<142900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=142900 AND b<143000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143000 AND b<143100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143100 AND b<143200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143200 AND b<143300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143300 AND b<143400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143400 AND b<143500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143500 AND b<143600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143600 AND b<143700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143700 AND b<143800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143800 AND b<143900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=143900 AND b<144000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144000 AND b<144100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144100 AND b<144200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144200 AND b<144300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144300 AND b<144400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144400 AND b<144500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144500 AND b<144600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144600 AND b<144700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144700 AND b<144800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144800 AND b<144900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=144900 AND b<145000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145000 AND b<145100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145100 AND b<145200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145200 AND b<145300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145300 AND b<145400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145400 AND b<145500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145500 AND b<145600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145600 AND b<145700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145700 AND b<145800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145800 AND b<145900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=145900 AND b<146000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146000 AND b<146100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146100 AND b<146200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146200 AND b<146300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146300 AND b<146400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146400 AND b<146500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146500 AND b<146600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146600 AND b<146700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146700 AND b<146800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146800 AND b<146900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=146900 AND b<147000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147000 AND b<147100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147100 AND b<147200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147200 AND b<147300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147300 AND b<147400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147400 AND b<147500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147500 AND b<147600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147600 AND b<147700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147700 AND b<147800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147800 AND b<147900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=147900 AND b<148000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148000 AND b<148100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148100 AND b<148200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148200 AND b<148300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148300 AND b<148400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148400 AND b<148500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148500 AND b<148600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148600 AND b<148700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148700 AND b<148800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148800 AND b<148900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=148900 AND b<149000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149000 AND b<149100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149100 AND b<149200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149200 AND b<149300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149300 AND b<149400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149400 AND b<149500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149500 AND b<149600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149600 AND b<149700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149700 AND b<149800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149800 AND b<149900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=149900 AND b<150000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150000 AND b<150100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150100 AND b<150200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150200 AND b<150300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150300 AND b<150400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150400 AND b<150500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150500 AND b<150600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150600 AND b<150700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150700 AND b<150800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150800 AND b<150900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=150900 AND b<151000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151000 AND b<151100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151100 AND b<151200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151200 AND b<151300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151300 AND b<151400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151400 AND b<151500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151500 AND b<151600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151600 AND b<151700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151700 AND b<151800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151800 AND b<151900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=151900 AND b<152000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152000 AND b<152100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152100 AND b<152200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152200 AND b<152300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152300 AND b<152400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152400 AND b<152500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152500 AND b<152600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152600 AND b<152700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152700 AND b<152800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152800 AND b<152900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=152900 AND b<153000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153000 AND b<153100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153100 AND b<153200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153200 AND b<153300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153300 AND b<153400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153400 AND b<153500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153500 AND b<153600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153600 AND b<153700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153700 AND b<153800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153800 AND b<153900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=153900 AND b<154000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154000 AND b<154100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154100 AND b<154200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154200 AND b<154300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154300 AND b<154400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154400 AND b<154500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154500 AND b<154600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154600 AND b<154700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154700 AND b<154800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154800 AND b<154900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=154900 AND b<155000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155000 AND b<155100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155100 AND b<155200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155200 AND b<155300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155300 AND b<155400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155400 AND b<155500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155500 AND b<155600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155600 AND b<155700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155700 AND b<155800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155800 AND b<155900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=155900 AND b<156000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156000 AND b<156100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156100 AND b<156200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156200 AND b<156300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156300 AND b<156400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156400 AND b<156500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156500 AND b<156600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156600 AND b<156700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156700 AND b<156800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156800 AND b<156900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=156900 AND b<157000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157000 AND b<157100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157100 AND b<157200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157200 AND b<157300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157300 AND b<157400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157400 AND b<157500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157500 AND b<157600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157600 AND b<157700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157700 AND b<157800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157800 AND b<157900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=157900 AND b<158000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158000 AND b<158100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158100 AND b<158200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158200 AND b<158300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158300 AND b<158400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158400 AND b<158500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158500 AND b<158600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158600 AND b<158700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158700 AND b<158800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158800 AND b<158900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=158900 AND b<159000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159000 AND b<159100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159100 AND b<159200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159200 AND b<159300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159300 AND b<159400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159400 AND b<159500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159500 AND b<159600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159600 AND b<159700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159700 AND b<159800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159800 AND b<159900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=159900 AND b<160000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160000 AND b<160100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160100 AND b<160200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160200 AND b<160300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160300 AND b<160400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160400 AND b<160500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160500 AND b<160600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160600 AND b<160700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160700 AND b<160800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160800 AND b<160900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=160900 AND b<161000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161000 AND b<161100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161100 AND b<161200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161200 AND b<161300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161300 AND b<161400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161400 AND b<161500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161500 AND b<161600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161600 AND b<161700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161700 AND b<161800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161800 AND b<161900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=161900 AND b<162000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162000 AND b<162100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162100 AND b<162200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162200 AND b<162300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162300 AND b<162400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162400 AND b<162500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162500 AND b<162600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162600 AND b<162700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162700 AND b<162800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162800 AND b<162900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=162900 AND b<163000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163000 AND b<163100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163100 AND b<163200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163200 AND b<163300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163300 AND b<163400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163400 AND b<163500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163500 AND b<163600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163600 AND b<163700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163700 AND b<163800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163800 AND b<163900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=163900 AND b<164000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164000 AND b<164100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164100 AND b<164200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164200 AND b<164300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164300 AND b<164400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164400 AND b<164500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164500 AND b<164600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164600 AND b<164700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164700 AND b<164800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164800 AND b<164900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=164900 AND b<165000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165000 AND b<165100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165100 AND b<165200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165200 AND b<165300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165300 AND b<165400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165400 AND b<165500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165500 AND b<165600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165600 AND b<165700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165700 AND b<165800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165800 AND b<165900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=165900 AND b<166000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166000 AND b<166100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166100 AND b<166200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166200 AND b<166300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166300 AND b<166400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166400 AND b<166500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166500 AND b<166600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166600 AND b<166700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166700 AND b<166800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166800 AND b<166900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=166900 AND b<167000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167000 AND b<167100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167100 AND b<167200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167200 AND b<167300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167300 AND b<167400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167400 AND b<167500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167500 AND b<167600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167600 AND b<167700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167700 AND b<167800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167800 AND b<167900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=167900 AND b<168000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168000 AND b<168100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168100 AND b<168200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168200 AND b<168300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168300 AND b<168400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168400 AND b<168500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168500 AND b<168600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168600 AND b<168700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168700 AND b<168800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168800 AND b<168900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=168900 AND b<169000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169000 AND b<169100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169100 AND b<169200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169200 AND b<169300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169300 AND b<169400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169400 AND b<169500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169500 AND b<169600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169600 AND b<169700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169700 AND b<169800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169800 AND b<169900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=169900 AND b<170000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170000 AND b<170100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170100 AND b<170200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170200 AND b<170300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170300 AND b<170400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170400 AND b<170500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170500 AND b<170600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170600 AND b<170700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170700 AND b<170800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170800 AND b<170900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=170900 AND b<171000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171000 AND b<171100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171100 AND b<171200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171200 AND b<171300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171300 AND b<171400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171400 AND b<171500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171500 AND b<171600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171600 AND b<171700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171700 AND b<171800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171800 AND b<171900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=171900 AND b<172000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172000 AND b<172100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172100 AND b<172200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172200 AND b<172300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172300 AND b<172400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172400 AND b<172500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172500 AND b<172600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172600 AND b<172700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172700 AND b<172800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172800 AND b<172900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=172900 AND b<173000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173000 AND b<173100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173100 AND b<173200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173200 AND b<173300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173300 AND b<173400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173400 AND b<173500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173500 AND b<173600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173600 AND b<173700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173700 AND b<173800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173800 AND b<173900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=173900 AND b<174000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174000 AND b<174100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174100 AND b<174200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174200 AND b<174300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174300 AND b<174400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174400 AND b<174500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174500 AND b<174600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174600 AND b<174700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174700 AND b<174800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174800 AND b<174900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=174900 AND b<175000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175000 AND b<175100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175100 AND b<175200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175200 AND b<175300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175300 AND b<175400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175400 AND b<175500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175500 AND b<175600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175600 AND b<175700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175700 AND b<175800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175800 AND b<175900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=175900 AND b<176000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176000 AND b<176100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176100 AND b<176200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176200 AND b<176300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176300 AND b<176400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176400 AND b<176500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176500 AND b<176600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176600 AND b<176700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176700 AND b<176800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176800 AND b<176900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=176900 AND b<177000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177000 AND b<177100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177100 AND b<177200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177200 AND b<177300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177300 AND b<177400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177400 AND b<177500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177500 AND b<177600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177600 AND b<177700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177700 AND b<177800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177800 AND b<177900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=177900 AND b<178000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178000 AND b<178100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178100 AND b<178200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178200 AND b<178300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178300 AND b<178400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178400 AND b<178500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178500 AND b<178600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178600 AND b<178700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178700 AND b<178800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178800 AND b<178900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=178900 AND b<179000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179000 AND b<179100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179100 AND b<179200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179200 AND b<179300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179300 AND b<179400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179400 AND b<179500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179500 AND b<179600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179600 AND b<179700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179700 AND b<179800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179800 AND b<179900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=179900 AND b<180000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180000 AND b<180100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180100 AND b<180200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180200 AND b<180300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180300 AND b<180400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180400 AND b<180500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180500 AND b<180600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180600 AND b<180700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180700 AND b<180800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180800 AND b<180900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=180900 AND b<181000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181000 AND b<181100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181100 AND b<181200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181200 AND b<181300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181300 AND b<181400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181400 AND b<181500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181500 AND b<181600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181600 AND b<181700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181700 AND b<181800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181800 AND b<181900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=181900 AND b<182000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182000 AND b<182100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182100 AND b<182200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182200 AND b<182300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182300 AND b<182400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182400 AND b<182500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182500 AND b<182600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182600 AND b<182700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182700 AND b<182800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182800 AND b<182900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=182900 AND b<183000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183000 AND b<183100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183100 AND b<183200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183200 AND b<183300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183300 AND b<183400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183400 AND b<183500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183500 AND b<183600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183600 AND b<183700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183700 AND b<183800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183800 AND b<183900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=183900 AND b<184000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184000 AND b<184100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184100 AND b<184200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184200 AND b<184300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184300 AND b<184400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184400 AND b<184500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184500 AND b<184600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184600 AND b<184700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184700 AND b<184800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184800 AND b<184900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=184900 AND b<185000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185000 AND b<185100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185100 AND b<185200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185200 AND b<185300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185300 AND b<185400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185400 AND b<185500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185500 AND b<185600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185600 AND b<185700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185700 AND b<185800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185800 AND b<185900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=185900 AND b<186000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186000 AND b<186100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186100 AND b<186200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186200 AND b<186300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186300 AND b<186400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186400 AND b<186500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186500 AND b<186600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186600 AND b<186700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186700 AND b<186800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186800 AND b<186900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=186900 AND b<187000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187000 AND b<187100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187100 AND b<187200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187200 AND b<187300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187300 AND b<187400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187400 AND b<187500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187500 AND b<187600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187600 AND b<187700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187700 AND b<187800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187800 AND b<187900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=187900 AND b<188000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188000 AND b<188100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188100 AND b<188200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188200 AND b<188300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188300 AND b<188400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188400 AND b<188500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188500 AND b<188600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188600 AND b<188700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188700 AND b<188800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188800 AND b<188900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=188900 AND b<189000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189000 AND b<189100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189100 AND b<189200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189200 AND b<189300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189300 AND b<189400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189400 AND b<189500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189500 AND b<189600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189600 AND b<189700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189700 AND b<189800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189800 AND b<189900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=189900 AND b<190000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190000 AND b<190100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190100 AND b<190200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190200 AND b<190300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190300 AND b<190400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190400 AND b<190500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190500 AND b<190600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190600 AND b<190700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190700 AND b<190800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190800 AND b<190900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=190900 AND b<191000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191000 AND b<191100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191100 AND b<191200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191200 AND b<191300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191300 AND b<191400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191400 AND b<191500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191500 AND b<191600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191600 AND b<191700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191700 AND b<191800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191800 AND b<191900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=191900 AND b<192000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192000 AND b<192100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192100 AND b<192200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192200 AND b<192300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192300 AND b<192400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192400 AND b<192500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192500 AND b<192600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192600 AND b<192700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192700 AND b<192800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192800 AND b<192900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=192900 AND b<193000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193000 AND b<193100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193100 AND b<193200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193200 AND b<193300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193300 AND b<193400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193400 AND b<193500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193500 AND b<193600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193600 AND b<193700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193700 AND b<193800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193800 AND b<193900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=193900 AND b<194000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194000 AND b<194100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194100 AND b<194200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194200 AND b<194300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194300 AND b<194400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194400 AND b<194500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194500 AND b<194600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194600 AND b<194700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194700 AND b<194800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194800 AND b<194900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=194900 AND b<195000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195000 AND b<195100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195100 AND b<195200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195200 AND b<195300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195300 AND b<195400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195400 AND b<195500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195500 AND b<195600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195600 AND b<195700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195700 AND b<195800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195800 AND b<195900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=195900 AND b<196000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196000 AND b<196100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196100 AND b<196200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196200 AND b<196300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196300 AND b<196400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196400 AND b<196500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196500 AND b<196600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196600 AND b<196700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196700 AND b<196800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196800 AND b<196900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=196900 AND b<197000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197000 AND b<197100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197100 AND b<197200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197200 AND b<197300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197300 AND b<197400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197400 AND b<197500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197500 AND b<197600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197600 AND b<197700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197700 AND b<197800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197800 AND b<197900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=197900 AND b<198000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198000 AND b<198100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198100 AND b<198200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198200 AND b<198300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198300 AND b<198400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198400 AND b<198500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198500 AND b<198600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198600 AND b<198700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198700 AND b<198800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198800 AND b<198900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=198900 AND b<199000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199000 AND b<199100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199100 AND b<199200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199200 AND b<199300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199300 AND b<199400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199400 AND b<199500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199500 AND b<199600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199600 AND b<199700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199700 AND b<199800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199800 AND b<199900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=199900 AND b<200000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200000 AND b<200100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200100 AND b<200200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200200 AND b<200300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200300 AND b<200400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200400 AND b<200500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200500 AND b<200600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200600 AND b<200700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200700 AND b<200800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200800 AND b<200900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=200900 AND b<201000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201000 AND b<201100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201100 AND b<201200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201200 AND b<201300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201300 AND b<201400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201400 AND b<201500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201500 AND b<201600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201600 AND b<201700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201700 AND b<201800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201800 AND b<201900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=201900 AND b<202000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202000 AND b<202100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202100 AND b<202200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202200 AND b<202300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202300 AND b<202400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202400 AND b<202500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202500 AND b<202600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202600 AND b<202700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202700 AND b<202800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202800 AND b<202900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=202900 AND b<203000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203000 AND b<203100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203100 AND b<203200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203200 AND b<203300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203300 AND b<203400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203400 AND b<203500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203500 AND b<203600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203600 AND b<203700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203700 AND b<203800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203800 AND b<203900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=203900 AND b<204000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204000 AND b<204100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204100 AND b<204200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204200 AND b<204300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204300 AND b<204400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204400 AND b<204500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204500 AND b<204600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204600 AND b<204700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204700 AND b<204800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204800 AND b<204900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=204900 AND b<205000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205000 AND b<205100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205100 AND b<205200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205200 AND b<205300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205300 AND b<205400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205400 AND b<205500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205500 AND b<205600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205600 AND b<205700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205700 AND b<205800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205800 AND b<205900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=205900 AND b<206000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206000 AND b<206100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206100 AND b<206200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206200 AND b<206300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206300 AND b<206400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206400 AND b<206500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206500 AND b<206600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206600 AND b<206700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206700 AND b<206800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206800 AND b<206900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=206900 AND b<207000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207000 AND b<207100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207100 AND b<207200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207200 AND b<207300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207300 AND b<207400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207400 AND b<207500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207500 AND b<207600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207600 AND b<207700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207700 AND b<207800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207800 AND b<207900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=207900 AND b<208000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208000 AND b<208100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208100 AND b<208200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208200 AND b<208300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208300 AND b<208400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208400 AND b<208500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208500 AND b<208600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208600 AND b<208700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208700 AND b<208800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208800 AND b<208900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=208900 AND b<209000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209000 AND b<209100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209100 AND b<209200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209200 AND b<209300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209300 AND b<209400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209400 AND b<209500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209500 AND b<209600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209600 AND b<209700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209700 AND b<209800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209800 AND b<209900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=209900 AND b<210000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210000 AND b<210100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210100 AND b<210200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210200 AND b<210300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210300 AND b<210400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210400 AND b<210500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210500 AND b<210600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210600 AND b<210700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210700 AND b<210800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210800 AND b<210900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=210900 AND b<211000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211000 AND b<211100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211100 AND b<211200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211200 AND b<211300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211300 AND b<211400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211400 AND b<211500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211500 AND b<211600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211600 AND b<211700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211700 AND b<211800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211800 AND b<211900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=211900 AND b<212000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212000 AND b<212100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212100 AND b<212200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212200 AND b<212300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212300 AND b<212400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212400 AND b<212500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212500 AND b<212600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212600 AND b<212700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212700 AND b<212800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212800 AND b<212900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=212900 AND b<213000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213000 AND b<213100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213100 AND b<213200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213200 AND b<213300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213300 AND b<213400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213400 AND b<213500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213500 AND b<213600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213600 AND b<213700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213700 AND b<213800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213800 AND b<213900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=213900 AND b<214000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214000 AND b<214100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214100 AND b<214200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214200 AND b<214300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214300 AND b<214400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214400 AND b<214500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214500 AND b<214600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214600 AND b<214700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214700 AND b<214800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214800 AND b<214900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=214900 AND b<215000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215000 AND b<215100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215100 AND b<215200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215200 AND b<215300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215300 AND b<215400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215400 AND b<215500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215500 AND b<215600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215600 AND b<215700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215700 AND b<215800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215800 AND b<215900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=215900 AND b<216000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216000 AND b<216100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216100 AND b<216200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216200 AND b<216300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216300 AND b<216400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216400 AND b<216500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216500 AND b<216600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216600 AND b<216700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216700 AND b<216800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216800 AND b<216900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=216900 AND b<217000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217000 AND b<217100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217100 AND b<217200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217200 AND b<217300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217300 AND b<217400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217400 AND b<217500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217500 AND b<217600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217600 AND b<217700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217700 AND b<217800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217800 AND b<217900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=217900 AND b<218000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218000 AND b<218100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218100 AND b<218200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218200 AND b<218300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218300 AND b<218400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218400 AND b<218500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218500 AND b<218600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218600 AND b<218700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218700 AND b<218800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218800 AND b<218900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=218900 AND b<219000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219000 AND b<219100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219100 AND b<219200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219200 AND b<219300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219300 AND b<219400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219400 AND b<219500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219500 AND b<219600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219600 AND b<219700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219700 AND b<219800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219800 AND b<219900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=219900 AND b<220000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220000 AND b<220100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220100 AND b<220200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220200 AND b<220300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220300 AND b<220400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220400 AND b<220500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220500 AND b<220600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220600 AND b<220700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220700 AND b<220800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220800 AND b<220900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=220900 AND b<221000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221000 AND b<221100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221100 AND b<221200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221200 AND b<221300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221300 AND b<221400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221400 AND b<221500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221500 AND b<221600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221600 AND b<221700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221700 AND b<221800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221800 AND b<221900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=221900 AND b<222000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222000 AND b<222100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222100 AND b<222200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222200 AND b<222300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222300 AND b<222400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222400 AND b<222500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222500 AND b<222600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222600 AND b<222700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222700 AND b<222800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222800 AND b<222900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=222900 AND b<223000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223000 AND b<223100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223100 AND b<223200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223200 AND b<223300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223300 AND b<223400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223400 AND b<223500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223500 AND b<223600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223600 AND b<223700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223700 AND b<223800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223800 AND b<223900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=223900 AND b<224000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224000 AND b<224100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224100 AND b<224200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224200 AND b<224300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224300 AND b<224400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224400 AND b<224500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224500 AND b<224600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224600 AND b<224700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224700 AND b<224800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224800 AND b<224900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=224900 AND b<225000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225000 AND b<225100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225100 AND b<225200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225200 AND b<225300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225300 AND b<225400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225400 AND b<225500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225500 AND b<225600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225600 AND b<225700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225700 AND b<225800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225800 AND b<225900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=225900 AND b<226000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226000 AND b<226100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226100 AND b<226200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226200 AND b<226300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226300 AND b<226400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226400 AND b<226500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226500 AND b<226600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226600 AND b<226700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226700 AND b<226800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226800 AND b<226900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=226900 AND b<227000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227000 AND b<227100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227100 AND b<227200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227200 AND b<227300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227300 AND b<227400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227400 AND b<227500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227500 AND b<227600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227600 AND b<227700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227700 AND b<227800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227800 AND b<227900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=227900 AND b<228000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228000 AND b<228100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228100 AND b<228200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228200 AND b<228300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228300 AND b<228400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228400 AND b<228500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228500 AND b<228600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228600 AND b<228700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228700 AND b<228800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228800 AND b<228900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=228900 AND b<229000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229000 AND b<229100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229100 AND b<229200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229200 AND b<229300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229300 AND b<229400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229400 AND b<229500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229500 AND b<229600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229600 AND b<229700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229700 AND b<229800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229800 AND b<229900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=229900 AND b<230000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230000 AND b<230100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230100 AND b<230200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230200 AND b<230300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230300 AND b<230400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230400 AND b<230500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230500 AND b<230600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230600 AND b<230700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230700 AND b<230800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230800 AND b<230900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=230900 AND b<231000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231000 AND b<231100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231100 AND b<231200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231200 AND b<231300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231300 AND b<231400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231400 AND b<231500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231500 AND b<231600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231600 AND b<231700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231700 AND b<231800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231800 AND b<231900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=231900 AND b<232000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232000 AND b<232100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232100 AND b<232200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232200 AND b<232300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232300 AND b<232400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232400 AND b<232500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232500 AND b<232600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232600 AND b<232700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232700 AND b<232800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232800 AND b<232900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=232900 AND b<233000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233000 AND b<233100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233100 AND b<233200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233200 AND b<233300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233300 AND b<233400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233400 AND b<233500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233500 AND b<233600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233600 AND b<233700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233700 AND b<233800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233800 AND b<233900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=233900 AND b<234000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234000 AND b<234100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234100 AND b<234200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234200 AND b<234300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234300 AND b<234400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234400 AND b<234500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234500 AND b<234600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234600 AND b<234700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234700 AND b<234800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234800 AND b<234900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=234900 AND b<235000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235000 AND b<235100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235100 AND b<235200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235200 AND b<235300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235300 AND b<235400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235400 AND b<235500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235500 AND b<235600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235600 AND b<235700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235700 AND b<235800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235800 AND b<235900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=235900 AND b<236000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236000 AND b<236100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236100 AND b<236200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236200 AND b<236300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236300 AND b<236400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236400 AND b<236500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236500 AND b<236600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236600 AND b<236700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236700 AND b<236800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236800 AND b<236900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=236900 AND b<237000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237000 AND b<237100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237100 AND b<237200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237200 AND b<237300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237300 AND b<237400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237400 AND b<237500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237500 AND b<237600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237600 AND b<237700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237700 AND b<237800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237800 AND b<237900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=237900 AND b<238000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238000 AND b<238100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238100 AND b<238200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238200 AND b<238300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238300 AND b<238400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238400 AND b<238500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238500 AND b<238600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238600 AND b<238700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238700 AND b<238800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238800 AND b<238900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=238900 AND b<239000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239000 AND b<239100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239100 AND b<239200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239200 AND b<239300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239300 AND b<239400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239400 AND b<239500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239500 AND b<239600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239600 AND b<239700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239700 AND b<239800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239800 AND b<239900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=239900 AND b<240000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240000 AND b<240100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240100 AND b<240200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240200 AND b<240300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240300 AND b<240400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240400 AND b<240500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240500 AND b<240600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240600 AND b<240700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240700 AND b<240800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240800 AND b<240900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=240900 AND b<241000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241000 AND b<241100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241100 AND b<241200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241200 AND b<241300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241300 AND b<241400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241400 AND b<241500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241500 AND b<241600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241600 AND b<241700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241700 AND b<241800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241800 AND b<241900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=241900 AND b<242000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242000 AND b<242100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242100 AND b<242200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242200 AND b<242300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242300 AND b<242400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242400 AND b<242500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242500 AND b<242600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242600 AND b<242700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242700 AND b<242800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242800 AND b<242900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=242900 AND b<243000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243000 AND b<243100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243100 AND b<243200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243200 AND b<243300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243300 AND b<243400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243400 AND b<243500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243500 AND b<243600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243600 AND b<243700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243700 AND b<243800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243800 AND b<243900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=243900 AND b<244000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244000 AND b<244100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244100 AND b<244200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244200 AND b<244300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244300 AND b<244400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244400 AND b<244500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244500 AND b<244600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244600 AND b<244700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244700 AND b<244800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244800 AND b<244900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=244900 AND b<245000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245000 AND b<245100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245100 AND b<245200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245200 AND b<245300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245300 AND b<245400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245400 AND b<245500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245500 AND b<245600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245600 AND b<245700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245700 AND b<245800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245800 AND b<245900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=245900 AND b<246000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246000 AND b<246100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246100 AND b<246200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246200 AND b<246300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246300 AND b<246400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246400 AND b<246500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246500 AND b<246600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246600 AND b<246700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246700 AND b<246800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246800 AND b<246900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=246900 AND b<247000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247000 AND b<247100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247100 AND b<247200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247200 AND b<247300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247300 AND b<247400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247400 AND b<247500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247500 AND b<247600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247600 AND b<247700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247700 AND b<247800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247800 AND b<247900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=247900 AND b<248000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248000 AND b<248100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248100 AND b<248200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248200 AND b<248300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248300 AND b<248400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248400 AND b<248500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248500 AND b<248600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248600 AND b<248700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248700 AND b<248800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248800 AND b<248900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=248900 AND b<249000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249000 AND b<249100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249100 AND b<249200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249200 AND b<249300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249300 AND b<249400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249400 AND b<249500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249500 AND b<249600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249600 AND b<249700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249700 AND b<249800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249800 AND b<249900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=249900 AND b<250000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250000 AND b<250100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250100 AND b<250200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250200 AND b<250300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250300 AND b<250400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250400 AND b<250500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250500 AND b<250600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250600 AND b<250700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250700 AND b<250800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250800 AND b<250900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=250900 AND b<251000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251000 AND b<251100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251100 AND b<251200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251200 AND b<251300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251300 AND b<251400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251400 AND b<251500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251500 AND b<251600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251600 AND b<251700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251700 AND b<251800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251800 AND b<251900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=251900 AND b<252000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252000 AND b<252100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252100 AND b<252200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252200 AND b<252300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252300 AND b<252400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252400 AND b<252500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252500 AND b<252600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252600 AND b<252700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252700 AND b<252800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252800 AND b<252900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=252900 AND b<253000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253000 AND b<253100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253100 AND b<253200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253200 AND b<253300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253300 AND b<253400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253400 AND b<253500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253500 AND b<253600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253600 AND b<253700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253700 AND b<253800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253800 AND b<253900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=253900 AND b<254000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254000 AND b<254100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254100 AND b<254200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254200 AND b<254300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254300 AND b<254400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254400 AND b<254500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254500 AND b<254600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254600 AND b<254700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254700 AND b<254800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254800 AND b<254900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=254900 AND b<255000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255000 AND b<255100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255100 AND b<255200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255200 AND b<255300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255300 AND b<255400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255400 AND b<255500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255500 AND b<255600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255600 AND b<255700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255700 AND b<255800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255800 AND b<255900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=255900 AND b<256000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256000 AND b<256100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256100 AND b<256200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256200 AND b<256300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256300 AND b<256400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256400 AND b<256500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256500 AND b<256600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256600 AND b<256700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256700 AND b<256800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256800 AND b<256900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=256900 AND b<257000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257000 AND b<257100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257100 AND b<257200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257200 AND b<257300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257300 AND b<257400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257400 AND b<257500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257500 AND b<257600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257600 AND b<257700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257700 AND b<257800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257800 AND b<257900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=257900 AND b<258000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258000 AND b<258100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258100 AND b<258200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258200 AND b<258300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258300 AND b<258400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258400 AND b<258500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258500 AND b<258600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258600 AND b<258700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258700 AND b<258800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258800 AND b<258900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=258900 AND b<259000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259000 AND b<259100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259100 AND b<259200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259200 AND b<259300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259300 AND b<259400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259400 AND b<259500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259500 AND b<259600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259600 AND b<259700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259700 AND b<259800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259800 AND b<259900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=259900 AND b<260000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260000 AND b<260100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260100 AND b<260200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260200 AND b<260300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260300 AND b<260400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260400 AND b<260500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260500 AND b<260600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260600 AND b<260700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260700 AND b<260800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260800 AND b<260900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=260900 AND b<261000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261000 AND b<261100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261100 AND b<261200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261200 AND b<261300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261300 AND b<261400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261400 AND b<261500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261500 AND b<261600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261600 AND b<261700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261700 AND b<261800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261800 AND b<261900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=261900 AND b<262000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262000 AND b<262100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262100 AND b<262200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262200 AND b<262300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262300 AND b<262400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262400 AND b<262500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262500 AND b<262600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262600 AND b<262700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262700 AND b<262800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262800 AND b<262900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=262900 AND b<263000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263000 AND b<263100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263100 AND b<263200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263200 AND b<263300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263300 AND b<263400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263400 AND b<263500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263500 AND b<263600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263600 AND b<263700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263700 AND b<263800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263800 AND b<263900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=263900 AND b<264000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264000 AND b<264100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264100 AND b<264200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264200 AND b<264300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264300 AND b<264400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264400 AND b<264500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264500 AND b<264600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264600 AND b<264700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264700 AND b<264800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264800 AND b<264900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=264900 AND b<265000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265000 AND b<265100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265100 AND b<265200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265200 AND b<265300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265300 AND b<265400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265400 AND b<265500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265500 AND b<265600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265600 AND b<265700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265700 AND b<265800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265800 AND b<265900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=265900 AND b<266000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266000 AND b<266100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266100 AND b<266200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266200 AND b<266300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266300 AND b<266400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266400 AND b<266500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266500 AND b<266600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266600 AND b<266700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266700 AND b<266800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266800 AND b<266900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=266900 AND b<267000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267000 AND b<267100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267100 AND b<267200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267200 AND b<267300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267300 AND b<267400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267400 AND b<267500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267500 AND b<267600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267600 AND b<267700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267700 AND b<267800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267800 AND b<267900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=267900 AND b<268000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268000 AND b<268100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268100 AND b<268200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268200 AND b<268300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268300 AND b<268400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268400 AND b<268500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268500 AND b<268600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268600 AND b<268700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268700 AND b<268800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268800 AND b<268900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=268900 AND b<269000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269000 AND b<269100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269100 AND b<269200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269200 AND b<269300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269300 AND b<269400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269400 AND b<269500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269500 AND b<269600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269600 AND b<269700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269700 AND b<269800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269800 AND b<269900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=269900 AND b<270000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270000 AND b<270100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270100 AND b<270200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270200 AND b<270300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270300 AND b<270400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270400 AND b<270500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270500 AND b<270600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270600 AND b<270700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270700 AND b<270800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270800 AND b<270900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=270900 AND b<271000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271000 AND b<271100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271100 AND b<271200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271200 AND b<271300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271300 AND b<271400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271400 AND b<271500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271500 AND b<271600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271600 AND b<271700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271700 AND b<271800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271800 AND b<271900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=271900 AND b<272000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272000 AND b<272100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272100 AND b<272200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272200 AND b<272300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272300 AND b<272400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272400 AND b<272500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272500 AND b<272600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272600 AND b<272700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272700 AND b<272800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272800 AND b<272900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=272900 AND b<273000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273000 AND b<273100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273100 AND b<273200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273200 AND b<273300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273300 AND b<273400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273400 AND b<273500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273500 AND b<273600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273600 AND b<273700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273700 AND b<273800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273800 AND b<273900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=273900 AND b<274000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274000 AND b<274100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274100 AND b<274200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274200 AND b<274300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274300 AND b<274400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274400 AND b<274500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274500 AND b<274600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274600 AND b<274700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274700 AND b<274800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274800 AND b<274900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=274900 AND b<275000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275000 AND b<275100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275100 AND b<275200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275200 AND b<275300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275300 AND b<275400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275400 AND b<275500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275500 AND b<275600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275600 AND b<275700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275700 AND b<275800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275800 AND b<275900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=275900 AND b<276000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276000 AND b<276100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276100 AND b<276200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276200 AND b<276300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276300 AND b<276400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276400 AND b<276500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276500 AND b<276600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276600 AND b<276700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276700 AND b<276800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276800 AND b<276900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=276900 AND b<277000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277000 AND b<277100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277100 AND b<277200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277200 AND b<277300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277300 AND b<277400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277400 AND b<277500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277500 AND b<277600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277600 AND b<277700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277700 AND b<277800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277800 AND b<277900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=277900 AND b<278000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278000 AND b<278100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278100 AND b<278200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278200 AND b<278300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278300 AND b<278400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278400 AND b<278500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278500 AND b<278600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278600 AND b<278700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278700 AND b<278800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278800 AND b<278900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=278900 AND b<279000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279000 AND b<279100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279100 AND b<279200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279200 AND b<279300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279300 AND b<279400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279400 AND b<279500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279500 AND b<279600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279600 AND b<279700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279700 AND b<279800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279800 AND b<279900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=279900 AND b<280000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280000 AND b<280100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280100 AND b<280200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280200 AND b<280300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280300 AND b<280400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280400 AND b<280500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280500 AND b<280600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280600 AND b<280700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280700 AND b<280800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280800 AND b<280900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=280900 AND b<281000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281000 AND b<281100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281100 AND b<281200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281200 AND b<281300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281300 AND b<281400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281400 AND b<281500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281500 AND b<281600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281600 AND b<281700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281700 AND b<281800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281800 AND b<281900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=281900 AND b<282000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282000 AND b<282100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282100 AND b<282200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282200 AND b<282300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282300 AND b<282400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282400 AND b<282500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282500 AND b<282600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282600 AND b<282700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282700 AND b<282800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282800 AND b<282900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=282900 AND b<283000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283000 AND b<283100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283100 AND b<283200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283200 AND b<283300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283300 AND b<283400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283400 AND b<283500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283500 AND b<283600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283600 AND b<283700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283700 AND b<283800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283800 AND b<283900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=283900 AND b<284000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284000 AND b<284100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284100 AND b<284200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284200 AND b<284300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284300 AND b<284400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284400 AND b<284500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284500 AND b<284600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284600 AND b<284700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284700 AND b<284800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284800 AND b<284900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=284900 AND b<285000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285000 AND b<285100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285100 AND b<285200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285200 AND b<285300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285300 AND b<285400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285400 AND b<285500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285500 AND b<285600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285600 AND b<285700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285700 AND b<285800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285800 AND b<285900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=285900 AND b<286000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286000 AND b<286100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286100 AND b<286200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286200 AND b<286300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286300 AND b<286400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286400 AND b<286500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286500 AND b<286600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286600 AND b<286700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286700 AND b<286800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286800 AND b<286900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=286900 AND b<287000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287000 AND b<287100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287100 AND b<287200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287200 AND b<287300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287300 AND b<287400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287400 AND b<287500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287500 AND b<287600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287600 AND b<287700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287700 AND b<287800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287800 AND b<287900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=287900 AND b<288000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288000 AND b<288100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288100 AND b<288200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288200 AND b<288300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288300 AND b<288400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288400 AND b<288500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288500 AND b<288600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288600 AND b<288700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288700 AND b<288800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288800 AND b<288900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=288900 AND b<289000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289000 AND b<289100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289100 AND b<289200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289200 AND b<289300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289300 AND b<289400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289400 AND b<289500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289500 AND b<289600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289600 AND b<289700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289700 AND b<289800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289800 AND b<289900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=289900 AND b<290000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290000 AND b<290100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290100 AND b<290200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290200 AND b<290300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290300 AND b<290400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290400 AND b<290500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290500 AND b<290600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290600 AND b<290700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290700 AND b<290800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290800 AND b<290900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=290900 AND b<291000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291000 AND b<291100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291100 AND b<291200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291200 AND b<291300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291300 AND b<291400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291400 AND b<291500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291500 AND b<291600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291600 AND b<291700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291700 AND b<291800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291800 AND b<291900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=291900 AND b<292000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292000 AND b<292100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292100 AND b<292200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292200 AND b<292300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292300 AND b<292400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292400 AND b<292500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292500 AND b<292600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292600 AND b<292700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292700 AND b<292800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292800 AND b<292900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=292900 AND b<293000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293000 AND b<293100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293100 AND b<293200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293200 AND b<293300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293300 AND b<293400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293400 AND b<293500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293500 AND b<293600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293600 AND b<293700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293700 AND b<293800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293800 AND b<293900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=293900 AND b<294000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294000 AND b<294100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294100 AND b<294200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294200 AND b<294300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294300 AND b<294400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294400 AND b<294500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294500 AND b<294600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294600 AND b<294700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294700 AND b<294800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294800 AND b<294900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=294900 AND b<295000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295000 AND b<295100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295100 AND b<295200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295200 AND b<295300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295300 AND b<295400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295400 AND b<295500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295500 AND b<295600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295600 AND b<295700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295700 AND b<295800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295800 AND b<295900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=295900 AND b<296000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296000 AND b<296100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296100 AND b<296200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296200 AND b<296300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296300 AND b<296400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296400 AND b<296500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296500 AND b<296600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296600 AND b<296700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296700 AND b<296800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296800 AND b<296900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=296900 AND b<297000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297000 AND b<297100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297100 AND b<297200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297200 AND b<297300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297300 AND b<297400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297400 AND b<297500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297500 AND b<297600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297600 AND b<297700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297700 AND b<297800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297800 AND b<297900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=297900 AND b<298000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298000 AND b<298100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298100 AND b<298200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298200 AND b<298300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298300 AND b<298400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298400 AND b<298500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298500 AND b<298600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298600 AND b<298700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298700 AND b<298800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298800 AND b<298900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=298900 AND b<299000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299000 AND b<299100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299100 AND b<299200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299200 AND b<299300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299300 AND b<299400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299400 AND b<299500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299500 AND b<299600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299600 AND b<299700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299700 AND b<299800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299800 AND b<299900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=299900 AND b<300000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300000 AND b<300100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300100 AND b<300200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300200 AND b<300300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300300 AND b<300400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300400 AND b<300500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300500 AND b<300600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300600 AND b<300700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300700 AND b<300800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300800 AND b<300900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=300900 AND b<301000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301000 AND b<301100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301100 AND b<301200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301200 AND b<301300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301300 AND b<301400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301400 AND b<301500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301500 AND b<301600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301600 AND b<301700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301700 AND b<301800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301800 AND b<301900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=301900 AND b<302000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302000 AND b<302100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302100 AND b<302200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302200 AND b<302300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302300 AND b<302400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302400 AND b<302500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302500 AND b<302600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302600 AND b<302700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302700 AND b<302800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302800 AND b<302900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=302900 AND b<303000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303000 AND b<303100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303100 AND b<303200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303200 AND b<303300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303300 AND b<303400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303400 AND b<303500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303500 AND b<303600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303600 AND b<303700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303700 AND b<303800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303800 AND b<303900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=303900 AND b<304000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304000 AND b<304100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304100 AND b<304200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304200 AND b<304300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304300 AND b<304400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304400 AND b<304500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304500 AND b<304600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304600 AND b<304700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304700 AND b<304800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304800 AND b<304900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=304900 AND b<305000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305000 AND b<305100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305100 AND b<305200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305200 AND b<305300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305300 AND b<305400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305400 AND b<305500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305500 AND b<305600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305600 AND b<305700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305700 AND b<305800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305800 AND b<305900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=305900 AND b<306000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306000 AND b<306100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306100 AND b<306200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306200 AND b<306300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306300 AND b<306400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306400 AND b<306500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306500 AND b<306600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306600 AND b<306700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306700 AND b<306800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306800 AND b<306900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=306900 AND b<307000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307000 AND b<307100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307100 AND b<307200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307200 AND b<307300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307300 AND b<307400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307400 AND b<307500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307500 AND b<307600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307600 AND b<307700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307700 AND b<307800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307800 AND b<307900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=307900 AND b<308000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308000 AND b<308100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308100 AND b<308200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308200 AND b<308300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308300 AND b<308400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308400 AND b<308500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308500 AND b<308600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308600 AND b<308700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308700 AND b<308800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308800 AND b<308900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=308900 AND b<309000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309000 AND b<309100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309100 AND b<309200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309200 AND b<309300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309300 AND b<309400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309400 AND b<309500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309500 AND b<309600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309600 AND b<309700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309700 AND b<309800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309800 AND b<309900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=309900 AND b<310000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310000 AND b<310100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310100 AND b<310200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310200 AND b<310300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310300 AND b<310400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310400 AND b<310500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310500 AND b<310600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310600 AND b<310700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310700 AND b<310800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310800 AND b<310900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=310900 AND b<311000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311000 AND b<311100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311100 AND b<311200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311200 AND b<311300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311300 AND b<311400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311400 AND b<311500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311500 AND b<311600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311600 AND b<311700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311700 AND b<311800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311800 AND b<311900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=311900 AND b<312000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312000 AND b<312100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312100 AND b<312200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312200 AND b<312300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312300 AND b<312400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312400 AND b<312500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312500 AND b<312600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312600 AND b<312700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312700 AND b<312800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312800 AND b<312900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=312900 AND b<313000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313000 AND b<313100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313100 AND b<313200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313200 AND b<313300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313300 AND b<313400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313400 AND b<313500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313500 AND b<313600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313600 AND b<313700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313700 AND b<313800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313800 AND b<313900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=313900 AND b<314000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314000 AND b<314100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314100 AND b<314200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314200 AND b<314300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314300 AND b<314400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314400 AND b<314500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314500 AND b<314600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314600 AND b<314700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314700 AND b<314800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314800 AND b<314900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=314900 AND b<315000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315000 AND b<315100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315100 AND b<315200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315200 AND b<315300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315300 AND b<315400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315400 AND b<315500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315500 AND b<315600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315600 AND b<315700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315700 AND b<315800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315800 AND b<315900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=315900 AND b<316000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316000 AND b<316100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316100 AND b<316200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316200 AND b<316300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316300 AND b<316400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316400 AND b<316500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316500 AND b<316600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316600 AND b<316700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316700 AND b<316800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316800 AND b<316900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=316900 AND b<317000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317000 AND b<317100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317100 AND b<317200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317200 AND b<317300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317300 AND b<317400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317400 AND b<317500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317500 AND b<317600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317600 AND b<317700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317700 AND b<317800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317800 AND b<317900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=317900 AND b<318000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318000 AND b<318100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318100 AND b<318200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318200 AND b<318300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318300 AND b<318400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318400 AND b<318500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318500 AND b<318600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318600 AND b<318700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318700 AND b<318800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318800 AND b<318900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=318900 AND b<319000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319000 AND b<319100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319100 AND b<319200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319200 AND b<319300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319300 AND b<319400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319400 AND b<319500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319500 AND b<319600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319600 AND b<319700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319700 AND b<319800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319800 AND b<319900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=319900 AND b<320000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320000 AND b<320100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320100 AND b<320200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320200 AND b<320300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320300 AND b<320400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320400 AND b<320500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320500 AND b<320600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320600 AND b<320700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320700 AND b<320800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320800 AND b<320900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=320900 AND b<321000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321000 AND b<321100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321100 AND b<321200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321200 AND b<321300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321300 AND b<321400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321400 AND b<321500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321500 AND b<321600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321600 AND b<321700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321700 AND b<321800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321800 AND b<321900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=321900 AND b<322000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322000 AND b<322100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322100 AND b<322200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322200 AND b<322300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322300 AND b<322400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322400 AND b<322500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322500 AND b<322600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322600 AND b<322700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322700 AND b<322800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322800 AND b<322900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=322900 AND b<323000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323000 AND b<323100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323100 AND b<323200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323200 AND b<323300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323300 AND b<323400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323400 AND b<323500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323500 AND b<323600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323600 AND b<323700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323700 AND b<323800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323800 AND b<323900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=323900 AND b<324000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324000 AND b<324100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324100 AND b<324200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324200 AND b<324300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324300 AND b<324400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324400 AND b<324500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324500 AND b<324600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324600 AND b<324700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324700 AND b<324800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324800 AND b<324900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=324900 AND b<325000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325000 AND b<325100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325100 AND b<325200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325200 AND b<325300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325300 AND b<325400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325400 AND b<325500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325500 AND b<325600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325600 AND b<325700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325700 AND b<325800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325800 AND b<325900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=325900 AND b<326000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326000 AND b<326100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326100 AND b<326200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326200 AND b<326300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326300 AND b<326400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326400 AND b<326500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326500 AND b<326600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326600 AND b<326700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326700 AND b<326800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326800 AND b<326900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=326900 AND b<327000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327000 AND b<327100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327100 AND b<327200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327200 AND b<327300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327300 AND b<327400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327400 AND b<327500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327500 AND b<327600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327600 AND b<327700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327700 AND b<327800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327800 AND b<327900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=327900 AND b<328000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328000 AND b<328100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328100 AND b<328200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328200 AND b<328300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328300 AND b<328400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328400 AND b<328500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328500 AND b<328600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328600 AND b<328700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328700 AND b<328800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328800 AND b<328900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=328900 AND b<329000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329000 AND b<329100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329100 AND b<329200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329200 AND b<329300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329300 AND b<329400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329400 AND b<329500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329500 AND b<329600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329600 AND b<329700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329700 AND b<329800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329800 AND b<329900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=329900 AND b<330000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330000 AND b<330100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330100 AND b<330200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330200 AND b<330300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330300 AND b<330400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330400 AND b<330500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330500 AND b<330600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330600 AND b<330700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330700 AND b<330800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330800 AND b<330900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=330900 AND b<331000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331000 AND b<331100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331100 AND b<331200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331200 AND b<331300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331300 AND b<331400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331400 AND b<331500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331500 AND b<331600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331600 AND b<331700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331700 AND b<331800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331800 AND b<331900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=331900 AND b<332000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332000 AND b<332100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332100 AND b<332200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332200 AND b<332300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332300 AND b<332400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332400 AND b<332500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332500 AND b<332600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332600 AND b<332700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332700 AND b<332800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332800 AND b<332900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=332900 AND b<333000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333000 AND b<333100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333100 AND b<333200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333200 AND b<333300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333300 AND b<333400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333400 AND b<333500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333500 AND b<333600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333600 AND b<333700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333700 AND b<333800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333800 AND b<333900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=333900 AND b<334000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334000 AND b<334100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334100 AND b<334200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334200 AND b<334300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334300 AND b<334400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334400 AND b<334500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334500 AND b<334600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334600 AND b<334700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334700 AND b<334800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334800 AND b<334900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=334900 AND b<335000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335000 AND b<335100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335100 AND b<335200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335200 AND b<335300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335300 AND b<335400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335400 AND b<335500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335500 AND b<335600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335600 AND b<335700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335700 AND b<335800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335800 AND b<335900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=335900 AND b<336000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336000 AND b<336100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336100 AND b<336200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336200 AND b<336300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336300 AND b<336400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336400 AND b<336500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336500 AND b<336600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336600 AND b<336700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336700 AND b<336800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336800 AND b<336900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=336900 AND b<337000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337000 AND b<337100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337100 AND b<337200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337200 AND b<337300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337300 AND b<337400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337400 AND b<337500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337500 AND b<337600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337600 AND b<337700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337700 AND b<337800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337800 AND b<337900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=337900 AND b<338000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338000 AND b<338100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338100 AND b<338200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338200 AND b<338300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338300 AND b<338400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338400 AND b<338500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338500 AND b<338600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338600 AND b<338700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338700 AND b<338800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338800 AND b<338900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=338900 AND b<339000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339000 AND b<339100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339100 AND b<339200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339200 AND b<339300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339300 AND b<339400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339400 AND b<339500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339500 AND b<339600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339600 AND b<339700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339700 AND b<339800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339800 AND b<339900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=339900 AND b<340000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340000 AND b<340100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340100 AND b<340200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340200 AND b<340300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340300 AND b<340400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340400 AND b<340500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340500 AND b<340600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340600 AND b<340700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340700 AND b<340800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340800 AND b<340900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=340900 AND b<341000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341000 AND b<341100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341100 AND b<341200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341200 AND b<341300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341300 AND b<341400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341400 AND b<341500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341500 AND b<341600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341600 AND b<341700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341700 AND b<341800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341800 AND b<341900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=341900 AND b<342000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342000 AND b<342100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342100 AND b<342200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342200 AND b<342300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342300 AND b<342400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342400 AND b<342500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342500 AND b<342600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342600 AND b<342700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342700 AND b<342800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342800 AND b<342900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=342900 AND b<343000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343000 AND b<343100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343100 AND b<343200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343200 AND b<343300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343300 AND b<343400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343400 AND b<343500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343500 AND b<343600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343600 AND b<343700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343700 AND b<343800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343800 AND b<343900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=343900 AND b<344000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344000 AND b<344100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344100 AND b<344200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344200 AND b<344300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344300 AND b<344400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344400 AND b<344500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344500 AND b<344600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344600 AND b<344700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344700 AND b<344800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344800 AND b<344900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=344900 AND b<345000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345000 AND b<345100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345100 AND b<345200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345200 AND b<345300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345300 AND b<345400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345400 AND b<345500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345500 AND b<345600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345600 AND b<345700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345700 AND b<345800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345800 AND b<345900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=345900 AND b<346000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346000 AND b<346100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346100 AND b<346200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346200 AND b<346300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346300 AND b<346400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346400 AND b<346500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346500 AND b<346600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346600 AND b<346700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346700 AND b<346800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346800 AND b<346900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=346900 AND b<347000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347000 AND b<347100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347100 AND b<347200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347200 AND b<347300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347300 AND b<347400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347400 AND b<347500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347500 AND b<347600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347600 AND b<347700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347700 AND b<347800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347800 AND b<347900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=347900 AND b<348000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348000 AND b<348100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348100 AND b<348200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348200 AND b<348300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348300 AND b<348400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348400 AND b<348500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348500 AND b<348600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348600 AND b<348700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348700 AND b<348800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348800 AND b<348900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=348900 AND b<349000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349000 AND b<349100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349100 AND b<349200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349200 AND b<349300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349300 AND b<349400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349400 AND b<349500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349500 AND b<349600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349600 AND b<349700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349700 AND b<349800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349800 AND b<349900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=349900 AND b<350000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350000 AND b<350100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350100 AND b<350200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350200 AND b<350300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350300 AND b<350400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350400 AND b<350500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350500 AND b<350600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350600 AND b<350700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350700 AND b<350800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350800 AND b<350900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=350900 AND b<351000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351000 AND b<351100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351100 AND b<351200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351200 AND b<351300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351300 AND b<351400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351400 AND b<351500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351500 AND b<351600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351600 AND b<351700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351700 AND b<351800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351800 AND b<351900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=351900 AND b<352000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352000 AND b<352100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352100 AND b<352200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352200 AND b<352300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352300 AND b<352400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352400 AND b<352500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352500 AND b<352600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352600 AND b<352700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352700 AND b<352800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352800 AND b<352900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=352900 AND b<353000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353000 AND b<353100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353100 AND b<353200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353200 AND b<353300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353300 AND b<353400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353400 AND b<353500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353500 AND b<353600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353600 AND b<353700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353700 AND b<353800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353800 AND b<353900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=353900 AND b<354000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354000 AND b<354100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354100 AND b<354200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354200 AND b<354300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354300 AND b<354400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354400 AND b<354500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354500 AND b<354600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354600 AND b<354700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354700 AND b<354800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354800 AND b<354900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=354900 AND b<355000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355000 AND b<355100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355100 AND b<355200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355200 AND b<355300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355300 AND b<355400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355400 AND b<355500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355500 AND b<355600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355600 AND b<355700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355700 AND b<355800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355800 AND b<355900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=355900 AND b<356000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356000 AND b<356100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356100 AND b<356200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356200 AND b<356300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356300 AND b<356400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356400 AND b<356500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356500 AND b<356600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356600 AND b<356700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356700 AND b<356800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356800 AND b<356900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=356900 AND b<357000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357000 AND b<357100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357100 AND b<357200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357200 AND b<357300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357300 AND b<357400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357400 AND b<357500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357500 AND b<357600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357600 AND b<357700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357700 AND b<357800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357800 AND b<357900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=357900 AND b<358000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358000 AND b<358100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358100 AND b<358200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358200 AND b<358300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358300 AND b<358400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358400 AND b<358500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358500 AND b<358600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358600 AND b<358700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358700 AND b<358800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358800 AND b<358900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=358900 AND b<359000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359000 AND b<359100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359100 AND b<359200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359200 AND b<359300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359300 AND b<359400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359400 AND b<359500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359500 AND b<359600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359600 AND b<359700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359700 AND b<359800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359800 AND b<359900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=359900 AND b<360000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360000 AND b<360100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360100 AND b<360200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360200 AND b<360300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360300 AND b<360400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360400 AND b<360500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360500 AND b<360600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360600 AND b<360700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360700 AND b<360800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360800 AND b<360900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=360900 AND b<361000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361000 AND b<361100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361100 AND b<361200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361200 AND b<361300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361300 AND b<361400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361400 AND b<361500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361500 AND b<361600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361600 AND b<361700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361700 AND b<361800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361800 AND b<361900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=361900 AND b<362000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362000 AND b<362100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362100 AND b<362200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362200 AND b<362300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362300 AND b<362400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362400 AND b<362500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362500 AND b<362600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362600 AND b<362700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362700 AND b<362800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362800 AND b<362900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=362900 AND b<363000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363000 AND b<363100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363100 AND b<363200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363200 AND b<363300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363300 AND b<363400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363400 AND b<363500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363500 AND b<363600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363600 AND b<363700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363700 AND b<363800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363800 AND b<363900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=363900 AND b<364000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364000 AND b<364100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364100 AND b<364200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364200 AND b<364300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364300 AND b<364400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364400 AND b<364500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364500 AND b<364600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364600 AND b<364700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364700 AND b<364800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364800 AND b<364900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=364900 AND b<365000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365000 AND b<365100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365100 AND b<365200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365200 AND b<365300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365300 AND b<365400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365400 AND b<365500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365500 AND b<365600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365600 AND b<365700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365700 AND b<365800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365800 AND b<365900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=365900 AND b<366000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366000 AND b<366100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366100 AND b<366200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366200 AND b<366300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366300 AND b<366400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366400 AND b<366500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366500 AND b<366600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366600 AND b<366700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366700 AND b<366800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366800 AND b<366900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=366900 AND b<367000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367000 AND b<367100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367100 AND b<367200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367200 AND b<367300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367300 AND b<367400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367400 AND b<367500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367500 AND b<367600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367600 AND b<367700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367700 AND b<367800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367800 AND b<367900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=367900 AND b<368000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368000 AND b<368100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368100 AND b<368200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368200 AND b<368300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368300 AND b<368400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368400 AND b<368500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368500 AND b<368600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368600 AND b<368700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368700 AND b<368800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368800 AND b<368900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=368900 AND b<369000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369000 AND b<369100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369100 AND b<369200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369200 AND b<369300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369300 AND b<369400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369400 AND b<369500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369500 AND b<369600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369600 AND b<369700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369700 AND b<369800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369800 AND b<369900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=369900 AND b<370000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370000 AND b<370100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370100 AND b<370200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370200 AND b<370300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370300 AND b<370400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370400 AND b<370500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370500 AND b<370600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370600 AND b<370700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370700 AND b<370800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370800 AND b<370900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=370900 AND b<371000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371000 AND b<371100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371100 AND b<371200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371200 AND b<371300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371300 AND b<371400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371400 AND b<371500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371500 AND b<371600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371600 AND b<371700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371700 AND b<371800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371800 AND b<371900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=371900 AND b<372000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372000 AND b<372100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372100 AND b<372200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372200 AND b<372300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372300 AND b<372400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372400 AND b<372500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372500 AND b<372600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372600 AND b<372700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372700 AND b<372800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372800 AND b<372900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=372900 AND b<373000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373000 AND b<373100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373100 AND b<373200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373200 AND b<373300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373300 AND b<373400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373400 AND b<373500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373500 AND b<373600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373600 AND b<373700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373700 AND b<373800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373800 AND b<373900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=373900 AND b<374000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374000 AND b<374100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374100 AND b<374200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374200 AND b<374300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374300 AND b<374400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374400 AND b<374500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374500 AND b<374600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374600 AND b<374700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374700 AND b<374800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374800 AND b<374900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=374900 AND b<375000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375000 AND b<375100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375100 AND b<375200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375200 AND b<375300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375300 AND b<375400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375400 AND b<375500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375500 AND b<375600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375600 AND b<375700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375700 AND b<375800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375800 AND b<375900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=375900 AND b<376000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376000 AND b<376100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376100 AND b<376200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376200 AND b<376300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376300 AND b<376400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376400 AND b<376500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376500 AND b<376600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376600 AND b<376700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376700 AND b<376800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376800 AND b<376900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=376900 AND b<377000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377000 AND b<377100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377100 AND b<377200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377200 AND b<377300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377300 AND b<377400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377400 AND b<377500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377500 AND b<377600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377600 AND b<377700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377700 AND b<377800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377800 AND b<377900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=377900 AND b<378000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378000 AND b<378100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378100 AND b<378200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378200 AND b<378300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378300 AND b<378400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378400 AND b<378500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378500 AND b<378600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378600 AND b<378700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378700 AND b<378800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378800 AND b<378900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=378900 AND b<379000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379000 AND b<379100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379100 AND b<379200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379200 AND b<379300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379300 AND b<379400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379400 AND b<379500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379500 AND b<379600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379600 AND b<379700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379700 AND b<379800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379800 AND b<379900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=379900 AND b<380000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380000 AND b<380100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380100 AND b<380200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380200 AND b<380300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380300 AND b<380400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380400 AND b<380500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380500 AND b<380600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380600 AND b<380700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380700 AND b<380800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380800 AND b<380900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=380900 AND b<381000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381000 AND b<381100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381100 AND b<381200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381200 AND b<381300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381300 AND b<381400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381400 AND b<381500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381500 AND b<381600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381600 AND b<381700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381700 AND b<381800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381800 AND b<381900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=381900 AND b<382000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382000 AND b<382100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382100 AND b<382200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382200 AND b<382300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382300 AND b<382400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382400 AND b<382500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382500 AND b<382600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382600 AND b<382700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382700 AND b<382800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382800 AND b<382900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=382900 AND b<383000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383000 AND b<383100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383100 AND b<383200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383200 AND b<383300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383300 AND b<383400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383400 AND b<383500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383500 AND b<383600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383600 AND b<383700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383700 AND b<383800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383800 AND b<383900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=383900 AND b<384000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384000 AND b<384100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384100 AND b<384200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384200 AND b<384300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384300 AND b<384400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384400 AND b<384500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384500 AND b<384600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384600 AND b<384700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384700 AND b<384800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384800 AND b<384900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=384900 AND b<385000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385000 AND b<385100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385100 AND b<385200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385200 AND b<385300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385300 AND b<385400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385400 AND b<385500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385500 AND b<385600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385600 AND b<385700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385700 AND b<385800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385800 AND b<385900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=385900 AND b<386000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386000 AND b<386100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386100 AND b<386200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386200 AND b<386300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386300 AND b<386400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386400 AND b<386500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386500 AND b<386600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386600 AND b<386700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386700 AND b<386800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386800 AND b<386900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=386900 AND b<387000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387000 AND b<387100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387100 AND b<387200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387200 AND b<387300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387300 AND b<387400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387400 AND b<387500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387500 AND b<387600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387600 AND b<387700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387700 AND b<387800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387800 AND b<387900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=387900 AND b<388000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388000 AND b<388100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388100 AND b<388200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388200 AND b<388300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388300 AND b<388400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388400 AND b<388500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388500 AND b<388600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388600 AND b<388700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388700 AND b<388800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388800 AND b<388900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=388900 AND b<389000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389000 AND b<389100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389100 AND b<389200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389200 AND b<389300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389300 AND b<389400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389400 AND b<389500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389500 AND b<389600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389600 AND b<389700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389700 AND b<389800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389800 AND b<389900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=389900 AND b<390000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390000 AND b<390100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390100 AND b<390200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390200 AND b<390300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390300 AND b<390400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390400 AND b<390500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390500 AND b<390600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390600 AND b<390700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390700 AND b<390800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390800 AND b<390900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=390900 AND b<391000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391000 AND b<391100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391100 AND b<391200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391200 AND b<391300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391300 AND b<391400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391400 AND b<391500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391500 AND b<391600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391600 AND b<391700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391700 AND b<391800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391800 AND b<391900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=391900 AND b<392000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392000 AND b<392100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392100 AND b<392200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392200 AND b<392300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392300 AND b<392400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392400 AND b<392500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392500 AND b<392600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392600 AND b<392700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392700 AND b<392800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392800 AND b<392900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=392900 AND b<393000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393000 AND b<393100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393100 AND b<393200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393200 AND b<393300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393300 AND b<393400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393400 AND b<393500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393500 AND b<393600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393600 AND b<393700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393700 AND b<393800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393800 AND b<393900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=393900 AND b<394000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394000 AND b<394100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394100 AND b<394200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394200 AND b<394300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394300 AND b<394400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394400 AND b<394500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394500 AND b<394600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394600 AND b<394700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394700 AND b<394800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394800 AND b<394900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=394900 AND b<395000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395000 AND b<395100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395100 AND b<395200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395200 AND b<395300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395300 AND b<395400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395400 AND b<395500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395500 AND b<395600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395600 AND b<395700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395700 AND b<395800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395800 AND b<395900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=395900 AND b<396000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396000 AND b<396100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396100 AND b<396200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396200 AND b<396300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396300 AND b<396400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396400 AND b<396500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396500 AND b<396600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396600 AND b<396700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396700 AND b<396800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396800 AND b<396900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=396900 AND b<397000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397000 AND b<397100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397100 AND b<397200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397200 AND b<397300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397300 AND b<397400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397400 AND b<397500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397500 AND b<397600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397600 AND b<397700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397700 AND b<397800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397800 AND b<397900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=397900 AND b<398000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398000 AND b<398100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398100 AND b<398200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398200 AND b<398300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398300 AND b<398400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398400 AND b<398500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398500 AND b<398600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398600 AND b<398700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398700 AND b<398800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398800 AND b<398900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=398900 AND b<399000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399000 AND b<399100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399100 AND b<399200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399200 AND b<399300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399300 AND b<399400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399400 AND b<399500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399500 AND b<399600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399600 AND b<399700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399700 AND b<399800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399800 AND b<399900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=399900 AND b<400000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400000 AND b<400100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400100 AND b<400200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400200 AND b<400300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400300 AND b<400400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400400 AND b<400500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400500 AND b<400600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400600 AND b<400700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400700 AND b<400800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400800 AND b<400900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=400900 AND b<401000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401000 AND b<401100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401100 AND b<401200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401200 AND b<401300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401300 AND b<401400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401400 AND b<401500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401500 AND b<401600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401600 AND b<401700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401700 AND b<401800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401800 AND b<401900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=401900 AND b<402000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402000 AND b<402100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402100 AND b<402200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402200 AND b<402300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402300 AND b<402400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402400 AND b<402500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402500 AND b<402600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402600 AND b<402700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402700 AND b<402800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402800 AND b<402900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=402900 AND b<403000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403000 AND b<403100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403100 AND b<403200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403200 AND b<403300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403300 AND b<403400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403400 AND b<403500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403500 AND b<403600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403600 AND b<403700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403700 AND b<403800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403800 AND b<403900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=403900 AND b<404000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404000 AND b<404100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404100 AND b<404200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404200 AND b<404300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404300 AND b<404400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404400 AND b<404500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404500 AND b<404600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404600 AND b<404700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404700 AND b<404800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404800 AND b<404900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=404900 AND b<405000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405000 AND b<405100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405100 AND b<405200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405200 AND b<405300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405300 AND b<405400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405400 AND b<405500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405500 AND b<405600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405600 AND b<405700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405700 AND b<405800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405800 AND b<405900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=405900 AND b<406000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406000 AND b<406100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406100 AND b<406200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406200 AND b<406300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406300 AND b<406400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406400 AND b<406500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406500 AND b<406600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406600 AND b<406700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406700 AND b<406800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406800 AND b<406900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=406900 AND b<407000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407000 AND b<407100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407100 AND b<407200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407200 AND b<407300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407300 AND b<407400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407400 AND b<407500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407500 AND b<407600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407600 AND b<407700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407700 AND b<407800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407800 AND b<407900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=407900 AND b<408000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408000 AND b<408100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408100 AND b<408200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408200 AND b<408300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408300 AND b<408400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408400 AND b<408500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408500 AND b<408600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408600 AND b<408700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408700 AND b<408800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408800 AND b<408900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=408900 AND b<409000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409000 AND b<409100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409100 AND b<409200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409200 AND b<409300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409300 AND b<409400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409400 AND b<409500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409500 AND b<409600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409600 AND b<409700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409700 AND b<409800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409800 AND b<409900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=409900 AND b<410000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410000 AND b<410100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410100 AND b<410200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410200 AND b<410300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410300 AND b<410400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410400 AND b<410500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410500 AND b<410600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410600 AND b<410700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410700 AND b<410800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410800 AND b<410900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=410900 AND b<411000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411000 AND b<411100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411100 AND b<411200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411200 AND b<411300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411300 AND b<411400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411400 AND b<411500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411500 AND b<411600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411600 AND b<411700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411700 AND b<411800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411800 AND b<411900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=411900 AND b<412000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412000 AND b<412100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412100 AND b<412200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412200 AND b<412300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412300 AND b<412400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412400 AND b<412500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412500 AND b<412600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412600 AND b<412700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412700 AND b<412800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412800 AND b<412900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=412900 AND b<413000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413000 AND b<413100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413100 AND b<413200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413200 AND b<413300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413300 AND b<413400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413400 AND b<413500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413500 AND b<413600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413600 AND b<413700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413700 AND b<413800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413800 AND b<413900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=413900 AND b<414000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414000 AND b<414100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414100 AND b<414200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414200 AND b<414300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414300 AND b<414400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414400 AND b<414500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414500 AND b<414600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414600 AND b<414700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414700 AND b<414800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414800 AND b<414900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=414900 AND b<415000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415000 AND b<415100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415100 AND b<415200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415200 AND b<415300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415300 AND b<415400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415400 AND b<415500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415500 AND b<415600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415600 AND b<415700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415700 AND b<415800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415800 AND b<415900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=415900 AND b<416000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416000 AND b<416100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416100 AND b<416200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416200 AND b<416300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416300 AND b<416400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416400 AND b<416500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416500 AND b<416600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416600 AND b<416700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416700 AND b<416800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416800 AND b<416900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=416900 AND b<417000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417000 AND b<417100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417100 AND b<417200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417200 AND b<417300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417300 AND b<417400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417400 AND b<417500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417500 AND b<417600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417600 AND b<417700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417700 AND b<417800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417800 AND b<417900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=417900 AND b<418000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418000 AND b<418100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418100 AND b<418200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418200 AND b<418300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418300 AND b<418400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418400 AND b<418500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418500 AND b<418600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418600 AND b<418700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418700 AND b<418800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418800 AND b<418900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=418900 AND b<419000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419000 AND b<419100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419100 AND b<419200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419200 AND b<419300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419300 AND b<419400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419400 AND b<419500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419500 AND b<419600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419600 AND b<419700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419700 AND b<419800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419800 AND b<419900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=419900 AND b<420000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420000 AND b<420100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420100 AND b<420200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420200 AND b<420300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420300 AND b<420400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420400 AND b<420500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420500 AND b<420600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420600 AND b<420700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420700 AND b<420800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420800 AND b<420900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=420900 AND b<421000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421000 AND b<421100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421100 AND b<421200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421200 AND b<421300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421300 AND b<421400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421400 AND b<421500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421500 AND b<421600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421600 AND b<421700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421700 AND b<421800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421800 AND b<421900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=421900 AND b<422000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422000 AND b<422100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422100 AND b<422200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422200 AND b<422300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422300 AND b<422400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422400 AND b<422500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422500 AND b<422600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422600 AND b<422700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422700 AND b<422800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422800 AND b<422900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=422900 AND b<423000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423000 AND b<423100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423100 AND b<423200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423200 AND b<423300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423300 AND b<423400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423400 AND b<423500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423500 AND b<423600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423600 AND b<423700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423700 AND b<423800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423800 AND b<423900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=423900 AND b<424000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424000 AND b<424100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424100 AND b<424200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424200 AND b<424300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424300 AND b<424400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424400 AND b<424500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424500 AND b<424600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424600 AND b<424700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424700 AND b<424800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424800 AND b<424900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=424900 AND b<425000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425000 AND b<425100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425100 AND b<425200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425200 AND b<425300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425300 AND b<425400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425400 AND b<425500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425500 AND b<425600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425600 AND b<425700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425700 AND b<425800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425800 AND b<425900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=425900 AND b<426000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426000 AND b<426100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426100 AND b<426200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426200 AND b<426300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426300 AND b<426400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426400 AND b<426500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426500 AND b<426600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426600 AND b<426700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426700 AND b<426800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426800 AND b<426900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=426900 AND b<427000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427000 AND b<427100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427100 AND b<427200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427200 AND b<427300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427300 AND b<427400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427400 AND b<427500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427500 AND b<427600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427600 AND b<427700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427700 AND b<427800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427800 AND b<427900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=427900 AND b<428000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428000 AND b<428100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428100 AND b<428200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428200 AND b<428300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428300 AND b<428400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428400 AND b<428500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428500 AND b<428600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428600 AND b<428700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428700 AND b<428800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428800 AND b<428900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=428900 AND b<429000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429000 AND b<429100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429100 AND b<429200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429200 AND b<429300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429300 AND b<429400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429400 AND b<429500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429500 AND b<429600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429600 AND b<429700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429700 AND b<429800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429800 AND b<429900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=429900 AND b<430000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430000 AND b<430100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430100 AND b<430200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430200 AND b<430300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430300 AND b<430400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430400 AND b<430500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430500 AND b<430600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430600 AND b<430700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430700 AND b<430800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430800 AND b<430900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=430900 AND b<431000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431000 AND b<431100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431100 AND b<431200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431200 AND b<431300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431300 AND b<431400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431400 AND b<431500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431500 AND b<431600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431600 AND b<431700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431700 AND b<431800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431800 AND b<431900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=431900 AND b<432000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432000 AND b<432100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432100 AND b<432200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432200 AND b<432300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432300 AND b<432400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432400 AND b<432500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432500 AND b<432600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432600 AND b<432700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432700 AND b<432800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432800 AND b<432900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=432900 AND b<433000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433000 AND b<433100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433100 AND b<433200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433200 AND b<433300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433300 AND b<433400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433400 AND b<433500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433500 AND b<433600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433600 AND b<433700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433700 AND b<433800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433800 AND b<433900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=433900 AND b<434000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434000 AND b<434100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434100 AND b<434200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434200 AND b<434300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434300 AND b<434400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434400 AND b<434500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434500 AND b<434600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434600 AND b<434700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434700 AND b<434800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434800 AND b<434900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=434900 AND b<435000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435000 AND b<435100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435100 AND b<435200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435200 AND b<435300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435300 AND b<435400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435400 AND b<435500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435500 AND b<435600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435600 AND b<435700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435700 AND b<435800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435800 AND b<435900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=435900 AND b<436000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436000 AND b<436100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436100 AND b<436200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436200 AND b<436300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436300 AND b<436400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436400 AND b<436500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436500 AND b<436600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436600 AND b<436700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436700 AND b<436800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436800 AND b<436900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=436900 AND b<437000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437000 AND b<437100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437100 AND b<437200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437200 AND b<437300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437300 AND b<437400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437400 AND b<437500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437500 AND b<437600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437600 AND b<437700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437700 AND b<437800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437800 AND b<437900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=437900 AND b<438000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438000 AND b<438100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438100 AND b<438200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438200 AND b<438300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438300 AND b<438400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438400 AND b<438500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438500 AND b<438600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438600 AND b<438700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438700 AND b<438800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438800 AND b<438900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=438900 AND b<439000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439000 AND b<439100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439100 AND b<439200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439200 AND b<439300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439300 AND b<439400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439400 AND b<439500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439500 AND b<439600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439600 AND b<439700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439700 AND b<439800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439800 AND b<439900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=439900 AND b<440000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440000 AND b<440100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440100 AND b<440200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440200 AND b<440300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440300 AND b<440400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440400 AND b<440500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440500 AND b<440600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440600 AND b<440700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440700 AND b<440800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440800 AND b<440900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=440900 AND b<441000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441000 AND b<441100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441100 AND b<441200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441200 AND b<441300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441300 AND b<441400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441400 AND b<441500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441500 AND b<441600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441600 AND b<441700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441700 AND b<441800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441800 AND b<441900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=441900 AND b<442000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442000 AND b<442100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442100 AND b<442200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442200 AND b<442300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442300 AND b<442400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442400 AND b<442500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442500 AND b<442600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442600 AND b<442700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442700 AND b<442800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442800 AND b<442900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=442900 AND b<443000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443000 AND b<443100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443100 AND b<443200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443200 AND b<443300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443300 AND b<443400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443400 AND b<443500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443500 AND b<443600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443600 AND b<443700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443700 AND b<443800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443800 AND b<443900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=443900 AND b<444000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444000 AND b<444100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444100 AND b<444200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444200 AND b<444300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444300 AND b<444400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444400 AND b<444500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444500 AND b<444600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444600 AND b<444700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444700 AND b<444800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444800 AND b<444900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=444900 AND b<445000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445000 AND b<445100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445100 AND b<445200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445200 AND b<445300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445300 AND b<445400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445400 AND b<445500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445500 AND b<445600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445600 AND b<445700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445700 AND b<445800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445800 AND b<445900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=445900 AND b<446000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446000 AND b<446100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446100 AND b<446200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446200 AND b<446300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446300 AND b<446400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446400 AND b<446500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446500 AND b<446600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446600 AND b<446700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446700 AND b<446800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446800 AND b<446900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=446900 AND b<447000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447000 AND b<447100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447100 AND b<447200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447200 AND b<447300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447300 AND b<447400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447400 AND b<447500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447500 AND b<447600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447600 AND b<447700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447700 AND b<447800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447800 AND b<447900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=447900 AND b<448000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448000 AND b<448100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448100 AND b<448200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448200 AND b<448300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448300 AND b<448400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448400 AND b<448500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448500 AND b<448600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448600 AND b<448700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448700 AND b<448800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448800 AND b<448900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=448900 AND b<449000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449000 AND b<449100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449100 AND b<449200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449200 AND b<449300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449300 AND b<449400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449400 AND b<449500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449500 AND b<449600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449600 AND b<449700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449700 AND b<449800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449800 AND b<449900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=449900 AND b<450000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450000 AND b<450100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450100 AND b<450200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450200 AND b<450300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450300 AND b<450400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450400 AND b<450500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450500 AND b<450600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450600 AND b<450700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450700 AND b<450800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450800 AND b<450900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=450900 AND b<451000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451000 AND b<451100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451100 AND b<451200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451200 AND b<451300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451300 AND b<451400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451400 AND b<451500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451500 AND b<451600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451600 AND b<451700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451700 AND b<451800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451800 AND b<451900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=451900 AND b<452000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452000 AND b<452100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452100 AND b<452200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452200 AND b<452300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452300 AND b<452400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452400 AND b<452500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452500 AND b<452600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452600 AND b<452700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452700 AND b<452800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452800 AND b<452900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=452900 AND b<453000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453000 AND b<453100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453100 AND b<453200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453200 AND b<453300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453300 AND b<453400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453400 AND b<453500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453500 AND b<453600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453600 AND b<453700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453700 AND b<453800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453800 AND b<453900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=453900 AND b<454000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454000 AND b<454100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454100 AND b<454200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454200 AND b<454300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454300 AND b<454400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454400 AND b<454500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454500 AND b<454600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454600 AND b<454700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454700 AND b<454800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454800 AND b<454900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=454900 AND b<455000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455000 AND b<455100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455100 AND b<455200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455200 AND b<455300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455300 AND b<455400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455400 AND b<455500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455500 AND b<455600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455600 AND b<455700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455700 AND b<455800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455800 AND b<455900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=455900 AND b<456000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456000 AND b<456100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456100 AND b<456200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456200 AND b<456300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456300 AND b<456400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456400 AND b<456500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456500 AND b<456600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456600 AND b<456700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456700 AND b<456800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456800 AND b<456900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=456900 AND b<457000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457000 AND b<457100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457100 AND b<457200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457200 AND b<457300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457300 AND b<457400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457400 AND b<457500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457500 AND b<457600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457600 AND b<457700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457700 AND b<457800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457800 AND b<457900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=457900 AND b<458000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458000 AND b<458100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458100 AND b<458200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458200 AND b<458300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458300 AND b<458400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458400 AND b<458500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458500 AND b<458600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458600 AND b<458700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458700 AND b<458800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458800 AND b<458900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=458900 AND b<459000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459000 AND b<459100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459100 AND b<459200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459200 AND b<459300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459300 AND b<459400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459400 AND b<459500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459500 AND b<459600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459600 AND b<459700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459700 AND b<459800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459800 AND b<459900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=459900 AND b<460000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460000 AND b<460100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460100 AND b<460200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460200 AND b<460300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460300 AND b<460400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460400 AND b<460500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460500 AND b<460600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460600 AND b<460700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460700 AND b<460800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460800 AND b<460900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=460900 AND b<461000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461000 AND b<461100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461100 AND b<461200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461200 AND b<461300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461300 AND b<461400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461400 AND b<461500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461500 AND b<461600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461600 AND b<461700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461700 AND b<461800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461800 AND b<461900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=461900 AND b<462000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462000 AND b<462100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462100 AND b<462200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462200 AND b<462300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462300 AND b<462400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462400 AND b<462500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462500 AND b<462600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462600 AND b<462700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462700 AND b<462800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462800 AND b<462900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=462900 AND b<463000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463000 AND b<463100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463100 AND b<463200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463200 AND b<463300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463300 AND b<463400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463400 AND b<463500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463500 AND b<463600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463600 AND b<463700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463700 AND b<463800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463800 AND b<463900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=463900 AND b<464000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464000 AND b<464100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464100 AND b<464200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464200 AND b<464300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464300 AND b<464400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464400 AND b<464500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464500 AND b<464600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464600 AND b<464700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464700 AND b<464800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464800 AND b<464900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=464900 AND b<465000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465000 AND b<465100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465100 AND b<465200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465200 AND b<465300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465300 AND b<465400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465400 AND b<465500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465500 AND b<465600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465600 AND b<465700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465700 AND b<465800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465800 AND b<465900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=465900 AND b<466000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466000 AND b<466100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466100 AND b<466200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466200 AND b<466300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466300 AND b<466400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466400 AND b<466500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466500 AND b<466600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466600 AND b<466700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466700 AND b<466800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466800 AND b<466900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=466900 AND b<467000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467000 AND b<467100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467100 AND b<467200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467200 AND b<467300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467300 AND b<467400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467400 AND b<467500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467500 AND b<467600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467600 AND b<467700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467700 AND b<467800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467800 AND b<467900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=467900 AND b<468000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468000 AND b<468100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468100 AND b<468200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468200 AND b<468300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468300 AND b<468400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468400 AND b<468500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468500 AND b<468600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468600 AND b<468700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468700 AND b<468800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468800 AND b<468900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=468900 AND b<469000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469000 AND b<469100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469100 AND b<469200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469200 AND b<469300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469300 AND b<469400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469400 AND b<469500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469500 AND b<469600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469600 AND b<469700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469700 AND b<469800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469800 AND b<469900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=469900 AND b<470000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470000 AND b<470100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470100 AND b<470200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470200 AND b<470300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470300 AND b<470400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470400 AND b<470500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470500 AND b<470600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470600 AND b<470700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470700 AND b<470800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470800 AND b<470900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=470900 AND b<471000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471000 AND b<471100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471100 AND b<471200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471200 AND b<471300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471300 AND b<471400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471400 AND b<471500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471500 AND b<471600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471600 AND b<471700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471700 AND b<471800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471800 AND b<471900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=471900 AND b<472000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472000 AND b<472100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472100 AND b<472200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472200 AND b<472300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472300 AND b<472400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472400 AND b<472500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472500 AND b<472600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472600 AND b<472700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472700 AND b<472800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472800 AND b<472900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=472900 AND b<473000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473000 AND b<473100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473100 AND b<473200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473200 AND b<473300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473300 AND b<473400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473400 AND b<473500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473500 AND b<473600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473600 AND b<473700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473700 AND b<473800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473800 AND b<473900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=473900 AND b<474000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474000 AND b<474100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474100 AND b<474200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474200 AND b<474300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474300 AND b<474400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474400 AND b<474500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474500 AND b<474600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474600 AND b<474700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474700 AND b<474800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474800 AND b<474900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=474900 AND b<475000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475000 AND b<475100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475100 AND b<475200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475200 AND b<475300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475300 AND b<475400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475400 AND b<475500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475500 AND b<475600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475600 AND b<475700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475700 AND b<475800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475800 AND b<475900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=475900 AND b<476000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476000 AND b<476100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476100 AND b<476200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476200 AND b<476300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476300 AND b<476400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476400 AND b<476500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476500 AND b<476600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476600 AND b<476700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476700 AND b<476800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476800 AND b<476900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=476900 AND b<477000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477000 AND b<477100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477100 AND b<477200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477200 AND b<477300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477300 AND b<477400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477400 AND b<477500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477500 AND b<477600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477600 AND b<477700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477700 AND b<477800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477800 AND b<477900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=477900 AND b<478000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478000 AND b<478100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478100 AND b<478200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478200 AND b<478300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478300 AND b<478400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478400 AND b<478500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478500 AND b<478600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478600 AND b<478700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478700 AND b<478800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478800 AND b<478900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=478900 AND b<479000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479000 AND b<479100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479100 AND b<479200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479200 AND b<479300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479300 AND b<479400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479400 AND b<479500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479500 AND b<479600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479600 AND b<479700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479700 AND b<479800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479800 AND b<479900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=479900 AND b<480000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480000 AND b<480100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480100 AND b<480200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480200 AND b<480300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480300 AND b<480400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480400 AND b<480500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480500 AND b<480600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480600 AND b<480700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480700 AND b<480800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480800 AND b<480900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=480900 AND b<481000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481000 AND b<481100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481100 AND b<481200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481200 AND b<481300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481300 AND b<481400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481400 AND b<481500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481500 AND b<481600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481600 AND b<481700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481700 AND b<481800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481800 AND b<481900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=481900 AND b<482000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482000 AND b<482100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482100 AND b<482200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482200 AND b<482300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482300 AND b<482400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482400 AND b<482500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482500 AND b<482600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482600 AND b<482700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482700 AND b<482800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482800 AND b<482900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=482900 AND b<483000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483000 AND b<483100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483100 AND b<483200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483200 AND b<483300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483300 AND b<483400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483400 AND b<483500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483500 AND b<483600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483600 AND b<483700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483700 AND b<483800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483800 AND b<483900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=483900 AND b<484000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484000 AND b<484100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484100 AND b<484200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484200 AND b<484300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484300 AND b<484400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484400 AND b<484500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484500 AND b<484600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484600 AND b<484700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484700 AND b<484800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484800 AND b<484900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=484900 AND b<485000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485000 AND b<485100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485100 AND b<485200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485200 AND b<485300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485300 AND b<485400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485400 AND b<485500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485500 AND b<485600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485600 AND b<485700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485700 AND b<485800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485800 AND b<485900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=485900 AND b<486000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486000 AND b<486100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486100 AND b<486200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486200 AND b<486300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486300 AND b<486400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486400 AND b<486500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486500 AND b<486600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486600 AND b<486700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486700 AND b<486800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486800 AND b<486900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=486900 AND b<487000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487000 AND b<487100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487100 AND b<487200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487200 AND b<487300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487300 AND b<487400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487400 AND b<487500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487500 AND b<487600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487600 AND b<487700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487700 AND b<487800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487800 AND b<487900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=487900 AND b<488000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488000 AND b<488100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488100 AND b<488200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488200 AND b<488300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488300 AND b<488400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488400 AND b<488500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488500 AND b<488600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488600 AND b<488700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488700 AND b<488800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488800 AND b<488900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=488900 AND b<489000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489000 AND b<489100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489100 AND b<489200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489200 AND b<489300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489300 AND b<489400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489400 AND b<489500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489500 AND b<489600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489600 AND b<489700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489700 AND b<489800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489800 AND b<489900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=489900 AND b<490000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490000 AND b<490100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490100 AND b<490200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490200 AND b<490300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490300 AND b<490400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490400 AND b<490500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490500 AND b<490600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490600 AND b<490700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490700 AND b<490800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490800 AND b<490900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=490900 AND b<491000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491000 AND b<491100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491100 AND b<491200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491200 AND b<491300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491300 AND b<491400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491400 AND b<491500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491500 AND b<491600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491600 AND b<491700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491700 AND b<491800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491800 AND b<491900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=491900 AND b<492000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492000 AND b<492100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492100 AND b<492200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492200 AND b<492300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492300 AND b<492400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492400 AND b<492500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492500 AND b<492600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492600 AND b<492700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492700 AND b<492800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492800 AND b<492900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=492900 AND b<493000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493000 AND b<493100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493100 AND b<493200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493200 AND b<493300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493300 AND b<493400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493400 AND b<493500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493500 AND b<493600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493600 AND b<493700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493700 AND b<493800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493800 AND b<493900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=493900 AND b<494000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494000 AND b<494100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494100 AND b<494200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494200 AND b<494300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494300 AND b<494400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494400 AND b<494500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494500 AND b<494600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494600 AND b<494700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494700 AND b<494800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494800 AND b<494900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=494900 AND b<495000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495000 AND b<495100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495100 AND b<495200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495200 AND b<495300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495300 AND b<495400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495400 AND b<495500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495500 AND b<495600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495600 AND b<495700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495700 AND b<495800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495800 AND b<495900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=495900 AND b<496000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496000 AND b<496100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496100 AND b<496200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496200 AND b<496300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496300 AND b<496400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496400 AND b<496500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496500 AND b<496600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496600 AND b<496700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496700 AND b<496800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496800 AND b<496900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=496900 AND b<497000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497000 AND b<497100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497100 AND b<497200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497200 AND b<497300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497300 AND b<497400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497400 AND b<497500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497500 AND b<497600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497600 AND b<497700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497700 AND b<497800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497800 AND b<497900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=497900 AND b<498000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498000 AND b<498100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498100 AND b<498200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498200 AND b<498300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498300 AND b<498400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498400 AND b<498500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498500 AND b<498600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498600 AND b<498700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498700 AND b<498800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498800 AND b<498900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=498900 AND b<499000;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499000 AND b<499100;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499100 AND b<499200;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499200 AND b<499300;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499300 AND b<499400;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499400 AND b<499500;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499500 AND b<499600;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499600 AND b<499700;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499700 AND b<499800;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499800 AND b<499900;\nSELECT count(*), avg(b) FROM t2 WHERE b>=499900 AND b<500000;\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark8.sql",
    "content": "BEGIN;\nUPDATE t1 SET b=b*2 WHERE a>=0 AND a<10;\nUPDATE t1 SET b=b*2 WHERE a>=10 AND a<20;\nUPDATE t1 SET b=b*2 WHERE a>=20 AND a<30;\nUPDATE t1 SET b=b*2 WHERE a>=30 AND a<40;\nUPDATE t1 SET b=b*2 WHERE a>=40 AND a<50;\nUPDATE t1 SET b=b*2 WHERE a>=50 AND a<60;\nUPDATE t1 SET b=b*2 WHERE a>=60 AND a<70;\nUPDATE t1 SET b=b*2 WHERE a>=70 AND a<80;\nUPDATE t1 SET b=b*2 WHERE a>=80 AND a<90;\nUPDATE t1 SET b=b*2 WHERE a>=90 AND a<100;\nUPDATE t1 SET b=b*2 WHERE a>=100 AND a<110;\nUPDATE t1 SET b=b*2 WHERE a>=110 AND a<120;\nUPDATE t1 SET b=b*2 WHERE a>=120 AND a<130;\nUPDATE t1 SET b=b*2 WHERE a>=130 AND a<140;\nUPDATE t1 SET b=b*2 WHERE a>=140 AND a<150;\nUPDATE t1 SET b=b*2 WHERE a>=150 AND a<160;\nUPDATE t1 SET b=b*2 WHERE a>=160 AND a<170;\nUPDATE t1 SET b=b*2 WHERE a>=170 AND a<180;\nUPDATE t1 SET b=b*2 WHERE a>=180 AND a<190;\nUPDATE t1 SET b=b*2 WHERE a>=190 AND a<200;\nUPDATE t1 SET b=b*2 WHERE a>=200 AND a<210;\nUPDATE t1 SET b=b*2 WHERE a>=210 AND a<220;\nUPDATE t1 SET b=b*2 WHERE a>=220 AND a<230;\nUPDATE t1 SET b=b*2 WHERE a>=230 AND a<240;\nUPDATE t1 SET b=b*2 WHERE a>=240 AND a<250;\nUPDATE t1 SET b=b*2 WHERE a>=250 AND a<260;\nUPDATE t1 SET b=b*2 WHERE a>=260 AND a<270;\nUPDATE t1 SET b=b*2 WHERE a>=270 AND a<280;\nUPDATE t1 SET b=b*2 WHERE a>=280 AND a<290;\nUPDATE t1 SET b=b*2 WHERE a>=290 AND a<300;\nUPDATE t1 SET b=b*2 WHERE a>=300 AND a<310;\nUPDATE t1 SET b=b*2 WHERE a>=310 AND a<320;\nUPDATE t1 SET b=b*2 WHERE a>=320 AND a<330;\nUPDATE t1 SET b=b*2 WHERE a>=330 AND a<340;\nUPDATE t1 SET b=b*2 WHERE a>=340 AND a<350;\nUPDATE t1 SET b=b*2 WHERE a>=350 AND a<360;\nUPDATE t1 SET b=b*2 WHERE a>=360 AND a<370;\nUPDATE t1 SET b=b*2 WHERE a>=370 AND a<380;\nUPDATE t1 SET b=b*2 WHERE a>=380 AND a<390;\nUPDATE t1 SET b=b*2 WHERE a>=390 AND a<400;\nUPDATE t1 SET b=b*2 WHERE a>=400 AND a<410;\nUPDATE t1 SET b=b*2 WHERE a>=410 AND a<420;\nUPDATE t1 SET b=b*2 WHERE a>=420 AND a<430;\nUPDATE t1 SET b=b*2 WHERE a>=430 AND a<440;\nUPDATE t1 SET b=b*2 WHERE a>=440 AND a<450;\nUPDATE t1 SET b=b*2 WHERE a>=450 AND a<460;\nUPDATE t1 SET b=b*2 WHERE a>=460 AND a<470;\nUPDATE t1 SET b=b*2 WHERE a>=470 AND a<480;\nUPDATE t1 SET b=b*2 WHERE a>=480 AND a<490;\nUPDATE t1 SET b=b*2 WHERE a>=490 AND a<500;\nUPDATE t1 SET b=b*2 WHERE a>=500 AND a<510;\nUPDATE t1 SET b=b*2 WHERE a>=510 AND a<520;\nUPDATE t1 SET b=b*2 WHERE a>=520 AND a<530;\nUPDATE t1 SET b=b*2 WHERE a>=530 AND a<540;\nUPDATE t1 SET b=b*2 WHERE a>=540 AND a<550;\nUPDATE t1 SET b=b*2 WHERE a>=550 AND a<560;\nUPDATE t1 SET b=b*2 WHERE a>=560 AND a<570;\nUPDATE t1 SET b=b*2 WHERE a>=570 AND a<580;\nUPDATE t1 SET b=b*2 WHERE a>=580 AND a<590;\nUPDATE t1 SET b=b*2 WHERE a>=590 AND a<600;\nUPDATE t1 SET b=b*2 WHERE a>=600 AND a<610;\nUPDATE t1 SET b=b*2 WHERE a>=610 AND a<620;\nUPDATE t1 SET b=b*2 WHERE a>=620 AND a<630;\nUPDATE t1 SET b=b*2 WHERE a>=630 AND a<640;\nUPDATE t1 SET b=b*2 WHERE a>=640 AND a<650;\nUPDATE t1 SET b=b*2 WHERE a>=650 AND a<660;\nUPDATE t1 SET b=b*2 WHERE a>=660 AND a<670;\nUPDATE t1 SET b=b*2 WHERE a>=670 AND a<680;\nUPDATE t1 SET b=b*2 WHERE a>=680 AND a<690;\nUPDATE t1 SET b=b*2 WHERE a>=690 AND a<700;\nUPDATE t1 SET b=b*2 WHERE a>=700 AND a<710;\nUPDATE t1 SET b=b*2 WHERE a>=710 AND a<720;\nUPDATE t1 SET b=b*2 WHERE a>=720 AND a<730;\nUPDATE t1 SET b=b*2 WHERE a>=730 AND a<740;\nUPDATE t1 SET b=b*2 WHERE a>=740 AND a<750;\nUPDATE t1 SET b=b*2 WHERE a>=750 AND a<760;\nUPDATE t1 SET b=b*2 WHERE a>=760 AND a<770;\nUPDATE t1 SET b=b*2 WHERE a>=770 AND a<780;\nUPDATE t1 SET b=b*2 WHERE a>=780 AND a<790;\nUPDATE t1 SET b=b*2 WHERE a>=790 AND a<800;\nUPDATE t1 SET b=b*2 WHERE a>=800 AND a<810;\nUPDATE t1 SET b=b*2 WHERE a>=810 AND a<820;\nUPDATE t1 SET b=b*2 WHERE a>=820 AND a<830;\nUPDATE t1 SET b=b*2 WHERE a>=830 AND a<840;\nUPDATE t1 SET b=b*2 WHERE a>=840 AND a<850;\nUPDATE t1 SET b=b*2 WHERE a>=850 AND a<860;\nUPDATE t1 SET b=b*2 WHERE a>=860 AND a<870;\nUPDATE t1 SET b=b*2 WHERE a>=870 AND a<880;\nUPDATE t1 SET b=b*2 WHERE a>=880 AND a<890;\nUPDATE t1 SET b=b*2 WHERE a>=890 AND a<900;\nUPDATE t1 SET b=b*2 WHERE a>=900 AND a<910;\nUPDATE t1 SET b=b*2 WHERE a>=910 AND a<920;\nUPDATE t1 SET b=b*2 WHERE a>=920 AND a<930;\nUPDATE t1 SET b=b*2 WHERE a>=930 AND a<940;\nUPDATE t1 SET b=b*2 WHERE a>=940 AND a<950;\nUPDATE t1 SET b=b*2 WHERE a>=950 AND a<960;\nUPDATE t1 SET b=b*2 WHERE a>=960 AND a<970;\nUPDATE t1 SET b=b*2 WHERE a>=970 AND a<980;\nUPDATE t1 SET b=b*2 WHERE a>=980 AND a<990;\nUPDATE t1 SET b=b*2 WHERE a>=990 AND a<1000;\nUPDATE t1 SET b=b*2 WHERE a>=1000 AND a<1010;\nUPDATE t1 SET b=b*2 WHERE a>=1010 AND a<1020;\nUPDATE t1 SET b=b*2 WHERE a>=1020 AND a<1030;\nUPDATE t1 SET b=b*2 WHERE a>=1030 AND a<1040;\nUPDATE t1 SET b=b*2 WHERE a>=1040 AND a<1050;\nUPDATE t1 SET b=b*2 WHERE a>=1050 AND a<1060;\nUPDATE t1 SET b=b*2 WHERE a>=1060 AND a<1070;\nUPDATE t1 SET b=b*2 WHERE a>=1070 AND a<1080;\nUPDATE t1 SET b=b*2 WHERE a>=1080 AND a<1090;\nUPDATE t1 SET b=b*2 WHERE a>=1090 AND a<1100;\nUPDATE t1 SET b=b*2 WHERE a>=1100 AND a<1110;\nUPDATE t1 SET b=b*2 WHERE a>=1110 AND a<1120;\nUPDATE t1 SET b=b*2 WHERE a>=1120 AND a<1130;\nUPDATE t1 SET b=b*2 WHERE a>=1130 AND a<1140;\nUPDATE t1 SET b=b*2 WHERE a>=1140 AND a<1150;\nUPDATE t1 SET b=b*2 WHERE a>=1150 AND a<1160;\nUPDATE t1 SET b=b*2 WHERE a>=1160 AND a<1170;\nUPDATE t1 SET b=b*2 WHERE a>=1170 AND a<1180;\nUPDATE t1 SET b=b*2 WHERE a>=1180 AND a<1190;\nUPDATE t1 SET b=b*2 WHERE a>=1190 AND a<1200;\nUPDATE t1 SET b=b*2 WHERE a>=1200 AND a<1210;\nUPDATE t1 SET b=b*2 WHERE a>=1210 AND a<1220;\nUPDATE t1 SET b=b*2 WHERE a>=1220 AND a<1230;\nUPDATE t1 SET b=b*2 WHERE a>=1230 AND a<1240;\nUPDATE t1 SET b=b*2 WHERE a>=1240 AND a<1250;\nUPDATE t1 SET b=b*2 WHERE a>=1250 AND a<1260;\nUPDATE t1 SET b=b*2 WHERE a>=1260 AND a<1270;\nUPDATE t1 SET b=b*2 WHERE a>=1270 AND a<1280;\nUPDATE t1 SET b=b*2 WHERE a>=1280 AND a<1290;\nUPDATE t1 SET b=b*2 WHERE a>=1290 AND a<1300;\nUPDATE t1 SET b=b*2 WHERE a>=1300 AND a<1310;\nUPDATE t1 SET b=b*2 WHERE a>=1310 AND a<1320;\nUPDATE t1 SET b=b*2 WHERE a>=1320 AND a<1330;\nUPDATE t1 SET b=b*2 WHERE a>=1330 AND a<1340;\nUPDATE t1 SET b=b*2 WHERE a>=1340 AND a<1350;\nUPDATE t1 SET b=b*2 WHERE a>=1350 AND a<1360;\nUPDATE t1 SET b=b*2 WHERE a>=1360 AND a<1370;\nUPDATE t1 SET b=b*2 WHERE a>=1370 AND a<1380;\nUPDATE t1 SET b=b*2 WHERE a>=1380 AND a<1390;\nUPDATE t1 SET b=b*2 WHERE a>=1390 AND a<1400;\nUPDATE t1 SET b=b*2 WHERE a>=1400 AND a<1410;\nUPDATE t1 SET b=b*2 WHERE a>=1410 AND a<1420;\nUPDATE t1 SET b=b*2 WHERE a>=1420 AND a<1430;\nUPDATE t1 SET b=b*2 WHERE a>=1430 AND a<1440;\nUPDATE t1 SET b=b*2 WHERE a>=1440 AND a<1450;\nUPDATE t1 SET b=b*2 WHERE a>=1450 AND a<1460;\nUPDATE t1 SET b=b*2 WHERE a>=1460 AND a<1470;\nUPDATE t1 SET b=b*2 WHERE a>=1470 AND a<1480;\nUPDATE t1 SET b=b*2 WHERE a>=1480 AND a<1490;\nUPDATE t1 SET b=b*2 WHERE a>=1490 AND a<1500;\nUPDATE t1 SET b=b*2 WHERE a>=1500 AND a<1510;\nUPDATE t1 SET b=b*2 WHERE a>=1510 AND a<1520;\nUPDATE t1 SET b=b*2 WHERE a>=1520 AND a<1530;\nUPDATE t1 SET b=b*2 WHERE a>=1530 AND a<1540;\nUPDATE t1 SET b=b*2 WHERE a>=1540 AND a<1550;\nUPDATE t1 SET b=b*2 WHERE a>=1550 AND a<1560;\nUPDATE t1 SET b=b*2 WHERE a>=1560 AND a<1570;\nUPDATE t1 SET b=b*2 WHERE a>=1570 AND a<1580;\nUPDATE t1 SET b=b*2 WHERE a>=1580 AND a<1590;\nUPDATE t1 SET b=b*2 WHERE a>=1590 AND a<1600;\nUPDATE t1 SET b=b*2 WHERE a>=1600 AND a<1610;\nUPDATE t1 SET b=b*2 WHERE a>=1610 AND a<1620;\nUPDATE t1 SET b=b*2 WHERE a>=1620 AND a<1630;\nUPDATE t1 SET b=b*2 WHERE a>=1630 AND a<1640;\nUPDATE t1 SET b=b*2 WHERE a>=1640 AND a<1650;\nUPDATE t1 SET b=b*2 WHERE a>=1650 AND a<1660;\nUPDATE t1 SET b=b*2 WHERE a>=1660 AND a<1670;\nUPDATE t1 SET b=b*2 WHERE a>=1670 AND a<1680;\nUPDATE t1 SET b=b*2 WHERE a>=1680 AND a<1690;\nUPDATE t1 SET b=b*2 WHERE a>=1690 AND a<1700;\nUPDATE t1 SET b=b*2 WHERE a>=1700 AND a<1710;\nUPDATE t1 SET b=b*2 WHERE a>=1710 AND a<1720;\nUPDATE t1 SET b=b*2 WHERE a>=1720 AND a<1730;\nUPDATE t1 SET b=b*2 WHERE a>=1730 AND a<1740;\nUPDATE t1 SET b=b*2 WHERE a>=1740 AND a<1750;\nUPDATE t1 SET b=b*2 WHERE a>=1750 AND a<1760;\nUPDATE t1 SET b=b*2 WHERE a>=1760 AND a<1770;\nUPDATE t1 SET b=b*2 WHERE a>=1770 AND a<1780;\nUPDATE t1 SET b=b*2 WHERE a>=1780 AND a<1790;\nUPDATE t1 SET b=b*2 WHERE a>=1790 AND a<1800;\nUPDATE t1 SET b=b*2 WHERE a>=1800 AND a<1810;\nUPDATE t1 SET b=b*2 WHERE a>=1810 AND a<1820;\nUPDATE t1 SET b=b*2 WHERE a>=1820 AND a<1830;\nUPDATE t1 SET b=b*2 WHERE a>=1830 AND a<1840;\nUPDATE t1 SET b=b*2 WHERE a>=1840 AND a<1850;\nUPDATE t1 SET b=b*2 WHERE a>=1850 AND a<1860;\nUPDATE t1 SET b=b*2 WHERE a>=1860 AND a<1870;\nUPDATE t1 SET b=b*2 WHERE a>=1870 AND a<1880;\nUPDATE t1 SET b=b*2 WHERE a>=1880 AND a<1890;\nUPDATE t1 SET b=b*2 WHERE a>=1890 AND a<1900;\nUPDATE t1 SET b=b*2 WHERE a>=1900 AND a<1910;\nUPDATE t1 SET b=b*2 WHERE a>=1910 AND a<1920;\nUPDATE t1 SET b=b*2 WHERE a>=1920 AND a<1930;\nUPDATE t1 SET b=b*2 WHERE a>=1930 AND a<1940;\nUPDATE t1 SET b=b*2 WHERE a>=1940 AND a<1950;\nUPDATE t1 SET b=b*2 WHERE a>=1950 AND a<1960;\nUPDATE t1 SET b=b*2 WHERE a>=1960 AND a<1970;\nUPDATE t1 SET b=b*2 WHERE a>=1970 AND a<1980;\nUPDATE t1 SET b=b*2 WHERE a>=1980 AND a<1990;\nUPDATE t1 SET b=b*2 WHERE a>=1990 AND a<2000;\nUPDATE t1 SET b=b*2 WHERE a>=2000 AND a<2010;\nUPDATE t1 SET b=b*2 WHERE a>=2010 AND a<2020;\nUPDATE t1 SET b=b*2 WHERE a>=2020 AND a<2030;\nUPDATE t1 SET b=b*2 WHERE a>=2030 AND a<2040;\nUPDATE t1 SET b=b*2 WHERE a>=2040 AND a<2050;\nUPDATE t1 SET b=b*2 WHERE a>=2050 AND a<2060;\nUPDATE t1 SET b=b*2 WHERE a>=2060 AND a<2070;\nUPDATE t1 SET b=b*2 WHERE a>=2070 AND a<2080;\nUPDATE t1 SET b=b*2 WHERE a>=2080 AND a<2090;\nUPDATE t1 SET b=b*2 WHERE a>=2090 AND a<2100;\nUPDATE t1 SET b=b*2 WHERE a>=2100 AND a<2110;\nUPDATE t1 SET b=b*2 WHERE a>=2110 AND a<2120;\nUPDATE t1 SET b=b*2 WHERE a>=2120 AND a<2130;\nUPDATE t1 SET b=b*2 WHERE a>=2130 AND a<2140;\nUPDATE t1 SET b=b*2 WHERE a>=2140 AND a<2150;\nUPDATE t1 SET b=b*2 WHERE a>=2150 AND a<2160;\nUPDATE t1 SET b=b*2 WHERE a>=2160 AND a<2170;\nUPDATE t1 SET b=b*2 WHERE a>=2170 AND a<2180;\nUPDATE t1 SET b=b*2 WHERE a>=2180 AND a<2190;\nUPDATE t1 SET b=b*2 WHERE a>=2190 AND a<2200;\nUPDATE t1 SET b=b*2 WHERE a>=2200 AND a<2210;\nUPDATE t1 SET b=b*2 WHERE a>=2210 AND a<2220;\nUPDATE t1 SET b=b*2 WHERE a>=2220 AND a<2230;\nUPDATE t1 SET b=b*2 WHERE a>=2230 AND a<2240;\nUPDATE t1 SET b=b*2 WHERE a>=2240 AND a<2250;\nUPDATE t1 SET b=b*2 WHERE a>=2250 AND a<2260;\nUPDATE t1 SET b=b*2 WHERE a>=2260 AND a<2270;\nUPDATE t1 SET b=b*2 WHERE a>=2270 AND a<2280;\nUPDATE t1 SET b=b*2 WHERE a>=2280 AND a<2290;\nUPDATE t1 SET b=b*2 WHERE a>=2290 AND a<2300;\nUPDATE t1 SET b=b*2 WHERE a>=2300 AND a<2310;\nUPDATE t1 SET b=b*2 WHERE a>=2310 AND a<2320;\nUPDATE t1 SET b=b*2 WHERE a>=2320 AND a<2330;\nUPDATE t1 SET b=b*2 WHERE a>=2330 AND a<2340;\nUPDATE t1 SET b=b*2 WHERE a>=2340 AND a<2350;\nUPDATE t1 SET b=b*2 WHERE a>=2350 AND a<2360;\nUPDATE t1 SET b=b*2 WHERE a>=2360 AND a<2370;\nUPDATE t1 SET b=b*2 WHERE a>=2370 AND a<2380;\nUPDATE t1 SET b=b*2 WHERE a>=2380 AND a<2390;\nUPDATE t1 SET b=b*2 WHERE a>=2390 AND a<2400;\nUPDATE t1 SET b=b*2 WHERE a>=2400 AND a<2410;\nUPDATE t1 SET b=b*2 WHERE a>=2410 AND a<2420;\nUPDATE t1 SET b=b*2 WHERE a>=2420 AND a<2430;\nUPDATE t1 SET b=b*2 WHERE a>=2430 AND a<2440;\nUPDATE t1 SET b=b*2 WHERE a>=2440 AND a<2450;\nUPDATE t1 SET b=b*2 WHERE a>=2450 AND a<2460;\nUPDATE t1 SET b=b*2 WHERE a>=2460 AND a<2470;\nUPDATE t1 SET b=b*2 WHERE a>=2470 AND a<2480;\nUPDATE t1 SET b=b*2 WHERE a>=2480 AND a<2490;\nUPDATE t1 SET b=b*2 WHERE a>=2490 AND a<2500;\nUPDATE t1 SET b=b*2 WHERE a>=2500 AND a<2510;\nUPDATE t1 SET b=b*2 WHERE a>=2510 AND a<2520;\nUPDATE t1 SET b=b*2 WHERE a>=2520 AND a<2530;\nUPDATE t1 SET b=b*2 WHERE a>=2530 AND a<2540;\nUPDATE t1 SET b=b*2 WHERE a>=2540 AND a<2550;\nUPDATE t1 SET b=b*2 WHERE a>=2550 AND a<2560;\nUPDATE t1 SET b=b*2 WHERE a>=2560 AND a<2570;\nUPDATE t1 SET b=b*2 WHERE a>=2570 AND a<2580;\nUPDATE t1 SET b=b*2 WHERE a>=2580 AND a<2590;\nUPDATE t1 SET b=b*2 WHERE a>=2590 AND a<2600;\nUPDATE t1 SET b=b*2 WHERE a>=2600 AND a<2610;\nUPDATE t1 SET b=b*2 WHERE a>=2610 AND a<2620;\nUPDATE t1 SET b=b*2 WHERE a>=2620 AND a<2630;\nUPDATE t1 SET b=b*2 WHERE a>=2630 AND a<2640;\nUPDATE t1 SET b=b*2 WHERE a>=2640 AND a<2650;\nUPDATE t1 SET b=b*2 WHERE a>=2650 AND a<2660;\nUPDATE t1 SET b=b*2 WHERE a>=2660 AND a<2670;\nUPDATE t1 SET b=b*2 WHERE a>=2670 AND a<2680;\nUPDATE t1 SET b=b*2 WHERE a>=2680 AND a<2690;\nUPDATE t1 SET b=b*2 WHERE a>=2690 AND a<2700;\nUPDATE t1 SET b=b*2 WHERE a>=2700 AND a<2710;\nUPDATE t1 SET b=b*2 WHERE a>=2710 AND a<2720;\nUPDATE t1 SET b=b*2 WHERE a>=2720 AND a<2730;\nUPDATE t1 SET b=b*2 WHERE a>=2730 AND a<2740;\nUPDATE t1 SET b=b*2 WHERE a>=2740 AND a<2750;\nUPDATE t1 SET b=b*2 WHERE a>=2750 AND a<2760;\nUPDATE t1 SET b=b*2 WHERE a>=2760 AND a<2770;\nUPDATE t1 SET b=b*2 WHERE a>=2770 AND a<2780;\nUPDATE t1 SET b=b*2 WHERE a>=2780 AND a<2790;\nUPDATE t1 SET b=b*2 WHERE a>=2790 AND a<2800;\nUPDATE t1 SET b=b*2 WHERE a>=2800 AND a<2810;\nUPDATE t1 SET b=b*2 WHERE a>=2810 AND a<2820;\nUPDATE t1 SET b=b*2 WHERE a>=2820 AND a<2830;\nUPDATE t1 SET b=b*2 WHERE a>=2830 AND a<2840;\nUPDATE t1 SET b=b*2 WHERE a>=2840 AND a<2850;\nUPDATE t1 SET b=b*2 WHERE a>=2850 AND a<2860;\nUPDATE t1 SET b=b*2 WHERE a>=2860 AND a<2870;\nUPDATE t1 SET b=b*2 WHERE a>=2870 AND a<2880;\nUPDATE t1 SET b=b*2 WHERE a>=2880 AND a<2890;\nUPDATE t1 SET b=b*2 WHERE a>=2890 AND a<2900;\nUPDATE t1 SET b=b*2 WHERE a>=2900 AND a<2910;\nUPDATE t1 SET b=b*2 WHERE a>=2910 AND a<2920;\nUPDATE t1 SET b=b*2 WHERE a>=2920 AND a<2930;\nUPDATE t1 SET b=b*2 WHERE a>=2930 AND a<2940;\nUPDATE t1 SET b=b*2 WHERE a>=2940 AND a<2950;\nUPDATE t1 SET b=b*2 WHERE a>=2950 AND a<2960;\nUPDATE t1 SET b=b*2 WHERE a>=2960 AND a<2970;\nUPDATE t1 SET b=b*2 WHERE a>=2970 AND a<2980;\nUPDATE t1 SET b=b*2 WHERE a>=2980 AND a<2990;\nUPDATE t1 SET b=b*2 WHERE a>=2990 AND a<3000;\nUPDATE t1 SET b=b*2 WHERE a>=3000 AND a<3010;\nUPDATE t1 SET b=b*2 WHERE a>=3010 AND a<3020;\nUPDATE t1 SET b=b*2 WHERE a>=3020 AND a<3030;\nUPDATE t1 SET b=b*2 WHERE a>=3030 AND a<3040;\nUPDATE t1 SET b=b*2 WHERE a>=3040 AND a<3050;\nUPDATE t1 SET b=b*2 WHERE a>=3050 AND a<3060;\nUPDATE t1 SET b=b*2 WHERE a>=3060 AND a<3070;\nUPDATE t1 SET b=b*2 WHERE a>=3070 AND a<3080;\nUPDATE t1 SET b=b*2 WHERE a>=3080 AND a<3090;\nUPDATE t1 SET b=b*2 WHERE a>=3090 AND a<3100;\nUPDATE t1 SET b=b*2 WHERE a>=3100 AND a<3110;\nUPDATE t1 SET b=b*2 WHERE a>=3110 AND a<3120;\nUPDATE t1 SET b=b*2 WHERE a>=3120 AND a<3130;\nUPDATE t1 SET b=b*2 WHERE a>=3130 AND a<3140;\nUPDATE t1 SET b=b*2 WHERE a>=3140 AND a<3150;\nUPDATE t1 SET b=b*2 WHERE a>=3150 AND a<3160;\nUPDATE t1 SET b=b*2 WHERE a>=3160 AND a<3170;\nUPDATE t1 SET b=b*2 WHERE a>=3170 AND a<3180;\nUPDATE t1 SET b=b*2 WHERE a>=3180 AND a<3190;\nUPDATE t1 SET b=b*2 WHERE a>=3190 AND a<3200;\nUPDATE t1 SET b=b*2 WHERE a>=3200 AND a<3210;\nUPDATE t1 SET b=b*2 WHERE a>=3210 AND a<3220;\nUPDATE t1 SET b=b*2 WHERE a>=3220 AND a<3230;\nUPDATE t1 SET b=b*2 WHERE a>=3230 AND a<3240;\nUPDATE t1 SET b=b*2 WHERE a>=3240 AND a<3250;\nUPDATE t1 SET b=b*2 WHERE a>=3250 AND a<3260;\nUPDATE t1 SET b=b*2 WHERE a>=3260 AND a<3270;\nUPDATE t1 SET b=b*2 WHERE a>=3270 AND a<3280;\nUPDATE t1 SET b=b*2 WHERE a>=3280 AND a<3290;\nUPDATE t1 SET b=b*2 WHERE a>=3290 AND a<3300;\nUPDATE t1 SET b=b*2 WHERE a>=3300 AND a<3310;\nUPDATE t1 SET b=b*2 WHERE a>=3310 AND a<3320;\nUPDATE t1 SET b=b*2 WHERE a>=3320 AND a<3330;\nUPDATE t1 SET b=b*2 WHERE a>=3330 AND a<3340;\nUPDATE t1 SET b=b*2 WHERE a>=3340 AND a<3350;\nUPDATE t1 SET b=b*2 WHERE a>=3350 AND a<3360;\nUPDATE t1 SET b=b*2 WHERE a>=3360 AND a<3370;\nUPDATE t1 SET b=b*2 WHERE a>=3370 AND a<3380;\nUPDATE t1 SET b=b*2 WHERE a>=3380 AND a<3390;\nUPDATE t1 SET b=b*2 WHERE a>=3390 AND a<3400;\nUPDATE t1 SET b=b*2 WHERE a>=3400 AND a<3410;\nUPDATE t1 SET b=b*2 WHERE a>=3410 AND a<3420;\nUPDATE t1 SET b=b*2 WHERE a>=3420 AND a<3430;\nUPDATE t1 SET b=b*2 WHERE a>=3430 AND a<3440;\nUPDATE t1 SET b=b*2 WHERE a>=3440 AND a<3450;\nUPDATE t1 SET b=b*2 WHERE a>=3450 AND a<3460;\nUPDATE t1 SET b=b*2 WHERE a>=3460 AND a<3470;\nUPDATE t1 SET b=b*2 WHERE a>=3470 AND a<3480;\nUPDATE t1 SET b=b*2 WHERE a>=3480 AND a<3490;\nUPDATE t1 SET b=b*2 WHERE a>=3490 AND a<3500;\nUPDATE t1 SET b=b*2 WHERE a>=3500 AND a<3510;\nUPDATE t1 SET b=b*2 WHERE a>=3510 AND a<3520;\nUPDATE t1 SET b=b*2 WHERE a>=3520 AND a<3530;\nUPDATE t1 SET b=b*2 WHERE a>=3530 AND a<3540;\nUPDATE t1 SET b=b*2 WHERE a>=3540 AND a<3550;\nUPDATE t1 SET b=b*2 WHERE a>=3550 AND a<3560;\nUPDATE t1 SET b=b*2 WHERE a>=3560 AND a<3570;\nUPDATE t1 SET b=b*2 WHERE a>=3570 AND a<3580;\nUPDATE t1 SET b=b*2 WHERE a>=3580 AND a<3590;\nUPDATE t1 SET b=b*2 WHERE a>=3590 AND a<3600;\nUPDATE t1 SET b=b*2 WHERE a>=3600 AND a<3610;\nUPDATE t1 SET b=b*2 WHERE a>=3610 AND a<3620;\nUPDATE t1 SET b=b*2 WHERE a>=3620 AND a<3630;\nUPDATE t1 SET b=b*2 WHERE a>=3630 AND a<3640;\nUPDATE t1 SET b=b*2 WHERE a>=3640 AND a<3650;\nUPDATE t1 SET b=b*2 WHERE a>=3650 AND a<3660;\nUPDATE t1 SET b=b*2 WHERE a>=3660 AND a<3670;\nUPDATE t1 SET b=b*2 WHERE a>=3670 AND a<3680;\nUPDATE t1 SET b=b*2 WHERE a>=3680 AND a<3690;\nUPDATE t1 SET b=b*2 WHERE a>=3690 AND a<3700;\nUPDATE t1 SET b=b*2 WHERE a>=3700 AND a<3710;\nUPDATE t1 SET b=b*2 WHERE a>=3710 AND a<3720;\nUPDATE t1 SET b=b*2 WHERE a>=3720 AND a<3730;\nUPDATE t1 SET b=b*2 WHERE a>=3730 AND a<3740;\nUPDATE t1 SET b=b*2 WHERE a>=3740 AND a<3750;\nUPDATE t1 SET b=b*2 WHERE a>=3750 AND a<3760;\nUPDATE t1 SET b=b*2 WHERE a>=3760 AND a<3770;\nUPDATE t1 SET b=b*2 WHERE a>=3770 AND a<3780;\nUPDATE t1 SET b=b*2 WHERE a>=3780 AND a<3790;\nUPDATE t1 SET b=b*2 WHERE a>=3790 AND a<3800;\nUPDATE t1 SET b=b*2 WHERE a>=3800 AND a<3810;\nUPDATE t1 SET b=b*2 WHERE a>=3810 AND a<3820;\nUPDATE t1 SET b=b*2 WHERE a>=3820 AND a<3830;\nUPDATE t1 SET b=b*2 WHERE a>=3830 AND a<3840;\nUPDATE t1 SET b=b*2 WHERE a>=3840 AND a<3850;\nUPDATE t1 SET b=b*2 WHERE a>=3850 AND a<3860;\nUPDATE t1 SET b=b*2 WHERE a>=3860 AND a<3870;\nUPDATE t1 SET b=b*2 WHERE a>=3870 AND a<3880;\nUPDATE t1 SET b=b*2 WHERE a>=3880 AND a<3890;\nUPDATE t1 SET b=b*2 WHERE a>=3890 AND a<3900;\nUPDATE t1 SET b=b*2 WHERE a>=3900 AND a<3910;\nUPDATE t1 SET b=b*2 WHERE a>=3910 AND a<3920;\nUPDATE t1 SET b=b*2 WHERE a>=3920 AND a<3930;\nUPDATE t1 SET b=b*2 WHERE a>=3930 AND a<3940;\nUPDATE t1 SET b=b*2 WHERE a>=3940 AND a<3950;\nUPDATE t1 SET b=b*2 WHERE a>=3950 AND a<3960;\nUPDATE t1 SET b=b*2 WHERE a>=3960 AND a<3970;\nUPDATE t1 SET b=b*2 WHERE a>=3970 AND a<3980;\nUPDATE t1 SET b=b*2 WHERE a>=3980 AND a<3990;\nUPDATE t1 SET b=b*2 WHERE a>=3990 AND a<4000;\nUPDATE t1 SET b=b*2 WHERE a>=4000 AND a<4010;\nUPDATE t1 SET b=b*2 WHERE a>=4010 AND a<4020;\nUPDATE t1 SET b=b*2 WHERE a>=4020 AND a<4030;\nUPDATE t1 SET b=b*2 WHERE a>=4030 AND a<4040;\nUPDATE t1 SET b=b*2 WHERE a>=4040 AND a<4050;\nUPDATE t1 SET b=b*2 WHERE a>=4050 AND a<4060;\nUPDATE t1 SET b=b*2 WHERE a>=4060 AND a<4070;\nUPDATE t1 SET b=b*2 WHERE a>=4070 AND a<4080;\nUPDATE t1 SET b=b*2 WHERE a>=4080 AND a<4090;\nUPDATE t1 SET b=b*2 WHERE a>=4090 AND a<4100;\nUPDATE t1 SET b=b*2 WHERE a>=4100 AND a<4110;\nUPDATE t1 SET b=b*2 WHERE a>=4110 AND a<4120;\nUPDATE t1 SET b=b*2 WHERE a>=4120 AND a<4130;\nUPDATE t1 SET b=b*2 WHERE a>=4130 AND a<4140;\nUPDATE t1 SET b=b*2 WHERE a>=4140 AND a<4150;\nUPDATE t1 SET b=b*2 WHERE a>=4150 AND a<4160;\nUPDATE t1 SET b=b*2 WHERE a>=4160 AND a<4170;\nUPDATE t1 SET b=b*2 WHERE a>=4170 AND a<4180;\nUPDATE t1 SET b=b*2 WHERE a>=4180 AND a<4190;\nUPDATE t1 SET b=b*2 WHERE a>=4190 AND a<4200;\nUPDATE t1 SET b=b*2 WHERE a>=4200 AND a<4210;\nUPDATE t1 SET b=b*2 WHERE a>=4210 AND a<4220;\nUPDATE t1 SET b=b*2 WHERE a>=4220 AND a<4230;\nUPDATE t1 SET b=b*2 WHERE a>=4230 AND a<4240;\nUPDATE t1 SET b=b*2 WHERE a>=4240 AND a<4250;\nUPDATE t1 SET b=b*2 WHERE a>=4250 AND a<4260;\nUPDATE t1 SET b=b*2 WHERE a>=4260 AND a<4270;\nUPDATE t1 SET b=b*2 WHERE a>=4270 AND a<4280;\nUPDATE t1 SET b=b*2 WHERE a>=4280 AND a<4290;\nUPDATE t1 SET b=b*2 WHERE a>=4290 AND a<4300;\nUPDATE t1 SET b=b*2 WHERE a>=4300 AND a<4310;\nUPDATE t1 SET b=b*2 WHERE a>=4310 AND a<4320;\nUPDATE t1 SET b=b*2 WHERE a>=4320 AND a<4330;\nUPDATE t1 SET b=b*2 WHERE a>=4330 AND a<4340;\nUPDATE t1 SET b=b*2 WHERE a>=4340 AND a<4350;\nUPDATE t1 SET b=b*2 WHERE a>=4350 AND a<4360;\nUPDATE t1 SET b=b*2 WHERE a>=4360 AND a<4370;\nUPDATE t1 SET b=b*2 WHERE a>=4370 AND a<4380;\nUPDATE t1 SET b=b*2 WHERE a>=4380 AND a<4390;\nUPDATE t1 SET b=b*2 WHERE a>=4390 AND a<4400;\nUPDATE t1 SET b=b*2 WHERE a>=4400 AND a<4410;\nUPDATE t1 SET b=b*2 WHERE a>=4410 AND a<4420;\nUPDATE t1 SET b=b*2 WHERE a>=4420 AND a<4430;\nUPDATE t1 SET b=b*2 WHERE a>=4430 AND a<4440;\nUPDATE t1 SET b=b*2 WHERE a>=4440 AND a<4450;\nUPDATE t1 SET b=b*2 WHERE a>=4450 AND a<4460;\nUPDATE t1 SET b=b*2 WHERE a>=4460 AND a<4470;\nUPDATE t1 SET b=b*2 WHERE a>=4470 AND a<4480;\nUPDATE t1 SET b=b*2 WHERE a>=4480 AND a<4490;\nUPDATE t1 SET b=b*2 WHERE a>=4490 AND a<4500;\nUPDATE t1 SET b=b*2 WHERE a>=4500 AND a<4510;\nUPDATE t1 SET b=b*2 WHERE a>=4510 AND a<4520;\nUPDATE t1 SET b=b*2 WHERE a>=4520 AND a<4530;\nUPDATE t1 SET b=b*2 WHERE a>=4530 AND a<4540;\nUPDATE t1 SET b=b*2 WHERE a>=4540 AND a<4550;\nUPDATE t1 SET b=b*2 WHERE a>=4550 AND a<4560;\nUPDATE t1 SET b=b*2 WHERE a>=4560 AND a<4570;\nUPDATE t1 SET b=b*2 WHERE a>=4570 AND a<4580;\nUPDATE t1 SET b=b*2 WHERE a>=4580 AND a<4590;\nUPDATE t1 SET b=b*2 WHERE a>=4590 AND a<4600;\nUPDATE t1 SET b=b*2 WHERE a>=4600 AND a<4610;\nUPDATE t1 SET b=b*2 WHERE a>=4610 AND a<4620;\nUPDATE t1 SET b=b*2 WHERE a>=4620 AND a<4630;\nUPDATE t1 SET b=b*2 WHERE a>=4630 AND a<4640;\nUPDATE t1 SET b=b*2 WHERE a>=4640 AND a<4650;\nUPDATE t1 SET b=b*2 WHERE a>=4650 AND a<4660;\nUPDATE t1 SET b=b*2 WHERE a>=4660 AND a<4670;\nUPDATE t1 SET b=b*2 WHERE a>=4670 AND a<4680;\nUPDATE t1 SET b=b*2 WHERE a>=4680 AND a<4690;\nUPDATE t1 SET b=b*2 WHERE a>=4690 AND a<4700;\nUPDATE t1 SET b=b*2 WHERE a>=4700 AND a<4710;\nUPDATE t1 SET b=b*2 WHERE a>=4710 AND a<4720;\nUPDATE t1 SET b=b*2 WHERE a>=4720 AND a<4730;\nUPDATE t1 SET b=b*2 WHERE a>=4730 AND a<4740;\nUPDATE t1 SET b=b*2 WHERE a>=4740 AND a<4750;\nUPDATE t1 SET b=b*2 WHERE a>=4750 AND a<4760;\nUPDATE t1 SET b=b*2 WHERE a>=4760 AND a<4770;\nUPDATE t1 SET b=b*2 WHERE a>=4770 AND a<4780;\nUPDATE t1 SET b=b*2 WHERE a>=4780 AND a<4790;\nUPDATE t1 SET b=b*2 WHERE a>=4790 AND a<4800;\nUPDATE t1 SET b=b*2 WHERE a>=4800 AND a<4810;\nUPDATE t1 SET b=b*2 WHERE a>=4810 AND a<4820;\nUPDATE t1 SET b=b*2 WHERE a>=4820 AND a<4830;\nUPDATE t1 SET b=b*2 WHERE a>=4830 AND a<4840;\nUPDATE t1 SET b=b*2 WHERE a>=4840 AND a<4850;\nUPDATE t1 SET b=b*2 WHERE a>=4850 AND a<4860;\nUPDATE t1 SET b=b*2 WHERE a>=4860 AND a<4870;\nUPDATE t1 SET b=b*2 WHERE a>=4870 AND a<4880;\nUPDATE t1 SET b=b*2 WHERE a>=4880 AND a<4890;\nUPDATE t1 SET b=b*2 WHERE a>=4890 AND a<4900;\nUPDATE t1 SET b=b*2 WHERE a>=4900 AND a<4910;\nUPDATE t1 SET b=b*2 WHERE a>=4910 AND a<4920;\nUPDATE t1 SET b=b*2 WHERE a>=4920 AND a<4930;\nUPDATE t1 SET b=b*2 WHERE a>=4930 AND a<4940;\nUPDATE t1 SET b=b*2 WHERE a>=4940 AND a<4950;\nUPDATE t1 SET b=b*2 WHERE a>=4950 AND a<4960;\nUPDATE t1 SET b=b*2 WHERE a>=4960 AND a<4970;\nUPDATE t1 SET b=b*2 WHERE a>=4970 AND a<4980;\nUPDATE t1 SET b=b*2 WHERE a>=4980 AND a<4990;\nUPDATE t1 SET b=b*2 WHERE a>=4990 AND a<5000;\nUPDATE t1 SET b=b*2 WHERE a>=5000 AND a<5010;\nUPDATE t1 SET b=b*2 WHERE a>=5010 AND a<5020;\nUPDATE t1 SET b=b*2 WHERE a>=5020 AND a<5030;\nUPDATE t1 SET b=b*2 WHERE a>=5030 AND a<5040;\nUPDATE t1 SET b=b*2 WHERE a>=5040 AND a<5050;\nUPDATE t1 SET b=b*2 WHERE a>=5050 AND a<5060;\nUPDATE t1 SET b=b*2 WHERE a>=5060 AND a<5070;\nUPDATE t1 SET b=b*2 WHERE a>=5070 AND a<5080;\nUPDATE t1 SET b=b*2 WHERE a>=5080 AND a<5090;\nUPDATE t1 SET b=b*2 WHERE a>=5090 AND a<5100;\nUPDATE t1 SET b=b*2 WHERE a>=5100 AND a<5110;\nUPDATE t1 SET b=b*2 WHERE a>=5110 AND a<5120;\nUPDATE t1 SET b=b*2 WHERE a>=5120 AND a<5130;\nUPDATE t1 SET b=b*2 WHERE a>=5130 AND a<5140;\nUPDATE t1 SET b=b*2 WHERE a>=5140 AND a<5150;\nUPDATE t1 SET b=b*2 WHERE a>=5150 AND a<5160;\nUPDATE t1 SET b=b*2 WHERE a>=5160 AND a<5170;\nUPDATE t1 SET b=b*2 WHERE a>=5170 AND a<5180;\nUPDATE t1 SET b=b*2 WHERE a>=5180 AND a<5190;\nUPDATE t1 SET b=b*2 WHERE a>=5190 AND a<5200;\nUPDATE t1 SET b=b*2 WHERE a>=5200 AND a<5210;\nUPDATE t1 SET b=b*2 WHERE a>=5210 AND a<5220;\nUPDATE t1 SET b=b*2 WHERE a>=5220 AND a<5230;\nUPDATE t1 SET b=b*2 WHERE a>=5230 AND a<5240;\nUPDATE t1 SET b=b*2 WHERE a>=5240 AND a<5250;\nUPDATE t1 SET b=b*2 WHERE a>=5250 AND a<5260;\nUPDATE t1 SET b=b*2 WHERE a>=5260 AND a<5270;\nUPDATE t1 SET b=b*2 WHERE a>=5270 AND a<5280;\nUPDATE t1 SET b=b*2 WHERE a>=5280 AND a<5290;\nUPDATE t1 SET b=b*2 WHERE a>=5290 AND a<5300;\nUPDATE t1 SET b=b*2 WHERE a>=5300 AND a<5310;\nUPDATE t1 SET b=b*2 WHERE a>=5310 AND a<5320;\nUPDATE t1 SET b=b*2 WHERE a>=5320 AND a<5330;\nUPDATE t1 SET b=b*2 WHERE a>=5330 AND a<5340;\nUPDATE t1 SET b=b*2 WHERE a>=5340 AND a<5350;\nUPDATE t1 SET b=b*2 WHERE a>=5350 AND a<5360;\nUPDATE t1 SET b=b*2 WHERE a>=5360 AND a<5370;\nUPDATE t1 SET b=b*2 WHERE a>=5370 AND a<5380;\nUPDATE t1 SET b=b*2 WHERE a>=5380 AND a<5390;\nUPDATE t1 SET b=b*2 WHERE a>=5390 AND a<5400;\nUPDATE t1 SET b=b*2 WHERE a>=5400 AND a<5410;\nUPDATE t1 SET b=b*2 WHERE a>=5410 AND a<5420;\nUPDATE t1 SET b=b*2 WHERE a>=5420 AND a<5430;\nUPDATE t1 SET b=b*2 WHERE a>=5430 AND a<5440;\nUPDATE t1 SET b=b*2 WHERE a>=5440 AND a<5450;\nUPDATE t1 SET b=b*2 WHERE a>=5450 AND a<5460;\nUPDATE t1 SET b=b*2 WHERE a>=5460 AND a<5470;\nUPDATE t1 SET b=b*2 WHERE a>=5470 AND a<5480;\nUPDATE t1 SET b=b*2 WHERE a>=5480 AND a<5490;\nUPDATE t1 SET b=b*2 WHERE a>=5490 AND a<5500;\nUPDATE t1 SET b=b*2 WHERE a>=5500 AND a<5510;\nUPDATE t1 SET b=b*2 WHERE a>=5510 AND a<5520;\nUPDATE t1 SET b=b*2 WHERE a>=5520 AND a<5530;\nUPDATE t1 SET b=b*2 WHERE a>=5530 AND a<5540;\nUPDATE t1 SET b=b*2 WHERE a>=5540 AND a<5550;\nUPDATE t1 SET b=b*2 WHERE a>=5550 AND a<5560;\nUPDATE t1 SET b=b*2 WHERE a>=5560 AND a<5570;\nUPDATE t1 SET b=b*2 WHERE a>=5570 AND a<5580;\nUPDATE t1 SET b=b*2 WHERE a>=5580 AND a<5590;\nUPDATE t1 SET b=b*2 WHERE a>=5590 AND a<5600;\nUPDATE t1 SET b=b*2 WHERE a>=5600 AND a<5610;\nUPDATE t1 SET b=b*2 WHERE a>=5610 AND a<5620;\nUPDATE t1 SET b=b*2 WHERE a>=5620 AND a<5630;\nUPDATE t1 SET b=b*2 WHERE a>=5630 AND a<5640;\nUPDATE t1 SET b=b*2 WHERE a>=5640 AND a<5650;\nUPDATE t1 SET b=b*2 WHERE a>=5650 AND a<5660;\nUPDATE t1 SET b=b*2 WHERE a>=5660 AND a<5670;\nUPDATE t1 SET b=b*2 WHERE a>=5670 AND a<5680;\nUPDATE t1 SET b=b*2 WHERE a>=5680 AND a<5690;\nUPDATE t1 SET b=b*2 WHERE a>=5690 AND a<5700;\nUPDATE t1 SET b=b*2 WHERE a>=5700 AND a<5710;\nUPDATE t1 SET b=b*2 WHERE a>=5710 AND a<5720;\nUPDATE t1 SET b=b*2 WHERE a>=5720 AND a<5730;\nUPDATE t1 SET b=b*2 WHERE a>=5730 AND a<5740;\nUPDATE t1 SET b=b*2 WHERE a>=5740 AND a<5750;\nUPDATE t1 SET b=b*2 WHERE a>=5750 AND a<5760;\nUPDATE t1 SET b=b*2 WHERE a>=5760 AND a<5770;\nUPDATE t1 SET b=b*2 WHERE a>=5770 AND a<5780;\nUPDATE t1 SET b=b*2 WHERE a>=5780 AND a<5790;\nUPDATE t1 SET b=b*2 WHERE a>=5790 AND a<5800;\nUPDATE t1 SET b=b*2 WHERE a>=5800 AND a<5810;\nUPDATE t1 SET b=b*2 WHERE a>=5810 AND a<5820;\nUPDATE t1 SET b=b*2 WHERE a>=5820 AND a<5830;\nUPDATE t1 SET b=b*2 WHERE a>=5830 AND a<5840;\nUPDATE t1 SET b=b*2 WHERE a>=5840 AND a<5850;\nUPDATE t1 SET b=b*2 WHERE a>=5850 AND a<5860;\nUPDATE t1 SET b=b*2 WHERE a>=5860 AND a<5870;\nUPDATE t1 SET b=b*2 WHERE a>=5870 AND a<5880;\nUPDATE t1 SET b=b*2 WHERE a>=5880 AND a<5890;\nUPDATE t1 SET b=b*2 WHERE a>=5890 AND a<5900;\nUPDATE t1 SET b=b*2 WHERE a>=5900 AND a<5910;\nUPDATE t1 SET b=b*2 WHERE a>=5910 AND a<5920;\nUPDATE t1 SET b=b*2 WHERE a>=5920 AND a<5930;\nUPDATE t1 SET b=b*2 WHERE a>=5930 AND a<5940;\nUPDATE t1 SET b=b*2 WHERE a>=5940 AND a<5950;\nUPDATE t1 SET b=b*2 WHERE a>=5950 AND a<5960;\nUPDATE t1 SET b=b*2 WHERE a>=5960 AND a<5970;\nUPDATE t1 SET b=b*2 WHERE a>=5970 AND a<5980;\nUPDATE t1 SET b=b*2 WHERE a>=5980 AND a<5990;\nUPDATE t1 SET b=b*2 WHERE a>=5990 AND a<6000;\nUPDATE t1 SET b=b*2 WHERE a>=6000 AND a<6010;\nUPDATE t1 SET b=b*2 WHERE a>=6010 AND a<6020;\nUPDATE t1 SET b=b*2 WHERE a>=6020 AND a<6030;\nUPDATE t1 SET b=b*2 WHERE a>=6030 AND a<6040;\nUPDATE t1 SET b=b*2 WHERE a>=6040 AND a<6050;\nUPDATE t1 SET b=b*2 WHERE a>=6050 AND a<6060;\nUPDATE t1 SET b=b*2 WHERE a>=6060 AND a<6070;\nUPDATE t1 SET b=b*2 WHERE a>=6070 AND a<6080;\nUPDATE t1 SET b=b*2 WHERE a>=6080 AND a<6090;\nUPDATE t1 SET b=b*2 WHERE a>=6090 AND a<6100;\nUPDATE t1 SET b=b*2 WHERE a>=6100 AND a<6110;\nUPDATE t1 SET b=b*2 WHERE a>=6110 AND a<6120;\nUPDATE t1 SET b=b*2 WHERE a>=6120 AND a<6130;\nUPDATE t1 SET b=b*2 WHERE a>=6130 AND a<6140;\nUPDATE t1 SET b=b*2 WHERE a>=6140 AND a<6150;\nUPDATE t1 SET b=b*2 WHERE a>=6150 AND a<6160;\nUPDATE t1 SET b=b*2 WHERE a>=6160 AND a<6170;\nUPDATE t1 SET b=b*2 WHERE a>=6170 AND a<6180;\nUPDATE t1 SET b=b*2 WHERE a>=6180 AND a<6190;\nUPDATE t1 SET b=b*2 WHERE a>=6190 AND a<6200;\nUPDATE t1 SET b=b*2 WHERE a>=6200 AND a<6210;\nUPDATE t1 SET b=b*2 WHERE a>=6210 AND a<6220;\nUPDATE t1 SET b=b*2 WHERE a>=6220 AND a<6230;\nUPDATE t1 SET b=b*2 WHERE a>=6230 AND a<6240;\nUPDATE t1 SET b=b*2 WHERE a>=6240 AND a<6250;\nUPDATE t1 SET b=b*2 WHERE a>=6250 AND a<6260;\nUPDATE t1 SET b=b*2 WHERE a>=6260 AND a<6270;\nUPDATE t1 SET b=b*2 WHERE a>=6270 AND a<6280;\nUPDATE t1 SET b=b*2 WHERE a>=6280 AND a<6290;\nUPDATE t1 SET b=b*2 WHERE a>=6290 AND a<6300;\nUPDATE t1 SET b=b*2 WHERE a>=6300 AND a<6310;\nUPDATE t1 SET b=b*2 WHERE a>=6310 AND a<6320;\nUPDATE t1 SET b=b*2 WHERE a>=6320 AND a<6330;\nUPDATE t1 SET b=b*2 WHERE a>=6330 AND a<6340;\nUPDATE t1 SET b=b*2 WHERE a>=6340 AND a<6350;\nUPDATE t1 SET b=b*2 WHERE a>=6350 AND a<6360;\nUPDATE t1 SET b=b*2 WHERE a>=6360 AND a<6370;\nUPDATE t1 SET b=b*2 WHERE a>=6370 AND a<6380;\nUPDATE t1 SET b=b*2 WHERE a>=6380 AND a<6390;\nUPDATE t1 SET b=b*2 WHERE a>=6390 AND a<6400;\nUPDATE t1 SET b=b*2 WHERE a>=6400 AND a<6410;\nUPDATE t1 SET b=b*2 WHERE a>=6410 AND a<6420;\nUPDATE t1 SET b=b*2 WHERE a>=6420 AND a<6430;\nUPDATE t1 SET b=b*2 WHERE a>=6430 AND a<6440;\nUPDATE t1 SET b=b*2 WHERE a>=6440 AND a<6450;\nUPDATE t1 SET b=b*2 WHERE a>=6450 AND a<6460;\nUPDATE t1 SET b=b*2 WHERE a>=6460 AND a<6470;\nUPDATE t1 SET b=b*2 WHERE a>=6470 AND a<6480;\nUPDATE t1 SET b=b*2 WHERE a>=6480 AND a<6490;\nUPDATE t1 SET b=b*2 WHERE a>=6490 AND a<6500;\nUPDATE t1 SET b=b*2 WHERE a>=6500 AND a<6510;\nUPDATE t1 SET b=b*2 WHERE a>=6510 AND a<6520;\nUPDATE t1 SET b=b*2 WHERE a>=6520 AND a<6530;\nUPDATE t1 SET b=b*2 WHERE a>=6530 AND a<6540;\nUPDATE t1 SET b=b*2 WHERE a>=6540 AND a<6550;\nUPDATE t1 SET b=b*2 WHERE a>=6550 AND a<6560;\nUPDATE t1 SET b=b*2 WHERE a>=6560 AND a<6570;\nUPDATE t1 SET b=b*2 WHERE a>=6570 AND a<6580;\nUPDATE t1 SET b=b*2 WHERE a>=6580 AND a<6590;\nUPDATE t1 SET b=b*2 WHERE a>=6590 AND a<6600;\nUPDATE t1 SET b=b*2 WHERE a>=6600 AND a<6610;\nUPDATE t1 SET b=b*2 WHERE a>=6610 AND a<6620;\nUPDATE t1 SET b=b*2 WHERE a>=6620 AND a<6630;\nUPDATE t1 SET b=b*2 WHERE a>=6630 AND a<6640;\nUPDATE t1 SET b=b*2 WHERE a>=6640 AND a<6650;\nUPDATE t1 SET b=b*2 WHERE a>=6650 AND a<6660;\nUPDATE t1 SET b=b*2 WHERE a>=6660 AND a<6670;\nUPDATE t1 SET b=b*2 WHERE a>=6670 AND a<6680;\nUPDATE t1 SET b=b*2 WHERE a>=6680 AND a<6690;\nUPDATE t1 SET b=b*2 WHERE a>=6690 AND a<6700;\nUPDATE t1 SET b=b*2 WHERE a>=6700 AND a<6710;\nUPDATE t1 SET b=b*2 WHERE a>=6710 AND a<6720;\nUPDATE t1 SET b=b*2 WHERE a>=6720 AND a<6730;\nUPDATE t1 SET b=b*2 WHERE a>=6730 AND a<6740;\nUPDATE t1 SET b=b*2 WHERE a>=6740 AND a<6750;\nUPDATE t1 SET b=b*2 WHERE a>=6750 AND a<6760;\nUPDATE t1 SET b=b*2 WHERE a>=6760 AND a<6770;\nUPDATE t1 SET b=b*2 WHERE a>=6770 AND a<6780;\nUPDATE t1 SET b=b*2 WHERE a>=6780 AND a<6790;\nUPDATE t1 SET b=b*2 WHERE a>=6790 AND a<6800;\nUPDATE t1 SET b=b*2 WHERE a>=6800 AND a<6810;\nUPDATE t1 SET b=b*2 WHERE a>=6810 AND a<6820;\nUPDATE t1 SET b=b*2 WHERE a>=6820 AND a<6830;\nUPDATE t1 SET b=b*2 WHERE a>=6830 AND a<6840;\nUPDATE t1 SET b=b*2 WHERE a>=6840 AND a<6850;\nUPDATE t1 SET b=b*2 WHERE a>=6850 AND a<6860;\nUPDATE t1 SET b=b*2 WHERE a>=6860 AND a<6870;\nUPDATE t1 SET b=b*2 WHERE a>=6870 AND a<6880;\nUPDATE t1 SET b=b*2 WHERE a>=6880 AND a<6890;\nUPDATE t1 SET b=b*2 WHERE a>=6890 AND a<6900;\nUPDATE t1 SET b=b*2 WHERE a>=6900 AND a<6910;\nUPDATE t1 SET b=b*2 WHERE a>=6910 AND a<6920;\nUPDATE t1 SET b=b*2 WHERE a>=6920 AND a<6930;\nUPDATE t1 SET b=b*2 WHERE a>=6930 AND a<6940;\nUPDATE t1 SET b=b*2 WHERE a>=6940 AND a<6950;\nUPDATE t1 SET b=b*2 WHERE a>=6950 AND a<6960;\nUPDATE t1 SET b=b*2 WHERE a>=6960 AND a<6970;\nUPDATE t1 SET b=b*2 WHERE a>=6970 AND a<6980;\nUPDATE t1 SET b=b*2 WHERE a>=6980 AND a<6990;\nUPDATE t1 SET b=b*2 WHERE a>=6990 AND a<7000;\nUPDATE t1 SET b=b*2 WHERE a>=7000 AND a<7010;\nUPDATE t1 SET b=b*2 WHERE a>=7010 AND a<7020;\nUPDATE t1 SET b=b*2 WHERE a>=7020 AND a<7030;\nUPDATE t1 SET b=b*2 WHERE a>=7030 AND a<7040;\nUPDATE t1 SET b=b*2 WHERE a>=7040 AND a<7050;\nUPDATE t1 SET b=b*2 WHERE a>=7050 AND a<7060;\nUPDATE t1 SET b=b*2 WHERE a>=7060 AND a<7070;\nUPDATE t1 SET b=b*2 WHERE a>=7070 AND a<7080;\nUPDATE t1 SET b=b*2 WHERE a>=7080 AND a<7090;\nUPDATE t1 SET b=b*2 WHERE a>=7090 AND a<7100;\nUPDATE t1 SET b=b*2 WHERE a>=7100 AND a<7110;\nUPDATE t1 SET b=b*2 WHERE a>=7110 AND a<7120;\nUPDATE t1 SET b=b*2 WHERE a>=7120 AND a<7130;\nUPDATE t1 SET b=b*2 WHERE a>=7130 AND a<7140;\nUPDATE t1 SET b=b*2 WHERE a>=7140 AND a<7150;\nUPDATE t1 SET b=b*2 WHERE a>=7150 AND a<7160;\nUPDATE t1 SET b=b*2 WHERE a>=7160 AND a<7170;\nUPDATE t1 SET b=b*2 WHERE a>=7170 AND a<7180;\nUPDATE t1 SET b=b*2 WHERE a>=7180 AND a<7190;\nUPDATE t1 SET b=b*2 WHERE a>=7190 AND a<7200;\nUPDATE t1 SET b=b*2 WHERE a>=7200 AND a<7210;\nUPDATE t1 SET b=b*2 WHERE a>=7210 AND a<7220;\nUPDATE t1 SET b=b*2 WHERE a>=7220 AND a<7230;\nUPDATE t1 SET b=b*2 WHERE a>=7230 AND a<7240;\nUPDATE t1 SET b=b*2 WHERE a>=7240 AND a<7250;\nUPDATE t1 SET b=b*2 WHERE a>=7250 AND a<7260;\nUPDATE t1 SET b=b*2 WHERE a>=7260 AND a<7270;\nUPDATE t1 SET b=b*2 WHERE a>=7270 AND a<7280;\nUPDATE t1 SET b=b*2 WHERE a>=7280 AND a<7290;\nUPDATE t1 SET b=b*2 WHERE a>=7290 AND a<7300;\nUPDATE t1 SET b=b*2 WHERE a>=7300 AND a<7310;\nUPDATE t1 SET b=b*2 WHERE a>=7310 AND a<7320;\nUPDATE t1 SET b=b*2 WHERE a>=7320 AND a<7330;\nUPDATE t1 SET b=b*2 WHERE a>=7330 AND a<7340;\nUPDATE t1 SET b=b*2 WHERE a>=7340 AND a<7350;\nUPDATE t1 SET b=b*2 WHERE a>=7350 AND a<7360;\nUPDATE t1 SET b=b*2 WHERE a>=7360 AND a<7370;\nUPDATE t1 SET b=b*2 WHERE a>=7370 AND a<7380;\nUPDATE t1 SET b=b*2 WHERE a>=7380 AND a<7390;\nUPDATE t1 SET b=b*2 WHERE a>=7390 AND a<7400;\nUPDATE t1 SET b=b*2 WHERE a>=7400 AND a<7410;\nUPDATE t1 SET b=b*2 WHERE a>=7410 AND a<7420;\nUPDATE t1 SET b=b*2 WHERE a>=7420 AND a<7430;\nUPDATE t1 SET b=b*2 WHERE a>=7430 AND a<7440;\nUPDATE t1 SET b=b*2 WHERE a>=7440 AND a<7450;\nUPDATE t1 SET b=b*2 WHERE a>=7450 AND a<7460;\nUPDATE t1 SET b=b*2 WHERE a>=7460 AND a<7470;\nUPDATE t1 SET b=b*2 WHERE a>=7470 AND a<7480;\nUPDATE t1 SET b=b*2 WHERE a>=7480 AND a<7490;\nUPDATE t1 SET b=b*2 WHERE a>=7490 AND a<7500;\nUPDATE t1 SET b=b*2 WHERE a>=7500 AND a<7510;\nUPDATE t1 SET b=b*2 WHERE a>=7510 AND a<7520;\nUPDATE t1 SET b=b*2 WHERE a>=7520 AND a<7530;\nUPDATE t1 SET b=b*2 WHERE a>=7530 AND a<7540;\nUPDATE t1 SET b=b*2 WHERE a>=7540 AND a<7550;\nUPDATE t1 SET b=b*2 WHERE a>=7550 AND a<7560;\nUPDATE t1 SET b=b*2 WHERE a>=7560 AND a<7570;\nUPDATE t1 SET b=b*2 WHERE a>=7570 AND a<7580;\nUPDATE t1 SET b=b*2 WHERE a>=7580 AND a<7590;\nUPDATE t1 SET b=b*2 WHERE a>=7590 AND a<7600;\nUPDATE t1 SET b=b*2 WHERE a>=7600 AND a<7610;\nUPDATE t1 SET b=b*2 WHERE a>=7610 AND a<7620;\nUPDATE t1 SET b=b*2 WHERE a>=7620 AND a<7630;\nUPDATE t1 SET b=b*2 WHERE a>=7630 AND a<7640;\nUPDATE t1 SET b=b*2 WHERE a>=7640 AND a<7650;\nUPDATE t1 SET b=b*2 WHERE a>=7650 AND a<7660;\nUPDATE t1 SET b=b*2 WHERE a>=7660 AND a<7670;\nUPDATE t1 SET b=b*2 WHERE a>=7670 AND a<7680;\nUPDATE t1 SET b=b*2 WHERE a>=7680 AND a<7690;\nUPDATE t1 SET b=b*2 WHERE a>=7690 AND a<7700;\nUPDATE t1 SET b=b*2 WHERE a>=7700 AND a<7710;\nUPDATE t1 SET b=b*2 WHERE a>=7710 AND a<7720;\nUPDATE t1 SET b=b*2 WHERE a>=7720 AND a<7730;\nUPDATE t1 SET b=b*2 WHERE a>=7730 AND a<7740;\nUPDATE t1 SET b=b*2 WHERE a>=7740 AND a<7750;\nUPDATE t1 SET b=b*2 WHERE a>=7750 AND a<7760;\nUPDATE t1 SET b=b*2 WHERE a>=7760 AND a<7770;\nUPDATE t1 SET b=b*2 WHERE a>=7770 AND a<7780;\nUPDATE t1 SET b=b*2 WHERE a>=7780 AND a<7790;\nUPDATE t1 SET b=b*2 WHERE a>=7790 AND a<7800;\nUPDATE t1 SET b=b*2 WHERE a>=7800 AND a<7810;\nUPDATE t1 SET b=b*2 WHERE a>=7810 AND a<7820;\nUPDATE t1 SET b=b*2 WHERE a>=7820 AND a<7830;\nUPDATE t1 SET b=b*2 WHERE a>=7830 AND a<7840;\nUPDATE t1 SET b=b*2 WHERE a>=7840 AND a<7850;\nUPDATE t1 SET b=b*2 WHERE a>=7850 AND a<7860;\nUPDATE t1 SET b=b*2 WHERE a>=7860 AND a<7870;\nUPDATE t1 SET b=b*2 WHERE a>=7870 AND a<7880;\nUPDATE t1 SET b=b*2 WHERE a>=7880 AND a<7890;\nUPDATE t1 SET b=b*2 WHERE a>=7890 AND a<7900;\nUPDATE t1 SET b=b*2 WHERE a>=7900 AND a<7910;\nUPDATE t1 SET b=b*2 WHERE a>=7910 AND a<7920;\nUPDATE t1 SET b=b*2 WHERE a>=7920 AND a<7930;\nUPDATE t1 SET b=b*2 WHERE a>=7930 AND a<7940;\nUPDATE t1 SET b=b*2 WHERE a>=7940 AND a<7950;\nUPDATE t1 SET b=b*2 WHERE a>=7950 AND a<7960;\nUPDATE t1 SET b=b*2 WHERE a>=7960 AND a<7970;\nUPDATE t1 SET b=b*2 WHERE a>=7970 AND a<7980;\nUPDATE t1 SET b=b*2 WHERE a>=7980 AND a<7990;\nUPDATE t1 SET b=b*2 WHERE a>=7990 AND a<8000;\nUPDATE t1 SET b=b*2 WHERE a>=8000 AND a<8010;\nUPDATE t1 SET b=b*2 WHERE a>=8010 AND a<8020;\nUPDATE t1 SET b=b*2 WHERE a>=8020 AND a<8030;\nUPDATE t1 SET b=b*2 WHERE a>=8030 AND a<8040;\nUPDATE t1 SET b=b*2 WHERE a>=8040 AND a<8050;\nUPDATE t1 SET b=b*2 WHERE a>=8050 AND a<8060;\nUPDATE t1 SET b=b*2 WHERE a>=8060 AND a<8070;\nUPDATE t1 SET b=b*2 WHERE a>=8070 AND a<8080;\nUPDATE t1 SET b=b*2 WHERE a>=8080 AND a<8090;\nUPDATE t1 SET b=b*2 WHERE a>=8090 AND a<8100;\nUPDATE t1 SET b=b*2 WHERE a>=8100 AND a<8110;\nUPDATE t1 SET b=b*2 WHERE a>=8110 AND a<8120;\nUPDATE t1 SET b=b*2 WHERE a>=8120 AND a<8130;\nUPDATE t1 SET b=b*2 WHERE a>=8130 AND a<8140;\nUPDATE t1 SET b=b*2 WHERE a>=8140 AND a<8150;\nUPDATE t1 SET b=b*2 WHERE a>=8150 AND a<8160;\nUPDATE t1 SET b=b*2 WHERE a>=8160 AND a<8170;\nUPDATE t1 SET b=b*2 WHERE a>=8170 AND a<8180;\nUPDATE t1 SET b=b*2 WHERE a>=8180 AND a<8190;\nUPDATE t1 SET b=b*2 WHERE a>=8190 AND a<8200;\nUPDATE t1 SET b=b*2 WHERE a>=8200 AND a<8210;\nUPDATE t1 SET b=b*2 WHERE a>=8210 AND a<8220;\nUPDATE t1 SET b=b*2 WHERE a>=8220 AND a<8230;\nUPDATE t1 SET b=b*2 WHERE a>=8230 AND a<8240;\nUPDATE t1 SET b=b*2 WHERE a>=8240 AND a<8250;\nUPDATE t1 SET b=b*2 WHERE a>=8250 AND a<8260;\nUPDATE t1 SET b=b*2 WHERE a>=8260 AND a<8270;\nUPDATE t1 SET b=b*2 WHERE a>=8270 AND a<8280;\nUPDATE t1 SET b=b*2 WHERE a>=8280 AND a<8290;\nUPDATE t1 SET b=b*2 WHERE a>=8290 AND a<8300;\nUPDATE t1 SET b=b*2 WHERE a>=8300 AND a<8310;\nUPDATE t1 SET b=b*2 WHERE a>=8310 AND a<8320;\nUPDATE t1 SET b=b*2 WHERE a>=8320 AND a<8330;\nUPDATE t1 SET b=b*2 WHERE a>=8330 AND a<8340;\nUPDATE t1 SET b=b*2 WHERE a>=8340 AND a<8350;\nUPDATE t1 SET b=b*2 WHERE a>=8350 AND a<8360;\nUPDATE t1 SET b=b*2 WHERE a>=8360 AND a<8370;\nUPDATE t1 SET b=b*2 WHERE a>=8370 AND a<8380;\nUPDATE t1 SET b=b*2 WHERE a>=8380 AND a<8390;\nUPDATE t1 SET b=b*2 WHERE a>=8390 AND a<8400;\nUPDATE t1 SET b=b*2 WHERE a>=8400 AND a<8410;\nUPDATE t1 SET b=b*2 WHERE a>=8410 AND a<8420;\nUPDATE t1 SET b=b*2 WHERE a>=8420 AND a<8430;\nUPDATE t1 SET b=b*2 WHERE a>=8430 AND a<8440;\nUPDATE t1 SET b=b*2 WHERE a>=8440 AND a<8450;\nUPDATE t1 SET b=b*2 WHERE a>=8450 AND a<8460;\nUPDATE t1 SET b=b*2 WHERE a>=8460 AND a<8470;\nUPDATE t1 SET b=b*2 WHERE a>=8470 AND a<8480;\nUPDATE t1 SET b=b*2 WHERE a>=8480 AND a<8490;\nUPDATE t1 SET b=b*2 WHERE a>=8490 AND a<8500;\nUPDATE t1 SET b=b*2 WHERE a>=8500 AND a<8510;\nUPDATE t1 SET b=b*2 WHERE a>=8510 AND a<8520;\nUPDATE t1 SET b=b*2 WHERE a>=8520 AND a<8530;\nUPDATE t1 SET b=b*2 WHERE a>=8530 AND a<8540;\nUPDATE t1 SET b=b*2 WHERE a>=8540 AND a<8550;\nUPDATE t1 SET b=b*2 WHERE a>=8550 AND a<8560;\nUPDATE t1 SET b=b*2 WHERE a>=8560 AND a<8570;\nUPDATE t1 SET b=b*2 WHERE a>=8570 AND a<8580;\nUPDATE t1 SET b=b*2 WHERE a>=8580 AND a<8590;\nUPDATE t1 SET b=b*2 WHERE a>=8590 AND a<8600;\nUPDATE t1 SET b=b*2 WHERE a>=8600 AND a<8610;\nUPDATE t1 SET b=b*2 WHERE a>=8610 AND a<8620;\nUPDATE t1 SET b=b*2 WHERE a>=8620 AND a<8630;\nUPDATE t1 SET b=b*2 WHERE a>=8630 AND a<8640;\nUPDATE t1 SET b=b*2 WHERE a>=8640 AND a<8650;\nUPDATE t1 SET b=b*2 WHERE a>=8650 AND a<8660;\nUPDATE t1 SET b=b*2 WHERE a>=8660 AND a<8670;\nUPDATE t1 SET b=b*2 WHERE a>=8670 AND a<8680;\nUPDATE t1 SET b=b*2 WHERE a>=8680 AND a<8690;\nUPDATE t1 SET b=b*2 WHERE a>=8690 AND a<8700;\nUPDATE t1 SET b=b*2 WHERE a>=8700 AND a<8710;\nUPDATE t1 SET b=b*2 WHERE a>=8710 AND a<8720;\nUPDATE t1 SET b=b*2 WHERE a>=8720 AND a<8730;\nUPDATE t1 SET b=b*2 WHERE a>=8730 AND a<8740;\nUPDATE t1 SET b=b*2 WHERE a>=8740 AND a<8750;\nUPDATE t1 SET b=b*2 WHERE a>=8750 AND a<8760;\nUPDATE t1 SET b=b*2 WHERE a>=8760 AND a<8770;\nUPDATE t1 SET b=b*2 WHERE a>=8770 AND a<8780;\nUPDATE t1 SET b=b*2 WHERE a>=8780 AND a<8790;\nUPDATE t1 SET b=b*2 WHERE a>=8790 AND a<8800;\nUPDATE t1 SET b=b*2 WHERE a>=8800 AND a<8810;\nUPDATE t1 SET b=b*2 WHERE a>=8810 AND a<8820;\nUPDATE t1 SET b=b*2 WHERE a>=8820 AND a<8830;\nUPDATE t1 SET b=b*2 WHERE a>=8830 AND a<8840;\nUPDATE t1 SET b=b*2 WHERE a>=8840 AND a<8850;\nUPDATE t1 SET b=b*2 WHERE a>=8850 AND a<8860;\nUPDATE t1 SET b=b*2 WHERE a>=8860 AND a<8870;\nUPDATE t1 SET b=b*2 WHERE a>=8870 AND a<8880;\nUPDATE t1 SET b=b*2 WHERE a>=8880 AND a<8890;\nUPDATE t1 SET b=b*2 WHERE a>=8890 AND a<8900;\nUPDATE t1 SET b=b*2 WHERE a>=8900 AND a<8910;\nUPDATE t1 SET b=b*2 WHERE a>=8910 AND a<8920;\nUPDATE t1 SET b=b*2 WHERE a>=8920 AND a<8930;\nUPDATE t1 SET b=b*2 WHERE a>=8930 AND a<8940;\nUPDATE t1 SET b=b*2 WHERE a>=8940 AND a<8950;\nUPDATE t1 SET b=b*2 WHERE a>=8950 AND a<8960;\nUPDATE t1 SET b=b*2 WHERE a>=8960 AND a<8970;\nUPDATE t1 SET b=b*2 WHERE a>=8970 AND a<8980;\nUPDATE t1 SET b=b*2 WHERE a>=8980 AND a<8990;\nUPDATE t1 SET b=b*2 WHERE a>=8990 AND a<9000;\nUPDATE t1 SET b=b*2 WHERE a>=9000 AND a<9010;\nUPDATE t1 SET b=b*2 WHERE a>=9010 AND a<9020;\nUPDATE t1 SET b=b*2 WHERE a>=9020 AND a<9030;\nUPDATE t1 SET b=b*2 WHERE a>=9030 AND a<9040;\nUPDATE t1 SET b=b*2 WHERE a>=9040 AND a<9050;\nUPDATE t1 SET b=b*2 WHERE a>=9050 AND a<9060;\nUPDATE t1 SET b=b*2 WHERE a>=9060 AND a<9070;\nUPDATE t1 SET b=b*2 WHERE a>=9070 AND a<9080;\nUPDATE t1 SET b=b*2 WHERE a>=9080 AND a<9090;\nUPDATE t1 SET b=b*2 WHERE a>=9090 AND a<9100;\nUPDATE t1 SET b=b*2 WHERE a>=9100 AND a<9110;\nUPDATE t1 SET b=b*2 WHERE a>=9110 AND a<9120;\nUPDATE t1 SET b=b*2 WHERE a>=9120 AND a<9130;\nUPDATE t1 SET b=b*2 WHERE a>=9130 AND a<9140;\nUPDATE t1 SET b=b*2 WHERE a>=9140 AND a<9150;\nUPDATE t1 SET b=b*2 WHERE a>=9150 AND a<9160;\nUPDATE t1 SET b=b*2 WHERE a>=9160 AND a<9170;\nUPDATE t1 SET b=b*2 WHERE a>=9170 AND a<9180;\nUPDATE t1 SET b=b*2 WHERE a>=9180 AND a<9190;\nUPDATE t1 SET b=b*2 WHERE a>=9190 AND a<9200;\nUPDATE t1 SET b=b*2 WHERE a>=9200 AND a<9210;\nUPDATE t1 SET b=b*2 WHERE a>=9210 AND a<9220;\nUPDATE t1 SET b=b*2 WHERE a>=9220 AND a<9230;\nUPDATE t1 SET b=b*2 WHERE a>=9230 AND a<9240;\nUPDATE t1 SET b=b*2 WHERE a>=9240 AND a<9250;\nUPDATE t1 SET b=b*2 WHERE a>=9250 AND a<9260;\nUPDATE t1 SET b=b*2 WHERE a>=9260 AND a<9270;\nUPDATE t1 SET b=b*2 WHERE a>=9270 AND a<9280;\nUPDATE t1 SET b=b*2 WHERE a>=9280 AND a<9290;\nUPDATE t1 SET b=b*2 WHERE a>=9290 AND a<9300;\nUPDATE t1 SET b=b*2 WHERE a>=9300 AND a<9310;\nUPDATE t1 SET b=b*2 WHERE a>=9310 AND a<9320;\nUPDATE t1 SET b=b*2 WHERE a>=9320 AND a<9330;\nUPDATE t1 SET b=b*2 WHERE a>=9330 AND a<9340;\nUPDATE t1 SET b=b*2 WHERE a>=9340 AND a<9350;\nUPDATE t1 SET b=b*2 WHERE a>=9350 AND a<9360;\nUPDATE t1 SET b=b*2 WHERE a>=9360 AND a<9370;\nUPDATE t1 SET b=b*2 WHERE a>=9370 AND a<9380;\nUPDATE t1 SET b=b*2 WHERE a>=9380 AND a<9390;\nUPDATE t1 SET b=b*2 WHERE a>=9390 AND a<9400;\nUPDATE t1 SET b=b*2 WHERE a>=9400 AND a<9410;\nUPDATE t1 SET b=b*2 WHERE a>=9410 AND a<9420;\nUPDATE t1 SET b=b*2 WHERE a>=9420 AND a<9430;\nUPDATE t1 SET b=b*2 WHERE a>=9430 AND a<9440;\nUPDATE t1 SET b=b*2 WHERE a>=9440 AND a<9450;\nUPDATE t1 SET b=b*2 WHERE a>=9450 AND a<9460;\nUPDATE t1 SET b=b*2 WHERE a>=9460 AND a<9470;\nUPDATE t1 SET b=b*2 WHERE a>=9470 AND a<9480;\nUPDATE t1 SET b=b*2 WHERE a>=9480 AND a<9490;\nUPDATE t1 SET b=b*2 WHERE a>=9490 AND a<9500;\nUPDATE t1 SET b=b*2 WHERE a>=9500 AND a<9510;\nUPDATE t1 SET b=b*2 WHERE a>=9510 AND a<9520;\nUPDATE t1 SET b=b*2 WHERE a>=9520 AND a<9530;\nUPDATE t1 SET b=b*2 WHERE a>=9530 AND a<9540;\nUPDATE t1 SET b=b*2 WHERE a>=9540 AND a<9550;\nUPDATE t1 SET b=b*2 WHERE a>=9550 AND a<9560;\nUPDATE t1 SET b=b*2 WHERE a>=9560 AND a<9570;\nUPDATE t1 SET b=b*2 WHERE a>=9570 AND a<9580;\nUPDATE t1 SET b=b*2 WHERE a>=9580 AND a<9590;\nUPDATE t1 SET b=b*2 WHERE a>=9590 AND a<9600;\nUPDATE t1 SET b=b*2 WHERE a>=9600 AND a<9610;\nUPDATE t1 SET b=b*2 WHERE a>=9610 AND a<9620;\nUPDATE t1 SET b=b*2 WHERE a>=9620 AND a<9630;\nUPDATE t1 SET b=b*2 WHERE a>=9630 AND a<9640;\nUPDATE t1 SET b=b*2 WHERE a>=9640 AND a<9650;\nUPDATE t1 SET b=b*2 WHERE a>=9650 AND a<9660;\nUPDATE t1 SET b=b*2 WHERE a>=9660 AND a<9670;\nUPDATE t1 SET b=b*2 WHERE a>=9670 AND a<9680;\nUPDATE t1 SET b=b*2 WHERE a>=9680 AND a<9690;\nUPDATE t1 SET b=b*2 WHERE a>=9690 AND a<9700;\nUPDATE t1 SET b=b*2 WHERE a>=9700 AND a<9710;\nUPDATE t1 SET b=b*2 WHERE a>=9710 AND a<9720;\nUPDATE t1 SET b=b*2 WHERE a>=9720 AND a<9730;\nUPDATE t1 SET b=b*2 WHERE a>=9730 AND a<9740;\nUPDATE t1 SET b=b*2 WHERE a>=9740 AND a<9750;\nUPDATE t1 SET b=b*2 WHERE a>=9750 AND a<9760;\nUPDATE t1 SET b=b*2 WHERE a>=9760 AND a<9770;\nUPDATE t1 SET b=b*2 WHERE a>=9770 AND a<9780;\nUPDATE t1 SET b=b*2 WHERE a>=9780 AND a<9790;\nUPDATE t1 SET b=b*2 WHERE a>=9790 AND a<9800;\nUPDATE t1 SET b=b*2 WHERE a>=9800 AND a<9810;\nUPDATE t1 SET b=b*2 WHERE a>=9810 AND a<9820;\nUPDATE t1 SET b=b*2 WHERE a>=9820 AND a<9830;\nUPDATE t1 SET b=b*2 WHERE a>=9830 AND a<9840;\nUPDATE t1 SET b=b*2 WHERE a>=9840 AND a<9850;\nUPDATE t1 SET b=b*2 WHERE a>=9850 AND a<9860;\nUPDATE t1 SET b=b*2 WHERE a>=9860 AND a<9870;\nUPDATE t1 SET b=b*2 WHERE a>=9870 AND a<9880;\nUPDATE t1 SET b=b*2 WHERE a>=9880 AND a<9890;\nUPDATE t1 SET b=b*2 WHERE a>=9890 AND a<9900;\nUPDATE t1 SET b=b*2 WHERE a>=9900 AND a<9910;\nUPDATE t1 SET b=b*2 WHERE a>=9910 AND a<9920;\nUPDATE t1 SET b=b*2 WHERE a>=9920 AND a<9930;\nUPDATE t1 SET b=b*2 WHERE a>=9930 AND a<9940;\nUPDATE t1 SET b=b*2 WHERE a>=9940 AND a<9950;\nUPDATE t1 SET b=b*2 WHERE a>=9950 AND a<9960;\nUPDATE t1 SET b=b*2 WHERE a>=9960 AND a<9970;\nUPDATE t1 SET b=b*2 WHERE a>=9970 AND a<9980;\nUPDATE t1 SET b=b*2 WHERE a>=9980 AND a<9990;\nUPDATE t1 SET b=b*2 WHERE a>=9990 AND a<10000;\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmark9.sql",
    "content": "BEGIN;\nUPDATE t2 SET b=6669 WHERE a=1;\nUPDATE t2 SET b=58207 WHERE a=2;\nUPDATE t2 SET b=83400 WHERE a=3;\nUPDATE t2 SET b=91722 WHERE a=4;\nUPDATE t2 SET b=11247 WHERE a=5;\nUPDATE t2 SET b=75095 WHERE a=6;\nUPDATE t2 SET b=92982 WHERE a=7;\nUPDATE t2 SET b=10496 WHERE a=8;\nUPDATE t2 SET b=70141 WHERE a=9;\nUPDATE t2 SET b=64704 WHERE a=10;\nUPDATE t2 SET b=38561 WHERE a=11;\nUPDATE t2 SET b=15203 WHERE a=12;\nUPDATE t2 SET b=52211 WHERE a=13;\nUPDATE t2 SET b=77433 WHERE a=14;\nUPDATE t2 SET b=60818 WHERE a=15;\nUPDATE t2 SET b=55485 WHERE a=16;\nUPDATE t2 SET b=32116 WHERE a=17;\nUPDATE t2 SET b=80787 WHERE a=18;\nUPDATE t2 SET b=37771 WHERE a=19;\nUPDATE t2 SET b=1476 WHERE a=20;\nUPDATE t2 SET b=82241 WHERE a=21;\nUPDATE t2 SET b=59022 WHERE a=22;\nUPDATE t2 SET b=38096 WHERE a=23;\nUPDATE t2 SET b=29130 WHERE a=24;\nUPDATE t2 SET b=21104 WHERE a=25;\nUPDATE t2 SET b=80535 WHERE a=26;\nUPDATE t2 SET b=71037 WHERE a=27;\nUPDATE t2 SET b=62045 WHERE a=28;\nUPDATE t2 SET b=36063 WHERE a=29;\nUPDATE t2 SET b=35922 WHERE a=30;\nUPDATE t2 SET b=41498 WHERE a=31;\nUPDATE t2 SET b=85270 WHERE a=32;\nUPDATE t2 SET b=53733 WHERE a=33;\nUPDATE t2 SET b=21604 WHERE a=34;\nUPDATE t2 SET b=20848 WHERE a=35;\nUPDATE t2 SET b=86887 WHERE a=36;\nUPDATE t2 SET b=35708 WHERE a=37;\nUPDATE t2 SET b=10901 WHERE a=38;\nUPDATE t2 SET b=57681 WHERE a=39;\nUPDATE t2 SET b=37050 WHERE a=40;\nUPDATE t2 SET b=30360 WHERE a=41;\nUPDATE t2 SET b=71454 WHERE a=42;\nUPDATE t2 SET b=29133 WHERE a=43;\nUPDATE t2 SET b=21615 WHERE a=44;\nUPDATE t2 SET b=98374 WHERE a=45;\nUPDATE t2 SET b=34330 WHERE a=46;\nUPDATE t2 SET b=38527 WHERE a=47;\nUPDATE t2 SET b=52498 WHERE a=48;\nUPDATE t2 SET b=31683 WHERE a=49;\nUPDATE t2 SET b=11434 WHERE a=50;\nUPDATE t2 SET b=99658 WHERE a=51;\nUPDATE t2 SET b=77139 WHERE a=52;\nUPDATE t2 SET b=54368 WHERE a=53;\nUPDATE t2 SET b=29097 WHERE a=54;\nUPDATE t2 SET b=69273 WHERE a=55;\nUPDATE t2 SET b=18972 WHERE a=56;\nUPDATE t2 SET b=91620 WHERE a=57;\nUPDATE t2 SET b=23760 WHERE a=58;\nUPDATE t2 SET b=9500 WHERE a=59;\nUPDATE t2 SET b=85355 WHERE a=60;\nUPDATE t2 SET b=83568 WHERE a=61;\nUPDATE t2 SET b=26554 WHERE a=62;\nUPDATE t2 SET b=13030 WHERE a=63;\nUPDATE t2 SET b=65100 WHERE a=64;\nUPDATE t2 SET b=75539 WHERE a=65;\nUPDATE t2 SET b=37393 WHERE a=66;\nUPDATE t2 SET b=56147 WHERE a=67;\nUPDATE t2 SET b=59775 WHERE a=68;\nUPDATE t2 SET b=18514 WHERE a=69;\nUPDATE t2 SET b=91781 WHERE a=70;\nUPDATE t2 SET b=64406 WHERE a=71;\nUPDATE t2 SET b=40508 WHERE a=72;\nUPDATE t2 SET b=73330 WHERE a=73;\nUPDATE t2 SET b=2679 WHERE a=74;\nUPDATE t2 SET b=10046 WHERE a=75;\nUPDATE t2 SET b=77279 WHERE a=76;\nUPDATE t2 SET b=82910 WHERE a=77;\nUPDATE t2 SET b=51608 WHERE a=78;\nUPDATE t2 SET b=48058 WHERE a=79;\nUPDATE t2 SET b=9877 WHERE a=80;\nUPDATE t2 SET b=80158 WHERE a=81;\nUPDATE t2 SET b=58819 WHERE a=82;\nUPDATE t2 SET b=47732 WHERE a=83;\nUPDATE t2 SET b=89055 WHERE a=84;\nUPDATE t2 SET b=10851 WHERE a=85;\nUPDATE t2 SET b=65614 WHERE a=86;\nUPDATE t2 SET b=71846 WHERE a=87;\nUPDATE t2 SET b=65251 WHERE a=88;\nUPDATE t2 SET b=2812 WHERE a=89;\nUPDATE t2 SET b=94814 WHERE a=90;\nUPDATE t2 SET b=69766 WHERE a=91;\nUPDATE t2 SET b=41955 WHERE a=92;\nUPDATE t2 SET b=79487 WHERE a=93;\nUPDATE t2 SET b=67735 WHERE a=94;\nUPDATE t2 SET b=60717 WHERE a=95;\nUPDATE t2 SET b=1862 WHERE a=96;\nUPDATE t2 SET b=15641 WHERE a=97;\nUPDATE t2 SET b=52620 WHERE a=98;\nUPDATE t2 SET b=7277 WHERE a=99;\nUPDATE t2 SET b=73185 WHERE a=100;\nUPDATE t2 SET b=14200 WHERE a=101;\nUPDATE t2 SET b=21475 WHERE a=102;\nUPDATE t2 SET b=20311 WHERE a=103;\nUPDATE t2 SET b=93535 WHERE a=104;\nUPDATE t2 SET b=41429 WHERE a=105;\nUPDATE t2 SET b=18933 WHERE a=106;\nUPDATE t2 SET b=87187 WHERE a=107;\nUPDATE t2 SET b=99663 WHERE a=108;\nUPDATE t2 SET b=81237 WHERE a=109;\nUPDATE t2 SET b=37028 WHERE a=110;\nUPDATE t2 SET b=60128 WHERE a=111;\nUPDATE t2 SET b=22505 WHERE a=112;\nUPDATE t2 SET b=89022 WHERE a=113;\nUPDATE t2 SET b=73490 WHERE a=114;\nUPDATE t2 SET b=17059 WHERE a=115;\nUPDATE t2 SET b=20510 WHERE a=116;\nUPDATE t2 SET b=7031 WHERE a=117;\nUPDATE t2 SET b=3586 WHERE a=118;\nUPDATE t2 SET b=83876 WHERE a=119;\nUPDATE t2 SET b=43344 WHERE a=120;\nUPDATE t2 SET b=30411 WHERE a=121;\nUPDATE t2 SET b=61320 WHERE a=122;\nUPDATE t2 SET b=88653 WHERE a=123;\nUPDATE t2 SET b=83221 WHERE a=124;\nUPDATE t2 SET b=64966 WHERE a=125;\nUPDATE t2 SET b=44723 WHERE a=126;\nUPDATE t2 SET b=22643 WHERE a=127;\nUPDATE t2 SET b=79724 WHERE a=128;\nUPDATE t2 SET b=58262 WHERE a=129;\nUPDATE t2 SET b=98250 WHERE a=130;\nUPDATE t2 SET b=28853 WHERE a=131;\nUPDATE t2 SET b=33715 WHERE a=132;\nUPDATE t2 SET b=14208 WHERE a=133;\nUPDATE t2 SET b=8649 WHERE a=134;\nUPDATE t2 SET b=88557 WHERE a=135;\nUPDATE t2 SET b=45495 WHERE a=136;\nUPDATE t2 SET b=15043 WHERE a=137;\nUPDATE t2 SET b=28378 WHERE a=138;\nUPDATE t2 SET b=49378 WHERE a=139;\nUPDATE t2 SET b=39729 WHERE a=140;\nUPDATE t2 SET b=62898 WHERE a=141;\nUPDATE t2 SET b=46764 WHERE a=142;\nUPDATE t2 SET b=68297 WHERE a=143;\nUPDATE t2 SET b=92400 WHERE a=144;\nUPDATE t2 SET b=38793 WHERE a=145;\nUPDATE t2 SET b=58097 WHERE a=146;\nUPDATE t2 SET b=26266 WHERE a=147;\nUPDATE t2 SET b=70828 WHERE a=148;\nUPDATE t2 SET b=41777 WHERE a=149;\nUPDATE t2 SET b=62612 WHERE a=150;\nUPDATE t2 SET b=3494 WHERE a=151;\nUPDATE t2 SET b=4812 WHERE a=152;\nUPDATE t2 SET b=88066 WHERE a=153;\nUPDATE t2 SET b=81989 WHERE a=154;\nUPDATE t2 SET b=223 WHERE a=155;\nUPDATE t2 SET b=52776 WHERE a=156;\nUPDATE t2 SET b=31495 WHERE a=157;\nUPDATE t2 SET b=93507 WHERE a=158;\nUPDATE t2 SET b=90523 WHERE a=159;\nUPDATE t2 SET b=63344 WHERE a=160;\nUPDATE t2 SET b=9017 WHERE a=161;\nUPDATE t2 SET b=97362 WHERE a=162;\nUPDATE t2 SET b=65929 WHERE a=163;\nUPDATE t2 SET b=7795 WHERE a=164;\nUPDATE t2 SET b=63658 WHERE a=165;\nUPDATE t2 SET b=58401 WHERE a=166;\nUPDATE t2 SET b=16958 WHERE a=167;\nUPDATE t2 SET b=37187 WHERE a=168;\nUPDATE t2 SET b=61829 WHERE a=169;\nUPDATE t2 SET b=18196 WHERE a=170;\nUPDATE t2 SET b=67885 WHERE a=171;\nUPDATE t2 SET b=79908 WHERE a=172;\nUPDATE t2 SET b=64437 WHERE a=173;\nUPDATE t2 SET b=98130 WHERE a=174;\nUPDATE t2 SET b=84323 WHERE a=175;\nUPDATE t2 SET b=24078 WHERE a=176;\nUPDATE t2 SET b=91927 WHERE a=177;\nUPDATE t2 SET b=82883 WHERE a=178;\nUPDATE t2 SET b=14651 WHERE a=179;\nUPDATE t2 SET b=27533 WHERE a=180;\nUPDATE t2 SET b=89763 WHERE a=181;\nUPDATE t2 SET b=40450 WHERE a=182;\nUPDATE t2 SET b=31171 WHERE a=183;\nUPDATE t2 SET b=85716 WHERE a=184;\nUPDATE t2 SET b=16884 WHERE a=185;\nUPDATE t2 SET b=26852 WHERE a=186;\nUPDATE t2 SET b=54477 WHERE a=187;\nUPDATE t2 SET b=11849 WHERE a=188;\nUPDATE t2 SET b=90233 WHERE a=189;\nUPDATE t2 SET b=30188 WHERE a=190;\nUPDATE t2 SET b=26037 WHERE a=191;\nUPDATE t2 SET b=59831 WHERE a=192;\nUPDATE t2 SET b=59792 WHERE a=193;\nUPDATE t2 SET b=66506 WHERE a=194;\nUPDATE t2 SET b=51150 WHERE a=195;\nUPDATE t2 SET b=76292 WHERE a=196;\nUPDATE t2 SET b=23179 WHERE a=197;\nUPDATE t2 SET b=62800 WHERE a=198;\nUPDATE t2 SET b=3556 WHERE a=199;\nUPDATE t2 SET b=55533 WHERE a=200;\nUPDATE t2 SET b=82821 WHERE a=201;\nUPDATE t2 SET b=25555 WHERE a=202;\nUPDATE t2 SET b=99731 WHERE a=203;\nUPDATE t2 SET b=33504 WHERE a=204;\nUPDATE t2 SET b=38936 WHERE a=205;\nUPDATE t2 SET b=98371 WHERE a=206;\nUPDATE t2 SET b=33021 WHERE a=207;\nUPDATE t2 SET b=26047 WHERE a=208;\nUPDATE t2 SET b=371 WHERE a=209;\nUPDATE t2 SET b=85371 WHERE a=210;\nUPDATE t2 SET b=8852 WHERE a=211;\nUPDATE t2 SET b=89737 WHERE a=212;\nUPDATE t2 SET b=57954 WHERE a=213;\nUPDATE t2 SET b=37172 WHERE a=214;\nUPDATE t2 SET b=57389 WHERE a=215;\nUPDATE t2 SET b=7253 WHERE a=216;\nUPDATE t2 SET b=39314 WHERE a=217;\nUPDATE t2 SET b=40762 WHERE a=218;\nUPDATE t2 SET b=98942 WHERE a=219;\nUPDATE t2 SET b=29247 WHERE a=220;\nUPDATE t2 SET b=89133 WHERE a=221;\nUPDATE t2 SET b=45781 WHERE a=222;\nUPDATE t2 SET b=4834 WHERE a=223;\nUPDATE t2 SET b=4275 WHERE a=224;\nUPDATE t2 SET b=27373 WHERE a=225;\nUPDATE t2 SET b=60865 WHERE a=226;\nUPDATE t2 SET b=2682 WHERE a=227;\nUPDATE t2 SET b=73451 WHERE a=228;\nUPDATE t2 SET b=45438 WHERE a=229;\nUPDATE t2 SET b=97505 WHERE a=230;\nUPDATE t2 SET b=82597 WHERE a=231;\nUPDATE t2 SET b=35758 WHERE a=232;\nUPDATE t2 SET b=48008 WHERE a=233;\nUPDATE t2 SET b=93855 WHERE a=234;\nUPDATE t2 SET b=47673 WHERE a=235;\nUPDATE t2 SET b=49459 WHERE a=236;\nUPDATE t2 SET b=98403 WHERE a=237;\nUPDATE t2 SET b=98573 WHERE a=238;\nUPDATE t2 SET b=88384 WHERE a=239;\nUPDATE t2 SET b=51068 WHERE a=240;\nUPDATE t2 SET b=86901 WHERE a=241;\nUPDATE t2 SET b=32796 WHERE a=242;\nUPDATE t2 SET b=62638 WHERE a=243;\nUPDATE t2 SET b=74424 WHERE a=244;\nUPDATE t2 SET b=86330 WHERE a=245;\nUPDATE t2 SET b=69131 WHERE a=246;\nUPDATE t2 SET b=18726 WHERE a=247;\nUPDATE t2 SET b=25837 WHERE a=248;\nUPDATE t2 SET b=58140 WHERE a=249;\nUPDATE t2 SET b=61864 WHERE a=250;\nUPDATE t2 SET b=45068 WHERE a=251;\nUPDATE t2 SET b=25411 WHERE a=252;\nUPDATE t2 SET b=74567 WHERE a=253;\nUPDATE t2 SET b=59100 WHERE a=254;\nUPDATE t2 SET b=88328 WHERE a=255;\nUPDATE t2 SET b=32204 WHERE a=256;\nUPDATE t2 SET b=66617 WHERE a=257;\nUPDATE t2 SET b=84113 WHERE a=258;\nUPDATE t2 SET b=81418 WHERE a=259;\nUPDATE t2 SET b=89475 WHERE a=260;\nUPDATE t2 SET b=75496 WHERE a=261;\nUPDATE t2 SET b=73972 WHERE a=262;\nUPDATE t2 SET b=7069 WHERE a=263;\nUPDATE t2 SET b=12769 WHERE a=264;\nUPDATE t2 SET b=68972 WHERE a=265;\nUPDATE t2 SET b=13777 WHERE a=266;\nUPDATE t2 SET b=73537 WHERE a=267;\nUPDATE t2 SET b=8524 WHERE a=268;\nUPDATE t2 SET b=74712 WHERE a=269;\nUPDATE t2 SET b=59066 WHERE a=270;\nUPDATE t2 SET b=25487 WHERE a=271;\nUPDATE t2 SET b=79158 WHERE a=272;\nUPDATE t2 SET b=17302 WHERE a=273;\nUPDATE t2 SET b=89849 WHERE a=274;\nUPDATE t2 SET b=35088 WHERE a=275;\nUPDATE t2 SET b=37529 WHERE a=276;\nUPDATE t2 SET b=92261 WHERE a=277;\nUPDATE t2 SET b=52581 WHERE a=278;\nUPDATE t2 SET b=74033 WHERE a=279;\nUPDATE t2 SET b=90116 WHERE a=280;\nUPDATE t2 SET b=52845 WHERE a=281;\nUPDATE t2 SET b=92102 WHERE a=282;\nUPDATE t2 SET b=56480 WHERE a=283;\nUPDATE t2 SET b=47321 WHERE a=284;\nUPDATE t2 SET b=10036 WHERE a=285;\nUPDATE t2 SET b=32140 WHERE a=286;\nUPDATE t2 SET b=35681 WHERE a=287;\nUPDATE t2 SET b=54214 WHERE a=288;\nUPDATE t2 SET b=98356 WHERE a=289;\nUPDATE t2 SET b=33910 WHERE a=290;\nUPDATE t2 SET b=94607 WHERE a=291;\nUPDATE t2 SET b=17443 WHERE a=292;\nUPDATE t2 SET b=31488 WHERE a=293;\nUPDATE t2 SET b=76668 WHERE a=294;\nUPDATE t2 SET b=57119 WHERE a=295;\nUPDATE t2 SET b=5576 WHERE a=296;\nUPDATE t2 SET b=17913 WHERE a=297;\nUPDATE t2 SET b=12060 WHERE a=298;\nUPDATE t2 SET b=78741 WHERE a=299;\nUPDATE t2 SET b=26395 WHERE a=300;\nUPDATE t2 SET b=55504 WHERE a=301;\nUPDATE t2 SET b=88720 WHERE a=302;\nUPDATE t2 SET b=6512 WHERE a=303;\nUPDATE t2 SET b=84121 WHERE a=304;\nUPDATE t2 SET b=820 WHERE a=305;\nUPDATE t2 SET b=42516 WHERE a=306;\nUPDATE t2 SET b=24887 WHERE a=307;\nUPDATE t2 SET b=38372 WHERE a=308;\nUPDATE t2 SET b=40248 WHERE a=309;\nUPDATE t2 SET b=47310 WHERE a=310;\nUPDATE t2 SET b=9758 WHERE a=311;\nUPDATE t2 SET b=17585 WHERE a=312;\nUPDATE t2 SET b=23075 WHERE a=313;\nUPDATE t2 SET b=61069 WHERE a=314;\nUPDATE t2 SET b=55199 WHERE a=315;\nUPDATE t2 SET b=92228 WHERE a=316;\nUPDATE t2 SET b=71279 WHERE a=317;\nUPDATE t2 SET b=37971 WHERE a=318;\nUPDATE t2 SET b=24001 WHERE a=319;\nUPDATE t2 SET b=16664 WHERE a=320;\nUPDATE t2 SET b=61835 WHERE a=321;\nUPDATE t2 SET b=98951 WHERE a=322;\nUPDATE t2 SET b=25386 WHERE a=323;\nUPDATE t2 SET b=57931 WHERE a=324;\nUPDATE t2 SET b=75750 WHERE a=325;\nUPDATE t2 SET b=63642 WHERE a=326;\nUPDATE t2 SET b=99548 WHERE a=327;\nUPDATE t2 SET b=55581 WHERE a=328;\nUPDATE t2 SET b=34688 WHERE a=329;\nUPDATE t2 SET b=1103 WHERE a=330;\nUPDATE t2 SET b=92888 WHERE a=331;\nUPDATE t2 SET b=68111 WHERE a=332;\nUPDATE t2 SET b=10753 WHERE a=333;\nUPDATE t2 SET b=49177 WHERE a=334;\nUPDATE t2 SET b=47528 WHERE a=335;\nUPDATE t2 SET b=30778 WHERE a=336;\nUPDATE t2 SET b=42126 WHERE a=337;\nUPDATE t2 SET b=33107 WHERE a=338;\nUPDATE t2 SET b=5605 WHERE a=339;\nUPDATE t2 SET b=49003 WHERE a=340;\nUPDATE t2 SET b=14582 WHERE a=341;\nUPDATE t2 SET b=40329 WHERE a=342;\nUPDATE t2 SET b=69752 WHERE a=343;\nUPDATE t2 SET b=4627 WHERE a=344;\nUPDATE t2 SET b=11989 WHERE a=345;\nUPDATE t2 SET b=62077 WHERE a=346;\nUPDATE t2 SET b=38264 WHERE a=347;\nUPDATE t2 SET b=51381 WHERE a=348;\nUPDATE t2 SET b=49507 WHERE a=349;\nUPDATE t2 SET b=26874 WHERE a=350;\nUPDATE t2 SET b=27116 WHERE a=351;\nUPDATE t2 SET b=45418 WHERE a=352;\nUPDATE t2 SET b=70923 WHERE a=353;\nUPDATE t2 SET b=33507 WHERE a=354;\nUPDATE t2 SET b=4961 WHERE a=355;\nUPDATE t2 SET b=19802 WHERE a=356;\nUPDATE t2 SET b=30937 WHERE a=357;\nUPDATE t2 SET b=97131 WHERE a=358;\nUPDATE t2 SET b=46379 WHERE a=359;\nUPDATE t2 SET b=13939 WHERE a=360;\nUPDATE t2 SET b=74249 WHERE a=361;\nUPDATE t2 SET b=17922 WHERE a=362;\nUPDATE t2 SET b=83932 WHERE a=363;\nUPDATE t2 SET b=28600 WHERE a=364;\nUPDATE t2 SET b=90012 WHERE a=365;\nUPDATE t2 SET b=1187 WHERE a=366;\nUPDATE t2 SET b=14870 WHERE a=367;\nUPDATE t2 SET b=31517 WHERE a=368;\nUPDATE t2 SET b=52869 WHERE a=369;\nUPDATE t2 SET b=68215 WHERE a=370;\nUPDATE t2 SET b=73289 WHERE a=371;\nUPDATE t2 SET b=30347 WHERE a=372;\nUPDATE t2 SET b=54093 WHERE a=373;\nUPDATE t2 SET b=10699 WHERE a=374;\nUPDATE t2 SET b=6155 WHERE a=375;\nUPDATE t2 SET b=68103 WHERE a=376;\nUPDATE t2 SET b=44163 WHERE a=377;\nUPDATE t2 SET b=23873 WHERE a=378;\nUPDATE t2 SET b=24355 WHERE a=379;\nUPDATE t2 SET b=93688 WHERE a=380;\nUPDATE t2 SET b=79016 WHERE a=381;\nUPDATE t2 SET b=67660 WHERE a=382;\nUPDATE t2 SET b=67733 WHERE a=383;\nUPDATE t2 SET b=45379 WHERE a=384;\nUPDATE t2 SET b=46171 WHERE a=385;\nUPDATE t2 SET b=25373 WHERE a=386;\nUPDATE t2 SET b=62074 WHERE a=387;\nUPDATE t2 SET b=30111 WHERE a=388;\nUPDATE t2 SET b=34040 WHERE a=389;\nUPDATE t2 SET b=38680 WHERE a=390;\nUPDATE t2 SET b=33598 WHERE a=391;\nUPDATE t2 SET b=64623 WHERE a=392;\nUPDATE t2 SET b=99608 WHERE a=393;\nUPDATE t2 SET b=62097 WHERE a=394;\nUPDATE t2 SET b=83969 WHERE a=395;\nUPDATE t2 SET b=42696 WHERE a=396;\nUPDATE t2 SET b=62206 WHERE a=397;\nUPDATE t2 SET b=27313 WHERE a=398;\nUPDATE t2 SET b=36858 WHERE a=399;\nUPDATE t2 SET b=90061 WHERE a=400;\nUPDATE t2 SET b=74735 WHERE a=401;\nUPDATE t2 SET b=28742 WHERE a=402;\nUPDATE t2 SET b=35019 WHERE a=403;\nUPDATE t2 SET b=49030 WHERE a=404;\nUPDATE t2 SET b=12834 WHERE a=405;\nUPDATE t2 SET b=32600 WHERE a=406;\nUPDATE t2 SET b=11773 WHERE a=407;\nUPDATE t2 SET b=80265 WHERE a=408;\nUPDATE t2 SET b=73406 WHERE a=409;\nUPDATE t2 SET b=66427 WHERE a=410;\nUPDATE t2 SET b=12764 WHERE a=411;\nUPDATE t2 SET b=12453 WHERE a=412;\nUPDATE t2 SET b=57545 WHERE a=413;\nUPDATE t2 SET b=70198 WHERE a=414;\nUPDATE t2 SET b=39421 WHERE a=415;\nUPDATE t2 SET b=46942 WHERE a=416;\nUPDATE t2 SET b=25216 WHERE a=417;\nUPDATE t2 SET b=90662 WHERE a=418;\nUPDATE t2 SET b=59846 WHERE a=419;\nUPDATE t2 SET b=96954 WHERE a=420;\nUPDATE t2 SET b=10732 WHERE a=421;\nUPDATE t2 SET b=47356 WHERE a=422;\nUPDATE t2 SET b=77155 WHERE a=423;\nUPDATE t2 SET b=20023 WHERE a=424;\nUPDATE t2 SET b=58889 WHERE a=425;\nUPDATE t2 SET b=20850 WHERE a=426;\nUPDATE t2 SET b=93880 WHERE a=427;\nUPDATE t2 SET b=50801 WHERE a=428;\nUPDATE t2 SET b=10204 WHERE a=429;\nUPDATE t2 SET b=19780 WHERE a=430;\nUPDATE t2 SET b=53143 WHERE a=431;\nUPDATE t2 SET b=28085 WHERE a=432;\nUPDATE t2 SET b=12256 WHERE a=433;\nUPDATE t2 SET b=31626 WHERE a=434;\nUPDATE t2 SET b=19661 WHERE a=435;\nUPDATE t2 SET b=57179 WHERE a=436;\nUPDATE t2 SET b=94903 WHERE a=437;\nUPDATE t2 SET b=64847 WHERE a=438;\nUPDATE t2 SET b=6484 WHERE a=439;\nUPDATE t2 SET b=70679 WHERE a=440;\nUPDATE t2 SET b=4293 WHERE a=441;\nUPDATE t2 SET b=59781 WHERE a=442;\nUPDATE t2 SET b=62794 WHERE a=443;\nUPDATE t2 SET b=64849 WHERE a=444;\nUPDATE t2 SET b=62119 WHERE a=445;\nUPDATE t2 SET b=23519 WHERE a=446;\nUPDATE t2 SET b=99687 WHERE a=447;\nUPDATE t2 SET b=607 WHERE a=448;\nUPDATE t2 SET b=26010 WHERE a=449;\nUPDATE t2 SET b=59444 WHERE a=450;\nUPDATE t2 SET b=68502 WHERE a=451;\nUPDATE t2 SET b=70914 WHERE a=452;\nUPDATE t2 SET b=25051 WHERE a=453;\nUPDATE t2 SET b=82911 WHERE a=454;\nUPDATE t2 SET b=78826 WHERE a=455;\nUPDATE t2 SET b=51231 WHERE a=456;\nUPDATE t2 SET b=85487 WHERE a=457;\nUPDATE t2 SET b=31005 WHERE a=458;\nUPDATE t2 SET b=98227 WHERE a=459;\nUPDATE t2 SET b=45523 WHERE a=460;\nUPDATE t2 SET b=51172 WHERE a=461;\nUPDATE t2 SET b=83244 WHERE a=462;\nUPDATE t2 SET b=60307 WHERE a=463;\nUPDATE t2 SET b=13428 WHERE a=464;\nUPDATE t2 SET b=82812 WHERE a=465;\nUPDATE t2 SET b=8897 WHERE a=466;\nUPDATE t2 SET b=99154 WHERE a=467;\nUPDATE t2 SET b=47602 WHERE a=468;\nUPDATE t2 SET b=78653 WHERE a=469;\nUPDATE t2 SET b=52966 WHERE a=470;\nUPDATE t2 SET b=59912 WHERE a=471;\nUPDATE t2 SET b=28038 WHERE a=472;\nUPDATE t2 SET b=42864 WHERE a=473;\nUPDATE t2 SET b=92057 WHERE a=474;\nUPDATE t2 SET b=28213 WHERE a=475;\nUPDATE t2 SET b=91385 WHERE a=476;\nUPDATE t2 SET b=13187 WHERE a=477;\nUPDATE t2 SET b=50035 WHERE a=478;\nUPDATE t2 SET b=48559 WHERE a=479;\nUPDATE t2 SET b=45187 WHERE a=480;\nUPDATE t2 SET b=43832 WHERE a=481;\nUPDATE t2 SET b=2579 WHERE a=482;\nUPDATE t2 SET b=18071 WHERE a=483;\nUPDATE t2 SET b=67818 WHERE a=484;\nUPDATE t2 SET b=3849 WHERE a=485;\nUPDATE t2 SET b=54027 WHERE a=486;\nUPDATE t2 SET b=87596 WHERE a=487;\nUPDATE t2 SET b=87920 WHERE a=488;\nUPDATE t2 SET b=5092 WHERE a=489;\nUPDATE t2 SET b=54089 WHERE a=490;\nUPDATE t2 SET b=46207 WHERE a=491;\nUPDATE t2 SET b=58313 WHERE a=492;\nUPDATE t2 SET b=9037 WHERE a=493;\nUPDATE t2 SET b=96712 WHERE a=494;\nUPDATE t2 SET b=67931 WHERE a=495;\nUPDATE t2 SET b=55508 WHERE a=496;\nUPDATE t2 SET b=42839 WHERE a=497;\nUPDATE t2 SET b=38059 WHERE a=498;\nUPDATE t2 SET b=47086 WHERE a=499;\nUPDATE t2 SET b=54183 WHERE a=500;\nUPDATE t2 SET b=90184 WHERE a=501;\nUPDATE t2 SET b=78419 WHERE a=502;\nUPDATE t2 SET b=55310 WHERE a=503;\nUPDATE t2 SET b=41309 WHERE a=504;\nUPDATE t2 SET b=57408 WHERE a=505;\nUPDATE t2 SET b=36600 WHERE a=506;\nUPDATE t2 SET b=15918 WHERE a=507;\nUPDATE t2 SET b=33790 WHERE a=508;\nUPDATE t2 SET b=67443 WHERE a=509;\nUPDATE t2 SET b=57710 WHERE a=510;\nUPDATE t2 SET b=37097 WHERE a=511;\nUPDATE t2 SET b=26415 WHERE a=512;\nUPDATE t2 SET b=79702 WHERE a=513;\nUPDATE t2 SET b=90818 WHERE a=514;\nUPDATE t2 SET b=12985 WHERE a=515;\nUPDATE t2 SET b=13813 WHERE a=516;\nUPDATE t2 SET b=63643 WHERE a=517;\nUPDATE t2 SET b=76844 WHERE a=518;\nUPDATE t2 SET b=45486 WHERE a=519;\nUPDATE t2 SET b=38784 WHERE a=520;\nUPDATE t2 SET b=81952 WHERE a=521;\nUPDATE t2 SET b=59623 WHERE a=522;\nUPDATE t2 SET b=24657 WHERE a=523;\nUPDATE t2 SET b=24726 WHERE a=524;\nUPDATE t2 SET b=15738 WHERE a=525;\nUPDATE t2 SET b=39910 WHERE a=526;\nUPDATE t2 SET b=70173 WHERE a=527;\nUPDATE t2 SET b=81959 WHERE a=528;\nUPDATE t2 SET b=10079 WHERE a=529;\nUPDATE t2 SET b=65317 WHERE a=530;\nUPDATE t2 SET b=57010 WHERE a=531;\nUPDATE t2 SET b=9464 WHERE a=532;\nUPDATE t2 SET b=96509 WHERE a=533;\nUPDATE t2 SET b=48316 WHERE a=534;\nUPDATE t2 SET b=39933 WHERE a=535;\nUPDATE t2 SET b=59417 WHERE a=536;\nUPDATE t2 SET b=85787 WHERE a=537;\nUPDATE t2 SET b=52108 WHERE a=538;\nUPDATE t2 SET b=8716 WHERE a=539;\nUPDATE t2 SET b=71474 WHERE a=540;\nUPDATE t2 SET b=91767 WHERE a=541;\nUPDATE t2 SET b=14926 WHERE a=542;\nUPDATE t2 SET b=68208 WHERE a=543;\nUPDATE t2 SET b=45499 WHERE a=544;\nUPDATE t2 SET b=66820 WHERE a=545;\nUPDATE t2 SET b=7731 WHERE a=546;\nUPDATE t2 SET b=86751 WHERE a=547;\nUPDATE t2 SET b=3993 WHERE a=548;\nUPDATE t2 SET b=45586 WHERE a=549;\nUPDATE t2 SET b=98870 WHERE a=550;\nUPDATE t2 SET b=38138 WHERE a=551;\nUPDATE t2 SET b=42291 WHERE a=552;\nUPDATE t2 SET b=37593 WHERE a=553;\nUPDATE t2 SET b=29317 WHERE a=554;\nUPDATE t2 SET b=12337 WHERE a=555;\nUPDATE t2 SET b=19669 WHERE a=556;\nUPDATE t2 SET b=8843 WHERE a=557;\nUPDATE t2 SET b=29335 WHERE a=558;\nUPDATE t2 SET b=12774 WHERE a=559;\nUPDATE t2 SET b=82270 WHERE a=560;\nUPDATE t2 SET b=3504 WHERE a=561;\nUPDATE t2 SET b=18436 WHERE a=562;\nUPDATE t2 SET b=49846 WHERE a=563;\nUPDATE t2 SET b=61496 WHERE a=564;\nUPDATE t2 SET b=61566 WHERE a=565;\nUPDATE t2 SET b=57641 WHERE a=566;\nUPDATE t2 SET b=34221 WHERE a=567;\nUPDATE t2 SET b=97295 WHERE a=568;\nUPDATE t2 SET b=50645 WHERE a=569;\nUPDATE t2 SET b=71626 WHERE a=570;\nUPDATE t2 SET b=89276 WHERE a=571;\nUPDATE t2 SET b=21307 WHERE a=572;\nUPDATE t2 SET b=63337 WHERE a=573;\nUPDATE t2 SET b=39470 WHERE a=574;\nUPDATE t2 SET b=46517 WHERE a=575;\nUPDATE t2 SET b=70876 WHERE a=576;\nUPDATE t2 SET b=4481 WHERE a=577;\nUPDATE t2 SET b=27895 WHERE a=578;\nUPDATE t2 SET b=74546 WHERE a=579;\nUPDATE t2 SET b=1106 WHERE a=580;\nUPDATE t2 SET b=45277 WHERE a=581;\nUPDATE t2 SET b=31786 WHERE a=582;\nUPDATE t2 SET b=98454 WHERE a=583;\nUPDATE t2 SET b=28088 WHERE a=584;\nUPDATE t2 SET b=71484 WHERE a=585;\nUPDATE t2 SET b=17905 WHERE a=586;\nUPDATE t2 SET b=84346 WHERE a=587;\nUPDATE t2 SET b=23804 WHERE a=588;\nUPDATE t2 SET b=7468 WHERE a=589;\nUPDATE t2 SET b=12387 WHERE a=590;\nUPDATE t2 SET b=16695 WHERE a=591;\nUPDATE t2 SET b=91788 WHERE a=592;\nUPDATE t2 SET b=49611 WHERE a=593;\nUPDATE t2 SET b=22526 WHERE a=594;\nUPDATE t2 SET b=83978 WHERE a=595;\nUPDATE t2 SET b=46956 WHERE a=596;\nUPDATE t2 SET b=57202 WHERE a=597;\nUPDATE t2 SET b=20238 WHERE a=598;\nUPDATE t2 SET b=37521 WHERE a=599;\nUPDATE t2 SET b=67354 WHERE a=600;\nUPDATE t2 SET b=29677 WHERE a=601;\nUPDATE t2 SET b=34743 WHERE a=602;\nUPDATE t2 SET b=6523 WHERE a=603;\nUPDATE t2 SET b=76633 WHERE a=604;\nUPDATE t2 SET b=42878 WHERE a=605;\nUPDATE t2 SET b=44327 WHERE a=606;\nUPDATE t2 SET b=51179 WHERE a=607;\nUPDATE t2 SET b=95996 WHERE a=608;\nUPDATE t2 SET b=20969 WHERE a=609;\nUPDATE t2 SET b=81299 WHERE a=610;\nUPDATE t2 SET b=60994 WHERE a=611;\nUPDATE t2 SET b=54334 WHERE a=612;\nUPDATE t2 SET b=54624 WHERE a=613;\nUPDATE t2 SET b=27785 WHERE a=614;\nUPDATE t2 SET b=41405 WHERE a=615;\nUPDATE t2 SET b=93105 WHERE a=616;\nUPDATE t2 SET b=51724 WHERE a=617;\nUPDATE t2 SET b=83712 WHERE a=618;\nUPDATE t2 SET b=87404 WHERE a=619;\nUPDATE t2 SET b=27282 WHERE a=620;\nUPDATE t2 SET b=82755 WHERE a=621;\nUPDATE t2 SET b=29587 WHERE a=622;\nUPDATE t2 SET b=16205 WHERE a=623;\nUPDATE t2 SET b=19959 WHERE a=624;\nUPDATE t2 SET b=24650 WHERE a=625;\nUPDATE t2 SET b=52389 WHERE a=626;\nUPDATE t2 SET b=7380 WHERE a=627;\nUPDATE t2 SET b=78630 WHERE a=628;\nUPDATE t2 SET b=63847 WHERE a=629;\nUPDATE t2 SET b=40364 WHERE a=630;\nUPDATE t2 SET b=39407 WHERE a=631;\nUPDATE t2 SET b=80689 WHERE a=632;\nUPDATE t2 SET b=14992 WHERE a=633;\nUPDATE t2 SET b=43560 WHERE a=634;\nUPDATE t2 SET b=46215 WHERE a=635;\nUPDATE t2 SET b=15426 WHERE a=636;\nUPDATE t2 SET b=60742 WHERE a=637;\nUPDATE t2 SET b=89186 WHERE a=638;\nUPDATE t2 SET b=22956 WHERE a=639;\nUPDATE t2 SET b=43184 WHERE a=640;\nUPDATE t2 SET b=90118 WHERE a=641;\nUPDATE t2 SET b=81148 WHERE a=642;\nUPDATE t2 SET b=49654 WHERE a=643;\nUPDATE t2 SET b=9239 WHERE a=644;\nUPDATE t2 SET b=74499 WHERE a=645;\nUPDATE t2 SET b=51533 WHERE a=646;\nUPDATE t2 SET b=29186 WHERE a=647;\nUPDATE t2 SET b=52262 WHERE a=648;\nUPDATE t2 SET b=21475 WHERE a=649;\nUPDATE t2 SET b=85872 WHERE a=650;\nUPDATE t2 SET b=5706 WHERE a=651;\nUPDATE t2 SET b=90553 WHERE a=652;\nUPDATE t2 SET b=2725 WHERE a=653;\nUPDATE t2 SET b=52510 WHERE a=654;\nUPDATE t2 SET b=3366 WHERE a=655;\nUPDATE t2 SET b=62655 WHERE a=656;\nUPDATE t2 SET b=72232 WHERE a=657;\nUPDATE t2 SET b=67890 WHERE a=658;\nUPDATE t2 SET b=41708 WHERE a=659;\nUPDATE t2 SET b=88459 WHERE a=660;\nUPDATE t2 SET b=14487 WHERE a=661;\nUPDATE t2 SET b=25477 WHERE a=662;\nUPDATE t2 SET b=64226 WHERE a=663;\nUPDATE t2 SET b=663 WHERE a=664;\nUPDATE t2 SET b=24878 WHERE a=665;\nUPDATE t2 SET b=91312 WHERE a=666;\nUPDATE t2 SET b=91224 WHERE a=667;\nUPDATE t2 SET b=98467 WHERE a=668;\nUPDATE t2 SET b=52496 WHERE a=669;\nUPDATE t2 SET b=25936 WHERE a=670;\nUPDATE t2 SET b=86681 WHERE a=671;\nUPDATE t2 SET b=9517 WHERE a=672;\nUPDATE t2 SET b=55975 WHERE a=673;\nUPDATE t2 SET b=77017 WHERE a=674;\nUPDATE t2 SET b=70740 WHERE a=675;\nUPDATE t2 SET b=93624 WHERE a=676;\nUPDATE t2 SET b=66849 WHERE a=677;\nUPDATE t2 SET b=38376 WHERE a=678;\nUPDATE t2 SET b=72919 WHERE a=679;\nUPDATE t2 SET b=56899 WHERE a=680;\nUPDATE t2 SET b=60875 WHERE a=681;\nUPDATE t2 SET b=96983 WHERE a=682;\nUPDATE t2 SET b=29418 WHERE a=683;\nUPDATE t2 SET b=1955 WHERE a=684;\nUPDATE t2 SET b=31107 WHERE a=685;\nUPDATE t2 SET b=3201 WHERE a=686;\nUPDATE t2 SET b=88496 WHERE a=687;\nUPDATE t2 SET b=9826 WHERE a=688;\nUPDATE t2 SET b=97486 WHERE a=689;\nUPDATE t2 SET b=17281 WHERE a=690;\nUPDATE t2 SET b=65005 WHERE a=691;\nUPDATE t2 SET b=23782 WHERE a=692;\nUPDATE t2 SET b=42032 WHERE a=693;\nUPDATE t2 SET b=97966 WHERE a=694;\nUPDATE t2 SET b=82533 WHERE a=695;\nUPDATE t2 SET b=25137 WHERE a=696;\nUPDATE t2 SET b=32721 WHERE a=697;\nUPDATE t2 SET b=80663 WHERE a=698;\nUPDATE t2 SET b=83626 WHERE a=699;\nUPDATE t2 SET b=35082 WHERE a=700;\nUPDATE t2 SET b=43093 WHERE a=701;\nUPDATE t2 SET b=8542 WHERE a=702;\nUPDATE t2 SET b=13705 WHERE a=703;\nUPDATE t2 SET b=24749 WHERE a=704;\nUPDATE t2 SET b=64434 WHERE a=705;\nUPDATE t2 SET b=18402 WHERE a=706;\nUPDATE t2 SET b=31058 WHERE a=707;\nUPDATE t2 SET b=68325 WHERE a=708;\nUPDATE t2 SET b=99079 WHERE a=709;\nUPDATE t2 SET b=84089 WHERE a=710;\nUPDATE t2 SET b=6114 WHERE a=711;\nUPDATE t2 SET b=7787 WHERE a=712;\nUPDATE t2 SET b=67156 WHERE a=713;\nUPDATE t2 SET b=60201 WHERE a=714;\nUPDATE t2 SET b=20411 WHERE a=715;\nUPDATE t2 SET b=53593 WHERE a=716;\nUPDATE t2 SET b=48918 WHERE a=717;\nUPDATE t2 SET b=19632 WHERE a=718;\nUPDATE t2 SET b=86134 WHERE a=719;\nUPDATE t2 SET b=65874 WHERE a=720;\nUPDATE t2 SET b=34120 WHERE a=721;\nUPDATE t2 SET b=67271 WHERE a=722;\nUPDATE t2 SET b=59012 WHERE a=723;\nUPDATE t2 SET b=99855 WHERE a=724;\nUPDATE t2 SET b=54937 WHERE a=725;\nUPDATE t2 SET b=53722 WHERE a=726;\nUPDATE t2 SET b=386 WHERE a=727;\nUPDATE t2 SET b=85774 WHERE a=728;\nUPDATE t2 SET b=60129 WHERE a=729;\nUPDATE t2 SET b=62790 WHERE a=730;\nUPDATE t2 SET b=32870 WHERE a=731;\nUPDATE t2 SET b=37907 WHERE a=732;\nUPDATE t2 SET b=98086 WHERE a=733;\nUPDATE t2 SET b=74994 WHERE a=734;\nUPDATE t2 SET b=98229 WHERE a=735;\nUPDATE t2 SET b=6821 WHERE a=736;\nUPDATE t2 SET b=67730 WHERE a=737;\nUPDATE t2 SET b=15167 WHERE a=738;\nUPDATE t2 SET b=76005 WHERE a=739;\nUPDATE t2 SET b=46649 WHERE a=740;\nUPDATE t2 SET b=18202 WHERE a=741;\nUPDATE t2 SET b=69954 WHERE a=742;\nUPDATE t2 SET b=95972 WHERE a=743;\nUPDATE t2 SET b=18268 WHERE a=744;\nUPDATE t2 SET b=97184 WHERE a=745;\nUPDATE t2 SET b=95353 WHERE a=746;\nUPDATE t2 SET b=39015 WHERE a=747;\nUPDATE t2 SET b=72416 WHERE a=748;\nUPDATE t2 SET b=60523 WHERE a=749;\nUPDATE t2 SET b=263 WHERE a=750;\nUPDATE t2 SET b=70590 WHERE a=751;\nUPDATE t2 SET b=8146 WHERE a=752;\nUPDATE t2 SET b=64654 WHERE a=753;\nUPDATE t2 SET b=94545 WHERE a=754;\nUPDATE t2 SET b=48915 WHERE a=755;\nUPDATE t2 SET b=18334 WHERE a=756;\nUPDATE t2 SET b=16629 WHERE a=757;\nUPDATE t2 SET b=13026 WHERE a=758;\nUPDATE t2 SET b=18416 WHERE a=759;\nUPDATE t2 SET b=84370 WHERE a=760;\nUPDATE t2 SET b=97212 WHERE a=761;\nUPDATE t2 SET b=33658 WHERE a=762;\nUPDATE t2 SET b=55325 WHERE a=763;\nUPDATE t2 SET b=21771 WHERE a=764;\nUPDATE t2 SET b=64727 WHERE a=765;\nUPDATE t2 SET b=93925 WHERE a=766;\nUPDATE t2 SET b=89128 WHERE a=767;\nUPDATE t2 SET b=25242 WHERE a=768;\nUPDATE t2 SET b=59190 WHERE a=769;\nUPDATE t2 SET b=86311 WHERE a=770;\nUPDATE t2 SET b=96768 WHERE a=771;\nUPDATE t2 SET b=53025 WHERE a=772;\nUPDATE t2 SET b=81015 WHERE a=773;\nUPDATE t2 SET b=94187 WHERE a=774;\nUPDATE t2 SET b=81570 WHERE a=775;\nUPDATE t2 SET b=60320 WHERE a=776;\nUPDATE t2 SET b=74870 WHERE a=777;\nUPDATE t2 SET b=66628 WHERE a=778;\nUPDATE t2 SET b=26018 WHERE a=779;\nUPDATE t2 SET b=74528 WHERE a=780;\nUPDATE t2 SET b=18277 WHERE a=781;\nUPDATE t2 SET b=58328 WHERE a=782;\nUPDATE t2 SET b=53461 WHERE a=783;\nUPDATE t2 SET b=19660 WHERE a=784;\nUPDATE t2 SET b=40604 WHERE a=785;\nUPDATE t2 SET b=91365 WHERE a=786;\nUPDATE t2 SET b=10521 WHERE a=787;\nUPDATE t2 SET b=23459 WHERE a=788;\nUPDATE t2 SET b=69983 WHERE a=789;\nUPDATE t2 SET b=88480 WHERE a=790;\nUPDATE t2 SET b=89824 WHERE a=791;\nUPDATE t2 SET b=11295 WHERE a=792;\nUPDATE t2 SET b=63133 WHERE a=793;\nUPDATE t2 SET b=84384 WHERE a=794;\nUPDATE t2 SET b=98409 WHERE a=795;\nUPDATE t2 SET b=77994 WHERE a=796;\nUPDATE t2 SET b=90062 WHERE a=797;\nUPDATE t2 SET b=91800 WHERE a=798;\nUPDATE t2 SET b=8468 WHERE a=799;\nUPDATE t2 SET b=60415 WHERE a=800;\nUPDATE t2 SET b=2352 WHERE a=801;\nUPDATE t2 SET b=12615 WHERE a=802;\nUPDATE t2 SET b=56694 WHERE a=803;\nUPDATE t2 SET b=5733 WHERE a=804;\nUPDATE t2 SET b=20319 WHERE a=805;\nUPDATE t2 SET b=40662 WHERE a=806;\nUPDATE t2 SET b=54652 WHERE a=807;\nUPDATE t2 SET b=80123 WHERE a=808;\nUPDATE t2 SET b=64593 WHERE a=809;\nUPDATE t2 SET b=63598 WHERE a=810;\nUPDATE t2 SET b=60804 WHERE a=811;\nUPDATE t2 SET b=31762 WHERE a=812;\nUPDATE t2 SET b=56747 WHERE a=813;\nUPDATE t2 SET b=92180 WHERE a=814;\nUPDATE t2 SET b=79033 WHERE a=815;\nUPDATE t2 SET b=73503 WHERE a=816;\nUPDATE t2 SET b=21517 WHERE a=817;\nUPDATE t2 SET b=79620 WHERE a=818;\nUPDATE t2 SET b=44046 WHERE a=819;\nUPDATE t2 SET b=56879 WHERE a=820;\nUPDATE t2 SET b=54085 WHERE a=821;\nUPDATE t2 SET b=99002 WHERE a=822;\nUPDATE t2 SET b=54627 WHERE a=823;\nUPDATE t2 SET b=63916 WHERE a=824;\nUPDATE t2 SET b=3929 WHERE a=825;\nUPDATE t2 SET b=34474 WHERE a=826;\nUPDATE t2 SET b=17015 WHERE a=827;\nUPDATE t2 SET b=15847 WHERE a=828;\nUPDATE t2 SET b=44325 WHERE a=829;\nUPDATE t2 SET b=42723 WHERE a=830;\nUPDATE t2 SET b=39234 WHERE a=831;\nUPDATE t2 SET b=24560 WHERE a=832;\nUPDATE t2 SET b=90905 WHERE a=833;\nUPDATE t2 SET b=78239 WHERE a=834;\nUPDATE t2 SET b=98216 WHERE a=835;\nUPDATE t2 SET b=63533 WHERE a=836;\nUPDATE t2 SET b=12198 WHERE a=837;\nUPDATE t2 SET b=97049 WHERE a=838;\nUPDATE t2 SET b=24364 WHERE a=839;\nUPDATE t2 SET b=62169 WHERE a=840;\nUPDATE t2 SET b=92479 WHERE a=841;\nUPDATE t2 SET b=49702 WHERE a=842;\nUPDATE t2 SET b=70453 WHERE a=843;\nUPDATE t2 SET b=84670 WHERE a=844;\nUPDATE t2 SET b=68220 WHERE a=845;\nUPDATE t2 SET b=92644 WHERE a=846;\nUPDATE t2 SET b=13345 WHERE a=847;\nUPDATE t2 SET b=20942 WHERE a=848;\nUPDATE t2 SET b=4838 WHERE a=849;\nUPDATE t2 SET b=51905 WHERE a=850;\nUPDATE t2 SET b=80403 WHERE a=851;\nUPDATE t2 SET b=73785 WHERE a=852;\nUPDATE t2 SET b=63956 WHERE a=853;\nUPDATE t2 SET b=9176 WHERE a=854;\nUPDATE t2 SET b=62020 WHERE a=855;\nUPDATE t2 SET b=99506 WHERE a=856;\nUPDATE t2 SET b=36118 WHERE a=857;\nUPDATE t2 SET b=85824 WHERE a=858;\nUPDATE t2 SET b=11095 WHERE a=859;\nUPDATE t2 SET b=1872 WHERE a=860;\nUPDATE t2 SET b=97730 WHERE a=861;\nUPDATE t2 SET b=50368 WHERE a=862;\nUPDATE t2 SET b=21183 WHERE a=863;\nUPDATE t2 SET b=40590 WHERE a=864;\nUPDATE t2 SET b=10902 WHERE a=865;\nUPDATE t2 SET b=92429 WHERE a=866;\nUPDATE t2 SET b=63025 WHERE a=867;\nUPDATE t2 SET b=3084 WHERE a=868;\nUPDATE t2 SET b=34283 WHERE a=869;\nUPDATE t2 SET b=85390 WHERE a=870;\nUPDATE t2 SET b=94762 WHERE a=871;\nUPDATE t2 SET b=94421 WHERE a=872;\nUPDATE t2 SET b=14212 WHERE a=873;\nUPDATE t2 SET b=36683 WHERE a=874;\nUPDATE t2 SET b=27770 WHERE a=875;\nUPDATE t2 SET b=39365 WHERE a=876;\nUPDATE t2 SET b=15598 WHERE a=877;\nUPDATE t2 SET b=25057 WHERE a=878;\nUPDATE t2 SET b=27956 WHERE a=879;\nUPDATE t2 SET b=66878 WHERE a=880;\nUPDATE t2 SET b=6794 WHERE a=881;\nUPDATE t2 SET b=4870 WHERE a=882;\nUPDATE t2 SET b=20297 WHERE a=883;\nUPDATE t2 SET b=75681 WHERE a=884;\nUPDATE t2 SET b=75800 WHERE a=885;\nUPDATE t2 SET b=82836 WHERE a=886;\nUPDATE t2 SET b=9111 WHERE a=887;\nUPDATE t2 SET b=60883 WHERE a=888;\nUPDATE t2 SET b=46444 WHERE a=889;\nUPDATE t2 SET b=92590 WHERE a=890;\nUPDATE t2 SET b=83947 WHERE a=891;\nUPDATE t2 SET b=53543 WHERE a=892;\nUPDATE t2 SET b=71106 WHERE a=893;\nUPDATE t2 SET b=86481 WHERE a=894;\nUPDATE t2 SET b=15791 WHERE a=895;\nUPDATE t2 SET b=41232 WHERE a=896;\nUPDATE t2 SET b=79374 WHERE a=897;\nUPDATE t2 SET b=55203 WHERE a=898;\nUPDATE t2 SET b=28681 WHERE a=899;\nUPDATE t2 SET b=9151 WHERE a=900;\nUPDATE t2 SET b=35825 WHERE a=901;\nUPDATE t2 SET b=6357 WHERE a=902;\nUPDATE t2 SET b=50248 WHERE a=903;\nUPDATE t2 SET b=74260 WHERE a=904;\nUPDATE t2 SET b=70963 WHERE a=905;\nUPDATE t2 SET b=5906 WHERE a=906;\nUPDATE t2 SET b=10164 WHERE a=907;\nUPDATE t2 SET b=69099 WHERE a=908;\nUPDATE t2 SET b=37129 WHERE a=909;\nUPDATE t2 SET b=19438 WHERE a=910;\nUPDATE t2 SET b=83238 WHERE a=911;\nUPDATE t2 SET b=8761 WHERE a=912;\nUPDATE t2 SET b=81654 WHERE a=913;\nUPDATE t2 SET b=69648 WHERE a=914;\nUPDATE t2 SET b=35670 WHERE a=915;\nUPDATE t2 SET b=16543 WHERE a=916;\nUPDATE t2 SET b=48688 WHERE a=917;\nUPDATE t2 SET b=38804 WHERE a=918;\nUPDATE t2 SET b=98985 WHERE a=919;\nUPDATE t2 SET b=61715 WHERE a=920;\nUPDATE t2 SET b=41008 WHERE a=921;\nUPDATE t2 SET b=66376 WHERE a=922;\nUPDATE t2 SET b=10497 WHERE a=923;\nUPDATE t2 SET b=92418 WHERE a=924;\nUPDATE t2 SET b=29499 WHERE a=925;\nUPDATE t2 SET b=98397 WHERE a=926;\nUPDATE t2 SET b=76221 WHERE a=927;\nUPDATE t2 SET b=31920 WHERE a=928;\nUPDATE t2 SET b=15830 WHERE a=929;\nUPDATE t2 SET b=36175 WHERE a=930;\nUPDATE t2 SET b=25656 WHERE a=931;\nUPDATE t2 SET b=62531 WHERE a=932;\nUPDATE t2 SET b=50927 WHERE a=933;\nUPDATE t2 SET b=49245 WHERE a=934;\nUPDATE t2 SET b=61006 WHERE a=935;\nUPDATE t2 SET b=54160 WHERE a=936;\nUPDATE t2 SET b=12424 WHERE a=937;\nUPDATE t2 SET b=6761 WHERE a=938;\nUPDATE t2 SET b=14729 WHERE a=939;\nUPDATE t2 SET b=91887 WHERE a=940;\nUPDATE t2 SET b=59064 WHERE a=941;\nUPDATE t2 SET b=29820 WHERE a=942;\nUPDATE t2 SET b=90122 WHERE a=943;\nUPDATE t2 SET b=57980 WHERE a=944;\nUPDATE t2 SET b=10396 WHERE a=945;\nUPDATE t2 SET b=75442 WHERE a=946;\nUPDATE t2 SET b=92534 WHERE a=947;\nUPDATE t2 SET b=19292 WHERE a=948;\nUPDATE t2 SET b=27768 WHERE a=949;\nUPDATE t2 SET b=27090 WHERE a=950;\nUPDATE t2 SET b=98753 WHERE a=951;\nUPDATE t2 SET b=10208 WHERE a=952;\nUPDATE t2 SET b=51478 WHERE a=953;\nUPDATE t2 SET b=60869 WHERE a=954;\nUPDATE t2 SET b=76917 WHERE a=955;\nUPDATE t2 SET b=14247 WHERE a=956;\nUPDATE t2 SET b=85323 WHERE a=957;\nUPDATE t2 SET b=67138 WHERE a=958;\nUPDATE t2 SET b=74632 WHERE a=959;\nUPDATE t2 SET b=20397 WHERE a=960;\nUPDATE t2 SET b=69259 WHERE a=961;\nUPDATE t2 SET b=87064 WHERE a=962;\nUPDATE t2 SET b=45637 WHERE a=963;\nUPDATE t2 SET b=2518 WHERE a=964;\nUPDATE t2 SET b=10426 WHERE a=965;\nUPDATE t2 SET b=39079 WHERE a=966;\nUPDATE t2 SET b=57460 WHERE a=967;\nUPDATE t2 SET b=14554 WHERE a=968;\nUPDATE t2 SET b=61595 WHERE a=969;\nUPDATE t2 SET b=47093 WHERE a=970;\nUPDATE t2 SET b=21988 WHERE a=971;\nUPDATE t2 SET b=57326 WHERE a=972;\nUPDATE t2 SET b=50936 WHERE a=973;\nUPDATE t2 SET b=94110 WHERE a=974;\nUPDATE t2 SET b=9589 WHERE a=975;\nUPDATE t2 SET b=69198 WHERE a=976;\nUPDATE t2 SET b=80683 WHERE a=977;\nUPDATE t2 SET b=99933 WHERE a=978;\nUPDATE t2 SET b=79751 WHERE a=979;\nUPDATE t2 SET b=20700 WHERE a=980;\nUPDATE t2 SET b=72980 WHERE a=981;\nUPDATE t2 SET b=85253 WHERE a=982;\nUPDATE t2 SET b=32493 WHERE a=983;\nUPDATE t2 SET b=82135 WHERE a=984;\nUPDATE t2 SET b=63082 WHERE a=985;\nUPDATE t2 SET b=76683 WHERE a=986;\nUPDATE t2 SET b=23751 WHERE a=987;\nUPDATE t2 SET b=69207 WHERE a=988;\nUPDATE t2 SET b=55699 WHERE a=989;\nUPDATE t2 SET b=12854 WHERE a=990;\nUPDATE t2 SET b=75077 WHERE a=991;\nUPDATE t2 SET b=86584 WHERE a=992;\nUPDATE t2 SET b=42224 WHERE a=993;\nUPDATE t2 SET b=21804 WHERE a=994;\nUPDATE t2 SET b=15261 WHERE a=995;\nUPDATE t2 SET b=5042 WHERE a=996;\nUPDATE t2 SET b=70116 WHERE a=997;\nUPDATE t2 SET b=75678 WHERE a=998;\nUPDATE t2 SET b=2860 WHERE a=999;\nUPDATE t2 SET b=73520 WHERE a=1000;\nUPDATE t2 SET b=35324 WHERE a=1001;\nUPDATE t2 SET b=69640 WHERE a=1002;\nUPDATE t2 SET b=68759 WHERE a=1003;\nUPDATE t2 SET b=57526 WHERE a=1004;\nUPDATE t2 SET b=56161 WHERE a=1005;\nUPDATE t2 SET b=54651 WHERE a=1006;\nUPDATE t2 SET b=1033 WHERE a=1007;\nUPDATE t2 SET b=63232 WHERE a=1008;\nUPDATE t2 SET b=83257 WHERE a=1009;\nUPDATE t2 SET b=73770 WHERE a=1010;\nUPDATE t2 SET b=40406 WHERE a=1011;\nUPDATE t2 SET b=3865 WHERE a=1012;\nUPDATE t2 SET b=66486 WHERE a=1013;\nUPDATE t2 SET b=57785 WHERE a=1014;\nUPDATE t2 SET b=63799 WHERE a=1015;\nUPDATE t2 SET b=97371 WHERE a=1016;\nUPDATE t2 SET b=63341 WHERE a=1017;\nUPDATE t2 SET b=12422 WHERE a=1018;\nUPDATE t2 SET b=55988 WHERE a=1019;\nUPDATE t2 SET b=20785 WHERE a=1020;\nUPDATE t2 SET b=98940 WHERE a=1021;\nUPDATE t2 SET b=11066 WHERE a=1022;\nUPDATE t2 SET b=1823 WHERE a=1023;\nUPDATE t2 SET b=43574 WHERE a=1024;\nUPDATE t2 SET b=92755 WHERE a=1025;\nUPDATE t2 SET b=11319 WHERE a=1026;\nUPDATE t2 SET b=33267 WHERE a=1027;\nUPDATE t2 SET b=56563 WHERE a=1028;\nUPDATE t2 SET b=92236 WHERE a=1029;\nUPDATE t2 SET b=5183 WHERE a=1030;\nUPDATE t2 SET b=31913 WHERE a=1031;\nUPDATE t2 SET b=77300 WHERE a=1032;\nUPDATE t2 SET b=28071 WHERE a=1033;\nUPDATE t2 SET b=66015 WHERE a=1034;\nUPDATE t2 SET b=13628 WHERE a=1035;\nUPDATE t2 SET b=40631 WHERE a=1036;\nUPDATE t2 SET b=82604 WHERE a=1037;\nUPDATE t2 SET b=61483 WHERE a=1038;\nUPDATE t2 SET b=10941 WHERE a=1039;\nUPDATE t2 SET b=86595 WHERE a=1040;\nUPDATE t2 SET b=94727 WHERE a=1041;\nUPDATE t2 SET b=82666 WHERE a=1042;\nUPDATE t2 SET b=73258 WHERE a=1043;\nUPDATE t2 SET b=97009 WHERE a=1044;\nUPDATE t2 SET b=50493 WHERE a=1045;\nUPDATE t2 SET b=88654 WHERE a=1046;\nUPDATE t2 SET b=44274 WHERE a=1047;\nUPDATE t2 SET b=3558 WHERE a=1048;\nUPDATE t2 SET b=60117 WHERE a=1049;\nUPDATE t2 SET b=9040 WHERE a=1050;\nUPDATE t2 SET b=76563 WHERE a=1051;\nUPDATE t2 SET b=80706 WHERE a=1052;\nUPDATE t2 SET b=89293 WHERE a=1053;\nUPDATE t2 SET b=95204 WHERE a=1054;\nUPDATE t2 SET b=52524 WHERE a=1055;\nUPDATE t2 SET b=8980 WHERE a=1056;\nUPDATE t2 SET b=76164 WHERE a=1057;\nUPDATE t2 SET b=96542 WHERE a=1058;\nUPDATE t2 SET b=10939 WHERE a=1059;\nUPDATE t2 SET b=61854 WHERE a=1060;\nUPDATE t2 SET b=31385 WHERE a=1061;\nUPDATE t2 SET b=63883 WHERE a=1062;\nUPDATE t2 SET b=2065 WHERE a=1063;\nUPDATE t2 SET b=30291 WHERE a=1064;\nUPDATE t2 SET b=13537 WHERE a=1065;\nUPDATE t2 SET b=14118 WHERE a=1066;\nUPDATE t2 SET b=24145 WHERE a=1067;\nUPDATE t2 SET b=6142 WHERE a=1068;\nUPDATE t2 SET b=9575 WHERE a=1069;\nUPDATE t2 SET b=90007 WHERE a=1070;\nUPDATE t2 SET b=23957 WHERE a=1071;\nUPDATE t2 SET b=84304 WHERE a=1072;\nUPDATE t2 SET b=69022 WHERE a=1073;\nUPDATE t2 SET b=50612 WHERE a=1074;\nUPDATE t2 SET b=22557 WHERE a=1075;\nUPDATE t2 SET b=57521 WHERE a=1076;\nUPDATE t2 SET b=27431 WHERE a=1077;\nUPDATE t2 SET b=91415 WHERE a=1078;\nUPDATE t2 SET b=91981 WHERE a=1079;\nUPDATE t2 SET b=60357 WHERE a=1080;\nUPDATE t2 SET b=90082 WHERE a=1081;\nUPDATE t2 SET b=96171 WHERE a=1082;\nUPDATE t2 SET b=76637 WHERE a=1083;\nUPDATE t2 SET b=14658 WHERE a=1084;\nUPDATE t2 SET b=60189 WHERE a=1085;\nUPDATE t2 SET b=67751 WHERE a=1086;\nUPDATE t2 SET b=69928 WHERE a=1087;\nUPDATE t2 SET b=47829 WHERE a=1088;\nUPDATE t2 SET b=11117 WHERE a=1089;\nUPDATE t2 SET b=58945 WHERE a=1090;\nUPDATE t2 SET b=31497 WHERE a=1091;\nUPDATE t2 SET b=6297 WHERE a=1092;\nUPDATE t2 SET b=90268 WHERE a=1093;\nUPDATE t2 SET b=38005 WHERE a=1094;\nUPDATE t2 SET b=5322 WHERE a=1095;\nUPDATE t2 SET b=39102 WHERE a=1096;\nUPDATE t2 SET b=92108 WHERE a=1097;\nUPDATE t2 SET b=16913 WHERE a=1098;\nUPDATE t2 SET b=33889 WHERE a=1099;\nUPDATE t2 SET b=47733 WHERE a=1100;\nUPDATE t2 SET b=40407 WHERE a=1101;\nUPDATE t2 SET b=65198 WHERE a=1102;\nUPDATE t2 SET b=57741 WHERE a=1103;\nUPDATE t2 SET b=66042 WHERE a=1104;\nUPDATE t2 SET b=51775 WHERE a=1105;\nUPDATE t2 SET b=52650 WHERE a=1106;\nUPDATE t2 SET b=32705 WHERE a=1107;\nUPDATE t2 SET b=95813 WHERE a=1108;\nUPDATE t2 SET b=23606 WHERE a=1109;\nUPDATE t2 SET b=18114 WHERE a=1110;\nUPDATE t2 SET b=95538 WHERE a=1111;\nUPDATE t2 SET b=96529 WHERE a=1112;\nUPDATE t2 SET b=40081 WHERE a=1113;\nUPDATE t2 SET b=3185 WHERE a=1114;\nUPDATE t2 SET b=92899 WHERE a=1115;\nUPDATE t2 SET b=17923 WHERE a=1116;\nUPDATE t2 SET b=50305 WHERE a=1117;\nUPDATE t2 SET b=74829 WHERE a=1118;\nUPDATE t2 SET b=93064 WHERE a=1119;\nUPDATE t2 SET b=62754 WHERE a=1120;\nUPDATE t2 SET b=27701 WHERE a=1121;\nUPDATE t2 SET b=98676 WHERE a=1122;\nUPDATE t2 SET b=63678 WHERE a=1123;\nUPDATE t2 SET b=31139 WHERE a=1124;\nUPDATE t2 SET b=60631 WHERE a=1125;\nUPDATE t2 SET b=12674 WHERE a=1126;\nUPDATE t2 SET b=18160 WHERE a=1127;\nUPDATE t2 SET b=38233 WHERE a=1128;\nUPDATE t2 SET b=20336 WHERE a=1129;\nUPDATE t2 SET b=56419 WHERE a=1130;\nUPDATE t2 SET b=21288 WHERE a=1131;\nUPDATE t2 SET b=26042 WHERE a=1132;\nUPDATE t2 SET b=79012 WHERE a=1133;\nUPDATE t2 SET b=61769 WHERE a=1134;\nUPDATE t2 SET b=54926 WHERE a=1135;\nUPDATE t2 SET b=18957 WHERE a=1136;\nUPDATE t2 SET b=51034 WHERE a=1137;\nUPDATE t2 SET b=70751 WHERE a=1138;\nUPDATE t2 SET b=69863 WHERE a=1139;\nUPDATE t2 SET b=70761 WHERE a=1140;\nUPDATE t2 SET b=15056 WHERE a=1141;\nUPDATE t2 SET b=41725 WHERE a=1142;\nUPDATE t2 SET b=82359 WHERE a=1143;\nUPDATE t2 SET b=78117 WHERE a=1144;\nUPDATE t2 SET b=65854 WHERE a=1145;\nUPDATE t2 SET b=270 WHERE a=1146;\nUPDATE t2 SET b=94414 WHERE a=1147;\nUPDATE t2 SET b=67109 WHERE a=1148;\nUPDATE t2 SET b=7443 WHERE a=1149;\nUPDATE t2 SET b=86941 WHERE a=1150;\nUPDATE t2 SET b=70323 WHERE a=1151;\nUPDATE t2 SET b=97818 WHERE a=1152;\nUPDATE t2 SET b=99343 WHERE a=1153;\nUPDATE t2 SET b=35300 WHERE a=1154;\nUPDATE t2 SET b=18734 WHERE a=1155;\nUPDATE t2 SET b=6308 WHERE a=1156;\nUPDATE t2 SET b=48975 WHERE a=1157;\nUPDATE t2 SET b=57923 WHERE a=1158;\nUPDATE t2 SET b=39556 WHERE a=1159;\nUPDATE t2 SET b=28745 WHERE a=1160;\nUPDATE t2 SET b=8573 WHERE a=1161;\nUPDATE t2 SET b=30063 WHERE a=1162;\nUPDATE t2 SET b=68834 WHERE a=1163;\nUPDATE t2 SET b=24861 WHERE a=1164;\nUPDATE t2 SET b=80744 WHERE a=1165;\nUPDATE t2 SET b=50942 WHERE a=1166;\nUPDATE t2 SET b=50653 WHERE a=1167;\nUPDATE t2 SET b=39673 WHERE a=1168;\nUPDATE t2 SET b=89506 WHERE a=1169;\nUPDATE t2 SET b=66354 WHERE a=1170;\nUPDATE t2 SET b=424 WHERE a=1171;\nUPDATE t2 SET b=45751 WHERE a=1172;\nUPDATE t2 SET b=93551 WHERE a=1173;\nUPDATE t2 SET b=94478 WHERE a=1174;\nUPDATE t2 SET b=6148 WHERE a=1175;\nUPDATE t2 SET b=94341 WHERE a=1176;\nUPDATE t2 SET b=62454 WHERE a=1177;\nUPDATE t2 SET b=52243 WHERE a=1178;\nUPDATE t2 SET b=51874 WHERE a=1179;\nUPDATE t2 SET b=55975 WHERE a=1180;\nUPDATE t2 SET b=2369 WHERE a=1181;\nUPDATE t2 SET b=94950 WHERE a=1182;\nUPDATE t2 SET b=98017 WHERE a=1183;\nUPDATE t2 SET b=80290 WHERE a=1184;\nUPDATE t2 SET b=1082 WHERE a=1185;\nUPDATE t2 SET b=68414 WHERE a=1186;\nUPDATE t2 SET b=46627 WHERE a=1187;\nUPDATE t2 SET b=60558 WHERE a=1188;\nUPDATE t2 SET b=72690 WHERE a=1189;\nUPDATE t2 SET b=13521 WHERE a=1190;\nUPDATE t2 SET b=49388 WHERE a=1191;\nUPDATE t2 SET b=55873 WHERE a=1192;\nUPDATE t2 SET b=87048 WHERE a=1193;\nUPDATE t2 SET b=47631 WHERE a=1194;\nUPDATE t2 SET b=50970 WHERE a=1195;\nUPDATE t2 SET b=80946 WHERE a=1196;\nUPDATE t2 SET b=79826 WHERE a=1197;\nUPDATE t2 SET b=13232 WHERE a=1198;\nUPDATE t2 SET b=29793 WHERE a=1199;\nUPDATE t2 SET b=50660 WHERE a=1200;\nUPDATE t2 SET b=82929 WHERE a=1201;\nUPDATE t2 SET b=10239 WHERE a=1202;\nUPDATE t2 SET b=91768 WHERE a=1203;\nUPDATE t2 SET b=9267 WHERE a=1204;\nUPDATE t2 SET b=6581 WHERE a=1205;\nUPDATE t2 SET b=39983 WHERE a=1206;\nUPDATE t2 SET b=88643 WHERE a=1207;\nUPDATE t2 SET b=22138 WHERE a=1208;\nUPDATE t2 SET b=49724 WHERE a=1209;\nUPDATE t2 SET b=74233 WHERE a=1210;\nUPDATE t2 SET b=30351 WHERE a=1211;\nUPDATE t2 SET b=33242 WHERE a=1212;\nUPDATE t2 SET b=71091 WHERE a=1213;\nUPDATE t2 SET b=64463 WHERE a=1214;\nUPDATE t2 SET b=11207 WHERE a=1215;\nUPDATE t2 SET b=77025 WHERE a=1216;\nUPDATE t2 SET b=62115 WHERE a=1217;\nUPDATE t2 SET b=25751 WHERE a=1218;\nUPDATE t2 SET b=23822 WHERE a=1219;\nUPDATE t2 SET b=47250 WHERE a=1220;\nUPDATE t2 SET b=12202 WHERE a=1221;\nUPDATE t2 SET b=41005 WHERE a=1222;\nUPDATE t2 SET b=27909 WHERE a=1223;\nUPDATE t2 SET b=59023 WHERE a=1224;\nUPDATE t2 SET b=9116 WHERE a=1225;\nUPDATE t2 SET b=16955 WHERE a=1226;\nUPDATE t2 SET b=42231 WHERE a=1227;\nUPDATE t2 SET b=63870 WHERE a=1228;\nUPDATE t2 SET b=25916 WHERE a=1229;\nUPDATE t2 SET b=86000 WHERE a=1230;\nUPDATE t2 SET b=45562 WHERE a=1231;\nUPDATE t2 SET b=46125 WHERE a=1232;\nUPDATE t2 SET b=52818 WHERE a=1233;\nUPDATE t2 SET b=80284 WHERE a=1234;\nUPDATE t2 SET b=81569 WHERE a=1235;\nUPDATE t2 SET b=73134 WHERE a=1236;\nUPDATE t2 SET b=40806 WHERE a=1237;\nUPDATE t2 SET b=68227 WHERE a=1238;\nUPDATE t2 SET b=90687 WHERE a=1239;\nUPDATE t2 SET b=64543 WHERE a=1240;\nUPDATE t2 SET b=8925 WHERE a=1241;\nUPDATE t2 SET b=35709 WHERE a=1242;\nUPDATE t2 SET b=69213 WHERE a=1243;\nUPDATE t2 SET b=46642 WHERE a=1244;\nUPDATE t2 SET b=59967 WHERE a=1245;\nUPDATE t2 SET b=42911 WHERE a=1246;\nUPDATE t2 SET b=83395 WHERE a=1247;\nUPDATE t2 SET b=27164 WHERE a=1248;\nUPDATE t2 SET b=89316 WHERE a=1249;\nUPDATE t2 SET b=98302 WHERE a=1250;\nUPDATE t2 SET b=67700 WHERE a=1251;\nUPDATE t2 SET b=40554 WHERE a=1252;\nUPDATE t2 SET b=29961 WHERE a=1253;\nUPDATE t2 SET b=28610 WHERE a=1254;\nUPDATE t2 SET b=56426 WHERE a=1255;\nUPDATE t2 SET b=67242 WHERE a=1256;\nUPDATE t2 SET b=96389 WHERE a=1257;\nUPDATE t2 SET b=14973 WHERE a=1258;\nUPDATE t2 SET b=45650 WHERE a=1259;\nUPDATE t2 SET b=24604 WHERE a=1260;\nUPDATE t2 SET b=29529 WHERE a=1261;\nUPDATE t2 SET b=21106 WHERE a=1262;\nUPDATE t2 SET b=53679 WHERE a=1263;\nUPDATE t2 SET b=80511 WHERE a=1264;\nUPDATE t2 SET b=81222 WHERE a=1265;\nUPDATE t2 SET b=66059 WHERE a=1266;\nUPDATE t2 SET b=92739 WHERE a=1267;\nUPDATE t2 SET b=65683 WHERE a=1268;\nUPDATE t2 SET b=23668 WHERE a=1269;\nUPDATE t2 SET b=76646 WHERE a=1270;\nUPDATE t2 SET b=83023 WHERE a=1271;\nUPDATE t2 SET b=40605 WHERE a=1272;\nUPDATE t2 SET b=92416 WHERE a=1273;\nUPDATE t2 SET b=25802 WHERE a=1274;\nUPDATE t2 SET b=80128 WHERE a=1275;\nUPDATE t2 SET b=91627 WHERE a=1276;\nUPDATE t2 SET b=44567 WHERE a=1277;\nUPDATE t2 SET b=78949 WHERE a=1278;\nUPDATE t2 SET b=88137 WHERE a=1279;\nUPDATE t2 SET b=41766 WHERE a=1280;\nUPDATE t2 SET b=41665 WHERE a=1281;\nUPDATE t2 SET b=87664 WHERE a=1282;\nUPDATE t2 SET b=43391 WHERE a=1283;\nUPDATE t2 SET b=64281 WHERE a=1284;\nUPDATE t2 SET b=19113 WHERE a=1285;\nUPDATE t2 SET b=91463 WHERE a=1286;\nUPDATE t2 SET b=27289 WHERE a=1287;\nUPDATE t2 SET b=40075 WHERE a=1288;\nUPDATE t2 SET b=64372 WHERE a=1289;\nUPDATE t2 SET b=95176 WHERE a=1290;\nUPDATE t2 SET b=16249 WHERE a=1291;\nUPDATE t2 SET b=62981 WHERE a=1292;\nUPDATE t2 SET b=79100 WHERE a=1293;\nUPDATE t2 SET b=75346 WHERE a=1294;\nUPDATE t2 SET b=55042 WHERE a=1295;\nUPDATE t2 SET b=85304 WHERE a=1296;\nUPDATE t2 SET b=330 WHERE a=1297;\nUPDATE t2 SET b=51281 WHERE a=1298;\nUPDATE t2 SET b=24966 WHERE a=1299;\nUPDATE t2 SET b=68301 WHERE a=1300;\nUPDATE t2 SET b=96205 WHERE a=1301;\nUPDATE t2 SET b=44024 WHERE a=1302;\nUPDATE t2 SET b=57916 WHERE a=1303;\nUPDATE t2 SET b=76019 WHERE a=1304;\nUPDATE t2 SET b=70905 WHERE a=1305;\nUPDATE t2 SET b=34707 WHERE a=1306;\nUPDATE t2 SET b=93749 WHERE a=1307;\nUPDATE t2 SET b=25721 WHERE a=1308;\nUPDATE t2 SET b=7282 WHERE a=1309;\nUPDATE t2 SET b=61957 WHERE a=1310;\nUPDATE t2 SET b=65685 WHERE a=1311;\nUPDATE t2 SET b=18782 WHERE a=1312;\nUPDATE t2 SET b=55544 WHERE a=1313;\nUPDATE t2 SET b=93557 WHERE a=1314;\nUPDATE t2 SET b=69417 WHERE a=1315;\nUPDATE t2 SET b=8297 WHERE a=1316;\nUPDATE t2 SET b=36178 WHERE a=1317;\nUPDATE t2 SET b=92164 WHERE a=1318;\nUPDATE t2 SET b=46629 WHERE a=1319;\nUPDATE t2 SET b=16248 WHERE a=1320;\nUPDATE t2 SET b=80988 WHERE a=1321;\nUPDATE t2 SET b=53275 WHERE a=1322;\nUPDATE t2 SET b=7152 WHERE a=1323;\nUPDATE t2 SET b=3971 WHERE a=1324;\nUPDATE t2 SET b=71241 WHERE a=1325;\nUPDATE t2 SET b=66641 WHERE a=1326;\nUPDATE t2 SET b=27351 WHERE a=1327;\nUPDATE t2 SET b=53686 WHERE a=1328;\nUPDATE t2 SET b=38297 WHERE a=1329;\nUPDATE t2 SET b=4750 WHERE a=1330;\nUPDATE t2 SET b=66742 WHERE a=1331;\nUPDATE t2 SET b=65784 WHERE a=1332;\nUPDATE t2 SET b=17089 WHERE a=1333;\nUPDATE t2 SET b=40448 WHERE a=1334;\nUPDATE t2 SET b=78740 WHERE a=1335;\nUPDATE t2 SET b=34341 WHERE a=1336;\nUPDATE t2 SET b=60663 WHERE a=1337;\nUPDATE t2 SET b=28776 WHERE a=1338;\nUPDATE t2 SET b=79771 WHERE a=1339;\nUPDATE t2 SET b=37695 WHERE a=1340;\nUPDATE t2 SET b=26359 WHERE a=1341;\nUPDATE t2 SET b=7932 WHERE a=1342;\nUPDATE t2 SET b=62028 WHERE a=1343;\nUPDATE t2 SET b=95677 WHERE a=1344;\nUPDATE t2 SET b=4093 WHERE a=1345;\nUPDATE t2 SET b=86440 WHERE a=1346;\nUPDATE t2 SET b=88414 WHERE a=1347;\nUPDATE t2 SET b=36103 WHERE a=1348;\nUPDATE t2 SET b=19839 WHERE a=1349;\nUPDATE t2 SET b=17725 WHERE a=1350;\nUPDATE t2 SET b=47358 WHERE a=1351;\nUPDATE t2 SET b=9719 WHERE a=1352;\nUPDATE t2 SET b=63422 WHERE a=1353;\nUPDATE t2 SET b=81659 WHERE a=1354;\nUPDATE t2 SET b=3430 WHERE a=1355;\nUPDATE t2 SET b=73774 WHERE a=1356;\nUPDATE t2 SET b=75198 WHERE a=1357;\nUPDATE t2 SET b=87499 WHERE a=1358;\nUPDATE t2 SET b=8519 WHERE a=1359;\nUPDATE t2 SET b=30633 WHERE a=1360;\nUPDATE t2 SET b=2588 WHERE a=1361;\nUPDATE t2 SET b=59381 WHERE a=1362;\nUPDATE t2 SET b=93506 WHERE a=1363;\nUPDATE t2 SET b=10136 WHERE a=1364;\nUPDATE t2 SET b=63241 WHERE a=1365;\nUPDATE t2 SET b=27768 WHERE a=1366;\nUPDATE t2 SET b=850 WHERE a=1367;\nUPDATE t2 SET b=18906 WHERE a=1368;\nUPDATE t2 SET b=70347 WHERE a=1369;\nUPDATE t2 SET b=63558 WHERE a=1370;\nUPDATE t2 SET b=7201 WHERE a=1371;\nUPDATE t2 SET b=83557 WHERE a=1372;\nUPDATE t2 SET b=81344 WHERE a=1373;\nUPDATE t2 SET b=47778 WHERE a=1374;\nUPDATE t2 SET b=68043 WHERE a=1375;\nUPDATE t2 SET b=68711 WHERE a=1376;\nUPDATE t2 SET b=68495 WHERE a=1377;\nUPDATE t2 SET b=52651 WHERE a=1378;\nUPDATE t2 SET b=23383 WHERE a=1379;\nUPDATE t2 SET b=38604 WHERE a=1380;\nUPDATE t2 SET b=58960 WHERE a=1381;\nUPDATE t2 SET b=72140 WHERE a=1382;\nUPDATE t2 SET b=94235 WHERE a=1383;\nUPDATE t2 SET b=33344 WHERE a=1384;\nUPDATE t2 SET b=96070 WHERE a=1385;\nUPDATE t2 SET b=96025 WHERE a=1386;\nUPDATE t2 SET b=65829 WHERE a=1387;\nUPDATE t2 SET b=670 WHERE a=1388;\nUPDATE t2 SET b=61805 WHERE a=1389;\nUPDATE t2 SET b=96762 WHERE a=1390;\nUPDATE t2 SET b=63174 WHERE a=1391;\nUPDATE t2 SET b=84358 WHERE a=1392;\nUPDATE t2 SET b=2638 WHERE a=1393;\nUPDATE t2 SET b=95390 WHERE a=1394;\nUPDATE t2 SET b=4374 WHERE a=1395;\nUPDATE t2 SET b=25039 WHERE a=1396;\nUPDATE t2 SET b=31081 WHERE a=1397;\nUPDATE t2 SET b=42701 WHERE a=1398;\nUPDATE t2 SET b=49189 WHERE a=1399;\nUPDATE t2 SET b=9657 WHERE a=1400;\nUPDATE t2 SET b=36391 WHERE a=1401;\nUPDATE t2 SET b=23884 WHERE a=1402;\nUPDATE t2 SET b=95063 WHERE a=1403;\nUPDATE t2 SET b=85140 WHERE a=1404;\nUPDATE t2 SET b=77749 WHERE a=1405;\nUPDATE t2 SET b=57567 WHERE a=1406;\nUPDATE t2 SET b=38806 WHERE a=1407;\nUPDATE t2 SET b=13185 WHERE a=1408;\nUPDATE t2 SET b=38866 WHERE a=1409;\nUPDATE t2 SET b=53180 WHERE a=1410;\nUPDATE t2 SET b=37810 WHERE a=1411;\nUPDATE t2 SET b=51311 WHERE a=1412;\nUPDATE t2 SET b=21001 WHERE a=1413;\nUPDATE t2 SET b=59707 WHERE a=1414;\nUPDATE t2 SET b=76433 WHERE a=1415;\nUPDATE t2 SET b=94343 WHERE a=1416;\nUPDATE t2 SET b=68211 WHERE a=1417;\nUPDATE t2 SET b=9497 WHERE a=1418;\nUPDATE t2 SET b=84187 WHERE a=1419;\nUPDATE t2 SET b=14605 WHERE a=1420;\nUPDATE t2 SET b=38372 WHERE a=1421;\nUPDATE t2 SET b=91438 WHERE a=1422;\nUPDATE t2 SET b=38980 WHERE a=1423;\nUPDATE t2 SET b=11631 WHERE a=1424;\nUPDATE t2 SET b=76249 WHERE a=1425;\nUPDATE t2 SET b=35489 WHERE a=1426;\nUPDATE t2 SET b=31688 WHERE a=1427;\nUPDATE t2 SET b=77978 WHERE a=1428;\nUPDATE t2 SET b=96169 WHERE a=1429;\nUPDATE t2 SET b=42445 WHERE a=1430;\nUPDATE t2 SET b=25232 WHERE a=1431;\nUPDATE t2 SET b=11715 WHERE a=1432;\nUPDATE t2 SET b=85116 WHERE a=1433;\nUPDATE t2 SET b=64479 WHERE a=1434;\nUPDATE t2 SET b=26283 WHERE a=1435;\nUPDATE t2 SET b=18335 WHERE a=1436;\nUPDATE t2 SET b=33630 WHERE a=1437;\nUPDATE t2 SET b=40134 WHERE a=1438;\nUPDATE t2 SET b=51829 WHERE a=1439;\nUPDATE t2 SET b=24712 WHERE a=1440;\nUPDATE t2 SET b=62203 WHERE a=1441;\nUPDATE t2 SET b=10741 WHERE a=1442;\nUPDATE t2 SET b=25196 WHERE a=1443;\nUPDATE t2 SET b=76490 WHERE a=1444;\nUPDATE t2 SET b=22861 WHERE a=1445;\nUPDATE t2 SET b=75189 WHERE a=1446;\nUPDATE t2 SET b=72919 WHERE a=1447;\nUPDATE t2 SET b=34626 WHERE a=1448;\nUPDATE t2 SET b=87951 WHERE a=1449;\nUPDATE t2 SET b=25143 WHERE a=1450;\nUPDATE t2 SET b=10290 WHERE a=1451;\nUPDATE t2 SET b=67495 WHERE a=1452;\nUPDATE t2 SET b=95028 WHERE a=1453;\nUPDATE t2 SET b=33394 WHERE a=1454;\nUPDATE t2 SET b=35270 WHERE a=1455;\nUPDATE t2 SET b=10677 WHERE a=1456;\nUPDATE t2 SET b=71545 WHERE a=1457;\nUPDATE t2 SET b=91833 WHERE a=1458;\nUPDATE t2 SET b=41250 WHERE a=1459;\nUPDATE t2 SET b=52711 WHERE a=1460;\nUPDATE t2 SET b=92413 WHERE a=1461;\nUPDATE t2 SET b=624 WHERE a=1462;\nUPDATE t2 SET b=71210 WHERE a=1463;\nUPDATE t2 SET b=57027 WHERE a=1464;\nUPDATE t2 SET b=67661 WHERE a=1465;\nUPDATE t2 SET b=79484 WHERE a=1466;\nUPDATE t2 SET b=55338 WHERE a=1467;\nUPDATE t2 SET b=20808 WHERE a=1468;\nUPDATE t2 SET b=64268 WHERE a=1469;\nUPDATE t2 SET b=95531 WHERE a=1470;\nUPDATE t2 SET b=63958 WHERE a=1471;\nUPDATE t2 SET b=8474 WHERE a=1472;\nUPDATE t2 SET b=21307 WHERE a=1473;\nUPDATE t2 SET b=78640 WHERE a=1474;\nUPDATE t2 SET b=36487 WHERE a=1475;\nUPDATE t2 SET b=30630 WHERE a=1476;\nUPDATE t2 SET b=2184 WHERE a=1477;\nUPDATE t2 SET b=91480 WHERE a=1478;\nUPDATE t2 SET b=84652 WHERE a=1479;\nUPDATE t2 SET b=84993 WHERE a=1480;\nUPDATE t2 SET b=23079 WHERE a=1481;\nUPDATE t2 SET b=24905 WHERE a=1482;\nUPDATE t2 SET b=73170 WHERE a=1483;\nUPDATE t2 SET b=54680 WHERE a=1484;\nUPDATE t2 SET b=71599 WHERE a=1485;\nUPDATE t2 SET b=85984 WHERE a=1486;\nUPDATE t2 SET b=52926 WHERE a=1487;\nUPDATE t2 SET b=48915 WHERE a=1488;\nUPDATE t2 SET b=96709 WHERE a=1489;\nUPDATE t2 SET b=11722 WHERE a=1490;\nUPDATE t2 SET b=28456 WHERE a=1491;\nUPDATE t2 SET b=97696 WHERE a=1492;\nUPDATE t2 SET b=48994 WHERE a=1493;\nUPDATE t2 SET b=13601 WHERE a=1494;\nUPDATE t2 SET b=94169 WHERE a=1495;\nUPDATE t2 SET b=98127 WHERE a=1496;\nUPDATE t2 SET b=92699 WHERE a=1497;\nUPDATE t2 SET b=33147 WHERE a=1498;\nUPDATE t2 SET b=69098 WHERE a=1499;\nUPDATE t2 SET b=99949 WHERE a=1500;\nUPDATE t2 SET b=31260 WHERE a=1501;\nUPDATE t2 SET b=19004 WHERE a=1502;\nUPDATE t2 SET b=20216 WHERE a=1503;\nUPDATE t2 SET b=61664 WHERE a=1504;\nUPDATE t2 SET b=51757 WHERE a=1505;\nUPDATE t2 SET b=93711 WHERE a=1506;\nUPDATE t2 SET b=31895 WHERE a=1507;\nUPDATE t2 SET b=51993 WHERE a=1508;\nUPDATE t2 SET b=43763 WHERE a=1509;\nUPDATE t2 SET b=39943 WHERE a=1510;\nUPDATE t2 SET b=60640 WHERE a=1511;\nUPDATE t2 SET b=66859 WHERE a=1512;\nUPDATE t2 SET b=73554 WHERE a=1513;\nUPDATE t2 SET b=42205 WHERE a=1514;\nUPDATE t2 SET b=72977 WHERE a=1515;\nUPDATE t2 SET b=10977 WHERE a=1516;\nUPDATE t2 SET b=68265 WHERE a=1517;\nUPDATE t2 SET b=94724 WHERE a=1518;\nUPDATE t2 SET b=89724 WHERE a=1519;\nUPDATE t2 SET b=46914 WHERE a=1520;\nUPDATE t2 SET b=8895 WHERE a=1521;\nUPDATE t2 SET b=94295 WHERE a=1522;\nUPDATE t2 SET b=46549 WHERE a=1523;\nUPDATE t2 SET b=83429 WHERE a=1524;\nUPDATE t2 SET b=22169 WHERE a=1525;\nUPDATE t2 SET b=45046 WHERE a=1526;\nUPDATE t2 SET b=58689 WHERE a=1527;\nUPDATE t2 SET b=79529 WHERE a=1528;\nUPDATE t2 SET b=54805 WHERE a=1529;\nUPDATE t2 SET b=27059 WHERE a=1530;\nUPDATE t2 SET b=51674 WHERE a=1531;\nUPDATE t2 SET b=89931 WHERE a=1532;\nUPDATE t2 SET b=42289 WHERE a=1533;\nUPDATE t2 SET b=46165 WHERE a=1534;\nUPDATE t2 SET b=41760 WHERE a=1535;\nUPDATE t2 SET b=50249 WHERE a=1536;\nUPDATE t2 SET b=12485 WHERE a=1537;\nUPDATE t2 SET b=24842 WHERE a=1538;\nUPDATE t2 SET b=10299 WHERE a=1539;\nUPDATE t2 SET b=37436 WHERE a=1540;\nUPDATE t2 SET b=28450 WHERE a=1541;\nUPDATE t2 SET b=99219 WHERE a=1542;\nUPDATE t2 SET b=26228 WHERE a=1543;\nUPDATE t2 SET b=35815 WHERE a=1544;\nUPDATE t2 SET b=46609 WHERE a=1545;\nUPDATE t2 SET b=44025 WHERE a=1546;\nUPDATE t2 SET b=94075 WHERE a=1547;\nUPDATE t2 SET b=72045 WHERE a=1548;\nUPDATE t2 SET b=98832 WHERE a=1549;\nUPDATE t2 SET b=79964 WHERE a=1550;\nUPDATE t2 SET b=78071 WHERE a=1551;\nUPDATE t2 SET b=17775 WHERE a=1552;\nUPDATE t2 SET b=76638 WHERE a=1553;\nUPDATE t2 SET b=5857 WHERE a=1554;\nUPDATE t2 SET b=21742 WHERE a=1555;\nUPDATE t2 SET b=12481 WHERE a=1556;\nUPDATE t2 SET b=70281 WHERE a=1557;\nUPDATE t2 SET b=63295 WHERE a=1558;\nUPDATE t2 SET b=89024 WHERE a=1559;\nUPDATE t2 SET b=3647 WHERE a=1560;\nUPDATE t2 SET b=90353 WHERE a=1561;\nUPDATE t2 SET b=71147 WHERE a=1562;\nUPDATE t2 SET b=541 WHERE a=1563;\nUPDATE t2 SET b=98039 WHERE a=1564;\nUPDATE t2 SET b=91091 WHERE a=1565;\nUPDATE t2 SET b=25759 WHERE a=1566;\nUPDATE t2 SET b=23020 WHERE a=1567;\nUPDATE t2 SET b=36290 WHERE a=1568;\nUPDATE t2 SET b=97601 WHERE a=1569;\nUPDATE t2 SET b=53301 WHERE a=1570;\nUPDATE t2 SET b=25776 WHERE a=1571;\nUPDATE t2 SET b=87472 WHERE a=1572;\nUPDATE t2 SET b=97994 WHERE a=1573;\nUPDATE t2 SET b=38406 WHERE a=1574;\nUPDATE t2 SET b=81322 WHERE a=1575;\nUPDATE t2 SET b=1474 WHERE a=1576;\nUPDATE t2 SET b=59496 WHERE a=1577;\nUPDATE t2 SET b=7907 WHERE a=1578;\nUPDATE t2 SET b=68871 WHERE a=1579;\nUPDATE t2 SET b=15041 WHERE a=1580;\nUPDATE t2 SET b=7777 WHERE a=1581;\nUPDATE t2 SET b=82428 WHERE a=1582;\nUPDATE t2 SET b=66658 WHERE a=1583;\nUPDATE t2 SET b=87411 WHERE a=1584;\nUPDATE t2 SET b=81450 WHERE a=1585;\nUPDATE t2 SET b=81999 WHERE a=1586;\nUPDATE t2 SET b=95678 WHERE a=1587;\nUPDATE t2 SET b=34120 WHERE a=1588;\nUPDATE t2 SET b=99659 WHERE a=1589;\nUPDATE t2 SET b=2154 WHERE a=1590;\nUPDATE t2 SET b=79139 WHERE a=1591;\nUPDATE t2 SET b=7994 WHERE a=1592;\nUPDATE t2 SET b=67075 WHERE a=1593;\nUPDATE t2 SET b=26016 WHERE a=1594;\nUPDATE t2 SET b=47306 WHERE a=1595;\nUPDATE t2 SET b=84653 WHERE a=1596;\nUPDATE t2 SET b=80817 WHERE a=1597;\nUPDATE t2 SET b=99072 WHERE a=1598;\nUPDATE t2 SET b=85382 WHERE a=1599;\nUPDATE t2 SET b=14574 WHERE a=1600;\nUPDATE t2 SET b=80757 WHERE a=1601;\nUPDATE t2 SET b=45239 WHERE a=1602;\nUPDATE t2 SET b=39036 WHERE a=1603;\nUPDATE t2 SET b=24862 WHERE a=1604;\nUPDATE t2 SET b=48716 WHERE a=1605;\nUPDATE t2 SET b=263 WHERE a=1606;\nUPDATE t2 SET b=13188 WHERE a=1607;\nUPDATE t2 SET b=86419 WHERE a=1608;\nUPDATE t2 SET b=75841 WHERE a=1609;\nUPDATE t2 SET b=6214 WHERE a=1610;\nUPDATE t2 SET b=59577 WHERE a=1611;\nUPDATE t2 SET b=52187 WHERE a=1612;\nUPDATE t2 SET b=18786 WHERE a=1613;\nUPDATE t2 SET b=32788 WHERE a=1614;\nUPDATE t2 SET b=23901 WHERE a=1615;\nUPDATE t2 SET b=79601 WHERE a=1616;\nUPDATE t2 SET b=48345 WHERE a=1617;\nUPDATE t2 SET b=79072 WHERE a=1618;\nUPDATE t2 SET b=23782 WHERE a=1619;\nUPDATE t2 SET b=24500 WHERE a=1620;\nUPDATE t2 SET b=23634 WHERE a=1621;\nUPDATE t2 SET b=8517 WHERE a=1622;\nUPDATE t2 SET b=86768 WHERE a=1623;\nUPDATE t2 SET b=91626 WHERE a=1624;\nUPDATE t2 SET b=25092 WHERE a=1625;\nUPDATE t2 SET b=46597 WHERE a=1626;\nUPDATE t2 SET b=88207 WHERE a=1627;\nUPDATE t2 SET b=84630 WHERE a=1628;\nUPDATE t2 SET b=95889 WHERE a=1629;\nUPDATE t2 SET b=88160 WHERE a=1630;\nUPDATE t2 SET b=4981 WHERE a=1631;\nUPDATE t2 SET b=5060 WHERE a=1632;\nUPDATE t2 SET b=47290 WHERE a=1633;\nUPDATE t2 SET b=20062 WHERE a=1634;\nUPDATE t2 SET b=33250 WHERE a=1635;\nUPDATE t2 SET b=48319 WHERE a=1636;\nUPDATE t2 SET b=43065 WHERE a=1637;\nUPDATE t2 SET b=1698 WHERE a=1638;\nUPDATE t2 SET b=46036 WHERE a=1639;\nUPDATE t2 SET b=66285 WHERE a=1640;\nUPDATE t2 SET b=32543 WHERE a=1641;\nUPDATE t2 SET b=53223 WHERE a=1642;\nUPDATE t2 SET b=73747 WHERE a=1643;\nUPDATE t2 SET b=41843 WHERE a=1644;\nUPDATE t2 SET b=11283 WHERE a=1645;\nUPDATE t2 SET b=60796 WHERE a=1646;\nUPDATE t2 SET b=51566 WHERE a=1647;\nUPDATE t2 SET b=98679 WHERE a=1648;\nUPDATE t2 SET b=19937 WHERE a=1649;\nUPDATE t2 SET b=95933 WHERE a=1650;\nUPDATE t2 SET b=94215 WHERE a=1651;\nUPDATE t2 SET b=4336 WHERE a=1652;\nUPDATE t2 SET b=96742 WHERE a=1653;\nUPDATE t2 SET b=51558 WHERE a=1654;\nUPDATE t2 SET b=35436 WHERE a=1655;\nUPDATE t2 SET b=34813 WHERE a=1656;\nUPDATE t2 SET b=28365 WHERE a=1657;\nUPDATE t2 SET b=90873 WHERE a=1658;\nUPDATE t2 SET b=19479 WHERE a=1659;\nUPDATE t2 SET b=39412 WHERE a=1660;\nUPDATE t2 SET b=86381 WHERE a=1661;\nUPDATE t2 SET b=3546 WHERE a=1662;\nUPDATE t2 SET b=68339 WHERE a=1663;\nUPDATE t2 SET b=7387 WHERE a=1664;\nUPDATE t2 SET b=89162 WHERE a=1665;\nUPDATE t2 SET b=81560 WHERE a=1666;\nUPDATE t2 SET b=94384 WHERE a=1667;\nUPDATE t2 SET b=79137 WHERE a=1668;\nUPDATE t2 SET b=78959 WHERE a=1669;\nUPDATE t2 SET b=70737 WHERE a=1670;\nUPDATE t2 SET b=71540 WHERE a=1671;\nUPDATE t2 SET b=92760 WHERE a=1672;\nUPDATE t2 SET b=1471 WHERE a=1673;\nUPDATE t2 SET b=63966 WHERE a=1674;\nUPDATE t2 SET b=47247 WHERE a=1675;\nUPDATE t2 SET b=76207 WHERE a=1676;\nUPDATE t2 SET b=74893 WHERE a=1677;\nUPDATE t2 SET b=91669 WHERE a=1678;\nUPDATE t2 SET b=60222 WHERE a=1679;\nUPDATE t2 SET b=19227 WHERE a=1680;\nUPDATE t2 SET b=31265 WHERE a=1681;\nUPDATE t2 SET b=74579 WHERE a=1682;\nUPDATE t2 SET b=2800 WHERE a=1683;\nUPDATE t2 SET b=63917 WHERE a=1684;\nUPDATE t2 SET b=19757 WHERE a=1685;\nUPDATE t2 SET b=68221 WHERE a=1686;\nUPDATE t2 SET b=5290 WHERE a=1687;\nUPDATE t2 SET b=39246 WHERE a=1688;\nUPDATE t2 SET b=69716 WHERE a=1689;\nUPDATE t2 SET b=79688 WHERE a=1690;\nUPDATE t2 SET b=38050 WHERE a=1691;\nUPDATE t2 SET b=35948 WHERE a=1692;\nUPDATE t2 SET b=89302 WHERE a=1693;\nUPDATE t2 SET b=83123 WHERE a=1694;\nUPDATE t2 SET b=84610 WHERE a=1695;\nUPDATE t2 SET b=16136 WHERE a=1696;\nUPDATE t2 SET b=49943 WHERE a=1697;\nUPDATE t2 SET b=12709 WHERE a=1698;\nUPDATE t2 SET b=8865 WHERE a=1699;\nUPDATE t2 SET b=15759 WHERE a=1700;\nUPDATE t2 SET b=86226 WHERE a=1701;\nUPDATE t2 SET b=78892 WHERE a=1702;\nUPDATE t2 SET b=67569 WHERE a=1703;\nUPDATE t2 SET b=53163 WHERE a=1704;\nUPDATE t2 SET b=29987 WHERE a=1705;\nUPDATE t2 SET b=92508 WHERE a=1706;\nUPDATE t2 SET b=74437 WHERE a=1707;\nUPDATE t2 SET b=35752 WHERE a=1708;\nUPDATE t2 SET b=8428 WHERE a=1709;\nUPDATE t2 SET b=60537 WHERE a=1710;\nUPDATE t2 SET b=71254 WHERE a=1711;\nUPDATE t2 SET b=92411 WHERE a=1712;\nUPDATE t2 SET b=29136 WHERE a=1713;\nUPDATE t2 SET b=1859 WHERE a=1714;\nUPDATE t2 SET b=3865 WHERE a=1715;\nUPDATE t2 SET b=31929 WHERE a=1716;\nUPDATE t2 SET b=77111 WHERE a=1717;\nUPDATE t2 SET b=55354 WHERE a=1718;\nUPDATE t2 SET b=32145 WHERE a=1719;\nUPDATE t2 SET b=44815 WHERE a=1720;\nUPDATE t2 SET b=61207 WHERE a=1721;\nUPDATE t2 SET b=81112 WHERE a=1722;\nUPDATE t2 SET b=14553 WHERE a=1723;\nUPDATE t2 SET b=4543 WHERE a=1724;\nUPDATE t2 SET b=73284 WHERE a=1725;\nUPDATE t2 SET b=79034 WHERE a=1726;\nUPDATE t2 SET b=72896 WHERE a=1727;\nUPDATE t2 SET b=63701 WHERE a=1728;\nUPDATE t2 SET b=43828 WHERE a=1729;\nUPDATE t2 SET b=7318 WHERE a=1730;\nUPDATE t2 SET b=67353 WHERE a=1731;\nUPDATE t2 SET b=10494 WHERE a=1732;\nUPDATE t2 SET b=16229 WHERE a=1733;\nUPDATE t2 SET b=724 WHERE a=1734;\nUPDATE t2 SET b=48211 WHERE a=1735;\nUPDATE t2 SET b=59823 WHERE a=1736;\nUPDATE t2 SET b=22901 WHERE a=1737;\nUPDATE t2 SET b=97019 WHERE a=1738;\nUPDATE t2 SET b=38327 WHERE a=1739;\nUPDATE t2 SET b=95936 WHERE a=1740;\nUPDATE t2 SET b=4138 WHERE a=1741;\nUPDATE t2 SET b=57908 WHERE a=1742;\nUPDATE t2 SET b=3302 WHERE a=1743;\nUPDATE t2 SET b=45121 WHERE a=1744;\nUPDATE t2 SET b=37529 WHERE a=1745;\nUPDATE t2 SET b=67474 WHERE a=1746;\nUPDATE t2 SET b=56423 WHERE a=1747;\nUPDATE t2 SET b=19182 WHERE a=1748;\nUPDATE t2 SET b=25436 WHERE a=1749;\nUPDATE t2 SET b=2981 WHERE a=1750;\nUPDATE t2 SET b=13561 WHERE a=1751;\nUPDATE t2 SET b=65360 WHERE a=1752;\nUPDATE t2 SET b=1877 WHERE a=1753;\nUPDATE t2 SET b=31841 WHERE a=1754;\nUPDATE t2 SET b=63465 WHERE a=1755;\nUPDATE t2 SET b=17829 WHERE a=1756;\nUPDATE t2 SET b=83223 WHERE a=1757;\nUPDATE t2 SET b=78876 WHERE a=1758;\nUPDATE t2 SET b=67153 WHERE a=1759;\nUPDATE t2 SET b=2972 WHERE a=1760;\nUPDATE t2 SET b=15482 WHERE a=1761;\nUPDATE t2 SET b=40306 WHERE a=1762;\nUPDATE t2 SET b=98678 WHERE a=1763;\nUPDATE t2 SET b=41544 WHERE a=1764;\nUPDATE t2 SET b=20263 WHERE a=1765;\nUPDATE t2 SET b=80149 WHERE a=1766;\nUPDATE t2 SET b=48196 WHERE a=1767;\nUPDATE t2 SET b=47179 WHERE a=1768;\nUPDATE t2 SET b=79986 WHERE a=1769;\nUPDATE t2 SET b=39229 WHERE a=1770;\nUPDATE t2 SET b=53663 WHERE a=1771;\nUPDATE t2 SET b=2832 WHERE a=1772;\nUPDATE t2 SET b=33819 WHERE a=1773;\nUPDATE t2 SET b=2747 WHERE a=1774;\nUPDATE t2 SET b=28013 WHERE a=1775;\nUPDATE t2 SET b=12435 WHERE a=1776;\nUPDATE t2 SET b=1148 WHERE a=1777;\nUPDATE t2 SET b=33486 WHERE a=1778;\nUPDATE t2 SET b=55151 WHERE a=1779;\nUPDATE t2 SET b=78687 WHERE a=1780;\nUPDATE t2 SET b=96327 WHERE a=1781;\nUPDATE t2 SET b=51158 WHERE a=1782;\nUPDATE t2 SET b=45152 WHERE a=1783;\nUPDATE t2 SET b=64961 WHERE a=1784;\nUPDATE t2 SET b=66431 WHERE a=1785;\nUPDATE t2 SET b=88001 WHERE a=1786;\nUPDATE t2 SET b=73406 WHERE a=1787;\nUPDATE t2 SET b=39250 WHERE a=1788;\nUPDATE t2 SET b=24971 WHERE a=1789;\nUPDATE t2 SET b=8101 WHERE a=1790;\nUPDATE t2 SET b=35152 WHERE a=1791;\nUPDATE t2 SET b=43944 WHERE a=1792;\nUPDATE t2 SET b=23938 WHERE a=1793;\nUPDATE t2 SET b=63342 WHERE a=1794;\nUPDATE t2 SET b=94192 WHERE a=1795;\nUPDATE t2 SET b=33342 WHERE a=1796;\nUPDATE t2 SET b=79382 WHERE a=1797;\nUPDATE t2 SET b=94438 WHERE a=1798;\nUPDATE t2 SET b=89155 WHERE a=1799;\nUPDATE t2 SET b=38474 WHERE a=1800;\nUPDATE t2 SET b=63153 WHERE a=1801;\nUPDATE t2 SET b=50560 WHERE a=1802;\nUPDATE t2 SET b=20860 WHERE a=1803;\nUPDATE t2 SET b=49106 WHERE a=1804;\nUPDATE t2 SET b=71242 WHERE a=1805;\nUPDATE t2 SET b=92914 WHERE a=1806;\nUPDATE t2 SET b=29787 WHERE a=1807;\nUPDATE t2 SET b=69233 WHERE a=1808;\nUPDATE t2 SET b=75343 WHERE a=1809;\nUPDATE t2 SET b=86805 WHERE a=1810;\nUPDATE t2 SET b=59806 WHERE a=1811;\nUPDATE t2 SET b=58894 WHERE a=1812;\nUPDATE t2 SET b=10447 WHERE a=1813;\nUPDATE t2 SET b=23690 WHERE a=1814;\nUPDATE t2 SET b=52131 WHERE a=1815;\nUPDATE t2 SET b=87440 WHERE a=1816;\nUPDATE t2 SET b=30469 WHERE a=1817;\nUPDATE t2 SET b=31633 WHERE a=1818;\nUPDATE t2 SET b=10710 WHERE a=1819;\nUPDATE t2 SET b=49780 WHERE a=1820;\nUPDATE t2 SET b=50557 WHERE a=1821;\nUPDATE t2 SET b=4741 WHERE a=1822;\nUPDATE t2 SET b=14139 WHERE a=1823;\nUPDATE t2 SET b=20386 WHERE a=1824;\nUPDATE t2 SET b=7870 WHERE a=1825;\nUPDATE t2 SET b=52491 WHERE a=1826;\nUPDATE t2 SET b=14183 WHERE a=1827;\nUPDATE t2 SET b=25303 WHERE a=1828;\nUPDATE t2 SET b=69480 WHERE a=1829;\nUPDATE t2 SET b=74237 WHERE a=1830;\nUPDATE t2 SET b=53762 WHERE a=1831;\nUPDATE t2 SET b=16010 WHERE a=1832;\nUPDATE t2 SET b=5014 WHERE a=1833;\nUPDATE t2 SET b=99133 WHERE a=1834;\nUPDATE t2 SET b=98973 WHERE a=1835;\nUPDATE t2 SET b=12359 WHERE a=1836;\nUPDATE t2 SET b=44678 WHERE a=1837;\nUPDATE t2 SET b=2892 WHERE a=1838;\nUPDATE t2 SET b=3904 WHERE a=1839;\nUPDATE t2 SET b=51970 WHERE a=1840;\nUPDATE t2 SET b=82130 WHERE a=1841;\nUPDATE t2 SET b=36260 WHERE a=1842;\nUPDATE t2 SET b=59395 WHERE a=1843;\nUPDATE t2 SET b=87852 WHERE a=1844;\nUPDATE t2 SET b=75381 WHERE a=1845;\nUPDATE t2 SET b=40466 WHERE a=1846;\nUPDATE t2 SET b=33983 WHERE a=1847;\nUPDATE t2 SET b=83879 WHERE a=1848;\nUPDATE t2 SET b=20421 WHERE a=1849;\nUPDATE t2 SET b=54779 WHERE a=1850;\nUPDATE t2 SET b=79505 WHERE a=1851;\nUPDATE t2 SET b=49454 WHERE a=1852;\nUPDATE t2 SET b=2931 WHERE a=1853;\nUPDATE t2 SET b=55335 WHERE a=1854;\nUPDATE t2 SET b=20263 WHERE a=1855;\nUPDATE t2 SET b=93446 WHERE a=1856;\nUPDATE t2 SET b=74087 WHERE a=1857;\nUPDATE t2 SET b=42717 WHERE a=1858;\nUPDATE t2 SET b=99513 WHERE a=1859;\nUPDATE t2 SET b=65291 WHERE a=1860;\nUPDATE t2 SET b=92888 WHERE a=1861;\nUPDATE t2 SET b=65795 WHERE a=1862;\nUPDATE t2 SET b=11837 WHERE a=1863;\nUPDATE t2 SET b=84522 WHERE a=1864;\nUPDATE t2 SET b=58654 WHERE a=1865;\nUPDATE t2 SET b=96217 WHERE a=1866;\nUPDATE t2 SET b=35612 WHERE a=1867;\nUPDATE t2 SET b=36556 WHERE a=1868;\nUPDATE t2 SET b=4537 WHERE a=1869;\nUPDATE t2 SET b=31409 WHERE a=1870;\nUPDATE t2 SET b=11556 WHERE a=1871;\nUPDATE t2 SET b=89235 WHERE a=1872;\nUPDATE t2 SET b=24366 WHERE a=1873;\nUPDATE t2 SET b=75223 WHERE a=1874;\nUPDATE t2 SET b=16536 WHERE a=1875;\nUPDATE t2 SET b=60430 WHERE a=1876;\nUPDATE t2 SET b=12201 WHERE a=1877;\nUPDATE t2 SET b=67967 WHERE a=1878;\nUPDATE t2 SET b=69026 WHERE a=1879;\nUPDATE t2 SET b=77163 WHERE a=1880;\nUPDATE t2 SET b=51313 WHERE a=1881;\nUPDATE t2 SET b=52532 WHERE a=1882;\nUPDATE t2 SET b=21486 WHERE a=1883;\nUPDATE t2 SET b=22113 WHERE a=1884;\nUPDATE t2 SET b=24687 WHERE a=1885;\nUPDATE t2 SET b=72009 WHERE a=1886;\nUPDATE t2 SET b=18449 WHERE a=1887;\nUPDATE t2 SET b=70141 WHERE a=1888;\nUPDATE t2 SET b=67946 WHERE a=1889;\nUPDATE t2 SET b=93593 WHERE a=1890;\nUPDATE t2 SET b=92804 WHERE a=1891;\nUPDATE t2 SET b=80023 WHERE a=1892;\nUPDATE t2 SET b=85625 WHERE a=1893;\nUPDATE t2 SET b=67915 WHERE a=1894;\nUPDATE t2 SET b=78104 WHERE a=1895;\nUPDATE t2 SET b=74225 WHERE a=1896;\nUPDATE t2 SET b=28903 WHERE a=1897;\nUPDATE t2 SET b=29423 WHERE a=1898;\nUPDATE t2 SET b=84283 WHERE a=1899;\nUPDATE t2 SET b=37231 WHERE a=1900;\nUPDATE t2 SET b=93509 WHERE a=1901;\nUPDATE t2 SET b=92796 WHERE a=1902;\nUPDATE t2 SET b=65684 WHERE a=1903;\nUPDATE t2 SET b=49246 WHERE a=1904;\nUPDATE t2 SET b=37400 WHERE a=1905;\nUPDATE t2 SET b=70503 WHERE a=1906;\nUPDATE t2 SET b=82976 WHERE a=1907;\nUPDATE t2 SET b=30074 WHERE a=1908;\nUPDATE t2 SET b=17497 WHERE a=1909;\nUPDATE t2 SET b=59390 WHERE a=1910;\nUPDATE t2 SET b=4100 WHERE a=1911;\nUPDATE t2 SET b=37529 WHERE a=1912;\nUPDATE t2 SET b=64603 WHERE a=1913;\nUPDATE t2 SET b=94944 WHERE a=1914;\nUPDATE t2 SET b=20039 WHERE a=1915;\nUPDATE t2 SET b=52834 WHERE a=1916;\nUPDATE t2 SET b=79146 WHERE a=1917;\nUPDATE t2 SET b=62904 WHERE a=1918;\nUPDATE t2 SET b=97240 WHERE a=1919;\nUPDATE t2 SET b=37218 WHERE a=1920;\nUPDATE t2 SET b=31305 WHERE a=1921;\nUPDATE t2 SET b=37187 WHERE a=1922;\nUPDATE t2 SET b=64977 WHERE a=1923;\nUPDATE t2 SET b=32476 WHERE a=1924;\nUPDATE t2 SET b=95732 WHERE a=1925;\nUPDATE t2 SET b=9338 WHERE a=1926;\nUPDATE t2 SET b=5130 WHERE a=1927;\nUPDATE t2 SET b=55313 WHERE a=1928;\nUPDATE t2 SET b=88679 WHERE a=1929;\nUPDATE t2 SET b=96427 WHERE a=1930;\nUPDATE t2 SET b=26450 WHERE a=1931;\nUPDATE t2 SET b=33107 WHERE a=1932;\nUPDATE t2 SET b=65529 WHERE a=1933;\nUPDATE t2 SET b=27795 WHERE a=1934;\nUPDATE t2 SET b=32174 WHERE a=1935;\nUPDATE t2 SET b=69320 WHERE a=1936;\nUPDATE t2 SET b=95096 WHERE a=1937;\nUPDATE t2 SET b=68238 WHERE a=1938;\nUPDATE t2 SET b=61843 WHERE a=1939;\nUPDATE t2 SET b=37722 WHERE a=1940;\nUPDATE t2 SET b=8401 WHERE a=1941;\nUPDATE t2 SET b=38849 WHERE a=1942;\nUPDATE t2 SET b=65880 WHERE a=1943;\nUPDATE t2 SET b=86725 WHERE a=1944;\nUPDATE t2 SET b=30397 WHERE a=1945;\nUPDATE t2 SET b=93321 WHERE a=1946;\nUPDATE t2 SET b=57680 WHERE a=1947;\nUPDATE t2 SET b=4174 WHERE a=1948;\nUPDATE t2 SET b=3722 WHERE a=1949;\nUPDATE t2 SET b=5330 WHERE a=1950;\nUPDATE t2 SET b=17637 WHERE a=1951;\nUPDATE t2 SET b=57254 WHERE a=1952;\nUPDATE t2 SET b=50233 WHERE a=1953;\nUPDATE t2 SET b=36668 WHERE a=1954;\nUPDATE t2 SET b=25452 WHERE a=1955;\nUPDATE t2 SET b=83902 WHERE a=1956;\nUPDATE t2 SET b=76343 WHERE a=1957;\nUPDATE t2 SET b=1634 WHERE a=1958;\nUPDATE t2 SET b=85478 WHERE a=1959;\nUPDATE t2 SET b=32573 WHERE a=1960;\nUPDATE t2 SET b=37391 WHERE a=1961;\nUPDATE t2 SET b=83778 WHERE a=1962;\nUPDATE t2 SET b=19577 WHERE a=1963;\nUPDATE t2 SET b=54530 WHERE a=1964;\nUPDATE t2 SET b=97107 WHERE a=1965;\nUPDATE t2 SET b=81565 WHERE a=1966;\nUPDATE t2 SET b=62876 WHERE a=1967;\nUPDATE t2 SET b=27671 WHERE a=1968;\nUPDATE t2 SET b=50776 WHERE a=1969;\nUPDATE t2 SET b=38974 WHERE a=1970;\nUPDATE t2 SET b=35548 WHERE a=1971;\nUPDATE t2 SET b=15158 WHERE a=1972;\nUPDATE t2 SET b=63009 WHERE a=1973;\nUPDATE t2 SET b=71243 WHERE a=1974;\nUPDATE t2 SET b=64453 WHERE a=1975;\nUPDATE t2 SET b=84873 WHERE a=1976;\nUPDATE t2 SET b=71035 WHERE a=1977;\nUPDATE t2 SET b=14499 WHERE a=1978;\nUPDATE t2 SET b=74951 WHERE a=1979;\nUPDATE t2 SET b=52764 WHERE a=1980;\nUPDATE t2 SET b=9891 WHERE a=1981;\nUPDATE t2 SET b=33542 WHERE a=1982;\nUPDATE t2 SET b=6222 WHERE a=1983;\nUPDATE t2 SET b=21912 WHERE a=1984;\nUPDATE t2 SET b=10715 WHERE a=1985;\nUPDATE t2 SET b=97857 WHERE a=1986;\nUPDATE t2 SET b=10594 WHERE a=1987;\nUPDATE t2 SET b=4448 WHERE a=1988;\nUPDATE t2 SET b=66137 WHERE a=1989;\nUPDATE t2 SET b=37487 WHERE a=1990;\nUPDATE t2 SET b=31104 WHERE a=1991;\nUPDATE t2 SET b=39110 WHERE a=1992;\nUPDATE t2 SET b=12660 WHERE a=1993;\nUPDATE t2 SET b=75411 WHERE a=1994;\nUPDATE t2 SET b=81495 WHERE a=1995;\nUPDATE t2 SET b=37488 WHERE a=1996;\nUPDATE t2 SET b=34744 WHERE a=1997;\nUPDATE t2 SET b=84261 WHERE a=1998;\nUPDATE t2 SET b=56171 WHERE a=1999;\nUPDATE t2 SET b=91319 WHERE a=2000;\nUPDATE t2 SET b=77530 WHERE a=2001;\nUPDATE t2 SET b=80060 WHERE a=2002;\nUPDATE t2 SET b=39720 WHERE a=2003;\nUPDATE t2 SET b=31239 WHERE a=2004;\nUPDATE t2 SET b=13046 WHERE a=2005;\nUPDATE t2 SET b=66703 WHERE a=2006;\nUPDATE t2 SET b=84357 WHERE a=2007;\nUPDATE t2 SET b=53804 WHERE a=2008;\nUPDATE t2 SET b=21405 WHERE a=2009;\nUPDATE t2 SET b=66932 WHERE a=2010;\nUPDATE t2 SET b=97541 WHERE a=2011;\nUPDATE t2 SET b=12780 WHERE a=2012;\nUPDATE t2 SET b=35119 WHERE a=2013;\nUPDATE t2 SET b=81237 WHERE a=2014;\nUPDATE t2 SET b=70091 WHERE a=2015;\nUPDATE t2 SET b=15688 WHERE a=2016;\nUPDATE t2 SET b=49489 WHERE a=2017;\nUPDATE t2 SET b=64308 WHERE a=2018;\nUPDATE t2 SET b=9797 WHERE a=2019;\nUPDATE t2 SET b=70472 WHERE a=2020;\nUPDATE t2 SET b=84251 WHERE a=2021;\nUPDATE t2 SET b=9826 WHERE a=2022;\nUPDATE t2 SET b=83078 WHERE a=2023;\nUPDATE t2 SET b=76214 WHERE a=2024;\nUPDATE t2 SET b=65906 WHERE a=2025;\nUPDATE t2 SET b=68776 WHERE a=2026;\nUPDATE t2 SET b=38925 WHERE a=2027;\nUPDATE t2 SET b=54330 WHERE a=2028;\nUPDATE t2 SET b=30722 WHERE a=2029;\nUPDATE t2 SET b=18597 WHERE a=2030;\nUPDATE t2 SET b=27265 WHERE a=2031;\nUPDATE t2 SET b=48581 WHERE a=2032;\nUPDATE t2 SET b=57884 WHERE a=2033;\nUPDATE t2 SET b=90533 WHERE a=2034;\nUPDATE t2 SET b=67524 WHERE a=2035;\nUPDATE t2 SET b=26633 WHERE a=2036;\nUPDATE t2 SET b=48502 WHERE a=2037;\nUPDATE t2 SET b=86188 WHERE a=2038;\nUPDATE t2 SET b=38123 WHERE a=2039;\nUPDATE t2 SET b=44510 WHERE a=2040;\nUPDATE t2 SET b=16432 WHERE a=2041;\nUPDATE t2 SET b=24092 WHERE a=2042;\nUPDATE t2 SET b=26438 WHERE a=2043;\nUPDATE t2 SET b=58177 WHERE a=2044;\nUPDATE t2 SET b=64902 WHERE a=2045;\nUPDATE t2 SET b=71038 WHERE a=2046;\nUPDATE t2 SET b=70628 WHERE a=2047;\nUPDATE t2 SET b=39286 WHERE a=2048;\nUPDATE t2 SET b=52722 WHERE a=2049;\nUPDATE t2 SET b=99691 WHERE a=2050;\nUPDATE t2 SET b=42810 WHERE a=2051;\nUPDATE t2 SET b=37484 WHERE a=2052;\nUPDATE t2 SET b=94576 WHERE a=2053;\nUPDATE t2 SET b=15859 WHERE a=2054;\nUPDATE t2 SET b=89081 WHERE a=2055;\nUPDATE t2 SET b=23658 WHERE a=2056;\nUPDATE t2 SET b=63383 WHERE a=2057;\nUPDATE t2 SET b=99170 WHERE a=2058;\nUPDATE t2 SET b=50974 WHERE a=2059;\nUPDATE t2 SET b=68414 WHERE a=2060;\nUPDATE t2 SET b=47379 WHERE a=2061;\nUPDATE t2 SET b=28871 WHERE a=2062;\nUPDATE t2 SET b=76260 WHERE a=2063;\nUPDATE t2 SET b=29624 WHERE a=2064;\nUPDATE t2 SET b=14322 WHERE a=2065;\nUPDATE t2 SET b=39038 WHERE a=2066;\nUPDATE t2 SET b=41124 WHERE a=2067;\nUPDATE t2 SET b=20050 WHERE a=2068;\nUPDATE t2 SET b=95876 WHERE a=2069;\nUPDATE t2 SET b=1361 WHERE a=2070;\nUPDATE t2 SET b=56669 WHERE a=2071;\nUPDATE t2 SET b=33877 WHERE a=2072;\nUPDATE t2 SET b=80305 WHERE a=2073;\nUPDATE t2 SET b=39980 WHERE a=2074;\nUPDATE t2 SET b=86704 WHERE a=2075;\nUPDATE t2 SET b=48587 WHERE a=2076;\nUPDATE t2 SET b=31370 WHERE a=2077;\nUPDATE t2 SET b=36187 WHERE a=2078;\nUPDATE t2 SET b=60655 WHERE a=2079;\nUPDATE t2 SET b=80717 WHERE a=2080;\nUPDATE t2 SET b=28264 WHERE a=2081;\nUPDATE t2 SET b=60619 WHERE a=2082;\nUPDATE t2 SET b=78611 WHERE a=2083;\nUPDATE t2 SET b=85619 WHERE a=2084;\nUPDATE t2 SET b=59224 WHERE a=2085;\nUPDATE t2 SET b=28749 WHERE a=2086;\nUPDATE t2 SET b=52813 WHERE a=2087;\nUPDATE t2 SET b=70662 WHERE a=2088;\nUPDATE t2 SET b=63368 WHERE a=2089;\nUPDATE t2 SET b=47500 WHERE a=2090;\nUPDATE t2 SET b=7978 WHERE a=2091;\nUPDATE t2 SET b=17010 WHERE a=2092;\nUPDATE t2 SET b=82829 WHERE a=2093;\nUPDATE t2 SET b=77423 WHERE a=2094;\nUPDATE t2 SET b=70582 WHERE a=2095;\nUPDATE t2 SET b=99240 WHERE a=2096;\nUPDATE t2 SET b=34980 WHERE a=2097;\nUPDATE t2 SET b=42243 WHERE a=2098;\nUPDATE t2 SET b=2833 WHERE a=2099;\nUPDATE t2 SET b=21494 WHERE a=2100;\nUPDATE t2 SET b=68020 WHERE a=2101;\nUPDATE t2 SET b=18877 WHERE a=2102;\nUPDATE t2 SET b=25929 WHERE a=2103;\nUPDATE t2 SET b=80543 WHERE a=2104;\nUPDATE t2 SET b=87869 WHERE a=2105;\nUPDATE t2 SET b=54905 WHERE a=2106;\nUPDATE t2 SET b=6709 WHERE a=2107;\nUPDATE t2 SET b=30639 WHERE a=2108;\nUPDATE t2 SET b=55388 WHERE a=2109;\nUPDATE t2 SET b=7999 WHERE a=2110;\nUPDATE t2 SET b=77204 WHERE a=2111;\nUPDATE t2 SET b=44651 WHERE a=2112;\nUPDATE t2 SET b=78549 WHERE a=2113;\nUPDATE t2 SET b=78296 WHERE a=2114;\nUPDATE t2 SET b=15586 WHERE a=2115;\nUPDATE t2 SET b=92896 WHERE a=2116;\nUPDATE t2 SET b=11917 WHERE a=2117;\nUPDATE t2 SET b=46128 WHERE a=2118;\nUPDATE t2 SET b=40806 WHERE a=2119;\nUPDATE t2 SET b=9751 WHERE a=2120;\nUPDATE t2 SET b=4686 WHERE a=2121;\nUPDATE t2 SET b=17317 WHERE a=2122;\nUPDATE t2 SET b=1394 WHERE a=2123;\nUPDATE t2 SET b=48532 WHERE a=2124;\nUPDATE t2 SET b=92069 WHERE a=2125;\nUPDATE t2 SET b=9832 WHERE a=2126;\nUPDATE t2 SET b=25171 WHERE a=2127;\nUPDATE t2 SET b=43074 WHERE a=2128;\nUPDATE t2 SET b=2943 WHERE a=2129;\nUPDATE t2 SET b=67134 WHERE a=2130;\nUPDATE t2 SET b=56114 WHERE a=2131;\nUPDATE t2 SET b=92655 WHERE a=2132;\nUPDATE t2 SET b=97279 WHERE a=2133;\nUPDATE t2 SET b=94407 WHERE a=2134;\nUPDATE t2 SET b=21907 WHERE a=2135;\nUPDATE t2 SET b=11089 WHERE a=2136;\nUPDATE t2 SET b=13620 WHERE a=2137;\nUPDATE t2 SET b=40007 WHERE a=2138;\nUPDATE t2 SET b=71803 WHERE a=2139;\nUPDATE t2 SET b=25828 WHERE a=2140;\nUPDATE t2 SET b=32382 WHERE a=2141;\nUPDATE t2 SET b=99111 WHERE a=2142;\nUPDATE t2 SET b=14986 WHERE a=2143;\nUPDATE t2 SET b=48155 WHERE a=2144;\nUPDATE t2 SET b=5974 WHERE a=2145;\nUPDATE t2 SET b=29208 WHERE a=2146;\nUPDATE t2 SET b=61140 WHERE a=2147;\nUPDATE t2 SET b=13909 WHERE a=2148;\nUPDATE t2 SET b=99199 WHERE a=2149;\nUPDATE t2 SET b=70312 WHERE a=2150;\nUPDATE t2 SET b=25552 WHERE a=2151;\nUPDATE t2 SET b=61493 WHERE a=2152;\nUPDATE t2 SET b=62195 WHERE a=2153;\nUPDATE t2 SET b=19107 WHERE a=2154;\nUPDATE t2 SET b=41454 WHERE a=2155;\nUPDATE t2 SET b=55147 WHERE a=2156;\nUPDATE t2 SET b=17982 WHERE a=2157;\nUPDATE t2 SET b=52311 WHERE a=2158;\nUPDATE t2 SET b=17760 WHERE a=2159;\nUPDATE t2 SET b=4720 WHERE a=2160;\nUPDATE t2 SET b=1432 WHERE a=2161;\nUPDATE t2 SET b=51173 WHERE a=2162;\nUPDATE t2 SET b=1411 WHERE a=2163;\nUPDATE t2 SET b=55164 WHERE a=2164;\nUPDATE t2 SET b=2356 WHERE a=2165;\nUPDATE t2 SET b=94117 WHERE a=2166;\nUPDATE t2 SET b=81522 WHERE a=2167;\nUPDATE t2 SET b=71824 WHERE a=2168;\nUPDATE t2 SET b=6537 WHERE a=2169;\nUPDATE t2 SET b=27707 WHERE a=2170;\nUPDATE t2 SET b=71121 WHERE a=2171;\nUPDATE t2 SET b=59042 WHERE a=2172;\nUPDATE t2 SET b=59019 WHERE a=2173;\nUPDATE t2 SET b=67786 WHERE a=2174;\nUPDATE t2 SET b=65842 WHERE a=2175;\nUPDATE t2 SET b=40228 WHERE a=2176;\nUPDATE t2 SET b=58283 WHERE a=2177;\nUPDATE t2 SET b=12024 WHERE a=2178;\nUPDATE t2 SET b=34988 WHERE a=2179;\nUPDATE t2 SET b=88438 WHERE a=2180;\nUPDATE t2 SET b=30589 WHERE a=2181;\nUPDATE t2 SET b=57710 WHERE a=2182;\nUPDATE t2 SET b=50559 WHERE a=2183;\nUPDATE t2 SET b=77033 WHERE a=2184;\nUPDATE t2 SET b=19073 WHERE a=2185;\nUPDATE t2 SET b=85646 WHERE a=2186;\nUPDATE t2 SET b=29335 WHERE a=2187;\nUPDATE t2 SET b=56804 WHERE a=2188;\nUPDATE t2 SET b=77177 WHERE a=2189;\nUPDATE t2 SET b=80070 WHERE a=2190;\nUPDATE t2 SET b=93915 WHERE a=2191;\nUPDATE t2 SET b=15983 WHERE a=2192;\nUPDATE t2 SET b=55117 WHERE a=2193;\nUPDATE t2 SET b=42947 WHERE a=2194;\nUPDATE t2 SET b=75227 WHERE a=2195;\nUPDATE t2 SET b=36258 WHERE a=2196;\nUPDATE t2 SET b=74799 WHERE a=2197;\nUPDATE t2 SET b=80915 WHERE a=2198;\nUPDATE t2 SET b=31039 WHERE a=2199;\nUPDATE t2 SET b=45438 WHERE a=2200;\nUPDATE t2 SET b=61043 WHERE a=2201;\nUPDATE t2 SET b=26322 WHERE a=2202;\nUPDATE t2 SET b=39155 WHERE a=2203;\nUPDATE t2 SET b=59991 WHERE a=2204;\nUPDATE t2 SET b=61272 WHERE a=2205;\nUPDATE t2 SET b=10242 WHERE a=2206;\nUPDATE t2 SET b=35119 WHERE a=2207;\nUPDATE t2 SET b=71806 WHERE a=2208;\nUPDATE t2 SET b=10339 WHERE a=2209;\nUPDATE t2 SET b=49046 WHERE a=2210;\nUPDATE t2 SET b=96317 WHERE a=2211;\nUPDATE t2 SET b=87846 WHERE a=2212;\nUPDATE t2 SET b=31596 WHERE a=2213;\nUPDATE t2 SET b=3906 WHERE a=2214;\nUPDATE t2 SET b=69886 WHERE a=2215;\nUPDATE t2 SET b=82998 WHERE a=2216;\nUPDATE t2 SET b=26344 WHERE a=2217;\nUPDATE t2 SET b=84208 WHERE a=2218;\nUPDATE t2 SET b=9805 WHERE a=2219;\nUPDATE t2 SET b=72321 WHERE a=2220;\nUPDATE t2 SET b=31803 WHERE a=2221;\nUPDATE t2 SET b=34282 WHERE a=2222;\nUPDATE t2 SET b=61721 WHERE a=2223;\nUPDATE t2 SET b=88823 WHERE a=2224;\nUPDATE t2 SET b=85825 WHERE a=2225;\nUPDATE t2 SET b=30561 WHERE a=2226;\nUPDATE t2 SET b=37485 WHERE a=2227;\nUPDATE t2 SET b=37415 WHERE a=2228;\nUPDATE t2 SET b=56797 WHERE a=2229;\nUPDATE t2 SET b=18081 WHERE a=2230;\nUPDATE t2 SET b=47667 WHERE a=2231;\nUPDATE t2 SET b=40082 WHERE a=2232;\nUPDATE t2 SET b=13168 WHERE a=2233;\nUPDATE t2 SET b=20115 WHERE a=2234;\nUPDATE t2 SET b=1282 WHERE a=2235;\nUPDATE t2 SET b=23327 WHERE a=2236;\nUPDATE t2 SET b=30075 WHERE a=2237;\nUPDATE t2 SET b=55795 WHERE a=2238;\nUPDATE t2 SET b=83614 WHERE a=2239;\nUPDATE t2 SET b=76017 WHERE a=2240;\nUPDATE t2 SET b=21726 WHERE a=2241;\nUPDATE t2 SET b=79299 WHERE a=2242;\nUPDATE t2 SET b=50402 WHERE a=2243;\nUPDATE t2 SET b=37957 WHERE a=2244;\nUPDATE t2 SET b=16815 WHERE a=2245;\nUPDATE t2 SET b=42748 WHERE a=2246;\nUPDATE t2 SET b=5573 WHERE a=2247;\nUPDATE t2 SET b=41044 WHERE a=2248;\nUPDATE t2 SET b=5639 WHERE a=2249;\nUPDATE t2 SET b=41607 WHERE a=2250;\nUPDATE t2 SET b=98710 WHERE a=2251;\nUPDATE t2 SET b=90258 WHERE a=2252;\nUPDATE t2 SET b=37061 WHERE a=2253;\nUPDATE t2 SET b=24722 WHERE a=2254;\nUPDATE t2 SET b=58489 WHERE a=2255;\nUPDATE t2 SET b=11123 WHERE a=2256;\nUPDATE t2 SET b=83187 WHERE a=2257;\nUPDATE t2 SET b=36203 WHERE a=2258;\nUPDATE t2 SET b=97273 WHERE a=2259;\nUPDATE t2 SET b=9542 WHERE a=2260;\nUPDATE t2 SET b=76079 WHERE a=2261;\nUPDATE t2 SET b=79711 WHERE a=2262;\nUPDATE t2 SET b=45490 WHERE a=2263;\nUPDATE t2 SET b=62990 WHERE a=2264;\nUPDATE t2 SET b=86011 WHERE a=2265;\nUPDATE t2 SET b=91763 WHERE a=2266;\nUPDATE t2 SET b=62810 WHERE a=2267;\nUPDATE t2 SET b=53037 WHERE a=2268;\nUPDATE t2 SET b=58487 WHERE a=2269;\nUPDATE t2 SET b=90746 WHERE a=2270;\nUPDATE t2 SET b=14999 WHERE a=2271;\nUPDATE t2 SET b=83721 WHERE a=2272;\nUPDATE t2 SET b=32898 WHERE a=2273;\nUPDATE t2 SET b=99156 WHERE a=2274;\nUPDATE t2 SET b=43807 WHERE a=2275;\nUPDATE t2 SET b=71760 WHERE a=2276;\nUPDATE t2 SET b=85906 WHERE a=2277;\nUPDATE t2 SET b=43052 WHERE a=2278;\nUPDATE t2 SET b=74756 WHERE a=2279;\nUPDATE t2 SET b=70042 WHERE a=2280;\nUPDATE t2 SET b=64430 WHERE a=2281;\nUPDATE t2 SET b=4101 WHERE a=2282;\nUPDATE t2 SET b=53910 WHERE a=2283;\nUPDATE t2 SET b=27983 WHERE a=2284;\nUPDATE t2 SET b=17957 WHERE a=2285;\nUPDATE t2 SET b=18304 WHERE a=2286;\nUPDATE t2 SET b=89445 WHERE a=2287;\nUPDATE t2 SET b=25885 WHERE a=2288;\nUPDATE t2 SET b=29332 WHERE a=2289;\nUPDATE t2 SET b=76237 WHERE a=2290;\nUPDATE t2 SET b=15352 WHERE a=2291;\nUPDATE t2 SET b=93073 WHERE a=2292;\nUPDATE t2 SET b=65797 WHERE a=2293;\nUPDATE t2 SET b=71949 WHERE a=2294;\nUPDATE t2 SET b=14594 WHERE a=2295;\nUPDATE t2 SET b=50947 WHERE a=2296;\nUPDATE t2 SET b=35436 WHERE a=2297;\nUPDATE t2 SET b=76372 WHERE a=2298;\nUPDATE t2 SET b=4282 WHERE a=2299;\nUPDATE t2 SET b=89059 WHERE a=2300;\nUPDATE t2 SET b=51709 WHERE a=2301;\nUPDATE t2 SET b=43391 WHERE a=2302;\nUPDATE t2 SET b=51689 WHERE a=2303;\nUPDATE t2 SET b=58678 WHERE a=2304;\nUPDATE t2 SET b=79352 WHERE a=2305;\nUPDATE t2 SET b=68746 WHERE a=2306;\nUPDATE t2 SET b=71527 WHERE a=2307;\nUPDATE t2 SET b=7027 WHERE a=2308;\nUPDATE t2 SET b=94663 WHERE a=2309;\nUPDATE t2 SET b=70956 WHERE a=2310;\nUPDATE t2 SET b=2888 WHERE a=2311;\nUPDATE t2 SET b=51747 WHERE a=2312;\nUPDATE t2 SET b=46242 WHERE a=2313;\nUPDATE t2 SET b=38536 WHERE a=2314;\nUPDATE t2 SET b=50034 WHERE a=2315;\nUPDATE t2 SET b=4887 WHERE a=2316;\nUPDATE t2 SET b=16587 WHERE a=2317;\nUPDATE t2 SET b=36870 WHERE a=2318;\nUPDATE t2 SET b=80386 WHERE a=2319;\nUPDATE t2 SET b=52621 WHERE a=2320;\nUPDATE t2 SET b=87757 WHERE a=2321;\nUPDATE t2 SET b=21630 WHERE a=2322;\nUPDATE t2 SET b=25039 WHERE a=2323;\nUPDATE t2 SET b=81062 WHERE a=2324;\nUPDATE t2 SET b=87365 WHERE a=2325;\nUPDATE t2 SET b=16749 WHERE a=2326;\nUPDATE t2 SET b=33369 WHERE a=2327;\nUPDATE t2 SET b=3427 WHERE a=2328;\nUPDATE t2 SET b=59457 WHERE a=2329;\nUPDATE t2 SET b=89583 WHERE a=2330;\nUPDATE t2 SET b=49237 WHERE a=2331;\nUPDATE t2 SET b=87284 WHERE a=2332;\nUPDATE t2 SET b=19306 WHERE a=2333;\nUPDATE t2 SET b=44142 WHERE a=2334;\nUPDATE t2 SET b=75222 WHERE a=2335;\nUPDATE t2 SET b=26880 WHERE a=2336;\nUPDATE t2 SET b=80202 WHERE a=2337;\nUPDATE t2 SET b=36224 WHERE a=2338;\nUPDATE t2 SET b=30686 WHERE a=2339;\nUPDATE t2 SET b=16715 WHERE a=2340;\nUPDATE t2 SET b=17906 WHERE a=2341;\nUPDATE t2 SET b=54821 WHERE a=2342;\nUPDATE t2 SET b=74410 WHERE a=2343;\nUPDATE t2 SET b=4617 WHERE a=2344;\nUPDATE t2 SET b=25294 WHERE a=2345;\nUPDATE t2 SET b=30226 WHERE a=2346;\nUPDATE t2 SET b=77152 WHERE a=2347;\nUPDATE t2 SET b=6199 WHERE a=2348;\nUPDATE t2 SET b=4010 WHERE a=2349;\nUPDATE t2 SET b=35817 WHERE a=2350;\nUPDATE t2 SET b=94072 WHERE a=2351;\nUPDATE t2 SET b=19721 WHERE a=2352;\nUPDATE t2 SET b=17377 WHERE a=2353;\nUPDATE t2 SET b=97091 WHERE a=2354;\nUPDATE t2 SET b=20618 WHERE a=2355;\nUPDATE t2 SET b=83618 WHERE a=2356;\nUPDATE t2 SET b=50499 WHERE a=2357;\nUPDATE t2 SET b=40208 WHERE a=2358;\nUPDATE t2 SET b=48683 WHERE a=2359;\nUPDATE t2 SET b=68869 WHERE a=2360;\nUPDATE t2 SET b=39766 WHERE a=2361;\nUPDATE t2 SET b=56288 WHERE a=2362;\nUPDATE t2 SET b=30121 WHERE a=2363;\nUPDATE t2 SET b=43638 WHERE a=2364;\nUPDATE t2 SET b=70617 WHERE a=2365;\nUPDATE t2 SET b=98855 WHERE a=2366;\nUPDATE t2 SET b=46211 WHERE a=2367;\nUPDATE t2 SET b=50440 WHERE a=2368;\nUPDATE t2 SET b=14246 WHERE a=2369;\nUPDATE t2 SET b=80049 WHERE a=2370;\nUPDATE t2 SET b=82495 WHERE a=2371;\nUPDATE t2 SET b=57475 WHERE a=2372;\nUPDATE t2 SET b=72133 WHERE a=2373;\nUPDATE t2 SET b=69332 WHERE a=2374;\nUPDATE t2 SET b=33241 WHERE a=2375;\nUPDATE t2 SET b=57149 WHERE a=2376;\nUPDATE t2 SET b=22568 WHERE a=2377;\nUPDATE t2 SET b=7282 WHERE a=2378;\nUPDATE t2 SET b=58213 WHERE a=2379;\nUPDATE t2 SET b=91539 WHERE a=2380;\nUPDATE t2 SET b=42062 WHERE a=2381;\nUPDATE t2 SET b=72957 WHERE a=2382;\nUPDATE t2 SET b=98309 WHERE a=2383;\nUPDATE t2 SET b=35597 WHERE a=2384;\nUPDATE t2 SET b=7877 WHERE a=2385;\nUPDATE t2 SET b=9633 WHERE a=2386;\nUPDATE t2 SET b=51686 WHERE a=2387;\nUPDATE t2 SET b=93786 WHERE a=2388;\nUPDATE t2 SET b=65135 WHERE a=2389;\nUPDATE t2 SET b=90859 WHERE a=2390;\nUPDATE t2 SET b=77915 WHERE a=2391;\nUPDATE t2 SET b=44276 WHERE a=2392;\nUPDATE t2 SET b=98364 WHERE a=2393;\nUPDATE t2 SET b=75112 WHERE a=2394;\nUPDATE t2 SET b=63871 WHERE a=2395;\nUPDATE t2 SET b=87258 WHERE a=2396;\nUPDATE t2 SET b=25693 WHERE a=2397;\nUPDATE t2 SET b=34926 WHERE a=2398;\nUPDATE t2 SET b=64993 WHERE a=2399;\nUPDATE t2 SET b=52425 WHERE a=2400;\nUPDATE t2 SET b=27407 WHERE a=2401;\nUPDATE t2 SET b=76700 WHERE a=2402;\nUPDATE t2 SET b=62790 WHERE a=2403;\nUPDATE t2 SET b=20223 WHERE a=2404;\nUPDATE t2 SET b=85992 WHERE a=2405;\nUPDATE t2 SET b=99264 WHERE a=2406;\nUPDATE t2 SET b=24598 WHERE a=2407;\nUPDATE t2 SET b=62506 WHERE a=2408;\nUPDATE t2 SET b=92113 WHERE a=2409;\nUPDATE t2 SET b=86374 WHERE a=2410;\nUPDATE t2 SET b=13271 WHERE a=2411;\nUPDATE t2 SET b=11755 WHERE a=2412;\nUPDATE t2 SET b=79023 WHERE a=2413;\nUPDATE t2 SET b=14552 WHERE a=2414;\nUPDATE t2 SET b=37506 WHERE a=2415;\nUPDATE t2 SET b=87454 WHERE a=2416;\nUPDATE t2 SET b=1577 WHERE a=2417;\nUPDATE t2 SET b=33973 WHERE a=2418;\nUPDATE t2 SET b=11240 WHERE a=2419;\nUPDATE t2 SET b=39497 WHERE a=2420;\nUPDATE t2 SET b=36436 WHERE a=2421;\nUPDATE t2 SET b=66300 WHERE a=2422;\nUPDATE t2 SET b=69506 WHERE a=2423;\nUPDATE t2 SET b=11303 WHERE a=2424;\nUPDATE t2 SET b=94587 WHERE a=2425;\nUPDATE t2 SET b=86566 WHERE a=2426;\nUPDATE t2 SET b=70651 WHERE a=2427;\nUPDATE t2 SET b=77317 WHERE a=2428;\nUPDATE t2 SET b=9179 WHERE a=2429;\nUPDATE t2 SET b=53124 WHERE a=2430;\nUPDATE t2 SET b=31889 WHERE a=2431;\nUPDATE t2 SET b=20881 WHERE a=2432;\nUPDATE t2 SET b=53887 WHERE a=2433;\nUPDATE t2 SET b=19994 WHERE a=2434;\nUPDATE t2 SET b=653 WHERE a=2435;\nUPDATE t2 SET b=2085 WHERE a=2436;\nUPDATE t2 SET b=79395 WHERE a=2437;\nUPDATE t2 SET b=98727 WHERE a=2438;\nUPDATE t2 SET b=73481 WHERE a=2439;\nUPDATE t2 SET b=91671 WHERE a=2440;\nUPDATE t2 SET b=341 WHERE a=2441;\nUPDATE t2 SET b=78062 WHERE a=2442;\nUPDATE t2 SET b=34283 WHERE a=2443;\nUPDATE t2 SET b=77604 WHERE a=2444;\nUPDATE t2 SET b=17590 WHERE a=2445;\nUPDATE t2 SET b=40947 WHERE a=2446;\nUPDATE t2 SET b=9392 WHERE a=2447;\nUPDATE t2 SET b=79099 WHERE a=2448;\nUPDATE t2 SET b=45996 WHERE a=2449;\nUPDATE t2 SET b=62747 WHERE a=2450;\nUPDATE t2 SET b=25230 WHERE a=2451;\nUPDATE t2 SET b=23182 WHERE a=2452;\nUPDATE t2 SET b=93046 WHERE a=2453;\nUPDATE t2 SET b=25865 WHERE a=2454;\nUPDATE t2 SET b=88775 WHERE a=2455;\nUPDATE t2 SET b=85250 WHERE a=2456;\nUPDATE t2 SET b=83400 WHERE a=2457;\nUPDATE t2 SET b=1291 WHERE a=2458;\nUPDATE t2 SET b=98570 WHERE a=2459;\nUPDATE t2 SET b=99065 WHERE a=2460;\nUPDATE t2 SET b=17860 WHERE a=2461;\nUPDATE t2 SET b=81452 WHERE a=2462;\nUPDATE t2 SET b=37701 WHERE a=2463;\nUPDATE t2 SET b=37357 WHERE a=2464;\nUPDATE t2 SET b=94936 WHERE a=2465;\nUPDATE t2 SET b=39636 WHERE a=2466;\nUPDATE t2 SET b=28795 WHERE a=2467;\nUPDATE t2 SET b=75247 WHERE a=2468;\nUPDATE t2 SET b=50975 WHERE a=2469;\nUPDATE t2 SET b=78020 WHERE a=2470;\nUPDATE t2 SET b=90600 WHERE a=2471;\nUPDATE t2 SET b=57640 WHERE a=2472;\nUPDATE t2 SET b=80403 WHERE a=2473;\nUPDATE t2 SET b=25328 WHERE a=2474;\nUPDATE t2 SET b=69787 WHERE a=2475;\nUPDATE t2 SET b=12407 WHERE a=2476;\nUPDATE t2 SET b=78732 WHERE a=2477;\nUPDATE t2 SET b=78240 WHERE a=2478;\nUPDATE t2 SET b=24151 WHERE a=2479;\nUPDATE t2 SET b=20827 WHERE a=2480;\nUPDATE t2 SET b=5129 WHERE a=2481;\nUPDATE t2 SET b=38738 WHERE a=2482;\nUPDATE t2 SET b=93539 WHERE a=2483;\nUPDATE t2 SET b=34352 WHERE a=2484;\nUPDATE t2 SET b=69017 WHERE a=2485;\nUPDATE t2 SET b=14279 WHERE a=2486;\nUPDATE t2 SET b=18188 WHERE a=2487;\nUPDATE t2 SET b=97210 WHERE a=2488;\nUPDATE t2 SET b=10387 WHERE a=2489;\nUPDATE t2 SET b=45590 WHERE a=2490;\nUPDATE t2 SET b=21072 WHERE a=2491;\nUPDATE t2 SET b=42167 WHERE a=2492;\nUPDATE t2 SET b=51546 WHERE a=2493;\nUPDATE t2 SET b=49906 WHERE a=2494;\nUPDATE t2 SET b=86558 WHERE a=2495;\nUPDATE t2 SET b=63156 WHERE a=2496;\nUPDATE t2 SET b=25603 WHERE a=2497;\nUPDATE t2 SET b=47798 WHERE a=2498;\nUPDATE t2 SET b=61526 WHERE a=2499;\nUPDATE t2 SET b=64713 WHERE a=2500;\nUPDATE t2 SET b=15479 WHERE a=2501;\nUPDATE t2 SET b=87517 WHERE a=2502;\nUPDATE t2 SET b=78568 WHERE a=2503;\nUPDATE t2 SET b=71643 WHERE a=2504;\nUPDATE t2 SET b=65176 WHERE a=2505;\nUPDATE t2 SET b=26125 WHERE a=2506;\nUPDATE t2 SET b=51919 WHERE a=2507;\nUPDATE t2 SET b=85528 WHERE a=2508;\nUPDATE t2 SET b=89719 WHERE a=2509;\nUPDATE t2 SET b=97099 WHERE a=2510;\nUPDATE t2 SET b=37113 WHERE a=2511;\nUPDATE t2 SET b=35467 WHERE a=2512;\nUPDATE t2 SET b=62404 WHERE a=2513;\nUPDATE t2 SET b=93280 WHERE a=2514;\nUPDATE t2 SET b=90784 WHERE a=2515;\nUPDATE t2 SET b=98286 WHERE a=2516;\nUPDATE t2 SET b=70263 WHERE a=2517;\nUPDATE t2 SET b=9035 WHERE a=2518;\nUPDATE t2 SET b=57796 WHERE a=2519;\nUPDATE t2 SET b=96295 WHERE a=2520;\nUPDATE t2 SET b=99213 WHERE a=2521;\nUPDATE t2 SET b=51058 WHERE a=2522;\nUPDATE t2 SET b=19157 WHERE a=2523;\nUPDATE t2 SET b=42104 WHERE a=2524;\nUPDATE t2 SET b=23070 WHERE a=2525;\nUPDATE t2 SET b=94187 WHERE a=2526;\nUPDATE t2 SET b=7069 WHERE a=2527;\nUPDATE t2 SET b=96697 WHERE a=2528;\nUPDATE t2 SET b=42187 WHERE a=2529;\nUPDATE t2 SET b=57329 WHERE a=2530;\nUPDATE t2 SET b=80901 WHERE a=2531;\nUPDATE t2 SET b=6349 WHERE a=2532;\nUPDATE t2 SET b=29038 WHERE a=2533;\nUPDATE t2 SET b=45682 WHERE a=2534;\nUPDATE t2 SET b=74026 WHERE a=2535;\nUPDATE t2 SET b=94152 WHERE a=2536;\nUPDATE t2 SET b=33413 WHERE a=2537;\nUPDATE t2 SET b=10701 WHERE a=2538;\nUPDATE t2 SET b=38192 WHERE a=2539;\nUPDATE t2 SET b=9612 WHERE a=2540;\nUPDATE t2 SET b=29949 WHERE a=2541;\nUPDATE t2 SET b=53656 WHERE a=2542;\nUPDATE t2 SET b=41019 WHERE a=2543;\nUPDATE t2 SET b=48066 WHERE a=2544;\nUPDATE t2 SET b=84029 WHERE a=2545;\nUPDATE t2 SET b=28070 WHERE a=2546;\nUPDATE t2 SET b=34306 WHERE a=2547;\nUPDATE t2 SET b=38398 WHERE a=2548;\nUPDATE t2 SET b=97714 WHERE a=2549;\nUPDATE t2 SET b=22050 WHERE a=2550;\nUPDATE t2 SET b=10693 WHERE a=2551;\nUPDATE t2 SET b=85098 WHERE a=2552;\nUPDATE t2 SET b=99385 WHERE a=2553;\nUPDATE t2 SET b=60177 WHERE a=2554;\nUPDATE t2 SET b=1874 WHERE a=2555;\nUPDATE t2 SET b=9981 WHERE a=2556;\nUPDATE t2 SET b=33059 WHERE a=2557;\nUPDATE t2 SET b=44943 WHERE a=2558;\nUPDATE t2 SET b=90730 WHERE a=2559;\nUPDATE t2 SET b=59022 WHERE a=2560;\nUPDATE t2 SET b=10837 WHERE a=2561;\nUPDATE t2 SET b=54829 WHERE a=2562;\nUPDATE t2 SET b=80665 WHERE a=2563;\nUPDATE t2 SET b=1618 WHERE a=2564;\nUPDATE t2 SET b=18768 WHERE a=2565;\nUPDATE t2 SET b=73673 WHERE a=2566;\nUPDATE t2 SET b=76298 WHERE a=2567;\nUPDATE t2 SET b=6147 WHERE a=2568;\nUPDATE t2 SET b=79052 WHERE a=2569;\nUPDATE t2 SET b=6287 WHERE a=2570;\nUPDATE t2 SET b=87121 WHERE a=2571;\nUPDATE t2 SET b=12356 WHERE a=2572;\nUPDATE t2 SET b=3271 WHERE a=2573;\nUPDATE t2 SET b=82257 WHERE a=2574;\nUPDATE t2 SET b=76756 WHERE a=2575;\nUPDATE t2 SET b=66974 WHERE a=2576;\nUPDATE t2 SET b=53676 WHERE a=2577;\nUPDATE t2 SET b=93126 WHERE a=2578;\nUPDATE t2 SET b=38939 WHERE a=2579;\nUPDATE t2 SET b=1248 WHERE a=2580;\nUPDATE t2 SET b=28796 WHERE a=2581;\nUPDATE t2 SET b=10916 WHERE a=2582;\nUPDATE t2 SET b=21892 WHERE a=2583;\nUPDATE t2 SET b=92850 WHERE a=2584;\nUPDATE t2 SET b=79316 WHERE a=2585;\nUPDATE t2 SET b=66722 WHERE a=2586;\nUPDATE t2 SET b=52778 WHERE a=2587;\nUPDATE t2 SET b=44739 WHERE a=2588;\nUPDATE t2 SET b=95008 WHERE a=2589;\nUPDATE t2 SET b=75164 WHERE a=2590;\nUPDATE t2 SET b=63542 WHERE a=2591;\nUPDATE t2 SET b=39979 WHERE a=2592;\nUPDATE t2 SET b=98410 WHERE a=2593;\nUPDATE t2 SET b=54392 WHERE a=2594;\nUPDATE t2 SET b=53389 WHERE a=2595;\nUPDATE t2 SET b=29602 WHERE a=2596;\nUPDATE t2 SET b=2132 WHERE a=2597;\nUPDATE t2 SET b=51869 WHERE a=2598;\nUPDATE t2 SET b=73445 WHERE a=2599;\nUPDATE t2 SET b=59355 WHERE a=2600;\nUPDATE t2 SET b=97417 WHERE a=2601;\nUPDATE t2 SET b=8818 WHERE a=2602;\nUPDATE t2 SET b=9891 WHERE a=2603;\nUPDATE t2 SET b=1807 WHERE a=2604;\nUPDATE t2 SET b=9010 WHERE a=2605;\nUPDATE t2 SET b=38388 WHERE a=2606;\nUPDATE t2 SET b=77356 WHERE a=2607;\nUPDATE t2 SET b=39829 WHERE a=2608;\nUPDATE t2 SET b=36747 WHERE a=2609;\nUPDATE t2 SET b=48490 WHERE a=2610;\nUPDATE t2 SET b=42272 WHERE a=2611;\nUPDATE t2 SET b=26695 WHERE a=2612;\nUPDATE t2 SET b=18782 WHERE a=2613;\nUPDATE t2 SET b=28440 WHERE a=2614;\nUPDATE t2 SET b=13471 WHERE a=2615;\nUPDATE t2 SET b=64714 WHERE a=2616;\nUPDATE t2 SET b=32480 WHERE a=2617;\nUPDATE t2 SET b=27055 WHERE a=2618;\nUPDATE t2 SET b=27036 WHERE a=2619;\nUPDATE t2 SET b=18568 WHERE a=2620;\nUPDATE t2 SET b=83419 WHERE a=2621;\nUPDATE t2 SET b=47174 WHERE a=2622;\nUPDATE t2 SET b=97438 WHERE a=2623;\nUPDATE t2 SET b=81844 WHERE a=2624;\nUPDATE t2 SET b=77031 WHERE a=2625;\nUPDATE t2 SET b=27900 WHERE a=2626;\nUPDATE t2 SET b=2337 WHERE a=2627;\nUPDATE t2 SET b=49799 WHERE a=2628;\nUPDATE t2 SET b=75751 WHERE a=2629;\nUPDATE t2 SET b=47149 WHERE a=2630;\nUPDATE t2 SET b=83251 WHERE a=2631;\nUPDATE t2 SET b=10818 WHERE a=2632;\nUPDATE t2 SET b=72452 WHERE a=2633;\nUPDATE t2 SET b=33441 WHERE a=2634;\nUPDATE t2 SET b=98267 WHERE a=2635;\nUPDATE t2 SET b=13528 WHERE a=2636;\nUPDATE t2 SET b=75306 WHERE a=2637;\nUPDATE t2 SET b=67513 WHERE a=2638;\nUPDATE t2 SET b=44130 WHERE a=2639;\nUPDATE t2 SET b=33459 WHERE a=2640;\nUPDATE t2 SET b=64650 WHERE a=2641;\nUPDATE t2 SET b=48146 WHERE a=2642;\nUPDATE t2 SET b=7270 WHERE a=2643;\nUPDATE t2 SET b=25583 WHERE a=2644;\nUPDATE t2 SET b=97942 WHERE a=2645;\nUPDATE t2 SET b=82624 WHERE a=2646;\nUPDATE t2 SET b=77699 WHERE a=2647;\nUPDATE t2 SET b=10639 WHERE a=2648;\nUPDATE t2 SET b=14395 WHERE a=2649;\nUPDATE t2 SET b=28765 WHERE a=2650;\nUPDATE t2 SET b=40738 WHERE a=2651;\nUPDATE t2 SET b=52505 WHERE a=2652;\nUPDATE t2 SET b=63171 WHERE a=2653;\nUPDATE t2 SET b=52590 WHERE a=2654;\nUPDATE t2 SET b=87445 WHERE a=2655;\nUPDATE t2 SET b=11782 WHERE a=2656;\nUPDATE t2 SET b=35556 WHERE a=2657;\nUPDATE t2 SET b=13353 WHERE a=2658;\nUPDATE t2 SET b=12331 WHERE a=2659;\nUPDATE t2 SET b=51773 WHERE a=2660;\nUPDATE t2 SET b=19754 WHERE a=2661;\nUPDATE t2 SET b=94281 WHERE a=2662;\nUPDATE t2 SET b=12799 WHERE a=2663;\nUPDATE t2 SET b=72000 WHERE a=2664;\nUPDATE t2 SET b=43463 WHERE a=2665;\nUPDATE t2 SET b=49889 WHERE a=2666;\nUPDATE t2 SET b=11854 WHERE a=2667;\nUPDATE t2 SET b=51499 WHERE a=2668;\nUPDATE t2 SET b=94878 WHERE a=2669;\nUPDATE t2 SET b=32376 WHERE a=2670;\nUPDATE t2 SET b=30638 WHERE a=2671;\nUPDATE t2 SET b=34674 WHERE a=2672;\nUPDATE t2 SET b=90247 WHERE a=2673;\nUPDATE t2 SET b=29897 WHERE a=2674;\nUPDATE t2 SET b=39665 WHERE a=2675;\nUPDATE t2 SET b=36908 WHERE a=2676;\nUPDATE t2 SET b=14087 WHERE a=2677;\nUPDATE t2 SET b=21295 WHERE a=2678;\nUPDATE t2 SET b=88863 WHERE a=2679;\nUPDATE t2 SET b=21343 WHERE a=2680;\nUPDATE t2 SET b=1651 WHERE a=2681;\nUPDATE t2 SET b=25944 WHERE a=2682;\nUPDATE t2 SET b=55732 WHERE a=2683;\nUPDATE t2 SET b=81256 WHERE a=2684;\nUPDATE t2 SET b=43294 WHERE a=2685;\nUPDATE t2 SET b=12172 WHERE a=2686;\nUPDATE t2 SET b=69536 WHERE a=2687;\nUPDATE t2 SET b=78750 WHERE a=2688;\nUPDATE t2 SET b=5302 WHERE a=2689;\nUPDATE t2 SET b=52251 WHERE a=2690;\nUPDATE t2 SET b=35521 WHERE a=2691;\nUPDATE t2 SET b=89304 WHERE a=2692;\nUPDATE t2 SET b=38880 WHERE a=2693;\nUPDATE t2 SET b=64644 WHERE a=2694;\nUPDATE t2 SET b=59151 WHERE a=2695;\nUPDATE t2 SET b=95114 WHERE a=2696;\nUPDATE t2 SET b=67707 WHERE a=2697;\nUPDATE t2 SET b=46651 WHERE a=2698;\nUPDATE t2 SET b=87894 WHERE a=2699;\nUPDATE t2 SET b=7338 WHERE a=2700;\nUPDATE t2 SET b=766 WHERE a=2701;\nUPDATE t2 SET b=30469 WHERE a=2702;\nUPDATE t2 SET b=21465 WHERE a=2703;\nUPDATE t2 SET b=28505 WHERE a=2704;\nUPDATE t2 SET b=73364 WHERE a=2705;\nUPDATE t2 SET b=30526 WHERE a=2706;\nUPDATE t2 SET b=75256 WHERE a=2707;\nUPDATE t2 SET b=86111 WHERE a=2708;\nUPDATE t2 SET b=84140 WHERE a=2709;\nUPDATE t2 SET b=37226 WHERE a=2710;\nUPDATE t2 SET b=64138 WHERE a=2711;\nUPDATE t2 SET b=54131 WHERE a=2712;\nUPDATE t2 SET b=84395 WHERE a=2713;\nUPDATE t2 SET b=99631 WHERE a=2714;\nUPDATE t2 SET b=83471 WHERE a=2715;\nUPDATE t2 SET b=73816 WHERE a=2716;\nUPDATE t2 SET b=17181 WHERE a=2717;\nUPDATE t2 SET b=45463 WHERE a=2718;\nUPDATE t2 SET b=38056 WHERE a=2719;\nUPDATE t2 SET b=75972 WHERE a=2720;\nUPDATE t2 SET b=73651 WHERE a=2721;\nUPDATE t2 SET b=59821 WHERE a=2722;\nUPDATE t2 SET b=40560 WHERE a=2723;\nUPDATE t2 SET b=92628 WHERE a=2724;\nUPDATE t2 SET b=86504 WHERE a=2725;\nUPDATE t2 SET b=12609 WHERE a=2726;\nUPDATE t2 SET b=5296 WHERE a=2727;\nUPDATE t2 SET b=41017 WHERE a=2728;\nUPDATE t2 SET b=95183 WHERE a=2729;\nUPDATE t2 SET b=93142 WHERE a=2730;\nUPDATE t2 SET b=86482 WHERE a=2731;\nUPDATE t2 SET b=22762 WHERE a=2732;\nUPDATE t2 SET b=37912 WHERE a=2733;\nUPDATE t2 SET b=97680 WHERE a=2734;\nUPDATE t2 SET b=16943 WHERE a=2735;\nUPDATE t2 SET b=403 WHERE a=2736;\nUPDATE t2 SET b=7622 WHERE a=2737;\nUPDATE t2 SET b=55656 WHERE a=2738;\nUPDATE t2 SET b=86206 WHERE a=2739;\nUPDATE t2 SET b=32970 WHERE a=2740;\nUPDATE t2 SET b=88208 WHERE a=2741;\nUPDATE t2 SET b=57371 WHERE a=2742;\nUPDATE t2 SET b=38934 WHERE a=2743;\nUPDATE t2 SET b=35150 WHERE a=2744;\nUPDATE t2 SET b=6627 WHERE a=2745;\nUPDATE t2 SET b=32525 WHERE a=2746;\nUPDATE t2 SET b=28904 WHERE a=2747;\nUPDATE t2 SET b=20602 WHERE a=2748;\nUPDATE t2 SET b=80722 WHERE a=2749;\nUPDATE t2 SET b=52441 WHERE a=2750;\nUPDATE t2 SET b=60497 WHERE a=2751;\nUPDATE t2 SET b=48402 WHERE a=2752;\nUPDATE t2 SET b=8250 WHERE a=2753;\nUPDATE t2 SET b=86344 WHERE a=2754;\nUPDATE t2 SET b=24412 WHERE a=2755;\nUPDATE t2 SET b=25723 WHERE a=2756;\nUPDATE t2 SET b=38066 WHERE a=2757;\nUPDATE t2 SET b=98999 WHERE a=2758;\nUPDATE t2 SET b=52574 WHERE a=2759;\nUPDATE t2 SET b=72333 WHERE a=2760;\nUPDATE t2 SET b=34734 WHERE a=2761;\nUPDATE t2 SET b=5886 WHERE a=2762;\nUPDATE t2 SET b=14103 WHERE a=2763;\nUPDATE t2 SET b=98165 WHERE a=2764;\nUPDATE t2 SET b=59018 WHERE a=2765;\nUPDATE t2 SET b=55192 WHERE a=2766;\nUPDATE t2 SET b=79366 WHERE a=2767;\nUPDATE t2 SET b=22368 WHERE a=2768;\nUPDATE t2 SET b=38517 WHERE a=2769;\nUPDATE t2 SET b=52763 WHERE a=2770;\nUPDATE t2 SET b=47658 WHERE a=2771;\nUPDATE t2 SET b=48705 WHERE a=2772;\nUPDATE t2 SET b=30506 WHERE a=2773;\nUPDATE t2 SET b=30052 WHERE a=2774;\nUPDATE t2 SET b=59299 WHERE a=2775;\nUPDATE t2 SET b=23260 WHERE a=2776;\nUPDATE t2 SET b=26842 WHERE a=2777;\nUPDATE t2 SET b=83550 WHERE a=2778;\nUPDATE t2 SET b=43295 WHERE a=2779;\nUPDATE t2 SET b=38587 WHERE a=2780;\nUPDATE t2 SET b=61149 WHERE a=2781;\nUPDATE t2 SET b=92268 WHERE a=2782;\nUPDATE t2 SET b=24058 WHERE a=2783;\nUPDATE t2 SET b=96685 WHERE a=2784;\nUPDATE t2 SET b=11793 WHERE a=2785;\nUPDATE t2 SET b=26372 WHERE a=2786;\nUPDATE t2 SET b=87177 WHERE a=2787;\nUPDATE t2 SET b=96447 WHERE a=2788;\nUPDATE t2 SET b=2360 WHERE a=2789;\nUPDATE t2 SET b=84076 WHERE a=2790;\nUPDATE t2 SET b=95977 WHERE a=2791;\nUPDATE t2 SET b=2202 WHERE a=2792;\nUPDATE t2 SET b=67029 WHERE a=2793;\nUPDATE t2 SET b=67000 WHERE a=2794;\nUPDATE t2 SET b=61213 WHERE a=2795;\nUPDATE t2 SET b=76922 WHERE a=2796;\nUPDATE t2 SET b=9316 WHERE a=2797;\nUPDATE t2 SET b=42006 WHERE a=2798;\nUPDATE t2 SET b=8793 WHERE a=2799;\nUPDATE t2 SET b=48489 WHERE a=2800;\nUPDATE t2 SET b=99821 WHERE a=2801;\nUPDATE t2 SET b=28213 WHERE a=2802;\nUPDATE t2 SET b=60783 WHERE a=2803;\nUPDATE t2 SET b=82366 WHERE a=2804;\nUPDATE t2 SET b=17031 WHERE a=2805;\nUPDATE t2 SET b=63712 WHERE a=2806;\nUPDATE t2 SET b=40462 WHERE a=2807;\nUPDATE t2 SET b=32678 WHERE a=2808;\nUPDATE t2 SET b=84856 WHERE a=2809;\nUPDATE t2 SET b=47503 WHERE a=2810;\nUPDATE t2 SET b=22516 WHERE a=2811;\nUPDATE t2 SET b=67515 WHERE a=2812;\nUPDATE t2 SET b=20402 WHERE a=2813;\nUPDATE t2 SET b=51138 WHERE a=2814;\nUPDATE t2 SET b=82182 WHERE a=2815;\nUPDATE t2 SET b=97647 WHERE a=2816;\nUPDATE t2 SET b=70534 WHERE a=2817;\nUPDATE t2 SET b=52572 WHERE a=2818;\nUPDATE t2 SET b=86154 WHERE a=2819;\nUPDATE t2 SET b=51846 WHERE a=2820;\nUPDATE t2 SET b=82014 WHERE a=2821;\nUPDATE t2 SET b=74265 WHERE a=2822;\nUPDATE t2 SET b=48697 WHERE a=2823;\nUPDATE t2 SET b=21980 WHERE a=2824;\nUPDATE t2 SET b=64043 WHERE a=2825;\nUPDATE t2 SET b=27884 WHERE a=2826;\nUPDATE t2 SET b=24801 WHERE a=2827;\nUPDATE t2 SET b=55408 WHERE a=2828;\nUPDATE t2 SET b=53130 WHERE a=2829;\nUPDATE t2 SET b=32994 WHERE a=2830;\nUPDATE t2 SET b=94903 WHERE a=2831;\nUPDATE t2 SET b=98578 WHERE a=2832;\nUPDATE t2 SET b=25960 WHERE a=2833;\nUPDATE t2 SET b=58181 WHERE a=2834;\nUPDATE t2 SET b=36848 WHERE a=2835;\nUPDATE t2 SET b=2081 WHERE a=2836;\nUPDATE t2 SET b=51297 WHERE a=2837;\nUPDATE t2 SET b=34764 WHERE a=2838;\nUPDATE t2 SET b=48317 WHERE a=2839;\nUPDATE t2 SET b=14494 WHERE a=2840;\nUPDATE t2 SET b=52281 WHERE a=2841;\nUPDATE t2 SET b=71804 WHERE a=2842;\nUPDATE t2 SET b=99273 WHERE a=2843;\nUPDATE t2 SET b=95560 WHERE a=2844;\nUPDATE t2 SET b=81867 WHERE a=2845;\nUPDATE t2 SET b=77480 WHERE a=2846;\nUPDATE t2 SET b=76577 WHERE a=2847;\nUPDATE t2 SET b=73760 WHERE a=2848;\nUPDATE t2 SET b=33579 WHERE a=2849;\nUPDATE t2 SET b=5118 WHERE a=2850;\nUPDATE t2 SET b=27734 WHERE a=2851;\nUPDATE t2 SET b=66212 WHERE a=2852;\nUPDATE t2 SET b=77094 WHERE a=2853;\nUPDATE t2 SET b=10616 WHERE a=2854;\nUPDATE t2 SET b=16909 WHERE a=2855;\nUPDATE t2 SET b=34064 WHERE a=2856;\nUPDATE t2 SET b=75447 WHERE a=2857;\nUPDATE t2 SET b=84912 WHERE a=2858;\nUPDATE t2 SET b=91641 WHERE a=2859;\nUPDATE t2 SET b=91661 WHERE a=2860;\nUPDATE t2 SET b=50685 WHERE a=2861;\nUPDATE t2 SET b=36960 WHERE a=2862;\nUPDATE t2 SET b=29437 WHERE a=2863;\nUPDATE t2 SET b=74864 WHERE a=2864;\nUPDATE t2 SET b=29417 WHERE a=2865;\nUPDATE t2 SET b=57860 WHERE a=2866;\nUPDATE t2 SET b=4498 WHERE a=2867;\nUPDATE t2 SET b=49739 WHERE a=2868;\nUPDATE t2 SET b=84504 WHERE a=2869;\nUPDATE t2 SET b=81924 WHERE a=2870;\nUPDATE t2 SET b=58828 WHERE a=2871;\nUPDATE t2 SET b=84653 WHERE a=2872;\nUPDATE t2 SET b=67364 WHERE a=2873;\nUPDATE t2 SET b=79420 WHERE a=2874;\nUPDATE t2 SET b=68778 WHERE a=2875;\nUPDATE t2 SET b=43864 WHERE a=2876;\nUPDATE t2 SET b=1973 WHERE a=2877;\nUPDATE t2 SET b=75261 WHERE a=2878;\nUPDATE t2 SET b=22023 WHERE a=2879;\nUPDATE t2 SET b=76793 WHERE a=2880;\nUPDATE t2 SET b=14646 WHERE a=2881;\nUPDATE t2 SET b=48685 WHERE a=2882;\nUPDATE t2 SET b=72281 WHERE a=2883;\nUPDATE t2 SET b=90995 WHERE a=2884;\nUPDATE t2 SET b=3441 WHERE a=2885;\nUPDATE t2 SET b=5918 WHERE a=2886;\nUPDATE t2 SET b=9997 WHERE a=2887;\nUPDATE t2 SET b=40929 WHERE a=2888;\nUPDATE t2 SET b=30193 WHERE a=2889;\nUPDATE t2 SET b=99463 WHERE a=2890;\nUPDATE t2 SET b=5118 WHERE a=2891;\nUPDATE t2 SET b=223 WHERE a=2892;\nUPDATE t2 SET b=43308 WHERE a=2893;\nUPDATE t2 SET b=79765 WHERE a=2894;\nUPDATE t2 SET b=25798 WHERE a=2895;\nUPDATE t2 SET b=16699 WHERE a=2896;\nUPDATE t2 SET b=81634 WHERE a=2897;\nUPDATE t2 SET b=59443 WHERE a=2898;\nUPDATE t2 SET b=2465 WHERE a=2899;\nUPDATE t2 SET b=34652 WHERE a=2900;\nUPDATE t2 SET b=67207 WHERE a=2901;\nUPDATE t2 SET b=87888 WHERE a=2902;\nUPDATE t2 SET b=44521 WHERE a=2903;\nUPDATE t2 SET b=86338 WHERE a=2904;\nUPDATE t2 SET b=35952 WHERE a=2905;\nUPDATE t2 SET b=19904 WHERE a=2906;\nUPDATE t2 SET b=24984 WHERE a=2907;\nUPDATE t2 SET b=39695 WHERE a=2908;\nUPDATE t2 SET b=59859 WHERE a=2909;\nUPDATE t2 SET b=31837 WHERE a=2910;\nUPDATE t2 SET b=29087 WHERE a=2911;\nUPDATE t2 SET b=94691 WHERE a=2912;\nUPDATE t2 SET b=70404 WHERE a=2913;\nUPDATE t2 SET b=80539 WHERE a=2914;\nUPDATE t2 SET b=29107 WHERE a=2915;\nUPDATE t2 SET b=64195 WHERE a=2916;\nUPDATE t2 SET b=35777 WHERE a=2917;\nUPDATE t2 SET b=81117 WHERE a=2918;\nUPDATE t2 SET b=55572 WHERE a=2919;\nUPDATE t2 SET b=83002 WHERE a=2920;\nUPDATE t2 SET b=85565 WHERE a=2921;\nUPDATE t2 SET b=99244 WHERE a=2922;\nUPDATE t2 SET b=38122 WHERE a=2923;\nUPDATE t2 SET b=90503 WHERE a=2924;\nUPDATE t2 SET b=144 WHERE a=2925;\nUPDATE t2 SET b=3101 WHERE a=2926;\nUPDATE t2 SET b=46888 WHERE a=2927;\nUPDATE t2 SET b=11222 WHERE a=2928;\nUPDATE t2 SET b=62821 WHERE a=2929;\nUPDATE t2 SET b=59961 WHERE a=2930;\nUPDATE t2 SET b=29398 WHERE a=2931;\nUPDATE t2 SET b=5946 WHERE a=2932;\nUPDATE t2 SET b=53789 WHERE a=2933;\nUPDATE t2 SET b=0 WHERE a=2934;\nUPDATE t2 SET b=25773 WHERE a=2935;\nUPDATE t2 SET b=55952 WHERE a=2936;\nUPDATE t2 SET b=68945 WHERE a=2937;\nUPDATE t2 SET b=13862 WHERE a=2938;\nUPDATE t2 SET b=58579 WHERE a=2939;\nUPDATE t2 SET b=88473 WHERE a=2940;\nUPDATE t2 SET b=76345 WHERE a=2941;\nUPDATE t2 SET b=70221 WHERE a=2942;\nUPDATE t2 SET b=63003 WHERE a=2943;\nUPDATE t2 SET b=85249 WHERE a=2944;\nUPDATE t2 SET b=99584 WHERE a=2945;\nUPDATE t2 SET b=434 WHERE a=2946;\nUPDATE t2 SET b=46392 WHERE a=2947;\nUPDATE t2 SET b=2492 WHERE a=2948;\nUPDATE t2 SET b=34943 WHERE a=2949;\nUPDATE t2 SET b=37010 WHERE a=2950;\nUPDATE t2 SET b=17938 WHERE a=2951;\nUPDATE t2 SET b=11015 WHERE a=2952;\nUPDATE t2 SET b=18208 WHERE a=2953;\nUPDATE t2 SET b=88816 WHERE a=2954;\nUPDATE t2 SET b=64656 WHERE a=2955;\nUPDATE t2 SET b=84589 WHERE a=2956;\nUPDATE t2 SET b=86736 WHERE a=2957;\nUPDATE t2 SET b=58494 WHERE a=2958;\nUPDATE t2 SET b=526 WHERE a=2959;\nUPDATE t2 SET b=32884 WHERE a=2960;\nUPDATE t2 SET b=85672 WHERE a=2961;\nUPDATE t2 SET b=21576 WHERE a=2962;\nUPDATE t2 SET b=71142 WHERE a=2963;\nUPDATE t2 SET b=94169 WHERE a=2964;\nUPDATE t2 SET b=90760 WHERE a=2965;\nUPDATE t2 SET b=18769 WHERE a=2966;\nUPDATE t2 SET b=54197 WHERE a=2967;\nUPDATE t2 SET b=33740 WHERE a=2968;\nUPDATE t2 SET b=25115 WHERE a=2969;\nUPDATE t2 SET b=9804 WHERE a=2970;\nUPDATE t2 SET b=44355 WHERE a=2971;\nUPDATE t2 SET b=94920 WHERE a=2972;\nUPDATE t2 SET b=61041 WHERE a=2973;\nUPDATE t2 SET b=43771 WHERE a=2974;\nUPDATE t2 SET b=63350 WHERE a=2975;\nUPDATE t2 SET b=60873 WHERE a=2976;\nUPDATE t2 SET b=69796 WHERE a=2977;\nUPDATE t2 SET b=66123 WHERE a=2978;\nUPDATE t2 SET b=26007 WHERE a=2979;\nUPDATE t2 SET b=10747 WHERE a=2980;\nUPDATE t2 SET b=18735 WHERE a=2981;\nUPDATE t2 SET b=78801 WHERE a=2982;\nUPDATE t2 SET b=87142 WHERE a=2983;\nUPDATE t2 SET b=28885 WHERE a=2984;\nUPDATE t2 SET b=3424 WHERE a=2985;\nUPDATE t2 SET b=2244 WHERE a=2986;\nUPDATE t2 SET b=80723 WHERE a=2987;\nUPDATE t2 SET b=62070 WHERE a=2988;\nUPDATE t2 SET b=40707 WHERE a=2989;\nUPDATE t2 SET b=64918 WHERE a=2990;\nUPDATE t2 SET b=33745 WHERE a=2991;\nUPDATE t2 SET b=40997 WHERE a=2992;\nUPDATE t2 SET b=75669 WHERE a=2993;\nUPDATE t2 SET b=686 WHERE a=2994;\nUPDATE t2 SET b=84540 WHERE a=2995;\nUPDATE t2 SET b=70861 WHERE a=2996;\nUPDATE t2 SET b=26745 WHERE a=2997;\nUPDATE t2 SET b=30457 WHERE a=2998;\nUPDATE t2 SET b=42619 WHERE a=2999;\nUPDATE t2 SET b=82299 WHERE a=3000;\nUPDATE t2 SET b=83333 WHERE a=3001;\nUPDATE t2 SET b=42220 WHERE a=3002;\nUPDATE t2 SET b=47960 WHERE a=3003;\nUPDATE t2 SET b=48944 WHERE a=3004;\nUPDATE t2 SET b=34384 WHERE a=3005;\nUPDATE t2 SET b=64993 WHERE a=3006;\nUPDATE t2 SET b=5993 WHERE a=3007;\nUPDATE t2 SET b=11352 WHERE a=3008;\nUPDATE t2 SET b=58988 WHERE a=3009;\nUPDATE t2 SET b=7343 WHERE a=3010;\nUPDATE t2 SET b=77925 WHERE a=3011;\nUPDATE t2 SET b=98214 WHERE a=3012;\nUPDATE t2 SET b=30171 WHERE a=3013;\nUPDATE t2 SET b=2361 WHERE a=3014;\nUPDATE t2 SET b=88714 WHERE a=3015;\nUPDATE t2 SET b=11922 WHERE a=3016;\nUPDATE t2 SET b=84151 WHERE a=3017;\nUPDATE t2 SET b=6231 WHERE a=3018;\nUPDATE t2 SET b=70765 WHERE a=3019;\nUPDATE t2 SET b=73510 WHERE a=3020;\nUPDATE t2 SET b=61448 WHERE a=3021;\nUPDATE t2 SET b=44154 WHERE a=3022;\nUPDATE t2 SET b=74495 WHERE a=3023;\nUPDATE t2 SET b=43527 WHERE a=3024;\nUPDATE t2 SET b=37049 WHERE a=3025;\nUPDATE t2 SET b=85655 WHERE a=3026;\nUPDATE t2 SET b=87214 WHERE a=3027;\nUPDATE t2 SET b=34125 WHERE a=3028;\nUPDATE t2 SET b=56764 WHERE a=3029;\nUPDATE t2 SET b=37316 WHERE a=3030;\nUPDATE t2 SET b=2105 WHERE a=3031;\nUPDATE t2 SET b=26954 WHERE a=3032;\nUPDATE t2 SET b=84144 WHERE a=3033;\nUPDATE t2 SET b=96574 WHERE a=3034;\nUPDATE t2 SET b=63545 WHERE a=3035;\nUPDATE t2 SET b=72005 WHERE a=3036;\nUPDATE t2 SET b=6193 WHERE a=3037;\nUPDATE t2 SET b=24507 WHERE a=3038;\nUPDATE t2 SET b=56219 WHERE a=3039;\nUPDATE t2 SET b=24793 WHERE a=3040;\nUPDATE t2 SET b=40696 WHERE a=3041;\nUPDATE t2 SET b=81224 WHERE a=3042;\nUPDATE t2 SET b=24821 WHERE a=3043;\nUPDATE t2 SET b=61112 WHERE a=3044;\nUPDATE t2 SET b=74770 WHERE a=3045;\nUPDATE t2 SET b=32834 WHERE a=3046;\nUPDATE t2 SET b=48644 WHERE a=3047;\nUPDATE t2 SET b=62811 WHERE a=3048;\nUPDATE t2 SET b=75150 WHERE a=3049;\nUPDATE t2 SET b=23274 WHERE a=3050;\nUPDATE t2 SET b=47553 WHERE a=3051;\nUPDATE t2 SET b=14433 WHERE a=3052;\nUPDATE t2 SET b=49919 WHERE a=3053;\nUPDATE t2 SET b=99161 WHERE a=3054;\nUPDATE t2 SET b=10638 WHERE a=3055;\nUPDATE t2 SET b=22442 WHERE a=3056;\nUPDATE t2 SET b=55039 WHERE a=3057;\nUPDATE t2 SET b=72656 WHERE a=3058;\nUPDATE t2 SET b=86681 WHERE a=3059;\nUPDATE t2 SET b=13116 WHERE a=3060;\nUPDATE t2 SET b=3540 WHERE a=3061;\nUPDATE t2 SET b=28940 WHERE a=3062;\nUPDATE t2 SET b=42561 WHERE a=3063;\nUPDATE t2 SET b=70094 WHERE a=3064;\nUPDATE t2 SET b=52246 WHERE a=3065;\nUPDATE t2 SET b=27726 WHERE a=3066;\nUPDATE t2 SET b=29144 WHERE a=3067;\nUPDATE t2 SET b=82914 WHERE a=3068;\nUPDATE t2 SET b=87556 WHERE a=3069;\nUPDATE t2 SET b=2177 WHERE a=3070;\nUPDATE t2 SET b=97283 WHERE a=3071;\nUPDATE t2 SET b=81946 WHERE a=3072;\nUPDATE t2 SET b=8555 WHERE a=3073;\nUPDATE t2 SET b=81696 WHERE a=3074;\nUPDATE t2 SET b=16955 WHERE a=3075;\nUPDATE t2 SET b=40755 WHERE a=3076;\nUPDATE t2 SET b=35702 WHERE a=3077;\nUPDATE t2 SET b=10720 WHERE a=3078;\nUPDATE t2 SET b=59236 WHERE a=3079;\nUPDATE t2 SET b=14701 WHERE a=3080;\nUPDATE t2 SET b=91786 WHERE a=3081;\nUPDATE t2 SET b=78011 WHERE a=3082;\nUPDATE t2 SET b=36540 WHERE a=3083;\nUPDATE t2 SET b=17359 WHERE a=3084;\nUPDATE t2 SET b=7731 WHERE a=3085;\nUPDATE t2 SET b=3650 WHERE a=3086;\nUPDATE t2 SET b=81042 WHERE a=3087;\nUPDATE t2 SET b=23382 WHERE a=3088;\nUPDATE t2 SET b=14686 WHERE a=3089;\nUPDATE t2 SET b=67007 WHERE a=3090;\nUPDATE t2 SET b=64014 WHERE a=3091;\nUPDATE t2 SET b=91917 WHERE a=3092;\nUPDATE t2 SET b=78377 WHERE a=3093;\nUPDATE t2 SET b=65183 WHERE a=3094;\nUPDATE t2 SET b=76433 WHERE a=3095;\nUPDATE t2 SET b=51317 WHERE a=3096;\nUPDATE t2 SET b=11411 WHERE a=3097;\nUPDATE t2 SET b=28063 WHERE a=3098;\nUPDATE t2 SET b=25200 WHERE a=3099;\nUPDATE t2 SET b=57363 WHERE a=3100;\nUPDATE t2 SET b=5443 WHERE a=3101;\nUPDATE t2 SET b=44771 WHERE a=3102;\nUPDATE t2 SET b=87884 WHERE a=3103;\nUPDATE t2 SET b=4863 WHERE a=3104;\nUPDATE t2 SET b=77865 WHERE a=3105;\nUPDATE t2 SET b=81153 WHERE a=3106;\nUPDATE t2 SET b=8651 WHERE a=3107;\nUPDATE t2 SET b=3050 WHERE a=3108;\nUPDATE t2 SET b=95916 WHERE a=3109;\nUPDATE t2 SET b=91500 WHERE a=3110;\nUPDATE t2 SET b=22532 WHERE a=3111;\nUPDATE t2 SET b=861 WHERE a=3112;\nUPDATE t2 SET b=51815 WHERE a=3113;\nUPDATE t2 SET b=33854 WHERE a=3114;\nUPDATE t2 SET b=33433 WHERE a=3115;\nUPDATE t2 SET b=57283 WHERE a=3116;\nUPDATE t2 SET b=6732 WHERE a=3117;\nUPDATE t2 SET b=73827 WHERE a=3118;\nUPDATE t2 SET b=13157 WHERE a=3119;\nUPDATE t2 SET b=33728 WHERE a=3120;\nUPDATE t2 SET b=42987 WHERE a=3121;\nUPDATE t2 SET b=33448 WHERE a=3122;\nUPDATE t2 SET b=50407 WHERE a=3123;\nUPDATE t2 SET b=38785 WHERE a=3124;\nUPDATE t2 SET b=79836 WHERE a=3125;\nUPDATE t2 SET b=81126 WHERE a=3126;\nUPDATE t2 SET b=35954 WHERE a=3127;\nUPDATE t2 SET b=73464 WHERE a=3128;\nUPDATE t2 SET b=35793 WHERE a=3129;\nUPDATE t2 SET b=18941 WHERE a=3130;\nUPDATE t2 SET b=52770 WHERE a=3131;\nUPDATE t2 SET b=97418 WHERE a=3132;\nUPDATE t2 SET b=59637 WHERE a=3133;\nUPDATE t2 SET b=27549 WHERE a=3134;\nUPDATE t2 SET b=84220 WHERE a=3135;\nUPDATE t2 SET b=90069 WHERE a=3136;\nUPDATE t2 SET b=22402 WHERE a=3137;\nUPDATE t2 SET b=63737 WHERE a=3138;\nUPDATE t2 SET b=92189 WHERE a=3139;\nUPDATE t2 SET b=88325 WHERE a=3140;\nUPDATE t2 SET b=60523 WHERE a=3141;\nUPDATE t2 SET b=57992 WHERE a=3142;\nUPDATE t2 SET b=84052 WHERE a=3143;\nUPDATE t2 SET b=6014 WHERE a=3144;\nUPDATE t2 SET b=30880 WHERE a=3145;\nUPDATE t2 SET b=36910 WHERE a=3146;\nUPDATE t2 SET b=51506 WHERE a=3147;\nUPDATE t2 SET b=20017 WHERE a=3148;\nUPDATE t2 SET b=72182 WHERE a=3149;\nUPDATE t2 SET b=1577 WHERE a=3150;\nUPDATE t2 SET b=55630 WHERE a=3151;\nUPDATE t2 SET b=50244 WHERE a=3152;\nUPDATE t2 SET b=44135 WHERE a=3153;\nUPDATE t2 SET b=61457 WHERE a=3154;\nUPDATE t2 SET b=90772 WHERE a=3155;\nUPDATE t2 SET b=33279 WHERE a=3156;\nUPDATE t2 SET b=85242 WHERE a=3157;\nUPDATE t2 SET b=43318 WHERE a=3158;\nUPDATE t2 SET b=96715 WHERE a=3159;\nUPDATE t2 SET b=1439 WHERE a=3160;\nUPDATE t2 SET b=68319 WHERE a=3161;\nUPDATE t2 SET b=20625 WHERE a=3162;\nUPDATE t2 SET b=55472 WHERE a=3163;\nUPDATE t2 SET b=15748 WHERE a=3164;\nUPDATE t2 SET b=28842 WHERE a=3165;\nUPDATE t2 SET b=8837 WHERE a=3166;\nUPDATE t2 SET b=94861 WHERE a=3167;\nUPDATE t2 SET b=79792 WHERE a=3168;\nUPDATE t2 SET b=45625 WHERE a=3169;\nUPDATE t2 SET b=36338 WHERE a=3170;\nUPDATE t2 SET b=12261 WHERE a=3171;\nUPDATE t2 SET b=27374 WHERE a=3172;\nUPDATE t2 SET b=55237 WHERE a=3173;\nUPDATE t2 SET b=56050 WHERE a=3174;\nUPDATE t2 SET b=50016 WHERE a=3175;\nUPDATE t2 SET b=82253 WHERE a=3176;\nUPDATE t2 SET b=38335 WHERE a=3177;\nUPDATE t2 SET b=58204 WHERE a=3178;\nUPDATE t2 SET b=31306 WHERE a=3179;\nUPDATE t2 SET b=62336 WHERE a=3180;\nUPDATE t2 SET b=9423 WHERE a=3181;\nUPDATE t2 SET b=71792 WHERE a=3182;\nUPDATE t2 SET b=39464 WHERE a=3183;\nUPDATE t2 SET b=33133 WHERE a=3184;\nUPDATE t2 SET b=83825 WHERE a=3185;\nUPDATE t2 SET b=25281 WHERE a=3186;\nUPDATE t2 SET b=60003 WHERE a=3187;\nUPDATE t2 SET b=30408 WHERE a=3188;\nUPDATE t2 SET b=65324 WHERE a=3189;\nUPDATE t2 SET b=39222 WHERE a=3190;\nUPDATE t2 SET b=65242 WHERE a=3191;\nUPDATE t2 SET b=18427 WHERE a=3192;\nUPDATE t2 SET b=95947 WHERE a=3193;\nUPDATE t2 SET b=74013 WHERE a=3194;\nUPDATE t2 SET b=30668 WHERE a=3195;\nUPDATE t2 SET b=5899 WHERE a=3196;\nUPDATE t2 SET b=82472 WHERE a=3197;\nUPDATE t2 SET b=67213 WHERE a=3198;\nUPDATE t2 SET b=93795 WHERE a=3199;\nUPDATE t2 SET b=53023 WHERE a=3200;\nUPDATE t2 SET b=85894 WHERE a=3201;\nUPDATE t2 SET b=36484 WHERE a=3202;\nUPDATE t2 SET b=90838 WHERE a=3203;\nUPDATE t2 SET b=7000 WHERE a=3204;\nUPDATE t2 SET b=21820 WHERE a=3205;\nUPDATE t2 SET b=67851 WHERE a=3206;\nUPDATE t2 SET b=95761 WHERE a=3207;\nUPDATE t2 SET b=19567 WHERE a=3208;\nUPDATE t2 SET b=80859 WHERE a=3209;\nUPDATE t2 SET b=20562 WHERE a=3210;\nUPDATE t2 SET b=51045 WHERE a=3211;\nUPDATE t2 SET b=23577 WHERE a=3212;\nUPDATE t2 SET b=84807 WHERE a=3213;\nUPDATE t2 SET b=72577 WHERE a=3214;\nUPDATE t2 SET b=55666 WHERE a=3215;\nUPDATE t2 SET b=1249 WHERE a=3216;\nUPDATE t2 SET b=79041 WHERE a=3217;\nUPDATE t2 SET b=99714 WHERE a=3218;\nUPDATE t2 SET b=65831 WHERE a=3219;\nUPDATE t2 SET b=31021 WHERE a=3220;\nUPDATE t2 SET b=59227 WHERE a=3221;\nUPDATE t2 SET b=32857 WHERE a=3222;\nUPDATE t2 SET b=78414 WHERE a=3223;\nUPDATE t2 SET b=18719 WHERE a=3224;\nUPDATE t2 SET b=64144 WHERE a=3225;\nUPDATE t2 SET b=8110 WHERE a=3226;\nUPDATE t2 SET b=7217 WHERE a=3227;\nUPDATE t2 SET b=70925 WHERE a=3228;\nUPDATE t2 SET b=79545 WHERE a=3229;\nUPDATE t2 SET b=85823 WHERE a=3230;\nUPDATE t2 SET b=98242 WHERE a=3231;\nUPDATE t2 SET b=73079 WHERE a=3232;\nUPDATE t2 SET b=31207 WHERE a=3233;\nUPDATE t2 SET b=35311 WHERE a=3234;\nUPDATE t2 SET b=50663 WHERE a=3235;\nUPDATE t2 SET b=82693 WHERE a=3236;\nUPDATE t2 SET b=75643 WHERE a=3237;\nUPDATE t2 SET b=32142 WHERE a=3238;\nUPDATE t2 SET b=62226 WHERE a=3239;\nUPDATE t2 SET b=22024 WHERE a=3240;\nUPDATE t2 SET b=3599 WHERE a=3241;\nUPDATE t2 SET b=85986 WHERE a=3242;\nUPDATE t2 SET b=38217 WHERE a=3243;\nUPDATE t2 SET b=30315 WHERE a=3244;\nUPDATE t2 SET b=81734 WHERE a=3245;\nUPDATE t2 SET b=646 WHERE a=3246;\nUPDATE t2 SET b=56437 WHERE a=3247;\nUPDATE t2 SET b=80124 WHERE a=3248;\nUPDATE t2 SET b=55766 WHERE a=3249;\nUPDATE t2 SET b=3274 WHERE a=3250;\nUPDATE t2 SET b=37057 WHERE a=3251;\nUPDATE t2 SET b=16745 WHERE a=3252;\nUPDATE t2 SET b=92652 WHERE a=3253;\nUPDATE t2 SET b=45038 WHERE a=3254;\nUPDATE t2 SET b=67415 WHERE a=3255;\nUPDATE t2 SET b=29980 WHERE a=3256;\nUPDATE t2 SET b=94004 WHERE a=3257;\nUPDATE t2 SET b=4252 WHERE a=3258;\nUPDATE t2 SET b=28709 WHERE a=3259;\nUPDATE t2 SET b=57427 WHERE a=3260;\nUPDATE t2 SET b=95625 WHERE a=3261;\nUPDATE t2 SET b=95697 WHERE a=3262;\nUPDATE t2 SET b=86344 WHERE a=3263;\nUPDATE t2 SET b=54993 WHERE a=3264;\nUPDATE t2 SET b=14115 WHERE a=3265;\nUPDATE t2 SET b=31726 WHERE a=3266;\nUPDATE t2 SET b=81962 WHERE a=3267;\nUPDATE t2 SET b=58514 WHERE a=3268;\nUPDATE t2 SET b=44791 WHERE a=3269;\nUPDATE t2 SET b=36673 WHERE a=3270;\nUPDATE t2 SET b=36106 WHERE a=3271;\nUPDATE t2 SET b=79511 WHERE a=3272;\nUPDATE t2 SET b=56699 WHERE a=3273;\nUPDATE t2 SET b=17745 WHERE a=3274;\nUPDATE t2 SET b=15641 WHERE a=3275;\nUPDATE t2 SET b=18479 WHERE a=3276;\nUPDATE t2 SET b=60652 WHERE a=3277;\nUPDATE t2 SET b=81138 WHERE a=3278;\nUPDATE t2 SET b=85435 WHERE a=3279;\nUPDATE t2 SET b=56771 WHERE a=3280;\nUPDATE t2 SET b=3796 WHERE a=3281;\nUPDATE t2 SET b=61540 WHERE a=3282;\nUPDATE t2 SET b=89765 WHERE a=3283;\nUPDATE t2 SET b=4712 WHERE a=3284;\nUPDATE t2 SET b=70227 WHERE a=3285;\nUPDATE t2 SET b=32819 WHERE a=3286;\nUPDATE t2 SET b=76889 WHERE a=3287;\nUPDATE t2 SET b=80375 WHERE a=3288;\nUPDATE t2 SET b=64611 WHERE a=3289;\nUPDATE t2 SET b=32431 WHERE a=3290;\nUPDATE t2 SET b=47612 WHERE a=3291;\nUPDATE t2 SET b=48890 WHERE a=3292;\nUPDATE t2 SET b=31547 WHERE a=3293;\nUPDATE t2 SET b=98177 WHERE a=3294;\nUPDATE t2 SET b=40540 WHERE a=3295;\nUPDATE t2 SET b=56491 WHERE a=3296;\nUPDATE t2 SET b=13495 WHERE a=3297;\nUPDATE t2 SET b=20932 WHERE a=3298;\nUPDATE t2 SET b=17136 WHERE a=3299;\nUPDATE t2 SET b=31243 WHERE a=3300;\nUPDATE t2 SET b=3278 WHERE a=3301;\nUPDATE t2 SET b=90574 WHERE a=3302;\nUPDATE t2 SET b=77954 WHERE a=3303;\nUPDATE t2 SET b=14030 WHERE a=3304;\nUPDATE t2 SET b=57367 WHERE a=3305;\nUPDATE t2 SET b=4983 WHERE a=3306;\nUPDATE t2 SET b=61872 WHERE a=3307;\nUPDATE t2 SET b=53373 WHERE a=3308;\nUPDATE t2 SET b=37733 WHERE a=3309;\nUPDATE t2 SET b=16695 WHERE a=3310;\nUPDATE t2 SET b=12209 WHERE a=3311;\nUPDATE t2 SET b=9834 WHERE a=3312;\nUPDATE t2 SET b=29546 WHERE a=3313;\nUPDATE t2 SET b=66246 WHERE a=3314;\nUPDATE t2 SET b=85448 WHERE a=3315;\nUPDATE t2 SET b=10670 WHERE a=3316;\nUPDATE t2 SET b=13866 WHERE a=3317;\nUPDATE t2 SET b=82129 WHERE a=3318;\nUPDATE t2 SET b=78787 WHERE a=3319;\nUPDATE t2 SET b=71269 WHERE a=3320;\nUPDATE t2 SET b=76623 WHERE a=3321;\nUPDATE t2 SET b=36267 WHERE a=3322;\nUPDATE t2 SET b=67663 WHERE a=3323;\nUPDATE t2 SET b=4122 WHERE a=3324;\nUPDATE t2 SET b=11683 WHERE a=3325;\nUPDATE t2 SET b=51689 WHERE a=3326;\nUPDATE t2 SET b=42746 WHERE a=3327;\nUPDATE t2 SET b=14310 WHERE a=3328;\nUPDATE t2 SET b=5077 WHERE a=3329;\nUPDATE t2 SET b=75291 WHERE a=3330;\nUPDATE t2 SET b=54244 WHERE a=3331;\nUPDATE t2 SET b=53463 WHERE a=3332;\nUPDATE t2 SET b=64505 WHERE a=3333;\nUPDATE t2 SET b=22196 WHERE a=3334;\nUPDATE t2 SET b=94372 WHERE a=3335;\nUPDATE t2 SET b=55161 WHERE a=3336;\nUPDATE t2 SET b=97801 WHERE a=3337;\nUPDATE t2 SET b=97196 WHERE a=3338;\nUPDATE t2 SET b=86248 WHERE a=3339;\nUPDATE t2 SET b=58313 WHERE a=3340;\nUPDATE t2 SET b=36126 WHERE a=3341;\nUPDATE t2 SET b=60240 WHERE a=3342;\nUPDATE t2 SET b=46257 WHERE a=3343;\nUPDATE t2 SET b=87476 WHERE a=3344;\nUPDATE t2 SET b=28190 WHERE a=3345;\nUPDATE t2 SET b=8035 WHERE a=3346;\nUPDATE t2 SET b=25486 WHERE a=3347;\nUPDATE t2 SET b=27361 WHERE a=3348;\nUPDATE t2 SET b=34675 WHERE a=3349;\nUPDATE t2 SET b=22550 WHERE a=3350;\nUPDATE t2 SET b=53839 WHERE a=3351;\nUPDATE t2 SET b=39578 WHERE a=3352;\nUPDATE t2 SET b=21220 WHERE a=3353;\nUPDATE t2 SET b=62471 WHERE a=3354;\nUPDATE t2 SET b=99636 WHERE a=3355;\nUPDATE t2 SET b=28459 WHERE a=3356;\nUPDATE t2 SET b=96065 WHERE a=3357;\nUPDATE t2 SET b=6552 WHERE a=3358;\nUPDATE t2 SET b=64982 WHERE a=3359;\nUPDATE t2 SET b=46850 WHERE a=3360;\nUPDATE t2 SET b=90420 WHERE a=3361;\nUPDATE t2 SET b=48602 WHERE a=3362;\nUPDATE t2 SET b=17474 WHERE a=3363;\nUPDATE t2 SET b=88190 WHERE a=3364;\nUPDATE t2 SET b=37182 WHERE a=3365;\nUPDATE t2 SET b=27969 WHERE a=3366;\nUPDATE t2 SET b=99639 WHERE a=3367;\nUPDATE t2 SET b=58211 WHERE a=3368;\nUPDATE t2 SET b=21256 WHERE a=3369;\nUPDATE t2 SET b=45467 WHERE a=3370;\nUPDATE t2 SET b=65898 WHERE a=3371;\nUPDATE t2 SET b=50276 WHERE a=3372;\nUPDATE t2 SET b=5201 WHERE a=3373;\nUPDATE t2 SET b=59064 WHERE a=3374;\nUPDATE t2 SET b=62270 WHERE a=3375;\nUPDATE t2 SET b=91505 WHERE a=3376;\nUPDATE t2 SET b=45185 WHERE a=3377;\nUPDATE t2 SET b=34384 WHERE a=3378;\nUPDATE t2 SET b=76835 WHERE a=3379;\nUPDATE t2 SET b=42203 WHERE a=3380;\nUPDATE t2 SET b=49320 WHERE a=3381;\nUPDATE t2 SET b=86272 WHERE a=3382;\nUPDATE t2 SET b=65391 WHERE a=3383;\nUPDATE t2 SET b=45656 WHERE a=3384;\nUPDATE t2 SET b=67054 WHERE a=3385;\nUPDATE t2 SET b=57836 WHERE a=3386;\nUPDATE t2 SET b=83580 WHERE a=3387;\nUPDATE t2 SET b=88977 WHERE a=3388;\nUPDATE t2 SET b=66649 WHERE a=3389;\nUPDATE t2 SET b=28802 WHERE a=3390;\nUPDATE t2 SET b=11473 WHERE a=3391;\nUPDATE t2 SET b=16644 WHERE a=3392;\nUPDATE t2 SET b=41580 WHERE a=3393;\nUPDATE t2 SET b=18364 WHERE a=3394;\nUPDATE t2 SET b=29258 WHERE a=3395;\nUPDATE t2 SET b=695 WHERE a=3396;\nUPDATE t2 SET b=36045 WHERE a=3397;\nUPDATE t2 SET b=27811 WHERE a=3398;\nUPDATE t2 SET b=96361 WHERE a=3399;\nUPDATE t2 SET b=26403 WHERE a=3400;\nUPDATE t2 SET b=91254 WHERE a=3401;\nUPDATE t2 SET b=14549 WHERE a=3402;\nUPDATE t2 SET b=53101 WHERE a=3403;\nUPDATE t2 SET b=52350 WHERE a=3404;\nUPDATE t2 SET b=4235 WHERE a=3405;\nUPDATE t2 SET b=48322 WHERE a=3406;\nUPDATE t2 SET b=66617 WHERE a=3407;\nUPDATE t2 SET b=87005 WHERE a=3408;\nUPDATE t2 SET b=84830 WHERE a=3409;\nUPDATE t2 SET b=69146 WHERE a=3410;\nUPDATE t2 SET b=6336 WHERE a=3411;\nUPDATE t2 SET b=46356 WHERE a=3412;\nUPDATE t2 SET b=65650 WHERE a=3413;\nUPDATE t2 SET b=10183 WHERE a=3414;\nUPDATE t2 SET b=45761 WHERE a=3415;\nUPDATE t2 SET b=82245 WHERE a=3416;\nUPDATE t2 SET b=23702 WHERE a=3417;\nUPDATE t2 SET b=18677 WHERE a=3418;\nUPDATE t2 SET b=26042 WHERE a=3419;\nUPDATE t2 SET b=89821 WHERE a=3420;\nUPDATE t2 SET b=62143 WHERE a=3421;\nUPDATE t2 SET b=24612 WHERE a=3422;\nUPDATE t2 SET b=91689 WHERE a=3423;\nUPDATE t2 SET b=92255 WHERE a=3424;\nUPDATE t2 SET b=112 WHERE a=3425;\nUPDATE t2 SET b=639 WHERE a=3426;\nUPDATE t2 SET b=95454 WHERE a=3427;\nUPDATE t2 SET b=97834 WHERE a=3428;\nUPDATE t2 SET b=56314 WHERE a=3429;\nUPDATE t2 SET b=59548 WHERE a=3430;\nUPDATE t2 SET b=75216 WHERE a=3431;\nUPDATE t2 SET b=40281 WHERE a=3432;\nUPDATE t2 SET b=48058 WHERE a=3433;\nUPDATE t2 SET b=10581 WHERE a=3434;\nUPDATE t2 SET b=36550 WHERE a=3435;\nUPDATE t2 SET b=76606 WHERE a=3436;\nUPDATE t2 SET b=66683 WHERE a=3437;\nUPDATE t2 SET b=56053 WHERE a=3438;\nUPDATE t2 SET b=36609 WHERE a=3439;\nUPDATE t2 SET b=68735 WHERE a=3440;\nUPDATE t2 SET b=76309 WHERE a=3441;\nUPDATE t2 SET b=95270 WHERE a=3442;\nUPDATE t2 SET b=37475 WHERE a=3443;\nUPDATE t2 SET b=29793 WHERE a=3444;\nUPDATE t2 SET b=90396 WHERE a=3445;\nUPDATE t2 SET b=11852 WHERE a=3446;\nUPDATE t2 SET b=78244 WHERE a=3447;\nUPDATE t2 SET b=68948 WHERE a=3448;\nUPDATE t2 SET b=81810 WHERE a=3449;\nUPDATE t2 SET b=42891 WHERE a=3450;\nUPDATE t2 SET b=38857 WHERE a=3451;\nUPDATE t2 SET b=31560 WHERE a=3452;\nUPDATE t2 SET b=4925 WHERE a=3453;\nUPDATE t2 SET b=82490 WHERE a=3454;\nUPDATE t2 SET b=55542 WHERE a=3455;\nUPDATE t2 SET b=56988 WHERE a=3456;\nUPDATE t2 SET b=77412 WHERE a=3457;\nUPDATE t2 SET b=94031 WHERE a=3458;\nUPDATE t2 SET b=57164 WHERE a=3459;\nUPDATE t2 SET b=66755 WHERE a=3460;\nUPDATE t2 SET b=33513 WHERE a=3461;\nUPDATE t2 SET b=98722 WHERE a=3462;\nUPDATE t2 SET b=72383 WHERE a=3463;\nUPDATE t2 SET b=32180 WHERE a=3464;\nUPDATE t2 SET b=94012 WHERE a=3465;\nUPDATE t2 SET b=91288 WHERE a=3466;\nUPDATE t2 SET b=414 WHERE a=3467;\nUPDATE t2 SET b=65484 WHERE a=3468;\nUPDATE t2 SET b=86670 WHERE a=3469;\nUPDATE t2 SET b=73467 WHERE a=3470;\nUPDATE t2 SET b=45361 WHERE a=3471;\nUPDATE t2 SET b=11078 WHERE a=3472;\nUPDATE t2 SET b=77917 WHERE a=3473;\nUPDATE t2 SET b=41661 WHERE a=3474;\nUPDATE t2 SET b=93666 WHERE a=3475;\nUPDATE t2 SET b=14863 WHERE a=3476;\nUPDATE t2 SET b=79768 WHERE a=3477;\nUPDATE t2 SET b=97765 WHERE a=3478;\nUPDATE t2 SET b=68679 WHERE a=3479;\nUPDATE t2 SET b=38741 WHERE a=3480;\nUPDATE t2 SET b=68766 WHERE a=3481;\nUPDATE t2 SET b=2827 WHERE a=3482;\nUPDATE t2 SET b=58472 WHERE a=3483;\nUPDATE t2 SET b=88795 WHERE a=3484;\nUPDATE t2 SET b=33260 WHERE a=3485;\nUPDATE t2 SET b=78687 WHERE a=3486;\nUPDATE t2 SET b=89905 WHERE a=3487;\nUPDATE t2 SET b=59315 WHERE a=3488;\nUPDATE t2 SET b=68449 WHERE a=3489;\nUPDATE t2 SET b=84861 WHERE a=3490;\nUPDATE t2 SET b=62250 WHERE a=3491;\nUPDATE t2 SET b=40042 WHERE a=3492;\nUPDATE t2 SET b=56527 WHERE a=3493;\nUPDATE t2 SET b=43795 WHERE a=3494;\nUPDATE t2 SET b=85328 WHERE a=3495;\nUPDATE t2 SET b=53297 WHERE a=3496;\nUPDATE t2 SET b=60894 WHERE a=3497;\nUPDATE t2 SET b=37829 WHERE a=3498;\nUPDATE t2 SET b=95877 WHERE a=3499;\nUPDATE t2 SET b=30905 WHERE a=3500;\nUPDATE t2 SET b=48028 WHERE a=3501;\nUPDATE t2 SET b=8737 WHERE a=3502;\nUPDATE t2 SET b=69232 WHERE a=3503;\nUPDATE t2 SET b=83037 WHERE a=3504;\nUPDATE t2 SET b=17260 WHERE a=3505;\nUPDATE t2 SET b=90517 WHERE a=3506;\nUPDATE t2 SET b=88284 WHERE a=3507;\nUPDATE t2 SET b=61296 WHERE a=3508;\nUPDATE t2 SET b=95133 WHERE a=3509;\nUPDATE t2 SET b=28741 WHERE a=3510;\nUPDATE t2 SET b=86272 WHERE a=3511;\nUPDATE t2 SET b=49074 WHERE a=3512;\nUPDATE t2 SET b=25332 WHERE a=3513;\nUPDATE t2 SET b=13472 WHERE a=3514;\nUPDATE t2 SET b=30677 WHERE a=3515;\nUPDATE t2 SET b=87338 WHERE a=3516;\nUPDATE t2 SET b=7700 WHERE a=3517;\nUPDATE t2 SET b=56126 WHERE a=3518;\nUPDATE t2 SET b=9201 WHERE a=3519;\nUPDATE t2 SET b=92411 WHERE a=3520;\nUPDATE t2 SET b=58419 WHERE a=3521;\nUPDATE t2 SET b=9098 WHERE a=3522;\nUPDATE t2 SET b=45066 WHERE a=3523;\nUPDATE t2 SET b=24792 WHERE a=3524;\nUPDATE t2 SET b=15015 WHERE a=3525;\nUPDATE t2 SET b=81386 WHERE a=3526;\nUPDATE t2 SET b=72293 WHERE a=3527;\nUPDATE t2 SET b=66922 WHERE a=3528;\nUPDATE t2 SET b=4376 WHERE a=3529;\nUPDATE t2 SET b=5016 WHERE a=3530;\nUPDATE t2 SET b=61928 WHERE a=3531;\nUPDATE t2 SET b=37200 WHERE a=3532;\nUPDATE t2 SET b=20578 WHERE a=3533;\nUPDATE t2 SET b=35259 WHERE a=3534;\nUPDATE t2 SET b=77055 WHERE a=3535;\nUPDATE t2 SET b=18728 WHERE a=3536;\nUPDATE t2 SET b=97497 WHERE a=3537;\nUPDATE t2 SET b=36500 WHERE a=3538;\nUPDATE t2 SET b=59490 WHERE a=3539;\nUPDATE t2 SET b=40885 WHERE a=3540;\nUPDATE t2 SET b=54428 WHERE a=3541;\nUPDATE t2 SET b=57468 WHERE a=3542;\nUPDATE t2 SET b=28385 WHERE a=3543;\nUPDATE t2 SET b=36764 WHERE a=3544;\nUPDATE t2 SET b=50293 WHERE a=3545;\nUPDATE t2 SET b=93887 WHERE a=3546;\nUPDATE t2 SET b=43208 WHERE a=3547;\nUPDATE t2 SET b=41508 WHERE a=3548;\nUPDATE t2 SET b=14016 WHERE a=3549;\nUPDATE t2 SET b=74195 WHERE a=3550;\nUPDATE t2 SET b=21956 WHERE a=3551;\nUPDATE t2 SET b=73949 WHERE a=3552;\nUPDATE t2 SET b=40514 WHERE a=3553;\nUPDATE t2 SET b=6170 WHERE a=3554;\nUPDATE t2 SET b=34329 WHERE a=3555;\nUPDATE t2 SET b=69806 WHERE a=3556;\nUPDATE t2 SET b=66713 WHERE a=3557;\nUPDATE t2 SET b=65302 WHERE a=3558;\nUPDATE t2 SET b=72779 WHERE a=3559;\nUPDATE t2 SET b=60445 WHERE a=3560;\nUPDATE t2 SET b=85909 WHERE a=3561;\nUPDATE t2 SET b=27835 WHERE a=3562;\nUPDATE t2 SET b=83110 WHERE a=3563;\nUPDATE t2 SET b=76340 WHERE a=3564;\nUPDATE t2 SET b=27456 WHERE a=3565;\nUPDATE t2 SET b=68188 WHERE a=3566;\nUPDATE t2 SET b=62902 WHERE a=3567;\nUPDATE t2 SET b=41950 WHERE a=3568;\nUPDATE t2 SET b=49055 WHERE a=3569;\nUPDATE t2 SET b=76590 WHERE a=3570;\nUPDATE t2 SET b=33120 WHERE a=3571;\nUPDATE t2 SET b=74545 WHERE a=3572;\nUPDATE t2 SET b=89351 WHERE a=3573;\nUPDATE t2 SET b=80889 WHERE a=3574;\nUPDATE t2 SET b=23129 WHERE a=3575;\nUPDATE t2 SET b=9307 WHERE a=3576;\nUPDATE t2 SET b=39593 WHERE a=3577;\nUPDATE t2 SET b=63216 WHERE a=3578;\nUPDATE t2 SET b=58901 WHERE a=3579;\nUPDATE t2 SET b=24590 WHERE a=3580;\nUPDATE t2 SET b=92288 WHERE a=3581;\nUPDATE t2 SET b=7015 WHERE a=3582;\nUPDATE t2 SET b=69923 WHERE a=3583;\nUPDATE t2 SET b=21248 WHERE a=3584;\nUPDATE t2 SET b=21642 WHERE a=3585;\nUPDATE t2 SET b=50733 WHERE a=3586;\nUPDATE t2 SET b=22977 WHERE a=3587;\nUPDATE t2 SET b=60881 WHERE a=3588;\nUPDATE t2 SET b=71155 WHERE a=3589;\nUPDATE t2 SET b=15846 WHERE a=3590;\nUPDATE t2 SET b=39916 WHERE a=3591;\nUPDATE t2 SET b=92496 WHERE a=3592;\nUPDATE t2 SET b=89363 WHERE a=3593;\nUPDATE t2 SET b=44513 WHERE a=3594;\nUPDATE t2 SET b=68798 WHERE a=3595;\nUPDATE t2 SET b=98990 WHERE a=3596;\nUPDATE t2 SET b=5247 WHERE a=3597;\nUPDATE t2 SET b=5644 WHERE a=3598;\nUPDATE t2 SET b=44625 WHERE a=3599;\nUPDATE t2 SET b=89126 WHERE a=3600;\nUPDATE t2 SET b=99172 WHERE a=3601;\nUPDATE t2 SET b=64652 WHERE a=3602;\nUPDATE t2 SET b=44461 WHERE a=3603;\nUPDATE t2 SET b=80461 WHERE a=3604;\nUPDATE t2 SET b=14373 WHERE a=3605;\nUPDATE t2 SET b=12371 WHERE a=3606;\nUPDATE t2 SET b=71528 WHERE a=3607;\nUPDATE t2 SET b=20826 WHERE a=3608;\nUPDATE t2 SET b=60780 WHERE a=3609;\nUPDATE t2 SET b=98456 WHERE a=3610;\nUPDATE t2 SET b=88534 WHERE a=3611;\nUPDATE t2 SET b=1398 WHERE a=3612;\nUPDATE t2 SET b=64431 WHERE a=3613;\nUPDATE t2 SET b=21271 WHERE a=3614;\nUPDATE t2 SET b=82641 WHERE a=3615;\nUPDATE t2 SET b=14263 WHERE a=3616;\nUPDATE t2 SET b=98792 WHERE a=3617;\nUPDATE t2 SET b=96588 WHERE a=3618;\nUPDATE t2 SET b=58097 WHERE a=3619;\nUPDATE t2 SET b=75720 WHERE a=3620;\nUPDATE t2 SET b=40415 WHERE a=3621;\nUPDATE t2 SET b=20859 WHERE a=3622;\nUPDATE t2 SET b=72084 WHERE a=3623;\nUPDATE t2 SET b=47736 WHERE a=3624;\nUPDATE t2 SET b=93202 WHERE a=3625;\nUPDATE t2 SET b=98670 WHERE a=3626;\nUPDATE t2 SET b=55814 WHERE a=3627;\nUPDATE t2 SET b=35064 WHERE a=3628;\nUPDATE t2 SET b=35472 WHERE a=3629;\nUPDATE t2 SET b=88568 WHERE a=3630;\nUPDATE t2 SET b=3217 WHERE a=3631;\nUPDATE t2 SET b=12024 WHERE a=3632;\nUPDATE t2 SET b=32586 WHERE a=3633;\nUPDATE t2 SET b=70690 WHERE a=3634;\nUPDATE t2 SET b=94141 WHERE a=3635;\nUPDATE t2 SET b=73179 WHERE a=3636;\nUPDATE t2 SET b=4308 WHERE a=3637;\nUPDATE t2 SET b=6391 WHERE a=3638;\nUPDATE t2 SET b=6334 WHERE a=3639;\nUPDATE t2 SET b=552 WHERE a=3640;\nUPDATE t2 SET b=39539 WHERE a=3641;\nUPDATE t2 SET b=63757 WHERE a=3642;\nUPDATE t2 SET b=18003 WHERE a=3643;\nUPDATE t2 SET b=68916 WHERE a=3644;\nUPDATE t2 SET b=1498 WHERE a=3645;\nUPDATE t2 SET b=37201 WHERE a=3646;\nUPDATE t2 SET b=97836 WHERE a=3647;\nUPDATE t2 SET b=4509 WHERE a=3648;\nUPDATE t2 SET b=89707 WHERE a=3649;\nUPDATE t2 SET b=97323 WHERE a=3650;\nUPDATE t2 SET b=93633 WHERE a=3651;\nUPDATE t2 SET b=79946 WHERE a=3652;\nUPDATE t2 SET b=15339 WHERE a=3653;\nUPDATE t2 SET b=91269 WHERE a=3654;\nUPDATE t2 SET b=49537 WHERE a=3655;\nUPDATE t2 SET b=41685 WHERE a=3656;\nUPDATE t2 SET b=33325 WHERE a=3657;\nUPDATE t2 SET b=52688 WHERE a=3658;\nUPDATE t2 SET b=4552 WHERE a=3659;\nUPDATE t2 SET b=20690 WHERE a=3660;\nUPDATE t2 SET b=87703 WHERE a=3661;\nUPDATE t2 SET b=40495 WHERE a=3662;\nUPDATE t2 SET b=14743 WHERE a=3663;\nUPDATE t2 SET b=5403 WHERE a=3664;\nUPDATE t2 SET b=67136 WHERE a=3665;\nUPDATE t2 SET b=72259 WHERE a=3666;\nUPDATE t2 SET b=77813 WHERE a=3667;\nUPDATE t2 SET b=92122 WHERE a=3668;\nUPDATE t2 SET b=6894 WHERE a=3669;\nUPDATE t2 SET b=39437 WHERE a=3670;\nUPDATE t2 SET b=42717 WHERE a=3671;\nUPDATE t2 SET b=5009 WHERE a=3672;\nUPDATE t2 SET b=7987 WHERE a=3673;\nUPDATE t2 SET b=91164 WHERE a=3674;\nUPDATE t2 SET b=18381 WHERE a=3675;\nUPDATE t2 SET b=61498 WHERE a=3676;\nUPDATE t2 SET b=91128 WHERE a=3677;\nUPDATE t2 SET b=64640 WHERE a=3678;\nUPDATE t2 SET b=2799 WHERE a=3679;\nUPDATE t2 SET b=44846 WHERE a=3680;\nUPDATE t2 SET b=83228 WHERE a=3681;\nUPDATE t2 SET b=75383 WHERE a=3682;\nUPDATE t2 SET b=30583 WHERE a=3683;\nUPDATE t2 SET b=3299 WHERE a=3684;\nUPDATE t2 SET b=79779 WHERE a=3685;\nUPDATE t2 SET b=25469 WHERE a=3686;\nUPDATE t2 SET b=79217 WHERE a=3687;\nUPDATE t2 SET b=15266 WHERE a=3688;\nUPDATE t2 SET b=21272 WHERE a=3689;\nUPDATE t2 SET b=56433 WHERE a=3690;\nUPDATE t2 SET b=29954 WHERE a=3691;\nUPDATE t2 SET b=48440 WHERE a=3692;\nUPDATE t2 SET b=55115 WHERE a=3693;\nUPDATE t2 SET b=84334 WHERE a=3694;\nUPDATE t2 SET b=18574 WHERE a=3695;\nUPDATE t2 SET b=48171 WHERE a=3696;\nUPDATE t2 SET b=84571 WHERE a=3697;\nUPDATE t2 SET b=98235 WHERE a=3698;\nUPDATE t2 SET b=57046 WHERE a=3699;\nUPDATE t2 SET b=76988 WHERE a=3700;\nUPDATE t2 SET b=18741 WHERE a=3701;\nUPDATE t2 SET b=84086 WHERE a=3702;\nUPDATE t2 SET b=10948 WHERE a=3703;\nUPDATE t2 SET b=73311 WHERE a=3704;\nUPDATE t2 SET b=93465 WHERE a=3705;\nUPDATE t2 SET b=6026 WHERE a=3706;\nUPDATE t2 SET b=87320 WHERE a=3707;\nUPDATE t2 SET b=61247 WHERE a=3708;\nUPDATE t2 SET b=63196 WHERE a=3709;\nUPDATE t2 SET b=59352 WHERE a=3710;\nUPDATE t2 SET b=63195 WHERE a=3711;\nUPDATE t2 SET b=45615 WHERE a=3712;\nUPDATE t2 SET b=95620 WHERE a=3713;\nUPDATE t2 SET b=74705 WHERE a=3714;\nUPDATE t2 SET b=7228 WHERE a=3715;\nUPDATE t2 SET b=13642 WHERE a=3716;\nUPDATE t2 SET b=61980 WHERE a=3717;\nUPDATE t2 SET b=53726 WHERE a=3718;\nUPDATE t2 SET b=61840 WHERE a=3719;\nUPDATE t2 SET b=30441 WHERE a=3720;\nUPDATE t2 SET b=75058 WHERE a=3721;\nUPDATE t2 SET b=47297 WHERE a=3722;\nUPDATE t2 SET b=97051 WHERE a=3723;\nUPDATE t2 SET b=65384 WHERE a=3724;\nUPDATE t2 SET b=82963 WHERE a=3725;\nUPDATE t2 SET b=96933 WHERE a=3726;\nUPDATE t2 SET b=91654 WHERE a=3727;\nUPDATE t2 SET b=1196 WHERE a=3728;\nUPDATE t2 SET b=80878 WHERE a=3729;\nUPDATE t2 SET b=31372 WHERE a=3730;\nUPDATE t2 SET b=45849 WHERE a=3731;\nUPDATE t2 SET b=15886 WHERE a=3732;\nUPDATE t2 SET b=90365 WHERE a=3733;\nUPDATE t2 SET b=20298 WHERE a=3734;\nUPDATE t2 SET b=68040 WHERE a=3735;\nUPDATE t2 SET b=35448 WHERE a=3736;\nUPDATE t2 SET b=63409 WHERE a=3737;\nUPDATE t2 SET b=63451 WHERE a=3738;\nUPDATE t2 SET b=41468 WHERE a=3739;\nUPDATE t2 SET b=49361 WHERE a=3740;\nUPDATE t2 SET b=51934 WHERE a=3741;\nUPDATE t2 SET b=8459 WHERE a=3742;\nUPDATE t2 SET b=28284 WHERE a=3743;\nUPDATE t2 SET b=48627 WHERE a=3744;\nUPDATE t2 SET b=31914 WHERE a=3745;\nUPDATE t2 SET b=57440 WHERE a=3746;\nUPDATE t2 SET b=31280 WHERE a=3747;\nUPDATE t2 SET b=76301 WHERE a=3748;\nUPDATE t2 SET b=28448 WHERE a=3749;\nUPDATE t2 SET b=1769 WHERE a=3750;\nUPDATE t2 SET b=88553 WHERE a=3751;\nUPDATE t2 SET b=51135 WHERE a=3752;\nUPDATE t2 SET b=84835 WHERE a=3753;\nUPDATE t2 SET b=60343 WHERE a=3754;\nUPDATE t2 SET b=34326 WHERE a=3755;\nUPDATE t2 SET b=10286 WHERE a=3756;\nUPDATE t2 SET b=93082 WHERE a=3757;\nUPDATE t2 SET b=14952 WHERE a=3758;\nUPDATE t2 SET b=32291 WHERE a=3759;\nUPDATE t2 SET b=19643 WHERE a=3760;\nUPDATE t2 SET b=59572 WHERE a=3761;\nUPDATE t2 SET b=47283 WHERE a=3762;\nUPDATE t2 SET b=16308 WHERE a=3763;\nUPDATE t2 SET b=61038 WHERE a=3764;\nUPDATE t2 SET b=15529 WHERE a=3765;\nUPDATE t2 SET b=30668 WHERE a=3766;\nUPDATE t2 SET b=11948 WHERE a=3767;\nUPDATE t2 SET b=97637 WHERE a=3768;\nUPDATE t2 SET b=87188 WHERE a=3769;\nUPDATE t2 SET b=64833 WHERE a=3770;\nUPDATE t2 SET b=95774 WHERE a=3771;\nUPDATE t2 SET b=20798 WHERE a=3772;\nUPDATE t2 SET b=64724 WHERE a=3773;\nUPDATE t2 SET b=55475 WHERE a=3774;\nUPDATE t2 SET b=77540 WHERE a=3775;\nUPDATE t2 SET b=37769 WHERE a=3776;\nUPDATE t2 SET b=40422 WHERE a=3777;\nUPDATE t2 SET b=25831 WHERE a=3778;\nUPDATE t2 SET b=86180 WHERE a=3779;\nUPDATE t2 SET b=54458 WHERE a=3780;\nUPDATE t2 SET b=64895 WHERE a=3781;\nUPDATE t2 SET b=31803 WHERE a=3782;\nUPDATE t2 SET b=51700 WHERE a=3783;\nUPDATE t2 SET b=71397 WHERE a=3784;\nUPDATE t2 SET b=96916 WHERE a=3785;\nUPDATE t2 SET b=68624 WHERE a=3786;\nUPDATE t2 SET b=87980 WHERE a=3787;\nUPDATE t2 SET b=21563 WHERE a=3788;\nUPDATE t2 SET b=36501 WHERE a=3789;\nUPDATE t2 SET b=71696 WHERE a=3790;\nUPDATE t2 SET b=86663 WHERE a=3791;\nUPDATE t2 SET b=57815 WHERE a=3792;\nUPDATE t2 SET b=56274 WHERE a=3793;\nUPDATE t2 SET b=34640 WHERE a=3794;\nUPDATE t2 SET b=52749 WHERE a=3795;\nUPDATE t2 SET b=35160 WHERE a=3796;\nUPDATE t2 SET b=17934 WHERE a=3797;\nUPDATE t2 SET b=57767 WHERE a=3798;\nUPDATE t2 SET b=27409 WHERE a=3799;\nUPDATE t2 SET b=70034 WHERE a=3800;\nUPDATE t2 SET b=28483 WHERE a=3801;\nUPDATE t2 SET b=53181 WHERE a=3802;\nUPDATE t2 SET b=75055 WHERE a=3803;\nUPDATE t2 SET b=70851 WHERE a=3804;\nUPDATE t2 SET b=71471 WHERE a=3805;\nUPDATE t2 SET b=48613 WHERE a=3806;\nUPDATE t2 SET b=91209 WHERE a=3807;\nUPDATE t2 SET b=23101 WHERE a=3808;\nUPDATE t2 SET b=39626 WHERE a=3809;\nUPDATE t2 SET b=89379 WHERE a=3810;\nUPDATE t2 SET b=19741 WHERE a=3811;\nUPDATE t2 SET b=94607 WHERE a=3812;\nUPDATE t2 SET b=17672 WHERE a=3813;\nUPDATE t2 SET b=95338 WHERE a=3814;\nUPDATE t2 SET b=68259 WHERE a=3815;\nUPDATE t2 SET b=24716 WHERE a=3816;\nUPDATE t2 SET b=9670 WHERE a=3817;\nUPDATE t2 SET b=49462 WHERE a=3818;\nUPDATE t2 SET b=2756 WHERE a=3819;\nUPDATE t2 SET b=27135 WHERE a=3820;\nUPDATE t2 SET b=7267 WHERE a=3821;\nUPDATE t2 SET b=72948 WHERE a=3822;\nUPDATE t2 SET b=45528 WHERE a=3823;\nUPDATE t2 SET b=6404 WHERE a=3824;\nUPDATE t2 SET b=66168 WHERE a=3825;\nUPDATE t2 SET b=35242 WHERE a=3826;\nUPDATE t2 SET b=72262 WHERE a=3827;\nUPDATE t2 SET b=91297 WHERE a=3828;\nUPDATE t2 SET b=40682 WHERE a=3829;\nUPDATE t2 SET b=24042 WHERE a=3830;\nUPDATE t2 SET b=32221 WHERE a=3831;\nUPDATE t2 SET b=51899 WHERE a=3832;\nUPDATE t2 SET b=57342 WHERE a=3833;\nUPDATE t2 SET b=1333 WHERE a=3834;\nUPDATE t2 SET b=79483 WHERE a=3835;\nUPDATE t2 SET b=37746 WHERE a=3836;\nUPDATE t2 SET b=90557 WHERE a=3837;\nUPDATE t2 SET b=27567 WHERE a=3838;\nUPDATE t2 SET b=71603 WHERE a=3839;\nUPDATE t2 SET b=96255 WHERE a=3840;\nUPDATE t2 SET b=80635 WHERE a=3841;\nUPDATE t2 SET b=26682 WHERE a=3842;\nUPDATE t2 SET b=63835 WHERE a=3843;\nUPDATE t2 SET b=83222 WHERE a=3844;\nUPDATE t2 SET b=39789 WHERE a=3845;\nUPDATE t2 SET b=61678 WHERE a=3846;\nUPDATE t2 SET b=44821 WHERE a=3847;\nUPDATE t2 SET b=72423 WHERE a=3848;\nUPDATE t2 SET b=67515 WHERE a=3849;\nUPDATE t2 SET b=17556 WHERE a=3850;\nUPDATE t2 SET b=81207 WHERE a=3851;\nUPDATE t2 SET b=80376 WHERE a=3852;\nUPDATE t2 SET b=69797 WHERE a=3853;\nUPDATE t2 SET b=55147 WHERE a=3854;\nUPDATE t2 SET b=10090 WHERE a=3855;\nUPDATE t2 SET b=6595 WHERE a=3856;\nUPDATE t2 SET b=97323 WHERE a=3857;\nUPDATE t2 SET b=10329 WHERE a=3858;\nUPDATE t2 SET b=99207 WHERE a=3859;\nUPDATE t2 SET b=79539 WHERE a=3860;\nUPDATE t2 SET b=2879 WHERE a=3861;\nUPDATE t2 SET b=68955 WHERE a=3862;\nUPDATE t2 SET b=80125 WHERE a=3863;\nUPDATE t2 SET b=69898 WHERE a=3864;\nUPDATE t2 SET b=34401 WHERE a=3865;\nUPDATE t2 SET b=26103 WHERE a=3866;\nUPDATE t2 SET b=40785 WHERE a=3867;\nUPDATE t2 SET b=20460 WHERE a=3868;\nUPDATE t2 SET b=68242 WHERE a=3869;\nUPDATE t2 SET b=34323 WHERE a=3870;\nUPDATE t2 SET b=65579 WHERE a=3871;\nUPDATE t2 SET b=14535 WHERE a=3872;\nUPDATE t2 SET b=62295 WHERE a=3873;\nUPDATE t2 SET b=35343 WHERE a=3874;\nUPDATE t2 SET b=39492 WHERE a=3875;\nUPDATE t2 SET b=95123 WHERE a=3876;\nUPDATE t2 SET b=56106 WHERE a=3877;\nUPDATE t2 SET b=68820 WHERE a=3878;\nUPDATE t2 SET b=2402 WHERE a=3879;\nUPDATE t2 SET b=34291 WHERE a=3880;\nUPDATE t2 SET b=33080 WHERE a=3881;\nUPDATE t2 SET b=64435 WHERE a=3882;\nUPDATE t2 SET b=95889 WHERE a=3883;\nUPDATE t2 SET b=89702 WHERE a=3884;\nUPDATE t2 SET b=47393 WHERE a=3885;\nUPDATE t2 SET b=98103 WHERE a=3886;\nUPDATE t2 SET b=89831 WHERE a=3887;\nUPDATE t2 SET b=28184 WHERE a=3888;\nUPDATE t2 SET b=7008 WHERE a=3889;\nUPDATE t2 SET b=38157 WHERE a=3890;\nUPDATE t2 SET b=10052 WHERE a=3891;\nUPDATE t2 SET b=3948 WHERE a=3892;\nUPDATE t2 SET b=41515 WHERE a=3893;\nUPDATE t2 SET b=48972 WHERE a=3894;\nUPDATE t2 SET b=24550 WHERE a=3895;\nUPDATE t2 SET b=89192 WHERE a=3896;\nUPDATE t2 SET b=18693 WHERE a=3897;\nUPDATE t2 SET b=5239 WHERE a=3898;\nUPDATE t2 SET b=59662 WHERE a=3899;\nUPDATE t2 SET b=18290 WHERE a=3900;\nUPDATE t2 SET b=76132 WHERE a=3901;\nUPDATE t2 SET b=31491 WHERE a=3902;\nUPDATE t2 SET b=51110 WHERE a=3903;\nUPDATE t2 SET b=11090 WHERE a=3904;\nUPDATE t2 SET b=29854 WHERE a=3905;\nUPDATE t2 SET b=31457 WHERE a=3906;\nUPDATE t2 SET b=63295 WHERE a=3907;\nUPDATE t2 SET b=10735 WHERE a=3908;\nUPDATE t2 SET b=12662 WHERE a=3909;\nUPDATE t2 SET b=50657 WHERE a=3910;\nUPDATE t2 SET b=34212 WHERE a=3911;\nUPDATE t2 SET b=98664 WHERE a=3912;\nUPDATE t2 SET b=2931 WHERE a=3913;\nUPDATE t2 SET b=64213 WHERE a=3914;\nUPDATE t2 SET b=32145 WHERE a=3915;\nUPDATE t2 SET b=98031 WHERE a=3916;\nUPDATE t2 SET b=48296 WHERE a=3917;\nUPDATE t2 SET b=53969 WHERE a=3918;\nUPDATE t2 SET b=2438 WHERE a=3919;\nUPDATE t2 SET b=53239 WHERE a=3920;\nUPDATE t2 SET b=35291 WHERE a=3921;\nUPDATE t2 SET b=44833 WHERE a=3922;\nUPDATE t2 SET b=19716 WHERE a=3923;\nUPDATE t2 SET b=87803 WHERE a=3924;\nUPDATE t2 SET b=51116 WHERE a=3925;\nUPDATE t2 SET b=27704 WHERE a=3926;\nUPDATE t2 SET b=12843 WHERE a=3927;\nUPDATE t2 SET b=5236 WHERE a=3928;\nUPDATE t2 SET b=77761 WHERE a=3929;\nUPDATE t2 SET b=48772 WHERE a=3930;\nUPDATE t2 SET b=96177 WHERE a=3931;\nUPDATE t2 SET b=81700 WHERE a=3932;\nUPDATE t2 SET b=53149 WHERE a=3933;\nUPDATE t2 SET b=85080 WHERE a=3934;\nUPDATE t2 SET b=96467 WHERE a=3935;\nUPDATE t2 SET b=2472 WHERE a=3936;\nUPDATE t2 SET b=2152 WHERE a=3937;\nUPDATE t2 SET b=67117 WHERE a=3938;\nUPDATE t2 SET b=57022 WHERE a=3939;\nUPDATE t2 SET b=92662 WHERE a=3940;\nUPDATE t2 SET b=78773 WHERE a=3941;\nUPDATE t2 SET b=78536 WHERE a=3942;\nUPDATE t2 SET b=7290 WHERE a=3943;\nUPDATE t2 SET b=43066 WHERE a=3944;\nUPDATE t2 SET b=18066 WHERE a=3945;\nUPDATE t2 SET b=82622 WHERE a=3946;\nUPDATE t2 SET b=17218 WHERE a=3947;\nUPDATE t2 SET b=62651 WHERE a=3948;\nUPDATE t2 SET b=72594 WHERE a=3949;\nUPDATE t2 SET b=22022 WHERE a=3950;\nUPDATE t2 SET b=49369 WHERE a=3951;\nUPDATE t2 SET b=37147 WHERE a=3952;\nUPDATE t2 SET b=57160 WHERE a=3953;\nUPDATE t2 SET b=97708 WHERE a=3954;\nUPDATE t2 SET b=36428 WHERE a=3955;\nUPDATE t2 SET b=61018 WHERE a=3956;\nUPDATE t2 SET b=93004 WHERE a=3957;\nUPDATE t2 SET b=38075 WHERE a=3958;\nUPDATE t2 SET b=20553 WHERE a=3959;\nUPDATE t2 SET b=33674 WHERE a=3960;\nUPDATE t2 SET b=19020 WHERE a=3961;\nUPDATE t2 SET b=91051 WHERE a=3962;\nUPDATE t2 SET b=44968 WHERE a=3963;\nUPDATE t2 SET b=47451 WHERE a=3964;\nUPDATE t2 SET b=53883 WHERE a=3965;\nUPDATE t2 SET b=96906 WHERE a=3966;\nUPDATE t2 SET b=26120 WHERE a=3967;\nUPDATE t2 SET b=55054 WHERE a=3968;\nUPDATE t2 SET b=22576 WHERE a=3969;\nUPDATE t2 SET b=49669 WHERE a=3970;\nUPDATE t2 SET b=84304 WHERE a=3971;\nUPDATE t2 SET b=37706 WHERE a=3972;\nUPDATE t2 SET b=48906 WHERE a=3973;\nUPDATE t2 SET b=95379 WHERE a=3974;\nUPDATE t2 SET b=50476 WHERE a=3975;\nUPDATE t2 SET b=9581 WHERE a=3976;\nUPDATE t2 SET b=83175 WHERE a=3977;\nUPDATE t2 SET b=64176 WHERE a=3978;\nUPDATE t2 SET b=64796 WHERE a=3979;\nUPDATE t2 SET b=4237 WHERE a=3980;\nUPDATE t2 SET b=65421 WHERE a=3981;\nUPDATE t2 SET b=67880 WHERE a=3982;\nUPDATE t2 SET b=93796 WHERE a=3983;\nUPDATE t2 SET b=7824 WHERE a=3984;\nUPDATE t2 SET b=53929 WHERE a=3985;\nUPDATE t2 SET b=4902 WHERE a=3986;\nUPDATE t2 SET b=16030 WHERE a=3987;\nUPDATE t2 SET b=22709 WHERE a=3988;\nUPDATE t2 SET b=42257 WHERE a=3989;\nUPDATE t2 SET b=18146 WHERE a=3990;\nUPDATE t2 SET b=70232 WHERE a=3991;\nUPDATE t2 SET b=69215 WHERE a=3992;\nUPDATE t2 SET b=30924 WHERE a=3993;\nUPDATE t2 SET b=16008 WHERE a=3994;\nUPDATE t2 SET b=1434 WHERE a=3995;\nUPDATE t2 SET b=37512 WHERE a=3996;\nUPDATE t2 SET b=32761 WHERE a=3997;\nUPDATE t2 SET b=19646 WHERE a=3998;\nUPDATE t2 SET b=49283 WHERE a=3999;\nUPDATE t2 SET b=67332 WHERE a=4000;\nUPDATE t2 SET b=44221 WHERE a=4001;\nUPDATE t2 SET b=83185 WHERE a=4002;\nUPDATE t2 SET b=48324 WHERE a=4003;\nUPDATE t2 SET b=20860 WHERE a=4004;\nUPDATE t2 SET b=16615 WHERE a=4005;\nUPDATE t2 SET b=77223 WHERE a=4006;\nUPDATE t2 SET b=88303 WHERE a=4007;\nUPDATE t2 SET b=38462 WHERE a=4008;\nUPDATE t2 SET b=95645 WHERE a=4009;\nUPDATE t2 SET b=262 WHERE a=4010;\nUPDATE t2 SET b=20645 WHERE a=4011;\nUPDATE t2 SET b=86671 WHERE a=4012;\nUPDATE t2 SET b=65345 WHERE a=4013;\nUPDATE t2 SET b=88411 WHERE a=4014;\nUPDATE t2 SET b=13365 WHERE a=4015;\nUPDATE t2 SET b=39624 WHERE a=4016;\nUPDATE t2 SET b=82308 WHERE a=4017;\nUPDATE t2 SET b=15492 WHERE a=4018;\nUPDATE t2 SET b=93488 WHERE a=4019;\nUPDATE t2 SET b=3192 WHERE a=4020;\nUPDATE t2 SET b=68695 WHERE a=4021;\nUPDATE t2 SET b=51393 WHERE a=4022;\nUPDATE t2 SET b=84425 WHERE a=4023;\nUPDATE t2 SET b=49472 WHERE a=4024;\nUPDATE t2 SET b=32617 WHERE a=4025;\nUPDATE t2 SET b=61579 WHERE a=4026;\nUPDATE t2 SET b=40736 WHERE a=4027;\nUPDATE t2 SET b=35992 WHERE a=4028;\nUPDATE t2 SET b=29094 WHERE a=4029;\nUPDATE t2 SET b=7724 WHERE a=4030;\nUPDATE t2 SET b=5166 WHERE a=4031;\nUPDATE t2 SET b=39110 WHERE a=4032;\nUPDATE t2 SET b=89330 WHERE a=4033;\nUPDATE t2 SET b=35096 WHERE a=4034;\nUPDATE t2 SET b=62751 WHERE a=4035;\nUPDATE t2 SET b=75878 WHERE a=4036;\nUPDATE t2 SET b=95606 WHERE a=4037;\nUPDATE t2 SET b=29321 WHERE a=4038;\nUPDATE t2 SET b=30391 WHERE a=4039;\nUPDATE t2 SET b=96135 WHERE a=4040;\nUPDATE t2 SET b=64414 WHERE a=4041;\nUPDATE t2 SET b=91390 WHERE a=4042;\nUPDATE t2 SET b=83429 WHERE a=4043;\nUPDATE t2 SET b=66647 WHERE a=4044;\nUPDATE t2 SET b=4182 WHERE a=4045;\nUPDATE t2 SET b=33134 WHERE a=4046;\nUPDATE t2 SET b=18315 WHERE a=4047;\nUPDATE t2 SET b=12411 WHERE a=4048;\nUPDATE t2 SET b=4881 WHERE a=4049;\nUPDATE t2 SET b=3601 WHERE a=4050;\nUPDATE t2 SET b=12231 WHERE a=4051;\nUPDATE t2 SET b=60473 WHERE a=4052;\nUPDATE t2 SET b=55472 WHERE a=4053;\nUPDATE t2 SET b=53094 WHERE a=4054;\nUPDATE t2 SET b=70220 WHERE a=4055;\nUPDATE t2 SET b=73661 WHERE a=4056;\nUPDATE t2 SET b=27558 WHERE a=4057;\nUPDATE t2 SET b=44704 WHERE a=4058;\nUPDATE t2 SET b=51361 WHERE a=4059;\nUPDATE t2 SET b=82145 WHERE a=4060;\nUPDATE t2 SET b=56858 WHERE a=4061;\nUPDATE t2 SET b=64385 WHERE a=4062;\nUPDATE t2 SET b=70632 WHERE a=4063;\nUPDATE t2 SET b=81567 WHERE a=4064;\nUPDATE t2 SET b=47584 WHERE a=4065;\nUPDATE t2 SET b=5672 WHERE a=4066;\nUPDATE t2 SET b=54504 WHERE a=4067;\nUPDATE t2 SET b=99016 WHERE a=4068;\nUPDATE t2 SET b=33227 WHERE a=4069;\nUPDATE t2 SET b=6560 WHERE a=4070;\nUPDATE t2 SET b=73408 WHERE a=4071;\nUPDATE t2 SET b=99629 WHERE a=4072;\nUPDATE t2 SET b=9432 WHERE a=4073;\nUPDATE t2 SET b=20977 WHERE a=4074;\nUPDATE t2 SET b=42919 WHERE a=4075;\nUPDATE t2 SET b=6533 WHERE a=4076;\nUPDATE t2 SET b=23921 WHERE a=4077;\nUPDATE t2 SET b=79752 WHERE a=4078;\nUPDATE t2 SET b=12874 WHERE a=4079;\nUPDATE t2 SET b=48225 WHERE a=4080;\nUPDATE t2 SET b=64896 WHERE a=4081;\nUPDATE t2 SET b=45943 WHERE a=4082;\nUPDATE t2 SET b=18597 WHERE a=4083;\nUPDATE t2 SET b=88359 WHERE a=4084;\nUPDATE t2 SET b=69003 WHERE a=4085;\nUPDATE t2 SET b=68546 WHERE a=4086;\nUPDATE t2 SET b=6176 WHERE a=4087;\nUPDATE t2 SET b=91445 WHERE a=4088;\nUPDATE t2 SET b=12003 WHERE a=4089;\nUPDATE t2 SET b=55175 WHERE a=4090;\nUPDATE t2 SET b=29532 WHERE a=4091;\nUPDATE t2 SET b=37051 WHERE a=4092;\nUPDATE t2 SET b=46678 WHERE a=4093;\nUPDATE t2 SET b=63583 WHERE a=4094;\nUPDATE t2 SET b=58496 WHERE a=4095;\nUPDATE t2 SET b=65470 WHERE a=4096;\nUPDATE t2 SET b=90779 WHERE a=4097;\nUPDATE t2 SET b=66979 WHERE a=4098;\nUPDATE t2 SET b=81198 WHERE a=4099;\nUPDATE t2 SET b=96498 WHERE a=4100;\nUPDATE t2 SET b=89818 WHERE a=4101;\nUPDATE t2 SET b=65983 WHERE a=4102;\nUPDATE t2 SET b=76774 WHERE a=4103;\nUPDATE t2 SET b=22850 WHERE a=4104;\nUPDATE t2 SET b=53488 WHERE a=4105;\nUPDATE t2 SET b=50384 WHERE a=4106;\nUPDATE t2 SET b=91604 WHERE a=4107;\nUPDATE t2 SET b=83047 WHERE a=4108;\nUPDATE t2 SET b=48058 WHERE a=4109;\nUPDATE t2 SET b=16309 WHERE a=4110;\nUPDATE t2 SET b=4706 WHERE a=4111;\nUPDATE t2 SET b=36727 WHERE a=4112;\nUPDATE t2 SET b=65249 WHERE a=4113;\nUPDATE t2 SET b=71026 WHERE a=4114;\nUPDATE t2 SET b=45918 WHERE a=4115;\nUPDATE t2 SET b=46189 WHERE a=4116;\nUPDATE t2 SET b=60290 WHERE a=4117;\nUPDATE t2 SET b=57157 WHERE a=4118;\nUPDATE t2 SET b=33539 WHERE a=4119;\nUPDATE t2 SET b=53004 WHERE a=4120;\nUPDATE t2 SET b=8376 WHERE a=4121;\nUPDATE t2 SET b=3999 WHERE a=4122;\nUPDATE t2 SET b=49197 WHERE a=4123;\nUPDATE t2 SET b=68876 WHERE a=4124;\nUPDATE t2 SET b=74500 WHERE a=4125;\nUPDATE t2 SET b=59739 WHERE a=4126;\nUPDATE t2 SET b=18555 WHERE a=4127;\nUPDATE t2 SET b=90010 WHERE a=4128;\nUPDATE t2 SET b=34207 WHERE a=4129;\nUPDATE t2 SET b=3888 WHERE a=4130;\nUPDATE t2 SET b=24780 WHERE a=4131;\nUPDATE t2 SET b=63486 WHERE a=4132;\nUPDATE t2 SET b=72332 WHERE a=4133;\nUPDATE t2 SET b=67212 WHERE a=4134;\nUPDATE t2 SET b=41663 WHERE a=4135;\nUPDATE t2 SET b=73863 WHERE a=4136;\nUPDATE t2 SET b=73947 WHERE a=4137;\nUPDATE t2 SET b=97798 WHERE a=4138;\nUPDATE t2 SET b=49698 WHERE a=4139;\nUPDATE t2 SET b=15373 WHERE a=4140;\nUPDATE t2 SET b=5946 WHERE a=4141;\nUPDATE t2 SET b=91858 WHERE a=4142;\nUPDATE t2 SET b=25508 WHERE a=4143;\nUPDATE t2 SET b=9059 WHERE a=4144;\nUPDATE t2 SET b=72131 WHERE a=4145;\nUPDATE t2 SET b=52255 WHERE a=4146;\nUPDATE t2 SET b=98195 WHERE a=4147;\nUPDATE t2 SET b=92048 WHERE a=4148;\nUPDATE t2 SET b=56526 WHERE a=4149;\nUPDATE t2 SET b=12040 WHERE a=4150;\nUPDATE t2 SET b=762 WHERE a=4151;\nUPDATE t2 SET b=70157 WHERE a=4152;\nUPDATE t2 SET b=8684 WHERE a=4153;\nUPDATE t2 SET b=92086 WHERE a=4154;\nUPDATE t2 SET b=40971 WHERE a=4155;\nUPDATE t2 SET b=93093 WHERE a=4156;\nUPDATE t2 SET b=15563 WHERE a=4157;\nUPDATE t2 SET b=85458 WHERE a=4158;\nUPDATE t2 SET b=52005 WHERE a=4159;\nUPDATE t2 SET b=65675 WHERE a=4160;\nUPDATE t2 SET b=60469 WHERE a=4161;\nUPDATE t2 SET b=23231 WHERE a=4162;\nUPDATE t2 SET b=68412 WHERE a=4163;\nUPDATE t2 SET b=58905 WHERE a=4164;\nUPDATE t2 SET b=83290 WHERE a=4165;\nUPDATE t2 SET b=23326 WHERE a=4166;\nUPDATE t2 SET b=31614 WHERE a=4167;\nUPDATE t2 SET b=30696 WHERE a=4168;\nUPDATE t2 SET b=12382 WHERE a=4169;\nUPDATE t2 SET b=15242 WHERE a=4170;\nUPDATE t2 SET b=21144 WHERE a=4171;\nUPDATE t2 SET b=28649 WHERE a=4172;\nUPDATE t2 SET b=40326 WHERE a=4173;\nUPDATE t2 SET b=69000 WHERE a=4174;\nUPDATE t2 SET b=36049 WHERE a=4175;\nUPDATE t2 SET b=15926 WHERE a=4176;\nUPDATE t2 SET b=26950 WHERE a=4177;\nUPDATE t2 SET b=19439 WHERE a=4178;\nUPDATE t2 SET b=65061 WHERE a=4179;\nUPDATE t2 SET b=3400 WHERE a=4180;\nUPDATE t2 SET b=17309 WHERE a=4181;\nUPDATE t2 SET b=29015 WHERE a=4182;\nUPDATE t2 SET b=19711 WHERE a=4183;\nUPDATE t2 SET b=79663 WHERE a=4184;\nUPDATE t2 SET b=43896 WHERE a=4185;\nUPDATE t2 SET b=1073 WHERE a=4186;\nUPDATE t2 SET b=43356 WHERE a=4187;\nUPDATE t2 SET b=47792 WHERE a=4188;\nUPDATE t2 SET b=49680 WHERE a=4189;\nUPDATE t2 SET b=89729 WHERE a=4190;\nUPDATE t2 SET b=18262 WHERE a=4191;\nUPDATE t2 SET b=53567 WHERE a=4192;\nUPDATE t2 SET b=52019 WHERE a=4193;\nUPDATE t2 SET b=29065 WHERE a=4194;\nUPDATE t2 SET b=59858 WHERE a=4195;\nUPDATE t2 SET b=8551 WHERE a=4196;\nUPDATE t2 SET b=22869 WHERE a=4197;\nUPDATE t2 SET b=87529 WHERE a=4198;\nUPDATE t2 SET b=70528 WHERE a=4199;\nUPDATE t2 SET b=33896 WHERE a=4200;\nUPDATE t2 SET b=34028 WHERE a=4201;\nUPDATE t2 SET b=62913 WHERE a=4202;\nUPDATE t2 SET b=74719 WHERE a=4203;\nUPDATE t2 SET b=5822 WHERE a=4204;\nUPDATE t2 SET b=63791 WHERE a=4205;\nUPDATE t2 SET b=57695 WHERE a=4206;\nUPDATE t2 SET b=15762 WHERE a=4207;\nUPDATE t2 SET b=77659 WHERE a=4208;\nUPDATE t2 SET b=27559 WHERE a=4209;\nUPDATE t2 SET b=60393 WHERE a=4210;\nUPDATE t2 SET b=82367 WHERE a=4211;\nUPDATE t2 SET b=15610 WHERE a=4212;\nUPDATE t2 SET b=31088 WHERE a=4213;\nUPDATE t2 SET b=6716 WHERE a=4214;\nUPDATE t2 SET b=76993 WHERE a=4215;\nUPDATE t2 SET b=87049 WHERE a=4216;\nUPDATE t2 SET b=18570 WHERE a=4217;\nUPDATE t2 SET b=9061 WHERE a=4218;\nUPDATE t2 SET b=55038 WHERE a=4219;\nUPDATE t2 SET b=68480 WHERE a=4220;\nUPDATE t2 SET b=20819 WHERE a=4221;\nUPDATE t2 SET b=7370 WHERE a=4222;\nUPDATE t2 SET b=83526 WHERE a=4223;\nUPDATE t2 SET b=41982 WHERE a=4224;\nUPDATE t2 SET b=51722 WHERE a=4225;\nUPDATE t2 SET b=22038 WHERE a=4226;\nUPDATE t2 SET b=29766 WHERE a=4227;\nUPDATE t2 SET b=1272 WHERE a=4228;\nUPDATE t2 SET b=11982 WHERE a=4229;\nUPDATE t2 SET b=53001 WHERE a=4230;\nUPDATE t2 SET b=62825 WHERE a=4231;\nUPDATE t2 SET b=5177 WHERE a=4232;\nUPDATE t2 SET b=65760 WHERE a=4233;\nUPDATE t2 SET b=61112 WHERE a=4234;\nUPDATE t2 SET b=30304 WHERE a=4235;\nUPDATE t2 SET b=79220 WHERE a=4236;\nUPDATE t2 SET b=26556 WHERE a=4237;\nUPDATE t2 SET b=3934 WHERE a=4238;\nUPDATE t2 SET b=30441 WHERE a=4239;\nUPDATE t2 SET b=97318 WHERE a=4240;\nUPDATE t2 SET b=9074 WHERE a=4241;\nUPDATE t2 SET b=18355 WHERE a=4242;\nUPDATE t2 SET b=36365 WHERE a=4243;\nUPDATE t2 SET b=46725 WHERE a=4244;\nUPDATE t2 SET b=11282 WHERE a=4245;\nUPDATE t2 SET b=32225 WHERE a=4246;\nUPDATE t2 SET b=76906 WHERE a=4247;\nUPDATE t2 SET b=64933 WHERE a=4248;\nUPDATE t2 SET b=39435 WHERE a=4249;\nUPDATE t2 SET b=45516 WHERE a=4250;\nUPDATE t2 SET b=80510 WHERE a=4251;\nUPDATE t2 SET b=76129 WHERE a=4252;\nUPDATE t2 SET b=20912 WHERE a=4253;\nUPDATE t2 SET b=50578 WHERE a=4254;\nUPDATE t2 SET b=89360 WHERE a=4255;\nUPDATE t2 SET b=72678 WHERE a=4256;\nUPDATE t2 SET b=7157 WHERE a=4257;\nUPDATE t2 SET b=6758 WHERE a=4258;\nUPDATE t2 SET b=29194 WHERE a=4259;\nUPDATE t2 SET b=67415 WHERE a=4260;\nUPDATE t2 SET b=63240 WHERE a=4261;\nUPDATE t2 SET b=4177 WHERE a=4262;\nUPDATE t2 SET b=58435 WHERE a=4263;\nUPDATE t2 SET b=43437 WHERE a=4264;\nUPDATE t2 SET b=5294 WHERE a=4265;\nUPDATE t2 SET b=46045 WHERE a=4266;\nUPDATE t2 SET b=8183 WHERE a=4267;\nUPDATE t2 SET b=9828 WHERE a=4268;\nUPDATE t2 SET b=85708 WHERE a=4269;\nUPDATE t2 SET b=39613 WHERE a=4270;\nUPDATE t2 SET b=89942 WHERE a=4271;\nUPDATE t2 SET b=28678 WHERE a=4272;\nUPDATE t2 SET b=14728 WHERE a=4273;\nUPDATE t2 SET b=55014 WHERE a=4274;\nUPDATE t2 SET b=8293 WHERE a=4275;\nUPDATE t2 SET b=39126 WHERE a=4276;\nUPDATE t2 SET b=5064 WHERE a=4277;\nUPDATE t2 SET b=22047 WHERE a=4278;\nUPDATE t2 SET b=78653 WHERE a=4279;\nUPDATE t2 SET b=47392 WHERE a=4280;\nUPDATE t2 SET b=68045 WHERE a=4281;\nUPDATE t2 SET b=64678 WHERE a=4282;\nUPDATE t2 SET b=96254 WHERE a=4283;\nUPDATE t2 SET b=7127 WHERE a=4284;\nUPDATE t2 SET b=5949 WHERE a=4285;\nUPDATE t2 SET b=8194 WHERE a=4286;\nUPDATE t2 SET b=76595 WHERE a=4287;\nUPDATE t2 SET b=4630 WHERE a=4288;\nUPDATE t2 SET b=10850 WHERE a=4289;\nUPDATE t2 SET b=76241 WHERE a=4290;\nUPDATE t2 SET b=26037 WHERE a=4291;\nUPDATE t2 SET b=60212 WHERE a=4292;\nUPDATE t2 SET b=92582 WHERE a=4293;\nUPDATE t2 SET b=68208 WHERE a=4294;\nUPDATE t2 SET b=11276 WHERE a=4295;\nUPDATE t2 SET b=24539 WHERE a=4296;\nUPDATE t2 SET b=46948 WHERE a=4297;\nUPDATE t2 SET b=26559 WHERE a=4298;\nUPDATE t2 SET b=88002 WHERE a=4299;\nUPDATE t2 SET b=47324 WHERE a=4300;\nUPDATE t2 SET b=84591 WHERE a=4301;\nUPDATE t2 SET b=6412 WHERE a=4302;\nUPDATE t2 SET b=12241 WHERE a=4303;\nUPDATE t2 SET b=22774 WHERE a=4304;\nUPDATE t2 SET b=84940 WHERE a=4305;\nUPDATE t2 SET b=96349 WHERE a=4306;\nUPDATE t2 SET b=89048 WHERE a=4307;\nUPDATE t2 SET b=97455 WHERE a=4308;\nUPDATE t2 SET b=17703 WHERE a=4309;\nUPDATE t2 SET b=52313 WHERE a=4310;\nUPDATE t2 SET b=77837 WHERE a=4311;\nUPDATE t2 SET b=68167 WHERE a=4312;\nUPDATE t2 SET b=34873 WHERE a=4313;\nUPDATE t2 SET b=2888 WHERE a=4314;\nUPDATE t2 SET b=77183 WHERE a=4315;\nUPDATE t2 SET b=17943 WHERE a=4316;\nUPDATE t2 SET b=99913 WHERE a=4317;\nUPDATE t2 SET b=49895 WHERE a=4318;\nUPDATE t2 SET b=48900 WHERE a=4319;\nUPDATE t2 SET b=14056 WHERE a=4320;\nUPDATE t2 SET b=99063 WHERE a=4321;\nUPDATE t2 SET b=98030 WHERE a=4322;\nUPDATE t2 SET b=60626 WHERE a=4323;\nUPDATE t2 SET b=16770 WHERE a=4324;\nUPDATE t2 SET b=21479 WHERE a=4325;\nUPDATE t2 SET b=30993 WHERE a=4326;\nUPDATE t2 SET b=88404 WHERE a=4327;\nUPDATE t2 SET b=19208 WHERE a=4328;\nUPDATE t2 SET b=78469 WHERE a=4329;\nUPDATE t2 SET b=69950 WHERE a=4330;\nUPDATE t2 SET b=17473 WHERE a=4331;\nUPDATE t2 SET b=69982 WHERE a=4332;\nUPDATE t2 SET b=97419 WHERE a=4333;\nUPDATE t2 SET b=53622 WHERE a=4334;\nUPDATE t2 SET b=2233 WHERE a=4335;\nUPDATE t2 SET b=6554 WHERE a=4336;\nUPDATE t2 SET b=62883 WHERE a=4337;\nUPDATE t2 SET b=25017 WHERE a=4338;\nUPDATE t2 SET b=14755 WHERE a=4339;\nUPDATE t2 SET b=96428 WHERE a=4340;\nUPDATE t2 SET b=50661 WHERE a=4341;\nUPDATE t2 SET b=58607 WHERE a=4342;\nUPDATE t2 SET b=64816 WHERE a=4343;\nUPDATE t2 SET b=38310 WHERE a=4344;\nUPDATE t2 SET b=76521 WHERE a=4345;\nUPDATE t2 SET b=91008 WHERE a=4346;\nUPDATE t2 SET b=11129 WHERE a=4347;\nUPDATE t2 SET b=51522 WHERE a=4348;\nUPDATE t2 SET b=57973 WHERE a=4349;\nUPDATE t2 SET b=28416 WHERE a=4350;\nUPDATE t2 SET b=29602 WHERE a=4351;\nUPDATE t2 SET b=51326 WHERE a=4352;\nUPDATE t2 SET b=32596 WHERE a=4353;\nUPDATE t2 SET b=68256 WHERE a=4354;\nUPDATE t2 SET b=81207 WHERE a=4355;\nUPDATE t2 SET b=56077 WHERE a=4356;\nUPDATE t2 SET b=63119 WHERE a=4357;\nUPDATE t2 SET b=73287 WHERE a=4358;\nUPDATE t2 SET b=47914 WHERE a=4359;\nUPDATE t2 SET b=40821 WHERE a=4360;\nUPDATE t2 SET b=28346 WHERE a=4361;\nUPDATE t2 SET b=67126 WHERE a=4362;\nUPDATE t2 SET b=96965 WHERE a=4363;\nUPDATE t2 SET b=6815 WHERE a=4364;\nUPDATE t2 SET b=97374 WHERE a=4365;\nUPDATE t2 SET b=49846 WHERE a=4366;\nUPDATE t2 SET b=97090 WHERE a=4367;\nUPDATE t2 SET b=19123 WHERE a=4368;\nUPDATE t2 SET b=23243 WHERE a=4369;\nUPDATE t2 SET b=32051 WHERE a=4370;\nUPDATE t2 SET b=42276 WHERE a=4371;\nUPDATE t2 SET b=5279 WHERE a=4372;\nUPDATE t2 SET b=32553 WHERE a=4373;\nUPDATE t2 SET b=66489 WHERE a=4374;\nUPDATE t2 SET b=36963 WHERE a=4375;\nUPDATE t2 SET b=27080 WHERE a=4376;\nUPDATE t2 SET b=58786 WHERE a=4377;\nUPDATE t2 SET b=20988 WHERE a=4378;\nUPDATE t2 SET b=7409 WHERE a=4379;\nUPDATE t2 SET b=66975 WHERE a=4380;\nUPDATE t2 SET b=69740 WHERE a=4381;\nUPDATE t2 SET b=26914 WHERE a=4382;\nUPDATE t2 SET b=8652 WHERE a=4383;\nUPDATE t2 SET b=97698 WHERE a=4384;\nUPDATE t2 SET b=68636 WHERE a=4385;\nUPDATE t2 SET b=6635 WHERE a=4386;\nUPDATE t2 SET b=13088 WHERE a=4387;\nUPDATE t2 SET b=39913 WHERE a=4388;\nUPDATE t2 SET b=81025 WHERE a=4389;\nUPDATE t2 SET b=54903 WHERE a=4390;\nUPDATE t2 SET b=97664 WHERE a=4391;\nUPDATE t2 SET b=8232 WHERE a=4392;\nUPDATE t2 SET b=89249 WHERE a=4393;\nUPDATE t2 SET b=97446 WHERE a=4394;\nUPDATE t2 SET b=17862 WHERE a=4395;\nUPDATE t2 SET b=98927 WHERE a=4396;\nUPDATE t2 SET b=94172 WHERE a=4397;\nUPDATE t2 SET b=73440 WHERE a=4398;\nUPDATE t2 SET b=21703 WHERE a=4399;\nUPDATE t2 SET b=11708 WHERE a=4400;\nUPDATE t2 SET b=87405 WHERE a=4401;\nUPDATE t2 SET b=95830 WHERE a=4402;\nUPDATE t2 SET b=79264 WHERE a=4403;\nUPDATE t2 SET b=59068 WHERE a=4404;\nUPDATE t2 SET b=72671 WHERE a=4405;\nUPDATE t2 SET b=92259 WHERE a=4406;\nUPDATE t2 SET b=90449 WHERE a=4407;\nUPDATE t2 SET b=85216 WHERE a=4408;\nUPDATE t2 SET b=73453 WHERE a=4409;\nUPDATE t2 SET b=80847 WHERE a=4410;\nUPDATE t2 SET b=34528 WHERE a=4411;\nUPDATE t2 SET b=65377 WHERE a=4412;\nUPDATE t2 SET b=86481 WHERE a=4413;\nUPDATE t2 SET b=74542 WHERE a=4414;\nUPDATE t2 SET b=83092 WHERE a=4415;\nUPDATE t2 SET b=39650 WHERE a=4416;\nUPDATE t2 SET b=31118 WHERE a=4417;\nUPDATE t2 SET b=36819 WHERE a=4418;\nUPDATE t2 SET b=17436 WHERE a=4419;\nUPDATE t2 SET b=28081 WHERE a=4420;\nUPDATE t2 SET b=96766 WHERE a=4421;\nUPDATE t2 SET b=70832 WHERE a=4422;\nUPDATE t2 SET b=92121 WHERE a=4423;\nUPDATE t2 SET b=37408 WHERE a=4424;\nUPDATE t2 SET b=70068 WHERE a=4425;\nUPDATE t2 SET b=53708 WHERE a=4426;\nUPDATE t2 SET b=82235 WHERE a=4427;\nUPDATE t2 SET b=15638 WHERE a=4428;\nUPDATE t2 SET b=46304 WHERE a=4429;\nUPDATE t2 SET b=85065 WHERE a=4430;\nUPDATE t2 SET b=29385 WHERE a=4431;\nUPDATE t2 SET b=69463 WHERE a=4432;\nUPDATE t2 SET b=65464 WHERE a=4433;\nUPDATE t2 SET b=48688 WHERE a=4434;\nUPDATE t2 SET b=91111 WHERE a=4435;\nUPDATE t2 SET b=2529 WHERE a=4436;\nUPDATE t2 SET b=49625 WHERE a=4437;\nUPDATE t2 SET b=14901 WHERE a=4438;\nUPDATE t2 SET b=67296 WHERE a=4439;\nUPDATE t2 SET b=33779 WHERE a=4440;\nUPDATE t2 SET b=12738 WHERE a=4441;\nUPDATE t2 SET b=40948 WHERE a=4442;\nUPDATE t2 SET b=85367 WHERE a=4443;\nUPDATE t2 SET b=98221 WHERE a=4444;\nUPDATE t2 SET b=44774 WHERE a=4445;\nUPDATE t2 SET b=44508 WHERE a=4446;\nUPDATE t2 SET b=35262 WHERE a=4447;\nUPDATE t2 SET b=45074 WHERE a=4448;\nUPDATE t2 SET b=53619 WHERE a=4449;\nUPDATE t2 SET b=42589 WHERE a=4450;\nUPDATE t2 SET b=83169 WHERE a=4451;\nUPDATE t2 SET b=56589 WHERE a=4452;\nUPDATE t2 SET b=27301 WHERE a=4453;\nUPDATE t2 SET b=66255 WHERE a=4454;\nUPDATE t2 SET b=85184 WHERE a=4455;\nUPDATE t2 SET b=31868 WHERE a=4456;\nUPDATE t2 SET b=29142 WHERE a=4457;\nUPDATE t2 SET b=3616 WHERE a=4458;\nUPDATE t2 SET b=31426 WHERE a=4459;\nUPDATE t2 SET b=82901 WHERE a=4460;\nUPDATE t2 SET b=81074 WHERE a=4461;\nUPDATE t2 SET b=17722 WHERE a=4462;\nUPDATE t2 SET b=27459 WHERE a=4463;\nUPDATE t2 SET b=11300 WHERE a=4464;\nUPDATE t2 SET b=33423 WHERE a=4465;\nUPDATE t2 SET b=56698 WHERE a=4466;\nUPDATE t2 SET b=56963 WHERE a=4467;\nUPDATE t2 SET b=55554 WHERE a=4468;\nUPDATE t2 SET b=13279 WHERE a=4469;\nUPDATE t2 SET b=85633 WHERE a=4470;\nUPDATE t2 SET b=21483 WHERE a=4471;\nUPDATE t2 SET b=647 WHERE a=4472;\nUPDATE t2 SET b=49807 WHERE a=4473;\nUPDATE t2 SET b=59619 WHERE a=4474;\nUPDATE t2 SET b=28163 WHERE a=4475;\nUPDATE t2 SET b=14408 WHERE a=4476;\nUPDATE t2 SET b=20460 WHERE a=4477;\nUPDATE t2 SET b=23159 WHERE a=4478;\nUPDATE t2 SET b=31228 WHERE a=4479;\nUPDATE t2 SET b=21679 WHERE a=4480;\nUPDATE t2 SET b=63670 WHERE a=4481;\nUPDATE t2 SET b=13505 WHERE a=4482;\nUPDATE t2 SET b=67946 WHERE a=4483;\nUPDATE t2 SET b=80772 WHERE a=4484;\nUPDATE t2 SET b=47670 WHERE a=4485;\nUPDATE t2 SET b=93005 WHERE a=4486;\nUPDATE t2 SET b=61174 WHERE a=4487;\nUPDATE t2 SET b=16210 WHERE a=4488;\nUPDATE t2 SET b=71338 WHERE a=4489;\nUPDATE t2 SET b=20934 WHERE a=4490;\nUPDATE t2 SET b=18792 WHERE a=4491;\nUPDATE t2 SET b=31423 WHERE a=4492;\nUPDATE t2 SET b=24297 WHERE a=4493;\nUPDATE t2 SET b=6098 WHERE a=4494;\nUPDATE t2 SET b=72341 WHERE a=4495;\nUPDATE t2 SET b=96181 WHERE a=4496;\nUPDATE t2 SET b=4173 WHERE a=4497;\nUPDATE t2 SET b=91014 WHERE a=4498;\nUPDATE t2 SET b=5064 WHERE a=4499;\nUPDATE t2 SET b=8710 WHERE a=4500;\nUPDATE t2 SET b=86004 WHERE a=4501;\nUPDATE t2 SET b=84512 WHERE a=4502;\nUPDATE t2 SET b=91383 WHERE a=4503;\nUPDATE t2 SET b=80523 WHERE a=4504;\nUPDATE t2 SET b=30135 WHERE a=4505;\nUPDATE t2 SET b=38877 WHERE a=4506;\nUPDATE t2 SET b=15285 WHERE a=4507;\nUPDATE t2 SET b=32985 WHERE a=4508;\nUPDATE t2 SET b=31491 WHERE a=4509;\nUPDATE t2 SET b=4309 WHERE a=4510;\nUPDATE t2 SET b=79800 WHERE a=4511;\nUPDATE t2 SET b=86651 WHERE a=4512;\nUPDATE t2 SET b=45865 WHERE a=4513;\nUPDATE t2 SET b=88679 WHERE a=4514;\nUPDATE t2 SET b=97173 WHERE a=4515;\nUPDATE t2 SET b=56314 WHERE a=4516;\nUPDATE t2 SET b=20144 WHERE a=4517;\nUPDATE t2 SET b=51157 WHERE a=4518;\nUPDATE t2 SET b=670 WHERE a=4519;\nUPDATE t2 SET b=74663 WHERE a=4520;\nUPDATE t2 SET b=29283 WHERE a=4521;\nUPDATE t2 SET b=86099 WHERE a=4522;\nUPDATE t2 SET b=15283 WHERE a=4523;\nUPDATE t2 SET b=9331 WHERE a=4524;\nUPDATE t2 SET b=97626 WHERE a=4525;\nUPDATE t2 SET b=36460 WHERE a=4526;\nUPDATE t2 SET b=91232 WHERE a=4527;\nUPDATE t2 SET b=19368 WHERE a=4528;\nUPDATE t2 SET b=14129 WHERE a=4529;\nUPDATE t2 SET b=53306 WHERE a=4530;\nUPDATE t2 SET b=57019 WHERE a=4531;\nUPDATE t2 SET b=11503 WHERE a=4532;\nUPDATE t2 SET b=55901 WHERE a=4533;\nUPDATE t2 SET b=2099 WHERE a=4534;\nUPDATE t2 SET b=27976 WHERE a=4535;\nUPDATE t2 SET b=27261 WHERE a=4536;\nUPDATE t2 SET b=55897 WHERE a=4537;\nUPDATE t2 SET b=56584 WHERE a=4538;\nUPDATE t2 SET b=87484 WHERE a=4539;\nUPDATE t2 SET b=28022 WHERE a=4540;\nUPDATE t2 SET b=48192 WHERE a=4541;\nUPDATE t2 SET b=89491 WHERE a=4542;\nUPDATE t2 SET b=3036 WHERE a=4543;\nUPDATE t2 SET b=22499 WHERE a=4544;\nUPDATE t2 SET b=76414 WHERE a=4545;\nUPDATE t2 SET b=1771 WHERE a=4546;\nUPDATE t2 SET b=22441 WHERE a=4547;\nUPDATE t2 SET b=31107 WHERE a=4548;\nUPDATE t2 SET b=32680 WHERE a=4549;\nUPDATE t2 SET b=21384 WHERE a=4550;\nUPDATE t2 SET b=8683 WHERE a=4551;\nUPDATE t2 SET b=32462 WHERE a=4552;\nUPDATE t2 SET b=52576 WHERE a=4553;\nUPDATE t2 SET b=38970 WHERE a=4554;\nUPDATE t2 SET b=30612 WHERE a=4555;\nUPDATE t2 SET b=22172 WHERE a=4556;\nUPDATE t2 SET b=51015 WHERE a=4557;\nUPDATE t2 SET b=35838 WHERE a=4558;\nUPDATE t2 SET b=37031 WHERE a=4559;\nUPDATE t2 SET b=38532 WHERE a=4560;\nUPDATE t2 SET b=2678 WHERE a=4561;\nUPDATE t2 SET b=80301 WHERE a=4562;\nUPDATE t2 SET b=13121 WHERE a=4563;\nUPDATE t2 SET b=84352 WHERE a=4564;\nUPDATE t2 SET b=23178 WHERE a=4565;\nUPDATE t2 SET b=70228 WHERE a=4566;\nUPDATE t2 SET b=97732 WHERE a=4567;\nUPDATE t2 SET b=81667 WHERE a=4568;\nUPDATE t2 SET b=89137 WHERE a=4569;\nUPDATE t2 SET b=73111 WHERE a=4570;\nUPDATE t2 SET b=91427 WHERE a=4571;\nUPDATE t2 SET b=28684 WHERE a=4572;\nUPDATE t2 SET b=40202 WHERE a=4573;\nUPDATE t2 SET b=93795 WHERE a=4574;\nUPDATE t2 SET b=79201 WHERE a=4575;\nUPDATE t2 SET b=42971 WHERE a=4576;\nUPDATE t2 SET b=66265 WHERE a=4577;\nUPDATE t2 SET b=26691 WHERE a=4578;\nUPDATE t2 SET b=91417 WHERE a=4579;\nUPDATE t2 SET b=47388 WHERE a=4580;\nUPDATE t2 SET b=53155 WHERE a=4581;\nUPDATE t2 SET b=51999 WHERE a=4582;\nUPDATE t2 SET b=24092 WHERE a=4583;\nUPDATE t2 SET b=50676 WHERE a=4584;\nUPDATE t2 SET b=44180 WHERE a=4585;\nUPDATE t2 SET b=93709 WHERE a=4586;\nUPDATE t2 SET b=26912 WHERE a=4587;\nUPDATE t2 SET b=1248 WHERE a=4588;\nUPDATE t2 SET b=98065 WHERE a=4589;\nUPDATE t2 SET b=41575 WHERE a=4590;\nUPDATE t2 SET b=92246 WHERE a=4591;\nUPDATE t2 SET b=29740 WHERE a=4592;\nUPDATE t2 SET b=17941 WHERE a=4593;\nUPDATE t2 SET b=48064 WHERE a=4594;\nUPDATE t2 SET b=90084 WHERE a=4595;\nUPDATE t2 SET b=15577 WHERE a=4596;\nUPDATE t2 SET b=30701 WHERE a=4597;\nUPDATE t2 SET b=46256 WHERE a=4598;\nUPDATE t2 SET b=94457 WHERE a=4599;\nUPDATE t2 SET b=81948 WHERE a=4600;\nUPDATE t2 SET b=93660 WHERE a=4601;\nUPDATE t2 SET b=41590 WHERE a=4602;\nUPDATE t2 SET b=63541 WHERE a=4603;\nUPDATE t2 SET b=99775 WHERE a=4604;\nUPDATE t2 SET b=66430 WHERE a=4605;\nUPDATE t2 SET b=91522 WHERE a=4606;\nUPDATE t2 SET b=12738 WHERE a=4607;\nUPDATE t2 SET b=4123 WHERE a=4608;\nUPDATE t2 SET b=89976 WHERE a=4609;\nUPDATE t2 SET b=80750 WHERE a=4610;\nUPDATE t2 SET b=58816 WHERE a=4611;\nUPDATE t2 SET b=2536 WHERE a=4612;\nUPDATE t2 SET b=23890 WHERE a=4613;\nUPDATE t2 SET b=3526 WHERE a=4614;\nUPDATE t2 SET b=20109 WHERE a=4615;\nUPDATE t2 SET b=3835 WHERE a=4616;\nUPDATE t2 SET b=98853 WHERE a=4617;\nUPDATE t2 SET b=80533 WHERE a=4618;\nUPDATE t2 SET b=2175 WHERE a=4619;\nUPDATE t2 SET b=15700 WHERE a=4620;\nUPDATE t2 SET b=57804 WHERE a=4621;\nUPDATE t2 SET b=99193 WHERE a=4622;\nUPDATE t2 SET b=95160 WHERE a=4623;\nUPDATE t2 SET b=27233 WHERE a=4624;\nUPDATE t2 SET b=1066 WHERE a=4625;\nUPDATE t2 SET b=82562 WHERE a=4626;\nUPDATE t2 SET b=78645 WHERE a=4627;\nUPDATE t2 SET b=76544 WHERE a=4628;\nUPDATE t2 SET b=92788 WHERE a=4629;\nUPDATE t2 SET b=7590 WHERE a=4630;\nUPDATE t2 SET b=1115 WHERE a=4631;\nUPDATE t2 SET b=90911 WHERE a=4632;\nUPDATE t2 SET b=62448 WHERE a=4633;\nUPDATE t2 SET b=79219 WHERE a=4634;\nUPDATE t2 SET b=86532 WHERE a=4635;\nUPDATE t2 SET b=16461 WHERE a=4636;\nUPDATE t2 SET b=90579 WHERE a=4637;\nUPDATE t2 SET b=42004 WHERE a=4638;\nUPDATE t2 SET b=94159 WHERE a=4639;\nUPDATE t2 SET b=9315 WHERE a=4640;\nUPDATE t2 SET b=39902 WHERE a=4641;\nUPDATE t2 SET b=45212 WHERE a=4642;\nUPDATE t2 SET b=58510 WHERE a=4643;\nUPDATE t2 SET b=19514 WHERE a=4644;\nUPDATE t2 SET b=77993 WHERE a=4645;\nUPDATE t2 SET b=94695 WHERE a=4646;\nUPDATE t2 SET b=14301 WHERE a=4647;\nUPDATE t2 SET b=94888 WHERE a=4648;\nUPDATE t2 SET b=22071 WHERE a=4649;\nUPDATE t2 SET b=38512 WHERE a=4650;\nUPDATE t2 SET b=15557 WHERE a=4651;\nUPDATE t2 SET b=7914 WHERE a=4652;\nUPDATE t2 SET b=68816 WHERE a=4653;\nUPDATE t2 SET b=75693 WHERE a=4654;\nUPDATE t2 SET b=61514 WHERE a=4655;\nUPDATE t2 SET b=33113 WHERE a=4656;\nUPDATE t2 SET b=93336 WHERE a=4657;\nUPDATE t2 SET b=76428 WHERE a=4658;\nUPDATE t2 SET b=43170 WHERE a=4659;\nUPDATE t2 SET b=88312 WHERE a=4660;\nUPDATE t2 SET b=98956 WHERE a=4661;\nUPDATE t2 SET b=95998 WHERE a=4662;\nUPDATE t2 SET b=23465 WHERE a=4663;\nUPDATE t2 SET b=36648 WHERE a=4664;\nUPDATE t2 SET b=95692 WHERE a=4665;\nUPDATE t2 SET b=23428 WHERE a=4666;\nUPDATE t2 SET b=77554 WHERE a=4667;\nUPDATE t2 SET b=71498 WHERE a=4668;\nUPDATE t2 SET b=59938 WHERE a=4669;\nUPDATE t2 SET b=85003 WHERE a=4670;\nUPDATE t2 SET b=77394 WHERE a=4671;\nUPDATE t2 SET b=84855 WHERE a=4672;\nUPDATE t2 SET b=87901 WHERE a=4673;\nUPDATE t2 SET b=9970 WHERE a=4674;\nUPDATE t2 SET b=72857 WHERE a=4675;\nUPDATE t2 SET b=19329 WHERE a=4676;\nUPDATE t2 SET b=76341 WHERE a=4677;\nUPDATE t2 SET b=82218 WHERE a=4678;\nUPDATE t2 SET b=95386 WHERE a=4679;\nUPDATE t2 SET b=10283 WHERE a=4680;\nUPDATE t2 SET b=91338 WHERE a=4681;\nUPDATE t2 SET b=63511 WHERE a=4682;\nUPDATE t2 SET b=99623 WHERE a=4683;\nUPDATE t2 SET b=56210 WHERE a=4684;\nUPDATE t2 SET b=38363 WHERE a=4685;\nUPDATE t2 SET b=94284 WHERE a=4686;\nUPDATE t2 SET b=85406 WHERE a=4687;\nUPDATE t2 SET b=57664 WHERE a=4688;\nUPDATE t2 SET b=88779 WHERE a=4689;\nUPDATE t2 SET b=92941 WHERE a=4690;\nUPDATE t2 SET b=93496 WHERE a=4691;\nUPDATE t2 SET b=2712 WHERE a=4692;\nUPDATE t2 SET b=94977 WHERE a=4693;\nUPDATE t2 SET b=4474 WHERE a=4694;\nUPDATE t2 SET b=33166 WHERE a=4695;\nUPDATE t2 SET b=79988 WHERE a=4696;\nUPDATE t2 SET b=72179 WHERE a=4697;\nUPDATE t2 SET b=93894 WHERE a=4698;\nUPDATE t2 SET b=96200 WHERE a=4699;\nUPDATE t2 SET b=3167 WHERE a=4700;\nUPDATE t2 SET b=73895 WHERE a=4701;\nUPDATE t2 SET b=92089 WHERE a=4702;\nUPDATE t2 SET b=67719 WHERE a=4703;\nUPDATE t2 SET b=3719 WHERE a=4704;\nUPDATE t2 SET b=50167 WHERE a=4705;\nUPDATE t2 SET b=11904 WHERE a=4706;\nUPDATE t2 SET b=8089 WHERE a=4707;\nUPDATE t2 SET b=7230 WHERE a=4708;\nUPDATE t2 SET b=1152 WHERE a=4709;\nUPDATE t2 SET b=99446 WHERE a=4710;\nUPDATE t2 SET b=77752 WHERE a=4711;\nUPDATE t2 SET b=35100 WHERE a=4712;\nUPDATE t2 SET b=66324 WHERE a=4713;\nUPDATE t2 SET b=92369 WHERE a=4714;\nUPDATE t2 SET b=94759 WHERE a=4715;\nUPDATE t2 SET b=97914 WHERE a=4716;\nUPDATE t2 SET b=85324 WHERE a=4717;\nUPDATE t2 SET b=31630 WHERE a=4718;\nUPDATE t2 SET b=12231 WHERE a=4719;\nUPDATE t2 SET b=73128 WHERE a=4720;\nUPDATE t2 SET b=2349 WHERE a=4721;\nUPDATE t2 SET b=8653 WHERE a=4722;\nUPDATE t2 SET b=64548 WHERE a=4723;\nUPDATE t2 SET b=46409 WHERE a=4724;\nUPDATE t2 SET b=22686 WHERE a=4725;\nUPDATE t2 SET b=87664 WHERE a=4726;\nUPDATE t2 SET b=63465 WHERE a=4727;\nUPDATE t2 SET b=67853 WHERE a=4728;\nUPDATE t2 SET b=97855 WHERE a=4729;\nUPDATE t2 SET b=43555 WHERE a=4730;\nUPDATE t2 SET b=55048 WHERE a=4731;\nUPDATE t2 SET b=21679 WHERE a=4732;\nUPDATE t2 SET b=32904 WHERE a=4733;\nUPDATE t2 SET b=8433 WHERE a=4734;\nUPDATE t2 SET b=29156 WHERE a=4735;\nUPDATE t2 SET b=47718 WHERE a=4736;\nUPDATE t2 SET b=53632 WHERE a=4737;\nUPDATE t2 SET b=54385 WHERE a=4738;\nUPDATE t2 SET b=295 WHERE a=4739;\nUPDATE t2 SET b=50617 WHERE a=4740;\nUPDATE t2 SET b=67084 WHERE a=4741;\nUPDATE t2 SET b=63010 WHERE a=4742;\nUPDATE t2 SET b=79089 WHERE a=4743;\nUPDATE t2 SET b=45216 WHERE a=4744;\nUPDATE t2 SET b=15864 WHERE a=4745;\nUPDATE t2 SET b=40051 WHERE a=4746;\nUPDATE t2 SET b=20126 WHERE a=4747;\nUPDATE t2 SET b=91092 WHERE a=4748;\nUPDATE t2 SET b=22392 WHERE a=4749;\nUPDATE t2 SET b=25380 WHERE a=4750;\nUPDATE t2 SET b=66844 WHERE a=4751;\nUPDATE t2 SET b=45143 WHERE a=4752;\nUPDATE t2 SET b=35455 WHERE a=4753;\nUPDATE t2 SET b=43687 WHERE a=4754;\nUPDATE t2 SET b=79594 WHERE a=4755;\nUPDATE t2 SET b=37978 WHERE a=4756;\nUPDATE t2 SET b=68812 WHERE a=4757;\nUPDATE t2 SET b=86226 WHERE a=4758;\nUPDATE t2 SET b=90555 WHERE a=4759;\nUPDATE t2 SET b=62433 WHERE a=4760;\nUPDATE t2 SET b=49356 WHERE a=4761;\nUPDATE t2 SET b=9397 WHERE a=4762;\nUPDATE t2 SET b=1652 WHERE a=4763;\nUPDATE t2 SET b=14174 WHERE a=4764;\nUPDATE t2 SET b=56936 WHERE a=4765;\nUPDATE t2 SET b=98659 WHERE a=4766;\nUPDATE t2 SET b=8100 WHERE a=4767;\nUPDATE t2 SET b=87777 WHERE a=4768;\nUPDATE t2 SET b=78187 WHERE a=4769;\nUPDATE t2 SET b=88844 WHERE a=4770;\nUPDATE t2 SET b=9276 WHERE a=4771;\nUPDATE t2 SET b=40236 WHERE a=4772;\nUPDATE t2 SET b=64424 WHERE a=4773;\nUPDATE t2 SET b=60657 WHERE a=4774;\nUPDATE t2 SET b=11758 WHERE a=4775;\nUPDATE t2 SET b=24701 WHERE a=4776;\nUPDATE t2 SET b=54816 WHERE a=4777;\nUPDATE t2 SET b=72769 WHERE a=4778;\nUPDATE t2 SET b=85302 WHERE a=4779;\nUPDATE t2 SET b=52819 WHERE a=4780;\nUPDATE t2 SET b=51867 WHERE a=4781;\nUPDATE t2 SET b=42317 WHERE a=4782;\nUPDATE t2 SET b=33582 WHERE a=4783;\nUPDATE t2 SET b=54191 WHERE a=4784;\nUPDATE t2 SET b=87104 WHERE a=4785;\nUPDATE t2 SET b=76729 WHERE a=4786;\nUPDATE t2 SET b=10804 WHERE a=4787;\nUPDATE t2 SET b=75548 WHERE a=4788;\nUPDATE t2 SET b=19189 WHERE a=4789;\nUPDATE t2 SET b=61107 WHERE a=4790;\nUPDATE t2 SET b=55198 WHERE a=4791;\nUPDATE t2 SET b=81839 WHERE a=4792;\nUPDATE t2 SET b=81254 WHERE a=4793;\nUPDATE t2 SET b=52546 WHERE a=4794;\nUPDATE t2 SET b=91428 WHERE a=4795;\nUPDATE t2 SET b=33574 WHERE a=4796;\nUPDATE t2 SET b=59071 WHERE a=4797;\nUPDATE t2 SET b=47313 WHERE a=4798;\nUPDATE t2 SET b=15644 WHERE a=4799;\nUPDATE t2 SET b=40805 WHERE a=4800;\nUPDATE t2 SET b=52029 WHERE a=4801;\nUPDATE t2 SET b=49052 WHERE a=4802;\nUPDATE t2 SET b=50935 WHERE a=4803;\nUPDATE t2 SET b=36843 WHERE a=4804;\nUPDATE t2 SET b=57401 WHERE a=4805;\nUPDATE t2 SET b=70128 WHERE a=4806;\nUPDATE t2 SET b=95905 WHERE a=4807;\nUPDATE t2 SET b=42884 WHERE a=4808;\nUPDATE t2 SET b=21957 WHERE a=4809;\nUPDATE t2 SET b=4124 WHERE a=4810;\nUPDATE t2 SET b=57076 WHERE a=4811;\nUPDATE t2 SET b=27014 WHERE a=4812;\nUPDATE t2 SET b=12550 WHERE a=4813;\nUPDATE t2 SET b=11984 WHERE a=4814;\nUPDATE t2 SET b=8371 WHERE a=4815;\nUPDATE t2 SET b=27287 WHERE a=4816;\nUPDATE t2 SET b=31629 WHERE a=4817;\nUPDATE t2 SET b=97743 WHERE a=4818;\nUPDATE t2 SET b=53655 WHERE a=4819;\nUPDATE t2 SET b=44218 WHERE a=4820;\nUPDATE t2 SET b=15554 WHERE a=4821;\nUPDATE t2 SET b=23786 WHERE a=4822;\nUPDATE t2 SET b=43885 WHERE a=4823;\nUPDATE t2 SET b=51766 WHERE a=4824;\nUPDATE t2 SET b=60268 WHERE a=4825;\nUPDATE t2 SET b=16791 WHERE a=4826;\nUPDATE t2 SET b=99592 WHERE a=4827;\nUPDATE t2 SET b=3953 WHERE a=4828;\nUPDATE t2 SET b=72121 WHERE a=4829;\nUPDATE t2 SET b=2295 WHERE a=4830;\nUPDATE t2 SET b=25012 WHERE a=4831;\nUPDATE t2 SET b=41329 WHERE a=4832;\nUPDATE t2 SET b=79872 WHERE a=4833;\nUPDATE t2 SET b=69443 WHERE a=4834;\nUPDATE t2 SET b=96777 WHERE a=4835;\nUPDATE t2 SET b=16836 WHERE a=4836;\nUPDATE t2 SET b=20294 WHERE a=4837;\nUPDATE t2 SET b=28443 WHERE a=4838;\nUPDATE t2 SET b=34405 WHERE a=4839;\nUPDATE t2 SET b=34846 WHERE a=4840;\nUPDATE t2 SET b=28199 WHERE a=4841;\nUPDATE t2 SET b=56788 WHERE a=4842;\nUPDATE t2 SET b=47846 WHERE a=4843;\nUPDATE t2 SET b=96351 WHERE a=4844;\nUPDATE t2 SET b=32727 WHERE a=4845;\nUPDATE t2 SET b=79867 WHERE a=4846;\nUPDATE t2 SET b=85247 WHERE a=4847;\nUPDATE t2 SET b=7135 WHERE a=4848;\nUPDATE t2 SET b=37387 WHERE a=4849;\nUPDATE t2 SET b=49526 WHERE a=4850;\nUPDATE t2 SET b=84675 WHERE a=4851;\nUPDATE t2 SET b=23698 WHERE a=4852;\nUPDATE t2 SET b=16589 WHERE a=4853;\nUPDATE t2 SET b=51270 WHERE a=4854;\nUPDATE t2 SET b=45273 WHERE a=4855;\nUPDATE t2 SET b=13909 WHERE a=4856;\nUPDATE t2 SET b=78713 WHERE a=4857;\nUPDATE t2 SET b=15552 WHERE a=4858;\nUPDATE t2 SET b=52339 WHERE a=4859;\nUPDATE t2 SET b=53470 WHERE a=4860;\nUPDATE t2 SET b=3807 WHERE a=4861;\nUPDATE t2 SET b=11373 WHERE a=4862;\nUPDATE t2 SET b=98962 WHERE a=4863;\nUPDATE t2 SET b=11390 WHERE a=4864;\nUPDATE t2 SET b=83475 WHERE a=4865;\nUPDATE t2 SET b=75309 WHERE a=4866;\nUPDATE t2 SET b=8820 WHERE a=4867;\nUPDATE t2 SET b=17729 WHERE a=4868;\nUPDATE t2 SET b=74187 WHERE a=4869;\nUPDATE t2 SET b=16657 WHERE a=4870;\nUPDATE t2 SET b=47984 WHERE a=4871;\nUPDATE t2 SET b=60926 WHERE a=4872;\nUPDATE t2 SET b=84774 WHERE a=4873;\nUPDATE t2 SET b=17744 WHERE a=4874;\nUPDATE t2 SET b=91576 WHERE a=4875;\nUPDATE t2 SET b=99317 WHERE a=4876;\nUPDATE t2 SET b=1988 WHERE a=4877;\nUPDATE t2 SET b=19702 WHERE a=4878;\nUPDATE t2 SET b=48481 WHERE a=4879;\nUPDATE t2 SET b=81794 WHERE a=4880;\nUPDATE t2 SET b=77376 WHERE a=4881;\nUPDATE t2 SET b=82353 WHERE a=4882;\nUPDATE t2 SET b=2966 WHERE a=4883;\nUPDATE t2 SET b=37564 WHERE a=4884;\nUPDATE t2 SET b=24446 WHERE a=4885;\nUPDATE t2 SET b=96863 WHERE a=4886;\nUPDATE t2 SET b=59073 WHERE a=4887;\nUPDATE t2 SET b=18174 WHERE a=4888;\nUPDATE t2 SET b=18655 WHERE a=4889;\nUPDATE t2 SET b=92766 WHERE a=4890;\nUPDATE t2 SET b=75507 WHERE a=4891;\nUPDATE t2 SET b=60629 WHERE a=4892;\nUPDATE t2 SET b=83029 WHERE a=4893;\nUPDATE t2 SET b=83210 WHERE a=4894;\nUPDATE t2 SET b=33416 WHERE a=4895;\nUPDATE t2 SET b=96472 WHERE a=4896;\nUPDATE t2 SET b=18183 WHERE a=4897;\nUPDATE t2 SET b=41350 WHERE a=4898;\nUPDATE t2 SET b=587 WHERE a=4899;\nUPDATE t2 SET b=65961 WHERE a=4900;\nUPDATE t2 SET b=20601 WHERE a=4901;\nUPDATE t2 SET b=37344 WHERE a=4902;\nUPDATE t2 SET b=14702 WHERE a=4903;\nUPDATE t2 SET b=70297 WHERE a=4904;\nUPDATE t2 SET b=28005 WHERE a=4905;\nUPDATE t2 SET b=73633 WHERE a=4906;\nUPDATE t2 SET b=96826 WHERE a=4907;\nUPDATE t2 SET b=74835 WHERE a=4908;\nUPDATE t2 SET b=59202 WHERE a=4909;\nUPDATE t2 SET b=72113 WHERE a=4910;\nUPDATE t2 SET b=94937 WHERE a=4911;\nUPDATE t2 SET b=46741 WHERE a=4912;\nUPDATE t2 SET b=11544 WHERE a=4913;\nUPDATE t2 SET b=19135 WHERE a=4914;\nUPDATE t2 SET b=97493 WHERE a=4915;\nUPDATE t2 SET b=58598 WHERE a=4916;\nUPDATE t2 SET b=90347 WHERE a=4917;\nUPDATE t2 SET b=61052 WHERE a=4918;\nUPDATE t2 SET b=25192 WHERE a=4919;\nUPDATE t2 SET b=55254 WHERE a=4920;\nUPDATE t2 SET b=70919 WHERE a=4921;\nUPDATE t2 SET b=65699 WHERE a=4922;\nUPDATE t2 SET b=30013 WHERE a=4923;\nUPDATE t2 SET b=46484 WHERE a=4924;\nUPDATE t2 SET b=58979 WHERE a=4925;\nUPDATE t2 SET b=86335 WHERE a=4926;\nUPDATE t2 SET b=22839 WHERE a=4927;\nUPDATE t2 SET b=81616 WHERE a=4928;\nUPDATE t2 SET b=53423 WHERE a=4929;\nUPDATE t2 SET b=20402 WHERE a=4930;\nUPDATE t2 SET b=27791 WHERE a=4931;\nUPDATE t2 SET b=44321 WHERE a=4932;\nUPDATE t2 SET b=69097 WHERE a=4933;\nUPDATE t2 SET b=21124 WHERE a=4934;\nUPDATE t2 SET b=30633 WHERE a=4935;\nUPDATE t2 SET b=73736 WHERE a=4936;\nUPDATE t2 SET b=2723 WHERE a=4937;\nUPDATE t2 SET b=28673 WHERE a=4938;\nUPDATE t2 SET b=75227 WHERE a=4939;\nUPDATE t2 SET b=52086 WHERE a=4940;\nUPDATE t2 SET b=21822 WHERE a=4941;\nUPDATE t2 SET b=28309 WHERE a=4942;\nUPDATE t2 SET b=41740 WHERE a=4943;\nUPDATE t2 SET b=63965 WHERE a=4944;\nUPDATE t2 SET b=76552 WHERE a=4945;\nUPDATE t2 SET b=19187 WHERE a=4946;\nUPDATE t2 SET b=84148 WHERE a=4947;\nUPDATE t2 SET b=46556 WHERE a=4948;\nUPDATE t2 SET b=9990 WHERE a=4949;\nUPDATE t2 SET b=26424 WHERE a=4950;\nUPDATE t2 SET b=20277 WHERE a=4951;\nUPDATE t2 SET b=90304 WHERE a=4952;\nUPDATE t2 SET b=78813 WHERE a=4953;\nUPDATE t2 SET b=41017 WHERE a=4954;\nUPDATE t2 SET b=38879 WHERE a=4955;\nUPDATE t2 SET b=18997 WHERE a=4956;\nUPDATE t2 SET b=78506 WHERE a=4957;\nUPDATE t2 SET b=15049 WHERE a=4958;\nUPDATE t2 SET b=80989 WHERE a=4959;\nUPDATE t2 SET b=54887 WHERE a=4960;\nUPDATE t2 SET b=98406 WHERE a=4961;\nUPDATE t2 SET b=10777 WHERE a=4962;\nUPDATE t2 SET b=70548 WHERE a=4963;\nUPDATE t2 SET b=75341 WHERE a=4964;\nUPDATE t2 SET b=92936 WHERE a=4965;\nUPDATE t2 SET b=56489 WHERE a=4966;\nUPDATE t2 SET b=44376 WHERE a=4967;\nUPDATE t2 SET b=74966 WHERE a=4968;\nUPDATE t2 SET b=65774 WHERE a=4969;\nUPDATE t2 SET b=54681 WHERE a=4970;\nUPDATE t2 SET b=59028 WHERE a=4971;\nUPDATE t2 SET b=94430 WHERE a=4972;\nUPDATE t2 SET b=4751 WHERE a=4973;\nUPDATE t2 SET b=91973 WHERE a=4974;\nUPDATE t2 SET b=25443 WHERE a=4975;\nUPDATE t2 SET b=54266 WHERE a=4976;\nUPDATE t2 SET b=26737 WHERE a=4977;\nUPDATE t2 SET b=29163 WHERE a=4978;\nUPDATE t2 SET b=86004 WHERE a=4979;\nUPDATE t2 SET b=7129 WHERE a=4980;\nUPDATE t2 SET b=56063 WHERE a=4981;\nUPDATE t2 SET b=95301 WHERE a=4982;\nUPDATE t2 SET b=12717 WHERE a=4983;\nUPDATE t2 SET b=19377 WHERE a=4984;\nUPDATE t2 SET b=20622 WHERE a=4985;\nUPDATE t2 SET b=41126 WHERE a=4986;\nUPDATE t2 SET b=8994 WHERE a=4987;\nUPDATE t2 SET b=16290 WHERE a=4988;\nUPDATE t2 SET b=56873 WHERE a=4989;\nUPDATE t2 SET b=26124 WHERE a=4990;\nUPDATE t2 SET b=61311 WHERE a=4991;\nUPDATE t2 SET b=8432 WHERE a=4992;\nUPDATE t2 SET b=32958 WHERE a=4993;\nUPDATE t2 SET b=93549 WHERE a=4994;\nUPDATE t2 SET b=88900 WHERE a=4995;\nUPDATE t2 SET b=39857 WHERE a=4996;\nUPDATE t2 SET b=86239 WHERE a=4997;\nUPDATE t2 SET b=8619 WHERE a=4998;\nUPDATE t2 SET b=55492 WHERE a=4999;\nUPDATE t2 SET b=57990 WHERE a=5000;\nUPDATE t2 SET b=25619 WHERE a=5001;\nUPDATE t2 SET b=25022 WHERE a=5002;\nUPDATE t2 SET b=57376 WHERE a=5003;\nUPDATE t2 SET b=54472 WHERE a=5004;\nUPDATE t2 SET b=34405 WHERE a=5005;\nUPDATE t2 SET b=13789 WHERE a=5006;\nUPDATE t2 SET b=99855 WHERE a=5007;\nUPDATE t2 SET b=10602 WHERE a=5008;\nUPDATE t2 SET b=87857 WHERE a=5009;\nUPDATE t2 SET b=78527 WHERE a=5010;\nUPDATE t2 SET b=72815 WHERE a=5011;\nUPDATE t2 SET b=17843 WHERE a=5012;\nUPDATE t2 SET b=83820 WHERE a=5013;\nUPDATE t2 SET b=81568 WHERE a=5014;\nUPDATE t2 SET b=98705 WHERE a=5015;\nUPDATE t2 SET b=5444 WHERE a=5016;\nUPDATE t2 SET b=20816 WHERE a=5017;\nUPDATE t2 SET b=73902 WHERE a=5018;\nUPDATE t2 SET b=19182 WHERE a=5019;\nUPDATE t2 SET b=35941 WHERE a=5020;\nUPDATE t2 SET b=91336 WHERE a=5021;\nUPDATE t2 SET b=52713 WHERE a=5022;\nUPDATE t2 SET b=30661 WHERE a=5023;\nUPDATE t2 SET b=9194 WHERE a=5024;\nUPDATE t2 SET b=85384 WHERE a=5025;\nUPDATE t2 SET b=46210 WHERE a=5026;\nUPDATE t2 SET b=62577 WHERE a=5027;\nUPDATE t2 SET b=86329 WHERE a=5028;\nUPDATE t2 SET b=59558 WHERE a=5029;\nUPDATE t2 SET b=48356 WHERE a=5030;\nUPDATE t2 SET b=88502 WHERE a=5031;\nUPDATE t2 SET b=14425 WHERE a=5032;\nUPDATE t2 SET b=41399 WHERE a=5033;\nUPDATE t2 SET b=87182 WHERE a=5034;\nUPDATE t2 SET b=76092 WHERE a=5035;\nUPDATE t2 SET b=26377 WHERE a=5036;\nUPDATE t2 SET b=95600 WHERE a=5037;\nUPDATE t2 SET b=87470 WHERE a=5038;\nUPDATE t2 SET b=61087 WHERE a=5039;\nUPDATE t2 SET b=35259 WHERE a=5040;\nUPDATE t2 SET b=39942 WHERE a=5041;\nUPDATE t2 SET b=5102 WHERE a=5042;\nUPDATE t2 SET b=77843 WHERE a=5043;\nUPDATE t2 SET b=9192 WHERE a=5044;\nUPDATE t2 SET b=85718 WHERE a=5045;\nUPDATE t2 SET b=86413 WHERE a=5046;\nUPDATE t2 SET b=36616 WHERE a=5047;\nUPDATE t2 SET b=21581 WHERE a=5048;\nUPDATE t2 SET b=7808 WHERE a=5049;\nUPDATE t2 SET b=20617 WHERE a=5050;\nUPDATE t2 SET b=8253 WHERE a=5051;\nUPDATE t2 SET b=59989 WHERE a=5052;\nUPDATE t2 SET b=6316 WHERE a=5053;\nUPDATE t2 SET b=69699 WHERE a=5054;\nUPDATE t2 SET b=89858 WHERE a=5055;\nUPDATE t2 SET b=11136 WHERE a=5056;\nUPDATE t2 SET b=48839 WHERE a=5057;\nUPDATE t2 SET b=1640 WHERE a=5058;\nUPDATE t2 SET b=58332 WHERE a=5059;\nUPDATE t2 SET b=55753 WHERE a=5060;\nUPDATE t2 SET b=79616 WHERE a=5061;\nUPDATE t2 SET b=19705 WHERE a=5062;\nUPDATE t2 SET b=77312 WHERE a=5063;\nUPDATE t2 SET b=5141 WHERE a=5064;\nUPDATE t2 SET b=98667 WHERE a=5065;\nUPDATE t2 SET b=28122 WHERE a=5066;\nUPDATE t2 SET b=37955 WHERE a=5067;\nUPDATE t2 SET b=70960 WHERE a=5068;\nUPDATE t2 SET b=72626 WHERE a=5069;\nUPDATE t2 SET b=36916 WHERE a=5070;\nUPDATE t2 SET b=20821 WHERE a=5071;\nUPDATE t2 SET b=77772 WHERE a=5072;\nUPDATE t2 SET b=99443 WHERE a=5073;\nUPDATE t2 SET b=84513 WHERE a=5074;\nUPDATE t2 SET b=79673 WHERE a=5075;\nUPDATE t2 SET b=76516 WHERE a=5076;\nUPDATE t2 SET b=87800 WHERE a=5077;\nUPDATE t2 SET b=39367 WHERE a=5078;\nUPDATE t2 SET b=58530 WHERE a=5079;\nUPDATE t2 SET b=94022 WHERE a=5080;\nUPDATE t2 SET b=7694 WHERE a=5081;\nUPDATE t2 SET b=71921 WHERE a=5082;\nUPDATE t2 SET b=77566 WHERE a=5083;\nUPDATE t2 SET b=21777 WHERE a=5084;\nUPDATE t2 SET b=17542 WHERE a=5085;\nUPDATE t2 SET b=74204 WHERE a=5086;\nUPDATE t2 SET b=76369 WHERE a=5087;\nUPDATE t2 SET b=81555 WHERE a=5088;\nUPDATE t2 SET b=77620 WHERE a=5089;\nUPDATE t2 SET b=59110 WHERE a=5090;\nUPDATE t2 SET b=72801 WHERE a=5091;\nUPDATE t2 SET b=66412 WHERE a=5092;\nUPDATE t2 SET b=28345 WHERE a=5093;\nUPDATE t2 SET b=17342 WHERE a=5094;\nUPDATE t2 SET b=77128 WHERE a=5095;\nUPDATE t2 SET b=40058 WHERE a=5096;\nUPDATE t2 SET b=69325 WHERE a=5097;\nUPDATE t2 SET b=64114 WHERE a=5098;\nUPDATE t2 SET b=54907 WHERE a=5099;\nUPDATE t2 SET b=42334 WHERE a=5100;\nUPDATE t2 SET b=28999 WHERE a=5101;\nUPDATE t2 SET b=59319 WHERE a=5102;\nUPDATE t2 SET b=48257 WHERE a=5103;\nUPDATE t2 SET b=65314 WHERE a=5104;\nUPDATE t2 SET b=61221 WHERE a=5105;\nUPDATE t2 SET b=28620 WHERE a=5106;\nUPDATE t2 SET b=44678 WHERE a=5107;\nUPDATE t2 SET b=61303 WHERE a=5108;\nUPDATE t2 SET b=84180 WHERE a=5109;\nUPDATE t2 SET b=98754 WHERE a=5110;\nUPDATE t2 SET b=41036 WHERE a=5111;\nUPDATE t2 SET b=41463 WHERE a=5112;\nUPDATE t2 SET b=63185 WHERE a=5113;\nUPDATE t2 SET b=64259 WHERE a=5114;\nUPDATE t2 SET b=46136 WHERE a=5115;\nUPDATE t2 SET b=12477 WHERE a=5116;\nUPDATE t2 SET b=96005 WHERE a=5117;\nUPDATE t2 SET b=69154 WHERE a=5118;\nUPDATE t2 SET b=21100 WHERE a=5119;\nUPDATE t2 SET b=11655 WHERE a=5120;\nUPDATE t2 SET b=89170 WHERE a=5121;\nUPDATE t2 SET b=44183 WHERE a=5122;\nUPDATE t2 SET b=69063 WHERE a=5123;\nUPDATE t2 SET b=45475 WHERE a=5124;\nUPDATE t2 SET b=72207 WHERE a=5125;\nUPDATE t2 SET b=2509 WHERE a=5126;\nUPDATE t2 SET b=14225 WHERE a=5127;\nUPDATE t2 SET b=47628 WHERE a=5128;\nUPDATE t2 SET b=77360 WHERE a=5129;\nUPDATE t2 SET b=88044 WHERE a=5130;\nUPDATE t2 SET b=58000 WHERE a=5131;\nUPDATE t2 SET b=50598 WHERE a=5132;\nUPDATE t2 SET b=2153 WHERE a=5133;\nUPDATE t2 SET b=22178 WHERE a=5134;\nUPDATE t2 SET b=1516 WHERE a=5135;\nUPDATE t2 SET b=10836 WHERE a=5136;\nUPDATE t2 SET b=20152 WHERE a=5137;\nUPDATE t2 SET b=21947 WHERE a=5138;\nUPDATE t2 SET b=7497 WHERE a=5139;\nUPDATE t2 SET b=16539 WHERE a=5140;\nUPDATE t2 SET b=85135 WHERE a=5141;\nUPDATE t2 SET b=97858 WHERE a=5142;\nUPDATE t2 SET b=88011 WHERE a=5143;\nUPDATE t2 SET b=14111 WHERE a=5144;\nUPDATE t2 SET b=15746 WHERE a=5145;\nUPDATE t2 SET b=19151 WHERE a=5146;\nUPDATE t2 SET b=23347 WHERE a=5147;\nUPDATE t2 SET b=78152 WHERE a=5148;\nUPDATE t2 SET b=84243 WHERE a=5149;\nUPDATE t2 SET b=86449 WHERE a=5150;\nUPDATE t2 SET b=85648 WHERE a=5151;\nUPDATE t2 SET b=54662 WHERE a=5152;\nUPDATE t2 SET b=3973 WHERE a=5153;\nUPDATE t2 SET b=88992 WHERE a=5154;\nUPDATE t2 SET b=35008 WHERE a=5155;\nUPDATE t2 SET b=81189 WHERE a=5156;\nUPDATE t2 SET b=49744 WHERE a=5157;\nUPDATE t2 SET b=86233 WHERE a=5158;\nUPDATE t2 SET b=59104 WHERE a=5159;\nUPDATE t2 SET b=51150 WHERE a=5160;\nUPDATE t2 SET b=94176 WHERE a=5161;\nUPDATE t2 SET b=29816 WHERE a=5162;\nUPDATE t2 SET b=47059 WHERE a=5163;\nUPDATE t2 SET b=5515 WHERE a=5164;\nUPDATE t2 SET b=88969 WHERE a=5165;\nUPDATE t2 SET b=66408 WHERE a=5166;\nUPDATE t2 SET b=41615 WHERE a=5167;\nUPDATE t2 SET b=54246 WHERE a=5168;\nUPDATE t2 SET b=52858 WHERE a=5169;\nUPDATE t2 SET b=72422 WHERE a=5170;\nUPDATE t2 SET b=93315 WHERE a=5171;\nUPDATE t2 SET b=27528 WHERE a=5172;\nUPDATE t2 SET b=45273 WHERE a=5173;\nUPDATE t2 SET b=66670 WHERE a=5174;\nUPDATE t2 SET b=73266 WHERE a=5175;\nUPDATE t2 SET b=45124 WHERE a=5176;\nUPDATE t2 SET b=27264 WHERE a=5177;\nUPDATE t2 SET b=4510 WHERE a=5178;\nUPDATE t2 SET b=27667 WHERE a=5179;\nUPDATE t2 SET b=60306 WHERE a=5180;\nUPDATE t2 SET b=88400 WHERE a=5181;\nUPDATE t2 SET b=55738 WHERE a=5182;\nUPDATE t2 SET b=2886 WHERE a=5183;\nUPDATE t2 SET b=51080 WHERE a=5184;\nUPDATE t2 SET b=78041 WHERE a=5185;\nUPDATE t2 SET b=79699 WHERE a=5186;\nUPDATE t2 SET b=40774 WHERE a=5187;\nUPDATE t2 SET b=631 WHERE a=5188;\nUPDATE t2 SET b=48173 WHERE a=5189;\nUPDATE t2 SET b=49435 WHERE a=5190;\nUPDATE t2 SET b=69632 WHERE a=5191;\nUPDATE t2 SET b=56753 WHERE a=5192;\nUPDATE t2 SET b=33564 WHERE a=5193;\nUPDATE t2 SET b=72742 WHERE a=5194;\nUPDATE t2 SET b=51550 WHERE a=5195;\nUPDATE t2 SET b=86233 WHERE a=5196;\nUPDATE t2 SET b=95170 WHERE a=5197;\nUPDATE t2 SET b=26876 WHERE a=5198;\nUPDATE t2 SET b=2149 WHERE a=5199;\nUPDATE t2 SET b=81537 WHERE a=5200;\nUPDATE t2 SET b=27048 WHERE a=5201;\nUPDATE t2 SET b=40360 WHERE a=5202;\nUPDATE t2 SET b=8957 WHERE a=5203;\nUPDATE t2 SET b=26834 WHERE a=5204;\nUPDATE t2 SET b=49449 WHERE a=5205;\nUPDATE t2 SET b=25770 WHERE a=5206;\nUPDATE t2 SET b=57169 WHERE a=5207;\nUPDATE t2 SET b=9122 WHERE a=5208;\nUPDATE t2 SET b=11176 WHERE a=5209;\nUPDATE t2 SET b=58720 WHERE a=5210;\nUPDATE t2 SET b=81339 WHERE a=5211;\nUPDATE t2 SET b=76978 WHERE a=5212;\nUPDATE t2 SET b=69658 WHERE a=5213;\nUPDATE t2 SET b=79841 WHERE a=5214;\nUPDATE t2 SET b=11675 WHERE a=5215;\nUPDATE t2 SET b=71896 WHERE a=5216;\nUPDATE t2 SET b=69546 WHERE a=5217;\nUPDATE t2 SET b=96379 WHERE a=5218;\nUPDATE t2 SET b=92153 WHERE a=5219;\nUPDATE t2 SET b=36393 WHERE a=5220;\nUPDATE t2 SET b=44759 WHERE a=5221;\nUPDATE t2 SET b=23378 WHERE a=5222;\nUPDATE t2 SET b=10621 WHERE a=5223;\nUPDATE t2 SET b=55844 WHERE a=5224;\nUPDATE t2 SET b=36769 WHERE a=5225;\nUPDATE t2 SET b=33528 WHERE a=5226;\nUPDATE t2 SET b=23561 WHERE a=5227;\nUPDATE t2 SET b=51325 WHERE a=5228;\nUPDATE t2 SET b=93409 WHERE a=5229;\nUPDATE t2 SET b=57265 WHERE a=5230;\nUPDATE t2 SET b=8042 WHERE a=5231;\nUPDATE t2 SET b=8388 WHERE a=5232;\nUPDATE t2 SET b=62176 WHERE a=5233;\nUPDATE t2 SET b=9434 WHERE a=5234;\nUPDATE t2 SET b=49933 WHERE a=5235;\nUPDATE t2 SET b=80101 WHERE a=5236;\nUPDATE t2 SET b=17365 WHERE a=5237;\nUPDATE t2 SET b=75644 WHERE a=5238;\nUPDATE t2 SET b=13560 WHERE a=5239;\nUPDATE t2 SET b=72212 WHERE a=5240;\nUPDATE t2 SET b=44764 WHERE a=5241;\nUPDATE t2 SET b=9930 WHERE a=5242;\nUPDATE t2 SET b=17121 WHERE a=5243;\nUPDATE t2 SET b=52537 WHERE a=5244;\nUPDATE t2 SET b=22526 WHERE a=5245;\nUPDATE t2 SET b=55831 WHERE a=5246;\nUPDATE t2 SET b=76535 WHERE a=5247;\nUPDATE t2 SET b=96591 WHERE a=5248;\nUPDATE t2 SET b=29309 WHERE a=5249;\nUPDATE t2 SET b=3804 WHERE a=5250;\nUPDATE t2 SET b=6865 WHERE a=5251;\nUPDATE t2 SET b=94179 WHERE a=5252;\nUPDATE t2 SET b=28480 WHERE a=5253;\nUPDATE t2 SET b=15057 WHERE a=5254;\nUPDATE t2 SET b=95597 WHERE a=5255;\nUPDATE t2 SET b=5180 WHERE a=5256;\nUPDATE t2 SET b=7590 WHERE a=5257;\nUPDATE t2 SET b=8325 WHERE a=5258;\nUPDATE t2 SET b=86972 WHERE a=5259;\nUPDATE t2 SET b=20257 WHERE a=5260;\nUPDATE t2 SET b=9446 WHERE a=5261;\nUPDATE t2 SET b=75812 WHERE a=5262;\nUPDATE t2 SET b=27343 WHERE a=5263;\nUPDATE t2 SET b=17522 WHERE a=5264;\nUPDATE t2 SET b=91714 WHERE a=5265;\nUPDATE t2 SET b=38230 WHERE a=5266;\nUPDATE t2 SET b=95715 WHERE a=5267;\nUPDATE t2 SET b=26351 WHERE a=5268;\nUPDATE t2 SET b=10970 WHERE a=5269;\nUPDATE t2 SET b=77812 WHERE a=5270;\nUPDATE t2 SET b=38335 WHERE a=5271;\nUPDATE t2 SET b=42737 WHERE a=5272;\nUPDATE t2 SET b=25818 WHERE a=5273;\nUPDATE t2 SET b=14535 WHERE a=5274;\nUPDATE t2 SET b=15591 WHERE a=5275;\nUPDATE t2 SET b=11255 WHERE a=5276;\nUPDATE t2 SET b=91199 WHERE a=5277;\nUPDATE t2 SET b=78822 WHERE a=5278;\nUPDATE t2 SET b=80718 WHERE a=5279;\nUPDATE t2 SET b=62296 WHERE a=5280;\nUPDATE t2 SET b=39778 WHERE a=5281;\nUPDATE t2 SET b=92055 WHERE a=5282;\nUPDATE t2 SET b=89861 WHERE a=5283;\nUPDATE t2 SET b=71693 WHERE a=5284;\nUPDATE t2 SET b=22922 WHERE a=5285;\nUPDATE t2 SET b=5170 WHERE a=5286;\nUPDATE t2 SET b=69061 WHERE a=5287;\nUPDATE t2 SET b=14735 WHERE a=5288;\nUPDATE t2 SET b=72648 WHERE a=5289;\nUPDATE t2 SET b=67291 WHERE a=5290;\nUPDATE t2 SET b=81093 WHERE a=5291;\nUPDATE t2 SET b=60678 WHERE a=5292;\nUPDATE t2 SET b=55458 WHERE a=5293;\nUPDATE t2 SET b=64738 WHERE a=5294;\nUPDATE t2 SET b=27058 WHERE a=5295;\nUPDATE t2 SET b=26585 WHERE a=5296;\nUPDATE t2 SET b=83523 WHERE a=5297;\nUPDATE t2 SET b=88238 WHERE a=5298;\nUPDATE t2 SET b=74011 WHERE a=5299;\nUPDATE t2 SET b=38582 WHERE a=5300;\nUPDATE t2 SET b=41149 WHERE a=5301;\nUPDATE t2 SET b=54883 WHERE a=5302;\nUPDATE t2 SET b=90922 WHERE a=5303;\nUPDATE t2 SET b=99319 WHERE a=5304;\nUPDATE t2 SET b=94594 WHERE a=5305;\nUPDATE t2 SET b=31881 WHERE a=5306;\nUPDATE t2 SET b=31403 WHERE a=5307;\nUPDATE t2 SET b=76550 WHERE a=5308;\nUPDATE t2 SET b=64838 WHERE a=5309;\nUPDATE t2 SET b=42652 WHERE a=5310;\nUPDATE t2 SET b=34082 WHERE a=5311;\nUPDATE t2 SET b=56892 WHERE a=5312;\nUPDATE t2 SET b=85019 WHERE a=5313;\nUPDATE t2 SET b=9724 WHERE a=5314;\nUPDATE t2 SET b=52565 WHERE a=5315;\nUPDATE t2 SET b=88248 WHERE a=5316;\nUPDATE t2 SET b=50166 WHERE a=5317;\nUPDATE t2 SET b=58262 WHERE a=5318;\nUPDATE t2 SET b=13748 WHERE a=5319;\nUPDATE t2 SET b=81288 WHERE a=5320;\nUPDATE t2 SET b=26003 WHERE a=5321;\nUPDATE t2 SET b=99619 WHERE a=5322;\nUPDATE t2 SET b=84887 WHERE a=5323;\nUPDATE t2 SET b=466 WHERE a=5324;\nUPDATE t2 SET b=81538 WHERE a=5325;\nUPDATE t2 SET b=84358 WHERE a=5326;\nUPDATE t2 SET b=95365 WHERE a=5327;\nUPDATE t2 SET b=48377 WHERE a=5328;\nUPDATE t2 SET b=3639 WHERE a=5329;\nUPDATE t2 SET b=88274 WHERE a=5330;\nUPDATE t2 SET b=42446 WHERE a=5331;\nUPDATE t2 SET b=78751 WHERE a=5332;\nUPDATE t2 SET b=36782 WHERE a=5333;\nUPDATE t2 SET b=89498 WHERE a=5334;\nUPDATE t2 SET b=29537 WHERE a=5335;\nUPDATE t2 SET b=65223 WHERE a=5336;\nUPDATE t2 SET b=2971 WHERE a=5337;\nUPDATE t2 SET b=21896 WHERE a=5338;\nUPDATE t2 SET b=92523 WHERE a=5339;\nUPDATE t2 SET b=1772 WHERE a=5340;\nUPDATE t2 SET b=57008 WHERE a=5341;\nUPDATE t2 SET b=27199 WHERE a=5342;\nUPDATE t2 SET b=75827 WHERE a=5343;\nUPDATE t2 SET b=40819 WHERE a=5344;\nUPDATE t2 SET b=71507 WHERE a=5345;\nUPDATE t2 SET b=74291 WHERE a=5346;\nUPDATE t2 SET b=87099 WHERE a=5347;\nUPDATE t2 SET b=8148 WHERE a=5348;\nUPDATE t2 SET b=21704 WHERE a=5349;\nUPDATE t2 SET b=21176 WHERE a=5350;\nUPDATE t2 SET b=52116 WHERE a=5351;\nUPDATE t2 SET b=56973 WHERE a=5352;\nUPDATE t2 SET b=7747 WHERE a=5353;\nUPDATE t2 SET b=54254 WHERE a=5354;\nUPDATE t2 SET b=9128 WHERE a=5355;\nUPDATE t2 SET b=28287 WHERE a=5356;\nUPDATE t2 SET b=82994 WHERE a=5357;\nUPDATE t2 SET b=9088 WHERE a=5358;\nUPDATE t2 SET b=29339 WHERE a=5359;\nUPDATE t2 SET b=97258 WHERE a=5360;\nUPDATE t2 SET b=40082 WHERE a=5361;\nUPDATE t2 SET b=83520 WHERE a=5362;\nUPDATE t2 SET b=77109 WHERE a=5363;\nUPDATE t2 SET b=47883 WHERE a=5364;\nUPDATE t2 SET b=17162 WHERE a=5365;\nUPDATE t2 SET b=48899 WHERE a=5366;\nUPDATE t2 SET b=53919 WHERE a=5367;\nUPDATE t2 SET b=39671 WHERE a=5368;\nUPDATE t2 SET b=43801 WHERE a=5369;\nUPDATE t2 SET b=42124 WHERE a=5370;\nUPDATE t2 SET b=99924 WHERE a=5371;\nUPDATE t2 SET b=2976 WHERE a=5372;\nUPDATE t2 SET b=10266 WHERE a=5373;\nUPDATE t2 SET b=41423 WHERE a=5374;\nUPDATE t2 SET b=70369 WHERE a=5375;\nUPDATE t2 SET b=74126 WHERE a=5376;\nUPDATE t2 SET b=26162 WHERE a=5377;\nUPDATE t2 SET b=68805 WHERE a=5378;\nUPDATE t2 SET b=27169 WHERE a=5379;\nUPDATE t2 SET b=53553 WHERE a=5380;\nUPDATE t2 SET b=7308 WHERE a=5381;\nUPDATE t2 SET b=44857 WHERE a=5382;\nUPDATE t2 SET b=84946 WHERE a=5383;\nUPDATE t2 SET b=90624 WHERE a=5384;\nUPDATE t2 SET b=52786 WHERE a=5385;\nUPDATE t2 SET b=30633 WHERE a=5386;\nUPDATE t2 SET b=23658 WHERE a=5387;\nUPDATE t2 SET b=70788 WHERE a=5388;\nUPDATE t2 SET b=87714 WHERE a=5389;\nUPDATE t2 SET b=84752 WHERE a=5390;\nUPDATE t2 SET b=20818 WHERE a=5391;\nUPDATE t2 SET b=88184 WHERE a=5392;\nUPDATE t2 SET b=1976 WHERE a=5393;\nUPDATE t2 SET b=58792 WHERE a=5394;\nUPDATE t2 SET b=38603 WHERE a=5395;\nUPDATE t2 SET b=53550 WHERE a=5396;\nUPDATE t2 SET b=61609 WHERE a=5397;\nUPDATE t2 SET b=86039 WHERE a=5398;\nUPDATE t2 SET b=92769 WHERE a=5399;\nUPDATE t2 SET b=22547 WHERE a=5400;\nUPDATE t2 SET b=6617 WHERE a=5401;\nUPDATE t2 SET b=20210 WHERE a=5402;\nUPDATE t2 SET b=41303 WHERE a=5403;\nUPDATE t2 SET b=52986 WHERE a=5404;\nUPDATE t2 SET b=52845 WHERE a=5405;\nUPDATE t2 SET b=63342 WHERE a=5406;\nUPDATE t2 SET b=99936 WHERE a=5407;\nUPDATE t2 SET b=99957 WHERE a=5408;\nUPDATE t2 SET b=30118 WHERE a=5409;\nUPDATE t2 SET b=36790 WHERE a=5410;\nUPDATE t2 SET b=86258 WHERE a=5411;\nUPDATE t2 SET b=76716 WHERE a=5412;\nUPDATE t2 SET b=81112 WHERE a=5413;\nUPDATE t2 SET b=6703 WHERE a=5414;\nUPDATE t2 SET b=67630 WHERE a=5415;\nUPDATE t2 SET b=83331 WHERE a=5416;\nUPDATE t2 SET b=78856 WHERE a=5417;\nUPDATE t2 SET b=30558 WHERE a=5418;\nUPDATE t2 SET b=44017 WHERE a=5419;\nUPDATE t2 SET b=25544 WHERE a=5420;\nUPDATE t2 SET b=40506 WHERE a=5421;\nUPDATE t2 SET b=74008 WHERE a=5422;\nUPDATE t2 SET b=95049 WHERE a=5423;\nUPDATE t2 SET b=75004 WHERE a=5424;\nUPDATE t2 SET b=83206 WHERE a=5425;\nUPDATE t2 SET b=17663 WHERE a=5426;\nUPDATE t2 SET b=42349 WHERE a=5427;\nUPDATE t2 SET b=53775 WHERE a=5428;\nUPDATE t2 SET b=73837 WHERE a=5429;\nUPDATE t2 SET b=91622 WHERE a=5430;\nUPDATE t2 SET b=19766 WHERE a=5431;\nUPDATE t2 SET b=27338 WHERE a=5432;\nUPDATE t2 SET b=25720 WHERE a=5433;\nUPDATE t2 SET b=41103 WHERE a=5434;\nUPDATE t2 SET b=67644 WHERE a=5435;\nUPDATE t2 SET b=59764 WHERE a=5436;\nUPDATE t2 SET b=40785 WHERE a=5437;\nUPDATE t2 SET b=39193 WHERE a=5438;\nUPDATE t2 SET b=60445 WHERE a=5439;\nUPDATE t2 SET b=50978 WHERE a=5440;\nUPDATE t2 SET b=80841 WHERE a=5441;\nUPDATE t2 SET b=38335 WHERE a=5442;\nUPDATE t2 SET b=76290 WHERE a=5443;\nUPDATE t2 SET b=59311 WHERE a=5444;\nUPDATE t2 SET b=34370 WHERE a=5445;\nUPDATE t2 SET b=94754 WHERE a=5446;\nUPDATE t2 SET b=79092 WHERE a=5447;\nUPDATE t2 SET b=66729 WHERE a=5448;\nUPDATE t2 SET b=10822 WHERE a=5449;\nUPDATE t2 SET b=446 WHERE a=5450;\nUPDATE t2 SET b=44215 WHERE a=5451;\nUPDATE t2 SET b=92008 WHERE a=5452;\nUPDATE t2 SET b=34954 WHERE a=5453;\nUPDATE t2 SET b=68373 WHERE a=5454;\nUPDATE t2 SET b=95948 WHERE a=5455;\nUPDATE t2 SET b=32163 WHERE a=5456;\nUPDATE t2 SET b=6776 WHERE a=5457;\nUPDATE t2 SET b=38291 WHERE a=5458;\nUPDATE t2 SET b=21431 WHERE a=5459;\nUPDATE t2 SET b=29795 WHERE a=5460;\nUPDATE t2 SET b=94459 WHERE a=5461;\nUPDATE t2 SET b=92700 WHERE a=5462;\nUPDATE t2 SET b=91003 WHERE a=5463;\nUPDATE t2 SET b=16201 WHERE a=5464;\nUPDATE t2 SET b=20677 WHERE a=5465;\nUPDATE t2 SET b=91945 WHERE a=5466;\nUPDATE t2 SET b=5200 WHERE a=5467;\nUPDATE t2 SET b=58616 WHERE a=5468;\nUPDATE t2 SET b=85413 WHERE a=5469;\nUPDATE t2 SET b=59172 WHERE a=5470;\nUPDATE t2 SET b=72390 WHERE a=5471;\nUPDATE t2 SET b=3971 WHERE a=5472;\nUPDATE t2 SET b=66193 WHERE a=5473;\nUPDATE t2 SET b=97433 WHERE a=5474;\nUPDATE t2 SET b=98154 WHERE a=5475;\nUPDATE t2 SET b=3959 WHERE a=5476;\nUPDATE t2 SET b=8107 WHERE a=5477;\nUPDATE t2 SET b=96621 WHERE a=5478;\nUPDATE t2 SET b=35277 WHERE a=5479;\nUPDATE t2 SET b=9981 WHERE a=5480;\nUPDATE t2 SET b=44010 WHERE a=5481;\nUPDATE t2 SET b=76766 WHERE a=5482;\nUPDATE t2 SET b=6240 WHERE a=5483;\nUPDATE t2 SET b=56166 WHERE a=5484;\nUPDATE t2 SET b=99086 WHERE a=5485;\nUPDATE t2 SET b=56554 WHERE a=5486;\nUPDATE t2 SET b=78730 WHERE a=5487;\nUPDATE t2 SET b=91436 WHERE a=5488;\nUPDATE t2 SET b=14347 WHERE a=5489;\nUPDATE t2 SET b=71131 WHERE a=5490;\nUPDATE t2 SET b=74513 WHERE a=5491;\nUPDATE t2 SET b=32649 WHERE a=5492;\nUPDATE t2 SET b=77311 WHERE a=5493;\nUPDATE t2 SET b=36960 WHERE a=5494;\nUPDATE t2 SET b=2562 WHERE a=5495;\nUPDATE t2 SET b=42443 WHERE a=5496;\nUPDATE t2 SET b=18986 WHERE a=5497;\nUPDATE t2 SET b=53986 WHERE a=5498;\nUPDATE t2 SET b=83180 WHERE a=5499;\nUPDATE t2 SET b=65225 WHERE a=5500;\nUPDATE t2 SET b=64543 WHERE a=5501;\nUPDATE t2 SET b=94028 WHERE a=5502;\nUPDATE t2 SET b=68784 WHERE a=5503;\nUPDATE t2 SET b=2184 WHERE a=5504;\nUPDATE t2 SET b=61669 WHERE a=5505;\nUPDATE t2 SET b=64425 WHERE a=5506;\nUPDATE t2 SET b=9898 WHERE a=5507;\nUPDATE t2 SET b=89367 WHERE a=5508;\nUPDATE t2 SET b=76846 WHERE a=5509;\nUPDATE t2 SET b=39353 WHERE a=5510;\nUPDATE t2 SET b=9883 WHERE a=5511;\nUPDATE t2 SET b=49992 WHERE a=5512;\nUPDATE t2 SET b=3482 WHERE a=5513;\nUPDATE t2 SET b=25602 WHERE a=5514;\nUPDATE t2 SET b=33207 WHERE a=5515;\nUPDATE t2 SET b=56112 WHERE a=5516;\nUPDATE t2 SET b=79388 WHERE a=5517;\nUPDATE t2 SET b=6743 WHERE a=5518;\nUPDATE t2 SET b=70162 WHERE a=5519;\nUPDATE t2 SET b=60603 WHERE a=5520;\nUPDATE t2 SET b=61984 WHERE a=5521;\nUPDATE t2 SET b=8303 WHERE a=5522;\nUPDATE t2 SET b=65543 WHERE a=5523;\nUPDATE t2 SET b=6556 WHERE a=5524;\nUPDATE t2 SET b=42644 WHERE a=5525;\nUPDATE t2 SET b=73092 WHERE a=5526;\nUPDATE t2 SET b=54055 WHERE a=5527;\nUPDATE t2 SET b=39377 WHERE a=5528;\nUPDATE t2 SET b=5042 WHERE a=5529;\nUPDATE t2 SET b=86646 WHERE a=5530;\nUPDATE t2 SET b=15311 WHERE a=5531;\nUPDATE t2 SET b=90314 WHERE a=5532;\nUPDATE t2 SET b=42943 WHERE a=5533;\nUPDATE t2 SET b=74000 WHERE a=5534;\nUPDATE t2 SET b=48374 WHERE a=5535;\nUPDATE t2 SET b=19072 WHERE a=5536;\nUPDATE t2 SET b=44881 WHERE a=5537;\nUPDATE t2 SET b=83794 WHERE a=5538;\nUPDATE t2 SET b=31226 WHERE a=5539;\nUPDATE t2 SET b=81695 WHERE a=5540;\nUPDATE t2 SET b=58707 WHERE a=5541;\nUPDATE t2 SET b=45026 WHERE a=5542;\nUPDATE t2 SET b=56334 WHERE a=5543;\nUPDATE t2 SET b=88128 WHERE a=5544;\nUPDATE t2 SET b=17379 WHERE a=5545;\nUPDATE t2 SET b=74244 WHERE a=5546;\nUPDATE t2 SET b=51092 WHERE a=5547;\nUPDATE t2 SET b=45685 WHERE a=5548;\nUPDATE t2 SET b=50267 WHERE a=5549;\nUPDATE t2 SET b=48877 WHERE a=5550;\nUPDATE t2 SET b=324 WHERE a=5551;\nUPDATE t2 SET b=46450 WHERE a=5552;\nUPDATE t2 SET b=10195 WHERE a=5553;\nUPDATE t2 SET b=35882 WHERE a=5554;\nUPDATE t2 SET b=59362 WHERE a=5555;\nUPDATE t2 SET b=56788 WHERE a=5556;\nUPDATE t2 SET b=62130 WHERE a=5557;\nUPDATE t2 SET b=55544 WHERE a=5558;\nUPDATE t2 SET b=59063 WHERE a=5559;\nUPDATE t2 SET b=22803 WHERE a=5560;\nUPDATE t2 SET b=71944 WHERE a=5561;\nUPDATE t2 SET b=35390 WHERE a=5562;\nUPDATE t2 SET b=76308 WHERE a=5563;\nUPDATE t2 SET b=83199 WHERE a=5564;\nUPDATE t2 SET b=79216 WHERE a=5565;\nUPDATE t2 SET b=74366 WHERE a=5566;\nUPDATE t2 SET b=42250 WHERE a=5567;\nUPDATE t2 SET b=12777 WHERE a=5568;\nUPDATE t2 SET b=60428 WHERE a=5569;\nUPDATE t2 SET b=73776 WHERE a=5570;\nUPDATE t2 SET b=68259 WHERE a=5571;\nUPDATE t2 SET b=32650 WHERE a=5572;\nUPDATE t2 SET b=87970 WHERE a=5573;\nUPDATE t2 SET b=29836 WHERE a=5574;\nUPDATE t2 SET b=68345 WHERE a=5575;\nUPDATE t2 SET b=97267 WHERE a=5576;\nUPDATE t2 SET b=53042 WHERE a=5577;\nUPDATE t2 SET b=79761 WHERE a=5578;\nUPDATE t2 SET b=17009 WHERE a=5579;\nUPDATE t2 SET b=94803 WHERE a=5580;\nUPDATE t2 SET b=20021 WHERE a=5581;\nUPDATE t2 SET b=72817 WHERE a=5582;\nUPDATE t2 SET b=34527 WHERE a=5583;\nUPDATE t2 SET b=84337 WHERE a=5584;\nUPDATE t2 SET b=9217 WHERE a=5585;\nUPDATE t2 SET b=25546 WHERE a=5586;\nUPDATE t2 SET b=85753 WHERE a=5587;\nUPDATE t2 SET b=75364 WHERE a=5588;\nUPDATE t2 SET b=8641 WHERE a=5589;\nUPDATE t2 SET b=39445 WHERE a=5590;\nUPDATE t2 SET b=28394 WHERE a=5591;\nUPDATE t2 SET b=13472 WHERE a=5592;\nUPDATE t2 SET b=6972 WHERE a=5593;\nUPDATE t2 SET b=63925 WHERE a=5594;\nUPDATE t2 SET b=99837 WHERE a=5595;\nUPDATE t2 SET b=78319 WHERE a=5596;\nUPDATE t2 SET b=92787 WHERE a=5597;\nUPDATE t2 SET b=14772 WHERE a=5598;\nUPDATE t2 SET b=8191 WHERE a=5599;\nUPDATE t2 SET b=69467 WHERE a=5600;\nUPDATE t2 SET b=30388 WHERE a=5601;\nUPDATE t2 SET b=52608 WHERE a=5602;\nUPDATE t2 SET b=30755 WHERE a=5603;\nUPDATE t2 SET b=68218 WHERE a=5604;\nUPDATE t2 SET b=23433 WHERE a=5605;\nUPDATE t2 SET b=21425 WHERE a=5606;\nUPDATE t2 SET b=80204 WHERE a=5607;\nUPDATE t2 SET b=78762 WHERE a=5608;\nUPDATE t2 SET b=51791 WHERE a=5609;\nUPDATE t2 SET b=97221 WHERE a=5610;\nUPDATE t2 SET b=44222 WHERE a=5611;\nUPDATE t2 SET b=17553 WHERE a=5612;\nUPDATE t2 SET b=56324 WHERE a=5613;\nUPDATE t2 SET b=22326 WHERE a=5614;\nUPDATE t2 SET b=66315 WHERE a=5615;\nUPDATE t2 SET b=36874 WHERE a=5616;\nUPDATE t2 SET b=30025 WHERE a=5617;\nUPDATE t2 SET b=53161 WHERE a=5618;\nUPDATE t2 SET b=96703 WHERE a=5619;\nUPDATE t2 SET b=86914 WHERE a=5620;\nUPDATE t2 SET b=27849 WHERE a=5621;\nUPDATE t2 SET b=63487 WHERE a=5622;\nUPDATE t2 SET b=37621 WHERE a=5623;\nUPDATE t2 SET b=56925 WHERE a=5624;\nUPDATE t2 SET b=28000 WHERE a=5625;\nUPDATE t2 SET b=4174 WHERE a=5626;\nUPDATE t2 SET b=34143 WHERE a=5627;\nUPDATE t2 SET b=82837 WHERE a=5628;\nUPDATE t2 SET b=54909 WHERE a=5629;\nUPDATE t2 SET b=10293 WHERE a=5630;\nUPDATE t2 SET b=86438 WHERE a=5631;\nUPDATE t2 SET b=70007 WHERE a=5632;\nUPDATE t2 SET b=85357 WHERE a=5633;\nUPDATE t2 SET b=6757 WHERE a=5634;\nUPDATE t2 SET b=89844 WHERE a=5635;\nUPDATE t2 SET b=27285 WHERE a=5636;\nUPDATE t2 SET b=63017 WHERE a=5637;\nUPDATE t2 SET b=53320 WHERE a=5638;\nUPDATE t2 SET b=30110 WHERE a=5639;\nUPDATE t2 SET b=59790 WHERE a=5640;\nUPDATE t2 SET b=18100 WHERE a=5641;\nUPDATE t2 SET b=84925 WHERE a=5642;\nUPDATE t2 SET b=82149 WHERE a=5643;\nUPDATE t2 SET b=37006 WHERE a=5644;\nUPDATE t2 SET b=99269 WHERE a=5645;\nUPDATE t2 SET b=12030 WHERE a=5646;\nUPDATE t2 SET b=15937 WHERE a=5647;\nUPDATE t2 SET b=83970 WHERE a=5648;\nUPDATE t2 SET b=79436 WHERE a=5649;\nUPDATE t2 SET b=21585 WHERE a=5650;\nUPDATE t2 SET b=1349 WHERE a=5651;\nUPDATE t2 SET b=26098 WHERE a=5652;\nUPDATE t2 SET b=73285 WHERE a=5653;\nUPDATE t2 SET b=72267 WHERE a=5654;\nUPDATE t2 SET b=69295 WHERE a=5655;\nUPDATE t2 SET b=72014 WHERE a=5656;\nUPDATE t2 SET b=39131 WHERE a=5657;\nUPDATE t2 SET b=54467 WHERE a=5658;\nUPDATE t2 SET b=1204 WHERE a=5659;\nUPDATE t2 SET b=85135 WHERE a=5660;\nUPDATE t2 SET b=67846 WHERE a=5661;\nUPDATE t2 SET b=17472 WHERE a=5662;\nUPDATE t2 SET b=16067 WHERE a=5663;\nUPDATE t2 SET b=41979 WHERE a=5664;\nUPDATE t2 SET b=35140 WHERE a=5665;\nUPDATE t2 SET b=28458 WHERE a=5666;\nUPDATE t2 SET b=96354 WHERE a=5667;\nUPDATE t2 SET b=24862 WHERE a=5668;\nUPDATE t2 SET b=62441 WHERE a=5669;\nUPDATE t2 SET b=42025 WHERE a=5670;\nUPDATE t2 SET b=21482 WHERE a=5671;\nUPDATE t2 SET b=8450 WHERE a=5672;\nUPDATE t2 SET b=32286 WHERE a=5673;\nUPDATE t2 SET b=63298 WHERE a=5674;\nUPDATE t2 SET b=59216 WHERE a=5675;\nUPDATE t2 SET b=90766 WHERE a=5676;\nUPDATE t2 SET b=31954 WHERE a=5677;\nUPDATE t2 SET b=8287 WHERE a=5678;\nUPDATE t2 SET b=56152 WHERE a=5679;\nUPDATE t2 SET b=91 WHERE a=5680;\nUPDATE t2 SET b=83445 WHERE a=5681;\nUPDATE t2 SET b=49593 WHERE a=5682;\nUPDATE t2 SET b=98891 WHERE a=5683;\nUPDATE t2 SET b=61961 WHERE a=5684;\nUPDATE t2 SET b=18257 WHERE a=5685;\nUPDATE t2 SET b=5772 WHERE a=5686;\nUPDATE t2 SET b=6130 WHERE a=5687;\nUPDATE t2 SET b=71348 WHERE a=5688;\nUPDATE t2 SET b=27099 WHERE a=5689;\nUPDATE t2 SET b=15129 WHERE a=5690;\nUPDATE t2 SET b=7826 WHERE a=5691;\nUPDATE t2 SET b=83965 WHERE a=5692;\nUPDATE t2 SET b=69626 WHERE a=5693;\nUPDATE t2 SET b=11659 WHERE a=5694;\nUPDATE t2 SET b=18872 WHERE a=5695;\nUPDATE t2 SET b=90004 WHERE a=5696;\nUPDATE t2 SET b=48052 WHERE a=5697;\nUPDATE t2 SET b=36559 WHERE a=5698;\nUPDATE t2 SET b=97987 WHERE a=5699;\nUPDATE t2 SET b=79582 WHERE a=5700;\nUPDATE t2 SET b=2037 WHERE a=5701;\nUPDATE t2 SET b=8187 WHERE a=5702;\nUPDATE t2 SET b=92538 WHERE a=5703;\nUPDATE t2 SET b=80875 WHERE a=5704;\nUPDATE t2 SET b=8513 WHERE a=5705;\nUPDATE t2 SET b=837 WHERE a=5706;\nUPDATE t2 SET b=13228 WHERE a=5707;\nUPDATE t2 SET b=67681 WHERE a=5708;\nUPDATE t2 SET b=4183 WHERE a=5709;\nUPDATE t2 SET b=97425 WHERE a=5710;\nUPDATE t2 SET b=12197 WHERE a=5711;\nUPDATE t2 SET b=10158 WHERE a=5712;\nUPDATE t2 SET b=70152 WHERE a=5713;\nUPDATE t2 SET b=65814 WHERE a=5714;\nUPDATE t2 SET b=15738 WHERE a=5715;\nUPDATE t2 SET b=22717 WHERE a=5716;\nUPDATE t2 SET b=51239 WHERE a=5717;\nUPDATE t2 SET b=59927 WHERE a=5718;\nUPDATE t2 SET b=7420 WHERE a=5719;\nUPDATE t2 SET b=66496 WHERE a=5720;\nUPDATE t2 SET b=18505 WHERE a=5721;\nUPDATE t2 SET b=70492 WHERE a=5722;\nUPDATE t2 SET b=63612 WHERE a=5723;\nUPDATE t2 SET b=22727 WHERE a=5724;\nUPDATE t2 SET b=99509 WHERE a=5725;\nUPDATE t2 SET b=50401 WHERE a=5726;\nUPDATE t2 SET b=25978 WHERE a=5727;\nUPDATE t2 SET b=64870 WHERE a=5728;\nUPDATE t2 SET b=26557 WHERE a=5729;\nUPDATE t2 SET b=17091 WHERE a=5730;\nUPDATE t2 SET b=44141 WHERE a=5731;\nUPDATE t2 SET b=1501 WHERE a=5732;\nUPDATE t2 SET b=12102 WHERE a=5733;\nUPDATE t2 SET b=16411 WHERE a=5734;\nUPDATE t2 SET b=95446 WHERE a=5735;\nUPDATE t2 SET b=48594 WHERE a=5736;\nUPDATE t2 SET b=31430 WHERE a=5737;\nUPDATE t2 SET b=94768 WHERE a=5738;\nUPDATE t2 SET b=84860 WHERE a=5739;\nUPDATE t2 SET b=92824 WHERE a=5740;\nUPDATE t2 SET b=50811 WHERE a=5741;\nUPDATE t2 SET b=88666 WHERE a=5742;\nUPDATE t2 SET b=26948 WHERE a=5743;\nUPDATE t2 SET b=52682 WHERE a=5744;\nUPDATE t2 SET b=43790 WHERE a=5745;\nUPDATE t2 SET b=28849 WHERE a=5746;\nUPDATE t2 SET b=38509 WHERE a=5747;\nUPDATE t2 SET b=7666 WHERE a=5748;\nUPDATE t2 SET b=37331 WHERE a=5749;\nUPDATE t2 SET b=63139 WHERE a=5750;\nUPDATE t2 SET b=77660 WHERE a=5751;\nUPDATE t2 SET b=37897 WHERE a=5752;\nUPDATE t2 SET b=50090 WHERE a=5753;\nUPDATE t2 SET b=83079 WHERE a=5754;\nUPDATE t2 SET b=80102 WHERE a=5755;\nUPDATE t2 SET b=93456 WHERE a=5756;\nUPDATE t2 SET b=38519 WHERE a=5757;\nUPDATE t2 SET b=25201 WHERE a=5758;\nUPDATE t2 SET b=36343 WHERE a=5759;\nUPDATE t2 SET b=46392 WHERE a=5760;\nUPDATE t2 SET b=38356 WHERE a=5761;\nUPDATE t2 SET b=55398 WHERE a=5762;\nUPDATE t2 SET b=12991 WHERE a=5763;\nUPDATE t2 SET b=20052 WHERE a=5764;\nUPDATE t2 SET b=71033 WHERE a=5765;\nUPDATE t2 SET b=84541 WHERE a=5766;\nUPDATE t2 SET b=36010 WHERE a=5767;\nUPDATE t2 SET b=42590 WHERE a=5768;\nUPDATE t2 SET b=53544 WHERE a=5769;\nUPDATE t2 SET b=71333 WHERE a=5770;\nUPDATE t2 SET b=54647 WHERE a=5771;\nUPDATE t2 SET b=19053 WHERE a=5772;\nUPDATE t2 SET b=19385 WHERE a=5773;\nUPDATE t2 SET b=49548 WHERE a=5774;\nUPDATE t2 SET b=87935 WHERE a=5775;\nUPDATE t2 SET b=96671 WHERE a=5776;\nUPDATE t2 SET b=9902 WHERE a=5777;\nUPDATE t2 SET b=18086 WHERE a=5778;\nUPDATE t2 SET b=18021 WHERE a=5779;\nUPDATE t2 SET b=90215 WHERE a=5780;\nUPDATE t2 SET b=23837 WHERE a=5781;\nUPDATE t2 SET b=91235 WHERE a=5782;\nUPDATE t2 SET b=82109 WHERE a=5783;\nUPDATE t2 SET b=67282 WHERE a=5784;\nUPDATE t2 SET b=62982 WHERE a=5785;\nUPDATE t2 SET b=74549 WHERE a=5786;\nUPDATE t2 SET b=74815 WHERE a=5787;\nUPDATE t2 SET b=27166 WHERE a=5788;\nUPDATE t2 SET b=38160 WHERE a=5789;\nUPDATE t2 SET b=82471 WHERE a=5790;\nUPDATE t2 SET b=79942 WHERE a=5791;\nUPDATE t2 SET b=71630 WHERE a=5792;\nUPDATE t2 SET b=29939 WHERE a=5793;\nUPDATE t2 SET b=5177 WHERE a=5794;\nUPDATE t2 SET b=26407 WHERE a=5795;\nUPDATE t2 SET b=62223 WHERE a=5796;\nUPDATE t2 SET b=85014 WHERE a=5797;\nUPDATE t2 SET b=41191 WHERE a=5798;\nUPDATE t2 SET b=52711 WHERE a=5799;\nUPDATE t2 SET b=51761 WHERE a=5800;\nUPDATE t2 SET b=51576 WHERE a=5801;\nUPDATE t2 SET b=82767 WHERE a=5802;\nUPDATE t2 SET b=76209 WHERE a=5803;\nUPDATE t2 SET b=95010 WHERE a=5804;\nUPDATE t2 SET b=17402 WHERE a=5805;\nUPDATE t2 SET b=25999 WHERE a=5806;\nUPDATE t2 SET b=20379 WHERE a=5807;\nUPDATE t2 SET b=27299 WHERE a=5808;\nUPDATE t2 SET b=92221 WHERE a=5809;\nUPDATE t2 SET b=27516 WHERE a=5810;\nUPDATE t2 SET b=63161 WHERE a=5811;\nUPDATE t2 SET b=22735 WHERE a=5812;\nUPDATE t2 SET b=10601 WHERE a=5813;\nUPDATE t2 SET b=79931 WHERE a=5814;\nUPDATE t2 SET b=11909 WHERE a=5815;\nUPDATE t2 SET b=14868 WHERE a=5816;\nUPDATE t2 SET b=80882 WHERE a=5817;\nUPDATE t2 SET b=99044 WHERE a=5818;\nUPDATE t2 SET b=68022 WHERE a=5819;\nUPDATE t2 SET b=53735 WHERE a=5820;\nUPDATE t2 SET b=8695 WHERE a=5821;\nUPDATE t2 SET b=5655 WHERE a=5822;\nUPDATE t2 SET b=54461 WHERE a=5823;\nUPDATE t2 SET b=46721 WHERE a=5824;\nUPDATE t2 SET b=58591 WHERE a=5825;\nUPDATE t2 SET b=94986 WHERE a=5826;\nUPDATE t2 SET b=78876 WHERE a=5827;\nUPDATE t2 SET b=35748 WHERE a=5828;\nUPDATE t2 SET b=65185 WHERE a=5829;\nUPDATE t2 SET b=49884 WHERE a=5830;\nUPDATE t2 SET b=86767 WHERE a=5831;\nUPDATE t2 SET b=56366 WHERE a=5832;\nUPDATE t2 SET b=71809 WHERE a=5833;\nUPDATE t2 SET b=73274 WHERE a=5834;\nUPDATE t2 SET b=34492 WHERE a=5835;\nUPDATE t2 SET b=39433 WHERE a=5836;\nUPDATE t2 SET b=28534 WHERE a=5837;\nUPDATE t2 SET b=25911 WHERE a=5838;\nUPDATE t2 SET b=90905 WHERE a=5839;\nUPDATE t2 SET b=41623 WHERE a=5840;\nUPDATE t2 SET b=71952 WHERE a=5841;\nUPDATE t2 SET b=19286 WHERE a=5842;\nUPDATE t2 SET b=41438 WHERE a=5843;\nUPDATE t2 SET b=39158 WHERE a=5844;\nUPDATE t2 SET b=43368 WHERE a=5845;\nUPDATE t2 SET b=48271 WHERE a=5846;\nUPDATE t2 SET b=3024 WHERE a=5847;\nUPDATE t2 SET b=86622 WHERE a=5848;\nUPDATE t2 SET b=18410 WHERE a=5849;\nUPDATE t2 SET b=12813 WHERE a=5850;\nUPDATE t2 SET b=93426 WHERE a=5851;\nUPDATE t2 SET b=65959 WHERE a=5852;\nUPDATE t2 SET b=59407 WHERE a=5853;\nUPDATE t2 SET b=65385 WHERE a=5854;\nUPDATE t2 SET b=35441 WHERE a=5855;\nUPDATE t2 SET b=25173 WHERE a=5856;\nUPDATE t2 SET b=84133 WHERE a=5857;\nUPDATE t2 SET b=88523 WHERE a=5858;\nUPDATE t2 SET b=48123 WHERE a=5859;\nUPDATE t2 SET b=84567 WHERE a=5860;\nUPDATE t2 SET b=24738 WHERE a=5861;\nUPDATE t2 SET b=39131 WHERE a=5862;\nUPDATE t2 SET b=81674 WHERE a=5863;\nUPDATE t2 SET b=44965 WHERE a=5864;\nUPDATE t2 SET b=24253 WHERE a=5865;\nUPDATE t2 SET b=83570 WHERE a=5866;\nUPDATE t2 SET b=60327 WHERE a=5867;\nUPDATE t2 SET b=30699 WHERE a=5868;\nUPDATE t2 SET b=36922 WHERE a=5869;\nUPDATE t2 SET b=70606 WHERE a=5870;\nUPDATE t2 SET b=2733 WHERE a=5871;\nUPDATE t2 SET b=11203 WHERE a=5872;\nUPDATE t2 SET b=80323 WHERE a=5873;\nUPDATE t2 SET b=99299 WHERE a=5874;\nUPDATE t2 SET b=24165 WHERE a=5875;\nUPDATE t2 SET b=79990 WHERE a=5876;\nUPDATE t2 SET b=25105 WHERE a=5877;\nUPDATE t2 SET b=50957 WHERE a=5878;\nUPDATE t2 SET b=82188 WHERE a=5879;\nUPDATE t2 SET b=48568 WHERE a=5880;\nUPDATE t2 SET b=23806 WHERE a=5881;\nUPDATE t2 SET b=75542 WHERE a=5882;\nUPDATE t2 SET b=23645 WHERE a=5883;\nUPDATE t2 SET b=77523 WHERE a=5884;\nUPDATE t2 SET b=25241 WHERE a=5885;\nUPDATE t2 SET b=64975 WHERE a=5886;\nUPDATE t2 SET b=27145 WHERE a=5887;\nUPDATE t2 SET b=74387 WHERE a=5888;\nUPDATE t2 SET b=9584 WHERE a=5889;\nUPDATE t2 SET b=56061 WHERE a=5890;\nUPDATE t2 SET b=82007 WHERE a=5891;\nUPDATE t2 SET b=65923 WHERE a=5892;\nUPDATE t2 SET b=5654 WHERE a=5893;\nUPDATE t2 SET b=19355 WHERE a=5894;\nUPDATE t2 SET b=53910 WHERE a=5895;\nUPDATE t2 SET b=41294 WHERE a=5896;\nUPDATE t2 SET b=97429 WHERE a=5897;\nUPDATE t2 SET b=28446 WHERE a=5898;\nUPDATE t2 SET b=87082 WHERE a=5899;\nUPDATE t2 SET b=58226 WHERE a=5900;\nUPDATE t2 SET b=37499 WHERE a=5901;\nUPDATE t2 SET b=64691 WHERE a=5902;\nUPDATE t2 SET b=44449 WHERE a=5903;\nUPDATE t2 SET b=70702 WHERE a=5904;\nUPDATE t2 SET b=77662 WHERE a=5905;\nUPDATE t2 SET b=87821 WHERE a=5906;\nUPDATE t2 SET b=83197 WHERE a=5907;\nUPDATE t2 SET b=18682 WHERE a=5908;\nUPDATE t2 SET b=18142 WHERE a=5909;\nUPDATE t2 SET b=99113 WHERE a=5910;\nUPDATE t2 SET b=29295 WHERE a=5911;\nUPDATE t2 SET b=47356 WHERE a=5912;\nUPDATE t2 SET b=85108 WHERE a=5913;\nUPDATE t2 SET b=39469 WHERE a=5914;\nUPDATE t2 SET b=20592 WHERE a=5915;\nUPDATE t2 SET b=22372 WHERE a=5916;\nUPDATE t2 SET b=20034 WHERE a=5917;\nUPDATE t2 SET b=99483 WHERE a=5918;\nUPDATE t2 SET b=12462 WHERE a=5919;\nUPDATE t2 SET b=77822 WHERE a=5920;\nUPDATE t2 SET b=51531 WHERE a=5921;\nUPDATE t2 SET b=67234 WHERE a=5922;\nUPDATE t2 SET b=33048 WHERE a=5923;\nUPDATE t2 SET b=43856 WHERE a=5924;\nUPDATE t2 SET b=19708 WHERE a=5925;\nUPDATE t2 SET b=79574 WHERE a=5926;\nUPDATE t2 SET b=18297 WHERE a=5927;\nUPDATE t2 SET b=1514 WHERE a=5928;\nUPDATE t2 SET b=17492 WHERE a=5929;\nUPDATE t2 SET b=82176 WHERE a=5930;\nUPDATE t2 SET b=56766 WHERE a=5931;\nUPDATE t2 SET b=78515 WHERE a=5932;\nUPDATE t2 SET b=83984 WHERE a=5933;\nUPDATE t2 SET b=25164 WHERE a=5934;\nUPDATE t2 SET b=60481 WHERE a=5935;\nUPDATE t2 SET b=10462 WHERE a=5936;\nUPDATE t2 SET b=53169 WHERE a=5937;\nUPDATE t2 SET b=19484 WHERE a=5938;\nUPDATE t2 SET b=71522 WHERE a=5939;\nUPDATE t2 SET b=35355 WHERE a=5940;\nUPDATE t2 SET b=13332 WHERE a=5941;\nUPDATE t2 SET b=51238 WHERE a=5942;\nUPDATE t2 SET b=96323 WHERE a=5943;\nUPDATE t2 SET b=49286 WHERE a=5944;\nUPDATE t2 SET b=81007 WHERE a=5945;\nUPDATE t2 SET b=78677 WHERE a=5946;\nUPDATE t2 SET b=5041 WHERE a=5947;\nUPDATE t2 SET b=44598 WHERE a=5948;\nUPDATE t2 SET b=417 WHERE a=5949;\nUPDATE t2 SET b=65063 WHERE a=5950;\nUPDATE t2 SET b=21497 WHERE a=5951;\nUPDATE t2 SET b=113 WHERE a=5952;\nUPDATE t2 SET b=8916 WHERE a=5953;\nUPDATE t2 SET b=57367 WHERE a=5954;\nUPDATE t2 SET b=96710 WHERE a=5955;\nUPDATE t2 SET b=21039 WHERE a=5956;\nUPDATE t2 SET b=170 WHERE a=5957;\nUPDATE t2 SET b=49513 WHERE a=5958;\nUPDATE t2 SET b=57057 WHERE a=5959;\nUPDATE t2 SET b=62630 WHERE a=5960;\nUPDATE t2 SET b=80493 WHERE a=5961;\nUPDATE t2 SET b=58772 WHERE a=5962;\nUPDATE t2 SET b=80674 WHERE a=5963;\nUPDATE t2 SET b=11587 WHERE a=5964;\nUPDATE t2 SET b=36163 WHERE a=5965;\nUPDATE t2 SET b=97196 WHERE a=5966;\nUPDATE t2 SET b=39645 WHERE a=5967;\nUPDATE t2 SET b=33160 WHERE a=5968;\nUPDATE t2 SET b=73401 WHERE a=5969;\nUPDATE t2 SET b=43956 WHERE a=5970;\nUPDATE t2 SET b=97213 WHERE a=5971;\nUPDATE t2 SET b=8819 WHERE a=5972;\nUPDATE t2 SET b=90304 WHERE a=5973;\nUPDATE t2 SET b=80890 WHERE a=5974;\nUPDATE t2 SET b=96063 WHERE a=5975;\nUPDATE t2 SET b=55976 WHERE a=5976;\nUPDATE t2 SET b=51863 WHERE a=5977;\nUPDATE t2 SET b=97677 WHERE a=5978;\nUPDATE t2 SET b=74487 WHERE a=5979;\nUPDATE t2 SET b=81396 WHERE a=5980;\nUPDATE t2 SET b=46819 WHERE a=5981;\nUPDATE t2 SET b=55811 WHERE a=5982;\nUPDATE t2 SET b=4394 WHERE a=5983;\nUPDATE t2 SET b=32669 WHERE a=5984;\nUPDATE t2 SET b=44938 WHERE a=5985;\nUPDATE t2 SET b=68028 WHERE a=5986;\nUPDATE t2 SET b=43266 WHERE a=5987;\nUPDATE t2 SET b=83877 WHERE a=5988;\nUPDATE t2 SET b=13449 WHERE a=5989;\nUPDATE t2 SET b=55214 WHERE a=5990;\nUPDATE t2 SET b=85040 WHERE a=5991;\nUPDATE t2 SET b=32142 WHERE a=5992;\nUPDATE t2 SET b=75360 WHERE a=5993;\nUPDATE t2 SET b=37947 WHERE a=5994;\nUPDATE t2 SET b=26171 WHERE a=5995;\nUPDATE t2 SET b=2043 WHERE a=5996;\nUPDATE t2 SET b=28005 WHERE a=5997;\nUPDATE t2 SET b=66442 WHERE a=5998;\nUPDATE t2 SET b=80819 WHERE a=5999;\nUPDATE t2 SET b=2177 WHERE a=6000;\nUPDATE t2 SET b=7498 WHERE a=6001;\nUPDATE t2 SET b=7399 WHERE a=6002;\nUPDATE t2 SET b=40022 WHERE a=6003;\nUPDATE t2 SET b=25616 WHERE a=6004;\nUPDATE t2 SET b=77296 WHERE a=6005;\nUPDATE t2 SET b=83731 WHERE a=6006;\nUPDATE t2 SET b=42856 WHERE a=6007;\nUPDATE t2 SET b=35320 WHERE a=6008;\nUPDATE t2 SET b=80233 WHERE a=6009;\nUPDATE t2 SET b=56006 WHERE a=6010;\nUPDATE t2 SET b=81131 WHERE a=6011;\nUPDATE t2 SET b=3306 WHERE a=6012;\nUPDATE t2 SET b=23882 WHERE a=6013;\nUPDATE t2 SET b=23577 WHERE a=6014;\nUPDATE t2 SET b=74863 WHERE a=6015;\nUPDATE t2 SET b=78903 WHERE a=6016;\nUPDATE t2 SET b=22974 WHERE a=6017;\nUPDATE t2 SET b=5228 WHERE a=6018;\nUPDATE t2 SET b=15422 WHERE a=6019;\nUPDATE t2 SET b=32042 WHERE a=6020;\nUPDATE t2 SET b=45229 WHERE a=6021;\nUPDATE t2 SET b=85092 WHERE a=6022;\nUPDATE t2 SET b=57699 WHERE a=6023;\nUPDATE t2 SET b=3844 WHERE a=6024;\nUPDATE t2 SET b=84694 WHERE a=6025;\nUPDATE t2 SET b=46427 WHERE a=6026;\nUPDATE t2 SET b=12071 WHERE a=6027;\nUPDATE t2 SET b=18365 WHERE a=6028;\nUPDATE t2 SET b=80833 WHERE a=6029;\nUPDATE t2 SET b=56021 WHERE a=6030;\nUPDATE t2 SET b=76998 WHERE a=6031;\nUPDATE t2 SET b=66024 WHERE a=6032;\nUPDATE t2 SET b=48736 WHERE a=6033;\nUPDATE t2 SET b=97658 WHERE a=6034;\nUPDATE t2 SET b=81120 WHERE a=6035;\nUPDATE t2 SET b=25244 WHERE a=6036;\nUPDATE t2 SET b=26793 WHERE a=6037;\nUPDATE t2 SET b=30503 WHERE a=6038;\nUPDATE t2 SET b=839 WHERE a=6039;\nUPDATE t2 SET b=54408 WHERE a=6040;\nUPDATE t2 SET b=74199 WHERE a=6041;\nUPDATE t2 SET b=75659 WHERE a=6042;\nUPDATE t2 SET b=32836 WHERE a=6043;\nUPDATE t2 SET b=48717 WHERE a=6044;\nUPDATE t2 SET b=71846 WHERE a=6045;\nUPDATE t2 SET b=15428 WHERE a=6046;\nUPDATE t2 SET b=78084 WHERE a=6047;\nUPDATE t2 SET b=79626 WHERE a=6048;\nUPDATE t2 SET b=36137 WHERE a=6049;\nUPDATE t2 SET b=75117 WHERE a=6050;\nUPDATE t2 SET b=36171 WHERE a=6051;\nUPDATE t2 SET b=47529 WHERE a=6052;\nUPDATE t2 SET b=86454 WHERE a=6053;\nUPDATE t2 SET b=27971 WHERE a=6054;\nUPDATE t2 SET b=38973 WHERE a=6055;\nUPDATE t2 SET b=81705 WHERE a=6056;\nUPDATE t2 SET b=66479 WHERE a=6057;\nUPDATE t2 SET b=32376 WHERE a=6058;\nUPDATE t2 SET b=6122 WHERE a=6059;\nUPDATE t2 SET b=86026 WHERE a=6060;\nUPDATE t2 SET b=35666 WHERE a=6061;\nUPDATE t2 SET b=99619 WHERE a=6062;\nUPDATE t2 SET b=12578 WHERE a=6063;\nUPDATE t2 SET b=23274 WHERE a=6064;\nUPDATE t2 SET b=42576 WHERE a=6065;\nUPDATE t2 SET b=43460 WHERE a=6066;\nUPDATE t2 SET b=61804 WHERE a=6067;\nUPDATE t2 SET b=98418 WHERE a=6068;\nUPDATE t2 SET b=14839 WHERE a=6069;\nUPDATE t2 SET b=77938 WHERE a=6070;\nUPDATE t2 SET b=53519 WHERE a=6071;\nUPDATE t2 SET b=67247 WHERE a=6072;\nUPDATE t2 SET b=60569 WHERE a=6073;\nUPDATE t2 SET b=5422 WHERE a=6074;\nUPDATE t2 SET b=98303 WHERE a=6075;\nUPDATE t2 SET b=19611 WHERE a=6076;\nUPDATE t2 SET b=72931 WHERE a=6077;\nUPDATE t2 SET b=55070 WHERE a=6078;\nUPDATE t2 SET b=25609 WHERE a=6079;\nUPDATE t2 SET b=36954 WHERE a=6080;\nUPDATE t2 SET b=32082 WHERE a=6081;\nUPDATE t2 SET b=98431 WHERE a=6082;\nUPDATE t2 SET b=57334 WHERE a=6083;\nUPDATE t2 SET b=49118 WHERE a=6084;\nUPDATE t2 SET b=11085 WHERE a=6085;\nUPDATE t2 SET b=10710 WHERE a=6086;\nUPDATE t2 SET b=79137 WHERE a=6087;\nUPDATE t2 SET b=10815 WHERE a=6088;\nUPDATE t2 SET b=60350 WHERE a=6089;\nUPDATE t2 SET b=86387 WHERE a=6090;\nUPDATE t2 SET b=44068 WHERE a=6091;\nUPDATE t2 SET b=12218 WHERE a=6092;\nUPDATE t2 SET b=60717 WHERE a=6093;\nUPDATE t2 SET b=99898 WHERE a=6094;\nUPDATE t2 SET b=34204 WHERE a=6095;\nUPDATE t2 SET b=80549 WHERE a=6096;\nUPDATE t2 SET b=34571 WHERE a=6097;\nUPDATE t2 SET b=71503 WHERE a=6098;\nUPDATE t2 SET b=91732 WHERE a=6099;\nUPDATE t2 SET b=54605 WHERE a=6100;\nUPDATE t2 SET b=90508 WHERE a=6101;\nUPDATE t2 SET b=52456 WHERE a=6102;\nUPDATE t2 SET b=57101 WHERE a=6103;\nUPDATE t2 SET b=87629 WHERE a=6104;\nUPDATE t2 SET b=44074 WHERE a=6105;\nUPDATE t2 SET b=95527 WHERE a=6106;\nUPDATE t2 SET b=31484 WHERE a=6107;\nUPDATE t2 SET b=55326 WHERE a=6108;\nUPDATE t2 SET b=61156 WHERE a=6109;\nUPDATE t2 SET b=39514 WHERE a=6110;\nUPDATE t2 SET b=48442 WHERE a=6111;\nUPDATE t2 SET b=37240 WHERE a=6112;\nUPDATE t2 SET b=20673 WHERE a=6113;\nUPDATE t2 SET b=68158 WHERE a=6114;\nUPDATE t2 SET b=19610 WHERE a=6115;\nUPDATE t2 SET b=83381 WHERE a=6116;\nUPDATE t2 SET b=49827 WHERE a=6117;\nUPDATE t2 SET b=39368 WHERE a=6118;\nUPDATE t2 SET b=1510 WHERE a=6119;\nUPDATE t2 SET b=38865 WHERE a=6120;\nUPDATE t2 SET b=19584 WHERE a=6121;\nUPDATE t2 SET b=21718 WHERE a=6122;\nUPDATE t2 SET b=65342 WHERE a=6123;\nUPDATE t2 SET b=24285 WHERE a=6124;\nUPDATE t2 SET b=43244 WHERE a=6125;\nUPDATE t2 SET b=45227 WHERE a=6126;\nUPDATE t2 SET b=47240 WHERE a=6127;\nUPDATE t2 SET b=94154 WHERE a=6128;\nUPDATE t2 SET b=73894 WHERE a=6129;\nUPDATE t2 SET b=74537 WHERE a=6130;\nUPDATE t2 SET b=65395 WHERE a=6131;\nUPDATE t2 SET b=80139 WHERE a=6132;\nUPDATE t2 SET b=25656 WHERE a=6133;\nUPDATE t2 SET b=80167 WHERE a=6134;\nUPDATE t2 SET b=3278 WHERE a=6135;\nUPDATE t2 SET b=68794 WHERE a=6136;\nUPDATE t2 SET b=16466 WHERE a=6137;\nUPDATE t2 SET b=23976 WHERE a=6138;\nUPDATE t2 SET b=42528 WHERE a=6139;\nUPDATE t2 SET b=90140 WHERE a=6140;\nUPDATE t2 SET b=4280 WHERE a=6141;\nUPDATE t2 SET b=69973 WHERE a=6142;\nUPDATE t2 SET b=33123 WHERE a=6143;\nUPDATE t2 SET b=5532 WHERE a=6144;\nUPDATE t2 SET b=10098 WHERE a=6145;\nUPDATE t2 SET b=92821 WHERE a=6146;\nUPDATE t2 SET b=40899 WHERE a=6147;\nUPDATE t2 SET b=80347 WHERE a=6148;\nUPDATE t2 SET b=24873 WHERE a=6149;\nUPDATE t2 SET b=15315 WHERE a=6150;\nUPDATE t2 SET b=77548 WHERE a=6151;\nUPDATE t2 SET b=72462 WHERE a=6152;\nUPDATE t2 SET b=55829 WHERE a=6153;\nUPDATE t2 SET b=36215 WHERE a=6154;\nUPDATE t2 SET b=26107 WHERE a=6155;\nUPDATE t2 SET b=42179 WHERE a=6156;\nUPDATE t2 SET b=1377 WHERE a=6157;\nUPDATE t2 SET b=45171 WHERE a=6158;\nUPDATE t2 SET b=42604 WHERE a=6159;\nUPDATE t2 SET b=74380 WHERE a=6160;\nUPDATE t2 SET b=1175 WHERE a=6161;\nUPDATE t2 SET b=74243 WHERE a=6162;\nUPDATE t2 SET b=99353 WHERE a=6163;\nUPDATE t2 SET b=66910 WHERE a=6164;\nUPDATE t2 SET b=22891 WHERE a=6165;\nUPDATE t2 SET b=54038 WHERE a=6166;\nUPDATE t2 SET b=55320 WHERE a=6167;\nUPDATE t2 SET b=7074 WHERE a=6168;\nUPDATE t2 SET b=68971 WHERE a=6169;\nUPDATE t2 SET b=22781 WHERE a=6170;\nUPDATE t2 SET b=61479 WHERE a=6171;\nUPDATE t2 SET b=78494 WHERE a=6172;\nUPDATE t2 SET b=1649 WHERE a=6173;\nUPDATE t2 SET b=93369 WHERE a=6174;\nUPDATE t2 SET b=42689 WHERE a=6175;\nUPDATE t2 SET b=49804 WHERE a=6176;\nUPDATE t2 SET b=82876 WHERE a=6177;\nUPDATE t2 SET b=57836 WHERE a=6178;\nUPDATE t2 SET b=50496 WHERE a=6179;\nUPDATE t2 SET b=22550 WHERE a=6180;\nUPDATE t2 SET b=26605 WHERE a=6181;\nUPDATE t2 SET b=59836 WHERE a=6182;\nUPDATE t2 SET b=7642 WHERE a=6183;\nUPDATE t2 SET b=23587 WHERE a=6184;\nUPDATE t2 SET b=70194 WHERE a=6185;\nUPDATE t2 SET b=39549 WHERE a=6186;\nUPDATE t2 SET b=46514 WHERE a=6187;\nUPDATE t2 SET b=98773 WHERE a=6188;\nUPDATE t2 SET b=33124 WHERE a=6189;\nUPDATE t2 SET b=20306 WHERE a=6190;\nUPDATE t2 SET b=14682 WHERE a=6191;\nUPDATE t2 SET b=41918 WHERE a=6192;\nUPDATE t2 SET b=7026 WHERE a=6193;\nUPDATE t2 SET b=63581 WHERE a=6194;\nUPDATE t2 SET b=22466 WHERE a=6195;\nUPDATE t2 SET b=1283 WHERE a=6196;\nUPDATE t2 SET b=9397 WHERE a=6197;\nUPDATE t2 SET b=837 WHERE a=6198;\nUPDATE t2 SET b=60852 WHERE a=6199;\nUPDATE t2 SET b=45284 WHERE a=6200;\nUPDATE t2 SET b=40126 WHERE a=6201;\nUPDATE t2 SET b=96426 WHERE a=6202;\nUPDATE t2 SET b=85524 WHERE a=6203;\nUPDATE t2 SET b=93449 WHERE a=6204;\nUPDATE t2 SET b=50254 WHERE a=6205;\nUPDATE t2 SET b=7196 WHERE a=6206;\nUPDATE t2 SET b=68727 WHERE a=6207;\nUPDATE t2 SET b=58895 WHERE a=6208;\nUPDATE t2 SET b=91170 WHERE a=6209;\nUPDATE t2 SET b=67843 WHERE a=6210;\nUPDATE t2 SET b=58145 WHERE a=6211;\nUPDATE t2 SET b=64200 WHERE a=6212;\nUPDATE t2 SET b=45891 WHERE a=6213;\nUPDATE t2 SET b=30988 WHERE a=6214;\nUPDATE t2 SET b=50170 WHERE a=6215;\nUPDATE t2 SET b=12004 WHERE a=6216;\nUPDATE t2 SET b=6512 WHERE a=6217;\nUPDATE t2 SET b=10770 WHERE a=6218;\nUPDATE t2 SET b=8697 WHERE a=6219;\nUPDATE t2 SET b=46467 WHERE a=6220;\nUPDATE t2 SET b=15742 WHERE a=6221;\nUPDATE t2 SET b=92371 WHERE a=6222;\nUPDATE t2 SET b=36505 WHERE a=6223;\nUPDATE t2 SET b=81914 WHERE a=6224;\nUPDATE t2 SET b=31216 WHERE a=6225;\nUPDATE t2 SET b=91064 WHERE a=6226;\nUPDATE t2 SET b=45582 WHERE a=6227;\nUPDATE t2 SET b=53116 WHERE a=6228;\nUPDATE t2 SET b=24497 WHERE a=6229;\nUPDATE t2 SET b=4509 WHERE a=6230;\nUPDATE t2 SET b=79209 WHERE a=6231;\nUPDATE t2 SET b=55395 WHERE a=6232;\nUPDATE t2 SET b=16632 WHERE a=6233;\nUPDATE t2 SET b=6870 WHERE a=6234;\nUPDATE t2 SET b=80258 WHERE a=6235;\nUPDATE t2 SET b=13784 WHERE a=6236;\nUPDATE t2 SET b=42298 WHERE a=6237;\nUPDATE t2 SET b=91498 WHERE a=6238;\nUPDATE t2 SET b=16334 WHERE a=6239;\nUPDATE t2 SET b=65072 WHERE a=6240;\nUPDATE t2 SET b=74035 WHERE a=6241;\nUPDATE t2 SET b=67542 WHERE a=6242;\nUPDATE t2 SET b=80348 WHERE a=6243;\nUPDATE t2 SET b=3597 WHERE a=6244;\nUPDATE t2 SET b=30565 WHERE a=6245;\nUPDATE t2 SET b=41410 WHERE a=6246;\nUPDATE t2 SET b=95825 WHERE a=6247;\nUPDATE t2 SET b=99170 WHERE a=6248;\nUPDATE t2 SET b=47790 WHERE a=6249;\nUPDATE t2 SET b=25580 WHERE a=6250;\nUPDATE t2 SET b=18618 WHERE a=6251;\nUPDATE t2 SET b=156 WHERE a=6252;\nUPDATE t2 SET b=10028 WHERE a=6253;\nUPDATE t2 SET b=23177 WHERE a=6254;\nUPDATE t2 SET b=12557 WHERE a=6255;\nUPDATE t2 SET b=71941 WHERE a=6256;\nUPDATE t2 SET b=39905 WHERE a=6257;\nUPDATE t2 SET b=97710 WHERE a=6258;\nUPDATE t2 SET b=66797 WHERE a=6259;\nUPDATE t2 SET b=62243 WHERE a=6260;\nUPDATE t2 SET b=76339 WHERE a=6261;\nUPDATE t2 SET b=7928 WHERE a=6262;\nUPDATE t2 SET b=80971 WHERE a=6263;\nUPDATE t2 SET b=31555 WHERE a=6264;\nUPDATE t2 SET b=47388 WHERE a=6265;\nUPDATE t2 SET b=20286 WHERE a=6266;\nUPDATE t2 SET b=20585 WHERE a=6267;\nUPDATE t2 SET b=91266 WHERE a=6268;\nUPDATE t2 SET b=12605 WHERE a=6269;\nUPDATE t2 SET b=3318 WHERE a=6270;\nUPDATE t2 SET b=69166 WHERE a=6271;\nUPDATE t2 SET b=11072 WHERE a=6272;\nUPDATE t2 SET b=18331 WHERE a=6273;\nUPDATE t2 SET b=46249 WHERE a=6274;\nUPDATE t2 SET b=82174 WHERE a=6275;\nUPDATE t2 SET b=31058 WHERE a=6276;\nUPDATE t2 SET b=67157 WHERE a=6277;\nUPDATE t2 SET b=84326 WHERE a=6278;\nUPDATE t2 SET b=61339 WHERE a=6279;\nUPDATE t2 SET b=53539 WHERE a=6280;\nUPDATE t2 SET b=17264 WHERE a=6281;\nUPDATE t2 SET b=33677 WHERE a=6282;\nUPDATE t2 SET b=48966 WHERE a=6283;\nUPDATE t2 SET b=98545 WHERE a=6284;\nUPDATE t2 SET b=85749 WHERE a=6285;\nUPDATE t2 SET b=74689 WHERE a=6286;\nUPDATE t2 SET b=75538 WHERE a=6287;\nUPDATE t2 SET b=38074 WHERE a=6288;\nUPDATE t2 SET b=77956 WHERE a=6289;\nUPDATE t2 SET b=50222 WHERE a=6290;\nUPDATE t2 SET b=48902 WHERE a=6291;\nUPDATE t2 SET b=51074 WHERE a=6292;\nUPDATE t2 SET b=37407 WHERE a=6293;\nUPDATE t2 SET b=13060 WHERE a=6294;\nUPDATE t2 SET b=37511 WHERE a=6295;\nUPDATE t2 SET b=43415 WHERE a=6296;\nUPDATE t2 SET b=63497 WHERE a=6297;\nUPDATE t2 SET b=90091 WHERE a=6298;\nUPDATE t2 SET b=74566 WHERE a=6299;\nUPDATE t2 SET b=93764 WHERE a=6300;\nUPDATE t2 SET b=48711 WHERE a=6301;\nUPDATE t2 SET b=7 WHERE a=6302;\nUPDATE t2 SET b=56239 WHERE a=6303;\nUPDATE t2 SET b=91019 WHERE a=6304;\nUPDATE t2 SET b=57403 WHERE a=6305;\nUPDATE t2 SET b=82785 WHERE a=6306;\nUPDATE t2 SET b=25636 WHERE a=6307;\nUPDATE t2 SET b=61080 WHERE a=6308;\nUPDATE t2 SET b=60527 WHERE a=6309;\nUPDATE t2 SET b=22326 WHERE a=6310;\nUPDATE t2 SET b=52390 WHERE a=6311;\nUPDATE t2 SET b=2927 WHERE a=6312;\nUPDATE t2 SET b=99754 WHERE a=6313;\nUPDATE t2 SET b=6421 WHERE a=6314;\nUPDATE t2 SET b=17689 WHERE a=6315;\nUPDATE t2 SET b=27198 WHERE a=6316;\nUPDATE t2 SET b=73794 WHERE a=6317;\nUPDATE t2 SET b=40455 WHERE a=6318;\nUPDATE t2 SET b=11844 WHERE a=6319;\nUPDATE t2 SET b=13662 WHERE a=6320;\nUPDATE t2 SET b=39155 WHERE a=6321;\nUPDATE t2 SET b=71625 WHERE a=6322;\nUPDATE t2 SET b=33711 WHERE a=6323;\nUPDATE t2 SET b=85275 WHERE a=6324;\nUPDATE t2 SET b=42306 WHERE a=6325;\nUPDATE t2 SET b=23403 WHERE a=6326;\nUPDATE t2 SET b=8036 WHERE a=6327;\nUPDATE t2 SET b=3220 WHERE a=6328;\nUPDATE t2 SET b=97476 WHERE a=6329;\nUPDATE t2 SET b=51362 WHERE a=6330;\nUPDATE t2 SET b=70523 WHERE a=6331;\nUPDATE t2 SET b=78425 WHERE a=6332;\nUPDATE t2 SET b=36759 WHERE a=6333;\nUPDATE t2 SET b=80149 WHERE a=6334;\nUPDATE t2 SET b=98260 WHERE a=6335;\nUPDATE t2 SET b=95629 WHERE a=6336;\nUPDATE t2 SET b=52537 WHERE a=6337;\nUPDATE t2 SET b=66037 WHERE a=6338;\nUPDATE t2 SET b=55692 WHERE a=6339;\nUPDATE t2 SET b=1724 WHERE a=6340;\nUPDATE t2 SET b=17779 WHERE a=6341;\nUPDATE t2 SET b=97797 WHERE a=6342;\nUPDATE t2 SET b=13302 WHERE a=6343;\nUPDATE t2 SET b=76519 WHERE a=6344;\nUPDATE t2 SET b=43347 WHERE a=6345;\nUPDATE t2 SET b=2386 WHERE a=6346;\nUPDATE t2 SET b=159 WHERE a=6347;\nUPDATE t2 SET b=22388 WHERE a=6348;\nUPDATE t2 SET b=85561 WHERE a=6349;\nUPDATE t2 SET b=79617 WHERE a=6350;\nUPDATE t2 SET b=20329 WHERE a=6351;\nUPDATE t2 SET b=24386 WHERE a=6352;\nUPDATE t2 SET b=84287 WHERE a=6353;\nUPDATE t2 SET b=92799 WHERE a=6354;\nUPDATE t2 SET b=95169 WHERE a=6355;\nUPDATE t2 SET b=81240 WHERE a=6356;\nUPDATE t2 SET b=7188 WHERE a=6357;\nUPDATE t2 SET b=3544 WHERE a=6358;\nUPDATE t2 SET b=78374 WHERE a=6359;\nUPDATE t2 SET b=87782 WHERE a=6360;\nUPDATE t2 SET b=69044 WHERE a=6361;\nUPDATE t2 SET b=85068 WHERE a=6362;\nUPDATE t2 SET b=51997 WHERE a=6363;\nUPDATE t2 SET b=29015 WHERE a=6364;\nUPDATE t2 SET b=77139 WHERE a=6365;\nUPDATE t2 SET b=39708 WHERE a=6366;\nUPDATE t2 SET b=95736 WHERE a=6367;\nUPDATE t2 SET b=52624 WHERE a=6368;\nUPDATE t2 SET b=28121 WHERE a=6369;\nUPDATE t2 SET b=11694 WHERE a=6370;\nUPDATE t2 SET b=69610 WHERE a=6371;\nUPDATE t2 SET b=95334 WHERE a=6372;\nUPDATE t2 SET b=29084 WHERE a=6373;\nUPDATE t2 SET b=91716 WHERE a=6374;\nUPDATE t2 SET b=17757 WHERE a=6375;\nUPDATE t2 SET b=93429 WHERE a=6376;\nUPDATE t2 SET b=12368 WHERE a=6377;\nUPDATE t2 SET b=8956 WHERE a=6378;\nUPDATE t2 SET b=15223 WHERE a=6379;\nUPDATE t2 SET b=44078 WHERE a=6380;\nUPDATE t2 SET b=10277 WHERE a=6381;\nUPDATE t2 SET b=85380 WHERE a=6382;\nUPDATE t2 SET b=55843 WHERE a=6383;\nUPDATE t2 SET b=75765 WHERE a=6384;\nUPDATE t2 SET b=27704 WHERE a=6385;\nUPDATE t2 SET b=50144 WHERE a=6386;\nUPDATE t2 SET b=64912 WHERE a=6387;\nUPDATE t2 SET b=51113 WHERE a=6388;\nUPDATE t2 SET b=68340 WHERE a=6389;\nUPDATE t2 SET b=95798 WHERE a=6390;\nUPDATE t2 SET b=39644 WHERE a=6391;\nUPDATE t2 SET b=6586 WHERE a=6392;\nUPDATE t2 SET b=94539 WHERE a=6393;\nUPDATE t2 SET b=21607 WHERE a=6394;\nUPDATE t2 SET b=19083 WHERE a=6395;\nUPDATE t2 SET b=45641 WHERE a=6396;\nUPDATE t2 SET b=53663 WHERE a=6397;\nUPDATE t2 SET b=9443 WHERE a=6398;\nUPDATE t2 SET b=33530 WHERE a=6399;\nUPDATE t2 SET b=49486 WHERE a=6400;\nUPDATE t2 SET b=67559 WHERE a=6401;\nUPDATE t2 SET b=76982 WHERE a=6402;\nUPDATE t2 SET b=17370 WHERE a=6403;\nUPDATE t2 SET b=36932 WHERE a=6404;\nUPDATE t2 SET b=27737 WHERE a=6405;\nUPDATE t2 SET b=72397 WHERE a=6406;\nUPDATE t2 SET b=49933 WHERE a=6407;\nUPDATE t2 SET b=28988 WHERE a=6408;\nUPDATE t2 SET b=24074 WHERE a=6409;\nUPDATE t2 SET b=94526 WHERE a=6410;\nUPDATE t2 SET b=28416 WHERE a=6411;\nUPDATE t2 SET b=48959 WHERE a=6412;\nUPDATE t2 SET b=55233 WHERE a=6413;\nUPDATE t2 SET b=93673 WHERE a=6414;\nUPDATE t2 SET b=84465 WHERE a=6415;\nUPDATE t2 SET b=36734 WHERE a=6416;\nUPDATE t2 SET b=27450 WHERE a=6417;\nUPDATE t2 SET b=76938 WHERE a=6418;\nUPDATE t2 SET b=92785 WHERE a=6419;\nUPDATE t2 SET b=37819 WHERE a=6420;\nUPDATE t2 SET b=17583 WHERE a=6421;\nUPDATE t2 SET b=33606 WHERE a=6422;\nUPDATE t2 SET b=19399 WHERE a=6423;\nUPDATE t2 SET b=2168 WHERE a=6424;\nUPDATE t2 SET b=36856 WHERE a=6425;\nUPDATE t2 SET b=25841 WHERE a=6426;\nUPDATE t2 SET b=74933 WHERE a=6427;\nUPDATE t2 SET b=17299 WHERE a=6428;\nUPDATE t2 SET b=88633 WHERE a=6429;\nUPDATE t2 SET b=27749 WHERE a=6430;\nUPDATE t2 SET b=25847 WHERE a=6431;\nUPDATE t2 SET b=20666 WHERE a=6432;\nUPDATE t2 SET b=37665 WHERE a=6433;\nUPDATE t2 SET b=58594 WHERE a=6434;\nUPDATE t2 SET b=95307 WHERE a=6435;\nUPDATE t2 SET b=51825 WHERE a=6436;\nUPDATE t2 SET b=26536 WHERE a=6437;\nUPDATE t2 SET b=14539 WHERE a=6438;\nUPDATE t2 SET b=3508 WHERE a=6439;\nUPDATE t2 SET b=62321 WHERE a=6440;\nUPDATE t2 SET b=66119 WHERE a=6441;\nUPDATE t2 SET b=97 WHERE a=6442;\nUPDATE t2 SET b=77539 WHERE a=6443;\nUPDATE t2 SET b=13291 WHERE a=6444;\nUPDATE t2 SET b=39195 WHERE a=6445;\nUPDATE t2 SET b=21767 WHERE a=6446;\nUPDATE t2 SET b=73152 WHERE a=6447;\nUPDATE t2 SET b=40138 WHERE a=6448;\nUPDATE t2 SET b=87988 WHERE a=6449;\nUPDATE t2 SET b=52641 WHERE a=6450;\nUPDATE t2 SET b=67307 WHERE a=6451;\nUPDATE t2 SET b=79070 WHERE a=6452;\nUPDATE t2 SET b=86198 WHERE a=6453;\nUPDATE t2 SET b=85940 WHERE a=6454;\nUPDATE t2 SET b=65067 WHERE a=6455;\nUPDATE t2 SET b=76541 WHERE a=6456;\nUPDATE t2 SET b=76322 WHERE a=6457;\nUPDATE t2 SET b=2298 WHERE a=6458;\nUPDATE t2 SET b=65899 WHERE a=6459;\nUPDATE t2 SET b=72008 WHERE a=6460;\nUPDATE t2 SET b=64800 WHERE a=6461;\nUPDATE t2 SET b=40093 WHERE a=6462;\nUPDATE t2 SET b=16191 WHERE a=6463;\nUPDATE t2 SET b=25040 WHERE a=6464;\nUPDATE t2 SET b=92463 WHERE a=6465;\nUPDATE t2 SET b=61802 WHERE a=6466;\nUPDATE t2 SET b=57756 WHERE a=6467;\nUPDATE t2 SET b=15267 WHERE a=6468;\nUPDATE t2 SET b=26284 WHERE a=6469;\nUPDATE t2 SET b=28865 WHERE a=6470;\nUPDATE t2 SET b=19264 WHERE a=6471;\nUPDATE t2 SET b=10434 WHERE a=6472;\nUPDATE t2 SET b=7865 WHERE a=6473;\nUPDATE t2 SET b=496 WHERE a=6474;\nUPDATE t2 SET b=84507 WHERE a=6475;\nUPDATE t2 SET b=12745 WHERE a=6476;\nUPDATE t2 SET b=98045 WHERE a=6477;\nUPDATE t2 SET b=57812 WHERE a=6478;\nUPDATE t2 SET b=28547 WHERE a=6479;\nUPDATE t2 SET b=93968 WHERE a=6480;\nUPDATE t2 SET b=12097 WHERE a=6481;\nUPDATE t2 SET b=17402 WHERE a=6482;\nUPDATE t2 SET b=22856 WHERE a=6483;\nUPDATE t2 SET b=32026 WHERE a=6484;\nUPDATE t2 SET b=94362 WHERE a=6485;\nUPDATE t2 SET b=20659 WHERE a=6486;\nUPDATE t2 SET b=34180 WHERE a=6487;\nUPDATE t2 SET b=32004 WHERE a=6488;\nUPDATE t2 SET b=55721 WHERE a=6489;\nUPDATE t2 SET b=37339 WHERE a=6490;\nUPDATE t2 SET b=59082 WHERE a=6491;\nUPDATE t2 SET b=21000 WHERE a=6492;\nUPDATE t2 SET b=92083 WHERE a=6493;\nUPDATE t2 SET b=91825 WHERE a=6494;\nUPDATE t2 SET b=97977 WHERE a=6495;\nUPDATE t2 SET b=70016 WHERE a=6496;\nUPDATE t2 SET b=41189 WHERE a=6497;\nUPDATE t2 SET b=2563 WHERE a=6498;\nUPDATE t2 SET b=89223 WHERE a=6499;\nUPDATE t2 SET b=2325 WHERE a=6500;\nUPDATE t2 SET b=10041 WHERE a=6501;\nUPDATE t2 SET b=37877 WHERE a=6502;\nUPDATE t2 SET b=33368 WHERE a=6503;\nUPDATE t2 SET b=61969 WHERE a=6504;\nUPDATE t2 SET b=89884 WHERE a=6505;\nUPDATE t2 SET b=69323 WHERE a=6506;\nUPDATE t2 SET b=31860 WHERE a=6507;\nUPDATE t2 SET b=3396 WHERE a=6508;\nUPDATE t2 SET b=58710 WHERE a=6509;\nUPDATE t2 SET b=68021 WHERE a=6510;\nUPDATE t2 SET b=56101 WHERE a=6511;\nUPDATE t2 SET b=52717 WHERE a=6512;\nUPDATE t2 SET b=36117 WHERE a=6513;\nUPDATE t2 SET b=23228 WHERE a=6514;\nUPDATE t2 SET b=31581 WHERE a=6515;\nUPDATE t2 SET b=71657 WHERE a=6516;\nUPDATE t2 SET b=31590 WHERE a=6517;\nUPDATE t2 SET b=46270 WHERE a=6518;\nUPDATE t2 SET b=97381 WHERE a=6519;\nUPDATE t2 SET b=92681 WHERE a=6520;\nUPDATE t2 SET b=92738 WHERE a=6521;\nUPDATE t2 SET b=16293 WHERE a=6522;\nUPDATE t2 SET b=89538 WHERE a=6523;\nUPDATE t2 SET b=53186 WHERE a=6524;\nUPDATE t2 SET b=7875 WHERE a=6525;\nUPDATE t2 SET b=57146 WHERE a=6526;\nUPDATE t2 SET b=17824 WHERE a=6527;\nUPDATE t2 SET b=85686 WHERE a=6528;\nUPDATE t2 SET b=34592 WHERE a=6529;\nUPDATE t2 SET b=96786 WHERE a=6530;\nUPDATE t2 SET b=65682 WHERE a=6531;\nUPDATE t2 SET b=52371 WHERE a=6532;\nUPDATE t2 SET b=38649 WHERE a=6533;\nUPDATE t2 SET b=78370 WHERE a=6534;\nUPDATE t2 SET b=87291 WHERE a=6535;\nUPDATE t2 SET b=51920 WHERE a=6536;\nUPDATE t2 SET b=31570 WHERE a=6537;\nUPDATE t2 SET b=84240 WHERE a=6538;\nUPDATE t2 SET b=73160 WHERE a=6539;\nUPDATE t2 SET b=56850 WHERE a=6540;\nUPDATE t2 SET b=64076 WHERE a=6541;\nUPDATE t2 SET b=48558 WHERE a=6542;\nUPDATE t2 SET b=42974 WHERE a=6543;\nUPDATE t2 SET b=2980 WHERE a=6544;\nUPDATE t2 SET b=96809 WHERE a=6545;\nUPDATE t2 SET b=84846 WHERE a=6546;\nUPDATE t2 SET b=18923 WHERE a=6547;\nUPDATE t2 SET b=52467 WHERE a=6548;\nUPDATE t2 SET b=7198 WHERE a=6549;\nUPDATE t2 SET b=71308 WHERE a=6550;\nUPDATE t2 SET b=73577 WHERE a=6551;\nUPDATE t2 SET b=96434 WHERE a=6552;\nUPDATE t2 SET b=54848 WHERE a=6553;\nUPDATE t2 SET b=5367 WHERE a=6554;\nUPDATE t2 SET b=47949 WHERE a=6555;\nUPDATE t2 SET b=21913 WHERE a=6556;\nUPDATE t2 SET b=95675 WHERE a=6557;\nUPDATE t2 SET b=23161 WHERE a=6558;\nUPDATE t2 SET b=94671 WHERE a=6559;\nUPDATE t2 SET b=53717 WHERE a=6560;\nUPDATE t2 SET b=96165 WHERE a=6561;\nUPDATE t2 SET b=98821 WHERE a=6562;\nUPDATE t2 SET b=29763 WHERE a=6563;\nUPDATE t2 SET b=19452 WHERE a=6564;\nUPDATE t2 SET b=54521 WHERE a=6565;\nUPDATE t2 SET b=34950 WHERE a=6566;\nUPDATE t2 SET b=18075 WHERE a=6567;\nUPDATE t2 SET b=84366 WHERE a=6568;\nUPDATE t2 SET b=88795 WHERE a=6569;\nUPDATE t2 SET b=9313 WHERE a=6570;\nUPDATE t2 SET b=14024 WHERE a=6571;\nUPDATE t2 SET b=23594 WHERE a=6572;\nUPDATE t2 SET b=30544 WHERE a=6573;\nUPDATE t2 SET b=39508 WHERE a=6574;\nUPDATE t2 SET b=23614 WHERE a=6575;\nUPDATE t2 SET b=61544 WHERE a=6576;\nUPDATE t2 SET b=4649 WHERE a=6577;\nUPDATE t2 SET b=92175 WHERE a=6578;\nUPDATE t2 SET b=79990 WHERE a=6579;\nUPDATE t2 SET b=7553 WHERE a=6580;\nUPDATE t2 SET b=8972 WHERE a=6581;\nUPDATE t2 SET b=63971 WHERE a=6582;\nUPDATE t2 SET b=91791 WHERE a=6583;\nUPDATE t2 SET b=55231 WHERE a=6584;\nUPDATE t2 SET b=74639 WHERE a=6585;\nUPDATE t2 SET b=9045 WHERE a=6586;\nUPDATE t2 SET b=3357 WHERE a=6587;\nUPDATE t2 SET b=34520 WHERE a=6588;\nUPDATE t2 SET b=99230 WHERE a=6589;\nUPDATE t2 SET b=11400 WHERE a=6590;\nUPDATE t2 SET b=27467 WHERE a=6591;\nUPDATE t2 SET b=12154 WHERE a=6592;\nUPDATE t2 SET b=5765 WHERE a=6593;\nUPDATE t2 SET b=53453 WHERE a=6594;\nUPDATE t2 SET b=78963 WHERE a=6595;\nUPDATE t2 SET b=90652 WHERE a=6596;\nUPDATE t2 SET b=48168 WHERE a=6597;\nUPDATE t2 SET b=24898 WHERE a=6598;\nUPDATE t2 SET b=29305 WHERE a=6599;\nUPDATE t2 SET b=56164 WHERE a=6600;\nUPDATE t2 SET b=41776 WHERE a=6601;\nUPDATE t2 SET b=98200 WHERE a=6602;\nUPDATE t2 SET b=42578 WHERE a=6603;\nUPDATE t2 SET b=72533 WHERE a=6604;\nUPDATE t2 SET b=9466 WHERE a=6605;\nUPDATE t2 SET b=44753 WHERE a=6606;\nUPDATE t2 SET b=69135 WHERE a=6607;\nUPDATE t2 SET b=4505 WHERE a=6608;\nUPDATE t2 SET b=33490 WHERE a=6609;\nUPDATE t2 SET b=14329 WHERE a=6610;\nUPDATE t2 SET b=95419 WHERE a=6611;\nUPDATE t2 SET b=56355 WHERE a=6612;\nUPDATE t2 SET b=11673 WHERE a=6613;\nUPDATE t2 SET b=26267 WHERE a=6614;\nUPDATE t2 SET b=48860 WHERE a=6615;\nUPDATE t2 SET b=40570 WHERE a=6616;\nUPDATE t2 SET b=42127 WHERE a=6617;\nUPDATE t2 SET b=17155 WHERE a=6618;\nUPDATE t2 SET b=91647 WHERE a=6619;\nUPDATE t2 SET b=2245 WHERE a=6620;\nUPDATE t2 SET b=75551 WHERE a=6621;\nUPDATE t2 SET b=16893 WHERE a=6622;\nUPDATE t2 SET b=48973 WHERE a=6623;\nUPDATE t2 SET b=45628 WHERE a=6624;\nUPDATE t2 SET b=81570 WHERE a=6625;\nUPDATE t2 SET b=72515 WHERE a=6626;\nUPDATE t2 SET b=84315 WHERE a=6627;\nUPDATE t2 SET b=51236 WHERE a=6628;\nUPDATE t2 SET b=85908 WHERE a=6629;\nUPDATE t2 SET b=27349 WHERE a=6630;\nUPDATE t2 SET b=87226 WHERE a=6631;\nUPDATE t2 SET b=55536 WHERE a=6632;\nUPDATE t2 SET b=38019 WHERE a=6633;\nUPDATE t2 SET b=93406 WHERE a=6634;\nUPDATE t2 SET b=45901 WHERE a=6635;\nUPDATE t2 SET b=70048 WHERE a=6636;\nUPDATE t2 SET b=60079 WHERE a=6637;\nUPDATE t2 SET b=49715 WHERE a=6638;\nUPDATE t2 SET b=20359 WHERE a=6639;\nUPDATE t2 SET b=78554 WHERE a=6640;\nUPDATE t2 SET b=80028 WHERE a=6641;\nUPDATE t2 SET b=84811 WHERE a=6642;\nUPDATE t2 SET b=16718 WHERE a=6643;\nUPDATE t2 SET b=23178 WHERE a=6644;\nUPDATE t2 SET b=77411 WHERE a=6645;\nUPDATE t2 SET b=31724 WHERE a=6646;\nUPDATE t2 SET b=81665 WHERE a=6647;\nUPDATE t2 SET b=75440 WHERE a=6648;\nUPDATE t2 SET b=40299 WHERE a=6649;\nUPDATE t2 SET b=19223 WHERE a=6650;\nUPDATE t2 SET b=26800 WHERE a=6651;\nUPDATE t2 SET b=10490 WHERE a=6652;\nUPDATE t2 SET b=75223 WHERE a=6653;\nUPDATE t2 SET b=86720 WHERE a=6654;\nUPDATE t2 SET b=85467 WHERE a=6655;\nUPDATE t2 SET b=32553 WHERE a=6656;\nUPDATE t2 SET b=70131 WHERE a=6657;\nUPDATE t2 SET b=59848 WHERE a=6658;\nUPDATE t2 SET b=43299 WHERE a=6659;\nUPDATE t2 SET b=75771 WHERE a=6660;\nUPDATE t2 SET b=54780 WHERE a=6661;\nUPDATE t2 SET b=80500 WHERE a=6662;\nUPDATE t2 SET b=29143 WHERE a=6663;\nUPDATE t2 SET b=59057 WHERE a=6664;\nUPDATE t2 SET b=49705 WHERE a=6665;\nUPDATE t2 SET b=23045 WHERE a=6666;\nUPDATE t2 SET b=85408 WHERE a=6667;\nUPDATE t2 SET b=94635 WHERE a=6668;\nUPDATE t2 SET b=27403 WHERE a=6669;\nUPDATE t2 SET b=65019 WHERE a=6670;\nUPDATE t2 SET b=35721 WHERE a=6671;\nUPDATE t2 SET b=65174 WHERE a=6672;\nUPDATE t2 SET b=34770 WHERE a=6673;\nUPDATE t2 SET b=63849 WHERE a=6674;\nUPDATE t2 SET b=79948 WHERE a=6675;\nUPDATE t2 SET b=60418 WHERE a=6676;\nUPDATE t2 SET b=88799 WHERE a=6677;\nUPDATE t2 SET b=96176 WHERE a=6678;\nUPDATE t2 SET b=7160 WHERE a=6679;\nUPDATE t2 SET b=67069 WHERE a=6680;\nUPDATE t2 SET b=7970 WHERE a=6681;\nUPDATE t2 SET b=27296 WHERE a=6682;\nUPDATE t2 SET b=17183 WHERE a=6683;\nUPDATE t2 SET b=56338 WHERE a=6684;\nUPDATE t2 SET b=18523 WHERE a=6685;\nUPDATE t2 SET b=13180 WHERE a=6686;\nUPDATE t2 SET b=46298 WHERE a=6687;\nUPDATE t2 SET b=63305 WHERE a=6688;\nUPDATE t2 SET b=69151 WHERE a=6689;\nUPDATE t2 SET b=1195 WHERE a=6690;\nUPDATE t2 SET b=56207 WHERE a=6691;\nUPDATE t2 SET b=1383 WHERE a=6692;\nUPDATE t2 SET b=52046 WHERE a=6693;\nUPDATE t2 SET b=16719 WHERE a=6694;\nUPDATE t2 SET b=54094 WHERE a=6695;\nUPDATE t2 SET b=34696 WHERE a=6696;\nUPDATE t2 SET b=88609 WHERE a=6697;\nUPDATE t2 SET b=91210 WHERE a=6698;\nUPDATE t2 SET b=46901 WHERE a=6699;\nUPDATE t2 SET b=97315 WHERE a=6700;\nUPDATE t2 SET b=35659 WHERE a=6701;\nUPDATE t2 SET b=46831 WHERE a=6702;\nUPDATE t2 SET b=36901 WHERE a=6703;\nUPDATE t2 SET b=28551 WHERE a=6704;\nUPDATE t2 SET b=95956 WHERE a=6705;\nUPDATE t2 SET b=41634 WHERE a=6706;\nUPDATE t2 SET b=83616 WHERE a=6707;\nUPDATE t2 SET b=38001 WHERE a=6708;\nUPDATE t2 SET b=20467 WHERE a=6709;\nUPDATE t2 SET b=52239 WHERE a=6710;\nUPDATE t2 SET b=60177 WHERE a=6711;\nUPDATE t2 SET b=88328 WHERE a=6712;\nUPDATE t2 SET b=81887 WHERE a=6713;\nUPDATE t2 SET b=61670 WHERE a=6714;\nUPDATE t2 SET b=64910 WHERE a=6715;\nUPDATE t2 SET b=76635 WHERE a=6716;\nUPDATE t2 SET b=22264 WHERE a=6717;\nUPDATE t2 SET b=87007 WHERE a=6718;\nUPDATE t2 SET b=14803 WHERE a=6719;\nUPDATE t2 SET b=62755 WHERE a=6720;\nUPDATE t2 SET b=31376 WHERE a=6721;\nUPDATE t2 SET b=42250 WHERE a=6722;\nUPDATE t2 SET b=91126 WHERE a=6723;\nUPDATE t2 SET b=57698 WHERE a=6724;\nUPDATE t2 SET b=57643 WHERE a=6725;\nUPDATE t2 SET b=50329 WHERE a=6726;\nUPDATE t2 SET b=97781 WHERE a=6727;\nUPDATE t2 SET b=73723 WHERE a=6728;\nUPDATE t2 SET b=51404 WHERE a=6729;\nUPDATE t2 SET b=78773 WHERE a=6730;\nUPDATE t2 SET b=91542 WHERE a=6731;\nUPDATE t2 SET b=51119 WHERE a=6732;\nUPDATE t2 SET b=59285 WHERE a=6733;\nUPDATE t2 SET b=23073 WHERE a=6734;\nUPDATE t2 SET b=40076 WHERE a=6735;\nUPDATE t2 SET b=71610 WHERE a=6736;\nUPDATE t2 SET b=70810 WHERE a=6737;\nUPDATE t2 SET b=55505 WHERE a=6738;\nUPDATE t2 SET b=74238 WHERE a=6739;\nUPDATE t2 SET b=59328 WHERE a=6740;\nUPDATE t2 SET b=89743 WHERE a=6741;\nUPDATE t2 SET b=29796 WHERE a=6742;\nUPDATE t2 SET b=60473 WHERE a=6743;\nUPDATE t2 SET b=59658 WHERE a=6744;\nUPDATE t2 SET b=59575 WHERE a=6745;\nUPDATE t2 SET b=73999 WHERE a=6746;\nUPDATE t2 SET b=35243 WHERE a=6747;\nUPDATE t2 SET b=11142 WHERE a=6748;\nUPDATE t2 SET b=34081 WHERE a=6749;\nUPDATE t2 SET b=4802 WHERE a=6750;\nUPDATE t2 SET b=24509 WHERE a=6751;\nUPDATE t2 SET b=13494 WHERE a=6752;\nUPDATE t2 SET b=67696 WHERE a=6753;\nUPDATE t2 SET b=12147 WHERE a=6754;\nUPDATE t2 SET b=85713 WHERE a=6755;\nUPDATE t2 SET b=13848 WHERE a=6756;\nUPDATE t2 SET b=82310 WHERE a=6757;\nUPDATE t2 SET b=10304 WHERE a=6758;\nUPDATE t2 SET b=76098 WHERE a=6759;\nUPDATE t2 SET b=3689 WHERE a=6760;\nUPDATE t2 SET b=59771 WHERE a=6761;\nUPDATE t2 SET b=39129 WHERE a=6762;\nUPDATE t2 SET b=37284 WHERE a=6763;\nUPDATE t2 SET b=83630 WHERE a=6764;\nUPDATE t2 SET b=76605 WHERE a=6765;\nUPDATE t2 SET b=5758 WHERE a=6766;\nUPDATE t2 SET b=3521 WHERE a=6767;\nUPDATE t2 SET b=24754 WHERE a=6768;\nUPDATE t2 SET b=81242 WHERE a=6769;\nUPDATE t2 SET b=19597 WHERE a=6770;\nUPDATE t2 SET b=28408 WHERE a=6771;\nUPDATE t2 SET b=40778 WHERE a=6772;\nUPDATE t2 SET b=72220 WHERE a=6773;\nUPDATE t2 SET b=55862 WHERE a=6774;\nUPDATE t2 SET b=89707 WHERE a=6775;\nUPDATE t2 SET b=2895 WHERE a=6776;\nUPDATE t2 SET b=38924 WHERE a=6777;\nUPDATE t2 SET b=88660 WHERE a=6778;\nUPDATE t2 SET b=73995 WHERE a=6779;\nUPDATE t2 SET b=16164 WHERE a=6780;\nUPDATE t2 SET b=25830 WHERE a=6781;\nUPDATE t2 SET b=70313 WHERE a=6782;\nUPDATE t2 SET b=82360 WHERE a=6783;\nUPDATE t2 SET b=3409 WHERE a=6784;\nUPDATE t2 SET b=86673 WHERE a=6785;\nUPDATE t2 SET b=52043 WHERE a=6786;\nUPDATE t2 SET b=87544 WHERE a=6787;\nUPDATE t2 SET b=98088 WHERE a=6788;\nUPDATE t2 SET b=83321 WHERE a=6789;\nUPDATE t2 SET b=53703 WHERE a=6790;\nUPDATE t2 SET b=78473 WHERE a=6791;\nUPDATE t2 SET b=41327 WHERE a=6792;\nUPDATE t2 SET b=60435 WHERE a=6793;\nUPDATE t2 SET b=49798 WHERE a=6794;\nUPDATE t2 SET b=64750 WHERE a=6795;\nUPDATE t2 SET b=80043 WHERE a=6796;\nUPDATE t2 SET b=18553 WHERE a=6797;\nUPDATE t2 SET b=84866 WHERE a=6798;\nUPDATE t2 SET b=8655 WHERE a=6799;\nUPDATE t2 SET b=79720 WHERE a=6800;\nUPDATE t2 SET b=2257 WHERE a=6801;\nUPDATE t2 SET b=48553 WHERE a=6802;\nUPDATE t2 SET b=26685 WHERE a=6803;\nUPDATE t2 SET b=9980 WHERE a=6804;\nUPDATE t2 SET b=31483 WHERE a=6805;\nUPDATE t2 SET b=37534 WHERE a=6806;\nUPDATE t2 SET b=46001 WHERE a=6807;\nUPDATE t2 SET b=25724 WHERE a=6808;\nUPDATE t2 SET b=68165 WHERE a=6809;\nUPDATE t2 SET b=62719 WHERE a=6810;\nUPDATE t2 SET b=52563 WHERE a=6811;\nUPDATE t2 SET b=92104 WHERE a=6812;\nUPDATE t2 SET b=25243 WHERE a=6813;\nUPDATE t2 SET b=4940 WHERE a=6814;\nUPDATE t2 SET b=95132 WHERE a=6815;\nUPDATE t2 SET b=18992 WHERE a=6816;\nUPDATE t2 SET b=24135 WHERE a=6817;\nUPDATE t2 SET b=40702 WHERE a=6818;\nUPDATE t2 SET b=42468 WHERE a=6819;\nUPDATE t2 SET b=36133 WHERE a=6820;\nUPDATE t2 SET b=93529 WHERE a=6821;\nUPDATE t2 SET b=16712 WHERE a=6822;\nUPDATE t2 SET b=17891 WHERE a=6823;\nUPDATE t2 SET b=72698 WHERE a=6824;\nUPDATE t2 SET b=9710 WHERE a=6825;\nUPDATE t2 SET b=36515 WHERE a=6826;\nUPDATE t2 SET b=381 WHERE a=6827;\nUPDATE t2 SET b=43749 WHERE a=6828;\nUPDATE t2 SET b=81619 WHERE a=6829;\nUPDATE t2 SET b=50540 WHERE a=6830;\nUPDATE t2 SET b=40182 WHERE a=6831;\nUPDATE t2 SET b=10838 WHERE a=6832;\nUPDATE t2 SET b=97704 WHERE a=6833;\nUPDATE t2 SET b=82731 WHERE a=6834;\nUPDATE t2 SET b=26078 WHERE a=6835;\nUPDATE t2 SET b=71686 WHERE a=6836;\nUPDATE t2 SET b=17656 WHERE a=6837;\nUPDATE t2 SET b=49641 WHERE a=6838;\nUPDATE t2 SET b=79782 WHERE a=6839;\nUPDATE t2 SET b=99054 WHERE a=6840;\nUPDATE t2 SET b=22543 WHERE a=6841;\nUPDATE t2 SET b=12546 WHERE a=6842;\nUPDATE t2 SET b=89373 WHERE a=6843;\nUPDATE t2 SET b=86360 WHERE a=6844;\nUPDATE t2 SET b=30321 WHERE a=6845;\nUPDATE t2 SET b=50669 WHERE a=6846;\nUPDATE t2 SET b=32582 WHERE a=6847;\nUPDATE t2 SET b=60287 WHERE a=6848;\nUPDATE t2 SET b=49112 WHERE a=6849;\nUPDATE t2 SET b=51490 WHERE a=6850;\nUPDATE t2 SET b=17865 WHERE a=6851;\nUPDATE t2 SET b=40349 WHERE a=6852;\nUPDATE t2 SET b=13528 WHERE a=6853;\nUPDATE t2 SET b=80547 WHERE a=6854;\nUPDATE t2 SET b=73352 WHERE a=6855;\nUPDATE t2 SET b=45066 WHERE a=6856;\nUPDATE t2 SET b=7211 WHERE a=6857;\nUPDATE t2 SET b=53871 WHERE a=6858;\nUPDATE t2 SET b=42528 WHERE a=6859;\nUPDATE t2 SET b=10128 WHERE a=6860;\nUPDATE t2 SET b=71562 WHERE a=6861;\nUPDATE t2 SET b=42865 WHERE a=6862;\nUPDATE t2 SET b=99523 WHERE a=6863;\nUPDATE t2 SET b=17641 WHERE a=6864;\nUPDATE t2 SET b=71769 WHERE a=6865;\nUPDATE t2 SET b=14421 WHERE a=6866;\nUPDATE t2 SET b=43078 WHERE a=6867;\nUPDATE t2 SET b=71552 WHERE a=6868;\nUPDATE t2 SET b=2576 WHERE a=6869;\nUPDATE t2 SET b=12868 WHERE a=6870;\nUPDATE t2 SET b=58050 WHERE a=6871;\nUPDATE t2 SET b=71341 WHERE a=6872;\nUPDATE t2 SET b=92889 WHERE a=6873;\nUPDATE t2 SET b=4119 WHERE a=6874;\nUPDATE t2 SET b=58704 WHERE a=6875;\nUPDATE t2 SET b=54579 WHERE a=6876;\nUPDATE t2 SET b=39992 WHERE a=6877;\nUPDATE t2 SET b=83772 WHERE a=6878;\nUPDATE t2 SET b=22681 WHERE a=6879;\nUPDATE t2 SET b=45746 WHERE a=6880;\nUPDATE t2 SET b=36975 WHERE a=6881;\nUPDATE t2 SET b=47524 WHERE a=6882;\nUPDATE t2 SET b=92618 WHERE a=6883;\nUPDATE t2 SET b=93652 WHERE a=6884;\nUPDATE t2 SET b=87653 WHERE a=6885;\nUPDATE t2 SET b=1959 WHERE a=6886;\nUPDATE t2 SET b=65208 WHERE a=6887;\nUPDATE t2 SET b=8305 WHERE a=6888;\nUPDATE t2 SET b=2050 WHERE a=6889;\nUPDATE t2 SET b=59245 WHERE a=6890;\nUPDATE t2 SET b=68648 WHERE a=6891;\nUPDATE t2 SET b=88119 WHERE a=6892;\nUPDATE t2 SET b=95759 WHERE a=6893;\nUPDATE t2 SET b=79263 WHERE a=6894;\nUPDATE t2 SET b=51873 WHERE a=6895;\nUPDATE t2 SET b=41812 WHERE a=6896;\nUPDATE t2 SET b=18101 WHERE a=6897;\nUPDATE t2 SET b=48878 WHERE a=6898;\nUPDATE t2 SET b=76680 WHERE a=6899;\nUPDATE t2 SET b=60251 WHERE a=6900;\nUPDATE t2 SET b=3478 WHERE a=6901;\nUPDATE t2 SET b=61091 WHERE a=6902;\nUPDATE t2 SET b=29967 WHERE a=6903;\nUPDATE t2 SET b=5625 WHERE a=6904;\nUPDATE t2 SET b=30508 WHERE a=6905;\nUPDATE t2 SET b=66731 WHERE a=6906;\nUPDATE t2 SET b=31636 WHERE a=6907;\nUPDATE t2 SET b=67859 WHERE a=6908;\nUPDATE t2 SET b=33133 WHERE a=6909;\nUPDATE t2 SET b=92010 WHERE a=6910;\nUPDATE t2 SET b=62589 WHERE a=6911;\nUPDATE t2 SET b=35844 WHERE a=6912;\nUPDATE t2 SET b=18634 WHERE a=6913;\nUPDATE t2 SET b=32796 WHERE a=6914;\nUPDATE t2 SET b=10622 WHERE a=6915;\nUPDATE t2 SET b=27927 WHERE a=6916;\nUPDATE t2 SET b=75051 WHERE a=6917;\nUPDATE t2 SET b=73952 WHERE a=6918;\nUPDATE t2 SET b=53543 WHERE a=6919;\nUPDATE t2 SET b=94034 WHERE a=6920;\nUPDATE t2 SET b=85245 WHERE a=6921;\nUPDATE t2 SET b=11979 WHERE a=6922;\nUPDATE t2 SET b=77991 WHERE a=6923;\nUPDATE t2 SET b=31738 WHERE a=6924;\nUPDATE t2 SET b=60774 WHERE a=6925;\nUPDATE t2 SET b=64860 WHERE a=6926;\nUPDATE t2 SET b=72816 WHERE a=6927;\nUPDATE t2 SET b=83118 WHERE a=6928;\nUPDATE t2 SET b=61375 WHERE a=6929;\nUPDATE t2 SET b=77135 WHERE a=6930;\nUPDATE t2 SET b=84269 WHERE a=6931;\nUPDATE t2 SET b=99615 WHERE a=6932;\nUPDATE t2 SET b=62743 WHERE a=6933;\nUPDATE t2 SET b=91969 WHERE a=6934;\nUPDATE t2 SET b=21247 WHERE a=6935;\nUPDATE t2 SET b=38378 WHERE a=6936;\nUPDATE t2 SET b=76358 WHERE a=6937;\nUPDATE t2 SET b=50360 WHERE a=6938;\nUPDATE t2 SET b=79002 WHERE a=6939;\nUPDATE t2 SET b=94386 WHERE a=6940;\nUPDATE t2 SET b=71263 WHERE a=6941;\nUPDATE t2 SET b=84370 WHERE a=6942;\nUPDATE t2 SET b=88836 WHERE a=6943;\nUPDATE t2 SET b=41972 WHERE a=6944;\nUPDATE t2 SET b=33905 WHERE a=6945;\nUPDATE t2 SET b=29867 WHERE a=6946;\nUPDATE t2 SET b=39020 WHERE a=6947;\nUPDATE t2 SET b=96393 WHERE a=6948;\nUPDATE t2 SET b=1325 WHERE a=6949;\nUPDATE t2 SET b=89261 WHERE a=6950;\nUPDATE t2 SET b=93689 WHERE a=6951;\nUPDATE t2 SET b=36452 WHERE a=6952;\nUPDATE t2 SET b=19468 WHERE a=6953;\nUPDATE t2 SET b=19889 WHERE a=6954;\nUPDATE t2 SET b=99915 WHERE a=6955;\nUPDATE t2 SET b=24374 WHERE a=6956;\nUPDATE t2 SET b=84908 WHERE a=6957;\nUPDATE t2 SET b=28037 WHERE a=6958;\nUPDATE t2 SET b=82507 WHERE a=6959;\nUPDATE t2 SET b=20528 WHERE a=6960;\nUPDATE t2 SET b=27029 WHERE a=6961;\nUPDATE t2 SET b=81831 WHERE a=6962;\nUPDATE t2 SET b=74590 WHERE a=6963;\nUPDATE t2 SET b=19141 WHERE a=6964;\nUPDATE t2 SET b=12226 WHERE a=6965;\nUPDATE t2 SET b=16175 WHERE a=6966;\nUPDATE t2 SET b=40583 WHERE a=6967;\nUPDATE t2 SET b=43005 WHERE a=6968;\nUPDATE t2 SET b=28202 WHERE a=6969;\nUPDATE t2 SET b=21811 WHERE a=6970;\nUPDATE t2 SET b=60374 WHERE a=6971;\nUPDATE t2 SET b=72376 WHERE a=6972;\nUPDATE t2 SET b=46503 WHERE a=6973;\nUPDATE t2 SET b=61436 WHERE a=6974;\nUPDATE t2 SET b=38816 WHERE a=6975;\nUPDATE t2 SET b=52648 WHERE a=6976;\nUPDATE t2 SET b=81128 WHERE a=6977;\nUPDATE t2 SET b=15773 WHERE a=6978;\nUPDATE t2 SET b=33126 WHERE a=6979;\nUPDATE t2 SET b=67226 WHERE a=6980;\nUPDATE t2 SET b=4341 WHERE a=6981;\nUPDATE t2 SET b=7485 WHERE a=6982;\nUPDATE t2 SET b=47070 WHERE a=6983;\nUPDATE t2 SET b=36564 WHERE a=6984;\nUPDATE t2 SET b=68495 WHERE a=6985;\nUPDATE t2 SET b=40234 WHERE a=6986;\nUPDATE t2 SET b=39293 WHERE a=6987;\nUPDATE t2 SET b=31183 WHERE a=6988;\nUPDATE t2 SET b=55883 WHERE a=6989;\nUPDATE t2 SET b=35333 WHERE a=6990;\nUPDATE t2 SET b=96600 WHERE a=6991;\nUPDATE t2 SET b=1118 WHERE a=6992;\nUPDATE t2 SET b=44873 WHERE a=6993;\nUPDATE t2 SET b=77829 WHERE a=6994;\nUPDATE t2 SET b=4230 WHERE a=6995;\nUPDATE t2 SET b=55761 WHERE a=6996;\nUPDATE t2 SET b=36821 WHERE a=6997;\nUPDATE t2 SET b=43934 WHERE a=6998;\nUPDATE t2 SET b=49128 WHERE a=6999;\nUPDATE t2 SET b=76653 WHERE a=7000;\nUPDATE t2 SET b=53264 WHERE a=7001;\nUPDATE t2 SET b=88349 WHERE a=7002;\nUPDATE t2 SET b=38097 WHERE a=7003;\nUPDATE t2 SET b=56450 WHERE a=7004;\nUPDATE t2 SET b=56103 WHERE a=7005;\nUPDATE t2 SET b=93780 WHERE a=7006;\nUPDATE t2 SET b=53408 WHERE a=7007;\nUPDATE t2 SET b=36458 WHERE a=7008;\nUPDATE t2 SET b=92141 WHERE a=7009;\nUPDATE t2 SET b=27504 WHERE a=7010;\nUPDATE t2 SET b=44574 WHERE a=7011;\nUPDATE t2 SET b=5308 WHERE a=7012;\nUPDATE t2 SET b=22671 WHERE a=7013;\nUPDATE t2 SET b=34657 WHERE a=7014;\nUPDATE t2 SET b=59111 WHERE a=7015;\nUPDATE t2 SET b=26808 WHERE a=7016;\nUPDATE t2 SET b=51639 WHERE a=7017;\nUPDATE t2 SET b=19350 WHERE a=7018;\nUPDATE t2 SET b=38762 WHERE a=7019;\nUPDATE t2 SET b=59912 WHERE a=7020;\nUPDATE t2 SET b=92851 WHERE a=7021;\nUPDATE t2 SET b=72830 WHERE a=7022;\nUPDATE t2 SET b=96322 WHERE a=7023;\nUPDATE t2 SET b=90467 WHERE a=7024;\nUPDATE t2 SET b=31861 WHERE a=7025;\nUPDATE t2 SET b=77701 WHERE a=7026;\nUPDATE t2 SET b=63689 WHERE a=7027;\nUPDATE t2 SET b=60716 WHERE a=7028;\nUPDATE t2 SET b=33029 WHERE a=7029;\nUPDATE t2 SET b=29134 WHERE a=7030;\nUPDATE t2 SET b=6545 WHERE a=7031;\nUPDATE t2 SET b=64714 WHERE a=7032;\nUPDATE t2 SET b=46779 WHERE a=7033;\nUPDATE t2 SET b=61866 WHERE a=7034;\nUPDATE t2 SET b=50375 WHERE a=7035;\nUPDATE t2 SET b=24120 WHERE a=7036;\nUPDATE t2 SET b=10640 WHERE a=7037;\nUPDATE t2 SET b=85662 WHERE a=7038;\nUPDATE t2 SET b=86364 WHERE a=7039;\nUPDATE t2 SET b=17622 WHERE a=7040;\nUPDATE t2 SET b=18772 WHERE a=7041;\nUPDATE t2 SET b=57306 WHERE a=7042;\nUPDATE t2 SET b=75031 WHERE a=7043;\nUPDATE t2 SET b=61932 WHERE a=7044;\nUPDATE t2 SET b=76792 WHERE a=7045;\nUPDATE t2 SET b=44274 WHERE a=7046;\nUPDATE t2 SET b=95194 WHERE a=7047;\nUPDATE t2 SET b=91204 WHERE a=7048;\nUPDATE t2 SET b=99540 WHERE a=7049;\nUPDATE t2 SET b=82897 WHERE a=7050;\nUPDATE t2 SET b=24128 WHERE a=7051;\nUPDATE t2 SET b=68462 WHERE a=7052;\nUPDATE t2 SET b=64344 WHERE a=7053;\nUPDATE t2 SET b=30938 WHERE a=7054;\nUPDATE t2 SET b=76715 WHERE a=7055;\nUPDATE t2 SET b=44205 WHERE a=7056;\nUPDATE t2 SET b=80395 WHERE a=7057;\nUPDATE t2 SET b=10127 WHERE a=7058;\nUPDATE t2 SET b=13633 WHERE a=7059;\nUPDATE t2 SET b=55320 WHERE a=7060;\nUPDATE t2 SET b=80051 WHERE a=7061;\nUPDATE t2 SET b=81401 WHERE a=7062;\nUPDATE t2 SET b=69820 WHERE a=7063;\nUPDATE t2 SET b=35808 WHERE a=7064;\nUPDATE t2 SET b=95185 WHERE a=7065;\nUPDATE t2 SET b=64635 WHERE a=7066;\nUPDATE t2 SET b=60914 WHERE a=7067;\nUPDATE t2 SET b=61773 WHERE a=7068;\nUPDATE t2 SET b=30902 WHERE a=7069;\nUPDATE t2 SET b=49322 WHERE a=7070;\nUPDATE t2 SET b=2852 WHERE a=7071;\nUPDATE t2 SET b=74137 WHERE a=7072;\nUPDATE t2 SET b=58383 WHERE a=7073;\nUPDATE t2 SET b=16870 WHERE a=7074;\nUPDATE t2 SET b=55374 WHERE a=7075;\nUPDATE t2 SET b=95817 WHERE a=7076;\nUPDATE t2 SET b=415 WHERE a=7077;\nUPDATE t2 SET b=43535 WHERE a=7078;\nUPDATE t2 SET b=28068 WHERE a=7079;\nUPDATE t2 SET b=88732 WHERE a=7080;\nUPDATE t2 SET b=60081 WHERE a=7081;\nUPDATE t2 SET b=28692 WHERE a=7082;\nUPDATE t2 SET b=65221 WHERE a=7083;\nUPDATE t2 SET b=1861 WHERE a=7084;\nUPDATE t2 SET b=71234 WHERE a=7085;\nUPDATE t2 SET b=34568 WHERE a=7086;\nUPDATE t2 SET b=75835 WHERE a=7087;\nUPDATE t2 SET b=95403 WHERE a=7088;\nUPDATE t2 SET b=18630 WHERE a=7089;\nUPDATE t2 SET b=27942 WHERE a=7090;\nUPDATE t2 SET b=71114 WHERE a=7091;\nUPDATE t2 SET b=90757 WHERE a=7092;\nUPDATE t2 SET b=28398 WHERE a=7093;\nUPDATE t2 SET b=35937 WHERE a=7094;\nUPDATE t2 SET b=4412 WHERE a=7095;\nUPDATE t2 SET b=78933 WHERE a=7096;\nUPDATE t2 SET b=46916 WHERE a=7097;\nUPDATE t2 SET b=24679 WHERE a=7098;\nUPDATE t2 SET b=31461 WHERE a=7099;\nUPDATE t2 SET b=25765 WHERE a=7100;\nUPDATE t2 SET b=51035 WHERE a=7101;\nUPDATE t2 SET b=31159 WHERE a=7102;\nUPDATE t2 SET b=69511 WHERE a=7103;\nUPDATE t2 SET b=57067 WHERE a=7104;\nUPDATE t2 SET b=3582 WHERE a=7105;\nUPDATE t2 SET b=69274 WHERE a=7106;\nUPDATE t2 SET b=62518 WHERE a=7107;\nUPDATE t2 SET b=32818 WHERE a=7108;\nUPDATE t2 SET b=11870 WHERE a=7109;\nUPDATE t2 SET b=439 WHERE a=7110;\nUPDATE t2 SET b=31476 WHERE a=7111;\nUPDATE t2 SET b=20181 WHERE a=7112;\nUPDATE t2 SET b=47363 WHERE a=7113;\nUPDATE t2 SET b=41816 WHERE a=7114;\nUPDATE t2 SET b=38130 WHERE a=7115;\nUPDATE t2 SET b=33415 WHERE a=7116;\nUPDATE t2 SET b=67778 WHERE a=7117;\nUPDATE t2 SET b=99678 WHERE a=7118;\nUPDATE t2 SET b=30444 WHERE a=7119;\nUPDATE t2 SET b=3614 WHERE a=7120;\nUPDATE t2 SET b=99374 WHERE a=7121;\nUPDATE t2 SET b=46174 WHERE a=7122;\nUPDATE t2 SET b=3186 WHERE a=7123;\nUPDATE t2 SET b=54009 WHERE a=7124;\nUPDATE t2 SET b=31068 WHERE a=7125;\nUPDATE t2 SET b=90456 WHERE a=7126;\nUPDATE t2 SET b=73095 WHERE a=7127;\nUPDATE t2 SET b=15552 WHERE a=7128;\nUPDATE t2 SET b=99119 WHERE a=7129;\nUPDATE t2 SET b=37165 WHERE a=7130;\nUPDATE t2 SET b=80213 WHERE a=7131;\nUPDATE t2 SET b=22921 WHERE a=7132;\nUPDATE t2 SET b=74045 WHERE a=7133;\nUPDATE t2 SET b=46966 WHERE a=7134;\nUPDATE t2 SET b=75796 WHERE a=7135;\nUPDATE t2 SET b=26289 WHERE a=7136;\nUPDATE t2 SET b=35071 WHERE a=7137;\nUPDATE t2 SET b=65853 WHERE a=7138;\nUPDATE t2 SET b=74800 WHERE a=7139;\nUPDATE t2 SET b=90253 WHERE a=7140;\nUPDATE t2 SET b=28130 WHERE a=7141;\nUPDATE t2 SET b=19659 WHERE a=7142;\nUPDATE t2 SET b=91469 WHERE a=7143;\nUPDATE t2 SET b=19313 WHERE a=7144;\nUPDATE t2 SET b=59306 WHERE a=7145;\nUPDATE t2 SET b=78946 WHERE a=7146;\nUPDATE t2 SET b=41666 WHERE a=7147;\nUPDATE t2 SET b=59590 WHERE a=7148;\nUPDATE t2 SET b=36588 WHERE a=7149;\nUPDATE t2 SET b=77916 WHERE a=7150;\nUPDATE t2 SET b=41450 WHERE a=7151;\nUPDATE t2 SET b=9133 WHERE a=7152;\nUPDATE t2 SET b=56031 WHERE a=7153;\nUPDATE t2 SET b=16291 WHERE a=7154;\nUPDATE t2 SET b=66758 WHERE a=7155;\nUPDATE t2 SET b=48958 WHERE a=7156;\nUPDATE t2 SET b=84835 WHERE a=7157;\nUPDATE t2 SET b=17670 WHERE a=7158;\nUPDATE t2 SET b=65734 WHERE a=7159;\nUPDATE t2 SET b=16455 WHERE a=7160;\nUPDATE t2 SET b=31329 WHERE a=7161;\nUPDATE t2 SET b=88626 WHERE a=7162;\nUPDATE t2 SET b=6410 WHERE a=7163;\nUPDATE t2 SET b=58456 WHERE a=7164;\nUPDATE t2 SET b=67709 WHERE a=7165;\nUPDATE t2 SET b=33023 WHERE a=7166;\nUPDATE t2 SET b=93145 WHERE a=7167;\nUPDATE t2 SET b=2404 WHERE a=7168;\nUPDATE t2 SET b=36217 WHERE a=7169;\nUPDATE t2 SET b=79082 WHERE a=7170;\nUPDATE t2 SET b=81 WHERE a=7171;\nUPDATE t2 SET b=1263 WHERE a=7172;\nUPDATE t2 SET b=99400 WHERE a=7173;\nUPDATE t2 SET b=48182 WHERE a=7174;\nUPDATE t2 SET b=3695 WHERE a=7175;\nUPDATE t2 SET b=35706 WHERE a=7176;\nUPDATE t2 SET b=45451 WHERE a=7177;\nUPDATE t2 SET b=47638 WHERE a=7178;\nUPDATE t2 SET b=26124 WHERE a=7179;\nUPDATE t2 SET b=5503 WHERE a=7180;\nUPDATE t2 SET b=99099 WHERE a=7181;\nUPDATE t2 SET b=86891 WHERE a=7182;\nUPDATE t2 SET b=1820 WHERE a=7183;\nUPDATE t2 SET b=72033 WHERE a=7184;\nUPDATE t2 SET b=35409 WHERE a=7185;\nUPDATE t2 SET b=12696 WHERE a=7186;\nUPDATE t2 SET b=96329 WHERE a=7187;\nUPDATE t2 SET b=27568 WHERE a=7188;\nUPDATE t2 SET b=32742 WHERE a=7189;\nUPDATE t2 SET b=43456 WHERE a=7190;\nUPDATE t2 SET b=45956 WHERE a=7191;\nUPDATE t2 SET b=39716 WHERE a=7192;\nUPDATE t2 SET b=33883 WHERE a=7193;\nUPDATE t2 SET b=34980 WHERE a=7194;\nUPDATE t2 SET b=50915 WHERE a=7195;\nUPDATE t2 SET b=78280 WHERE a=7196;\nUPDATE t2 SET b=37732 WHERE a=7197;\nUPDATE t2 SET b=33751 WHERE a=7198;\nUPDATE t2 SET b=86239 WHERE a=7199;\nUPDATE t2 SET b=49265 WHERE a=7200;\nUPDATE t2 SET b=85769 WHERE a=7201;\nUPDATE t2 SET b=27364 WHERE a=7202;\nUPDATE t2 SET b=48895 WHERE a=7203;\nUPDATE t2 SET b=98049 WHERE a=7204;\nUPDATE t2 SET b=97748 WHERE a=7205;\nUPDATE t2 SET b=78663 WHERE a=7206;\nUPDATE t2 SET b=19771 WHERE a=7207;\nUPDATE t2 SET b=4328 WHERE a=7208;\nUPDATE t2 SET b=79608 WHERE a=7209;\nUPDATE t2 SET b=70131 WHERE a=7210;\nUPDATE t2 SET b=84897 WHERE a=7211;\nUPDATE t2 SET b=84556 WHERE a=7212;\nUPDATE t2 SET b=20474 WHERE a=7213;\nUPDATE t2 SET b=85062 WHERE a=7214;\nUPDATE t2 SET b=53404 WHERE a=7215;\nUPDATE t2 SET b=22409 WHERE a=7216;\nUPDATE t2 SET b=13949 WHERE a=7217;\nUPDATE t2 SET b=14929 WHERE a=7218;\nUPDATE t2 SET b=10925 WHERE a=7219;\nUPDATE t2 SET b=68170 WHERE a=7220;\nUPDATE t2 SET b=71476 WHERE a=7221;\nUPDATE t2 SET b=55959 WHERE a=7222;\nUPDATE t2 SET b=52578 WHERE a=7223;\nUPDATE t2 SET b=7779 WHERE a=7224;\nUPDATE t2 SET b=54889 WHERE a=7225;\nUPDATE t2 SET b=96013 WHERE a=7226;\nUPDATE t2 SET b=746 WHERE a=7227;\nUPDATE t2 SET b=79542 WHERE a=7228;\nUPDATE t2 SET b=54634 WHERE a=7229;\nUPDATE t2 SET b=60279 WHERE a=7230;\nUPDATE t2 SET b=1763 WHERE a=7231;\nUPDATE t2 SET b=42083 WHERE a=7232;\nUPDATE t2 SET b=40855 WHERE a=7233;\nUPDATE t2 SET b=98867 WHERE a=7234;\nUPDATE t2 SET b=99366 WHERE a=7235;\nUPDATE t2 SET b=53777 WHERE a=7236;\nUPDATE t2 SET b=2529 WHERE a=7237;\nUPDATE t2 SET b=15886 WHERE a=7238;\nUPDATE t2 SET b=58878 WHERE a=7239;\nUPDATE t2 SET b=71792 WHERE a=7240;\nUPDATE t2 SET b=35177 WHERE a=7241;\nUPDATE t2 SET b=7990 WHERE a=7242;\nUPDATE t2 SET b=18388 WHERE a=7243;\nUPDATE t2 SET b=53552 WHERE a=7244;\nUPDATE t2 SET b=44359 WHERE a=7245;\nUPDATE t2 SET b=33165 WHERE a=7246;\nUPDATE t2 SET b=34081 WHERE a=7247;\nUPDATE t2 SET b=43577 WHERE a=7248;\nUPDATE t2 SET b=33674 WHERE a=7249;\nUPDATE t2 SET b=30449 WHERE a=7250;\nUPDATE t2 SET b=32305 WHERE a=7251;\nUPDATE t2 SET b=83685 WHERE a=7252;\nUPDATE t2 SET b=37110 WHERE a=7253;\nUPDATE t2 SET b=52532 WHERE a=7254;\nUPDATE t2 SET b=45241 WHERE a=7255;\nUPDATE t2 SET b=39648 WHERE a=7256;\nUPDATE t2 SET b=62748 WHERE a=7257;\nUPDATE t2 SET b=91820 WHERE a=7258;\nUPDATE t2 SET b=95489 WHERE a=7259;\nUPDATE t2 SET b=70343 WHERE a=7260;\nUPDATE t2 SET b=67718 WHERE a=7261;\nUPDATE t2 SET b=81334 WHERE a=7262;\nUPDATE t2 SET b=20435 WHERE a=7263;\nUPDATE t2 SET b=73478 WHERE a=7264;\nUPDATE t2 SET b=25795 WHERE a=7265;\nUPDATE t2 SET b=75010 WHERE a=7266;\nUPDATE t2 SET b=47411 WHERE a=7267;\nUPDATE t2 SET b=25109 WHERE a=7268;\nUPDATE t2 SET b=44254 WHERE a=7269;\nUPDATE t2 SET b=35468 WHERE a=7270;\nUPDATE t2 SET b=615 WHERE a=7271;\nUPDATE t2 SET b=72024 WHERE a=7272;\nUPDATE t2 SET b=42008 WHERE a=7273;\nUPDATE t2 SET b=41522 WHERE a=7274;\nUPDATE t2 SET b=38494 WHERE a=7275;\nUPDATE t2 SET b=87155 WHERE a=7276;\nUPDATE t2 SET b=79391 WHERE a=7277;\nUPDATE t2 SET b=97081 WHERE a=7278;\nUPDATE t2 SET b=37561 WHERE a=7279;\nUPDATE t2 SET b=85914 WHERE a=7280;\nUPDATE t2 SET b=5048 WHERE a=7281;\nUPDATE t2 SET b=47018 WHERE a=7282;\nUPDATE t2 SET b=1443 WHERE a=7283;\nUPDATE t2 SET b=67218 WHERE a=7284;\nUPDATE t2 SET b=46308 WHERE a=7285;\nUPDATE t2 SET b=85902 WHERE a=7286;\nUPDATE t2 SET b=22090 WHERE a=7287;\nUPDATE t2 SET b=63751 WHERE a=7288;\nUPDATE t2 SET b=19309 WHERE a=7289;\nUPDATE t2 SET b=9408 WHERE a=7290;\nUPDATE t2 SET b=80810 WHERE a=7291;\nUPDATE t2 SET b=94204 WHERE a=7292;\nUPDATE t2 SET b=76675 WHERE a=7293;\nUPDATE t2 SET b=47815 WHERE a=7294;\nUPDATE t2 SET b=80823 WHERE a=7295;\nUPDATE t2 SET b=41704 WHERE a=7296;\nUPDATE t2 SET b=39549 WHERE a=7297;\nUPDATE t2 SET b=385 WHERE a=7298;\nUPDATE t2 SET b=85361 WHERE a=7299;\nUPDATE t2 SET b=71559 WHERE a=7300;\nUPDATE t2 SET b=31381 WHERE a=7301;\nUPDATE t2 SET b=8330 WHERE a=7302;\nUPDATE t2 SET b=70272 WHERE a=7303;\nUPDATE t2 SET b=28034 WHERE a=7304;\nUPDATE t2 SET b=77354 WHERE a=7305;\nUPDATE t2 SET b=46550 WHERE a=7306;\nUPDATE t2 SET b=37272 WHERE a=7307;\nUPDATE t2 SET b=33666 WHERE a=7308;\nUPDATE t2 SET b=40117 WHERE a=7309;\nUPDATE t2 SET b=19077 WHERE a=7310;\nUPDATE t2 SET b=41050 WHERE a=7311;\nUPDATE t2 SET b=42168 WHERE a=7312;\nUPDATE t2 SET b=82196 WHERE a=7313;\nUPDATE t2 SET b=41508 WHERE a=7314;\nUPDATE t2 SET b=57023 WHERE a=7315;\nUPDATE t2 SET b=94851 WHERE a=7316;\nUPDATE t2 SET b=89954 WHERE a=7317;\nUPDATE t2 SET b=76260 WHERE a=7318;\nUPDATE t2 SET b=83573 WHERE a=7319;\nUPDATE t2 SET b=55916 WHERE a=7320;\nUPDATE t2 SET b=28043 WHERE a=7321;\nUPDATE t2 SET b=76315 WHERE a=7322;\nUPDATE t2 SET b=30884 WHERE a=7323;\nUPDATE t2 SET b=45502 WHERE a=7324;\nUPDATE t2 SET b=42156 WHERE a=7325;\nUPDATE t2 SET b=64898 WHERE a=7326;\nUPDATE t2 SET b=13326 WHERE a=7327;\nUPDATE t2 SET b=96262 WHERE a=7328;\nUPDATE t2 SET b=18357 WHERE a=7329;\nUPDATE t2 SET b=40061 WHERE a=7330;\nUPDATE t2 SET b=28610 WHERE a=7331;\nUPDATE t2 SET b=52103 WHERE a=7332;\nUPDATE t2 SET b=71349 WHERE a=7333;\nUPDATE t2 SET b=89047 WHERE a=7334;\nUPDATE t2 SET b=33054 WHERE a=7335;\nUPDATE t2 SET b=37124 WHERE a=7336;\nUPDATE t2 SET b=97337 WHERE a=7337;\nUPDATE t2 SET b=49379 WHERE a=7338;\nUPDATE t2 SET b=4663 WHERE a=7339;\nUPDATE t2 SET b=64597 WHERE a=7340;\nUPDATE t2 SET b=31390 WHERE a=7341;\nUPDATE t2 SET b=70106 WHERE a=7342;\nUPDATE t2 SET b=62779 WHERE a=7343;\nUPDATE t2 SET b=88370 WHERE a=7344;\nUPDATE t2 SET b=29616 WHERE a=7345;\nUPDATE t2 SET b=47770 WHERE a=7346;\nUPDATE t2 SET b=96851 WHERE a=7347;\nUPDATE t2 SET b=96374 WHERE a=7348;\nUPDATE t2 SET b=31177 WHERE a=7349;\nUPDATE t2 SET b=44022 WHERE a=7350;\nUPDATE t2 SET b=73103 WHERE a=7351;\nUPDATE t2 SET b=87322 WHERE a=7352;\nUPDATE t2 SET b=45260 WHERE a=7353;\nUPDATE t2 SET b=53034 WHERE a=7354;\nUPDATE t2 SET b=17313 WHERE a=7355;\nUPDATE t2 SET b=19376 WHERE a=7356;\nUPDATE t2 SET b=73830 WHERE a=7357;\nUPDATE t2 SET b=25867 WHERE a=7358;\nUPDATE t2 SET b=30057 WHERE a=7359;\nUPDATE t2 SET b=81459 WHERE a=7360;\nUPDATE t2 SET b=9055 WHERE a=7361;\nUPDATE t2 SET b=6538 WHERE a=7362;\nUPDATE t2 SET b=38750 WHERE a=7363;\nUPDATE t2 SET b=53977 WHERE a=7364;\nUPDATE t2 SET b=51895 WHERE a=7365;\nUPDATE t2 SET b=26556 WHERE a=7366;\nUPDATE t2 SET b=23835 WHERE a=7367;\nUPDATE t2 SET b=92324 WHERE a=7368;\nUPDATE t2 SET b=7936 WHERE a=7369;\nUPDATE t2 SET b=31912 WHERE a=7370;\nUPDATE t2 SET b=86305 WHERE a=7371;\nUPDATE t2 SET b=91246 WHERE a=7372;\nUPDATE t2 SET b=44087 WHERE a=7373;\nUPDATE t2 SET b=77556 WHERE a=7374;\nUPDATE t2 SET b=92389 WHERE a=7375;\nUPDATE t2 SET b=16427 WHERE a=7376;\nUPDATE t2 SET b=82339 WHERE a=7377;\nUPDATE t2 SET b=81171 WHERE a=7378;\nUPDATE t2 SET b=39355 WHERE a=7379;\nUPDATE t2 SET b=17677 WHERE a=7380;\nUPDATE t2 SET b=65217 WHERE a=7381;\nUPDATE t2 SET b=53770 WHERE a=7382;\nUPDATE t2 SET b=4185 WHERE a=7383;\nUPDATE t2 SET b=83511 WHERE a=7384;\nUPDATE t2 SET b=20674 WHERE a=7385;\nUPDATE t2 SET b=52793 WHERE a=7386;\nUPDATE t2 SET b=85088 WHERE a=7387;\nUPDATE t2 SET b=31956 WHERE a=7388;\nUPDATE t2 SET b=69919 WHERE a=7389;\nUPDATE t2 SET b=73728 WHERE a=7390;\nUPDATE t2 SET b=97196 WHERE a=7391;\nUPDATE t2 SET b=9062 WHERE a=7392;\nUPDATE t2 SET b=76267 WHERE a=7393;\nUPDATE t2 SET b=49509 WHERE a=7394;\nUPDATE t2 SET b=46220 WHERE a=7395;\nUPDATE t2 SET b=61793 WHERE a=7396;\nUPDATE t2 SET b=38720 WHERE a=7397;\nUPDATE t2 SET b=92253 WHERE a=7398;\nUPDATE t2 SET b=14737 WHERE a=7399;\nUPDATE t2 SET b=44958 WHERE a=7400;\nUPDATE t2 SET b=17110 WHERE a=7401;\nUPDATE t2 SET b=31889 WHERE a=7402;\nUPDATE t2 SET b=92879 WHERE a=7403;\nUPDATE t2 SET b=37533 WHERE a=7404;\nUPDATE t2 SET b=46706 WHERE a=7405;\nUPDATE t2 SET b=25714 WHERE a=7406;\nUPDATE t2 SET b=80149 WHERE a=7407;\nUPDATE t2 SET b=62668 WHERE a=7408;\nUPDATE t2 SET b=25450 WHERE a=7409;\nUPDATE t2 SET b=31161 WHERE a=7410;\nUPDATE t2 SET b=62802 WHERE a=7411;\nUPDATE t2 SET b=8665 WHERE a=7412;\nUPDATE t2 SET b=3990 WHERE a=7413;\nUPDATE t2 SET b=64373 WHERE a=7414;\nUPDATE t2 SET b=45401 WHERE a=7415;\nUPDATE t2 SET b=30492 WHERE a=7416;\nUPDATE t2 SET b=59008 WHERE a=7417;\nUPDATE t2 SET b=12902 WHERE a=7418;\nUPDATE t2 SET b=1274 WHERE a=7419;\nUPDATE t2 SET b=86024 WHERE a=7420;\nUPDATE t2 SET b=22373 WHERE a=7421;\nUPDATE t2 SET b=92392 WHERE a=7422;\nUPDATE t2 SET b=13587 WHERE a=7423;\nUPDATE t2 SET b=42810 WHERE a=7424;\nUPDATE t2 SET b=35982 WHERE a=7425;\nUPDATE t2 SET b=28064 WHERE a=7426;\nUPDATE t2 SET b=97489 WHERE a=7427;\nUPDATE t2 SET b=54785 WHERE a=7428;\nUPDATE t2 SET b=90557 WHERE a=7429;\nUPDATE t2 SET b=60457 WHERE a=7430;\nUPDATE t2 SET b=29591 WHERE a=7431;\nUPDATE t2 SET b=59305 WHERE a=7432;\nUPDATE t2 SET b=4048 WHERE a=7433;\nUPDATE t2 SET b=527 WHERE a=7434;\nUPDATE t2 SET b=45184 WHERE a=7435;\nUPDATE t2 SET b=63808 WHERE a=7436;\nUPDATE t2 SET b=23549 WHERE a=7437;\nUPDATE t2 SET b=30776 WHERE a=7438;\nUPDATE t2 SET b=69489 WHERE a=7439;\nUPDATE t2 SET b=13758 WHERE a=7440;\nUPDATE t2 SET b=1422 WHERE a=7441;\nUPDATE t2 SET b=61121 WHERE a=7442;\nUPDATE t2 SET b=80727 WHERE a=7443;\nUPDATE t2 SET b=33899 WHERE a=7444;\nUPDATE t2 SET b=45877 WHERE a=7445;\nUPDATE t2 SET b=22637 WHERE a=7446;\nUPDATE t2 SET b=76674 WHERE a=7447;\nUPDATE t2 SET b=54787 WHERE a=7448;\nUPDATE t2 SET b=14275 WHERE a=7449;\nUPDATE t2 SET b=50909 WHERE a=7450;\nUPDATE t2 SET b=4877 WHERE a=7451;\nUPDATE t2 SET b=9130 WHERE a=7452;\nUPDATE t2 SET b=85357 WHERE a=7453;\nUPDATE t2 SET b=90753 WHERE a=7454;\nUPDATE t2 SET b=52972 WHERE a=7455;\nUPDATE t2 SET b=93966 WHERE a=7456;\nUPDATE t2 SET b=449 WHERE a=7457;\nUPDATE t2 SET b=47164 WHERE a=7458;\nUPDATE t2 SET b=2571 WHERE a=7459;\nUPDATE t2 SET b=19172 WHERE a=7460;\nUPDATE t2 SET b=78964 WHERE a=7461;\nUPDATE t2 SET b=59533 WHERE a=7462;\nUPDATE t2 SET b=94333 WHERE a=7463;\nUPDATE t2 SET b=57369 WHERE a=7464;\nUPDATE t2 SET b=81370 WHERE a=7465;\nUPDATE t2 SET b=69114 WHERE a=7466;\nUPDATE t2 SET b=96794 WHERE a=7467;\nUPDATE t2 SET b=34023 WHERE a=7468;\nUPDATE t2 SET b=31726 WHERE a=7469;\nUPDATE t2 SET b=9634 WHERE a=7470;\nUPDATE t2 SET b=73495 WHERE a=7471;\nUPDATE t2 SET b=59092 WHERE a=7472;\nUPDATE t2 SET b=50538 WHERE a=7473;\nUPDATE t2 SET b=30376 WHERE a=7474;\nUPDATE t2 SET b=91908 WHERE a=7475;\nUPDATE t2 SET b=63446 WHERE a=7476;\nUPDATE t2 SET b=61881 WHERE a=7477;\nUPDATE t2 SET b=22431 WHERE a=7478;\nUPDATE t2 SET b=97343 WHERE a=7479;\nUPDATE t2 SET b=21720 WHERE a=7480;\nUPDATE t2 SET b=63865 WHERE a=7481;\nUPDATE t2 SET b=12100 WHERE a=7482;\nUPDATE t2 SET b=5635 WHERE a=7483;\nUPDATE t2 SET b=34622 WHERE a=7484;\nUPDATE t2 SET b=28754 WHERE a=7485;\nUPDATE t2 SET b=29175 WHERE a=7486;\nUPDATE t2 SET b=57677 WHERE a=7487;\nUPDATE t2 SET b=31093 WHERE a=7488;\nUPDATE t2 SET b=63214 WHERE a=7489;\nUPDATE t2 SET b=10199 WHERE a=7490;\nUPDATE t2 SET b=25077 WHERE a=7491;\nUPDATE t2 SET b=7123 WHERE a=7492;\nUPDATE t2 SET b=43142 WHERE a=7493;\nUPDATE t2 SET b=53228 WHERE a=7494;\nUPDATE t2 SET b=89792 WHERE a=7495;\nUPDATE t2 SET b=604 WHERE a=7496;\nUPDATE t2 SET b=91262 WHERE a=7497;\nUPDATE t2 SET b=37376 WHERE a=7498;\nUPDATE t2 SET b=41362 WHERE a=7499;\nUPDATE t2 SET b=2419 WHERE a=7500;\nUPDATE t2 SET b=67079 WHERE a=7501;\nUPDATE t2 SET b=48298 WHERE a=7502;\nUPDATE t2 SET b=54948 WHERE a=7503;\nUPDATE t2 SET b=18499 WHERE a=7504;\nUPDATE t2 SET b=16578 WHERE a=7505;\nUPDATE t2 SET b=8776 WHERE a=7506;\nUPDATE t2 SET b=92673 WHERE a=7507;\nUPDATE t2 SET b=76828 WHERE a=7508;\nUPDATE t2 SET b=56560 WHERE a=7509;\nUPDATE t2 SET b=5214 WHERE a=7510;\nUPDATE t2 SET b=11663 WHERE a=7511;\nUPDATE t2 SET b=6287 WHERE a=7512;\nUPDATE t2 SET b=76774 WHERE a=7513;\nUPDATE t2 SET b=16464 WHERE a=7514;\nUPDATE t2 SET b=72583 WHERE a=7515;\nUPDATE t2 SET b=13919 WHERE a=7516;\nUPDATE t2 SET b=74967 WHERE a=7517;\nUPDATE t2 SET b=38814 WHERE a=7518;\nUPDATE t2 SET b=92866 WHERE a=7519;\nUPDATE t2 SET b=44084 WHERE a=7520;\nUPDATE t2 SET b=8368 WHERE a=7521;\nUPDATE t2 SET b=24301 WHERE a=7522;\nUPDATE t2 SET b=50170 WHERE a=7523;\nUPDATE t2 SET b=41700 WHERE a=7524;\nUPDATE t2 SET b=64432 WHERE a=7525;\nUPDATE t2 SET b=30861 WHERE a=7526;\nUPDATE t2 SET b=65295 WHERE a=7527;\nUPDATE t2 SET b=21202 WHERE a=7528;\nUPDATE t2 SET b=83777 WHERE a=7529;\nUPDATE t2 SET b=58512 WHERE a=7530;\nUPDATE t2 SET b=90814 WHERE a=7531;\nUPDATE t2 SET b=70054 WHERE a=7532;\nUPDATE t2 SET b=39152 WHERE a=7533;\nUPDATE t2 SET b=43798 WHERE a=7534;\nUPDATE t2 SET b=40807 WHERE a=7535;\nUPDATE t2 SET b=45113 WHERE a=7536;\nUPDATE t2 SET b=39353 WHERE a=7537;\nUPDATE t2 SET b=5537 WHERE a=7538;\nUPDATE t2 SET b=40541 WHERE a=7539;\nUPDATE t2 SET b=25959 WHERE a=7540;\nUPDATE t2 SET b=97112 WHERE a=7541;\nUPDATE t2 SET b=36748 WHERE a=7542;\nUPDATE t2 SET b=77513 WHERE a=7543;\nUPDATE t2 SET b=26390 WHERE a=7544;\nUPDATE t2 SET b=66040 WHERE a=7545;\nUPDATE t2 SET b=79844 WHERE a=7546;\nUPDATE t2 SET b=761 WHERE a=7547;\nUPDATE t2 SET b=88611 WHERE a=7548;\nUPDATE t2 SET b=3543 WHERE a=7549;\nUPDATE t2 SET b=43687 WHERE a=7550;\nUPDATE t2 SET b=76401 WHERE a=7551;\nUPDATE t2 SET b=40509 WHERE a=7552;\nUPDATE t2 SET b=94027 WHERE a=7553;\nUPDATE t2 SET b=30854 WHERE a=7554;\nUPDATE t2 SET b=54979 WHERE a=7555;\nUPDATE t2 SET b=77249 WHERE a=7556;\nUPDATE t2 SET b=85563 WHERE a=7557;\nUPDATE t2 SET b=78236 WHERE a=7558;\nUPDATE t2 SET b=56678 WHERE a=7559;\nUPDATE t2 SET b=38843 WHERE a=7560;\nUPDATE t2 SET b=45072 WHERE a=7561;\nUPDATE t2 SET b=82226 WHERE a=7562;\nUPDATE t2 SET b=36378 WHERE a=7563;\nUPDATE t2 SET b=17936 WHERE a=7564;\nUPDATE t2 SET b=79332 WHERE a=7565;\nUPDATE t2 SET b=10240 WHERE a=7566;\nUPDATE t2 SET b=23262 WHERE a=7567;\nUPDATE t2 SET b=24179 WHERE a=7568;\nUPDATE t2 SET b=42293 WHERE a=7569;\nUPDATE t2 SET b=55300 WHERE a=7570;\nUPDATE t2 SET b=29980 WHERE a=7571;\nUPDATE t2 SET b=442 WHERE a=7572;\nUPDATE t2 SET b=51117 WHERE a=7573;\nUPDATE t2 SET b=45283 WHERE a=7574;\nUPDATE t2 SET b=64622 WHERE a=7575;\nUPDATE t2 SET b=71381 WHERE a=7576;\nUPDATE t2 SET b=64189 WHERE a=7577;\nUPDATE t2 SET b=36899 WHERE a=7578;\nUPDATE t2 SET b=49746 WHERE a=7579;\nUPDATE t2 SET b=66481 WHERE a=7580;\nUPDATE t2 SET b=10227 WHERE a=7581;\nUPDATE t2 SET b=73708 WHERE a=7582;\nUPDATE t2 SET b=97636 WHERE a=7583;\nUPDATE t2 SET b=60912 WHERE a=7584;\nUPDATE t2 SET b=32913 WHERE a=7585;\nUPDATE t2 SET b=16851 WHERE a=7586;\nUPDATE t2 SET b=41642 WHERE a=7587;\nUPDATE t2 SET b=88365 WHERE a=7588;\nUPDATE t2 SET b=37098 WHERE a=7589;\nUPDATE t2 SET b=96423 WHERE a=7590;\nUPDATE t2 SET b=30296 WHERE a=7591;\nUPDATE t2 SET b=31603 WHERE a=7592;\nUPDATE t2 SET b=62462 WHERE a=7593;\nUPDATE t2 SET b=22636 WHERE a=7594;\nUPDATE t2 SET b=3669 WHERE a=7595;\nUPDATE t2 SET b=80 WHERE a=7596;\nUPDATE t2 SET b=69076 WHERE a=7597;\nUPDATE t2 SET b=3905 WHERE a=7598;\nUPDATE t2 SET b=54240 WHERE a=7599;\nUPDATE t2 SET b=24112 WHERE a=7600;\nUPDATE t2 SET b=39054 WHERE a=7601;\nUPDATE t2 SET b=57636 WHERE a=7602;\nUPDATE t2 SET b=45953 WHERE a=7603;\nUPDATE t2 SET b=7171 WHERE a=7604;\nUPDATE t2 SET b=63009 WHERE a=7605;\nUPDATE t2 SET b=34395 WHERE a=7606;\nUPDATE t2 SET b=6345 WHERE a=7607;\nUPDATE t2 SET b=537 WHERE a=7608;\nUPDATE t2 SET b=69741 WHERE a=7609;\nUPDATE t2 SET b=61962 WHERE a=7610;\nUPDATE t2 SET b=34016 WHERE a=7611;\nUPDATE t2 SET b=15417 WHERE a=7612;\nUPDATE t2 SET b=88414 WHERE a=7613;\nUPDATE t2 SET b=48850 WHERE a=7614;\nUPDATE t2 SET b=18629 WHERE a=7615;\nUPDATE t2 SET b=43253 WHERE a=7616;\nUPDATE t2 SET b=93242 WHERE a=7617;\nUPDATE t2 SET b=16883 WHERE a=7618;\nUPDATE t2 SET b=37319 WHERE a=7619;\nUPDATE t2 SET b=65481 WHERE a=7620;\nUPDATE t2 SET b=50862 WHERE a=7621;\nUPDATE t2 SET b=85547 WHERE a=7622;\nUPDATE t2 SET b=56926 WHERE a=7623;\nUPDATE t2 SET b=35200 WHERE a=7624;\nUPDATE t2 SET b=88156 WHERE a=7625;\nUPDATE t2 SET b=29263 WHERE a=7626;\nUPDATE t2 SET b=51180 WHERE a=7627;\nUPDATE t2 SET b=31823 WHERE a=7628;\nUPDATE t2 SET b=54557 WHERE a=7629;\nUPDATE t2 SET b=36078 WHERE a=7630;\nUPDATE t2 SET b=40704 WHERE a=7631;\nUPDATE t2 SET b=44888 WHERE a=7632;\nUPDATE t2 SET b=82270 WHERE a=7633;\nUPDATE t2 SET b=18781 WHERE a=7634;\nUPDATE t2 SET b=19008 WHERE a=7635;\nUPDATE t2 SET b=31048 WHERE a=7636;\nUPDATE t2 SET b=86586 WHERE a=7637;\nUPDATE t2 SET b=18710 WHERE a=7638;\nUPDATE t2 SET b=34165 WHERE a=7639;\nUPDATE t2 SET b=14599 WHERE a=7640;\nUPDATE t2 SET b=16735 WHERE a=7641;\nUPDATE t2 SET b=11893 WHERE a=7642;\nUPDATE t2 SET b=93746 WHERE a=7643;\nUPDATE t2 SET b=81929 WHERE a=7644;\nUPDATE t2 SET b=62360 WHERE a=7645;\nUPDATE t2 SET b=47407 WHERE a=7646;\nUPDATE t2 SET b=54963 WHERE a=7647;\nUPDATE t2 SET b=49855 WHERE a=7648;\nUPDATE t2 SET b=73606 WHERE a=7649;\nUPDATE t2 SET b=40443 WHERE a=7650;\nUPDATE t2 SET b=14769 WHERE a=7651;\nUPDATE t2 SET b=12307 WHERE a=7652;\nUPDATE t2 SET b=61694 WHERE a=7653;\nUPDATE t2 SET b=29172 WHERE a=7654;\nUPDATE t2 SET b=93780 WHERE a=7655;\nUPDATE t2 SET b=97131 WHERE a=7656;\nUPDATE t2 SET b=55546 WHERE a=7657;\nUPDATE t2 SET b=74424 WHERE a=7658;\nUPDATE t2 SET b=39406 WHERE a=7659;\nUPDATE t2 SET b=52920 WHERE a=7660;\nUPDATE t2 SET b=53526 WHERE a=7661;\nUPDATE t2 SET b=60397 WHERE a=7662;\nUPDATE t2 SET b=56007 WHERE a=7663;\nUPDATE t2 SET b=78823 WHERE a=7664;\nUPDATE t2 SET b=16976 WHERE a=7665;\nUPDATE t2 SET b=70742 WHERE a=7666;\nUPDATE t2 SET b=64947 WHERE a=7667;\nUPDATE t2 SET b=55619 WHERE a=7668;\nUPDATE t2 SET b=62336 WHERE a=7669;\nUPDATE t2 SET b=98596 WHERE a=7670;\nUPDATE t2 SET b=61665 WHERE a=7671;\nUPDATE t2 SET b=67864 WHERE a=7672;\nUPDATE t2 SET b=35370 WHERE a=7673;\nUPDATE t2 SET b=31813 WHERE a=7674;\nUPDATE t2 SET b=93348 WHERE a=7675;\nUPDATE t2 SET b=51723 WHERE a=7676;\nUPDATE t2 SET b=42364 WHERE a=7677;\nUPDATE t2 SET b=94378 WHERE a=7678;\nUPDATE t2 SET b=81563 WHERE a=7679;\nUPDATE t2 SET b=50241 WHERE a=7680;\nUPDATE t2 SET b=35861 WHERE a=7681;\nUPDATE t2 SET b=37937 WHERE a=7682;\nUPDATE t2 SET b=85978 WHERE a=7683;\nUPDATE t2 SET b=87420 WHERE a=7684;\nUPDATE t2 SET b=26193 WHERE a=7685;\nUPDATE t2 SET b=35069 WHERE a=7686;\nUPDATE t2 SET b=88290 WHERE a=7687;\nUPDATE t2 SET b=49441 WHERE a=7688;\nUPDATE t2 SET b=76567 WHERE a=7689;\nUPDATE t2 SET b=89553 WHERE a=7690;\nUPDATE t2 SET b=83268 WHERE a=7691;\nUPDATE t2 SET b=47669 WHERE a=7692;\nUPDATE t2 SET b=72789 WHERE a=7693;\nUPDATE t2 SET b=66280 WHERE a=7694;\nUPDATE t2 SET b=47798 WHERE a=7695;\nUPDATE t2 SET b=87764 WHERE a=7696;\nUPDATE t2 SET b=67193 WHERE a=7697;\nUPDATE t2 SET b=19360 WHERE a=7698;\nUPDATE t2 SET b=32888 WHERE a=7699;\nUPDATE t2 SET b=83244 WHERE a=7700;\nUPDATE t2 SET b=62586 WHERE a=7701;\nUPDATE t2 SET b=9604 WHERE a=7702;\nUPDATE t2 SET b=83326 WHERE a=7703;\nUPDATE t2 SET b=48915 WHERE a=7704;\nUPDATE t2 SET b=70511 WHERE a=7705;\nUPDATE t2 SET b=3720 WHERE a=7706;\nUPDATE t2 SET b=92927 WHERE a=7707;\nUPDATE t2 SET b=7142 WHERE a=7708;\nUPDATE t2 SET b=39584 WHERE a=7709;\nUPDATE t2 SET b=77641 WHERE a=7710;\nUPDATE t2 SET b=91101 WHERE a=7711;\nUPDATE t2 SET b=59094 WHERE a=7712;\nUPDATE t2 SET b=94296 WHERE a=7713;\nUPDATE t2 SET b=39758 WHERE a=7714;\nUPDATE t2 SET b=22732 WHERE a=7715;\nUPDATE t2 SET b=96530 WHERE a=7716;\nUPDATE t2 SET b=23390 WHERE a=7717;\nUPDATE t2 SET b=87700 WHERE a=7718;\nUPDATE t2 SET b=64578 WHERE a=7719;\nUPDATE t2 SET b=36066 WHERE a=7720;\nUPDATE t2 SET b=71245 WHERE a=7721;\nUPDATE t2 SET b=95787 WHERE a=7722;\nUPDATE t2 SET b=44778 WHERE a=7723;\nUPDATE t2 SET b=26872 WHERE a=7724;\nUPDATE t2 SET b=52109 WHERE a=7725;\nUPDATE t2 SET b=34414 WHERE a=7726;\nUPDATE t2 SET b=90086 WHERE a=7727;\nUPDATE t2 SET b=62405 WHERE a=7728;\nUPDATE t2 SET b=51260 WHERE a=7729;\nUPDATE t2 SET b=14609 WHERE a=7730;\nUPDATE t2 SET b=50757 WHERE a=7731;\nUPDATE t2 SET b=84759 WHERE a=7732;\nUPDATE t2 SET b=951 WHERE a=7733;\nUPDATE t2 SET b=46705 WHERE a=7734;\nUPDATE t2 SET b=47616 WHERE a=7735;\nUPDATE t2 SET b=25111 WHERE a=7736;\nUPDATE t2 SET b=86032 WHERE a=7737;\nUPDATE t2 SET b=29193 WHERE a=7738;\nUPDATE t2 SET b=2316 WHERE a=7739;\nUPDATE t2 SET b=19647 WHERE a=7740;\nUPDATE t2 SET b=21379 WHERE a=7741;\nUPDATE t2 SET b=90464 WHERE a=7742;\nUPDATE t2 SET b=68706 WHERE a=7743;\nUPDATE t2 SET b=99725 WHERE a=7744;\nUPDATE t2 SET b=92695 WHERE a=7745;\nUPDATE t2 SET b=12207 WHERE a=7746;\nUPDATE t2 SET b=35881 WHERE a=7747;\nUPDATE t2 SET b=20264 WHERE a=7748;\nUPDATE t2 SET b=7317 WHERE a=7749;\nUPDATE t2 SET b=32354 WHERE a=7750;\nUPDATE t2 SET b=38834 WHERE a=7751;\nUPDATE t2 SET b=49115 WHERE a=7752;\nUPDATE t2 SET b=15466 WHERE a=7753;\nUPDATE t2 SET b=59544 WHERE a=7754;\nUPDATE t2 SET b=39008 WHERE a=7755;\nUPDATE t2 SET b=61652 WHERE a=7756;\nUPDATE t2 SET b=51176 WHERE a=7757;\nUPDATE t2 SET b=97482 WHERE a=7758;\nUPDATE t2 SET b=89372 WHERE a=7759;\nUPDATE t2 SET b=33702 WHERE a=7760;\nUPDATE t2 SET b=76174 WHERE a=7761;\nUPDATE t2 SET b=80785 WHERE a=7762;\nUPDATE t2 SET b=21802 WHERE a=7763;\nUPDATE t2 SET b=41527 WHERE a=7764;\nUPDATE t2 SET b=82089 WHERE a=7765;\nUPDATE t2 SET b=21270 WHERE a=7766;\nUPDATE t2 SET b=90250 WHERE a=7767;\nUPDATE t2 SET b=35360 WHERE a=7768;\nUPDATE t2 SET b=6995 WHERE a=7769;\nUPDATE t2 SET b=21378 WHERE a=7770;\nUPDATE t2 SET b=23680 WHERE a=7771;\nUPDATE t2 SET b=47514 WHERE a=7772;\nUPDATE t2 SET b=25835 WHERE a=7773;\nUPDATE t2 SET b=12791 WHERE a=7774;\nUPDATE t2 SET b=77639 WHERE a=7775;\nUPDATE t2 SET b=5786 WHERE a=7776;\nUPDATE t2 SET b=64601 WHERE a=7777;\nUPDATE t2 SET b=50469 WHERE a=7778;\nUPDATE t2 SET b=65743 WHERE a=7779;\nUPDATE t2 SET b=3229 WHERE a=7780;\nUPDATE t2 SET b=87213 WHERE a=7781;\nUPDATE t2 SET b=39920 WHERE a=7782;\nUPDATE t2 SET b=84747 WHERE a=7783;\nUPDATE t2 SET b=58618 WHERE a=7784;\nUPDATE t2 SET b=25485 WHERE a=7785;\nUPDATE t2 SET b=84949 WHERE a=7786;\nUPDATE t2 SET b=9692 WHERE a=7787;\nUPDATE t2 SET b=88932 WHERE a=7788;\nUPDATE t2 SET b=76530 WHERE a=7789;\nUPDATE t2 SET b=7168 WHERE a=7790;\nUPDATE t2 SET b=19995 WHERE a=7791;\nUPDATE t2 SET b=18365 WHERE a=7792;\nUPDATE t2 SET b=9465 WHERE a=7793;\nUPDATE t2 SET b=32681 WHERE a=7794;\nUPDATE t2 SET b=34050 WHERE a=7795;\nUPDATE t2 SET b=48747 WHERE a=7796;\nUPDATE t2 SET b=94129 WHERE a=7797;\nUPDATE t2 SET b=16574 WHERE a=7798;\nUPDATE t2 SET b=62900 WHERE a=7799;\nUPDATE t2 SET b=7562 WHERE a=7800;\nUPDATE t2 SET b=60380 WHERE a=7801;\nUPDATE t2 SET b=45402 WHERE a=7802;\nUPDATE t2 SET b=34405 WHERE a=7803;\nUPDATE t2 SET b=60686 WHERE a=7804;\nUPDATE t2 SET b=55818 WHERE a=7805;\nUPDATE t2 SET b=68468 WHERE a=7806;\nUPDATE t2 SET b=65965 WHERE a=7807;\nUPDATE t2 SET b=38018 WHERE a=7808;\nUPDATE t2 SET b=92984 WHERE a=7809;\nUPDATE t2 SET b=98525 WHERE a=7810;\nUPDATE t2 SET b=64496 WHERE a=7811;\nUPDATE t2 SET b=84996 WHERE a=7812;\nUPDATE t2 SET b=94513 WHERE a=7813;\nUPDATE t2 SET b=17359 WHERE a=7814;\nUPDATE t2 SET b=35344 WHERE a=7815;\nUPDATE t2 SET b=3454 WHERE a=7816;\nUPDATE t2 SET b=42405 WHERE a=7817;\nUPDATE t2 SET b=58274 WHERE a=7818;\nUPDATE t2 SET b=44420 WHERE a=7819;\nUPDATE t2 SET b=21226 WHERE a=7820;\nUPDATE t2 SET b=90491 WHERE a=7821;\nUPDATE t2 SET b=69698 WHERE a=7822;\nUPDATE t2 SET b=93764 WHERE a=7823;\nUPDATE t2 SET b=99589 WHERE a=7824;\nUPDATE t2 SET b=26315 WHERE a=7825;\nUPDATE t2 SET b=16015 WHERE a=7826;\nUPDATE t2 SET b=71269 WHERE a=7827;\nUPDATE t2 SET b=82593 WHERE a=7828;\nUPDATE t2 SET b=84517 WHERE a=7829;\nUPDATE t2 SET b=67495 WHERE a=7830;\nUPDATE t2 SET b=81449 WHERE a=7831;\nUPDATE t2 SET b=88267 WHERE a=7832;\nUPDATE t2 SET b=23847 WHERE a=7833;\nUPDATE t2 SET b=58318 WHERE a=7834;\nUPDATE t2 SET b=11245 WHERE a=7835;\nUPDATE t2 SET b=390 WHERE a=7836;\nUPDATE t2 SET b=37443 WHERE a=7837;\nUPDATE t2 SET b=45782 WHERE a=7838;\nUPDATE t2 SET b=61795 WHERE a=7839;\nUPDATE t2 SET b=60129 WHERE a=7840;\nUPDATE t2 SET b=24696 WHERE a=7841;\nUPDATE t2 SET b=66705 WHERE a=7842;\nUPDATE t2 SET b=35555 WHERE a=7843;\nUPDATE t2 SET b=7464 WHERE a=7844;\nUPDATE t2 SET b=59643 WHERE a=7845;\nUPDATE t2 SET b=37368 WHERE a=7846;\nUPDATE t2 SET b=26126 WHERE a=7847;\nUPDATE t2 SET b=27234 WHERE a=7848;\nUPDATE t2 SET b=48645 WHERE a=7849;\nUPDATE t2 SET b=58668 WHERE a=7850;\nUPDATE t2 SET b=44465 WHERE a=7851;\nUPDATE t2 SET b=74894 WHERE a=7852;\nUPDATE t2 SET b=21521 WHERE a=7853;\nUPDATE t2 SET b=20602 WHERE a=7854;\nUPDATE t2 SET b=38418 WHERE a=7855;\nUPDATE t2 SET b=24190 WHERE a=7856;\nUPDATE t2 SET b=76515 WHERE a=7857;\nUPDATE t2 SET b=46389 WHERE a=7858;\nUPDATE t2 SET b=32462 WHERE a=7859;\nUPDATE t2 SET b=62514 WHERE a=7860;\nUPDATE t2 SET b=69520 WHERE a=7861;\nUPDATE t2 SET b=75775 WHERE a=7862;\nUPDATE t2 SET b=20424 WHERE a=7863;\nUPDATE t2 SET b=33645 WHERE a=7864;\nUPDATE t2 SET b=9572 WHERE a=7865;\nUPDATE t2 SET b=33088 WHERE a=7866;\nUPDATE t2 SET b=67116 WHERE a=7867;\nUPDATE t2 SET b=55249 WHERE a=7868;\nUPDATE t2 SET b=80394 WHERE a=7869;\nUPDATE t2 SET b=58583 WHERE a=7870;\nUPDATE t2 SET b=74113 WHERE a=7871;\nUPDATE t2 SET b=38103 WHERE a=7872;\nUPDATE t2 SET b=73495 WHERE a=7873;\nUPDATE t2 SET b=58351 WHERE a=7874;\nUPDATE t2 SET b=34129 WHERE a=7875;\nUPDATE t2 SET b=89653 WHERE a=7876;\nUPDATE t2 SET b=85015 WHERE a=7877;\nUPDATE t2 SET b=18948 WHERE a=7878;\nUPDATE t2 SET b=75803 WHERE a=7879;\nUPDATE t2 SET b=50893 WHERE a=7880;\nUPDATE t2 SET b=92163 WHERE a=7881;\nUPDATE t2 SET b=55134 WHERE a=7882;\nUPDATE t2 SET b=50258 WHERE a=7883;\nUPDATE t2 SET b=3020 WHERE a=7884;\nUPDATE t2 SET b=9844 WHERE a=7885;\nUPDATE t2 SET b=67596 WHERE a=7886;\nUPDATE t2 SET b=9941 WHERE a=7887;\nUPDATE t2 SET b=81742 WHERE a=7888;\nUPDATE t2 SET b=93131 WHERE a=7889;\nUPDATE t2 SET b=86113 WHERE a=7890;\nUPDATE t2 SET b=25136 WHERE a=7891;\nUPDATE t2 SET b=98692 WHERE a=7892;\nUPDATE t2 SET b=41770 WHERE a=7893;\nUPDATE t2 SET b=50222 WHERE a=7894;\nUPDATE t2 SET b=25521 WHERE a=7895;\nUPDATE t2 SET b=9472 WHERE a=7896;\nUPDATE t2 SET b=2638 WHERE a=7897;\nUPDATE t2 SET b=68681 WHERE a=7898;\nUPDATE t2 SET b=52115 WHERE a=7899;\nUPDATE t2 SET b=59614 WHERE a=7900;\nUPDATE t2 SET b=25731 WHERE a=7901;\nUPDATE t2 SET b=55320 WHERE a=7902;\nUPDATE t2 SET b=15672 WHERE a=7903;\nUPDATE t2 SET b=98702 WHERE a=7904;\nUPDATE t2 SET b=25785 WHERE a=7905;\nUPDATE t2 SET b=31377 WHERE a=7906;\nUPDATE t2 SET b=23233 WHERE a=7907;\nUPDATE t2 SET b=46203 WHERE a=7908;\nUPDATE t2 SET b=48046 WHERE a=7909;\nUPDATE t2 SET b=91829 WHERE a=7910;\nUPDATE t2 SET b=59982 WHERE a=7911;\nUPDATE t2 SET b=80202 WHERE a=7912;\nUPDATE t2 SET b=68032 WHERE a=7913;\nUPDATE t2 SET b=50556 WHERE a=7914;\nUPDATE t2 SET b=16470 WHERE a=7915;\nUPDATE t2 SET b=28017 WHERE a=7916;\nUPDATE t2 SET b=57900 WHERE a=7917;\nUPDATE t2 SET b=72610 WHERE a=7918;\nUPDATE t2 SET b=72865 WHERE a=7919;\nUPDATE t2 SET b=13852 WHERE a=7920;\nUPDATE t2 SET b=68058 WHERE a=7921;\nUPDATE t2 SET b=71483 WHERE a=7922;\nUPDATE t2 SET b=33465 WHERE a=7923;\nUPDATE t2 SET b=51742 WHERE a=7924;\nUPDATE t2 SET b=29624 WHERE a=7925;\nUPDATE t2 SET b=25041 WHERE a=7926;\nUPDATE t2 SET b=52414 WHERE a=7927;\nUPDATE t2 SET b=27914 WHERE a=7928;\nUPDATE t2 SET b=23597 WHERE a=7929;\nUPDATE t2 SET b=62882 WHERE a=7930;\nUPDATE t2 SET b=4795 WHERE a=7931;\nUPDATE t2 SET b=45980 WHERE a=7932;\nUPDATE t2 SET b=55592 WHERE a=7933;\nUPDATE t2 SET b=77057 WHERE a=7934;\nUPDATE t2 SET b=74579 WHERE a=7935;\nUPDATE t2 SET b=2996 WHERE a=7936;\nUPDATE t2 SET b=22531 WHERE a=7937;\nUPDATE t2 SET b=4733 WHERE a=7938;\nUPDATE t2 SET b=14086 WHERE a=7939;\nUPDATE t2 SET b=60920 WHERE a=7940;\nUPDATE t2 SET b=63996 WHERE a=7941;\nUPDATE t2 SET b=18671 WHERE a=7942;\nUPDATE t2 SET b=59371 WHERE a=7943;\nUPDATE t2 SET b=60459 WHERE a=7944;\nUPDATE t2 SET b=39059 WHERE a=7945;\nUPDATE t2 SET b=13382 WHERE a=7946;\nUPDATE t2 SET b=29791 WHERE a=7947;\nUPDATE t2 SET b=62469 WHERE a=7948;\nUPDATE t2 SET b=24571 WHERE a=7949;\nUPDATE t2 SET b=78886 WHERE a=7950;\nUPDATE t2 SET b=40480 WHERE a=7951;\nUPDATE t2 SET b=82310 WHERE a=7952;\nUPDATE t2 SET b=27923 WHERE a=7953;\nUPDATE t2 SET b=57219 WHERE a=7954;\nUPDATE t2 SET b=81907 WHERE a=7955;\nUPDATE t2 SET b=17824 WHERE a=7956;\nUPDATE t2 SET b=49251 WHERE a=7957;\nUPDATE t2 SET b=30644 WHERE a=7958;\nUPDATE t2 SET b=63318 WHERE a=7959;\nUPDATE t2 SET b=10678 WHERE a=7960;\nUPDATE t2 SET b=81315 WHERE a=7961;\nUPDATE t2 SET b=8466 WHERE a=7962;\nUPDATE t2 SET b=93643 WHERE a=7963;\nUPDATE t2 SET b=65471 WHERE a=7964;\nUPDATE t2 SET b=28087 WHERE a=7965;\nUPDATE t2 SET b=84448 WHERE a=7966;\nUPDATE t2 SET b=96832 WHERE a=7967;\nUPDATE t2 SET b=92149 WHERE a=7968;\nUPDATE t2 SET b=20953 WHERE a=7969;\nUPDATE t2 SET b=72180 WHERE a=7970;\nUPDATE t2 SET b=42759 WHERE a=7971;\nUPDATE t2 SET b=41466 WHERE a=7972;\nUPDATE t2 SET b=33839 WHERE a=7973;\nUPDATE t2 SET b=9575 WHERE a=7974;\nUPDATE t2 SET b=47619 WHERE a=7975;\nUPDATE t2 SET b=85159 WHERE a=7976;\nUPDATE t2 SET b=54190 WHERE a=7977;\nUPDATE t2 SET b=10679 WHERE a=7978;\nUPDATE t2 SET b=14843 WHERE a=7979;\nUPDATE t2 SET b=43583 WHERE a=7980;\nUPDATE t2 SET b=98614 WHERE a=7981;\nUPDATE t2 SET b=97353 WHERE a=7982;\nUPDATE t2 SET b=65233 WHERE a=7983;\nUPDATE t2 SET b=8525 WHERE a=7984;\nUPDATE t2 SET b=92791 WHERE a=7985;\nUPDATE t2 SET b=88157 WHERE a=7986;\nUPDATE t2 SET b=43815 WHERE a=7987;\nUPDATE t2 SET b=62753 WHERE a=7988;\nUPDATE t2 SET b=74468 WHERE a=7989;\nUPDATE t2 SET b=74050 WHERE a=7990;\nUPDATE t2 SET b=9558 WHERE a=7991;\nUPDATE t2 SET b=79225 WHERE a=7992;\nUPDATE t2 SET b=40388 WHERE a=7993;\nUPDATE t2 SET b=52681 WHERE a=7994;\nUPDATE t2 SET b=52424 WHERE a=7995;\nUPDATE t2 SET b=54717 WHERE a=7996;\nUPDATE t2 SET b=38066 WHERE a=7997;\nUPDATE t2 SET b=86010 WHERE a=7998;\nUPDATE t2 SET b=411 WHERE a=7999;\nUPDATE t2 SET b=66984 WHERE a=8000;\nUPDATE t2 SET b=94812 WHERE a=8001;\nUPDATE t2 SET b=40123 WHERE a=8002;\nUPDATE t2 SET b=94565 WHERE a=8003;\nUPDATE t2 SET b=46444 WHERE a=8004;\nUPDATE t2 SET b=97579 WHERE a=8005;\nUPDATE t2 SET b=99286 WHERE a=8006;\nUPDATE t2 SET b=56677 WHERE a=8007;\nUPDATE t2 SET b=6491 WHERE a=8008;\nUPDATE t2 SET b=71986 WHERE a=8009;\nUPDATE t2 SET b=4429 WHERE a=8010;\nUPDATE t2 SET b=18021 WHERE a=8011;\nUPDATE t2 SET b=47915 WHERE a=8012;\nUPDATE t2 SET b=41606 WHERE a=8013;\nUPDATE t2 SET b=43081 WHERE a=8014;\nUPDATE t2 SET b=12157 WHERE a=8015;\nUPDATE t2 SET b=89786 WHERE a=8016;\nUPDATE t2 SET b=90409 WHERE a=8017;\nUPDATE t2 SET b=47933 WHERE a=8018;\nUPDATE t2 SET b=11315 WHERE a=8019;\nUPDATE t2 SET b=20943 WHERE a=8020;\nUPDATE t2 SET b=63751 WHERE a=8021;\nUPDATE t2 SET b=12391 WHERE a=8022;\nUPDATE t2 SET b=13411 WHERE a=8023;\nUPDATE t2 SET b=66131 WHERE a=8024;\nUPDATE t2 SET b=39884 WHERE a=8025;\nUPDATE t2 SET b=78608 WHERE a=8026;\nUPDATE t2 SET b=46744 WHERE a=8027;\nUPDATE t2 SET b=59409 WHERE a=8028;\nUPDATE t2 SET b=57756 WHERE a=8029;\nUPDATE t2 SET b=80971 WHERE a=8030;\nUPDATE t2 SET b=27553 WHERE a=8031;\nUPDATE t2 SET b=60904 WHERE a=8032;\nUPDATE t2 SET b=86316 WHERE a=8033;\nUPDATE t2 SET b=36250 WHERE a=8034;\nUPDATE t2 SET b=54852 WHERE a=8035;\nUPDATE t2 SET b=79848 WHERE a=8036;\nUPDATE t2 SET b=6448 WHERE a=8037;\nUPDATE t2 SET b=26502 WHERE a=8038;\nUPDATE t2 SET b=96937 WHERE a=8039;\nUPDATE t2 SET b=97169 WHERE a=8040;\nUPDATE t2 SET b=23244 WHERE a=8041;\nUPDATE t2 SET b=20756 WHERE a=8042;\nUPDATE t2 SET b=1225 WHERE a=8043;\nUPDATE t2 SET b=97872 WHERE a=8044;\nUPDATE t2 SET b=67093 WHERE a=8045;\nUPDATE t2 SET b=79446 WHERE a=8046;\nUPDATE t2 SET b=65059 WHERE a=8047;\nUPDATE t2 SET b=57386 WHERE a=8048;\nUPDATE t2 SET b=86346 WHERE a=8049;\nUPDATE t2 SET b=58001 WHERE a=8050;\nUPDATE t2 SET b=48601 WHERE a=8051;\nUPDATE t2 SET b=89282 WHERE a=8052;\nUPDATE t2 SET b=71679 WHERE a=8053;\nUPDATE t2 SET b=13325 WHERE a=8054;\nUPDATE t2 SET b=71194 WHERE a=8055;\nUPDATE t2 SET b=18836 WHERE a=8056;\nUPDATE t2 SET b=46264 WHERE a=8057;\nUPDATE t2 SET b=47387 WHERE a=8058;\nUPDATE t2 SET b=94447 WHERE a=8059;\nUPDATE t2 SET b=45161 WHERE a=8060;\nUPDATE t2 SET b=82912 WHERE a=8061;\nUPDATE t2 SET b=159 WHERE a=8062;\nUPDATE t2 SET b=2279 WHERE a=8063;\nUPDATE t2 SET b=731 WHERE a=8064;\nUPDATE t2 SET b=51617 WHERE a=8065;\nUPDATE t2 SET b=92031 WHERE a=8066;\nUPDATE t2 SET b=39960 WHERE a=8067;\nUPDATE t2 SET b=90244 WHERE a=8068;\nUPDATE t2 SET b=94025 WHERE a=8069;\nUPDATE t2 SET b=69330 WHERE a=8070;\nUPDATE t2 SET b=72944 WHERE a=8071;\nUPDATE t2 SET b=85225 WHERE a=8072;\nUPDATE t2 SET b=72877 WHERE a=8073;\nUPDATE t2 SET b=43044 WHERE a=8074;\nUPDATE t2 SET b=20332 WHERE a=8075;\nUPDATE t2 SET b=66182 WHERE a=8076;\nUPDATE t2 SET b=24332 WHERE a=8077;\nUPDATE t2 SET b=17842 WHERE a=8078;\nUPDATE t2 SET b=76402 WHERE a=8079;\nUPDATE t2 SET b=12004 WHERE a=8080;\nUPDATE t2 SET b=98914 WHERE a=8081;\nUPDATE t2 SET b=74983 WHERE a=8082;\nUPDATE t2 SET b=62436 WHERE a=8083;\nUPDATE t2 SET b=67799 WHERE a=8084;\nUPDATE t2 SET b=65948 WHERE a=8085;\nUPDATE t2 SET b=13213 WHERE a=8086;\nUPDATE t2 SET b=43155 WHERE a=8087;\nUPDATE t2 SET b=90414 WHERE a=8088;\nUPDATE t2 SET b=44037 WHERE a=8089;\nUPDATE t2 SET b=28033 WHERE a=8090;\nUPDATE t2 SET b=53591 WHERE a=8091;\nUPDATE t2 SET b=36780 WHERE a=8092;\nUPDATE t2 SET b=81500 WHERE a=8093;\nUPDATE t2 SET b=62514 WHERE a=8094;\nUPDATE t2 SET b=93894 WHERE a=8095;\nUPDATE t2 SET b=47608 WHERE a=8096;\nUPDATE t2 SET b=48269 WHERE a=8097;\nUPDATE t2 SET b=58503 WHERE a=8098;\nUPDATE t2 SET b=77805 WHERE a=8099;\nUPDATE t2 SET b=69708 WHERE a=8100;\nUPDATE t2 SET b=9109 WHERE a=8101;\nUPDATE t2 SET b=94892 WHERE a=8102;\nUPDATE t2 SET b=16646 WHERE a=8103;\nUPDATE t2 SET b=50158 WHERE a=8104;\nUPDATE t2 SET b=67235 WHERE a=8105;\nUPDATE t2 SET b=92217 WHERE a=8106;\nUPDATE t2 SET b=28908 WHERE a=8107;\nUPDATE t2 SET b=89306 WHERE a=8108;\nUPDATE t2 SET b=27496 WHERE a=8109;\nUPDATE t2 SET b=8964 WHERE a=8110;\nUPDATE t2 SET b=42135 WHERE a=8111;\nUPDATE t2 SET b=47102 WHERE a=8112;\nUPDATE t2 SET b=18427 WHERE a=8113;\nUPDATE t2 SET b=76063 WHERE a=8114;\nUPDATE t2 SET b=48873 WHERE a=8115;\nUPDATE t2 SET b=7560 WHERE a=8116;\nUPDATE t2 SET b=71500 WHERE a=8117;\nUPDATE t2 SET b=70616 WHERE a=8118;\nUPDATE t2 SET b=74693 WHERE a=8119;\nUPDATE t2 SET b=80632 WHERE a=8120;\nUPDATE t2 SET b=27870 WHERE a=8121;\nUPDATE t2 SET b=89043 WHERE a=8122;\nUPDATE t2 SET b=20689 WHERE a=8123;\nUPDATE t2 SET b=98281 WHERE a=8124;\nUPDATE t2 SET b=60618 WHERE a=8125;\nUPDATE t2 SET b=78946 WHERE a=8126;\nUPDATE t2 SET b=40141 WHERE a=8127;\nUPDATE t2 SET b=27615 WHERE a=8128;\nUPDATE t2 SET b=15150 WHERE a=8129;\nUPDATE t2 SET b=1182 WHERE a=8130;\nUPDATE t2 SET b=82447 WHERE a=8131;\nUPDATE t2 SET b=77462 WHERE a=8132;\nUPDATE t2 SET b=15484 WHERE a=8133;\nUPDATE t2 SET b=30420 WHERE a=8134;\nUPDATE t2 SET b=86351 WHERE a=8135;\nUPDATE t2 SET b=70688 WHERE a=8136;\nUPDATE t2 SET b=36650 WHERE a=8137;\nUPDATE t2 SET b=24840 WHERE a=8138;\nUPDATE t2 SET b=90460 WHERE a=8139;\nUPDATE t2 SET b=87843 WHERE a=8140;\nUPDATE t2 SET b=80374 WHERE a=8141;\nUPDATE t2 SET b=60437 WHERE a=8142;\nUPDATE t2 SET b=55078 WHERE a=8143;\nUPDATE t2 SET b=82890 WHERE a=8144;\nUPDATE t2 SET b=35362 WHERE a=8145;\nUPDATE t2 SET b=42336 WHERE a=8146;\nUPDATE t2 SET b=87712 WHERE a=8147;\nUPDATE t2 SET b=90035 WHERE a=8148;\nUPDATE t2 SET b=67236 WHERE a=8149;\nUPDATE t2 SET b=60007 WHERE a=8150;\nUPDATE t2 SET b=26392 WHERE a=8151;\nUPDATE t2 SET b=58253 WHERE a=8152;\nUPDATE t2 SET b=61246 WHERE a=8153;\nUPDATE t2 SET b=55269 WHERE a=8154;\nUPDATE t2 SET b=97313 WHERE a=8155;\nUPDATE t2 SET b=61531 WHERE a=8156;\nUPDATE t2 SET b=1966 WHERE a=8157;\nUPDATE t2 SET b=88324 WHERE a=8158;\nUPDATE t2 SET b=81995 WHERE a=8159;\nUPDATE t2 SET b=15221 WHERE a=8160;\nUPDATE t2 SET b=53432 WHERE a=8161;\nUPDATE t2 SET b=41958 WHERE a=8162;\nUPDATE t2 SET b=58475 WHERE a=8163;\nUPDATE t2 SET b=74220 WHERE a=8164;\nUPDATE t2 SET b=97531 WHERE a=8165;\nUPDATE t2 SET b=49137 WHERE a=8166;\nUPDATE t2 SET b=59990 WHERE a=8167;\nUPDATE t2 SET b=80624 WHERE a=8168;\nUPDATE t2 SET b=35736 WHERE a=8169;\nUPDATE t2 SET b=86273 WHERE a=8170;\nUPDATE t2 SET b=70695 WHERE a=8171;\nUPDATE t2 SET b=2849 WHERE a=8172;\nUPDATE t2 SET b=6191 WHERE a=8173;\nUPDATE t2 SET b=10315 WHERE a=8174;\nUPDATE t2 SET b=71473 WHERE a=8175;\nUPDATE t2 SET b=90928 WHERE a=8176;\nUPDATE t2 SET b=2219 WHERE a=8177;\nUPDATE t2 SET b=31794 WHERE a=8178;\nUPDATE t2 SET b=48503 WHERE a=8179;\nUPDATE t2 SET b=82352 WHERE a=8180;\nUPDATE t2 SET b=86084 WHERE a=8181;\nUPDATE t2 SET b=28326 WHERE a=8182;\nUPDATE t2 SET b=91378 WHERE a=8183;\nUPDATE t2 SET b=5988 WHERE a=8184;\nUPDATE t2 SET b=13032 WHERE a=8185;\nUPDATE t2 SET b=66940 WHERE a=8186;\nUPDATE t2 SET b=13219 WHERE a=8187;\nUPDATE t2 SET b=8348 WHERE a=8188;\nUPDATE t2 SET b=48348 WHERE a=8189;\nUPDATE t2 SET b=62874 WHERE a=8190;\nUPDATE t2 SET b=35968 WHERE a=8191;\nUPDATE t2 SET b=7093 WHERE a=8192;\nUPDATE t2 SET b=24911 WHERE a=8193;\nUPDATE t2 SET b=90327 WHERE a=8194;\nUPDATE t2 SET b=11042 WHERE a=8195;\nUPDATE t2 SET b=39361 WHERE a=8196;\nUPDATE t2 SET b=60883 WHERE a=8197;\nUPDATE t2 SET b=3903 WHERE a=8198;\nUPDATE t2 SET b=39320 WHERE a=8199;\nUPDATE t2 SET b=57538 WHERE a=8200;\nUPDATE t2 SET b=43640 WHERE a=8201;\nUPDATE t2 SET b=78601 WHERE a=8202;\nUPDATE t2 SET b=86112 WHERE a=8203;\nUPDATE t2 SET b=12351 WHERE a=8204;\nUPDATE t2 SET b=29721 WHERE a=8205;\nUPDATE t2 SET b=18864 WHERE a=8206;\nUPDATE t2 SET b=22637 WHERE a=8207;\nUPDATE t2 SET b=90372 WHERE a=8208;\nUPDATE t2 SET b=72683 WHERE a=8209;\nUPDATE t2 SET b=8871 WHERE a=8210;\nUPDATE t2 SET b=13948 WHERE a=8211;\nUPDATE t2 SET b=98491 WHERE a=8212;\nUPDATE t2 SET b=58855 WHERE a=8213;\nUPDATE t2 SET b=24813 WHERE a=8214;\nUPDATE t2 SET b=35820 WHERE a=8215;\nUPDATE t2 SET b=78554 WHERE a=8216;\nUPDATE t2 SET b=27463 WHERE a=8217;\nUPDATE t2 SET b=7328 WHERE a=8218;\nUPDATE t2 SET b=78722 WHERE a=8219;\nUPDATE t2 SET b=8989 WHERE a=8220;\nUPDATE t2 SET b=75324 WHERE a=8221;\nUPDATE t2 SET b=60101 WHERE a=8222;\nUPDATE t2 SET b=99011 WHERE a=8223;\nUPDATE t2 SET b=41938 WHERE a=8224;\nUPDATE t2 SET b=87341 WHERE a=8225;\nUPDATE t2 SET b=97895 WHERE a=8226;\nUPDATE t2 SET b=53274 WHERE a=8227;\nUPDATE t2 SET b=34824 WHERE a=8228;\nUPDATE t2 SET b=11054 WHERE a=8229;\nUPDATE t2 SET b=92035 WHERE a=8230;\nUPDATE t2 SET b=15083 WHERE a=8231;\nUPDATE t2 SET b=56141 WHERE a=8232;\nUPDATE t2 SET b=71154 WHERE a=8233;\nUPDATE t2 SET b=92574 WHERE a=8234;\nUPDATE t2 SET b=89246 WHERE a=8235;\nUPDATE t2 SET b=39106 WHERE a=8236;\nUPDATE t2 SET b=39274 WHERE a=8237;\nUPDATE t2 SET b=86377 WHERE a=8238;\nUPDATE t2 SET b=4180 WHERE a=8239;\nUPDATE t2 SET b=1234 WHERE a=8240;\nUPDATE t2 SET b=70770 WHERE a=8241;\nUPDATE t2 SET b=51211 WHERE a=8242;\nUPDATE t2 SET b=88550 WHERE a=8243;\nUPDATE t2 SET b=62820 WHERE a=8244;\nUPDATE t2 SET b=15374 WHERE a=8245;\nUPDATE t2 SET b=70820 WHERE a=8246;\nUPDATE t2 SET b=12017 WHERE a=8247;\nUPDATE t2 SET b=48708 WHERE a=8248;\nUPDATE t2 SET b=4063 WHERE a=8249;\nUPDATE t2 SET b=4436 WHERE a=8250;\nUPDATE t2 SET b=12474 WHERE a=8251;\nUPDATE t2 SET b=50472 WHERE a=8252;\nUPDATE t2 SET b=41365 WHERE a=8253;\nUPDATE t2 SET b=64605 WHERE a=8254;\nUPDATE t2 SET b=64547 WHERE a=8255;\nUPDATE t2 SET b=20858 WHERE a=8256;\nUPDATE t2 SET b=63199 WHERE a=8257;\nUPDATE t2 SET b=21641 WHERE a=8258;\nUPDATE t2 SET b=29604 WHERE a=8259;\nUPDATE t2 SET b=19315 WHERE a=8260;\nUPDATE t2 SET b=1885 WHERE a=8261;\nUPDATE t2 SET b=42441 WHERE a=8262;\nUPDATE t2 SET b=45704 WHERE a=8263;\nUPDATE t2 SET b=18697 WHERE a=8264;\nUPDATE t2 SET b=31870 WHERE a=8265;\nUPDATE t2 SET b=83957 WHERE a=8266;\nUPDATE t2 SET b=10201 WHERE a=8267;\nUPDATE t2 SET b=66846 WHERE a=8268;\nUPDATE t2 SET b=77190 WHERE a=8269;\nUPDATE t2 SET b=21479 WHERE a=8270;\nUPDATE t2 SET b=46143 WHERE a=8271;\nUPDATE t2 SET b=4681 WHERE a=8272;\nUPDATE t2 SET b=88519 WHERE a=8273;\nUPDATE t2 SET b=94646 WHERE a=8274;\nUPDATE t2 SET b=3361 WHERE a=8275;\nUPDATE t2 SET b=17547 WHERE a=8276;\nUPDATE t2 SET b=29436 WHERE a=8277;\nUPDATE t2 SET b=8296 WHERE a=8278;\nUPDATE t2 SET b=92168 WHERE a=8279;\nUPDATE t2 SET b=40455 WHERE a=8280;\nUPDATE t2 SET b=40823 WHERE a=8281;\nUPDATE t2 SET b=32140 WHERE a=8282;\nUPDATE t2 SET b=56123 WHERE a=8283;\nUPDATE t2 SET b=89213 WHERE a=8284;\nUPDATE t2 SET b=84813 WHERE a=8285;\nUPDATE t2 SET b=82820 WHERE a=8286;\nUPDATE t2 SET b=68669 WHERE a=8287;\nUPDATE t2 SET b=28300 WHERE a=8288;\nUPDATE t2 SET b=45013 WHERE a=8289;\nUPDATE t2 SET b=71780 WHERE a=8290;\nUPDATE t2 SET b=54498 WHERE a=8291;\nUPDATE t2 SET b=74038 WHERE a=8292;\nUPDATE t2 SET b=84404 WHERE a=8293;\nUPDATE t2 SET b=91228 WHERE a=8294;\nUPDATE t2 SET b=69974 WHERE a=8295;\nUPDATE t2 SET b=61171 WHERE a=8296;\nUPDATE t2 SET b=93954 WHERE a=8297;\nUPDATE t2 SET b=56054 WHERE a=8298;\nUPDATE t2 SET b=84651 WHERE a=8299;\nUPDATE t2 SET b=96995 WHERE a=8300;\nUPDATE t2 SET b=65084 WHERE a=8301;\nUPDATE t2 SET b=69536 WHERE a=8302;\nUPDATE t2 SET b=53279 WHERE a=8303;\nUPDATE t2 SET b=36331 WHERE a=8304;\nUPDATE t2 SET b=31356 WHERE a=8305;\nUPDATE t2 SET b=47136 WHERE a=8306;\nUPDATE t2 SET b=69763 WHERE a=8307;\nUPDATE t2 SET b=43402 WHERE a=8308;\nUPDATE t2 SET b=52983 WHERE a=8309;\nUPDATE t2 SET b=96750 WHERE a=8310;\nUPDATE t2 SET b=21211 WHERE a=8311;\nUPDATE t2 SET b=83360 WHERE a=8312;\nUPDATE t2 SET b=8087 WHERE a=8313;\nUPDATE t2 SET b=49679 WHERE a=8314;\nUPDATE t2 SET b=34648 WHERE a=8315;\nUPDATE t2 SET b=63557 WHERE a=8316;\nUPDATE t2 SET b=7250 WHERE a=8317;\nUPDATE t2 SET b=80921 WHERE a=8318;\nUPDATE t2 SET b=55184 WHERE a=8319;\nUPDATE t2 SET b=15534 WHERE a=8320;\nUPDATE t2 SET b=60171 WHERE a=8321;\nUPDATE t2 SET b=52846 WHERE a=8322;\nUPDATE t2 SET b=50166 WHERE a=8323;\nUPDATE t2 SET b=4883 WHERE a=8324;\nUPDATE t2 SET b=77893 WHERE a=8325;\nUPDATE t2 SET b=52442 WHERE a=8326;\nUPDATE t2 SET b=65918 WHERE a=8327;\nUPDATE t2 SET b=75607 WHERE a=8328;\nUPDATE t2 SET b=86464 WHERE a=8329;\nUPDATE t2 SET b=90676 WHERE a=8330;\nUPDATE t2 SET b=48958 WHERE a=8331;\nUPDATE t2 SET b=2297 WHERE a=8332;\nUPDATE t2 SET b=40894 WHERE a=8333;\nUPDATE t2 SET b=76694 WHERE a=8334;\nUPDATE t2 SET b=10784 WHERE a=8335;\nUPDATE t2 SET b=88192 WHERE a=8336;\nUPDATE t2 SET b=58575 WHERE a=8337;\nUPDATE t2 SET b=7947 WHERE a=8338;\nUPDATE t2 SET b=8500 WHERE a=8339;\nUPDATE t2 SET b=28833 WHERE a=8340;\nUPDATE t2 SET b=95122 WHERE a=8341;\nUPDATE t2 SET b=9653 WHERE a=8342;\nUPDATE t2 SET b=41501 WHERE a=8343;\nUPDATE t2 SET b=37618 WHERE a=8344;\nUPDATE t2 SET b=33064 WHERE a=8345;\nUPDATE t2 SET b=33945 WHERE a=8346;\nUPDATE t2 SET b=4339 WHERE a=8347;\nUPDATE t2 SET b=35537 WHERE a=8348;\nUPDATE t2 SET b=29061 WHERE a=8349;\nUPDATE t2 SET b=2381 WHERE a=8350;\nUPDATE t2 SET b=35180 WHERE a=8351;\nUPDATE t2 SET b=67829 WHERE a=8352;\nUPDATE t2 SET b=87992 WHERE a=8353;\nUPDATE t2 SET b=12731 WHERE a=8354;\nUPDATE t2 SET b=33902 WHERE a=8355;\nUPDATE t2 SET b=81214 WHERE a=8356;\nUPDATE t2 SET b=93230 WHERE a=8357;\nUPDATE t2 SET b=49093 WHERE a=8358;\nUPDATE t2 SET b=50752 WHERE a=8359;\nUPDATE t2 SET b=88288 WHERE a=8360;\nUPDATE t2 SET b=17137 WHERE a=8361;\nUPDATE t2 SET b=78844 WHERE a=8362;\nUPDATE t2 SET b=82584 WHERE a=8363;\nUPDATE t2 SET b=42954 WHERE a=8364;\nUPDATE t2 SET b=2668 WHERE a=8365;\nUPDATE t2 SET b=42402 WHERE a=8366;\nUPDATE t2 SET b=52635 WHERE a=8367;\nUPDATE t2 SET b=30156 WHERE a=8368;\nUPDATE t2 SET b=78841 WHERE a=8369;\nUPDATE t2 SET b=17973 WHERE a=8370;\nUPDATE t2 SET b=65542 WHERE a=8371;\nUPDATE t2 SET b=53911 WHERE a=8372;\nUPDATE t2 SET b=61111 WHERE a=8373;\nUPDATE t2 SET b=97250 WHERE a=8374;\nUPDATE t2 SET b=44261 WHERE a=8375;\nUPDATE t2 SET b=6218 WHERE a=8376;\nUPDATE t2 SET b=54013 WHERE a=8377;\nUPDATE t2 SET b=42619 WHERE a=8378;\nUPDATE t2 SET b=23845 WHERE a=8379;\nUPDATE t2 SET b=56595 WHERE a=8380;\nUPDATE t2 SET b=21808 WHERE a=8381;\nUPDATE t2 SET b=84312 WHERE a=8382;\nUPDATE t2 SET b=68289 WHERE a=8383;\nUPDATE t2 SET b=93661 WHERE a=8384;\nUPDATE t2 SET b=43821 WHERE a=8385;\nUPDATE t2 SET b=31115 WHERE a=8386;\nUPDATE t2 SET b=30218 WHERE a=8387;\nUPDATE t2 SET b=65646 WHERE a=8388;\nUPDATE t2 SET b=89007 WHERE a=8389;\nUPDATE t2 SET b=95087 WHERE a=8390;\nUPDATE t2 SET b=49357 WHERE a=8391;\nUPDATE t2 SET b=40306 WHERE a=8392;\nUPDATE t2 SET b=88564 WHERE a=8393;\nUPDATE t2 SET b=12309 WHERE a=8394;\nUPDATE t2 SET b=30157 WHERE a=8395;\nUPDATE t2 SET b=3238 WHERE a=8396;\nUPDATE t2 SET b=11773 WHERE a=8397;\nUPDATE t2 SET b=56635 WHERE a=8398;\nUPDATE t2 SET b=75173 WHERE a=8399;\nUPDATE t2 SET b=83542 WHERE a=8400;\nUPDATE t2 SET b=73235 WHERE a=8401;\nUPDATE t2 SET b=40489 WHERE a=8402;\nUPDATE t2 SET b=40750 WHERE a=8403;\nUPDATE t2 SET b=69870 WHERE a=8404;\nUPDATE t2 SET b=83807 WHERE a=8405;\nUPDATE t2 SET b=46913 WHERE a=8406;\nUPDATE t2 SET b=84696 WHERE a=8407;\nUPDATE t2 SET b=57378 WHERE a=8408;\nUPDATE t2 SET b=36807 WHERE a=8409;\nUPDATE t2 SET b=40660 WHERE a=8410;\nUPDATE t2 SET b=90525 WHERE a=8411;\nUPDATE t2 SET b=76013 WHERE a=8412;\nUPDATE t2 SET b=10624 WHERE a=8413;\nUPDATE t2 SET b=37776 WHERE a=8414;\nUPDATE t2 SET b=83799 WHERE a=8415;\nUPDATE t2 SET b=71391 WHERE a=8416;\nUPDATE t2 SET b=98365 WHERE a=8417;\nUPDATE t2 SET b=16315 WHERE a=8418;\nUPDATE t2 SET b=42016 WHERE a=8419;\nUPDATE t2 SET b=7157 WHERE a=8420;\nUPDATE t2 SET b=37980 WHERE a=8421;\nUPDATE t2 SET b=4957 WHERE a=8422;\nUPDATE t2 SET b=80902 WHERE a=8423;\nUPDATE t2 SET b=48608 WHERE a=8424;\nUPDATE t2 SET b=6270 WHERE a=8425;\nUPDATE t2 SET b=53994 WHERE a=8426;\nUPDATE t2 SET b=4240 WHERE a=8427;\nUPDATE t2 SET b=12782 WHERE a=8428;\nUPDATE t2 SET b=10465 WHERE a=8429;\nUPDATE t2 SET b=20464 WHERE a=8430;\nUPDATE t2 SET b=36242 WHERE a=8431;\nUPDATE t2 SET b=51788 WHERE a=8432;\nUPDATE t2 SET b=1412 WHERE a=8433;\nUPDATE t2 SET b=66864 WHERE a=8434;\nUPDATE t2 SET b=76161 WHERE a=8435;\nUPDATE t2 SET b=51807 WHERE a=8436;\nUPDATE t2 SET b=3838 WHERE a=8437;\nUPDATE t2 SET b=22495 WHERE a=8438;\nUPDATE t2 SET b=26333 WHERE a=8439;\nUPDATE t2 SET b=70502 WHERE a=8440;\nUPDATE t2 SET b=28861 WHERE a=8441;\nUPDATE t2 SET b=26636 WHERE a=8442;\nUPDATE t2 SET b=90876 WHERE a=8443;\nUPDATE t2 SET b=96445 WHERE a=8444;\nUPDATE t2 SET b=19849 WHERE a=8445;\nUPDATE t2 SET b=72216 WHERE a=8446;\nUPDATE t2 SET b=36374 WHERE a=8447;\nUPDATE t2 SET b=98987 WHERE a=8448;\nUPDATE t2 SET b=83001 WHERE a=8449;\nUPDATE t2 SET b=15025 WHERE a=8450;\nUPDATE t2 SET b=7585 WHERE a=8451;\nUPDATE t2 SET b=75126 WHERE a=8452;\nUPDATE t2 SET b=98742 WHERE a=8453;\nUPDATE t2 SET b=7685 WHERE a=8454;\nUPDATE t2 SET b=58627 WHERE a=8455;\nUPDATE t2 SET b=48136 WHERE a=8456;\nUPDATE t2 SET b=15803 WHERE a=8457;\nUPDATE t2 SET b=3078 WHERE a=8458;\nUPDATE t2 SET b=45281 WHERE a=8459;\nUPDATE t2 SET b=12569 WHERE a=8460;\nUPDATE t2 SET b=41613 WHERE a=8461;\nUPDATE t2 SET b=65364 WHERE a=8462;\nUPDATE t2 SET b=15349 WHERE a=8463;\nUPDATE t2 SET b=38433 WHERE a=8464;\nUPDATE t2 SET b=76774 WHERE a=8465;\nUPDATE t2 SET b=31884 WHERE a=8466;\nUPDATE t2 SET b=27458 WHERE a=8467;\nUPDATE t2 SET b=11425 WHERE a=8468;\nUPDATE t2 SET b=55465 WHERE a=8469;\nUPDATE t2 SET b=39985 WHERE a=8470;\nUPDATE t2 SET b=4427 WHERE a=8471;\nUPDATE t2 SET b=86705 WHERE a=8472;\nUPDATE t2 SET b=88088 WHERE a=8473;\nUPDATE t2 SET b=43864 WHERE a=8474;\nUPDATE t2 SET b=72451 WHERE a=8475;\nUPDATE t2 SET b=18072 WHERE a=8476;\nUPDATE t2 SET b=71884 WHERE a=8477;\nUPDATE t2 SET b=50100 WHERE a=8478;\nUPDATE t2 SET b=51131 WHERE a=8479;\nUPDATE t2 SET b=39450 WHERE a=8480;\nUPDATE t2 SET b=4057 WHERE a=8481;\nUPDATE t2 SET b=11649 WHERE a=8482;\nUPDATE t2 SET b=98272 WHERE a=8483;\nUPDATE t2 SET b=68526 WHERE a=8484;\nUPDATE t2 SET b=35724 WHERE a=8485;\nUPDATE t2 SET b=25501 WHERE a=8486;\nUPDATE t2 SET b=47885 WHERE a=8487;\nUPDATE t2 SET b=34060 WHERE a=8488;\nUPDATE t2 SET b=82318 WHERE a=8489;\nUPDATE t2 SET b=19833 WHERE a=8490;\nUPDATE t2 SET b=18967 WHERE a=8491;\nUPDATE t2 SET b=98300 WHERE a=8492;\nUPDATE t2 SET b=60038 WHERE a=8493;\nUPDATE t2 SET b=42885 WHERE a=8494;\nUPDATE t2 SET b=90786 WHERE a=8495;\nUPDATE t2 SET b=45264 WHERE a=8496;\nUPDATE t2 SET b=83032 WHERE a=8497;\nUPDATE t2 SET b=61019 WHERE a=8498;\nUPDATE t2 SET b=12747 WHERE a=8499;\nUPDATE t2 SET b=19494 WHERE a=8500;\nUPDATE t2 SET b=73268 WHERE a=8501;\nUPDATE t2 SET b=90839 WHERE a=8502;\nUPDATE t2 SET b=54200 WHERE a=8503;\nUPDATE t2 SET b=22424 WHERE a=8504;\nUPDATE t2 SET b=76210 WHERE a=8505;\nUPDATE t2 SET b=93670 WHERE a=8506;\nUPDATE t2 SET b=16828 WHERE a=8507;\nUPDATE t2 SET b=34904 WHERE a=8508;\nUPDATE t2 SET b=55381 WHERE a=8509;\nUPDATE t2 SET b=79556 WHERE a=8510;\nUPDATE t2 SET b=57740 WHERE a=8511;\nUPDATE t2 SET b=68544 WHERE a=8512;\nUPDATE t2 SET b=87044 WHERE a=8513;\nUPDATE t2 SET b=17613 WHERE a=8514;\nUPDATE t2 SET b=74027 WHERE a=8515;\nUPDATE t2 SET b=8226 WHERE a=8516;\nUPDATE t2 SET b=82668 WHERE a=8517;\nUPDATE t2 SET b=179 WHERE a=8518;\nUPDATE t2 SET b=26174 WHERE a=8519;\nUPDATE t2 SET b=94682 WHERE a=8520;\nUPDATE t2 SET b=13267 WHERE a=8521;\nUPDATE t2 SET b=82896 WHERE a=8522;\nUPDATE t2 SET b=70350 WHERE a=8523;\nUPDATE t2 SET b=45864 WHERE a=8524;\nUPDATE t2 SET b=97054 WHERE a=8525;\nUPDATE t2 SET b=64007 WHERE a=8526;\nUPDATE t2 SET b=77441 WHERE a=8527;\nUPDATE t2 SET b=43185 WHERE a=8528;\nUPDATE t2 SET b=85770 WHERE a=8529;\nUPDATE t2 SET b=26727 WHERE a=8530;\nUPDATE t2 SET b=13988 WHERE a=8531;\nUPDATE t2 SET b=93457 WHERE a=8532;\nUPDATE t2 SET b=14491 WHERE a=8533;\nUPDATE t2 SET b=13584 WHERE a=8534;\nUPDATE t2 SET b=72394 WHERE a=8535;\nUPDATE t2 SET b=97433 WHERE a=8536;\nUPDATE t2 SET b=51751 WHERE a=8537;\nUPDATE t2 SET b=32997 WHERE a=8538;\nUPDATE t2 SET b=62029 WHERE a=8539;\nUPDATE t2 SET b=89936 WHERE a=8540;\nUPDATE t2 SET b=18943 WHERE a=8541;\nUPDATE t2 SET b=20389 WHERE a=8542;\nUPDATE t2 SET b=63744 WHERE a=8543;\nUPDATE t2 SET b=60146 WHERE a=8544;\nUPDATE t2 SET b=35182 WHERE a=8545;\nUPDATE t2 SET b=84955 WHERE a=8546;\nUPDATE t2 SET b=95377 WHERE a=8547;\nUPDATE t2 SET b=46174 WHERE a=8548;\nUPDATE t2 SET b=79583 WHERE a=8549;\nUPDATE t2 SET b=90875 WHERE a=8550;\nUPDATE t2 SET b=60644 WHERE a=8551;\nUPDATE t2 SET b=2546 WHERE a=8552;\nUPDATE t2 SET b=18842 WHERE a=8553;\nUPDATE t2 SET b=8440 WHERE a=8554;\nUPDATE t2 SET b=3519 WHERE a=8555;\nUPDATE t2 SET b=49682 WHERE a=8556;\nUPDATE t2 SET b=82947 WHERE a=8557;\nUPDATE t2 SET b=20490 WHERE a=8558;\nUPDATE t2 SET b=880 WHERE a=8559;\nUPDATE t2 SET b=77905 WHERE a=8560;\nUPDATE t2 SET b=79187 WHERE a=8561;\nUPDATE t2 SET b=8199 WHERE a=8562;\nUPDATE t2 SET b=91076 WHERE a=8563;\nUPDATE t2 SET b=98145 WHERE a=8564;\nUPDATE t2 SET b=88470 WHERE a=8565;\nUPDATE t2 SET b=49372 WHERE a=8566;\nUPDATE t2 SET b=74426 WHERE a=8567;\nUPDATE t2 SET b=37540 WHERE a=8568;\nUPDATE t2 SET b=77026 WHERE a=8569;\nUPDATE t2 SET b=38790 WHERE a=8570;\nUPDATE t2 SET b=62249 WHERE a=8571;\nUPDATE t2 SET b=34526 WHERE a=8572;\nUPDATE t2 SET b=46515 WHERE a=8573;\nUPDATE t2 SET b=79045 WHERE a=8574;\nUPDATE t2 SET b=48745 WHERE a=8575;\nUPDATE t2 SET b=75818 WHERE a=8576;\nUPDATE t2 SET b=82684 WHERE a=8577;\nUPDATE t2 SET b=70407 WHERE a=8578;\nUPDATE t2 SET b=34 WHERE a=8579;\nUPDATE t2 SET b=30798 WHERE a=8580;\nUPDATE t2 SET b=79163 WHERE a=8581;\nUPDATE t2 SET b=49831 WHERE a=8582;\nUPDATE t2 SET b=57543 WHERE a=8583;\nUPDATE t2 SET b=60331 WHERE a=8584;\nUPDATE t2 SET b=40026 WHERE a=8585;\nUPDATE t2 SET b=87894 WHERE a=8586;\nUPDATE t2 SET b=25007 WHERE a=8587;\nUPDATE t2 SET b=57273 WHERE a=8588;\nUPDATE t2 SET b=79795 WHERE a=8589;\nUPDATE t2 SET b=5947 WHERE a=8590;\nUPDATE t2 SET b=45881 WHERE a=8591;\nUPDATE t2 SET b=23043 WHERE a=8592;\nUPDATE t2 SET b=12200 WHERE a=8593;\nUPDATE t2 SET b=80714 WHERE a=8594;\nUPDATE t2 SET b=91322 WHERE a=8595;\nUPDATE t2 SET b=99411 WHERE a=8596;\nUPDATE t2 SET b=66753 WHERE a=8597;\nUPDATE t2 SET b=63012 WHERE a=8598;\nUPDATE t2 SET b=24859 WHERE a=8599;\nUPDATE t2 SET b=44251 WHERE a=8600;\nUPDATE t2 SET b=62474 WHERE a=8601;\nUPDATE t2 SET b=94589 WHERE a=8602;\nUPDATE t2 SET b=4135 WHERE a=8603;\nUPDATE t2 SET b=11010 WHERE a=8604;\nUPDATE t2 SET b=49942 WHERE a=8605;\nUPDATE t2 SET b=49943 WHERE a=8606;\nUPDATE t2 SET b=53042 WHERE a=8607;\nUPDATE t2 SET b=41062 WHERE a=8608;\nUPDATE t2 SET b=28478 WHERE a=8609;\nUPDATE t2 SET b=44792 WHERE a=8610;\nUPDATE t2 SET b=939 WHERE a=8611;\nUPDATE t2 SET b=65882 WHERE a=8612;\nUPDATE t2 SET b=13546 WHERE a=8613;\nUPDATE t2 SET b=25280 WHERE a=8614;\nUPDATE t2 SET b=33144 WHERE a=8615;\nUPDATE t2 SET b=1039 WHERE a=8616;\nUPDATE t2 SET b=33506 WHERE a=8617;\nUPDATE t2 SET b=50173 WHERE a=8618;\nUPDATE t2 SET b=53764 WHERE a=8619;\nUPDATE t2 SET b=79754 WHERE a=8620;\nUPDATE t2 SET b=68055 WHERE a=8621;\nUPDATE t2 SET b=93226 WHERE a=8622;\nUPDATE t2 SET b=99111 WHERE a=8623;\nUPDATE t2 SET b=84378 WHERE a=8624;\nUPDATE t2 SET b=2520 WHERE a=8625;\nUPDATE t2 SET b=64422 WHERE a=8626;\nUPDATE t2 SET b=11706 WHERE a=8627;\nUPDATE t2 SET b=73649 WHERE a=8628;\nUPDATE t2 SET b=6007 WHERE a=8629;\nUPDATE t2 SET b=7218 WHERE a=8630;\nUPDATE t2 SET b=72984 WHERE a=8631;\nUPDATE t2 SET b=62652 WHERE a=8632;\nUPDATE t2 SET b=77641 WHERE a=8633;\nUPDATE t2 SET b=66808 WHERE a=8634;\nUPDATE t2 SET b=51769 WHERE a=8635;\nUPDATE t2 SET b=18279 WHERE a=8636;\nUPDATE t2 SET b=68398 WHERE a=8637;\nUPDATE t2 SET b=46109 WHERE a=8638;\nUPDATE t2 SET b=36755 WHERE a=8639;\nUPDATE t2 SET b=54456 WHERE a=8640;\nUPDATE t2 SET b=79142 WHERE a=8641;\nUPDATE t2 SET b=16437 WHERE a=8642;\nUPDATE t2 SET b=13465 WHERE a=8643;\nUPDATE t2 SET b=73879 WHERE a=8644;\nUPDATE t2 SET b=49337 WHERE a=8645;\nUPDATE t2 SET b=33882 WHERE a=8646;\nUPDATE t2 SET b=78402 WHERE a=8647;\nUPDATE t2 SET b=57601 WHERE a=8648;\nUPDATE t2 SET b=79801 WHERE a=8649;\nUPDATE t2 SET b=50623 WHERE a=8650;\nUPDATE t2 SET b=20186 WHERE a=8651;\nUPDATE t2 SET b=26110 WHERE a=8652;\nUPDATE t2 SET b=76868 WHERE a=8653;\nUPDATE t2 SET b=66810 WHERE a=8654;\nUPDATE t2 SET b=37076 WHERE a=8655;\nUPDATE t2 SET b=96615 WHERE a=8656;\nUPDATE t2 SET b=71156 WHERE a=8657;\nUPDATE t2 SET b=79916 WHERE a=8658;\nUPDATE t2 SET b=88174 WHERE a=8659;\nUPDATE t2 SET b=30389 WHERE a=8660;\nUPDATE t2 SET b=26047 WHERE a=8661;\nUPDATE t2 SET b=62239 WHERE a=8662;\nUPDATE t2 SET b=5015 WHERE a=8663;\nUPDATE t2 SET b=261 WHERE a=8664;\nUPDATE t2 SET b=49655 WHERE a=8665;\nUPDATE t2 SET b=47106 WHERE a=8666;\nUPDATE t2 SET b=31370 WHERE a=8667;\nUPDATE t2 SET b=73147 WHERE a=8668;\nUPDATE t2 SET b=37607 WHERE a=8669;\nUPDATE t2 SET b=16328 WHERE a=8670;\nUPDATE t2 SET b=46111 WHERE a=8671;\nUPDATE t2 SET b=46343 WHERE a=8672;\nUPDATE t2 SET b=6042 WHERE a=8673;\nUPDATE t2 SET b=88067 WHERE a=8674;\nUPDATE t2 SET b=18154 WHERE a=8675;\nUPDATE t2 SET b=68019 WHERE a=8676;\nUPDATE t2 SET b=8724 WHERE a=8677;\nUPDATE t2 SET b=96665 WHERE a=8678;\nUPDATE t2 SET b=82528 WHERE a=8679;\nUPDATE t2 SET b=61282 WHERE a=8680;\nUPDATE t2 SET b=81651 WHERE a=8681;\nUPDATE t2 SET b=37846 WHERE a=8682;\nUPDATE t2 SET b=63464 WHERE a=8683;\nUPDATE t2 SET b=54918 WHERE a=8684;\nUPDATE t2 SET b=81083 WHERE a=8685;\nUPDATE t2 SET b=10005 WHERE a=8686;\nUPDATE t2 SET b=17815 WHERE a=8687;\nUPDATE t2 SET b=77420 WHERE a=8688;\nUPDATE t2 SET b=34567 WHERE a=8689;\nUPDATE t2 SET b=69327 WHERE a=8690;\nUPDATE t2 SET b=39972 WHERE a=8691;\nUPDATE t2 SET b=60348 WHERE a=8692;\nUPDATE t2 SET b=59710 WHERE a=8693;\nUPDATE t2 SET b=49094 WHERE a=8694;\nUPDATE t2 SET b=69171 WHERE a=8695;\nUPDATE t2 SET b=82127 WHERE a=8696;\nUPDATE t2 SET b=53007 WHERE a=8697;\nUPDATE t2 SET b=3537 WHERE a=8698;\nUPDATE t2 SET b=34530 WHERE a=8699;\nUPDATE t2 SET b=5201 WHERE a=8700;\nUPDATE t2 SET b=98242 WHERE a=8701;\nUPDATE t2 SET b=25825 WHERE a=8702;\nUPDATE t2 SET b=26907 WHERE a=8703;\nUPDATE t2 SET b=14590 WHERE a=8704;\nUPDATE t2 SET b=12540 WHERE a=8705;\nUPDATE t2 SET b=20698 WHERE a=8706;\nUPDATE t2 SET b=38217 WHERE a=8707;\nUPDATE t2 SET b=15592 WHERE a=8708;\nUPDATE t2 SET b=201 WHERE a=8709;\nUPDATE t2 SET b=7936 WHERE a=8710;\nUPDATE t2 SET b=54978 WHERE a=8711;\nUPDATE t2 SET b=53030 WHERE a=8712;\nUPDATE t2 SET b=10140 WHERE a=8713;\nUPDATE t2 SET b=9702 WHERE a=8714;\nUPDATE t2 SET b=27584 WHERE a=8715;\nUPDATE t2 SET b=13078 WHERE a=8716;\nUPDATE t2 SET b=56193 WHERE a=8717;\nUPDATE t2 SET b=23676 WHERE a=8718;\nUPDATE t2 SET b=82429 WHERE a=8719;\nUPDATE t2 SET b=16651 WHERE a=8720;\nUPDATE t2 SET b=88167 WHERE a=8721;\nUPDATE t2 SET b=45218 WHERE a=8722;\nUPDATE t2 SET b=52150 WHERE a=8723;\nUPDATE t2 SET b=71773 WHERE a=8724;\nUPDATE t2 SET b=51680 WHERE a=8725;\nUPDATE t2 SET b=80797 WHERE a=8726;\nUPDATE t2 SET b=61110 WHERE a=8727;\nUPDATE t2 SET b=42892 WHERE a=8728;\nUPDATE t2 SET b=19833 WHERE a=8729;\nUPDATE t2 SET b=45058 WHERE a=8730;\nUPDATE t2 SET b=12202 WHERE a=8731;\nUPDATE t2 SET b=51058 WHERE a=8732;\nUPDATE t2 SET b=34205 WHERE a=8733;\nUPDATE t2 SET b=7697 WHERE a=8734;\nUPDATE t2 SET b=78201 WHERE a=8735;\nUPDATE t2 SET b=77890 WHERE a=8736;\nUPDATE t2 SET b=39948 WHERE a=8737;\nUPDATE t2 SET b=93174 WHERE a=8738;\nUPDATE t2 SET b=77657 WHERE a=8739;\nUPDATE t2 SET b=14460 WHERE a=8740;\nUPDATE t2 SET b=59709 WHERE a=8741;\nUPDATE t2 SET b=38420 WHERE a=8742;\nUPDATE t2 SET b=47500 WHERE a=8743;\nUPDATE t2 SET b=78250 WHERE a=8744;\nUPDATE t2 SET b=31939 WHERE a=8745;\nUPDATE t2 SET b=65240 WHERE a=8746;\nUPDATE t2 SET b=16160 WHERE a=8747;\nUPDATE t2 SET b=26161 WHERE a=8748;\nUPDATE t2 SET b=89368 WHERE a=8749;\nUPDATE t2 SET b=79315 WHERE a=8750;\nUPDATE t2 SET b=55250 WHERE a=8751;\nUPDATE t2 SET b=26421 WHERE a=8752;\nUPDATE t2 SET b=41326 WHERE a=8753;\nUPDATE t2 SET b=45139 WHERE a=8754;\nUPDATE t2 SET b=30934 WHERE a=8755;\nUPDATE t2 SET b=10506 WHERE a=8756;\nUPDATE t2 SET b=52538 WHERE a=8757;\nUPDATE t2 SET b=96900 WHERE a=8758;\nUPDATE t2 SET b=89249 WHERE a=8759;\nUPDATE t2 SET b=72585 WHERE a=8760;\nUPDATE t2 SET b=41835 WHERE a=8761;\nUPDATE t2 SET b=11085 WHERE a=8762;\nUPDATE t2 SET b=60771 WHERE a=8763;\nUPDATE t2 SET b=66723 WHERE a=8764;\nUPDATE t2 SET b=92891 WHERE a=8765;\nUPDATE t2 SET b=36305 WHERE a=8766;\nUPDATE t2 SET b=71913 WHERE a=8767;\nUPDATE t2 SET b=67565 WHERE a=8768;\nUPDATE t2 SET b=53404 WHERE a=8769;\nUPDATE t2 SET b=23421 WHERE a=8770;\nUPDATE t2 SET b=10072 WHERE a=8771;\nUPDATE t2 SET b=34863 WHERE a=8772;\nUPDATE t2 SET b=45433 WHERE a=8773;\nUPDATE t2 SET b=51991 WHERE a=8774;\nUPDATE t2 SET b=86973 WHERE a=8775;\nUPDATE t2 SET b=12661 WHERE a=8776;\nUPDATE t2 SET b=36000 WHERE a=8777;\nUPDATE t2 SET b=93456 WHERE a=8778;\nUPDATE t2 SET b=14881 WHERE a=8779;\nUPDATE t2 SET b=66846 WHERE a=8780;\nUPDATE t2 SET b=22429 WHERE a=8781;\nUPDATE t2 SET b=27358 WHERE a=8782;\nUPDATE t2 SET b=37612 WHERE a=8783;\nUPDATE t2 SET b=19490 WHERE a=8784;\nUPDATE t2 SET b=74548 WHERE a=8785;\nUPDATE t2 SET b=79999 WHERE a=8786;\nUPDATE t2 SET b=53185 WHERE a=8787;\nUPDATE t2 SET b=14200 WHERE a=8788;\nUPDATE t2 SET b=90594 WHERE a=8789;\nUPDATE t2 SET b=97838 WHERE a=8790;\nUPDATE t2 SET b=26036 WHERE a=8791;\nUPDATE t2 SET b=61973 WHERE a=8792;\nUPDATE t2 SET b=23442 WHERE a=8793;\nUPDATE t2 SET b=61550 WHERE a=8794;\nUPDATE t2 SET b=70616 WHERE a=8795;\nUPDATE t2 SET b=32674 WHERE a=8796;\nUPDATE t2 SET b=67804 WHERE a=8797;\nUPDATE t2 SET b=63229 WHERE a=8798;\nUPDATE t2 SET b=74744 WHERE a=8799;\nUPDATE t2 SET b=87769 WHERE a=8800;\nUPDATE t2 SET b=30992 WHERE a=8801;\nUPDATE t2 SET b=30790 WHERE a=8802;\nUPDATE t2 SET b=54660 WHERE a=8803;\nUPDATE t2 SET b=29078 WHERE a=8804;\nUPDATE t2 SET b=1258 WHERE a=8805;\nUPDATE t2 SET b=37008 WHERE a=8806;\nUPDATE t2 SET b=33339 WHERE a=8807;\nUPDATE t2 SET b=71060 WHERE a=8808;\nUPDATE t2 SET b=81724 WHERE a=8809;\nUPDATE t2 SET b=91275 WHERE a=8810;\nUPDATE t2 SET b=14262 WHERE a=8811;\nUPDATE t2 SET b=29506 WHERE a=8812;\nUPDATE t2 SET b=60397 WHERE a=8813;\nUPDATE t2 SET b=22580 WHERE a=8814;\nUPDATE t2 SET b=88097 WHERE a=8815;\nUPDATE t2 SET b=66463 WHERE a=8816;\nUPDATE t2 SET b=12787 WHERE a=8817;\nUPDATE t2 SET b=75170 WHERE a=8818;\nUPDATE t2 SET b=49504 WHERE a=8819;\nUPDATE t2 SET b=73215 WHERE a=8820;\nUPDATE t2 SET b=81275 WHERE a=8821;\nUPDATE t2 SET b=63432 WHERE a=8822;\nUPDATE t2 SET b=58941 WHERE a=8823;\nUPDATE t2 SET b=1412 WHERE a=8824;\nUPDATE t2 SET b=99325 WHERE a=8825;\nUPDATE t2 SET b=53788 WHERE a=8826;\nUPDATE t2 SET b=89730 WHERE a=8827;\nUPDATE t2 SET b=55200 WHERE a=8828;\nUPDATE t2 SET b=35686 WHERE a=8829;\nUPDATE t2 SET b=47644 WHERE a=8830;\nUPDATE t2 SET b=20461 WHERE a=8831;\nUPDATE t2 SET b=36865 WHERE a=8832;\nUPDATE t2 SET b=39302 WHERE a=8833;\nUPDATE t2 SET b=8378 WHERE a=8834;\nUPDATE t2 SET b=11282 WHERE a=8835;\nUPDATE t2 SET b=61649 WHERE a=8836;\nUPDATE t2 SET b=65556 WHERE a=8837;\nUPDATE t2 SET b=90413 WHERE a=8838;\nUPDATE t2 SET b=83277 WHERE a=8839;\nUPDATE t2 SET b=42205 WHERE a=8840;\nUPDATE t2 SET b=26043 WHERE a=8841;\nUPDATE t2 SET b=25262 WHERE a=8842;\nUPDATE t2 SET b=56412 WHERE a=8843;\nUPDATE t2 SET b=74887 WHERE a=8844;\nUPDATE t2 SET b=64090 WHERE a=8845;\nUPDATE t2 SET b=42353 WHERE a=8846;\nUPDATE t2 SET b=71918 WHERE a=8847;\nUPDATE t2 SET b=17318 WHERE a=8848;\nUPDATE t2 SET b=47722 WHERE a=8849;\nUPDATE t2 SET b=55062 WHERE a=8850;\nUPDATE t2 SET b=29344 WHERE a=8851;\nUPDATE t2 SET b=19566 WHERE a=8852;\nUPDATE t2 SET b=60298 WHERE a=8853;\nUPDATE t2 SET b=58692 WHERE a=8854;\nUPDATE t2 SET b=97789 WHERE a=8855;\nUPDATE t2 SET b=43184 WHERE a=8856;\nUPDATE t2 SET b=45028 WHERE a=8857;\nUPDATE t2 SET b=20564 WHERE a=8858;\nUPDATE t2 SET b=77389 WHERE a=8859;\nUPDATE t2 SET b=23193 WHERE a=8860;\nUPDATE t2 SET b=63919 WHERE a=8861;\nUPDATE t2 SET b=61038 WHERE a=8862;\nUPDATE t2 SET b=77343 WHERE a=8863;\nUPDATE t2 SET b=90434 WHERE a=8864;\nUPDATE t2 SET b=70224 WHERE a=8865;\nUPDATE t2 SET b=88810 WHERE a=8866;\nUPDATE t2 SET b=56163 WHERE a=8867;\nUPDATE t2 SET b=53030 WHERE a=8868;\nUPDATE t2 SET b=4615 WHERE a=8869;\nUPDATE t2 SET b=90565 WHERE a=8870;\nUPDATE t2 SET b=9368 WHERE a=8871;\nUPDATE t2 SET b=35004 WHERE a=8872;\nUPDATE t2 SET b=60913 WHERE a=8873;\nUPDATE t2 SET b=48870 WHERE a=8874;\nUPDATE t2 SET b=35479 WHERE a=8875;\nUPDATE t2 SET b=36368 WHERE a=8876;\nUPDATE t2 SET b=62923 WHERE a=8877;\nUPDATE t2 SET b=92587 WHERE a=8878;\nUPDATE t2 SET b=24426 WHERE a=8879;\nUPDATE t2 SET b=16663 WHERE a=8880;\nUPDATE t2 SET b=40563 WHERE a=8881;\nUPDATE t2 SET b=79374 WHERE a=8882;\nUPDATE t2 SET b=75663 WHERE a=8883;\nUPDATE t2 SET b=48184 WHERE a=8884;\nUPDATE t2 SET b=81822 WHERE a=8885;\nUPDATE t2 SET b=85803 WHERE a=8886;\nUPDATE t2 SET b=24903 WHERE a=8887;\nUPDATE t2 SET b=19785 WHERE a=8888;\nUPDATE t2 SET b=55522 WHERE a=8889;\nUPDATE t2 SET b=35714 WHERE a=8890;\nUPDATE t2 SET b=58355 WHERE a=8891;\nUPDATE t2 SET b=79565 WHERE a=8892;\nUPDATE t2 SET b=75213 WHERE a=8893;\nUPDATE t2 SET b=30230 WHERE a=8894;\nUPDATE t2 SET b=99607 WHERE a=8895;\nUPDATE t2 SET b=43167 WHERE a=8896;\nUPDATE t2 SET b=64071 WHERE a=8897;\nUPDATE t2 SET b=67765 WHERE a=8898;\nUPDATE t2 SET b=56407 WHERE a=8899;\nUPDATE t2 SET b=60230 WHERE a=8900;\nUPDATE t2 SET b=3767 WHERE a=8901;\nUPDATE t2 SET b=88412 WHERE a=8902;\nUPDATE t2 SET b=32135 WHERE a=8903;\nUPDATE t2 SET b=56275 WHERE a=8904;\nUPDATE t2 SET b=7151 WHERE a=8905;\nUPDATE t2 SET b=40358 WHERE a=8906;\nUPDATE t2 SET b=80262 WHERE a=8907;\nUPDATE t2 SET b=36614 WHERE a=8908;\nUPDATE t2 SET b=88591 WHERE a=8909;\nUPDATE t2 SET b=42912 WHERE a=8910;\nUPDATE t2 SET b=17814 WHERE a=8911;\nUPDATE t2 SET b=84148 WHERE a=8912;\nUPDATE t2 SET b=26128 WHERE a=8913;\nUPDATE t2 SET b=64669 WHERE a=8914;\nUPDATE t2 SET b=19650 WHERE a=8915;\nUPDATE t2 SET b=84935 WHERE a=8916;\nUPDATE t2 SET b=84761 WHERE a=8917;\nUPDATE t2 SET b=10474 WHERE a=8918;\nUPDATE t2 SET b=68499 WHERE a=8919;\nUPDATE t2 SET b=16624 WHERE a=8920;\nUPDATE t2 SET b=26426 WHERE a=8921;\nUPDATE t2 SET b=28791 WHERE a=8922;\nUPDATE t2 SET b=67869 WHERE a=8923;\nUPDATE t2 SET b=53182 WHERE a=8924;\nUPDATE t2 SET b=54089 WHERE a=8925;\nUPDATE t2 SET b=87558 WHERE a=8926;\nUPDATE t2 SET b=88754 WHERE a=8927;\nUPDATE t2 SET b=65868 WHERE a=8928;\nUPDATE t2 SET b=93719 WHERE a=8929;\nUPDATE t2 SET b=91828 WHERE a=8930;\nUPDATE t2 SET b=61168 WHERE a=8931;\nUPDATE t2 SET b=75540 WHERE a=8932;\nUPDATE t2 SET b=71015 WHERE a=8933;\nUPDATE t2 SET b=41473 WHERE a=8934;\nUPDATE t2 SET b=46845 WHERE a=8935;\nUPDATE t2 SET b=88422 WHERE a=8936;\nUPDATE t2 SET b=29958 WHERE a=8937;\nUPDATE t2 SET b=32508 WHERE a=8938;\nUPDATE t2 SET b=88514 WHERE a=8939;\nUPDATE t2 SET b=1012 WHERE a=8940;\nUPDATE t2 SET b=12926 WHERE a=8941;\nUPDATE t2 SET b=2211 WHERE a=8942;\nUPDATE t2 SET b=23540 WHERE a=8943;\nUPDATE t2 SET b=3566 WHERE a=8944;\nUPDATE t2 SET b=3227 WHERE a=8945;\nUPDATE t2 SET b=22780 WHERE a=8946;\nUPDATE t2 SET b=63210 WHERE a=8947;\nUPDATE t2 SET b=45920 WHERE a=8948;\nUPDATE t2 SET b=90378 WHERE a=8949;\nUPDATE t2 SET b=32962 WHERE a=8950;\nUPDATE t2 SET b=32614 WHERE a=8951;\nUPDATE t2 SET b=70918 WHERE a=8952;\nUPDATE t2 SET b=17079 WHERE a=8953;\nUPDATE t2 SET b=94800 WHERE a=8954;\nUPDATE t2 SET b=59815 WHERE a=8955;\nUPDATE t2 SET b=7349 WHERE a=8956;\nUPDATE t2 SET b=24848 WHERE a=8957;\nUPDATE t2 SET b=284 WHERE a=8958;\nUPDATE t2 SET b=93400 WHERE a=8959;\nUPDATE t2 SET b=75385 WHERE a=8960;\nUPDATE t2 SET b=79622 WHERE a=8961;\nUPDATE t2 SET b=68323 WHERE a=8962;\nUPDATE t2 SET b=61463 WHERE a=8963;\nUPDATE t2 SET b=70693 WHERE a=8964;\nUPDATE t2 SET b=39257 WHERE a=8965;\nUPDATE t2 SET b=71321 WHERE a=8966;\nUPDATE t2 SET b=84692 WHERE a=8967;\nUPDATE t2 SET b=46942 WHERE a=8968;\nUPDATE t2 SET b=3719 WHERE a=8969;\nUPDATE t2 SET b=81904 WHERE a=8970;\nUPDATE t2 SET b=9225 WHERE a=8971;\nUPDATE t2 SET b=95092 WHERE a=8972;\nUPDATE t2 SET b=71880 WHERE a=8973;\nUPDATE t2 SET b=37075 WHERE a=8974;\nUPDATE t2 SET b=64211 WHERE a=8975;\nUPDATE t2 SET b=36425 WHERE a=8976;\nUPDATE t2 SET b=3447 WHERE a=8977;\nUPDATE t2 SET b=67887 WHERE a=8978;\nUPDATE t2 SET b=67950 WHERE a=8979;\nUPDATE t2 SET b=16765 WHERE a=8980;\nUPDATE t2 SET b=39565 WHERE a=8981;\nUPDATE t2 SET b=46218 WHERE a=8982;\nUPDATE t2 SET b=66468 WHERE a=8983;\nUPDATE t2 SET b=76695 WHERE a=8984;\nUPDATE t2 SET b=42404 WHERE a=8985;\nUPDATE t2 SET b=11240 WHERE a=8986;\nUPDATE t2 SET b=42384 WHERE a=8987;\nUPDATE t2 SET b=29156 WHERE a=8988;\nUPDATE t2 SET b=9640 WHERE a=8989;\nUPDATE t2 SET b=39356 WHERE a=8990;\nUPDATE t2 SET b=68026 WHERE a=8991;\nUPDATE t2 SET b=39526 WHERE a=8992;\nUPDATE t2 SET b=82068 WHERE a=8993;\nUPDATE t2 SET b=59542 WHERE a=8994;\nUPDATE t2 SET b=99711 WHERE a=8995;\nUPDATE t2 SET b=65695 WHERE a=8996;\nUPDATE t2 SET b=28818 WHERE a=8997;\nUPDATE t2 SET b=57798 WHERE a=8998;\nUPDATE t2 SET b=143 WHERE a=8999;\nUPDATE t2 SET b=85695 WHERE a=9000;\nUPDATE t2 SET b=28956 WHERE a=9001;\nUPDATE t2 SET b=50856 WHERE a=9002;\nUPDATE t2 SET b=56157 WHERE a=9003;\nUPDATE t2 SET b=55745 WHERE a=9004;\nUPDATE t2 SET b=14991 WHERE a=9005;\nUPDATE t2 SET b=56840 WHERE a=9006;\nUPDATE t2 SET b=63120 WHERE a=9007;\nUPDATE t2 SET b=62378 WHERE a=9008;\nUPDATE t2 SET b=43949 WHERE a=9009;\nUPDATE t2 SET b=73899 WHERE a=9010;\nUPDATE t2 SET b=26931 WHERE a=9011;\nUPDATE t2 SET b=5080 WHERE a=9012;\nUPDATE t2 SET b=14180 WHERE a=9013;\nUPDATE t2 SET b=2385 WHERE a=9014;\nUPDATE t2 SET b=49203 WHERE a=9015;\nUPDATE t2 SET b=53453 WHERE a=9016;\nUPDATE t2 SET b=55918 WHERE a=9017;\nUPDATE t2 SET b=73691 WHERE a=9018;\nUPDATE t2 SET b=7596 WHERE a=9019;\nUPDATE t2 SET b=84106 WHERE a=9020;\nUPDATE t2 SET b=76281 WHERE a=9021;\nUPDATE t2 SET b=33772 WHERE a=9022;\nUPDATE t2 SET b=4101 WHERE a=9023;\nUPDATE t2 SET b=74172 WHERE a=9024;\nUPDATE t2 SET b=51800 WHERE a=9025;\nUPDATE t2 SET b=27050 WHERE a=9026;\nUPDATE t2 SET b=25558 WHERE a=9027;\nUPDATE t2 SET b=56119 WHERE a=9028;\nUPDATE t2 SET b=62271 WHERE a=9029;\nUPDATE t2 SET b=36360 WHERE a=9030;\nUPDATE t2 SET b=65677 WHERE a=9031;\nUPDATE t2 SET b=5617 WHERE a=9032;\nUPDATE t2 SET b=40407 WHERE a=9033;\nUPDATE t2 SET b=47132 WHERE a=9034;\nUPDATE t2 SET b=92380 WHERE a=9035;\nUPDATE t2 SET b=84199 WHERE a=9036;\nUPDATE t2 SET b=90911 WHERE a=9037;\nUPDATE t2 SET b=69126 WHERE a=9038;\nUPDATE t2 SET b=65806 WHERE a=9039;\nUPDATE t2 SET b=53483 WHERE a=9040;\nUPDATE t2 SET b=85919 WHERE a=9041;\nUPDATE t2 SET b=73843 WHERE a=9042;\nUPDATE t2 SET b=51525 WHERE a=9043;\nUPDATE t2 SET b=41544 WHERE a=9044;\nUPDATE t2 SET b=48335 WHERE a=9045;\nUPDATE t2 SET b=92128 WHERE a=9046;\nUPDATE t2 SET b=85510 WHERE a=9047;\nUPDATE t2 SET b=98390 WHERE a=9048;\nUPDATE t2 SET b=97446 WHERE a=9049;\nUPDATE t2 SET b=17667 WHERE a=9050;\nUPDATE t2 SET b=75505 WHERE a=9051;\nUPDATE t2 SET b=19604 WHERE a=9052;\nUPDATE t2 SET b=89403 WHERE a=9053;\nUPDATE t2 SET b=63637 WHERE a=9054;\nUPDATE t2 SET b=46123 WHERE a=9055;\nUPDATE t2 SET b=64869 WHERE a=9056;\nUPDATE t2 SET b=49529 WHERE a=9057;\nUPDATE t2 SET b=99733 WHERE a=9058;\nUPDATE t2 SET b=78934 WHERE a=9059;\nUPDATE t2 SET b=51978 WHERE a=9060;\nUPDATE t2 SET b=55872 WHERE a=9061;\nUPDATE t2 SET b=51993 WHERE a=9062;\nUPDATE t2 SET b=1356 WHERE a=9063;\nUPDATE t2 SET b=57532 WHERE a=9064;\nUPDATE t2 SET b=81446 WHERE a=9065;\nUPDATE t2 SET b=32997 WHERE a=9066;\nUPDATE t2 SET b=86504 WHERE a=9067;\nUPDATE t2 SET b=89988 WHERE a=9068;\nUPDATE t2 SET b=40130 WHERE a=9069;\nUPDATE t2 SET b=24531 WHERE a=9070;\nUPDATE t2 SET b=62926 WHERE a=9071;\nUPDATE t2 SET b=78019 WHERE a=9072;\nUPDATE t2 SET b=14653 WHERE a=9073;\nUPDATE t2 SET b=34576 WHERE a=9074;\nUPDATE t2 SET b=15396 WHERE a=9075;\nUPDATE t2 SET b=39775 WHERE a=9076;\nUPDATE t2 SET b=93832 WHERE a=9077;\nUPDATE t2 SET b=33497 WHERE a=9078;\nUPDATE t2 SET b=20362 WHERE a=9079;\nUPDATE t2 SET b=74540 WHERE a=9080;\nUPDATE t2 SET b=22878 WHERE a=9081;\nUPDATE t2 SET b=21830 WHERE a=9082;\nUPDATE t2 SET b=43060 WHERE a=9083;\nUPDATE t2 SET b=94012 WHERE a=9084;\nUPDATE t2 SET b=31140 WHERE a=9085;\nUPDATE t2 SET b=89605 WHERE a=9086;\nUPDATE t2 SET b=3306 WHERE a=9087;\nUPDATE t2 SET b=6354 WHERE a=9088;\nUPDATE t2 SET b=82170 WHERE a=9089;\nUPDATE t2 SET b=16715 WHERE a=9090;\nUPDATE t2 SET b=59267 WHERE a=9091;\nUPDATE t2 SET b=91537 WHERE a=9092;\nUPDATE t2 SET b=94033 WHERE a=9093;\nUPDATE t2 SET b=60883 WHERE a=9094;\nUPDATE t2 SET b=1139 WHERE a=9095;\nUPDATE t2 SET b=84499 WHERE a=9096;\nUPDATE t2 SET b=66089 WHERE a=9097;\nUPDATE t2 SET b=28375 WHERE a=9098;\nUPDATE t2 SET b=67176 WHERE a=9099;\nUPDATE t2 SET b=24417 WHERE a=9100;\nUPDATE t2 SET b=14400 WHERE a=9101;\nUPDATE t2 SET b=84057 WHERE a=9102;\nUPDATE t2 SET b=31416 WHERE a=9103;\nUPDATE t2 SET b=73396 WHERE a=9104;\nUPDATE t2 SET b=39272 WHERE a=9105;\nUPDATE t2 SET b=1565 WHERE a=9106;\nUPDATE t2 SET b=80071 WHERE a=9107;\nUPDATE t2 SET b=29001 WHERE a=9108;\nUPDATE t2 SET b=5626 WHERE a=9109;\nUPDATE t2 SET b=98147 WHERE a=9110;\nUPDATE t2 SET b=24302 WHERE a=9111;\nUPDATE t2 SET b=25099 WHERE a=9112;\nUPDATE t2 SET b=64784 WHERE a=9113;\nUPDATE t2 SET b=9284 WHERE a=9114;\nUPDATE t2 SET b=16211 WHERE a=9115;\nUPDATE t2 SET b=88900 WHERE a=9116;\nUPDATE t2 SET b=41320 WHERE a=9117;\nUPDATE t2 SET b=8737 WHERE a=9118;\nUPDATE t2 SET b=15794 WHERE a=9119;\nUPDATE t2 SET b=43596 WHERE a=9120;\nUPDATE t2 SET b=46774 WHERE a=9121;\nUPDATE t2 SET b=24734 WHERE a=9122;\nUPDATE t2 SET b=44876 WHERE a=9123;\nUPDATE t2 SET b=63473 WHERE a=9124;\nUPDATE t2 SET b=73124 WHERE a=9125;\nUPDATE t2 SET b=98134 WHERE a=9126;\nUPDATE t2 SET b=36864 WHERE a=9127;\nUPDATE t2 SET b=69003 WHERE a=9128;\nUPDATE t2 SET b=18152 WHERE a=9129;\nUPDATE t2 SET b=34110 WHERE a=9130;\nUPDATE t2 SET b=98555 WHERE a=9131;\nUPDATE t2 SET b=25428 WHERE a=9132;\nUPDATE t2 SET b=63534 WHERE a=9133;\nUPDATE t2 SET b=62752 WHERE a=9134;\nUPDATE t2 SET b=58993 WHERE a=9135;\nUPDATE t2 SET b=79226 WHERE a=9136;\nUPDATE t2 SET b=39070 WHERE a=9137;\nUPDATE t2 SET b=77688 WHERE a=9138;\nUPDATE t2 SET b=92611 WHERE a=9139;\nUPDATE t2 SET b=9087 WHERE a=9140;\nUPDATE t2 SET b=72580 WHERE a=9141;\nUPDATE t2 SET b=62770 WHERE a=9142;\nUPDATE t2 SET b=80555 WHERE a=9143;\nUPDATE t2 SET b=12169 WHERE a=9144;\nUPDATE t2 SET b=27291 WHERE a=9145;\nUPDATE t2 SET b=52106 WHERE a=9146;\nUPDATE t2 SET b=85078 WHERE a=9147;\nUPDATE t2 SET b=34778 WHERE a=9148;\nUPDATE t2 SET b=50687 WHERE a=9149;\nUPDATE t2 SET b=78661 WHERE a=9150;\nUPDATE t2 SET b=15566 WHERE a=9151;\nUPDATE t2 SET b=17373 WHERE a=9152;\nUPDATE t2 SET b=76621 WHERE a=9153;\nUPDATE t2 SET b=18500 WHERE a=9154;\nUPDATE t2 SET b=85396 WHERE a=9155;\nUPDATE t2 SET b=19231 WHERE a=9156;\nUPDATE t2 SET b=97758 WHERE a=9157;\nUPDATE t2 SET b=75217 WHERE a=9158;\nUPDATE t2 SET b=96887 WHERE a=9159;\nUPDATE t2 SET b=85819 WHERE a=9160;\nUPDATE t2 SET b=6823 WHERE a=9161;\nUPDATE t2 SET b=86880 WHERE a=9162;\nUPDATE t2 SET b=98338 WHERE a=9163;\nUPDATE t2 SET b=43672 WHERE a=9164;\nUPDATE t2 SET b=1375 WHERE a=9165;\nUPDATE t2 SET b=82815 WHERE a=9166;\nUPDATE t2 SET b=18333 WHERE a=9167;\nUPDATE t2 SET b=41122 WHERE a=9168;\nUPDATE t2 SET b=28275 WHERE a=9169;\nUPDATE t2 SET b=34833 WHERE a=9170;\nUPDATE t2 SET b=39370 WHERE a=9171;\nUPDATE t2 SET b=8148 WHERE a=9172;\nUPDATE t2 SET b=3707 WHERE a=9173;\nUPDATE t2 SET b=34414 WHERE a=9174;\nUPDATE t2 SET b=62403 WHERE a=9175;\nUPDATE t2 SET b=96886 WHERE a=9176;\nUPDATE t2 SET b=85000 WHERE a=9177;\nUPDATE t2 SET b=6177 WHERE a=9178;\nUPDATE t2 SET b=9248 WHERE a=9179;\nUPDATE t2 SET b=81476 WHERE a=9180;\nUPDATE t2 SET b=33303 WHERE a=9181;\nUPDATE t2 SET b=96791 WHERE a=9182;\nUPDATE t2 SET b=75832 WHERE a=9183;\nUPDATE t2 SET b=33974 WHERE a=9184;\nUPDATE t2 SET b=95923 WHERE a=9185;\nUPDATE t2 SET b=1088 WHERE a=9186;\nUPDATE t2 SET b=57494 WHERE a=9187;\nUPDATE t2 SET b=14377 WHERE a=9188;\nUPDATE t2 SET b=16111 WHERE a=9189;\nUPDATE t2 SET b=9383 WHERE a=9190;\nUPDATE t2 SET b=60647 WHERE a=9191;\nUPDATE t2 SET b=62727 WHERE a=9192;\nUPDATE t2 SET b=84598 WHERE a=9193;\nUPDATE t2 SET b=95215 WHERE a=9194;\nUPDATE t2 SET b=74357 WHERE a=9195;\nUPDATE t2 SET b=58005 WHERE a=9196;\nUPDATE t2 SET b=57333 WHERE a=9197;\nUPDATE t2 SET b=48310 WHERE a=9198;\nUPDATE t2 SET b=92105 WHERE a=9199;\nUPDATE t2 SET b=90566 WHERE a=9200;\nUPDATE t2 SET b=57107 WHERE a=9201;\nUPDATE t2 SET b=30644 WHERE a=9202;\nUPDATE t2 SET b=47638 WHERE a=9203;\nUPDATE t2 SET b=12955 WHERE a=9204;\nUPDATE t2 SET b=81011 WHERE a=9205;\nUPDATE t2 SET b=90084 WHERE a=9206;\nUPDATE t2 SET b=5959 WHERE a=9207;\nUPDATE t2 SET b=90863 WHERE a=9208;\nUPDATE t2 SET b=16935 WHERE a=9209;\nUPDATE t2 SET b=85296 WHERE a=9210;\nUPDATE t2 SET b=84490 WHERE a=9211;\nUPDATE t2 SET b=83403 WHERE a=9212;\nUPDATE t2 SET b=17008 WHERE a=9213;\nUPDATE t2 SET b=60989 WHERE a=9214;\nUPDATE t2 SET b=79806 WHERE a=9215;\nUPDATE t2 SET b=2466 WHERE a=9216;\nUPDATE t2 SET b=20098 WHERE a=9217;\nUPDATE t2 SET b=16337 WHERE a=9218;\nUPDATE t2 SET b=2423 WHERE a=9219;\nUPDATE t2 SET b=34887 WHERE a=9220;\nUPDATE t2 SET b=19341 WHERE a=9221;\nUPDATE t2 SET b=94732 WHERE a=9222;\nUPDATE t2 SET b=64335 WHERE a=9223;\nUPDATE t2 SET b=45911 WHERE a=9224;\nUPDATE t2 SET b=92742 WHERE a=9225;\nUPDATE t2 SET b=91298 WHERE a=9226;\nUPDATE t2 SET b=99813 WHERE a=9227;\nUPDATE t2 SET b=21023 WHERE a=9228;\nUPDATE t2 SET b=6519 WHERE a=9229;\nUPDATE t2 SET b=40052 WHERE a=9230;\nUPDATE t2 SET b=66458 WHERE a=9231;\nUPDATE t2 SET b=46365 WHERE a=9232;\nUPDATE t2 SET b=15793 WHERE a=9233;\nUPDATE t2 SET b=18725 WHERE a=9234;\nUPDATE t2 SET b=52721 WHERE a=9235;\nUPDATE t2 SET b=33029 WHERE a=9236;\nUPDATE t2 SET b=73300 WHERE a=9237;\nUPDATE t2 SET b=87923 WHERE a=9238;\nUPDATE t2 SET b=44238 WHERE a=9239;\nUPDATE t2 SET b=74870 WHERE a=9240;\nUPDATE t2 SET b=37299 WHERE a=9241;\nUPDATE t2 SET b=46619 WHERE a=9242;\nUPDATE t2 SET b=16267 WHERE a=9243;\nUPDATE t2 SET b=50348 WHERE a=9244;\nUPDATE t2 SET b=99642 WHERE a=9245;\nUPDATE t2 SET b=34927 WHERE a=9246;\nUPDATE t2 SET b=50027 WHERE a=9247;\nUPDATE t2 SET b=25823 WHERE a=9248;\nUPDATE t2 SET b=36501 WHERE a=9249;\nUPDATE t2 SET b=41023 WHERE a=9250;\nUPDATE t2 SET b=53296 WHERE a=9251;\nUPDATE t2 SET b=85236 WHERE a=9252;\nUPDATE t2 SET b=54575 WHERE a=9253;\nUPDATE t2 SET b=13527 WHERE a=9254;\nUPDATE t2 SET b=14992 WHERE a=9255;\nUPDATE t2 SET b=83873 WHERE a=9256;\nUPDATE t2 SET b=20945 WHERE a=9257;\nUPDATE t2 SET b=86494 WHERE a=9258;\nUPDATE t2 SET b=42305 WHERE a=9259;\nUPDATE t2 SET b=92271 WHERE a=9260;\nUPDATE t2 SET b=32300 WHERE a=9261;\nUPDATE t2 SET b=66948 WHERE a=9262;\nUPDATE t2 SET b=88599 WHERE a=9263;\nUPDATE t2 SET b=38235 WHERE a=9264;\nUPDATE t2 SET b=19082 WHERE a=9265;\nUPDATE t2 SET b=3834 WHERE a=9266;\nUPDATE t2 SET b=83733 WHERE a=9267;\nUPDATE t2 SET b=7515 WHERE a=9268;\nUPDATE t2 SET b=80859 WHERE a=9269;\nUPDATE t2 SET b=27930 WHERE a=9270;\nUPDATE t2 SET b=32936 WHERE a=9271;\nUPDATE t2 SET b=7089 WHERE a=9272;\nUPDATE t2 SET b=9110 WHERE a=9273;\nUPDATE t2 SET b=41374 WHERE a=9274;\nUPDATE t2 SET b=52064 WHERE a=9275;\nUPDATE t2 SET b=6550 WHERE a=9276;\nUPDATE t2 SET b=61184 WHERE a=9277;\nUPDATE t2 SET b=93502 WHERE a=9278;\nUPDATE t2 SET b=74442 WHERE a=9279;\nUPDATE t2 SET b=28744 WHERE a=9280;\nUPDATE t2 SET b=7000 WHERE a=9281;\nUPDATE t2 SET b=69320 WHERE a=9282;\nUPDATE t2 SET b=1369 WHERE a=9283;\nUPDATE t2 SET b=73980 WHERE a=9284;\nUPDATE t2 SET b=57410 WHERE a=9285;\nUPDATE t2 SET b=56052 WHERE a=9286;\nUPDATE t2 SET b=1728 WHERE a=9287;\nUPDATE t2 SET b=66150 WHERE a=9288;\nUPDATE t2 SET b=52638 WHERE a=9289;\nUPDATE t2 SET b=65920 WHERE a=9290;\nUPDATE t2 SET b=81062 WHERE a=9291;\nUPDATE t2 SET b=68133 WHERE a=9292;\nUPDATE t2 SET b=37660 WHERE a=9293;\nUPDATE t2 SET b=28226 WHERE a=9294;\nUPDATE t2 SET b=95179 WHERE a=9295;\nUPDATE t2 SET b=30568 WHERE a=9296;\nUPDATE t2 SET b=78457 WHERE a=9297;\nUPDATE t2 SET b=47868 WHERE a=9298;\nUPDATE t2 SET b=40209 WHERE a=9299;\nUPDATE t2 SET b=92684 WHERE a=9300;\nUPDATE t2 SET b=90137 WHERE a=9301;\nUPDATE t2 SET b=13182 WHERE a=9302;\nUPDATE t2 SET b=94661 WHERE a=9303;\nUPDATE t2 SET b=77878 WHERE a=9304;\nUPDATE t2 SET b=12968 WHERE a=9305;\nUPDATE t2 SET b=10782 WHERE a=9306;\nUPDATE t2 SET b=75441 WHERE a=9307;\nUPDATE t2 SET b=2826 WHERE a=9308;\nUPDATE t2 SET b=39553 WHERE a=9309;\nUPDATE t2 SET b=19607 WHERE a=9310;\nUPDATE t2 SET b=23300 WHERE a=9311;\nUPDATE t2 SET b=22550 WHERE a=9312;\nUPDATE t2 SET b=6876 WHERE a=9313;\nUPDATE t2 SET b=64583 WHERE a=9314;\nUPDATE t2 SET b=82108 WHERE a=9315;\nUPDATE t2 SET b=29544 WHERE a=9316;\nUPDATE t2 SET b=99630 WHERE a=9317;\nUPDATE t2 SET b=28044 WHERE a=9318;\nUPDATE t2 SET b=4149 WHERE a=9319;\nUPDATE t2 SET b=56847 WHERE a=9320;\nUPDATE t2 SET b=6013 WHERE a=9321;\nUPDATE t2 SET b=27125 WHERE a=9322;\nUPDATE t2 SET b=35168 WHERE a=9323;\nUPDATE t2 SET b=72133 WHERE a=9324;\nUPDATE t2 SET b=14038 WHERE a=9325;\nUPDATE t2 SET b=125 WHERE a=9326;\nUPDATE t2 SET b=81663 WHERE a=9327;\nUPDATE t2 SET b=16750 WHERE a=9328;\nUPDATE t2 SET b=89000 WHERE a=9329;\nUPDATE t2 SET b=21129 WHERE a=9330;\nUPDATE t2 SET b=56115 WHERE a=9331;\nUPDATE t2 SET b=79243 WHERE a=9332;\nUPDATE t2 SET b=65490 WHERE a=9333;\nUPDATE t2 SET b=4833 WHERE a=9334;\nUPDATE t2 SET b=20420 WHERE a=9335;\nUPDATE t2 SET b=34470 WHERE a=9336;\nUPDATE t2 SET b=19820 WHERE a=9337;\nUPDATE t2 SET b=55884 WHERE a=9338;\nUPDATE t2 SET b=85928 WHERE a=9339;\nUPDATE t2 SET b=66479 WHERE a=9340;\nUPDATE t2 SET b=85219 WHERE a=9341;\nUPDATE t2 SET b=43647 WHERE a=9342;\nUPDATE t2 SET b=22770 WHERE a=9343;\nUPDATE t2 SET b=64320 WHERE a=9344;\nUPDATE t2 SET b=84644 WHERE a=9345;\nUPDATE t2 SET b=56538 WHERE a=9346;\nUPDATE t2 SET b=38611 WHERE a=9347;\nUPDATE t2 SET b=10472 WHERE a=9348;\nUPDATE t2 SET b=60447 WHERE a=9349;\nUPDATE t2 SET b=68108 WHERE a=9350;\nUPDATE t2 SET b=49901 WHERE a=9351;\nUPDATE t2 SET b=76862 WHERE a=9352;\nUPDATE t2 SET b=85462 WHERE a=9353;\nUPDATE t2 SET b=89011 WHERE a=9354;\nUPDATE t2 SET b=56618 WHERE a=9355;\nUPDATE t2 SET b=57756 WHERE a=9356;\nUPDATE t2 SET b=30437 WHERE a=9357;\nUPDATE t2 SET b=46032 WHERE a=9358;\nUPDATE t2 SET b=34467 WHERE a=9359;\nUPDATE t2 SET b=46066 WHERE a=9360;\nUPDATE t2 SET b=62616 WHERE a=9361;\nUPDATE t2 SET b=65257 WHERE a=9362;\nUPDATE t2 SET b=77735 WHERE a=9363;\nUPDATE t2 SET b=80021 WHERE a=9364;\nUPDATE t2 SET b=26954 WHERE a=9365;\nUPDATE t2 SET b=98446 WHERE a=9366;\nUPDATE t2 SET b=77357 WHERE a=9367;\nUPDATE t2 SET b=27965 WHERE a=9368;\nUPDATE t2 SET b=33420 WHERE a=9369;\nUPDATE t2 SET b=89172 WHERE a=9370;\nUPDATE t2 SET b=86437 WHERE a=9371;\nUPDATE t2 SET b=77258 WHERE a=9372;\nUPDATE t2 SET b=91396 WHERE a=9373;\nUPDATE t2 SET b=3879 WHERE a=9374;\nUPDATE t2 SET b=93646 WHERE a=9375;\nUPDATE t2 SET b=37246 WHERE a=9376;\nUPDATE t2 SET b=93509 WHERE a=9377;\nUPDATE t2 SET b=60735 WHERE a=9378;\nUPDATE t2 SET b=12620 WHERE a=9379;\nUPDATE t2 SET b=46311 WHERE a=9380;\nUPDATE t2 SET b=4759 WHERE a=9381;\nUPDATE t2 SET b=1918 WHERE a=9382;\nUPDATE t2 SET b=66188 WHERE a=9383;\nUPDATE t2 SET b=73050 WHERE a=9384;\nUPDATE t2 SET b=87988 WHERE a=9385;\nUPDATE t2 SET b=27180 WHERE a=9386;\nUPDATE t2 SET b=7847 WHERE a=9387;\nUPDATE t2 SET b=50668 WHERE a=9388;\nUPDATE t2 SET b=55243 WHERE a=9389;\nUPDATE t2 SET b=74120 WHERE a=9390;\nUPDATE t2 SET b=39616 WHERE a=9391;\nUPDATE t2 SET b=23773 WHERE a=9392;\nUPDATE t2 SET b=13551 WHERE a=9393;\nUPDATE t2 SET b=79509 WHERE a=9394;\nUPDATE t2 SET b=57218 WHERE a=9395;\nUPDATE t2 SET b=92079 WHERE a=9396;\nUPDATE t2 SET b=23716 WHERE a=9397;\nUPDATE t2 SET b=68572 WHERE a=9398;\nUPDATE t2 SET b=5806 WHERE a=9399;\nUPDATE t2 SET b=49001 WHERE a=9400;\nUPDATE t2 SET b=40541 WHERE a=9401;\nUPDATE t2 SET b=84649 WHERE a=9402;\nUPDATE t2 SET b=26690 WHERE a=9403;\nUPDATE t2 SET b=59705 WHERE a=9404;\nUPDATE t2 SET b=47608 WHERE a=9405;\nUPDATE t2 SET b=3970 WHERE a=9406;\nUPDATE t2 SET b=33060 WHERE a=9407;\nUPDATE t2 SET b=62433 WHERE a=9408;\nUPDATE t2 SET b=84196 WHERE a=9409;\nUPDATE t2 SET b=40372 WHERE a=9410;\nUPDATE t2 SET b=37698 WHERE a=9411;\nUPDATE t2 SET b=45428 WHERE a=9412;\nUPDATE t2 SET b=14478 WHERE a=9413;\nUPDATE t2 SET b=4935 WHERE a=9414;\nUPDATE t2 SET b=30197 WHERE a=9415;\nUPDATE t2 SET b=28404 WHERE a=9416;\nUPDATE t2 SET b=37602 WHERE a=9417;\nUPDATE t2 SET b=32651 WHERE a=9418;\nUPDATE t2 SET b=14047 WHERE a=9419;\nUPDATE t2 SET b=72873 WHERE a=9420;\nUPDATE t2 SET b=18333 WHERE a=9421;\nUPDATE t2 SET b=80442 WHERE a=9422;\nUPDATE t2 SET b=56775 WHERE a=9423;\nUPDATE t2 SET b=28612 WHERE a=9424;\nUPDATE t2 SET b=65771 WHERE a=9425;\nUPDATE t2 SET b=93801 WHERE a=9426;\nUPDATE t2 SET b=88702 WHERE a=9427;\nUPDATE t2 SET b=95873 WHERE a=9428;\nUPDATE t2 SET b=91965 WHERE a=9429;\nUPDATE t2 SET b=28279 WHERE a=9430;\nUPDATE t2 SET b=7654 WHERE a=9431;\nUPDATE t2 SET b=28586 WHERE a=9432;\nUPDATE t2 SET b=62426 WHERE a=9433;\nUPDATE t2 SET b=35204 WHERE a=9434;\nUPDATE t2 SET b=52820 WHERE a=9435;\nUPDATE t2 SET b=5771 WHERE a=9436;\nUPDATE t2 SET b=46072 WHERE a=9437;\nUPDATE t2 SET b=28920 WHERE a=9438;\nUPDATE t2 SET b=37974 WHERE a=9439;\nUPDATE t2 SET b=13299 WHERE a=9440;\nUPDATE t2 SET b=60196 WHERE a=9441;\nUPDATE t2 SET b=91023 WHERE a=9442;\nUPDATE t2 SET b=66444 WHERE a=9443;\nUPDATE t2 SET b=71181 WHERE a=9444;\nUPDATE t2 SET b=83761 WHERE a=9445;\nUPDATE t2 SET b=63618 WHERE a=9446;\nUPDATE t2 SET b=63665 WHERE a=9447;\nUPDATE t2 SET b=5844 WHERE a=9448;\nUPDATE t2 SET b=73908 WHERE a=9449;\nUPDATE t2 SET b=48764 WHERE a=9450;\nUPDATE t2 SET b=41918 WHERE a=9451;\nUPDATE t2 SET b=31422 WHERE a=9452;\nUPDATE t2 SET b=30862 WHERE a=9453;\nUPDATE t2 SET b=93 WHERE a=9454;\nUPDATE t2 SET b=35878 WHERE a=9455;\nUPDATE t2 SET b=81678 WHERE a=9456;\nUPDATE t2 SET b=7293 WHERE a=9457;\nUPDATE t2 SET b=82853 WHERE a=9458;\nUPDATE t2 SET b=9796 WHERE a=9459;\nUPDATE t2 SET b=94508 WHERE a=9460;\nUPDATE t2 SET b=31356 WHERE a=9461;\nUPDATE t2 SET b=74306 WHERE a=9462;\nUPDATE t2 SET b=27265 WHERE a=9463;\nUPDATE t2 SET b=80298 WHERE a=9464;\nUPDATE t2 SET b=58713 WHERE a=9465;\nUPDATE t2 SET b=66678 WHERE a=9466;\nUPDATE t2 SET b=6520 WHERE a=9467;\nUPDATE t2 SET b=55512 WHERE a=9468;\nUPDATE t2 SET b=15455 WHERE a=9469;\nUPDATE t2 SET b=95486 WHERE a=9470;\nUPDATE t2 SET b=54579 WHERE a=9471;\nUPDATE t2 SET b=74638 WHERE a=9472;\nUPDATE t2 SET b=30231 WHERE a=9473;\nUPDATE t2 SET b=23212 WHERE a=9474;\nUPDATE t2 SET b=64340 WHERE a=9475;\nUPDATE t2 SET b=83263 WHERE a=9476;\nUPDATE t2 SET b=66133 WHERE a=9477;\nUPDATE t2 SET b=98132 WHERE a=9478;\nUPDATE t2 SET b=95126 WHERE a=9479;\nUPDATE t2 SET b=71976 WHERE a=9480;\nUPDATE t2 SET b=14259 WHERE a=9481;\nUPDATE t2 SET b=41841 WHERE a=9482;\nUPDATE t2 SET b=4914 WHERE a=9483;\nUPDATE t2 SET b=10548 WHERE a=9484;\nUPDATE t2 SET b=45512 WHERE a=9485;\nUPDATE t2 SET b=27089 WHERE a=9486;\nUPDATE t2 SET b=9590 WHERE a=9487;\nUPDATE t2 SET b=27854 WHERE a=9488;\nUPDATE t2 SET b=44781 WHERE a=9489;\nUPDATE t2 SET b=16060 WHERE a=9490;\nUPDATE t2 SET b=37286 WHERE a=9491;\nUPDATE t2 SET b=13971 WHERE a=9492;\nUPDATE t2 SET b=69959 WHERE a=9493;\nUPDATE t2 SET b=28331 WHERE a=9494;\nUPDATE t2 SET b=64015 WHERE a=9495;\nUPDATE t2 SET b=93763 WHERE a=9496;\nUPDATE t2 SET b=86328 WHERE a=9497;\nUPDATE t2 SET b=13631 WHERE a=9498;\nUPDATE t2 SET b=53090 WHERE a=9499;\nUPDATE t2 SET b=15018 WHERE a=9500;\nUPDATE t2 SET b=86148 WHERE a=9501;\nUPDATE t2 SET b=10905 WHERE a=9502;\nUPDATE t2 SET b=78062 WHERE a=9503;\nUPDATE t2 SET b=49173 WHERE a=9504;\nUPDATE t2 SET b=88257 WHERE a=9505;\nUPDATE t2 SET b=71655 WHERE a=9506;\nUPDATE t2 SET b=32959 WHERE a=9507;\nUPDATE t2 SET b=43721 WHERE a=9508;\nUPDATE t2 SET b=90453 WHERE a=9509;\nUPDATE t2 SET b=98141 WHERE a=9510;\nUPDATE t2 SET b=7299 WHERE a=9511;\nUPDATE t2 SET b=64917 WHERE a=9512;\nUPDATE t2 SET b=18054 WHERE a=9513;\nUPDATE t2 SET b=13524 WHERE a=9514;\nUPDATE t2 SET b=23496 WHERE a=9515;\nUPDATE t2 SET b=75337 WHERE a=9516;\nUPDATE t2 SET b=92411 WHERE a=9517;\nUPDATE t2 SET b=63755 WHERE a=9518;\nUPDATE t2 SET b=16383 WHERE a=9519;\nUPDATE t2 SET b=17491 WHERE a=9520;\nUPDATE t2 SET b=30812 WHERE a=9521;\nUPDATE t2 SET b=31816 WHERE a=9522;\nUPDATE t2 SET b=59564 WHERE a=9523;\nUPDATE t2 SET b=75145 WHERE a=9524;\nUPDATE t2 SET b=14103 WHERE a=9525;\nUPDATE t2 SET b=72717 WHERE a=9526;\nUPDATE t2 SET b=89505 WHERE a=9527;\nUPDATE t2 SET b=1247 WHERE a=9528;\nUPDATE t2 SET b=12887 WHERE a=9529;\nUPDATE t2 SET b=48877 WHERE a=9530;\nUPDATE t2 SET b=50418 WHERE a=9531;\nUPDATE t2 SET b=2353 WHERE a=9532;\nUPDATE t2 SET b=33313 WHERE a=9533;\nUPDATE t2 SET b=74908 WHERE a=9534;\nUPDATE t2 SET b=88687 WHERE a=9535;\nUPDATE t2 SET b=7588 WHERE a=9536;\nUPDATE t2 SET b=61631 WHERE a=9537;\nUPDATE t2 SET b=84409 WHERE a=9538;\nUPDATE t2 SET b=42676 WHERE a=9539;\nUPDATE t2 SET b=14452 WHERE a=9540;\nUPDATE t2 SET b=69048 WHERE a=9541;\nUPDATE t2 SET b=9341 WHERE a=9542;\nUPDATE t2 SET b=82893 WHERE a=9543;\nUPDATE t2 SET b=88653 WHERE a=9544;\nUPDATE t2 SET b=48646 WHERE a=9545;\nUPDATE t2 SET b=39237 WHERE a=9546;\nUPDATE t2 SET b=9326 WHERE a=9547;\nUPDATE t2 SET b=66452 WHERE a=9548;\nUPDATE t2 SET b=10698 WHERE a=9549;\nUPDATE t2 SET b=48214 WHERE a=9550;\nUPDATE t2 SET b=39494 WHERE a=9551;\nUPDATE t2 SET b=6677 WHERE a=9552;\nUPDATE t2 SET b=5036 WHERE a=9553;\nUPDATE t2 SET b=58505 WHERE a=9554;\nUPDATE t2 SET b=75152 WHERE a=9555;\nUPDATE t2 SET b=96010 WHERE a=9556;\nUPDATE t2 SET b=65699 WHERE a=9557;\nUPDATE t2 SET b=4955 WHERE a=9558;\nUPDATE t2 SET b=46167 WHERE a=9559;\nUPDATE t2 SET b=13100 WHERE a=9560;\nUPDATE t2 SET b=87853 WHERE a=9561;\nUPDATE t2 SET b=51902 WHERE a=9562;\nUPDATE t2 SET b=6271 WHERE a=9563;\nUPDATE t2 SET b=26694 WHERE a=9564;\nUPDATE t2 SET b=97548 WHERE a=9565;\nUPDATE t2 SET b=46980 WHERE a=9566;\nUPDATE t2 SET b=37644 WHERE a=9567;\nUPDATE t2 SET b=68029 WHERE a=9568;\nUPDATE t2 SET b=25885 WHERE a=9569;\nUPDATE t2 SET b=96020 WHERE a=9570;\nUPDATE t2 SET b=79518 WHERE a=9571;\nUPDATE t2 SET b=26119 WHERE a=9572;\nUPDATE t2 SET b=87885 WHERE a=9573;\nUPDATE t2 SET b=34055 WHERE a=9574;\nUPDATE t2 SET b=98419 WHERE a=9575;\nUPDATE t2 SET b=83133 WHERE a=9576;\nUPDATE t2 SET b=92569 WHERE a=9577;\nUPDATE t2 SET b=8321 WHERE a=9578;\nUPDATE t2 SET b=89816 WHERE a=9579;\nUPDATE t2 SET b=92230 WHERE a=9580;\nUPDATE t2 SET b=56094 WHERE a=9581;\nUPDATE t2 SET b=59111 WHERE a=9582;\nUPDATE t2 SET b=93816 WHERE a=9583;\nUPDATE t2 SET b=51994 WHERE a=9584;\nUPDATE t2 SET b=99615 WHERE a=9585;\nUPDATE t2 SET b=380 WHERE a=9586;\nUPDATE t2 SET b=68208 WHERE a=9587;\nUPDATE t2 SET b=39810 WHERE a=9588;\nUPDATE t2 SET b=66651 WHERE a=9589;\nUPDATE t2 SET b=75371 WHERE a=9590;\nUPDATE t2 SET b=13742 WHERE a=9591;\nUPDATE t2 SET b=43482 WHERE a=9592;\nUPDATE t2 SET b=85749 WHERE a=9593;\nUPDATE t2 SET b=1156 WHERE a=9594;\nUPDATE t2 SET b=37616 WHERE a=9595;\nUPDATE t2 SET b=65010 WHERE a=9596;\nUPDATE t2 SET b=79998 WHERE a=9597;\nUPDATE t2 SET b=31662 WHERE a=9598;\nUPDATE t2 SET b=97599 WHERE a=9599;\nUPDATE t2 SET b=69638 WHERE a=9600;\nUPDATE t2 SET b=47024 WHERE a=9601;\nUPDATE t2 SET b=16802 WHERE a=9602;\nUPDATE t2 SET b=13751 WHERE a=9603;\nUPDATE t2 SET b=68826 WHERE a=9604;\nUPDATE t2 SET b=68769 WHERE a=9605;\nUPDATE t2 SET b=93811 WHERE a=9606;\nUPDATE t2 SET b=87463 WHERE a=9607;\nUPDATE t2 SET b=10699 WHERE a=9608;\nUPDATE t2 SET b=27315 WHERE a=9609;\nUPDATE t2 SET b=60902 WHERE a=9610;\nUPDATE t2 SET b=73261 WHERE a=9611;\nUPDATE t2 SET b=48275 WHERE a=9612;\nUPDATE t2 SET b=22258 WHERE a=9613;\nUPDATE t2 SET b=38148 WHERE a=9614;\nUPDATE t2 SET b=67642 WHERE a=9615;\nUPDATE t2 SET b=77694 WHERE a=9616;\nUPDATE t2 SET b=28112 WHERE a=9617;\nUPDATE t2 SET b=56570 WHERE a=9618;\nUPDATE t2 SET b=81425 WHERE a=9619;\nUPDATE t2 SET b=18532 WHERE a=9620;\nUPDATE t2 SET b=39862 WHERE a=9621;\nUPDATE t2 SET b=62 WHERE a=9622;\nUPDATE t2 SET b=30954 WHERE a=9623;\nUPDATE t2 SET b=24553 WHERE a=9624;\nUPDATE t2 SET b=65683 WHERE a=9625;\nUPDATE t2 SET b=43896 WHERE a=9626;\nUPDATE t2 SET b=91072 WHERE a=9627;\nUPDATE t2 SET b=31882 WHERE a=9628;\nUPDATE t2 SET b=3523 WHERE a=9629;\nUPDATE t2 SET b=33049 WHERE a=9630;\nUPDATE t2 SET b=2410 WHERE a=9631;\nUPDATE t2 SET b=4104 WHERE a=9632;\nUPDATE t2 SET b=20423 WHERE a=9633;\nUPDATE t2 SET b=11771 WHERE a=9634;\nUPDATE t2 SET b=59666 WHERE a=9635;\nUPDATE t2 SET b=38493 WHERE a=9636;\nUPDATE t2 SET b=13328 WHERE a=9637;\nUPDATE t2 SET b=16192 WHERE a=9638;\nUPDATE t2 SET b=76894 WHERE a=9639;\nUPDATE t2 SET b=11406 WHERE a=9640;\nUPDATE t2 SET b=76948 WHERE a=9641;\nUPDATE t2 SET b=8734 WHERE a=9642;\nUPDATE t2 SET b=24004 WHERE a=9643;\nUPDATE t2 SET b=63586 WHERE a=9644;\nUPDATE t2 SET b=99920 WHERE a=9645;\nUPDATE t2 SET b=86592 WHERE a=9646;\nUPDATE t2 SET b=83851 WHERE a=9647;\nUPDATE t2 SET b=6723 WHERE a=9648;\nUPDATE t2 SET b=67880 WHERE a=9649;\nUPDATE t2 SET b=18080 WHERE a=9650;\nUPDATE t2 SET b=62168 WHERE a=9651;\nUPDATE t2 SET b=34471 WHERE a=9652;\nUPDATE t2 SET b=27310 WHERE a=9653;\nUPDATE t2 SET b=44259 WHERE a=9654;\nUPDATE t2 SET b=10955 WHERE a=9655;\nUPDATE t2 SET b=59091 WHERE a=9656;\nUPDATE t2 SET b=49097 WHERE a=9657;\nUPDATE t2 SET b=44679 WHERE a=9658;\nUPDATE t2 SET b=16439 WHERE a=9659;\nUPDATE t2 SET b=12438 WHERE a=9660;\nUPDATE t2 SET b=86777 WHERE a=9661;\nUPDATE t2 SET b=21028 WHERE a=9662;\nUPDATE t2 SET b=46961 WHERE a=9663;\nUPDATE t2 SET b=17486 WHERE a=9664;\nUPDATE t2 SET b=69520 WHERE a=9665;\nUPDATE t2 SET b=9174 WHERE a=9666;\nUPDATE t2 SET b=5671 WHERE a=9667;\nUPDATE t2 SET b=50340 WHERE a=9668;\nUPDATE t2 SET b=35309 WHERE a=9669;\nUPDATE t2 SET b=93114 WHERE a=9670;\nUPDATE t2 SET b=63940 WHERE a=9671;\nUPDATE t2 SET b=27022 WHERE a=9672;\nUPDATE t2 SET b=46716 WHERE a=9673;\nUPDATE t2 SET b=31769 WHERE a=9674;\nUPDATE t2 SET b=15986 WHERE a=9675;\nUPDATE t2 SET b=2820 WHERE a=9676;\nUPDATE t2 SET b=89097 WHERE a=9677;\nUPDATE t2 SET b=43842 WHERE a=9678;\nUPDATE t2 SET b=73858 WHERE a=9679;\nUPDATE t2 SET b=84140 WHERE a=9680;\nUPDATE t2 SET b=66319 WHERE a=9681;\nUPDATE t2 SET b=56155 WHERE a=9682;\nUPDATE t2 SET b=23611 WHERE a=9683;\nUPDATE t2 SET b=13618 WHERE a=9684;\nUPDATE t2 SET b=13974 WHERE a=9685;\nUPDATE t2 SET b=2728 WHERE a=9686;\nUPDATE t2 SET b=49141 WHERE a=9687;\nUPDATE t2 SET b=19061 WHERE a=9688;\nUPDATE t2 SET b=47458 WHERE a=9689;\nUPDATE t2 SET b=67022 WHERE a=9690;\nUPDATE t2 SET b=48994 WHERE a=9691;\nUPDATE t2 SET b=23799 WHERE a=9692;\nUPDATE t2 SET b=74550 WHERE a=9693;\nUPDATE t2 SET b=73359 WHERE a=9694;\nUPDATE t2 SET b=8146 WHERE a=9695;\nUPDATE t2 SET b=85894 WHERE a=9696;\nUPDATE t2 SET b=68160 WHERE a=9697;\nUPDATE t2 SET b=52043 WHERE a=9698;\nUPDATE t2 SET b=28985 WHERE a=9699;\nUPDATE t2 SET b=32589 WHERE a=9700;\nUPDATE t2 SET b=86215 WHERE a=9701;\nUPDATE t2 SET b=10803 WHERE a=9702;\nUPDATE t2 SET b=36440 WHERE a=9703;\nUPDATE t2 SET b=81988 WHERE a=9704;\nUPDATE t2 SET b=43265 WHERE a=9705;\nUPDATE t2 SET b=56006 WHERE a=9706;\nUPDATE t2 SET b=42611 WHERE a=9707;\nUPDATE t2 SET b=63227 WHERE a=9708;\nUPDATE t2 SET b=77617 WHERE a=9709;\nUPDATE t2 SET b=70903 WHERE a=9710;\nUPDATE t2 SET b=35569 WHERE a=9711;\nUPDATE t2 SET b=45622 WHERE a=9712;\nUPDATE t2 SET b=69905 WHERE a=9713;\nUPDATE t2 SET b=72301 WHERE a=9714;\nUPDATE t2 SET b=86257 WHERE a=9715;\nUPDATE t2 SET b=41392 WHERE a=9716;\nUPDATE t2 SET b=55504 WHERE a=9717;\nUPDATE t2 SET b=35750 WHERE a=9718;\nUPDATE t2 SET b=92424 WHERE a=9719;\nUPDATE t2 SET b=42157 WHERE a=9720;\nUPDATE t2 SET b=91689 WHERE a=9721;\nUPDATE t2 SET b=29639 WHERE a=9722;\nUPDATE t2 SET b=7458 WHERE a=9723;\nUPDATE t2 SET b=55392 WHERE a=9724;\nUPDATE t2 SET b=67138 WHERE a=9725;\nUPDATE t2 SET b=26722 WHERE a=9726;\nUPDATE t2 SET b=35037 WHERE a=9727;\nUPDATE t2 SET b=53855 WHERE a=9728;\nUPDATE t2 SET b=96642 WHERE a=9729;\nUPDATE t2 SET b=68047 WHERE a=9730;\nUPDATE t2 SET b=95354 WHERE a=9731;\nUPDATE t2 SET b=33901 WHERE a=9732;\nUPDATE t2 SET b=37222 WHERE a=9733;\nUPDATE t2 SET b=49380 WHERE a=9734;\nUPDATE t2 SET b=84629 WHERE a=9735;\nUPDATE t2 SET b=43819 WHERE a=9736;\nUPDATE t2 SET b=80831 WHERE a=9737;\nUPDATE t2 SET b=55820 WHERE a=9738;\nUPDATE t2 SET b=10125 WHERE a=9739;\nUPDATE t2 SET b=64621 WHERE a=9740;\nUPDATE t2 SET b=1644 WHERE a=9741;\nUPDATE t2 SET b=34785 WHERE a=9742;\nUPDATE t2 SET b=62027 WHERE a=9743;\nUPDATE t2 SET b=6008 WHERE a=9744;\nUPDATE t2 SET b=76215 WHERE a=9745;\nUPDATE t2 SET b=49857 WHERE a=9746;\nUPDATE t2 SET b=96680 WHERE a=9747;\nUPDATE t2 SET b=50474 WHERE a=9748;\nUPDATE t2 SET b=91103 WHERE a=9749;\nUPDATE t2 SET b=79330 WHERE a=9750;\nUPDATE t2 SET b=8932 WHERE a=9751;\nUPDATE t2 SET b=11691 WHERE a=9752;\nUPDATE t2 SET b=71428 WHERE a=9753;\nUPDATE t2 SET b=26642 WHERE a=9754;\nUPDATE t2 SET b=76105 WHERE a=9755;\nUPDATE t2 SET b=96286 WHERE a=9756;\nUPDATE t2 SET b=39312 WHERE a=9757;\nUPDATE t2 SET b=94967 WHERE a=9758;\nUPDATE t2 SET b=69075 WHERE a=9759;\nUPDATE t2 SET b=63235 WHERE a=9760;\nUPDATE t2 SET b=13687 WHERE a=9761;\nUPDATE t2 SET b=2315 WHERE a=9762;\nUPDATE t2 SET b=12537 WHERE a=9763;\nUPDATE t2 SET b=71002 WHERE a=9764;\nUPDATE t2 SET b=75077 WHERE a=9765;\nUPDATE t2 SET b=91034 WHERE a=9766;\nUPDATE t2 SET b=48573 WHERE a=9767;\nUPDATE t2 SET b=79181 WHERE a=9768;\nUPDATE t2 SET b=81405 WHERE a=9769;\nUPDATE t2 SET b=23256 WHERE a=9770;\nUPDATE t2 SET b=72663 WHERE a=9771;\nUPDATE t2 SET b=96197 WHERE a=9772;\nUPDATE t2 SET b=18575 WHERE a=9773;\nUPDATE t2 SET b=18067 WHERE a=9774;\nUPDATE t2 SET b=56524 WHERE a=9775;\nUPDATE t2 SET b=30471 WHERE a=9776;\nUPDATE t2 SET b=85763 WHERE a=9777;\nUPDATE t2 SET b=6699 WHERE a=9778;\nUPDATE t2 SET b=34429 WHERE a=9779;\nUPDATE t2 SET b=75939 WHERE a=9780;\nUPDATE t2 SET b=44649 WHERE a=9781;\nUPDATE t2 SET b=75171 WHERE a=9782;\nUPDATE t2 SET b=86785 WHERE a=9783;\nUPDATE t2 SET b=91526 WHERE a=9784;\nUPDATE t2 SET b=18937 WHERE a=9785;\nUPDATE t2 SET b=85830 WHERE a=9786;\nUPDATE t2 SET b=19715 WHERE a=9787;\nUPDATE t2 SET b=97254 WHERE a=9788;\nUPDATE t2 SET b=54964 WHERE a=9789;\nUPDATE t2 SET b=48080 WHERE a=9790;\nUPDATE t2 SET b=97181 WHERE a=9791;\nUPDATE t2 SET b=78500 WHERE a=9792;\nUPDATE t2 SET b=93842 WHERE a=9793;\nUPDATE t2 SET b=61097 WHERE a=9794;\nUPDATE t2 SET b=55608 WHERE a=9795;\nUPDATE t2 SET b=19129 WHERE a=9796;\nUPDATE t2 SET b=68590 WHERE a=9797;\nUPDATE t2 SET b=36363 WHERE a=9798;\nUPDATE t2 SET b=89971 WHERE a=9799;\nUPDATE t2 SET b=28845 WHERE a=9800;\nUPDATE t2 SET b=72744 WHERE a=9801;\nUPDATE t2 SET b=84868 WHERE a=9802;\nUPDATE t2 SET b=97331 WHERE a=9803;\nUPDATE t2 SET b=41895 WHERE a=9804;\nUPDATE t2 SET b=22097 WHERE a=9805;\nUPDATE t2 SET b=68138 WHERE a=9806;\nUPDATE t2 SET b=88430 WHERE a=9807;\nUPDATE t2 SET b=1974 WHERE a=9808;\nUPDATE t2 SET b=4190 WHERE a=9809;\nUPDATE t2 SET b=29956 WHERE a=9810;\nUPDATE t2 SET b=10180 WHERE a=9811;\nUPDATE t2 SET b=94520 WHERE a=9812;\nUPDATE t2 SET b=88474 WHERE a=9813;\nUPDATE t2 SET b=17721 WHERE a=9814;\nUPDATE t2 SET b=71033 WHERE a=9815;\nUPDATE t2 SET b=4891 WHERE a=9816;\nUPDATE t2 SET b=74913 WHERE a=9817;\nUPDATE t2 SET b=92910 WHERE a=9818;\nUPDATE t2 SET b=1809 WHERE a=9819;\nUPDATE t2 SET b=39052 WHERE a=9820;\nUPDATE t2 SET b=66990 WHERE a=9821;\nUPDATE t2 SET b=67461 WHERE a=9822;\nUPDATE t2 SET b=7916 WHERE a=9823;\nUPDATE t2 SET b=6745 WHERE a=9824;\nUPDATE t2 SET b=28985 WHERE a=9825;\nUPDATE t2 SET b=21983 WHERE a=9826;\nUPDATE t2 SET b=10255 WHERE a=9827;\nUPDATE t2 SET b=2537 WHERE a=9828;\nUPDATE t2 SET b=44093 WHERE a=9829;\nUPDATE t2 SET b=66430 WHERE a=9830;\nUPDATE t2 SET b=65432 WHERE a=9831;\nUPDATE t2 SET b=68095 WHERE a=9832;\nUPDATE t2 SET b=10697 WHERE a=9833;\nUPDATE t2 SET b=99374 WHERE a=9834;\nUPDATE t2 SET b=9409 WHERE a=9835;\nUPDATE t2 SET b=30006 WHERE a=9836;\nUPDATE t2 SET b=55824 WHERE a=9837;\nUPDATE t2 SET b=94727 WHERE a=9838;\nUPDATE t2 SET b=24567 WHERE a=9839;\nUPDATE t2 SET b=64080 WHERE a=9840;\nUPDATE t2 SET b=84989 WHERE a=9841;\nUPDATE t2 SET b=21668 WHERE a=9842;\nUPDATE t2 SET b=60776 WHERE a=9843;\nUPDATE t2 SET b=69828 WHERE a=9844;\nUPDATE t2 SET b=66945 WHERE a=9845;\nUPDATE t2 SET b=30359 WHERE a=9846;\nUPDATE t2 SET b=29150 WHERE a=9847;\nUPDATE t2 SET b=47768 WHERE a=9848;\nUPDATE t2 SET b=81276 WHERE a=9849;\nUPDATE t2 SET b=18724 WHERE a=9850;\nUPDATE t2 SET b=81120 WHERE a=9851;\nUPDATE t2 SET b=51051 WHERE a=9852;\nUPDATE t2 SET b=16001 WHERE a=9853;\nUPDATE t2 SET b=67278 WHERE a=9854;\nUPDATE t2 SET b=23463 WHERE a=9855;\nUPDATE t2 SET b=90479 WHERE a=9856;\nUPDATE t2 SET b=95651 WHERE a=9857;\nUPDATE t2 SET b=88637 WHERE a=9858;\nUPDATE t2 SET b=41455 WHERE a=9859;\nUPDATE t2 SET b=26391 WHERE a=9860;\nUPDATE t2 SET b=25280 WHERE a=9861;\nUPDATE t2 SET b=25186 WHERE a=9862;\nUPDATE t2 SET b=54417 WHERE a=9863;\nUPDATE t2 SET b=32562 WHERE a=9864;\nUPDATE t2 SET b=74001 WHERE a=9865;\nUPDATE t2 SET b=19018 WHERE a=9866;\nUPDATE t2 SET b=12803 WHERE a=9867;\nUPDATE t2 SET b=68083 WHERE a=9868;\nUPDATE t2 SET b=70579 WHERE a=9869;\nUPDATE t2 SET b=91744 WHERE a=9870;\nUPDATE t2 SET b=44914 WHERE a=9871;\nUPDATE t2 SET b=4619 WHERE a=9872;\nUPDATE t2 SET b=57732 WHERE a=9873;\nUPDATE t2 SET b=66489 WHERE a=9874;\nUPDATE t2 SET b=12039 WHERE a=9875;\nUPDATE t2 SET b=55609 WHERE a=9876;\nUPDATE t2 SET b=29917 WHERE a=9877;\nUPDATE t2 SET b=2923 WHERE a=9878;\nUPDATE t2 SET b=47830 WHERE a=9879;\nUPDATE t2 SET b=28822 WHERE a=9880;\nUPDATE t2 SET b=99853 WHERE a=9881;\nUPDATE t2 SET b=32422 WHERE a=9882;\nUPDATE t2 SET b=28010 WHERE a=9883;\nUPDATE t2 SET b=38797 WHERE a=9884;\nUPDATE t2 SET b=30730 WHERE a=9885;\nUPDATE t2 SET b=82373 WHERE a=9886;\nUPDATE t2 SET b=58911 WHERE a=9887;\nUPDATE t2 SET b=85339 WHERE a=9888;\nUPDATE t2 SET b=98392 WHERE a=9889;\nUPDATE t2 SET b=70630 WHERE a=9890;\nUPDATE t2 SET b=96510 WHERE a=9891;\nUPDATE t2 SET b=34163 WHERE a=9892;\nUPDATE t2 SET b=77933 WHERE a=9893;\nUPDATE t2 SET b=82618 WHERE a=9894;\nUPDATE t2 SET b=15104 WHERE a=9895;\nUPDATE t2 SET b=53474 WHERE a=9896;\nUPDATE t2 SET b=74625 WHERE a=9897;\nUPDATE t2 SET b=70686 WHERE a=9898;\nUPDATE t2 SET b=71711 WHERE a=9899;\nUPDATE t2 SET b=11933 WHERE a=9900;\nUPDATE t2 SET b=86714 WHERE a=9901;\nUPDATE t2 SET b=52686 WHERE a=9902;\nUPDATE t2 SET b=59572 WHERE a=9903;\nUPDATE t2 SET b=23713 WHERE a=9904;\nUPDATE t2 SET b=8126 WHERE a=9905;\nUPDATE t2 SET b=87555 WHERE a=9906;\nUPDATE t2 SET b=97450 WHERE a=9907;\nUPDATE t2 SET b=70460 WHERE a=9908;\nUPDATE t2 SET b=4905 WHERE a=9909;\nUPDATE t2 SET b=49943 WHERE a=9910;\nUPDATE t2 SET b=48731 WHERE a=9911;\nUPDATE t2 SET b=28356 WHERE a=9912;\nUPDATE t2 SET b=3281 WHERE a=9913;\nUPDATE t2 SET b=95841 WHERE a=9914;\nUPDATE t2 SET b=15739 WHERE a=9915;\nUPDATE t2 SET b=27439 WHERE a=9916;\nUPDATE t2 SET b=66351 WHERE a=9917;\nUPDATE t2 SET b=36057 WHERE a=9918;\nUPDATE t2 SET b=4794 WHERE a=9919;\nUPDATE t2 SET b=30038 WHERE a=9920;\nUPDATE t2 SET b=72119 WHERE a=9921;\nUPDATE t2 SET b=42432 WHERE a=9922;\nUPDATE t2 SET b=7968 WHERE a=9923;\nUPDATE t2 SET b=41362 WHERE a=9924;\nUPDATE t2 SET b=5871 WHERE a=9925;\nUPDATE t2 SET b=32347 WHERE a=9926;\nUPDATE t2 SET b=6973 WHERE a=9927;\nUPDATE t2 SET b=24499 WHERE a=9928;\nUPDATE t2 SET b=45186 WHERE a=9929;\nUPDATE t2 SET b=14818 WHERE a=9930;\nUPDATE t2 SET b=74813 WHERE a=9931;\nUPDATE t2 SET b=12285 WHERE a=9932;\nUPDATE t2 SET b=77519 WHERE a=9933;\nUPDATE t2 SET b=98205 WHERE a=9934;\nUPDATE t2 SET b=10371 WHERE a=9935;\nUPDATE t2 SET b=40430 WHERE a=9936;\nUPDATE t2 SET b=75252 WHERE a=9937;\nUPDATE t2 SET b=97476 WHERE a=9938;\nUPDATE t2 SET b=84568 WHERE a=9939;\nUPDATE t2 SET b=7022 WHERE a=9940;\nUPDATE t2 SET b=31836 WHERE a=9941;\nUPDATE t2 SET b=694 WHERE a=9942;\nUPDATE t2 SET b=31922 WHERE a=9943;\nUPDATE t2 SET b=82439 WHERE a=9944;\nUPDATE t2 SET b=83546 WHERE a=9945;\nUPDATE t2 SET b=47185 WHERE a=9946;\nUPDATE t2 SET b=4887 WHERE a=9947;\nUPDATE t2 SET b=9907 WHERE a=9948;\nUPDATE t2 SET b=17173 WHERE a=9949;\nUPDATE t2 SET b=47244 WHERE a=9950;\nUPDATE t2 SET b=39468 WHERE a=9951;\nUPDATE t2 SET b=57870 WHERE a=9952;\nUPDATE t2 SET b=73670 WHERE a=9953;\nUPDATE t2 SET b=51129 WHERE a=9954;\nUPDATE t2 SET b=86787 WHERE a=9955;\nUPDATE t2 SET b=13543 WHERE a=9956;\nUPDATE t2 SET b=55096 WHERE a=9957;\nUPDATE t2 SET b=33234 WHERE a=9958;\nUPDATE t2 SET b=38642 WHERE a=9959;\nUPDATE t2 SET b=80905 WHERE a=9960;\nUPDATE t2 SET b=83611 WHERE a=9961;\nUPDATE t2 SET b=46731 WHERE a=9962;\nUPDATE t2 SET b=99488 WHERE a=9963;\nUPDATE t2 SET b=97303 WHERE a=9964;\nUPDATE t2 SET b=46767 WHERE a=9965;\nUPDATE t2 SET b=17461 WHERE a=9966;\nUPDATE t2 SET b=57598 WHERE a=9967;\nUPDATE t2 SET b=36770 WHERE a=9968;\nUPDATE t2 SET b=65189 WHERE a=9969;\nUPDATE t2 SET b=35177 WHERE a=9970;\nUPDATE t2 SET b=97571 WHERE a=9971;\nUPDATE t2 SET b=6770 WHERE a=9972;\nUPDATE t2 SET b=76373 WHERE a=9973;\nUPDATE t2 SET b=90740 WHERE a=9974;\nUPDATE t2 SET b=75669 WHERE a=9975;\nUPDATE t2 SET b=22395 WHERE a=9976;\nUPDATE t2 SET b=42601 WHERE a=9977;\nUPDATE t2 SET b=94262 WHERE a=9978;\nUPDATE t2 SET b=966 WHERE a=9979;\nUPDATE t2 SET b=74271 WHERE a=9980;\nUPDATE t2 SET b=21168 WHERE a=9981;\nUPDATE t2 SET b=98482 WHERE a=9982;\nUPDATE t2 SET b=68566 WHERE a=9983;\nUPDATE t2 SET b=60664 WHERE a=9984;\nUPDATE t2 SET b=34415 WHERE a=9985;\nUPDATE t2 SET b=10324 WHERE a=9986;\nUPDATE t2 SET b=7203 WHERE a=9987;\nUPDATE t2 SET b=88049 WHERE a=9988;\nUPDATE t2 SET b=32054 WHERE a=9989;\nUPDATE t2 SET b=86901 WHERE a=9990;\nUPDATE t2 SET b=38505 WHERE a=9991;\nUPDATE t2 SET b=27238 WHERE a=9992;\nUPDATE t2 SET b=26900 WHERE a=9993;\nUPDATE t2 SET b=74653 WHERE a=9994;\nUPDATE t2 SET b=35304 WHERE a=9995;\nUPDATE t2 SET b=65513 WHERE a=9996;\nUPDATE t2 SET b=98235 WHERE a=9997;\nUPDATE t2 SET b=69652 WHERE a=9998;\nUPDATE t2 SET b=56878 WHERE a=9999;\nUPDATE t2 SET b=71588 WHERE a=10000;\nUPDATE t2 SET b=39020 WHERE a=10001;\nUPDATE t2 SET b=6328 WHERE a=10002;\nUPDATE t2 SET b=87196 WHERE a=10003;\nUPDATE t2 SET b=75943 WHERE a=10004;\nUPDATE t2 SET b=72381 WHERE a=10005;\nUPDATE t2 SET b=67938 WHERE a=10006;\nUPDATE t2 SET b=55020 WHERE a=10007;\nUPDATE t2 SET b=99141 WHERE a=10008;\nUPDATE t2 SET b=96369 WHERE a=10009;\nUPDATE t2 SET b=79874 WHERE a=10010;\nUPDATE t2 SET b=92859 WHERE a=10011;\nUPDATE t2 SET b=45585 WHERE a=10012;\nUPDATE t2 SET b=14993 WHERE a=10013;\nUPDATE t2 SET b=40403 WHERE a=10014;\nUPDATE t2 SET b=12923 WHERE a=10015;\nUPDATE t2 SET b=58563 WHERE a=10016;\nUPDATE t2 SET b=34103 WHERE a=10017;\nUPDATE t2 SET b=39085 WHERE a=10018;\nUPDATE t2 SET b=84966 WHERE a=10019;\nUPDATE t2 SET b=41643 WHERE a=10020;\nUPDATE t2 SET b=3899 WHERE a=10021;\nUPDATE t2 SET b=83192 WHERE a=10022;\nUPDATE t2 SET b=9213 WHERE a=10023;\nUPDATE t2 SET b=69969 WHERE a=10024;\nUPDATE t2 SET b=50458 WHERE a=10025;\nUPDATE t2 SET b=35891 WHERE a=10026;\nUPDATE t2 SET b=74298 WHERE a=10027;\nUPDATE t2 SET b=22271 WHERE a=10028;\nUPDATE t2 SET b=73796 WHERE a=10029;\nUPDATE t2 SET b=22348 WHERE a=10030;\nUPDATE t2 SET b=40486 WHERE a=10031;\nUPDATE t2 SET b=16760 WHERE a=10032;\nUPDATE t2 SET b=79726 WHERE a=10033;\nUPDATE t2 SET b=83956 WHERE a=10034;\nUPDATE t2 SET b=41828 WHERE a=10035;\nUPDATE t2 SET b=54894 WHERE a=10036;\nUPDATE t2 SET b=98125 WHERE a=10037;\nUPDATE t2 SET b=52429 WHERE a=10038;\nUPDATE t2 SET b=95878 WHERE a=10039;\nUPDATE t2 SET b=69855 WHERE a=10040;\nUPDATE t2 SET b=91460 WHERE a=10041;\nUPDATE t2 SET b=1848 WHERE a=10042;\nUPDATE t2 SET b=91428 WHERE a=10043;\nUPDATE t2 SET b=33915 WHERE a=10044;\nUPDATE t2 SET b=74343 WHERE a=10045;\nUPDATE t2 SET b=32484 WHERE a=10046;\nUPDATE t2 SET b=37271 WHERE a=10047;\nUPDATE t2 SET b=77386 WHERE a=10048;\nUPDATE t2 SET b=60642 WHERE a=10049;\nUPDATE t2 SET b=95746 WHERE a=10050;\nUPDATE t2 SET b=8425 WHERE a=10051;\nUPDATE t2 SET b=70069 WHERE a=10052;\nUPDATE t2 SET b=45816 WHERE a=10053;\nUPDATE t2 SET b=10767 WHERE a=10054;\nUPDATE t2 SET b=69161 WHERE a=10055;\nUPDATE t2 SET b=98984 WHERE a=10056;\nUPDATE t2 SET b=8373 WHERE a=10057;\nUPDATE t2 SET b=26791 WHERE a=10058;\nUPDATE t2 SET b=83552 WHERE a=10059;\nUPDATE t2 SET b=72264 WHERE a=10060;\nUPDATE t2 SET b=34953 WHERE a=10061;\nUPDATE t2 SET b=36160 WHERE a=10062;\nUPDATE t2 SET b=84415 WHERE a=10063;\nUPDATE t2 SET b=72313 WHERE a=10064;\nUPDATE t2 SET b=95095 WHERE a=10065;\nUPDATE t2 SET b=95138 WHERE a=10066;\nUPDATE t2 SET b=78383 WHERE a=10067;\nUPDATE t2 SET b=40935 WHERE a=10068;\nUPDATE t2 SET b=20057 WHERE a=10069;\nUPDATE t2 SET b=48961 WHERE a=10070;\nUPDATE t2 SET b=64633 WHERE a=10071;\nUPDATE t2 SET b=59314 WHERE a=10072;\nUPDATE t2 SET b=98945 WHERE a=10073;\nUPDATE t2 SET b=3818 WHERE a=10074;\nUPDATE t2 SET b=83516 WHERE a=10075;\nUPDATE t2 SET b=64693 WHERE a=10076;\nUPDATE t2 SET b=20062 WHERE a=10077;\nUPDATE t2 SET b=92245 WHERE a=10078;\nUPDATE t2 SET b=25819 WHERE a=10079;\nUPDATE t2 SET b=9227 WHERE a=10080;\nUPDATE t2 SET b=86066 WHERE a=10081;\nUPDATE t2 SET b=84153 WHERE a=10082;\nUPDATE t2 SET b=71327 WHERE a=10083;\nUPDATE t2 SET b=42533 WHERE a=10084;\nUPDATE t2 SET b=52354 WHERE a=10085;\nUPDATE t2 SET b=11738 WHERE a=10086;\nUPDATE t2 SET b=81675 WHERE a=10087;\nUPDATE t2 SET b=76188 WHERE a=10088;\nUPDATE t2 SET b=24849 WHERE a=10089;\nUPDATE t2 SET b=47061 WHERE a=10090;\nUPDATE t2 SET b=21792 WHERE a=10091;\nUPDATE t2 SET b=77849 WHERE a=10092;\nUPDATE t2 SET b=23023 WHERE a=10093;\nUPDATE t2 SET b=94223 WHERE a=10094;\nUPDATE t2 SET b=22544 WHERE a=10095;\nUPDATE t2 SET b=18365 WHERE a=10096;\nUPDATE t2 SET b=12740 WHERE a=10097;\nUPDATE t2 SET b=39982 WHERE a=10098;\nUPDATE t2 SET b=47539 WHERE a=10099;\nUPDATE t2 SET b=73828 WHERE a=10100;\nUPDATE t2 SET b=33154 WHERE a=10101;\nUPDATE t2 SET b=77187 WHERE a=10102;\nUPDATE t2 SET b=54831 WHERE a=10103;\nUPDATE t2 SET b=96779 WHERE a=10104;\nUPDATE t2 SET b=83356 WHERE a=10105;\nUPDATE t2 SET b=5778 WHERE a=10106;\nUPDATE t2 SET b=40717 WHERE a=10107;\nUPDATE t2 SET b=51009 WHERE a=10108;\nUPDATE t2 SET b=99583 WHERE a=10109;\nUPDATE t2 SET b=55905 WHERE a=10110;\nUPDATE t2 SET b=96654 WHERE a=10111;\nUPDATE t2 SET b=55003 WHERE a=10112;\nUPDATE t2 SET b=17284 WHERE a=10113;\nUPDATE t2 SET b=28492 WHERE a=10114;\nUPDATE t2 SET b=22209 WHERE a=10115;\nUPDATE t2 SET b=15948 WHERE a=10116;\nUPDATE t2 SET b=28670 WHERE a=10117;\nUPDATE t2 SET b=53717 WHERE a=10118;\nUPDATE t2 SET b=98372 WHERE a=10119;\nUPDATE t2 SET b=40117 WHERE a=10120;\nUPDATE t2 SET b=1174 WHERE a=10121;\nUPDATE t2 SET b=24599 WHERE a=10122;\nUPDATE t2 SET b=97842 WHERE a=10123;\nUPDATE t2 SET b=68636 WHERE a=10124;\nUPDATE t2 SET b=62915 WHERE a=10125;\nUPDATE t2 SET b=51984 WHERE a=10126;\nUPDATE t2 SET b=56962 WHERE a=10127;\nUPDATE t2 SET b=43351 WHERE a=10128;\nUPDATE t2 SET b=17586 WHERE a=10129;\nUPDATE t2 SET b=72937 WHERE a=10130;\nUPDATE t2 SET b=84587 WHERE a=10131;\nUPDATE t2 SET b=38805 WHERE a=10132;\nUPDATE t2 SET b=87837 WHERE a=10133;\nUPDATE t2 SET b=22912 WHERE a=10134;\nUPDATE t2 SET b=83263 WHERE a=10135;\nUPDATE t2 SET b=9769 WHERE a=10136;\nUPDATE t2 SET b=5047 WHERE a=10137;\nUPDATE t2 SET b=47721 WHERE a=10138;\nUPDATE t2 SET b=63541 WHERE a=10139;\nUPDATE t2 SET b=86911 WHERE a=10140;\nUPDATE t2 SET b=47782 WHERE a=10141;\nUPDATE t2 SET b=44416 WHERE a=10142;\nUPDATE t2 SET b=57782 WHERE a=10143;\nUPDATE t2 SET b=76990 WHERE a=10144;\nUPDATE t2 SET b=42660 WHERE a=10145;\nUPDATE t2 SET b=50653 WHERE a=10146;\nUPDATE t2 SET b=44749 WHERE a=10147;\nUPDATE t2 SET b=44739 WHERE a=10148;\nUPDATE t2 SET b=50561 WHERE a=10149;\nUPDATE t2 SET b=44018 WHERE a=10150;\nUPDATE t2 SET b=4859 WHERE a=10151;\nUPDATE t2 SET b=5146 WHERE a=10152;\nUPDATE t2 SET b=92487 WHERE a=10153;\nUPDATE t2 SET b=94645 WHERE a=10154;\nUPDATE t2 SET b=11513 WHERE a=10155;\nUPDATE t2 SET b=61109 WHERE a=10156;\nUPDATE t2 SET b=70933 WHERE a=10157;\nUPDATE t2 SET b=99316 WHERE a=10158;\nUPDATE t2 SET b=75714 WHERE a=10159;\nUPDATE t2 SET b=55571 WHERE a=10160;\nUPDATE t2 SET b=45795 WHERE a=10161;\nUPDATE t2 SET b=78808 WHERE a=10162;\nUPDATE t2 SET b=58095 WHERE a=10163;\nUPDATE t2 SET b=33164 WHERE a=10164;\nUPDATE t2 SET b=92878 WHERE a=10165;\nUPDATE t2 SET b=18550 WHERE a=10166;\nUPDATE t2 SET b=51038 WHERE a=10167;\nUPDATE t2 SET b=11542 WHERE a=10168;\nUPDATE t2 SET b=86664 WHERE a=10169;\nUPDATE t2 SET b=30651 WHERE a=10170;\nUPDATE t2 SET b=59344 WHERE a=10171;\nUPDATE t2 SET b=9466 WHERE a=10172;\nUPDATE t2 SET b=54201 WHERE a=10173;\nUPDATE t2 SET b=89719 WHERE a=10174;\nUPDATE t2 SET b=43832 WHERE a=10175;\nUPDATE t2 SET b=63733 WHERE a=10176;\nUPDATE t2 SET b=48961 WHERE a=10177;\nUPDATE t2 SET b=40808 WHERE a=10178;\nUPDATE t2 SET b=32014 WHERE a=10179;\nUPDATE t2 SET b=24134 WHERE a=10180;\nUPDATE t2 SET b=18285 WHERE a=10181;\nUPDATE t2 SET b=66084 WHERE a=10182;\nUPDATE t2 SET b=71433 WHERE a=10183;\nUPDATE t2 SET b=44345 WHERE a=10184;\nUPDATE t2 SET b=21255 WHERE a=10185;\nUPDATE t2 SET b=94841 WHERE a=10186;\nUPDATE t2 SET b=88035 WHERE a=10187;\nUPDATE t2 SET b=19859 WHERE a=10188;\nUPDATE t2 SET b=86318 WHERE a=10189;\nUPDATE t2 SET b=54811 WHERE a=10190;\nUPDATE t2 SET b=8466 WHERE a=10191;\nUPDATE t2 SET b=27776 WHERE a=10192;\nUPDATE t2 SET b=47388 WHERE a=10193;\nUPDATE t2 SET b=94767 WHERE a=10194;\nUPDATE t2 SET b=23163 WHERE a=10195;\nUPDATE t2 SET b=55799 WHERE a=10196;\nUPDATE t2 SET b=8383 WHERE a=10197;\nUPDATE t2 SET b=31277 WHERE a=10198;\nUPDATE t2 SET b=67436 WHERE a=10199;\nUPDATE t2 SET b=61825 WHERE a=10200;\nUPDATE t2 SET b=34888 WHERE a=10201;\nUPDATE t2 SET b=29675 WHERE a=10202;\nUPDATE t2 SET b=88941 WHERE a=10203;\nUPDATE t2 SET b=24139 WHERE a=10204;\nUPDATE t2 SET b=95477 WHERE a=10205;\nUPDATE t2 SET b=4700 WHERE a=10206;\nUPDATE t2 SET b=42401 WHERE a=10207;\nUPDATE t2 SET b=73064 WHERE a=10208;\nUPDATE t2 SET b=18666 WHERE a=10209;\nUPDATE t2 SET b=84757 WHERE a=10210;\nUPDATE t2 SET b=26881 WHERE a=10211;\nUPDATE t2 SET b=42658 WHERE a=10212;\nUPDATE t2 SET b=92162 WHERE a=10213;\nUPDATE t2 SET b=87116 WHERE a=10214;\nUPDATE t2 SET b=43728 WHERE a=10215;\nUPDATE t2 SET b=12269 WHERE a=10216;\nUPDATE t2 SET b=72003 WHERE a=10217;\nUPDATE t2 SET b=634 WHERE a=10218;\nUPDATE t2 SET b=72006 WHERE a=10219;\nUPDATE t2 SET b=79507 WHERE a=10220;\nUPDATE t2 SET b=48484 WHERE a=10221;\nUPDATE t2 SET b=57089 WHERE a=10222;\nUPDATE t2 SET b=12006 WHERE a=10223;\nUPDATE t2 SET b=76661 WHERE a=10224;\nUPDATE t2 SET b=26818 WHERE a=10225;\nUPDATE t2 SET b=24511 WHERE a=10226;\nUPDATE t2 SET b=25491 WHERE a=10227;\nUPDATE t2 SET b=22578 WHERE a=10228;\nUPDATE t2 SET b=47968 WHERE a=10229;\nUPDATE t2 SET b=40459 WHERE a=10230;\nUPDATE t2 SET b=91871 WHERE a=10231;\nUPDATE t2 SET b=58161 WHERE a=10232;\nUPDATE t2 SET b=6765 WHERE a=10233;\nUPDATE t2 SET b=76996 WHERE a=10234;\nUPDATE t2 SET b=45944 WHERE a=10235;\nUPDATE t2 SET b=58226 WHERE a=10236;\nUPDATE t2 SET b=80501 WHERE a=10237;\nUPDATE t2 SET b=27931 WHERE a=10238;\nUPDATE t2 SET b=16210 WHERE a=10239;\nUPDATE t2 SET b=4632 WHERE a=10240;\nUPDATE t2 SET b=21288 WHERE a=10241;\nUPDATE t2 SET b=48933 WHERE a=10242;\nUPDATE t2 SET b=68249 WHERE a=10243;\nUPDATE t2 SET b=8097 WHERE a=10244;\nUPDATE t2 SET b=36151 WHERE a=10245;\nUPDATE t2 SET b=40210 WHERE a=10246;\nUPDATE t2 SET b=16009 WHERE a=10247;\nUPDATE t2 SET b=37789 WHERE a=10248;\nUPDATE t2 SET b=82 WHERE a=10249;\nUPDATE t2 SET b=69767 WHERE a=10250;\nUPDATE t2 SET b=84727 WHERE a=10251;\nUPDATE t2 SET b=70015 WHERE a=10252;\nUPDATE t2 SET b=90717 WHERE a=10253;\nUPDATE t2 SET b=16359 WHERE a=10254;\nUPDATE t2 SET b=86895 WHERE a=10255;\nUPDATE t2 SET b=64556 WHERE a=10256;\nUPDATE t2 SET b=16203 WHERE a=10257;\nUPDATE t2 SET b=7494 WHERE a=10258;\nUPDATE t2 SET b=60644 WHERE a=10259;\nUPDATE t2 SET b=89205 WHERE a=10260;\nUPDATE t2 SET b=44438 WHERE a=10261;\nUPDATE t2 SET b=13358 WHERE a=10262;\nUPDATE t2 SET b=32686 WHERE a=10263;\nUPDATE t2 SET b=91599 WHERE a=10264;\nUPDATE t2 SET b=61738 WHERE a=10265;\nUPDATE t2 SET b=70526 WHERE a=10266;\nUPDATE t2 SET b=73070 WHERE a=10267;\nUPDATE t2 SET b=94855 WHERE a=10268;\nUPDATE t2 SET b=10508 WHERE a=10269;\nUPDATE t2 SET b=2353 WHERE a=10270;\nUPDATE t2 SET b=15408 WHERE a=10271;\nUPDATE t2 SET b=58469 WHERE a=10272;\nUPDATE t2 SET b=64973 WHERE a=10273;\nUPDATE t2 SET b=39678 WHERE a=10274;\nUPDATE t2 SET b=54269 WHERE a=10275;\nUPDATE t2 SET b=2531 WHERE a=10276;\nUPDATE t2 SET b=65628 WHERE a=10277;\nUPDATE t2 SET b=40196 WHERE a=10278;\nUPDATE t2 SET b=38719 WHERE a=10279;\nUPDATE t2 SET b=75917 WHERE a=10280;\nUPDATE t2 SET b=36551 WHERE a=10281;\nUPDATE t2 SET b=16181 WHERE a=10282;\nUPDATE t2 SET b=66335 WHERE a=10283;\nUPDATE t2 SET b=79168 WHERE a=10284;\nUPDATE t2 SET b=61072 WHERE a=10285;\nUPDATE t2 SET b=86204 WHERE a=10286;\nUPDATE t2 SET b=61035 WHERE a=10287;\nUPDATE t2 SET b=58106 WHERE a=10288;\nUPDATE t2 SET b=15216 WHERE a=10289;\nUPDATE t2 SET b=45797 WHERE a=10290;\nUPDATE t2 SET b=69015 WHERE a=10291;\nUPDATE t2 SET b=71159 WHERE a=10292;\nUPDATE t2 SET b=54500 WHERE a=10293;\nUPDATE t2 SET b=17287 WHERE a=10294;\nUPDATE t2 SET b=12632 WHERE a=10295;\nUPDATE t2 SET b=24372 WHERE a=10296;\nUPDATE t2 SET b=66072 WHERE a=10297;\nUPDATE t2 SET b=43235 WHERE a=10298;\nUPDATE t2 SET b=72004 WHERE a=10299;\nUPDATE t2 SET b=22946 WHERE a=10300;\nUPDATE t2 SET b=45221 WHERE a=10301;\nUPDATE t2 SET b=62967 WHERE a=10302;\nUPDATE t2 SET b=70451 WHERE a=10303;\nUPDATE t2 SET b=77499 WHERE a=10304;\nUPDATE t2 SET b=12439 WHERE a=10305;\nUPDATE t2 SET b=50626 WHERE a=10306;\nUPDATE t2 SET b=81287 WHERE a=10307;\nUPDATE t2 SET b=82880 WHERE a=10308;\nUPDATE t2 SET b=81037 WHERE a=10309;\nUPDATE t2 SET b=75115 WHERE a=10310;\nUPDATE t2 SET b=38232 WHERE a=10311;\nUPDATE t2 SET b=53850 WHERE a=10312;\nUPDATE t2 SET b=68621 WHERE a=10313;\nUPDATE t2 SET b=67980 WHERE a=10314;\nUPDATE t2 SET b=25084 WHERE a=10315;\nUPDATE t2 SET b=97679 WHERE a=10316;\nUPDATE t2 SET b=72671 WHERE a=10317;\nUPDATE t2 SET b=23493 WHERE a=10318;\nUPDATE t2 SET b=83076 WHERE a=10319;\nUPDATE t2 SET b=38793 WHERE a=10320;\nUPDATE t2 SET b=15912 WHERE a=10321;\nUPDATE t2 SET b=50395 WHERE a=10322;\nUPDATE t2 SET b=97671 WHERE a=10323;\nUPDATE t2 SET b=14338 WHERE a=10324;\nUPDATE t2 SET b=12789 WHERE a=10325;\nUPDATE t2 SET b=90131 WHERE a=10326;\nUPDATE t2 SET b=5411 WHERE a=10327;\nUPDATE t2 SET b=32320 WHERE a=10328;\nUPDATE t2 SET b=5532 WHERE a=10329;\nUPDATE t2 SET b=98838 WHERE a=10330;\nUPDATE t2 SET b=7306 WHERE a=10331;\nUPDATE t2 SET b=15701 WHERE a=10332;\nUPDATE t2 SET b=69250 WHERE a=10333;\nUPDATE t2 SET b=67423 WHERE a=10334;\nUPDATE t2 SET b=36148 WHERE a=10335;\nUPDATE t2 SET b=28692 WHERE a=10336;\nUPDATE t2 SET b=68067 WHERE a=10337;\nUPDATE t2 SET b=67067 WHERE a=10338;\nUPDATE t2 SET b=84490 WHERE a=10339;\nUPDATE t2 SET b=65973 WHERE a=10340;\nUPDATE t2 SET b=56011 WHERE a=10341;\nUPDATE t2 SET b=53666 WHERE a=10342;\nUPDATE t2 SET b=77678 WHERE a=10343;\nUPDATE t2 SET b=20518 WHERE a=10344;\nUPDATE t2 SET b=57189 WHERE a=10345;\nUPDATE t2 SET b=48641 WHERE a=10346;\nUPDATE t2 SET b=88557 WHERE a=10347;\nUPDATE t2 SET b=51942 WHERE a=10348;\nUPDATE t2 SET b=30406 WHERE a=10349;\nUPDATE t2 SET b=65208 WHERE a=10350;\nUPDATE t2 SET b=37012 WHERE a=10351;\nUPDATE t2 SET b=37950 WHERE a=10352;\nUPDATE t2 SET b=31690 WHERE a=10353;\nUPDATE t2 SET b=33085 WHERE a=10354;\nUPDATE t2 SET b=99157 WHERE a=10355;\nUPDATE t2 SET b=56214 WHERE a=10356;\nUPDATE t2 SET b=91255 WHERE a=10357;\nUPDATE t2 SET b=45825 WHERE a=10358;\nUPDATE t2 SET b=24095 WHERE a=10359;\nUPDATE t2 SET b=59456 WHERE a=10360;\nUPDATE t2 SET b=49745 WHERE a=10361;\nUPDATE t2 SET b=85615 WHERE a=10362;\nUPDATE t2 SET b=25895 WHERE a=10363;\nUPDATE t2 SET b=63196 WHERE a=10364;\nUPDATE t2 SET b=92778 WHERE a=10365;\nUPDATE t2 SET b=23612 WHERE a=10366;\nUPDATE t2 SET b=53966 WHERE a=10367;\nUPDATE t2 SET b=84076 WHERE a=10368;\nUPDATE t2 SET b=13597 WHERE a=10369;\nUPDATE t2 SET b=77462 WHERE a=10370;\nUPDATE t2 SET b=44330 WHERE a=10371;\nUPDATE t2 SET b=7614 WHERE a=10372;\nUPDATE t2 SET b=20950 WHERE a=10373;\nUPDATE t2 SET b=61062 WHERE a=10374;\nUPDATE t2 SET b=56260 WHERE a=10375;\nUPDATE t2 SET b=13357 WHERE a=10376;\nUPDATE t2 SET b=16418 WHERE a=10377;\nUPDATE t2 SET b=28572 WHERE a=10378;\nUPDATE t2 SET b=98521 WHERE a=10379;\nUPDATE t2 SET b=62599 WHERE a=10380;\nUPDATE t2 SET b=91846 WHERE a=10381;\nUPDATE t2 SET b=96971 WHERE a=10382;\nUPDATE t2 SET b=17279 WHERE a=10383;\nUPDATE t2 SET b=50693 WHERE a=10384;\nUPDATE t2 SET b=26438 WHERE a=10385;\nUPDATE t2 SET b=14390 WHERE a=10386;\nUPDATE t2 SET b=43899 WHERE a=10387;\nUPDATE t2 SET b=56079 WHERE a=10388;\nUPDATE t2 SET b=50642 WHERE a=10389;\nUPDATE t2 SET b=78765 WHERE a=10390;\nUPDATE t2 SET b=28487 WHERE a=10391;\nUPDATE t2 SET b=20634 WHERE a=10392;\nUPDATE t2 SET b=53957 WHERE a=10393;\nUPDATE t2 SET b=32126 WHERE a=10394;\nUPDATE t2 SET b=90039 WHERE a=10395;\nUPDATE t2 SET b=12020 WHERE a=10396;\nUPDATE t2 SET b=64882 WHERE a=10397;\nUPDATE t2 SET b=49286 WHERE a=10398;\nUPDATE t2 SET b=6287 WHERE a=10399;\nUPDATE t2 SET b=92238 WHERE a=10400;\nUPDATE t2 SET b=11358 WHERE a=10401;\nUPDATE t2 SET b=17298 WHERE a=10402;\nUPDATE t2 SET b=31766 WHERE a=10403;\nUPDATE t2 SET b=78600 WHERE a=10404;\nUPDATE t2 SET b=1538 WHERE a=10405;\nUPDATE t2 SET b=75925 WHERE a=10406;\nUPDATE t2 SET b=25496 WHERE a=10407;\nUPDATE t2 SET b=75140 WHERE a=10408;\nUPDATE t2 SET b=73139 WHERE a=10409;\nUPDATE t2 SET b=99662 WHERE a=10410;\nUPDATE t2 SET b=65575 WHERE a=10411;\nUPDATE t2 SET b=73928 WHERE a=10412;\nUPDATE t2 SET b=88389 WHERE a=10413;\nUPDATE t2 SET b=98721 WHERE a=10414;\nUPDATE t2 SET b=40689 WHERE a=10415;\nUPDATE t2 SET b=19354 WHERE a=10416;\nUPDATE t2 SET b=10384 WHERE a=10417;\nUPDATE t2 SET b=40025 WHERE a=10418;\nUPDATE t2 SET b=70591 WHERE a=10419;\nUPDATE t2 SET b=60726 WHERE a=10420;\nUPDATE t2 SET b=95607 WHERE a=10421;\nUPDATE t2 SET b=50643 WHERE a=10422;\nUPDATE t2 SET b=2586 WHERE a=10423;\nUPDATE t2 SET b=86374 WHERE a=10424;\nUPDATE t2 SET b=87616 WHERE a=10425;\nUPDATE t2 SET b=14855 WHERE a=10426;\nUPDATE t2 SET b=63789 WHERE a=10427;\nUPDATE t2 SET b=91519 WHERE a=10428;\nUPDATE t2 SET b=578 WHERE a=10429;\nUPDATE t2 SET b=43455 WHERE a=10430;\nUPDATE t2 SET b=12159 WHERE a=10431;\nUPDATE t2 SET b=35602 WHERE a=10432;\nUPDATE t2 SET b=52238 WHERE a=10433;\nUPDATE t2 SET b=73799 WHERE a=10434;\nUPDATE t2 SET b=9076 WHERE a=10435;\nUPDATE t2 SET b=16546 WHERE a=10436;\nUPDATE t2 SET b=11361 WHERE a=10437;\nUPDATE t2 SET b=97441 WHERE a=10438;\nUPDATE t2 SET b=2592 WHERE a=10439;\nUPDATE t2 SET b=81480 WHERE a=10440;\nUPDATE t2 SET b=64951 WHERE a=10441;\nUPDATE t2 SET b=19671 WHERE a=10442;\nUPDATE t2 SET b=4253 WHERE a=10443;\nUPDATE t2 SET b=80713 WHERE a=10444;\nUPDATE t2 SET b=32369 WHERE a=10445;\nUPDATE t2 SET b=3011 WHERE a=10446;\nUPDATE t2 SET b=66563 WHERE a=10447;\nUPDATE t2 SET b=84544 WHERE a=10448;\nUPDATE t2 SET b=73408 WHERE a=10449;\nUPDATE t2 SET b=96082 WHERE a=10450;\nUPDATE t2 SET b=2461 WHERE a=10451;\nUPDATE t2 SET b=71387 WHERE a=10452;\nUPDATE t2 SET b=86286 WHERE a=10453;\nUPDATE t2 SET b=73229 WHERE a=10454;\nUPDATE t2 SET b=67030 WHERE a=10455;\nUPDATE t2 SET b=33161 WHERE a=10456;\nUPDATE t2 SET b=75897 WHERE a=10457;\nUPDATE t2 SET b=37147 WHERE a=10458;\nUPDATE t2 SET b=27735 WHERE a=10459;\nUPDATE t2 SET b=47902 WHERE a=10460;\nUPDATE t2 SET b=93978 WHERE a=10461;\nUPDATE t2 SET b=39315 WHERE a=10462;\nUPDATE t2 SET b=76627 WHERE a=10463;\nUPDATE t2 SET b=47691 WHERE a=10464;\nUPDATE t2 SET b=44365 WHERE a=10465;\nUPDATE t2 SET b=2318 WHERE a=10466;\nUPDATE t2 SET b=40431 WHERE a=10467;\nUPDATE t2 SET b=86826 WHERE a=10468;\nUPDATE t2 SET b=73256 WHERE a=10469;\nUPDATE t2 SET b=9118 WHERE a=10470;\nUPDATE t2 SET b=87618 WHERE a=10471;\nUPDATE t2 SET b=22960 WHERE a=10472;\nUPDATE t2 SET b=92218 WHERE a=10473;\nUPDATE t2 SET b=64206 WHERE a=10474;\nUPDATE t2 SET b=39726 WHERE a=10475;\nUPDATE t2 SET b=95289 WHERE a=10476;\nUPDATE t2 SET b=91669 WHERE a=10477;\nUPDATE t2 SET b=45722 WHERE a=10478;\nUPDATE t2 SET b=12831 WHERE a=10479;\nUPDATE t2 SET b=56806 WHERE a=10480;\nUPDATE t2 SET b=27322 WHERE a=10481;\nUPDATE t2 SET b=97654 WHERE a=10482;\nUPDATE t2 SET b=44497 WHERE a=10483;\nUPDATE t2 SET b=1931 WHERE a=10484;\nUPDATE t2 SET b=95353 WHERE a=10485;\nUPDATE t2 SET b=2055 WHERE a=10486;\nUPDATE t2 SET b=44168 WHERE a=10487;\nUPDATE t2 SET b=310 WHERE a=10488;\nUPDATE t2 SET b=39968 WHERE a=10489;\nUPDATE t2 SET b=47886 WHERE a=10490;\nUPDATE t2 SET b=39879 WHERE a=10491;\nUPDATE t2 SET b=97517 WHERE a=10492;\nUPDATE t2 SET b=85299 WHERE a=10493;\nUPDATE t2 SET b=88501 WHERE a=10494;\nUPDATE t2 SET b=29396 WHERE a=10495;\nUPDATE t2 SET b=49206 WHERE a=10496;\nUPDATE t2 SET b=86397 WHERE a=10497;\nUPDATE t2 SET b=72628 WHERE a=10498;\nUPDATE t2 SET b=7395 WHERE a=10499;\nUPDATE t2 SET b=76183 WHERE a=10500;\nUPDATE t2 SET b=51056 WHERE a=10501;\nUPDATE t2 SET b=49610 WHERE a=10502;\nUPDATE t2 SET b=79296 WHERE a=10503;\nUPDATE t2 SET b=66906 WHERE a=10504;\nUPDATE t2 SET b=93375 WHERE a=10505;\nUPDATE t2 SET b=4082 WHERE a=10506;\nUPDATE t2 SET b=41800 WHERE a=10507;\nUPDATE t2 SET b=93114 WHERE a=10508;\nUPDATE t2 SET b=93633 WHERE a=10509;\nUPDATE t2 SET b=55545 WHERE a=10510;\nUPDATE t2 SET b=43448 WHERE a=10511;\nUPDATE t2 SET b=72679 WHERE a=10512;\nUPDATE t2 SET b=84327 WHERE a=10513;\nUPDATE t2 SET b=521 WHERE a=10514;\nUPDATE t2 SET b=87289 WHERE a=10515;\nUPDATE t2 SET b=19810 WHERE a=10516;\nUPDATE t2 SET b=62812 WHERE a=10517;\nUPDATE t2 SET b=59141 WHERE a=10518;\nUPDATE t2 SET b=16997 WHERE a=10519;\nUPDATE t2 SET b=47999 WHERE a=10520;\nUPDATE t2 SET b=51405 WHERE a=10521;\nUPDATE t2 SET b=98970 WHERE a=10522;\nUPDATE t2 SET b=24410 WHERE a=10523;\nUPDATE t2 SET b=45804 WHERE a=10524;\nUPDATE t2 SET b=5918 WHERE a=10525;\nUPDATE t2 SET b=33188 WHERE a=10526;\nUPDATE t2 SET b=24018 WHERE a=10527;\nUPDATE t2 SET b=24056 WHERE a=10528;\nUPDATE t2 SET b=98365 WHERE a=10529;\nUPDATE t2 SET b=57205 WHERE a=10530;\nUPDATE t2 SET b=91381 WHERE a=10531;\nUPDATE t2 SET b=96729 WHERE a=10532;\nUPDATE t2 SET b=20628 WHERE a=10533;\nUPDATE t2 SET b=85734 WHERE a=10534;\nUPDATE t2 SET b=97818 WHERE a=10535;\nUPDATE t2 SET b=30656 WHERE a=10536;\nUPDATE t2 SET b=16726 WHERE a=10537;\nUPDATE t2 SET b=5979 WHERE a=10538;\nUPDATE t2 SET b=64701 WHERE a=10539;\nUPDATE t2 SET b=74328 WHERE a=10540;\nUPDATE t2 SET b=59831 WHERE a=10541;\nUPDATE t2 SET b=97985 WHERE a=10542;\nUPDATE t2 SET b=11882 WHERE a=10543;\nUPDATE t2 SET b=62201 WHERE a=10544;\nUPDATE t2 SET b=84897 WHERE a=10545;\nUPDATE t2 SET b=79978 WHERE a=10546;\nUPDATE t2 SET b=35935 WHERE a=10547;\nUPDATE t2 SET b=48855 WHERE a=10548;\nUPDATE t2 SET b=30054 WHERE a=10549;\nUPDATE t2 SET b=65079 WHERE a=10550;\nUPDATE t2 SET b=69728 WHERE a=10551;\nUPDATE t2 SET b=2399 WHERE a=10552;\nUPDATE t2 SET b=93568 WHERE a=10553;\nUPDATE t2 SET b=90567 WHERE a=10554;\nUPDATE t2 SET b=87430 WHERE a=10555;\nUPDATE t2 SET b=64915 WHERE a=10556;\nUPDATE t2 SET b=41917 WHERE a=10557;\nUPDATE t2 SET b=38339 WHERE a=10558;\nUPDATE t2 SET b=93274 WHERE a=10559;\nUPDATE t2 SET b=85920 WHERE a=10560;\nUPDATE t2 SET b=36114 WHERE a=10561;\nUPDATE t2 SET b=92552 WHERE a=10562;\nUPDATE t2 SET b=33732 WHERE a=10563;\nUPDATE t2 SET b=66700 WHERE a=10564;\nUPDATE t2 SET b=25762 WHERE a=10565;\nUPDATE t2 SET b=17041 WHERE a=10566;\nUPDATE t2 SET b=85804 WHERE a=10567;\nUPDATE t2 SET b=61857 WHERE a=10568;\nUPDATE t2 SET b=14070 WHERE a=10569;\nUPDATE t2 SET b=19654 WHERE a=10570;\nUPDATE t2 SET b=2455 WHERE a=10571;\nUPDATE t2 SET b=59825 WHERE a=10572;\nUPDATE t2 SET b=19674 WHERE a=10573;\nUPDATE t2 SET b=37163 WHERE a=10574;\nUPDATE t2 SET b=1620 WHERE a=10575;\nUPDATE t2 SET b=6715 WHERE a=10576;\nUPDATE t2 SET b=81194 WHERE a=10577;\nUPDATE t2 SET b=31896 WHERE a=10578;\nUPDATE t2 SET b=3026 WHERE a=10579;\nUPDATE t2 SET b=12603 WHERE a=10580;\nUPDATE t2 SET b=68278 WHERE a=10581;\nUPDATE t2 SET b=16454 WHERE a=10582;\nUPDATE t2 SET b=17938 WHERE a=10583;\nUPDATE t2 SET b=37554 WHERE a=10584;\nUPDATE t2 SET b=46731 WHERE a=10585;\nUPDATE t2 SET b=31098 WHERE a=10586;\nUPDATE t2 SET b=28911 WHERE a=10587;\nUPDATE t2 SET b=74219 WHERE a=10588;\nUPDATE t2 SET b=82598 WHERE a=10589;\nUPDATE t2 SET b=76698 WHERE a=10590;\nUPDATE t2 SET b=20328 WHERE a=10591;\nUPDATE t2 SET b=55165 WHERE a=10592;\nUPDATE t2 SET b=52728 WHERE a=10593;\nUPDATE t2 SET b=10522 WHERE a=10594;\nUPDATE t2 SET b=9262 WHERE a=10595;\nUPDATE t2 SET b=47486 WHERE a=10596;\nUPDATE t2 SET b=23518 WHERE a=10597;\nUPDATE t2 SET b=87423 WHERE a=10598;\nUPDATE t2 SET b=41513 WHERE a=10599;\nUPDATE t2 SET b=70554 WHERE a=10600;\nUPDATE t2 SET b=53464 WHERE a=10601;\nUPDATE t2 SET b=93558 WHERE a=10602;\nUPDATE t2 SET b=14823 WHERE a=10603;\nUPDATE t2 SET b=59729 WHERE a=10604;\nUPDATE t2 SET b=27023 WHERE a=10605;\nUPDATE t2 SET b=18189 WHERE a=10606;\nUPDATE t2 SET b=68823 WHERE a=10607;\nUPDATE t2 SET b=20432 WHERE a=10608;\nUPDATE t2 SET b=92987 WHERE a=10609;\nUPDATE t2 SET b=85268 WHERE a=10610;\nUPDATE t2 SET b=5612 WHERE a=10611;\nUPDATE t2 SET b=6586 WHERE a=10612;\nUPDATE t2 SET b=15723 WHERE a=10613;\nUPDATE t2 SET b=95222 WHERE a=10614;\nUPDATE t2 SET b=66603 WHERE a=10615;\nUPDATE t2 SET b=61102 WHERE a=10616;\nUPDATE t2 SET b=23472 WHERE a=10617;\nUPDATE t2 SET b=23852 WHERE a=10618;\nUPDATE t2 SET b=98347 WHERE a=10619;\nUPDATE t2 SET b=4518 WHERE a=10620;\nUPDATE t2 SET b=64005 WHERE a=10621;\nUPDATE t2 SET b=69810 WHERE a=10622;\nUPDATE t2 SET b=65120 WHERE a=10623;\nUPDATE t2 SET b=92879 WHERE a=10624;\nUPDATE t2 SET b=25763 WHERE a=10625;\nUPDATE t2 SET b=9774 WHERE a=10626;\nUPDATE t2 SET b=87492 WHERE a=10627;\nUPDATE t2 SET b=10788 WHERE a=10628;\nUPDATE t2 SET b=51917 WHERE a=10629;\nUPDATE t2 SET b=35643 WHERE a=10630;\nUPDATE t2 SET b=46667 WHERE a=10631;\nUPDATE t2 SET b=46688 WHERE a=10632;\nUPDATE t2 SET b=13168 WHERE a=10633;\nUPDATE t2 SET b=58668 WHERE a=10634;\nUPDATE t2 SET b=82393 WHERE a=10635;\nUPDATE t2 SET b=330 WHERE a=10636;\nUPDATE t2 SET b=78801 WHERE a=10637;\nUPDATE t2 SET b=21283 WHERE a=10638;\nUPDATE t2 SET b=51753 WHERE a=10639;\nUPDATE t2 SET b=97809 WHERE a=10640;\nUPDATE t2 SET b=23179 WHERE a=10641;\nUPDATE t2 SET b=26682 WHERE a=10642;\nUPDATE t2 SET b=53061 WHERE a=10643;\nUPDATE t2 SET b=72403 WHERE a=10644;\nUPDATE t2 SET b=64882 WHERE a=10645;\nUPDATE t2 SET b=80787 WHERE a=10646;\nUPDATE t2 SET b=1790 WHERE a=10647;\nUPDATE t2 SET b=83893 WHERE a=10648;\nUPDATE t2 SET b=77626 WHERE a=10649;\nUPDATE t2 SET b=71054 WHERE a=10650;\nUPDATE t2 SET b=46083 WHERE a=10651;\nUPDATE t2 SET b=59494 WHERE a=10652;\nUPDATE t2 SET b=57647 WHERE a=10653;\nUPDATE t2 SET b=69166 WHERE a=10654;\nUPDATE t2 SET b=62455 WHERE a=10655;\nUPDATE t2 SET b=16522 WHERE a=10656;\nUPDATE t2 SET b=34325 WHERE a=10657;\nUPDATE t2 SET b=61572 WHERE a=10658;\nUPDATE t2 SET b=87842 WHERE a=10659;\nUPDATE t2 SET b=21471 WHERE a=10660;\nUPDATE t2 SET b=6451 WHERE a=10661;\nUPDATE t2 SET b=52265 WHERE a=10662;\nUPDATE t2 SET b=56032 WHERE a=10663;\nUPDATE t2 SET b=79238 WHERE a=10664;\nUPDATE t2 SET b=76542 WHERE a=10665;\nUPDATE t2 SET b=25053 WHERE a=10666;\nUPDATE t2 SET b=78116 WHERE a=10667;\nUPDATE t2 SET b=2014 WHERE a=10668;\nUPDATE t2 SET b=41488 WHERE a=10669;\nUPDATE t2 SET b=44200 WHERE a=10670;\nUPDATE t2 SET b=56891 WHERE a=10671;\nUPDATE t2 SET b=73780 WHERE a=10672;\nUPDATE t2 SET b=11588 WHERE a=10673;\nUPDATE t2 SET b=70299 WHERE a=10674;\nUPDATE t2 SET b=74309 WHERE a=10675;\nUPDATE t2 SET b=23446 WHERE a=10676;\nUPDATE t2 SET b=15769 WHERE a=10677;\nUPDATE t2 SET b=88200 WHERE a=10678;\nUPDATE t2 SET b=39045 WHERE a=10679;\nUPDATE t2 SET b=65446 WHERE a=10680;\nUPDATE t2 SET b=23488 WHERE a=10681;\nUPDATE t2 SET b=84653 WHERE a=10682;\nUPDATE t2 SET b=40456 WHERE a=10683;\nUPDATE t2 SET b=69025 WHERE a=10684;\nUPDATE t2 SET b=12171 WHERE a=10685;\nUPDATE t2 SET b=85653 WHERE a=10686;\nUPDATE t2 SET b=13193 WHERE a=10687;\nUPDATE t2 SET b=31793 WHERE a=10688;\nUPDATE t2 SET b=55272 WHERE a=10689;\nUPDATE t2 SET b=62570 WHERE a=10690;\nUPDATE t2 SET b=1194 WHERE a=10691;\nUPDATE t2 SET b=38530 WHERE a=10692;\nUPDATE t2 SET b=60858 WHERE a=10693;\nUPDATE t2 SET b=18284 WHERE a=10694;\nUPDATE t2 SET b=62597 WHERE a=10695;\nUPDATE t2 SET b=70290 WHERE a=10696;\nUPDATE t2 SET b=61559 WHERE a=10697;\nUPDATE t2 SET b=94825 WHERE a=10698;\nUPDATE t2 SET b=34798 WHERE a=10699;\nUPDATE t2 SET b=5883 WHERE a=10700;\nUPDATE t2 SET b=1810 WHERE a=10701;\nUPDATE t2 SET b=58687 WHERE a=10702;\nUPDATE t2 SET b=44024 WHERE a=10703;\nUPDATE t2 SET b=8247 WHERE a=10704;\nUPDATE t2 SET b=20288 WHERE a=10705;\nUPDATE t2 SET b=75846 WHERE a=10706;\nUPDATE t2 SET b=72649 WHERE a=10707;\nUPDATE t2 SET b=23182 WHERE a=10708;\nUPDATE t2 SET b=49459 WHERE a=10709;\nUPDATE t2 SET b=1989 WHERE a=10710;\nUPDATE t2 SET b=75852 WHERE a=10711;\nUPDATE t2 SET b=39665 WHERE a=10712;\nUPDATE t2 SET b=92972 WHERE a=10713;\nUPDATE t2 SET b=21644 WHERE a=10714;\nUPDATE t2 SET b=62062 WHERE a=10715;\nUPDATE t2 SET b=32304 WHERE a=10716;\nUPDATE t2 SET b=14559 WHERE a=10717;\nUPDATE t2 SET b=16286 WHERE a=10718;\nUPDATE t2 SET b=1737 WHERE a=10719;\nUPDATE t2 SET b=46110 WHERE a=10720;\nUPDATE t2 SET b=65149 WHERE a=10721;\nUPDATE t2 SET b=28912 WHERE a=10722;\nUPDATE t2 SET b=10475 WHERE a=10723;\nUPDATE t2 SET b=16141 WHERE a=10724;\nUPDATE t2 SET b=42358 WHERE a=10725;\nUPDATE t2 SET b=62704 WHERE a=10726;\nUPDATE t2 SET b=63144 WHERE a=10727;\nUPDATE t2 SET b=31366 WHERE a=10728;\nUPDATE t2 SET b=14741 WHERE a=10729;\nUPDATE t2 SET b=9864 WHERE a=10730;\nUPDATE t2 SET b=6803 WHERE a=10731;\nUPDATE t2 SET b=9928 WHERE a=10732;\nUPDATE t2 SET b=1561 WHERE a=10733;\nUPDATE t2 SET b=86931 WHERE a=10734;\nUPDATE t2 SET b=3927 WHERE a=10735;\nUPDATE t2 SET b=36395 WHERE a=10736;\nUPDATE t2 SET b=50256 WHERE a=10737;\nUPDATE t2 SET b=18796 WHERE a=10738;\nUPDATE t2 SET b=43564 WHERE a=10739;\nUPDATE t2 SET b=28568 WHERE a=10740;\nUPDATE t2 SET b=42138 WHERE a=10741;\nUPDATE t2 SET b=63946 WHERE a=10742;\nUPDATE t2 SET b=49595 WHERE a=10743;\nUPDATE t2 SET b=92891 WHERE a=10744;\nUPDATE t2 SET b=31564 WHERE a=10745;\nUPDATE t2 SET b=21499 WHERE a=10746;\nUPDATE t2 SET b=29635 WHERE a=10747;\nUPDATE t2 SET b=72108 WHERE a=10748;\nUPDATE t2 SET b=17618 WHERE a=10749;\nUPDATE t2 SET b=13098 WHERE a=10750;\nUPDATE t2 SET b=44529 WHERE a=10751;\nUPDATE t2 SET b=76155 WHERE a=10752;\nUPDATE t2 SET b=24805 WHERE a=10753;\nUPDATE t2 SET b=61105 WHERE a=10754;\nUPDATE t2 SET b=73995 WHERE a=10755;\nUPDATE t2 SET b=56080 WHERE a=10756;\nUPDATE t2 SET b=10342 WHERE a=10757;\nUPDATE t2 SET b=12943 WHERE a=10758;\nUPDATE t2 SET b=18810 WHERE a=10759;\nUPDATE t2 SET b=97797 WHERE a=10760;\nUPDATE t2 SET b=15095 WHERE a=10761;\nUPDATE t2 SET b=93490 WHERE a=10762;\nUPDATE t2 SET b=53193 WHERE a=10763;\nUPDATE t2 SET b=7129 WHERE a=10764;\nUPDATE t2 SET b=71196 WHERE a=10765;\nUPDATE t2 SET b=98345 WHERE a=10766;\nUPDATE t2 SET b=93854 WHERE a=10767;\nUPDATE t2 SET b=74409 WHERE a=10768;\nUPDATE t2 SET b=85256 WHERE a=10769;\nUPDATE t2 SET b=45558 WHERE a=10770;\nUPDATE t2 SET b=55624 WHERE a=10771;\nUPDATE t2 SET b=24071 WHERE a=10772;\nUPDATE t2 SET b=22380 WHERE a=10773;\nUPDATE t2 SET b=48446 WHERE a=10774;\nUPDATE t2 SET b=25748 WHERE a=10775;\nUPDATE t2 SET b=58425 WHERE a=10776;\nUPDATE t2 SET b=30341 WHERE a=10777;\nUPDATE t2 SET b=84097 WHERE a=10778;\nUPDATE t2 SET b=8865 WHERE a=10779;\nUPDATE t2 SET b=45514 WHERE a=10780;\nUPDATE t2 SET b=10953 WHERE a=10781;\nUPDATE t2 SET b=61875 WHERE a=10782;\nUPDATE t2 SET b=78468 WHERE a=10783;\nUPDATE t2 SET b=8641 WHERE a=10784;\nUPDATE t2 SET b=54051 WHERE a=10785;\nUPDATE t2 SET b=92026 WHERE a=10786;\nUPDATE t2 SET b=91629 WHERE a=10787;\nUPDATE t2 SET b=27319 WHERE a=10788;\nUPDATE t2 SET b=27807 WHERE a=10789;\nUPDATE t2 SET b=67139 WHERE a=10790;\nUPDATE t2 SET b=93683 WHERE a=10791;\nUPDATE t2 SET b=94827 WHERE a=10792;\nUPDATE t2 SET b=86007 WHERE a=10793;\nUPDATE t2 SET b=93813 WHERE a=10794;\nUPDATE t2 SET b=78538 WHERE a=10795;\nUPDATE t2 SET b=18374 WHERE a=10796;\nUPDATE t2 SET b=69660 WHERE a=10797;\nUPDATE t2 SET b=53908 WHERE a=10798;\nUPDATE t2 SET b=17110 WHERE a=10799;\nUPDATE t2 SET b=60072 WHERE a=10800;\nUPDATE t2 SET b=3826 WHERE a=10801;\nUPDATE t2 SET b=52985 WHERE a=10802;\nUPDATE t2 SET b=67741 WHERE a=10803;\nUPDATE t2 SET b=94244 WHERE a=10804;\nUPDATE t2 SET b=76336 WHERE a=10805;\nUPDATE t2 SET b=1807 WHERE a=10806;\nUPDATE t2 SET b=80460 WHERE a=10807;\nUPDATE t2 SET b=16502 WHERE a=10808;\nUPDATE t2 SET b=60671 WHERE a=10809;\nUPDATE t2 SET b=11774 WHERE a=10810;\nUPDATE t2 SET b=24206 WHERE a=10811;\nUPDATE t2 SET b=31584 WHERE a=10812;\nUPDATE t2 SET b=37427 WHERE a=10813;\nUPDATE t2 SET b=90032 WHERE a=10814;\nUPDATE t2 SET b=61145 WHERE a=10815;\nUPDATE t2 SET b=60754 WHERE a=10816;\nUPDATE t2 SET b=18746 WHERE a=10817;\nUPDATE t2 SET b=69910 WHERE a=10818;\nUPDATE t2 SET b=73881 WHERE a=10819;\nUPDATE t2 SET b=73704 WHERE a=10820;\nUPDATE t2 SET b=70213 WHERE a=10821;\nUPDATE t2 SET b=84778 WHERE a=10822;\nUPDATE t2 SET b=35 WHERE a=10823;\nUPDATE t2 SET b=78438 WHERE a=10824;\nUPDATE t2 SET b=91405 WHERE a=10825;\nUPDATE t2 SET b=24097 WHERE a=10826;\nUPDATE t2 SET b=31815 WHERE a=10827;\nUPDATE t2 SET b=20433 WHERE a=10828;\nUPDATE t2 SET b=27745 WHERE a=10829;\nUPDATE t2 SET b=76802 WHERE a=10830;\nUPDATE t2 SET b=12 WHERE a=10831;\nUPDATE t2 SET b=74156 WHERE a=10832;\nUPDATE t2 SET b=1527 WHERE a=10833;\nUPDATE t2 SET b=18260 WHERE a=10834;\nUPDATE t2 SET b=90284 WHERE a=10835;\nUPDATE t2 SET b=36438 WHERE a=10836;\nUPDATE t2 SET b=57482 WHERE a=10837;\nUPDATE t2 SET b=41640 WHERE a=10838;\nUPDATE t2 SET b=51339 WHERE a=10839;\nUPDATE t2 SET b=19648 WHERE a=10840;\nUPDATE t2 SET b=24881 WHERE a=10841;\nUPDATE t2 SET b=1276 WHERE a=10842;\nUPDATE t2 SET b=99712 WHERE a=10843;\nUPDATE t2 SET b=89450 WHERE a=10844;\nUPDATE t2 SET b=17354 WHERE a=10845;\nUPDATE t2 SET b=77791 WHERE a=10846;\nUPDATE t2 SET b=640 WHERE a=10847;\nUPDATE t2 SET b=59919 WHERE a=10848;\nUPDATE t2 SET b=75032 WHERE a=10849;\nUPDATE t2 SET b=13004 WHERE a=10850;\nUPDATE t2 SET b=5715 WHERE a=10851;\nUPDATE t2 SET b=29476 WHERE a=10852;\nUPDATE t2 SET b=30570 WHERE a=10853;\nUPDATE t2 SET b=10161 WHERE a=10854;\nUPDATE t2 SET b=19091 WHERE a=10855;\nUPDATE t2 SET b=20592 WHERE a=10856;\nUPDATE t2 SET b=28446 WHERE a=10857;\nUPDATE t2 SET b=3970 WHERE a=10858;\nUPDATE t2 SET b=59308 WHERE a=10859;\nUPDATE t2 SET b=15314 WHERE a=10860;\nUPDATE t2 SET b=46362 WHERE a=10861;\nUPDATE t2 SET b=87026 WHERE a=10862;\nUPDATE t2 SET b=92804 WHERE a=10863;\nUPDATE t2 SET b=8010 WHERE a=10864;\nUPDATE t2 SET b=91687 WHERE a=10865;\nUPDATE t2 SET b=72598 WHERE a=10866;\nUPDATE t2 SET b=74282 WHERE a=10867;\nUPDATE t2 SET b=86156 WHERE a=10868;\nUPDATE t2 SET b=74912 WHERE a=10869;\nUPDATE t2 SET b=10875 WHERE a=10870;\nUPDATE t2 SET b=95509 WHERE a=10871;\nUPDATE t2 SET b=30369 WHERE a=10872;\nUPDATE t2 SET b=61362 WHERE a=10873;\nUPDATE t2 SET b=35896 WHERE a=10874;\nUPDATE t2 SET b=70937 WHERE a=10875;\nUPDATE t2 SET b=51031 WHERE a=10876;\nUPDATE t2 SET b=54640 WHERE a=10877;\nUPDATE t2 SET b=36335 WHERE a=10878;\nUPDATE t2 SET b=70080 WHERE a=10879;\nUPDATE t2 SET b=24973 WHERE a=10880;\nUPDATE t2 SET b=58653 WHERE a=10881;\nUPDATE t2 SET b=17184 WHERE a=10882;\nUPDATE t2 SET b=17551 WHERE a=10883;\nUPDATE t2 SET b=85602 WHERE a=10884;\nUPDATE t2 SET b=55755 WHERE a=10885;\nUPDATE t2 SET b=51344 WHERE a=10886;\nUPDATE t2 SET b=20746 WHERE a=10887;\nUPDATE t2 SET b=13840 WHERE a=10888;\nUPDATE t2 SET b=32610 WHERE a=10889;\nUPDATE t2 SET b=78372 WHERE a=10890;\nUPDATE t2 SET b=29874 WHERE a=10891;\nUPDATE t2 SET b=82183 WHERE a=10892;\nUPDATE t2 SET b=87832 WHERE a=10893;\nUPDATE t2 SET b=51822 WHERE a=10894;\nUPDATE t2 SET b=74540 WHERE a=10895;\nUPDATE t2 SET b=33231 WHERE a=10896;\nUPDATE t2 SET b=33651 WHERE a=10897;\nUPDATE t2 SET b=6244 WHERE a=10898;\nUPDATE t2 SET b=28580 WHERE a=10899;\nUPDATE t2 SET b=38615 WHERE a=10900;\nUPDATE t2 SET b=89994 WHERE a=10901;\nUPDATE t2 SET b=65430 WHERE a=10902;\nUPDATE t2 SET b=15082 WHERE a=10903;\nUPDATE t2 SET b=70600 WHERE a=10904;\nUPDATE t2 SET b=48247 WHERE a=10905;\nUPDATE t2 SET b=10848 WHERE a=10906;\nUPDATE t2 SET b=47068 WHERE a=10907;\nUPDATE t2 SET b=34226 WHERE a=10908;\nUPDATE t2 SET b=1250 WHERE a=10909;\nUPDATE t2 SET b=10257 WHERE a=10910;\nUPDATE t2 SET b=87569 WHERE a=10911;\nUPDATE t2 SET b=69856 WHERE a=10912;\nUPDATE t2 SET b=69027 WHERE a=10913;\nUPDATE t2 SET b=31742 WHERE a=10914;\nUPDATE t2 SET b=48570 WHERE a=10915;\nUPDATE t2 SET b=42141 WHERE a=10916;\nUPDATE t2 SET b=84990 WHERE a=10917;\nUPDATE t2 SET b=14172 WHERE a=10918;\nUPDATE t2 SET b=96982 WHERE a=10919;\nUPDATE t2 SET b=38134 WHERE a=10920;\nUPDATE t2 SET b=3842 WHERE a=10921;\nUPDATE t2 SET b=43841 WHERE a=10922;\nUPDATE t2 SET b=96412 WHERE a=10923;\nUPDATE t2 SET b=88367 WHERE a=10924;\nUPDATE t2 SET b=56791 WHERE a=10925;\nUPDATE t2 SET b=93613 WHERE a=10926;\nUPDATE t2 SET b=90569 WHERE a=10927;\nUPDATE t2 SET b=10705 WHERE a=10928;\nUPDATE t2 SET b=41376 WHERE a=10929;\nUPDATE t2 SET b=21539 WHERE a=10930;\nUPDATE t2 SET b=41231 WHERE a=10931;\nUPDATE t2 SET b=6744 WHERE a=10932;\nUPDATE t2 SET b=75375 WHERE a=10933;\nUPDATE t2 SET b=39638 WHERE a=10934;\nUPDATE t2 SET b=65141 WHERE a=10935;\nUPDATE t2 SET b=12677 WHERE a=10936;\nUPDATE t2 SET b=41796 WHERE a=10937;\nUPDATE t2 SET b=10906 WHERE a=10938;\nUPDATE t2 SET b=76162 WHERE a=10939;\nUPDATE t2 SET b=96431 WHERE a=10940;\nUPDATE t2 SET b=94185 WHERE a=10941;\nUPDATE t2 SET b=86673 WHERE a=10942;\nUPDATE t2 SET b=81239 WHERE a=10943;\nUPDATE t2 SET b=67838 WHERE a=10944;\nUPDATE t2 SET b=59056 WHERE a=10945;\nUPDATE t2 SET b=22542 WHERE a=10946;\nUPDATE t2 SET b=69074 WHERE a=10947;\nUPDATE t2 SET b=28368 WHERE a=10948;\nUPDATE t2 SET b=39501 WHERE a=10949;\nUPDATE t2 SET b=22881 WHERE a=10950;\nUPDATE t2 SET b=87127 WHERE a=10951;\nUPDATE t2 SET b=25328 WHERE a=10952;\nUPDATE t2 SET b=96662 WHERE a=10953;\nUPDATE t2 SET b=41582 WHERE a=10954;\nUPDATE t2 SET b=29722 WHERE a=10955;\nUPDATE t2 SET b=98186 WHERE a=10956;\nUPDATE t2 SET b=32204 WHERE a=10957;\nUPDATE t2 SET b=92640 WHERE a=10958;\nUPDATE t2 SET b=42490 WHERE a=10959;\nUPDATE t2 SET b=5634 WHERE a=10960;\nUPDATE t2 SET b=93209 WHERE a=10961;\nUPDATE t2 SET b=4550 WHERE a=10962;\nUPDATE t2 SET b=87249 WHERE a=10963;\nUPDATE t2 SET b=21656 WHERE a=10964;\nUPDATE t2 SET b=95213 WHERE a=10965;\nUPDATE t2 SET b=43995 WHERE a=10966;\nUPDATE t2 SET b=12817 WHERE a=10967;\nUPDATE t2 SET b=92419 WHERE a=10968;\nUPDATE t2 SET b=20279 WHERE a=10969;\nUPDATE t2 SET b=66474 WHERE a=10970;\nUPDATE t2 SET b=48538 WHERE a=10971;\nUPDATE t2 SET b=56422 WHERE a=10972;\nUPDATE t2 SET b=14489 WHERE a=10973;\nUPDATE t2 SET b=40218 WHERE a=10974;\nUPDATE t2 SET b=87102 WHERE a=10975;\nUPDATE t2 SET b=58018 WHERE a=10976;\nUPDATE t2 SET b=13225 WHERE a=10977;\nUPDATE t2 SET b=61099 WHERE a=10978;\nUPDATE t2 SET b=14480 WHERE a=10979;\nUPDATE t2 SET b=68648 WHERE a=10980;\nUPDATE t2 SET b=85820 WHERE a=10981;\nUPDATE t2 SET b=49563 WHERE a=10982;\nUPDATE t2 SET b=95934 WHERE a=10983;\nUPDATE t2 SET b=47564 WHERE a=10984;\nUPDATE t2 SET b=77767 WHERE a=10985;\nUPDATE t2 SET b=34507 WHERE a=10986;\nUPDATE t2 SET b=31611 WHERE a=10987;\nUPDATE t2 SET b=10806 WHERE a=10988;\nUPDATE t2 SET b=703 WHERE a=10989;\nUPDATE t2 SET b=93465 WHERE a=10990;\nUPDATE t2 SET b=32216 WHERE a=10991;\nUPDATE t2 SET b=38508 WHERE a=10992;\nUPDATE t2 SET b=64257 WHERE a=10993;\nUPDATE t2 SET b=11516 WHERE a=10994;\nUPDATE t2 SET b=33752 WHERE a=10995;\nUPDATE t2 SET b=55903 WHERE a=10996;\nUPDATE t2 SET b=31339 WHERE a=10997;\nUPDATE t2 SET b=51523 WHERE a=10998;\nUPDATE t2 SET b=64531 WHERE a=10999;\nUPDATE t2 SET b=26545 WHERE a=11000;\nUPDATE t2 SET b=59583 WHERE a=11001;\nUPDATE t2 SET b=77673 WHERE a=11002;\nUPDATE t2 SET b=16271 WHERE a=11003;\nUPDATE t2 SET b=50509 WHERE a=11004;\nUPDATE t2 SET b=69266 WHERE a=11005;\nUPDATE t2 SET b=76108 WHERE a=11006;\nUPDATE t2 SET b=28200 WHERE a=11007;\nUPDATE t2 SET b=80532 WHERE a=11008;\nUPDATE t2 SET b=74790 WHERE a=11009;\nUPDATE t2 SET b=15779 WHERE a=11010;\nUPDATE t2 SET b=76762 WHERE a=11011;\nUPDATE t2 SET b=64985 WHERE a=11012;\nUPDATE t2 SET b=51788 WHERE a=11013;\nUPDATE t2 SET b=22005 WHERE a=11014;\nUPDATE t2 SET b=39206 WHERE a=11015;\nUPDATE t2 SET b=9926 WHERE a=11016;\nUPDATE t2 SET b=82223 WHERE a=11017;\nUPDATE t2 SET b=70970 WHERE a=11018;\nUPDATE t2 SET b=84717 WHERE a=11019;\nUPDATE t2 SET b=99619 WHERE a=11020;\nUPDATE t2 SET b=76711 WHERE a=11021;\nUPDATE t2 SET b=86396 WHERE a=11022;\nUPDATE t2 SET b=37237 WHERE a=11023;\nUPDATE t2 SET b=14961 WHERE a=11024;\nUPDATE t2 SET b=60727 WHERE a=11025;\nUPDATE t2 SET b=56596 WHERE a=11026;\nUPDATE t2 SET b=99701 WHERE a=11027;\nUPDATE t2 SET b=65811 WHERE a=11028;\nUPDATE t2 SET b=52839 WHERE a=11029;\nUPDATE t2 SET b=33880 WHERE a=11030;\nUPDATE t2 SET b=7780 WHERE a=11031;\nUPDATE t2 SET b=28754 WHERE a=11032;\nUPDATE t2 SET b=94096 WHERE a=11033;\nUPDATE t2 SET b=86337 WHERE a=11034;\nUPDATE t2 SET b=12365 WHERE a=11035;\nUPDATE t2 SET b=66474 WHERE a=11036;\nUPDATE t2 SET b=16226 WHERE a=11037;\nUPDATE t2 SET b=46504 WHERE a=11038;\nUPDATE t2 SET b=63714 WHERE a=11039;\nUPDATE t2 SET b=75897 WHERE a=11040;\nUPDATE t2 SET b=71704 WHERE a=11041;\nUPDATE t2 SET b=28930 WHERE a=11042;\nUPDATE t2 SET b=40612 WHERE a=11043;\nUPDATE t2 SET b=1596 WHERE a=11044;\nUPDATE t2 SET b=10802 WHERE a=11045;\nUPDATE t2 SET b=89998 WHERE a=11046;\nUPDATE t2 SET b=76897 WHERE a=11047;\nUPDATE t2 SET b=57879 WHERE a=11048;\nUPDATE t2 SET b=34446 WHERE a=11049;\nUPDATE t2 SET b=21334 WHERE a=11050;\nUPDATE t2 SET b=22749 WHERE a=11051;\nUPDATE t2 SET b=61653 WHERE a=11052;\nUPDATE t2 SET b=69142 WHERE a=11053;\nUPDATE t2 SET b=57199 WHERE a=11054;\nUPDATE t2 SET b=23951 WHERE a=11055;\nUPDATE t2 SET b=89571 WHERE a=11056;\nUPDATE t2 SET b=5551 WHERE a=11057;\nUPDATE t2 SET b=43716 WHERE a=11058;\nUPDATE t2 SET b=18388 WHERE a=11059;\nUPDATE t2 SET b=99255 WHERE a=11060;\nUPDATE t2 SET b=7865 WHERE a=11061;\nUPDATE t2 SET b=72068 WHERE a=11062;\nUPDATE t2 SET b=1333 WHERE a=11063;\nUPDATE t2 SET b=88257 WHERE a=11064;\nUPDATE t2 SET b=13648 WHERE a=11065;\nUPDATE t2 SET b=84064 WHERE a=11066;\nUPDATE t2 SET b=55644 WHERE a=11067;\nUPDATE t2 SET b=10603 WHERE a=11068;\nUPDATE t2 SET b=47652 WHERE a=11069;\nUPDATE t2 SET b=59926 WHERE a=11070;\nUPDATE t2 SET b=36173 WHERE a=11071;\nUPDATE t2 SET b=40100 WHERE a=11072;\nUPDATE t2 SET b=10412 WHERE a=11073;\nUPDATE t2 SET b=14217 WHERE a=11074;\nUPDATE t2 SET b=64713 WHERE a=11075;\nUPDATE t2 SET b=51776 WHERE a=11076;\nUPDATE t2 SET b=7140 WHERE a=11077;\nUPDATE t2 SET b=143 WHERE a=11078;\nUPDATE t2 SET b=89169 WHERE a=11079;\nUPDATE t2 SET b=19893 WHERE a=11080;\nUPDATE t2 SET b=37409 WHERE a=11081;\nUPDATE t2 SET b=89582 WHERE a=11082;\nUPDATE t2 SET b=59274 WHERE a=11083;\nUPDATE t2 SET b=92722 WHERE a=11084;\nUPDATE t2 SET b=56380 WHERE a=11085;\nUPDATE t2 SET b=24232 WHERE a=11086;\nUPDATE t2 SET b=37579 WHERE a=11087;\nUPDATE t2 SET b=44375 WHERE a=11088;\nUPDATE t2 SET b=23557 WHERE a=11089;\nUPDATE t2 SET b=46691 WHERE a=11090;\nUPDATE t2 SET b=50747 WHERE a=11091;\nUPDATE t2 SET b=20116 WHERE a=11092;\nUPDATE t2 SET b=56709 WHERE a=11093;\nUPDATE t2 SET b=11527 WHERE a=11094;\nUPDATE t2 SET b=93809 WHERE a=11095;\nUPDATE t2 SET b=91830 WHERE a=11096;\nUPDATE t2 SET b=32316 WHERE a=11097;\nUPDATE t2 SET b=13639 WHERE a=11098;\nUPDATE t2 SET b=46074 WHERE a=11099;\nUPDATE t2 SET b=83130 WHERE a=11100;\nUPDATE t2 SET b=31453 WHERE a=11101;\nUPDATE t2 SET b=30832 WHERE a=11102;\nUPDATE t2 SET b=43620 WHERE a=11103;\nUPDATE t2 SET b=2913 WHERE a=11104;\nUPDATE t2 SET b=23470 WHERE a=11105;\nUPDATE t2 SET b=84940 WHERE a=11106;\nUPDATE t2 SET b=23628 WHERE a=11107;\nUPDATE t2 SET b=45298 WHERE a=11108;\nUPDATE t2 SET b=63110 WHERE a=11109;\nUPDATE t2 SET b=89027 WHERE a=11110;\nUPDATE t2 SET b=59551 WHERE a=11111;\nUPDATE t2 SET b=85832 WHERE a=11112;\nUPDATE t2 SET b=30119 WHERE a=11113;\nUPDATE t2 SET b=21599 WHERE a=11114;\nUPDATE t2 SET b=81095 WHERE a=11115;\nUPDATE t2 SET b=98324 WHERE a=11116;\nUPDATE t2 SET b=50161 WHERE a=11117;\nUPDATE t2 SET b=15584 WHERE a=11118;\nUPDATE t2 SET b=92038 WHERE a=11119;\nUPDATE t2 SET b=58121 WHERE a=11120;\nUPDATE t2 SET b=76125 WHERE a=11121;\nUPDATE t2 SET b=22825 WHERE a=11122;\nUPDATE t2 SET b=13817 WHERE a=11123;\nUPDATE t2 SET b=28716 WHERE a=11124;\nUPDATE t2 SET b=78829 WHERE a=11125;\nUPDATE t2 SET b=74703 WHERE a=11126;\nUPDATE t2 SET b=23472 WHERE a=11127;\nUPDATE t2 SET b=98382 WHERE a=11128;\nUPDATE t2 SET b=38190 WHERE a=11129;\nUPDATE t2 SET b=90186 WHERE a=11130;\nUPDATE t2 SET b=72897 WHERE a=11131;\nUPDATE t2 SET b=38577 WHERE a=11132;\nUPDATE t2 SET b=66106 WHERE a=11133;\nUPDATE t2 SET b=51870 WHERE a=11134;\nUPDATE t2 SET b=13156 WHERE a=11135;\nUPDATE t2 SET b=43030 WHERE a=11136;\nUPDATE t2 SET b=51549 WHERE a=11137;\nUPDATE t2 SET b=53436 WHERE a=11138;\nUPDATE t2 SET b=88916 WHERE a=11139;\nUPDATE t2 SET b=87632 WHERE a=11140;\nUPDATE t2 SET b=69851 WHERE a=11141;\nUPDATE t2 SET b=85116 WHERE a=11142;\nUPDATE t2 SET b=37374 WHERE a=11143;\nUPDATE t2 SET b=38303 WHERE a=11144;\nUPDATE t2 SET b=43936 WHERE a=11145;\nUPDATE t2 SET b=72837 WHERE a=11146;\nUPDATE t2 SET b=3496 WHERE a=11147;\nUPDATE t2 SET b=14253 WHERE a=11148;\nUPDATE t2 SET b=7547 WHERE a=11149;\nUPDATE t2 SET b=90296 WHERE a=11150;\nUPDATE t2 SET b=98922 WHERE a=11151;\nUPDATE t2 SET b=50314 WHERE a=11152;\nUPDATE t2 SET b=57190 WHERE a=11153;\nUPDATE t2 SET b=5423 WHERE a=11154;\nUPDATE t2 SET b=49541 WHERE a=11155;\nUPDATE t2 SET b=84267 WHERE a=11156;\nUPDATE t2 SET b=7944 WHERE a=11157;\nUPDATE t2 SET b=68636 WHERE a=11158;\nUPDATE t2 SET b=51309 WHERE a=11159;\nUPDATE t2 SET b=18560 WHERE a=11160;\nUPDATE t2 SET b=1497 WHERE a=11161;\nUPDATE t2 SET b=48925 WHERE a=11162;\nUPDATE t2 SET b=64463 WHERE a=11163;\nUPDATE t2 SET b=40839 WHERE a=11164;\nUPDATE t2 SET b=27425 WHERE a=11165;\nUPDATE t2 SET b=66599 WHERE a=11166;\nUPDATE t2 SET b=49785 WHERE a=11167;\nUPDATE t2 SET b=52425 WHERE a=11168;\nUPDATE t2 SET b=32819 WHERE a=11169;\nUPDATE t2 SET b=94081 WHERE a=11170;\nUPDATE t2 SET b=52067 WHERE a=11171;\nUPDATE t2 SET b=40081 WHERE a=11172;\nUPDATE t2 SET b=8197 WHERE a=11173;\nUPDATE t2 SET b=22663 WHERE a=11174;\nUPDATE t2 SET b=53717 WHERE a=11175;\nUPDATE t2 SET b=30706 WHERE a=11176;\nUPDATE t2 SET b=94816 WHERE a=11177;\nUPDATE t2 SET b=29786 WHERE a=11178;\nUPDATE t2 SET b=79779 WHERE a=11179;\nUPDATE t2 SET b=3087 WHERE a=11180;\nUPDATE t2 SET b=67718 WHERE a=11181;\nUPDATE t2 SET b=3270 WHERE a=11182;\nUPDATE t2 SET b=51903 WHERE a=11183;\nUPDATE t2 SET b=88778 WHERE a=11184;\nUPDATE t2 SET b=74054 WHERE a=11185;\nUPDATE t2 SET b=769 WHERE a=11186;\nUPDATE t2 SET b=68301 WHERE a=11187;\nUPDATE t2 SET b=17860 WHERE a=11188;\nUPDATE t2 SET b=94937 WHERE a=11189;\nUPDATE t2 SET b=91408 WHERE a=11190;\nUPDATE t2 SET b=9715 WHERE a=11191;\nUPDATE t2 SET b=62084 WHERE a=11192;\nUPDATE t2 SET b=8687 WHERE a=11193;\nUPDATE t2 SET b=53981 WHERE a=11194;\nUPDATE t2 SET b=86421 WHERE a=11195;\nUPDATE t2 SET b=46752 WHERE a=11196;\nUPDATE t2 SET b=3953 WHERE a=11197;\nUPDATE t2 SET b=72149 WHERE a=11198;\nUPDATE t2 SET b=24847 WHERE a=11199;\nUPDATE t2 SET b=1598 WHERE a=11200;\nUPDATE t2 SET b=99294 WHERE a=11201;\nUPDATE t2 SET b=26641 WHERE a=11202;\nUPDATE t2 SET b=19325 WHERE a=11203;\nUPDATE t2 SET b=67208 WHERE a=11204;\nUPDATE t2 SET b=61936 WHERE a=11205;\nUPDATE t2 SET b=32640 WHERE a=11206;\nUPDATE t2 SET b=64118 WHERE a=11207;\nUPDATE t2 SET b=69686 WHERE a=11208;\nUPDATE t2 SET b=1742 WHERE a=11209;\nUPDATE t2 SET b=8398 WHERE a=11210;\nUPDATE t2 SET b=34984 WHERE a=11211;\nUPDATE t2 SET b=39910 WHERE a=11212;\nUPDATE t2 SET b=62229 WHERE a=11213;\nUPDATE t2 SET b=37647 WHERE a=11214;\nUPDATE t2 SET b=48966 WHERE a=11215;\nUPDATE t2 SET b=40683 WHERE a=11216;\nUPDATE t2 SET b=95958 WHERE a=11217;\nUPDATE t2 SET b=39324 WHERE a=11218;\nUPDATE t2 SET b=56739 WHERE a=11219;\nUPDATE t2 SET b=78693 WHERE a=11220;\nUPDATE t2 SET b=37377 WHERE a=11221;\nUPDATE t2 SET b=20876 WHERE a=11222;\nUPDATE t2 SET b=89908 WHERE a=11223;\nUPDATE t2 SET b=78707 WHERE a=11224;\nUPDATE t2 SET b=60439 WHERE a=11225;\nUPDATE t2 SET b=85411 WHERE a=11226;\nUPDATE t2 SET b=50127 WHERE a=11227;\nUPDATE t2 SET b=1062 WHERE a=11228;\nUPDATE t2 SET b=34420 WHERE a=11229;\nUPDATE t2 SET b=58660 WHERE a=11230;\nUPDATE t2 SET b=28318 WHERE a=11231;\nUPDATE t2 SET b=34279 WHERE a=11232;\nUPDATE t2 SET b=28011 WHERE a=11233;\nUPDATE t2 SET b=13713 WHERE a=11234;\nUPDATE t2 SET b=18139 WHERE a=11235;\nUPDATE t2 SET b=21613 WHERE a=11236;\nUPDATE t2 SET b=45836 WHERE a=11237;\nUPDATE t2 SET b=20159 WHERE a=11238;\nUPDATE t2 SET b=45755 WHERE a=11239;\nUPDATE t2 SET b=60100 WHERE a=11240;\nUPDATE t2 SET b=38666 WHERE a=11241;\nUPDATE t2 SET b=33235 WHERE a=11242;\nUPDATE t2 SET b=10093 WHERE a=11243;\nUPDATE t2 SET b=54972 WHERE a=11244;\nUPDATE t2 SET b=57576 WHERE a=11245;\nUPDATE t2 SET b=18938 WHERE a=11246;\nUPDATE t2 SET b=43103 WHERE a=11247;\nUPDATE t2 SET b=98189 WHERE a=11248;\nUPDATE t2 SET b=33424 WHERE a=11249;\nUPDATE t2 SET b=11425 WHERE a=11250;\nUPDATE t2 SET b=11624 WHERE a=11251;\nUPDATE t2 SET b=97177 WHERE a=11252;\nUPDATE t2 SET b=4609 WHERE a=11253;\nUPDATE t2 SET b=66018 WHERE a=11254;\nUPDATE t2 SET b=59640 WHERE a=11255;\nUPDATE t2 SET b=66146 WHERE a=11256;\nUPDATE t2 SET b=92824 WHERE a=11257;\nUPDATE t2 SET b=53044 WHERE a=11258;\nUPDATE t2 SET b=69468 WHERE a=11259;\nUPDATE t2 SET b=12244 WHERE a=11260;\nUPDATE t2 SET b=74595 WHERE a=11261;\nUPDATE t2 SET b=68190 WHERE a=11262;\nUPDATE t2 SET b=52758 WHERE a=11263;\nUPDATE t2 SET b=44586 WHERE a=11264;\nUPDATE t2 SET b=27851 WHERE a=11265;\nUPDATE t2 SET b=15959 WHERE a=11266;\nUPDATE t2 SET b=44778 WHERE a=11267;\nUPDATE t2 SET b=23281 WHERE a=11268;\nUPDATE t2 SET b=40305 WHERE a=11269;\nUPDATE t2 SET b=40850 WHERE a=11270;\nUPDATE t2 SET b=80906 WHERE a=11271;\nUPDATE t2 SET b=9635 WHERE a=11272;\nUPDATE t2 SET b=81648 WHERE a=11273;\nUPDATE t2 SET b=58470 WHERE a=11274;\nUPDATE t2 SET b=96820 WHERE a=11275;\nUPDATE t2 SET b=93231 WHERE a=11276;\nUPDATE t2 SET b=35440 WHERE a=11277;\nUPDATE t2 SET b=52897 WHERE a=11278;\nUPDATE t2 SET b=72416 WHERE a=11279;\nUPDATE t2 SET b=9053 WHERE a=11280;\nUPDATE t2 SET b=6718 WHERE a=11281;\nUPDATE t2 SET b=57759 WHERE a=11282;\nUPDATE t2 SET b=795 WHERE a=11283;\nUPDATE t2 SET b=32375 WHERE a=11284;\nUPDATE t2 SET b=9660 WHERE a=11285;\nUPDATE t2 SET b=31442 WHERE a=11286;\nUPDATE t2 SET b=69537 WHERE a=11287;\nUPDATE t2 SET b=68399 WHERE a=11288;\nUPDATE t2 SET b=99914 WHERE a=11289;\nUPDATE t2 SET b=17572 WHERE a=11290;\nUPDATE t2 SET b=56569 WHERE a=11291;\nUPDATE t2 SET b=57354 WHERE a=11292;\nUPDATE t2 SET b=71221 WHERE a=11293;\nUPDATE t2 SET b=26099 WHERE a=11294;\nUPDATE t2 SET b=2633 WHERE a=11295;\nUPDATE t2 SET b=30695 WHERE a=11296;\nUPDATE t2 SET b=17511 WHERE a=11297;\nUPDATE t2 SET b=28016 WHERE a=11298;\nUPDATE t2 SET b=79233 WHERE a=11299;\nUPDATE t2 SET b=71416 WHERE a=11300;\nUPDATE t2 SET b=19494 WHERE a=11301;\nUPDATE t2 SET b=72619 WHERE a=11302;\nUPDATE t2 SET b=6609 WHERE a=11303;\nUPDATE t2 SET b=72876 WHERE a=11304;\nUPDATE t2 SET b=98796 WHERE a=11305;\nUPDATE t2 SET b=64530 WHERE a=11306;\nUPDATE t2 SET b=46938 WHERE a=11307;\nUPDATE t2 SET b=8742 WHERE a=11308;\nUPDATE t2 SET b=14464 WHERE a=11309;\nUPDATE t2 SET b=49515 WHERE a=11310;\nUPDATE t2 SET b=85490 WHERE a=11311;\nUPDATE t2 SET b=92163 WHERE a=11312;\nUPDATE t2 SET b=94552 WHERE a=11313;\nUPDATE t2 SET b=94239 WHERE a=11314;\nUPDATE t2 SET b=27149 WHERE a=11315;\nUPDATE t2 SET b=25811 WHERE a=11316;\nUPDATE t2 SET b=60872 WHERE a=11317;\nUPDATE t2 SET b=68058 WHERE a=11318;\nUPDATE t2 SET b=25979 WHERE a=11319;\nUPDATE t2 SET b=81638 WHERE a=11320;\nUPDATE t2 SET b=19164 WHERE a=11321;\nUPDATE t2 SET b=71363 WHERE a=11322;\nUPDATE t2 SET b=66103 WHERE a=11323;\nUPDATE t2 SET b=94265 WHERE a=11324;\nUPDATE t2 SET b=25092 WHERE a=11325;\nUPDATE t2 SET b=4623 WHERE a=11326;\nUPDATE t2 SET b=84895 WHERE a=11327;\nUPDATE t2 SET b=85618 WHERE a=11328;\nUPDATE t2 SET b=17449 WHERE a=11329;\nUPDATE t2 SET b=25995 WHERE a=11330;\nUPDATE t2 SET b=85546 WHERE a=11331;\nUPDATE t2 SET b=68784 WHERE a=11332;\nUPDATE t2 SET b=46470 WHERE a=11333;\nUPDATE t2 SET b=49614 WHERE a=11334;\nUPDATE t2 SET b=62284 WHERE a=11335;\nUPDATE t2 SET b=96641 WHERE a=11336;\nUPDATE t2 SET b=80253 WHERE a=11337;\nUPDATE t2 SET b=81421 WHERE a=11338;\nUPDATE t2 SET b=20635 WHERE a=11339;\nUPDATE t2 SET b=78165 WHERE a=11340;\nUPDATE t2 SET b=10653 WHERE a=11341;\nUPDATE t2 SET b=90613 WHERE a=11342;\nUPDATE t2 SET b=47957 WHERE a=11343;\nUPDATE t2 SET b=42830 WHERE a=11344;\nUPDATE t2 SET b=96887 WHERE a=11345;\nUPDATE t2 SET b=1093 WHERE a=11346;\nUPDATE t2 SET b=40065 WHERE a=11347;\nUPDATE t2 SET b=1273 WHERE a=11348;\nUPDATE t2 SET b=57625 WHERE a=11349;\nUPDATE t2 SET b=12535 WHERE a=11350;\nUPDATE t2 SET b=31908 WHERE a=11351;\nUPDATE t2 SET b=92336 WHERE a=11352;\nUPDATE t2 SET b=52627 WHERE a=11353;\nUPDATE t2 SET b=87812 WHERE a=11354;\nUPDATE t2 SET b=43353 WHERE a=11355;\nUPDATE t2 SET b=59641 WHERE a=11356;\nUPDATE t2 SET b=40756 WHERE a=11357;\nUPDATE t2 SET b=40541 WHERE a=11358;\nUPDATE t2 SET b=36282 WHERE a=11359;\nUPDATE t2 SET b=22533 WHERE a=11360;\nUPDATE t2 SET b=40391 WHERE a=11361;\nUPDATE t2 SET b=39584 WHERE a=11362;\nUPDATE t2 SET b=8843 WHERE a=11363;\nUPDATE t2 SET b=80619 WHERE a=11364;\nUPDATE t2 SET b=157 WHERE a=11365;\nUPDATE t2 SET b=56813 WHERE a=11366;\nUPDATE t2 SET b=29805 WHERE a=11367;\nUPDATE t2 SET b=14093 WHERE a=11368;\nUPDATE t2 SET b=72091 WHERE a=11369;\nUPDATE t2 SET b=530 WHERE a=11370;\nUPDATE t2 SET b=44364 WHERE a=11371;\nUPDATE t2 SET b=60974 WHERE a=11372;\nUPDATE t2 SET b=51584 WHERE a=11373;\nUPDATE t2 SET b=53574 WHERE a=11374;\nUPDATE t2 SET b=55827 WHERE a=11375;\nUPDATE t2 SET b=56999 WHERE a=11376;\nUPDATE t2 SET b=61436 WHERE a=11377;\nUPDATE t2 SET b=59631 WHERE a=11378;\nUPDATE t2 SET b=5281 WHERE a=11379;\nUPDATE t2 SET b=92747 WHERE a=11380;\nUPDATE t2 SET b=10459 WHERE a=11381;\nUPDATE t2 SET b=66080 WHERE a=11382;\nUPDATE t2 SET b=79494 WHERE a=11383;\nUPDATE t2 SET b=91491 WHERE a=11384;\nUPDATE t2 SET b=41181 WHERE a=11385;\nUPDATE t2 SET b=6815 WHERE a=11386;\nUPDATE t2 SET b=92335 WHERE a=11387;\nUPDATE t2 SET b=3988 WHERE a=11388;\nUPDATE t2 SET b=61502 WHERE a=11389;\nUPDATE t2 SET b=63690 WHERE a=11390;\nUPDATE t2 SET b=4827 WHERE a=11391;\nUPDATE t2 SET b=60278 WHERE a=11392;\nUPDATE t2 SET b=50355 WHERE a=11393;\nUPDATE t2 SET b=19111 WHERE a=11394;\nUPDATE t2 SET b=18374 WHERE a=11395;\nUPDATE t2 SET b=81083 WHERE a=11396;\nUPDATE t2 SET b=49904 WHERE a=11397;\nUPDATE t2 SET b=97410 WHERE a=11398;\nUPDATE t2 SET b=98491 WHERE a=11399;\nUPDATE t2 SET b=28743 WHERE a=11400;\nUPDATE t2 SET b=97918 WHERE a=11401;\nUPDATE t2 SET b=52641 WHERE a=11402;\nUPDATE t2 SET b=78834 WHERE a=11403;\nUPDATE t2 SET b=2186 WHERE a=11404;\nUPDATE t2 SET b=25188 WHERE a=11405;\nUPDATE t2 SET b=5707 WHERE a=11406;\nUPDATE t2 SET b=59002 WHERE a=11407;\nUPDATE t2 SET b=36354 WHERE a=11408;\nUPDATE t2 SET b=82034 WHERE a=11409;\nUPDATE t2 SET b=91323 WHERE a=11410;\nUPDATE t2 SET b=55231 WHERE a=11411;\nUPDATE t2 SET b=83110 WHERE a=11412;\nUPDATE t2 SET b=64815 WHERE a=11413;\nUPDATE t2 SET b=4927 WHERE a=11414;\nUPDATE t2 SET b=50514 WHERE a=11415;\nUPDATE t2 SET b=16916 WHERE a=11416;\nUPDATE t2 SET b=44262 WHERE a=11417;\nUPDATE t2 SET b=3997 WHERE a=11418;\nUPDATE t2 SET b=75531 WHERE a=11419;\nUPDATE t2 SET b=91597 WHERE a=11420;\nUPDATE t2 SET b=28168 WHERE a=11421;\nUPDATE t2 SET b=12625 WHERE a=11422;\nUPDATE t2 SET b=71787 WHERE a=11423;\nUPDATE t2 SET b=2757 WHERE a=11424;\nUPDATE t2 SET b=79782 WHERE a=11425;\nUPDATE t2 SET b=65758 WHERE a=11426;\nUPDATE t2 SET b=6841 WHERE a=11427;\nUPDATE t2 SET b=92405 WHERE a=11428;\nUPDATE t2 SET b=63706 WHERE a=11429;\nUPDATE t2 SET b=75642 WHERE a=11430;\nUPDATE t2 SET b=99134 WHERE a=11431;\nUPDATE t2 SET b=57976 WHERE a=11432;\nUPDATE t2 SET b=33198 WHERE a=11433;\nUPDATE t2 SET b=12956 WHERE a=11434;\nUPDATE t2 SET b=36696 WHERE a=11435;\nUPDATE t2 SET b=84901 WHERE a=11436;\nUPDATE t2 SET b=85004 WHERE a=11437;\nUPDATE t2 SET b=35356 WHERE a=11438;\nUPDATE t2 SET b=55791 WHERE a=11439;\nUPDATE t2 SET b=90374 WHERE a=11440;\nUPDATE t2 SET b=95098 WHERE a=11441;\nUPDATE t2 SET b=86543 WHERE a=11442;\nUPDATE t2 SET b=24848 WHERE a=11443;\nUPDATE t2 SET b=72089 WHERE a=11444;\nUPDATE t2 SET b=13450 WHERE a=11445;\nUPDATE t2 SET b=53610 WHERE a=11446;\nUPDATE t2 SET b=52937 WHERE a=11447;\nUPDATE t2 SET b=82196 WHERE a=11448;\nUPDATE t2 SET b=88176 WHERE a=11449;\nUPDATE t2 SET b=28697 WHERE a=11450;\nUPDATE t2 SET b=31877 WHERE a=11451;\nUPDATE t2 SET b=31964 WHERE a=11452;\nUPDATE t2 SET b=69086 WHERE a=11453;\nUPDATE t2 SET b=82414 WHERE a=11454;\nUPDATE t2 SET b=55259 WHERE a=11455;\nUPDATE t2 SET b=46384 WHERE a=11456;\nUPDATE t2 SET b=32431 WHERE a=11457;\nUPDATE t2 SET b=3741 WHERE a=11458;\nUPDATE t2 SET b=41057 WHERE a=11459;\nUPDATE t2 SET b=77442 WHERE a=11460;\nUPDATE t2 SET b=98926 WHERE a=11461;\nUPDATE t2 SET b=22274 WHERE a=11462;\nUPDATE t2 SET b=85663 WHERE a=11463;\nUPDATE t2 SET b=50213 WHERE a=11464;\nUPDATE t2 SET b=99556 WHERE a=11465;\nUPDATE t2 SET b=6119 WHERE a=11466;\nUPDATE t2 SET b=63514 WHERE a=11467;\nUPDATE t2 SET b=227 WHERE a=11468;\nUPDATE t2 SET b=68852 WHERE a=11469;\nUPDATE t2 SET b=8647 WHERE a=11470;\nUPDATE t2 SET b=49336 WHERE a=11471;\nUPDATE t2 SET b=14640 WHERE a=11472;\nUPDATE t2 SET b=36915 WHERE a=11473;\nUPDATE t2 SET b=39020 WHERE a=11474;\nUPDATE t2 SET b=6325 WHERE a=11475;\nUPDATE t2 SET b=82524 WHERE a=11476;\nUPDATE t2 SET b=29965 WHERE a=11477;\nUPDATE t2 SET b=31016 WHERE a=11478;\nUPDATE t2 SET b=9327 WHERE a=11479;\nUPDATE t2 SET b=5660 WHERE a=11480;\nUPDATE t2 SET b=99366 WHERE a=11481;\nUPDATE t2 SET b=20058 WHERE a=11482;\nUPDATE t2 SET b=22330 WHERE a=11483;\nUPDATE t2 SET b=3778 WHERE a=11484;\nUPDATE t2 SET b=26060 WHERE a=11485;\nUPDATE t2 SET b=83900 WHERE a=11486;\nUPDATE t2 SET b=84706 WHERE a=11487;\nUPDATE t2 SET b=35241 WHERE a=11488;\nUPDATE t2 SET b=44412 WHERE a=11489;\nUPDATE t2 SET b=55831 WHERE a=11490;\nUPDATE t2 SET b=4166 WHERE a=11491;\nUPDATE t2 SET b=35404 WHERE a=11492;\nUPDATE t2 SET b=91735 WHERE a=11493;\nUPDATE t2 SET b=4669 WHERE a=11494;\nUPDATE t2 SET b=21003 WHERE a=11495;\nUPDATE t2 SET b=77845 WHERE a=11496;\nUPDATE t2 SET b=99106 WHERE a=11497;\nUPDATE t2 SET b=2581 WHERE a=11498;\nUPDATE t2 SET b=66765 WHERE a=11499;\nUPDATE t2 SET b=10178 WHERE a=11500;\nUPDATE t2 SET b=64074 WHERE a=11501;\nUPDATE t2 SET b=54734 WHERE a=11502;\nUPDATE t2 SET b=72132 WHERE a=11503;\nUPDATE t2 SET b=19603 WHERE a=11504;\nUPDATE t2 SET b=63128 WHERE a=11505;\nUPDATE t2 SET b=76191 WHERE a=11506;\nUPDATE t2 SET b=70081 WHERE a=11507;\nUPDATE t2 SET b=58193 WHERE a=11508;\nUPDATE t2 SET b=53131 WHERE a=11509;\nUPDATE t2 SET b=49888 WHERE a=11510;\nUPDATE t2 SET b=61458 WHERE a=11511;\nUPDATE t2 SET b=12085 WHERE a=11512;\nUPDATE t2 SET b=79995 WHERE a=11513;\nUPDATE t2 SET b=45828 WHERE a=11514;\nUPDATE t2 SET b=67440 WHERE a=11515;\nUPDATE t2 SET b=23389 WHERE a=11516;\nUPDATE t2 SET b=81059 WHERE a=11517;\nUPDATE t2 SET b=75782 WHERE a=11518;\nUPDATE t2 SET b=20894 WHERE a=11519;\nUPDATE t2 SET b=32043 WHERE a=11520;\nUPDATE t2 SET b=87001 WHERE a=11521;\nUPDATE t2 SET b=16745 WHERE a=11522;\nUPDATE t2 SET b=48470 WHERE a=11523;\nUPDATE t2 SET b=92193 WHERE a=11524;\nUPDATE t2 SET b=74058 WHERE a=11525;\nUPDATE t2 SET b=80560 WHERE a=11526;\nUPDATE t2 SET b=18107 WHERE a=11527;\nUPDATE t2 SET b=27918 WHERE a=11528;\nUPDATE t2 SET b=40878 WHERE a=11529;\nUPDATE t2 SET b=23175 WHERE a=11530;\nUPDATE t2 SET b=70342 WHERE a=11531;\nUPDATE t2 SET b=87836 WHERE a=11532;\nUPDATE t2 SET b=43773 WHERE a=11533;\nUPDATE t2 SET b=97001 WHERE a=11534;\nUPDATE t2 SET b=59546 WHERE a=11535;\nUPDATE t2 SET b=62642 WHERE a=11536;\nUPDATE t2 SET b=21178 WHERE a=11537;\nUPDATE t2 SET b=64823 WHERE a=11538;\nUPDATE t2 SET b=69993 WHERE a=11539;\nUPDATE t2 SET b=1596 WHERE a=11540;\nUPDATE t2 SET b=64826 WHERE a=11541;\nUPDATE t2 SET b=78439 WHERE a=11542;\nUPDATE t2 SET b=43643 WHERE a=11543;\nUPDATE t2 SET b=27044 WHERE a=11544;\nUPDATE t2 SET b=43318 WHERE a=11545;\nUPDATE t2 SET b=62931 WHERE a=11546;\nUPDATE t2 SET b=85532 WHERE a=11547;\nUPDATE t2 SET b=2617 WHERE a=11548;\nUPDATE t2 SET b=31207 WHERE a=11549;\nUPDATE t2 SET b=84553 WHERE a=11550;\nUPDATE t2 SET b=28071 WHERE a=11551;\nUPDATE t2 SET b=3361 WHERE a=11552;\nUPDATE t2 SET b=41616 WHERE a=11553;\nUPDATE t2 SET b=34479 WHERE a=11554;\nUPDATE t2 SET b=35253 WHERE a=11555;\nUPDATE t2 SET b=27725 WHERE a=11556;\nUPDATE t2 SET b=65218 WHERE a=11557;\nUPDATE t2 SET b=67223 WHERE a=11558;\nUPDATE t2 SET b=62139 WHERE a=11559;\nUPDATE t2 SET b=72651 WHERE a=11560;\nUPDATE t2 SET b=45544 WHERE a=11561;\nUPDATE t2 SET b=50772 WHERE a=11562;\nUPDATE t2 SET b=1909 WHERE a=11563;\nUPDATE t2 SET b=86140 WHERE a=11564;\nUPDATE t2 SET b=18600 WHERE a=11565;\nUPDATE t2 SET b=44514 WHERE a=11566;\nUPDATE t2 SET b=14947 WHERE a=11567;\nUPDATE t2 SET b=6620 WHERE a=11568;\nUPDATE t2 SET b=42486 WHERE a=11569;\nUPDATE t2 SET b=78191 WHERE a=11570;\nUPDATE t2 SET b=17831 WHERE a=11571;\nUPDATE t2 SET b=83168 WHERE a=11572;\nUPDATE t2 SET b=77044 WHERE a=11573;\nUPDATE t2 SET b=95747 WHERE a=11574;\nUPDATE t2 SET b=72224 WHERE a=11575;\nUPDATE t2 SET b=62720 WHERE a=11576;\nUPDATE t2 SET b=62323 WHERE a=11577;\nUPDATE t2 SET b=93620 WHERE a=11578;\nUPDATE t2 SET b=45361 WHERE a=11579;\nUPDATE t2 SET b=8644 WHERE a=11580;\nUPDATE t2 SET b=37687 WHERE a=11581;\nUPDATE t2 SET b=54324 WHERE a=11582;\nUPDATE t2 SET b=51754 WHERE a=11583;\nUPDATE t2 SET b=77260 WHERE a=11584;\nUPDATE t2 SET b=15047 WHERE a=11585;\nUPDATE t2 SET b=55994 WHERE a=11586;\nUPDATE t2 SET b=4204 WHERE a=11587;\nUPDATE t2 SET b=80883 WHERE a=11588;\nUPDATE t2 SET b=14923 WHERE a=11589;\nUPDATE t2 SET b=47256 WHERE a=11590;\nUPDATE t2 SET b=10921 WHERE a=11591;\nUPDATE t2 SET b=59708 WHERE a=11592;\nUPDATE t2 SET b=84526 WHERE a=11593;\nUPDATE t2 SET b=46494 WHERE a=11594;\nUPDATE t2 SET b=70210 WHERE a=11595;\nUPDATE t2 SET b=29960 WHERE a=11596;\nUPDATE t2 SET b=50804 WHERE a=11597;\nUPDATE t2 SET b=90095 WHERE a=11598;\nUPDATE t2 SET b=19717 WHERE a=11599;\nUPDATE t2 SET b=20775 WHERE a=11600;\nUPDATE t2 SET b=19166 WHERE a=11601;\nUPDATE t2 SET b=52205 WHERE a=11602;\nUPDATE t2 SET b=62375 WHERE a=11603;\nUPDATE t2 SET b=61842 WHERE a=11604;\nUPDATE t2 SET b=20193 WHERE a=11605;\nUPDATE t2 SET b=14794 WHERE a=11606;\nUPDATE t2 SET b=49126 WHERE a=11607;\nUPDATE t2 SET b=94029 WHERE a=11608;\nUPDATE t2 SET b=6956 WHERE a=11609;\nUPDATE t2 SET b=5963 WHERE a=11610;\nUPDATE t2 SET b=77891 WHERE a=11611;\nUPDATE t2 SET b=75561 WHERE a=11612;\nUPDATE t2 SET b=10757 WHERE a=11613;\nUPDATE t2 SET b=22057 WHERE a=11614;\nUPDATE t2 SET b=12728 WHERE a=11615;\nUPDATE t2 SET b=45330 WHERE a=11616;\nUPDATE t2 SET b=15657 WHERE a=11617;\nUPDATE t2 SET b=86222 WHERE a=11618;\nUPDATE t2 SET b=81589 WHERE a=11619;\nUPDATE t2 SET b=3043 WHERE a=11620;\nUPDATE t2 SET b=9326 WHERE a=11621;\nUPDATE t2 SET b=33880 WHERE a=11622;\nUPDATE t2 SET b=20048 WHERE a=11623;\nUPDATE t2 SET b=49005 WHERE a=11624;\nUPDATE t2 SET b=25164 WHERE a=11625;\nUPDATE t2 SET b=27793 WHERE a=11626;\nUPDATE t2 SET b=89283 WHERE a=11627;\nUPDATE t2 SET b=30581 WHERE a=11628;\nUPDATE t2 SET b=13682 WHERE a=11629;\nUPDATE t2 SET b=83427 WHERE a=11630;\nUPDATE t2 SET b=59194 WHERE a=11631;\nUPDATE t2 SET b=19023 WHERE a=11632;\nUPDATE t2 SET b=30585 WHERE a=11633;\nUPDATE t2 SET b=33695 WHERE a=11634;\nUPDATE t2 SET b=5485 WHERE a=11635;\nUPDATE t2 SET b=78973 WHERE a=11636;\nUPDATE t2 SET b=38293 WHERE a=11637;\nUPDATE t2 SET b=65622 WHERE a=11638;\nUPDATE t2 SET b=58654 WHERE a=11639;\nUPDATE t2 SET b=60167 WHERE a=11640;\nUPDATE t2 SET b=56726 WHERE a=11641;\nUPDATE t2 SET b=73635 WHERE a=11642;\nUPDATE t2 SET b=10153 WHERE a=11643;\nUPDATE t2 SET b=30295 WHERE a=11644;\nUPDATE t2 SET b=94632 WHERE a=11645;\nUPDATE t2 SET b=81815 WHERE a=11646;\nUPDATE t2 SET b=7257 WHERE a=11647;\nUPDATE t2 SET b=20168 WHERE a=11648;\nUPDATE t2 SET b=99890 WHERE a=11649;\nUPDATE t2 SET b=23772 WHERE a=11650;\nUPDATE t2 SET b=56625 WHERE a=11651;\nUPDATE t2 SET b=10537 WHERE a=11652;\nUPDATE t2 SET b=20839 WHERE a=11653;\nUPDATE t2 SET b=21834 WHERE a=11654;\nUPDATE t2 SET b=19225 WHERE a=11655;\nUPDATE t2 SET b=88493 WHERE a=11656;\nUPDATE t2 SET b=92128 WHERE a=11657;\nUPDATE t2 SET b=65061 WHERE a=11658;\nUPDATE t2 SET b=52592 WHERE a=11659;\nUPDATE t2 SET b=34133 WHERE a=11660;\nUPDATE t2 SET b=71121 WHERE a=11661;\nUPDATE t2 SET b=49111 WHERE a=11662;\nUPDATE t2 SET b=98924 WHERE a=11663;\nUPDATE t2 SET b=36945 WHERE a=11664;\nUPDATE t2 SET b=52293 WHERE a=11665;\nUPDATE t2 SET b=33924 WHERE a=11666;\nUPDATE t2 SET b=7018 WHERE a=11667;\nUPDATE t2 SET b=41469 WHERE a=11668;\nUPDATE t2 SET b=54483 WHERE a=11669;\nUPDATE t2 SET b=67280 WHERE a=11670;\nUPDATE t2 SET b=69921 WHERE a=11671;\nUPDATE t2 SET b=74795 WHERE a=11672;\nUPDATE t2 SET b=93510 WHERE a=11673;\nUPDATE t2 SET b=57701 WHERE a=11674;\nUPDATE t2 SET b=87147 WHERE a=11675;\nUPDATE t2 SET b=62739 WHERE a=11676;\nUPDATE t2 SET b=25435 WHERE a=11677;\nUPDATE t2 SET b=68253 WHERE a=11678;\nUPDATE t2 SET b=44987 WHERE a=11679;\nUPDATE t2 SET b=98510 WHERE a=11680;\nUPDATE t2 SET b=26882 WHERE a=11681;\nUPDATE t2 SET b=70058 WHERE a=11682;\nUPDATE t2 SET b=20901 WHERE a=11683;\nUPDATE t2 SET b=31464 WHERE a=11684;\nUPDATE t2 SET b=68684 WHERE a=11685;\nUPDATE t2 SET b=18219 WHERE a=11686;\nUPDATE t2 SET b=55509 WHERE a=11687;\nUPDATE t2 SET b=47624 WHERE a=11688;\nUPDATE t2 SET b=13331 WHERE a=11689;\nUPDATE t2 SET b=23317 WHERE a=11690;\nUPDATE t2 SET b=51260 WHERE a=11691;\nUPDATE t2 SET b=5705 WHERE a=11692;\nUPDATE t2 SET b=13811 WHERE a=11693;\nUPDATE t2 SET b=64393 WHERE a=11694;\nUPDATE t2 SET b=95777 WHERE a=11695;\nUPDATE t2 SET b=47899 WHERE a=11696;\nUPDATE t2 SET b=11413 WHERE a=11697;\nUPDATE t2 SET b=37230 WHERE a=11698;\nUPDATE t2 SET b=3913 WHERE a=11699;\nUPDATE t2 SET b=43261 WHERE a=11700;\nUPDATE t2 SET b=74813 WHERE a=11701;\nUPDATE t2 SET b=59168 WHERE a=11702;\nUPDATE t2 SET b=80524 WHERE a=11703;\nUPDATE t2 SET b=93889 WHERE a=11704;\nUPDATE t2 SET b=95062 WHERE a=11705;\nUPDATE t2 SET b=32101 WHERE a=11706;\nUPDATE t2 SET b=89240 WHERE a=11707;\nUPDATE t2 SET b=50220 WHERE a=11708;\nUPDATE t2 SET b=42925 WHERE a=11709;\nUPDATE t2 SET b=57608 WHERE a=11710;\nUPDATE t2 SET b=7536 WHERE a=11711;\nUPDATE t2 SET b=1283 WHERE a=11712;\nUPDATE t2 SET b=57077 WHERE a=11713;\nUPDATE t2 SET b=32736 WHERE a=11714;\nUPDATE t2 SET b=31569 WHERE a=11715;\nUPDATE t2 SET b=19933 WHERE a=11716;\nUPDATE t2 SET b=25858 WHERE a=11717;\nUPDATE t2 SET b=14656 WHERE a=11718;\nUPDATE t2 SET b=14073 WHERE a=11719;\nUPDATE t2 SET b=37787 WHERE a=11720;\nUPDATE t2 SET b=78705 WHERE a=11721;\nUPDATE t2 SET b=14788 WHERE a=11722;\nUPDATE t2 SET b=16642 WHERE a=11723;\nUPDATE t2 SET b=33972 WHERE a=11724;\nUPDATE t2 SET b=6945 WHERE a=11725;\nUPDATE t2 SET b=18506 WHERE a=11726;\nUPDATE t2 SET b=3245 WHERE a=11727;\nUPDATE t2 SET b=9869 WHERE a=11728;\nUPDATE t2 SET b=56224 WHERE a=11729;\nUPDATE t2 SET b=77435 WHERE a=11730;\nUPDATE t2 SET b=80687 WHERE a=11731;\nUPDATE t2 SET b=55833 WHERE a=11732;\nUPDATE t2 SET b=14857 WHERE a=11733;\nUPDATE t2 SET b=41569 WHERE a=11734;\nUPDATE t2 SET b=26463 WHERE a=11735;\nUPDATE t2 SET b=79220 WHERE a=11736;\nUPDATE t2 SET b=24875 WHERE a=11737;\nUPDATE t2 SET b=93936 WHERE a=11738;\nUPDATE t2 SET b=83969 WHERE a=11739;\nUPDATE t2 SET b=99281 WHERE a=11740;\nUPDATE t2 SET b=53299 WHERE a=11741;\nUPDATE t2 SET b=37022 WHERE a=11742;\nUPDATE t2 SET b=80756 WHERE a=11743;\nUPDATE t2 SET b=66873 WHERE a=11744;\nUPDATE t2 SET b=43597 WHERE a=11745;\nUPDATE t2 SET b=79739 WHERE a=11746;\nUPDATE t2 SET b=16411 WHERE a=11747;\nUPDATE t2 SET b=39120 WHERE a=11748;\nUPDATE t2 SET b=91596 WHERE a=11749;\nUPDATE t2 SET b=3501 WHERE a=11750;\nUPDATE t2 SET b=89001 WHERE a=11751;\nUPDATE t2 SET b=65581 WHERE a=11752;\nUPDATE t2 SET b=94206 WHERE a=11753;\nUPDATE t2 SET b=5742 WHERE a=11754;\nUPDATE t2 SET b=50827 WHERE a=11755;\nUPDATE t2 SET b=24153 WHERE a=11756;\nUPDATE t2 SET b=5581 WHERE a=11757;\nUPDATE t2 SET b=77260 WHERE a=11758;\nUPDATE t2 SET b=38819 WHERE a=11759;\nUPDATE t2 SET b=52747 WHERE a=11760;\nUPDATE t2 SET b=91071 WHERE a=11761;\nUPDATE t2 SET b=73297 WHERE a=11762;\nUPDATE t2 SET b=88586 WHERE a=11763;\nUPDATE t2 SET b=48845 WHERE a=11764;\nUPDATE t2 SET b=97026 WHERE a=11765;\nUPDATE t2 SET b=82932 WHERE a=11766;\nUPDATE t2 SET b=5358 WHERE a=11767;\nUPDATE t2 SET b=98823 WHERE a=11768;\nUPDATE t2 SET b=12652 WHERE a=11769;\nUPDATE t2 SET b=23004 WHERE a=11770;\nUPDATE t2 SET b=86908 WHERE a=11771;\nUPDATE t2 SET b=4678 WHERE a=11772;\nUPDATE t2 SET b=99245 WHERE a=11773;\nUPDATE t2 SET b=83871 WHERE a=11774;\nUPDATE t2 SET b=29735 WHERE a=11775;\nUPDATE t2 SET b=4009 WHERE a=11776;\nUPDATE t2 SET b=72966 WHERE a=11777;\nUPDATE t2 SET b=22158 WHERE a=11778;\nUPDATE t2 SET b=4351 WHERE a=11779;\nUPDATE t2 SET b=92194 WHERE a=11780;\nUPDATE t2 SET b=68281 WHERE a=11781;\nUPDATE t2 SET b=65794 WHERE a=11782;\nUPDATE t2 SET b=84523 WHERE a=11783;\nUPDATE t2 SET b=75178 WHERE a=11784;\nUPDATE t2 SET b=55684 WHERE a=11785;\nUPDATE t2 SET b=79986 WHERE a=11786;\nUPDATE t2 SET b=60380 WHERE a=11787;\nUPDATE t2 SET b=36730 WHERE a=11788;\nUPDATE t2 SET b=96419 WHERE a=11789;\nUPDATE t2 SET b=2289 WHERE a=11790;\nUPDATE t2 SET b=87799 WHERE a=11791;\nUPDATE t2 SET b=17924 WHERE a=11792;\nUPDATE t2 SET b=93053 WHERE a=11793;\nUPDATE t2 SET b=52154 WHERE a=11794;\nUPDATE t2 SET b=17358 WHERE a=11795;\nUPDATE t2 SET b=38484 WHERE a=11796;\nUPDATE t2 SET b=81103 WHERE a=11797;\nUPDATE t2 SET b=55984 WHERE a=11798;\nUPDATE t2 SET b=14333 WHERE a=11799;\nUPDATE t2 SET b=13538 WHERE a=11800;\nUPDATE t2 SET b=14611 WHERE a=11801;\nUPDATE t2 SET b=6942 WHERE a=11802;\nUPDATE t2 SET b=59458 WHERE a=11803;\nUPDATE t2 SET b=42006 WHERE a=11804;\nUPDATE t2 SET b=34988 WHERE a=11805;\nUPDATE t2 SET b=44589 WHERE a=11806;\nUPDATE t2 SET b=38680 WHERE a=11807;\nUPDATE t2 SET b=13630 WHERE a=11808;\nUPDATE t2 SET b=30544 WHERE a=11809;\nUPDATE t2 SET b=48215 WHERE a=11810;\nUPDATE t2 SET b=83642 WHERE a=11811;\nUPDATE t2 SET b=22734 WHERE a=11812;\nUPDATE t2 SET b=76792 WHERE a=11813;\nUPDATE t2 SET b=87857 WHERE a=11814;\nUPDATE t2 SET b=88998 WHERE a=11815;\nUPDATE t2 SET b=94870 WHERE a=11816;\nUPDATE t2 SET b=93351 WHERE a=11817;\nUPDATE t2 SET b=79585 WHERE a=11818;\nUPDATE t2 SET b=2710 WHERE a=11819;\nUPDATE t2 SET b=33488 WHERE a=11820;\nUPDATE t2 SET b=42576 WHERE a=11821;\nUPDATE t2 SET b=5338 WHERE a=11822;\nUPDATE t2 SET b=2738 WHERE a=11823;\nUPDATE t2 SET b=32414 WHERE a=11824;\nUPDATE t2 SET b=62376 WHERE a=11825;\nUPDATE t2 SET b=562 WHERE a=11826;\nUPDATE t2 SET b=92811 WHERE a=11827;\nUPDATE t2 SET b=62979 WHERE a=11828;\nUPDATE t2 SET b=80532 WHERE a=11829;\nUPDATE t2 SET b=90437 WHERE a=11830;\nUPDATE t2 SET b=3666 WHERE a=11831;\nUPDATE t2 SET b=64949 WHERE a=11832;\nUPDATE t2 SET b=98501 WHERE a=11833;\nUPDATE t2 SET b=5057 WHERE a=11834;\nUPDATE t2 SET b=91050 WHERE a=11835;\nUPDATE t2 SET b=7895 WHERE a=11836;\nUPDATE t2 SET b=45015 WHERE a=11837;\nUPDATE t2 SET b=90217 WHERE a=11838;\nUPDATE t2 SET b=53959 WHERE a=11839;\nUPDATE t2 SET b=44129 WHERE a=11840;\nUPDATE t2 SET b=21487 WHERE a=11841;\nUPDATE t2 SET b=78695 WHERE a=11842;\nUPDATE t2 SET b=21944 WHERE a=11843;\nUPDATE t2 SET b=93333 WHERE a=11844;\nUPDATE t2 SET b=59085 WHERE a=11845;\nUPDATE t2 SET b=60665 WHERE a=11846;\nUPDATE t2 SET b=67893 WHERE a=11847;\nUPDATE t2 SET b=70790 WHERE a=11848;\nUPDATE t2 SET b=24185 WHERE a=11849;\nUPDATE t2 SET b=38929 WHERE a=11850;\nUPDATE t2 SET b=57828 WHERE a=11851;\nUPDATE t2 SET b=34379 WHERE a=11852;\nUPDATE t2 SET b=41209 WHERE a=11853;\nUPDATE t2 SET b=45560 WHERE a=11854;\nUPDATE t2 SET b=18564 WHERE a=11855;\nUPDATE t2 SET b=17657 WHERE a=11856;\nUPDATE t2 SET b=30994 WHERE a=11857;\nUPDATE t2 SET b=73338 WHERE a=11858;\nUPDATE t2 SET b=42729 WHERE a=11859;\nUPDATE t2 SET b=68573 WHERE a=11860;\nUPDATE t2 SET b=33 WHERE a=11861;\nUPDATE t2 SET b=91822 WHERE a=11862;\nUPDATE t2 SET b=14565 WHERE a=11863;\nUPDATE t2 SET b=50712 WHERE a=11864;\nUPDATE t2 SET b=39147 WHERE a=11865;\nUPDATE t2 SET b=52381 WHERE a=11866;\nUPDATE t2 SET b=67802 WHERE a=11867;\nUPDATE t2 SET b=93586 WHERE a=11868;\nUPDATE t2 SET b=6780 WHERE a=11869;\nUPDATE t2 SET b=14370 WHERE a=11870;\nUPDATE t2 SET b=17784 WHERE a=11871;\nUPDATE t2 SET b=8099 WHERE a=11872;\nUPDATE t2 SET b=28119 WHERE a=11873;\nUPDATE t2 SET b=17349 WHERE a=11874;\nUPDATE t2 SET b=18712 WHERE a=11875;\nUPDATE t2 SET b=28844 WHERE a=11876;\nUPDATE t2 SET b=34677 WHERE a=11877;\nUPDATE t2 SET b=62096 WHERE a=11878;\nUPDATE t2 SET b=62332 WHERE a=11879;\nUPDATE t2 SET b=82432 WHERE a=11880;\nUPDATE t2 SET b=89519 WHERE a=11881;\nUPDATE t2 SET b=94159 WHERE a=11882;\nUPDATE t2 SET b=44513 WHERE a=11883;\nUPDATE t2 SET b=34659 WHERE a=11884;\nUPDATE t2 SET b=27312 WHERE a=11885;\nUPDATE t2 SET b=57300 WHERE a=11886;\nUPDATE t2 SET b=87339 WHERE a=11887;\nUPDATE t2 SET b=63770 WHERE a=11888;\nUPDATE t2 SET b=79606 WHERE a=11889;\nUPDATE t2 SET b=74601 WHERE a=11890;\nUPDATE t2 SET b=98090 WHERE a=11891;\nUPDATE t2 SET b=27140 WHERE a=11892;\nUPDATE t2 SET b=92124 WHERE a=11893;\nUPDATE t2 SET b=55021 WHERE a=11894;\nUPDATE t2 SET b=58832 WHERE a=11895;\nUPDATE t2 SET b=68458 WHERE a=11896;\nUPDATE t2 SET b=75624 WHERE a=11897;\nUPDATE t2 SET b=91189 WHERE a=11898;\nUPDATE t2 SET b=64935 WHERE a=11899;\nUPDATE t2 SET b=59058 WHERE a=11900;\nUPDATE t2 SET b=49159 WHERE a=11901;\nUPDATE t2 SET b=29072 WHERE a=11902;\nUPDATE t2 SET b=9799 WHERE a=11903;\nUPDATE t2 SET b=32589 WHERE a=11904;\nUPDATE t2 SET b=55664 WHERE a=11905;\nUPDATE t2 SET b=80546 WHERE a=11906;\nUPDATE t2 SET b=84146 WHERE a=11907;\nUPDATE t2 SET b=34903 WHERE a=11908;\nUPDATE t2 SET b=8142 WHERE a=11909;\nUPDATE t2 SET b=85015 WHERE a=11910;\nUPDATE t2 SET b=81652 WHERE a=11911;\nUPDATE t2 SET b=8419 WHERE a=11912;\nUPDATE t2 SET b=41934 WHERE a=11913;\nUPDATE t2 SET b=23256 WHERE a=11914;\nUPDATE t2 SET b=15658 WHERE a=11915;\nUPDATE t2 SET b=72839 WHERE a=11916;\nUPDATE t2 SET b=84693 WHERE a=11917;\nUPDATE t2 SET b=24546 WHERE a=11918;\nUPDATE t2 SET b=90436 WHERE a=11919;\nUPDATE t2 SET b=24440 WHERE a=11920;\nUPDATE t2 SET b=81856 WHERE a=11921;\nUPDATE t2 SET b=19713 WHERE a=11922;\nUPDATE t2 SET b=23640 WHERE a=11923;\nUPDATE t2 SET b=9381 WHERE a=11924;\nUPDATE t2 SET b=91546 WHERE a=11925;\nUPDATE t2 SET b=36931 WHERE a=11926;\nUPDATE t2 SET b=49000 WHERE a=11927;\nUPDATE t2 SET b=44443 WHERE a=11928;\nUPDATE t2 SET b=69691 WHERE a=11929;\nUPDATE t2 SET b=98809 WHERE a=11930;\nUPDATE t2 SET b=80584 WHERE a=11931;\nUPDATE t2 SET b=43056 WHERE a=11932;\nUPDATE t2 SET b=87152 WHERE a=11933;\nUPDATE t2 SET b=49566 WHERE a=11934;\nUPDATE t2 SET b=79511 WHERE a=11935;\nUPDATE t2 SET b=58360 WHERE a=11936;\nUPDATE t2 SET b=72157 WHERE a=11937;\nUPDATE t2 SET b=89564 WHERE a=11938;\nUPDATE t2 SET b=64921 WHERE a=11939;\nUPDATE t2 SET b=90204 WHERE a=11940;\nUPDATE t2 SET b=12273 WHERE a=11941;\nUPDATE t2 SET b=6476 WHERE a=11942;\nUPDATE t2 SET b=60163 WHERE a=11943;\nUPDATE t2 SET b=3988 WHERE a=11944;\nUPDATE t2 SET b=26565 WHERE a=11945;\nUPDATE t2 SET b=36527 WHERE a=11946;\nUPDATE t2 SET b=81954 WHERE a=11947;\nUPDATE t2 SET b=93255 WHERE a=11948;\nUPDATE t2 SET b=83344 WHERE a=11949;\nUPDATE t2 SET b=95326 WHERE a=11950;\nUPDATE t2 SET b=10526 WHERE a=11951;\nUPDATE t2 SET b=91846 WHERE a=11952;\nUPDATE t2 SET b=86157 WHERE a=11953;\nUPDATE t2 SET b=18397 WHERE a=11954;\nUPDATE t2 SET b=79220 WHERE a=11955;\nUPDATE t2 SET b=1609 WHERE a=11956;\nUPDATE t2 SET b=34063 WHERE a=11957;\nUPDATE t2 SET b=9534 WHERE a=11958;\nUPDATE t2 SET b=28046 WHERE a=11959;\nUPDATE t2 SET b=26885 WHERE a=11960;\nUPDATE t2 SET b=91622 WHERE a=11961;\nUPDATE t2 SET b=16307 WHERE a=11962;\nUPDATE t2 SET b=64167 WHERE a=11963;\nUPDATE t2 SET b=43422 WHERE a=11964;\nUPDATE t2 SET b=88846 WHERE a=11965;\nUPDATE t2 SET b=26006 WHERE a=11966;\nUPDATE t2 SET b=90258 WHERE a=11967;\nUPDATE t2 SET b=28496 WHERE a=11968;\nUPDATE t2 SET b=46057 WHERE a=11969;\nUPDATE t2 SET b=65008 WHERE a=11970;\nUPDATE t2 SET b=90496 WHERE a=11971;\nUPDATE t2 SET b=28293 WHERE a=11972;\nUPDATE t2 SET b=84464 WHERE a=11973;\nUPDATE t2 SET b=75789 WHERE a=11974;\nUPDATE t2 SET b=20630 WHERE a=11975;\nUPDATE t2 SET b=61830 WHERE a=11976;\nUPDATE t2 SET b=87662 WHERE a=11977;\nUPDATE t2 SET b=97959 WHERE a=11978;\nUPDATE t2 SET b=66005 WHERE a=11979;\nUPDATE t2 SET b=54781 WHERE a=11980;\nUPDATE t2 SET b=36612 WHERE a=11981;\nUPDATE t2 SET b=243 WHERE a=11982;\nUPDATE t2 SET b=92051 WHERE a=11983;\nUPDATE t2 SET b=53461 WHERE a=11984;\nUPDATE t2 SET b=90007 WHERE a=11985;\nUPDATE t2 SET b=27776 WHERE a=11986;\nUPDATE t2 SET b=33232 WHERE a=11987;\nUPDATE t2 SET b=8520 WHERE a=11988;\nUPDATE t2 SET b=68067 WHERE a=11989;\nUPDATE t2 SET b=65409 WHERE a=11990;\nUPDATE t2 SET b=64040 WHERE a=11991;\nUPDATE t2 SET b=45662 WHERE a=11992;\nUPDATE t2 SET b=32667 WHERE a=11993;\nUPDATE t2 SET b=75597 WHERE a=11994;\nUPDATE t2 SET b=29747 WHERE a=11995;\nUPDATE t2 SET b=22471 WHERE a=11996;\nUPDATE t2 SET b=49335 WHERE a=11997;\nUPDATE t2 SET b=81024 WHERE a=11998;\nUPDATE t2 SET b=36670 WHERE a=11999;\nUPDATE t2 SET b=52256 WHERE a=12000;\nUPDATE t2 SET b=72354 WHERE a=12001;\nUPDATE t2 SET b=39523 WHERE a=12002;\nUPDATE t2 SET b=51210 WHERE a=12003;\nUPDATE t2 SET b=62370 WHERE a=12004;\nUPDATE t2 SET b=73917 WHERE a=12005;\nUPDATE t2 SET b=10018 WHERE a=12006;\nUPDATE t2 SET b=91976 WHERE a=12007;\nUPDATE t2 SET b=67409 WHERE a=12008;\nUPDATE t2 SET b=89104 WHERE a=12009;\nUPDATE t2 SET b=88797 WHERE a=12010;\nUPDATE t2 SET b=42465 WHERE a=12011;\nUPDATE t2 SET b=60730 WHERE a=12012;\nUPDATE t2 SET b=37501 WHERE a=12013;\nUPDATE t2 SET b=54611 WHERE a=12014;\nUPDATE t2 SET b=50272 WHERE a=12015;\nUPDATE t2 SET b=18064 WHERE a=12016;\nUPDATE t2 SET b=32250 WHERE a=12017;\nUPDATE t2 SET b=32635 WHERE a=12018;\nUPDATE t2 SET b=28842 WHERE a=12019;\nUPDATE t2 SET b=37758 WHERE a=12020;\nUPDATE t2 SET b=13689 WHERE a=12021;\nUPDATE t2 SET b=88543 WHERE a=12022;\nUPDATE t2 SET b=26957 WHERE a=12023;\nUPDATE t2 SET b=12279 WHERE a=12024;\nUPDATE t2 SET b=99898 WHERE a=12025;\nUPDATE t2 SET b=16768 WHERE a=12026;\nUPDATE t2 SET b=79134 WHERE a=12027;\nUPDATE t2 SET b=1585 WHERE a=12028;\nUPDATE t2 SET b=47374 WHERE a=12029;\nUPDATE t2 SET b=85383 WHERE a=12030;\nUPDATE t2 SET b=26961 WHERE a=12031;\nUPDATE t2 SET b=26538 WHERE a=12032;\nUPDATE t2 SET b=44748 WHERE a=12033;\nUPDATE t2 SET b=58567 WHERE a=12034;\nUPDATE t2 SET b=74328 WHERE a=12035;\nUPDATE t2 SET b=20805 WHERE a=12036;\nUPDATE t2 SET b=35177 WHERE a=12037;\nUPDATE t2 SET b=91419 WHERE a=12038;\nUPDATE t2 SET b=50518 WHERE a=12039;\nUPDATE t2 SET b=18668 WHERE a=12040;\nUPDATE t2 SET b=48193 WHERE a=12041;\nUPDATE t2 SET b=25805 WHERE a=12042;\nUPDATE t2 SET b=31987 WHERE a=12043;\nUPDATE t2 SET b=28058 WHERE a=12044;\nUPDATE t2 SET b=54552 WHERE a=12045;\nUPDATE t2 SET b=68070 WHERE a=12046;\nUPDATE t2 SET b=24117 WHERE a=12047;\nUPDATE t2 SET b=70058 WHERE a=12048;\nUPDATE t2 SET b=33599 WHERE a=12049;\nUPDATE t2 SET b=36960 WHERE a=12050;\nUPDATE t2 SET b=63767 WHERE a=12051;\nUPDATE t2 SET b=95706 WHERE a=12052;\nUPDATE t2 SET b=79991 WHERE a=12053;\nUPDATE t2 SET b=61671 WHERE a=12054;\nUPDATE t2 SET b=68988 WHERE a=12055;\nUPDATE t2 SET b=80956 WHERE a=12056;\nUPDATE t2 SET b=75557 WHERE a=12057;\nUPDATE t2 SET b=18321 WHERE a=12058;\nUPDATE t2 SET b=60978 WHERE a=12059;\nUPDATE t2 SET b=91838 WHERE a=12060;\nUPDATE t2 SET b=88902 WHERE a=12061;\nUPDATE t2 SET b=91202 WHERE a=12062;\nUPDATE t2 SET b=73396 WHERE a=12063;\nUPDATE t2 SET b=44676 WHERE a=12064;\nUPDATE t2 SET b=28018 WHERE a=12065;\nUPDATE t2 SET b=34764 WHERE a=12066;\nUPDATE t2 SET b=34157 WHERE a=12067;\nUPDATE t2 SET b=57715 WHERE a=12068;\nUPDATE t2 SET b=77104 WHERE a=12069;\nUPDATE t2 SET b=61381 WHERE a=12070;\nUPDATE t2 SET b=24825 WHERE a=12071;\nUPDATE t2 SET b=3222 WHERE a=12072;\nUPDATE t2 SET b=10231 WHERE a=12073;\nUPDATE t2 SET b=30549 WHERE a=12074;\nUPDATE t2 SET b=92785 WHERE a=12075;\nUPDATE t2 SET b=56421 WHERE a=12076;\nUPDATE t2 SET b=86231 WHERE a=12077;\nUPDATE t2 SET b=16051 WHERE a=12078;\nUPDATE t2 SET b=69118 WHERE a=12079;\nUPDATE t2 SET b=26105 WHERE a=12080;\nUPDATE t2 SET b=82005 WHERE a=12081;\nUPDATE t2 SET b=10841 WHERE a=12082;\nUPDATE t2 SET b=96080 WHERE a=12083;\nUPDATE t2 SET b=36126 WHERE a=12084;\nUPDATE t2 SET b=83364 WHERE a=12085;\nUPDATE t2 SET b=74769 WHERE a=12086;\nUPDATE t2 SET b=53098 WHERE a=12087;\nUPDATE t2 SET b=62548 WHERE a=12088;\nUPDATE t2 SET b=15210 WHERE a=12089;\nUPDATE t2 SET b=29144 WHERE a=12090;\nUPDATE t2 SET b=22105 WHERE a=12091;\nUPDATE t2 SET b=82211 WHERE a=12092;\nUPDATE t2 SET b=24799 WHERE a=12093;\nUPDATE t2 SET b=95598 WHERE a=12094;\nUPDATE t2 SET b=73489 WHERE a=12095;\nUPDATE t2 SET b=81017 WHERE a=12096;\nUPDATE t2 SET b=44251 WHERE a=12097;\nUPDATE t2 SET b=37236 WHERE a=12098;\nUPDATE t2 SET b=74074 WHERE a=12099;\nUPDATE t2 SET b=87687 WHERE a=12100;\nUPDATE t2 SET b=34691 WHERE a=12101;\nUPDATE t2 SET b=76086 WHERE a=12102;\nUPDATE t2 SET b=41856 WHERE a=12103;\nUPDATE t2 SET b=790 WHERE a=12104;\nUPDATE t2 SET b=50866 WHERE a=12105;\nUPDATE t2 SET b=58694 WHERE a=12106;\nUPDATE t2 SET b=37998 WHERE a=12107;\nUPDATE t2 SET b=91655 WHERE a=12108;\nUPDATE t2 SET b=87812 WHERE a=12109;\nUPDATE t2 SET b=1976 WHERE a=12110;\nUPDATE t2 SET b=26007 WHERE a=12111;\nUPDATE t2 SET b=86471 WHERE a=12112;\nUPDATE t2 SET b=11936 WHERE a=12113;\nUPDATE t2 SET b=93468 WHERE a=12114;\nUPDATE t2 SET b=82335 WHERE a=12115;\nUPDATE t2 SET b=94542 WHERE a=12116;\nUPDATE t2 SET b=9887 WHERE a=12117;\nUPDATE t2 SET b=93697 WHERE a=12118;\nUPDATE t2 SET b=94414 WHERE a=12119;\nUPDATE t2 SET b=62284 WHERE a=12120;\nUPDATE t2 SET b=60770 WHERE a=12121;\nUPDATE t2 SET b=95046 WHERE a=12122;\nUPDATE t2 SET b=98860 WHERE a=12123;\nUPDATE t2 SET b=11814 WHERE a=12124;\nUPDATE t2 SET b=67549 WHERE a=12125;\nUPDATE t2 SET b=96276 WHERE a=12126;\nUPDATE t2 SET b=78632 WHERE a=12127;\nUPDATE t2 SET b=60996 WHERE a=12128;\nUPDATE t2 SET b=16813 WHERE a=12129;\nUPDATE t2 SET b=15806 WHERE a=12130;\nUPDATE t2 SET b=31524 WHERE a=12131;\nUPDATE t2 SET b=56525 WHERE a=12132;\nUPDATE t2 SET b=40381 WHERE a=12133;\nUPDATE t2 SET b=82597 WHERE a=12134;\nUPDATE t2 SET b=78331 WHERE a=12135;\nUPDATE t2 SET b=46598 WHERE a=12136;\nUPDATE t2 SET b=51423 WHERE a=12137;\nUPDATE t2 SET b=72679 WHERE a=12138;\nUPDATE t2 SET b=92153 WHERE a=12139;\nUPDATE t2 SET b=51662 WHERE a=12140;\nUPDATE t2 SET b=30606 WHERE a=12141;\nUPDATE t2 SET b=58874 WHERE a=12142;\nUPDATE t2 SET b=85990 WHERE a=12143;\nUPDATE t2 SET b=4782 WHERE a=12144;\nUPDATE t2 SET b=659 WHERE a=12145;\nUPDATE t2 SET b=52476 WHERE a=12146;\nUPDATE t2 SET b=46567 WHERE a=12147;\nUPDATE t2 SET b=8136 WHERE a=12148;\nUPDATE t2 SET b=62813 WHERE a=12149;\nUPDATE t2 SET b=41772 WHERE a=12150;\nUPDATE t2 SET b=25407 WHERE a=12151;\nUPDATE t2 SET b=69359 WHERE a=12152;\nUPDATE t2 SET b=21783 WHERE a=12153;\nUPDATE t2 SET b=19200 WHERE a=12154;\nUPDATE t2 SET b=41760 WHERE a=12155;\nUPDATE t2 SET b=69829 WHERE a=12156;\nUPDATE t2 SET b=86849 WHERE a=12157;\nUPDATE t2 SET b=81173 WHERE a=12158;\nUPDATE t2 SET b=92621 WHERE a=12159;\nUPDATE t2 SET b=10592 WHERE a=12160;\nUPDATE t2 SET b=96775 WHERE a=12161;\nUPDATE t2 SET b=53120 WHERE a=12162;\nUPDATE t2 SET b=3835 WHERE a=12163;\nUPDATE t2 SET b=35086 WHERE a=12164;\nUPDATE t2 SET b=69249 WHERE a=12165;\nUPDATE t2 SET b=51249 WHERE a=12166;\nUPDATE t2 SET b=78737 WHERE a=12167;\nUPDATE t2 SET b=79434 WHERE a=12168;\nUPDATE t2 SET b=75756 WHERE a=12169;\nUPDATE t2 SET b=76445 WHERE a=12170;\nUPDATE t2 SET b=14042 WHERE a=12171;\nUPDATE t2 SET b=84681 WHERE a=12172;\nUPDATE t2 SET b=93142 WHERE a=12173;\nUPDATE t2 SET b=83597 WHERE a=12174;\nUPDATE t2 SET b=43010 WHERE a=12175;\nUPDATE t2 SET b=40316 WHERE a=12176;\nUPDATE t2 SET b=66807 WHERE a=12177;\nUPDATE t2 SET b=61244 WHERE a=12178;\nUPDATE t2 SET b=51176 WHERE a=12179;\nUPDATE t2 SET b=44106 WHERE a=12180;\nUPDATE t2 SET b=8338 WHERE a=12181;\nUPDATE t2 SET b=64109 WHERE a=12182;\nUPDATE t2 SET b=13898 WHERE a=12183;\nUPDATE t2 SET b=48393 WHERE a=12184;\nUPDATE t2 SET b=39371 WHERE a=12185;\nUPDATE t2 SET b=61218 WHERE a=12186;\nUPDATE t2 SET b=97445 WHERE a=12187;\nUPDATE t2 SET b=21813 WHERE a=12188;\nUPDATE t2 SET b=56255 WHERE a=12189;\nUPDATE t2 SET b=57630 WHERE a=12190;\nUPDATE t2 SET b=70547 WHERE a=12191;\nUPDATE t2 SET b=59015 WHERE a=12192;\nUPDATE t2 SET b=56163 WHERE a=12193;\nUPDATE t2 SET b=20200 WHERE a=12194;\nUPDATE t2 SET b=88811 WHERE a=12195;\nUPDATE t2 SET b=26467 WHERE a=12196;\nUPDATE t2 SET b=18746 WHERE a=12197;\nUPDATE t2 SET b=75612 WHERE a=12198;\nUPDATE t2 SET b=48005 WHERE a=12199;\nUPDATE t2 SET b=26501 WHERE a=12200;\nUPDATE t2 SET b=58574 WHERE a=12201;\nUPDATE t2 SET b=97685 WHERE a=12202;\nUPDATE t2 SET b=12378 WHERE a=12203;\nUPDATE t2 SET b=13987 WHERE a=12204;\nUPDATE t2 SET b=41325 WHERE a=12205;\nUPDATE t2 SET b=78613 WHERE a=12206;\nUPDATE t2 SET b=37169 WHERE a=12207;\nUPDATE t2 SET b=22110 WHERE a=12208;\nUPDATE t2 SET b=83659 WHERE a=12209;\nUPDATE t2 SET b=41494 WHERE a=12210;\nUPDATE t2 SET b=57097 WHERE a=12211;\nUPDATE t2 SET b=32354 WHERE a=12212;\nUPDATE t2 SET b=35005 WHERE a=12213;\nUPDATE t2 SET b=99731 WHERE a=12214;\nUPDATE t2 SET b=35098 WHERE a=12215;\nUPDATE t2 SET b=30559 WHERE a=12216;\nUPDATE t2 SET b=77720 WHERE a=12217;\nUPDATE t2 SET b=93331 WHERE a=12218;\nUPDATE t2 SET b=35216 WHERE a=12219;\nUPDATE t2 SET b=91778 WHERE a=12220;\nUPDATE t2 SET b=36056 WHERE a=12221;\nUPDATE t2 SET b=69969 WHERE a=12222;\nUPDATE t2 SET b=15162 WHERE a=12223;\nUPDATE t2 SET b=50032 WHERE a=12224;\nUPDATE t2 SET b=36439 WHERE a=12225;\nUPDATE t2 SET b=72771 WHERE a=12226;\nUPDATE t2 SET b=34090 WHERE a=12227;\nUPDATE t2 SET b=63867 WHERE a=12228;\nUPDATE t2 SET b=48552 WHERE a=12229;\nUPDATE t2 SET b=51690 WHERE a=12230;\nUPDATE t2 SET b=94703 WHERE a=12231;\nUPDATE t2 SET b=36335 WHERE a=12232;\nUPDATE t2 SET b=72968 WHERE a=12233;\nUPDATE t2 SET b=7043 WHERE a=12234;\nUPDATE t2 SET b=52577 WHERE a=12235;\nUPDATE t2 SET b=17836 WHERE a=12236;\nUPDATE t2 SET b=80401 WHERE a=12237;\nUPDATE t2 SET b=24560 WHERE a=12238;\nUPDATE t2 SET b=7696 WHERE a=12239;\nUPDATE t2 SET b=78236 WHERE a=12240;\nUPDATE t2 SET b=65713 WHERE a=12241;\nUPDATE t2 SET b=28663 WHERE a=12242;\nUPDATE t2 SET b=7395 WHERE a=12243;\nUPDATE t2 SET b=49655 WHERE a=12244;\nUPDATE t2 SET b=9979 WHERE a=12245;\nUPDATE t2 SET b=51661 WHERE a=12246;\nUPDATE t2 SET b=19209 WHERE a=12247;\nUPDATE t2 SET b=36470 WHERE a=12248;\nUPDATE t2 SET b=75982 WHERE a=12249;\nUPDATE t2 SET b=91706 WHERE a=12250;\nUPDATE t2 SET b=56695 WHERE a=12251;\nUPDATE t2 SET b=65323 WHERE a=12252;\nUPDATE t2 SET b=53228 WHERE a=12253;\nUPDATE t2 SET b=56277 WHERE a=12254;\nUPDATE t2 SET b=62014 WHERE a=12255;\nUPDATE t2 SET b=23280 WHERE a=12256;\nUPDATE t2 SET b=17654 WHERE a=12257;\nUPDATE t2 SET b=40028 WHERE a=12258;\nUPDATE t2 SET b=86365 WHERE a=12259;\nUPDATE t2 SET b=97673 WHERE a=12260;\nUPDATE t2 SET b=60137 WHERE a=12261;\nUPDATE t2 SET b=91469 WHERE a=12262;\nUPDATE t2 SET b=99253 WHERE a=12263;\nUPDATE t2 SET b=9161 WHERE a=12264;\nUPDATE t2 SET b=17204 WHERE a=12265;\nUPDATE t2 SET b=46998 WHERE a=12266;\nUPDATE t2 SET b=22176 WHERE a=12267;\nUPDATE t2 SET b=58430 WHERE a=12268;\nUPDATE t2 SET b=96941 WHERE a=12269;\nUPDATE t2 SET b=42722 WHERE a=12270;\nUPDATE t2 SET b=36207 WHERE a=12271;\nUPDATE t2 SET b=31046 WHERE a=12272;\nUPDATE t2 SET b=20276 WHERE a=12273;\nUPDATE t2 SET b=94296 WHERE a=12274;\nUPDATE t2 SET b=50295 WHERE a=12275;\nUPDATE t2 SET b=37184 WHERE a=12276;\nUPDATE t2 SET b=55709 WHERE a=12277;\nUPDATE t2 SET b=64891 WHERE a=12278;\nUPDATE t2 SET b=4833 WHERE a=12279;\nUPDATE t2 SET b=86213 WHERE a=12280;\nUPDATE t2 SET b=68910 WHERE a=12281;\nUPDATE t2 SET b=92271 WHERE a=12282;\nUPDATE t2 SET b=15305 WHERE a=12283;\nUPDATE t2 SET b=8219 WHERE a=12284;\nUPDATE t2 SET b=55762 WHERE a=12285;\nUPDATE t2 SET b=46418 WHERE a=12286;\nUPDATE t2 SET b=43432 WHERE a=12287;\nUPDATE t2 SET b=85465 WHERE a=12288;\nUPDATE t2 SET b=90663 WHERE a=12289;\nUPDATE t2 SET b=3824 WHERE a=12290;\nUPDATE t2 SET b=83877 WHERE a=12291;\nUPDATE t2 SET b=30093 WHERE a=12292;\nUPDATE t2 SET b=99286 WHERE a=12293;\nUPDATE t2 SET b=71420 WHERE a=12294;\nUPDATE t2 SET b=91841 WHERE a=12295;\nUPDATE t2 SET b=61753 WHERE a=12296;\nUPDATE t2 SET b=13210 WHERE a=12297;\nUPDATE t2 SET b=88922 WHERE a=12298;\nUPDATE t2 SET b=6523 WHERE a=12299;\nUPDATE t2 SET b=29921 WHERE a=12300;\nUPDATE t2 SET b=92826 WHERE a=12301;\nUPDATE t2 SET b=28274 WHERE a=12302;\nUPDATE t2 SET b=5932 WHERE a=12303;\nUPDATE t2 SET b=33103 WHERE a=12304;\nUPDATE t2 SET b=86335 WHERE a=12305;\nUPDATE t2 SET b=44959 WHERE a=12306;\nUPDATE t2 SET b=60855 WHERE a=12307;\nUPDATE t2 SET b=83573 WHERE a=12308;\nUPDATE t2 SET b=99449 WHERE a=12309;\nUPDATE t2 SET b=14190 WHERE a=12310;\nUPDATE t2 SET b=45643 WHERE a=12311;\nUPDATE t2 SET b=45508 WHERE a=12312;\nUPDATE t2 SET b=56778 WHERE a=12313;\nUPDATE t2 SET b=51882 WHERE a=12314;\nUPDATE t2 SET b=35614 WHERE a=12315;\nUPDATE t2 SET b=69820 WHERE a=12316;\nUPDATE t2 SET b=46256 WHERE a=12317;\nUPDATE t2 SET b=67015 WHERE a=12318;\nUPDATE t2 SET b=26479 WHERE a=12319;\nUPDATE t2 SET b=46467 WHERE a=12320;\nUPDATE t2 SET b=73002 WHERE a=12321;\nUPDATE t2 SET b=41627 WHERE a=12322;\nUPDATE t2 SET b=95401 WHERE a=12323;\nUPDATE t2 SET b=66003 WHERE a=12324;\nUPDATE t2 SET b=44376 WHERE a=12325;\nUPDATE t2 SET b=63315 WHERE a=12326;\nUPDATE t2 SET b=66899 WHERE a=12327;\nUPDATE t2 SET b=92630 WHERE a=12328;\nUPDATE t2 SET b=5881 WHERE a=12329;\nUPDATE t2 SET b=78175 WHERE a=12330;\nUPDATE t2 SET b=28386 WHERE a=12331;\nUPDATE t2 SET b=16860 WHERE a=12332;\nUPDATE t2 SET b=82305 WHERE a=12333;\nUPDATE t2 SET b=41933 WHERE a=12334;\nUPDATE t2 SET b=18811 WHERE a=12335;\nUPDATE t2 SET b=33353 WHERE a=12336;\nUPDATE t2 SET b=96727 WHERE a=12337;\nUPDATE t2 SET b=44637 WHERE a=12338;\nUPDATE t2 SET b=53061 WHERE a=12339;\nUPDATE t2 SET b=29836 WHERE a=12340;\nUPDATE t2 SET b=50220 WHERE a=12341;\nUPDATE t2 SET b=98382 WHERE a=12342;\nUPDATE t2 SET b=46495 WHERE a=12343;\nUPDATE t2 SET b=58030 WHERE a=12344;\nUPDATE t2 SET b=35826 WHERE a=12345;\nUPDATE t2 SET b=90637 WHERE a=12346;\nUPDATE t2 SET b=47496 WHERE a=12347;\nUPDATE t2 SET b=83311 WHERE a=12348;\nUPDATE t2 SET b=17407 WHERE a=12349;\nUPDATE t2 SET b=31625 WHERE a=12350;\nUPDATE t2 SET b=41813 WHERE a=12351;\nUPDATE t2 SET b=85056 WHERE a=12352;\nUPDATE t2 SET b=53301 WHERE a=12353;\nUPDATE t2 SET b=54122 WHERE a=12354;\nUPDATE t2 SET b=82599 WHERE a=12355;\nUPDATE t2 SET b=28902 WHERE a=12356;\nUPDATE t2 SET b=2917 WHERE a=12357;\nUPDATE t2 SET b=22115 WHERE a=12358;\nUPDATE t2 SET b=20151 WHERE a=12359;\nUPDATE t2 SET b=81001 WHERE a=12360;\nUPDATE t2 SET b=84104 WHERE a=12361;\nUPDATE t2 SET b=12280 WHERE a=12362;\nUPDATE t2 SET b=7948 WHERE a=12363;\nUPDATE t2 SET b=27110 WHERE a=12364;\nUPDATE t2 SET b=59118 WHERE a=12365;\nUPDATE t2 SET b=29608 WHERE a=12366;\nUPDATE t2 SET b=14748 WHERE a=12367;\nUPDATE t2 SET b=80181 WHERE a=12368;\nUPDATE t2 SET b=73972 WHERE a=12369;\nUPDATE t2 SET b=46840 WHERE a=12370;\nUPDATE t2 SET b=1805 WHERE a=12371;\nUPDATE t2 SET b=48431 WHERE a=12372;\nUPDATE t2 SET b=38323 WHERE a=12373;\nUPDATE t2 SET b=49577 WHERE a=12374;\nUPDATE t2 SET b=9058 WHERE a=12375;\nUPDATE t2 SET b=75182 WHERE a=12376;\nUPDATE t2 SET b=47245 WHERE a=12377;\nUPDATE t2 SET b=79105 WHERE a=12378;\nUPDATE t2 SET b=65739 WHERE a=12379;\nUPDATE t2 SET b=19728 WHERE a=12380;\nUPDATE t2 SET b=76566 WHERE a=12381;\nUPDATE t2 SET b=65946 WHERE a=12382;\nUPDATE t2 SET b=30707 WHERE a=12383;\nUPDATE t2 SET b=94611 WHERE a=12384;\nUPDATE t2 SET b=45447 WHERE a=12385;\nUPDATE t2 SET b=39787 WHERE a=12386;\nUPDATE t2 SET b=68331 WHERE a=12387;\nUPDATE t2 SET b=1460 WHERE a=12388;\nUPDATE t2 SET b=16243 WHERE a=12389;\nUPDATE t2 SET b=17534 WHERE a=12390;\nUPDATE t2 SET b=34172 WHERE a=12391;\nUPDATE t2 SET b=87835 WHERE a=12392;\nUPDATE t2 SET b=29404 WHERE a=12393;\nUPDATE t2 SET b=45899 WHERE a=12394;\nUPDATE t2 SET b=8343 WHERE a=12395;\nUPDATE t2 SET b=39877 WHERE a=12396;\nUPDATE t2 SET b=84311 WHERE a=12397;\nUPDATE t2 SET b=98407 WHERE a=12398;\nUPDATE t2 SET b=19489 WHERE a=12399;\nUPDATE t2 SET b=52507 WHERE a=12400;\nUPDATE t2 SET b=25667 WHERE a=12401;\nUPDATE t2 SET b=2608 WHERE a=12402;\nUPDATE t2 SET b=62116 WHERE a=12403;\nUPDATE t2 SET b=98539 WHERE a=12404;\nUPDATE t2 SET b=5554 WHERE a=12405;\nUPDATE t2 SET b=95945 WHERE a=12406;\nUPDATE t2 SET b=21579 WHERE a=12407;\nUPDATE t2 SET b=8994 WHERE a=12408;\nUPDATE t2 SET b=95190 WHERE a=12409;\nUPDATE t2 SET b=11623 WHERE a=12410;\nUPDATE t2 SET b=72819 WHERE a=12411;\nUPDATE t2 SET b=69144 WHERE a=12412;\nUPDATE t2 SET b=32508 WHERE a=12413;\nUPDATE t2 SET b=98919 WHERE a=12414;\nUPDATE t2 SET b=86139 WHERE a=12415;\nUPDATE t2 SET b=6912 WHERE a=12416;\nUPDATE t2 SET b=3578 WHERE a=12417;\nUPDATE t2 SET b=16364 WHERE a=12418;\nUPDATE t2 SET b=2558 WHERE a=12419;\nUPDATE t2 SET b=74659 WHERE a=12420;\nUPDATE t2 SET b=48078 WHERE a=12421;\nUPDATE t2 SET b=51154 WHERE a=12422;\nUPDATE t2 SET b=38856 WHERE a=12423;\nUPDATE t2 SET b=26579 WHERE a=12424;\nUPDATE t2 SET b=89220 WHERE a=12425;\nUPDATE t2 SET b=4023 WHERE a=12426;\nUPDATE t2 SET b=43644 WHERE a=12427;\nUPDATE t2 SET b=42372 WHERE a=12428;\nUPDATE t2 SET b=5128 WHERE a=12429;\nUPDATE t2 SET b=61987 WHERE a=12430;\nUPDATE t2 SET b=84698 WHERE a=12431;\nUPDATE t2 SET b=17560 WHERE a=12432;\nUPDATE t2 SET b=3659 WHERE a=12433;\nUPDATE t2 SET b=61130 WHERE a=12434;\nUPDATE t2 SET b=13466 WHERE a=12435;\nUPDATE t2 SET b=51974 WHERE a=12436;\nUPDATE t2 SET b=98380 WHERE a=12437;\nUPDATE t2 SET b=1972 WHERE a=12438;\nUPDATE t2 SET b=45671 WHERE a=12439;\nUPDATE t2 SET b=68191 WHERE a=12440;\nUPDATE t2 SET b=46203 WHERE a=12441;\nUPDATE t2 SET b=66100 WHERE a=12442;\nUPDATE t2 SET b=70784 WHERE a=12443;\nUPDATE t2 SET b=8979 WHERE a=12444;\nUPDATE t2 SET b=82810 WHERE a=12445;\nUPDATE t2 SET b=69119 WHERE a=12446;\nUPDATE t2 SET b=61710 WHERE a=12447;\nUPDATE t2 SET b=96408 WHERE a=12448;\nUPDATE t2 SET b=11364 WHERE a=12449;\nUPDATE t2 SET b=83945 WHERE a=12450;\nUPDATE t2 SET b=41105 WHERE a=12451;\nUPDATE t2 SET b=12656 WHERE a=12452;\nUPDATE t2 SET b=28178 WHERE a=12453;\nUPDATE t2 SET b=60459 WHERE a=12454;\nUPDATE t2 SET b=19707 WHERE a=12455;\nUPDATE t2 SET b=2939 WHERE a=12456;\nUPDATE t2 SET b=31409 WHERE a=12457;\nUPDATE t2 SET b=51833 WHERE a=12458;\nUPDATE t2 SET b=87917 WHERE a=12459;\nUPDATE t2 SET b=6824 WHERE a=12460;\nUPDATE t2 SET b=36150 WHERE a=12461;\nUPDATE t2 SET b=73905 WHERE a=12462;\nUPDATE t2 SET b=79828 WHERE a=12463;\nUPDATE t2 SET b=97380 WHERE a=12464;\nUPDATE t2 SET b=28594 WHERE a=12465;\nUPDATE t2 SET b=40109 WHERE a=12466;\nUPDATE t2 SET b=37884 WHERE a=12467;\nUPDATE t2 SET b=27592 WHERE a=12468;\nUPDATE t2 SET b=7014 WHERE a=12469;\nUPDATE t2 SET b=17829 WHERE a=12470;\nUPDATE t2 SET b=17328 WHERE a=12471;\nUPDATE t2 SET b=43642 WHERE a=12472;\nUPDATE t2 SET b=66725 WHERE a=12473;\nUPDATE t2 SET b=76689 WHERE a=12474;\nUPDATE t2 SET b=44687 WHERE a=12475;\nUPDATE t2 SET b=37293 WHERE a=12476;\nUPDATE t2 SET b=17518 WHERE a=12477;\nUPDATE t2 SET b=23726 WHERE a=12478;\nUPDATE t2 SET b=73393 WHERE a=12479;\nUPDATE t2 SET b=45802 WHERE a=12480;\nUPDATE t2 SET b=93329 WHERE a=12481;\nUPDATE t2 SET b=18649 WHERE a=12482;\nUPDATE t2 SET b=89487 WHERE a=12483;\nUPDATE t2 SET b=70382 WHERE a=12484;\nUPDATE t2 SET b=474 WHERE a=12485;\nUPDATE t2 SET b=87033 WHERE a=12486;\nUPDATE t2 SET b=5420 WHERE a=12487;\nUPDATE t2 SET b=41810 WHERE a=12488;\nUPDATE t2 SET b=66289 WHERE a=12489;\nUPDATE t2 SET b=43332 WHERE a=12490;\nUPDATE t2 SET b=21903 WHERE a=12491;\nUPDATE t2 SET b=35186 WHERE a=12492;\nUPDATE t2 SET b=31893 WHERE a=12493;\nUPDATE t2 SET b=21135 WHERE a=12494;\nUPDATE t2 SET b=7614 WHERE a=12495;\nUPDATE t2 SET b=85571 WHERE a=12496;\nUPDATE t2 SET b=20023 WHERE a=12497;\nUPDATE t2 SET b=68907 WHERE a=12498;\nUPDATE t2 SET b=88623 WHERE a=12499;\nUPDATE t2 SET b=67718 WHERE a=12500;\nUPDATE t2 SET b=36255 WHERE a=12501;\nUPDATE t2 SET b=99916 WHERE a=12502;\nUPDATE t2 SET b=70100 WHERE a=12503;\nUPDATE t2 SET b=98011 WHERE a=12504;\nUPDATE t2 SET b=1474 WHERE a=12505;\nUPDATE t2 SET b=79648 WHERE a=12506;\nUPDATE t2 SET b=50522 WHERE a=12507;\nUPDATE t2 SET b=17354 WHERE a=12508;\nUPDATE t2 SET b=86824 WHERE a=12509;\nUPDATE t2 SET b=57606 WHERE a=12510;\nUPDATE t2 SET b=81323 WHERE a=12511;\nUPDATE t2 SET b=28383 WHERE a=12512;\nUPDATE t2 SET b=4202 WHERE a=12513;\nUPDATE t2 SET b=90337 WHERE a=12514;\nUPDATE t2 SET b=15036 WHERE a=12515;\nUPDATE t2 SET b=2531 WHERE a=12516;\nUPDATE t2 SET b=86420 WHERE a=12517;\nUPDATE t2 SET b=55239 WHERE a=12518;\nUPDATE t2 SET b=35111 WHERE a=12519;\nUPDATE t2 SET b=59332 WHERE a=12520;\nUPDATE t2 SET b=62952 WHERE a=12521;\nUPDATE t2 SET b=91492 WHERE a=12522;\nUPDATE t2 SET b=70229 WHERE a=12523;\nUPDATE t2 SET b=16511 WHERE a=12524;\nUPDATE t2 SET b=29764 WHERE a=12525;\nUPDATE t2 SET b=4895 WHERE a=12526;\nUPDATE t2 SET b=39655 WHERE a=12527;\nUPDATE t2 SET b=95528 WHERE a=12528;\nUPDATE t2 SET b=97530 WHERE a=12529;\nUPDATE t2 SET b=72030 WHERE a=12530;\nUPDATE t2 SET b=58641 WHERE a=12531;\nUPDATE t2 SET b=67716 WHERE a=12532;\nUPDATE t2 SET b=59606 WHERE a=12533;\nUPDATE t2 SET b=84120 WHERE a=12534;\nUPDATE t2 SET b=40915 WHERE a=12535;\nUPDATE t2 SET b=30057 WHERE a=12536;\nUPDATE t2 SET b=39260 WHERE a=12537;\nUPDATE t2 SET b=12816 WHERE a=12538;\nUPDATE t2 SET b=3678 WHERE a=12539;\nUPDATE t2 SET b=24690 WHERE a=12540;\nUPDATE t2 SET b=75244 WHERE a=12541;\nUPDATE t2 SET b=70174 WHERE a=12542;\nUPDATE t2 SET b=63608 WHERE a=12543;\nUPDATE t2 SET b=75781 WHERE a=12544;\nUPDATE t2 SET b=73506 WHERE a=12545;\nUPDATE t2 SET b=92682 WHERE a=12546;\nUPDATE t2 SET b=27815 WHERE a=12547;\nUPDATE t2 SET b=63706 WHERE a=12548;\nUPDATE t2 SET b=66481 WHERE a=12549;\nUPDATE t2 SET b=47458 WHERE a=12550;\nUPDATE t2 SET b=60772 WHERE a=12551;\nUPDATE t2 SET b=96097 WHERE a=12552;\nUPDATE t2 SET b=62328 WHERE a=12553;\nUPDATE t2 SET b=85170 WHERE a=12554;\nUPDATE t2 SET b=70551 WHERE a=12555;\nUPDATE t2 SET b=4680 WHERE a=12556;\nUPDATE t2 SET b=38802 WHERE a=12557;\nUPDATE t2 SET b=73472 WHERE a=12558;\nUPDATE t2 SET b=16987 WHERE a=12559;\nUPDATE t2 SET b=24254 WHERE a=12560;\nUPDATE t2 SET b=82907 WHERE a=12561;\nUPDATE t2 SET b=37983 WHERE a=12562;\nUPDATE t2 SET b=2480 WHERE a=12563;\nUPDATE t2 SET b=67515 WHERE a=12564;\nUPDATE t2 SET b=26553 WHERE a=12565;\nUPDATE t2 SET b=35587 WHERE a=12566;\nUPDATE t2 SET b=44563 WHERE a=12567;\nUPDATE t2 SET b=35143 WHERE a=12568;\nUPDATE t2 SET b=30818 WHERE a=12569;\nUPDATE t2 SET b=83599 WHERE a=12570;\nUPDATE t2 SET b=6557 WHERE a=12571;\nUPDATE t2 SET b=82241 WHERE a=12572;\nUPDATE t2 SET b=44716 WHERE a=12573;\nUPDATE t2 SET b=50316 WHERE a=12574;\nUPDATE t2 SET b=18216 WHERE a=12575;\nUPDATE t2 SET b=9706 WHERE a=12576;\nUPDATE t2 SET b=90926 WHERE a=12577;\nUPDATE t2 SET b=54896 WHERE a=12578;\nUPDATE t2 SET b=90949 WHERE a=12579;\nUPDATE t2 SET b=96502 WHERE a=12580;\nUPDATE t2 SET b=63371 WHERE a=12581;\nUPDATE t2 SET b=65307 WHERE a=12582;\nUPDATE t2 SET b=15365 WHERE a=12583;\nUPDATE t2 SET b=39370 WHERE a=12584;\nUPDATE t2 SET b=1701 WHERE a=12585;\nUPDATE t2 SET b=52378 WHERE a=12586;\nUPDATE t2 SET b=97431 WHERE a=12587;\nUPDATE t2 SET b=23070 WHERE a=12588;\nUPDATE t2 SET b=86353 WHERE a=12589;\nUPDATE t2 SET b=94208 WHERE a=12590;\nUPDATE t2 SET b=3433 WHERE a=12591;\nUPDATE t2 SET b=30822 WHERE a=12592;\nUPDATE t2 SET b=69577 WHERE a=12593;\nUPDATE t2 SET b=6604 WHERE a=12594;\nUPDATE t2 SET b=93876 WHERE a=12595;\nUPDATE t2 SET b=68922 WHERE a=12596;\nUPDATE t2 SET b=34409 WHERE a=12597;\nUPDATE t2 SET b=4977 WHERE a=12598;\nUPDATE t2 SET b=66364 WHERE a=12599;\nUPDATE t2 SET b=78589 WHERE a=12600;\nUPDATE t2 SET b=14684 WHERE a=12601;\nUPDATE t2 SET b=18927 WHERE a=12602;\nUPDATE t2 SET b=82498 WHERE a=12603;\nUPDATE t2 SET b=53728 WHERE a=12604;\nUPDATE t2 SET b=42966 WHERE a=12605;\nUPDATE t2 SET b=64473 WHERE a=12606;\nUPDATE t2 SET b=88425 WHERE a=12607;\nUPDATE t2 SET b=64085 WHERE a=12608;\nUPDATE t2 SET b=77588 WHERE a=12609;\nUPDATE t2 SET b=53406 WHERE a=12610;\nUPDATE t2 SET b=67168 WHERE a=12611;\nUPDATE t2 SET b=41655 WHERE a=12612;\nUPDATE t2 SET b=36461 WHERE a=12613;\nUPDATE t2 SET b=19805 WHERE a=12614;\nUPDATE t2 SET b=47678 WHERE a=12615;\nUPDATE t2 SET b=22918 WHERE a=12616;\nUPDATE t2 SET b=84119 WHERE a=12617;\nUPDATE t2 SET b=16602 WHERE a=12618;\nUPDATE t2 SET b=48842 WHERE a=12619;\nUPDATE t2 SET b=94052 WHERE a=12620;\nUPDATE t2 SET b=41028 WHERE a=12621;\nUPDATE t2 SET b=1337 WHERE a=12622;\nUPDATE t2 SET b=60070 WHERE a=12623;\nUPDATE t2 SET b=98955 WHERE a=12624;\nUPDATE t2 SET b=84553 WHERE a=12625;\nUPDATE t2 SET b=67258 WHERE a=12626;\nUPDATE t2 SET b=6987 WHERE a=12627;\nUPDATE t2 SET b=26715 WHERE a=12628;\nUPDATE t2 SET b=70082 WHERE a=12629;\nUPDATE t2 SET b=80913 WHERE a=12630;\nUPDATE t2 SET b=25224 WHERE a=12631;\nUPDATE t2 SET b=66116 WHERE a=12632;\nUPDATE t2 SET b=30622 WHERE a=12633;\nUPDATE t2 SET b=1627 WHERE a=12634;\nUPDATE t2 SET b=45173 WHERE a=12635;\nUPDATE t2 SET b=32839 WHERE a=12636;\nUPDATE t2 SET b=44527 WHERE a=12637;\nUPDATE t2 SET b=79672 WHERE a=12638;\nUPDATE t2 SET b=95081 WHERE a=12639;\nUPDATE t2 SET b=6171 WHERE a=12640;\nUPDATE t2 SET b=35194 WHERE a=12641;\nUPDATE t2 SET b=4056 WHERE a=12642;\nUPDATE t2 SET b=83848 WHERE a=12643;\nUPDATE t2 SET b=12202 WHERE a=12644;\nUPDATE t2 SET b=82981 WHERE a=12645;\nUPDATE t2 SET b=81394 WHERE a=12646;\nUPDATE t2 SET b=65014 WHERE a=12647;\nUPDATE t2 SET b=17607 WHERE a=12648;\nUPDATE t2 SET b=70159 WHERE a=12649;\nUPDATE t2 SET b=92412 WHERE a=12650;\nUPDATE t2 SET b=3835 WHERE a=12651;\nUPDATE t2 SET b=55770 WHERE a=12652;\nUPDATE t2 SET b=48307 WHERE a=12653;\nUPDATE t2 SET b=37177 WHERE a=12654;\nUPDATE t2 SET b=16035 WHERE a=12655;\nUPDATE t2 SET b=88292 WHERE a=12656;\nUPDATE t2 SET b=27176 WHERE a=12657;\nUPDATE t2 SET b=50364 WHERE a=12658;\nUPDATE t2 SET b=12041 WHERE a=12659;\nUPDATE t2 SET b=20171 WHERE a=12660;\nUPDATE t2 SET b=40467 WHERE a=12661;\nUPDATE t2 SET b=5618 WHERE a=12662;\nUPDATE t2 SET b=2224 WHERE a=12663;\nUPDATE t2 SET b=96047 WHERE a=12664;\nUPDATE t2 SET b=48560 WHERE a=12665;\nUPDATE t2 SET b=60274 WHERE a=12666;\nUPDATE t2 SET b=25398 WHERE a=12667;\nUPDATE t2 SET b=45693 WHERE a=12668;\nUPDATE t2 SET b=48155 WHERE a=12669;\nUPDATE t2 SET b=44245 WHERE a=12670;\nUPDATE t2 SET b=93583 WHERE a=12671;\nUPDATE t2 SET b=18845 WHERE a=12672;\nUPDATE t2 SET b=10880 WHERE a=12673;\nUPDATE t2 SET b=28304 WHERE a=12674;\nUPDATE t2 SET b=76669 WHERE a=12675;\nUPDATE t2 SET b=52701 WHERE a=12676;\nUPDATE t2 SET b=83022 WHERE a=12677;\nUPDATE t2 SET b=15397 WHERE a=12678;\nUPDATE t2 SET b=21736 WHERE a=12679;\nUPDATE t2 SET b=28522 WHERE a=12680;\nUPDATE t2 SET b=80429 WHERE a=12681;\nUPDATE t2 SET b=79416 WHERE a=12682;\nUPDATE t2 SET b=59862 WHERE a=12683;\nUPDATE t2 SET b=5153 WHERE a=12684;\nUPDATE t2 SET b=18961 WHERE a=12685;\nUPDATE t2 SET b=12301 WHERE a=12686;\nUPDATE t2 SET b=35498 WHERE a=12687;\nUPDATE t2 SET b=8922 WHERE a=12688;\nUPDATE t2 SET b=45882 WHERE a=12689;\nUPDATE t2 SET b=83192 WHERE a=12690;\nUPDATE t2 SET b=78556 WHERE a=12691;\nUPDATE t2 SET b=39241 WHERE a=12692;\nUPDATE t2 SET b=67992 WHERE a=12693;\nUPDATE t2 SET b=71257 WHERE a=12694;\nUPDATE t2 SET b=87507 WHERE a=12695;\nUPDATE t2 SET b=67198 WHERE a=12696;\nUPDATE t2 SET b=41727 WHERE a=12697;\nUPDATE t2 SET b=18331 WHERE a=12698;\nUPDATE t2 SET b=37090 WHERE a=12699;\nUPDATE t2 SET b=7177 WHERE a=12700;\nUPDATE t2 SET b=74969 WHERE a=12701;\nUPDATE t2 SET b=24028 WHERE a=12702;\nUPDATE t2 SET b=94694 WHERE a=12703;\nUPDATE t2 SET b=66296 WHERE a=12704;\nUPDATE t2 SET b=39061 WHERE a=12705;\nUPDATE t2 SET b=44630 WHERE a=12706;\nUPDATE t2 SET b=96847 WHERE a=12707;\nUPDATE t2 SET b=30560 WHERE a=12708;\nUPDATE t2 SET b=69657 WHERE a=12709;\nUPDATE t2 SET b=45131 WHERE a=12710;\nUPDATE t2 SET b=3817 WHERE a=12711;\nUPDATE t2 SET b=26610 WHERE a=12712;\nUPDATE t2 SET b=10607 WHERE a=12713;\nUPDATE t2 SET b=85175 WHERE a=12714;\nUPDATE t2 SET b=35017 WHERE a=12715;\nUPDATE t2 SET b=46685 WHERE a=12716;\nUPDATE t2 SET b=95181 WHERE a=12717;\nUPDATE t2 SET b=82638 WHERE a=12718;\nUPDATE t2 SET b=10001 WHERE a=12719;\nUPDATE t2 SET b=85420 WHERE a=12720;\nUPDATE t2 SET b=48635 WHERE a=12721;\nUPDATE t2 SET b=85126 WHERE a=12722;\nUPDATE t2 SET b=70955 WHERE a=12723;\nUPDATE t2 SET b=33047 WHERE a=12724;\nUPDATE t2 SET b=11279 WHERE a=12725;\nUPDATE t2 SET b=43006 WHERE a=12726;\nUPDATE t2 SET b=98055 WHERE a=12727;\nUPDATE t2 SET b=34935 WHERE a=12728;\nUPDATE t2 SET b=18940 WHERE a=12729;\nUPDATE t2 SET b=60367 WHERE a=12730;\nUPDATE t2 SET b=91507 WHERE a=12731;\nUPDATE t2 SET b=23412 WHERE a=12732;\nUPDATE t2 SET b=105 WHERE a=12733;\nUPDATE t2 SET b=8538 WHERE a=12734;\nUPDATE t2 SET b=61254 WHERE a=12735;\nUPDATE t2 SET b=78399 WHERE a=12736;\nUPDATE t2 SET b=54067 WHERE a=12737;\nUPDATE t2 SET b=61349 WHERE a=12738;\nUPDATE t2 SET b=41485 WHERE a=12739;\nUPDATE t2 SET b=51556 WHERE a=12740;\nUPDATE t2 SET b=5671 WHERE a=12741;\nUPDATE t2 SET b=39559 WHERE a=12742;\nUPDATE t2 SET b=80231 WHERE a=12743;\nUPDATE t2 SET b=16703 WHERE a=12744;\nUPDATE t2 SET b=23193 WHERE a=12745;\nUPDATE t2 SET b=9322 WHERE a=12746;\nUPDATE t2 SET b=51878 WHERE a=12747;\nUPDATE t2 SET b=44574 WHERE a=12748;\nUPDATE t2 SET b=43275 WHERE a=12749;\nUPDATE t2 SET b=56009 WHERE a=12750;\nUPDATE t2 SET b=71880 WHERE a=12751;\nUPDATE t2 SET b=24758 WHERE a=12752;\nUPDATE t2 SET b=34616 WHERE a=12753;\nUPDATE t2 SET b=2956 WHERE a=12754;\nUPDATE t2 SET b=73955 WHERE a=12755;\nUPDATE t2 SET b=35942 WHERE a=12756;\nUPDATE t2 SET b=48430 WHERE a=12757;\nUPDATE t2 SET b=56874 WHERE a=12758;\nUPDATE t2 SET b=62434 WHERE a=12759;\nUPDATE t2 SET b=11282 WHERE a=12760;\nUPDATE t2 SET b=52436 WHERE a=12761;\nUPDATE t2 SET b=13506 WHERE a=12762;\nUPDATE t2 SET b=31264 WHERE a=12763;\nUPDATE t2 SET b=9435 WHERE a=12764;\nUPDATE t2 SET b=74276 WHERE a=12765;\nUPDATE t2 SET b=24787 WHERE a=12766;\nUPDATE t2 SET b=60218 WHERE a=12767;\nUPDATE t2 SET b=42230 WHERE a=12768;\nUPDATE t2 SET b=82741 WHERE a=12769;\nUPDATE t2 SET b=91460 WHERE a=12770;\nUPDATE t2 SET b=7260 WHERE a=12771;\nUPDATE t2 SET b=43696 WHERE a=12772;\nUPDATE t2 SET b=88032 WHERE a=12773;\nUPDATE t2 SET b=48011 WHERE a=12774;\nUPDATE t2 SET b=13235 WHERE a=12775;\nUPDATE t2 SET b=96924 WHERE a=12776;\nUPDATE t2 SET b=86703 WHERE a=12777;\nUPDATE t2 SET b=39217 WHERE a=12778;\nUPDATE t2 SET b=50410 WHERE a=12779;\nUPDATE t2 SET b=59789 WHERE a=12780;\nUPDATE t2 SET b=36960 WHERE a=12781;\nUPDATE t2 SET b=81967 WHERE a=12782;\nUPDATE t2 SET b=49162 WHERE a=12783;\nUPDATE t2 SET b=47116 WHERE a=12784;\nUPDATE t2 SET b=88214 WHERE a=12785;\nUPDATE t2 SET b=44388 WHERE a=12786;\nUPDATE t2 SET b=39624 WHERE a=12787;\nUPDATE t2 SET b=75554 WHERE a=12788;\nUPDATE t2 SET b=12559 WHERE a=12789;\nUPDATE t2 SET b=76107 WHERE a=12790;\nUPDATE t2 SET b=44716 WHERE a=12791;\nUPDATE t2 SET b=35647 WHERE a=12792;\nUPDATE t2 SET b=53275 WHERE a=12793;\nUPDATE t2 SET b=18519 WHERE a=12794;\nUPDATE t2 SET b=45638 WHERE a=12795;\nUPDATE t2 SET b=30130 WHERE a=12796;\nUPDATE t2 SET b=45682 WHERE a=12797;\nUPDATE t2 SET b=99979 WHERE a=12798;\nUPDATE t2 SET b=40659 WHERE a=12799;\nUPDATE t2 SET b=77059 WHERE a=12800;\nUPDATE t2 SET b=36241 WHERE a=12801;\nUPDATE t2 SET b=89287 WHERE a=12802;\nUPDATE t2 SET b=37909 WHERE a=12803;\nUPDATE t2 SET b=84869 WHERE a=12804;\nUPDATE t2 SET b=99122 WHERE a=12805;\nUPDATE t2 SET b=61485 WHERE a=12806;\nUPDATE t2 SET b=21573 WHERE a=12807;\nUPDATE t2 SET b=1390 WHERE a=12808;\nUPDATE t2 SET b=51218 WHERE a=12809;\nUPDATE t2 SET b=89956 WHERE a=12810;\nUPDATE t2 SET b=31485 WHERE a=12811;\nUPDATE t2 SET b=60648 WHERE a=12812;\nUPDATE t2 SET b=32444 WHERE a=12813;\nUPDATE t2 SET b=85590 WHERE a=12814;\nUPDATE t2 SET b=97578 WHERE a=12815;\nUPDATE t2 SET b=46839 WHERE a=12816;\nUPDATE t2 SET b=84736 WHERE a=12817;\nUPDATE t2 SET b=80280 WHERE a=12818;\nUPDATE t2 SET b=82936 WHERE a=12819;\nUPDATE t2 SET b=23387 WHERE a=12820;\nUPDATE t2 SET b=37589 WHERE a=12821;\nUPDATE t2 SET b=433 WHERE a=12822;\nUPDATE t2 SET b=69015 WHERE a=12823;\nUPDATE t2 SET b=28230 WHERE a=12824;\nUPDATE t2 SET b=70134 WHERE a=12825;\nUPDATE t2 SET b=21696 WHERE a=12826;\nUPDATE t2 SET b=94862 WHERE a=12827;\nUPDATE t2 SET b=72132 WHERE a=12828;\nUPDATE t2 SET b=78644 WHERE a=12829;\nUPDATE t2 SET b=37594 WHERE a=12830;\nUPDATE t2 SET b=38950 WHERE a=12831;\nUPDATE t2 SET b=39457 WHERE a=12832;\nUPDATE t2 SET b=74350 WHERE a=12833;\nUPDATE t2 SET b=54475 WHERE a=12834;\nUPDATE t2 SET b=41707 WHERE a=12835;\nUPDATE t2 SET b=87500 WHERE a=12836;\nUPDATE t2 SET b=69695 WHERE a=12837;\nUPDATE t2 SET b=52383 WHERE a=12838;\nUPDATE t2 SET b=25756 WHERE a=12839;\nUPDATE t2 SET b=9802 WHERE a=12840;\nUPDATE t2 SET b=43 WHERE a=12841;\nUPDATE t2 SET b=7912 WHERE a=12842;\nUPDATE t2 SET b=40982 WHERE a=12843;\nUPDATE t2 SET b=23031 WHERE a=12844;\nUPDATE t2 SET b=1729 WHERE a=12845;\nUPDATE t2 SET b=89250 WHERE a=12846;\nUPDATE t2 SET b=67636 WHERE a=12847;\nUPDATE t2 SET b=91065 WHERE a=12848;\nUPDATE t2 SET b=97052 WHERE a=12849;\nUPDATE t2 SET b=77837 WHERE a=12850;\nUPDATE t2 SET b=77342 WHERE a=12851;\nUPDATE t2 SET b=24164 WHERE a=12852;\nUPDATE t2 SET b=40663 WHERE a=12853;\nUPDATE t2 SET b=77212 WHERE a=12854;\nUPDATE t2 SET b=64195 WHERE a=12855;\nUPDATE t2 SET b=89050 WHERE a=12856;\nUPDATE t2 SET b=19710 WHERE a=12857;\nUPDATE t2 SET b=54591 WHERE a=12858;\nUPDATE t2 SET b=21774 WHERE a=12859;\nUPDATE t2 SET b=54848 WHERE a=12860;\nUPDATE t2 SET b=85827 WHERE a=12861;\nUPDATE t2 SET b=51375 WHERE a=12862;\nUPDATE t2 SET b=65640 WHERE a=12863;\nUPDATE t2 SET b=57831 WHERE a=12864;\nUPDATE t2 SET b=4814 WHERE a=12865;\nUPDATE t2 SET b=76999 WHERE a=12866;\nUPDATE t2 SET b=33028 WHERE a=12867;\nUPDATE t2 SET b=77047 WHERE a=12868;\nUPDATE t2 SET b=36006 WHERE a=12869;\nUPDATE t2 SET b=11911 WHERE a=12870;\nUPDATE t2 SET b=45774 WHERE a=12871;\nUPDATE t2 SET b=10558 WHERE a=12872;\nUPDATE t2 SET b=10342 WHERE a=12873;\nUPDATE t2 SET b=815 WHERE a=12874;\nUPDATE t2 SET b=52465 WHERE a=12875;\nUPDATE t2 SET b=60874 WHERE a=12876;\nUPDATE t2 SET b=32998 WHERE a=12877;\nUPDATE t2 SET b=6416 WHERE a=12878;\nUPDATE t2 SET b=11287 WHERE a=12879;\nUPDATE t2 SET b=81143 WHERE a=12880;\nUPDATE t2 SET b=67012 WHERE a=12881;\nUPDATE t2 SET b=72490 WHERE a=12882;\nUPDATE t2 SET b=46731 WHERE a=12883;\nUPDATE t2 SET b=37731 WHERE a=12884;\nUPDATE t2 SET b=67438 WHERE a=12885;\nUPDATE t2 SET b=15398 WHERE a=12886;\nUPDATE t2 SET b=56341 WHERE a=12887;\nUPDATE t2 SET b=7280 WHERE a=12888;\nUPDATE t2 SET b=46412 WHERE a=12889;\nUPDATE t2 SET b=21762 WHERE a=12890;\nUPDATE t2 SET b=61769 WHERE a=12891;\nUPDATE t2 SET b=1859 WHERE a=12892;\nUPDATE t2 SET b=52329 WHERE a=12893;\nUPDATE t2 SET b=49753 WHERE a=12894;\nUPDATE t2 SET b=90670 WHERE a=12895;\nUPDATE t2 SET b=38468 WHERE a=12896;\nUPDATE t2 SET b=24340 WHERE a=12897;\nUPDATE t2 SET b=7024 WHERE a=12898;\nUPDATE t2 SET b=26737 WHERE a=12899;\nUPDATE t2 SET b=27843 WHERE a=12900;\nUPDATE t2 SET b=4030 WHERE a=12901;\nUPDATE t2 SET b=41845 WHERE a=12902;\nUPDATE t2 SET b=57204 WHERE a=12903;\nUPDATE t2 SET b=99427 WHERE a=12904;\nUPDATE t2 SET b=19949 WHERE a=12905;\nUPDATE t2 SET b=64463 WHERE a=12906;\nUPDATE t2 SET b=14965 WHERE a=12907;\nUPDATE t2 SET b=59323 WHERE a=12908;\nUPDATE t2 SET b=4872 WHERE a=12909;\nUPDATE t2 SET b=24366 WHERE a=12910;\nUPDATE t2 SET b=71525 WHERE a=12911;\nUPDATE t2 SET b=40280 WHERE a=12912;\nUPDATE t2 SET b=98326 WHERE a=12913;\nUPDATE t2 SET b=11229 WHERE a=12914;\nUPDATE t2 SET b=17165 WHERE a=12915;\nUPDATE t2 SET b=5427 WHERE a=12916;\nUPDATE t2 SET b=35575 WHERE a=12917;\nUPDATE t2 SET b=99386 WHERE a=12918;\nUPDATE t2 SET b=99430 WHERE a=12919;\nUPDATE t2 SET b=20447 WHERE a=12920;\nUPDATE t2 SET b=14746 WHERE a=12921;\nUPDATE t2 SET b=62857 WHERE a=12922;\nUPDATE t2 SET b=86489 WHERE a=12923;\nUPDATE t2 SET b=39840 WHERE a=12924;\nUPDATE t2 SET b=1882 WHERE a=12925;\nUPDATE t2 SET b=17919 WHERE a=12926;\nUPDATE t2 SET b=63778 WHERE a=12927;\nUPDATE t2 SET b=64609 WHERE a=12928;\nUPDATE t2 SET b=64250 WHERE a=12929;\nUPDATE t2 SET b=83621 WHERE a=12930;\nUPDATE t2 SET b=65537 WHERE a=12931;\nUPDATE t2 SET b=53599 WHERE a=12932;\nUPDATE t2 SET b=59384 WHERE a=12933;\nUPDATE t2 SET b=34104 WHERE a=12934;\nUPDATE t2 SET b=97597 WHERE a=12935;\nUPDATE t2 SET b=25854 WHERE a=12936;\nUPDATE t2 SET b=12579 WHERE a=12937;\nUPDATE t2 SET b=54635 WHERE a=12938;\nUPDATE t2 SET b=44054 WHERE a=12939;\nUPDATE t2 SET b=77641 WHERE a=12940;\nUPDATE t2 SET b=50719 WHERE a=12941;\nUPDATE t2 SET b=584 WHERE a=12942;\nUPDATE t2 SET b=46375 WHERE a=12943;\nUPDATE t2 SET b=23225 WHERE a=12944;\nUPDATE t2 SET b=80648 WHERE a=12945;\nUPDATE t2 SET b=90614 WHERE a=12946;\nUPDATE t2 SET b=53497 WHERE a=12947;\nUPDATE t2 SET b=64317 WHERE a=12948;\nUPDATE t2 SET b=72026 WHERE a=12949;\nUPDATE t2 SET b=15483 WHERE a=12950;\nUPDATE t2 SET b=10370 WHERE a=12951;\nUPDATE t2 SET b=16891 WHERE a=12952;\nUPDATE t2 SET b=31405 WHERE a=12953;\nUPDATE t2 SET b=82916 WHERE a=12954;\nUPDATE t2 SET b=63457 WHERE a=12955;\nUPDATE t2 SET b=79756 WHERE a=12956;\nUPDATE t2 SET b=89832 WHERE a=12957;\nUPDATE t2 SET b=76015 WHERE a=12958;\nUPDATE t2 SET b=79949 WHERE a=12959;\nUPDATE t2 SET b=58807 WHERE a=12960;\nUPDATE t2 SET b=74316 WHERE a=12961;\nUPDATE t2 SET b=94463 WHERE a=12962;\nUPDATE t2 SET b=18582 WHERE a=12963;\nUPDATE t2 SET b=74052 WHERE a=12964;\nUPDATE t2 SET b=68550 WHERE a=12965;\nUPDATE t2 SET b=12226 WHERE a=12966;\nUPDATE t2 SET b=14364 WHERE a=12967;\nUPDATE t2 SET b=731 WHERE a=12968;\nUPDATE t2 SET b=91187 WHERE a=12969;\nUPDATE t2 SET b=25190 WHERE a=12970;\nUPDATE t2 SET b=85507 WHERE a=12971;\nUPDATE t2 SET b=94362 WHERE a=12972;\nUPDATE t2 SET b=87555 WHERE a=12973;\nUPDATE t2 SET b=29132 WHERE a=12974;\nUPDATE t2 SET b=89686 WHERE a=12975;\nUPDATE t2 SET b=60861 WHERE a=12976;\nUPDATE t2 SET b=66674 WHERE a=12977;\nUPDATE t2 SET b=56663 WHERE a=12978;\nUPDATE t2 SET b=98267 WHERE a=12979;\nUPDATE t2 SET b=75054 WHERE a=12980;\nUPDATE t2 SET b=49539 WHERE a=12981;\nUPDATE t2 SET b=89726 WHERE a=12982;\nUPDATE t2 SET b=86771 WHERE a=12983;\nUPDATE t2 SET b=27740 WHERE a=12984;\nUPDATE t2 SET b=57618 WHERE a=12985;\nUPDATE t2 SET b=2165 WHERE a=12986;\nUPDATE t2 SET b=6267 WHERE a=12987;\nUPDATE t2 SET b=8009 WHERE a=12988;\nUPDATE t2 SET b=39779 WHERE a=12989;\nUPDATE t2 SET b=1306 WHERE a=12990;\nUPDATE t2 SET b=41719 WHERE a=12991;\nUPDATE t2 SET b=94330 WHERE a=12992;\nUPDATE t2 SET b=15315 WHERE a=12993;\nUPDATE t2 SET b=23943 WHERE a=12994;\nUPDATE t2 SET b=62736 WHERE a=12995;\nUPDATE t2 SET b=66539 WHERE a=12996;\nUPDATE t2 SET b=62134 WHERE a=12997;\nUPDATE t2 SET b=76702 WHERE a=12998;\nUPDATE t2 SET b=4766 WHERE a=12999;\nUPDATE t2 SET b=68165 WHERE a=13000;\nUPDATE t2 SET b=70962 WHERE a=13001;\nUPDATE t2 SET b=63416 WHERE a=13002;\nUPDATE t2 SET b=99570 WHERE a=13003;\nUPDATE t2 SET b=3669 WHERE a=13004;\nUPDATE t2 SET b=47609 WHERE a=13005;\nUPDATE t2 SET b=12789 WHERE a=13006;\nUPDATE t2 SET b=53861 WHERE a=13007;\nUPDATE t2 SET b=3722 WHERE a=13008;\nUPDATE t2 SET b=87735 WHERE a=13009;\nUPDATE t2 SET b=65285 WHERE a=13010;\nUPDATE t2 SET b=35745 WHERE a=13011;\nUPDATE t2 SET b=9527 WHERE a=13012;\nUPDATE t2 SET b=87368 WHERE a=13013;\nUPDATE t2 SET b=42261 WHERE a=13014;\nUPDATE t2 SET b=79199 WHERE a=13015;\nUPDATE t2 SET b=71466 WHERE a=13016;\nUPDATE t2 SET b=781 WHERE a=13017;\nUPDATE t2 SET b=36256 WHERE a=13018;\nUPDATE t2 SET b=5657 WHERE a=13019;\nUPDATE t2 SET b=87440 WHERE a=13020;\nUPDATE t2 SET b=49837 WHERE a=13021;\nUPDATE t2 SET b=4305 WHERE a=13022;\nUPDATE t2 SET b=95036 WHERE a=13023;\nUPDATE t2 SET b=66344 WHERE a=13024;\nUPDATE t2 SET b=84835 WHERE a=13025;\nUPDATE t2 SET b=37671 WHERE a=13026;\nUPDATE t2 SET b=68445 WHERE a=13027;\nUPDATE t2 SET b=36762 WHERE a=13028;\nUPDATE t2 SET b=56618 WHERE a=13029;\nUPDATE t2 SET b=35079 WHERE a=13030;\nUPDATE t2 SET b=45383 WHERE a=13031;\nUPDATE t2 SET b=70427 WHERE a=13032;\nUPDATE t2 SET b=40384 WHERE a=13033;\nUPDATE t2 SET b=11265 WHERE a=13034;\nUPDATE t2 SET b=43759 WHERE a=13035;\nUPDATE t2 SET b=92637 WHERE a=13036;\nUPDATE t2 SET b=46549 WHERE a=13037;\nUPDATE t2 SET b=54537 WHERE a=13038;\nUPDATE t2 SET b=24662 WHERE a=13039;\nUPDATE t2 SET b=39120 WHERE a=13040;\nUPDATE t2 SET b=1573 WHERE a=13041;\nUPDATE t2 SET b=30391 WHERE a=13042;\nUPDATE t2 SET b=48044 WHERE a=13043;\nUPDATE t2 SET b=14231 WHERE a=13044;\nUPDATE t2 SET b=21498 WHERE a=13045;\nUPDATE t2 SET b=95761 WHERE a=13046;\nUPDATE t2 SET b=65609 WHERE a=13047;\nUPDATE t2 SET b=85521 WHERE a=13048;\nUPDATE t2 SET b=53164 WHERE a=13049;\nUPDATE t2 SET b=79946 WHERE a=13050;\nUPDATE t2 SET b=18467 WHERE a=13051;\nUPDATE t2 SET b=99031 WHERE a=13052;\nUPDATE t2 SET b=49998 WHERE a=13053;\nUPDATE t2 SET b=35647 WHERE a=13054;\nUPDATE t2 SET b=31965 WHERE a=13055;\nUPDATE t2 SET b=95415 WHERE a=13056;\nUPDATE t2 SET b=660 WHERE a=13057;\nUPDATE t2 SET b=1711 WHERE a=13058;\nUPDATE t2 SET b=42119 WHERE a=13059;\nUPDATE t2 SET b=47628 WHERE a=13060;\nUPDATE t2 SET b=61296 WHERE a=13061;\nUPDATE t2 SET b=20495 WHERE a=13062;\nUPDATE t2 SET b=25779 WHERE a=13063;\nUPDATE t2 SET b=7307 WHERE a=13064;\nUPDATE t2 SET b=39725 WHERE a=13065;\nUPDATE t2 SET b=91814 WHERE a=13066;\nUPDATE t2 SET b=20963 WHERE a=13067;\nUPDATE t2 SET b=91586 WHERE a=13068;\nUPDATE t2 SET b=4957 WHERE a=13069;\nUPDATE t2 SET b=47688 WHERE a=13070;\nUPDATE t2 SET b=8062 WHERE a=13071;\nUPDATE t2 SET b=42251 WHERE a=13072;\nUPDATE t2 SET b=18781 WHERE a=13073;\nUPDATE t2 SET b=78259 WHERE a=13074;\nUPDATE t2 SET b=89652 WHERE a=13075;\nUPDATE t2 SET b=26780 WHERE a=13076;\nUPDATE t2 SET b=53605 WHERE a=13077;\nUPDATE t2 SET b=51194 WHERE a=13078;\nUPDATE t2 SET b=76527 WHERE a=13079;\nUPDATE t2 SET b=87202 WHERE a=13080;\nUPDATE t2 SET b=86512 WHERE a=13081;\nUPDATE t2 SET b=90225 WHERE a=13082;\nUPDATE t2 SET b=4048 WHERE a=13083;\nUPDATE t2 SET b=74776 WHERE a=13084;\nUPDATE t2 SET b=31437 WHERE a=13085;\nUPDATE t2 SET b=50401 WHERE a=13086;\nUPDATE t2 SET b=68775 WHERE a=13087;\nUPDATE t2 SET b=7137 WHERE a=13088;\nUPDATE t2 SET b=68345 WHERE a=13089;\nUPDATE t2 SET b=48513 WHERE a=13090;\nUPDATE t2 SET b=55644 WHERE a=13091;\nUPDATE t2 SET b=4478 WHERE a=13092;\nUPDATE t2 SET b=45085 WHERE a=13093;\nUPDATE t2 SET b=88082 WHERE a=13094;\nUPDATE t2 SET b=47434 WHERE a=13095;\nUPDATE t2 SET b=79701 WHERE a=13096;\nUPDATE t2 SET b=64597 WHERE a=13097;\nUPDATE t2 SET b=3695 WHERE a=13098;\nUPDATE t2 SET b=80956 WHERE a=13099;\nUPDATE t2 SET b=77393 WHERE a=13100;\nUPDATE t2 SET b=47009 WHERE a=13101;\nUPDATE t2 SET b=1090 WHERE a=13102;\nUPDATE t2 SET b=42950 WHERE a=13103;\nUPDATE t2 SET b=8074 WHERE a=13104;\nUPDATE t2 SET b=75062 WHERE a=13105;\nUPDATE t2 SET b=3091 WHERE a=13106;\nUPDATE t2 SET b=335 WHERE a=13107;\nUPDATE t2 SET b=66127 WHERE a=13108;\nUPDATE t2 SET b=83057 WHERE a=13109;\nUPDATE t2 SET b=94390 WHERE a=13110;\nUPDATE t2 SET b=66121 WHERE a=13111;\nUPDATE t2 SET b=73173 WHERE a=13112;\nUPDATE t2 SET b=697 WHERE a=13113;\nUPDATE t2 SET b=2666 WHERE a=13114;\nUPDATE t2 SET b=13455 WHERE a=13115;\nUPDATE t2 SET b=57127 WHERE a=13116;\nUPDATE t2 SET b=89950 WHERE a=13117;\nUPDATE t2 SET b=77808 WHERE a=13118;\nUPDATE t2 SET b=57433 WHERE a=13119;\nUPDATE t2 SET b=81918 WHERE a=13120;\nUPDATE t2 SET b=66307 WHERE a=13121;\nUPDATE t2 SET b=52927 WHERE a=13122;\nUPDATE t2 SET b=81884 WHERE a=13123;\nUPDATE t2 SET b=36407 WHERE a=13124;\nUPDATE t2 SET b=66677 WHERE a=13125;\nUPDATE t2 SET b=41428 WHERE a=13126;\nUPDATE t2 SET b=22418 WHERE a=13127;\nUPDATE t2 SET b=12712 WHERE a=13128;\nUPDATE t2 SET b=58248 WHERE a=13129;\nUPDATE t2 SET b=11639 WHERE a=13130;\nUPDATE t2 SET b=34383 WHERE a=13131;\nUPDATE t2 SET b=3162 WHERE a=13132;\nUPDATE t2 SET b=18723 WHERE a=13133;\nUPDATE t2 SET b=39433 WHERE a=13134;\nUPDATE t2 SET b=73473 WHERE a=13135;\nUPDATE t2 SET b=84482 WHERE a=13136;\nUPDATE t2 SET b=47776 WHERE a=13137;\nUPDATE t2 SET b=33394 WHERE a=13138;\nUPDATE t2 SET b=82344 WHERE a=13139;\nUPDATE t2 SET b=25003 WHERE a=13140;\nUPDATE t2 SET b=38275 WHERE a=13141;\nUPDATE t2 SET b=47935 WHERE a=13142;\nUPDATE t2 SET b=20391 WHERE a=13143;\nUPDATE t2 SET b=86405 WHERE a=13144;\nUPDATE t2 SET b=92722 WHERE a=13145;\nUPDATE t2 SET b=57450 WHERE a=13146;\nUPDATE t2 SET b=16784 WHERE a=13147;\nUPDATE t2 SET b=29571 WHERE a=13148;\nUPDATE t2 SET b=33139 WHERE a=13149;\nUPDATE t2 SET b=54052 WHERE a=13150;\nUPDATE t2 SET b=8012 WHERE a=13151;\nUPDATE t2 SET b=68372 WHERE a=13152;\nUPDATE t2 SET b=74815 WHERE a=13153;\nUPDATE t2 SET b=30498 WHERE a=13154;\nUPDATE t2 SET b=12289 WHERE a=13155;\nUPDATE t2 SET b=23304 WHERE a=13156;\nUPDATE t2 SET b=61534 WHERE a=13157;\nUPDATE t2 SET b=24885 WHERE a=13158;\nUPDATE t2 SET b=42503 WHERE a=13159;\nUPDATE t2 SET b=96899 WHERE a=13160;\nUPDATE t2 SET b=78419 WHERE a=13161;\nUPDATE t2 SET b=34270 WHERE a=13162;\nUPDATE t2 SET b=130 WHERE a=13163;\nUPDATE t2 SET b=84485 WHERE a=13164;\nUPDATE t2 SET b=12956 WHERE a=13165;\nUPDATE t2 SET b=33785 WHERE a=13166;\nUPDATE t2 SET b=93893 WHERE a=13167;\nUPDATE t2 SET b=86536 WHERE a=13168;\nUPDATE t2 SET b=20647 WHERE a=13169;\nUPDATE t2 SET b=26329 WHERE a=13170;\nUPDATE t2 SET b=56408 WHERE a=13171;\nUPDATE t2 SET b=42738 WHERE a=13172;\nUPDATE t2 SET b=86235 WHERE a=13173;\nUPDATE t2 SET b=44385 WHERE a=13174;\nUPDATE t2 SET b=74593 WHERE a=13175;\nUPDATE t2 SET b=45274 WHERE a=13176;\nUPDATE t2 SET b=74456 WHERE a=13177;\nUPDATE t2 SET b=95678 WHERE a=13178;\nUPDATE t2 SET b=82868 WHERE a=13179;\nUPDATE t2 SET b=15760 WHERE a=13180;\nUPDATE t2 SET b=9160 WHERE a=13181;\nUPDATE t2 SET b=29519 WHERE a=13182;\nUPDATE t2 SET b=10479 WHERE a=13183;\nUPDATE t2 SET b=73949 WHERE a=13184;\nUPDATE t2 SET b=15830 WHERE a=13185;\nUPDATE t2 SET b=57316 WHERE a=13186;\nUPDATE t2 SET b=75279 WHERE a=13187;\nUPDATE t2 SET b=77387 WHERE a=13188;\nUPDATE t2 SET b=24253 WHERE a=13189;\nUPDATE t2 SET b=61703 WHERE a=13190;\nUPDATE t2 SET b=34658 WHERE a=13191;\nUPDATE t2 SET b=95286 WHERE a=13192;\nUPDATE t2 SET b=46361 WHERE a=13193;\nUPDATE t2 SET b=81446 WHERE a=13194;\nUPDATE t2 SET b=92350 WHERE a=13195;\nUPDATE t2 SET b=24327 WHERE a=13196;\nUPDATE t2 SET b=46656 WHERE a=13197;\nUPDATE t2 SET b=84807 WHERE a=13198;\nUPDATE t2 SET b=15155 WHERE a=13199;\nUPDATE t2 SET b=51354 WHERE a=13200;\nUPDATE t2 SET b=80313 WHERE a=13201;\nUPDATE t2 SET b=71307 WHERE a=13202;\nUPDATE t2 SET b=5012 WHERE a=13203;\nUPDATE t2 SET b=95130 WHERE a=13204;\nUPDATE t2 SET b=87246 WHERE a=13205;\nUPDATE t2 SET b=31446 WHERE a=13206;\nUPDATE t2 SET b=69217 WHERE a=13207;\nUPDATE t2 SET b=53603 WHERE a=13208;\nUPDATE t2 SET b=45958 WHERE a=13209;\nUPDATE t2 SET b=91947 WHERE a=13210;\nUPDATE t2 SET b=29921 WHERE a=13211;\nUPDATE t2 SET b=14439 WHERE a=13212;\nUPDATE t2 SET b=81122 WHERE a=13213;\nUPDATE t2 SET b=92640 WHERE a=13214;\nUPDATE t2 SET b=57412 WHERE a=13215;\nUPDATE t2 SET b=59969 WHERE a=13216;\nUPDATE t2 SET b=69528 WHERE a=13217;\nUPDATE t2 SET b=60988 WHERE a=13218;\nUPDATE t2 SET b=83892 WHERE a=13219;\nUPDATE t2 SET b=89122 WHERE a=13220;\nUPDATE t2 SET b=61027 WHERE a=13221;\nUPDATE t2 SET b=37146 WHERE a=13222;\nUPDATE t2 SET b=26636 WHERE a=13223;\nUPDATE t2 SET b=9185 WHERE a=13224;\nUPDATE t2 SET b=76463 WHERE a=13225;\nUPDATE t2 SET b=16771 WHERE a=13226;\nUPDATE t2 SET b=71497 WHERE a=13227;\nUPDATE t2 SET b=62582 WHERE a=13228;\nUPDATE t2 SET b=74183 WHERE a=13229;\nUPDATE t2 SET b=48927 WHERE a=13230;\nUPDATE t2 SET b=25209 WHERE a=13231;\nUPDATE t2 SET b=88762 WHERE a=13232;\nUPDATE t2 SET b=69774 WHERE a=13233;\nUPDATE t2 SET b=73118 WHERE a=13234;\nUPDATE t2 SET b=25815 WHERE a=13235;\nUPDATE t2 SET b=52719 WHERE a=13236;\nUPDATE t2 SET b=50395 WHERE a=13237;\nUPDATE t2 SET b=4078 WHERE a=13238;\nUPDATE t2 SET b=42069 WHERE a=13239;\nUPDATE t2 SET b=41996 WHERE a=13240;\nUPDATE t2 SET b=62292 WHERE a=13241;\nUPDATE t2 SET b=50816 WHERE a=13242;\nUPDATE t2 SET b=27068 WHERE a=13243;\nUPDATE t2 SET b=58417 WHERE a=13244;\nUPDATE t2 SET b=40705 WHERE a=13245;\nUPDATE t2 SET b=67874 WHERE a=13246;\nUPDATE t2 SET b=37440 WHERE a=13247;\nUPDATE t2 SET b=78077 WHERE a=13248;\nUPDATE t2 SET b=23597 WHERE a=13249;\nUPDATE t2 SET b=63277 WHERE a=13250;\nUPDATE t2 SET b=87315 WHERE a=13251;\nUPDATE t2 SET b=26981 WHERE a=13252;\nUPDATE t2 SET b=87665 WHERE a=13253;\nUPDATE t2 SET b=80154 WHERE a=13254;\nUPDATE t2 SET b=43861 WHERE a=13255;\nUPDATE t2 SET b=85956 WHERE a=13256;\nUPDATE t2 SET b=5436 WHERE a=13257;\nUPDATE t2 SET b=13410 WHERE a=13258;\nUPDATE t2 SET b=97609 WHERE a=13259;\nUPDATE t2 SET b=1178 WHERE a=13260;\nUPDATE t2 SET b=43794 WHERE a=13261;\nUPDATE t2 SET b=99554 WHERE a=13262;\nUPDATE t2 SET b=55911 WHERE a=13263;\nUPDATE t2 SET b=35660 WHERE a=13264;\nUPDATE t2 SET b=43399 WHERE a=13265;\nUPDATE t2 SET b=87949 WHERE a=13266;\nUPDATE t2 SET b=59210 WHERE a=13267;\nUPDATE t2 SET b=85085 WHERE a=13268;\nUPDATE t2 SET b=85201 WHERE a=13269;\nUPDATE t2 SET b=91818 WHERE a=13270;\nUPDATE t2 SET b=10283 WHERE a=13271;\nUPDATE t2 SET b=57827 WHERE a=13272;\nUPDATE t2 SET b=72955 WHERE a=13273;\nUPDATE t2 SET b=54152 WHERE a=13274;\nUPDATE t2 SET b=12894 WHERE a=13275;\nUPDATE t2 SET b=22153 WHERE a=13276;\nUPDATE t2 SET b=59522 WHERE a=13277;\nUPDATE t2 SET b=84562 WHERE a=13278;\nUPDATE t2 SET b=45813 WHERE a=13279;\nUPDATE t2 SET b=91545 WHERE a=13280;\nUPDATE t2 SET b=52456 WHERE a=13281;\nUPDATE t2 SET b=20070 WHERE a=13282;\nUPDATE t2 SET b=43795 WHERE a=13283;\nUPDATE t2 SET b=59292 WHERE a=13284;\nUPDATE t2 SET b=1399 WHERE a=13285;\nUPDATE t2 SET b=31946 WHERE a=13286;\nUPDATE t2 SET b=22049 WHERE a=13287;\nUPDATE t2 SET b=72257 WHERE a=13288;\nUPDATE t2 SET b=50129 WHERE a=13289;\nUPDATE t2 SET b=65097 WHERE a=13290;\nUPDATE t2 SET b=59256 WHERE a=13291;\nUPDATE t2 SET b=16457 WHERE a=13292;\nUPDATE t2 SET b=90938 WHERE a=13293;\nUPDATE t2 SET b=16357 WHERE a=13294;\nUPDATE t2 SET b=75620 WHERE a=13295;\nUPDATE t2 SET b=65273 WHERE a=13296;\nUPDATE t2 SET b=36003 WHERE a=13297;\nUPDATE t2 SET b=56398 WHERE a=13298;\nUPDATE t2 SET b=58330 WHERE a=13299;\nUPDATE t2 SET b=1710 WHERE a=13300;\nUPDATE t2 SET b=61264 WHERE a=13301;\nUPDATE t2 SET b=91879 WHERE a=13302;\nUPDATE t2 SET b=57204 WHERE a=13303;\nUPDATE t2 SET b=62665 WHERE a=13304;\nUPDATE t2 SET b=65818 WHERE a=13305;\nUPDATE t2 SET b=72574 WHERE a=13306;\nUPDATE t2 SET b=9415 WHERE a=13307;\nUPDATE t2 SET b=76507 WHERE a=13308;\nUPDATE t2 SET b=8498 WHERE a=13309;\nUPDATE t2 SET b=97993 WHERE a=13310;\nUPDATE t2 SET b=36630 WHERE a=13311;\nUPDATE t2 SET b=18835 WHERE a=13312;\nUPDATE t2 SET b=6405 WHERE a=13313;\nUPDATE t2 SET b=14470 WHERE a=13314;\nUPDATE t2 SET b=20387 WHERE a=13315;\nUPDATE t2 SET b=33792 WHERE a=13316;\nUPDATE t2 SET b=43486 WHERE a=13317;\nUPDATE t2 SET b=10752 WHERE a=13318;\nUPDATE t2 SET b=73315 WHERE a=13319;\nUPDATE t2 SET b=95144 WHERE a=13320;\nUPDATE t2 SET b=17944 WHERE a=13321;\nUPDATE t2 SET b=66087 WHERE a=13322;\nUPDATE t2 SET b=40545 WHERE a=13323;\nUPDATE t2 SET b=18526 WHERE a=13324;\nUPDATE t2 SET b=67185 WHERE a=13325;\nUPDATE t2 SET b=34674 WHERE a=13326;\nUPDATE t2 SET b=35467 WHERE a=13327;\nUPDATE t2 SET b=69508 WHERE a=13328;\nUPDATE t2 SET b=65185 WHERE a=13329;\nUPDATE t2 SET b=25047 WHERE a=13330;\nUPDATE t2 SET b=56017 WHERE a=13331;\nUPDATE t2 SET b=58660 WHERE a=13332;\nUPDATE t2 SET b=26121 WHERE a=13333;\nUPDATE t2 SET b=13066 WHERE a=13334;\nUPDATE t2 SET b=85895 WHERE a=13335;\nUPDATE t2 SET b=34092 WHERE a=13336;\nUPDATE t2 SET b=31339 WHERE a=13337;\nUPDATE t2 SET b=23552 WHERE a=13338;\nUPDATE t2 SET b=83410 WHERE a=13339;\nUPDATE t2 SET b=26034 WHERE a=13340;\nUPDATE t2 SET b=87321 WHERE a=13341;\nUPDATE t2 SET b=13694 WHERE a=13342;\nUPDATE t2 SET b=45424 WHERE a=13343;\nUPDATE t2 SET b=58536 WHERE a=13344;\nUPDATE t2 SET b=85679 WHERE a=13345;\nUPDATE t2 SET b=54745 WHERE a=13346;\nUPDATE t2 SET b=92637 WHERE a=13347;\nUPDATE t2 SET b=25061 WHERE a=13348;\nUPDATE t2 SET b=75368 WHERE a=13349;\nUPDATE t2 SET b=61196 WHERE a=13350;\nUPDATE t2 SET b=58751 WHERE a=13351;\nUPDATE t2 SET b=36581 WHERE a=13352;\nUPDATE t2 SET b=75822 WHERE a=13353;\nUPDATE t2 SET b=7748 WHERE a=13354;\nUPDATE t2 SET b=10644 WHERE a=13355;\nUPDATE t2 SET b=21037 WHERE a=13356;\nUPDATE t2 SET b=57608 WHERE a=13357;\nUPDATE t2 SET b=71935 WHERE a=13358;\nUPDATE t2 SET b=77695 WHERE a=13359;\nUPDATE t2 SET b=21913 WHERE a=13360;\nUPDATE t2 SET b=7546 WHERE a=13361;\nUPDATE t2 SET b=63891 WHERE a=13362;\nUPDATE t2 SET b=20135 WHERE a=13363;\nUPDATE t2 SET b=59652 WHERE a=13364;\nUPDATE t2 SET b=35679 WHERE a=13365;\nUPDATE t2 SET b=5938 WHERE a=13366;\nUPDATE t2 SET b=68379 WHERE a=13367;\nUPDATE t2 SET b=5656 WHERE a=13368;\nUPDATE t2 SET b=98241 WHERE a=13369;\nUPDATE t2 SET b=80570 WHERE a=13370;\nUPDATE t2 SET b=87421 WHERE a=13371;\nUPDATE t2 SET b=99989 WHERE a=13372;\nUPDATE t2 SET b=45365 WHERE a=13373;\nUPDATE t2 SET b=1426 WHERE a=13374;\nUPDATE t2 SET b=56929 WHERE a=13375;\nUPDATE t2 SET b=28491 WHERE a=13376;\nUPDATE t2 SET b=7550 WHERE a=13377;\nUPDATE t2 SET b=94346 WHERE a=13378;\nUPDATE t2 SET b=93509 WHERE a=13379;\nUPDATE t2 SET b=87448 WHERE a=13380;\nUPDATE t2 SET b=68212 WHERE a=13381;\nUPDATE t2 SET b=59244 WHERE a=13382;\nUPDATE t2 SET b=18248 WHERE a=13383;\nUPDATE t2 SET b=7008 WHERE a=13384;\nUPDATE t2 SET b=10649 WHERE a=13385;\nUPDATE t2 SET b=37892 WHERE a=13386;\nUPDATE t2 SET b=86444 WHERE a=13387;\nUPDATE t2 SET b=30772 WHERE a=13388;\nUPDATE t2 SET b=94249 WHERE a=13389;\nUPDATE t2 SET b=95889 WHERE a=13390;\nUPDATE t2 SET b=74089 WHERE a=13391;\nUPDATE t2 SET b=79069 WHERE a=13392;\nUPDATE t2 SET b=24399 WHERE a=13393;\nUPDATE t2 SET b=20189 WHERE a=13394;\nUPDATE t2 SET b=31828 WHERE a=13395;\nUPDATE t2 SET b=84575 WHERE a=13396;\nUPDATE t2 SET b=88947 WHERE a=13397;\nUPDATE t2 SET b=26540 WHERE a=13398;\nUPDATE t2 SET b=68831 WHERE a=13399;\nUPDATE t2 SET b=59557 WHERE a=13400;\nUPDATE t2 SET b=81850 WHERE a=13401;\nUPDATE t2 SET b=8520 WHERE a=13402;\nUPDATE t2 SET b=24728 WHERE a=13403;\nUPDATE t2 SET b=59636 WHERE a=13404;\nUPDATE t2 SET b=78175 WHERE a=13405;\nUPDATE t2 SET b=72336 WHERE a=13406;\nUPDATE t2 SET b=32171 WHERE a=13407;\nUPDATE t2 SET b=93456 WHERE a=13408;\nUPDATE t2 SET b=9654 WHERE a=13409;\nUPDATE t2 SET b=60959 WHERE a=13410;\nUPDATE t2 SET b=20268 WHERE a=13411;\nUPDATE t2 SET b=54710 WHERE a=13412;\nUPDATE t2 SET b=3470 WHERE a=13413;\nUPDATE t2 SET b=84862 WHERE a=13414;\nUPDATE t2 SET b=55945 WHERE a=13415;\nUPDATE t2 SET b=15256 WHERE a=13416;\nUPDATE t2 SET b=73579 WHERE a=13417;\nUPDATE t2 SET b=76426 WHERE a=13418;\nUPDATE t2 SET b=29234 WHERE a=13419;\nUPDATE t2 SET b=42647 WHERE a=13420;\nUPDATE t2 SET b=95835 WHERE a=13421;\nUPDATE t2 SET b=8476 WHERE a=13422;\nUPDATE t2 SET b=45041 WHERE a=13423;\nUPDATE t2 SET b=50148 WHERE a=13424;\nUPDATE t2 SET b=5149 WHERE a=13425;\nUPDATE t2 SET b=36897 WHERE a=13426;\nUPDATE t2 SET b=57834 WHERE a=13427;\nUPDATE t2 SET b=17881 WHERE a=13428;\nUPDATE t2 SET b=88752 WHERE a=13429;\nUPDATE t2 SET b=75843 WHERE a=13430;\nUPDATE t2 SET b=69227 WHERE a=13431;\nUPDATE t2 SET b=19471 WHERE a=13432;\nUPDATE t2 SET b=47439 WHERE a=13433;\nUPDATE t2 SET b=85667 WHERE a=13434;\nUPDATE t2 SET b=49603 WHERE a=13435;\nUPDATE t2 SET b=30256 WHERE a=13436;\nUPDATE t2 SET b=28763 WHERE a=13437;\nUPDATE t2 SET b=32447 WHERE a=13438;\nUPDATE t2 SET b=77266 WHERE a=13439;\nUPDATE t2 SET b=19192 WHERE a=13440;\nUPDATE t2 SET b=47472 WHERE a=13441;\nUPDATE t2 SET b=86448 WHERE a=13442;\nUPDATE t2 SET b=63855 WHERE a=13443;\nUPDATE t2 SET b=72919 WHERE a=13444;\nUPDATE t2 SET b=63518 WHERE a=13445;\nUPDATE t2 SET b=79326 WHERE a=13446;\nUPDATE t2 SET b=14607 WHERE a=13447;\nUPDATE t2 SET b=10593 WHERE a=13448;\nUPDATE t2 SET b=33550 WHERE a=13449;\nUPDATE t2 SET b=82654 WHERE a=13450;\nUPDATE t2 SET b=69591 WHERE a=13451;\nUPDATE t2 SET b=11120 WHERE a=13452;\nUPDATE t2 SET b=97042 WHERE a=13453;\nUPDATE t2 SET b=14062 WHERE a=13454;\nUPDATE t2 SET b=38421 WHERE a=13455;\nUPDATE t2 SET b=67474 WHERE a=13456;\nUPDATE t2 SET b=35924 WHERE a=13457;\nUPDATE t2 SET b=11088 WHERE a=13458;\nUPDATE t2 SET b=11332 WHERE a=13459;\nUPDATE t2 SET b=4094 WHERE a=13460;\nUPDATE t2 SET b=70638 WHERE a=13461;\nUPDATE t2 SET b=58942 WHERE a=13462;\nUPDATE t2 SET b=73208 WHERE a=13463;\nUPDATE t2 SET b=22342 WHERE a=13464;\nUPDATE t2 SET b=8908 WHERE a=13465;\nUPDATE t2 SET b=10029 WHERE a=13466;\nUPDATE t2 SET b=99521 WHERE a=13467;\nUPDATE t2 SET b=85903 WHERE a=13468;\nUPDATE t2 SET b=66359 WHERE a=13469;\nUPDATE t2 SET b=97216 WHERE a=13470;\nUPDATE t2 SET b=3678 WHERE a=13471;\nUPDATE t2 SET b=72994 WHERE a=13472;\nUPDATE t2 SET b=16133 WHERE a=13473;\nUPDATE t2 SET b=61989 WHERE a=13474;\nUPDATE t2 SET b=3771 WHERE a=13475;\nUPDATE t2 SET b=87006 WHERE a=13476;\nUPDATE t2 SET b=84628 WHERE a=13477;\nUPDATE t2 SET b=51697 WHERE a=13478;\nUPDATE t2 SET b=43658 WHERE a=13479;\nUPDATE t2 SET b=73979 WHERE a=13480;\nUPDATE t2 SET b=32703 WHERE a=13481;\nUPDATE t2 SET b=24927 WHERE a=13482;\nUPDATE t2 SET b=51049 WHERE a=13483;\nUPDATE t2 SET b=73559 WHERE a=13484;\nUPDATE t2 SET b=59338 WHERE a=13485;\nUPDATE t2 SET b=98223 WHERE a=13486;\nUPDATE t2 SET b=66622 WHERE a=13487;\nUPDATE t2 SET b=34160 WHERE a=13488;\nUPDATE t2 SET b=42316 WHERE a=13489;\nUPDATE t2 SET b=60091 WHERE a=13490;\nUPDATE t2 SET b=62364 WHERE a=13491;\nUPDATE t2 SET b=94725 WHERE a=13492;\nUPDATE t2 SET b=2681 WHERE a=13493;\nUPDATE t2 SET b=69774 WHERE a=13494;\nUPDATE t2 SET b=65054 WHERE a=13495;\nUPDATE t2 SET b=60552 WHERE a=13496;\nUPDATE t2 SET b=47855 WHERE a=13497;\nUPDATE t2 SET b=3155 WHERE a=13498;\nUPDATE t2 SET b=91981 WHERE a=13499;\nUPDATE t2 SET b=19093 WHERE a=13500;\nUPDATE t2 SET b=15123 WHERE a=13501;\nUPDATE t2 SET b=27447 WHERE a=13502;\nUPDATE t2 SET b=22003 WHERE a=13503;\nUPDATE t2 SET b=26002 WHERE a=13504;\nUPDATE t2 SET b=51990 WHERE a=13505;\nUPDATE t2 SET b=12793 WHERE a=13506;\nUPDATE t2 SET b=18406 WHERE a=13507;\nUPDATE t2 SET b=35247 WHERE a=13508;\nUPDATE t2 SET b=85594 WHERE a=13509;\nUPDATE t2 SET b=75133 WHERE a=13510;\nUPDATE t2 SET b=45090 WHERE a=13511;\nUPDATE t2 SET b=91333 WHERE a=13512;\nUPDATE t2 SET b=78508 WHERE a=13513;\nUPDATE t2 SET b=62581 WHERE a=13514;\nUPDATE t2 SET b=83830 WHERE a=13515;\nUPDATE t2 SET b=43180 WHERE a=13516;\nUPDATE t2 SET b=49213 WHERE a=13517;\nUPDATE t2 SET b=13430 WHERE a=13518;\nUPDATE t2 SET b=78419 WHERE a=13519;\nUPDATE t2 SET b=4451 WHERE a=13520;\nUPDATE t2 SET b=5163 WHERE a=13521;\nUPDATE t2 SET b=18812 WHERE a=13522;\nUPDATE t2 SET b=66566 WHERE a=13523;\nUPDATE t2 SET b=27953 WHERE a=13524;\nUPDATE t2 SET b=20902 WHERE a=13525;\nUPDATE t2 SET b=4714 WHERE a=13526;\nUPDATE t2 SET b=63943 WHERE a=13527;\nUPDATE t2 SET b=91732 WHERE a=13528;\nUPDATE t2 SET b=2428 WHERE a=13529;\nUPDATE t2 SET b=42102 WHERE a=13530;\nUPDATE t2 SET b=60376 WHERE a=13531;\nUPDATE t2 SET b=50573 WHERE a=13532;\nUPDATE t2 SET b=51404 WHERE a=13533;\nUPDATE t2 SET b=63583 WHERE a=13534;\nUPDATE t2 SET b=96279 WHERE a=13535;\nUPDATE t2 SET b=67951 WHERE a=13536;\nUPDATE t2 SET b=551 WHERE a=13537;\nUPDATE t2 SET b=39541 WHERE a=13538;\nUPDATE t2 SET b=737 WHERE a=13539;\nUPDATE t2 SET b=35728 WHERE a=13540;\nUPDATE t2 SET b=4639 WHERE a=13541;\nUPDATE t2 SET b=81542 WHERE a=13542;\nUPDATE t2 SET b=18892 WHERE a=13543;\nUPDATE t2 SET b=32265 WHERE a=13544;\nUPDATE t2 SET b=54018 WHERE a=13545;\nUPDATE t2 SET b=6730 WHERE a=13546;\nUPDATE t2 SET b=36390 WHERE a=13547;\nUPDATE t2 SET b=39574 WHERE a=13548;\nUPDATE t2 SET b=50517 WHERE a=13549;\nUPDATE t2 SET b=53364 WHERE a=13550;\nUPDATE t2 SET b=16677 WHERE a=13551;\nUPDATE t2 SET b=31137 WHERE a=13552;\nUPDATE t2 SET b=31742 WHERE a=13553;\nUPDATE t2 SET b=61118 WHERE a=13554;\nUPDATE t2 SET b=36422 WHERE a=13555;\nUPDATE t2 SET b=44941 WHERE a=13556;\nUPDATE t2 SET b=52895 WHERE a=13557;\nUPDATE t2 SET b=67115 WHERE a=13558;\nUPDATE t2 SET b=10474 WHERE a=13559;\nUPDATE t2 SET b=92682 WHERE a=13560;\nUPDATE t2 SET b=40010 WHERE a=13561;\nUPDATE t2 SET b=56012 WHERE a=13562;\nUPDATE t2 SET b=41644 WHERE a=13563;\nUPDATE t2 SET b=18633 WHERE a=13564;\nUPDATE t2 SET b=62085 WHERE a=13565;\nUPDATE t2 SET b=82612 WHERE a=13566;\nUPDATE t2 SET b=95944 WHERE a=13567;\nUPDATE t2 SET b=96117 WHERE a=13568;\nUPDATE t2 SET b=63946 WHERE a=13569;\nUPDATE t2 SET b=81058 WHERE a=13570;\nUPDATE t2 SET b=28074 WHERE a=13571;\nUPDATE t2 SET b=34563 WHERE a=13572;\nUPDATE t2 SET b=81 WHERE a=13573;\nUPDATE t2 SET b=32636 WHERE a=13574;\nUPDATE t2 SET b=78591 WHERE a=13575;\nUPDATE t2 SET b=23144 WHERE a=13576;\nUPDATE t2 SET b=7896 WHERE a=13577;\nUPDATE t2 SET b=97348 WHERE a=13578;\nUPDATE t2 SET b=71710 WHERE a=13579;\nUPDATE t2 SET b=6443 WHERE a=13580;\nUPDATE t2 SET b=59548 WHERE a=13581;\nUPDATE t2 SET b=5773 WHERE a=13582;\nUPDATE t2 SET b=37971 WHERE a=13583;\nUPDATE t2 SET b=94069 WHERE a=13584;\nUPDATE t2 SET b=99177 WHERE a=13585;\nUPDATE t2 SET b=86918 WHERE a=13586;\nUPDATE t2 SET b=32412 WHERE a=13587;\nUPDATE t2 SET b=304 WHERE a=13588;\nUPDATE t2 SET b=51121 WHERE a=13589;\nUPDATE t2 SET b=3324 WHERE a=13590;\nUPDATE t2 SET b=6883 WHERE a=13591;\nUPDATE t2 SET b=33064 WHERE a=13592;\nUPDATE t2 SET b=28230 WHERE a=13593;\nUPDATE t2 SET b=13240 WHERE a=13594;\nUPDATE t2 SET b=31420 WHERE a=13595;\nUPDATE t2 SET b=70669 WHERE a=13596;\nUPDATE t2 SET b=33060 WHERE a=13597;\nUPDATE t2 SET b=99004 WHERE a=13598;\nUPDATE t2 SET b=33070 WHERE a=13599;\nUPDATE t2 SET b=65574 WHERE a=13600;\nUPDATE t2 SET b=90469 WHERE a=13601;\nUPDATE t2 SET b=73871 WHERE a=13602;\nUPDATE t2 SET b=1393 WHERE a=13603;\nUPDATE t2 SET b=87811 WHERE a=13604;\nUPDATE t2 SET b=37309 WHERE a=13605;\nUPDATE t2 SET b=70406 WHERE a=13606;\nUPDATE t2 SET b=64280 WHERE a=13607;\nUPDATE t2 SET b=82851 WHERE a=13608;\nUPDATE t2 SET b=43965 WHERE a=13609;\nUPDATE t2 SET b=26877 WHERE a=13610;\nUPDATE t2 SET b=5132 WHERE a=13611;\nUPDATE t2 SET b=74365 WHERE a=13612;\nUPDATE t2 SET b=98559 WHERE a=13613;\nUPDATE t2 SET b=58951 WHERE a=13614;\nUPDATE t2 SET b=61978 WHERE a=13615;\nUPDATE t2 SET b=7321 WHERE a=13616;\nUPDATE t2 SET b=617 WHERE a=13617;\nUPDATE t2 SET b=61718 WHERE a=13618;\nUPDATE t2 SET b=35971 WHERE a=13619;\nUPDATE t2 SET b=33181 WHERE a=13620;\nUPDATE t2 SET b=99909 WHERE a=13621;\nUPDATE t2 SET b=84861 WHERE a=13622;\nUPDATE t2 SET b=99921 WHERE a=13623;\nUPDATE t2 SET b=71669 WHERE a=13624;\nUPDATE t2 SET b=91379 WHERE a=13625;\nUPDATE t2 SET b=39892 WHERE a=13626;\nUPDATE t2 SET b=47800 WHERE a=13627;\nUPDATE t2 SET b=8810 WHERE a=13628;\nUPDATE t2 SET b=11714 WHERE a=13629;\nUPDATE t2 SET b=15148 WHERE a=13630;\nUPDATE t2 SET b=10376 WHERE a=13631;\nUPDATE t2 SET b=95768 WHERE a=13632;\nUPDATE t2 SET b=47106 WHERE a=13633;\nUPDATE t2 SET b=59618 WHERE a=13634;\nUPDATE t2 SET b=11175 WHERE a=13635;\nUPDATE t2 SET b=6361 WHERE a=13636;\nUPDATE t2 SET b=78392 WHERE a=13637;\nUPDATE t2 SET b=73397 WHERE a=13638;\nUPDATE t2 SET b=48256 WHERE a=13639;\nUPDATE t2 SET b=88668 WHERE a=13640;\nUPDATE t2 SET b=21863 WHERE a=13641;\nUPDATE t2 SET b=11225 WHERE a=13642;\nUPDATE t2 SET b=57283 WHERE a=13643;\nUPDATE t2 SET b=80474 WHERE a=13644;\nUPDATE t2 SET b=42395 WHERE a=13645;\nUPDATE t2 SET b=61495 WHERE a=13646;\nUPDATE t2 SET b=16390 WHERE a=13647;\nUPDATE t2 SET b=76668 WHERE a=13648;\nUPDATE t2 SET b=13291 WHERE a=13649;\nUPDATE t2 SET b=68101 WHERE a=13650;\nUPDATE t2 SET b=20238 WHERE a=13651;\nUPDATE t2 SET b=10026 WHERE a=13652;\nUPDATE t2 SET b=53773 WHERE a=13653;\nUPDATE t2 SET b=4533 WHERE a=13654;\nUPDATE t2 SET b=25096 WHERE a=13655;\nUPDATE t2 SET b=57635 WHERE a=13656;\nUPDATE t2 SET b=38350 WHERE a=13657;\nUPDATE t2 SET b=18367 WHERE a=13658;\nUPDATE t2 SET b=50525 WHERE a=13659;\nUPDATE t2 SET b=11453 WHERE a=13660;\nUPDATE t2 SET b=88153 WHERE a=13661;\nUPDATE t2 SET b=12478 WHERE a=13662;\nUPDATE t2 SET b=3899 WHERE a=13663;\nUPDATE t2 SET b=66023 WHERE a=13664;\nUPDATE t2 SET b=9083 WHERE a=13665;\nUPDATE t2 SET b=51039 WHERE a=13666;\nUPDATE t2 SET b=37777 WHERE a=13667;\nUPDATE t2 SET b=68517 WHERE a=13668;\nUPDATE t2 SET b=44871 WHERE a=13669;\nUPDATE t2 SET b=20359 WHERE a=13670;\nUPDATE t2 SET b=20047 WHERE a=13671;\nUPDATE t2 SET b=18913 WHERE a=13672;\nUPDATE t2 SET b=62277 WHERE a=13673;\nUPDATE t2 SET b=98802 WHERE a=13674;\nUPDATE t2 SET b=48473 WHERE a=13675;\nUPDATE t2 SET b=53744 WHERE a=13676;\nUPDATE t2 SET b=77983 WHERE a=13677;\nUPDATE t2 SET b=69118 WHERE a=13678;\nUPDATE t2 SET b=69633 WHERE a=13679;\nUPDATE t2 SET b=806 WHERE a=13680;\nUPDATE t2 SET b=16955 WHERE a=13681;\nUPDATE t2 SET b=13039 WHERE a=13682;\nUPDATE t2 SET b=51976 WHERE a=13683;\nUPDATE t2 SET b=92689 WHERE a=13684;\nUPDATE t2 SET b=46837 WHERE a=13685;\nUPDATE t2 SET b=26818 WHERE a=13686;\nUPDATE t2 SET b=43159 WHERE a=13687;\nUPDATE t2 SET b=36548 WHERE a=13688;\nUPDATE t2 SET b=60364 WHERE a=13689;\nUPDATE t2 SET b=48692 WHERE a=13690;\nUPDATE t2 SET b=66602 WHERE a=13691;\nUPDATE t2 SET b=7764 WHERE a=13692;\nUPDATE t2 SET b=27251 WHERE a=13693;\nUPDATE t2 SET b=97554 WHERE a=13694;\nUPDATE t2 SET b=76667 WHERE a=13695;\nUPDATE t2 SET b=79183 WHERE a=13696;\nUPDATE t2 SET b=54983 WHERE a=13697;\nUPDATE t2 SET b=61522 WHERE a=13698;\nUPDATE t2 SET b=68034 WHERE a=13699;\nUPDATE t2 SET b=3410 WHERE a=13700;\nUPDATE t2 SET b=49751 WHERE a=13701;\nUPDATE t2 SET b=53670 WHERE a=13702;\nUPDATE t2 SET b=86282 WHERE a=13703;\nUPDATE t2 SET b=50885 WHERE a=13704;\nUPDATE t2 SET b=28890 WHERE a=13705;\nUPDATE t2 SET b=25353 WHERE a=13706;\nUPDATE t2 SET b=60415 WHERE a=13707;\nUPDATE t2 SET b=7600 WHERE a=13708;\nUPDATE t2 SET b=58698 WHERE a=13709;\nUPDATE t2 SET b=37081 WHERE a=13710;\nUPDATE t2 SET b=26860 WHERE a=13711;\nUPDATE t2 SET b=50456 WHERE a=13712;\nUPDATE t2 SET b=35826 WHERE a=13713;\nUPDATE t2 SET b=2420 WHERE a=13714;\nUPDATE t2 SET b=78779 WHERE a=13715;\nUPDATE t2 SET b=18700 WHERE a=13716;\nUPDATE t2 SET b=41843 WHERE a=13717;\nUPDATE t2 SET b=96090 WHERE a=13718;\nUPDATE t2 SET b=70622 WHERE a=13719;\nUPDATE t2 SET b=25069 WHERE a=13720;\nUPDATE t2 SET b=38553 WHERE a=13721;\nUPDATE t2 SET b=72133 WHERE a=13722;\nUPDATE t2 SET b=45808 WHERE a=13723;\nUPDATE t2 SET b=14049 WHERE a=13724;\nUPDATE t2 SET b=14774 WHERE a=13725;\nUPDATE t2 SET b=51306 WHERE a=13726;\nUPDATE t2 SET b=25112 WHERE a=13727;\nUPDATE t2 SET b=96861 WHERE a=13728;\nUPDATE t2 SET b=83968 WHERE a=13729;\nUPDATE t2 SET b=64928 WHERE a=13730;\nUPDATE t2 SET b=90537 WHERE a=13731;\nUPDATE t2 SET b=69702 WHERE a=13732;\nUPDATE t2 SET b=82501 WHERE a=13733;\nUPDATE t2 SET b=76503 WHERE a=13734;\nUPDATE t2 SET b=53272 WHERE a=13735;\nUPDATE t2 SET b=77617 WHERE a=13736;\nUPDATE t2 SET b=69089 WHERE a=13737;\nUPDATE t2 SET b=30126 WHERE a=13738;\nUPDATE t2 SET b=15559 WHERE a=13739;\nUPDATE t2 SET b=70488 WHERE a=13740;\nUPDATE t2 SET b=15639 WHERE a=13741;\nUPDATE t2 SET b=6545 WHERE a=13742;\nUPDATE t2 SET b=49647 WHERE a=13743;\nUPDATE t2 SET b=93740 WHERE a=13744;\nUPDATE t2 SET b=85057 WHERE a=13745;\nUPDATE t2 SET b=24183 WHERE a=13746;\nUPDATE t2 SET b=2110 WHERE a=13747;\nUPDATE t2 SET b=77796 WHERE a=13748;\nUPDATE t2 SET b=96309 WHERE a=13749;\nUPDATE t2 SET b=89380 WHERE a=13750;\nUPDATE t2 SET b=72218 WHERE a=13751;\nUPDATE t2 SET b=64672 WHERE a=13752;\nUPDATE t2 SET b=63836 WHERE a=13753;\nUPDATE t2 SET b=78254 WHERE a=13754;\nUPDATE t2 SET b=95301 WHERE a=13755;\nUPDATE t2 SET b=82595 WHERE a=13756;\nUPDATE t2 SET b=79897 WHERE a=13757;\nUPDATE t2 SET b=60010 WHERE a=13758;\nUPDATE t2 SET b=56993 WHERE a=13759;\nUPDATE t2 SET b=23023 WHERE a=13760;\nUPDATE t2 SET b=80588 WHERE a=13761;\nUPDATE t2 SET b=9262 WHERE a=13762;\nUPDATE t2 SET b=50048 WHERE a=13763;\nUPDATE t2 SET b=33232 WHERE a=13764;\nUPDATE t2 SET b=55090 WHERE a=13765;\nUPDATE t2 SET b=50981 WHERE a=13766;\nUPDATE t2 SET b=81172 WHERE a=13767;\nUPDATE t2 SET b=28937 WHERE a=13768;\nUPDATE t2 SET b=45512 WHERE a=13769;\nUPDATE t2 SET b=61756 WHERE a=13770;\nUPDATE t2 SET b=89102 WHERE a=13771;\nUPDATE t2 SET b=38295 WHERE a=13772;\nUPDATE t2 SET b=28987 WHERE a=13773;\nUPDATE t2 SET b=64781 WHERE a=13774;\nUPDATE t2 SET b=55548 WHERE a=13775;\nUPDATE t2 SET b=74226 WHERE a=13776;\nUPDATE t2 SET b=50341 WHERE a=13777;\nUPDATE t2 SET b=81444 WHERE a=13778;\nUPDATE t2 SET b=55139 WHERE a=13779;\nUPDATE t2 SET b=587 WHERE a=13780;\nUPDATE t2 SET b=1124 WHERE a=13781;\nUPDATE t2 SET b=85144 WHERE a=13782;\nUPDATE t2 SET b=30935 WHERE a=13783;\nUPDATE t2 SET b=21842 WHERE a=13784;\nUPDATE t2 SET b=43719 WHERE a=13785;\nUPDATE t2 SET b=94434 WHERE a=13786;\nUPDATE t2 SET b=69102 WHERE a=13787;\nUPDATE t2 SET b=97376 WHERE a=13788;\nUPDATE t2 SET b=2442 WHERE a=13789;\nUPDATE t2 SET b=99896 WHERE a=13790;\nUPDATE t2 SET b=4251 WHERE a=13791;\nUPDATE t2 SET b=11131 WHERE a=13792;\nUPDATE t2 SET b=97901 WHERE a=13793;\nUPDATE t2 SET b=2012 WHERE a=13794;\nUPDATE t2 SET b=41626 WHERE a=13795;\nUPDATE t2 SET b=36452 WHERE a=13796;\nUPDATE t2 SET b=21603 WHERE a=13797;\nUPDATE t2 SET b=44988 WHERE a=13798;\nUPDATE t2 SET b=6654 WHERE a=13799;\nUPDATE t2 SET b=93626 WHERE a=13800;\nUPDATE t2 SET b=95922 WHERE a=13801;\nUPDATE t2 SET b=4400 WHERE a=13802;\nUPDATE t2 SET b=52595 WHERE a=13803;\nUPDATE t2 SET b=82205 WHERE a=13804;\nUPDATE t2 SET b=22497 WHERE a=13805;\nUPDATE t2 SET b=30629 WHERE a=13806;\nUPDATE t2 SET b=98612 WHERE a=13807;\nUPDATE t2 SET b=20778 WHERE a=13808;\nUPDATE t2 SET b=94219 WHERE a=13809;\nUPDATE t2 SET b=93343 WHERE a=13810;\nUPDATE t2 SET b=60510 WHERE a=13811;\nUPDATE t2 SET b=58732 WHERE a=13812;\nUPDATE t2 SET b=16824 WHERE a=13813;\nUPDATE t2 SET b=34499 WHERE a=13814;\nUPDATE t2 SET b=34490 WHERE a=13815;\nUPDATE t2 SET b=93655 WHERE a=13816;\nUPDATE t2 SET b=76458 WHERE a=13817;\nUPDATE t2 SET b=65545 WHERE a=13818;\nUPDATE t2 SET b=99176 WHERE a=13819;\nUPDATE t2 SET b=54531 WHERE a=13820;\nUPDATE t2 SET b=73292 WHERE a=13821;\nUPDATE t2 SET b=48565 WHERE a=13822;\nUPDATE t2 SET b=25799 WHERE a=13823;\nUPDATE t2 SET b=44212 WHERE a=13824;\nUPDATE t2 SET b=74546 WHERE a=13825;\nUPDATE t2 SET b=38488 WHERE a=13826;\nUPDATE t2 SET b=67280 WHERE a=13827;\nUPDATE t2 SET b=75169 WHERE a=13828;\nUPDATE t2 SET b=44604 WHERE a=13829;\nUPDATE t2 SET b=58523 WHERE a=13830;\nUPDATE t2 SET b=1457 WHERE a=13831;\nUPDATE t2 SET b=71411 WHERE a=13832;\nUPDATE t2 SET b=65882 WHERE a=13833;\nUPDATE t2 SET b=26474 WHERE a=13834;\nUPDATE t2 SET b=29740 WHERE a=13835;\nUPDATE t2 SET b=48312 WHERE a=13836;\nUPDATE t2 SET b=13226 WHERE a=13837;\nUPDATE t2 SET b=18196 WHERE a=13838;\nUPDATE t2 SET b=65105 WHERE a=13839;\nUPDATE t2 SET b=95168 WHERE a=13840;\nUPDATE t2 SET b=60121 WHERE a=13841;\nUPDATE t2 SET b=41491 WHERE a=13842;\nUPDATE t2 SET b=16697 WHERE a=13843;\nUPDATE t2 SET b=35612 WHERE a=13844;\nUPDATE t2 SET b=89241 WHERE a=13845;\nUPDATE t2 SET b=77915 WHERE a=13846;\nUPDATE t2 SET b=65755 WHERE a=13847;\nUPDATE t2 SET b=56364 WHERE a=13848;\nUPDATE t2 SET b=89637 WHERE a=13849;\nUPDATE t2 SET b=61272 WHERE a=13850;\nUPDATE t2 SET b=25502 WHERE a=13851;\nUPDATE t2 SET b=54868 WHERE a=13852;\nUPDATE t2 SET b=59070 WHERE a=13853;\nUPDATE t2 SET b=6874 WHERE a=13854;\nUPDATE t2 SET b=50251 WHERE a=13855;\nUPDATE t2 SET b=17753 WHERE a=13856;\nUPDATE t2 SET b=97679 WHERE a=13857;\nUPDATE t2 SET b=67143 WHERE a=13858;\nUPDATE t2 SET b=38485 WHERE a=13859;\nUPDATE t2 SET b=5959 WHERE a=13860;\nUPDATE t2 SET b=11431 WHERE a=13861;\nUPDATE t2 SET b=55814 WHERE a=13862;\nUPDATE t2 SET b=24873 WHERE a=13863;\nUPDATE t2 SET b=40420 WHERE a=13864;\nUPDATE t2 SET b=56078 WHERE a=13865;\nUPDATE t2 SET b=12847 WHERE a=13866;\nUPDATE t2 SET b=93485 WHERE a=13867;\nUPDATE t2 SET b=3208 WHERE a=13868;\nUPDATE t2 SET b=61189 WHERE a=13869;\nUPDATE t2 SET b=2405 WHERE a=13870;\nUPDATE t2 SET b=91811 WHERE a=13871;\nUPDATE t2 SET b=94380 WHERE a=13872;\nUPDATE t2 SET b=40744 WHERE a=13873;\nUPDATE t2 SET b=22886 WHERE a=13874;\nUPDATE t2 SET b=45154 WHERE a=13875;\nUPDATE t2 SET b=44487 WHERE a=13876;\nUPDATE t2 SET b=77600 WHERE a=13877;\nUPDATE t2 SET b=54519 WHERE a=13878;\nUPDATE t2 SET b=5507 WHERE a=13879;\nUPDATE t2 SET b=73789 WHERE a=13880;\nUPDATE t2 SET b=18542 WHERE a=13881;\nUPDATE t2 SET b=60305 WHERE a=13882;\nUPDATE t2 SET b=11619 WHERE a=13883;\nUPDATE t2 SET b=3879 WHERE a=13884;\nUPDATE t2 SET b=30127 WHERE a=13885;\nUPDATE t2 SET b=4441 WHERE a=13886;\nUPDATE t2 SET b=45810 WHERE a=13887;\nUPDATE t2 SET b=51601 WHERE a=13888;\nUPDATE t2 SET b=1208 WHERE a=13889;\nUPDATE t2 SET b=5677 WHERE a=13890;\nUPDATE t2 SET b=78727 WHERE a=13891;\nUPDATE t2 SET b=73087 WHERE a=13892;\nUPDATE t2 SET b=73766 WHERE a=13893;\nUPDATE t2 SET b=63487 WHERE a=13894;\nUPDATE t2 SET b=4161 WHERE a=13895;\nUPDATE t2 SET b=87809 WHERE a=13896;\nUPDATE t2 SET b=14906 WHERE a=13897;\nUPDATE t2 SET b=43677 WHERE a=13898;\nUPDATE t2 SET b=32755 WHERE a=13899;\nUPDATE t2 SET b=43188 WHERE a=13900;\nUPDATE t2 SET b=42148 WHERE a=13901;\nUPDATE t2 SET b=98728 WHERE a=13902;\nUPDATE t2 SET b=81542 WHERE a=13903;\nUPDATE t2 SET b=95065 WHERE a=13904;\nUPDATE t2 SET b=29072 WHERE a=13905;\nUPDATE t2 SET b=99574 WHERE a=13906;\nUPDATE t2 SET b=94898 WHERE a=13907;\nUPDATE t2 SET b=72110 WHERE a=13908;\nUPDATE t2 SET b=67391 WHERE a=13909;\nUPDATE t2 SET b=60351 WHERE a=13910;\nUPDATE t2 SET b=36535 WHERE a=13911;\nUPDATE t2 SET b=30657 WHERE a=13912;\nUPDATE t2 SET b=80097 WHERE a=13913;\nUPDATE t2 SET b=73903 WHERE a=13914;\nUPDATE t2 SET b=58626 WHERE a=13915;\nUPDATE t2 SET b=40848 WHERE a=13916;\nUPDATE t2 SET b=85191 WHERE a=13917;\nUPDATE t2 SET b=52589 WHERE a=13918;\nUPDATE t2 SET b=33067 WHERE a=13919;\nUPDATE t2 SET b=96925 WHERE a=13920;\nUPDATE t2 SET b=64248 WHERE a=13921;\nUPDATE t2 SET b=17277 WHERE a=13922;\nUPDATE t2 SET b=36093 WHERE a=13923;\nUPDATE t2 SET b=25564 WHERE a=13924;\nUPDATE t2 SET b=68275 WHERE a=13925;\nUPDATE t2 SET b=78636 WHERE a=13926;\nUPDATE t2 SET b=81015 WHERE a=13927;\nUPDATE t2 SET b=62260 WHERE a=13928;\nUPDATE t2 SET b=27121 WHERE a=13929;\nUPDATE t2 SET b=86710 WHERE a=13930;\nUPDATE t2 SET b=17960 WHERE a=13931;\nUPDATE t2 SET b=4395 WHERE a=13932;\nUPDATE t2 SET b=22560 WHERE a=13933;\nUPDATE t2 SET b=75095 WHERE a=13934;\nUPDATE t2 SET b=74252 WHERE a=13935;\nUPDATE t2 SET b=28051 WHERE a=13936;\nUPDATE t2 SET b=37810 WHERE a=13937;\nUPDATE t2 SET b=3873 WHERE a=13938;\nUPDATE t2 SET b=42963 WHERE a=13939;\nUPDATE t2 SET b=56526 WHERE a=13940;\nUPDATE t2 SET b=49662 WHERE a=13941;\nUPDATE t2 SET b=89034 WHERE a=13942;\nUPDATE t2 SET b=15023 WHERE a=13943;\nUPDATE t2 SET b=62959 WHERE a=13944;\nUPDATE t2 SET b=24980 WHERE a=13945;\nUPDATE t2 SET b=92369 WHERE a=13946;\nUPDATE t2 SET b=94414 WHERE a=13947;\nUPDATE t2 SET b=89267 WHERE a=13948;\nUPDATE t2 SET b=24918 WHERE a=13949;\nUPDATE t2 SET b=87659 WHERE a=13950;\nUPDATE t2 SET b=69545 WHERE a=13951;\nUPDATE t2 SET b=22558 WHERE a=13952;\nUPDATE t2 SET b=80401 WHERE a=13953;\nUPDATE t2 SET b=65897 WHERE a=13954;\nUPDATE t2 SET b=10838 WHERE a=13955;\nUPDATE t2 SET b=88327 WHERE a=13956;\nUPDATE t2 SET b=13569 WHERE a=13957;\nUPDATE t2 SET b=29216 WHERE a=13958;\nUPDATE t2 SET b=20236 WHERE a=13959;\nUPDATE t2 SET b=9886 WHERE a=13960;\nUPDATE t2 SET b=70058 WHERE a=13961;\nUPDATE t2 SET b=33681 WHERE a=13962;\nUPDATE t2 SET b=84674 WHERE a=13963;\nUPDATE t2 SET b=45100 WHERE a=13964;\nUPDATE t2 SET b=83734 WHERE a=13965;\nUPDATE t2 SET b=79368 WHERE a=13966;\nUPDATE t2 SET b=83853 WHERE a=13967;\nUPDATE t2 SET b=5128 WHERE a=13968;\nUPDATE t2 SET b=53572 WHERE a=13969;\nUPDATE t2 SET b=79965 WHERE a=13970;\nUPDATE t2 SET b=5786 WHERE a=13971;\nUPDATE t2 SET b=29191 WHERE a=13972;\nUPDATE t2 SET b=65483 WHERE a=13973;\nUPDATE t2 SET b=13159 WHERE a=13974;\nUPDATE t2 SET b=9216 WHERE a=13975;\nUPDATE t2 SET b=12992 WHERE a=13976;\nUPDATE t2 SET b=38985 WHERE a=13977;\nUPDATE t2 SET b=45977 WHERE a=13978;\nUPDATE t2 SET b=27089 WHERE a=13979;\nUPDATE t2 SET b=4578 WHERE a=13980;\nUPDATE t2 SET b=66459 WHERE a=13981;\nUPDATE t2 SET b=77657 WHERE a=13982;\nUPDATE t2 SET b=76698 WHERE a=13983;\nUPDATE t2 SET b=33180 WHERE a=13984;\nUPDATE t2 SET b=47363 WHERE a=13985;\nUPDATE t2 SET b=12448 WHERE a=13986;\nUPDATE t2 SET b=77026 WHERE a=13987;\nUPDATE t2 SET b=71490 WHERE a=13988;\nUPDATE t2 SET b=77377 WHERE a=13989;\nUPDATE t2 SET b=22565 WHERE a=13990;\nUPDATE t2 SET b=28799 WHERE a=13991;\nUPDATE t2 SET b=16304 WHERE a=13992;\nUPDATE t2 SET b=39195 WHERE a=13993;\nUPDATE t2 SET b=99624 WHERE a=13994;\nUPDATE t2 SET b=38538 WHERE a=13995;\nUPDATE t2 SET b=66287 WHERE a=13996;\nUPDATE t2 SET b=21272 WHERE a=13997;\nUPDATE t2 SET b=35562 WHERE a=13998;\nUPDATE t2 SET b=422 WHERE a=13999;\nUPDATE t2 SET b=56304 WHERE a=14000;\nUPDATE t2 SET b=8535 WHERE a=14001;\nUPDATE t2 SET b=36260 WHERE a=14002;\nUPDATE t2 SET b=37693 WHERE a=14003;\nUPDATE t2 SET b=76997 WHERE a=14004;\nUPDATE t2 SET b=22752 WHERE a=14005;\nUPDATE t2 SET b=31610 WHERE a=14006;\nUPDATE t2 SET b=41268 WHERE a=14007;\nUPDATE t2 SET b=99809 WHERE a=14008;\nUPDATE t2 SET b=14164 WHERE a=14009;\nUPDATE t2 SET b=67026 WHERE a=14010;\nUPDATE t2 SET b=19191 WHERE a=14011;\nUPDATE t2 SET b=36903 WHERE a=14012;\nUPDATE t2 SET b=90269 WHERE a=14013;\nUPDATE t2 SET b=9260 WHERE a=14014;\nUPDATE t2 SET b=90355 WHERE a=14015;\nUPDATE t2 SET b=1454 WHERE a=14016;\nUPDATE t2 SET b=77531 WHERE a=14017;\nUPDATE t2 SET b=80538 WHERE a=14018;\nUPDATE t2 SET b=973 WHERE a=14019;\nUPDATE t2 SET b=75256 WHERE a=14020;\nUPDATE t2 SET b=8007 WHERE a=14021;\nUPDATE t2 SET b=54187 WHERE a=14022;\nUPDATE t2 SET b=55885 WHERE a=14023;\nUPDATE t2 SET b=59891 WHERE a=14024;\nUPDATE t2 SET b=23470 WHERE a=14025;\nUPDATE t2 SET b=19232 WHERE a=14026;\nUPDATE t2 SET b=94737 WHERE a=14027;\nUPDATE t2 SET b=34332 WHERE a=14028;\nUPDATE t2 SET b=68263 WHERE a=14029;\nUPDATE t2 SET b=52423 WHERE a=14030;\nUPDATE t2 SET b=34848 WHERE a=14031;\nUPDATE t2 SET b=74459 WHERE a=14032;\nUPDATE t2 SET b=71101 WHERE a=14033;\nUPDATE t2 SET b=67427 WHERE a=14034;\nUPDATE t2 SET b=34703 WHERE a=14035;\nUPDATE t2 SET b=45083 WHERE a=14036;\nUPDATE t2 SET b=30251 WHERE a=14037;\nUPDATE t2 SET b=57902 WHERE a=14038;\nUPDATE t2 SET b=67560 WHERE a=14039;\nUPDATE t2 SET b=74933 WHERE a=14040;\nUPDATE t2 SET b=49154 WHERE a=14041;\nUPDATE t2 SET b=24663 WHERE a=14042;\nUPDATE t2 SET b=91667 WHERE a=14043;\nUPDATE t2 SET b=23519 WHERE a=14044;\nUPDATE t2 SET b=85444 WHERE a=14045;\nUPDATE t2 SET b=95026 WHERE a=14046;\nUPDATE t2 SET b=97582 WHERE a=14047;\nUPDATE t2 SET b=14077 WHERE a=14048;\nUPDATE t2 SET b=14338 WHERE a=14049;\nUPDATE t2 SET b=79361 WHERE a=14050;\nUPDATE t2 SET b=82932 WHERE a=14051;\nUPDATE t2 SET b=21244 WHERE a=14052;\nUPDATE t2 SET b=21811 WHERE a=14053;\nUPDATE t2 SET b=56406 WHERE a=14054;\nUPDATE t2 SET b=15203 WHERE a=14055;\nUPDATE t2 SET b=58786 WHERE a=14056;\nUPDATE t2 SET b=85895 WHERE a=14057;\nUPDATE t2 SET b=55981 WHERE a=14058;\nUPDATE t2 SET b=75741 WHERE a=14059;\nUPDATE t2 SET b=13837 WHERE a=14060;\nUPDATE t2 SET b=64934 WHERE a=14061;\nUPDATE t2 SET b=18701 WHERE a=14062;\nUPDATE t2 SET b=32801 WHERE a=14063;\nUPDATE t2 SET b=3981 WHERE a=14064;\nUPDATE t2 SET b=53175 WHERE a=14065;\nUPDATE t2 SET b=85477 WHERE a=14066;\nUPDATE t2 SET b=82230 WHERE a=14067;\nUPDATE t2 SET b=56525 WHERE a=14068;\nUPDATE t2 SET b=36947 WHERE a=14069;\nUPDATE t2 SET b=74238 WHERE a=14070;\nUPDATE t2 SET b=85433 WHERE a=14071;\nUPDATE t2 SET b=11663 WHERE a=14072;\nUPDATE t2 SET b=90172 WHERE a=14073;\nUPDATE t2 SET b=37626 WHERE a=14074;\nUPDATE t2 SET b=67856 WHERE a=14075;\nUPDATE t2 SET b=37914 WHERE a=14076;\nUPDATE t2 SET b=34090 WHERE a=14077;\nUPDATE t2 SET b=95898 WHERE a=14078;\nUPDATE t2 SET b=27444 WHERE a=14079;\nUPDATE t2 SET b=54535 WHERE a=14080;\nUPDATE t2 SET b=76830 WHERE a=14081;\nUPDATE t2 SET b=5384 WHERE a=14082;\nUPDATE t2 SET b=4302 WHERE a=14083;\nUPDATE t2 SET b=63409 WHERE a=14084;\nUPDATE t2 SET b=86344 WHERE a=14085;\nUPDATE t2 SET b=62646 WHERE a=14086;\nUPDATE t2 SET b=2548 WHERE a=14087;\nUPDATE t2 SET b=67580 WHERE a=14088;\nUPDATE t2 SET b=99229 WHERE a=14089;\nUPDATE t2 SET b=54126 WHERE a=14090;\nUPDATE t2 SET b=21806 WHERE a=14091;\nUPDATE t2 SET b=61531 WHERE a=14092;\nUPDATE t2 SET b=94011 WHERE a=14093;\nUPDATE t2 SET b=53013 WHERE a=14094;\nUPDATE t2 SET b=53154 WHERE a=14095;\nUPDATE t2 SET b=37352 WHERE a=14096;\nUPDATE t2 SET b=18295 WHERE a=14097;\nUPDATE t2 SET b=54314 WHERE a=14098;\nUPDATE t2 SET b=53094 WHERE a=14099;\nUPDATE t2 SET b=62648 WHERE a=14100;\nUPDATE t2 SET b=76710 WHERE a=14101;\nUPDATE t2 SET b=49768 WHERE a=14102;\nUPDATE t2 SET b=8262 WHERE a=14103;\nUPDATE t2 SET b=38746 WHERE a=14104;\nUPDATE t2 SET b=11854 WHERE a=14105;\nUPDATE t2 SET b=1605 WHERE a=14106;\nUPDATE t2 SET b=66832 WHERE a=14107;\nUPDATE t2 SET b=20626 WHERE a=14108;\nUPDATE t2 SET b=3128 WHERE a=14109;\nUPDATE t2 SET b=77899 WHERE a=14110;\nUPDATE t2 SET b=83851 WHERE a=14111;\nUPDATE t2 SET b=33341 WHERE a=14112;\nUPDATE t2 SET b=21231 WHERE a=14113;\nUPDATE t2 SET b=29062 WHERE a=14114;\nUPDATE t2 SET b=13622 WHERE a=14115;\nUPDATE t2 SET b=3166 WHERE a=14116;\nUPDATE t2 SET b=5177 WHERE a=14117;\nUPDATE t2 SET b=25275 WHERE a=14118;\nUPDATE t2 SET b=29583 WHERE a=14119;\nUPDATE t2 SET b=23077 WHERE a=14120;\nUPDATE t2 SET b=54311 WHERE a=14121;\nUPDATE t2 SET b=17884 WHERE a=14122;\nUPDATE t2 SET b=50983 WHERE a=14123;\nUPDATE t2 SET b=22499 WHERE a=14124;\nUPDATE t2 SET b=95523 WHERE a=14125;\nUPDATE t2 SET b=33069 WHERE a=14126;\nUPDATE t2 SET b=16742 WHERE a=14127;\nUPDATE t2 SET b=14121 WHERE a=14128;\nUPDATE t2 SET b=77360 WHERE a=14129;\nUPDATE t2 SET b=43214 WHERE a=14130;\nUPDATE t2 SET b=39492 WHERE a=14131;\nUPDATE t2 SET b=35791 WHERE a=14132;\nUPDATE t2 SET b=51502 WHERE a=14133;\nUPDATE t2 SET b=56317 WHERE a=14134;\nUPDATE t2 SET b=30135 WHERE a=14135;\nUPDATE t2 SET b=73042 WHERE a=14136;\nUPDATE t2 SET b=85999 WHERE a=14137;\nUPDATE t2 SET b=55421 WHERE a=14138;\nUPDATE t2 SET b=93846 WHERE a=14139;\nUPDATE t2 SET b=44062 WHERE a=14140;\nUPDATE t2 SET b=21070 WHERE a=14141;\nUPDATE t2 SET b=5826 WHERE a=14142;\nUPDATE t2 SET b=82271 WHERE a=14143;\nUPDATE t2 SET b=83669 WHERE a=14144;\nUPDATE t2 SET b=80805 WHERE a=14145;\nUPDATE t2 SET b=59679 WHERE a=14146;\nUPDATE t2 SET b=63917 WHERE a=14147;\nUPDATE t2 SET b=52813 WHERE a=14148;\nUPDATE t2 SET b=30440 WHERE a=14149;\nUPDATE t2 SET b=34754 WHERE a=14150;\nUPDATE t2 SET b=37013 WHERE a=14151;\nUPDATE t2 SET b=943 WHERE a=14152;\nUPDATE t2 SET b=79187 WHERE a=14153;\nUPDATE t2 SET b=20466 WHERE a=14154;\nUPDATE t2 SET b=81081 WHERE a=14155;\nUPDATE t2 SET b=26090 WHERE a=14156;\nUPDATE t2 SET b=40370 WHERE a=14157;\nUPDATE t2 SET b=75040 WHERE a=14158;\nUPDATE t2 SET b=68193 WHERE a=14159;\nUPDATE t2 SET b=46685 WHERE a=14160;\nUPDATE t2 SET b=68576 WHERE a=14161;\nUPDATE t2 SET b=76281 WHERE a=14162;\nUPDATE t2 SET b=55879 WHERE a=14163;\nUPDATE t2 SET b=90022 WHERE a=14164;\nUPDATE t2 SET b=91374 WHERE a=14165;\nUPDATE t2 SET b=3280 WHERE a=14166;\nUPDATE t2 SET b=40828 WHERE a=14167;\nUPDATE t2 SET b=11270 WHERE a=14168;\nUPDATE t2 SET b=93564 WHERE a=14169;\nUPDATE t2 SET b=24880 WHERE a=14170;\nUPDATE t2 SET b=43694 WHERE a=14171;\nUPDATE t2 SET b=60313 WHERE a=14172;\nUPDATE t2 SET b=32863 WHERE a=14173;\nUPDATE t2 SET b=95573 WHERE a=14174;\nUPDATE t2 SET b=2314 WHERE a=14175;\nUPDATE t2 SET b=33948 WHERE a=14176;\nUPDATE t2 SET b=36246 WHERE a=14177;\nUPDATE t2 SET b=49495 WHERE a=14178;\nUPDATE t2 SET b=68127 WHERE a=14179;\nUPDATE t2 SET b=86313 WHERE a=14180;\nUPDATE t2 SET b=64590 WHERE a=14181;\nUPDATE t2 SET b=76398 WHERE a=14182;\nUPDATE t2 SET b=67110 WHERE a=14183;\nUPDATE t2 SET b=81950 WHERE a=14184;\nUPDATE t2 SET b=15290 WHERE a=14185;\nUPDATE t2 SET b=21665 WHERE a=14186;\nUPDATE t2 SET b=62043 WHERE a=14187;\nUPDATE t2 SET b=25633 WHERE a=14188;\nUPDATE t2 SET b=22742 WHERE a=14189;\nUPDATE t2 SET b=61703 WHERE a=14190;\nUPDATE t2 SET b=82029 WHERE a=14191;\nUPDATE t2 SET b=99723 WHERE a=14192;\nUPDATE t2 SET b=79902 WHERE a=14193;\nUPDATE t2 SET b=93117 WHERE a=14194;\nUPDATE t2 SET b=96334 WHERE a=14195;\nUPDATE t2 SET b=15604 WHERE a=14196;\nUPDATE t2 SET b=68209 WHERE a=14197;\nUPDATE t2 SET b=3942 WHERE a=14198;\nUPDATE t2 SET b=52552 WHERE a=14199;\nUPDATE t2 SET b=78342 WHERE a=14200;\nUPDATE t2 SET b=59615 WHERE a=14201;\nUPDATE t2 SET b=17548 WHERE a=14202;\nUPDATE t2 SET b=69095 WHERE a=14203;\nUPDATE t2 SET b=76765 WHERE a=14204;\nUPDATE t2 SET b=35259 WHERE a=14205;\nUPDATE t2 SET b=3863 WHERE a=14206;\nUPDATE t2 SET b=23645 WHERE a=14207;\nUPDATE t2 SET b=2570 WHERE a=14208;\nUPDATE t2 SET b=5981 WHERE a=14209;\nUPDATE t2 SET b=5395 WHERE a=14210;\nUPDATE t2 SET b=29526 WHERE a=14211;\nUPDATE t2 SET b=67702 WHERE a=14212;\nUPDATE t2 SET b=895 WHERE a=14213;\nUPDATE t2 SET b=67574 WHERE a=14214;\nUPDATE t2 SET b=69242 WHERE a=14215;\nUPDATE t2 SET b=45301 WHERE a=14216;\nUPDATE t2 SET b=95384 WHERE a=14217;\nUPDATE t2 SET b=98704 WHERE a=14218;\nUPDATE t2 SET b=21273 WHERE a=14219;\nUPDATE t2 SET b=53562 WHERE a=14220;\nUPDATE t2 SET b=86357 WHERE a=14221;\nUPDATE t2 SET b=47497 WHERE a=14222;\nUPDATE t2 SET b=75707 WHERE a=14223;\nUPDATE t2 SET b=32817 WHERE a=14224;\nUPDATE t2 SET b=21302 WHERE a=14225;\nUPDATE t2 SET b=41843 WHERE a=14226;\nUPDATE t2 SET b=89108 WHERE a=14227;\nUPDATE t2 SET b=36815 WHERE a=14228;\nUPDATE t2 SET b=72751 WHERE a=14229;\nUPDATE t2 SET b=47750 WHERE a=14230;\nUPDATE t2 SET b=84258 WHERE a=14231;\nUPDATE t2 SET b=24114 WHERE a=14232;\nUPDATE t2 SET b=46592 WHERE a=14233;\nUPDATE t2 SET b=69121 WHERE a=14234;\nUPDATE t2 SET b=50583 WHERE a=14235;\nUPDATE t2 SET b=77191 WHERE a=14236;\nUPDATE t2 SET b=99461 WHERE a=14237;\nUPDATE t2 SET b=79491 WHERE a=14238;\nUPDATE t2 SET b=51237 WHERE a=14239;\nUPDATE t2 SET b=90549 WHERE a=14240;\nUPDATE t2 SET b=87175 WHERE a=14241;\nUPDATE t2 SET b=90811 WHERE a=14242;\nUPDATE t2 SET b=53502 WHERE a=14243;\nUPDATE t2 SET b=16197 WHERE a=14244;\nUPDATE t2 SET b=17269 WHERE a=14245;\nUPDATE t2 SET b=94666 WHERE a=14246;\nUPDATE t2 SET b=31098 WHERE a=14247;\nUPDATE t2 SET b=10923 WHERE a=14248;\nUPDATE t2 SET b=46225 WHERE a=14249;\nUPDATE t2 SET b=50012 WHERE a=14250;\nUPDATE t2 SET b=25202 WHERE a=14251;\nUPDATE t2 SET b=38631 WHERE a=14252;\nUPDATE t2 SET b=6735 WHERE a=14253;\nUPDATE t2 SET b=91863 WHERE a=14254;\nUPDATE t2 SET b=35485 WHERE a=14255;\nUPDATE t2 SET b=22957 WHERE a=14256;\nUPDATE t2 SET b=81173 WHERE a=14257;\nUPDATE t2 SET b=57173 WHERE a=14258;\nUPDATE t2 SET b=54432 WHERE a=14259;\nUPDATE t2 SET b=19117 WHERE a=14260;\nUPDATE t2 SET b=40062 WHERE a=14261;\nUPDATE t2 SET b=61678 WHERE a=14262;\nUPDATE t2 SET b=86838 WHERE a=14263;\nUPDATE t2 SET b=92135 WHERE a=14264;\nUPDATE t2 SET b=42195 WHERE a=14265;\nUPDATE t2 SET b=80541 WHERE a=14266;\nUPDATE t2 SET b=90528 WHERE a=14267;\nUPDATE t2 SET b=39703 WHERE a=14268;\nUPDATE t2 SET b=87894 WHERE a=14269;\nUPDATE t2 SET b=23826 WHERE a=14270;\nUPDATE t2 SET b=39993 WHERE a=14271;\nUPDATE t2 SET b=44526 WHERE a=14272;\nUPDATE t2 SET b=80232 WHERE a=14273;\nUPDATE t2 SET b=25638 WHERE a=14274;\nUPDATE t2 SET b=94974 WHERE a=14275;\nUPDATE t2 SET b=19138 WHERE a=14276;\nUPDATE t2 SET b=37762 WHERE a=14277;\nUPDATE t2 SET b=64882 WHERE a=14278;\nUPDATE t2 SET b=24289 WHERE a=14279;\nUPDATE t2 SET b=17432 WHERE a=14280;\nUPDATE t2 SET b=96242 WHERE a=14281;\nUPDATE t2 SET b=25542 WHERE a=14282;\nUPDATE t2 SET b=32912 WHERE a=14283;\nUPDATE t2 SET b=96523 WHERE a=14284;\nUPDATE t2 SET b=5921 WHERE a=14285;\nUPDATE t2 SET b=50680 WHERE a=14286;\nUPDATE t2 SET b=10530 WHERE a=14287;\nUPDATE t2 SET b=34376 WHERE a=14288;\nUPDATE t2 SET b=39630 WHERE a=14289;\nUPDATE t2 SET b=40577 WHERE a=14290;\nUPDATE t2 SET b=49716 WHERE a=14291;\nUPDATE t2 SET b=81219 WHERE a=14292;\nUPDATE t2 SET b=79060 WHERE a=14293;\nUPDATE t2 SET b=21393 WHERE a=14294;\nUPDATE t2 SET b=85510 WHERE a=14295;\nUPDATE t2 SET b=86456 WHERE a=14296;\nUPDATE t2 SET b=21145 WHERE a=14297;\nUPDATE t2 SET b=26581 WHERE a=14298;\nUPDATE t2 SET b=87141 WHERE a=14299;\nUPDATE t2 SET b=54236 WHERE a=14300;\nUPDATE t2 SET b=66836 WHERE a=14301;\nUPDATE t2 SET b=50487 WHERE a=14302;\nUPDATE t2 SET b=52606 WHERE a=14303;\nUPDATE t2 SET b=19853 WHERE a=14304;\nUPDATE t2 SET b=50632 WHERE a=14305;\nUPDATE t2 SET b=72186 WHERE a=14306;\nUPDATE t2 SET b=37870 WHERE a=14307;\nUPDATE t2 SET b=70788 WHERE a=14308;\nUPDATE t2 SET b=36390 WHERE a=14309;\nUPDATE t2 SET b=4345 WHERE a=14310;\nUPDATE t2 SET b=82745 WHERE a=14311;\nUPDATE t2 SET b=68079 WHERE a=14312;\nUPDATE t2 SET b=45815 WHERE a=14313;\nUPDATE t2 SET b=20715 WHERE a=14314;\nUPDATE t2 SET b=77663 WHERE a=14315;\nUPDATE t2 SET b=32593 WHERE a=14316;\nUPDATE t2 SET b=95250 WHERE a=14317;\nUPDATE t2 SET b=75425 WHERE a=14318;\nUPDATE t2 SET b=63155 WHERE a=14319;\nUPDATE t2 SET b=35139 WHERE a=14320;\nUPDATE t2 SET b=94843 WHERE a=14321;\nUPDATE t2 SET b=649 WHERE a=14322;\nUPDATE t2 SET b=82523 WHERE a=14323;\nUPDATE t2 SET b=78515 WHERE a=14324;\nUPDATE t2 SET b=51432 WHERE a=14325;\nUPDATE t2 SET b=56550 WHERE a=14326;\nUPDATE t2 SET b=42347 WHERE a=14327;\nUPDATE t2 SET b=23635 WHERE a=14328;\nUPDATE t2 SET b=65110 WHERE a=14329;\nUPDATE t2 SET b=1172 WHERE a=14330;\nUPDATE t2 SET b=73816 WHERE a=14331;\nUPDATE t2 SET b=75344 WHERE a=14332;\nUPDATE t2 SET b=16221 WHERE a=14333;\nUPDATE t2 SET b=45054 WHERE a=14334;\nUPDATE t2 SET b=46004 WHERE a=14335;\nUPDATE t2 SET b=54180 WHERE a=14336;\nUPDATE t2 SET b=99293 WHERE a=14337;\nUPDATE t2 SET b=51093 WHERE a=14338;\nUPDATE t2 SET b=39448 WHERE a=14339;\nUPDATE t2 SET b=75402 WHERE a=14340;\nUPDATE t2 SET b=83241 WHERE a=14341;\nUPDATE t2 SET b=5186 WHERE a=14342;\nUPDATE t2 SET b=9742 WHERE a=14343;\nUPDATE t2 SET b=67926 WHERE a=14344;\nUPDATE t2 SET b=37181 WHERE a=14345;\nUPDATE t2 SET b=26672 WHERE a=14346;\nUPDATE t2 SET b=94627 WHERE a=14347;\nUPDATE t2 SET b=6343 WHERE a=14348;\nUPDATE t2 SET b=40011 WHERE a=14349;\nUPDATE t2 SET b=47424 WHERE a=14350;\nUPDATE t2 SET b=39637 WHERE a=14351;\nUPDATE t2 SET b=43811 WHERE a=14352;\nUPDATE t2 SET b=51818 WHERE a=14353;\nUPDATE t2 SET b=71690 WHERE a=14354;\nUPDATE t2 SET b=45687 WHERE a=14355;\nUPDATE t2 SET b=26617 WHERE a=14356;\nUPDATE t2 SET b=12821 WHERE a=14357;\nUPDATE t2 SET b=70912 WHERE a=14358;\nUPDATE t2 SET b=71506 WHERE a=14359;\nUPDATE t2 SET b=83574 WHERE a=14360;\nUPDATE t2 SET b=13843 WHERE a=14361;\nUPDATE t2 SET b=7205 WHERE a=14362;\nUPDATE t2 SET b=78590 WHERE a=14363;\nUPDATE t2 SET b=33761 WHERE a=14364;\nUPDATE t2 SET b=38169 WHERE a=14365;\nUPDATE t2 SET b=37311 WHERE a=14366;\nUPDATE t2 SET b=75207 WHERE a=14367;\nUPDATE t2 SET b=69494 WHERE a=14368;\nUPDATE t2 SET b=90424 WHERE a=14369;\nUPDATE t2 SET b=21928 WHERE a=14370;\nUPDATE t2 SET b=93290 WHERE a=14371;\nUPDATE t2 SET b=47049 WHERE a=14372;\nUPDATE t2 SET b=10340 WHERE a=14373;\nUPDATE t2 SET b=23800 WHERE a=14374;\nUPDATE t2 SET b=56163 WHERE a=14375;\nUPDATE t2 SET b=57527 WHERE a=14376;\nUPDATE t2 SET b=4419 WHERE a=14377;\nUPDATE t2 SET b=51234 WHERE a=14378;\nUPDATE t2 SET b=85890 WHERE a=14379;\nUPDATE t2 SET b=36065 WHERE a=14380;\nUPDATE t2 SET b=95546 WHERE a=14381;\nUPDATE t2 SET b=90373 WHERE a=14382;\nUPDATE t2 SET b=54962 WHERE a=14383;\nUPDATE t2 SET b=9005 WHERE a=14384;\nUPDATE t2 SET b=56736 WHERE a=14385;\nUPDATE t2 SET b=4437 WHERE a=14386;\nUPDATE t2 SET b=48291 WHERE a=14387;\nUPDATE t2 SET b=23569 WHERE a=14388;\nUPDATE t2 SET b=75545 WHERE a=14389;\nUPDATE t2 SET b=42070 WHERE a=14390;\nUPDATE t2 SET b=85978 WHERE a=14391;\nUPDATE t2 SET b=36915 WHERE a=14392;\nUPDATE t2 SET b=99356 WHERE a=14393;\nUPDATE t2 SET b=84424 WHERE a=14394;\nUPDATE t2 SET b=90487 WHERE a=14395;\nUPDATE t2 SET b=72037 WHERE a=14396;\nUPDATE t2 SET b=29141 WHERE a=14397;\nUPDATE t2 SET b=44211 WHERE a=14398;\nUPDATE t2 SET b=40192 WHERE a=14399;\nUPDATE t2 SET b=17031 WHERE a=14400;\nUPDATE t2 SET b=57138 WHERE a=14401;\nUPDATE t2 SET b=6942 WHERE a=14402;\nUPDATE t2 SET b=94832 WHERE a=14403;\nUPDATE t2 SET b=15223 WHERE a=14404;\nUPDATE t2 SET b=13389 WHERE a=14405;\nUPDATE t2 SET b=34431 WHERE a=14406;\nUPDATE t2 SET b=76052 WHERE a=14407;\nUPDATE t2 SET b=4354 WHERE a=14408;\nUPDATE t2 SET b=59904 WHERE a=14409;\nUPDATE t2 SET b=15756 WHERE a=14410;\nUPDATE t2 SET b=44940 WHERE a=14411;\nUPDATE t2 SET b=72080 WHERE a=14412;\nUPDATE t2 SET b=60530 WHERE a=14413;\nUPDATE t2 SET b=15753 WHERE a=14414;\nUPDATE t2 SET b=54564 WHERE a=14415;\nUPDATE t2 SET b=83183 WHERE a=14416;\nUPDATE t2 SET b=97230 WHERE a=14417;\nUPDATE t2 SET b=91576 WHERE a=14418;\nUPDATE t2 SET b=67622 WHERE a=14419;\nUPDATE t2 SET b=18896 WHERE a=14420;\nUPDATE t2 SET b=92656 WHERE a=14421;\nUPDATE t2 SET b=79537 WHERE a=14422;\nUPDATE t2 SET b=36554 WHERE a=14423;\nUPDATE t2 SET b=25432 WHERE a=14424;\nUPDATE t2 SET b=40105 WHERE a=14425;\nUPDATE t2 SET b=49225 WHERE a=14426;\nUPDATE t2 SET b=22975 WHERE a=14427;\nUPDATE t2 SET b=75193 WHERE a=14428;\nUPDATE t2 SET b=46674 WHERE a=14429;\nUPDATE t2 SET b=47243 WHERE a=14430;\nUPDATE t2 SET b=48279 WHERE a=14431;\nUPDATE t2 SET b=26746 WHERE a=14432;\nUPDATE t2 SET b=53995 WHERE a=14433;\nUPDATE t2 SET b=61625 WHERE a=14434;\nUPDATE t2 SET b=47218 WHERE a=14435;\nUPDATE t2 SET b=93230 WHERE a=14436;\nUPDATE t2 SET b=61567 WHERE a=14437;\nUPDATE t2 SET b=11688 WHERE a=14438;\nUPDATE t2 SET b=51123 WHERE a=14439;\nUPDATE t2 SET b=54921 WHERE a=14440;\nUPDATE t2 SET b=36134 WHERE a=14441;\nUPDATE t2 SET b=97758 WHERE a=14442;\nUPDATE t2 SET b=73873 WHERE a=14443;\nUPDATE t2 SET b=99382 WHERE a=14444;\nUPDATE t2 SET b=69796 WHERE a=14445;\nUPDATE t2 SET b=52396 WHERE a=14446;\nUPDATE t2 SET b=46093 WHERE a=14447;\nUPDATE t2 SET b=94927 WHERE a=14448;\nUPDATE t2 SET b=16072 WHERE a=14449;\nUPDATE t2 SET b=19009 WHERE a=14450;\nUPDATE t2 SET b=51050 WHERE a=14451;\nUPDATE t2 SET b=53570 WHERE a=14452;\nUPDATE t2 SET b=79201 WHERE a=14453;\nUPDATE t2 SET b=75367 WHERE a=14454;\nUPDATE t2 SET b=88674 WHERE a=14455;\nUPDATE t2 SET b=84430 WHERE a=14456;\nUPDATE t2 SET b=27822 WHERE a=14457;\nUPDATE t2 SET b=50653 WHERE a=14458;\nUPDATE t2 SET b=2918 WHERE a=14459;\nUPDATE t2 SET b=58511 WHERE a=14460;\nUPDATE t2 SET b=4560 WHERE a=14461;\nUPDATE t2 SET b=25436 WHERE a=14462;\nUPDATE t2 SET b=5115 WHERE a=14463;\nUPDATE t2 SET b=21623 WHERE a=14464;\nUPDATE t2 SET b=66695 WHERE a=14465;\nUPDATE t2 SET b=3142 WHERE a=14466;\nUPDATE t2 SET b=24945 WHERE a=14467;\nUPDATE t2 SET b=61176 WHERE a=14468;\nUPDATE t2 SET b=1847 WHERE a=14469;\nUPDATE t2 SET b=14462 WHERE a=14470;\nUPDATE t2 SET b=86310 WHERE a=14471;\nUPDATE t2 SET b=91021 WHERE a=14472;\nUPDATE t2 SET b=51899 WHERE a=14473;\nUPDATE t2 SET b=29445 WHERE a=14474;\nUPDATE t2 SET b=25390 WHERE a=14475;\nUPDATE t2 SET b=64782 WHERE a=14476;\nUPDATE t2 SET b=9919 WHERE a=14477;\nUPDATE t2 SET b=335 WHERE a=14478;\nUPDATE t2 SET b=47957 WHERE a=14479;\nUPDATE t2 SET b=43776 WHERE a=14480;\nUPDATE t2 SET b=48136 WHERE a=14481;\nUPDATE t2 SET b=69340 WHERE a=14482;\nUPDATE t2 SET b=55960 WHERE a=14483;\nUPDATE t2 SET b=42722 WHERE a=14484;\nUPDATE t2 SET b=12134 WHERE a=14485;\nUPDATE t2 SET b=62583 WHERE a=14486;\nUPDATE t2 SET b=27558 WHERE a=14487;\nUPDATE t2 SET b=57164 WHERE a=14488;\nUPDATE t2 SET b=47867 WHERE a=14489;\nUPDATE t2 SET b=243 WHERE a=14490;\nUPDATE t2 SET b=57182 WHERE a=14491;\nUPDATE t2 SET b=84641 WHERE a=14492;\nUPDATE t2 SET b=70689 WHERE a=14493;\nUPDATE t2 SET b=19498 WHERE a=14494;\nUPDATE t2 SET b=67797 WHERE a=14495;\nUPDATE t2 SET b=47520 WHERE a=14496;\nUPDATE t2 SET b=15129 WHERE a=14497;\nUPDATE t2 SET b=9424 WHERE a=14498;\nUPDATE t2 SET b=72408 WHERE a=14499;\nUPDATE t2 SET b=46157 WHERE a=14500;\nUPDATE t2 SET b=56113 WHERE a=14501;\nUPDATE t2 SET b=52223 WHERE a=14502;\nUPDATE t2 SET b=73676 WHERE a=14503;\nUPDATE t2 SET b=77809 WHERE a=14504;\nUPDATE t2 SET b=66016 WHERE a=14505;\nUPDATE t2 SET b=19993 WHERE a=14506;\nUPDATE t2 SET b=14279 WHERE a=14507;\nUPDATE t2 SET b=48515 WHERE a=14508;\nUPDATE t2 SET b=89452 WHERE a=14509;\nUPDATE t2 SET b=63062 WHERE a=14510;\nUPDATE t2 SET b=62157 WHERE a=14511;\nUPDATE t2 SET b=89829 WHERE a=14512;\nUPDATE t2 SET b=2916 WHERE a=14513;\nUPDATE t2 SET b=66852 WHERE a=14514;\nUPDATE t2 SET b=77799 WHERE a=14515;\nUPDATE t2 SET b=216 WHERE a=14516;\nUPDATE t2 SET b=98571 WHERE a=14517;\nUPDATE t2 SET b=567 WHERE a=14518;\nUPDATE t2 SET b=51218 WHERE a=14519;\nUPDATE t2 SET b=70955 WHERE a=14520;\nUPDATE t2 SET b=79350 WHERE a=14521;\nUPDATE t2 SET b=93305 WHERE a=14522;\nUPDATE t2 SET b=29535 WHERE a=14523;\nUPDATE t2 SET b=43877 WHERE a=14524;\nUPDATE t2 SET b=58211 WHERE a=14525;\nUPDATE t2 SET b=29064 WHERE a=14526;\nUPDATE t2 SET b=70076 WHERE a=14527;\nUPDATE t2 SET b=27493 WHERE a=14528;\nUPDATE t2 SET b=65242 WHERE a=14529;\nUPDATE t2 SET b=76059 WHERE a=14530;\nUPDATE t2 SET b=99180 WHERE a=14531;\nUPDATE t2 SET b=3104 WHERE a=14532;\nUPDATE t2 SET b=1575 WHERE a=14533;\nUPDATE t2 SET b=34885 WHERE a=14534;\nUPDATE t2 SET b=44009 WHERE a=14535;\nUPDATE t2 SET b=33587 WHERE a=14536;\nUPDATE t2 SET b=17611 WHERE a=14537;\nUPDATE t2 SET b=55616 WHERE a=14538;\nUPDATE t2 SET b=16151 WHERE a=14539;\nUPDATE t2 SET b=26303 WHERE a=14540;\nUPDATE t2 SET b=2332 WHERE a=14541;\nUPDATE t2 SET b=77562 WHERE a=14542;\nUPDATE t2 SET b=62757 WHERE a=14543;\nUPDATE t2 SET b=97774 WHERE a=14544;\nUPDATE t2 SET b=81984 WHERE a=14545;\nUPDATE t2 SET b=8918 WHERE a=14546;\nUPDATE t2 SET b=3075 WHERE a=14547;\nUPDATE t2 SET b=22536 WHERE a=14548;\nUPDATE t2 SET b=95414 WHERE a=14549;\nUPDATE t2 SET b=1435 WHERE a=14550;\nUPDATE t2 SET b=27705 WHERE a=14551;\nUPDATE t2 SET b=3959 WHERE a=14552;\nUPDATE t2 SET b=24474 WHERE a=14553;\nUPDATE t2 SET b=58594 WHERE a=14554;\nUPDATE t2 SET b=26523 WHERE a=14555;\nUPDATE t2 SET b=5140 WHERE a=14556;\nUPDATE t2 SET b=51695 WHERE a=14557;\nUPDATE t2 SET b=46617 WHERE a=14558;\nUPDATE t2 SET b=41263 WHERE a=14559;\nUPDATE t2 SET b=79344 WHERE a=14560;\nUPDATE t2 SET b=44370 WHERE a=14561;\nUPDATE t2 SET b=1464 WHERE a=14562;\nUPDATE t2 SET b=19846 WHERE a=14563;\nUPDATE t2 SET b=97233 WHERE a=14564;\nUPDATE t2 SET b=85070 WHERE a=14565;\nUPDATE t2 SET b=16326 WHERE a=14566;\nUPDATE t2 SET b=65690 WHERE a=14567;\nUPDATE t2 SET b=71480 WHERE a=14568;\nUPDATE t2 SET b=86281 WHERE a=14569;\nUPDATE t2 SET b=81372 WHERE a=14570;\nUPDATE t2 SET b=59926 WHERE a=14571;\nUPDATE t2 SET b=4447 WHERE a=14572;\nUPDATE t2 SET b=93293 WHERE a=14573;\nUPDATE t2 SET b=42018 WHERE a=14574;\nUPDATE t2 SET b=5835 WHERE a=14575;\nUPDATE t2 SET b=16464 WHERE a=14576;\nUPDATE t2 SET b=40563 WHERE a=14577;\nUPDATE t2 SET b=79559 WHERE a=14578;\nUPDATE t2 SET b=60928 WHERE a=14579;\nUPDATE t2 SET b=10595 WHERE a=14580;\nUPDATE t2 SET b=28815 WHERE a=14581;\nUPDATE t2 SET b=11776 WHERE a=14582;\nUPDATE t2 SET b=80055 WHERE a=14583;\nUPDATE t2 SET b=61953 WHERE a=14584;\nUPDATE t2 SET b=48159 WHERE a=14585;\nUPDATE t2 SET b=12131 WHERE a=14586;\nUPDATE t2 SET b=48912 WHERE a=14587;\nUPDATE t2 SET b=2569 WHERE a=14588;\nUPDATE t2 SET b=44663 WHERE a=14589;\nUPDATE t2 SET b=29106 WHERE a=14590;\nUPDATE t2 SET b=14026 WHERE a=14591;\nUPDATE t2 SET b=96047 WHERE a=14592;\nUPDATE t2 SET b=36602 WHERE a=14593;\nUPDATE t2 SET b=14486 WHERE a=14594;\nUPDATE t2 SET b=398 WHERE a=14595;\nUPDATE t2 SET b=45381 WHERE a=14596;\nUPDATE t2 SET b=15321 WHERE a=14597;\nUPDATE t2 SET b=56575 WHERE a=14598;\nUPDATE t2 SET b=73163 WHERE a=14599;\nUPDATE t2 SET b=37309 WHERE a=14600;\nUPDATE t2 SET b=1032 WHERE a=14601;\nUPDATE t2 SET b=28860 WHERE a=14602;\nUPDATE t2 SET b=99245 WHERE a=14603;\nUPDATE t2 SET b=91459 WHERE a=14604;\nUPDATE t2 SET b=68724 WHERE a=14605;\nUPDATE t2 SET b=8106 WHERE a=14606;\nUPDATE t2 SET b=99804 WHERE a=14607;\nUPDATE t2 SET b=96430 WHERE a=14608;\nUPDATE t2 SET b=10901 WHERE a=14609;\nUPDATE t2 SET b=32977 WHERE a=14610;\nUPDATE t2 SET b=93222 WHERE a=14611;\nUPDATE t2 SET b=19483 WHERE a=14612;\nUPDATE t2 SET b=66179 WHERE a=14613;\nUPDATE t2 SET b=81955 WHERE a=14614;\nUPDATE t2 SET b=84844 WHERE a=14615;\nUPDATE t2 SET b=48171 WHERE a=14616;\nUPDATE t2 SET b=4066 WHERE a=14617;\nUPDATE t2 SET b=21153 WHERE a=14618;\nUPDATE t2 SET b=63067 WHERE a=14619;\nUPDATE t2 SET b=26429 WHERE a=14620;\nUPDATE t2 SET b=76035 WHERE a=14621;\nUPDATE t2 SET b=12351 WHERE a=14622;\nUPDATE t2 SET b=19408 WHERE a=14623;\nUPDATE t2 SET b=22945 WHERE a=14624;\nUPDATE t2 SET b=32405 WHERE a=14625;\nUPDATE t2 SET b=46229 WHERE a=14626;\nUPDATE t2 SET b=85772 WHERE a=14627;\nUPDATE t2 SET b=16576 WHERE a=14628;\nUPDATE t2 SET b=80519 WHERE a=14629;\nUPDATE t2 SET b=93299 WHERE a=14630;\nUPDATE t2 SET b=37792 WHERE a=14631;\nUPDATE t2 SET b=48686 WHERE a=14632;\nUPDATE t2 SET b=68182 WHERE a=14633;\nUPDATE t2 SET b=71149 WHERE a=14634;\nUPDATE t2 SET b=13041 WHERE a=14635;\nUPDATE t2 SET b=25233 WHERE a=14636;\nUPDATE t2 SET b=92960 WHERE a=14637;\nUPDATE t2 SET b=83281 WHERE a=14638;\nUPDATE t2 SET b=96296 WHERE a=14639;\nUPDATE t2 SET b=54519 WHERE a=14640;\nUPDATE t2 SET b=21874 WHERE a=14641;\nUPDATE t2 SET b=32198 WHERE a=14642;\nUPDATE t2 SET b=99870 WHERE a=14643;\nUPDATE t2 SET b=46649 WHERE a=14644;\nUPDATE t2 SET b=7289 WHERE a=14645;\nUPDATE t2 SET b=95286 WHERE a=14646;\nUPDATE t2 SET b=85494 WHERE a=14647;\nUPDATE t2 SET b=60846 WHERE a=14648;\nUPDATE t2 SET b=38715 WHERE a=14649;\nUPDATE t2 SET b=28869 WHERE a=14650;\nUPDATE t2 SET b=44986 WHERE a=14651;\nUPDATE t2 SET b=41890 WHERE a=14652;\nUPDATE t2 SET b=14998 WHERE a=14653;\nUPDATE t2 SET b=19758 WHERE a=14654;\nUPDATE t2 SET b=7262 WHERE a=14655;\nUPDATE t2 SET b=25977 WHERE a=14656;\nUPDATE t2 SET b=30137 WHERE a=14657;\nUPDATE t2 SET b=7393 WHERE a=14658;\nUPDATE t2 SET b=28570 WHERE a=14659;\nUPDATE t2 SET b=37521 WHERE a=14660;\nUPDATE t2 SET b=24192 WHERE a=14661;\nUPDATE t2 SET b=97800 WHERE a=14662;\nUPDATE t2 SET b=19968 WHERE a=14663;\nUPDATE t2 SET b=64388 WHERE a=14664;\nUPDATE t2 SET b=93455 WHERE a=14665;\nUPDATE t2 SET b=65625 WHERE a=14666;\nUPDATE t2 SET b=81483 WHERE a=14667;\nUPDATE t2 SET b=21402 WHERE a=14668;\nUPDATE t2 SET b=43271 WHERE a=14669;\nUPDATE t2 SET b=41937 WHERE a=14670;\nUPDATE t2 SET b=82877 WHERE a=14671;\nUPDATE t2 SET b=61898 WHERE a=14672;\nUPDATE t2 SET b=36020 WHERE a=14673;\nUPDATE t2 SET b=92206 WHERE a=14674;\nUPDATE t2 SET b=9113 WHERE a=14675;\nUPDATE t2 SET b=50978 WHERE a=14676;\nUPDATE t2 SET b=55026 WHERE a=14677;\nUPDATE t2 SET b=83435 WHERE a=14678;\nUPDATE t2 SET b=58827 WHERE a=14679;\nUPDATE t2 SET b=38828 WHERE a=14680;\nUPDATE t2 SET b=65211 WHERE a=14681;\nUPDATE t2 SET b=31169 WHERE a=14682;\nUPDATE t2 SET b=44578 WHERE a=14683;\nUPDATE t2 SET b=1752 WHERE a=14684;\nUPDATE t2 SET b=89068 WHERE a=14685;\nUPDATE t2 SET b=24274 WHERE a=14686;\nUPDATE t2 SET b=53867 WHERE a=14687;\nUPDATE t2 SET b=35734 WHERE a=14688;\nUPDATE t2 SET b=32173 WHERE a=14689;\nUPDATE t2 SET b=21779 WHERE a=14690;\nUPDATE t2 SET b=86816 WHERE a=14691;\nUPDATE t2 SET b=8736 WHERE a=14692;\nUPDATE t2 SET b=31925 WHERE a=14693;\nUPDATE t2 SET b=97833 WHERE a=14694;\nUPDATE t2 SET b=11515 WHERE a=14695;\nUPDATE t2 SET b=13506 WHERE a=14696;\nUPDATE t2 SET b=20977 WHERE a=14697;\nUPDATE t2 SET b=88113 WHERE a=14698;\nUPDATE t2 SET b=73866 WHERE a=14699;\nUPDATE t2 SET b=45342 WHERE a=14700;\nUPDATE t2 SET b=3239 WHERE a=14701;\nUPDATE t2 SET b=52580 WHERE a=14702;\nUPDATE t2 SET b=59158 WHERE a=14703;\nUPDATE t2 SET b=3833 WHERE a=14704;\nUPDATE t2 SET b=5429 WHERE a=14705;\nUPDATE t2 SET b=81174 WHERE a=14706;\nUPDATE t2 SET b=85146 WHERE a=14707;\nUPDATE t2 SET b=73513 WHERE a=14708;\nUPDATE t2 SET b=17784 WHERE a=14709;\nUPDATE t2 SET b=20144 WHERE a=14710;\nUPDATE t2 SET b=38997 WHERE a=14711;\nUPDATE t2 SET b=6490 WHERE a=14712;\nUPDATE t2 SET b=31094 WHERE a=14713;\nUPDATE t2 SET b=53040 WHERE a=14714;\nUPDATE t2 SET b=89454 WHERE a=14715;\nUPDATE t2 SET b=21091 WHERE a=14716;\nUPDATE t2 SET b=29581 WHERE a=14717;\nUPDATE t2 SET b=79466 WHERE a=14718;\nUPDATE t2 SET b=46795 WHERE a=14719;\nUPDATE t2 SET b=31146 WHERE a=14720;\nUPDATE t2 SET b=45618 WHERE a=14721;\nUPDATE t2 SET b=99437 WHERE a=14722;\nUPDATE t2 SET b=81953 WHERE a=14723;\nUPDATE t2 SET b=81506 WHERE a=14724;\nUPDATE t2 SET b=48971 WHERE a=14725;\nUPDATE t2 SET b=37357 WHERE a=14726;\nUPDATE t2 SET b=78938 WHERE a=14727;\nUPDATE t2 SET b=94383 WHERE a=14728;\nUPDATE t2 SET b=48266 WHERE a=14729;\nUPDATE t2 SET b=83592 WHERE a=14730;\nUPDATE t2 SET b=56963 WHERE a=14731;\nUPDATE t2 SET b=90321 WHERE a=14732;\nUPDATE t2 SET b=89070 WHERE a=14733;\nUPDATE t2 SET b=13434 WHERE a=14734;\nUPDATE t2 SET b=71464 WHERE a=14735;\nUPDATE t2 SET b=19477 WHERE a=14736;\nUPDATE t2 SET b=48051 WHERE a=14737;\nUPDATE t2 SET b=61544 WHERE a=14738;\nUPDATE t2 SET b=93623 WHERE a=14739;\nUPDATE t2 SET b=29085 WHERE a=14740;\nUPDATE t2 SET b=42048 WHERE a=14741;\nUPDATE t2 SET b=22525 WHERE a=14742;\nUPDATE t2 SET b=42531 WHERE a=14743;\nUPDATE t2 SET b=63295 WHERE a=14744;\nUPDATE t2 SET b=65336 WHERE a=14745;\nUPDATE t2 SET b=51461 WHERE a=14746;\nUPDATE t2 SET b=24674 WHERE a=14747;\nUPDATE t2 SET b=52325 WHERE a=14748;\nUPDATE t2 SET b=43516 WHERE a=14749;\nUPDATE t2 SET b=48211 WHERE a=14750;\nUPDATE t2 SET b=41537 WHERE a=14751;\nUPDATE t2 SET b=69387 WHERE a=14752;\nUPDATE t2 SET b=25202 WHERE a=14753;\nUPDATE t2 SET b=33579 WHERE a=14754;\nUPDATE t2 SET b=70422 WHERE a=14755;\nUPDATE t2 SET b=47343 WHERE a=14756;\nUPDATE t2 SET b=29225 WHERE a=14757;\nUPDATE t2 SET b=62601 WHERE a=14758;\nUPDATE t2 SET b=21237 WHERE a=14759;\nUPDATE t2 SET b=77939 WHERE a=14760;\nUPDATE t2 SET b=23447 WHERE a=14761;\nUPDATE t2 SET b=23681 WHERE a=14762;\nUPDATE t2 SET b=52908 WHERE a=14763;\nUPDATE t2 SET b=42762 WHERE a=14764;\nUPDATE t2 SET b=25874 WHERE a=14765;\nUPDATE t2 SET b=15712 WHERE a=14766;\nUPDATE t2 SET b=97548 WHERE a=14767;\nUPDATE t2 SET b=41464 WHERE a=14768;\nUPDATE t2 SET b=18040 WHERE a=14769;\nUPDATE t2 SET b=61768 WHERE a=14770;\nUPDATE t2 SET b=71190 WHERE a=14771;\nUPDATE t2 SET b=66677 WHERE a=14772;\nUPDATE t2 SET b=96564 WHERE a=14773;\nUPDATE t2 SET b=67940 WHERE a=14774;\nUPDATE t2 SET b=79348 WHERE a=14775;\nUPDATE t2 SET b=91729 WHERE a=14776;\nUPDATE t2 SET b=3280 WHERE a=14777;\nUPDATE t2 SET b=10721 WHERE a=14778;\nUPDATE t2 SET b=40499 WHERE a=14779;\nUPDATE t2 SET b=38797 WHERE a=14780;\nUPDATE t2 SET b=99037 WHERE a=14781;\nUPDATE t2 SET b=65191 WHERE a=14782;\nUPDATE t2 SET b=90751 WHERE a=14783;\nUPDATE t2 SET b=85053 WHERE a=14784;\nUPDATE t2 SET b=59339 WHERE a=14785;\nUPDATE t2 SET b=84513 WHERE a=14786;\nUPDATE t2 SET b=85365 WHERE a=14787;\nUPDATE t2 SET b=28244 WHERE a=14788;\nUPDATE t2 SET b=58873 WHERE a=14789;\nUPDATE t2 SET b=42358 WHERE a=14790;\nUPDATE t2 SET b=19458 WHERE a=14791;\nUPDATE t2 SET b=67232 WHERE a=14792;\nUPDATE t2 SET b=97187 WHERE a=14793;\nUPDATE t2 SET b=26253 WHERE a=14794;\nUPDATE t2 SET b=13792 WHERE a=14795;\nUPDATE t2 SET b=59944 WHERE a=14796;\nUPDATE t2 SET b=36290 WHERE a=14797;\nUPDATE t2 SET b=62583 WHERE a=14798;\nUPDATE t2 SET b=12018 WHERE a=14799;\nUPDATE t2 SET b=98059 WHERE a=14800;\nUPDATE t2 SET b=46053 WHERE a=14801;\nUPDATE t2 SET b=7667 WHERE a=14802;\nUPDATE t2 SET b=65598 WHERE a=14803;\nUPDATE t2 SET b=55642 WHERE a=14804;\nUPDATE t2 SET b=37219 WHERE a=14805;\nUPDATE t2 SET b=41311 WHERE a=14806;\nUPDATE t2 SET b=93579 WHERE a=14807;\nUPDATE t2 SET b=14147 WHERE a=14808;\nUPDATE t2 SET b=11718 WHERE a=14809;\nUPDATE t2 SET b=66651 WHERE a=14810;\nUPDATE t2 SET b=35571 WHERE a=14811;\nUPDATE t2 SET b=46680 WHERE a=14812;\nUPDATE t2 SET b=17986 WHERE a=14813;\nUPDATE t2 SET b=16990 WHERE a=14814;\nUPDATE t2 SET b=83980 WHERE a=14815;\nUPDATE t2 SET b=58369 WHERE a=14816;\nUPDATE t2 SET b=78133 WHERE a=14817;\nUPDATE t2 SET b=44776 WHERE a=14818;\nUPDATE t2 SET b=87612 WHERE a=14819;\nUPDATE t2 SET b=97395 WHERE a=14820;\nUPDATE t2 SET b=94730 WHERE a=14821;\nUPDATE t2 SET b=2873 WHERE a=14822;\nUPDATE t2 SET b=92765 WHERE a=14823;\nUPDATE t2 SET b=41025 WHERE a=14824;\nUPDATE t2 SET b=30249 WHERE a=14825;\nUPDATE t2 SET b=78008 WHERE a=14826;\nUPDATE t2 SET b=36258 WHERE a=14827;\nUPDATE t2 SET b=42859 WHERE a=14828;\nUPDATE t2 SET b=51262 WHERE a=14829;\nUPDATE t2 SET b=10751 WHERE a=14830;\nUPDATE t2 SET b=70144 WHERE a=14831;\nUPDATE t2 SET b=94857 WHERE a=14832;\nUPDATE t2 SET b=84367 WHERE a=14833;\nUPDATE t2 SET b=76530 WHERE a=14834;\nUPDATE t2 SET b=28352 WHERE a=14835;\nUPDATE t2 SET b=91018 WHERE a=14836;\nUPDATE t2 SET b=8884 WHERE a=14837;\nUPDATE t2 SET b=35564 WHERE a=14838;\nUPDATE t2 SET b=28175 WHERE a=14839;\nUPDATE t2 SET b=843 WHERE a=14840;\nUPDATE t2 SET b=65740 WHERE a=14841;\nUPDATE t2 SET b=51156 WHERE a=14842;\nUPDATE t2 SET b=7538 WHERE a=14843;\nUPDATE t2 SET b=41480 WHERE a=14844;\nUPDATE t2 SET b=83865 WHERE a=14845;\nUPDATE t2 SET b=98469 WHERE a=14846;\nUPDATE t2 SET b=95586 WHERE a=14847;\nUPDATE t2 SET b=87574 WHERE a=14848;\nUPDATE t2 SET b=94284 WHERE a=14849;\nUPDATE t2 SET b=111 WHERE a=14850;\nUPDATE t2 SET b=24343 WHERE a=14851;\nUPDATE t2 SET b=14031 WHERE a=14852;\nUPDATE t2 SET b=67251 WHERE a=14853;\nUPDATE t2 SET b=47508 WHERE a=14854;\nUPDATE t2 SET b=84091 WHERE a=14855;\nUPDATE t2 SET b=81358 WHERE a=14856;\nUPDATE t2 SET b=35364 WHERE a=14857;\nUPDATE t2 SET b=10200 WHERE a=14858;\nUPDATE t2 SET b=58092 WHERE a=14859;\nUPDATE t2 SET b=41625 WHERE a=14860;\nUPDATE t2 SET b=70950 WHERE a=14861;\nUPDATE t2 SET b=14918 WHERE a=14862;\nUPDATE t2 SET b=54678 WHERE a=14863;\nUPDATE t2 SET b=84874 WHERE a=14864;\nUPDATE t2 SET b=43755 WHERE a=14865;\nUPDATE t2 SET b=63961 WHERE a=14866;\nUPDATE t2 SET b=46153 WHERE a=14867;\nUPDATE t2 SET b=30071 WHERE a=14868;\nUPDATE t2 SET b=67457 WHERE a=14869;\nUPDATE t2 SET b=90491 WHERE a=14870;\nUPDATE t2 SET b=93577 WHERE a=14871;\nUPDATE t2 SET b=13679 WHERE a=14872;\nUPDATE t2 SET b=61067 WHERE a=14873;\nUPDATE t2 SET b=83486 WHERE a=14874;\nUPDATE t2 SET b=34782 WHERE a=14875;\nUPDATE t2 SET b=8578 WHERE a=14876;\nUPDATE t2 SET b=57409 WHERE a=14877;\nUPDATE t2 SET b=37627 WHERE a=14878;\nUPDATE t2 SET b=60196 WHERE a=14879;\nUPDATE t2 SET b=16920 WHERE a=14880;\nUPDATE t2 SET b=55658 WHERE a=14881;\nUPDATE t2 SET b=32286 WHERE a=14882;\nUPDATE t2 SET b=51482 WHERE a=14883;\nUPDATE t2 SET b=29842 WHERE a=14884;\nUPDATE t2 SET b=28454 WHERE a=14885;\nUPDATE t2 SET b=83440 WHERE a=14886;\nUPDATE t2 SET b=19448 WHERE a=14887;\nUPDATE t2 SET b=1516 WHERE a=14888;\nUPDATE t2 SET b=77745 WHERE a=14889;\nUPDATE t2 SET b=51207 WHERE a=14890;\nUPDATE t2 SET b=2764 WHERE a=14891;\nUPDATE t2 SET b=45620 WHERE a=14892;\nUPDATE t2 SET b=59915 WHERE a=14893;\nUPDATE t2 SET b=81770 WHERE a=14894;\nUPDATE t2 SET b=34749 WHERE a=14895;\nUPDATE t2 SET b=1808 WHERE a=14896;\nUPDATE t2 SET b=40232 WHERE a=14897;\nUPDATE t2 SET b=61521 WHERE a=14898;\nUPDATE t2 SET b=23543 WHERE a=14899;\nUPDATE t2 SET b=4556 WHERE a=14900;\nUPDATE t2 SET b=38630 WHERE a=14901;\nUPDATE t2 SET b=47727 WHERE a=14902;\nUPDATE t2 SET b=17913 WHERE a=14903;\nUPDATE t2 SET b=99428 WHERE a=14904;\nUPDATE t2 SET b=1105 WHERE a=14905;\nUPDATE t2 SET b=28395 WHERE a=14906;\nUPDATE t2 SET b=36348 WHERE a=14907;\nUPDATE t2 SET b=16057 WHERE a=14908;\nUPDATE t2 SET b=43912 WHERE a=14909;\nUPDATE t2 SET b=89428 WHERE a=14910;\nUPDATE t2 SET b=61543 WHERE a=14911;\nUPDATE t2 SET b=64863 WHERE a=14912;\nUPDATE t2 SET b=23043 WHERE a=14913;\nUPDATE t2 SET b=87103 WHERE a=14914;\nUPDATE t2 SET b=61236 WHERE a=14915;\nUPDATE t2 SET b=39204 WHERE a=14916;\nUPDATE t2 SET b=93010 WHERE a=14917;\nUPDATE t2 SET b=35435 WHERE a=14918;\nUPDATE t2 SET b=17864 WHERE a=14919;\nUPDATE t2 SET b=27143 WHERE a=14920;\nUPDATE t2 SET b=65643 WHERE a=14921;\nUPDATE t2 SET b=55305 WHERE a=14922;\nUPDATE t2 SET b=33668 WHERE a=14923;\nUPDATE t2 SET b=5368 WHERE a=14924;\nUPDATE t2 SET b=26225 WHERE a=14925;\nUPDATE t2 SET b=64271 WHERE a=14926;\nUPDATE t2 SET b=45686 WHERE a=14927;\nUPDATE t2 SET b=45627 WHERE a=14928;\nUPDATE t2 SET b=32657 WHERE a=14929;\nUPDATE t2 SET b=34815 WHERE a=14930;\nUPDATE t2 SET b=5202 WHERE a=14931;\nUPDATE t2 SET b=96965 WHERE a=14932;\nUPDATE t2 SET b=64540 WHERE a=14933;\nUPDATE t2 SET b=91037 WHERE a=14934;\nUPDATE t2 SET b=25215 WHERE a=14935;\nUPDATE t2 SET b=34101 WHERE a=14936;\nUPDATE t2 SET b=45969 WHERE a=14937;\nUPDATE t2 SET b=76159 WHERE a=14938;\nUPDATE t2 SET b=61106 WHERE a=14939;\nUPDATE t2 SET b=83572 WHERE a=14940;\nUPDATE t2 SET b=37491 WHERE a=14941;\nUPDATE t2 SET b=12681 WHERE a=14942;\nUPDATE t2 SET b=93530 WHERE a=14943;\nUPDATE t2 SET b=2914 WHERE a=14944;\nUPDATE t2 SET b=68005 WHERE a=14945;\nUPDATE t2 SET b=74001 WHERE a=14946;\nUPDATE t2 SET b=94222 WHERE a=14947;\nUPDATE t2 SET b=10908 WHERE a=14948;\nUPDATE t2 SET b=60720 WHERE a=14949;\nUPDATE t2 SET b=71612 WHERE a=14950;\nUPDATE t2 SET b=24657 WHERE a=14951;\nUPDATE t2 SET b=5176 WHERE a=14952;\nUPDATE t2 SET b=77699 WHERE a=14953;\nUPDATE t2 SET b=36685 WHERE a=14954;\nUPDATE t2 SET b=1649 WHERE a=14955;\nUPDATE t2 SET b=10336 WHERE a=14956;\nUPDATE t2 SET b=9216 WHERE a=14957;\nUPDATE t2 SET b=63985 WHERE a=14958;\nUPDATE t2 SET b=76937 WHERE a=14959;\nUPDATE t2 SET b=33886 WHERE a=14960;\nUPDATE t2 SET b=34729 WHERE a=14961;\nUPDATE t2 SET b=59372 WHERE a=14962;\nUPDATE t2 SET b=28247 WHERE a=14963;\nUPDATE t2 SET b=81257 WHERE a=14964;\nUPDATE t2 SET b=34924 WHERE a=14965;\nUPDATE t2 SET b=98711 WHERE a=14966;\nUPDATE t2 SET b=86157 WHERE a=14967;\nUPDATE t2 SET b=54183 WHERE a=14968;\nUPDATE t2 SET b=28117 WHERE a=14969;\nUPDATE t2 SET b=19514 WHERE a=14970;\nUPDATE t2 SET b=91775 WHERE a=14971;\nUPDATE t2 SET b=91684 WHERE a=14972;\nUPDATE t2 SET b=11719 WHERE a=14973;\nUPDATE t2 SET b=87803 WHERE a=14974;\nUPDATE t2 SET b=23343 WHERE a=14975;\nUPDATE t2 SET b=55783 WHERE a=14976;\nUPDATE t2 SET b=85722 WHERE a=14977;\nUPDATE t2 SET b=48191 WHERE a=14978;\nUPDATE t2 SET b=4638 WHERE a=14979;\nUPDATE t2 SET b=51584 WHERE a=14980;\nUPDATE t2 SET b=31509 WHERE a=14981;\nUPDATE t2 SET b=58007 WHERE a=14982;\nUPDATE t2 SET b=58222 WHERE a=14983;\nUPDATE t2 SET b=43324 WHERE a=14984;\nUPDATE t2 SET b=62955 WHERE a=14985;\nUPDATE t2 SET b=9124 WHERE a=14986;\nUPDATE t2 SET b=14755 WHERE a=14987;\nUPDATE t2 SET b=4463 WHERE a=14988;\nUPDATE t2 SET b=12267 WHERE a=14989;\nUPDATE t2 SET b=7341 WHERE a=14990;\nUPDATE t2 SET b=58459 WHERE a=14991;\nUPDATE t2 SET b=99649 WHERE a=14992;\nUPDATE t2 SET b=88595 WHERE a=14993;\nUPDATE t2 SET b=66942 WHERE a=14994;\nUPDATE t2 SET b=89925 WHERE a=14995;\nUPDATE t2 SET b=8045 WHERE a=14996;\nUPDATE t2 SET b=77455 WHERE a=14997;\nUPDATE t2 SET b=46241 WHERE a=14998;\nUPDATE t2 SET b=64519 WHERE a=14999;\nUPDATE t2 SET b=61046 WHERE a=15000;\nUPDATE t2 SET b=8768 WHERE a=15001;\nUPDATE t2 SET b=87918 WHERE a=15002;\nUPDATE t2 SET b=65342 WHERE a=15003;\nUPDATE t2 SET b=36851 WHERE a=15004;\nUPDATE t2 SET b=56983 WHERE a=15005;\nUPDATE t2 SET b=94040 WHERE a=15006;\nUPDATE t2 SET b=7014 WHERE a=15007;\nUPDATE t2 SET b=85923 WHERE a=15008;\nUPDATE t2 SET b=32003 WHERE a=15009;\nUPDATE t2 SET b=67884 WHERE a=15010;\nUPDATE t2 SET b=45136 WHERE a=15011;\nUPDATE t2 SET b=11257 WHERE a=15012;\nUPDATE t2 SET b=92689 WHERE a=15013;\nUPDATE t2 SET b=30082 WHERE a=15014;\nUPDATE t2 SET b=86713 WHERE a=15015;\nUPDATE t2 SET b=61075 WHERE a=15016;\nUPDATE t2 SET b=19824 WHERE a=15017;\nUPDATE t2 SET b=45667 WHERE a=15018;\nUPDATE t2 SET b=20930 WHERE a=15019;\nUPDATE t2 SET b=6307 WHERE a=15020;\nUPDATE t2 SET b=8655 WHERE a=15021;\nUPDATE t2 SET b=40627 WHERE a=15022;\nUPDATE t2 SET b=79358 WHERE a=15023;\nUPDATE t2 SET b=96749 WHERE a=15024;\nUPDATE t2 SET b=32495 WHERE a=15025;\nUPDATE t2 SET b=25053 WHERE a=15026;\nUPDATE t2 SET b=53060 WHERE a=15027;\nUPDATE t2 SET b=64193 WHERE a=15028;\nUPDATE t2 SET b=48964 WHERE a=15029;\nUPDATE t2 SET b=60720 WHERE a=15030;\nUPDATE t2 SET b=59976 WHERE a=15031;\nUPDATE t2 SET b=32238 WHERE a=15032;\nUPDATE t2 SET b=62913 WHERE a=15033;\nUPDATE t2 SET b=90220 WHERE a=15034;\nUPDATE t2 SET b=62192 WHERE a=15035;\nUPDATE t2 SET b=40789 WHERE a=15036;\nUPDATE t2 SET b=34893 WHERE a=15037;\nUPDATE t2 SET b=47817 WHERE a=15038;\nUPDATE t2 SET b=51203 WHERE a=15039;\nUPDATE t2 SET b=17985 WHERE a=15040;\nUPDATE t2 SET b=83096 WHERE a=15041;\nUPDATE t2 SET b=43298 WHERE a=15042;\nUPDATE t2 SET b=43777 WHERE a=15043;\nUPDATE t2 SET b=59415 WHERE a=15044;\nUPDATE t2 SET b=34374 WHERE a=15045;\nUPDATE t2 SET b=59036 WHERE a=15046;\nUPDATE t2 SET b=42367 WHERE a=15047;\nUPDATE t2 SET b=61341 WHERE a=15048;\nUPDATE t2 SET b=86494 WHERE a=15049;\nUPDATE t2 SET b=88145 WHERE a=15050;\nUPDATE t2 SET b=65246 WHERE a=15051;\nUPDATE t2 SET b=58004 WHERE a=15052;\nUPDATE t2 SET b=49724 WHERE a=15053;\nUPDATE t2 SET b=1412 WHERE a=15054;\nUPDATE t2 SET b=96087 WHERE a=15055;\nUPDATE t2 SET b=63235 WHERE a=15056;\nUPDATE t2 SET b=50599 WHERE a=15057;\nUPDATE t2 SET b=61411 WHERE a=15058;\nUPDATE t2 SET b=12734 WHERE a=15059;\nUPDATE t2 SET b=92362 WHERE a=15060;\nUPDATE t2 SET b=58436 WHERE a=15061;\nUPDATE t2 SET b=10762 WHERE a=15062;\nUPDATE t2 SET b=28881 WHERE a=15063;\nUPDATE t2 SET b=76481 WHERE a=15064;\nUPDATE t2 SET b=25190 WHERE a=15065;\nUPDATE t2 SET b=79827 WHERE a=15066;\nUPDATE t2 SET b=98286 WHERE a=15067;\nUPDATE t2 SET b=19077 WHERE a=15068;\nUPDATE t2 SET b=18484 WHERE a=15069;\nUPDATE t2 SET b=11019 WHERE a=15070;\nUPDATE t2 SET b=27703 WHERE a=15071;\nUPDATE t2 SET b=79664 WHERE a=15072;\nUPDATE t2 SET b=59104 WHERE a=15073;\nUPDATE t2 SET b=83803 WHERE a=15074;\nUPDATE t2 SET b=53668 WHERE a=15075;\nUPDATE t2 SET b=8410 WHERE a=15076;\nUPDATE t2 SET b=87791 WHERE a=15077;\nUPDATE t2 SET b=25752 WHERE a=15078;\nUPDATE t2 SET b=59933 WHERE a=15079;\nUPDATE t2 SET b=52096 WHERE a=15080;\nUPDATE t2 SET b=6395 WHERE a=15081;\nUPDATE t2 SET b=59149 WHERE a=15082;\nUPDATE t2 SET b=59298 WHERE a=15083;\nUPDATE t2 SET b=19181 WHERE a=15084;\nUPDATE t2 SET b=37294 WHERE a=15085;\nUPDATE t2 SET b=51990 WHERE a=15086;\nUPDATE t2 SET b=15279 WHERE a=15087;\nUPDATE t2 SET b=85464 WHERE a=15088;\nUPDATE t2 SET b=75700 WHERE a=15089;\nUPDATE t2 SET b=54584 WHERE a=15090;\nUPDATE t2 SET b=76553 WHERE a=15091;\nUPDATE t2 SET b=62325 WHERE a=15092;\nUPDATE t2 SET b=42645 WHERE a=15093;\nUPDATE t2 SET b=48380 WHERE a=15094;\nUPDATE t2 SET b=90649 WHERE a=15095;\nUPDATE t2 SET b=92281 WHERE a=15096;\nUPDATE t2 SET b=99232 WHERE a=15097;\nUPDATE t2 SET b=6528 WHERE a=15098;\nUPDATE t2 SET b=46917 WHERE a=15099;\nUPDATE t2 SET b=95319 WHERE a=15100;\nUPDATE t2 SET b=65690 WHERE a=15101;\nUPDATE t2 SET b=76333 WHERE a=15102;\nUPDATE t2 SET b=30424 WHERE a=15103;\nUPDATE t2 SET b=45910 WHERE a=15104;\nUPDATE t2 SET b=52643 WHERE a=15105;\nUPDATE t2 SET b=25055 WHERE a=15106;\nUPDATE t2 SET b=60159 WHERE a=15107;\nUPDATE t2 SET b=24399 WHERE a=15108;\nUPDATE t2 SET b=67542 WHERE a=15109;\nUPDATE t2 SET b=80310 WHERE a=15110;\nUPDATE t2 SET b=31740 WHERE a=15111;\nUPDATE t2 SET b=99510 WHERE a=15112;\nUPDATE t2 SET b=88970 WHERE a=15113;\nUPDATE t2 SET b=9475 WHERE a=15114;\nUPDATE t2 SET b=32546 WHERE a=15115;\nUPDATE t2 SET b=25173 WHERE a=15116;\nUPDATE t2 SET b=45340 WHERE a=15117;\nUPDATE t2 SET b=78010 WHERE a=15118;\nUPDATE t2 SET b=434 WHERE a=15119;\nUPDATE t2 SET b=44623 WHERE a=15120;\nUPDATE t2 SET b=97216 WHERE a=15121;\nUPDATE t2 SET b=82907 WHERE a=15122;\nUPDATE t2 SET b=29759 WHERE a=15123;\nUPDATE t2 SET b=14533 WHERE a=15124;\nUPDATE t2 SET b=7398 WHERE a=15125;\nUPDATE t2 SET b=76111 WHERE a=15126;\nUPDATE t2 SET b=19491 WHERE a=15127;\nUPDATE t2 SET b=81223 WHERE a=15128;\nUPDATE t2 SET b=28686 WHERE a=15129;\nUPDATE t2 SET b=33064 WHERE a=15130;\nUPDATE t2 SET b=38590 WHERE a=15131;\nUPDATE t2 SET b=95528 WHERE a=15132;\nUPDATE t2 SET b=88813 WHERE a=15133;\nUPDATE t2 SET b=34947 WHERE a=15134;\nUPDATE t2 SET b=98500 WHERE a=15135;\nUPDATE t2 SET b=80344 WHERE a=15136;\nUPDATE t2 SET b=46837 WHERE a=15137;\nUPDATE t2 SET b=58062 WHERE a=15138;\nUPDATE t2 SET b=65504 WHERE a=15139;\nUPDATE t2 SET b=39722 WHERE a=15140;\nUPDATE t2 SET b=94182 WHERE a=15141;\nUPDATE t2 SET b=62402 WHERE a=15142;\nUPDATE t2 SET b=71447 WHERE a=15143;\nUPDATE t2 SET b=53060 WHERE a=15144;\nUPDATE t2 SET b=19916 WHERE a=15145;\nUPDATE t2 SET b=57212 WHERE a=15146;\nUPDATE t2 SET b=14929 WHERE a=15147;\nUPDATE t2 SET b=63549 WHERE a=15148;\nUPDATE t2 SET b=30024 WHERE a=15149;\nUPDATE t2 SET b=71608 WHERE a=15150;\nUPDATE t2 SET b=38934 WHERE a=15151;\nUPDATE t2 SET b=76760 WHERE a=15152;\nUPDATE t2 SET b=91863 WHERE a=15153;\nUPDATE t2 SET b=88764 WHERE a=15154;\nUPDATE t2 SET b=69440 WHERE a=15155;\nUPDATE t2 SET b=76123 WHERE a=15156;\nUPDATE t2 SET b=10505 WHERE a=15157;\nUPDATE t2 SET b=74231 WHERE a=15158;\nUPDATE t2 SET b=76043 WHERE a=15159;\nUPDATE t2 SET b=5522 WHERE a=15160;\nUPDATE t2 SET b=61488 WHERE a=15161;\nUPDATE t2 SET b=53468 WHERE a=15162;\nUPDATE t2 SET b=51809 WHERE a=15163;\nUPDATE t2 SET b=45081 WHERE a=15164;\nUPDATE t2 SET b=75868 WHERE a=15165;\nUPDATE t2 SET b=36251 WHERE a=15166;\nUPDATE t2 SET b=82221 WHERE a=15167;\nUPDATE t2 SET b=45004 WHERE a=15168;\nUPDATE t2 SET b=1775 WHERE a=15169;\nUPDATE t2 SET b=87063 WHERE a=15170;\nUPDATE t2 SET b=60342 WHERE a=15171;\nUPDATE t2 SET b=88968 WHERE a=15172;\nUPDATE t2 SET b=75302 WHERE a=15173;\nUPDATE t2 SET b=42553 WHERE a=15174;\nUPDATE t2 SET b=79374 WHERE a=15175;\nUPDATE t2 SET b=47695 WHERE a=15176;\nUPDATE t2 SET b=61654 WHERE a=15177;\nUPDATE t2 SET b=61920 WHERE a=15178;\nUPDATE t2 SET b=96925 WHERE a=15179;\nUPDATE t2 SET b=39645 WHERE a=15180;\nUPDATE t2 SET b=16471 WHERE a=15181;\nUPDATE t2 SET b=61966 WHERE a=15182;\nUPDATE t2 SET b=42295 WHERE a=15183;\nUPDATE t2 SET b=25718 WHERE a=15184;\nUPDATE t2 SET b=43979 WHERE a=15185;\nUPDATE t2 SET b=30468 WHERE a=15186;\nUPDATE t2 SET b=62951 WHERE a=15187;\nUPDATE t2 SET b=31055 WHERE a=15188;\nUPDATE t2 SET b=11858 WHERE a=15189;\nUPDATE t2 SET b=55811 WHERE a=15190;\nUPDATE t2 SET b=44686 WHERE a=15191;\nUPDATE t2 SET b=92245 WHERE a=15192;\nUPDATE t2 SET b=53709 WHERE a=15193;\nUPDATE t2 SET b=28318 WHERE a=15194;\nUPDATE t2 SET b=62801 WHERE a=15195;\nUPDATE t2 SET b=41993 WHERE a=15196;\nUPDATE t2 SET b=83796 WHERE a=15197;\nUPDATE t2 SET b=13452 WHERE a=15198;\nUPDATE t2 SET b=56388 WHERE a=15199;\nUPDATE t2 SET b=12807 WHERE a=15200;\nUPDATE t2 SET b=62495 WHERE a=15201;\nUPDATE t2 SET b=36960 WHERE a=15202;\nUPDATE t2 SET b=43840 WHERE a=15203;\nUPDATE t2 SET b=6220 WHERE a=15204;\nUPDATE t2 SET b=14508 WHERE a=15205;\nUPDATE t2 SET b=54426 WHERE a=15206;\nUPDATE t2 SET b=83209 WHERE a=15207;\nUPDATE t2 SET b=24908 WHERE a=15208;\nUPDATE t2 SET b=31272 WHERE a=15209;\nUPDATE t2 SET b=89009 WHERE a=15210;\nUPDATE t2 SET b=57689 WHERE a=15211;\nUPDATE t2 SET b=67321 WHERE a=15212;\nUPDATE t2 SET b=50123 WHERE a=15213;\nUPDATE t2 SET b=42371 WHERE a=15214;\nUPDATE t2 SET b=71130 WHERE a=15215;\nUPDATE t2 SET b=73565 WHERE a=15216;\nUPDATE t2 SET b=21814 WHERE a=15217;\nUPDATE t2 SET b=91996 WHERE a=15218;\nUPDATE t2 SET b=3953 WHERE a=15219;\nUPDATE t2 SET b=58968 WHERE a=15220;\nUPDATE t2 SET b=96122 WHERE a=15221;\nUPDATE t2 SET b=46229 WHERE a=15222;\nUPDATE t2 SET b=70850 WHERE a=15223;\nUPDATE t2 SET b=86393 WHERE a=15224;\nUPDATE t2 SET b=44049 WHERE a=15225;\nUPDATE t2 SET b=42860 WHERE a=15226;\nUPDATE t2 SET b=69307 WHERE a=15227;\nUPDATE t2 SET b=19840 WHERE a=15228;\nUPDATE t2 SET b=84587 WHERE a=15229;\nUPDATE t2 SET b=73696 WHERE a=15230;\nUPDATE t2 SET b=86081 WHERE a=15231;\nUPDATE t2 SET b=14851 WHERE a=15232;\nUPDATE t2 SET b=10961 WHERE a=15233;\nUPDATE t2 SET b=72235 WHERE a=15234;\nUPDATE t2 SET b=86554 WHERE a=15235;\nUPDATE t2 SET b=43521 WHERE a=15236;\nUPDATE t2 SET b=74865 WHERE a=15237;\nUPDATE t2 SET b=46689 WHERE a=15238;\nUPDATE t2 SET b=56996 WHERE a=15239;\nUPDATE t2 SET b=86398 WHERE a=15240;\nUPDATE t2 SET b=6189 WHERE a=15241;\nUPDATE t2 SET b=45280 WHERE a=15242;\nUPDATE t2 SET b=23497 WHERE a=15243;\nUPDATE t2 SET b=43872 WHERE a=15244;\nUPDATE t2 SET b=92052 WHERE a=15245;\nUPDATE t2 SET b=89841 WHERE a=15246;\nUPDATE t2 SET b=8734 WHERE a=15247;\nUPDATE t2 SET b=40376 WHERE a=15248;\nUPDATE t2 SET b=54137 WHERE a=15249;\nUPDATE t2 SET b=48829 WHERE a=15250;\nUPDATE t2 SET b=21293 WHERE a=15251;\nUPDATE t2 SET b=47634 WHERE a=15252;\nUPDATE t2 SET b=31420 WHERE a=15253;\nUPDATE t2 SET b=56525 WHERE a=15254;\nUPDATE t2 SET b=97985 WHERE a=15255;\nUPDATE t2 SET b=20031 WHERE a=15256;\nUPDATE t2 SET b=30821 WHERE a=15257;\nUPDATE t2 SET b=40329 WHERE a=15258;\nUPDATE t2 SET b=82984 WHERE a=15259;\nUPDATE t2 SET b=20528 WHERE a=15260;\nUPDATE t2 SET b=77714 WHERE a=15261;\nUPDATE t2 SET b=77903 WHERE a=15262;\nUPDATE t2 SET b=39214 WHERE a=15263;\nUPDATE t2 SET b=90045 WHERE a=15264;\nUPDATE t2 SET b=65660 WHERE a=15265;\nUPDATE t2 SET b=2205 WHERE a=15266;\nUPDATE t2 SET b=13037 WHERE a=15267;\nUPDATE t2 SET b=7764 WHERE a=15268;\nUPDATE t2 SET b=37553 WHERE a=15269;\nUPDATE t2 SET b=41592 WHERE a=15270;\nUPDATE t2 SET b=78178 WHERE a=15271;\nUPDATE t2 SET b=77559 WHERE a=15272;\nUPDATE t2 SET b=19772 WHERE a=15273;\nUPDATE t2 SET b=80362 WHERE a=15274;\nUPDATE t2 SET b=79437 WHERE a=15275;\nUPDATE t2 SET b=74302 WHERE a=15276;\nUPDATE t2 SET b=48292 WHERE a=15277;\nUPDATE t2 SET b=88624 WHERE a=15278;\nUPDATE t2 SET b=66471 WHERE a=15279;\nUPDATE t2 SET b=14237 WHERE a=15280;\nUPDATE t2 SET b=86627 WHERE a=15281;\nUPDATE t2 SET b=35224 WHERE a=15282;\nUPDATE t2 SET b=7245 WHERE a=15283;\nUPDATE t2 SET b=18816 WHERE a=15284;\nUPDATE t2 SET b=84341 WHERE a=15285;\nUPDATE t2 SET b=5781 WHERE a=15286;\nUPDATE t2 SET b=47646 WHERE a=15287;\nUPDATE t2 SET b=44586 WHERE a=15288;\nUPDATE t2 SET b=99912 WHERE a=15289;\nUPDATE t2 SET b=10518 WHERE a=15290;\nUPDATE t2 SET b=8539 WHERE a=15291;\nUPDATE t2 SET b=64834 WHERE a=15292;\nUPDATE t2 SET b=14442 WHERE a=15293;\nUPDATE t2 SET b=67919 WHERE a=15294;\nUPDATE t2 SET b=36419 WHERE a=15295;\nUPDATE t2 SET b=45183 WHERE a=15296;\nUPDATE t2 SET b=72096 WHERE a=15297;\nUPDATE t2 SET b=11788 WHERE a=15298;\nUPDATE t2 SET b=14070 WHERE a=15299;\nUPDATE t2 SET b=28084 WHERE a=15300;\nUPDATE t2 SET b=55174 WHERE a=15301;\nUPDATE t2 SET b=45569 WHERE a=15302;\nUPDATE t2 SET b=73550 WHERE a=15303;\nUPDATE t2 SET b=30929 WHERE a=15304;\nUPDATE t2 SET b=9740 WHERE a=15305;\nUPDATE t2 SET b=13843 WHERE a=15306;\nUPDATE t2 SET b=77490 WHERE a=15307;\nUPDATE t2 SET b=92280 WHERE a=15308;\nUPDATE t2 SET b=15272 WHERE a=15309;\nUPDATE t2 SET b=70913 WHERE a=15310;\nUPDATE t2 SET b=47440 WHERE a=15311;\nUPDATE t2 SET b=37358 WHERE a=15312;\nUPDATE t2 SET b=89136 WHERE a=15313;\nUPDATE t2 SET b=39367 WHERE a=15314;\nUPDATE t2 SET b=83152 WHERE a=15315;\nUPDATE t2 SET b=58220 WHERE a=15316;\nUPDATE t2 SET b=22675 WHERE a=15317;\nUPDATE t2 SET b=32771 WHERE a=15318;\nUPDATE t2 SET b=81756 WHERE a=15319;\nUPDATE t2 SET b=84459 WHERE a=15320;\nUPDATE t2 SET b=96940 WHERE a=15321;\nUPDATE t2 SET b=72370 WHERE a=15322;\nUPDATE t2 SET b=89578 WHERE a=15323;\nUPDATE t2 SET b=48359 WHERE a=15324;\nUPDATE t2 SET b=34525 WHERE a=15325;\nUPDATE t2 SET b=73681 WHERE a=15326;\nUPDATE t2 SET b=44998 WHERE a=15327;\nUPDATE t2 SET b=71850 WHERE a=15328;\nUPDATE t2 SET b=78933 WHERE a=15329;\nUPDATE t2 SET b=20234 WHERE a=15330;\nUPDATE t2 SET b=15863 WHERE a=15331;\nUPDATE t2 SET b=63592 WHERE a=15332;\nUPDATE t2 SET b=21911 WHERE a=15333;\nUPDATE t2 SET b=92801 WHERE a=15334;\nUPDATE t2 SET b=18598 WHERE a=15335;\nUPDATE t2 SET b=44293 WHERE a=15336;\nUPDATE t2 SET b=19025 WHERE a=15337;\nUPDATE t2 SET b=66328 WHERE a=15338;\nUPDATE t2 SET b=98461 WHERE a=15339;\nUPDATE t2 SET b=52392 WHERE a=15340;\nUPDATE t2 SET b=14940 WHERE a=15341;\nUPDATE t2 SET b=39744 WHERE a=15342;\nUPDATE t2 SET b=69933 WHERE a=15343;\nUPDATE t2 SET b=20869 WHERE a=15344;\nUPDATE t2 SET b=6356 WHERE a=15345;\nUPDATE t2 SET b=7153 WHERE a=15346;\nUPDATE t2 SET b=33533 WHERE a=15347;\nUPDATE t2 SET b=30021 WHERE a=15348;\nUPDATE t2 SET b=36389 WHERE a=15349;\nUPDATE t2 SET b=29882 WHERE a=15350;\nUPDATE t2 SET b=57029 WHERE a=15351;\nUPDATE t2 SET b=72839 WHERE a=15352;\nUPDATE t2 SET b=45314 WHERE a=15353;\nUPDATE t2 SET b=63736 WHERE a=15354;\nUPDATE t2 SET b=40359 WHERE a=15355;\nUPDATE t2 SET b=54491 WHERE a=15356;\nUPDATE t2 SET b=9048 WHERE a=15357;\nUPDATE t2 SET b=79164 WHERE a=15358;\nUPDATE t2 SET b=92515 WHERE a=15359;\nUPDATE t2 SET b=85265 WHERE a=15360;\nUPDATE t2 SET b=17656 WHERE a=15361;\nUPDATE t2 SET b=58379 WHERE a=15362;\nUPDATE t2 SET b=83179 WHERE a=15363;\nUPDATE t2 SET b=77087 WHERE a=15364;\nUPDATE t2 SET b=5725 WHERE a=15365;\nUPDATE t2 SET b=10830 WHERE a=15366;\nUPDATE t2 SET b=38036 WHERE a=15367;\nUPDATE t2 SET b=88730 WHERE a=15368;\nUPDATE t2 SET b=60719 WHERE a=15369;\nUPDATE t2 SET b=69238 WHERE a=15370;\nUPDATE t2 SET b=62492 WHERE a=15371;\nUPDATE t2 SET b=7641 WHERE a=15372;\nUPDATE t2 SET b=50380 WHERE a=15373;\nUPDATE t2 SET b=29816 WHERE a=15374;\nUPDATE t2 SET b=16860 WHERE a=15375;\nUPDATE t2 SET b=41634 WHERE a=15376;\nUPDATE t2 SET b=48098 WHERE a=15377;\nUPDATE t2 SET b=62295 WHERE a=15378;\nUPDATE t2 SET b=1617 WHERE a=15379;\nUPDATE t2 SET b=65085 WHERE a=15380;\nUPDATE t2 SET b=91773 WHERE a=15381;\nUPDATE t2 SET b=79303 WHERE a=15382;\nUPDATE t2 SET b=9355 WHERE a=15383;\nUPDATE t2 SET b=29025 WHERE a=15384;\nUPDATE t2 SET b=40362 WHERE a=15385;\nUPDATE t2 SET b=73255 WHERE a=15386;\nUPDATE t2 SET b=2858 WHERE a=15387;\nUPDATE t2 SET b=51817 WHERE a=15388;\nUPDATE t2 SET b=10186 WHERE a=15389;\nUPDATE t2 SET b=54069 WHERE a=15390;\nUPDATE t2 SET b=55617 WHERE a=15391;\nUPDATE t2 SET b=15096 WHERE a=15392;\nUPDATE t2 SET b=83598 WHERE a=15393;\nUPDATE t2 SET b=85195 WHERE a=15394;\nUPDATE t2 SET b=49903 WHERE a=15395;\nUPDATE t2 SET b=81861 WHERE a=15396;\nUPDATE t2 SET b=4493 WHERE a=15397;\nUPDATE t2 SET b=27178 WHERE a=15398;\nUPDATE t2 SET b=63806 WHERE a=15399;\nUPDATE t2 SET b=68271 WHERE a=15400;\nUPDATE t2 SET b=83320 WHERE a=15401;\nUPDATE t2 SET b=32151 WHERE a=15402;\nUPDATE t2 SET b=99158 WHERE a=15403;\nUPDATE t2 SET b=77581 WHERE a=15404;\nUPDATE t2 SET b=97914 WHERE a=15405;\nUPDATE t2 SET b=13870 WHERE a=15406;\nUPDATE t2 SET b=6493 WHERE a=15407;\nUPDATE t2 SET b=54538 WHERE a=15408;\nUPDATE t2 SET b=98795 WHERE a=15409;\nUPDATE t2 SET b=57214 WHERE a=15410;\nUPDATE t2 SET b=9333 WHERE a=15411;\nUPDATE t2 SET b=5410 WHERE a=15412;\nUPDATE t2 SET b=36672 WHERE a=15413;\nUPDATE t2 SET b=8321 WHERE a=15414;\nUPDATE t2 SET b=46096 WHERE a=15415;\nUPDATE t2 SET b=71256 WHERE a=15416;\nUPDATE t2 SET b=47623 WHERE a=15417;\nUPDATE t2 SET b=84535 WHERE a=15418;\nUPDATE t2 SET b=84242 WHERE a=15419;\nUPDATE t2 SET b=70297 WHERE a=15420;\nUPDATE t2 SET b=566 WHERE a=15421;\nUPDATE t2 SET b=29539 WHERE a=15422;\nUPDATE t2 SET b=4930 WHERE a=15423;\nUPDATE t2 SET b=27373 WHERE a=15424;\nUPDATE t2 SET b=73871 WHERE a=15425;\nUPDATE t2 SET b=61570 WHERE a=15426;\nUPDATE t2 SET b=83017 WHERE a=15427;\nUPDATE t2 SET b=89689 WHERE a=15428;\nUPDATE t2 SET b=93393 WHERE a=15429;\nUPDATE t2 SET b=68196 WHERE a=15430;\nUPDATE t2 SET b=78145 WHERE a=15431;\nUPDATE t2 SET b=18049 WHERE a=15432;\nUPDATE t2 SET b=30863 WHERE a=15433;\nUPDATE t2 SET b=76603 WHERE a=15434;\nUPDATE t2 SET b=90482 WHERE a=15435;\nUPDATE t2 SET b=4936 WHERE a=15436;\nUPDATE t2 SET b=20710 WHERE a=15437;\nUPDATE t2 SET b=90588 WHERE a=15438;\nUPDATE t2 SET b=4269 WHERE a=15439;\nUPDATE t2 SET b=29900 WHERE a=15440;\nUPDATE t2 SET b=55621 WHERE a=15441;\nUPDATE t2 SET b=88414 WHERE a=15442;\nUPDATE t2 SET b=38312 WHERE a=15443;\nUPDATE t2 SET b=93479 WHERE a=15444;\nUPDATE t2 SET b=92898 WHERE a=15445;\nUPDATE t2 SET b=82386 WHERE a=15446;\nUPDATE t2 SET b=63225 WHERE a=15447;\nUPDATE t2 SET b=31808 WHERE a=15448;\nUPDATE t2 SET b=41449 WHERE a=15449;\nUPDATE t2 SET b=81135 WHERE a=15450;\nUPDATE t2 SET b=60525 WHERE a=15451;\nUPDATE t2 SET b=66 WHERE a=15452;\nUPDATE t2 SET b=44670 WHERE a=15453;\nUPDATE t2 SET b=2015 WHERE a=15454;\nUPDATE t2 SET b=28474 WHERE a=15455;\nUPDATE t2 SET b=32008 WHERE a=15456;\nUPDATE t2 SET b=64566 WHERE a=15457;\nUPDATE t2 SET b=48388 WHERE a=15458;\nUPDATE t2 SET b=37760 WHERE a=15459;\nUPDATE t2 SET b=52844 WHERE a=15460;\nUPDATE t2 SET b=5483 WHERE a=15461;\nUPDATE t2 SET b=27452 WHERE a=15462;\nUPDATE t2 SET b=75623 WHERE a=15463;\nUPDATE t2 SET b=5117 WHERE a=15464;\nUPDATE t2 SET b=66987 WHERE a=15465;\nUPDATE t2 SET b=68497 WHERE a=15466;\nUPDATE t2 SET b=53500 WHERE a=15467;\nUPDATE t2 SET b=96221 WHERE a=15468;\nUPDATE t2 SET b=37555 WHERE a=15469;\nUPDATE t2 SET b=34149 WHERE a=15470;\nUPDATE t2 SET b=56925 WHERE a=15471;\nUPDATE t2 SET b=49421 WHERE a=15472;\nUPDATE t2 SET b=12963 WHERE a=15473;\nUPDATE t2 SET b=46047 WHERE a=15474;\nUPDATE t2 SET b=73708 WHERE a=15475;\nUPDATE t2 SET b=59540 WHERE a=15476;\nUPDATE t2 SET b=87119 WHERE a=15477;\nUPDATE t2 SET b=4170 WHERE a=15478;\nUPDATE t2 SET b=16266 WHERE a=15479;\nUPDATE t2 SET b=42721 WHERE a=15480;\nUPDATE t2 SET b=10485 WHERE a=15481;\nUPDATE t2 SET b=97959 WHERE a=15482;\nUPDATE t2 SET b=87359 WHERE a=15483;\nUPDATE t2 SET b=55159 WHERE a=15484;\nUPDATE t2 SET b=31856 WHERE a=15485;\nUPDATE t2 SET b=84932 WHERE a=15486;\nUPDATE t2 SET b=60839 WHERE a=15487;\nUPDATE t2 SET b=94417 WHERE a=15488;\nUPDATE t2 SET b=83508 WHERE a=15489;\nUPDATE t2 SET b=76186 WHERE a=15490;\nUPDATE t2 SET b=23457 WHERE a=15491;\nUPDATE t2 SET b=59983 WHERE a=15492;\nUPDATE t2 SET b=37420 WHERE a=15493;\nUPDATE t2 SET b=66058 WHERE a=15494;\nUPDATE t2 SET b=43813 WHERE a=15495;\nUPDATE t2 SET b=27446 WHERE a=15496;\nUPDATE t2 SET b=57324 WHERE a=15497;\nUPDATE t2 SET b=68495 WHERE a=15498;\nUPDATE t2 SET b=74567 WHERE a=15499;\nUPDATE t2 SET b=64371 WHERE a=15500;\nUPDATE t2 SET b=32754 WHERE a=15501;\nUPDATE t2 SET b=12166 WHERE a=15502;\nUPDATE t2 SET b=66074 WHERE a=15503;\nUPDATE t2 SET b=71421 WHERE a=15504;\nUPDATE t2 SET b=91130 WHERE a=15505;\nUPDATE t2 SET b=37665 WHERE a=15506;\nUPDATE t2 SET b=5772 WHERE a=15507;\nUPDATE t2 SET b=32019 WHERE a=15508;\nUPDATE t2 SET b=21049 WHERE a=15509;\nUPDATE t2 SET b=23299 WHERE a=15510;\nUPDATE t2 SET b=32573 WHERE a=15511;\nUPDATE t2 SET b=95111 WHERE a=15512;\nUPDATE t2 SET b=10909 WHERE a=15513;\nUPDATE t2 SET b=40535 WHERE a=15514;\nUPDATE t2 SET b=54341 WHERE a=15515;\nUPDATE t2 SET b=40348 WHERE a=15516;\nUPDATE t2 SET b=47839 WHERE a=15517;\nUPDATE t2 SET b=97017 WHERE a=15518;\nUPDATE t2 SET b=8878 WHERE a=15519;\nUPDATE t2 SET b=53143 WHERE a=15520;\nUPDATE t2 SET b=55524 WHERE a=15521;\nUPDATE t2 SET b=55644 WHERE a=15522;\nUPDATE t2 SET b=50131 WHERE a=15523;\nUPDATE t2 SET b=82893 WHERE a=15524;\nUPDATE t2 SET b=6589 WHERE a=15525;\nUPDATE t2 SET b=39444 WHERE a=15526;\nUPDATE t2 SET b=21817 WHERE a=15527;\nUPDATE t2 SET b=10978 WHERE a=15528;\nUPDATE t2 SET b=18133 WHERE a=15529;\nUPDATE t2 SET b=27248 WHERE a=15530;\nUPDATE t2 SET b=10518 WHERE a=15531;\nUPDATE t2 SET b=22550 WHERE a=15532;\nUPDATE t2 SET b=72849 WHERE a=15533;\nUPDATE t2 SET b=31256 WHERE a=15534;\nUPDATE t2 SET b=14536 WHERE a=15535;\nUPDATE t2 SET b=77911 WHERE a=15536;\nUPDATE t2 SET b=63485 WHERE a=15537;\nUPDATE t2 SET b=28182 WHERE a=15538;\nUPDATE t2 SET b=30231 WHERE a=15539;\nUPDATE t2 SET b=25016 WHERE a=15540;\nUPDATE t2 SET b=40452 WHERE a=15541;\nUPDATE t2 SET b=17669 WHERE a=15542;\nUPDATE t2 SET b=22568 WHERE a=15543;\nUPDATE t2 SET b=99889 WHERE a=15544;\nUPDATE t2 SET b=8403 WHERE a=15545;\nUPDATE t2 SET b=38365 WHERE a=15546;\nUPDATE t2 SET b=16040 WHERE a=15547;\nUPDATE t2 SET b=83108 WHERE a=15548;\nUPDATE t2 SET b=32468 WHERE a=15549;\nUPDATE t2 SET b=91164 WHERE a=15550;\nUPDATE t2 SET b=72909 WHERE a=15551;\nUPDATE t2 SET b=69887 WHERE a=15552;\nUPDATE t2 SET b=71304 WHERE a=15553;\nUPDATE t2 SET b=89904 WHERE a=15554;\nUPDATE t2 SET b=87392 WHERE a=15555;\nUPDATE t2 SET b=8245 WHERE a=15556;\nUPDATE t2 SET b=59706 WHERE a=15557;\nUPDATE t2 SET b=6628 WHERE a=15558;\nUPDATE t2 SET b=2041 WHERE a=15559;\nUPDATE t2 SET b=80690 WHERE a=15560;\nUPDATE t2 SET b=76888 WHERE a=15561;\nUPDATE t2 SET b=17141 WHERE a=15562;\nUPDATE t2 SET b=81278 WHERE a=15563;\nUPDATE t2 SET b=48403 WHERE a=15564;\nUPDATE t2 SET b=17872 WHERE a=15565;\nUPDATE t2 SET b=65465 WHERE a=15566;\nUPDATE t2 SET b=69432 WHERE a=15567;\nUPDATE t2 SET b=15369 WHERE a=15568;\nUPDATE t2 SET b=66729 WHERE a=15569;\nUPDATE t2 SET b=13633 WHERE a=15570;\nUPDATE t2 SET b=17575 WHERE a=15571;\nUPDATE t2 SET b=74469 WHERE a=15572;\nUPDATE t2 SET b=9969 WHERE a=15573;\nUPDATE t2 SET b=2271 WHERE a=15574;\nUPDATE t2 SET b=2738 WHERE a=15575;\nUPDATE t2 SET b=87570 WHERE a=15576;\nUPDATE t2 SET b=78640 WHERE a=15577;\nUPDATE t2 SET b=14909 WHERE a=15578;\nUPDATE t2 SET b=1139 WHERE a=15579;\nUPDATE t2 SET b=60178 WHERE a=15580;\nUPDATE t2 SET b=32178 WHERE a=15581;\nUPDATE t2 SET b=41515 WHERE a=15582;\nUPDATE t2 SET b=11922 WHERE a=15583;\nUPDATE t2 SET b=61989 WHERE a=15584;\nUPDATE t2 SET b=95145 WHERE a=15585;\nUPDATE t2 SET b=91355 WHERE a=15586;\nUPDATE t2 SET b=83248 WHERE a=15587;\nUPDATE t2 SET b=83315 WHERE a=15588;\nUPDATE t2 SET b=81414 WHERE a=15589;\nUPDATE t2 SET b=93564 WHERE a=15590;\nUPDATE t2 SET b=14764 WHERE a=15591;\nUPDATE t2 SET b=89575 WHERE a=15592;\nUPDATE t2 SET b=27776 WHERE a=15593;\nUPDATE t2 SET b=65565 WHERE a=15594;\nUPDATE t2 SET b=4500 WHERE a=15595;\nUPDATE t2 SET b=60335 WHERE a=15596;\nUPDATE t2 SET b=62931 WHERE a=15597;\nUPDATE t2 SET b=84178 WHERE a=15598;\nUPDATE t2 SET b=54088 WHERE a=15599;\nUPDATE t2 SET b=34642 WHERE a=15600;\nUPDATE t2 SET b=94690 WHERE a=15601;\nUPDATE t2 SET b=88900 WHERE a=15602;\nUPDATE t2 SET b=29467 WHERE a=15603;\nUPDATE t2 SET b=63966 WHERE a=15604;\nUPDATE t2 SET b=85871 WHERE a=15605;\nUPDATE t2 SET b=35421 WHERE a=15606;\nUPDATE t2 SET b=95889 WHERE a=15607;\nUPDATE t2 SET b=42029 WHERE a=15608;\nUPDATE t2 SET b=65896 WHERE a=15609;\nUPDATE t2 SET b=96603 WHERE a=15610;\nUPDATE t2 SET b=74136 WHERE a=15611;\nUPDATE t2 SET b=46184 WHERE a=15612;\nUPDATE t2 SET b=62233 WHERE a=15613;\nUPDATE t2 SET b=84820 WHERE a=15614;\nUPDATE t2 SET b=69162 WHERE a=15615;\nUPDATE t2 SET b=44189 WHERE a=15616;\nUPDATE t2 SET b=21762 WHERE a=15617;\nUPDATE t2 SET b=78127 WHERE a=15618;\nUPDATE t2 SET b=16761 WHERE a=15619;\nUPDATE t2 SET b=48081 WHERE a=15620;\nUPDATE t2 SET b=89197 WHERE a=15621;\nUPDATE t2 SET b=31087 WHERE a=15622;\nUPDATE t2 SET b=62537 WHERE a=15623;\nUPDATE t2 SET b=81816 WHERE a=15624;\nUPDATE t2 SET b=7479 WHERE a=15625;\nUPDATE t2 SET b=88771 WHERE a=15626;\nUPDATE t2 SET b=15302 WHERE a=15627;\nUPDATE t2 SET b=76177 WHERE a=15628;\nUPDATE t2 SET b=69570 WHERE a=15629;\nUPDATE t2 SET b=73672 WHERE a=15630;\nUPDATE t2 SET b=29133 WHERE a=15631;\nUPDATE t2 SET b=38315 WHERE a=15632;\nUPDATE t2 SET b=62124 WHERE a=15633;\nUPDATE t2 SET b=1995 WHERE a=15634;\nUPDATE t2 SET b=26604 WHERE a=15635;\nUPDATE t2 SET b=30724 WHERE a=15636;\nUPDATE t2 SET b=8517 WHERE a=15637;\nUPDATE t2 SET b=14143 WHERE a=15638;\nUPDATE t2 SET b=63189 WHERE a=15639;\nUPDATE t2 SET b=41092 WHERE a=15640;\nUPDATE t2 SET b=34714 WHERE a=15641;\nUPDATE t2 SET b=43557 WHERE a=15642;\nUPDATE t2 SET b=95460 WHERE a=15643;\nUPDATE t2 SET b=86160 WHERE a=15644;\nUPDATE t2 SET b=45170 WHERE a=15645;\nUPDATE t2 SET b=77130 WHERE a=15646;\nUPDATE t2 SET b=78901 WHERE a=15647;\nUPDATE t2 SET b=14597 WHERE a=15648;\nUPDATE t2 SET b=1708 WHERE a=15649;\nUPDATE t2 SET b=33485 WHERE a=15650;\nUPDATE t2 SET b=73734 WHERE a=15651;\nUPDATE t2 SET b=83506 WHERE a=15652;\nUPDATE t2 SET b=84705 WHERE a=15653;\nUPDATE t2 SET b=84479 WHERE a=15654;\nUPDATE t2 SET b=44452 WHERE a=15655;\nUPDATE t2 SET b=93267 WHERE a=15656;\nUPDATE t2 SET b=72545 WHERE a=15657;\nUPDATE t2 SET b=27744 WHERE a=15658;\nUPDATE t2 SET b=75297 WHERE a=15659;\nUPDATE t2 SET b=57622 WHERE a=15660;\nUPDATE t2 SET b=686 WHERE a=15661;\nUPDATE t2 SET b=62137 WHERE a=15662;\nUPDATE t2 SET b=46187 WHERE a=15663;\nUPDATE t2 SET b=96327 WHERE a=15664;\nUPDATE t2 SET b=21735 WHERE a=15665;\nUPDATE t2 SET b=51265 WHERE a=15666;\nUPDATE t2 SET b=172 WHERE a=15667;\nUPDATE t2 SET b=74860 WHERE a=15668;\nUPDATE t2 SET b=71051 WHERE a=15669;\nUPDATE t2 SET b=86523 WHERE a=15670;\nUPDATE t2 SET b=15353 WHERE a=15671;\nUPDATE t2 SET b=7339 WHERE a=15672;\nUPDATE t2 SET b=48954 WHERE a=15673;\nUPDATE t2 SET b=78734 WHERE a=15674;\nUPDATE t2 SET b=80930 WHERE a=15675;\nUPDATE t2 SET b=93435 WHERE a=15676;\nUPDATE t2 SET b=68553 WHERE a=15677;\nUPDATE t2 SET b=38265 WHERE a=15678;\nUPDATE t2 SET b=71944 WHERE a=15679;\nUPDATE t2 SET b=74811 WHERE a=15680;\nUPDATE t2 SET b=11750 WHERE a=15681;\nUPDATE t2 SET b=96346 WHERE a=15682;\nUPDATE t2 SET b=13361 WHERE a=15683;\nUPDATE t2 SET b=806 WHERE a=15684;\nUPDATE t2 SET b=31093 WHERE a=15685;\nUPDATE t2 SET b=68706 WHERE a=15686;\nUPDATE t2 SET b=32453 WHERE a=15687;\nUPDATE t2 SET b=64082 WHERE a=15688;\nUPDATE t2 SET b=44020 WHERE a=15689;\nUPDATE t2 SET b=18636 WHERE a=15690;\nUPDATE t2 SET b=75194 WHERE a=15691;\nUPDATE t2 SET b=25111 WHERE a=15692;\nUPDATE t2 SET b=60806 WHERE a=15693;\nUPDATE t2 SET b=49447 WHERE a=15694;\nUPDATE t2 SET b=33264 WHERE a=15695;\nUPDATE t2 SET b=3592 WHERE a=15696;\nUPDATE t2 SET b=22157 WHERE a=15697;\nUPDATE t2 SET b=15613 WHERE a=15698;\nUPDATE t2 SET b=50884 WHERE a=15699;\nUPDATE t2 SET b=72099 WHERE a=15700;\nUPDATE t2 SET b=80633 WHERE a=15701;\nUPDATE t2 SET b=50628 WHERE a=15702;\nUPDATE t2 SET b=29497 WHERE a=15703;\nUPDATE t2 SET b=61757 WHERE a=15704;\nUPDATE t2 SET b=74814 WHERE a=15705;\nUPDATE t2 SET b=78616 WHERE a=15706;\nUPDATE t2 SET b=29755 WHERE a=15707;\nUPDATE t2 SET b=5890 WHERE a=15708;\nUPDATE t2 SET b=25504 WHERE a=15709;\nUPDATE t2 SET b=92291 WHERE a=15710;\nUPDATE t2 SET b=73579 WHERE a=15711;\nUPDATE t2 SET b=8060 WHERE a=15712;\nUPDATE t2 SET b=71422 WHERE a=15713;\nUPDATE t2 SET b=2933 WHERE a=15714;\nUPDATE t2 SET b=12426 WHERE a=15715;\nUPDATE t2 SET b=30856 WHERE a=15716;\nUPDATE t2 SET b=8958 WHERE a=15717;\nUPDATE t2 SET b=80216 WHERE a=15718;\nUPDATE t2 SET b=90961 WHERE a=15719;\nUPDATE t2 SET b=43352 WHERE a=15720;\nUPDATE t2 SET b=81636 WHERE a=15721;\nUPDATE t2 SET b=66892 WHERE a=15722;\nUPDATE t2 SET b=22750 WHERE a=15723;\nUPDATE t2 SET b=4826 WHERE a=15724;\nUPDATE t2 SET b=16439 WHERE a=15725;\nUPDATE t2 SET b=57482 WHERE a=15726;\nUPDATE t2 SET b=49966 WHERE a=15727;\nUPDATE t2 SET b=50235 WHERE a=15728;\nUPDATE t2 SET b=25770 WHERE a=15729;\nUPDATE t2 SET b=88374 WHERE a=15730;\nUPDATE t2 SET b=42685 WHERE a=15731;\nUPDATE t2 SET b=70484 WHERE a=15732;\nUPDATE t2 SET b=29669 WHERE a=15733;\nUPDATE t2 SET b=57335 WHERE a=15734;\nUPDATE t2 SET b=79689 WHERE a=15735;\nUPDATE t2 SET b=40607 WHERE a=15736;\nUPDATE t2 SET b=16770 WHERE a=15737;\nUPDATE t2 SET b=754 WHERE a=15738;\nUPDATE t2 SET b=95600 WHERE a=15739;\nUPDATE t2 SET b=90019 WHERE a=15740;\nUPDATE t2 SET b=8618 WHERE a=15741;\nUPDATE t2 SET b=59194 WHERE a=15742;\nUPDATE t2 SET b=36778 WHERE a=15743;\nUPDATE t2 SET b=88080 WHERE a=15744;\nUPDATE t2 SET b=72668 WHERE a=15745;\nUPDATE t2 SET b=89784 WHERE a=15746;\nUPDATE t2 SET b=723 WHERE a=15747;\nUPDATE t2 SET b=59345 WHERE a=15748;\nUPDATE t2 SET b=98654 WHERE a=15749;\nUPDATE t2 SET b=29599 WHERE a=15750;\nUPDATE t2 SET b=11347 WHERE a=15751;\nUPDATE t2 SET b=88148 WHERE a=15752;\nUPDATE t2 SET b=7284 WHERE a=15753;\nUPDATE t2 SET b=7917 WHERE a=15754;\nUPDATE t2 SET b=67438 WHERE a=15755;\nUPDATE t2 SET b=76849 WHERE a=15756;\nUPDATE t2 SET b=60540 WHERE a=15757;\nUPDATE t2 SET b=62934 WHERE a=15758;\nUPDATE t2 SET b=60100 WHERE a=15759;\nUPDATE t2 SET b=79130 WHERE a=15760;\nUPDATE t2 SET b=66891 WHERE a=15761;\nUPDATE t2 SET b=1530 WHERE a=15762;\nUPDATE t2 SET b=27548 WHERE a=15763;\nUPDATE t2 SET b=59029 WHERE a=15764;\nUPDATE t2 SET b=40927 WHERE a=15765;\nUPDATE t2 SET b=86305 WHERE a=15766;\nUPDATE t2 SET b=18833 WHERE a=15767;\nUPDATE t2 SET b=26817 WHERE a=15768;\nUPDATE t2 SET b=3743 WHERE a=15769;\nUPDATE t2 SET b=99047 WHERE a=15770;\nUPDATE t2 SET b=26767 WHERE a=15771;\nUPDATE t2 SET b=23474 WHERE a=15772;\nUPDATE t2 SET b=9193 WHERE a=15773;\nUPDATE t2 SET b=42720 WHERE a=15774;\nUPDATE t2 SET b=40729 WHERE a=15775;\nUPDATE t2 SET b=80038 WHERE a=15776;\nUPDATE t2 SET b=25001 WHERE a=15777;\nUPDATE t2 SET b=33302 WHERE a=15778;\nUPDATE t2 SET b=8043 WHERE a=15779;\nUPDATE t2 SET b=95718 WHERE a=15780;\nUPDATE t2 SET b=36322 WHERE a=15781;\nUPDATE t2 SET b=14243 WHERE a=15782;\nUPDATE t2 SET b=4061 WHERE a=15783;\nUPDATE t2 SET b=8657 WHERE a=15784;\nUPDATE t2 SET b=75157 WHERE a=15785;\nUPDATE t2 SET b=42176 WHERE a=15786;\nUPDATE t2 SET b=1016 WHERE a=15787;\nUPDATE t2 SET b=45886 WHERE a=15788;\nUPDATE t2 SET b=17839 WHERE a=15789;\nUPDATE t2 SET b=1907 WHERE a=15790;\nUPDATE t2 SET b=91591 WHERE a=15791;\nUPDATE t2 SET b=6153 WHERE a=15792;\nUPDATE t2 SET b=6724 WHERE a=15793;\nUPDATE t2 SET b=12982 WHERE a=15794;\nUPDATE t2 SET b=76090 WHERE a=15795;\nUPDATE t2 SET b=41572 WHERE a=15796;\nUPDATE t2 SET b=68307 WHERE a=15797;\nUPDATE t2 SET b=45063 WHERE a=15798;\nUPDATE t2 SET b=11327 WHERE a=15799;\nUPDATE t2 SET b=63267 WHERE a=15800;\nUPDATE t2 SET b=72330 WHERE a=15801;\nUPDATE t2 SET b=22622 WHERE a=15802;\nUPDATE t2 SET b=92184 WHERE a=15803;\nUPDATE t2 SET b=85050 WHERE a=15804;\nUPDATE t2 SET b=67017 WHERE a=15805;\nUPDATE t2 SET b=51900 WHERE a=15806;\nUPDATE t2 SET b=42722 WHERE a=15807;\nUPDATE t2 SET b=76434 WHERE a=15808;\nUPDATE t2 SET b=47952 WHERE a=15809;\nUPDATE t2 SET b=43516 WHERE a=15810;\nUPDATE t2 SET b=92221 WHERE a=15811;\nUPDATE t2 SET b=54363 WHERE a=15812;\nUPDATE t2 SET b=67259 WHERE a=15813;\nUPDATE t2 SET b=7684 WHERE a=15814;\nUPDATE t2 SET b=132 WHERE a=15815;\nUPDATE t2 SET b=76685 WHERE a=15816;\nUPDATE t2 SET b=95029 WHERE a=15817;\nUPDATE t2 SET b=9480 WHERE a=15818;\nUPDATE t2 SET b=7099 WHERE a=15819;\nUPDATE t2 SET b=80507 WHERE a=15820;\nUPDATE t2 SET b=29888 WHERE a=15821;\nUPDATE t2 SET b=73003 WHERE a=15822;\nUPDATE t2 SET b=10293 WHERE a=15823;\nUPDATE t2 SET b=38307 WHERE a=15824;\nUPDATE t2 SET b=99080 WHERE a=15825;\nUPDATE t2 SET b=50209 WHERE a=15826;\nUPDATE t2 SET b=35353 WHERE a=15827;\nUPDATE t2 SET b=95499 WHERE a=15828;\nUPDATE t2 SET b=99720 WHERE a=15829;\nUPDATE t2 SET b=93184 WHERE a=15830;\nUPDATE t2 SET b=53874 WHERE a=15831;\nUPDATE t2 SET b=14713 WHERE a=15832;\nUPDATE t2 SET b=95271 WHERE a=15833;\nUPDATE t2 SET b=5497 WHERE a=15834;\nUPDATE t2 SET b=92886 WHERE a=15835;\nUPDATE t2 SET b=9478 WHERE a=15836;\nUPDATE t2 SET b=298 WHERE a=15837;\nUPDATE t2 SET b=59715 WHERE a=15838;\nUPDATE t2 SET b=83714 WHERE a=15839;\nUPDATE t2 SET b=64370 WHERE a=15840;\nUPDATE t2 SET b=63816 WHERE a=15841;\nUPDATE t2 SET b=25877 WHERE a=15842;\nUPDATE t2 SET b=69758 WHERE a=15843;\nUPDATE t2 SET b=7331 WHERE a=15844;\nUPDATE t2 SET b=98630 WHERE a=15845;\nUPDATE t2 SET b=38606 WHERE a=15846;\nUPDATE t2 SET b=23544 WHERE a=15847;\nUPDATE t2 SET b=13518 WHERE a=15848;\nUPDATE t2 SET b=78144 WHERE a=15849;\nUPDATE t2 SET b=18423 WHERE a=15850;\nUPDATE t2 SET b=89081 WHERE a=15851;\nUPDATE t2 SET b=82096 WHERE a=15852;\nUPDATE t2 SET b=74411 WHERE a=15853;\nUPDATE t2 SET b=29510 WHERE a=15854;\nUPDATE t2 SET b=98729 WHERE a=15855;\nUPDATE t2 SET b=28252 WHERE a=15856;\nUPDATE t2 SET b=32539 WHERE a=15857;\nUPDATE t2 SET b=43833 WHERE a=15858;\nUPDATE t2 SET b=70180 WHERE a=15859;\nUPDATE t2 SET b=57569 WHERE a=15860;\nUPDATE t2 SET b=6355 WHERE a=15861;\nUPDATE t2 SET b=77046 WHERE a=15862;\nUPDATE t2 SET b=23906 WHERE a=15863;\nUPDATE t2 SET b=53219 WHERE a=15864;\nUPDATE t2 SET b=18830 WHERE a=15865;\nUPDATE t2 SET b=51826 WHERE a=15866;\nUPDATE t2 SET b=76812 WHERE a=15867;\nUPDATE t2 SET b=35932 WHERE a=15868;\nUPDATE t2 SET b=61765 WHERE a=15869;\nUPDATE t2 SET b=95730 WHERE a=15870;\nUPDATE t2 SET b=76139 WHERE a=15871;\nUPDATE t2 SET b=84722 WHERE a=15872;\nUPDATE t2 SET b=2704 WHERE a=15873;\nUPDATE t2 SET b=16580 WHERE a=15874;\nUPDATE t2 SET b=54765 WHERE a=15875;\nUPDATE t2 SET b=45552 WHERE a=15876;\nUPDATE t2 SET b=82713 WHERE a=15877;\nUPDATE t2 SET b=33559 WHERE a=15878;\nUPDATE t2 SET b=68598 WHERE a=15879;\nUPDATE t2 SET b=46758 WHERE a=15880;\nUPDATE t2 SET b=57010 WHERE a=15881;\nUPDATE t2 SET b=20019 WHERE a=15882;\nUPDATE t2 SET b=13366 WHERE a=15883;\nUPDATE t2 SET b=51551 WHERE a=15884;\nUPDATE t2 SET b=72812 WHERE a=15885;\nUPDATE t2 SET b=50928 WHERE a=15886;\nUPDATE t2 SET b=97892 WHERE a=15887;\nUPDATE t2 SET b=31193 WHERE a=15888;\nUPDATE t2 SET b=56592 WHERE a=15889;\nUPDATE t2 SET b=22955 WHERE a=15890;\nUPDATE t2 SET b=23347 WHERE a=15891;\nUPDATE t2 SET b=27487 WHERE a=15892;\nUPDATE t2 SET b=30343 WHERE a=15893;\nUPDATE t2 SET b=34741 WHERE a=15894;\nUPDATE t2 SET b=68817 WHERE a=15895;\nUPDATE t2 SET b=59626 WHERE a=15896;\nUPDATE t2 SET b=56618 WHERE a=15897;\nUPDATE t2 SET b=70258 WHERE a=15898;\nUPDATE t2 SET b=73970 WHERE a=15899;\nUPDATE t2 SET b=57630 WHERE a=15900;\nUPDATE t2 SET b=44098 WHERE a=15901;\nUPDATE t2 SET b=33867 WHERE a=15902;\nUPDATE t2 SET b=54200 WHERE a=15903;\nUPDATE t2 SET b=44572 WHERE a=15904;\nUPDATE t2 SET b=99344 WHERE a=15905;\nUPDATE t2 SET b=78872 WHERE a=15906;\nUPDATE t2 SET b=65909 WHERE a=15907;\nUPDATE t2 SET b=21227 WHERE a=15908;\nUPDATE t2 SET b=54308 WHERE a=15909;\nUPDATE t2 SET b=33007 WHERE a=15910;\nUPDATE t2 SET b=8721 WHERE a=15911;\nUPDATE t2 SET b=92389 WHERE a=15912;\nUPDATE t2 SET b=37480 WHERE a=15913;\nUPDATE t2 SET b=12070 WHERE a=15914;\nUPDATE t2 SET b=76975 WHERE a=15915;\nUPDATE t2 SET b=9865 WHERE a=15916;\nUPDATE t2 SET b=30634 WHERE a=15917;\nUPDATE t2 SET b=35366 WHERE a=15918;\nUPDATE t2 SET b=39073 WHERE a=15919;\nUPDATE t2 SET b=49178 WHERE a=15920;\nUPDATE t2 SET b=98546 WHERE a=15921;\nUPDATE t2 SET b=89255 WHERE a=15922;\nUPDATE t2 SET b=81776 WHERE a=15923;\nUPDATE t2 SET b=26809 WHERE a=15924;\nUPDATE t2 SET b=69768 WHERE a=15925;\nUPDATE t2 SET b=43790 WHERE a=15926;\nUPDATE t2 SET b=34398 WHERE a=15927;\nUPDATE t2 SET b=4750 WHERE a=15928;\nUPDATE t2 SET b=64546 WHERE a=15929;\nUPDATE t2 SET b=25689 WHERE a=15930;\nUPDATE t2 SET b=45784 WHERE a=15931;\nUPDATE t2 SET b=66257 WHERE a=15932;\nUPDATE t2 SET b=91093 WHERE a=15933;\nUPDATE t2 SET b=44917 WHERE a=15934;\nUPDATE t2 SET b=33397 WHERE a=15935;\nUPDATE t2 SET b=51128 WHERE a=15936;\nUPDATE t2 SET b=35606 WHERE a=15937;\nUPDATE t2 SET b=66336 WHERE a=15938;\nUPDATE t2 SET b=33389 WHERE a=15939;\nUPDATE t2 SET b=65109 WHERE a=15940;\nUPDATE t2 SET b=54905 WHERE a=15941;\nUPDATE t2 SET b=6387 WHERE a=15942;\nUPDATE t2 SET b=58323 WHERE a=15943;\nUPDATE t2 SET b=51029 WHERE a=15944;\nUPDATE t2 SET b=27908 WHERE a=15945;\nUPDATE t2 SET b=46090 WHERE a=15946;\nUPDATE t2 SET b=69993 WHERE a=15947;\nUPDATE t2 SET b=54560 WHERE a=15948;\nUPDATE t2 SET b=81970 WHERE a=15949;\nUPDATE t2 SET b=72602 WHERE a=15950;\nUPDATE t2 SET b=89682 WHERE a=15951;\nUPDATE t2 SET b=94202 WHERE a=15952;\nUPDATE t2 SET b=94901 WHERE a=15953;\nUPDATE t2 SET b=87430 WHERE a=15954;\nUPDATE t2 SET b=84668 WHERE a=15955;\nUPDATE t2 SET b=72273 WHERE a=15956;\nUPDATE t2 SET b=19785 WHERE a=15957;\nUPDATE t2 SET b=18942 WHERE a=15958;\nUPDATE t2 SET b=62794 WHERE a=15959;\nUPDATE t2 SET b=51578 WHERE a=15960;\nUPDATE t2 SET b=4077 WHERE a=15961;\nUPDATE t2 SET b=86994 WHERE a=15962;\nUPDATE t2 SET b=75904 WHERE a=15963;\nUPDATE t2 SET b=5404 WHERE a=15964;\nUPDATE t2 SET b=92289 WHERE a=15965;\nUPDATE t2 SET b=55623 WHERE a=15966;\nUPDATE t2 SET b=75354 WHERE a=15967;\nUPDATE t2 SET b=65105 WHERE a=15968;\nUPDATE t2 SET b=26081 WHERE a=15969;\nUPDATE t2 SET b=42957 WHERE a=15970;\nUPDATE t2 SET b=90966 WHERE a=15971;\nUPDATE t2 SET b=85047 WHERE a=15972;\nUPDATE t2 SET b=78894 WHERE a=15973;\nUPDATE t2 SET b=75384 WHERE a=15974;\nUPDATE t2 SET b=58776 WHERE a=15975;\nUPDATE t2 SET b=36240 WHERE a=15976;\nUPDATE t2 SET b=48659 WHERE a=15977;\nUPDATE t2 SET b=29780 WHERE a=15978;\nUPDATE t2 SET b=2 WHERE a=15979;\nUPDATE t2 SET b=85533 WHERE a=15980;\nUPDATE t2 SET b=75819 WHERE a=15981;\nUPDATE t2 SET b=7594 WHERE a=15982;\nUPDATE t2 SET b=38555 WHERE a=15983;\nUPDATE t2 SET b=94626 WHERE a=15984;\nUPDATE t2 SET b=96670 WHERE a=15985;\nUPDATE t2 SET b=43161 WHERE a=15986;\nUPDATE t2 SET b=75637 WHERE a=15987;\nUPDATE t2 SET b=35986 WHERE a=15988;\nUPDATE t2 SET b=18593 WHERE a=15989;\nUPDATE t2 SET b=86937 WHERE a=15990;\nUPDATE t2 SET b=18739 WHERE a=15991;\nUPDATE t2 SET b=91800 WHERE a=15992;\nUPDATE t2 SET b=37214 WHERE a=15993;\nUPDATE t2 SET b=20349 WHERE a=15994;\nUPDATE t2 SET b=88904 WHERE a=15995;\nUPDATE t2 SET b=18769 WHERE a=15996;\nUPDATE t2 SET b=67485 WHERE a=15997;\nUPDATE t2 SET b=1224 WHERE a=15998;\nUPDATE t2 SET b=56917 WHERE a=15999;\nUPDATE t2 SET b=60369 WHERE a=16000;\nUPDATE t2 SET b=85983 WHERE a=16001;\nUPDATE t2 SET b=46553 WHERE a=16002;\nUPDATE t2 SET b=85342 WHERE a=16003;\nUPDATE t2 SET b=72250 WHERE a=16004;\nUPDATE t2 SET b=48973 WHERE a=16005;\nUPDATE t2 SET b=38767 WHERE a=16006;\nUPDATE t2 SET b=99875 WHERE a=16007;\nUPDATE t2 SET b=98266 WHERE a=16008;\nUPDATE t2 SET b=56225 WHERE a=16009;\nUPDATE t2 SET b=71778 WHERE a=16010;\nUPDATE t2 SET b=97146 WHERE a=16011;\nUPDATE t2 SET b=3606 WHERE a=16012;\nUPDATE t2 SET b=83608 WHERE a=16013;\nUPDATE t2 SET b=64469 WHERE a=16014;\nUPDATE t2 SET b=80695 WHERE a=16015;\nUPDATE t2 SET b=93516 WHERE a=16016;\nUPDATE t2 SET b=70976 WHERE a=16017;\nUPDATE t2 SET b=28541 WHERE a=16018;\nUPDATE t2 SET b=86505 WHERE a=16019;\nUPDATE t2 SET b=11547 WHERE a=16020;\nUPDATE t2 SET b=63763 WHERE a=16021;\nUPDATE t2 SET b=11462 WHERE a=16022;\nUPDATE t2 SET b=54896 WHERE a=16023;\nUPDATE t2 SET b=71039 WHERE a=16024;\nUPDATE t2 SET b=18189 WHERE a=16025;\nUPDATE t2 SET b=18653 WHERE a=16026;\nUPDATE t2 SET b=8065 WHERE a=16027;\nUPDATE t2 SET b=12111 WHERE a=16028;\nUPDATE t2 SET b=68950 WHERE a=16029;\nUPDATE t2 SET b=11156 WHERE a=16030;\nUPDATE t2 SET b=50376 WHERE a=16031;\nUPDATE t2 SET b=48839 WHERE a=16032;\nUPDATE t2 SET b=81775 WHERE a=16033;\nUPDATE t2 SET b=43411 WHERE a=16034;\nUPDATE t2 SET b=14601 WHERE a=16035;\nUPDATE t2 SET b=82412 WHERE a=16036;\nUPDATE t2 SET b=72275 WHERE a=16037;\nUPDATE t2 SET b=76709 WHERE a=16038;\nUPDATE t2 SET b=55360 WHERE a=16039;\nUPDATE t2 SET b=86067 WHERE a=16040;\nUPDATE t2 SET b=98406 WHERE a=16041;\nUPDATE t2 SET b=65404 WHERE a=16042;\nUPDATE t2 SET b=22669 WHERE a=16043;\nUPDATE t2 SET b=43595 WHERE a=16044;\nUPDATE t2 SET b=4685 WHERE a=16045;\nUPDATE t2 SET b=25398 WHERE a=16046;\nUPDATE t2 SET b=23360 WHERE a=16047;\nUPDATE t2 SET b=53680 WHERE a=16048;\nUPDATE t2 SET b=65251 WHERE a=16049;\nUPDATE t2 SET b=17767 WHERE a=16050;\nUPDATE t2 SET b=91712 WHERE a=16051;\nUPDATE t2 SET b=56163 WHERE a=16052;\nUPDATE t2 SET b=94045 WHERE a=16053;\nUPDATE t2 SET b=34148 WHERE a=16054;\nUPDATE t2 SET b=18113 WHERE a=16055;\nUPDATE t2 SET b=68703 WHERE a=16056;\nUPDATE t2 SET b=3173 WHERE a=16057;\nUPDATE t2 SET b=74158 WHERE a=16058;\nUPDATE t2 SET b=4149 WHERE a=16059;\nUPDATE t2 SET b=60181 WHERE a=16060;\nUPDATE t2 SET b=1251 WHERE a=16061;\nUPDATE t2 SET b=95209 WHERE a=16062;\nUPDATE t2 SET b=14417 WHERE a=16063;\nUPDATE t2 SET b=58951 WHERE a=16064;\nUPDATE t2 SET b=13762 WHERE a=16065;\nUPDATE t2 SET b=37132 WHERE a=16066;\nUPDATE t2 SET b=14289 WHERE a=16067;\nUPDATE t2 SET b=54286 WHERE a=16068;\nUPDATE t2 SET b=93577 WHERE a=16069;\nUPDATE t2 SET b=52099 WHERE a=16070;\nUPDATE t2 SET b=16211 WHERE a=16071;\nUPDATE t2 SET b=98620 WHERE a=16072;\nUPDATE t2 SET b=20036 WHERE a=16073;\nUPDATE t2 SET b=75485 WHERE a=16074;\nUPDATE t2 SET b=27838 WHERE a=16075;\nUPDATE t2 SET b=37659 WHERE a=16076;\nUPDATE t2 SET b=22119 WHERE a=16077;\nUPDATE t2 SET b=31609 WHERE a=16078;\nUPDATE t2 SET b=85799 WHERE a=16079;\nUPDATE t2 SET b=37179 WHERE a=16080;\nUPDATE t2 SET b=29886 WHERE a=16081;\nUPDATE t2 SET b=78468 WHERE a=16082;\nUPDATE t2 SET b=41794 WHERE a=16083;\nUPDATE t2 SET b=52595 WHERE a=16084;\nUPDATE t2 SET b=75200 WHERE a=16085;\nUPDATE t2 SET b=83774 WHERE a=16086;\nUPDATE t2 SET b=98584 WHERE a=16087;\nUPDATE t2 SET b=96292 WHERE a=16088;\nUPDATE t2 SET b=93580 WHERE a=16089;\nUPDATE t2 SET b=11419 WHERE a=16090;\nUPDATE t2 SET b=23044 WHERE a=16091;\nUPDATE t2 SET b=78727 WHERE a=16092;\nUPDATE t2 SET b=35062 WHERE a=16093;\nUPDATE t2 SET b=18803 WHERE a=16094;\nUPDATE t2 SET b=94622 WHERE a=16095;\nUPDATE t2 SET b=43432 WHERE a=16096;\nUPDATE t2 SET b=7657 WHERE a=16097;\nUPDATE t2 SET b=76691 WHERE a=16098;\nUPDATE t2 SET b=1955 WHERE a=16099;\nUPDATE t2 SET b=65063 WHERE a=16100;\nUPDATE t2 SET b=73911 WHERE a=16101;\nUPDATE t2 SET b=89148 WHERE a=16102;\nUPDATE t2 SET b=32761 WHERE a=16103;\nUPDATE t2 SET b=70555 WHERE a=16104;\nUPDATE t2 SET b=54411 WHERE a=16105;\nUPDATE t2 SET b=40604 WHERE a=16106;\nUPDATE t2 SET b=44693 WHERE a=16107;\nUPDATE t2 SET b=20317 WHERE a=16108;\nUPDATE t2 SET b=79150 WHERE a=16109;\nUPDATE t2 SET b=79493 WHERE a=16110;\nUPDATE t2 SET b=2050 WHERE a=16111;\nUPDATE t2 SET b=73073 WHERE a=16112;\nUPDATE t2 SET b=32613 WHERE a=16113;\nUPDATE t2 SET b=71042 WHERE a=16114;\nUPDATE t2 SET b=98442 WHERE a=16115;\nUPDATE t2 SET b=94206 WHERE a=16116;\nUPDATE t2 SET b=42842 WHERE a=16117;\nUPDATE t2 SET b=91120 WHERE a=16118;\nUPDATE t2 SET b=29783 WHERE a=16119;\nUPDATE t2 SET b=79911 WHERE a=16120;\nUPDATE t2 SET b=66077 WHERE a=16121;\nUPDATE t2 SET b=69528 WHERE a=16122;\nUPDATE t2 SET b=59787 WHERE a=16123;\nUPDATE t2 SET b=97375 WHERE a=16124;\nUPDATE t2 SET b=12127 WHERE a=16125;\nUPDATE t2 SET b=75396 WHERE a=16126;\nUPDATE t2 SET b=44016 WHERE a=16127;\nUPDATE t2 SET b=95677 WHERE a=16128;\nUPDATE t2 SET b=43584 WHERE a=16129;\nUPDATE t2 SET b=6237 WHERE a=16130;\nUPDATE t2 SET b=84829 WHERE a=16131;\nUPDATE t2 SET b=7492 WHERE a=16132;\nUPDATE t2 SET b=39281 WHERE a=16133;\nUPDATE t2 SET b=19188 WHERE a=16134;\nUPDATE t2 SET b=43194 WHERE a=16135;\nUPDATE t2 SET b=61618 WHERE a=16136;\nUPDATE t2 SET b=57949 WHERE a=16137;\nUPDATE t2 SET b=24048 WHERE a=16138;\nUPDATE t2 SET b=15550 WHERE a=16139;\nUPDATE t2 SET b=19448 WHERE a=16140;\nUPDATE t2 SET b=33976 WHERE a=16141;\nUPDATE t2 SET b=42355 WHERE a=16142;\nUPDATE t2 SET b=10292 WHERE a=16143;\nUPDATE t2 SET b=45998 WHERE a=16144;\nUPDATE t2 SET b=71855 WHERE a=16145;\nUPDATE t2 SET b=62235 WHERE a=16146;\nUPDATE t2 SET b=34529 WHERE a=16147;\nUPDATE t2 SET b=17890 WHERE a=16148;\nUPDATE t2 SET b=43582 WHERE a=16149;\nUPDATE t2 SET b=62818 WHERE a=16150;\nUPDATE t2 SET b=41949 WHERE a=16151;\nUPDATE t2 SET b=95088 WHERE a=16152;\nUPDATE t2 SET b=90768 WHERE a=16153;\nUPDATE t2 SET b=95615 WHERE a=16154;\nUPDATE t2 SET b=92745 WHERE a=16155;\nUPDATE t2 SET b=48545 WHERE a=16156;\nUPDATE t2 SET b=75716 WHERE a=16157;\nUPDATE t2 SET b=5214 WHERE a=16158;\nUPDATE t2 SET b=55635 WHERE a=16159;\nUPDATE t2 SET b=77561 WHERE a=16160;\nUPDATE t2 SET b=35697 WHERE a=16161;\nUPDATE t2 SET b=9422 WHERE a=16162;\nUPDATE t2 SET b=91951 WHERE a=16163;\nUPDATE t2 SET b=64496 WHERE a=16164;\nUPDATE t2 SET b=68315 WHERE a=16165;\nUPDATE t2 SET b=19816 WHERE a=16166;\nUPDATE t2 SET b=12216 WHERE a=16167;\nUPDATE t2 SET b=19555 WHERE a=16168;\nUPDATE t2 SET b=85180 WHERE a=16169;\nUPDATE t2 SET b=27457 WHERE a=16170;\nUPDATE t2 SET b=14322 WHERE a=16171;\nUPDATE t2 SET b=47738 WHERE a=16172;\nUPDATE t2 SET b=33419 WHERE a=16173;\nUPDATE t2 SET b=46307 WHERE a=16174;\nUPDATE t2 SET b=22772 WHERE a=16175;\nUPDATE t2 SET b=50876 WHERE a=16176;\nUPDATE t2 SET b=75806 WHERE a=16177;\nUPDATE t2 SET b=79189 WHERE a=16178;\nUPDATE t2 SET b=53445 WHERE a=16179;\nUPDATE t2 SET b=99096 WHERE a=16180;\nUPDATE t2 SET b=36471 WHERE a=16181;\nUPDATE t2 SET b=63846 WHERE a=16182;\nUPDATE t2 SET b=87756 WHERE a=16183;\nUPDATE t2 SET b=21400 WHERE a=16184;\nUPDATE t2 SET b=12 WHERE a=16185;\nUPDATE t2 SET b=57504 WHERE a=16186;\nUPDATE t2 SET b=26277 WHERE a=16187;\nUPDATE t2 SET b=2901 WHERE a=16188;\nUPDATE t2 SET b=46815 WHERE a=16189;\nUPDATE t2 SET b=85795 WHERE a=16190;\nUPDATE t2 SET b=84103 WHERE a=16191;\nUPDATE t2 SET b=23498 WHERE a=16192;\nUPDATE t2 SET b=50849 WHERE a=16193;\nUPDATE t2 SET b=73532 WHERE a=16194;\nUPDATE t2 SET b=62849 WHERE a=16195;\nUPDATE t2 SET b=90561 WHERE a=16196;\nUPDATE t2 SET b=52835 WHERE a=16197;\nUPDATE t2 SET b=42619 WHERE a=16198;\nUPDATE t2 SET b=52372 WHERE a=16199;\nUPDATE t2 SET b=19958 WHERE a=16200;\nUPDATE t2 SET b=68381 WHERE a=16201;\nUPDATE t2 SET b=48624 WHERE a=16202;\nUPDATE t2 SET b=18935 WHERE a=16203;\nUPDATE t2 SET b=20587 WHERE a=16204;\nUPDATE t2 SET b=90865 WHERE a=16205;\nUPDATE t2 SET b=4179 WHERE a=16206;\nUPDATE t2 SET b=22128 WHERE a=16207;\nUPDATE t2 SET b=92622 WHERE a=16208;\nUPDATE t2 SET b=48281 WHERE a=16209;\nUPDATE t2 SET b=18392 WHERE a=16210;\nUPDATE t2 SET b=73493 WHERE a=16211;\nUPDATE t2 SET b=27123 WHERE a=16212;\nUPDATE t2 SET b=55677 WHERE a=16213;\nUPDATE t2 SET b=65864 WHERE a=16214;\nUPDATE t2 SET b=1958 WHERE a=16215;\nUPDATE t2 SET b=32399 WHERE a=16216;\nUPDATE t2 SET b=20708 WHERE a=16217;\nUPDATE t2 SET b=58493 WHERE a=16218;\nUPDATE t2 SET b=12417 WHERE a=16219;\nUPDATE t2 SET b=14041 WHERE a=16220;\nUPDATE t2 SET b=75158 WHERE a=16221;\nUPDATE t2 SET b=9611 WHERE a=16222;\nUPDATE t2 SET b=59080 WHERE a=16223;\nUPDATE t2 SET b=14569 WHERE a=16224;\nUPDATE t2 SET b=80395 WHERE a=16225;\nUPDATE t2 SET b=85433 WHERE a=16226;\nUPDATE t2 SET b=16926 WHERE a=16227;\nUPDATE t2 SET b=62196 WHERE a=16228;\nUPDATE t2 SET b=41226 WHERE a=16229;\nUPDATE t2 SET b=70091 WHERE a=16230;\nUPDATE t2 SET b=82355 WHERE a=16231;\nUPDATE t2 SET b=29721 WHERE a=16232;\nUPDATE t2 SET b=80334 WHERE a=16233;\nUPDATE t2 SET b=73069 WHERE a=16234;\nUPDATE t2 SET b=89696 WHERE a=16235;\nUPDATE t2 SET b=24732 WHERE a=16236;\nUPDATE t2 SET b=22135 WHERE a=16237;\nUPDATE t2 SET b=58387 WHERE a=16238;\nUPDATE t2 SET b=85965 WHERE a=16239;\nUPDATE t2 SET b=9961 WHERE a=16240;\nUPDATE t2 SET b=6747 WHERE a=16241;\nUPDATE t2 SET b=85040 WHERE a=16242;\nUPDATE t2 SET b=59757 WHERE a=16243;\nUPDATE t2 SET b=68142 WHERE a=16244;\nUPDATE t2 SET b=83445 WHERE a=16245;\nUPDATE t2 SET b=74033 WHERE a=16246;\nUPDATE t2 SET b=34071 WHERE a=16247;\nUPDATE t2 SET b=90219 WHERE a=16248;\nUPDATE t2 SET b=68639 WHERE a=16249;\nUPDATE t2 SET b=14208 WHERE a=16250;\nUPDATE t2 SET b=67742 WHERE a=16251;\nUPDATE t2 SET b=74205 WHERE a=16252;\nUPDATE t2 SET b=6338 WHERE a=16253;\nUPDATE t2 SET b=2921 WHERE a=16254;\nUPDATE t2 SET b=26952 WHERE a=16255;\nUPDATE t2 SET b=25645 WHERE a=16256;\nUPDATE t2 SET b=34469 WHERE a=16257;\nUPDATE t2 SET b=98250 WHERE a=16258;\nUPDATE t2 SET b=73907 WHERE a=16259;\nUPDATE t2 SET b=85468 WHERE a=16260;\nUPDATE t2 SET b=35919 WHERE a=16261;\nUPDATE t2 SET b=30942 WHERE a=16262;\nUPDATE t2 SET b=17541 WHERE a=16263;\nUPDATE t2 SET b=46242 WHERE a=16264;\nUPDATE t2 SET b=75563 WHERE a=16265;\nUPDATE t2 SET b=15086 WHERE a=16266;\nUPDATE t2 SET b=98159 WHERE a=16267;\nUPDATE t2 SET b=3679 WHERE a=16268;\nUPDATE t2 SET b=74641 WHERE a=16269;\nUPDATE t2 SET b=5636 WHERE a=16270;\nUPDATE t2 SET b=98449 WHERE a=16271;\nUPDATE t2 SET b=74578 WHERE a=16272;\nUPDATE t2 SET b=82479 WHERE a=16273;\nUPDATE t2 SET b=4803 WHERE a=16274;\nUPDATE t2 SET b=7130 WHERE a=16275;\nUPDATE t2 SET b=42992 WHERE a=16276;\nUPDATE t2 SET b=28831 WHERE a=16277;\nUPDATE t2 SET b=60168 WHERE a=16278;\nUPDATE t2 SET b=80119 WHERE a=16279;\nUPDATE t2 SET b=63487 WHERE a=16280;\nUPDATE t2 SET b=4089 WHERE a=16281;\nUPDATE t2 SET b=73928 WHERE a=16282;\nUPDATE t2 SET b=10126 WHERE a=16283;\nUPDATE t2 SET b=85896 WHERE a=16284;\nUPDATE t2 SET b=33812 WHERE a=16285;\nUPDATE t2 SET b=92384 WHERE a=16286;\nUPDATE t2 SET b=97021 WHERE a=16287;\nUPDATE t2 SET b=27539 WHERE a=16288;\nUPDATE t2 SET b=61976 WHERE a=16289;\nUPDATE t2 SET b=45337 WHERE a=16290;\nUPDATE t2 SET b=17631 WHERE a=16291;\nUPDATE t2 SET b=71285 WHERE a=16292;\nUPDATE t2 SET b=27557 WHERE a=16293;\nUPDATE t2 SET b=99794 WHERE a=16294;\nUPDATE t2 SET b=40112 WHERE a=16295;\nUPDATE t2 SET b=68860 WHERE a=16296;\nUPDATE t2 SET b=45846 WHERE a=16297;\nUPDATE t2 SET b=69851 WHERE a=16298;\nUPDATE t2 SET b=17869 WHERE a=16299;\nUPDATE t2 SET b=71886 WHERE a=16300;\nUPDATE t2 SET b=50123 WHERE a=16301;\nUPDATE t2 SET b=8105 WHERE a=16302;\nUPDATE t2 SET b=73817 WHERE a=16303;\nUPDATE t2 SET b=69269 WHERE a=16304;\nUPDATE t2 SET b=48090 WHERE a=16305;\nUPDATE t2 SET b=27320 WHERE a=16306;\nUPDATE t2 SET b=91655 WHERE a=16307;\nUPDATE t2 SET b=23637 WHERE a=16308;\nUPDATE t2 SET b=60166 WHERE a=16309;\nUPDATE t2 SET b=44387 WHERE a=16310;\nUPDATE t2 SET b=5985 WHERE a=16311;\nUPDATE t2 SET b=81369 WHERE a=16312;\nUPDATE t2 SET b=59894 WHERE a=16313;\nUPDATE t2 SET b=85691 WHERE a=16314;\nUPDATE t2 SET b=97126 WHERE a=16315;\nUPDATE t2 SET b=42711 WHERE a=16316;\nUPDATE t2 SET b=80044 WHERE a=16317;\nUPDATE t2 SET b=53021 WHERE a=16318;\nUPDATE t2 SET b=57612 WHERE a=16319;\nUPDATE t2 SET b=28491 WHERE a=16320;\nUPDATE t2 SET b=46451 WHERE a=16321;\nUPDATE t2 SET b=44558 WHERE a=16322;\nUPDATE t2 SET b=35599 WHERE a=16323;\nUPDATE t2 SET b=11167 WHERE a=16324;\nUPDATE t2 SET b=98690 WHERE a=16325;\nUPDATE t2 SET b=30613 WHERE a=16326;\nUPDATE t2 SET b=83214 WHERE a=16327;\nUPDATE t2 SET b=96865 WHERE a=16328;\nUPDATE t2 SET b=54940 WHERE a=16329;\nUPDATE t2 SET b=52222 WHERE a=16330;\nUPDATE t2 SET b=75553 WHERE a=16331;\nUPDATE t2 SET b=51191 WHERE a=16332;\nUPDATE t2 SET b=78569 WHERE a=16333;\nUPDATE t2 SET b=80928 WHERE a=16334;\nUPDATE t2 SET b=11156 WHERE a=16335;\nUPDATE t2 SET b=94519 WHERE a=16336;\nUPDATE t2 SET b=13672 WHERE a=16337;\nUPDATE t2 SET b=43387 WHERE a=16338;\nUPDATE t2 SET b=88551 WHERE a=16339;\nUPDATE t2 SET b=78186 WHERE a=16340;\nUPDATE t2 SET b=26320 WHERE a=16341;\nUPDATE t2 SET b=69110 WHERE a=16342;\nUPDATE t2 SET b=44196 WHERE a=16343;\nUPDATE t2 SET b=13381 WHERE a=16344;\nUPDATE t2 SET b=10401 WHERE a=16345;\nUPDATE t2 SET b=52098 WHERE a=16346;\nUPDATE t2 SET b=4969 WHERE a=16347;\nUPDATE t2 SET b=88249 WHERE a=16348;\nUPDATE t2 SET b=27149 WHERE a=16349;\nUPDATE t2 SET b=51884 WHERE a=16350;\nUPDATE t2 SET b=51316 WHERE a=16351;\nUPDATE t2 SET b=92182 WHERE a=16352;\nUPDATE t2 SET b=62411 WHERE a=16353;\nUPDATE t2 SET b=56767 WHERE a=16354;\nUPDATE t2 SET b=85475 WHERE a=16355;\nUPDATE t2 SET b=20410 WHERE a=16356;\nUPDATE t2 SET b=9442 WHERE a=16357;\nUPDATE t2 SET b=23521 WHERE a=16358;\nUPDATE t2 SET b=49121 WHERE a=16359;\nUPDATE t2 SET b=81692 WHERE a=16360;\nUPDATE t2 SET b=31738 WHERE a=16361;\nUPDATE t2 SET b=71118 WHERE a=16362;\nUPDATE t2 SET b=34016 WHERE a=16363;\nUPDATE t2 SET b=30199 WHERE a=16364;\nUPDATE t2 SET b=71412 WHERE a=16365;\nUPDATE t2 SET b=38478 WHERE a=16366;\nUPDATE t2 SET b=91914 WHERE a=16367;\nUPDATE t2 SET b=28505 WHERE a=16368;\nUPDATE t2 SET b=10438 WHERE a=16369;\nUPDATE t2 SET b=54822 WHERE a=16370;\nUPDATE t2 SET b=61807 WHERE a=16371;\nUPDATE t2 SET b=87487 WHERE a=16372;\nUPDATE t2 SET b=32901 WHERE a=16373;\nUPDATE t2 SET b=76330 WHERE a=16374;\nUPDATE t2 SET b=6077 WHERE a=16375;\nUPDATE t2 SET b=25154 WHERE a=16376;\nUPDATE t2 SET b=74100 WHERE a=16377;\nUPDATE t2 SET b=90281 WHERE a=16378;\nUPDATE t2 SET b=86081 WHERE a=16379;\nUPDATE t2 SET b=9951 WHERE a=16380;\nUPDATE t2 SET b=9808 WHERE a=16381;\nUPDATE t2 SET b=68435 WHERE a=16382;\nUPDATE t2 SET b=21290 WHERE a=16383;\nUPDATE t2 SET b=42493 WHERE a=16384;\nUPDATE t2 SET b=73363 WHERE a=16385;\nUPDATE t2 SET b=29233 WHERE a=16386;\nUPDATE t2 SET b=37293 WHERE a=16387;\nUPDATE t2 SET b=52556 WHERE a=16388;\nUPDATE t2 SET b=97703 WHERE a=16389;\nUPDATE t2 SET b=97278 WHERE a=16390;\nUPDATE t2 SET b=38892 WHERE a=16391;\nUPDATE t2 SET b=45062 WHERE a=16392;\nUPDATE t2 SET b=29290 WHERE a=16393;\nUPDATE t2 SET b=95900 WHERE a=16394;\nUPDATE t2 SET b=23047 WHERE a=16395;\nUPDATE t2 SET b=68582 WHERE a=16396;\nUPDATE t2 SET b=99497 WHERE a=16397;\nUPDATE t2 SET b=48445 WHERE a=16398;\nUPDATE t2 SET b=96303 WHERE a=16399;\nUPDATE t2 SET b=32461 WHERE a=16400;\nUPDATE t2 SET b=18574 WHERE a=16401;\nUPDATE t2 SET b=52159 WHERE a=16402;\nUPDATE t2 SET b=38617 WHERE a=16403;\nUPDATE t2 SET b=14062 WHERE a=16404;\nUPDATE t2 SET b=89294 WHERE a=16405;\nUPDATE t2 SET b=73607 WHERE a=16406;\nUPDATE t2 SET b=49205 WHERE a=16407;\nUPDATE t2 SET b=73475 WHERE a=16408;\nUPDATE t2 SET b=81109 WHERE a=16409;\nUPDATE t2 SET b=62987 WHERE a=16410;\nUPDATE t2 SET b=90294 WHERE a=16411;\nUPDATE t2 SET b=7895 WHERE a=16412;\nUPDATE t2 SET b=26184 WHERE a=16413;\nUPDATE t2 SET b=80117 WHERE a=16414;\nUPDATE t2 SET b=52625 WHERE a=16415;\nUPDATE t2 SET b=76190 WHERE a=16416;\nUPDATE t2 SET b=8903 WHERE a=16417;\nUPDATE t2 SET b=63560 WHERE a=16418;\nUPDATE t2 SET b=47329 WHERE a=16419;\nUPDATE t2 SET b=49609 WHERE a=16420;\nUPDATE t2 SET b=90904 WHERE a=16421;\nUPDATE t2 SET b=3582 WHERE a=16422;\nUPDATE t2 SET b=62478 WHERE a=16423;\nUPDATE t2 SET b=43626 WHERE a=16424;\nUPDATE t2 SET b=69532 WHERE a=16425;\nUPDATE t2 SET b=44428 WHERE a=16426;\nUPDATE t2 SET b=21617 WHERE a=16427;\nUPDATE t2 SET b=66858 WHERE a=16428;\nUPDATE t2 SET b=35586 WHERE a=16429;\nUPDATE t2 SET b=43080 WHERE a=16430;\nUPDATE t2 SET b=27373 WHERE a=16431;\nUPDATE t2 SET b=50934 WHERE a=16432;\nUPDATE t2 SET b=20784 WHERE a=16433;\nUPDATE t2 SET b=19226 WHERE a=16434;\nUPDATE t2 SET b=72462 WHERE a=16435;\nUPDATE t2 SET b=61997 WHERE a=16436;\nUPDATE t2 SET b=15146 WHERE a=16437;\nUPDATE t2 SET b=96807 WHERE a=16438;\nUPDATE t2 SET b=5101 WHERE a=16439;\nUPDATE t2 SET b=64043 WHERE a=16440;\nUPDATE t2 SET b=26065 WHERE a=16441;\nUPDATE t2 SET b=12336 WHERE a=16442;\nUPDATE t2 SET b=98763 WHERE a=16443;\nUPDATE t2 SET b=99155 WHERE a=16444;\nUPDATE t2 SET b=36557 WHERE a=16445;\nUPDATE t2 SET b=26769 WHERE a=16446;\nUPDATE t2 SET b=87304 WHERE a=16447;\nUPDATE t2 SET b=72747 WHERE a=16448;\nUPDATE t2 SET b=6545 WHERE a=16449;\nUPDATE t2 SET b=7654 WHERE a=16450;\nUPDATE t2 SET b=96126 WHERE a=16451;\nUPDATE t2 SET b=84857 WHERE a=16452;\nUPDATE t2 SET b=84184 WHERE a=16453;\nUPDATE t2 SET b=12838 WHERE a=16454;\nUPDATE t2 SET b=69009 WHERE a=16455;\nUPDATE t2 SET b=84928 WHERE a=16456;\nUPDATE t2 SET b=55230 WHERE a=16457;\nUPDATE t2 SET b=68365 WHERE a=16458;\nUPDATE t2 SET b=64121 WHERE a=16459;\nUPDATE t2 SET b=18176 WHERE a=16460;\nUPDATE t2 SET b=71408 WHERE a=16461;\nUPDATE t2 SET b=88126 WHERE a=16462;\nUPDATE t2 SET b=54487 WHERE a=16463;\nUPDATE t2 SET b=4340 WHERE a=16464;\nUPDATE t2 SET b=35413 WHERE a=16465;\nUPDATE t2 SET b=49816 WHERE a=16466;\nUPDATE t2 SET b=29302 WHERE a=16467;\nUPDATE t2 SET b=27239 WHERE a=16468;\nUPDATE t2 SET b=7748 WHERE a=16469;\nUPDATE t2 SET b=9021 WHERE a=16470;\nUPDATE t2 SET b=19973 WHERE a=16471;\nUPDATE t2 SET b=84262 WHERE a=16472;\nUPDATE t2 SET b=2444 WHERE a=16473;\nUPDATE t2 SET b=25766 WHERE a=16474;\nUPDATE t2 SET b=75500 WHERE a=16475;\nUPDATE t2 SET b=34213 WHERE a=16476;\nUPDATE t2 SET b=71745 WHERE a=16477;\nUPDATE t2 SET b=16507 WHERE a=16478;\nUPDATE t2 SET b=82944 WHERE a=16479;\nUPDATE t2 SET b=52985 WHERE a=16480;\nUPDATE t2 SET b=3964 WHERE a=16481;\nUPDATE t2 SET b=70301 WHERE a=16482;\nUPDATE t2 SET b=15098 WHERE a=16483;\nUPDATE t2 SET b=23779 WHERE a=16484;\nUPDATE t2 SET b=68355 WHERE a=16485;\nUPDATE t2 SET b=80159 WHERE a=16486;\nUPDATE t2 SET b=25451 WHERE a=16487;\nUPDATE t2 SET b=54865 WHERE a=16488;\nUPDATE t2 SET b=81575 WHERE a=16489;\nUPDATE t2 SET b=48592 WHERE a=16490;\nUPDATE t2 SET b=83112 WHERE a=16491;\nUPDATE t2 SET b=21803 WHERE a=16492;\nUPDATE t2 SET b=15321 WHERE a=16493;\nUPDATE t2 SET b=71084 WHERE a=16494;\nUPDATE t2 SET b=59082 WHERE a=16495;\nUPDATE t2 SET b=89886 WHERE a=16496;\nUPDATE t2 SET b=461 WHERE a=16497;\nUPDATE t2 SET b=14455 WHERE a=16498;\nUPDATE t2 SET b=66115 WHERE a=16499;\nUPDATE t2 SET b=76760 WHERE a=16500;\nUPDATE t2 SET b=95668 WHERE a=16501;\nUPDATE t2 SET b=24478 WHERE a=16502;\nUPDATE t2 SET b=48744 WHERE a=16503;\nUPDATE t2 SET b=84480 WHERE a=16504;\nUPDATE t2 SET b=3789 WHERE a=16505;\nUPDATE t2 SET b=66150 WHERE a=16506;\nUPDATE t2 SET b=816 WHERE a=16507;\nUPDATE t2 SET b=54410 WHERE a=16508;\nUPDATE t2 SET b=18172 WHERE a=16509;\nUPDATE t2 SET b=10215 WHERE a=16510;\nUPDATE t2 SET b=38621 WHERE a=16511;\nUPDATE t2 SET b=41243 WHERE a=16512;\nUPDATE t2 SET b=42367 WHERE a=16513;\nUPDATE t2 SET b=39518 WHERE a=16514;\nUPDATE t2 SET b=100 WHERE a=16515;\nUPDATE t2 SET b=37810 WHERE a=16516;\nUPDATE t2 SET b=90028 WHERE a=16517;\nUPDATE t2 SET b=30774 WHERE a=16518;\nUPDATE t2 SET b=57471 WHERE a=16519;\nUPDATE t2 SET b=29831 WHERE a=16520;\nUPDATE t2 SET b=78059 WHERE a=16521;\nUPDATE t2 SET b=51380 WHERE a=16522;\nUPDATE t2 SET b=31572 WHERE a=16523;\nUPDATE t2 SET b=44119 WHERE a=16524;\nUPDATE t2 SET b=71661 WHERE a=16525;\nUPDATE t2 SET b=17215 WHERE a=16526;\nUPDATE t2 SET b=62515 WHERE a=16527;\nUPDATE t2 SET b=236 WHERE a=16528;\nUPDATE t2 SET b=74840 WHERE a=16529;\nUPDATE t2 SET b=78855 WHERE a=16530;\nUPDATE t2 SET b=17140 WHERE a=16531;\nUPDATE t2 SET b=46895 WHERE a=16532;\nUPDATE t2 SET b=71398 WHERE a=16533;\nUPDATE t2 SET b=24155 WHERE a=16534;\nUPDATE t2 SET b=26529 WHERE a=16535;\nUPDATE t2 SET b=90662 WHERE a=16536;\nUPDATE t2 SET b=38284 WHERE a=16537;\nUPDATE t2 SET b=86120 WHERE a=16538;\nUPDATE t2 SET b=97564 WHERE a=16539;\nUPDATE t2 SET b=16484 WHERE a=16540;\nUPDATE t2 SET b=18813 WHERE a=16541;\nUPDATE t2 SET b=88557 WHERE a=16542;\nUPDATE t2 SET b=92227 WHERE a=16543;\nUPDATE t2 SET b=78833 WHERE a=16544;\nUPDATE t2 SET b=61719 WHERE a=16545;\nUPDATE t2 SET b=97407 WHERE a=16546;\nUPDATE t2 SET b=41849 WHERE a=16547;\nUPDATE t2 SET b=65788 WHERE a=16548;\nUPDATE t2 SET b=52884 WHERE a=16549;\nUPDATE t2 SET b=84408 WHERE a=16550;\nUPDATE t2 SET b=76870 WHERE a=16551;\nUPDATE t2 SET b=43134 WHERE a=16552;\nUPDATE t2 SET b=4703 WHERE a=16553;\nUPDATE t2 SET b=80417 WHERE a=16554;\nUPDATE t2 SET b=57129 WHERE a=16555;\nUPDATE t2 SET b=58346 WHERE a=16556;\nUPDATE t2 SET b=63138 WHERE a=16557;\nUPDATE t2 SET b=77137 WHERE a=16558;\nUPDATE t2 SET b=69856 WHERE a=16559;\nUPDATE t2 SET b=51498 WHERE a=16560;\nUPDATE t2 SET b=66324 WHERE a=16561;\nUPDATE t2 SET b=51967 WHERE a=16562;\nUPDATE t2 SET b=45725 WHERE a=16563;\nUPDATE t2 SET b=94186 WHERE a=16564;\nUPDATE t2 SET b=90425 WHERE a=16565;\nUPDATE t2 SET b=58682 WHERE a=16566;\nUPDATE t2 SET b=43526 WHERE a=16567;\nUPDATE t2 SET b=94083 WHERE a=16568;\nUPDATE t2 SET b=69891 WHERE a=16569;\nUPDATE t2 SET b=97261 WHERE a=16570;\nUPDATE t2 SET b=6106 WHERE a=16571;\nUPDATE t2 SET b=19845 WHERE a=16572;\nUPDATE t2 SET b=36194 WHERE a=16573;\nUPDATE t2 SET b=44760 WHERE a=16574;\nUPDATE t2 SET b=61133 WHERE a=16575;\nUPDATE t2 SET b=33224 WHERE a=16576;\nUPDATE t2 SET b=67941 WHERE a=16577;\nUPDATE t2 SET b=56241 WHERE a=16578;\nUPDATE t2 SET b=28539 WHERE a=16579;\nUPDATE t2 SET b=46983 WHERE a=16580;\nUPDATE t2 SET b=66089 WHERE a=16581;\nUPDATE t2 SET b=57298 WHERE a=16582;\nUPDATE t2 SET b=64020 WHERE a=16583;\nUPDATE t2 SET b=92602 WHERE a=16584;\nUPDATE t2 SET b=93708 WHERE a=16585;\nUPDATE t2 SET b=66120 WHERE a=16586;\nUPDATE t2 SET b=28508 WHERE a=16587;\nUPDATE t2 SET b=65355 WHERE a=16588;\nUPDATE t2 SET b=46527 WHERE a=16589;\nUPDATE t2 SET b=96298 WHERE a=16590;\nUPDATE t2 SET b=49923 WHERE a=16591;\nUPDATE t2 SET b=21341 WHERE a=16592;\nUPDATE t2 SET b=27066 WHERE a=16593;\nUPDATE t2 SET b=13772 WHERE a=16594;\nUPDATE t2 SET b=20755 WHERE a=16595;\nUPDATE t2 SET b=41214 WHERE a=16596;\nUPDATE t2 SET b=30988 WHERE a=16597;\nUPDATE t2 SET b=85458 WHERE a=16598;\nUPDATE t2 SET b=28318 WHERE a=16599;\nUPDATE t2 SET b=60985 WHERE a=16600;\nUPDATE t2 SET b=55477 WHERE a=16601;\nUPDATE t2 SET b=56974 WHERE a=16602;\nUPDATE t2 SET b=2792 WHERE a=16603;\nUPDATE t2 SET b=28271 WHERE a=16604;\nUPDATE t2 SET b=8229 WHERE a=16605;\nUPDATE t2 SET b=27180 WHERE a=16606;\nUPDATE t2 SET b=61272 WHERE a=16607;\nUPDATE t2 SET b=69290 WHERE a=16608;\nUPDATE t2 SET b=20306 WHERE a=16609;\nUPDATE t2 SET b=8402 WHERE a=16610;\nUPDATE t2 SET b=71472 WHERE a=16611;\nUPDATE t2 SET b=98716 WHERE a=16612;\nUPDATE t2 SET b=18053 WHERE a=16613;\nUPDATE t2 SET b=64321 WHERE a=16614;\nUPDATE t2 SET b=99185 WHERE a=16615;\nUPDATE t2 SET b=72764 WHERE a=16616;\nUPDATE t2 SET b=56444 WHERE a=16617;\nUPDATE t2 SET b=89111 WHERE a=16618;\nUPDATE t2 SET b=85138 WHERE a=16619;\nUPDATE t2 SET b=53627 WHERE a=16620;\nUPDATE t2 SET b=23971 WHERE a=16621;\nUPDATE t2 SET b=54178 WHERE a=16622;\nUPDATE t2 SET b=72722 WHERE a=16623;\nUPDATE t2 SET b=82041 WHERE a=16624;\nUPDATE t2 SET b=28246 WHERE a=16625;\nUPDATE t2 SET b=83042 WHERE a=16626;\nUPDATE t2 SET b=64575 WHERE a=16627;\nUPDATE t2 SET b=62371 WHERE a=16628;\nUPDATE t2 SET b=1525 WHERE a=16629;\nUPDATE t2 SET b=13099 WHERE a=16630;\nUPDATE t2 SET b=15070 WHERE a=16631;\nUPDATE t2 SET b=59763 WHERE a=16632;\nUPDATE t2 SET b=42643 WHERE a=16633;\nUPDATE t2 SET b=79961 WHERE a=16634;\nUPDATE t2 SET b=7079 WHERE a=16635;\nUPDATE t2 SET b=40589 WHERE a=16636;\nUPDATE t2 SET b=60289 WHERE a=16637;\nUPDATE t2 SET b=31294 WHERE a=16638;\nUPDATE t2 SET b=90835 WHERE a=16639;\nUPDATE t2 SET b=86274 WHERE a=16640;\nUPDATE t2 SET b=79146 WHERE a=16641;\nUPDATE t2 SET b=86384 WHERE a=16642;\nUPDATE t2 SET b=67336 WHERE a=16643;\nUPDATE t2 SET b=21552 WHERE a=16644;\nUPDATE t2 SET b=49183 WHERE a=16645;\nUPDATE t2 SET b=88483 WHERE a=16646;\nUPDATE t2 SET b=59695 WHERE a=16647;\nUPDATE t2 SET b=53994 WHERE a=16648;\nUPDATE t2 SET b=7178 WHERE a=16649;\nUPDATE t2 SET b=47419 WHERE a=16650;\nUPDATE t2 SET b=16050 WHERE a=16651;\nUPDATE t2 SET b=66391 WHERE a=16652;\nUPDATE t2 SET b=23830 WHERE a=16653;\nUPDATE t2 SET b=53777 WHERE a=16654;\nUPDATE t2 SET b=80957 WHERE a=16655;\nUPDATE t2 SET b=78029 WHERE a=16656;\nUPDATE t2 SET b=13953 WHERE a=16657;\nUPDATE t2 SET b=99658 WHERE a=16658;\nUPDATE t2 SET b=86943 WHERE a=16659;\nUPDATE t2 SET b=90234 WHERE a=16660;\nUPDATE t2 SET b=33738 WHERE a=16661;\nUPDATE t2 SET b=66805 WHERE a=16662;\nUPDATE t2 SET b=22496 WHERE a=16663;\nUPDATE t2 SET b=42133 WHERE a=16664;\nUPDATE t2 SET b=47043 WHERE a=16665;\nUPDATE t2 SET b=36547 WHERE a=16666;\nUPDATE t2 SET b=99929 WHERE a=16667;\nUPDATE t2 SET b=78005 WHERE a=16668;\nUPDATE t2 SET b=99968 WHERE a=16669;\nUPDATE t2 SET b=25785 WHERE a=16670;\nUPDATE t2 SET b=83699 WHERE a=16671;\nUPDATE t2 SET b=11245 WHERE a=16672;\nUPDATE t2 SET b=78692 WHERE a=16673;\nUPDATE t2 SET b=20481 WHERE a=16674;\nUPDATE t2 SET b=34595 WHERE a=16675;\nUPDATE t2 SET b=78663 WHERE a=16676;\nUPDATE t2 SET b=82951 WHERE a=16677;\nUPDATE t2 SET b=77142 WHERE a=16678;\nUPDATE t2 SET b=8212 WHERE a=16679;\nUPDATE t2 SET b=88985 WHERE a=16680;\nUPDATE t2 SET b=29648 WHERE a=16681;\nUPDATE t2 SET b=2511 WHERE a=16682;\nUPDATE t2 SET b=25470 WHERE a=16683;\nUPDATE t2 SET b=94402 WHERE a=16684;\nUPDATE t2 SET b=83577 WHERE a=16685;\nUPDATE t2 SET b=24067 WHERE a=16686;\nUPDATE t2 SET b=46400 WHERE a=16687;\nUPDATE t2 SET b=92208 WHERE a=16688;\nUPDATE t2 SET b=92533 WHERE a=16689;\nUPDATE t2 SET b=54877 WHERE a=16690;\nUPDATE t2 SET b=81069 WHERE a=16691;\nUPDATE t2 SET b=52884 WHERE a=16692;\nUPDATE t2 SET b=33606 WHERE a=16693;\nUPDATE t2 SET b=41412 WHERE a=16694;\nUPDATE t2 SET b=49478 WHERE a=16695;\nUPDATE t2 SET b=9664 WHERE a=16696;\nUPDATE t2 SET b=37907 WHERE a=16697;\nUPDATE t2 SET b=31395 WHERE a=16698;\nUPDATE t2 SET b=78561 WHERE a=16699;\nUPDATE t2 SET b=63151 WHERE a=16700;\nUPDATE t2 SET b=7969 WHERE a=16701;\nUPDATE t2 SET b=110 WHERE a=16702;\nUPDATE t2 SET b=73167 WHERE a=16703;\nUPDATE t2 SET b=50024 WHERE a=16704;\nUPDATE t2 SET b=27688 WHERE a=16705;\nUPDATE t2 SET b=51527 WHERE a=16706;\nUPDATE t2 SET b=96932 WHERE a=16707;\nUPDATE t2 SET b=95972 WHERE a=16708;\nUPDATE t2 SET b=22895 WHERE a=16709;\nUPDATE t2 SET b=36365 WHERE a=16710;\nUPDATE t2 SET b=68126 WHERE a=16711;\nUPDATE t2 SET b=40196 WHERE a=16712;\nUPDATE t2 SET b=12581 WHERE a=16713;\nUPDATE t2 SET b=3401 WHERE a=16714;\nUPDATE t2 SET b=34815 WHERE a=16715;\nUPDATE t2 SET b=83299 WHERE a=16716;\nUPDATE t2 SET b=6020 WHERE a=16717;\nUPDATE t2 SET b=46067 WHERE a=16718;\nUPDATE t2 SET b=57361 WHERE a=16719;\nUPDATE t2 SET b=97971 WHERE a=16720;\nUPDATE t2 SET b=58196 WHERE a=16721;\nUPDATE t2 SET b=78143 WHERE a=16722;\nUPDATE t2 SET b=4726 WHERE a=16723;\nUPDATE t2 SET b=95300 WHERE a=16724;\nUPDATE t2 SET b=37320 WHERE a=16725;\nUPDATE t2 SET b=90262 WHERE a=16726;\nUPDATE t2 SET b=68756 WHERE a=16727;\nUPDATE t2 SET b=5281 WHERE a=16728;\nUPDATE t2 SET b=43138 WHERE a=16729;\nUPDATE t2 SET b=41659 WHERE a=16730;\nUPDATE t2 SET b=93979 WHERE a=16731;\nUPDATE t2 SET b=90919 WHERE a=16732;\nUPDATE t2 SET b=8035 WHERE a=16733;\nUPDATE t2 SET b=92356 WHERE a=16734;\nUPDATE t2 SET b=19785 WHERE a=16735;\nUPDATE t2 SET b=95714 WHERE a=16736;\nUPDATE t2 SET b=87147 WHERE a=16737;\nUPDATE t2 SET b=27477 WHERE a=16738;\nUPDATE t2 SET b=8212 WHERE a=16739;\nUPDATE t2 SET b=86606 WHERE a=16740;\nUPDATE t2 SET b=18476 WHERE a=16741;\nUPDATE t2 SET b=50132 WHERE a=16742;\nUPDATE t2 SET b=77545 WHERE a=16743;\nUPDATE t2 SET b=88045 WHERE a=16744;\nUPDATE t2 SET b=61303 WHERE a=16745;\nUPDATE t2 SET b=41283 WHERE a=16746;\nUPDATE t2 SET b=38884 WHERE a=16747;\nUPDATE t2 SET b=510 WHERE a=16748;\nUPDATE t2 SET b=36665 WHERE a=16749;\nUPDATE t2 SET b=32955 WHERE a=16750;\nUPDATE t2 SET b=42320 WHERE a=16751;\nUPDATE t2 SET b=6395 WHERE a=16752;\nUPDATE t2 SET b=87879 WHERE a=16753;\nUPDATE t2 SET b=92172 WHERE a=16754;\nUPDATE t2 SET b=27566 WHERE a=16755;\nUPDATE t2 SET b=80719 WHERE a=16756;\nUPDATE t2 SET b=29710 WHERE a=16757;\nUPDATE t2 SET b=16533 WHERE a=16758;\nUPDATE t2 SET b=24248 WHERE a=16759;\nUPDATE t2 SET b=78118 WHERE a=16760;\nUPDATE t2 SET b=48732 WHERE a=16761;\nUPDATE t2 SET b=3351 WHERE a=16762;\nUPDATE t2 SET b=37246 WHERE a=16763;\nUPDATE t2 SET b=94021 WHERE a=16764;\nUPDATE t2 SET b=27185 WHERE a=16765;\nUPDATE t2 SET b=8128 WHERE a=16766;\nUPDATE t2 SET b=15515 WHERE a=16767;\nUPDATE t2 SET b=57883 WHERE a=16768;\nUPDATE t2 SET b=4661 WHERE a=16769;\nUPDATE t2 SET b=61831 WHERE a=16770;\nUPDATE t2 SET b=47279 WHERE a=16771;\nUPDATE t2 SET b=86332 WHERE a=16772;\nUPDATE t2 SET b=27502 WHERE a=16773;\nUPDATE t2 SET b=12991 WHERE a=16774;\nUPDATE t2 SET b=10561 WHERE a=16775;\nUPDATE t2 SET b=56951 WHERE a=16776;\nUPDATE t2 SET b=32250 WHERE a=16777;\nUPDATE t2 SET b=16663 WHERE a=16778;\nUPDATE t2 SET b=17300 WHERE a=16779;\nUPDATE t2 SET b=5963 WHERE a=16780;\nUPDATE t2 SET b=96878 WHERE a=16781;\nUPDATE t2 SET b=91694 WHERE a=16782;\nUPDATE t2 SET b=78893 WHERE a=16783;\nUPDATE t2 SET b=65694 WHERE a=16784;\nUPDATE t2 SET b=2772 WHERE a=16785;\nUPDATE t2 SET b=8151 WHERE a=16786;\nUPDATE t2 SET b=88661 WHERE a=16787;\nUPDATE t2 SET b=77789 WHERE a=16788;\nUPDATE t2 SET b=11354 WHERE a=16789;\nUPDATE t2 SET b=66645 WHERE a=16790;\nUPDATE t2 SET b=84120 WHERE a=16791;\nUPDATE t2 SET b=84532 WHERE a=16792;\nUPDATE t2 SET b=45504 WHERE a=16793;\nUPDATE t2 SET b=71610 WHERE a=16794;\nUPDATE t2 SET b=85797 WHERE a=16795;\nUPDATE t2 SET b=53497 WHERE a=16796;\nUPDATE t2 SET b=31820 WHERE a=16797;\nUPDATE t2 SET b=29814 WHERE a=16798;\nUPDATE t2 SET b=16857 WHERE a=16799;\nUPDATE t2 SET b=87295 WHERE a=16800;\nUPDATE t2 SET b=50253 WHERE a=16801;\nUPDATE t2 SET b=83150 WHERE a=16802;\nUPDATE t2 SET b=43689 WHERE a=16803;\nUPDATE t2 SET b=64633 WHERE a=16804;\nUPDATE t2 SET b=37960 WHERE a=16805;\nUPDATE t2 SET b=2992 WHERE a=16806;\nUPDATE t2 SET b=26161 WHERE a=16807;\nUPDATE t2 SET b=42980 WHERE a=16808;\nUPDATE t2 SET b=37057 WHERE a=16809;\nUPDATE t2 SET b=91833 WHERE a=16810;\nUPDATE t2 SET b=75280 WHERE a=16811;\nUPDATE t2 SET b=39714 WHERE a=16812;\nUPDATE t2 SET b=40353 WHERE a=16813;\nUPDATE t2 SET b=87238 WHERE a=16814;\nUPDATE t2 SET b=99527 WHERE a=16815;\nUPDATE t2 SET b=92774 WHERE a=16816;\nUPDATE t2 SET b=83800 WHERE a=16817;\nUPDATE t2 SET b=55336 WHERE a=16818;\nUPDATE t2 SET b=60167 WHERE a=16819;\nUPDATE t2 SET b=24302 WHERE a=16820;\nUPDATE t2 SET b=17692 WHERE a=16821;\nUPDATE t2 SET b=65405 WHERE a=16822;\nUPDATE t2 SET b=84251 WHERE a=16823;\nUPDATE t2 SET b=15095 WHERE a=16824;\nUPDATE t2 SET b=21623 WHERE a=16825;\nUPDATE t2 SET b=55634 WHERE a=16826;\nUPDATE t2 SET b=5960 WHERE a=16827;\nUPDATE t2 SET b=7102 WHERE a=16828;\nUPDATE t2 SET b=85918 WHERE a=16829;\nUPDATE t2 SET b=6127 WHERE a=16830;\nUPDATE t2 SET b=20541 WHERE a=16831;\nUPDATE t2 SET b=13424 WHERE a=16832;\nUPDATE t2 SET b=88224 WHERE a=16833;\nUPDATE t2 SET b=97487 WHERE a=16834;\nUPDATE t2 SET b=90927 WHERE a=16835;\nUPDATE t2 SET b=79209 WHERE a=16836;\nUPDATE t2 SET b=27863 WHERE a=16837;\nUPDATE t2 SET b=91201 WHERE a=16838;\nUPDATE t2 SET b=24756 WHERE a=16839;\nUPDATE t2 SET b=96762 WHERE a=16840;\nUPDATE t2 SET b=8104 WHERE a=16841;\nUPDATE t2 SET b=67976 WHERE a=16842;\nUPDATE t2 SET b=21890 WHERE a=16843;\nUPDATE t2 SET b=68478 WHERE a=16844;\nUPDATE t2 SET b=94112 WHERE a=16845;\nUPDATE t2 SET b=39423 WHERE a=16846;\nUPDATE t2 SET b=50351 WHERE a=16847;\nUPDATE t2 SET b=16669 WHERE a=16848;\nUPDATE t2 SET b=65185 WHERE a=16849;\nUPDATE t2 SET b=49045 WHERE a=16850;\nUPDATE t2 SET b=86878 WHERE a=16851;\nUPDATE t2 SET b=65890 WHERE a=16852;\nUPDATE t2 SET b=43799 WHERE a=16853;\nUPDATE t2 SET b=63340 WHERE a=16854;\nUPDATE t2 SET b=53387 WHERE a=16855;\nUPDATE t2 SET b=43321 WHERE a=16856;\nUPDATE t2 SET b=88406 WHERE a=16857;\nUPDATE t2 SET b=21375 WHERE a=16858;\nUPDATE t2 SET b=93981 WHERE a=16859;\nUPDATE t2 SET b=79757 WHERE a=16860;\nUPDATE t2 SET b=852 WHERE a=16861;\nUPDATE t2 SET b=52765 WHERE a=16862;\nUPDATE t2 SET b=28478 WHERE a=16863;\nUPDATE t2 SET b=83909 WHERE a=16864;\nUPDATE t2 SET b=54710 WHERE a=16865;\nUPDATE t2 SET b=53273 WHERE a=16866;\nUPDATE t2 SET b=27106 WHERE a=16867;\nUPDATE t2 SET b=94726 WHERE a=16868;\nUPDATE t2 SET b=27115 WHERE a=16869;\nUPDATE t2 SET b=26483 WHERE a=16870;\nUPDATE t2 SET b=15250 WHERE a=16871;\nUPDATE t2 SET b=73687 WHERE a=16872;\nUPDATE t2 SET b=35779 WHERE a=16873;\nUPDATE t2 SET b=52789 WHERE a=16874;\nUPDATE t2 SET b=43523 WHERE a=16875;\nUPDATE t2 SET b=95970 WHERE a=16876;\nUPDATE t2 SET b=66033 WHERE a=16877;\nUPDATE t2 SET b=88106 WHERE a=16878;\nUPDATE t2 SET b=68521 WHERE a=16879;\nUPDATE t2 SET b=16329 WHERE a=16880;\nUPDATE t2 SET b=68699 WHERE a=16881;\nUPDATE t2 SET b=56468 WHERE a=16882;\nUPDATE t2 SET b=5329 WHERE a=16883;\nUPDATE t2 SET b=34480 WHERE a=16884;\nUPDATE t2 SET b=84322 WHERE a=16885;\nUPDATE t2 SET b=52842 WHERE a=16886;\nUPDATE t2 SET b=184 WHERE a=16887;\nUPDATE t2 SET b=18953 WHERE a=16888;\nUPDATE t2 SET b=93096 WHERE a=16889;\nUPDATE t2 SET b=96504 WHERE a=16890;\nUPDATE t2 SET b=85206 WHERE a=16891;\nUPDATE t2 SET b=24108 WHERE a=16892;\nUPDATE t2 SET b=74809 WHERE a=16893;\nUPDATE t2 SET b=95031 WHERE a=16894;\nUPDATE t2 SET b=210 WHERE a=16895;\nUPDATE t2 SET b=54315 WHERE a=16896;\nUPDATE t2 SET b=49256 WHERE a=16897;\nUPDATE t2 SET b=77598 WHERE a=16898;\nUPDATE t2 SET b=80888 WHERE a=16899;\nUPDATE t2 SET b=75676 WHERE a=16900;\nUPDATE t2 SET b=74659 WHERE a=16901;\nUPDATE t2 SET b=36317 WHERE a=16902;\nUPDATE t2 SET b=22574 WHERE a=16903;\nUPDATE t2 SET b=40358 WHERE a=16904;\nUPDATE t2 SET b=1169 WHERE a=16905;\nUPDATE t2 SET b=95739 WHERE a=16906;\nUPDATE t2 SET b=1572 WHERE a=16907;\nUPDATE t2 SET b=96499 WHERE a=16908;\nUPDATE t2 SET b=32867 WHERE a=16909;\nUPDATE t2 SET b=50356 WHERE a=16910;\nUPDATE t2 SET b=59975 WHERE a=16911;\nUPDATE t2 SET b=58823 WHERE a=16912;\nUPDATE t2 SET b=43362 WHERE a=16913;\nUPDATE t2 SET b=57574 WHERE a=16914;\nUPDATE t2 SET b=83548 WHERE a=16915;\nUPDATE t2 SET b=5089 WHERE a=16916;\nUPDATE t2 SET b=51883 WHERE a=16917;\nUPDATE t2 SET b=21741 WHERE a=16918;\nUPDATE t2 SET b=21912 WHERE a=16919;\nUPDATE t2 SET b=58475 WHERE a=16920;\nUPDATE t2 SET b=95000 WHERE a=16921;\nUPDATE t2 SET b=39999 WHERE a=16922;\nUPDATE t2 SET b=25751 WHERE a=16923;\nUPDATE t2 SET b=96750 WHERE a=16924;\nUPDATE t2 SET b=63410 WHERE a=16925;\nUPDATE t2 SET b=43905 WHERE a=16926;\nUPDATE t2 SET b=40866 WHERE a=16927;\nUPDATE t2 SET b=57819 WHERE a=16928;\nUPDATE t2 SET b=72889 WHERE a=16929;\nUPDATE t2 SET b=54587 WHERE a=16930;\nUPDATE t2 SET b=16476 WHERE a=16931;\nUPDATE t2 SET b=68972 WHERE a=16932;\nUPDATE t2 SET b=23089 WHERE a=16933;\nUPDATE t2 SET b=73078 WHERE a=16934;\nUPDATE t2 SET b=15926 WHERE a=16935;\nUPDATE t2 SET b=25819 WHERE a=16936;\nUPDATE t2 SET b=26319 WHERE a=16937;\nUPDATE t2 SET b=39777 WHERE a=16938;\nUPDATE t2 SET b=81776 WHERE a=16939;\nUPDATE t2 SET b=83596 WHERE a=16940;\nUPDATE t2 SET b=84644 WHERE a=16941;\nUPDATE t2 SET b=4131 WHERE a=16942;\nUPDATE t2 SET b=84192 WHERE a=16943;\nUPDATE t2 SET b=61094 WHERE a=16944;\nUPDATE t2 SET b=53091 WHERE a=16945;\nUPDATE t2 SET b=43965 WHERE a=16946;\nUPDATE t2 SET b=43533 WHERE a=16947;\nUPDATE t2 SET b=87958 WHERE a=16948;\nUPDATE t2 SET b=88585 WHERE a=16949;\nUPDATE t2 SET b=74779 WHERE a=16950;\nUPDATE t2 SET b=21782 WHERE a=16951;\nUPDATE t2 SET b=82881 WHERE a=16952;\nUPDATE t2 SET b=13895 WHERE a=16953;\nUPDATE t2 SET b=98867 WHERE a=16954;\nUPDATE t2 SET b=76279 WHERE a=16955;\nUPDATE t2 SET b=93452 WHERE a=16956;\nUPDATE t2 SET b=36860 WHERE a=16957;\nUPDATE t2 SET b=39956 WHERE a=16958;\nUPDATE t2 SET b=91989 WHERE a=16959;\nUPDATE t2 SET b=31573 WHERE a=16960;\nUPDATE t2 SET b=74924 WHERE a=16961;\nUPDATE t2 SET b=82122 WHERE a=16962;\nUPDATE t2 SET b=11431 WHERE a=16963;\nUPDATE t2 SET b=89863 WHERE a=16964;\nUPDATE t2 SET b=80501 WHERE a=16965;\nUPDATE t2 SET b=23736 WHERE a=16966;\nUPDATE t2 SET b=17605 WHERE a=16967;\nUPDATE t2 SET b=85459 WHERE a=16968;\nUPDATE t2 SET b=75205 WHERE a=16969;\nUPDATE t2 SET b=42342 WHERE a=16970;\nUPDATE t2 SET b=95394 WHERE a=16971;\nUPDATE t2 SET b=62424 WHERE a=16972;\nUPDATE t2 SET b=36942 WHERE a=16973;\nUPDATE t2 SET b=28295 WHERE a=16974;\nUPDATE t2 SET b=66157 WHERE a=16975;\nUPDATE t2 SET b=54159 WHERE a=16976;\nUPDATE t2 SET b=55567 WHERE a=16977;\nUPDATE t2 SET b=97551 WHERE a=16978;\nUPDATE t2 SET b=7231 WHERE a=16979;\nUPDATE t2 SET b=4246 WHERE a=16980;\nUPDATE t2 SET b=51987 WHERE a=16981;\nUPDATE t2 SET b=90872 WHERE a=16982;\nUPDATE t2 SET b=68762 WHERE a=16983;\nUPDATE t2 SET b=35638 WHERE a=16984;\nUPDATE t2 SET b=34272 WHERE a=16985;\nUPDATE t2 SET b=73013 WHERE a=16986;\nUPDATE t2 SET b=81243 WHERE a=16987;\nUPDATE t2 SET b=97324 WHERE a=16988;\nUPDATE t2 SET b=94253 WHERE a=16989;\nUPDATE t2 SET b=18392 WHERE a=16990;\nUPDATE t2 SET b=92274 WHERE a=16991;\nUPDATE t2 SET b=70564 WHERE a=16992;\nUPDATE t2 SET b=84326 WHERE a=16993;\nUPDATE t2 SET b=49653 WHERE a=16994;\nUPDATE t2 SET b=22628 WHERE a=16995;\nUPDATE t2 SET b=68019 WHERE a=16996;\nUPDATE t2 SET b=19252 WHERE a=16997;\nUPDATE t2 SET b=75358 WHERE a=16998;\nUPDATE t2 SET b=76321 WHERE a=16999;\nUPDATE t2 SET b=738 WHERE a=17000;\nUPDATE t2 SET b=26040 WHERE a=17001;\nUPDATE t2 SET b=46502 WHERE a=17002;\nUPDATE t2 SET b=914 WHERE a=17003;\nUPDATE t2 SET b=15937 WHERE a=17004;\nUPDATE t2 SET b=92674 WHERE a=17005;\nUPDATE t2 SET b=38654 WHERE a=17006;\nUPDATE t2 SET b=89838 WHERE a=17007;\nUPDATE t2 SET b=59448 WHERE a=17008;\nUPDATE t2 SET b=26933 WHERE a=17009;\nUPDATE t2 SET b=58573 WHERE a=17010;\nUPDATE t2 SET b=45434 WHERE a=17011;\nUPDATE t2 SET b=87753 WHERE a=17012;\nUPDATE t2 SET b=18588 WHERE a=17013;\nUPDATE t2 SET b=72602 WHERE a=17014;\nUPDATE t2 SET b=67248 WHERE a=17015;\nUPDATE t2 SET b=82292 WHERE a=17016;\nUPDATE t2 SET b=1952 WHERE a=17017;\nUPDATE t2 SET b=67449 WHERE a=17018;\nUPDATE t2 SET b=54545 WHERE a=17019;\nUPDATE t2 SET b=94296 WHERE a=17020;\nUPDATE t2 SET b=22622 WHERE a=17021;\nUPDATE t2 SET b=78658 WHERE a=17022;\nUPDATE t2 SET b=36110 WHERE a=17023;\nUPDATE t2 SET b=66682 WHERE a=17024;\nUPDATE t2 SET b=69654 WHERE a=17025;\nUPDATE t2 SET b=7668 WHERE a=17026;\nUPDATE t2 SET b=55116 WHERE a=17027;\nUPDATE t2 SET b=37115 WHERE a=17028;\nUPDATE t2 SET b=7835 WHERE a=17029;\nUPDATE t2 SET b=57160 WHERE a=17030;\nUPDATE t2 SET b=24267 WHERE a=17031;\nUPDATE t2 SET b=5688 WHERE a=17032;\nUPDATE t2 SET b=4922 WHERE a=17033;\nUPDATE t2 SET b=70016 WHERE a=17034;\nUPDATE t2 SET b=81575 WHERE a=17035;\nUPDATE t2 SET b=3799 WHERE a=17036;\nUPDATE t2 SET b=63102 WHERE a=17037;\nUPDATE t2 SET b=11682 WHERE a=17038;\nUPDATE t2 SET b=33924 WHERE a=17039;\nUPDATE t2 SET b=66607 WHERE a=17040;\nUPDATE t2 SET b=56343 WHERE a=17041;\nUPDATE t2 SET b=34267 WHERE a=17042;\nUPDATE t2 SET b=24251 WHERE a=17043;\nUPDATE t2 SET b=57480 WHERE a=17044;\nUPDATE t2 SET b=8314 WHERE a=17045;\nUPDATE t2 SET b=89318 WHERE a=17046;\nUPDATE t2 SET b=97878 WHERE a=17047;\nUPDATE t2 SET b=71104 WHERE a=17048;\nUPDATE t2 SET b=38696 WHERE a=17049;\nUPDATE t2 SET b=82099 WHERE a=17050;\nUPDATE t2 SET b=18155 WHERE a=17051;\nUPDATE t2 SET b=25597 WHERE a=17052;\nUPDATE t2 SET b=43384 WHERE a=17053;\nUPDATE t2 SET b=20453 WHERE a=17054;\nUPDATE t2 SET b=92662 WHERE a=17055;\nUPDATE t2 SET b=5046 WHERE a=17056;\nUPDATE t2 SET b=99482 WHERE a=17057;\nUPDATE t2 SET b=20112 WHERE a=17058;\nUPDATE t2 SET b=47390 WHERE a=17059;\nUPDATE t2 SET b=25312 WHERE a=17060;\nUPDATE t2 SET b=53544 WHERE a=17061;\nUPDATE t2 SET b=64869 WHERE a=17062;\nUPDATE t2 SET b=99677 WHERE a=17063;\nUPDATE t2 SET b=66710 WHERE a=17064;\nUPDATE t2 SET b=98958 WHERE a=17065;\nUPDATE t2 SET b=93144 WHERE a=17066;\nUPDATE t2 SET b=84750 WHERE a=17067;\nUPDATE t2 SET b=55982 WHERE a=17068;\nUPDATE t2 SET b=25765 WHERE a=17069;\nUPDATE t2 SET b=33164 WHERE a=17070;\nUPDATE t2 SET b=48046 WHERE a=17071;\nUPDATE t2 SET b=78408 WHERE a=17072;\nUPDATE t2 SET b=80861 WHERE a=17073;\nUPDATE t2 SET b=18747 WHERE a=17074;\nUPDATE t2 SET b=99057 WHERE a=17075;\nUPDATE t2 SET b=33228 WHERE a=17076;\nUPDATE t2 SET b=18524 WHERE a=17077;\nUPDATE t2 SET b=26170 WHERE a=17078;\nUPDATE t2 SET b=68286 WHERE a=17079;\nUPDATE t2 SET b=4914 WHERE a=17080;\nUPDATE t2 SET b=4019 WHERE a=17081;\nUPDATE t2 SET b=98811 WHERE a=17082;\nUPDATE t2 SET b=44765 WHERE a=17083;\nUPDATE t2 SET b=1308 WHERE a=17084;\nUPDATE t2 SET b=16805 WHERE a=17085;\nUPDATE t2 SET b=1395 WHERE a=17086;\nUPDATE t2 SET b=20619 WHERE a=17087;\nUPDATE t2 SET b=76051 WHERE a=17088;\nUPDATE t2 SET b=52822 WHERE a=17089;\nUPDATE t2 SET b=80890 WHERE a=17090;\nUPDATE t2 SET b=65241 WHERE a=17091;\nUPDATE t2 SET b=68613 WHERE a=17092;\nUPDATE t2 SET b=5847 WHERE a=17093;\nUPDATE t2 SET b=62334 WHERE a=17094;\nUPDATE t2 SET b=21482 WHERE a=17095;\nUPDATE t2 SET b=61742 WHERE a=17096;\nUPDATE t2 SET b=64678 WHERE a=17097;\nUPDATE t2 SET b=16406 WHERE a=17098;\nUPDATE t2 SET b=97110 WHERE a=17099;\nUPDATE t2 SET b=71839 WHERE a=17100;\nUPDATE t2 SET b=92958 WHERE a=17101;\nUPDATE t2 SET b=55968 WHERE a=17102;\nUPDATE t2 SET b=51056 WHERE a=17103;\nUPDATE t2 SET b=69771 WHERE a=17104;\nUPDATE t2 SET b=95481 WHERE a=17105;\nUPDATE t2 SET b=18556 WHERE a=17106;\nUPDATE t2 SET b=26502 WHERE a=17107;\nUPDATE t2 SET b=73953 WHERE a=17108;\nUPDATE t2 SET b=15149 WHERE a=17109;\nUPDATE t2 SET b=74085 WHERE a=17110;\nUPDATE t2 SET b=94637 WHERE a=17111;\nUPDATE t2 SET b=21685 WHERE a=17112;\nUPDATE t2 SET b=27214 WHERE a=17113;\nUPDATE t2 SET b=29901 WHERE a=17114;\nUPDATE t2 SET b=71020 WHERE a=17115;\nUPDATE t2 SET b=59302 WHERE a=17116;\nUPDATE t2 SET b=40460 WHERE a=17117;\nUPDATE t2 SET b=49298 WHERE a=17118;\nUPDATE t2 SET b=46273 WHERE a=17119;\nUPDATE t2 SET b=35963 WHERE a=17120;\nUPDATE t2 SET b=81084 WHERE a=17121;\nUPDATE t2 SET b=77402 WHERE a=17122;\nUPDATE t2 SET b=18355 WHERE a=17123;\nUPDATE t2 SET b=77618 WHERE a=17124;\nUPDATE t2 SET b=76430 WHERE a=17125;\nUPDATE t2 SET b=94417 WHERE a=17126;\nUPDATE t2 SET b=47593 WHERE a=17127;\nUPDATE t2 SET b=78987 WHERE a=17128;\nUPDATE t2 SET b=9827 WHERE a=17129;\nUPDATE t2 SET b=85251 WHERE a=17130;\nUPDATE t2 SET b=59111 WHERE a=17131;\nUPDATE t2 SET b=54701 WHERE a=17132;\nUPDATE t2 SET b=28062 WHERE a=17133;\nUPDATE t2 SET b=38177 WHERE a=17134;\nUPDATE t2 SET b=94121 WHERE a=17135;\nUPDATE t2 SET b=82967 WHERE a=17136;\nUPDATE t2 SET b=4637 WHERE a=17137;\nUPDATE t2 SET b=14215 WHERE a=17138;\nUPDATE t2 SET b=29219 WHERE a=17139;\nUPDATE t2 SET b=32458 WHERE a=17140;\nUPDATE t2 SET b=97969 WHERE a=17141;\nUPDATE t2 SET b=54130 WHERE a=17142;\nUPDATE t2 SET b=61161 WHERE a=17143;\nUPDATE t2 SET b=65736 WHERE a=17144;\nUPDATE t2 SET b=21973 WHERE a=17145;\nUPDATE t2 SET b=67393 WHERE a=17146;\nUPDATE t2 SET b=30018 WHERE a=17147;\nUPDATE t2 SET b=37056 WHERE a=17148;\nUPDATE t2 SET b=80845 WHERE a=17149;\nUPDATE t2 SET b=61300 WHERE a=17150;\nUPDATE t2 SET b=90125 WHERE a=17151;\nUPDATE t2 SET b=66013 WHERE a=17152;\nUPDATE t2 SET b=52379 WHERE a=17153;\nUPDATE t2 SET b=7241 WHERE a=17154;\nUPDATE t2 SET b=76452 WHERE a=17155;\nUPDATE t2 SET b=74592 WHERE a=17156;\nUPDATE t2 SET b=10964 WHERE a=17157;\nUPDATE t2 SET b=34721 WHERE a=17158;\nUPDATE t2 SET b=72094 WHERE a=17159;\nUPDATE t2 SET b=84863 WHERE a=17160;\nUPDATE t2 SET b=72715 WHERE a=17161;\nUPDATE t2 SET b=50693 WHERE a=17162;\nUPDATE t2 SET b=15447 WHERE a=17163;\nUPDATE t2 SET b=51417 WHERE a=17164;\nUPDATE t2 SET b=10281 WHERE a=17165;\nUPDATE t2 SET b=44941 WHERE a=17166;\nUPDATE t2 SET b=51088 WHERE a=17167;\nUPDATE t2 SET b=27356 WHERE a=17168;\nUPDATE t2 SET b=87150 WHERE a=17169;\nUPDATE t2 SET b=44619 WHERE a=17170;\nUPDATE t2 SET b=11430 WHERE a=17171;\nUPDATE t2 SET b=79574 WHERE a=17172;\nUPDATE t2 SET b=90799 WHERE a=17173;\nUPDATE t2 SET b=68738 WHERE a=17174;\nUPDATE t2 SET b=9490 WHERE a=17175;\nUPDATE t2 SET b=16377 WHERE a=17176;\nUPDATE t2 SET b=21130 WHERE a=17177;\nUPDATE t2 SET b=65906 WHERE a=17178;\nUPDATE t2 SET b=2021 WHERE a=17179;\nUPDATE t2 SET b=27632 WHERE a=17180;\nUPDATE t2 SET b=58423 WHERE a=17181;\nUPDATE t2 SET b=36540 WHERE a=17182;\nUPDATE t2 SET b=83687 WHERE a=17183;\nUPDATE t2 SET b=31606 WHERE a=17184;\nUPDATE t2 SET b=18457 WHERE a=17185;\nUPDATE t2 SET b=78925 WHERE a=17186;\nUPDATE t2 SET b=1335 WHERE a=17187;\nUPDATE t2 SET b=17866 WHERE a=17188;\nUPDATE t2 SET b=93602 WHERE a=17189;\nUPDATE t2 SET b=78190 WHERE a=17190;\nUPDATE t2 SET b=73851 WHERE a=17191;\nUPDATE t2 SET b=55555 WHERE a=17192;\nUPDATE t2 SET b=52275 WHERE a=17193;\nUPDATE t2 SET b=62535 WHERE a=17194;\nUPDATE t2 SET b=26477 WHERE a=17195;\nUPDATE t2 SET b=47369 WHERE a=17196;\nUPDATE t2 SET b=88149 WHERE a=17197;\nUPDATE t2 SET b=97500 WHERE a=17198;\nUPDATE t2 SET b=42776 WHERE a=17199;\nUPDATE t2 SET b=1869 WHERE a=17200;\nUPDATE t2 SET b=93283 WHERE a=17201;\nUPDATE t2 SET b=87447 WHERE a=17202;\nUPDATE t2 SET b=50028 WHERE a=17203;\nUPDATE t2 SET b=79674 WHERE a=17204;\nUPDATE t2 SET b=45041 WHERE a=17205;\nUPDATE t2 SET b=46301 WHERE a=17206;\nUPDATE t2 SET b=71728 WHERE a=17207;\nUPDATE t2 SET b=60104 WHERE a=17208;\nUPDATE t2 SET b=66050 WHERE a=17209;\nUPDATE t2 SET b=13111 WHERE a=17210;\nUPDATE t2 SET b=90640 WHERE a=17211;\nUPDATE t2 SET b=30860 WHERE a=17212;\nUPDATE t2 SET b=6749 WHERE a=17213;\nUPDATE t2 SET b=24517 WHERE a=17214;\nUPDATE t2 SET b=51164 WHERE a=17215;\nUPDATE t2 SET b=73726 WHERE a=17216;\nUPDATE t2 SET b=97018 WHERE a=17217;\nUPDATE t2 SET b=42571 WHERE a=17218;\nUPDATE t2 SET b=58329 WHERE a=17219;\nUPDATE t2 SET b=77033 WHERE a=17220;\nUPDATE t2 SET b=95957 WHERE a=17221;\nUPDATE t2 SET b=88990 WHERE a=17222;\nUPDATE t2 SET b=78213 WHERE a=17223;\nUPDATE t2 SET b=31195 WHERE a=17224;\nUPDATE t2 SET b=47176 WHERE a=17225;\nUPDATE t2 SET b=32873 WHERE a=17226;\nUPDATE t2 SET b=46275 WHERE a=17227;\nUPDATE t2 SET b=27211 WHERE a=17228;\nUPDATE t2 SET b=96907 WHERE a=17229;\nUPDATE t2 SET b=55477 WHERE a=17230;\nUPDATE t2 SET b=7583 WHERE a=17231;\nUPDATE t2 SET b=35102 WHERE a=17232;\nUPDATE t2 SET b=61538 WHERE a=17233;\nUPDATE t2 SET b=78723 WHERE a=17234;\nUPDATE t2 SET b=44221 WHERE a=17235;\nUPDATE t2 SET b=83400 WHERE a=17236;\nUPDATE t2 SET b=15597 WHERE a=17237;\nUPDATE t2 SET b=77077 WHERE a=17238;\nUPDATE t2 SET b=25006 WHERE a=17239;\nUPDATE t2 SET b=3217 WHERE a=17240;\nUPDATE t2 SET b=13454 WHERE a=17241;\nUPDATE t2 SET b=11366 WHERE a=17242;\nUPDATE t2 SET b=73738 WHERE a=17243;\nUPDATE t2 SET b=50894 WHERE a=17244;\nUPDATE t2 SET b=32864 WHERE a=17245;\nUPDATE t2 SET b=34710 WHERE a=17246;\nUPDATE t2 SET b=10737 WHERE a=17247;\nUPDATE t2 SET b=52345 WHERE a=17248;\nUPDATE t2 SET b=81521 WHERE a=17249;\nUPDATE t2 SET b=29499 WHERE a=17250;\nUPDATE t2 SET b=79824 WHERE a=17251;\nUPDATE t2 SET b=65976 WHERE a=17252;\nUPDATE t2 SET b=14319 WHERE a=17253;\nUPDATE t2 SET b=72801 WHERE a=17254;\nUPDATE t2 SET b=31717 WHERE a=17255;\nUPDATE t2 SET b=56565 WHERE a=17256;\nUPDATE t2 SET b=39099 WHERE a=17257;\nUPDATE t2 SET b=34286 WHERE a=17258;\nUPDATE t2 SET b=77036 WHERE a=17259;\nUPDATE t2 SET b=42471 WHERE a=17260;\nUPDATE t2 SET b=83023 WHERE a=17261;\nUPDATE t2 SET b=27142 WHERE a=17262;\nUPDATE t2 SET b=32599 WHERE a=17263;\nUPDATE t2 SET b=54530 WHERE a=17264;\nUPDATE t2 SET b=71378 WHERE a=17265;\nUPDATE t2 SET b=88183 WHERE a=17266;\nUPDATE t2 SET b=93714 WHERE a=17267;\nUPDATE t2 SET b=54256 WHERE a=17268;\nUPDATE t2 SET b=71479 WHERE a=17269;\nUPDATE t2 SET b=78222 WHERE a=17270;\nUPDATE t2 SET b=50286 WHERE a=17271;\nUPDATE t2 SET b=26601 WHERE a=17272;\nUPDATE t2 SET b=33700 WHERE a=17273;\nUPDATE t2 SET b=36836 WHERE a=17274;\nUPDATE t2 SET b=9919 WHERE a=17275;\nUPDATE t2 SET b=69674 WHERE a=17276;\nUPDATE t2 SET b=19075 WHERE a=17277;\nUPDATE t2 SET b=68283 WHERE a=17278;\nUPDATE t2 SET b=46529 WHERE a=17279;\nUPDATE t2 SET b=75832 WHERE a=17280;\nUPDATE t2 SET b=33386 WHERE a=17281;\nUPDATE t2 SET b=6776 WHERE a=17282;\nUPDATE t2 SET b=78517 WHERE a=17283;\nUPDATE t2 SET b=58779 WHERE a=17284;\nUPDATE t2 SET b=3996 WHERE a=17285;\nUPDATE t2 SET b=80339 WHERE a=17286;\nUPDATE t2 SET b=46262 WHERE a=17287;\nUPDATE t2 SET b=54853 WHERE a=17288;\nUPDATE t2 SET b=47360 WHERE a=17289;\nUPDATE t2 SET b=72363 WHERE a=17290;\nUPDATE t2 SET b=18114 WHERE a=17291;\nUPDATE t2 SET b=22641 WHERE a=17292;\nUPDATE t2 SET b=58923 WHERE a=17293;\nUPDATE t2 SET b=91852 WHERE a=17294;\nUPDATE t2 SET b=74191 WHERE a=17295;\nUPDATE t2 SET b=65324 WHERE a=17296;\nUPDATE t2 SET b=19509 WHERE a=17297;\nUPDATE t2 SET b=56899 WHERE a=17298;\nUPDATE t2 SET b=93011 WHERE a=17299;\nUPDATE t2 SET b=12934 WHERE a=17300;\nUPDATE t2 SET b=50882 WHERE a=17301;\nUPDATE t2 SET b=79069 WHERE a=17302;\nUPDATE t2 SET b=16152 WHERE a=17303;\nUPDATE t2 SET b=6798 WHERE a=17304;\nUPDATE t2 SET b=86286 WHERE a=17305;\nUPDATE t2 SET b=64921 WHERE a=17306;\nUPDATE t2 SET b=46019 WHERE a=17307;\nUPDATE t2 SET b=65105 WHERE a=17308;\nUPDATE t2 SET b=15463 WHERE a=17309;\nUPDATE t2 SET b=72952 WHERE a=17310;\nUPDATE t2 SET b=56177 WHERE a=17311;\nUPDATE t2 SET b=58724 WHERE a=17312;\nUPDATE t2 SET b=9386 WHERE a=17313;\nUPDATE t2 SET b=11828 WHERE a=17314;\nUPDATE t2 SET b=68743 WHERE a=17315;\nUPDATE t2 SET b=49875 WHERE a=17316;\nUPDATE t2 SET b=6661 WHERE a=17317;\nUPDATE t2 SET b=91041 WHERE a=17318;\nUPDATE t2 SET b=55590 WHERE a=17319;\nUPDATE t2 SET b=16276 WHERE a=17320;\nUPDATE t2 SET b=81186 WHERE a=17321;\nUPDATE t2 SET b=84815 WHERE a=17322;\nUPDATE t2 SET b=42845 WHERE a=17323;\nUPDATE t2 SET b=58162 WHERE a=17324;\nUPDATE t2 SET b=50952 WHERE a=17325;\nUPDATE t2 SET b=75971 WHERE a=17326;\nUPDATE t2 SET b=59797 WHERE a=17327;\nUPDATE t2 SET b=48464 WHERE a=17328;\nUPDATE t2 SET b=92583 WHERE a=17329;\nUPDATE t2 SET b=77693 WHERE a=17330;\nUPDATE t2 SET b=90677 WHERE a=17331;\nUPDATE t2 SET b=2390 WHERE a=17332;\nUPDATE t2 SET b=96179 WHERE a=17333;\nUPDATE t2 SET b=18774 WHERE a=17334;\nUPDATE t2 SET b=49357 WHERE a=17335;\nUPDATE t2 SET b=60556 WHERE a=17336;\nUPDATE t2 SET b=36828 WHERE a=17337;\nUPDATE t2 SET b=21179 WHERE a=17338;\nUPDATE t2 SET b=89971 WHERE a=17339;\nUPDATE t2 SET b=34651 WHERE a=17340;\nUPDATE t2 SET b=10776 WHERE a=17341;\nUPDATE t2 SET b=63043 WHERE a=17342;\nUPDATE t2 SET b=20176 WHERE a=17343;\nUPDATE t2 SET b=96402 WHERE a=17344;\nUPDATE t2 SET b=76489 WHERE a=17345;\nUPDATE t2 SET b=89386 WHERE a=17346;\nUPDATE t2 SET b=90884 WHERE a=17347;\nUPDATE t2 SET b=35905 WHERE a=17348;\nUPDATE t2 SET b=82698 WHERE a=17349;\nUPDATE t2 SET b=43984 WHERE a=17350;\nUPDATE t2 SET b=90243 WHERE a=17351;\nUPDATE t2 SET b=35656 WHERE a=17352;\nUPDATE t2 SET b=76367 WHERE a=17353;\nUPDATE t2 SET b=86970 WHERE a=17354;\nUPDATE t2 SET b=68065 WHERE a=17355;\nUPDATE t2 SET b=31927 WHERE a=17356;\nUPDATE t2 SET b=46739 WHERE a=17357;\nUPDATE t2 SET b=29522 WHERE a=17358;\nUPDATE t2 SET b=82651 WHERE a=17359;\nUPDATE t2 SET b=85497 WHERE a=17360;\nUPDATE t2 SET b=91565 WHERE a=17361;\nUPDATE t2 SET b=8141 WHERE a=17362;\nUPDATE t2 SET b=39288 WHERE a=17363;\nUPDATE t2 SET b=12550 WHERE a=17364;\nUPDATE t2 SET b=3422 WHERE a=17365;\nUPDATE t2 SET b=14389 WHERE a=17366;\nUPDATE t2 SET b=32550 WHERE a=17367;\nUPDATE t2 SET b=82926 WHERE a=17368;\nUPDATE t2 SET b=72384 WHERE a=17369;\nUPDATE t2 SET b=15180 WHERE a=17370;\nUPDATE t2 SET b=50250 WHERE a=17371;\nUPDATE t2 SET b=744 WHERE a=17372;\nUPDATE t2 SET b=96372 WHERE a=17373;\nUPDATE t2 SET b=19910 WHERE a=17374;\nUPDATE t2 SET b=49711 WHERE a=17375;\nUPDATE t2 SET b=486 WHERE a=17376;\nUPDATE t2 SET b=90017 WHERE a=17377;\nUPDATE t2 SET b=17117 WHERE a=17378;\nUPDATE t2 SET b=41474 WHERE a=17379;\nUPDATE t2 SET b=85853 WHERE a=17380;\nUPDATE t2 SET b=93339 WHERE a=17381;\nUPDATE t2 SET b=91435 WHERE a=17382;\nUPDATE t2 SET b=70933 WHERE a=17383;\nUPDATE t2 SET b=57315 WHERE a=17384;\nUPDATE t2 SET b=67940 WHERE a=17385;\nUPDATE t2 SET b=70892 WHERE a=17386;\nUPDATE t2 SET b=10549 WHERE a=17387;\nUPDATE t2 SET b=30151 WHERE a=17388;\nUPDATE t2 SET b=3623 WHERE a=17389;\nUPDATE t2 SET b=25779 WHERE a=17390;\nUPDATE t2 SET b=56104 WHERE a=17391;\nUPDATE t2 SET b=41088 WHERE a=17392;\nUPDATE t2 SET b=5369 WHERE a=17393;\nUPDATE t2 SET b=67360 WHERE a=17394;\nUPDATE t2 SET b=50377 WHERE a=17395;\nUPDATE t2 SET b=78399 WHERE a=17396;\nUPDATE t2 SET b=92192 WHERE a=17397;\nUPDATE t2 SET b=26596 WHERE a=17398;\nUPDATE t2 SET b=10532 WHERE a=17399;\nUPDATE t2 SET b=75249 WHERE a=17400;\nUPDATE t2 SET b=97076 WHERE a=17401;\nUPDATE t2 SET b=90052 WHERE a=17402;\nUPDATE t2 SET b=29379 WHERE a=17403;\nUPDATE t2 SET b=47629 WHERE a=17404;\nUPDATE t2 SET b=90246 WHERE a=17405;\nUPDATE t2 SET b=36829 WHERE a=17406;\nUPDATE t2 SET b=8374 WHERE a=17407;\nUPDATE t2 SET b=18927 WHERE a=17408;\nUPDATE t2 SET b=24053 WHERE a=17409;\nUPDATE t2 SET b=25862 WHERE a=17410;\nUPDATE t2 SET b=70018 WHERE a=17411;\nUPDATE t2 SET b=98796 WHERE a=17412;\nUPDATE t2 SET b=97729 WHERE a=17413;\nUPDATE t2 SET b=73064 WHERE a=17414;\nUPDATE t2 SET b=54441 WHERE a=17415;\nUPDATE t2 SET b=64071 WHERE a=17416;\nUPDATE t2 SET b=75401 WHERE a=17417;\nUPDATE t2 SET b=62467 WHERE a=17418;\nUPDATE t2 SET b=52853 WHERE a=17419;\nUPDATE t2 SET b=22239 WHERE a=17420;\nUPDATE t2 SET b=11128 WHERE a=17421;\nUPDATE t2 SET b=86187 WHERE a=17422;\nUPDATE t2 SET b=84147 WHERE a=17423;\nUPDATE t2 SET b=48932 WHERE a=17424;\nUPDATE t2 SET b=21695 WHERE a=17425;\nUPDATE t2 SET b=94972 WHERE a=17426;\nUPDATE t2 SET b=75501 WHERE a=17427;\nUPDATE t2 SET b=40789 WHERE a=17428;\nUPDATE t2 SET b=23176 WHERE a=17429;\nUPDATE t2 SET b=73711 WHERE a=17430;\nUPDATE t2 SET b=95284 WHERE a=17431;\nUPDATE t2 SET b=40769 WHERE a=17432;\nUPDATE t2 SET b=2000 WHERE a=17433;\nUPDATE t2 SET b=85550 WHERE a=17434;\nUPDATE t2 SET b=61581 WHERE a=17435;\nUPDATE t2 SET b=63541 WHERE a=17436;\nUPDATE t2 SET b=52253 WHERE a=17437;\nUPDATE t2 SET b=21950 WHERE a=17438;\nUPDATE t2 SET b=47170 WHERE a=17439;\nUPDATE t2 SET b=8388 WHERE a=17440;\nUPDATE t2 SET b=12002 WHERE a=17441;\nUPDATE t2 SET b=21143 WHERE a=17442;\nUPDATE t2 SET b=97710 WHERE a=17443;\nUPDATE t2 SET b=41977 WHERE a=17444;\nUPDATE t2 SET b=44406 WHERE a=17445;\nUPDATE t2 SET b=85494 WHERE a=17446;\nUPDATE t2 SET b=41341 WHERE a=17447;\nUPDATE t2 SET b=98279 WHERE a=17448;\nUPDATE t2 SET b=70947 WHERE a=17449;\nUPDATE t2 SET b=68591 WHERE a=17450;\nUPDATE t2 SET b=50672 WHERE a=17451;\nUPDATE t2 SET b=80240 WHERE a=17452;\nUPDATE t2 SET b=10325 WHERE a=17453;\nUPDATE t2 SET b=67746 WHERE a=17454;\nUPDATE t2 SET b=12116 WHERE a=17455;\nUPDATE t2 SET b=22148 WHERE a=17456;\nUPDATE t2 SET b=50798 WHERE a=17457;\nUPDATE t2 SET b=34747 WHERE a=17458;\nUPDATE t2 SET b=37554 WHERE a=17459;\nUPDATE t2 SET b=5944 WHERE a=17460;\nUPDATE t2 SET b=28343 WHERE a=17461;\nUPDATE t2 SET b=23136 WHERE a=17462;\nUPDATE t2 SET b=78314 WHERE a=17463;\nUPDATE t2 SET b=7609 WHERE a=17464;\nUPDATE t2 SET b=20426 WHERE a=17465;\nUPDATE t2 SET b=34820 WHERE a=17466;\nUPDATE t2 SET b=98876 WHERE a=17467;\nUPDATE t2 SET b=42242 WHERE a=17468;\nUPDATE t2 SET b=96273 WHERE a=17469;\nUPDATE t2 SET b=26611 WHERE a=17470;\nUPDATE t2 SET b=23133 WHERE a=17471;\nUPDATE t2 SET b=23554 WHERE a=17472;\nUPDATE t2 SET b=29325 WHERE a=17473;\nUPDATE t2 SET b=56872 WHERE a=17474;\nUPDATE t2 SET b=10732 WHERE a=17475;\nUPDATE t2 SET b=64690 WHERE a=17476;\nUPDATE t2 SET b=47781 WHERE a=17477;\nUPDATE t2 SET b=7467 WHERE a=17478;\nUPDATE t2 SET b=19520 WHERE a=17479;\nUPDATE t2 SET b=89965 WHERE a=17480;\nUPDATE t2 SET b=42334 WHERE a=17481;\nUPDATE t2 SET b=16256 WHERE a=17482;\nUPDATE t2 SET b=68991 WHERE a=17483;\nUPDATE t2 SET b=14584 WHERE a=17484;\nUPDATE t2 SET b=75462 WHERE a=17485;\nUPDATE t2 SET b=74086 WHERE a=17486;\nUPDATE t2 SET b=57569 WHERE a=17487;\nUPDATE t2 SET b=53391 WHERE a=17488;\nUPDATE t2 SET b=27903 WHERE a=17489;\nUPDATE t2 SET b=43494 WHERE a=17490;\nUPDATE t2 SET b=65106 WHERE a=17491;\nUPDATE t2 SET b=20545 WHERE a=17492;\nUPDATE t2 SET b=13379 WHERE a=17493;\nUPDATE t2 SET b=59500 WHERE a=17494;\nUPDATE t2 SET b=52367 WHERE a=17495;\nUPDATE t2 SET b=52252 WHERE a=17496;\nUPDATE t2 SET b=27176 WHERE a=17497;\nUPDATE t2 SET b=28640 WHERE a=17498;\nUPDATE t2 SET b=5010 WHERE a=17499;\nUPDATE t2 SET b=32405 WHERE a=17500;\nUPDATE t2 SET b=76310 WHERE a=17501;\nUPDATE t2 SET b=78324 WHERE a=17502;\nUPDATE t2 SET b=8014 WHERE a=17503;\nUPDATE t2 SET b=48799 WHERE a=17504;\nUPDATE t2 SET b=34608 WHERE a=17505;\nUPDATE t2 SET b=52833 WHERE a=17506;\nUPDATE t2 SET b=95276 WHERE a=17507;\nUPDATE t2 SET b=81462 WHERE a=17508;\nUPDATE t2 SET b=27569 WHERE a=17509;\nUPDATE t2 SET b=70780 WHERE a=17510;\nUPDATE t2 SET b=45157 WHERE a=17511;\nUPDATE t2 SET b=12130 WHERE a=17512;\nUPDATE t2 SET b=70136 WHERE a=17513;\nUPDATE t2 SET b=13813 WHERE a=17514;\nUPDATE t2 SET b=18218 WHERE a=17515;\nUPDATE t2 SET b=89530 WHERE a=17516;\nUPDATE t2 SET b=44092 WHERE a=17517;\nUPDATE t2 SET b=57939 WHERE a=17518;\nUPDATE t2 SET b=99322 WHERE a=17519;\nUPDATE t2 SET b=645 WHERE a=17520;\nUPDATE t2 SET b=73632 WHERE a=17521;\nUPDATE t2 SET b=75504 WHERE a=17522;\nUPDATE t2 SET b=35026 WHERE a=17523;\nUPDATE t2 SET b=38393 WHERE a=17524;\nUPDATE t2 SET b=46993 WHERE a=17525;\nUPDATE t2 SET b=49593 WHERE a=17526;\nUPDATE t2 SET b=83873 WHERE a=17527;\nUPDATE t2 SET b=42139 WHERE a=17528;\nUPDATE t2 SET b=68527 WHERE a=17529;\nUPDATE t2 SET b=91439 WHERE a=17530;\nUPDATE t2 SET b=32773 WHERE a=17531;\nUPDATE t2 SET b=8115 WHERE a=17532;\nUPDATE t2 SET b=65705 WHERE a=17533;\nUPDATE t2 SET b=47416 WHERE a=17534;\nUPDATE t2 SET b=38910 WHERE a=17535;\nUPDATE t2 SET b=67829 WHERE a=17536;\nUPDATE t2 SET b=1131 WHERE a=17537;\nUPDATE t2 SET b=3272 WHERE a=17538;\nUPDATE t2 SET b=53880 WHERE a=17539;\nUPDATE t2 SET b=88559 WHERE a=17540;\nUPDATE t2 SET b=53108 WHERE a=17541;\nUPDATE t2 SET b=41075 WHERE a=17542;\nUPDATE t2 SET b=16541 WHERE a=17543;\nUPDATE t2 SET b=88789 WHERE a=17544;\nUPDATE t2 SET b=47229 WHERE a=17545;\nUPDATE t2 SET b=65054 WHERE a=17546;\nUPDATE t2 SET b=34100 WHERE a=17547;\nUPDATE t2 SET b=55820 WHERE a=17548;\nUPDATE t2 SET b=17564 WHERE a=17549;\nUPDATE t2 SET b=1008 WHERE a=17550;\nUPDATE t2 SET b=98744 WHERE a=17551;\nUPDATE t2 SET b=10085 WHERE a=17552;\nUPDATE t2 SET b=43638 WHERE a=17553;\nUPDATE t2 SET b=44839 WHERE a=17554;\nUPDATE t2 SET b=61357 WHERE a=17555;\nUPDATE t2 SET b=15966 WHERE a=17556;\nUPDATE t2 SET b=54153 WHERE a=17557;\nUPDATE t2 SET b=33545 WHERE a=17558;\nUPDATE t2 SET b=24559 WHERE a=17559;\nUPDATE t2 SET b=8460 WHERE a=17560;\nUPDATE t2 SET b=6218 WHERE a=17561;\nUPDATE t2 SET b=11394 WHERE a=17562;\nUPDATE t2 SET b=73162 WHERE a=17563;\nUPDATE t2 SET b=43386 WHERE a=17564;\nUPDATE t2 SET b=75130 WHERE a=17565;\nUPDATE t2 SET b=12800 WHERE a=17566;\nUPDATE t2 SET b=42225 WHERE a=17567;\nUPDATE t2 SET b=40780 WHERE a=17568;\nUPDATE t2 SET b=3176 WHERE a=17569;\nUPDATE t2 SET b=79872 WHERE a=17570;\nUPDATE t2 SET b=89911 WHERE a=17571;\nUPDATE t2 SET b=43394 WHERE a=17572;\nUPDATE t2 SET b=81617 WHERE a=17573;\nUPDATE t2 SET b=84066 WHERE a=17574;\nUPDATE t2 SET b=90947 WHERE a=17575;\nUPDATE t2 SET b=52643 WHERE a=17576;\nUPDATE t2 SET b=24115 WHERE a=17577;\nUPDATE t2 SET b=16890 WHERE a=17578;\nUPDATE t2 SET b=50484 WHERE a=17579;\nUPDATE t2 SET b=61 WHERE a=17580;\nUPDATE t2 SET b=74404 WHERE a=17581;\nUPDATE t2 SET b=75397 WHERE a=17582;\nUPDATE t2 SET b=50125 WHERE a=17583;\nUPDATE t2 SET b=5456 WHERE a=17584;\nUPDATE t2 SET b=65264 WHERE a=17585;\nUPDATE t2 SET b=3030 WHERE a=17586;\nUPDATE t2 SET b=80088 WHERE a=17587;\nUPDATE t2 SET b=46781 WHERE a=17588;\nUPDATE t2 SET b=52602 WHERE a=17589;\nUPDATE t2 SET b=65137 WHERE a=17590;\nUPDATE t2 SET b=57954 WHERE a=17591;\nUPDATE t2 SET b=14289 WHERE a=17592;\nUPDATE t2 SET b=49166 WHERE a=17593;\nUPDATE t2 SET b=57366 WHERE a=17594;\nUPDATE t2 SET b=91792 WHERE a=17595;\nUPDATE t2 SET b=9961 WHERE a=17596;\nUPDATE t2 SET b=50870 WHERE a=17597;\nUPDATE t2 SET b=15064 WHERE a=17598;\nUPDATE t2 SET b=90522 WHERE a=17599;\nUPDATE t2 SET b=5486 WHERE a=17600;\nUPDATE t2 SET b=85196 WHERE a=17601;\nUPDATE t2 SET b=16081 WHERE a=17602;\nUPDATE t2 SET b=84789 WHERE a=17603;\nUPDATE t2 SET b=42536 WHERE a=17604;\nUPDATE t2 SET b=7305 WHERE a=17605;\nUPDATE t2 SET b=36341 WHERE a=17606;\nUPDATE t2 SET b=74019 WHERE a=17607;\nUPDATE t2 SET b=1465 WHERE a=17608;\nUPDATE t2 SET b=90094 WHERE a=17609;\nUPDATE t2 SET b=43947 WHERE a=17610;\nUPDATE t2 SET b=30027 WHERE a=17611;\nUPDATE t2 SET b=9700 WHERE a=17612;\nUPDATE t2 SET b=58613 WHERE a=17613;\nUPDATE t2 SET b=78799 WHERE a=17614;\nUPDATE t2 SET b=22564 WHERE a=17615;\nUPDATE t2 SET b=23326 WHERE a=17616;\nUPDATE t2 SET b=45402 WHERE a=17617;\nUPDATE t2 SET b=37189 WHERE a=17618;\nUPDATE t2 SET b=66266 WHERE a=17619;\nUPDATE t2 SET b=53557 WHERE a=17620;\nUPDATE t2 SET b=43157 WHERE a=17621;\nUPDATE t2 SET b=23214 WHERE a=17622;\nUPDATE t2 SET b=77545 WHERE a=17623;\nUPDATE t2 SET b=81432 WHERE a=17624;\nUPDATE t2 SET b=21816 WHERE a=17625;\nUPDATE t2 SET b=78154 WHERE a=17626;\nUPDATE t2 SET b=80438 WHERE a=17627;\nUPDATE t2 SET b=21218 WHERE a=17628;\nUPDATE t2 SET b=2679 WHERE a=17629;\nUPDATE t2 SET b=27302 WHERE a=17630;\nUPDATE t2 SET b=93785 WHERE a=17631;\nUPDATE t2 SET b=32782 WHERE a=17632;\nUPDATE t2 SET b=14147 WHERE a=17633;\nUPDATE t2 SET b=62375 WHERE a=17634;\nUPDATE t2 SET b=68133 WHERE a=17635;\nUPDATE t2 SET b=91644 WHERE a=17636;\nUPDATE t2 SET b=13375 WHERE a=17637;\nUPDATE t2 SET b=93967 WHERE a=17638;\nUPDATE t2 SET b=46523 WHERE a=17639;\nUPDATE t2 SET b=76983 WHERE a=17640;\nUPDATE t2 SET b=71597 WHERE a=17641;\nUPDATE t2 SET b=18147 WHERE a=17642;\nUPDATE t2 SET b=87032 WHERE a=17643;\nUPDATE t2 SET b=96056 WHERE a=17644;\nUPDATE t2 SET b=89873 WHERE a=17645;\nUPDATE t2 SET b=83196 WHERE a=17646;\nUPDATE t2 SET b=59202 WHERE a=17647;\nUPDATE t2 SET b=18753 WHERE a=17648;\nUPDATE t2 SET b=39229 WHERE a=17649;\nUPDATE t2 SET b=42336 WHERE a=17650;\nUPDATE t2 SET b=89298 WHERE a=17651;\nUPDATE t2 SET b=43787 WHERE a=17652;\nUPDATE t2 SET b=98150 WHERE a=17653;\nUPDATE t2 SET b=98256 WHERE a=17654;\nUPDATE t2 SET b=26841 WHERE a=17655;\nUPDATE t2 SET b=24355 WHERE a=17656;\nUPDATE t2 SET b=28757 WHERE a=17657;\nUPDATE t2 SET b=11140 WHERE a=17658;\nUPDATE t2 SET b=90134 WHERE a=17659;\nUPDATE t2 SET b=2827 WHERE a=17660;\nUPDATE t2 SET b=2453 WHERE a=17661;\nUPDATE t2 SET b=41030 WHERE a=17662;\nUPDATE t2 SET b=32677 WHERE a=17663;\nUPDATE t2 SET b=46240 WHERE a=17664;\nUPDATE t2 SET b=40648 WHERE a=17665;\nUPDATE t2 SET b=61376 WHERE a=17666;\nUPDATE t2 SET b=52478 WHERE a=17667;\nUPDATE t2 SET b=60585 WHERE a=17668;\nUPDATE t2 SET b=87798 WHERE a=17669;\nUPDATE t2 SET b=9686 WHERE a=17670;\nUPDATE t2 SET b=39274 WHERE a=17671;\nUPDATE t2 SET b=94401 WHERE a=17672;\nUPDATE t2 SET b=28622 WHERE a=17673;\nUPDATE t2 SET b=73164 WHERE a=17674;\nUPDATE t2 SET b=87609 WHERE a=17675;\nUPDATE t2 SET b=14873 WHERE a=17676;\nUPDATE t2 SET b=51501 WHERE a=17677;\nUPDATE t2 SET b=59261 WHERE a=17678;\nUPDATE t2 SET b=82878 WHERE a=17679;\nUPDATE t2 SET b=28771 WHERE a=17680;\nUPDATE t2 SET b=46281 WHERE a=17681;\nUPDATE t2 SET b=43078 WHERE a=17682;\nUPDATE t2 SET b=7778 WHERE a=17683;\nUPDATE t2 SET b=74525 WHERE a=17684;\nUPDATE t2 SET b=95528 WHERE a=17685;\nUPDATE t2 SET b=10146 WHERE a=17686;\nUPDATE t2 SET b=35141 WHERE a=17687;\nUPDATE t2 SET b=80157 WHERE a=17688;\nUPDATE t2 SET b=34667 WHERE a=17689;\nUPDATE t2 SET b=96056 WHERE a=17690;\nUPDATE t2 SET b=81281 WHERE a=17691;\nUPDATE t2 SET b=33658 WHERE a=17692;\nUPDATE t2 SET b=41942 WHERE a=17693;\nUPDATE t2 SET b=63776 WHERE a=17694;\nUPDATE t2 SET b=83937 WHERE a=17695;\nUPDATE t2 SET b=52043 WHERE a=17696;\nUPDATE t2 SET b=44802 WHERE a=17697;\nUPDATE t2 SET b=13992 WHERE a=17698;\nUPDATE t2 SET b=54976 WHERE a=17699;\nUPDATE t2 SET b=61105 WHERE a=17700;\nUPDATE t2 SET b=11791 WHERE a=17701;\nUPDATE t2 SET b=41655 WHERE a=17702;\nUPDATE t2 SET b=82820 WHERE a=17703;\nUPDATE t2 SET b=54796 WHERE a=17704;\nUPDATE t2 SET b=35574 WHERE a=17705;\nUPDATE t2 SET b=28614 WHERE a=17706;\nUPDATE t2 SET b=46262 WHERE a=17707;\nUPDATE t2 SET b=14085 WHERE a=17708;\nUPDATE t2 SET b=17631 WHERE a=17709;\nUPDATE t2 SET b=90486 WHERE a=17710;\nUPDATE t2 SET b=18725 WHERE a=17711;\nUPDATE t2 SET b=79797 WHERE a=17712;\nUPDATE t2 SET b=37212 WHERE a=17713;\nUPDATE t2 SET b=18027 WHERE a=17714;\nUPDATE t2 SET b=53200 WHERE a=17715;\nUPDATE t2 SET b=89395 WHERE a=17716;\nUPDATE t2 SET b=36277 WHERE a=17717;\nUPDATE t2 SET b=87947 WHERE a=17718;\nUPDATE t2 SET b=28035 WHERE a=17719;\nUPDATE t2 SET b=25 WHERE a=17720;\nUPDATE t2 SET b=71298 WHERE a=17721;\nUPDATE t2 SET b=16456 WHERE a=17722;\nUPDATE t2 SET b=4774 WHERE a=17723;\nUPDATE t2 SET b=72417 WHERE a=17724;\nUPDATE t2 SET b=96953 WHERE a=17725;\nUPDATE t2 SET b=54823 WHERE a=17726;\nUPDATE t2 SET b=50402 WHERE a=17727;\nUPDATE t2 SET b=1827 WHERE a=17728;\nUPDATE t2 SET b=91807 WHERE a=17729;\nUPDATE t2 SET b=6801 WHERE a=17730;\nUPDATE t2 SET b=52924 WHERE a=17731;\nUPDATE t2 SET b=41644 WHERE a=17732;\nUPDATE t2 SET b=52564 WHERE a=17733;\nUPDATE t2 SET b=83712 WHERE a=17734;\nUPDATE t2 SET b=64486 WHERE a=17735;\nUPDATE t2 SET b=11792 WHERE a=17736;\nUPDATE t2 SET b=69852 WHERE a=17737;\nUPDATE t2 SET b=35275 WHERE a=17738;\nUPDATE t2 SET b=70791 WHERE a=17739;\nUPDATE t2 SET b=96927 WHERE a=17740;\nUPDATE t2 SET b=44221 WHERE a=17741;\nUPDATE t2 SET b=47160 WHERE a=17742;\nUPDATE t2 SET b=19594 WHERE a=17743;\nUPDATE t2 SET b=84277 WHERE a=17744;\nUPDATE t2 SET b=77937 WHERE a=17745;\nUPDATE t2 SET b=79214 WHERE a=17746;\nUPDATE t2 SET b=20262 WHERE a=17747;\nUPDATE t2 SET b=66301 WHERE a=17748;\nUPDATE t2 SET b=31124 WHERE a=17749;\nUPDATE t2 SET b=34578 WHERE a=17750;\nUPDATE t2 SET b=7977 WHERE a=17751;\nUPDATE t2 SET b=43968 WHERE a=17752;\nUPDATE t2 SET b=87585 WHERE a=17753;\nUPDATE t2 SET b=89215 WHERE a=17754;\nUPDATE t2 SET b=35601 WHERE a=17755;\nUPDATE t2 SET b=58490 WHERE a=17756;\nUPDATE t2 SET b=47360 WHERE a=17757;\nUPDATE t2 SET b=49348 WHERE a=17758;\nUPDATE t2 SET b=33563 WHERE a=17759;\nUPDATE t2 SET b=6123 WHERE a=17760;\nUPDATE t2 SET b=93873 WHERE a=17761;\nUPDATE t2 SET b=66281 WHERE a=17762;\nUPDATE t2 SET b=80330 WHERE a=17763;\nUPDATE t2 SET b=90512 WHERE a=17764;\nUPDATE t2 SET b=71581 WHERE a=17765;\nUPDATE t2 SET b=92174 WHERE a=17766;\nUPDATE t2 SET b=88986 WHERE a=17767;\nUPDATE t2 SET b=48992 WHERE a=17768;\nUPDATE t2 SET b=87516 WHERE a=17769;\nUPDATE t2 SET b=16556 WHERE a=17770;\nUPDATE t2 SET b=8648 WHERE a=17771;\nUPDATE t2 SET b=46493 WHERE a=17772;\nUPDATE t2 SET b=98528 WHERE a=17773;\nUPDATE t2 SET b=83087 WHERE a=17774;\nUPDATE t2 SET b=58256 WHERE a=17775;\nUPDATE t2 SET b=80362 WHERE a=17776;\nUPDATE t2 SET b=1539 WHERE a=17777;\nUPDATE t2 SET b=31818 WHERE a=17778;\nUPDATE t2 SET b=54060 WHERE a=17779;\nUPDATE t2 SET b=82931 WHERE a=17780;\nUPDATE t2 SET b=67256 WHERE a=17781;\nUPDATE t2 SET b=966 WHERE a=17782;\nUPDATE t2 SET b=71067 WHERE a=17783;\nUPDATE t2 SET b=19241 WHERE a=17784;\nUPDATE t2 SET b=92880 WHERE a=17785;\nUPDATE t2 SET b=43054 WHERE a=17786;\nUPDATE t2 SET b=25672 WHERE a=17787;\nUPDATE t2 SET b=8783 WHERE a=17788;\nUPDATE t2 SET b=26135 WHERE a=17789;\nUPDATE t2 SET b=61300 WHERE a=17790;\nUPDATE t2 SET b=71409 WHERE a=17791;\nUPDATE t2 SET b=483 WHERE a=17792;\nUPDATE t2 SET b=23044 WHERE a=17793;\nUPDATE t2 SET b=48864 WHERE a=17794;\nUPDATE t2 SET b=20342 WHERE a=17795;\nUPDATE t2 SET b=56130 WHERE a=17796;\nUPDATE t2 SET b=99072 WHERE a=17797;\nUPDATE t2 SET b=18455 WHERE a=17798;\nUPDATE t2 SET b=17752 WHERE a=17799;\nUPDATE t2 SET b=40335 WHERE a=17800;\nUPDATE t2 SET b=543 WHERE a=17801;\nUPDATE t2 SET b=96030 WHERE a=17802;\nUPDATE t2 SET b=85747 WHERE a=17803;\nUPDATE t2 SET b=15395 WHERE a=17804;\nUPDATE t2 SET b=23045 WHERE a=17805;\nUPDATE t2 SET b=66940 WHERE a=17806;\nUPDATE t2 SET b=44152 WHERE a=17807;\nUPDATE t2 SET b=71412 WHERE a=17808;\nUPDATE t2 SET b=52227 WHERE a=17809;\nUPDATE t2 SET b=55760 WHERE a=17810;\nUPDATE t2 SET b=81182 WHERE a=17811;\nUPDATE t2 SET b=71 WHERE a=17812;\nUPDATE t2 SET b=47077 WHERE a=17813;\nUPDATE t2 SET b=1468 WHERE a=17814;\nUPDATE t2 SET b=22888 WHERE a=17815;\nUPDATE t2 SET b=95593 WHERE a=17816;\nUPDATE t2 SET b=24263 WHERE a=17817;\nUPDATE t2 SET b=24533 WHERE a=17818;\nUPDATE t2 SET b=35355 WHERE a=17819;\nUPDATE t2 SET b=68422 WHERE a=17820;\nUPDATE t2 SET b=46946 WHERE a=17821;\nUPDATE t2 SET b=19663 WHERE a=17822;\nUPDATE t2 SET b=1428 WHERE a=17823;\nUPDATE t2 SET b=26645 WHERE a=17824;\nUPDATE t2 SET b=78292 WHERE a=17825;\nUPDATE t2 SET b=30033 WHERE a=17826;\nUPDATE t2 SET b=32285 WHERE a=17827;\nUPDATE t2 SET b=72538 WHERE a=17828;\nUPDATE t2 SET b=61891 WHERE a=17829;\nUPDATE t2 SET b=78426 WHERE a=17830;\nUPDATE t2 SET b=24601 WHERE a=17831;\nUPDATE t2 SET b=51673 WHERE a=17832;\nUPDATE t2 SET b=83339 WHERE a=17833;\nUPDATE t2 SET b=10618 WHERE a=17834;\nUPDATE t2 SET b=23785 WHERE a=17835;\nUPDATE t2 SET b=66867 WHERE a=17836;\nUPDATE t2 SET b=44142 WHERE a=17837;\nUPDATE t2 SET b=10870 WHERE a=17838;\nUPDATE t2 SET b=91042 WHERE a=17839;\nUPDATE t2 SET b=13797 WHERE a=17840;\nUPDATE t2 SET b=62988 WHERE a=17841;\nUPDATE t2 SET b=52356 WHERE a=17842;\nUPDATE t2 SET b=39793 WHERE a=17843;\nUPDATE t2 SET b=3257 WHERE a=17844;\nUPDATE t2 SET b=74848 WHERE a=17845;\nUPDATE t2 SET b=76764 WHERE a=17846;\nUPDATE t2 SET b=38238 WHERE a=17847;\nUPDATE t2 SET b=8490 WHERE a=17848;\nUPDATE t2 SET b=8319 WHERE a=17849;\nUPDATE t2 SET b=56310 WHERE a=17850;\nUPDATE t2 SET b=12392 WHERE a=17851;\nUPDATE t2 SET b=24253 WHERE a=17852;\nUPDATE t2 SET b=65717 WHERE a=17853;\nUPDATE t2 SET b=15317 WHERE a=17854;\nUPDATE t2 SET b=51343 WHERE a=17855;\nUPDATE t2 SET b=94469 WHERE a=17856;\nUPDATE t2 SET b=37560 WHERE a=17857;\nUPDATE t2 SET b=34606 WHERE a=17858;\nUPDATE t2 SET b=25263 WHERE a=17859;\nUPDATE t2 SET b=70453 WHERE a=17860;\nUPDATE t2 SET b=83322 WHERE a=17861;\nUPDATE t2 SET b=67468 WHERE a=17862;\nUPDATE t2 SET b=61075 WHERE a=17863;\nUPDATE t2 SET b=14252 WHERE a=17864;\nUPDATE t2 SET b=38089 WHERE a=17865;\nUPDATE t2 SET b=36729 WHERE a=17866;\nUPDATE t2 SET b=76349 WHERE a=17867;\nUPDATE t2 SET b=81735 WHERE a=17868;\nUPDATE t2 SET b=51585 WHERE a=17869;\nUPDATE t2 SET b=67035 WHERE a=17870;\nUPDATE t2 SET b=58229 WHERE a=17871;\nUPDATE t2 SET b=43847 WHERE a=17872;\nUPDATE t2 SET b=62790 WHERE a=17873;\nUPDATE t2 SET b=69223 WHERE a=17874;\nUPDATE t2 SET b=78223 WHERE a=17875;\nUPDATE t2 SET b=34229 WHERE a=17876;\nUPDATE t2 SET b=48303 WHERE a=17877;\nUPDATE t2 SET b=73471 WHERE a=17878;\nUPDATE t2 SET b=98884 WHERE a=17879;\nUPDATE t2 SET b=87507 WHERE a=17880;\nUPDATE t2 SET b=72091 WHERE a=17881;\nUPDATE t2 SET b=62403 WHERE a=17882;\nUPDATE t2 SET b=6415 WHERE a=17883;\nUPDATE t2 SET b=40433 WHERE a=17884;\nUPDATE t2 SET b=10246 WHERE a=17885;\nUPDATE t2 SET b=28753 WHERE a=17886;\nUPDATE t2 SET b=20785 WHERE a=17887;\nUPDATE t2 SET b=70680 WHERE a=17888;\nUPDATE t2 SET b=27507 WHERE a=17889;\nUPDATE t2 SET b=26154 WHERE a=17890;\nUPDATE t2 SET b=55535 WHERE a=17891;\nUPDATE t2 SET b=71302 WHERE a=17892;\nUPDATE t2 SET b=95949 WHERE a=17893;\nUPDATE t2 SET b=35155 WHERE a=17894;\nUPDATE t2 SET b=3262 WHERE a=17895;\nUPDATE t2 SET b=15878 WHERE a=17896;\nUPDATE t2 SET b=92945 WHERE a=17897;\nUPDATE t2 SET b=15434 WHERE a=17898;\nUPDATE t2 SET b=72904 WHERE a=17899;\nUPDATE t2 SET b=31459 WHERE a=17900;\nUPDATE t2 SET b=55281 WHERE a=17901;\nUPDATE t2 SET b=36863 WHERE a=17902;\nUPDATE t2 SET b=17348 WHERE a=17903;\nUPDATE t2 SET b=4520 WHERE a=17904;\nUPDATE t2 SET b=96424 WHERE a=17905;\nUPDATE t2 SET b=96427 WHERE a=17906;\nUPDATE t2 SET b=99214 WHERE a=17907;\nUPDATE t2 SET b=31001 WHERE a=17908;\nUPDATE t2 SET b=493 WHERE a=17909;\nUPDATE t2 SET b=6070 WHERE a=17910;\nUPDATE t2 SET b=30049 WHERE a=17911;\nUPDATE t2 SET b=96753 WHERE a=17912;\nUPDATE t2 SET b=27752 WHERE a=17913;\nUPDATE t2 SET b=50046 WHERE a=17914;\nUPDATE t2 SET b=77363 WHERE a=17915;\nUPDATE t2 SET b=87874 WHERE a=17916;\nUPDATE t2 SET b=34805 WHERE a=17917;\nUPDATE t2 SET b=66848 WHERE a=17918;\nUPDATE t2 SET b=79861 WHERE a=17919;\nUPDATE t2 SET b=82069 WHERE a=17920;\nUPDATE t2 SET b=51328 WHERE a=17921;\nUPDATE t2 SET b=28484 WHERE a=17922;\nUPDATE t2 SET b=60109 WHERE a=17923;\nUPDATE t2 SET b=23839 WHERE a=17924;\nUPDATE t2 SET b=52678 WHERE a=17925;\nUPDATE t2 SET b=34687 WHERE a=17926;\nUPDATE t2 SET b=90962 WHERE a=17927;\nUPDATE t2 SET b=37174 WHERE a=17928;\nUPDATE t2 SET b=45721 WHERE a=17929;\nUPDATE t2 SET b=87846 WHERE a=17930;\nUPDATE t2 SET b=44744 WHERE a=17931;\nUPDATE t2 SET b=15706 WHERE a=17932;\nUPDATE t2 SET b=31966 WHERE a=17933;\nUPDATE t2 SET b=78597 WHERE a=17934;\nUPDATE t2 SET b=7967 WHERE a=17935;\nUPDATE t2 SET b=19291 WHERE a=17936;\nUPDATE t2 SET b=61863 WHERE a=17937;\nUPDATE t2 SET b=65590 WHERE a=17938;\nUPDATE t2 SET b=91891 WHERE a=17939;\nUPDATE t2 SET b=64537 WHERE a=17940;\nUPDATE t2 SET b=73873 WHERE a=17941;\nUPDATE t2 SET b=49932 WHERE a=17942;\nUPDATE t2 SET b=48660 WHERE a=17943;\nUPDATE t2 SET b=45426 WHERE a=17944;\nUPDATE t2 SET b=55262 WHERE a=17945;\nUPDATE t2 SET b=26876 WHERE a=17946;\nUPDATE t2 SET b=76891 WHERE a=17947;\nUPDATE t2 SET b=4624 WHERE a=17948;\nUPDATE t2 SET b=17539 WHERE a=17949;\nUPDATE t2 SET b=33213 WHERE a=17950;\nUPDATE t2 SET b=35061 WHERE a=17951;\nUPDATE t2 SET b=79587 WHERE a=17952;\nUPDATE t2 SET b=57112 WHERE a=17953;\nUPDATE t2 SET b=93731 WHERE a=17954;\nUPDATE t2 SET b=42100 WHERE a=17955;\nUPDATE t2 SET b=86778 WHERE a=17956;\nUPDATE t2 SET b=80669 WHERE a=17957;\nUPDATE t2 SET b=14531 WHERE a=17958;\nUPDATE t2 SET b=76757 WHERE a=17959;\nUPDATE t2 SET b=85168 WHERE a=17960;\nUPDATE t2 SET b=52044 WHERE a=17961;\nUPDATE t2 SET b=39789 WHERE a=17962;\nUPDATE t2 SET b=73008 WHERE a=17963;\nUPDATE t2 SET b=12869 WHERE a=17964;\nUPDATE t2 SET b=43045 WHERE a=17965;\nUPDATE t2 SET b=1760 WHERE a=17966;\nUPDATE t2 SET b=85963 WHERE a=17967;\nUPDATE t2 SET b=14038 WHERE a=17968;\nUPDATE t2 SET b=59979 WHERE a=17969;\nUPDATE t2 SET b=96659 WHERE a=17970;\nUPDATE t2 SET b=45597 WHERE a=17971;\nUPDATE t2 SET b=82153 WHERE a=17972;\nUPDATE t2 SET b=88147 WHERE a=17973;\nUPDATE t2 SET b=26299 WHERE a=17974;\nUPDATE t2 SET b=11233 WHERE a=17975;\nUPDATE t2 SET b=13180 WHERE a=17976;\nUPDATE t2 SET b=8447 WHERE a=17977;\nUPDATE t2 SET b=83874 WHERE a=17978;\nUPDATE t2 SET b=52276 WHERE a=17979;\nUPDATE t2 SET b=24995 WHERE a=17980;\nUPDATE t2 SET b=10688 WHERE a=17981;\nUPDATE t2 SET b=4965 WHERE a=17982;\nUPDATE t2 SET b=9859 WHERE a=17983;\nUPDATE t2 SET b=80666 WHERE a=17984;\nUPDATE t2 SET b=14718 WHERE a=17985;\nUPDATE t2 SET b=42288 WHERE a=17986;\nUPDATE t2 SET b=93828 WHERE a=17987;\nUPDATE t2 SET b=34618 WHERE a=17988;\nUPDATE t2 SET b=64260 WHERE a=17989;\nUPDATE t2 SET b=36752 WHERE a=17990;\nUPDATE t2 SET b=15152 WHERE a=17991;\nUPDATE t2 SET b=63294 WHERE a=17992;\nUPDATE t2 SET b=11837 WHERE a=17993;\nUPDATE t2 SET b=9830 WHERE a=17994;\nUPDATE t2 SET b=58628 WHERE a=17995;\nUPDATE t2 SET b=34746 WHERE a=17996;\nUPDATE t2 SET b=25093 WHERE a=17997;\nUPDATE t2 SET b=67091 WHERE a=17998;\nUPDATE t2 SET b=4729 WHERE a=17999;\nUPDATE t2 SET b=53523 WHERE a=18000;\nUPDATE t2 SET b=94537 WHERE a=18001;\nUPDATE t2 SET b=99238 WHERE a=18002;\nUPDATE t2 SET b=40209 WHERE a=18003;\nUPDATE t2 SET b=21492 WHERE a=18004;\nUPDATE t2 SET b=84814 WHERE a=18005;\nUPDATE t2 SET b=86578 WHERE a=18006;\nUPDATE t2 SET b=79579 WHERE a=18007;\nUPDATE t2 SET b=27679 WHERE a=18008;\nUPDATE t2 SET b=42420 WHERE a=18009;\nUPDATE t2 SET b=55724 WHERE a=18010;\nUPDATE t2 SET b=4837 WHERE a=18011;\nUPDATE t2 SET b=67329 WHERE a=18012;\nUPDATE t2 SET b=17419 WHERE a=18013;\nUPDATE t2 SET b=59492 WHERE a=18014;\nUPDATE t2 SET b=50208 WHERE a=18015;\nUPDATE t2 SET b=1214 WHERE a=18016;\nUPDATE t2 SET b=99705 WHERE a=18017;\nUPDATE t2 SET b=54431 WHERE a=18018;\nUPDATE t2 SET b=5722 WHERE a=18019;\nUPDATE t2 SET b=51052 WHERE a=18020;\nUPDATE t2 SET b=64362 WHERE a=18021;\nUPDATE t2 SET b=5159 WHERE a=18022;\nUPDATE t2 SET b=65666 WHERE a=18023;\nUPDATE t2 SET b=85160 WHERE a=18024;\nUPDATE t2 SET b=41852 WHERE a=18025;\nUPDATE t2 SET b=48922 WHERE a=18026;\nUPDATE t2 SET b=8316 WHERE a=18027;\nUPDATE t2 SET b=25150 WHERE a=18028;\nUPDATE t2 SET b=13018 WHERE a=18029;\nUPDATE t2 SET b=56757 WHERE a=18030;\nUPDATE t2 SET b=22790 WHERE a=18031;\nUPDATE t2 SET b=95286 WHERE a=18032;\nUPDATE t2 SET b=74927 WHERE a=18033;\nUPDATE t2 SET b=36518 WHERE a=18034;\nUPDATE t2 SET b=61881 WHERE a=18035;\nUPDATE t2 SET b=69523 WHERE a=18036;\nUPDATE t2 SET b=3345 WHERE a=18037;\nUPDATE t2 SET b=99201 WHERE a=18038;\nUPDATE t2 SET b=25094 WHERE a=18039;\nUPDATE t2 SET b=10916 WHERE a=18040;\nUPDATE t2 SET b=5547 WHERE a=18041;\nUPDATE t2 SET b=37268 WHERE a=18042;\nUPDATE t2 SET b=45115 WHERE a=18043;\nUPDATE t2 SET b=80256 WHERE a=18044;\nUPDATE t2 SET b=10317 WHERE a=18045;\nUPDATE t2 SET b=11061 WHERE a=18046;\nUPDATE t2 SET b=40691 WHERE a=18047;\nUPDATE t2 SET b=22544 WHERE a=18048;\nUPDATE t2 SET b=31092 WHERE a=18049;\nUPDATE t2 SET b=18501 WHERE a=18050;\nUPDATE t2 SET b=79527 WHERE a=18051;\nUPDATE t2 SET b=59197 WHERE a=18052;\nUPDATE t2 SET b=61481 WHERE a=18053;\nUPDATE t2 SET b=46871 WHERE a=18054;\nUPDATE t2 SET b=64941 WHERE a=18055;\nUPDATE t2 SET b=81488 WHERE a=18056;\nUPDATE t2 SET b=72218 WHERE a=18057;\nUPDATE t2 SET b=39867 WHERE a=18058;\nUPDATE t2 SET b=68915 WHERE a=18059;\nUPDATE t2 SET b=58630 WHERE a=18060;\nUPDATE t2 SET b=79856 WHERE a=18061;\nUPDATE t2 SET b=54582 WHERE a=18062;\nUPDATE t2 SET b=50843 WHERE a=18063;\nUPDATE t2 SET b=45578 WHERE a=18064;\nUPDATE t2 SET b=83842 WHERE a=18065;\nUPDATE t2 SET b=6360 WHERE a=18066;\nUPDATE t2 SET b=50259 WHERE a=18067;\nUPDATE t2 SET b=20512 WHERE a=18068;\nUPDATE t2 SET b=50339 WHERE a=18069;\nUPDATE t2 SET b=21116 WHERE a=18070;\nUPDATE t2 SET b=28041 WHERE a=18071;\nUPDATE t2 SET b=70600 WHERE a=18072;\nUPDATE t2 SET b=68846 WHERE a=18073;\nUPDATE t2 SET b=15152 WHERE a=18074;\nUPDATE t2 SET b=37349 WHERE a=18075;\nUPDATE t2 SET b=46174 WHERE a=18076;\nUPDATE t2 SET b=20194 WHERE a=18077;\nUPDATE t2 SET b=17625 WHERE a=18078;\nUPDATE t2 SET b=51394 WHERE a=18079;\nUPDATE t2 SET b=15387 WHERE a=18080;\nUPDATE t2 SET b=77054 WHERE a=18081;\nUPDATE t2 SET b=37868 WHERE a=18082;\nUPDATE t2 SET b=5395 WHERE a=18083;\nUPDATE t2 SET b=45308 WHERE a=18084;\nUPDATE t2 SET b=12297 WHERE a=18085;\nUPDATE t2 SET b=77525 WHERE a=18086;\nUPDATE t2 SET b=41960 WHERE a=18087;\nUPDATE t2 SET b=26305 WHERE a=18088;\nUPDATE t2 SET b=30611 WHERE a=18089;\nUPDATE t2 SET b=35362 WHERE a=18090;\nUPDATE t2 SET b=74420 WHERE a=18091;\nUPDATE t2 SET b=56935 WHERE a=18092;\nUPDATE t2 SET b=91739 WHERE a=18093;\nUPDATE t2 SET b=64266 WHERE a=18094;\nUPDATE t2 SET b=22669 WHERE a=18095;\nUPDATE t2 SET b=33895 WHERE a=18096;\nUPDATE t2 SET b=22155 WHERE a=18097;\nUPDATE t2 SET b=62485 WHERE a=18098;\nUPDATE t2 SET b=27256 WHERE a=18099;\nUPDATE t2 SET b=1905 WHERE a=18100;\nUPDATE t2 SET b=46038 WHERE a=18101;\nUPDATE t2 SET b=40149 WHERE a=18102;\nUPDATE t2 SET b=16587 WHERE a=18103;\nUPDATE t2 SET b=72318 WHERE a=18104;\nUPDATE t2 SET b=96550 WHERE a=18105;\nUPDATE t2 SET b=15657 WHERE a=18106;\nUPDATE t2 SET b=14375 WHERE a=18107;\nUPDATE t2 SET b=74128 WHERE a=18108;\nUPDATE t2 SET b=43744 WHERE a=18109;\nUPDATE t2 SET b=39402 WHERE a=18110;\nUPDATE t2 SET b=783 WHERE a=18111;\nUPDATE t2 SET b=92337 WHERE a=18112;\nUPDATE t2 SET b=37733 WHERE a=18113;\nUPDATE t2 SET b=88230 WHERE a=18114;\nUPDATE t2 SET b=81319 WHERE a=18115;\nUPDATE t2 SET b=5195 WHERE a=18116;\nUPDATE t2 SET b=16122 WHERE a=18117;\nUPDATE t2 SET b=94337 WHERE a=18118;\nUPDATE t2 SET b=60633 WHERE a=18119;\nUPDATE t2 SET b=89454 WHERE a=18120;\nUPDATE t2 SET b=9466 WHERE a=18121;\nUPDATE t2 SET b=85130 WHERE a=18122;\nUPDATE t2 SET b=33162 WHERE a=18123;\nUPDATE t2 SET b=53465 WHERE a=18124;\nUPDATE t2 SET b=29364 WHERE a=18125;\nUPDATE t2 SET b=39981 WHERE a=18126;\nUPDATE t2 SET b=37280 WHERE a=18127;\nUPDATE t2 SET b=24125 WHERE a=18128;\nUPDATE t2 SET b=26679 WHERE a=18129;\nUPDATE t2 SET b=77858 WHERE a=18130;\nUPDATE t2 SET b=44518 WHERE a=18131;\nUPDATE t2 SET b=3212 WHERE a=18132;\nUPDATE t2 SET b=52985 WHERE a=18133;\nUPDATE t2 SET b=75672 WHERE a=18134;\nUPDATE t2 SET b=5993 WHERE a=18135;\nUPDATE t2 SET b=69147 WHERE a=18136;\nUPDATE t2 SET b=74097 WHERE a=18137;\nUPDATE t2 SET b=87048 WHERE a=18138;\nUPDATE t2 SET b=79440 WHERE a=18139;\nUPDATE t2 SET b=97925 WHERE a=18140;\nUPDATE t2 SET b=80793 WHERE a=18141;\nUPDATE t2 SET b=3300 WHERE a=18142;\nUPDATE t2 SET b=71156 WHERE a=18143;\nUPDATE t2 SET b=77533 WHERE a=18144;\nUPDATE t2 SET b=29656 WHERE a=18145;\nUPDATE t2 SET b=13888 WHERE a=18146;\nUPDATE t2 SET b=77772 WHERE a=18147;\nUPDATE t2 SET b=62150 WHERE a=18148;\nUPDATE t2 SET b=66609 WHERE a=18149;\nUPDATE t2 SET b=25095 WHERE a=18150;\nUPDATE t2 SET b=56023 WHERE a=18151;\nUPDATE t2 SET b=93262 WHERE a=18152;\nUPDATE t2 SET b=73612 WHERE a=18153;\nUPDATE t2 SET b=1103 WHERE a=18154;\nUPDATE t2 SET b=5471 WHERE a=18155;\nUPDATE t2 SET b=2129 WHERE a=18156;\nUPDATE t2 SET b=92371 WHERE a=18157;\nUPDATE t2 SET b=88386 WHERE a=18158;\nUPDATE t2 SET b=70092 WHERE a=18159;\nUPDATE t2 SET b=97481 WHERE a=18160;\nUPDATE t2 SET b=29564 WHERE a=18161;\nUPDATE t2 SET b=1995 WHERE a=18162;\nUPDATE t2 SET b=97310 WHERE a=18163;\nUPDATE t2 SET b=1050 WHERE a=18164;\nUPDATE t2 SET b=66986 WHERE a=18165;\nUPDATE t2 SET b=49145 WHERE a=18166;\nUPDATE t2 SET b=51726 WHERE a=18167;\nUPDATE t2 SET b=37127 WHERE a=18168;\nUPDATE t2 SET b=5140 WHERE a=18169;\nUPDATE t2 SET b=89433 WHERE a=18170;\nUPDATE t2 SET b=91035 WHERE a=18171;\nUPDATE t2 SET b=8279 WHERE a=18172;\nUPDATE t2 SET b=93286 WHERE a=18173;\nUPDATE t2 SET b=72504 WHERE a=18174;\nUPDATE t2 SET b=63005 WHERE a=18175;\nUPDATE t2 SET b=9827 WHERE a=18176;\nUPDATE t2 SET b=92725 WHERE a=18177;\nUPDATE t2 SET b=60150 WHERE a=18178;\nUPDATE t2 SET b=98522 WHERE a=18179;\nUPDATE t2 SET b=6787 WHERE a=18180;\nUPDATE t2 SET b=52965 WHERE a=18181;\nUPDATE t2 SET b=80348 WHERE a=18182;\nUPDATE t2 SET b=81240 WHERE a=18183;\nUPDATE t2 SET b=49463 WHERE a=18184;\nUPDATE t2 SET b=31967 WHERE a=18185;\nUPDATE t2 SET b=30190 WHERE a=18186;\nUPDATE t2 SET b=42464 WHERE a=18187;\nUPDATE t2 SET b=85448 WHERE a=18188;\nUPDATE t2 SET b=1449 WHERE a=18189;\nUPDATE t2 SET b=37918 WHERE a=18190;\nUPDATE t2 SET b=43595 WHERE a=18191;\nUPDATE t2 SET b=62409 WHERE a=18192;\nUPDATE t2 SET b=35672 WHERE a=18193;\nUPDATE t2 SET b=24242 WHERE a=18194;\nUPDATE t2 SET b=13133 WHERE a=18195;\nUPDATE t2 SET b=70445 WHERE a=18196;\nUPDATE t2 SET b=10785 WHERE a=18197;\nUPDATE t2 SET b=44031 WHERE a=18198;\nUPDATE t2 SET b=93474 WHERE a=18199;\nUPDATE t2 SET b=18348 WHERE a=18200;\nUPDATE t2 SET b=65622 WHERE a=18201;\nUPDATE t2 SET b=87321 WHERE a=18202;\nUPDATE t2 SET b=11532 WHERE a=18203;\nUPDATE t2 SET b=99397 WHERE a=18204;\nUPDATE t2 SET b=15257 WHERE a=18205;\nUPDATE t2 SET b=79239 WHERE a=18206;\nUPDATE t2 SET b=17140 WHERE a=18207;\nUPDATE t2 SET b=1426 WHERE a=18208;\nUPDATE t2 SET b=56282 WHERE a=18209;\nUPDATE t2 SET b=63284 WHERE a=18210;\nUPDATE t2 SET b=80624 WHERE a=18211;\nUPDATE t2 SET b=56224 WHERE a=18212;\nUPDATE t2 SET b=3596 WHERE a=18213;\nUPDATE t2 SET b=73674 WHERE a=18214;\nUPDATE t2 SET b=89427 WHERE a=18215;\nUPDATE t2 SET b=78031 WHERE a=18216;\nUPDATE t2 SET b=49708 WHERE a=18217;\nUPDATE t2 SET b=50526 WHERE a=18218;\nUPDATE t2 SET b=78123 WHERE a=18219;\nUPDATE t2 SET b=76467 WHERE a=18220;\nUPDATE t2 SET b=38298 WHERE a=18221;\nUPDATE t2 SET b=92008 WHERE a=18222;\nUPDATE t2 SET b=58248 WHERE a=18223;\nUPDATE t2 SET b=33082 WHERE a=18224;\nUPDATE t2 SET b=66354 WHERE a=18225;\nUPDATE t2 SET b=25449 WHERE a=18226;\nUPDATE t2 SET b=70173 WHERE a=18227;\nUPDATE t2 SET b=66631 WHERE a=18228;\nUPDATE t2 SET b=46987 WHERE a=18229;\nUPDATE t2 SET b=46885 WHERE a=18230;\nUPDATE t2 SET b=71799 WHERE a=18231;\nUPDATE t2 SET b=74645 WHERE a=18232;\nUPDATE t2 SET b=6942 WHERE a=18233;\nUPDATE t2 SET b=98076 WHERE a=18234;\nUPDATE t2 SET b=45776 WHERE a=18235;\nUPDATE t2 SET b=8359 WHERE a=18236;\nUPDATE t2 SET b=67262 WHERE a=18237;\nUPDATE t2 SET b=1730 WHERE a=18238;\nUPDATE t2 SET b=5358 WHERE a=18239;\nUPDATE t2 SET b=11999 WHERE a=18240;\nUPDATE t2 SET b=17913 WHERE a=18241;\nUPDATE t2 SET b=3376 WHERE a=18242;\nUPDATE t2 SET b=21590 WHERE a=18243;\nUPDATE t2 SET b=37183 WHERE a=18244;\nUPDATE t2 SET b=55786 WHERE a=18245;\nUPDATE t2 SET b=58975 WHERE a=18246;\nUPDATE t2 SET b=48568 WHERE a=18247;\nUPDATE t2 SET b=65763 WHERE a=18248;\nUPDATE t2 SET b=17108 WHERE a=18249;\nUPDATE t2 SET b=48370 WHERE a=18250;\nUPDATE t2 SET b=72817 WHERE a=18251;\nUPDATE t2 SET b=39644 WHERE a=18252;\nUPDATE t2 SET b=69885 WHERE a=18253;\nUPDATE t2 SET b=99731 WHERE a=18254;\nUPDATE t2 SET b=93010 WHERE a=18255;\nUPDATE t2 SET b=60695 WHERE a=18256;\nUPDATE t2 SET b=14328 WHERE a=18257;\nUPDATE t2 SET b=30389 WHERE a=18258;\nUPDATE t2 SET b=46107 WHERE a=18259;\nUPDATE t2 SET b=23947 WHERE a=18260;\nUPDATE t2 SET b=50918 WHERE a=18261;\nUPDATE t2 SET b=76276 WHERE a=18262;\nUPDATE t2 SET b=96533 WHERE a=18263;\nUPDATE t2 SET b=42290 WHERE a=18264;\nUPDATE t2 SET b=40842 WHERE a=18265;\nUPDATE t2 SET b=21642 WHERE a=18266;\nUPDATE t2 SET b=72234 WHERE a=18267;\nUPDATE t2 SET b=18093 WHERE a=18268;\nUPDATE t2 SET b=98503 WHERE a=18269;\nUPDATE t2 SET b=66708 WHERE a=18270;\nUPDATE t2 SET b=48612 WHERE a=18271;\nUPDATE t2 SET b=77209 WHERE a=18272;\nUPDATE t2 SET b=51308 WHERE a=18273;\nUPDATE t2 SET b=71789 WHERE a=18274;\nUPDATE t2 SET b=72136 WHERE a=18275;\nUPDATE t2 SET b=50700 WHERE a=18276;\nUPDATE t2 SET b=98145 WHERE a=18277;\nUPDATE t2 SET b=59473 WHERE a=18278;\nUPDATE t2 SET b=51375 WHERE a=18279;\nUPDATE t2 SET b=95694 WHERE a=18280;\nUPDATE t2 SET b=18504 WHERE a=18281;\nUPDATE t2 SET b=24844 WHERE a=18282;\nUPDATE t2 SET b=35397 WHERE a=18283;\nUPDATE t2 SET b=89264 WHERE a=18284;\nUPDATE t2 SET b=5369 WHERE a=18285;\nUPDATE t2 SET b=32835 WHERE a=18286;\nUPDATE t2 SET b=26833 WHERE a=18287;\nUPDATE t2 SET b=29664 WHERE a=18288;\nUPDATE t2 SET b=27368 WHERE a=18289;\nUPDATE t2 SET b=34115 WHERE a=18290;\nUPDATE t2 SET b=61592 WHERE a=18291;\nUPDATE t2 SET b=32806 WHERE a=18292;\nUPDATE t2 SET b=444 WHERE a=18293;\nUPDATE t2 SET b=88630 WHERE a=18294;\nUPDATE t2 SET b=76546 WHERE a=18295;\nUPDATE t2 SET b=39838 WHERE a=18296;\nUPDATE t2 SET b=73686 WHERE a=18297;\nUPDATE t2 SET b=46987 WHERE a=18298;\nUPDATE t2 SET b=82067 WHERE a=18299;\nUPDATE t2 SET b=74035 WHERE a=18300;\nUPDATE t2 SET b=94914 WHERE a=18301;\nUPDATE t2 SET b=22621 WHERE a=18302;\nUPDATE t2 SET b=92479 WHERE a=18303;\nUPDATE t2 SET b=44470 WHERE a=18304;\nUPDATE t2 SET b=72717 WHERE a=18305;\nUPDATE t2 SET b=20265 WHERE a=18306;\nUPDATE t2 SET b=72909 WHERE a=18307;\nUPDATE t2 SET b=54188 WHERE a=18308;\nUPDATE t2 SET b=35677 WHERE a=18309;\nUPDATE t2 SET b=37003 WHERE a=18310;\nUPDATE t2 SET b=97612 WHERE a=18311;\nUPDATE t2 SET b=44307 WHERE a=18312;\nUPDATE t2 SET b=99217 WHERE a=18313;\nUPDATE t2 SET b=2265 WHERE a=18314;\nUPDATE t2 SET b=5528 WHERE a=18315;\nUPDATE t2 SET b=81187 WHERE a=18316;\nUPDATE t2 SET b=8355 WHERE a=18317;\nUPDATE t2 SET b=26080 WHERE a=18318;\nUPDATE t2 SET b=59420 WHERE a=18319;\nUPDATE t2 SET b=74362 WHERE a=18320;\nUPDATE t2 SET b=54111 WHERE a=18321;\nUPDATE t2 SET b=66554 WHERE a=18322;\nUPDATE t2 SET b=54671 WHERE a=18323;\nUPDATE t2 SET b=4358 WHERE a=18324;\nUPDATE t2 SET b=55876 WHERE a=18325;\nUPDATE t2 SET b=73849 WHERE a=18326;\nUPDATE t2 SET b=52837 WHERE a=18327;\nUPDATE t2 SET b=39844 WHERE a=18328;\nUPDATE t2 SET b=95258 WHERE a=18329;\nUPDATE t2 SET b=29173 WHERE a=18330;\nUPDATE t2 SET b=31574 WHERE a=18331;\nUPDATE t2 SET b=89584 WHERE a=18332;\nUPDATE t2 SET b=69209 WHERE a=18333;\nUPDATE t2 SET b=81483 WHERE a=18334;\nUPDATE t2 SET b=91951 WHERE a=18335;\nUPDATE t2 SET b=56306 WHERE a=18336;\nUPDATE t2 SET b=26037 WHERE a=18337;\nUPDATE t2 SET b=12611 WHERE a=18338;\nUPDATE t2 SET b=24801 WHERE a=18339;\nUPDATE t2 SET b=54946 WHERE a=18340;\nUPDATE t2 SET b=58003 WHERE a=18341;\nUPDATE t2 SET b=32843 WHERE a=18342;\nUPDATE t2 SET b=42103 WHERE a=18343;\nUPDATE t2 SET b=96585 WHERE a=18344;\nUPDATE t2 SET b=89077 WHERE a=18345;\nUPDATE t2 SET b=30651 WHERE a=18346;\nUPDATE t2 SET b=27448 WHERE a=18347;\nUPDATE t2 SET b=8497 WHERE a=18348;\nUPDATE t2 SET b=92168 WHERE a=18349;\nUPDATE t2 SET b=71183 WHERE a=18350;\nUPDATE t2 SET b=46296 WHERE a=18351;\nUPDATE t2 SET b=24927 WHERE a=18352;\nUPDATE t2 SET b=79670 WHERE a=18353;\nUPDATE t2 SET b=81822 WHERE a=18354;\nUPDATE t2 SET b=63362 WHERE a=18355;\nUPDATE t2 SET b=73366 WHERE a=18356;\nUPDATE t2 SET b=11414 WHERE a=18357;\nUPDATE t2 SET b=45386 WHERE a=18358;\nUPDATE t2 SET b=83542 WHERE a=18359;\nUPDATE t2 SET b=31547 WHERE a=18360;\nUPDATE t2 SET b=28415 WHERE a=18361;\nUPDATE t2 SET b=39982 WHERE a=18362;\nUPDATE t2 SET b=78131 WHERE a=18363;\nUPDATE t2 SET b=96038 WHERE a=18364;\nUPDATE t2 SET b=47654 WHERE a=18365;\nUPDATE t2 SET b=32871 WHERE a=18366;\nUPDATE t2 SET b=4135 WHERE a=18367;\nUPDATE t2 SET b=56159 WHERE a=18368;\nUPDATE t2 SET b=24891 WHERE a=18369;\nUPDATE t2 SET b=72258 WHERE a=18370;\nUPDATE t2 SET b=32235 WHERE a=18371;\nUPDATE t2 SET b=40025 WHERE a=18372;\nUPDATE t2 SET b=13891 WHERE a=18373;\nUPDATE t2 SET b=45501 WHERE a=18374;\nUPDATE t2 SET b=79287 WHERE a=18375;\nUPDATE t2 SET b=54468 WHERE a=18376;\nUPDATE t2 SET b=9635 WHERE a=18377;\nUPDATE t2 SET b=93959 WHERE a=18378;\nUPDATE t2 SET b=67983 WHERE a=18379;\nUPDATE t2 SET b=12855 WHERE a=18380;\nUPDATE t2 SET b=74780 WHERE a=18381;\nUPDATE t2 SET b=7736 WHERE a=18382;\nUPDATE t2 SET b=24924 WHERE a=18383;\nUPDATE t2 SET b=22916 WHERE a=18384;\nUPDATE t2 SET b=43967 WHERE a=18385;\nUPDATE t2 SET b=34372 WHERE a=18386;\nUPDATE t2 SET b=48596 WHERE a=18387;\nUPDATE t2 SET b=77571 WHERE a=18388;\nUPDATE t2 SET b=36411 WHERE a=18389;\nUPDATE t2 SET b=60166 WHERE a=18390;\nUPDATE t2 SET b=15349 WHERE a=18391;\nUPDATE t2 SET b=96316 WHERE a=18392;\nUPDATE t2 SET b=16317 WHERE a=18393;\nUPDATE t2 SET b=99010 WHERE a=18394;\nUPDATE t2 SET b=65257 WHERE a=18395;\nUPDATE t2 SET b=63544 WHERE a=18396;\nUPDATE t2 SET b=25234 WHERE a=18397;\nUPDATE t2 SET b=28452 WHERE a=18398;\nUPDATE t2 SET b=202 WHERE a=18399;\nUPDATE t2 SET b=9271 WHERE a=18400;\nUPDATE t2 SET b=16396 WHERE a=18401;\nUPDATE t2 SET b=94572 WHERE a=18402;\nUPDATE t2 SET b=61341 WHERE a=18403;\nUPDATE t2 SET b=40630 WHERE a=18404;\nUPDATE t2 SET b=81403 WHERE a=18405;\nUPDATE t2 SET b=29196 WHERE a=18406;\nUPDATE t2 SET b=28890 WHERE a=18407;\nUPDATE t2 SET b=40651 WHERE a=18408;\nUPDATE t2 SET b=86059 WHERE a=18409;\nUPDATE t2 SET b=72082 WHERE a=18410;\nUPDATE t2 SET b=82430 WHERE a=18411;\nUPDATE t2 SET b=33869 WHERE a=18412;\nUPDATE t2 SET b=28367 WHERE a=18413;\nUPDATE t2 SET b=41509 WHERE a=18414;\nUPDATE t2 SET b=95604 WHERE a=18415;\nUPDATE t2 SET b=95620 WHERE a=18416;\nUPDATE t2 SET b=40916 WHERE a=18417;\nUPDATE t2 SET b=34132 WHERE a=18418;\nUPDATE t2 SET b=37429 WHERE a=18419;\nUPDATE t2 SET b=15066 WHERE a=18420;\nUPDATE t2 SET b=35802 WHERE a=18421;\nUPDATE t2 SET b=68549 WHERE a=18422;\nUPDATE t2 SET b=44900 WHERE a=18423;\nUPDATE t2 SET b=12828 WHERE a=18424;\nUPDATE t2 SET b=35654 WHERE a=18425;\nUPDATE t2 SET b=62009 WHERE a=18426;\nUPDATE t2 SET b=34779 WHERE a=18427;\nUPDATE t2 SET b=52395 WHERE a=18428;\nUPDATE t2 SET b=33616 WHERE a=18429;\nUPDATE t2 SET b=29170 WHERE a=18430;\nUPDATE t2 SET b=98474 WHERE a=18431;\nUPDATE t2 SET b=10375 WHERE a=18432;\nUPDATE t2 SET b=52037 WHERE a=18433;\nUPDATE t2 SET b=66134 WHERE a=18434;\nUPDATE t2 SET b=19770 WHERE a=18435;\nUPDATE t2 SET b=85575 WHERE a=18436;\nUPDATE t2 SET b=78915 WHERE a=18437;\nUPDATE t2 SET b=34699 WHERE a=18438;\nUPDATE t2 SET b=27614 WHERE a=18439;\nUPDATE t2 SET b=47284 WHERE a=18440;\nUPDATE t2 SET b=53739 WHERE a=18441;\nUPDATE t2 SET b=43126 WHERE a=18442;\nUPDATE t2 SET b=6958 WHERE a=18443;\nUPDATE t2 SET b=97117 WHERE a=18444;\nUPDATE t2 SET b=21180 WHERE a=18445;\nUPDATE t2 SET b=59025 WHERE a=18446;\nUPDATE t2 SET b=15783 WHERE a=18447;\nUPDATE t2 SET b=29152 WHERE a=18448;\nUPDATE t2 SET b=64424 WHERE a=18449;\nUPDATE t2 SET b=3587 WHERE a=18450;\nUPDATE t2 SET b=41370 WHERE a=18451;\nUPDATE t2 SET b=43732 WHERE a=18452;\nUPDATE t2 SET b=60387 WHERE a=18453;\nUPDATE t2 SET b=61494 WHERE a=18454;\nUPDATE t2 SET b=32105 WHERE a=18455;\nUPDATE t2 SET b=76905 WHERE a=18456;\nUPDATE t2 SET b=61706 WHERE a=18457;\nUPDATE t2 SET b=23502 WHERE a=18458;\nUPDATE t2 SET b=7110 WHERE a=18459;\nUPDATE t2 SET b=51769 WHERE a=18460;\nUPDATE t2 SET b=18466 WHERE a=18461;\nUPDATE t2 SET b=84974 WHERE a=18462;\nUPDATE t2 SET b=88201 WHERE a=18463;\nUPDATE t2 SET b=61427 WHERE a=18464;\nUPDATE t2 SET b=93609 WHERE a=18465;\nUPDATE t2 SET b=33083 WHERE a=18466;\nUPDATE t2 SET b=51919 WHERE a=18467;\nUPDATE t2 SET b=44962 WHERE a=18468;\nUPDATE t2 SET b=72461 WHERE a=18469;\nUPDATE t2 SET b=1463 WHERE a=18470;\nUPDATE t2 SET b=51217 WHERE a=18471;\nUPDATE t2 SET b=2538 WHERE a=18472;\nUPDATE t2 SET b=87113 WHERE a=18473;\nUPDATE t2 SET b=86804 WHERE a=18474;\nUPDATE t2 SET b=10930 WHERE a=18475;\nUPDATE t2 SET b=18003 WHERE a=18476;\nUPDATE t2 SET b=74096 WHERE a=18477;\nUPDATE t2 SET b=87628 WHERE a=18478;\nUPDATE t2 SET b=82961 WHERE a=18479;\nUPDATE t2 SET b=45401 WHERE a=18480;\nUPDATE t2 SET b=87153 WHERE a=18481;\nUPDATE t2 SET b=29019 WHERE a=18482;\nUPDATE t2 SET b=74931 WHERE a=18483;\nUPDATE t2 SET b=27059 WHERE a=18484;\nUPDATE t2 SET b=7083 WHERE a=18485;\nUPDATE t2 SET b=28999 WHERE a=18486;\nUPDATE t2 SET b=90424 WHERE a=18487;\nUPDATE t2 SET b=35515 WHERE a=18488;\nUPDATE t2 SET b=26771 WHERE a=18489;\nUPDATE t2 SET b=53619 WHERE a=18490;\nUPDATE t2 SET b=67643 WHERE a=18491;\nUPDATE t2 SET b=48243 WHERE a=18492;\nUPDATE t2 SET b=71416 WHERE a=18493;\nUPDATE t2 SET b=36792 WHERE a=18494;\nUPDATE t2 SET b=26990 WHERE a=18495;\nUPDATE t2 SET b=73087 WHERE a=18496;\nUPDATE t2 SET b=52824 WHERE a=18497;\nUPDATE t2 SET b=29478 WHERE a=18498;\nUPDATE t2 SET b=15060 WHERE a=18499;\nUPDATE t2 SET b=38039 WHERE a=18500;\nUPDATE t2 SET b=59359 WHERE a=18501;\nUPDATE t2 SET b=11189 WHERE a=18502;\nUPDATE t2 SET b=12031 WHERE a=18503;\nUPDATE t2 SET b=3702 WHERE a=18504;\nUPDATE t2 SET b=26223 WHERE a=18505;\nUPDATE t2 SET b=18409 WHERE a=18506;\nUPDATE t2 SET b=98219 WHERE a=18507;\nUPDATE t2 SET b=12226 WHERE a=18508;\nUPDATE t2 SET b=33704 WHERE a=18509;\nUPDATE t2 SET b=40761 WHERE a=18510;\nUPDATE t2 SET b=12733 WHERE a=18511;\nUPDATE t2 SET b=88334 WHERE a=18512;\nUPDATE t2 SET b=88735 WHERE a=18513;\nUPDATE t2 SET b=77398 WHERE a=18514;\nUPDATE t2 SET b=42671 WHERE a=18515;\nUPDATE t2 SET b=52051 WHERE a=18516;\nUPDATE t2 SET b=73646 WHERE a=18517;\nUPDATE t2 SET b=65606 WHERE a=18518;\nUPDATE t2 SET b=58944 WHERE a=18519;\nUPDATE t2 SET b=7252 WHERE a=18520;\nUPDATE t2 SET b=53103 WHERE a=18521;\nUPDATE t2 SET b=62274 WHERE a=18522;\nUPDATE t2 SET b=33691 WHERE a=18523;\nUPDATE t2 SET b=19433 WHERE a=18524;\nUPDATE t2 SET b=85297 WHERE a=18525;\nUPDATE t2 SET b=73072 WHERE a=18526;\nUPDATE t2 SET b=66722 WHERE a=18527;\nUPDATE t2 SET b=93984 WHERE a=18528;\nUPDATE t2 SET b=63243 WHERE a=18529;\nUPDATE t2 SET b=27857 WHERE a=18530;\nUPDATE t2 SET b=45539 WHERE a=18531;\nUPDATE t2 SET b=62844 WHERE a=18532;\nUPDATE t2 SET b=66631 WHERE a=18533;\nUPDATE t2 SET b=59976 WHERE a=18534;\nUPDATE t2 SET b=77798 WHERE a=18535;\nUPDATE t2 SET b=7325 WHERE a=18536;\nUPDATE t2 SET b=22548 WHERE a=18537;\nUPDATE t2 SET b=39750 WHERE a=18538;\nUPDATE t2 SET b=70828 WHERE a=18539;\nUPDATE t2 SET b=33230 WHERE a=18540;\nUPDATE t2 SET b=70810 WHERE a=18541;\nUPDATE t2 SET b=47697 WHERE a=18542;\nUPDATE t2 SET b=94067 WHERE a=18543;\nUPDATE t2 SET b=25279 WHERE a=18544;\nUPDATE t2 SET b=92771 WHERE a=18545;\nUPDATE t2 SET b=46597 WHERE a=18546;\nUPDATE t2 SET b=71831 WHERE a=18547;\nUPDATE t2 SET b=37228 WHERE a=18548;\nUPDATE t2 SET b=42188 WHERE a=18549;\nUPDATE t2 SET b=76689 WHERE a=18550;\nUPDATE t2 SET b=7784 WHERE a=18551;\nUPDATE t2 SET b=1276 WHERE a=18552;\nUPDATE t2 SET b=55836 WHERE a=18553;\nUPDATE t2 SET b=83889 WHERE a=18554;\nUPDATE t2 SET b=71939 WHERE a=18555;\nUPDATE t2 SET b=206 WHERE a=18556;\nUPDATE t2 SET b=87671 WHERE a=18557;\nUPDATE t2 SET b=5104 WHERE a=18558;\nUPDATE t2 SET b=3045 WHERE a=18559;\nUPDATE t2 SET b=95547 WHERE a=18560;\nUPDATE t2 SET b=76388 WHERE a=18561;\nUPDATE t2 SET b=12901 WHERE a=18562;\nUPDATE t2 SET b=1579 WHERE a=18563;\nUPDATE t2 SET b=55549 WHERE a=18564;\nUPDATE t2 SET b=19065 WHERE a=18565;\nUPDATE t2 SET b=48402 WHERE a=18566;\nUPDATE t2 SET b=16605 WHERE a=18567;\nUPDATE t2 SET b=7619 WHERE a=18568;\nUPDATE t2 SET b=16005 WHERE a=18569;\nUPDATE t2 SET b=59778 WHERE a=18570;\nUPDATE t2 SET b=93593 WHERE a=18571;\nUPDATE t2 SET b=78377 WHERE a=18572;\nUPDATE t2 SET b=28411 WHERE a=18573;\nUPDATE t2 SET b=32432 WHERE a=18574;\nUPDATE t2 SET b=50463 WHERE a=18575;\nUPDATE t2 SET b=14493 WHERE a=18576;\nUPDATE t2 SET b=50551 WHERE a=18577;\nUPDATE t2 SET b=87106 WHERE a=18578;\nUPDATE t2 SET b=521 WHERE a=18579;\nUPDATE t2 SET b=65028 WHERE a=18580;\nUPDATE t2 SET b=47019 WHERE a=18581;\nUPDATE t2 SET b=24393 WHERE a=18582;\nUPDATE t2 SET b=60181 WHERE a=18583;\nUPDATE t2 SET b=27617 WHERE a=18584;\nUPDATE t2 SET b=57542 WHERE a=18585;\nUPDATE t2 SET b=53469 WHERE a=18586;\nUPDATE t2 SET b=77462 WHERE a=18587;\nUPDATE t2 SET b=98969 WHERE a=18588;\nUPDATE t2 SET b=27265 WHERE a=18589;\nUPDATE t2 SET b=61362 WHERE a=18590;\nUPDATE t2 SET b=46932 WHERE a=18591;\nUPDATE t2 SET b=75118 WHERE a=18592;\nUPDATE t2 SET b=39897 WHERE a=18593;\nUPDATE t2 SET b=77188 WHERE a=18594;\nUPDATE t2 SET b=76947 WHERE a=18595;\nUPDATE t2 SET b=62166 WHERE a=18596;\nUPDATE t2 SET b=54917 WHERE a=18597;\nUPDATE t2 SET b=20953 WHERE a=18598;\nUPDATE t2 SET b=66983 WHERE a=18599;\nUPDATE t2 SET b=97644 WHERE a=18600;\nUPDATE t2 SET b=35385 WHERE a=18601;\nUPDATE t2 SET b=81564 WHERE a=18602;\nUPDATE t2 SET b=31163 WHERE a=18603;\nUPDATE t2 SET b=59155 WHERE a=18604;\nUPDATE t2 SET b=68692 WHERE a=18605;\nUPDATE t2 SET b=52366 WHERE a=18606;\nUPDATE t2 SET b=89057 WHERE a=18607;\nUPDATE t2 SET b=39211 WHERE a=18608;\nUPDATE t2 SET b=64889 WHERE a=18609;\nUPDATE t2 SET b=17755 WHERE a=18610;\nUPDATE t2 SET b=94900 WHERE a=18611;\nUPDATE t2 SET b=84435 WHERE a=18612;\nUPDATE t2 SET b=83808 WHERE a=18613;\nUPDATE t2 SET b=38495 WHERE a=18614;\nUPDATE t2 SET b=68367 WHERE a=18615;\nUPDATE t2 SET b=3369 WHERE a=18616;\nUPDATE t2 SET b=4653 WHERE a=18617;\nUPDATE t2 SET b=73672 WHERE a=18618;\nUPDATE t2 SET b=95498 WHERE a=18619;\nUPDATE t2 SET b=78429 WHERE a=18620;\nUPDATE t2 SET b=98397 WHERE a=18621;\nUPDATE t2 SET b=86697 WHERE a=18622;\nUPDATE t2 SET b=6601 WHERE a=18623;\nUPDATE t2 SET b=43601 WHERE a=18624;\nUPDATE t2 SET b=94240 WHERE a=18625;\nUPDATE t2 SET b=898 WHERE a=18626;\nUPDATE t2 SET b=72914 WHERE a=18627;\nUPDATE t2 SET b=94823 WHERE a=18628;\nUPDATE t2 SET b=46820 WHERE a=18629;\nUPDATE t2 SET b=46822 WHERE a=18630;\nUPDATE t2 SET b=71232 WHERE a=18631;\nUPDATE t2 SET b=72967 WHERE a=18632;\nUPDATE t2 SET b=22213 WHERE a=18633;\nUPDATE t2 SET b=21326 WHERE a=18634;\nUPDATE t2 SET b=33059 WHERE a=18635;\nUPDATE t2 SET b=67159 WHERE a=18636;\nUPDATE t2 SET b=78634 WHERE a=18637;\nUPDATE t2 SET b=9845 WHERE a=18638;\nUPDATE t2 SET b=63391 WHERE a=18639;\nUPDATE t2 SET b=32597 WHERE a=18640;\nUPDATE t2 SET b=822 WHERE a=18641;\nUPDATE t2 SET b=55433 WHERE a=18642;\nUPDATE t2 SET b=22042 WHERE a=18643;\nUPDATE t2 SET b=95830 WHERE a=18644;\nUPDATE t2 SET b=55404 WHERE a=18645;\nUPDATE t2 SET b=99528 WHERE a=18646;\nUPDATE t2 SET b=48950 WHERE a=18647;\nUPDATE t2 SET b=89354 WHERE a=18648;\nUPDATE t2 SET b=77444 WHERE a=18649;\nUPDATE t2 SET b=99481 WHERE a=18650;\nUPDATE t2 SET b=63569 WHERE a=18651;\nUPDATE t2 SET b=97856 WHERE a=18652;\nUPDATE t2 SET b=44077 WHERE a=18653;\nUPDATE t2 SET b=28837 WHERE a=18654;\nUPDATE t2 SET b=1210 WHERE a=18655;\nUPDATE t2 SET b=16587 WHERE a=18656;\nUPDATE t2 SET b=19304 WHERE a=18657;\nUPDATE t2 SET b=63791 WHERE a=18658;\nUPDATE t2 SET b=74946 WHERE a=18659;\nUPDATE t2 SET b=36494 WHERE a=18660;\nUPDATE t2 SET b=88921 WHERE a=18661;\nUPDATE t2 SET b=20246 WHERE a=18662;\nUPDATE t2 SET b=81620 WHERE a=18663;\nUPDATE t2 SET b=43411 WHERE a=18664;\nUPDATE t2 SET b=90694 WHERE a=18665;\nUPDATE t2 SET b=24774 WHERE a=18666;\nUPDATE t2 SET b=2156 WHERE a=18667;\nUPDATE t2 SET b=81439 WHERE a=18668;\nUPDATE t2 SET b=72769 WHERE a=18669;\nUPDATE t2 SET b=41360 WHERE a=18670;\nUPDATE t2 SET b=35599 WHERE a=18671;\nUPDATE t2 SET b=54815 WHERE a=18672;\nUPDATE t2 SET b=22187 WHERE a=18673;\nUPDATE t2 SET b=10665 WHERE a=18674;\nUPDATE t2 SET b=46261 WHERE a=18675;\nUPDATE t2 SET b=20815 WHERE a=18676;\nUPDATE t2 SET b=77357 WHERE a=18677;\nUPDATE t2 SET b=8561 WHERE a=18678;\nUPDATE t2 SET b=83052 WHERE a=18679;\nUPDATE t2 SET b=25370 WHERE a=18680;\nUPDATE t2 SET b=5486 WHERE a=18681;\nUPDATE t2 SET b=52075 WHERE a=18682;\nUPDATE t2 SET b=4394 WHERE a=18683;\nUPDATE t2 SET b=73811 WHERE a=18684;\nUPDATE t2 SET b=24166 WHERE a=18685;\nUPDATE t2 SET b=62165 WHERE a=18686;\nUPDATE t2 SET b=52147 WHERE a=18687;\nUPDATE t2 SET b=78024 WHERE a=18688;\nUPDATE t2 SET b=34767 WHERE a=18689;\nUPDATE t2 SET b=22808 WHERE a=18690;\nUPDATE t2 SET b=77431 WHERE a=18691;\nUPDATE t2 SET b=48565 WHERE a=18692;\nUPDATE t2 SET b=93829 WHERE a=18693;\nUPDATE t2 SET b=55896 WHERE a=18694;\nUPDATE t2 SET b=88073 WHERE a=18695;\nUPDATE t2 SET b=9001 WHERE a=18696;\nUPDATE t2 SET b=95955 WHERE a=18697;\nUPDATE t2 SET b=14460 WHERE a=18698;\nUPDATE t2 SET b=42303 WHERE a=18699;\nUPDATE t2 SET b=10145 WHERE a=18700;\nUPDATE t2 SET b=79551 WHERE a=18701;\nUPDATE t2 SET b=73850 WHERE a=18702;\nUPDATE t2 SET b=99712 WHERE a=18703;\nUPDATE t2 SET b=57254 WHERE a=18704;\nUPDATE t2 SET b=44420 WHERE a=18705;\nUPDATE t2 SET b=51825 WHERE a=18706;\nUPDATE t2 SET b=8466 WHERE a=18707;\nUPDATE t2 SET b=50137 WHERE a=18708;\nUPDATE t2 SET b=77181 WHERE a=18709;\nUPDATE t2 SET b=26950 WHERE a=18710;\nUPDATE t2 SET b=17382 WHERE a=18711;\nUPDATE t2 SET b=1867 WHERE a=18712;\nUPDATE t2 SET b=30506 WHERE a=18713;\nUPDATE t2 SET b=73072 WHERE a=18714;\nUPDATE t2 SET b=13360 WHERE a=18715;\nUPDATE t2 SET b=87661 WHERE a=18716;\nUPDATE t2 SET b=66799 WHERE a=18717;\nUPDATE t2 SET b=27977 WHERE a=18718;\nUPDATE t2 SET b=15114 WHERE a=18719;\nUPDATE t2 SET b=15338 WHERE a=18720;\nUPDATE t2 SET b=77087 WHERE a=18721;\nUPDATE t2 SET b=15721 WHERE a=18722;\nUPDATE t2 SET b=8509 WHERE a=18723;\nUPDATE t2 SET b=50861 WHERE a=18724;\nUPDATE t2 SET b=36420 WHERE a=18725;\nUPDATE t2 SET b=28233 WHERE a=18726;\nUPDATE t2 SET b=69702 WHERE a=18727;\nUPDATE t2 SET b=16238 WHERE a=18728;\nUPDATE t2 SET b=24180 WHERE a=18729;\nUPDATE t2 SET b=80652 WHERE a=18730;\nUPDATE t2 SET b=13904 WHERE a=18731;\nUPDATE t2 SET b=86916 WHERE a=18732;\nUPDATE t2 SET b=17968 WHERE a=18733;\nUPDATE t2 SET b=44399 WHERE a=18734;\nUPDATE t2 SET b=78329 WHERE a=18735;\nUPDATE t2 SET b=95817 WHERE a=18736;\nUPDATE t2 SET b=39629 WHERE a=18737;\nUPDATE t2 SET b=61514 WHERE a=18738;\nUPDATE t2 SET b=678 WHERE a=18739;\nUPDATE t2 SET b=98412 WHERE a=18740;\nUPDATE t2 SET b=8636 WHERE a=18741;\nUPDATE t2 SET b=70025 WHERE a=18742;\nUPDATE t2 SET b=42020 WHERE a=18743;\nUPDATE t2 SET b=38306 WHERE a=18744;\nUPDATE t2 SET b=82335 WHERE a=18745;\nUPDATE t2 SET b=62071 WHERE a=18746;\nUPDATE t2 SET b=67484 WHERE a=18747;\nUPDATE t2 SET b=82830 WHERE a=18748;\nUPDATE t2 SET b=60684 WHERE a=18749;\nUPDATE t2 SET b=77169 WHERE a=18750;\nUPDATE t2 SET b=17421 WHERE a=18751;\nUPDATE t2 SET b=5428 WHERE a=18752;\nUPDATE t2 SET b=70532 WHERE a=18753;\nUPDATE t2 SET b=79019 WHERE a=18754;\nUPDATE t2 SET b=4024 WHERE a=18755;\nUPDATE t2 SET b=69962 WHERE a=18756;\nUPDATE t2 SET b=62020 WHERE a=18757;\nUPDATE t2 SET b=54370 WHERE a=18758;\nUPDATE t2 SET b=50656 WHERE a=18759;\nUPDATE t2 SET b=33178 WHERE a=18760;\nUPDATE t2 SET b=16158 WHERE a=18761;\nUPDATE t2 SET b=58447 WHERE a=18762;\nUPDATE t2 SET b=74488 WHERE a=18763;\nUPDATE t2 SET b=13744 WHERE a=18764;\nUPDATE t2 SET b=74336 WHERE a=18765;\nUPDATE t2 SET b=36427 WHERE a=18766;\nUPDATE t2 SET b=44698 WHERE a=18767;\nUPDATE t2 SET b=50212 WHERE a=18768;\nUPDATE t2 SET b=43314 WHERE a=18769;\nUPDATE t2 SET b=81031 WHERE a=18770;\nUPDATE t2 SET b=90947 WHERE a=18771;\nUPDATE t2 SET b=53882 WHERE a=18772;\nUPDATE t2 SET b=90466 WHERE a=18773;\nUPDATE t2 SET b=33489 WHERE a=18774;\nUPDATE t2 SET b=67125 WHERE a=18775;\nUPDATE t2 SET b=22358 WHERE a=18776;\nUPDATE t2 SET b=59761 WHERE a=18777;\nUPDATE t2 SET b=25604 WHERE a=18778;\nUPDATE t2 SET b=18468 WHERE a=18779;\nUPDATE t2 SET b=61509 WHERE a=18780;\nUPDATE t2 SET b=11677 WHERE a=18781;\nUPDATE t2 SET b=86512 WHERE a=18782;\nUPDATE t2 SET b=82567 WHERE a=18783;\nUPDATE t2 SET b=75816 WHERE a=18784;\nUPDATE t2 SET b=98908 WHERE a=18785;\nUPDATE t2 SET b=72517 WHERE a=18786;\nUPDATE t2 SET b=4889 WHERE a=18787;\nUPDATE t2 SET b=16337 WHERE a=18788;\nUPDATE t2 SET b=85673 WHERE a=18789;\nUPDATE t2 SET b=93465 WHERE a=18790;\nUPDATE t2 SET b=15996 WHERE a=18791;\nUPDATE t2 SET b=52138 WHERE a=18792;\nUPDATE t2 SET b=26060 WHERE a=18793;\nUPDATE t2 SET b=74611 WHERE a=18794;\nUPDATE t2 SET b=53623 WHERE a=18795;\nUPDATE t2 SET b=21390 WHERE a=18796;\nUPDATE t2 SET b=61710 WHERE a=18797;\nUPDATE t2 SET b=82339 WHERE a=18798;\nUPDATE t2 SET b=81137 WHERE a=18799;\nUPDATE t2 SET b=51347 WHERE a=18800;\nUPDATE t2 SET b=34539 WHERE a=18801;\nUPDATE t2 SET b=44788 WHERE a=18802;\nUPDATE t2 SET b=61487 WHERE a=18803;\nUPDATE t2 SET b=19084 WHERE a=18804;\nUPDATE t2 SET b=91928 WHERE a=18805;\nUPDATE t2 SET b=72856 WHERE a=18806;\nUPDATE t2 SET b=64847 WHERE a=18807;\nUPDATE t2 SET b=67122 WHERE a=18808;\nUPDATE t2 SET b=49182 WHERE a=18809;\nUPDATE t2 SET b=97931 WHERE a=18810;\nUPDATE t2 SET b=45152 WHERE a=18811;\nUPDATE t2 SET b=35359 WHERE a=18812;\nUPDATE t2 SET b=73251 WHERE a=18813;\nUPDATE t2 SET b=57229 WHERE a=18814;\nUPDATE t2 SET b=25593 WHERE a=18815;\nUPDATE t2 SET b=58509 WHERE a=18816;\nUPDATE t2 SET b=23196 WHERE a=18817;\nUPDATE t2 SET b=67041 WHERE a=18818;\nUPDATE t2 SET b=78135 WHERE a=18819;\nUPDATE t2 SET b=30341 WHERE a=18820;\nUPDATE t2 SET b=98178 WHERE a=18821;\nUPDATE t2 SET b=68215 WHERE a=18822;\nUPDATE t2 SET b=11443 WHERE a=18823;\nUPDATE t2 SET b=41269 WHERE a=18824;\nUPDATE t2 SET b=97784 WHERE a=18825;\nUPDATE t2 SET b=8612 WHERE a=18826;\nUPDATE t2 SET b=37654 WHERE a=18827;\nUPDATE t2 SET b=69478 WHERE a=18828;\nUPDATE t2 SET b=36868 WHERE a=18829;\nUPDATE t2 SET b=4264 WHERE a=18830;\nUPDATE t2 SET b=44173 WHERE a=18831;\nUPDATE t2 SET b=22893 WHERE a=18832;\nUPDATE t2 SET b=34683 WHERE a=18833;\nUPDATE t2 SET b=71100 WHERE a=18834;\nUPDATE t2 SET b=28961 WHERE a=18835;\nUPDATE t2 SET b=35694 WHERE a=18836;\nUPDATE t2 SET b=7087 WHERE a=18837;\nUPDATE t2 SET b=46702 WHERE a=18838;\nUPDATE t2 SET b=89383 WHERE a=18839;\nUPDATE t2 SET b=26696 WHERE a=18840;\nUPDATE t2 SET b=1283 WHERE a=18841;\nUPDATE t2 SET b=88785 WHERE a=18842;\nUPDATE t2 SET b=80306 WHERE a=18843;\nUPDATE t2 SET b=5341 WHERE a=18844;\nUPDATE t2 SET b=21606 WHERE a=18845;\nUPDATE t2 SET b=5418 WHERE a=18846;\nUPDATE t2 SET b=35792 WHERE a=18847;\nUPDATE t2 SET b=64640 WHERE a=18848;\nUPDATE t2 SET b=14334 WHERE a=18849;\nUPDATE t2 SET b=16561 WHERE a=18850;\nUPDATE t2 SET b=86431 WHERE a=18851;\nUPDATE t2 SET b=72513 WHERE a=18852;\nUPDATE t2 SET b=76887 WHERE a=18853;\nUPDATE t2 SET b=46734 WHERE a=18854;\nUPDATE t2 SET b=71107 WHERE a=18855;\nUPDATE t2 SET b=26470 WHERE a=18856;\nUPDATE t2 SET b=65573 WHERE a=18857;\nUPDATE t2 SET b=91535 WHERE a=18858;\nUPDATE t2 SET b=67983 WHERE a=18859;\nUPDATE t2 SET b=52591 WHERE a=18860;\nUPDATE t2 SET b=37423 WHERE a=18861;\nUPDATE t2 SET b=39620 WHERE a=18862;\nUPDATE t2 SET b=21926 WHERE a=18863;\nUPDATE t2 SET b=12809 WHERE a=18864;\nUPDATE t2 SET b=24395 WHERE a=18865;\nUPDATE t2 SET b=23924 WHERE a=18866;\nUPDATE t2 SET b=12926 WHERE a=18867;\nUPDATE t2 SET b=616 WHERE a=18868;\nUPDATE t2 SET b=18757 WHERE a=18869;\nUPDATE t2 SET b=47962 WHERE a=18870;\nUPDATE t2 SET b=32327 WHERE a=18871;\nUPDATE t2 SET b=38945 WHERE a=18872;\nUPDATE t2 SET b=82091 WHERE a=18873;\nUPDATE t2 SET b=38724 WHERE a=18874;\nUPDATE t2 SET b=68145 WHERE a=18875;\nUPDATE t2 SET b=96794 WHERE a=18876;\nUPDATE t2 SET b=56544 WHERE a=18877;\nUPDATE t2 SET b=58654 WHERE a=18878;\nUPDATE t2 SET b=18146 WHERE a=18879;\nUPDATE t2 SET b=38247 WHERE a=18880;\nUPDATE t2 SET b=71966 WHERE a=18881;\nUPDATE t2 SET b=29126 WHERE a=18882;\nUPDATE t2 SET b=83525 WHERE a=18883;\nUPDATE t2 SET b=75080 WHERE a=18884;\nUPDATE t2 SET b=72164 WHERE a=18885;\nUPDATE t2 SET b=15337 WHERE a=18886;\nUPDATE t2 SET b=78502 WHERE a=18887;\nUPDATE t2 SET b=79674 WHERE a=18888;\nUPDATE t2 SET b=23911 WHERE a=18889;\nUPDATE t2 SET b=86606 WHERE a=18890;\nUPDATE t2 SET b=7746 WHERE a=18891;\nUPDATE t2 SET b=70065 WHERE a=18892;\nUPDATE t2 SET b=22586 WHERE a=18893;\nUPDATE t2 SET b=20052 WHERE a=18894;\nUPDATE t2 SET b=40363 WHERE a=18895;\nUPDATE t2 SET b=23269 WHERE a=18896;\nUPDATE t2 SET b=84546 WHERE a=18897;\nUPDATE t2 SET b=19561 WHERE a=18898;\nUPDATE t2 SET b=58307 WHERE a=18899;\nUPDATE t2 SET b=49085 WHERE a=18900;\nUPDATE t2 SET b=72341 WHERE a=18901;\nUPDATE t2 SET b=19955 WHERE a=18902;\nUPDATE t2 SET b=49810 WHERE a=18903;\nUPDATE t2 SET b=36792 WHERE a=18904;\nUPDATE t2 SET b=4585 WHERE a=18905;\nUPDATE t2 SET b=25294 WHERE a=18906;\nUPDATE t2 SET b=67202 WHERE a=18907;\nUPDATE t2 SET b=26819 WHERE a=18908;\nUPDATE t2 SET b=71554 WHERE a=18909;\nUPDATE t2 SET b=60115 WHERE a=18910;\nUPDATE t2 SET b=4514 WHERE a=18911;\nUPDATE t2 SET b=56771 WHERE a=18912;\nUPDATE t2 SET b=12352 WHERE a=18913;\nUPDATE t2 SET b=81534 WHERE a=18914;\nUPDATE t2 SET b=60860 WHERE a=18915;\nUPDATE t2 SET b=8408 WHERE a=18916;\nUPDATE t2 SET b=25808 WHERE a=18917;\nUPDATE t2 SET b=31782 WHERE a=18918;\nUPDATE t2 SET b=18004 WHERE a=18919;\nUPDATE t2 SET b=74852 WHERE a=18920;\nUPDATE t2 SET b=46803 WHERE a=18921;\nUPDATE t2 SET b=6896 WHERE a=18922;\nUPDATE t2 SET b=7994 WHERE a=18923;\nUPDATE t2 SET b=62128 WHERE a=18924;\nUPDATE t2 SET b=11111 WHERE a=18925;\nUPDATE t2 SET b=91679 WHERE a=18926;\nUPDATE t2 SET b=20565 WHERE a=18927;\nUPDATE t2 SET b=63659 WHERE a=18928;\nUPDATE t2 SET b=44906 WHERE a=18929;\nUPDATE t2 SET b=94157 WHERE a=18930;\nUPDATE t2 SET b=2422 WHERE a=18931;\nUPDATE t2 SET b=45065 WHERE a=18932;\nUPDATE t2 SET b=20438 WHERE a=18933;\nUPDATE t2 SET b=68598 WHERE a=18934;\nUPDATE t2 SET b=51709 WHERE a=18935;\nUPDATE t2 SET b=41719 WHERE a=18936;\nUPDATE t2 SET b=21466 WHERE a=18937;\nUPDATE t2 SET b=69779 WHERE a=18938;\nUPDATE t2 SET b=36333 WHERE a=18939;\nUPDATE t2 SET b=10623 WHERE a=18940;\nUPDATE t2 SET b=88015 WHERE a=18941;\nUPDATE t2 SET b=32716 WHERE a=18942;\nUPDATE t2 SET b=12080 WHERE a=18943;\nUPDATE t2 SET b=74942 WHERE a=18944;\nUPDATE t2 SET b=86545 WHERE a=18945;\nUPDATE t2 SET b=32567 WHERE a=18946;\nUPDATE t2 SET b=74670 WHERE a=18947;\nUPDATE t2 SET b=70420 WHERE a=18948;\nUPDATE t2 SET b=79106 WHERE a=18949;\nUPDATE t2 SET b=40335 WHERE a=18950;\nUPDATE t2 SET b=68762 WHERE a=18951;\nUPDATE t2 SET b=66505 WHERE a=18952;\nUPDATE t2 SET b=71375 WHERE a=18953;\nUPDATE t2 SET b=83276 WHERE a=18954;\nUPDATE t2 SET b=72474 WHERE a=18955;\nUPDATE t2 SET b=59083 WHERE a=18956;\nUPDATE t2 SET b=95983 WHERE a=18957;\nUPDATE t2 SET b=64123 WHERE a=18958;\nUPDATE t2 SET b=54451 WHERE a=18959;\nUPDATE t2 SET b=73480 WHERE a=18960;\nUPDATE t2 SET b=39715 WHERE a=18961;\nUPDATE t2 SET b=74969 WHERE a=18962;\nUPDATE t2 SET b=81241 WHERE a=18963;\nUPDATE t2 SET b=27562 WHERE a=18964;\nUPDATE t2 SET b=15281 WHERE a=18965;\nUPDATE t2 SET b=48570 WHERE a=18966;\nUPDATE t2 SET b=74472 WHERE a=18967;\nUPDATE t2 SET b=17786 WHERE a=18968;\nUPDATE t2 SET b=36823 WHERE a=18969;\nUPDATE t2 SET b=74910 WHERE a=18970;\nUPDATE t2 SET b=1610 WHERE a=18971;\nUPDATE t2 SET b=84171 WHERE a=18972;\nUPDATE t2 SET b=59986 WHERE a=18973;\nUPDATE t2 SET b=71512 WHERE a=18974;\nUPDATE t2 SET b=91743 WHERE a=18975;\nUPDATE t2 SET b=43553 WHERE a=18976;\nUPDATE t2 SET b=49204 WHERE a=18977;\nUPDATE t2 SET b=65568 WHERE a=18978;\nUPDATE t2 SET b=60034 WHERE a=18979;\nUPDATE t2 SET b=97755 WHERE a=18980;\nUPDATE t2 SET b=85474 WHERE a=18981;\nUPDATE t2 SET b=97563 WHERE a=18982;\nUPDATE t2 SET b=17097 WHERE a=18983;\nUPDATE t2 SET b=46593 WHERE a=18984;\nUPDATE t2 SET b=60083 WHERE a=18985;\nUPDATE t2 SET b=12695 WHERE a=18986;\nUPDATE t2 SET b=82679 WHERE a=18987;\nUPDATE t2 SET b=68030 WHERE a=18988;\nUPDATE t2 SET b=78040 WHERE a=18989;\nUPDATE t2 SET b=506 WHERE a=18990;\nUPDATE t2 SET b=9330 WHERE a=18991;\nUPDATE t2 SET b=69220 WHERE a=18992;\nUPDATE t2 SET b=80602 WHERE a=18993;\nUPDATE t2 SET b=62313 WHERE a=18994;\nUPDATE t2 SET b=20674 WHERE a=18995;\nUPDATE t2 SET b=64161 WHERE a=18996;\nUPDATE t2 SET b=75898 WHERE a=18997;\nUPDATE t2 SET b=14208 WHERE a=18998;\nUPDATE t2 SET b=72310 WHERE a=18999;\nUPDATE t2 SET b=59343 WHERE a=19000;\nUPDATE t2 SET b=87001 WHERE a=19001;\nUPDATE t2 SET b=82078 WHERE a=19002;\nUPDATE t2 SET b=30657 WHERE a=19003;\nUPDATE t2 SET b=55113 WHERE a=19004;\nUPDATE t2 SET b=7104 WHERE a=19005;\nUPDATE t2 SET b=15788 WHERE a=19006;\nUPDATE t2 SET b=75819 WHERE a=19007;\nUPDATE t2 SET b=74802 WHERE a=19008;\nUPDATE t2 SET b=23577 WHERE a=19009;\nUPDATE t2 SET b=23313 WHERE a=19010;\nUPDATE t2 SET b=19193 WHERE a=19011;\nUPDATE t2 SET b=89497 WHERE a=19012;\nUPDATE t2 SET b=39381 WHERE a=19013;\nUPDATE t2 SET b=92008 WHERE a=19014;\nUPDATE t2 SET b=5626 WHERE a=19015;\nUPDATE t2 SET b=91767 WHERE a=19016;\nUPDATE t2 SET b=79611 WHERE a=19017;\nUPDATE t2 SET b=7549 WHERE a=19018;\nUPDATE t2 SET b=30378 WHERE a=19019;\nUPDATE t2 SET b=9220 WHERE a=19020;\nUPDATE t2 SET b=31474 WHERE a=19021;\nUPDATE t2 SET b=51377 WHERE a=19022;\nUPDATE t2 SET b=68674 WHERE a=19023;\nUPDATE t2 SET b=24240 WHERE a=19024;\nUPDATE t2 SET b=8720 WHERE a=19025;\nUPDATE t2 SET b=8924 WHERE a=19026;\nUPDATE t2 SET b=58577 WHERE a=19027;\nUPDATE t2 SET b=36610 WHERE a=19028;\nUPDATE t2 SET b=6389 WHERE a=19029;\nUPDATE t2 SET b=66037 WHERE a=19030;\nUPDATE t2 SET b=29526 WHERE a=19031;\nUPDATE t2 SET b=55271 WHERE a=19032;\nUPDATE t2 SET b=26644 WHERE a=19033;\nUPDATE t2 SET b=46583 WHERE a=19034;\nUPDATE t2 SET b=5843 WHERE a=19035;\nUPDATE t2 SET b=43124 WHERE a=19036;\nUPDATE t2 SET b=9208 WHERE a=19037;\nUPDATE t2 SET b=15216 WHERE a=19038;\nUPDATE t2 SET b=76635 WHERE a=19039;\nUPDATE t2 SET b=21693 WHERE a=19040;\nUPDATE t2 SET b=76270 WHERE a=19041;\nUPDATE t2 SET b=83788 WHERE a=19042;\nUPDATE t2 SET b=74913 WHERE a=19043;\nUPDATE t2 SET b=762 WHERE a=19044;\nUPDATE t2 SET b=80481 WHERE a=19045;\nUPDATE t2 SET b=80862 WHERE a=19046;\nUPDATE t2 SET b=1308 WHERE a=19047;\nUPDATE t2 SET b=2880 WHERE a=19048;\nUPDATE t2 SET b=41381 WHERE a=19049;\nUPDATE t2 SET b=54099 WHERE a=19050;\nUPDATE t2 SET b=4853 WHERE a=19051;\nUPDATE t2 SET b=18209 WHERE a=19052;\nUPDATE t2 SET b=38845 WHERE a=19053;\nUPDATE t2 SET b=48575 WHERE a=19054;\nUPDATE t2 SET b=43482 WHERE a=19055;\nUPDATE t2 SET b=86774 WHERE a=19056;\nUPDATE t2 SET b=46830 WHERE a=19057;\nUPDATE t2 SET b=95795 WHERE a=19058;\nUPDATE t2 SET b=37746 WHERE a=19059;\nUPDATE t2 SET b=43870 WHERE a=19060;\nUPDATE t2 SET b=89437 WHERE a=19061;\nUPDATE t2 SET b=24089 WHERE a=19062;\nUPDATE t2 SET b=42813 WHERE a=19063;\nUPDATE t2 SET b=38296 WHERE a=19064;\nUPDATE t2 SET b=76877 WHERE a=19065;\nUPDATE t2 SET b=41024 WHERE a=19066;\nUPDATE t2 SET b=30233 WHERE a=19067;\nUPDATE t2 SET b=18929 WHERE a=19068;\nUPDATE t2 SET b=59547 WHERE a=19069;\nUPDATE t2 SET b=71118 WHERE a=19070;\nUPDATE t2 SET b=53135 WHERE a=19071;\nUPDATE t2 SET b=35744 WHERE a=19072;\nUPDATE t2 SET b=96711 WHERE a=19073;\nUPDATE t2 SET b=95038 WHERE a=19074;\nUPDATE t2 SET b=71496 WHERE a=19075;\nUPDATE t2 SET b=98117 WHERE a=19076;\nUPDATE t2 SET b=95353 WHERE a=19077;\nUPDATE t2 SET b=84001 WHERE a=19078;\nUPDATE t2 SET b=43592 WHERE a=19079;\nUPDATE t2 SET b=75947 WHERE a=19080;\nUPDATE t2 SET b=37997 WHERE a=19081;\nUPDATE t2 SET b=32103 WHERE a=19082;\nUPDATE t2 SET b=1955 WHERE a=19083;\nUPDATE t2 SET b=44490 WHERE a=19084;\nUPDATE t2 SET b=86015 WHERE a=19085;\nUPDATE t2 SET b=55976 WHERE a=19086;\nUPDATE t2 SET b=92004 WHERE a=19087;\nUPDATE t2 SET b=30857 WHERE a=19088;\nUPDATE t2 SET b=45479 WHERE a=19089;\nUPDATE t2 SET b=2388 WHERE a=19090;\nUPDATE t2 SET b=89291 WHERE a=19091;\nUPDATE t2 SET b=37646 WHERE a=19092;\nUPDATE t2 SET b=24053 WHERE a=19093;\nUPDATE t2 SET b=93616 WHERE a=19094;\nUPDATE t2 SET b=9493 WHERE a=19095;\nUPDATE t2 SET b=10919 WHERE a=19096;\nUPDATE t2 SET b=47327 WHERE a=19097;\nUPDATE t2 SET b=23295 WHERE a=19098;\nUPDATE t2 SET b=52494 WHERE a=19099;\nUPDATE t2 SET b=59357 WHERE a=19100;\nUPDATE t2 SET b=82367 WHERE a=19101;\nUPDATE t2 SET b=52633 WHERE a=19102;\nUPDATE t2 SET b=48492 WHERE a=19103;\nUPDATE t2 SET b=3780 WHERE a=19104;\nUPDATE t2 SET b=179 WHERE a=19105;\nUPDATE t2 SET b=82287 WHERE a=19106;\nUPDATE t2 SET b=50632 WHERE a=19107;\nUPDATE t2 SET b=48496 WHERE a=19108;\nUPDATE t2 SET b=49387 WHERE a=19109;\nUPDATE t2 SET b=75722 WHERE a=19110;\nUPDATE t2 SET b=69504 WHERE a=19111;\nUPDATE t2 SET b=53154 WHERE a=19112;\nUPDATE t2 SET b=88714 WHERE a=19113;\nUPDATE t2 SET b=86975 WHERE a=19114;\nUPDATE t2 SET b=83319 WHERE a=19115;\nUPDATE t2 SET b=52321 WHERE a=19116;\nUPDATE t2 SET b=95667 WHERE a=19117;\nUPDATE t2 SET b=57776 WHERE a=19118;\nUPDATE t2 SET b=47252 WHERE a=19119;\nUPDATE t2 SET b=96332 WHERE a=19120;\nUPDATE t2 SET b=98358 WHERE a=19121;\nUPDATE t2 SET b=20994 WHERE a=19122;\nUPDATE t2 SET b=76308 WHERE a=19123;\nUPDATE t2 SET b=707 WHERE a=19124;\nUPDATE t2 SET b=20393 WHERE a=19125;\nUPDATE t2 SET b=45446 WHERE a=19126;\nUPDATE t2 SET b=80760 WHERE a=19127;\nUPDATE t2 SET b=55002 WHERE a=19128;\nUPDATE t2 SET b=66450 WHERE a=19129;\nUPDATE t2 SET b=78742 WHERE a=19130;\nUPDATE t2 SET b=55908 WHERE a=19131;\nUPDATE t2 SET b=4307 WHERE a=19132;\nUPDATE t2 SET b=4296 WHERE a=19133;\nUPDATE t2 SET b=34919 WHERE a=19134;\nUPDATE t2 SET b=80423 WHERE a=19135;\nUPDATE t2 SET b=27475 WHERE a=19136;\nUPDATE t2 SET b=63045 WHERE a=19137;\nUPDATE t2 SET b=70230 WHERE a=19138;\nUPDATE t2 SET b=63399 WHERE a=19139;\nUPDATE t2 SET b=9313 WHERE a=19140;\nUPDATE t2 SET b=87001 WHERE a=19141;\nUPDATE t2 SET b=52224 WHERE a=19142;\nUPDATE t2 SET b=15457 WHERE a=19143;\nUPDATE t2 SET b=4633 WHERE a=19144;\nUPDATE t2 SET b=56653 WHERE a=19145;\nUPDATE t2 SET b=65859 WHERE a=19146;\nUPDATE t2 SET b=5387 WHERE a=19147;\nUPDATE t2 SET b=7216 WHERE a=19148;\nUPDATE t2 SET b=32923 WHERE a=19149;\nUPDATE t2 SET b=53657 WHERE a=19150;\nUPDATE t2 SET b=80511 WHERE a=19151;\nUPDATE t2 SET b=61493 WHERE a=19152;\nUPDATE t2 SET b=27749 WHERE a=19153;\nUPDATE t2 SET b=33897 WHERE a=19154;\nUPDATE t2 SET b=45254 WHERE a=19155;\nUPDATE t2 SET b=90062 WHERE a=19156;\nUPDATE t2 SET b=24043 WHERE a=19157;\nUPDATE t2 SET b=60480 WHERE a=19158;\nUPDATE t2 SET b=63771 WHERE a=19159;\nUPDATE t2 SET b=45750 WHERE a=19160;\nUPDATE t2 SET b=61287 WHERE a=19161;\nUPDATE t2 SET b=1509 WHERE a=19162;\nUPDATE t2 SET b=77211 WHERE a=19163;\nUPDATE t2 SET b=27118 WHERE a=19164;\nUPDATE t2 SET b=16410 WHERE a=19165;\nUPDATE t2 SET b=99887 WHERE a=19166;\nUPDATE t2 SET b=9035 WHERE a=19167;\nUPDATE t2 SET b=69163 WHERE a=19168;\nUPDATE t2 SET b=35692 WHERE a=19169;\nUPDATE t2 SET b=29281 WHERE a=19170;\nUPDATE t2 SET b=38416 WHERE a=19171;\nUPDATE t2 SET b=40149 WHERE a=19172;\nUPDATE t2 SET b=6869 WHERE a=19173;\nUPDATE t2 SET b=12429 WHERE a=19174;\nUPDATE t2 SET b=5568 WHERE a=19175;\nUPDATE t2 SET b=3639 WHERE a=19176;\nUPDATE t2 SET b=87260 WHERE a=19177;\nUPDATE t2 SET b=99936 WHERE a=19178;\nUPDATE t2 SET b=10414 WHERE a=19179;\nUPDATE t2 SET b=50014 WHERE a=19180;\nUPDATE t2 SET b=66378 WHERE a=19181;\nUPDATE t2 SET b=5071 WHERE a=19182;\nUPDATE t2 SET b=90827 WHERE a=19183;\nUPDATE t2 SET b=33989 WHERE a=19184;\nUPDATE t2 SET b=88706 WHERE a=19185;\nUPDATE t2 SET b=51723 WHERE a=19186;\nUPDATE t2 SET b=13832 WHERE a=19187;\nUPDATE t2 SET b=70863 WHERE a=19188;\nUPDATE t2 SET b=85173 WHERE a=19189;\nUPDATE t2 SET b=63940 WHERE a=19190;\nUPDATE t2 SET b=86315 WHERE a=19191;\nUPDATE t2 SET b=48820 WHERE a=19192;\nUPDATE t2 SET b=88015 WHERE a=19193;\nUPDATE t2 SET b=56010 WHERE a=19194;\nUPDATE t2 SET b=75853 WHERE a=19195;\nUPDATE t2 SET b=41001 WHERE a=19196;\nUPDATE t2 SET b=58437 WHERE a=19197;\nUPDATE t2 SET b=6496 WHERE a=19198;\nUPDATE t2 SET b=72815 WHERE a=19199;\nUPDATE t2 SET b=29450 WHERE a=19200;\nUPDATE t2 SET b=39389 WHERE a=19201;\nUPDATE t2 SET b=15659 WHERE a=19202;\nUPDATE t2 SET b=17192 WHERE a=19203;\nUPDATE t2 SET b=22766 WHERE a=19204;\nUPDATE t2 SET b=13636 WHERE a=19205;\nUPDATE t2 SET b=23624 WHERE a=19206;\nUPDATE t2 SET b=79129 WHERE a=19207;\nUPDATE t2 SET b=70915 WHERE a=19208;\nUPDATE t2 SET b=75768 WHERE a=19209;\nUPDATE t2 SET b=16775 WHERE a=19210;\nUPDATE t2 SET b=3395 WHERE a=19211;\nUPDATE t2 SET b=77244 WHERE a=19212;\nUPDATE t2 SET b=80607 WHERE a=19213;\nUPDATE t2 SET b=70601 WHERE a=19214;\nUPDATE t2 SET b=4455 WHERE a=19215;\nUPDATE t2 SET b=74734 WHERE a=19216;\nUPDATE t2 SET b=74055 WHERE a=19217;\nUPDATE t2 SET b=22427 WHERE a=19218;\nUPDATE t2 SET b=143 WHERE a=19219;\nUPDATE t2 SET b=11531 WHERE a=19220;\nUPDATE t2 SET b=7631 WHERE a=19221;\nUPDATE t2 SET b=92745 WHERE a=19222;\nUPDATE t2 SET b=20040 WHERE a=19223;\nUPDATE t2 SET b=25711 WHERE a=19224;\nUPDATE t2 SET b=2302 WHERE a=19225;\nUPDATE t2 SET b=98224 WHERE a=19226;\nUPDATE t2 SET b=58815 WHERE a=19227;\nUPDATE t2 SET b=67441 WHERE a=19228;\nUPDATE t2 SET b=48035 WHERE a=19229;\nUPDATE t2 SET b=98828 WHERE a=19230;\nUPDATE t2 SET b=93102 WHERE a=19231;\nUPDATE t2 SET b=59043 WHERE a=19232;\nUPDATE t2 SET b=27422 WHERE a=19233;\nUPDATE t2 SET b=39404 WHERE a=19234;\nUPDATE t2 SET b=18013 WHERE a=19235;\nUPDATE t2 SET b=22058 WHERE a=19236;\nUPDATE t2 SET b=57945 WHERE a=19237;\nUPDATE t2 SET b=12327 WHERE a=19238;\nUPDATE t2 SET b=88175 WHERE a=19239;\nUPDATE t2 SET b=74788 WHERE a=19240;\nUPDATE t2 SET b=49925 WHERE a=19241;\nUPDATE t2 SET b=30008 WHERE a=19242;\nUPDATE t2 SET b=65284 WHERE a=19243;\nUPDATE t2 SET b=61081 WHERE a=19244;\nUPDATE t2 SET b=78353 WHERE a=19245;\nUPDATE t2 SET b=72945 WHERE a=19246;\nUPDATE t2 SET b=26338 WHERE a=19247;\nUPDATE t2 SET b=69694 WHERE a=19248;\nUPDATE t2 SET b=75259 WHERE a=19249;\nUPDATE t2 SET b=404 WHERE a=19250;\nUPDATE t2 SET b=97603 WHERE a=19251;\nUPDATE t2 SET b=56002 WHERE a=19252;\nUPDATE t2 SET b=5394 WHERE a=19253;\nUPDATE t2 SET b=40257 WHERE a=19254;\nUPDATE t2 SET b=44533 WHERE a=19255;\nUPDATE t2 SET b=24224 WHERE a=19256;\nUPDATE t2 SET b=61081 WHERE a=19257;\nUPDATE t2 SET b=32531 WHERE a=19258;\nUPDATE t2 SET b=38177 WHERE a=19259;\nUPDATE t2 SET b=98570 WHERE a=19260;\nUPDATE t2 SET b=19717 WHERE a=19261;\nUPDATE t2 SET b=81565 WHERE a=19262;\nUPDATE t2 SET b=77514 WHERE a=19263;\nUPDATE t2 SET b=40723 WHERE a=19264;\nUPDATE t2 SET b=19602 WHERE a=19265;\nUPDATE t2 SET b=81247 WHERE a=19266;\nUPDATE t2 SET b=10029 WHERE a=19267;\nUPDATE t2 SET b=68231 WHERE a=19268;\nUPDATE t2 SET b=54639 WHERE a=19269;\nUPDATE t2 SET b=58161 WHERE a=19270;\nUPDATE t2 SET b=87626 WHERE a=19271;\nUPDATE t2 SET b=16787 WHERE a=19272;\nUPDATE t2 SET b=75569 WHERE a=19273;\nUPDATE t2 SET b=9867 WHERE a=19274;\nUPDATE t2 SET b=74206 WHERE a=19275;\nUPDATE t2 SET b=50752 WHERE a=19276;\nUPDATE t2 SET b=86128 WHERE a=19277;\nUPDATE t2 SET b=4567 WHERE a=19278;\nUPDATE t2 SET b=5981 WHERE a=19279;\nUPDATE t2 SET b=61108 WHERE a=19280;\nUPDATE t2 SET b=82365 WHERE a=19281;\nUPDATE t2 SET b=37408 WHERE a=19282;\nUPDATE t2 SET b=86315 WHERE a=19283;\nUPDATE t2 SET b=69849 WHERE a=19284;\nUPDATE t2 SET b=47019 WHERE a=19285;\nUPDATE t2 SET b=82147 WHERE a=19286;\nUPDATE t2 SET b=5431 WHERE a=19287;\nUPDATE t2 SET b=31007 WHERE a=19288;\nUPDATE t2 SET b=91984 WHERE a=19289;\nUPDATE t2 SET b=15656 WHERE a=19290;\nUPDATE t2 SET b=43416 WHERE a=19291;\nUPDATE t2 SET b=31464 WHERE a=19292;\nUPDATE t2 SET b=17565 WHERE a=19293;\nUPDATE t2 SET b=86911 WHERE a=19294;\nUPDATE t2 SET b=17998 WHERE a=19295;\nUPDATE t2 SET b=50290 WHERE a=19296;\nUPDATE t2 SET b=22672 WHERE a=19297;\nUPDATE t2 SET b=71939 WHERE a=19298;\nUPDATE t2 SET b=38861 WHERE a=19299;\nUPDATE t2 SET b=20173 WHERE a=19300;\nUPDATE t2 SET b=84197 WHERE a=19301;\nUPDATE t2 SET b=609 WHERE a=19302;\nUPDATE t2 SET b=6432 WHERE a=19303;\nUPDATE t2 SET b=11512 WHERE a=19304;\nUPDATE t2 SET b=35782 WHERE a=19305;\nUPDATE t2 SET b=47275 WHERE a=19306;\nUPDATE t2 SET b=73229 WHERE a=19307;\nUPDATE t2 SET b=21369 WHERE a=19308;\nUPDATE t2 SET b=62906 WHERE a=19309;\nUPDATE t2 SET b=37493 WHERE a=19310;\nUPDATE t2 SET b=54777 WHERE a=19311;\nUPDATE t2 SET b=62512 WHERE a=19312;\nUPDATE t2 SET b=37925 WHERE a=19313;\nUPDATE t2 SET b=74292 WHERE a=19314;\nUPDATE t2 SET b=36595 WHERE a=19315;\nUPDATE t2 SET b=21481 WHERE a=19316;\nUPDATE t2 SET b=15506 WHERE a=19317;\nUPDATE t2 SET b=51922 WHERE a=19318;\nUPDATE t2 SET b=58977 WHERE a=19319;\nUPDATE t2 SET b=1242 WHERE a=19320;\nUPDATE t2 SET b=42770 WHERE a=19321;\nUPDATE t2 SET b=52579 WHERE a=19322;\nUPDATE t2 SET b=7514 WHERE a=19323;\nUPDATE t2 SET b=98502 WHERE a=19324;\nUPDATE t2 SET b=80675 WHERE a=19325;\nUPDATE t2 SET b=21405 WHERE a=19326;\nUPDATE t2 SET b=78311 WHERE a=19327;\nUPDATE t2 SET b=92566 WHERE a=19328;\nUPDATE t2 SET b=27589 WHERE a=19329;\nUPDATE t2 SET b=91350 WHERE a=19330;\nUPDATE t2 SET b=93301 WHERE a=19331;\nUPDATE t2 SET b=34235 WHERE a=19332;\nUPDATE t2 SET b=77103 WHERE a=19333;\nUPDATE t2 SET b=4956 WHERE a=19334;\nUPDATE t2 SET b=70075 WHERE a=19335;\nUPDATE t2 SET b=50378 WHERE a=19336;\nUPDATE t2 SET b=60095 WHERE a=19337;\nUPDATE t2 SET b=95068 WHERE a=19338;\nUPDATE t2 SET b=44819 WHERE a=19339;\nUPDATE t2 SET b=3311 WHERE a=19340;\nUPDATE t2 SET b=49851 WHERE a=19341;\nUPDATE t2 SET b=45450 WHERE a=19342;\nUPDATE t2 SET b=6773 WHERE a=19343;\nUPDATE t2 SET b=71648 WHERE a=19344;\nUPDATE t2 SET b=79136 WHERE a=19345;\nUPDATE t2 SET b=54209 WHERE a=19346;\nUPDATE t2 SET b=28038 WHERE a=19347;\nUPDATE t2 SET b=1535 WHERE a=19348;\nUPDATE t2 SET b=93295 WHERE a=19349;\nUPDATE t2 SET b=63633 WHERE a=19350;\nUPDATE t2 SET b=37198 WHERE a=19351;\nUPDATE t2 SET b=92880 WHERE a=19352;\nUPDATE t2 SET b=35069 WHERE a=19353;\nUPDATE t2 SET b=78648 WHERE a=19354;\nUPDATE t2 SET b=86209 WHERE a=19355;\nUPDATE t2 SET b=84945 WHERE a=19356;\nUPDATE t2 SET b=23608 WHERE a=19357;\nUPDATE t2 SET b=20133 WHERE a=19358;\nUPDATE t2 SET b=70500 WHERE a=19359;\nUPDATE t2 SET b=39954 WHERE a=19360;\nUPDATE t2 SET b=23780 WHERE a=19361;\nUPDATE t2 SET b=40377 WHERE a=19362;\nUPDATE t2 SET b=4815 WHERE a=19363;\nUPDATE t2 SET b=69103 WHERE a=19364;\nUPDATE t2 SET b=12583 WHERE a=19365;\nUPDATE t2 SET b=77203 WHERE a=19366;\nUPDATE t2 SET b=93586 WHERE a=19367;\nUPDATE t2 SET b=19711 WHERE a=19368;\nUPDATE t2 SET b=15718 WHERE a=19369;\nUPDATE t2 SET b=69763 WHERE a=19370;\nUPDATE t2 SET b=18678 WHERE a=19371;\nUPDATE t2 SET b=63399 WHERE a=19372;\nUPDATE t2 SET b=22830 WHERE a=19373;\nUPDATE t2 SET b=6452 WHERE a=19374;\nUPDATE t2 SET b=86033 WHERE a=19375;\nUPDATE t2 SET b=37012 WHERE a=19376;\nUPDATE t2 SET b=85034 WHERE a=19377;\nUPDATE t2 SET b=21631 WHERE a=19378;\nUPDATE t2 SET b=24025 WHERE a=19379;\nUPDATE t2 SET b=85199 WHERE a=19380;\nUPDATE t2 SET b=439 WHERE a=19381;\nUPDATE t2 SET b=58038 WHERE a=19382;\nUPDATE t2 SET b=88307 WHERE a=19383;\nUPDATE t2 SET b=58362 WHERE a=19384;\nUPDATE t2 SET b=13386 WHERE a=19385;\nUPDATE t2 SET b=24209 WHERE a=19386;\nUPDATE t2 SET b=36985 WHERE a=19387;\nUPDATE t2 SET b=94617 WHERE a=19388;\nUPDATE t2 SET b=18786 WHERE a=19389;\nUPDATE t2 SET b=29935 WHERE a=19390;\nUPDATE t2 SET b=8095 WHERE a=19391;\nUPDATE t2 SET b=36875 WHERE a=19392;\nUPDATE t2 SET b=8821 WHERE a=19393;\nUPDATE t2 SET b=1969 WHERE a=19394;\nUPDATE t2 SET b=10820 WHERE a=19395;\nUPDATE t2 SET b=83391 WHERE a=19396;\nUPDATE t2 SET b=60895 WHERE a=19397;\nUPDATE t2 SET b=68181 WHERE a=19398;\nUPDATE t2 SET b=43085 WHERE a=19399;\nUPDATE t2 SET b=53357 WHERE a=19400;\nUPDATE t2 SET b=29582 WHERE a=19401;\nUPDATE t2 SET b=255 WHERE a=19402;\nUPDATE t2 SET b=97357 WHERE a=19403;\nUPDATE t2 SET b=98236 WHERE a=19404;\nUPDATE t2 SET b=15666 WHERE a=19405;\nUPDATE t2 SET b=94554 WHERE a=19406;\nUPDATE t2 SET b=20259 WHERE a=19407;\nUPDATE t2 SET b=98727 WHERE a=19408;\nUPDATE t2 SET b=76514 WHERE a=19409;\nUPDATE t2 SET b=30133 WHERE a=19410;\nUPDATE t2 SET b=13673 WHERE a=19411;\nUPDATE t2 SET b=62432 WHERE a=19412;\nUPDATE t2 SET b=46364 WHERE a=19413;\nUPDATE t2 SET b=7212 WHERE a=19414;\nUPDATE t2 SET b=33088 WHERE a=19415;\nUPDATE t2 SET b=45171 WHERE a=19416;\nUPDATE t2 SET b=83356 WHERE a=19417;\nUPDATE t2 SET b=11682 WHERE a=19418;\nUPDATE t2 SET b=87883 WHERE a=19419;\nUPDATE t2 SET b=87501 WHERE a=19420;\nUPDATE t2 SET b=36115 WHERE a=19421;\nUPDATE t2 SET b=65308 WHERE a=19422;\nUPDATE t2 SET b=83918 WHERE a=19423;\nUPDATE t2 SET b=50269 WHERE a=19424;\nUPDATE t2 SET b=62739 WHERE a=19425;\nUPDATE t2 SET b=56865 WHERE a=19426;\nUPDATE t2 SET b=51552 WHERE a=19427;\nUPDATE t2 SET b=43494 WHERE a=19428;\nUPDATE t2 SET b=53048 WHERE a=19429;\nUPDATE t2 SET b=88595 WHERE a=19430;\nUPDATE t2 SET b=17577 WHERE a=19431;\nUPDATE t2 SET b=97764 WHERE a=19432;\nUPDATE t2 SET b=69433 WHERE a=19433;\nUPDATE t2 SET b=90997 WHERE a=19434;\nUPDATE t2 SET b=68129 WHERE a=19435;\nUPDATE t2 SET b=94617 WHERE a=19436;\nUPDATE t2 SET b=79427 WHERE a=19437;\nUPDATE t2 SET b=27644 WHERE a=19438;\nUPDATE t2 SET b=73240 WHERE a=19439;\nUPDATE t2 SET b=8826 WHERE a=19440;\nUPDATE t2 SET b=21117 WHERE a=19441;\nUPDATE t2 SET b=73168 WHERE a=19442;\nUPDATE t2 SET b=11087 WHERE a=19443;\nUPDATE t2 SET b=42396 WHERE a=19444;\nUPDATE t2 SET b=46736 WHERE a=19445;\nUPDATE t2 SET b=4436 WHERE a=19446;\nUPDATE t2 SET b=20264 WHERE a=19447;\nUPDATE t2 SET b=90194 WHERE a=19448;\nUPDATE t2 SET b=9805 WHERE a=19449;\nUPDATE t2 SET b=48965 WHERE a=19450;\nUPDATE t2 SET b=68084 WHERE a=19451;\nUPDATE t2 SET b=61273 WHERE a=19452;\nUPDATE t2 SET b=28225 WHERE a=19453;\nUPDATE t2 SET b=39555 WHERE a=19454;\nUPDATE t2 SET b=88373 WHERE a=19455;\nUPDATE t2 SET b=54218 WHERE a=19456;\nUPDATE t2 SET b=2994 WHERE a=19457;\nUPDATE t2 SET b=4999 WHERE a=19458;\nUPDATE t2 SET b=92585 WHERE a=19459;\nUPDATE t2 SET b=31403 WHERE a=19460;\nUPDATE t2 SET b=18276 WHERE a=19461;\nUPDATE t2 SET b=43396 WHERE a=19462;\nUPDATE t2 SET b=82739 WHERE a=19463;\nUPDATE t2 SET b=98759 WHERE a=19464;\nUPDATE t2 SET b=50866 WHERE a=19465;\nUPDATE t2 SET b=88712 WHERE a=19466;\nUPDATE t2 SET b=74407 WHERE a=19467;\nUPDATE t2 SET b=70026 WHERE a=19468;\nUPDATE t2 SET b=46719 WHERE a=19469;\nUPDATE t2 SET b=24405 WHERE a=19470;\nUPDATE t2 SET b=22643 WHERE a=19471;\nUPDATE t2 SET b=92717 WHERE a=19472;\nUPDATE t2 SET b=57971 WHERE a=19473;\nUPDATE t2 SET b=59499 WHERE a=19474;\nUPDATE t2 SET b=418 WHERE a=19475;\nUPDATE t2 SET b=40237 WHERE a=19476;\nUPDATE t2 SET b=65847 WHERE a=19477;\nUPDATE t2 SET b=95214 WHERE a=19478;\nUPDATE t2 SET b=15268 WHERE a=19479;\nUPDATE t2 SET b=11583 WHERE a=19480;\nUPDATE t2 SET b=33379 WHERE a=19481;\nUPDATE t2 SET b=85382 WHERE a=19482;\nUPDATE t2 SET b=84640 WHERE a=19483;\nUPDATE t2 SET b=49875 WHERE a=19484;\nUPDATE t2 SET b=2322 WHERE a=19485;\nUPDATE t2 SET b=61859 WHERE a=19486;\nUPDATE t2 SET b=98561 WHERE a=19487;\nUPDATE t2 SET b=55416 WHERE a=19488;\nUPDATE t2 SET b=83783 WHERE a=19489;\nUPDATE t2 SET b=98261 WHERE a=19490;\nUPDATE t2 SET b=59503 WHERE a=19491;\nUPDATE t2 SET b=22337 WHERE a=19492;\nUPDATE t2 SET b=8921 WHERE a=19493;\nUPDATE t2 SET b=84554 WHERE a=19494;\nUPDATE t2 SET b=32090 WHERE a=19495;\nUPDATE t2 SET b=92707 WHERE a=19496;\nUPDATE t2 SET b=98159 WHERE a=19497;\nUPDATE t2 SET b=80881 WHERE a=19498;\nUPDATE t2 SET b=1018 WHERE a=19499;\nUPDATE t2 SET b=84064 WHERE a=19500;\nUPDATE t2 SET b=27386 WHERE a=19501;\nUPDATE t2 SET b=23744 WHERE a=19502;\nUPDATE t2 SET b=56662 WHERE a=19503;\nUPDATE t2 SET b=50537 WHERE a=19504;\nUPDATE t2 SET b=77633 WHERE a=19505;\nUPDATE t2 SET b=33699 WHERE a=19506;\nUPDATE t2 SET b=18191 WHERE a=19507;\nUPDATE t2 SET b=48136 WHERE a=19508;\nUPDATE t2 SET b=70147 WHERE a=19509;\nUPDATE t2 SET b=79188 WHERE a=19510;\nUPDATE t2 SET b=47177 WHERE a=19511;\nUPDATE t2 SET b=85035 WHERE a=19512;\nUPDATE t2 SET b=77862 WHERE a=19513;\nUPDATE t2 SET b=63248 WHERE a=19514;\nUPDATE t2 SET b=16168 WHERE a=19515;\nUPDATE t2 SET b=44688 WHERE a=19516;\nUPDATE t2 SET b=57332 WHERE a=19517;\nUPDATE t2 SET b=95633 WHERE a=19518;\nUPDATE t2 SET b=82713 WHERE a=19519;\nUPDATE t2 SET b=35564 WHERE a=19520;\nUPDATE t2 SET b=48453 WHERE a=19521;\nUPDATE t2 SET b=61448 WHERE a=19522;\nUPDATE t2 SET b=83921 WHERE a=19523;\nUPDATE t2 SET b=38773 WHERE a=19524;\nUPDATE t2 SET b=39287 WHERE a=19525;\nUPDATE t2 SET b=77290 WHERE a=19526;\nUPDATE t2 SET b=53245 WHERE a=19527;\nUPDATE t2 SET b=98597 WHERE a=19528;\nUPDATE t2 SET b=86054 WHERE a=19529;\nUPDATE t2 SET b=65931 WHERE a=19530;\nUPDATE t2 SET b=38324 WHERE a=19531;\nUPDATE t2 SET b=25451 WHERE a=19532;\nUPDATE t2 SET b=78680 WHERE a=19533;\nUPDATE t2 SET b=23516 WHERE a=19534;\nUPDATE t2 SET b=19753 WHERE a=19535;\nUPDATE t2 SET b=13816 WHERE a=19536;\nUPDATE t2 SET b=32056 WHERE a=19537;\nUPDATE t2 SET b=49082 WHERE a=19538;\nUPDATE t2 SET b=40336 WHERE a=19539;\nUPDATE t2 SET b=21906 WHERE a=19540;\nUPDATE t2 SET b=55916 WHERE a=19541;\nUPDATE t2 SET b=87088 WHERE a=19542;\nUPDATE t2 SET b=80835 WHERE a=19543;\nUPDATE t2 SET b=17797 WHERE a=19544;\nUPDATE t2 SET b=24764 WHERE a=19545;\nUPDATE t2 SET b=99562 WHERE a=19546;\nUPDATE t2 SET b=2511 WHERE a=19547;\nUPDATE t2 SET b=20030 WHERE a=19548;\nUPDATE t2 SET b=15453 WHERE a=19549;\nUPDATE t2 SET b=67163 WHERE a=19550;\nUPDATE t2 SET b=41588 WHERE a=19551;\nUPDATE t2 SET b=2668 WHERE a=19552;\nUPDATE t2 SET b=59657 WHERE a=19553;\nUPDATE t2 SET b=39704 WHERE a=19554;\nUPDATE t2 SET b=89698 WHERE a=19555;\nUPDATE t2 SET b=71499 WHERE a=19556;\nUPDATE t2 SET b=9072 WHERE a=19557;\nUPDATE t2 SET b=20020 WHERE a=19558;\nUPDATE t2 SET b=95332 WHERE a=19559;\nUPDATE t2 SET b=12086 WHERE a=19560;\nUPDATE t2 SET b=6096 WHERE a=19561;\nUPDATE t2 SET b=67415 WHERE a=19562;\nUPDATE t2 SET b=35869 WHERE a=19563;\nUPDATE t2 SET b=40315 WHERE a=19564;\nUPDATE t2 SET b=81630 WHERE a=19565;\nUPDATE t2 SET b=34395 WHERE a=19566;\nUPDATE t2 SET b=98208 WHERE a=19567;\nUPDATE t2 SET b=3570 WHERE a=19568;\nUPDATE t2 SET b=85585 WHERE a=19569;\nUPDATE t2 SET b=57728 WHERE a=19570;\nUPDATE t2 SET b=97848 WHERE a=19571;\nUPDATE t2 SET b=86009 WHERE a=19572;\nUPDATE t2 SET b=79109 WHERE a=19573;\nUPDATE t2 SET b=21855 WHERE a=19574;\nUPDATE t2 SET b=61611 WHERE a=19575;\nUPDATE t2 SET b=19795 WHERE a=19576;\nUPDATE t2 SET b=28507 WHERE a=19577;\nUPDATE t2 SET b=15448 WHERE a=19578;\nUPDATE t2 SET b=72103 WHERE a=19579;\nUPDATE t2 SET b=22434 WHERE a=19580;\nUPDATE t2 SET b=96317 WHERE a=19581;\nUPDATE t2 SET b=39685 WHERE a=19582;\nUPDATE t2 SET b=95585 WHERE a=19583;\nUPDATE t2 SET b=43969 WHERE a=19584;\nUPDATE t2 SET b=2567 WHERE a=19585;\nUPDATE t2 SET b=47500 WHERE a=19586;\nUPDATE t2 SET b=49282 WHERE a=19587;\nUPDATE t2 SET b=42199 WHERE a=19588;\nUPDATE t2 SET b=62408 WHERE a=19589;\nUPDATE t2 SET b=79332 WHERE a=19590;\nUPDATE t2 SET b=40763 WHERE a=19591;\nUPDATE t2 SET b=41139 WHERE a=19592;\nUPDATE t2 SET b=99891 WHERE a=19593;\nUPDATE t2 SET b=5569 WHERE a=19594;\nUPDATE t2 SET b=12862 WHERE a=19595;\nUPDATE t2 SET b=41403 WHERE a=19596;\nUPDATE t2 SET b=42507 WHERE a=19597;\nUPDATE t2 SET b=93416 WHERE a=19598;\nUPDATE t2 SET b=4091 WHERE a=19599;\nUPDATE t2 SET b=11108 WHERE a=19600;\nUPDATE t2 SET b=65174 WHERE a=19601;\nUPDATE t2 SET b=32667 WHERE a=19602;\nUPDATE t2 SET b=53741 WHERE a=19603;\nUPDATE t2 SET b=92703 WHERE a=19604;\nUPDATE t2 SET b=86734 WHERE a=19605;\nUPDATE t2 SET b=85419 WHERE a=19606;\nUPDATE t2 SET b=73555 WHERE a=19607;\nUPDATE t2 SET b=30046 WHERE a=19608;\nUPDATE t2 SET b=39392 WHERE a=19609;\nUPDATE t2 SET b=25583 WHERE a=19610;\nUPDATE t2 SET b=39976 WHERE a=19611;\nUPDATE t2 SET b=61183 WHERE a=19612;\nUPDATE t2 SET b=54998 WHERE a=19613;\nUPDATE t2 SET b=45767 WHERE a=19614;\nUPDATE t2 SET b=87278 WHERE a=19615;\nUPDATE t2 SET b=14439 WHERE a=19616;\nUPDATE t2 SET b=45226 WHERE a=19617;\nUPDATE t2 SET b=5879 WHERE a=19618;\nUPDATE t2 SET b=51617 WHERE a=19619;\nUPDATE t2 SET b=20216 WHERE a=19620;\nUPDATE t2 SET b=81229 WHERE a=19621;\nUPDATE t2 SET b=78006 WHERE a=19622;\nUPDATE t2 SET b=69098 WHERE a=19623;\nUPDATE t2 SET b=34762 WHERE a=19624;\nUPDATE t2 SET b=78835 WHERE a=19625;\nUPDATE t2 SET b=58671 WHERE a=19626;\nUPDATE t2 SET b=37659 WHERE a=19627;\nUPDATE t2 SET b=35937 WHERE a=19628;\nUPDATE t2 SET b=40965 WHERE a=19629;\nUPDATE t2 SET b=5028 WHERE a=19630;\nUPDATE t2 SET b=76319 WHERE a=19631;\nUPDATE t2 SET b=93927 WHERE a=19632;\nUPDATE t2 SET b=41329 WHERE a=19633;\nUPDATE t2 SET b=80536 WHERE a=19634;\nUPDATE t2 SET b=58667 WHERE a=19635;\nUPDATE t2 SET b=89851 WHERE a=19636;\nUPDATE t2 SET b=75205 WHERE a=19637;\nUPDATE t2 SET b=54994 WHERE a=19638;\nUPDATE t2 SET b=56515 WHERE a=19639;\nUPDATE t2 SET b=9587 WHERE a=19640;\nUPDATE t2 SET b=80925 WHERE a=19641;\nUPDATE t2 SET b=18932 WHERE a=19642;\nUPDATE t2 SET b=90277 WHERE a=19643;\nUPDATE t2 SET b=20430 WHERE a=19644;\nUPDATE t2 SET b=49674 WHERE a=19645;\nUPDATE t2 SET b=3944 WHERE a=19646;\nUPDATE t2 SET b=67861 WHERE a=19647;\nUPDATE t2 SET b=52707 WHERE a=19648;\nUPDATE t2 SET b=8380 WHERE a=19649;\nUPDATE t2 SET b=87362 WHERE a=19650;\nUPDATE t2 SET b=58315 WHERE a=19651;\nUPDATE t2 SET b=84876 WHERE a=19652;\nUPDATE t2 SET b=10081 WHERE a=19653;\nUPDATE t2 SET b=67383 WHERE a=19654;\nUPDATE t2 SET b=53908 WHERE a=19655;\nUPDATE t2 SET b=72099 WHERE a=19656;\nUPDATE t2 SET b=14800 WHERE a=19657;\nUPDATE t2 SET b=84197 WHERE a=19658;\nUPDATE t2 SET b=62196 WHERE a=19659;\nUPDATE t2 SET b=40540 WHERE a=19660;\nUPDATE t2 SET b=62635 WHERE a=19661;\nUPDATE t2 SET b=97113 WHERE a=19662;\nUPDATE t2 SET b=51169 WHERE a=19663;\nUPDATE t2 SET b=47027 WHERE a=19664;\nUPDATE t2 SET b=84803 WHERE a=19665;\nUPDATE t2 SET b=11293 WHERE a=19666;\nUPDATE t2 SET b=53087 WHERE a=19667;\nUPDATE t2 SET b=24587 WHERE a=19668;\nUPDATE t2 SET b=87766 WHERE a=19669;\nUPDATE t2 SET b=58092 WHERE a=19670;\nUPDATE t2 SET b=19290 WHERE a=19671;\nUPDATE t2 SET b=59197 WHERE a=19672;\nUPDATE t2 SET b=44041 WHERE a=19673;\nUPDATE t2 SET b=40450 WHERE a=19674;\nUPDATE t2 SET b=54639 WHERE a=19675;\nUPDATE t2 SET b=8279 WHERE a=19676;\nUPDATE t2 SET b=44453 WHERE a=19677;\nUPDATE t2 SET b=64735 WHERE a=19678;\nUPDATE t2 SET b=31838 WHERE a=19679;\nUPDATE t2 SET b=7756 WHERE a=19680;\nUPDATE t2 SET b=60639 WHERE a=19681;\nUPDATE t2 SET b=26249 WHERE a=19682;\nUPDATE t2 SET b=83669 WHERE a=19683;\nUPDATE t2 SET b=68844 WHERE a=19684;\nUPDATE t2 SET b=89156 WHERE a=19685;\nUPDATE t2 SET b=88224 WHERE a=19686;\nUPDATE t2 SET b=71125 WHERE a=19687;\nUPDATE t2 SET b=43986 WHERE a=19688;\nUPDATE t2 SET b=45173 WHERE a=19689;\nUPDATE t2 SET b=34302 WHERE a=19690;\nUPDATE t2 SET b=43002 WHERE a=19691;\nUPDATE t2 SET b=86384 WHERE a=19692;\nUPDATE t2 SET b=55575 WHERE a=19693;\nUPDATE t2 SET b=35240 WHERE a=19694;\nUPDATE t2 SET b=84446 WHERE a=19695;\nUPDATE t2 SET b=16593 WHERE a=19696;\nUPDATE t2 SET b=31912 WHERE a=19697;\nUPDATE t2 SET b=72408 WHERE a=19698;\nUPDATE t2 SET b=19845 WHERE a=19699;\nUPDATE t2 SET b=82677 WHERE a=19700;\nUPDATE t2 SET b=79028 WHERE a=19701;\nUPDATE t2 SET b=75035 WHERE a=19702;\nUPDATE t2 SET b=6359 WHERE a=19703;\nUPDATE t2 SET b=65175 WHERE a=19704;\nUPDATE t2 SET b=59913 WHERE a=19705;\nUPDATE t2 SET b=37607 WHERE a=19706;\nUPDATE t2 SET b=41535 WHERE a=19707;\nUPDATE t2 SET b=70963 WHERE a=19708;\nUPDATE t2 SET b=92537 WHERE a=19709;\nUPDATE t2 SET b=17662 WHERE a=19710;\nUPDATE t2 SET b=39986 WHERE a=19711;\nUPDATE t2 SET b=34789 WHERE a=19712;\nUPDATE t2 SET b=38354 WHERE a=19713;\nUPDATE t2 SET b=7016 WHERE a=19714;\nUPDATE t2 SET b=52450 WHERE a=19715;\nUPDATE t2 SET b=11712 WHERE a=19716;\nUPDATE t2 SET b=27931 WHERE a=19717;\nUPDATE t2 SET b=71749 WHERE a=19718;\nUPDATE t2 SET b=32136 WHERE a=19719;\nUPDATE t2 SET b=90198 WHERE a=19720;\nUPDATE t2 SET b=29256 WHERE a=19721;\nUPDATE t2 SET b=2224 WHERE a=19722;\nUPDATE t2 SET b=80003 WHERE a=19723;\nUPDATE t2 SET b=6772 WHERE a=19724;\nUPDATE t2 SET b=25577 WHERE a=19725;\nUPDATE t2 SET b=7921 WHERE a=19726;\nUPDATE t2 SET b=20899 WHERE a=19727;\nUPDATE t2 SET b=67688 WHERE a=19728;\nUPDATE t2 SET b=77967 WHERE a=19729;\nUPDATE t2 SET b=47292 WHERE a=19730;\nUPDATE t2 SET b=21102 WHERE a=19731;\nUPDATE t2 SET b=92268 WHERE a=19732;\nUPDATE t2 SET b=51430 WHERE a=19733;\nUPDATE t2 SET b=75186 WHERE a=19734;\nUPDATE t2 SET b=49659 WHERE a=19735;\nUPDATE t2 SET b=37955 WHERE a=19736;\nUPDATE t2 SET b=3027 WHERE a=19737;\nUPDATE t2 SET b=82320 WHERE a=19738;\nUPDATE t2 SET b=53285 WHERE a=19739;\nUPDATE t2 SET b=33846 WHERE a=19740;\nUPDATE t2 SET b=50330 WHERE a=19741;\nUPDATE t2 SET b=85648 WHERE a=19742;\nUPDATE t2 SET b=16126 WHERE a=19743;\nUPDATE t2 SET b=11923 WHERE a=19744;\nUPDATE t2 SET b=66094 WHERE a=19745;\nUPDATE t2 SET b=64255 WHERE a=19746;\nUPDATE t2 SET b=73306 WHERE a=19747;\nUPDATE t2 SET b=39728 WHERE a=19748;\nUPDATE t2 SET b=91238 WHERE a=19749;\nUPDATE t2 SET b=14997 WHERE a=19750;\nUPDATE t2 SET b=96799 WHERE a=19751;\nUPDATE t2 SET b=59416 WHERE a=19752;\nUPDATE t2 SET b=98155 WHERE a=19753;\nUPDATE t2 SET b=47063 WHERE a=19754;\nUPDATE t2 SET b=2177 WHERE a=19755;\nUPDATE t2 SET b=78694 WHERE a=19756;\nUPDATE t2 SET b=8853 WHERE a=19757;\nUPDATE t2 SET b=19235 WHERE a=19758;\nUPDATE t2 SET b=21570 WHERE a=19759;\nUPDATE t2 SET b=63365 WHERE a=19760;\nUPDATE t2 SET b=48475 WHERE a=19761;\nUPDATE t2 SET b=31192 WHERE a=19762;\nUPDATE t2 SET b=7219 WHERE a=19763;\nUPDATE t2 SET b=78480 WHERE a=19764;\nUPDATE t2 SET b=34642 WHERE a=19765;\nUPDATE t2 SET b=49397 WHERE a=19766;\nUPDATE t2 SET b=51475 WHERE a=19767;\nUPDATE t2 SET b=63392 WHERE a=19768;\nUPDATE t2 SET b=41986 WHERE a=19769;\nUPDATE t2 SET b=28490 WHERE a=19770;\nUPDATE t2 SET b=8011 WHERE a=19771;\nUPDATE t2 SET b=10501 WHERE a=19772;\nUPDATE t2 SET b=12715 WHERE a=19773;\nUPDATE t2 SET b=93716 WHERE a=19774;\nUPDATE t2 SET b=10778 WHERE a=19775;\nUPDATE t2 SET b=76984 WHERE a=19776;\nUPDATE t2 SET b=24772 WHERE a=19777;\nUPDATE t2 SET b=52958 WHERE a=19778;\nUPDATE t2 SET b=58042 WHERE a=19779;\nUPDATE t2 SET b=35507 WHERE a=19780;\nUPDATE t2 SET b=25385 WHERE a=19781;\nUPDATE t2 SET b=72499 WHERE a=19782;\nUPDATE t2 SET b=40717 WHERE a=19783;\nUPDATE t2 SET b=39190 WHERE a=19784;\nUPDATE t2 SET b=62864 WHERE a=19785;\nUPDATE t2 SET b=66137 WHERE a=19786;\nUPDATE t2 SET b=86105 WHERE a=19787;\nUPDATE t2 SET b=49538 WHERE a=19788;\nUPDATE t2 SET b=91614 WHERE a=19789;\nUPDATE t2 SET b=25547 WHERE a=19790;\nUPDATE t2 SET b=84122 WHERE a=19791;\nUPDATE t2 SET b=83379 WHERE a=19792;\nUPDATE t2 SET b=91456 WHERE a=19793;\nUPDATE t2 SET b=8936 WHERE a=19794;\nUPDATE t2 SET b=6101 WHERE a=19795;\nUPDATE t2 SET b=77451 WHERE a=19796;\nUPDATE t2 SET b=261 WHERE a=19797;\nUPDATE t2 SET b=4907 WHERE a=19798;\nUPDATE t2 SET b=2721 WHERE a=19799;\nUPDATE t2 SET b=94367 WHERE a=19800;\nUPDATE t2 SET b=92970 WHERE a=19801;\nUPDATE t2 SET b=47261 WHERE a=19802;\nUPDATE t2 SET b=12089 WHERE a=19803;\nUPDATE t2 SET b=45365 WHERE a=19804;\nUPDATE t2 SET b=22659 WHERE a=19805;\nUPDATE t2 SET b=12756 WHERE a=19806;\nUPDATE t2 SET b=85973 WHERE a=19807;\nUPDATE t2 SET b=93183 WHERE a=19808;\nUPDATE t2 SET b=40854 WHERE a=19809;\nUPDATE t2 SET b=20740 WHERE a=19810;\nUPDATE t2 SET b=80238 WHERE a=19811;\nUPDATE t2 SET b=12739 WHERE a=19812;\nUPDATE t2 SET b=24513 WHERE a=19813;\nUPDATE t2 SET b=84977 WHERE a=19814;\nUPDATE t2 SET b=46795 WHERE a=19815;\nUPDATE t2 SET b=98450 WHERE a=19816;\nUPDATE t2 SET b=97814 WHERE a=19817;\nUPDATE t2 SET b=58294 WHERE a=19818;\nUPDATE t2 SET b=2755 WHERE a=19819;\nUPDATE t2 SET b=19587 WHERE a=19820;\nUPDATE t2 SET b=17338 WHERE a=19821;\nUPDATE t2 SET b=19852 WHERE a=19822;\nUPDATE t2 SET b=37279 WHERE a=19823;\nUPDATE t2 SET b=55386 WHERE a=19824;\nUPDATE t2 SET b=61175 WHERE a=19825;\nUPDATE t2 SET b=87526 WHERE a=19826;\nUPDATE t2 SET b=10984 WHERE a=19827;\nUPDATE t2 SET b=42743 WHERE a=19828;\nUPDATE t2 SET b=87599 WHERE a=19829;\nUPDATE t2 SET b=10055 WHERE a=19830;\nUPDATE t2 SET b=9168 WHERE a=19831;\nUPDATE t2 SET b=62073 WHERE a=19832;\nUPDATE t2 SET b=53498 WHERE a=19833;\nUPDATE t2 SET b=24425 WHERE a=19834;\nUPDATE t2 SET b=58855 WHERE a=19835;\nUPDATE t2 SET b=54078 WHERE a=19836;\nUPDATE t2 SET b=9431 WHERE a=19837;\nUPDATE t2 SET b=14008 WHERE a=19838;\nUPDATE t2 SET b=44608 WHERE a=19839;\nUPDATE t2 SET b=48469 WHERE a=19840;\nUPDATE t2 SET b=23008 WHERE a=19841;\nUPDATE t2 SET b=69109 WHERE a=19842;\nUPDATE t2 SET b=75732 WHERE a=19843;\nUPDATE t2 SET b=98425 WHERE a=19844;\nUPDATE t2 SET b=97744 WHERE a=19845;\nUPDATE t2 SET b=65718 WHERE a=19846;\nUPDATE t2 SET b=3693 WHERE a=19847;\nUPDATE t2 SET b=34384 WHERE a=19848;\nUPDATE t2 SET b=41486 WHERE a=19849;\nUPDATE t2 SET b=76177 WHERE a=19850;\nUPDATE t2 SET b=87303 WHERE a=19851;\nUPDATE t2 SET b=85459 WHERE a=19852;\nUPDATE t2 SET b=29033 WHERE a=19853;\nUPDATE t2 SET b=66628 WHERE a=19854;\nUPDATE t2 SET b=25135 WHERE a=19855;\nUPDATE t2 SET b=207 WHERE a=19856;\nUPDATE t2 SET b=27939 WHERE a=19857;\nUPDATE t2 SET b=372 WHERE a=19858;\nUPDATE t2 SET b=94966 WHERE a=19859;\nUPDATE t2 SET b=78718 WHERE a=19860;\nUPDATE t2 SET b=363 WHERE a=19861;\nUPDATE t2 SET b=1021 WHERE a=19862;\nUPDATE t2 SET b=79656 WHERE a=19863;\nUPDATE t2 SET b=79010 WHERE a=19864;\nUPDATE t2 SET b=96906 WHERE a=19865;\nUPDATE t2 SET b=83584 WHERE a=19866;\nUPDATE t2 SET b=50942 WHERE a=19867;\nUPDATE t2 SET b=77529 WHERE a=19868;\nUPDATE t2 SET b=995 WHERE a=19869;\nUPDATE t2 SET b=45833 WHERE a=19870;\nUPDATE t2 SET b=78180 WHERE a=19871;\nUPDATE t2 SET b=30088 WHERE a=19872;\nUPDATE t2 SET b=49030 WHERE a=19873;\nUPDATE t2 SET b=21953 WHERE a=19874;\nUPDATE t2 SET b=98653 WHERE a=19875;\nUPDATE t2 SET b=87344 WHERE a=19876;\nUPDATE t2 SET b=92851 WHERE a=19877;\nUPDATE t2 SET b=61683 WHERE a=19878;\nUPDATE t2 SET b=42356 WHERE a=19879;\nUPDATE t2 SET b=96902 WHERE a=19880;\nUPDATE t2 SET b=5930 WHERE a=19881;\nUPDATE t2 SET b=62758 WHERE a=19882;\nUPDATE t2 SET b=8533 WHERE a=19883;\nUPDATE t2 SET b=95679 WHERE a=19884;\nUPDATE t2 SET b=40451 WHERE a=19885;\nUPDATE t2 SET b=60466 WHERE a=19886;\nUPDATE t2 SET b=41758 WHERE a=19887;\nUPDATE t2 SET b=48733 WHERE a=19888;\nUPDATE t2 SET b=53471 WHERE a=19889;\nUPDATE t2 SET b=10868 WHERE a=19890;\nUPDATE t2 SET b=25937 WHERE a=19891;\nUPDATE t2 SET b=93696 WHERE a=19892;\nUPDATE t2 SET b=13753 WHERE a=19893;\nUPDATE t2 SET b=43654 WHERE a=19894;\nUPDATE t2 SET b=12954 WHERE a=19895;\nUPDATE t2 SET b=65960 WHERE a=19896;\nUPDATE t2 SET b=54507 WHERE a=19897;\nUPDATE t2 SET b=47254 WHERE a=19898;\nUPDATE t2 SET b=68936 WHERE a=19899;\nUPDATE t2 SET b=63298 WHERE a=19900;\nUPDATE t2 SET b=16322 WHERE a=19901;\nUPDATE t2 SET b=31703 WHERE a=19902;\nUPDATE t2 SET b=18721 WHERE a=19903;\nUPDATE t2 SET b=59338 WHERE a=19904;\nUPDATE t2 SET b=2296 WHERE a=19905;\nUPDATE t2 SET b=39867 WHERE a=19906;\nUPDATE t2 SET b=36683 WHERE a=19907;\nUPDATE t2 SET b=43171 WHERE a=19908;\nUPDATE t2 SET b=2332 WHERE a=19909;\nUPDATE t2 SET b=56713 WHERE a=19910;\nUPDATE t2 SET b=15803 WHERE a=19911;\nUPDATE t2 SET b=24057 WHERE a=19912;\nUPDATE t2 SET b=73726 WHERE a=19913;\nUPDATE t2 SET b=90556 WHERE a=19914;\nUPDATE t2 SET b=69272 WHERE a=19915;\nUPDATE t2 SET b=69937 WHERE a=19916;\nUPDATE t2 SET b=11877 WHERE a=19917;\nUPDATE t2 SET b=19219 WHERE a=19918;\nUPDATE t2 SET b=32867 WHERE a=19919;\nUPDATE t2 SET b=51119 WHERE a=19920;\nUPDATE t2 SET b=48783 WHERE a=19921;\nUPDATE t2 SET b=32755 WHERE a=19922;\nUPDATE t2 SET b=1111 WHERE a=19923;\nUPDATE t2 SET b=4583 WHERE a=19924;\nUPDATE t2 SET b=27153 WHERE a=19925;\nUPDATE t2 SET b=98153 WHERE a=19926;\nUPDATE t2 SET b=44837 WHERE a=19927;\nUPDATE t2 SET b=74950 WHERE a=19928;\nUPDATE t2 SET b=25891 WHERE a=19929;\nUPDATE t2 SET b=32762 WHERE a=19930;\nUPDATE t2 SET b=98327 WHERE a=19931;\nUPDATE t2 SET b=50465 WHERE a=19932;\nUPDATE t2 SET b=85916 WHERE a=19933;\nUPDATE t2 SET b=58419 WHERE a=19934;\nUPDATE t2 SET b=82838 WHERE a=19935;\nUPDATE t2 SET b=16965 WHERE a=19936;\nUPDATE t2 SET b=63981 WHERE a=19937;\nUPDATE t2 SET b=58687 WHERE a=19938;\nUPDATE t2 SET b=81401 WHERE a=19939;\nUPDATE t2 SET b=11194 WHERE a=19940;\nUPDATE t2 SET b=64063 WHERE a=19941;\nUPDATE t2 SET b=96953 WHERE a=19942;\nUPDATE t2 SET b=1407 WHERE a=19943;\nUPDATE t2 SET b=52760 WHERE a=19944;\nUPDATE t2 SET b=95487 WHERE a=19945;\nUPDATE t2 SET b=33598 WHERE a=19946;\nUPDATE t2 SET b=61758 WHERE a=19947;\nUPDATE t2 SET b=53723 WHERE a=19948;\nUPDATE t2 SET b=57496 WHERE a=19949;\nUPDATE t2 SET b=82442 WHERE a=19950;\nUPDATE t2 SET b=14350 WHERE a=19951;\nUPDATE t2 SET b=52545 WHERE a=19952;\nUPDATE t2 SET b=36471 WHERE a=19953;\nUPDATE t2 SET b=68112 WHERE a=19954;\nUPDATE t2 SET b=97999 WHERE a=19955;\nUPDATE t2 SET b=30631 WHERE a=19956;\nUPDATE t2 SET b=96744 WHERE a=19957;\nUPDATE t2 SET b=28255 WHERE a=19958;\nUPDATE t2 SET b=62764 WHERE a=19959;\nUPDATE t2 SET b=43197 WHERE a=19960;\nUPDATE t2 SET b=21098 WHERE a=19961;\nUPDATE t2 SET b=45107 WHERE a=19962;\nUPDATE t2 SET b=68513 WHERE a=19963;\nUPDATE t2 SET b=22109 WHERE a=19964;\nUPDATE t2 SET b=96570 WHERE a=19965;\nUPDATE t2 SET b=78312 WHERE a=19966;\nUPDATE t2 SET b=18438 WHERE a=19967;\nUPDATE t2 SET b=20138 WHERE a=19968;\nUPDATE t2 SET b=16905 WHERE a=19969;\nUPDATE t2 SET b=65463 WHERE a=19970;\nUPDATE t2 SET b=26144 WHERE a=19971;\nUPDATE t2 SET b=90509 WHERE a=19972;\nUPDATE t2 SET b=10246 WHERE a=19973;\nUPDATE t2 SET b=10420 WHERE a=19974;\nUPDATE t2 SET b=24678 WHERE a=19975;\nUPDATE t2 SET b=9750 WHERE a=19976;\nUPDATE t2 SET b=64580 WHERE a=19977;\nUPDATE t2 SET b=32021 WHERE a=19978;\nUPDATE t2 SET b=94411 WHERE a=19979;\nUPDATE t2 SET b=82804 WHERE a=19980;\nUPDATE t2 SET b=96099 WHERE a=19981;\nUPDATE t2 SET b=27619 WHERE a=19982;\nUPDATE t2 SET b=42387 WHERE a=19983;\nUPDATE t2 SET b=30347 WHERE a=19984;\nUPDATE t2 SET b=60280 WHERE a=19985;\nUPDATE t2 SET b=10151 WHERE a=19986;\nUPDATE t2 SET b=54470 WHERE a=19987;\nUPDATE t2 SET b=54795 WHERE a=19988;\nUPDATE t2 SET b=74475 WHERE a=19989;\nUPDATE t2 SET b=14939 WHERE a=19990;\nUPDATE t2 SET b=42649 WHERE a=19991;\nUPDATE t2 SET b=98811 WHERE a=19992;\nUPDATE t2 SET b=16653 WHERE a=19993;\nUPDATE t2 SET b=46623 WHERE a=19994;\nUPDATE t2 SET b=37213 WHERE a=19995;\nUPDATE t2 SET b=60649 WHERE a=19996;\nUPDATE t2 SET b=47643 WHERE a=19997;\nUPDATE t2 SET b=44118 WHERE a=19998;\nUPDATE t2 SET b=58313 WHERE a=19999;\nUPDATE t2 SET b=73569 WHERE a=20000;\nUPDATE t2 SET b=65872 WHERE a=20001;\nUPDATE t2 SET b=33913 WHERE a=20002;\nUPDATE t2 SET b=56093 WHERE a=20003;\nUPDATE t2 SET b=23235 WHERE a=20004;\nUPDATE t2 SET b=97868 WHERE a=20005;\nUPDATE t2 SET b=85790 WHERE a=20006;\nUPDATE t2 SET b=16283 WHERE a=20007;\nUPDATE t2 SET b=53123 WHERE a=20008;\nUPDATE t2 SET b=85477 WHERE a=20009;\nUPDATE t2 SET b=9707 WHERE a=20010;\nUPDATE t2 SET b=53738 WHERE a=20011;\nUPDATE t2 SET b=18886 WHERE a=20012;\nUPDATE t2 SET b=37246 WHERE a=20013;\nUPDATE t2 SET b=95006 WHERE a=20014;\nUPDATE t2 SET b=81843 WHERE a=20015;\nUPDATE t2 SET b=66062 WHERE a=20016;\nUPDATE t2 SET b=29884 WHERE a=20017;\nUPDATE t2 SET b=29410 WHERE a=20018;\nUPDATE t2 SET b=30278 WHERE a=20019;\nUPDATE t2 SET b=45999 WHERE a=20020;\nUPDATE t2 SET b=56649 WHERE a=20021;\nUPDATE t2 SET b=64098 WHERE a=20022;\nUPDATE t2 SET b=8476 WHERE a=20023;\nUPDATE t2 SET b=14824 WHERE a=20024;\nUPDATE t2 SET b=60124 WHERE a=20025;\nUPDATE t2 SET b=53742 WHERE a=20026;\nUPDATE t2 SET b=3421 WHERE a=20027;\nUPDATE t2 SET b=39755 WHERE a=20028;\nUPDATE t2 SET b=22157 WHERE a=20029;\nUPDATE t2 SET b=24364 WHERE a=20030;\nUPDATE t2 SET b=21598 WHERE a=20031;\nUPDATE t2 SET b=12526 WHERE a=20032;\nUPDATE t2 SET b=39693 WHERE a=20033;\nUPDATE t2 SET b=68184 WHERE a=20034;\nUPDATE t2 SET b=22952 WHERE a=20035;\nUPDATE t2 SET b=18097 WHERE a=20036;\nUPDATE t2 SET b=86157 WHERE a=20037;\nUPDATE t2 SET b=35926 WHERE a=20038;\nUPDATE t2 SET b=20261 WHERE a=20039;\nUPDATE t2 SET b=79200 WHERE a=20040;\nUPDATE t2 SET b=29979 WHERE a=20041;\nUPDATE t2 SET b=81336 WHERE a=20042;\nUPDATE t2 SET b=90203 WHERE a=20043;\nUPDATE t2 SET b=53856 WHERE a=20044;\nUPDATE t2 SET b=99085 WHERE a=20045;\nUPDATE t2 SET b=87710 WHERE a=20046;\nUPDATE t2 SET b=86246 WHERE a=20047;\nUPDATE t2 SET b=96508 WHERE a=20048;\nUPDATE t2 SET b=45098 WHERE a=20049;\nUPDATE t2 SET b=65898 WHERE a=20050;\nUPDATE t2 SET b=3489 WHERE a=20051;\nUPDATE t2 SET b=61281 WHERE a=20052;\nUPDATE t2 SET b=16926 WHERE a=20053;\nUPDATE t2 SET b=81092 WHERE a=20054;\nUPDATE t2 SET b=18842 WHERE a=20055;\nUPDATE t2 SET b=11435 WHERE a=20056;\nUPDATE t2 SET b=26431 WHERE a=20057;\nUPDATE t2 SET b=22261 WHERE a=20058;\nUPDATE t2 SET b=7438 WHERE a=20059;\nUPDATE t2 SET b=92497 WHERE a=20060;\nUPDATE t2 SET b=38529 WHERE a=20061;\nUPDATE t2 SET b=12638 WHERE a=20062;\nUPDATE t2 SET b=69938 WHERE a=20063;\nUPDATE t2 SET b=74914 WHERE a=20064;\nUPDATE t2 SET b=19038 WHERE a=20065;\nUPDATE t2 SET b=50632 WHERE a=20066;\nUPDATE t2 SET b=5150 WHERE a=20067;\nUPDATE t2 SET b=6392 WHERE a=20068;\nUPDATE t2 SET b=43958 WHERE a=20069;\nUPDATE t2 SET b=28779 WHERE a=20070;\nUPDATE t2 SET b=37396 WHERE a=20071;\nUPDATE t2 SET b=91352 WHERE a=20072;\nUPDATE t2 SET b=60381 WHERE a=20073;\nUPDATE t2 SET b=1575 WHERE a=20074;\nUPDATE t2 SET b=15516 WHERE a=20075;\nUPDATE t2 SET b=82760 WHERE a=20076;\nUPDATE t2 SET b=16085 WHERE a=20077;\nUPDATE t2 SET b=6582 WHERE a=20078;\nUPDATE t2 SET b=22312 WHERE a=20079;\nUPDATE t2 SET b=93702 WHERE a=20080;\nUPDATE t2 SET b=33711 WHERE a=20081;\nUPDATE t2 SET b=49354 WHERE a=20082;\nUPDATE t2 SET b=22426 WHERE a=20083;\nUPDATE t2 SET b=17579 WHERE a=20084;\nUPDATE t2 SET b=55177 WHERE a=20085;\nUPDATE t2 SET b=90192 WHERE a=20086;\nUPDATE t2 SET b=53560 WHERE a=20087;\nUPDATE t2 SET b=10311 WHERE a=20088;\nUPDATE t2 SET b=44961 WHERE a=20089;\nUPDATE t2 SET b=16894 WHERE a=20090;\nUPDATE t2 SET b=63375 WHERE a=20091;\nUPDATE t2 SET b=58402 WHERE a=20092;\nUPDATE t2 SET b=79232 WHERE a=20093;\nUPDATE t2 SET b=64777 WHERE a=20094;\nUPDATE t2 SET b=7570 WHERE a=20095;\nUPDATE t2 SET b=21453 WHERE a=20096;\nUPDATE t2 SET b=77519 WHERE a=20097;\nUPDATE t2 SET b=41568 WHERE a=20098;\nUPDATE t2 SET b=95137 WHERE a=20099;\nUPDATE t2 SET b=79795 WHERE a=20100;\nUPDATE t2 SET b=98214 WHERE a=20101;\nUPDATE t2 SET b=69626 WHERE a=20102;\nUPDATE t2 SET b=62146 WHERE a=20103;\nUPDATE t2 SET b=75178 WHERE a=20104;\nUPDATE t2 SET b=4257 WHERE a=20105;\nUPDATE t2 SET b=95356 WHERE a=20106;\nUPDATE t2 SET b=93138 WHERE a=20107;\nUPDATE t2 SET b=30998 WHERE a=20108;\nUPDATE t2 SET b=41415 WHERE a=20109;\nUPDATE t2 SET b=96492 WHERE a=20110;\nUPDATE t2 SET b=87231 WHERE a=20111;\nUPDATE t2 SET b=67359 WHERE a=20112;\nUPDATE t2 SET b=20816 WHERE a=20113;\nUPDATE t2 SET b=16634 WHERE a=20114;\nUPDATE t2 SET b=68864 WHERE a=20115;\nUPDATE t2 SET b=24279 WHERE a=20116;\nUPDATE t2 SET b=39864 WHERE a=20117;\nUPDATE t2 SET b=23467 WHERE a=20118;\nUPDATE t2 SET b=18937 WHERE a=20119;\nUPDATE t2 SET b=7419 WHERE a=20120;\nUPDATE t2 SET b=99290 WHERE a=20121;\nUPDATE t2 SET b=19004 WHERE a=20122;\nUPDATE t2 SET b=90179 WHERE a=20123;\nUPDATE t2 SET b=93036 WHERE a=20124;\nUPDATE t2 SET b=313 WHERE a=20125;\nUPDATE t2 SET b=8311 WHERE a=20126;\nUPDATE t2 SET b=9489 WHERE a=20127;\nUPDATE t2 SET b=69771 WHERE a=20128;\nUPDATE t2 SET b=15073 WHERE a=20129;\nUPDATE t2 SET b=98823 WHERE a=20130;\nUPDATE t2 SET b=24748 WHERE a=20131;\nUPDATE t2 SET b=58662 WHERE a=20132;\nUPDATE t2 SET b=3581 WHERE a=20133;\nUPDATE t2 SET b=82652 WHERE a=20134;\nUPDATE t2 SET b=97985 WHERE a=20135;\nUPDATE t2 SET b=95905 WHERE a=20136;\nUPDATE t2 SET b=94051 WHERE a=20137;\nUPDATE t2 SET b=77816 WHERE a=20138;\nUPDATE t2 SET b=19625 WHERE a=20139;\nUPDATE t2 SET b=7416 WHERE a=20140;\nUPDATE t2 SET b=56740 WHERE a=20141;\nUPDATE t2 SET b=9012 WHERE a=20142;\nUPDATE t2 SET b=81319 WHERE a=20143;\nUPDATE t2 SET b=6087 WHERE a=20144;\nUPDATE t2 SET b=12587 WHERE a=20145;\nUPDATE t2 SET b=33250 WHERE a=20146;\nUPDATE t2 SET b=56243 WHERE a=20147;\nUPDATE t2 SET b=486 WHERE a=20148;\nUPDATE t2 SET b=58227 WHERE a=20149;\nUPDATE t2 SET b=67943 WHERE a=20150;\nUPDATE t2 SET b=12418 WHERE a=20151;\nUPDATE t2 SET b=46802 WHERE a=20152;\nUPDATE t2 SET b=90646 WHERE a=20153;\nUPDATE t2 SET b=5864 WHERE a=20154;\nUPDATE t2 SET b=53391 WHERE a=20155;\nUPDATE t2 SET b=79738 WHERE a=20156;\nUPDATE t2 SET b=9667 WHERE a=20157;\nUPDATE t2 SET b=51184 WHERE a=20158;\nUPDATE t2 SET b=41671 WHERE a=20159;\nUPDATE t2 SET b=21470 WHERE a=20160;\nUPDATE t2 SET b=43914 WHERE a=20161;\nUPDATE t2 SET b=84726 WHERE a=20162;\nUPDATE t2 SET b=29175 WHERE a=20163;\nUPDATE t2 SET b=31233 WHERE a=20164;\nUPDATE t2 SET b=92745 WHERE a=20165;\nUPDATE t2 SET b=26724 WHERE a=20166;\nUPDATE t2 SET b=13921 WHERE a=20167;\nUPDATE t2 SET b=52824 WHERE a=20168;\nUPDATE t2 SET b=50372 WHERE a=20169;\nUPDATE t2 SET b=26973 WHERE a=20170;\nUPDATE t2 SET b=67274 WHERE a=20171;\nUPDATE t2 SET b=53078 WHERE a=20172;\nUPDATE t2 SET b=26016 WHERE a=20173;\nUPDATE t2 SET b=23885 WHERE a=20174;\nUPDATE t2 SET b=91581 WHERE a=20175;\nUPDATE t2 SET b=37658 WHERE a=20176;\nUPDATE t2 SET b=64210 WHERE a=20177;\nUPDATE t2 SET b=38051 WHERE a=20178;\nUPDATE t2 SET b=31580 WHERE a=20179;\nUPDATE t2 SET b=10017 WHERE a=20180;\nUPDATE t2 SET b=13191 WHERE a=20181;\nUPDATE t2 SET b=10398 WHERE a=20182;\nUPDATE t2 SET b=41581 WHERE a=20183;\nUPDATE t2 SET b=16438 WHERE a=20184;\nUPDATE t2 SET b=56769 WHERE a=20185;\nUPDATE t2 SET b=97795 WHERE a=20186;\nUPDATE t2 SET b=17884 WHERE a=20187;\nUPDATE t2 SET b=1951 WHERE a=20188;\nUPDATE t2 SET b=84676 WHERE a=20189;\nUPDATE t2 SET b=39839 WHERE a=20190;\nUPDATE t2 SET b=67309 WHERE a=20191;\nUPDATE t2 SET b=20272 WHERE a=20192;\nUPDATE t2 SET b=12282 WHERE a=20193;\nUPDATE t2 SET b=97460 WHERE a=20194;\nUPDATE t2 SET b=32557 WHERE a=20195;\nUPDATE t2 SET b=8746 WHERE a=20196;\nUPDATE t2 SET b=70091 WHERE a=20197;\nUPDATE t2 SET b=50849 WHERE a=20198;\nUPDATE t2 SET b=10387 WHERE a=20199;\nUPDATE t2 SET b=17461 WHERE a=20200;\nUPDATE t2 SET b=92965 WHERE a=20201;\nUPDATE t2 SET b=44169 WHERE a=20202;\nUPDATE t2 SET b=67779 WHERE a=20203;\nUPDATE t2 SET b=97591 WHERE a=20204;\nUPDATE t2 SET b=45613 WHERE a=20205;\nUPDATE t2 SET b=69621 WHERE a=20206;\nUPDATE t2 SET b=59706 WHERE a=20207;\nUPDATE t2 SET b=42425 WHERE a=20208;\nUPDATE t2 SET b=376 WHERE a=20209;\nUPDATE t2 SET b=40069 WHERE a=20210;\nUPDATE t2 SET b=54995 WHERE a=20211;\nUPDATE t2 SET b=13137 WHERE a=20212;\nUPDATE t2 SET b=86579 WHERE a=20213;\nUPDATE t2 SET b=47171 WHERE a=20214;\nUPDATE t2 SET b=55797 WHERE a=20215;\nUPDATE t2 SET b=86490 WHERE a=20216;\nUPDATE t2 SET b=56993 WHERE a=20217;\nUPDATE t2 SET b=34860 WHERE a=20218;\nUPDATE t2 SET b=34479 WHERE a=20219;\nUPDATE t2 SET b=86400 WHERE a=20220;\nUPDATE t2 SET b=43561 WHERE a=20221;\nUPDATE t2 SET b=73066 WHERE a=20222;\nUPDATE t2 SET b=32662 WHERE a=20223;\nUPDATE t2 SET b=56045 WHERE a=20224;\nUPDATE t2 SET b=59010 WHERE a=20225;\nUPDATE t2 SET b=39616 WHERE a=20226;\nUPDATE t2 SET b=44788 WHERE a=20227;\nUPDATE t2 SET b=5728 WHERE a=20228;\nUPDATE t2 SET b=14026 WHERE a=20229;\nUPDATE t2 SET b=44455 WHERE a=20230;\nUPDATE t2 SET b=50423 WHERE a=20231;\nUPDATE t2 SET b=75088 WHERE a=20232;\nUPDATE t2 SET b=88849 WHERE a=20233;\nUPDATE t2 SET b=14145 WHERE a=20234;\nUPDATE t2 SET b=42209 WHERE a=20235;\nUPDATE t2 SET b=59840 WHERE a=20236;\nUPDATE t2 SET b=87723 WHERE a=20237;\nUPDATE t2 SET b=47980 WHERE a=20238;\nUPDATE t2 SET b=22714 WHERE a=20239;\nUPDATE t2 SET b=75250 WHERE a=20240;\nUPDATE t2 SET b=78763 WHERE a=20241;\nUPDATE t2 SET b=78779 WHERE a=20242;\nUPDATE t2 SET b=37542 WHERE a=20243;\nUPDATE t2 SET b=76111 WHERE a=20244;\nUPDATE t2 SET b=72688 WHERE a=20245;\nUPDATE t2 SET b=21053 WHERE a=20246;\nUPDATE t2 SET b=47162 WHERE a=20247;\nUPDATE t2 SET b=98987 WHERE a=20248;\nUPDATE t2 SET b=77722 WHERE a=20249;\nUPDATE t2 SET b=44159 WHERE a=20250;\nUPDATE t2 SET b=75722 WHERE a=20251;\nUPDATE t2 SET b=95609 WHERE a=20252;\nUPDATE t2 SET b=95174 WHERE a=20253;\nUPDATE t2 SET b=27210 WHERE a=20254;\nUPDATE t2 SET b=12178 WHERE a=20255;\nUPDATE t2 SET b=96513 WHERE a=20256;\nUPDATE t2 SET b=83746 WHERE a=20257;\nUPDATE t2 SET b=91384 WHERE a=20258;\nUPDATE t2 SET b=10070 WHERE a=20259;\nUPDATE t2 SET b=62346 WHERE a=20260;\nUPDATE t2 SET b=54748 WHERE a=20261;\nUPDATE t2 SET b=85490 WHERE a=20262;\nUPDATE t2 SET b=27068 WHERE a=20263;\nUPDATE t2 SET b=44025 WHERE a=20264;\nUPDATE t2 SET b=95268 WHERE a=20265;\nUPDATE t2 SET b=86398 WHERE a=20266;\nUPDATE t2 SET b=87091 WHERE a=20267;\nUPDATE t2 SET b=15598 WHERE a=20268;\nUPDATE t2 SET b=70166 WHERE a=20269;\nUPDATE t2 SET b=48330 WHERE a=20270;\nUPDATE t2 SET b=85587 WHERE a=20271;\nUPDATE t2 SET b=54050 WHERE a=20272;\nUPDATE t2 SET b=45675 WHERE a=20273;\nUPDATE t2 SET b=17916 WHERE a=20274;\nUPDATE t2 SET b=14080 WHERE a=20275;\nUPDATE t2 SET b=19486 WHERE a=20276;\nUPDATE t2 SET b=94107 WHERE a=20277;\nUPDATE t2 SET b=91574 WHERE a=20278;\nUPDATE t2 SET b=97512 WHERE a=20279;\nUPDATE t2 SET b=57746 WHERE a=20280;\nUPDATE t2 SET b=77502 WHERE a=20281;\nUPDATE t2 SET b=84790 WHERE a=20282;\nUPDATE t2 SET b=63424 WHERE a=20283;\nUPDATE t2 SET b=73650 WHERE a=20284;\nUPDATE t2 SET b=41273 WHERE a=20285;\nUPDATE t2 SET b=40145 WHERE a=20286;\nUPDATE t2 SET b=41676 WHERE a=20287;\nUPDATE t2 SET b=66854 WHERE a=20288;\nUPDATE t2 SET b=77278 WHERE a=20289;\nUPDATE t2 SET b=50116 WHERE a=20290;\nUPDATE t2 SET b=17231 WHERE a=20291;\nUPDATE t2 SET b=79293 WHERE a=20292;\nUPDATE t2 SET b=40629 WHERE a=20293;\nUPDATE t2 SET b=76971 WHERE a=20294;\nUPDATE t2 SET b=80154 WHERE a=20295;\nUPDATE t2 SET b=97876 WHERE a=20296;\nUPDATE t2 SET b=30831 WHERE a=20297;\nUPDATE t2 SET b=19511 WHERE a=20298;\nUPDATE t2 SET b=59354 WHERE a=20299;\nUPDATE t2 SET b=69674 WHERE a=20300;\nUPDATE t2 SET b=63110 WHERE a=20301;\nUPDATE t2 SET b=63840 WHERE a=20302;\nUPDATE t2 SET b=58906 WHERE a=20303;\nUPDATE t2 SET b=17076 WHERE a=20304;\nUPDATE t2 SET b=30862 WHERE a=20305;\nUPDATE t2 SET b=3033 WHERE a=20306;\nUPDATE t2 SET b=7203 WHERE a=20307;\nUPDATE t2 SET b=65846 WHERE a=20308;\nUPDATE t2 SET b=44276 WHERE a=20309;\nUPDATE t2 SET b=90745 WHERE a=20310;\nUPDATE t2 SET b=55821 WHERE a=20311;\nUPDATE t2 SET b=24823 WHERE a=20312;\nUPDATE t2 SET b=30303 WHERE a=20313;\nUPDATE t2 SET b=65592 WHERE a=20314;\nUPDATE t2 SET b=29954 WHERE a=20315;\nUPDATE t2 SET b=89419 WHERE a=20316;\nUPDATE t2 SET b=10291 WHERE a=20317;\nUPDATE t2 SET b=73902 WHERE a=20318;\nUPDATE t2 SET b=84557 WHERE a=20319;\nUPDATE t2 SET b=82695 WHERE a=20320;\nUPDATE t2 SET b=48919 WHERE a=20321;\nUPDATE t2 SET b=21960 WHERE a=20322;\nUPDATE t2 SET b=19382 WHERE a=20323;\nUPDATE t2 SET b=89409 WHERE a=20324;\nUPDATE t2 SET b=77892 WHERE a=20325;\nUPDATE t2 SET b=29602 WHERE a=20326;\nUPDATE t2 SET b=54568 WHERE a=20327;\nUPDATE t2 SET b=99791 WHERE a=20328;\nUPDATE t2 SET b=68342 WHERE a=20329;\nUPDATE t2 SET b=82841 WHERE a=20330;\nUPDATE t2 SET b=27397 WHERE a=20331;\nUPDATE t2 SET b=63158 WHERE a=20332;\nUPDATE t2 SET b=34381 WHERE a=20333;\nUPDATE t2 SET b=19832 WHERE a=20334;\nUPDATE t2 SET b=5694 WHERE a=20335;\nUPDATE t2 SET b=35610 WHERE a=20336;\nUPDATE t2 SET b=45520 WHERE a=20337;\nUPDATE t2 SET b=48931 WHERE a=20338;\nUPDATE t2 SET b=35534 WHERE a=20339;\nUPDATE t2 SET b=65155 WHERE a=20340;\nUPDATE t2 SET b=63355 WHERE a=20341;\nUPDATE t2 SET b=30956 WHERE a=20342;\nUPDATE t2 SET b=6081 WHERE a=20343;\nUPDATE t2 SET b=82083 WHERE a=20344;\nUPDATE t2 SET b=31911 WHERE a=20345;\nUPDATE t2 SET b=21141 WHERE a=20346;\nUPDATE t2 SET b=58150 WHERE a=20347;\nUPDATE t2 SET b=87505 WHERE a=20348;\nUPDATE t2 SET b=90599 WHERE a=20349;\nUPDATE t2 SET b=77049 WHERE a=20350;\nUPDATE t2 SET b=28350 WHERE a=20351;\nUPDATE t2 SET b=26432 WHERE a=20352;\nUPDATE t2 SET b=2342 WHERE a=20353;\nUPDATE t2 SET b=5906 WHERE a=20354;\nUPDATE t2 SET b=89475 WHERE a=20355;\nUPDATE t2 SET b=3052 WHERE a=20356;\nUPDATE t2 SET b=33883 WHERE a=20357;\nUPDATE t2 SET b=12309 WHERE a=20358;\nUPDATE t2 SET b=1351 WHERE a=20359;\nUPDATE t2 SET b=42651 WHERE a=20360;\nUPDATE t2 SET b=46764 WHERE a=20361;\nUPDATE t2 SET b=31328 WHERE a=20362;\nUPDATE t2 SET b=22694 WHERE a=20363;\nUPDATE t2 SET b=27442 WHERE a=20364;\nUPDATE t2 SET b=84495 WHERE a=20365;\nUPDATE t2 SET b=73180 WHERE a=20366;\nUPDATE t2 SET b=74435 WHERE a=20367;\nUPDATE t2 SET b=42397 WHERE a=20368;\nUPDATE t2 SET b=36596 WHERE a=20369;\nUPDATE t2 SET b=14409 WHERE a=20370;\nUPDATE t2 SET b=71130 WHERE a=20371;\nUPDATE t2 SET b=1683 WHERE a=20372;\nUPDATE t2 SET b=43 WHERE a=20373;\nUPDATE t2 SET b=98092 WHERE a=20374;\nUPDATE t2 SET b=43067 WHERE a=20375;\nUPDATE t2 SET b=25089 WHERE a=20376;\nUPDATE t2 SET b=94767 WHERE a=20377;\nUPDATE t2 SET b=55517 WHERE a=20378;\nUPDATE t2 SET b=34349 WHERE a=20379;\nUPDATE t2 SET b=13435 WHERE a=20380;\nUPDATE t2 SET b=34107 WHERE a=20381;\nUPDATE t2 SET b=19981 WHERE a=20382;\nUPDATE t2 SET b=91355 WHERE a=20383;\nUPDATE t2 SET b=6880 WHERE a=20384;\nUPDATE t2 SET b=52265 WHERE a=20385;\nUPDATE t2 SET b=18561 WHERE a=20386;\nUPDATE t2 SET b=31226 WHERE a=20387;\nUPDATE t2 SET b=39022 WHERE a=20388;\nUPDATE t2 SET b=27601 WHERE a=20389;\nUPDATE t2 SET b=48344 WHERE a=20390;\nUPDATE t2 SET b=5273 WHERE a=20391;\nUPDATE t2 SET b=18181 WHERE a=20392;\nUPDATE t2 SET b=66534 WHERE a=20393;\nUPDATE t2 SET b=41126 WHERE a=20394;\nUPDATE t2 SET b=47316 WHERE a=20395;\nUPDATE t2 SET b=11791 WHERE a=20396;\nUPDATE t2 SET b=54655 WHERE a=20397;\nUPDATE t2 SET b=42647 WHERE a=20398;\nUPDATE t2 SET b=36615 WHERE a=20399;\nUPDATE t2 SET b=97837 WHERE a=20400;\nUPDATE t2 SET b=4112 WHERE a=20401;\nUPDATE t2 SET b=41484 WHERE a=20402;\nUPDATE t2 SET b=85295 WHERE a=20403;\nUPDATE t2 SET b=43513 WHERE a=20404;\nUPDATE t2 SET b=87516 WHERE a=20405;\nUPDATE t2 SET b=45314 WHERE a=20406;\nUPDATE t2 SET b=10297 WHERE a=20407;\nUPDATE t2 SET b=13930 WHERE a=20408;\nUPDATE t2 SET b=15982 WHERE a=20409;\nUPDATE t2 SET b=38271 WHERE a=20410;\nUPDATE t2 SET b=50819 WHERE a=20411;\nUPDATE t2 SET b=37331 WHERE a=20412;\nUPDATE t2 SET b=32142 WHERE a=20413;\nUPDATE t2 SET b=87152 WHERE a=20414;\nUPDATE t2 SET b=44155 WHERE a=20415;\nUPDATE t2 SET b=85278 WHERE a=20416;\nUPDATE t2 SET b=79919 WHERE a=20417;\nUPDATE t2 SET b=54585 WHERE a=20418;\nUPDATE t2 SET b=30000 WHERE a=20419;\nUPDATE t2 SET b=81288 WHERE a=20420;\nUPDATE t2 SET b=84274 WHERE a=20421;\nUPDATE t2 SET b=52445 WHERE a=20422;\nUPDATE t2 SET b=80109 WHERE a=20423;\nUPDATE t2 SET b=71261 WHERE a=20424;\nUPDATE t2 SET b=43114 WHERE a=20425;\nUPDATE t2 SET b=44244 WHERE a=20426;\nUPDATE t2 SET b=86813 WHERE a=20427;\nUPDATE t2 SET b=28379 WHERE a=20428;\nUPDATE t2 SET b=64385 WHERE a=20429;\nUPDATE t2 SET b=98793 WHERE a=20430;\nUPDATE t2 SET b=91148 WHERE a=20431;\nUPDATE t2 SET b=42913 WHERE a=20432;\nUPDATE t2 SET b=75432 WHERE a=20433;\nUPDATE t2 SET b=14094 WHERE a=20434;\nUPDATE t2 SET b=43823 WHERE a=20435;\nUPDATE t2 SET b=81540 WHERE a=20436;\nUPDATE t2 SET b=33653 WHERE a=20437;\nUPDATE t2 SET b=29841 WHERE a=20438;\nUPDATE t2 SET b=64166 WHERE a=20439;\nUPDATE t2 SET b=80453 WHERE a=20440;\nUPDATE t2 SET b=28367 WHERE a=20441;\nUPDATE t2 SET b=21 WHERE a=20442;\nUPDATE t2 SET b=10526 WHERE a=20443;\nUPDATE t2 SET b=38704 WHERE a=20444;\nUPDATE t2 SET b=65139 WHERE a=20445;\nUPDATE t2 SET b=67707 WHERE a=20446;\nUPDATE t2 SET b=172 WHERE a=20447;\nUPDATE t2 SET b=47493 WHERE a=20448;\nUPDATE t2 SET b=28396 WHERE a=20449;\nUPDATE t2 SET b=30727 WHERE a=20450;\nUPDATE t2 SET b=91501 WHERE a=20451;\nUPDATE t2 SET b=50770 WHERE a=20452;\nUPDATE t2 SET b=55402 WHERE a=20453;\nUPDATE t2 SET b=62915 WHERE a=20454;\nUPDATE t2 SET b=76555 WHERE a=20455;\nUPDATE t2 SET b=2178 WHERE a=20456;\nUPDATE t2 SET b=42433 WHERE a=20457;\nUPDATE t2 SET b=91850 WHERE a=20458;\nUPDATE t2 SET b=10115 WHERE a=20459;\nUPDATE t2 SET b=87426 WHERE a=20460;\nUPDATE t2 SET b=27840 WHERE a=20461;\nUPDATE t2 SET b=15276 WHERE a=20462;\nUPDATE t2 SET b=6104 WHERE a=20463;\nUPDATE t2 SET b=83006 WHERE a=20464;\nUPDATE t2 SET b=80228 WHERE a=20465;\nUPDATE t2 SET b=51683 WHERE a=20466;\nUPDATE t2 SET b=67678 WHERE a=20467;\nUPDATE t2 SET b=90464 WHERE a=20468;\nUPDATE t2 SET b=21107 WHERE a=20469;\nUPDATE t2 SET b=41011 WHERE a=20470;\nUPDATE t2 SET b=27896 WHERE a=20471;\nUPDATE t2 SET b=53291 WHERE a=20472;\nUPDATE t2 SET b=39149 WHERE a=20473;\nUPDATE t2 SET b=57313 WHERE a=20474;\nUPDATE t2 SET b=9222 WHERE a=20475;\nUPDATE t2 SET b=53618 WHERE a=20476;\nUPDATE t2 SET b=57372 WHERE a=20477;\nUPDATE t2 SET b=61753 WHERE a=20478;\nUPDATE t2 SET b=54185 WHERE a=20479;\nUPDATE t2 SET b=70787 WHERE a=20480;\nUPDATE t2 SET b=45985 WHERE a=20481;\nUPDATE t2 SET b=97052 WHERE a=20482;\nUPDATE t2 SET b=55411 WHERE a=20483;\nUPDATE t2 SET b=54909 WHERE a=20484;\nUPDATE t2 SET b=94326 WHERE a=20485;\nUPDATE t2 SET b=84379 WHERE a=20486;\nUPDATE t2 SET b=44385 WHERE a=20487;\nUPDATE t2 SET b=53201 WHERE a=20488;\nUPDATE t2 SET b=54315 WHERE a=20489;\nUPDATE t2 SET b=64213 WHERE a=20490;\nUPDATE t2 SET b=74776 WHERE a=20491;\nUPDATE t2 SET b=75775 WHERE a=20492;\nUPDATE t2 SET b=51230 WHERE a=20493;\nUPDATE t2 SET b=5134 WHERE a=20494;\nUPDATE t2 SET b=51076 WHERE a=20495;\nUPDATE t2 SET b=70418 WHERE a=20496;\nUPDATE t2 SET b=62911 WHERE a=20497;\nUPDATE t2 SET b=40921 WHERE a=20498;\nUPDATE t2 SET b=54776 WHERE a=20499;\nUPDATE t2 SET b=93746 WHERE a=20500;\nUPDATE t2 SET b=45773 WHERE a=20501;\nUPDATE t2 SET b=49281 WHERE a=20502;\nUPDATE t2 SET b=10484 WHERE a=20503;\nUPDATE t2 SET b=65335 WHERE a=20504;\nUPDATE t2 SET b=79051 WHERE a=20505;\nUPDATE t2 SET b=30591 WHERE a=20506;\nUPDATE t2 SET b=88939 WHERE a=20507;\nUPDATE t2 SET b=14464 WHERE a=20508;\nUPDATE t2 SET b=69357 WHERE a=20509;\nUPDATE t2 SET b=17637 WHERE a=20510;\nUPDATE t2 SET b=68835 WHERE a=20511;\nUPDATE t2 SET b=23926 WHERE a=20512;\nUPDATE t2 SET b=72372 WHERE a=20513;\nUPDATE t2 SET b=70859 WHERE a=20514;\nUPDATE t2 SET b=70839 WHERE a=20515;\nUPDATE t2 SET b=40819 WHERE a=20516;\nUPDATE t2 SET b=95443 WHERE a=20517;\nUPDATE t2 SET b=64351 WHERE a=20518;\nUPDATE t2 SET b=79015 WHERE a=20519;\nUPDATE t2 SET b=29434 WHERE a=20520;\nUPDATE t2 SET b=11031 WHERE a=20521;\nUPDATE t2 SET b=96722 WHERE a=20522;\nUPDATE t2 SET b=56719 WHERE a=20523;\nUPDATE t2 SET b=30581 WHERE a=20524;\nUPDATE t2 SET b=42298 WHERE a=20525;\nUPDATE t2 SET b=63946 WHERE a=20526;\nUPDATE t2 SET b=93945 WHERE a=20527;\nUPDATE t2 SET b=38878 WHERE a=20528;\nUPDATE t2 SET b=48768 WHERE a=20529;\nUPDATE t2 SET b=72849 WHERE a=20530;\nUPDATE t2 SET b=26245 WHERE a=20531;\nUPDATE t2 SET b=22185 WHERE a=20532;\nUPDATE t2 SET b=42807 WHERE a=20533;\nUPDATE t2 SET b=88112 WHERE a=20534;\nUPDATE t2 SET b=50222 WHERE a=20535;\nUPDATE t2 SET b=13737 WHERE a=20536;\nUPDATE t2 SET b=46620 WHERE a=20537;\nUPDATE t2 SET b=40591 WHERE a=20538;\nUPDATE t2 SET b=22920 WHERE a=20539;\nUPDATE t2 SET b=68261 WHERE a=20540;\nUPDATE t2 SET b=94276 WHERE a=20541;\nUPDATE t2 SET b=9393 WHERE a=20542;\nUPDATE t2 SET b=17203 WHERE a=20543;\nUPDATE t2 SET b=85816 WHERE a=20544;\nUPDATE t2 SET b=18626 WHERE a=20545;\nUPDATE t2 SET b=95559 WHERE a=20546;\nUPDATE t2 SET b=41927 WHERE a=20547;\nUPDATE t2 SET b=78878 WHERE a=20548;\nUPDATE t2 SET b=99212 WHERE a=20549;\nUPDATE t2 SET b=93816 WHERE a=20550;\nUPDATE t2 SET b=1040 WHERE a=20551;\nUPDATE t2 SET b=5624 WHERE a=20552;\nUPDATE t2 SET b=95424 WHERE a=20553;\nUPDATE t2 SET b=59513 WHERE a=20554;\nUPDATE t2 SET b=7814 WHERE a=20555;\nUPDATE t2 SET b=91131 WHERE a=20556;\nUPDATE t2 SET b=20884 WHERE a=20557;\nUPDATE t2 SET b=3646 WHERE a=20558;\nUPDATE t2 SET b=91757 WHERE a=20559;\nUPDATE t2 SET b=85197 WHERE a=20560;\nUPDATE t2 SET b=8807 WHERE a=20561;\nUPDATE t2 SET b=23306 WHERE a=20562;\nUPDATE t2 SET b=87876 WHERE a=20563;\nUPDATE t2 SET b=24944 WHERE a=20564;\nUPDATE t2 SET b=20875 WHERE a=20565;\nUPDATE t2 SET b=71602 WHERE a=20566;\nUPDATE t2 SET b=34742 WHERE a=20567;\nUPDATE t2 SET b=8240 WHERE a=20568;\nUPDATE t2 SET b=51064 WHERE a=20569;\nUPDATE t2 SET b=98980 WHERE a=20570;\nUPDATE t2 SET b=73155 WHERE a=20571;\nUPDATE t2 SET b=74299 WHERE a=20572;\nUPDATE t2 SET b=36816 WHERE a=20573;\nUPDATE t2 SET b=66477 WHERE a=20574;\nUPDATE t2 SET b=66427 WHERE a=20575;\nUPDATE t2 SET b=7124 WHERE a=20576;\nUPDATE t2 SET b=52035 WHERE a=20577;\nUPDATE t2 SET b=53688 WHERE a=20578;\nUPDATE t2 SET b=40747 WHERE a=20579;\nUPDATE t2 SET b=73779 WHERE a=20580;\nUPDATE t2 SET b=71087 WHERE a=20581;\nUPDATE t2 SET b=26152 WHERE a=20582;\nUPDATE t2 SET b=92652 WHERE a=20583;\nUPDATE t2 SET b=90447 WHERE a=20584;\nUPDATE t2 SET b=86647 WHERE a=20585;\nUPDATE t2 SET b=96550 WHERE a=20586;\nUPDATE t2 SET b=98877 WHERE a=20587;\nUPDATE t2 SET b=84530 WHERE a=20588;\nUPDATE t2 SET b=6021 WHERE a=20589;\nUPDATE t2 SET b=94528 WHERE a=20590;\nUPDATE t2 SET b=53798 WHERE a=20591;\nUPDATE t2 SET b=46614 WHERE a=20592;\nUPDATE t2 SET b=24810 WHERE a=20593;\nUPDATE t2 SET b=7614 WHERE a=20594;\nUPDATE t2 SET b=49412 WHERE a=20595;\nUPDATE t2 SET b=35556 WHERE a=20596;\nUPDATE t2 SET b=83257 WHERE a=20597;\nUPDATE t2 SET b=57535 WHERE a=20598;\nUPDATE t2 SET b=5331 WHERE a=20599;\nUPDATE t2 SET b=59856 WHERE a=20600;\nUPDATE t2 SET b=36150 WHERE a=20601;\nUPDATE t2 SET b=21140 WHERE a=20602;\nUPDATE t2 SET b=41603 WHERE a=20603;\nUPDATE t2 SET b=25088 WHERE a=20604;\nUPDATE t2 SET b=10637 WHERE a=20605;\nUPDATE t2 SET b=22276 WHERE a=20606;\nUPDATE t2 SET b=86741 WHERE a=20607;\nUPDATE t2 SET b=81263 WHERE a=20608;\nUPDATE t2 SET b=77873 WHERE a=20609;\nUPDATE t2 SET b=75893 WHERE a=20610;\nUPDATE t2 SET b=17079 WHERE a=20611;\nUPDATE t2 SET b=26661 WHERE a=20612;\nUPDATE t2 SET b=79508 WHERE a=20613;\nUPDATE t2 SET b=53212 WHERE a=20614;\nUPDATE t2 SET b=44482 WHERE a=20615;\nUPDATE t2 SET b=4219 WHERE a=20616;\nUPDATE t2 SET b=20954 WHERE a=20617;\nUPDATE t2 SET b=69770 WHERE a=20618;\nUPDATE t2 SET b=72273 WHERE a=20619;\nUPDATE t2 SET b=52159 WHERE a=20620;\nUPDATE t2 SET b=5930 WHERE a=20621;\nUPDATE t2 SET b=26090 WHERE a=20622;\nUPDATE t2 SET b=94129 WHERE a=20623;\nUPDATE t2 SET b=57083 WHERE a=20624;\nUPDATE t2 SET b=81911 WHERE a=20625;\nUPDATE t2 SET b=56615 WHERE a=20626;\nUPDATE t2 SET b=53709 WHERE a=20627;\nUPDATE t2 SET b=9675 WHERE a=20628;\nUPDATE t2 SET b=42997 WHERE a=20629;\nUPDATE t2 SET b=80567 WHERE a=20630;\nUPDATE t2 SET b=34428 WHERE a=20631;\nUPDATE t2 SET b=43823 WHERE a=20632;\nUPDATE t2 SET b=24238 WHERE a=20633;\nUPDATE t2 SET b=79583 WHERE a=20634;\nUPDATE t2 SET b=8357 WHERE a=20635;\nUPDATE t2 SET b=87017 WHERE a=20636;\nUPDATE t2 SET b=51243 WHERE a=20637;\nUPDATE t2 SET b=55957 WHERE a=20638;\nUPDATE t2 SET b=16317 WHERE a=20639;\nUPDATE t2 SET b=14217 WHERE a=20640;\nUPDATE t2 SET b=51695 WHERE a=20641;\nUPDATE t2 SET b=47880 WHERE a=20642;\nUPDATE t2 SET b=48360 WHERE a=20643;\nUPDATE t2 SET b=62189 WHERE a=20644;\nUPDATE t2 SET b=88716 WHERE a=20645;\nUPDATE t2 SET b=84361 WHERE a=20646;\nUPDATE t2 SET b=15982 WHERE a=20647;\nUPDATE t2 SET b=24964 WHERE a=20648;\nUPDATE t2 SET b=49903 WHERE a=20649;\nUPDATE t2 SET b=74752 WHERE a=20650;\nUPDATE t2 SET b=34227 WHERE a=20651;\nUPDATE t2 SET b=40253 WHERE a=20652;\nUPDATE t2 SET b=12672 WHERE a=20653;\nUPDATE t2 SET b=88888 WHERE a=20654;\nUPDATE t2 SET b=43258 WHERE a=20655;\nUPDATE t2 SET b=91541 WHERE a=20656;\nUPDATE t2 SET b=62131 WHERE a=20657;\nUPDATE t2 SET b=53154 WHERE a=20658;\nUPDATE t2 SET b=36833 WHERE a=20659;\nUPDATE t2 SET b=98124 WHERE a=20660;\nUPDATE t2 SET b=18037 WHERE a=20661;\nUPDATE t2 SET b=94577 WHERE a=20662;\nUPDATE t2 SET b=35421 WHERE a=20663;\nUPDATE t2 SET b=17754 WHERE a=20664;\nUPDATE t2 SET b=7707 WHERE a=20665;\nUPDATE t2 SET b=55416 WHERE a=20666;\nUPDATE t2 SET b=86782 WHERE a=20667;\nUPDATE t2 SET b=82916 WHERE a=20668;\nUPDATE t2 SET b=32099 WHERE a=20669;\nUPDATE t2 SET b=3201 WHERE a=20670;\nUPDATE t2 SET b=71332 WHERE a=20671;\nUPDATE t2 SET b=94160 WHERE a=20672;\nUPDATE t2 SET b=64054 WHERE a=20673;\nUPDATE t2 SET b=71802 WHERE a=20674;\nUPDATE t2 SET b=80621 WHERE a=20675;\nUPDATE t2 SET b=72286 WHERE a=20676;\nUPDATE t2 SET b=14436 WHERE a=20677;\nUPDATE t2 SET b=17690 WHERE a=20678;\nUPDATE t2 SET b=60915 WHERE a=20679;\nUPDATE t2 SET b=12008 WHERE a=20680;\nUPDATE t2 SET b=58092 WHERE a=20681;\nUPDATE t2 SET b=60457 WHERE a=20682;\nUPDATE t2 SET b=54784 WHERE a=20683;\nUPDATE t2 SET b=71146 WHERE a=20684;\nUPDATE t2 SET b=32463 WHERE a=20685;\nUPDATE t2 SET b=9362 WHERE a=20686;\nUPDATE t2 SET b=22470 WHERE a=20687;\nUPDATE t2 SET b=91626 WHERE a=20688;\nUPDATE t2 SET b=71651 WHERE a=20689;\nUPDATE t2 SET b=52556 WHERE a=20690;\nUPDATE t2 SET b=37331 WHERE a=20691;\nUPDATE t2 SET b=62454 WHERE a=20692;\nUPDATE t2 SET b=88501 WHERE a=20693;\nUPDATE t2 SET b=97002 WHERE a=20694;\nUPDATE t2 SET b=28442 WHERE a=20695;\nUPDATE t2 SET b=9647 WHERE a=20696;\nUPDATE t2 SET b=95191 WHERE a=20697;\nUPDATE t2 SET b=48460 WHERE a=20698;\nUPDATE t2 SET b=61137 WHERE a=20699;\nUPDATE t2 SET b=89597 WHERE a=20700;\nUPDATE t2 SET b=37294 WHERE a=20701;\nUPDATE t2 SET b=79274 WHERE a=20702;\nUPDATE t2 SET b=36881 WHERE a=20703;\nUPDATE t2 SET b=3877 WHERE a=20704;\nUPDATE t2 SET b=26744 WHERE a=20705;\nUPDATE t2 SET b=40024 WHERE a=20706;\nUPDATE t2 SET b=19563 WHERE a=20707;\nUPDATE t2 SET b=92476 WHERE a=20708;\nUPDATE t2 SET b=34615 WHERE a=20709;\nUPDATE t2 SET b=75014 WHERE a=20710;\nUPDATE t2 SET b=40313 WHERE a=20711;\nUPDATE t2 SET b=56713 WHERE a=20712;\nUPDATE t2 SET b=27206 WHERE a=20713;\nUPDATE t2 SET b=52751 WHERE a=20714;\nUPDATE t2 SET b=62385 WHERE a=20715;\nUPDATE t2 SET b=61434 WHERE a=20716;\nUPDATE t2 SET b=75912 WHERE a=20717;\nUPDATE t2 SET b=30473 WHERE a=20718;\nUPDATE t2 SET b=79523 WHERE a=20719;\nUPDATE t2 SET b=17208 WHERE a=20720;\nUPDATE t2 SET b=7101 WHERE a=20721;\nUPDATE t2 SET b=8876 WHERE a=20722;\nUPDATE t2 SET b=57754 WHERE a=20723;\nUPDATE t2 SET b=29886 WHERE a=20724;\nUPDATE t2 SET b=79388 WHERE a=20725;\nUPDATE t2 SET b=82691 WHERE a=20726;\nUPDATE t2 SET b=16427 WHERE a=20727;\nUPDATE t2 SET b=26025 WHERE a=20728;\nUPDATE t2 SET b=75 WHERE a=20729;\nUPDATE t2 SET b=57288 WHERE a=20730;\nUPDATE t2 SET b=52424 WHERE a=20731;\nUPDATE t2 SET b=26614 WHERE a=20732;\nUPDATE t2 SET b=21568 WHERE a=20733;\nUPDATE t2 SET b=99819 WHERE a=20734;\nUPDATE t2 SET b=15212 WHERE a=20735;\nUPDATE t2 SET b=17790 WHERE a=20736;\nUPDATE t2 SET b=79578 WHERE a=20737;\nUPDATE t2 SET b=67956 WHERE a=20738;\nUPDATE t2 SET b=74002 WHERE a=20739;\nUPDATE t2 SET b=12435 WHERE a=20740;\nUPDATE t2 SET b=35369 WHERE a=20741;\nUPDATE t2 SET b=91530 WHERE a=20742;\nUPDATE t2 SET b=95938 WHERE a=20743;\nUPDATE t2 SET b=37698 WHERE a=20744;\nUPDATE t2 SET b=9639 WHERE a=20745;\nUPDATE t2 SET b=9414 WHERE a=20746;\nUPDATE t2 SET b=53118 WHERE a=20747;\nUPDATE t2 SET b=36571 WHERE a=20748;\nUPDATE t2 SET b=7866 WHERE a=20749;\nUPDATE t2 SET b=8357 WHERE a=20750;\nUPDATE t2 SET b=51364 WHERE a=20751;\nUPDATE t2 SET b=24329 WHERE a=20752;\nUPDATE t2 SET b=23512 WHERE a=20753;\nUPDATE t2 SET b=98584 WHERE a=20754;\nUPDATE t2 SET b=41933 WHERE a=20755;\nUPDATE t2 SET b=75243 WHERE a=20756;\nUPDATE t2 SET b=41465 WHERE a=20757;\nUPDATE t2 SET b=79641 WHERE a=20758;\nUPDATE t2 SET b=26391 WHERE a=20759;\nUPDATE t2 SET b=89719 WHERE a=20760;\nUPDATE t2 SET b=35364 WHERE a=20761;\nUPDATE t2 SET b=63777 WHERE a=20762;\nUPDATE t2 SET b=89713 WHERE a=20763;\nUPDATE t2 SET b=62753 WHERE a=20764;\nUPDATE t2 SET b=21856 WHERE a=20765;\nUPDATE t2 SET b=19812 WHERE a=20766;\nUPDATE t2 SET b=12797 WHERE a=20767;\nUPDATE t2 SET b=11243 WHERE a=20768;\nUPDATE t2 SET b=1608 WHERE a=20769;\nUPDATE t2 SET b=45741 WHERE a=20770;\nUPDATE t2 SET b=43989 WHERE a=20771;\nUPDATE t2 SET b=47753 WHERE a=20772;\nUPDATE t2 SET b=57436 WHERE a=20773;\nUPDATE t2 SET b=52550 WHERE a=20774;\nUPDATE t2 SET b=59550 WHERE a=20775;\nUPDATE t2 SET b=75800 WHERE a=20776;\nUPDATE t2 SET b=13818 WHERE a=20777;\nUPDATE t2 SET b=10949 WHERE a=20778;\nUPDATE t2 SET b=53159 WHERE a=20779;\nUPDATE t2 SET b=78794 WHERE a=20780;\nUPDATE t2 SET b=42530 WHERE a=20781;\nUPDATE t2 SET b=99557 WHERE a=20782;\nUPDATE t2 SET b=46465 WHERE a=20783;\nUPDATE t2 SET b=10681 WHERE a=20784;\nUPDATE t2 SET b=25695 WHERE a=20785;\nUPDATE t2 SET b=22567 WHERE a=20786;\nUPDATE t2 SET b=13831 WHERE a=20787;\nUPDATE t2 SET b=52434 WHERE a=20788;\nUPDATE t2 SET b=73210 WHERE a=20789;\nUPDATE t2 SET b=59702 WHERE a=20790;\nUPDATE t2 SET b=22893 WHERE a=20791;\nUPDATE t2 SET b=62428 WHERE a=20792;\nUPDATE t2 SET b=7037 WHERE a=20793;\nUPDATE t2 SET b=34330 WHERE a=20794;\nUPDATE t2 SET b=97634 WHERE a=20795;\nUPDATE t2 SET b=58492 WHERE a=20796;\nUPDATE t2 SET b=249 WHERE a=20797;\nUPDATE t2 SET b=95429 WHERE a=20798;\nUPDATE t2 SET b=49086 WHERE a=20799;\nUPDATE t2 SET b=39480 WHERE a=20800;\nUPDATE t2 SET b=49005 WHERE a=20801;\nUPDATE t2 SET b=77907 WHERE a=20802;\nUPDATE t2 SET b=11751 WHERE a=20803;\nUPDATE t2 SET b=8042 WHERE a=20804;\nUPDATE t2 SET b=99344 WHERE a=20805;\nUPDATE t2 SET b=64741 WHERE a=20806;\nUPDATE t2 SET b=41517 WHERE a=20807;\nUPDATE t2 SET b=10427 WHERE a=20808;\nUPDATE t2 SET b=94805 WHERE a=20809;\nUPDATE t2 SET b=40634 WHERE a=20810;\nUPDATE t2 SET b=25485 WHERE a=20811;\nUPDATE t2 SET b=67027 WHERE a=20812;\nUPDATE t2 SET b=11209 WHERE a=20813;\nUPDATE t2 SET b=35217 WHERE a=20814;\nUPDATE t2 SET b=64998 WHERE a=20815;\nUPDATE t2 SET b=50581 WHERE a=20816;\nUPDATE t2 SET b=31577 WHERE a=20817;\nUPDATE t2 SET b=58865 WHERE a=20818;\nUPDATE t2 SET b=50058 WHERE a=20819;\nUPDATE t2 SET b=6036 WHERE a=20820;\nUPDATE t2 SET b=2194 WHERE a=20821;\nUPDATE t2 SET b=97812 WHERE a=20822;\nUPDATE t2 SET b=15154 WHERE a=20823;\nUPDATE t2 SET b=94923 WHERE a=20824;\nUPDATE t2 SET b=75724 WHERE a=20825;\nUPDATE t2 SET b=74691 WHERE a=20826;\nUPDATE t2 SET b=96911 WHERE a=20827;\nUPDATE t2 SET b=61789 WHERE a=20828;\nUPDATE t2 SET b=11998 WHERE a=20829;\nUPDATE t2 SET b=23741 WHERE a=20830;\nUPDATE t2 SET b=95483 WHERE a=20831;\nUPDATE t2 SET b=48812 WHERE a=20832;\nUPDATE t2 SET b=23972 WHERE a=20833;\nUPDATE t2 SET b=62256 WHERE a=20834;\nUPDATE t2 SET b=44449 WHERE a=20835;\nUPDATE t2 SET b=67869 WHERE a=20836;\nUPDATE t2 SET b=83601 WHERE a=20837;\nUPDATE t2 SET b=66634 WHERE a=20838;\nUPDATE t2 SET b=84052 WHERE a=20839;\nUPDATE t2 SET b=78186 WHERE a=20840;\nUPDATE t2 SET b=8133 WHERE a=20841;\nUPDATE t2 SET b=22704 WHERE a=20842;\nUPDATE t2 SET b=65070 WHERE a=20843;\nUPDATE t2 SET b=6156 WHERE a=20844;\nUPDATE t2 SET b=49057 WHERE a=20845;\nUPDATE t2 SET b=15671 WHERE a=20846;\nUPDATE t2 SET b=50221 WHERE a=20847;\nUPDATE t2 SET b=88440 WHERE a=20848;\nUPDATE t2 SET b=74331 WHERE a=20849;\nUPDATE t2 SET b=12458 WHERE a=20850;\nUPDATE t2 SET b=33321 WHERE a=20851;\nUPDATE t2 SET b=20725 WHERE a=20852;\nUPDATE t2 SET b=33097 WHERE a=20853;\nUPDATE t2 SET b=9830 WHERE a=20854;\nUPDATE t2 SET b=50713 WHERE a=20855;\nUPDATE t2 SET b=66399 WHERE a=20856;\nUPDATE t2 SET b=82602 WHERE a=20857;\nUPDATE t2 SET b=83206 WHERE a=20858;\nUPDATE t2 SET b=61577 WHERE a=20859;\nUPDATE t2 SET b=5517 WHERE a=20860;\nUPDATE t2 SET b=92919 WHERE a=20861;\nUPDATE t2 SET b=14810 WHERE a=20862;\nUPDATE t2 SET b=74313 WHERE a=20863;\nUPDATE t2 SET b=67010 WHERE a=20864;\nUPDATE t2 SET b=87069 WHERE a=20865;\nUPDATE t2 SET b=46752 WHERE a=20866;\nUPDATE t2 SET b=29900 WHERE a=20867;\nUPDATE t2 SET b=30085 WHERE a=20868;\nUPDATE t2 SET b=45516 WHERE a=20869;\nUPDATE t2 SET b=8840 WHERE a=20870;\nUPDATE t2 SET b=3156 WHERE a=20871;\nUPDATE t2 SET b=96213 WHERE a=20872;\nUPDATE t2 SET b=68682 WHERE a=20873;\nUPDATE t2 SET b=5553 WHERE a=20874;\nUPDATE t2 SET b=44755 WHERE a=20875;\nUPDATE t2 SET b=93647 WHERE a=20876;\nUPDATE t2 SET b=64743 WHERE a=20877;\nUPDATE t2 SET b=18782 WHERE a=20878;\nUPDATE t2 SET b=65415 WHERE a=20879;\nUPDATE t2 SET b=31534 WHERE a=20880;\nUPDATE t2 SET b=45725 WHERE a=20881;\nUPDATE t2 SET b=24092 WHERE a=20882;\nUPDATE t2 SET b=91033 WHERE a=20883;\nUPDATE t2 SET b=5251 WHERE a=20884;\nUPDATE t2 SET b=55490 WHERE a=20885;\nUPDATE t2 SET b=81000 WHERE a=20886;\nUPDATE t2 SET b=31605 WHERE a=20887;\nUPDATE t2 SET b=39358 WHERE a=20888;\nUPDATE t2 SET b=62332 WHERE a=20889;\nUPDATE t2 SET b=66444 WHERE a=20890;\nUPDATE t2 SET b=69571 WHERE a=20891;\nUPDATE t2 SET b=66537 WHERE a=20892;\nUPDATE t2 SET b=12182 WHERE a=20893;\nUPDATE t2 SET b=3201 WHERE a=20894;\nUPDATE t2 SET b=30301 WHERE a=20895;\nUPDATE t2 SET b=13024 WHERE a=20896;\nUPDATE t2 SET b=52773 WHERE a=20897;\nUPDATE t2 SET b=76771 WHERE a=20898;\nUPDATE t2 SET b=37992 WHERE a=20899;\nUPDATE t2 SET b=16549 WHERE a=20900;\nUPDATE t2 SET b=87635 WHERE a=20901;\nUPDATE t2 SET b=8003 WHERE a=20902;\nUPDATE t2 SET b=77649 WHERE a=20903;\nUPDATE t2 SET b=77307 WHERE a=20904;\nUPDATE t2 SET b=46567 WHERE a=20905;\nUPDATE t2 SET b=25549 WHERE a=20906;\nUPDATE t2 SET b=26735 WHERE a=20907;\nUPDATE t2 SET b=67338 WHERE a=20908;\nUPDATE t2 SET b=33434 WHERE a=20909;\nUPDATE t2 SET b=19460 WHERE a=20910;\nUPDATE t2 SET b=56219 WHERE a=20911;\nUPDATE t2 SET b=22041 WHERE a=20912;\nUPDATE t2 SET b=82328 WHERE a=20913;\nUPDATE t2 SET b=28504 WHERE a=20914;\nUPDATE t2 SET b=46405 WHERE a=20915;\nUPDATE t2 SET b=316 WHERE a=20916;\nUPDATE t2 SET b=2854 WHERE a=20917;\nUPDATE t2 SET b=82345 WHERE a=20918;\nUPDATE t2 SET b=80356 WHERE a=20919;\nUPDATE t2 SET b=64550 WHERE a=20920;\nUPDATE t2 SET b=19266 WHERE a=20921;\nUPDATE t2 SET b=93203 WHERE a=20922;\nUPDATE t2 SET b=45865 WHERE a=20923;\nUPDATE t2 SET b=18365 WHERE a=20924;\nUPDATE t2 SET b=19945 WHERE a=20925;\nUPDATE t2 SET b=57003 WHERE a=20926;\nUPDATE t2 SET b=53692 WHERE a=20927;\nUPDATE t2 SET b=29397 WHERE a=20928;\nUPDATE t2 SET b=2672 WHERE a=20929;\nUPDATE t2 SET b=12215 WHERE a=20930;\nUPDATE t2 SET b=92268 WHERE a=20931;\nUPDATE t2 SET b=97615 WHERE a=20932;\nUPDATE t2 SET b=17836 WHERE a=20933;\nUPDATE t2 SET b=90624 WHERE a=20934;\nUPDATE t2 SET b=96626 WHERE a=20935;\nUPDATE t2 SET b=48256 WHERE a=20936;\nUPDATE t2 SET b=78602 WHERE a=20937;\nUPDATE t2 SET b=65096 WHERE a=20938;\nUPDATE t2 SET b=92637 WHERE a=20939;\nUPDATE t2 SET b=74555 WHERE a=20940;\nUPDATE t2 SET b=52687 WHERE a=20941;\nUPDATE t2 SET b=12381 WHERE a=20942;\nUPDATE t2 SET b=12848 WHERE a=20943;\nUPDATE t2 SET b=30340 WHERE a=20944;\nUPDATE t2 SET b=19385 WHERE a=20945;\nUPDATE t2 SET b=6331 WHERE a=20946;\nUPDATE t2 SET b=23940 WHERE a=20947;\nUPDATE t2 SET b=33574 WHERE a=20948;\nUPDATE t2 SET b=40358 WHERE a=20949;\nUPDATE t2 SET b=23538 WHERE a=20950;\nUPDATE t2 SET b=58943 WHERE a=20951;\nUPDATE t2 SET b=86902 WHERE a=20952;\nUPDATE t2 SET b=67132 WHERE a=20953;\nUPDATE t2 SET b=80204 WHERE a=20954;\nUPDATE t2 SET b=19820 WHERE a=20955;\nUPDATE t2 SET b=94898 WHERE a=20956;\nUPDATE t2 SET b=17584 WHERE a=20957;\nUPDATE t2 SET b=19778 WHERE a=20958;\nUPDATE t2 SET b=91711 WHERE a=20959;\nUPDATE t2 SET b=69716 WHERE a=20960;\nUPDATE t2 SET b=78030 WHERE a=20961;\nUPDATE t2 SET b=98757 WHERE a=20962;\nUPDATE t2 SET b=67966 WHERE a=20963;\nUPDATE t2 SET b=25155 WHERE a=20964;\nUPDATE t2 SET b=11878 WHERE a=20965;\nUPDATE t2 SET b=14474 WHERE a=20966;\nUPDATE t2 SET b=49764 WHERE a=20967;\nUPDATE t2 SET b=20290 WHERE a=20968;\nUPDATE t2 SET b=87894 WHERE a=20969;\nUPDATE t2 SET b=87125 WHERE a=20970;\nUPDATE t2 SET b=55926 WHERE a=20971;\nUPDATE t2 SET b=36578 WHERE a=20972;\nUPDATE t2 SET b=39639 WHERE a=20973;\nUPDATE t2 SET b=5037 WHERE a=20974;\nUPDATE t2 SET b=99104 WHERE a=20975;\nUPDATE t2 SET b=47869 WHERE a=20976;\nUPDATE t2 SET b=92466 WHERE a=20977;\nUPDATE t2 SET b=70926 WHERE a=20978;\nUPDATE t2 SET b=88817 WHERE a=20979;\nUPDATE t2 SET b=56615 WHERE a=20980;\nUPDATE t2 SET b=40723 WHERE a=20981;\nUPDATE t2 SET b=92536 WHERE a=20982;\nUPDATE t2 SET b=38714 WHERE a=20983;\nUPDATE t2 SET b=54347 WHERE a=20984;\nUPDATE t2 SET b=49458 WHERE a=20985;\nUPDATE t2 SET b=92836 WHERE a=20986;\nUPDATE t2 SET b=99599 WHERE a=20987;\nUPDATE t2 SET b=8599 WHERE a=20988;\nUPDATE t2 SET b=29882 WHERE a=20989;\nUPDATE t2 SET b=2209 WHERE a=20990;\nUPDATE t2 SET b=69932 WHERE a=20991;\nUPDATE t2 SET b=11050 WHERE a=20992;\nUPDATE t2 SET b=60127 WHERE a=20993;\nUPDATE t2 SET b=34029 WHERE a=20994;\nUPDATE t2 SET b=67040 WHERE a=20995;\nUPDATE t2 SET b=35321 WHERE a=20996;\nUPDATE t2 SET b=856 WHERE a=20997;\nUPDATE t2 SET b=30724 WHERE a=20998;\nUPDATE t2 SET b=18444 WHERE a=20999;\nUPDATE t2 SET b=54283 WHERE a=21000;\nUPDATE t2 SET b=67616 WHERE a=21001;\nUPDATE t2 SET b=21857 WHERE a=21002;\nUPDATE t2 SET b=42712 WHERE a=21003;\nUPDATE t2 SET b=11276 WHERE a=21004;\nUPDATE t2 SET b=68599 WHERE a=21005;\nUPDATE t2 SET b=38622 WHERE a=21006;\nUPDATE t2 SET b=87308 WHERE a=21007;\nUPDATE t2 SET b=25782 WHERE a=21008;\nUPDATE t2 SET b=89647 WHERE a=21009;\nUPDATE t2 SET b=83004 WHERE a=21010;\nUPDATE t2 SET b=37988 WHERE a=21011;\nUPDATE t2 SET b=82560 WHERE a=21012;\nUPDATE t2 SET b=3639 WHERE a=21013;\nUPDATE t2 SET b=49543 WHERE a=21014;\nUPDATE t2 SET b=57215 WHERE a=21015;\nUPDATE t2 SET b=74512 WHERE a=21016;\nUPDATE t2 SET b=64111 WHERE a=21017;\nUPDATE t2 SET b=22655 WHERE a=21018;\nUPDATE t2 SET b=82533 WHERE a=21019;\nUPDATE t2 SET b=73772 WHERE a=21020;\nUPDATE t2 SET b=22144 WHERE a=21021;\nUPDATE t2 SET b=88942 WHERE a=21022;\nUPDATE t2 SET b=75252 WHERE a=21023;\nUPDATE t2 SET b=44814 WHERE a=21024;\nUPDATE t2 SET b=88953 WHERE a=21025;\nUPDATE t2 SET b=91467 WHERE a=21026;\nUPDATE t2 SET b=49503 WHERE a=21027;\nUPDATE t2 SET b=54668 WHERE a=21028;\nUPDATE t2 SET b=68997 WHERE a=21029;\nUPDATE t2 SET b=77926 WHERE a=21030;\nUPDATE t2 SET b=38165 WHERE a=21031;\nUPDATE t2 SET b=96816 WHERE a=21032;\nUPDATE t2 SET b=89809 WHERE a=21033;\nUPDATE t2 SET b=20392 WHERE a=21034;\nUPDATE t2 SET b=75649 WHERE a=21035;\nUPDATE t2 SET b=23074 WHERE a=21036;\nUPDATE t2 SET b=36248 WHERE a=21037;\nUPDATE t2 SET b=18872 WHERE a=21038;\nUPDATE t2 SET b=63635 WHERE a=21039;\nUPDATE t2 SET b=9631 WHERE a=21040;\nUPDATE t2 SET b=8321 WHERE a=21041;\nUPDATE t2 SET b=16205 WHERE a=21042;\nUPDATE t2 SET b=14250 WHERE a=21043;\nUPDATE t2 SET b=96131 WHERE a=21044;\nUPDATE t2 SET b=91977 WHERE a=21045;\nUPDATE t2 SET b=33412 WHERE a=21046;\nUPDATE t2 SET b=27596 WHERE a=21047;\nUPDATE t2 SET b=37096 WHERE a=21048;\nUPDATE t2 SET b=39088 WHERE a=21049;\nUPDATE t2 SET b=11925 WHERE a=21050;\nUPDATE t2 SET b=55820 WHERE a=21051;\nUPDATE t2 SET b=58405 WHERE a=21052;\nUPDATE t2 SET b=48758 WHERE a=21053;\nUPDATE t2 SET b=62737 WHERE a=21054;\nUPDATE t2 SET b=48797 WHERE a=21055;\nUPDATE t2 SET b=1356 WHERE a=21056;\nUPDATE t2 SET b=18931 WHERE a=21057;\nUPDATE t2 SET b=59945 WHERE a=21058;\nUPDATE t2 SET b=73405 WHERE a=21059;\nUPDATE t2 SET b=60686 WHERE a=21060;\nUPDATE t2 SET b=56523 WHERE a=21061;\nUPDATE t2 SET b=95048 WHERE a=21062;\nUPDATE t2 SET b=27498 WHERE a=21063;\nUPDATE t2 SET b=22375 WHERE a=21064;\nUPDATE t2 SET b=69952 WHERE a=21065;\nUPDATE t2 SET b=53011 WHERE a=21066;\nUPDATE t2 SET b=81574 WHERE a=21067;\nUPDATE t2 SET b=52197 WHERE a=21068;\nUPDATE t2 SET b=6083 WHERE a=21069;\nUPDATE t2 SET b=86896 WHERE a=21070;\nUPDATE t2 SET b=18897 WHERE a=21071;\nUPDATE t2 SET b=89231 WHERE a=21072;\nUPDATE t2 SET b=42674 WHERE a=21073;\nUPDATE t2 SET b=63709 WHERE a=21074;\nUPDATE t2 SET b=31465 WHERE a=21075;\nUPDATE t2 SET b=78213 WHERE a=21076;\nUPDATE t2 SET b=91256 WHERE a=21077;\nUPDATE t2 SET b=39328 WHERE a=21078;\nUPDATE t2 SET b=24070 WHERE a=21079;\nUPDATE t2 SET b=61992 WHERE a=21080;\nUPDATE t2 SET b=22300 WHERE a=21081;\nUPDATE t2 SET b=23182 WHERE a=21082;\nUPDATE t2 SET b=31567 WHERE a=21083;\nUPDATE t2 SET b=88573 WHERE a=21084;\nUPDATE t2 SET b=55631 WHERE a=21085;\nUPDATE t2 SET b=83709 WHERE a=21086;\nUPDATE t2 SET b=63582 WHERE a=21087;\nUPDATE t2 SET b=65459 WHERE a=21088;\nUPDATE t2 SET b=43991 WHERE a=21089;\nUPDATE t2 SET b=310 WHERE a=21090;\nUPDATE t2 SET b=91449 WHERE a=21091;\nUPDATE t2 SET b=40735 WHERE a=21092;\nUPDATE t2 SET b=16978 WHERE a=21093;\nUPDATE t2 SET b=62365 WHERE a=21094;\nUPDATE t2 SET b=42006 WHERE a=21095;\nUPDATE t2 SET b=38183 WHERE a=21096;\nUPDATE t2 SET b=74518 WHERE a=21097;\nUPDATE t2 SET b=70095 WHERE a=21098;\nUPDATE t2 SET b=79264 WHERE a=21099;\nUPDATE t2 SET b=77462 WHERE a=21100;\nUPDATE t2 SET b=85666 WHERE a=21101;\nUPDATE t2 SET b=42153 WHERE a=21102;\nUPDATE t2 SET b=13758 WHERE a=21103;\nUPDATE t2 SET b=56194 WHERE a=21104;\nUPDATE t2 SET b=2563 WHERE a=21105;\nUPDATE t2 SET b=45356 WHERE a=21106;\nUPDATE t2 SET b=87531 WHERE a=21107;\nUPDATE t2 SET b=78682 WHERE a=21108;\nUPDATE t2 SET b=42155 WHERE a=21109;\nUPDATE t2 SET b=6007 WHERE a=21110;\nUPDATE t2 SET b=67705 WHERE a=21111;\nUPDATE t2 SET b=13189 WHERE a=21112;\nUPDATE t2 SET b=75917 WHERE a=21113;\nUPDATE t2 SET b=91822 WHERE a=21114;\nUPDATE t2 SET b=41046 WHERE a=21115;\nUPDATE t2 SET b=95397 WHERE a=21116;\nUPDATE t2 SET b=67076 WHERE a=21117;\nUPDATE t2 SET b=8493 WHERE a=21118;\nUPDATE t2 SET b=21668 WHERE a=21119;\nUPDATE t2 SET b=43513 WHERE a=21120;\nUPDATE t2 SET b=76615 WHERE a=21121;\nUPDATE t2 SET b=49461 WHERE a=21122;\nUPDATE t2 SET b=29493 WHERE a=21123;\nUPDATE t2 SET b=29797 WHERE a=21124;\nUPDATE t2 SET b=27789 WHERE a=21125;\nUPDATE t2 SET b=36082 WHERE a=21126;\nUPDATE t2 SET b=15341 WHERE a=21127;\nUPDATE t2 SET b=63706 WHERE a=21128;\nUPDATE t2 SET b=76906 WHERE a=21129;\nUPDATE t2 SET b=31824 WHERE a=21130;\nUPDATE t2 SET b=67645 WHERE a=21131;\nUPDATE t2 SET b=29914 WHERE a=21132;\nUPDATE t2 SET b=45743 WHERE a=21133;\nUPDATE t2 SET b=92418 WHERE a=21134;\nUPDATE t2 SET b=77181 WHERE a=21135;\nUPDATE t2 SET b=87816 WHERE a=21136;\nUPDATE t2 SET b=65580 WHERE a=21137;\nUPDATE t2 SET b=8434 WHERE a=21138;\nUPDATE t2 SET b=85183 WHERE a=21139;\nUPDATE t2 SET b=91160 WHERE a=21140;\nUPDATE t2 SET b=50810 WHERE a=21141;\nUPDATE t2 SET b=57546 WHERE a=21142;\nUPDATE t2 SET b=74594 WHERE a=21143;\nUPDATE t2 SET b=84695 WHERE a=21144;\nUPDATE t2 SET b=49721 WHERE a=21145;\nUPDATE t2 SET b=50165 WHERE a=21146;\nUPDATE t2 SET b=72947 WHERE a=21147;\nUPDATE t2 SET b=32656 WHERE a=21148;\nUPDATE t2 SET b=86545 WHERE a=21149;\nUPDATE t2 SET b=70240 WHERE a=21150;\nUPDATE t2 SET b=5891 WHERE a=21151;\nUPDATE t2 SET b=44074 WHERE a=21152;\nUPDATE t2 SET b=40630 WHERE a=21153;\nUPDATE t2 SET b=22611 WHERE a=21154;\nUPDATE t2 SET b=86031 WHERE a=21155;\nUPDATE t2 SET b=23123 WHERE a=21156;\nUPDATE t2 SET b=98507 WHERE a=21157;\nUPDATE t2 SET b=1591 WHERE a=21158;\nUPDATE t2 SET b=37233 WHERE a=21159;\nUPDATE t2 SET b=54716 WHERE a=21160;\nUPDATE t2 SET b=50283 WHERE a=21161;\nUPDATE t2 SET b=67898 WHERE a=21162;\nUPDATE t2 SET b=70601 WHERE a=21163;\nUPDATE t2 SET b=23388 WHERE a=21164;\nUPDATE t2 SET b=43428 WHERE a=21165;\nUPDATE t2 SET b=62165 WHERE a=21166;\nUPDATE t2 SET b=53738 WHERE a=21167;\nUPDATE t2 SET b=37113 WHERE a=21168;\nUPDATE t2 SET b=49420 WHERE a=21169;\nUPDATE t2 SET b=72142 WHERE a=21170;\nUPDATE t2 SET b=93344 WHERE a=21171;\nUPDATE t2 SET b=70956 WHERE a=21172;\nUPDATE t2 SET b=70848 WHERE a=21173;\nUPDATE t2 SET b=99438 WHERE a=21174;\nUPDATE t2 SET b=68131 WHERE a=21175;\nUPDATE t2 SET b=6286 WHERE a=21176;\nUPDATE t2 SET b=26456 WHERE a=21177;\nUPDATE t2 SET b=63815 WHERE a=21178;\nUPDATE t2 SET b=43039 WHERE a=21179;\nUPDATE t2 SET b=28472 WHERE a=21180;\nUPDATE t2 SET b=29755 WHERE a=21181;\nUPDATE t2 SET b=42173 WHERE a=21182;\nUPDATE t2 SET b=33833 WHERE a=21183;\nUPDATE t2 SET b=25064 WHERE a=21184;\nUPDATE t2 SET b=99137 WHERE a=21185;\nUPDATE t2 SET b=70421 WHERE a=21186;\nUPDATE t2 SET b=64483 WHERE a=21187;\nUPDATE t2 SET b=80263 WHERE a=21188;\nUPDATE t2 SET b=16130 WHERE a=21189;\nUPDATE t2 SET b=74877 WHERE a=21190;\nUPDATE t2 SET b=80523 WHERE a=21191;\nUPDATE t2 SET b=2978 WHERE a=21192;\nUPDATE t2 SET b=63848 WHERE a=21193;\nUPDATE t2 SET b=2426 WHERE a=21194;\nUPDATE t2 SET b=58109 WHERE a=21195;\nUPDATE t2 SET b=36579 WHERE a=21196;\nUPDATE t2 SET b=82169 WHERE a=21197;\nUPDATE t2 SET b=42299 WHERE a=21198;\nUPDATE t2 SET b=43063 WHERE a=21199;\nUPDATE t2 SET b=10853 WHERE a=21200;\nUPDATE t2 SET b=43885 WHERE a=21201;\nUPDATE t2 SET b=82248 WHERE a=21202;\nUPDATE t2 SET b=79958 WHERE a=21203;\nUPDATE t2 SET b=13563 WHERE a=21204;\nUPDATE t2 SET b=12599 WHERE a=21205;\nUPDATE t2 SET b=61231 WHERE a=21206;\nUPDATE t2 SET b=78 WHERE a=21207;\nUPDATE t2 SET b=67334 WHERE a=21208;\nUPDATE t2 SET b=89867 WHERE a=21209;\nUPDATE t2 SET b=53978 WHERE a=21210;\nUPDATE t2 SET b=40152 WHERE a=21211;\nUPDATE t2 SET b=49864 WHERE a=21212;\nUPDATE t2 SET b=56188 WHERE a=21213;\nUPDATE t2 SET b=13412 WHERE a=21214;\nUPDATE t2 SET b=94604 WHERE a=21215;\nUPDATE t2 SET b=77113 WHERE a=21216;\nUPDATE t2 SET b=26583 WHERE a=21217;\nUPDATE t2 SET b=3550 WHERE a=21218;\nUPDATE t2 SET b=63367 WHERE a=21219;\nUPDATE t2 SET b=19946 WHERE a=21220;\nUPDATE t2 SET b=71107 WHERE a=21221;\nUPDATE t2 SET b=59255 WHERE a=21222;\nUPDATE t2 SET b=61467 WHERE a=21223;\nUPDATE t2 SET b=63189 WHERE a=21224;\nUPDATE t2 SET b=84567 WHERE a=21225;\nUPDATE t2 SET b=27891 WHERE a=21226;\nUPDATE t2 SET b=79127 WHERE a=21227;\nUPDATE t2 SET b=34060 WHERE a=21228;\nUPDATE t2 SET b=89709 WHERE a=21229;\nUPDATE t2 SET b=50132 WHERE a=21230;\nUPDATE t2 SET b=60423 WHERE a=21231;\nUPDATE t2 SET b=60268 WHERE a=21232;\nUPDATE t2 SET b=90276 WHERE a=21233;\nUPDATE t2 SET b=44328 WHERE a=21234;\nUPDATE t2 SET b=71738 WHERE a=21235;\nUPDATE t2 SET b=84812 WHERE a=21236;\nUPDATE t2 SET b=26288 WHERE a=21237;\nUPDATE t2 SET b=57273 WHERE a=21238;\nUPDATE t2 SET b=98501 WHERE a=21239;\nUPDATE t2 SET b=17172 WHERE a=21240;\nUPDATE t2 SET b=81867 WHERE a=21241;\nUPDATE t2 SET b=53342 WHERE a=21242;\nUPDATE t2 SET b=85139 WHERE a=21243;\nUPDATE t2 SET b=12718 WHERE a=21244;\nUPDATE t2 SET b=65307 WHERE a=21245;\nUPDATE t2 SET b=20724 WHERE a=21246;\nUPDATE t2 SET b=27502 WHERE a=21247;\nUPDATE t2 SET b=60995 WHERE a=21248;\nUPDATE t2 SET b=4519 WHERE a=21249;\nUPDATE t2 SET b=57566 WHERE a=21250;\nUPDATE t2 SET b=80489 WHERE a=21251;\nUPDATE t2 SET b=88419 WHERE a=21252;\nUPDATE t2 SET b=16411 WHERE a=21253;\nUPDATE t2 SET b=21309 WHERE a=21254;\nUPDATE t2 SET b=70965 WHERE a=21255;\nUPDATE t2 SET b=57369 WHERE a=21256;\nUPDATE t2 SET b=99390 WHERE a=21257;\nUPDATE t2 SET b=70699 WHERE a=21258;\nUPDATE t2 SET b=23494 WHERE a=21259;\nUPDATE t2 SET b=68953 WHERE a=21260;\nUPDATE t2 SET b=15715 WHERE a=21261;\nUPDATE t2 SET b=26634 WHERE a=21262;\nUPDATE t2 SET b=84567 WHERE a=21263;\nUPDATE t2 SET b=95286 WHERE a=21264;\nUPDATE t2 SET b=70738 WHERE a=21265;\nUPDATE t2 SET b=90350 WHERE a=21266;\nUPDATE t2 SET b=33513 WHERE a=21267;\nUPDATE t2 SET b=79891 WHERE a=21268;\nUPDATE t2 SET b=27734 WHERE a=21269;\nUPDATE t2 SET b=82928 WHERE a=21270;\nUPDATE t2 SET b=8184 WHERE a=21271;\nUPDATE t2 SET b=39474 WHERE a=21272;\nUPDATE t2 SET b=76323 WHERE a=21273;\nUPDATE t2 SET b=67595 WHERE a=21274;\nUPDATE t2 SET b=97746 WHERE a=21275;\nUPDATE t2 SET b=50578 WHERE a=21276;\nUPDATE t2 SET b=69059 WHERE a=21277;\nUPDATE t2 SET b=43623 WHERE a=21278;\nUPDATE t2 SET b=77116 WHERE a=21279;\nUPDATE t2 SET b=56691 WHERE a=21280;\nUPDATE t2 SET b=3579 WHERE a=21281;\nUPDATE t2 SET b=47075 WHERE a=21282;\nUPDATE t2 SET b=8320 WHERE a=21283;\nUPDATE t2 SET b=28647 WHERE a=21284;\nUPDATE t2 SET b=361 WHERE a=21285;\nUPDATE t2 SET b=89362 WHERE a=21286;\nUPDATE t2 SET b=8829 WHERE a=21287;\nUPDATE t2 SET b=26920 WHERE a=21288;\nUPDATE t2 SET b=74590 WHERE a=21289;\nUPDATE t2 SET b=28586 WHERE a=21290;\nUPDATE t2 SET b=20587 WHERE a=21291;\nUPDATE t2 SET b=62484 WHERE a=21292;\nUPDATE t2 SET b=97682 WHERE a=21293;\nUPDATE t2 SET b=70118 WHERE a=21294;\nUPDATE t2 SET b=11563 WHERE a=21295;\nUPDATE t2 SET b=9849 WHERE a=21296;\nUPDATE t2 SET b=11993 WHERE a=21297;\nUPDATE t2 SET b=1124 WHERE a=21298;\nUPDATE t2 SET b=43508 WHERE a=21299;\nUPDATE t2 SET b=10318 WHERE a=21300;\nUPDATE t2 SET b=72144 WHERE a=21301;\nUPDATE t2 SET b=98146 WHERE a=21302;\nUPDATE t2 SET b=74099 WHERE a=21303;\nUPDATE t2 SET b=28281 WHERE a=21304;\nUPDATE t2 SET b=19416 WHERE a=21305;\nUPDATE t2 SET b=36204 WHERE a=21306;\nUPDATE t2 SET b=92613 WHERE a=21307;\nUPDATE t2 SET b=66513 WHERE a=21308;\nUPDATE t2 SET b=88398 WHERE a=21309;\nUPDATE t2 SET b=90702 WHERE a=21310;\nUPDATE t2 SET b=79992 WHERE a=21311;\nUPDATE t2 SET b=9107 WHERE a=21312;\nUPDATE t2 SET b=4560 WHERE a=21313;\nUPDATE t2 SET b=93972 WHERE a=21314;\nUPDATE t2 SET b=49150 WHERE a=21315;\nUPDATE t2 SET b=23459 WHERE a=21316;\nUPDATE t2 SET b=52128 WHERE a=21317;\nUPDATE t2 SET b=82598 WHERE a=21318;\nUPDATE t2 SET b=86199 WHERE a=21319;\nUPDATE t2 SET b=40683 WHERE a=21320;\nUPDATE t2 SET b=64843 WHERE a=21321;\nUPDATE t2 SET b=46827 WHERE a=21322;\nUPDATE t2 SET b=50498 WHERE a=21323;\nUPDATE t2 SET b=33532 WHERE a=21324;\nUPDATE t2 SET b=37438 WHERE a=21325;\nUPDATE t2 SET b=48685 WHERE a=21326;\nUPDATE t2 SET b=50905 WHERE a=21327;\nUPDATE t2 SET b=30413 WHERE a=21328;\nUPDATE t2 SET b=32871 WHERE a=21329;\nUPDATE t2 SET b=9867 WHERE a=21330;\nUPDATE t2 SET b=20139 WHERE a=21331;\nUPDATE t2 SET b=67120 WHERE a=21332;\nUPDATE t2 SET b=14338 WHERE a=21333;\nUPDATE t2 SET b=22517 WHERE a=21334;\nUPDATE t2 SET b=94224 WHERE a=21335;\nUPDATE t2 SET b=19194 WHERE a=21336;\nUPDATE t2 SET b=96920 WHERE a=21337;\nUPDATE t2 SET b=4270 WHERE a=21338;\nUPDATE t2 SET b=730 WHERE a=21339;\nUPDATE t2 SET b=47646 WHERE a=21340;\nUPDATE t2 SET b=14244 WHERE a=21341;\nUPDATE t2 SET b=17551 WHERE a=21342;\nUPDATE t2 SET b=95103 WHERE a=21343;\nUPDATE t2 SET b=5495 WHERE a=21344;\nUPDATE t2 SET b=49325 WHERE a=21345;\nUPDATE t2 SET b=39142 WHERE a=21346;\nUPDATE t2 SET b=70791 WHERE a=21347;\nUPDATE t2 SET b=45094 WHERE a=21348;\nUPDATE t2 SET b=75638 WHERE a=21349;\nUPDATE t2 SET b=31713 WHERE a=21350;\nUPDATE t2 SET b=90321 WHERE a=21351;\nUPDATE t2 SET b=89124 WHERE a=21352;\nUPDATE t2 SET b=66682 WHERE a=21353;\nUPDATE t2 SET b=21567 WHERE a=21354;\nUPDATE t2 SET b=40680 WHERE a=21355;\nUPDATE t2 SET b=73144 WHERE a=21356;\nUPDATE t2 SET b=9874 WHERE a=21357;\nUPDATE t2 SET b=27352 WHERE a=21358;\nUPDATE t2 SET b=35543 WHERE a=21359;\nUPDATE t2 SET b=43258 WHERE a=21360;\nUPDATE t2 SET b=16445 WHERE a=21361;\nUPDATE t2 SET b=28967 WHERE a=21362;\nUPDATE t2 SET b=11023 WHERE a=21363;\nUPDATE t2 SET b=17747 WHERE a=21364;\nUPDATE t2 SET b=6783 WHERE a=21365;\nUPDATE t2 SET b=95122 WHERE a=21366;\nUPDATE t2 SET b=3151 WHERE a=21367;\nUPDATE t2 SET b=87924 WHERE a=21368;\nUPDATE t2 SET b=69569 WHERE a=21369;\nUPDATE t2 SET b=25846 WHERE a=21370;\nUPDATE t2 SET b=63388 WHERE a=21371;\nUPDATE t2 SET b=56855 WHERE a=21372;\nUPDATE t2 SET b=31921 WHERE a=21373;\nUPDATE t2 SET b=63148 WHERE a=21374;\nUPDATE t2 SET b=98095 WHERE a=21375;\nUPDATE t2 SET b=27447 WHERE a=21376;\nUPDATE t2 SET b=38856 WHERE a=21377;\nUPDATE t2 SET b=81276 WHERE a=21378;\nUPDATE t2 SET b=51911 WHERE a=21379;\nUPDATE t2 SET b=13092 WHERE a=21380;\nUPDATE t2 SET b=75979 WHERE a=21381;\nUPDATE t2 SET b=47140 WHERE a=21382;\nUPDATE t2 SET b=41813 WHERE a=21383;\nUPDATE t2 SET b=30711 WHERE a=21384;\nUPDATE t2 SET b=15885 WHERE a=21385;\nUPDATE t2 SET b=71366 WHERE a=21386;\nUPDATE t2 SET b=39176 WHERE a=21387;\nUPDATE t2 SET b=92674 WHERE a=21388;\nUPDATE t2 SET b=17521 WHERE a=21389;\nUPDATE t2 SET b=96959 WHERE a=21390;\nUPDATE t2 SET b=1905 WHERE a=21391;\nUPDATE t2 SET b=19602 WHERE a=21392;\nUPDATE t2 SET b=93324 WHERE a=21393;\nUPDATE t2 SET b=89978 WHERE a=21394;\nUPDATE t2 SET b=3474 WHERE a=21395;\nUPDATE t2 SET b=11405 WHERE a=21396;\nUPDATE t2 SET b=38725 WHERE a=21397;\nUPDATE t2 SET b=3308 WHERE a=21398;\nUPDATE t2 SET b=34152 WHERE a=21399;\nUPDATE t2 SET b=15227 WHERE a=21400;\nUPDATE t2 SET b=71392 WHERE a=21401;\nUPDATE t2 SET b=4450 WHERE a=21402;\nUPDATE t2 SET b=3447 WHERE a=21403;\nUPDATE t2 SET b=97568 WHERE a=21404;\nUPDATE t2 SET b=86121 WHERE a=21405;\nUPDATE t2 SET b=89456 WHERE a=21406;\nUPDATE t2 SET b=57662 WHERE a=21407;\nUPDATE t2 SET b=45671 WHERE a=21408;\nUPDATE t2 SET b=28938 WHERE a=21409;\nUPDATE t2 SET b=29529 WHERE a=21410;\nUPDATE t2 SET b=79928 WHERE a=21411;\nUPDATE t2 SET b=66365 WHERE a=21412;\nUPDATE t2 SET b=79489 WHERE a=21413;\nUPDATE t2 SET b=87068 WHERE a=21414;\nUPDATE t2 SET b=31802 WHERE a=21415;\nUPDATE t2 SET b=9399 WHERE a=21416;\nUPDATE t2 SET b=63411 WHERE a=21417;\nUPDATE t2 SET b=30475 WHERE a=21418;\nUPDATE t2 SET b=1780 WHERE a=21419;\nUPDATE t2 SET b=51361 WHERE a=21420;\nUPDATE t2 SET b=32844 WHERE a=21421;\nUPDATE t2 SET b=48259 WHERE a=21422;\nUPDATE t2 SET b=5094 WHERE a=21423;\nUPDATE t2 SET b=27506 WHERE a=21424;\nUPDATE t2 SET b=41344 WHERE a=21425;\nUPDATE t2 SET b=30840 WHERE a=21426;\nUPDATE t2 SET b=98500 WHERE a=21427;\nUPDATE t2 SET b=40431 WHERE a=21428;\nUPDATE t2 SET b=12042 WHERE a=21429;\nUPDATE t2 SET b=90795 WHERE a=21430;\nUPDATE t2 SET b=83638 WHERE a=21431;\nUPDATE t2 SET b=38713 WHERE a=21432;\nUPDATE t2 SET b=30890 WHERE a=21433;\nUPDATE t2 SET b=4609 WHERE a=21434;\nUPDATE t2 SET b=94899 WHERE a=21435;\nUPDATE t2 SET b=82216 WHERE a=21436;\nUPDATE t2 SET b=10561 WHERE a=21437;\nUPDATE t2 SET b=46841 WHERE a=21438;\nUPDATE t2 SET b=932 WHERE a=21439;\nUPDATE t2 SET b=763 WHERE a=21440;\nUPDATE t2 SET b=68665 WHERE a=21441;\nUPDATE t2 SET b=68750 WHERE a=21442;\nUPDATE t2 SET b=33639 WHERE a=21443;\nUPDATE t2 SET b=1545 WHERE a=21444;\nUPDATE t2 SET b=61017 WHERE a=21445;\nUPDATE t2 SET b=16940 WHERE a=21446;\nUPDATE t2 SET b=44940 WHERE a=21447;\nUPDATE t2 SET b=93509 WHERE a=21448;\nUPDATE t2 SET b=68547 WHERE a=21449;\nUPDATE t2 SET b=84646 WHERE a=21450;\nUPDATE t2 SET b=18054 WHERE a=21451;\nUPDATE t2 SET b=94335 WHERE a=21452;\nUPDATE t2 SET b=12076 WHERE a=21453;\nUPDATE t2 SET b=51573 WHERE a=21454;\nUPDATE t2 SET b=33729 WHERE a=21455;\nUPDATE t2 SET b=80438 WHERE a=21456;\nUPDATE t2 SET b=91590 WHERE a=21457;\nUPDATE t2 SET b=54205 WHERE a=21458;\nUPDATE t2 SET b=90070 WHERE a=21459;\nUPDATE t2 SET b=68203 WHERE a=21460;\nUPDATE t2 SET b=6697 WHERE a=21461;\nUPDATE t2 SET b=7601 WHERE a=21462;\nUPDATE t2 SET b=79277 WHERE a=21463;\nUPDATE t2 SET b=12845 WHERE a=21464;\nUPDATE t2 SET b=12550 WHERE a=21465;\nUPDATE t2 SET b=22424 WHERE a=21466;\nUPDATE t2 SET b=98315 WHERE a=21467;\nUPDATE t2 SET b=25051 WHERE a=21468;\nUPDATE t2 SET b=46655 WHERE a=21469;\nUPDATE t2 SET b=28235 WHERE a=21470;\nUPDATE t2 SET b=95229 WHERE a=21471;\nUPDATE t2 SET b=804 WHERE a=21472;\nUPDATE t2 SET b=83450 WHERE a=21473;\nUPDATE t2 SET b=53516 WHERE a=21474;\nUPDATE t2 SET b=55645 WHERE a=21475;\nUPDATE t2 SET b=90538 WHERE a=21476;\nUPDATE t2 SET b=67380 WHERE a=21477;\nUPDATE t2 SET b=79498 WHERE a=21478;\nUPDATE t2 SET b=27726 WHERE a=21479;\nUPDATE t2 SET b=57881 WHERE a=21480;\nUPDATE t2 SET b=53998 WHERE a=21481;\nUPDATE t2 SET b=68510 WHERE a=21482;\nUPDATE t2 SET b=76151 WHERE a=21483;\nUPDATE t2 SET b=56272 WHERE a=21484;\nUPDATE t2 SET b=55152 WHERE a=21485;\nUPDATE t2 SET b=47743 WHERE a=21486;\nUPDATE t2 SET b=87823 WHERE a=21487;\nUPDATE t2 SET b=66511 WHERE a=21488;\nUPDATE t2 SET b=26215 WHERE a=21489;\nUPDATE t2 SET b=64508 WHERE a=21490;\nUPDATE t2 SET b=10029 WHERE a=21491;\nUPDATE t2 SET b=12143 WHERE a=21492;\nUPDATE t2 SET b=23892 WHERE a=21493;\nUPDATE t2 SET b=23809 WHERE a=21494;\nUPDATE t2 SET b=86988 WHERE a=21495;\nUPDATE t2 SET b=13822 WHERE a=21496;\nUPDATE t2 SET b=13299 WHERE a=21497;\nUPDATE t2 SET b=97830 WHERE a=21498;\nUPDATE t2 SET b=84921 WHERE a=21499;\nUPDATE t2 SET b=98918 WHERE a=21500;\nUPDATE t2 SET b=72832 WHERE a=21501;\nUPDATE t2 SET b=41796 WHERE a=21502;\nUPDATE t2 SET b=20082 WHERE a=21503;\nUPDATE t2 SET b=27524 WHERE a=21504;\nUPDATE t2 SET b=69431 WHERE a=21505;\nUPDATE t2 SET b=15358 WHERE a=21506;\nUPDATE t2 SET b=10549 WHERE a=21507;\nUPDATE t2 SET b=42155 WHERE a=21508;\nUPDATE t2 SET b=5441 WHERE a=21509;\nUPDATE t2 SET b=73754 WHERE a=21510;\nUPDATE t2 SET b=36615 WHERE a=21511;\nUPDATE t2 SET b=87280 WHERE a=21512;\nUPDATE t2 SET b=76557 WHERE a=21513;\nUPDATE t2 SET b=7843 WHERE a=21514;\nUPDATE t2 SET b=39387 WHERE a=21515;\nUPDATE t2 SET b=56959 WHERE a=21516;\nUPDATE t2 SET b=66305 WHERE a=21517;\nUPDATE t2 SET b=81125 WHERE a=21518;\nUPDATE t2 SET b=54071 WHERE a=21519;\nUPDATE t2 SET b=65070 WHERE a=21520;\nUPDATE t2 SET b=38369 WHERE a=21521;\nUPDATE t2 SET b=69623 WHERE a=21522;\nUPDATE t2 SET b=72421 WHERE a=21523;\nUPDATE t2 SET b=83917 WHERE a=21524;\nUPDATE t2 SET b=36118 WHERE a=21525;\nUPDATE t2 SET b=16041 WHERE a=21526;\nUPDATE t2 SET b=62009 WHERE a=21527;\nUPDATE t2 SET b=50402 WHERE a=21528;\nUPDATE t2 SET b=85444 WHERE a=21529;\nUPDATE t2 SET b=17404 WHERE a=21530;\nUPDATE t2 SET b=44638 WHERE a=21531;\nUPDATE t2 SET b=90828 WHERE a=21532;\nUPDATE t2 SET b=66687 WHERE a=21533;\nUPDATE t2 SET b=62570 WHERE a=21534;\nUPDATE t2 SET b=85946 WHERE a=21535;\nUPDATE t2 SET b=95777 WHERE a=21536;\nUPDATE t2 SET b=21727 WHERE a=21537;\nUPDATE t2 SET b=80227 WHERE a=21538;\nUPDATE t2 SET b=56641 WHERE a=21539;\nUPDATE t2 SET b=41138 WHERE a=21540;\nUPDATE t2 SET b=17809 WHERE a=21541;\nUPDATE t2 SET b=55739 WHERE a=21542;\nUPDATE t2 SET b=55456 WHERE a=21543;\nUPDATE t2 SET b=90496 WHERE a=21544;\nUPDATE t2 SET b=58085 WHERE a=21545;\nUPDATE t2 SET b=19047 WHERE a=21546;\nUPDATE t2 SET b=66980 WHERE a=21547;\nUPDATE t2 SET b=27056 WHERE a=21548;\nUPDATE t2 SET b=15080 WHERE a=21549;\nUPDATE t2 SET b=710 WHERE a=21550;\nUPDATE t2 SET b=55376 WHERE a=21551;\nUPDATE t2 SET b=85134 WHERE a=21552;\nUPDATE t2 SET b=68700 WHERE a=21553;\nUPDATE t2 SET b=63113 WHERE a=21554;\nUPDATE t2 SET b=30589 WHERE a=21555;\nUPDATE t2 SET b=8406 WHERE a=21556;\nUPDATE t2 SET b=19453 WHERE a=21557;\nUPDATE t2 SET b=27128 WHERE a=21558;\nUPDATE t2 SET b=4405 WHERE a=21559;\nUPDATE t2 SET b=95982 WHERE a=21560;\nUPDATE t2 SET b=88194 WHERE a=21561;\nUPDATE t2 SET b=13289 WHERE a=21562;\nUPDATE t2 SET b=45760 WHERE a=21563;\nUPDATE t2 SET b=81296 WHERE a=21564;\nUPDATE t2 SET b=71875 WHERE a=21565;\nUPDATE t2 SET b=87366 WHERE a=21566;\nUPDATE t2 SET b=22545 WHERE a=21567;\nUPDATE t2 SET b=90087 WHERE a=21568;\nUPDATE t2 SET b=39201 WHERE a=21569;\nUPDATE t2 SET b=78108 WHERE a=21570;\nUPDATE t2 SET b=14205 WHERE a=21571;\nUPDATE t2 SET b=53440 WHERE a=21572;\nUPDATE t2 SET b=50360 WHERE a=21573;\nUPDATE t2 SET b=32089 WHERE a=21574;\nUPDATE t2 SET b=82112 WHERE a=21575;\nUPDATE t2 SET b=7086 WHERE a=21576;\nUPDATE t2 SET b=11484 WHERE a=21577;\nUPDATE t2 SET b=50050 WHERE a=21578;\nUPDATE t2 SET b=93240 WHERE a=21579;\nUPDATE t2 SET b=90065 WHERE a=21580;\nUPDATE t2 SET b=17127 WHERE a=21581;\nUPDATE t2 SET b=37335 WHERE a=21582;\nUPDATE t2 SET b=45207 WHERE a=21583;\nUPDATE t2 SET b=35642 WHERE a=21584;\nUPDATE t2 SET b=53198 WHERE a=21585;\nUPDATE t2 SET b=35978 WHERE a=21586;\nUPDATE t2 SET b=49805 WHERE a=21587;\nUPDATE t2 SET b=67920 WHERE a=21588;\nUPDATE t2 SET b=23566 WHERE a=21589;\nUPDATE t2 SET b=71455 WHERE a=21590;\nUPDATE t2 SET b=39479 WHERE a=21591;\nUPDATE t2 SET b=78913 WHERE a=21592;\nUPDATE t2 SET b=82804 WHERE a=21593;\nUPDATE t2 SET b=57391 WHERE a=21594;\nUPDATE t2 SET b=21368 WHERE a=21595;\nUPDATE t2 SET b=85150 WHERE a=21596;\nUPDATE t2 SET b=19139 WHERE a=21597;\nUPDATE t2 SET b=5911 WHERE a=21598;\nUPDATE t2 SET b=37754 WHERE a=21599;\nUPDATE t2 SET b=47590 WHERE a=21600;\nUPDATE t2 SET b=80346 WHERE a=21601;\nUPDATE t2 SET b=86421 WHERE a=21602;\nUPDATE t2 SET b=26194 WHERE a=21603;\nUPDATE t2 SET b=26871 WHERE a=21604;\nUPDATE t2 SET b=54334 WHERE a=21605;\nUPDATE t2 SET b=30068 WHERE a=21606;\nUPDATE t2 SET b=64383 WHERE a=21607;\nUPDATE t2 SET b=64225 WHERE a=21608;\nUPDATE t2 SET b=25589 WHERE a=21609;\nUPDATE t2 SET b=30958 WHERE a=21610;\nUPDATE t2 SET b=2015 WHERE a=21611;\nUPDATE t2 SET b=97280 WHERE a=21612;\nUPDATE t2 SET b=28741 WHERE a=21613;\nUPDATE t2 SET b=11874 WHERE a=21614;\nUPDATE t2 SET b=34929 WHERE a=21615;\nUPDATE t2 SET b=2260 WHERE a=21616;\nUPDATE t2 SET b=27252 WHERE a=21617;\nUPDATE t2 SET b=10522 WHERE a=21618;\nUPDATE t2 SET b=47003 WHERE a=21619;\nUPDATE t2 SET b=38017 WHERE a=21620;\nUPDATE t2 SET b=86853 WHERE a=21621;\nUPDATE t2 SET b=83091 WHERE a=21622;\nUPDATE t2 SET b=16320 WHERE a=21623;\nUPDATE t2 SET b=54782 WHERE a=21624;\nUPDATE t2 SET b=86489 WHERE a=21625;\nUPDATE t2 SET b=34973 WHERE a=21626;\nUPDATE t2 SET b=18558 WHERE a=21627;\nUPDATE t2 SET b=21828 WHERE a=21628;\nUPDATE t2 SET b=42773 WHERE a=21629;\nUPDATE t2 SET b=50892 WHERE a=21630;\nUPDATE t2 SET b=55755 WHERE a=21631;\nUPDATE t2 SET b=7221 WHERE a=21632;\nUPDATE t2 SET b=53283 WHERE a=21633;\nUPDATE t2 SET b=56278 WHERE a=21634;\nUPDATE t2 SET b=14189 WHERE a=21635;\nUPDATE t2 SET b=85839 WHERE a=21636;\nUPDATE t2 SET b=73144 WHERE a=21637;\nUPDATE t2 SET b=25554 WHERE a=21638;\nUPDATE t2 SET b=65347 WHERE a=21639;\nUPDATE t2 SET b=63678 WHERE a=21640;\nUPDATE t2 SET b=76569 WHERE a=21641;\nUPDATE t2 SET b=27915 WHERE a=21642;\nUPDATE t2 SET b=38032 WHERE a=21643;\nUPDATE t2 SET b=59375 WHERE a=21644;\nUPDATE t2 SET b=83720 WHERE a=21645;\nUPDATE t2 SET b=85712 WHERE a=21646;\nUPDATE t2 SET b=27008 WHERE a=21647;\nUPDATE t2 SET b=34142 WHERE a=21648;\nUPDATE t2 SET b=81458 WHERE a=21649;\nUPDATE t2 SET b=4724 WHERE a=21650;\nUPDATE t2 SET b=2109 WHERE a=21651;\nUPDATE t2 SET b=36021 WHERE a=21652;\nUPDATE t2 SET b=82144 WHERE a=21653;\nUPDATE t2 SET b=46840 WHERE a=21654;\nUPDATE t2 SET b=85932 WHERE a=21655;\nUPDATE t2 SET b=937 WHERE a=21656;\nUPDATE t2 SET b=31397 WHERE a=21657;\nUPDATE t2 SET b=92080 WHERE a=21658;\nUPDATE t2 SET b=73979 WHERE a=21659;\nUPDATE t2 SET b=98983 WHERE a=21660;\nUPDATE t2 SET b=18294 WHERE a=21661;\nUPDATE t2 SET b=21634 WHERE a=21662;\nUPDATE t2 SET b=95631 WHERE a=21663;\nUPDATE t2 SET b=64352 WHERE a=21664;\nUPDATE t2 SET b=15253 WHERE a=21665;\nUPDATE t2 SET b=67004 WHERE a=21666;\nUPDATE t2 SET b=85326 WHERE a=21667;\nUPDATE t2 SET b=28566 WHERE a=21668;\nUPDATE t2 SET b=44538 WHERE a=21669;\nUPDATE t2 SET b=38612 WHERE a=21670;\nUPDATE t2 SET b=93422 WHERE a=21671;\nUPDATE t2 SET b=85206 WHERE a=21672;\nUPDATE t2 SET b=82774 WHERE a=21673;\nUPDATE t2 SET b=74774 WHERE a=21674;\nUPDATE t2 SET b=52406 WHERE a=21675;\nUPDATE t2 SET b=63697 WHERE a=21676;\nUPDATE t2 SET b=41192 WHERE a=21677;\nUPDATE t2 SET b=51873 WHERE a=21678;\nUPDATE t2 SET b=34317 WHERE a=21679;\nUPDATE t2 SET b=54400 WHERE a=21680;\nUPDATE t2 SET b=74010 WHERE a=21681;\nUPDATE t2 SET b=21541 WHERE a=21682;\nUPDATE t2 SET b=39397 WHERE a=21683;\nUPDATE t2 SET b=13538 WHERE a=21684;\nUPDATE t2 SET b=92037 WHERE a=21685;\nUPDATE t2 SET b=96706 WHERE a=21686;\nUPDATE t2 SET b=13412 WHERE a=21687;\nUPDATE t2 SET b=53292 WHERE a=21688;\nUPDATE t2 SET b=59584 WHERE a=21689;\nUPDATE t2 SET b=22865 WHERE a=21690;\nUPDATE t2 SET b=85068 WHERE a=21691;\nUPDATE t2 SET b=29672 WHERE a=21692;\nUPDATE t2 SET b=50606 WHERE a=21693;\nUPDATE t2 SET b=32510 WHERE a=21694;\nUPDATE t2 SET b=7961 WHERE a=21695;\nUPDATE t2 SET b=65258 WHERE a=21696;\nUPDATE t2 SET b=5691 WHERE a=21697;\nUPDATE t2 SET b=60236 WHERE a=21698;\nUPDATE t2 SET b=5006 WHERE a=21699;\nUPDATE t2 SET b=97171 WHERE a=21700;\nUPDATE t2 SET b=51598 WHERE a=21701;\nUPDATE t2 SET b=97292 WHERE a=21702;\nUPDATE t2 SET b=46445 WHERE a=21703;\nUPDATE t2 SET b=75579 WHERE a=21704;\nUPDATE t2 SET b=29791 WHERE a=21705;\nUPDATE t2 SET b=27338 WHERE a=21706;\nUPDATE t2 SET b=70261 WHERE a=21707;\nUPDATE t2 SET b=62345 WHERE a=21708;\nUPDATE t2 SET b=10715 WHERE a=21709;\nUPDATE t2 SET b=93148 WHERE a=21710;\nUPDATE t2 SET b=34576 WHERE a=21711;\nUPDATE t2 SET b=67750 WHERE a=21712;\nUPDATE t2 SET b=43559 WHERE a=21713;\nUPDATE t2 SET b=95250 WHERE a=21714;\nUPDATE t2 SET b=82913 WHERE a=21715;\nUPDATE t2 SET b=23615 WHERE a=21716;\nUPDATE t2 SET b=83601 WHERE a=21717;\nUPDATE t2 SET b=92658 WHERE a=21718;\nUPDATE t2 SET b=60656 WHERE a=21719;\nUPDATE t2 SET b=24541 WHERE a=21720;\nUPDATE t2 SET b=99094 WHERE a=21721;\nUPDATE t2 SET b=98880 WHERE a=21722;\nUPDATE t2 SET b=23624 WHERE a=21723;\nUPDATE t2 SET b=33998 WHERE a=21724;\nUPDATE t2 SET b=65271 WHERE a=21725;\nUPDATE t2 SET b=69788 WHERE a=21726;\nUPDATE t2 SET b=22784 WHERE a=21727;\nUPDATE t2 SET b=50170 WHERE a=21728;\nUPDATE t2 SET b=25554 WHERE a=21729;\nUPDATE t2 SET b=92176 WHERE a=21730;\nUPDATE t2 SET b=85683 WHERE a=21731;\nUPDATE t2 SET b=49573 WHERE a=21732;\nUPDATE t2 SET b=29081 WHERE a=21733;\nUPDATE t2 SET b=62719 WHERE a=21734;\nUPDATE t2 SET b=25463 WHERE a=21735;\nUPDATE t2 SET b=82257 WHERE a=21736;\nUPDATE t2 SET b=47249 WHERE a=21737;\nUPDATE t2 SET b=61507 WHERE a=21738;\nUPDATE t2 SET b=80222 WHERE a=21739;\nUPDATE t2 SET b=42997 WHERE a=21740;\nUPDATE t2 SET b=87363 WHERE a=21741;\nUPDATE t2 SET b=54582 WHERE a=21742;\nUPDATE t2 SET b=5204 WHERE a=21743;\nUPDATE t2 SET b=31545 WHERE a=21744;\nUPDATE t2 SET b=93281 WHERE a=21745;\nUPDATE t2 SET b=4068 WHERE a=21746;\nUPDATE t2 SET b=12590 WHERE a=21747;\nUPDATE t2 SET b=81687 WHERE a=21748;\nUPDATE t2 SET b=87316 WHERE a=21749;\nUPDATE t2 SET b=13818 WHERE a=21750;\nUPDATE t2 SET b=19679 WHERE a=21751;\nUPDATE t2 SET b=66 WHERE a=21752;\nUPDATE t2 SET b=19425 WHERE a=21753;\nUPDATE t2 SET b=59908 WHERE a=21754;\nUPDATE t2 SET b=7028 WHERE a=21755;\nUPDATE t2 SET b=16994 WHERE a=21756;\nUPDATE t2 SET b=38935 WHERE a=21757;\nUPDATE t2 SET b=67021 WHERE a=21758;\nUPDATE t2 SET b=53520 WHERE a=21759;\nUPDATE t2 SET b=66628 WHERE a=21760;\nUPDATE t2 SET b=25957 WHERE a=21761;\nUPDATE t2 SET b=96397 WHERE a=21762;\nUPDATE t2 SET b=69677 WHERE a=21763;\nUPDATE t2 SET b=55394 WHERE a=21764;\nUPDATE t2 SET b=76417 WHERE a=21765;\nUPDATE t2 SET b=99162 WHERE a=21766;\nUPDATE t2 SET b=53920 WHERE a=21767;\nUPDATE t2 SET b=63752 WHERE a=21768;\nUPDATE t2 SET b=77380 WHERE a=21769;\nUPDATE t2 SET b=20767 WHERE a=21770;\nUPDATE t2 SET b=67993 WHERE a=21771;\nUPDATE t2 SET b=39298 WHERE a=21772;\nUPDATE t2 SET b=59195 WHERE a=21773;\nUPDATE t2 SET b=56063 WHERE a=21774;\nUPDATE t2 SET b=1160 WHERE a=21775;\nUPDATE t2 SET b=21326 WHERE a=21776;\nUPDATE t2 SET b=17099 WHERE a=21777;\nUPDATE t2 SET b=1323 WHERE a=21778;\nUPDATE t2 SET b=50850 WHERE a=21779;\nUPDATE t2 SET b=70489 WHERE a=21780;\nUPDATE t2 SET b=92984 WHERE a=21781;\nUPDATE t2 SET b=35174 WHERE a=21782;\nUPDATE t2 SET b=33970 WHERE a=21783;\nUPDATE t2 SET b=62087 WHERE a=21784;\nUPDATE t2 SET b=52437 WHERE a=21785;\nUPDATE t2 SET b=49766 WHERE a=21786;\nUPDATE t2 SET b=70641 WHERE a=21787;\nUPDATE t2 SET b=18331 WHERE a=21788;\nUPDATE t2 SET b=5406 WHERE a=21789;\nUPDATE t2 SET b=72621 WHERE a=21790;\nUPDATE t2 SET b=7091 WHERE a=21791;\nUPDATE t2 SET b=1491 WHERE a=21792;\nUPDATE t2 SET b=68853 WHERE a=21793;\nUPDATE t2 SET b=44997 WHERE a=21794;\nUPDATE t2 SET b=14597 WHERE a=21795;\nUPDATE t2 SET b=15036 WHERE a=21796;\nUPDATE t2 SET b=62257 WHERE a=21797;\nUPDATE t2 SET b=27247 WHERE a=21798;\nUPDATE t2 SET b=44016 WHERE a=21799;\nUPDATE t2 SET b=84212 WHERE a=21800;\nUPDATE t2 SET b=96335 WHERE a=21801;\nUPDATE t2 SET b=84868 WHERE a=21802;\nUPDATE t2 SET b=81212 WHERE a=21803;\nUPDATE t2 SET b=86514 WHERE a=21804;\nUPDATE t2 SET b=85108 WHERE a=21805;\nUPDATE t2 SET b=19940 WHERE a=21806;\nUPDATE t2 SET b=82324 WHERE a=21807;\nUPDATE t2 SET b=70054 WHERE a=21808;\nUPDATE t2 SET b=77812 WHERE a=21809;\nUPDATE t2 SET b=3562 WHERE a=21810;\nUPDATE t2 SET b=89605 WHERE a=21811;\nUPDATE t2 SET b=37026 WHERE a=21812;\nUPDATE t2 SET b=37806 WHERE a=21813;\nUPDATE t2 SET b=15117 WHERE a=21814;\nUPDATE t2 SET b=74481 WHERE a=21815;\nUPDATE t2 SET b=45885 WHERE a=21816;\nUPDATE t2 SET b=6718 WHERE a=21817;\nUPDATE t2 SET b=48798 WHERE a=21818;\nUPDATE t2 SET b=23327 WHERE a=21819;\nUPDATE t2 SET b=3587 WHERE a=21820;\nUPDATE t2 SET b=53053 WHERE a=21821;\nUPDATE t2 SET b=341 WHERE a=21822;\nUPDATE t2 SET b=92040 WHERE a=21823;\nUPDATE t2 SET b=59463 WHERE a=21824;\nUPDATE t2 SET b=75409 WHERE a=21825;\nUPDATE t2 SET b=20639 WHERE a=21826;\nUPDATE t2 SET b=53359 WHERE a=21827;\nUPDATE t2 SET b=34397 WHERE a=21828;\nUPDATE t2 SET b=28962 WHERE a=21829;\nUPDATE t2 SET b=45648 WHERE a=21830;\nUPDATE t2 SET b=53670 WHERE a=21831;\nUPDATE t2 SET b=66276 WHERE a=21832;\nUPDATE t2 SET b=23466 WHERE a=21833;\nUPDATE t2 SET b=33507 WHERE a=21834;\nUPDATE t2 SET b=38978 WHERE a=21835;\nUPDATE t2 SET b=42273 WHERE a=21836;\nUPDATE t2 SET b=85372 WHERE a=21837;\nUPDATE t2 SET b=5436 WHERE a=21838;\nUPDATE t2 SET b=5805 WHERE a=21839;\nUPDATE t2 SET b=19256 WHERE a=21840;\nUPDATE t2 SET b=71123 WHERE a=21841;\nUPDATE t2 SET b=4536 WHERE a=21842;\nUPDATE t2 SET b=79068 WHERE a=21843;\nUPDATE t2 SET b=65796 WHERE a=21844;\nUPDATE t2 SET b=98641 WHERE a=21845;\nUPDATE t2 SET b=2997 WHERE a=21846;\nUPDATE t2 SET b=60071 WHERE a=21847;\nUPDATE t2 SET b=50629 WHERE a=21848;\nUPDATE t2 SET b=65092 WHERE a=21849;\nUPDATE t2 SET b=9771 WHERE a=21850;\nUPDATE t2 SET b=73415 WHERE a=21851;\nUPDATE t2 SET b=48336 WHERE a=21852;\nUPDATE t2 SET b=14166 WHERE a=21853;\nUPDATE t2 SET b=89832 WHERE a=21854;\nUPDATE t2 SET b=26708 WHERE a=21855;\nUPDATE t2 SET b=46645 WHERE a=21856;\nUPDATE t2 SET b=51518 WHERE a=21857;\nUPDATE t2 SET b=52844 WHERE a=21858;\nUPDATE t2 SET b=99611 WHERE a=21859;\nUPDATE t2 SET b=94363 WHERE a=21860;\nUPDATE t2 SET b=97370 WHERE a=21861;\nUPDATE t2 SET b=32667 WHERE a=21862;\nUPDATE t2 SET b=15440 WHERE a=21863;\nUPDATE t2 SET b=35509 WHERE a=21864;\nUPDATE t2 SET b=96726 WHERE a=21865;\nUPDATE t2 SET b=37431 WHERE a=21866;\nUPDATE t2 SET b=68189 WHERE a=21867;\nUPDATE t2 SET b=63583 WHERE a=21868;\nUPDATE t2 SET b=34887 WHERE a=21869;\nUPDATE t2 SET b=4191 WHERE a=21870;\nUPDATE t2 SET b=10315 WHERE a=21871;\nUPDATE t2 SET b=7016 WHERE a=21872;\nUPDATE t2 SET b=12057 WHERE a=21873;\nUPDATE t2 SET b=44545 WHERE a=21874;\nUPDATE t2 SET b=3918 WHERE a=21875;\nUPDATE t2 SET b=12003 WHERE a=21876;\nUPDATE t2 SET b=3797 WHERE a=21877;\nUPDATE t2 SET b=78527 WHERE a=21878;\nUPDATE t2 SET b=2321 WHERE a=21879;\nUPDATE t2 SET b=20972 WHERE a=21880;\nUPDATE t2 SET b=35175 WHERE a=21881;\nUPDATE t2 SET b=20944 WHERE a=21882;\nUPDATE t2 SET b=81233 WHERE a=21883;\nUPDATE t2 SET b=29384 WHERE a=21884;\nUPDATE t2 SET b=65524 WHERE a=21885;\nUPDATE t2 SET b=27367 WHERE a=21886;\nUPDATE t2 SET b=1023 WHERE a=21887;\nUPDATE t2 SET b=31580 WHERE a=21888;\nUPDATE t2 SET b=73681 WHERE a=21889;\nUPDATE t2 SET b=54534 WHERE a=21890;\nUPDATE t2 SET b=25639 WHERE a=21891;\nUPDATE t2 SET b=98190 WHERE a=21892;\nUPDATE t2 SET b=55800 WHERE a=21893;\nUPDATE t2 SET b=93042 WHERE a=21894;\nUPDATE t2 SET b=79767 WHERE a=21895;\nUPDATE t2 SET b=28332 WHERE a=21896;\nUPDATE t2 SET b=37692 WHERE a=21897;\nUPDATE t2 SET b=6056 WHERE a=21898;\nUPDATE t2 SET b=69968 WHERE a=21899;\nUPDATE t2 SET b=14250 WHERE a=21900;\nUPDATE t2 SET b=85024 WHERE a=21901;\nUPDATE t2 SET b=39741 WHERE a=21902;\nUPDATE t2 SET b=16890 WHERE a=21903;\nUPDATE t2 SET b=44769 WHERE a=21904;\nUPDATE t2 SET b=52961 WHERE a=21905;\nUPDATE t2 SET b=38460 WHERE a=21906;\nUPDATE t2 SET b=37567 WHERE a=21907;\nUPDATE t2 SET b=86489 WHERE a=21908;\nUPDATE t2 SET b=82968 WHERE a=21909;\nUPDATE t2 SET b=72674 WHERE a=21910;\nUPDATE t2 SET b=96146 WHERE a=21911;\nUPDATE t2 SET b=23494 WHERE a=21912;\nUPDATE t2 SET b=4281 WHERE a=21913;\nUPDATE t2 SET b=13652 WHERE a=21914;\nUPDATE t2 SET b=41638 WHERE a=21915;\nUPDATE t2 SET b=78370 WHERE a=21916;\nUPDATE t2 SET b=17405 WHERE a=21917;\nUPDATE t2 SET b=94262 WHERE a=21918;\nUPDATE t2 SET b=17897 WHERE a=21919;\nUPDATE t2 SET b=78513 WHERE a=21920;\nUPDATE t2 SET b=1741 WHERE a=21921;\nUPDATE t2 SET b=46582 WHERE a=21922;\nUPDATE t2 SET b=28128 WHERE a=21923;\nUPDATE t2 SET b=96420 WHERE a=21924;\nUPDATE t2 SET b=44952 WHERE a=21925;\nUPDATE t2 SET b=42481 WHERE a=21926;\nUPDATE t2 SET b=63524 WHERE a=21927;\nUPDATE t2 SET b=92905 WHERE a=21928;\nUPDATE t2 SET b=43487 WHERE a=21929;\nUPDATE t2 SET b=42658 WHERE a=21930;\nUPDATE t2 SET b=90617 WHERE a=21931;\nUPDATE t2 SET b=23689 WHERE a=21932;\nUPDATE t2 SET b=49203 WHERE a=21933;\nUPDATE t2 SET b=253 WHERE a=21934;\nUPDATE t2 SET b=65598 WHERE a=21935;\nUPDATE t2 SET b=53651 WHERE a=21936;\nUPDATE t2 SET b=43124 WHERE a=21937;\nUPDATE t2 SET b=32708 WHERE a=21938;\nUPDATE t2 SET b=89649 WHERE a=21939;\nUPDATE t2 SET b=4497 WHERE a=21940;\nUPDATE t2 SET b=22689 WHERE a=21941;\nUPDATE t2 SET b=17970 WHERE a=21942;\nUPDATE t2 SET b=63590 WHERE a=21943;\nUPDATE t2 SET b=31079 WHERE a=21944;\nUPDATE t2 SET b=8948 WHERE a=21945;\nUPDATE t2 SET b=74790 WHERE a=21946;\nUPDATE t2 SET b=74752 WHERE a=21947;\nUPDATE t2 SET b=91525 WHERE a=21948;\nUPDATE t2 SET b=32293 WHERE a=21949;\nUPDATE t2 SET b=40534 WHERE a=21950;\nUPDATE t2 SET b=59333 WHERE a=21951;\nUPDATE t2 SET b=97394 WHERE a=21952;\nUPDATE t2 SET b=5784 WHERE a=21953;\nUPDATE t2 SET b=35818 WHERE a=21954;\nUPDATE t2 SET b=23284 WHERE a=21955;\nUPDATE t2 SET b=99410 WHERE a=21956;\nUPDATE t2 SET b=98182 WHERE a=21957;\nUPDATE t2 SET b=50463 WHERE a=21958;\nUPDATE t2 SET b=66541 WHERE a=21959;\nUPDATE t2 SET b=24021 WHERE a=21960;\nUPDATE t2 SET b=27181 WHERE a=21961;\nUPDATE t2 SET b=77267 WHERE a=21962;\nUPDATE t2 SET b=23125 WHERE a=21963;\nUPDATE t2 SET b=19245 WHERE a=21964;\nUPDATE t2 SET b=20425 WHERE a=21965;\nUPDATE t2 SET b=82714 WHERE a=21966;\nUPDATE t2 SET b=75735 WHERE a=21967;\nUPDATE t2 SET b=72183 WHERE a=21968;\nUPDATE t2 SET b=49847 WHERE a=21969;\nUPDATE t2 SET b=88475 WHERE a=21970;\nUPDATE t2 SET b=62700 WHERE a=21971;\nUPDATE t2 SET b=3127 WHERE a=21972;\nUPDATE t2 SET b=22570 WHERE a=21973;\nUPDATE t2 SET b=20597 WHERE a=21974;\nUPDATE t2 SET b=7793 WHERE a=21975;\nUPDATE t2 SET b=38933 WHERE a=21976;\nUPDATE t2 SET b=31024 WHERE a=21977;\nUPDATE t2 SET b=4713 WHERE a=21978;\nUPDATE t2 SET b=90260 WHERE a=21979;\nUPDATE t2 SET b=78774 WHERE a=21980;\nUPDATE t2 SET b=34201 WHERE a=21981;\nUPDATE t2 SET b=96976 WHERE a=21982;\nUPDATE t2 SET b=94845 WHERE a=21983;\nUPDATE t2 SET b=89937 WHERE a=21984;\nUPDATE t2 SET b=91305 WHERE a=21985;\nUPDATE t2 SET b=3086 WHERE a=21986;\nUPDATE t2 SET b=905 WHERE a=21987;\nUPDATE t2 SET b=93548 WHERE a=21988;\nUPDATE t2 SET b=17439 WHERE a=21989;\nUPDATE t2 SET b=42820 WHERE a=21990;\nUPDATE t2 SET b=76139 WHERE a=21991;\nUPDATE t2 SET b=13728 WHERE a=21992;\nUPDATE t2 SET b=38296 WHERE a=21993;\nUPDATE t2 SET b=86793 WHERE a=21994;\nUPDATE t2 SET b=77811 WHERE a=21995;\nUPDATE t2 SET b=80394 WHERE a=21996;\nUPDATE t2 SET b=89612 WHERE a=21997;\nUPDATE t2 SET b=84454 WHERE a=21998;\nUPDATE t2 SET b=58237 WHERE a=21999;\nUPDATE t2 SET b=7959 WHERE a=22000;\nUPDATE t2 SET b=5530 WHERE a=22001;\nUPDATE t2 SET b=5209 WHERE a=22002;\nUPDATE t2 SET b=25964 WHERE a=22003;\nUPDATE t2 SET b=54636 WHERE a=22004;\nUPDATE t2 SET b=90593 WHERE a=22005;\nUPDATE t2 SET b=8249 WHERE a=22006;\nUPDATE t2 SET b=16909 WHERE a=22007;\nUPDATE t2 SET b=18722 WHERE a=22008;\nUPDATE t2 SET b=93226 WHERE a=22009;\nUPDATE t2 SET b=16449 WHERE a=22010;\nUPDATE t2 SET b=40619 WHERE a=22011;\nUPDATE t2 SET b=63349 WHERE a=22012;\nUPDATE t2 SET b=83080 WHERE a=22013;\nUPDATE t2 SET b=77219 WHERE a=22014;\nUPDATE t2 SET b=12301 WHERE a=22015;\nUPDATE t2 SET b=17148 WHERE a=22016;\nUPDATE t2 SET b=5746 WHERE a=22017;\nUPDATE t2 SET b=56857 WHERE a=22018;\nUPDATE t2 SET b=97701 WHERE a=22019;\nUPDATE t2 SET b=35984 WHERE a=22020;\nUPDATE t2 SET b=79520 WHERE a=22021;\nUPDATE t2 SET b=53929 WHERE a=22022;\nUPDATE t2 SET b=15128 WHERE a=22023;\nUPDATE t2 SET b=93340 WHERE a=22024;\nUPDATE t2 SET b=3682 WHERE a=22025;\nUPDATE t2 SET b=36542 WHERE a=22026;\nUPDATE t2 SET b=27913 WHERE a=22027;\nUPDATE t2 SET b=628 WHERE a=22028;\nUPDATE t2 SET b=7519 WHERE a=22029;\nUPDATE t2 SET b=96208 WHERE a=22030;\nUPDATE t2 SET b=76529 WHERE a=22031;\nUPDATE t2 SET b=89431 WHERE a=22032;\nUPDATE t2 SET b=5508 WHERE a=22033;\nUPDATE t2 SET b=4814 WHERE a=22034;\nUPDATE t2 SET b=13273 WHERE a=22035;\nUPDATE t2 SET b=33121 WHERE a=22036;\nUPDATE t2 SET b=79587 WHERE a=22037;\nUPDATE t2 SET b=74238 WHERE a=22038;\nUPDATE t2 SET b=44033 WHERE a=22039;\nUPDATE t2 SET b=797 WHERE a=22040;\nUPDATE t2 SET b=67533 WHERE a=22041;\nUPDATE t2 SET b=88810 WHERE a=22042;\nUPDATE t2 SET b=94528 WHERE a=22043;\nUPDATE t2 SET b=90847 WHERE a=22044;\nUPDATE t2 SET b=39925 WHERE a=22045;\nUPDATE t2 SET b=29043 WHERE a=22046;\nUPDATE t2 SET b=15506 WHERE a=22047;\nUPDATE t2 SET b=92836 WHERE a=22048;\nUPDATE t2 SET b=42399 WHERE a=22049;\nUPDATE t2 SET b=30896 WHERE a=22050;\nUPDATE t2 SET b=75305 WHERE a=22051;\nUPDATE t2 SET b=75977 WHERE a=22052;\nUPDATE t2 SET b=23978 WHERE a=22053;\nUPDATE t2 SET b=44268 WHERE a=22054;\nUPDATE t2 SET b=41410 WHERE a=22055;\nUPDATE t2 SET b=38239 WHERE a=22056;\nUPDATE t2 SET b=14914 WHERE a=22057;\nUPDATE t2 SET b=78960 WHERE a=22058;\nUPDATE t2 SET b=77256 WHERE a=22059;\nUPDATE t2 SET b=90681 WHERE a=22060;\nUPDATE t2 SET b=80601 WHERE a=22061;\nUPDATE t2 SET b=24792 WHERE a=22062;\nUPDATE t2 SET b=67079 WHERE a=22063;\nUPDATE t2 SET b=1117 WHERE a=22064;\nUPDATE t2 SET b=35066 WHERE a=22065;\nUPDATE t2 SET b=23960 WHERE a=22066;\nUPDATE t2 SET b=14710 WHERE a=22067;\nUPDATE t2 SET b=13293 WHERE a=22068;\nUPDATE t2 SET b=18275 WHERE a=22069;\nUPDATE t2 SET b=54483 WHERE a=22070;\nUPDATE t2 SET b=49413 WHERE a=22071;\nUPDATE t2 SET b=78879 WHERE a=22072;\nUPDATE t2 SET b=98906 WHERE a=22073;\nUPDATE t2 SET b=31531 WHERE a=22074;\nUPDATE t2 SET b=4583 WHERE a=22075;\nUPDATE t2 SET b=40078 WHERE a=22076;\nUPDATE t2 SET b=70764 WHERE a=22077;\nUPDATE t2 SET b=36262 WHERE a=22078;\nUPDATE t2 SET b=75085 WHERE a=22079;\nUPDATE t2 SET b=52588 WHERE a=22080;\nUPDATE t2 SET b=33708 WHERE a=22081;\nUPDATE t2 SET b=17104 WHERE a=22082;\nUPDATE t2 SET b=8746 WHERE a=22083;\nUPDATE t2 SET b=94710 WHERE a=22084;\nUPDATE t2 SET b=86394 WHERE a=22085;\nUPDATE t2 SET b=23624 WHERE a=22086;\nUPDATE t2 SET b=91328 WHERE a=22087;\nUPDATE t2 SET b=20784 WHERE a=22088;\nUPDATE t2 SET b=61969 WHERE a=22089;\nUPDATE t2 SET b=78808 WHERE a=22090;\nUPDATE t2 SET b=32877 WHERE a=22091;\nUPDATE t2 SET b=22578 WHERE a=22092;\nUPDATE t2 SET b=21337 WHERE a=22093;\nUPDATE t2 SET b=70445 WHERE a=22094;\nUPDATE t2 SET b=46340 WHERE a=22095;\nUPDATE t2 SET b=27102 WHERE a=22096;\nUPDATE t2 SET b=33952 WHERE a=22097;\nUPDATE t2 SET b=96829 WHERE a=22098;\nUPDATE t2 SET b=62903 WHERE a=22099;\nUPDATE t2 SET b=1500 WHERE a=22100;\nUPDATE t2 SET b=42047 WHERE a=22101;\nUPDATE t2 SET b=82218 WHERE a=22102;\nUPDATE t2 SET b=25586 WHERE a=22103;\nUPDATE t2 SET b=60274 WHERE a=22104;\nUPDATE t2 SET b=38908 WHERE a=22105;\nUPDATE t2 SET b=58335 WHERE a=22106;\nUPDATE t2 SET b=75538 WHERE a=22107;\nUPDATE t2 SET b=98057 WHERE a=22108;\nUPDATE t2 SET b=4221 WHERE a=22109;\nUPDATE t2 SET b=14184 WHERE a=22110;\nUPDATE t2 SET b=60090 WHERE a=22111;\nUPDATE t2 SET b=61274 WHERE a=22112;\nUPDATE t2 SET b=63003 WHERE a=22113;\nUPDATE t2 SET b=3170 WHERE a=22114;\nUPDATE t2 SET b=27152 WHERE a=22115;\nUPDATE t2 SET b=38711 WHERE a=22116;\nUPDATE t2 SET b=40491 WHERE a=22117;\nUPDATE t2 SET b=45391 WHERE a=22118;\nUPDATE t2 SET b=29627 WHERE a=22119;\nUPDATE t2 SET b=40949 WHERE a=22120;\nUPDATE t2 SET b=73102 WHERE a=22121;\nUPDATE t2 SET b=89919 WHERE a=22122;\nUPDATE t2 SET b=94053 WHERE a=22123;\nUPDATE t2 SET b=2776 WHERE a=22124;\nUPDATE t2 SET b=89078 WHERE a=22125;\nUPDATE t2 SET b=99094 WHERE a=22126;\nUPDATE t2 SET b=29433 WHERE a=22127;\nUPDATE t2 SET b=84278 WHERE a=22128;\nUPDATE t2 SET b=59138 WHERE a=22129;\nUPDATE t2 SET b=12708 WHERE a=22130;\nUPDATE t2 SET b=30686 WHERE a=22131;\nUPDATE t2 SET b=61533 WHERE a=22132;\nUPDATE t2 SET b=3715 WHERE a=22133;\nUPDATE t2 SET b=83801 WHERE a=22134;\nUPDATE t2 SET b=25244 WHERE a=22135;\nUPDATE t2 SET b=10005 WHERE a=22136;\nUPDATE t2 SET b=26263 WHERE a=22137;\nUPDATE t2 SET b=38399 WHERE a=22138;\nUPDATE t2 SET b=49446 WHERE a=22139;\nUPDATE t2 SET b=1817 WHERE a=22140;\nUPDATE t2 SET b=89539 WHERE a=22141;\nUPDATE t2 SET b=32930 WHERE a=22142;\nUPDATE t2 SET b=17016 WHERE a=22143;\nUPDATE t2 SET b=15536 WHERE a=22144;\nUPDATE t2 SET b=71214 WHERE a=22145;\nUPDATE t2 SET b=76623 WHERE a=22146;\nUPDATE t2 SET b=86980 WHERE a=22147;\nUPDATE t2 SET b=78307 WHERE a=22148;\nUPDATE t2 SET b=79979 WHERE a=22149;\nUPDATE t2 SET b=18461 WHERE a=22150;\nUPDATE t2 SET b=28308 WHERE a=22151;\nUPDATE t2 SET b=31222 WHERE a=22152;\nUPDATE t2 SET b=81395 WHERE a=22153;\nUPDATE t2 SET b=91618 WHERE a=22154;\nUPDATE t2 SET b=56773 WHERE a=22155;\nUPDATE t2 SET b=95838 WHERE a=22156;\nUPDATE t2 SET b=35604 WHERE a=22157;\nUPDATE t2 SET b=14620 WHERE a=22158;\nUPDATE t2 SET b=23884 WHERE a=22159;\nUPDATE t2 SET b=12943 WHERE a=22160;\nUPDATE t2 SET b=39696 WHERE a=22161;\nUPDATE t2 SET b=52338 WHERE a=22162;\nUPDATE t2 SET b=68597 WHERE a=22163;\nUPDATE t2 SET b=78880 WHERE a=22164;\nUPDATE t2 SET b=41171 WHERE a=22165;\nUPDATE t2 SET b=11513 WHERE a=22166;\nUPDATE t2 SET b=79353 WHERE a=22167;\nUPDATE t2 SET b=29319 WHERE a=22168;\nUPDATE t2 SET b=78572 WHERE a=22169;\nUPDATE t2 SET b=21425 WHERE a=22170;\nUPDATE t2 SET b=35055 WHERE a=22171;\nUPDATE t2 SET b=48004 WHERE a=22172;\nUPDATE t2 SET b=26963 WHERE a=22173;\nUPDATE t2 SET b=2813 WHERE a=22174;\nUPDATE t2 SET b=3371 WHERE a=22175;\nUPDATE t2 SET b=62791 WHERE a=22176;\nUPDATE t2 SET b=17874 WHERE a=22177;\nUPDATE t2 SET b=404 WHERE a=22178;\nUPDATE t2 SET b=22817 WHERE a=22179;\nUPDATE t2 SET b=432 WHERE a=22180;\nUPDATE t2 SET b=13442 WHERE a=22181;\nUPDATE t2 SET b=16036 WHERE a=22182;\nUPDATE t2 SET b=77605 WHERE a=22183;\nUPDATE t2 SET b=66169 WHERE a=22184;\nUPDATE t2 SET b=98271 WHERE a=22185;\nUPDATE t2 SET b=24695 WHERE a=22186;\nUPDATE t2 SET b=3750 WHERE a=22187;\nUPDATE t2 SET b=4012 WHERE a=22188;\nUPDATE t2 SET b=40815 WHERE a=22189;\nUPDATE t2 SET b=26905 WHERE a=22190;\nUPDATE t2 SET b=18170 WHERE a=22191;\nUPDATE t2 SET b=82707 WHERE a=22192;\nUPDATE t2 SET b=40525 WHERE a=22193;\nUPDATE t2 SET b=43557 WHERE a=22194;\nUPDATE t2 SET b=64984 WHERE a=22195;\nUPDATE t2 SET b=74406 WHERE a=22196;\nUPDATE t2 SET b=95040 WHERE a=22197;\nUPDATE t2 SET b=63646 WHERE a=22198;\nUPDATE t2 SET b=68140 WHERE a=22199;\nUPDATE t2 SET b=73887 WHERE a=22200;\nUPDATE t2 SET b=73738 WHERE a=22201;\nUPDATE t2 SET b=72516 WHERE a=22202;\nUPDATE t2 SET b=40982 WHERE a=22203;\nUPDATE t2 SET b=68871 WHERE a=22204;\nUPDATE t2 SET b=88273 WHERE a=22205;\nUPDATE t2 SET b=23599 WHERE a=22206;\nUPDATE t2 SET b=90056 WHERE a=22207;\nUPDATE t2 SET b=31839 WHERE a=22208;\nUPDATE t2 SET b=2296 WHERE a=22209;\nUPDATE t2 SET b=73374 WHERE a=22210;\nUPDATE t2 SET b=91405 WHERE a=22211;\nUPDATE t2 SET b=65105 WHERE a=22212;\nUPDATE t2 SET b=23010 WHERE a=22213;\nUPDATE t2 SET b=26206 WHERE a=22214;\nUPDATE t2 SET b=947 WHERE a=22215;\nUPDATE t2 SET b=83788 WHERE a=22216;\nUPDATE t2 SET b=84708 WHERE a=22217;\nUPDATE t2 SET b=37685 WHERE a=22218;\nUPDATE t2 SET b=88430 WHERE a=22219;\nUPDATE t2 SET b=57863 WHERE a=22220;\nUPDATE t2 SET b=45616 WHERE a=22221;\nUPDATE t2 SET b=29006 WHERE a=22222;\nUPDATE t2 SET b=49624 WHERE a=22223;\nUPDATE t2 SET b=8949 WHERE a=22224;\nUPDATE t2 SET b=4883 WHERE a=22225;\nUPDATE t2 SET b=57743 WHERE a=22226;\nUPDATE t2 SET b=13327 WHERE a=22227;\nUPDATE t2 SET b=80708 WHERE a=22228;\nUPDATE t2 SET b=26189 WHERE a=22229;\nUPDATE t2 SET b=60110 WHERE a=22230;\nUPDATE t2 SET b=57576 WHERE a=22231;\nUPDATE t2 SET b=40709 WHERE a=22232;\nUPDATE t2 SET b=74630 WHERE a=22233;\nUPDATE t2 SET b=69028 WHERE a=22234;\nUPDATE t2 SET b=22218 WHERE a=22235;\nUPDATE t2 SET b=72550 WHERE a=22236;\nUPDATE t2 SET b=75517 WHERE a=22237;\nUPDATE t2 SET b=22690 WHERE a=22238;\nUPDATE t2 SET b=68072 WHERE a=22239;\nUPDATE t2 SET b=18227 WHERE a=22240;\nUPDATE t2 SET b=5476 WHERE a=22241;\nUPDATE t2 SET b=6103 WHERE a=22242;\nUPDATE t2 SET b=45587 WHERE a=22243;\nUPDATE t2 SET b=55313 WHERE a=22244;\nUPDATE t2 SET b=91075 WHERE a=22245;\nUPDATE t2 SET b=89287 WHERE a=22246;\nUPDATE t2 SET b=91566 WHERE a=22247;\nUPDATE t2 SET b=8993 WHERE a=22248;\nUPDATE t2 SET b=15132 WHERE a=22249;\nUPDATE t2 SET b=19705 WHERE a=22250;\nUPDATE t2 SET b=80590 WHERE a=22251;\nUPDATE t2 SET b=53835 WHERE a=22252;\nUPDATE t2 SET b=890 WHERE a=22253;\nUPDATE t2 SET b=25739 WHERE a=22254;\nUPDATE t2 SET b=41254 WHERE a=22255;\nUPDATE t2 SET b=58242 WHERE a=22256;\nUPDATE t2 SET b=63383 WHERE a=22257;\nUPDATE t2 SET b=57940 WHERE a=22258;\nUPDATE t2 SET b=66012 WHERE a=22259;\nUPDATE t2 SET b=62382 WHERE a=22260;\nUPDATE t2 SET b=97762 WHERE a=22261;\nUPDATE t2 SET b=97613 WHERE a=22262;\nUPDATE t2 SET b=35854 WHERE a=22263;\nUPDATE t2 SET b=78 WHERE a=22264;\nUPDATE t2 SET b=40303 WHERE a=22265;\nUPDATE t2 SET b=40133 WHERE a=22266;\nUPDATE t2 SET b=87372 WHERE a=22267;\nUPDATE t2 SET b=23946 WHERE a=22268;\nUPDATE t2 SET b=96347 WHERE a=22269;\nUPDATE t2 SET b=51441 WHERE a=22270;\nUPDATE t2 SET b=67541 WHERE a=22271;\nUPDATE t2 SET b=20560 WHERE a=22272;\nUPDATE t2 SET b=51878 WHERE a=22273;\nUPDATE t2 SET b=98407 WHERE a=22274;\nUPDATE t2 SET b=45322 WHERE a=22275;\nUPDATE t2 SET b=23846 WHERE a=22276;\nUPDATE t2 SET b=43473 WHERE a=22277;\nUPDATE t2 SET b=23467 WHERE a=22278;\nUPDATE t2 SET b=97743 WHERE a=22279;\nUPDATE t2 SET b=4252 WHERE a=22280;\nUPDATE t2 SET b=73857 WHERE a=22281;\nUPDATE t2 SET b=79523 WHERE a=22282;\nUPDATE t2 SET b=21162 WHERE a=22283;\nUPDATE t2 SET b=28502 WHERE a=22284;\nUPDATE t2 SET b=53819 WHERE a=22285;\nUPDATE t2 SET b=51740 WHERE a=22286;\nUPDATE t2 SET b=36367 WHERE a=22287;\nUPDATE t2 SET b=82559 WHERE a=22288;\nUPDATE t2 SET b=43133 WHERE a=22289;\nUPDATE t2 SET b=63827 WHERE a=22290;\nUPDATE t2 SET b=76396 WHERE a=22291;\nUPDATE t2 SET b=46974 WHERE a=22292;\nUPDATE t2 SET b=42639 WHERE a=22293;\nUPDATE t2 SET b=84224 WHERE a=22294;\nUPDATE t2 SET b=64051 WHERE a=22295;\nUPDATE t2 SET b=47253 WHERE a=22296;\nUPDATE t2 SET b=27624 WHERE a=22297;\nUPDATE t2 SET b=60691 WHERE a=22298;\nUPDATE t2 SET b=96615 WHERE a=22299;\nUPDATE t2 SET b=42221 WHERE a=22300;\nUPDATE t2 SET b=20637 WHERE a=22301;\nUPDATE t2 SET b=79442 WHERE a=22302;\nUPDATE t2 SET b=50043 WHERE a=22303;\nUPDATE t2 SET b=77459 WHERE a=22304;\nUPDATE t2 SET b=94993 WHERE a=22305;\nUPDATE t2 SET b=84819 WHERE a=22306;\nUPDATE t2 SET b=39458 WHERE a=22307;\nUPDATE t2 SET b=8572 WHERE a=22308;\nUPDATE t2 SET b=22808 WHERE a=22309;\nUPDATE t2 SET b=52098 WHERE a=22310;\nUPDATE t2 SET b=44405 WHERE a=22311;\nUPDATE t2 SET b=35971 WHERE a=22312;\nUPDATE t2 SET b=34299 WHERE a=22313;\nUPDATE t2 SET b=83797 WHERE a=22314;\nUPDATE t2 SET b=60471 WHERE a=22315;\nUPDATE t2 SET b=87436 WHERE a=22316;\nUPDATE t2 SET b=18963 WHERE a=22317;\nUPDATE t2 SET b=10247 WHERE a=22318;\nUPDATE t2 SET b=70695 WHERE a=22319;\nUPDATE t2 SET b=1487 WHERE a=22320;\nUPDATE t2 SET b=22831 WHERE a=22321;\nUPDATE t2 SET b=43216 WHERE a=22322;\nUPDATE t2 SET b=16989 WHERE a=22323;\nUPDATE t2 SET b=67035 WHERE a=22324;\nUPDATE t2 SET b=18476 WHERE a=22325;\nUPDATE t2 SET b=52030 WHERE a=22326;\nUPDATE t2 SET b=98523 WHERE a=22327;\nUPDATE t2 SET b=32573 WHERE a=22328;\nUPDATE t2 SET b=70913 WHERE a=22329;\nUPDATE t2 SET b=53324 WHERE a=22330;\nUPDATE t2 SET b=27307 WHERE a=22331;\nUPDATE t2 SET b=30017 WHERE a=22332;\nUPDATE t2 SET b=322 WHERE a=22333;\nUPDATE t2 SET b=7893 WHERE a=22334;\nUPDATE t2 SET b=18920 WHERE a=22335;\nUPDATE t2 SET b=55958 WHERE a=22336;\nUPDATE t2 SET b=87206 WHERE a=22337;\nUPDATE t2 SET b=68733 WHERE a=22338;\nUPDATE t2 SET b=88432 WHERE a=22339;\nUPDATE t2 SET b=18444 WHERE a=22340;\nUPDATE t2 SET b=79196 WHERE a=22341;\nUPDATE t2 SET b=96455 WHERE a=22342;\nUPDATE t2 SET b=17915 WHERE a=22343;\nUPDATE t2 SET b=76899 WHERE a=22344;\nUPDATE t2 SET b=37737 WHERE a=22345;\nUPDATE t2 SET b=24031 WHERE a=22346;\nUPDATE t2 SET b=44199 WHERE a=22347;\nUPDATE t2 SET b=69021 WHERE a=22348;\nUPDATE t2 SET b=16985 WHERE a=22349;\nUPDATE t2 SET b=36429 WHERE a=22350;\nUPDATE t2 SET b=40726 WHERE a=22351;\nUPDATE t2 SET b=52489 WHERE a=22352;\nUPDATE t2 SET b=56906 WHERE a=22353;\nUPDATE t2 SET b=57398 WHERE a=22354;\nUPDATE t2 SET b=72982 WHERE a=22355;\nUPDATE t2 SET b=77456 WHERE a=22356;\nUPDATE t2 SET b=33314 WHERE a=22357;\nUPDATE t2 SET b=47931 WHERE a=22358;\nUPDATE t2 SET b=23734 WHERE a=22359;\nUPDATE t2 SET b=64641 WHERE a=22360;\nUPDATE t2 SET b=82397 WHERE a=22361;\nUPDATE t2 SET b=30406 WHERE a=22362;\nUPDATE t2 SET b=48684 WHERE a=22363;\nUPDATE t2 SET b=13910 WHERE a=22364;\nUPDATE t2 SET b=17086 WHERE a=22365;\nUPDATE t2 SET b=99493 WHERE a=22366;\nUPDATE t2 SET b=8085 WHERE a=22367;\nUPDATE t2 SET b=25839 WHERE a=22368;\nUPDATE t2 SET b=97241 WHERE a=22369;\nUPDATE t2 SET b=60794 WHERE a=22370;\nUPDATE t2 SET b=90761 WHERE a=22371;\nUPDATE t2 SET b=14151 WHERE a=22372;\nUPDATE t2 SET b=19675 WHERE a=22373;\nUPDATE t2 SET b=73581 WHERE a=22374;\nUPDATE t2 SET b=96217 WHERE a=22375;\nUPDATE t2 SET b=21529 WHERE a=22376;\nUPDATE t2 SET b=68993 WHERE a=22377;\nUPDATE t2 SET b=96085 WHERE a=22378;\nUPDATE t2 SET b=69557 WHERE a=22379;\nUPDATE t2 SET b=12670 WHERE a=22380;\nUPDATE t2 SET b=99791 WHERE a=22381;\nUPDATE t2 SET b=35300 WHERE a=22382;\nUPDATE t2 SET b=45460 WHERE a=22383;\nUPDATE t2 SET b=43124 WHERE a=22384;\nUPDATE t2 SET b=99643 WHERE a=22385;\nUPDATE t2 SET b=75177 WHERE a=22386;\nUPDATE t2 SET b=37625 WHERE a=22387;\nUPDATE t2 SET b=44967 WHERE a=22388;\nUPDATE t2 SET b=40640 WHERE a=22389;\nUPDATE t2 SET b=9977 WHERE a=22390;\nUPDATE t2 SET b=68231 WHERE a=22391;\nUPDATE t2 SET b=48567 WHERE a=22392;\nUPDATE t2 SET b=24841 WHERE a=22393;\nUPDATE t2 SET b=48463 WHERE a=22394;\nUPDATE t2 SET b=25688 WHERE a=22395;\nUPDATE t2 SET b=76138 WHERE a=22396;\nUPDATE t2 SET b=42541 WHERE a=22397;\nUPDATE t2 SET b=82495 WHERE a=22398;\nUPDATE t2 SET b=57048 WHERE a=22399;\nUPDATE t2 SET b=64863 WHERE a=22400;\nUPDATE t2 SET b=10615 WHERE a=22401;\nUPDATE t2 SET b=38484 WHERE a=22402;\nUPDATE t2 SET b=42837 WHERE a=22403;\nUPDATE t2 SET b=16229 WHERE a=22404;\nUPDATE t2 SET b=32715 WHERE a=22405;\nUPDATE t2 SET b=96368 WHERE a=22406;\nUPDATE t2 SET b=36034 WHERE a=22407;\nUPDATE t2 SET b=97168 WHERE a=22408;\nUPDATE t2 SET b=43087 WHERE a=22409;\nUPDATE t2 SET b=89965 WHERE a=22410;\nUPDATE t2 SET b=90362 WHERE a=22411;\nUPDATE t2 SET b=7149 WHERE a=22412;\nUPDATE t2 SET b=76641 WHERE a=22413;\nUPDATE t2 SET b=49602 WHERE a=22414;\nUPDATE t2 SET b=21525 WHERE a=22415;\nUPDATE t2 SET b=35548 WHERE a=22416;\nUPDATE t2 SET b=79684 WHERE a=22417;\nUPDATE t2 SET b=12924 WHERE a=22418;\nUPDATE t2 SET b=44394 WHERE a=22419;\nUPDATE t2 SET b=23536 WHERE a=22420;\nUPDATE t2 SET b=63764 WHERE a=22421;\nUPDATE t2 SET b=79489 WHERE a=22422;\nUPDATE t2 SET b=51122 WHERE a=22423;\nUPDATE t2 SET b=24755 WHERE a=22424;\nUPDATE t2 SET b=42073 WHERE a=22425;\nUPDATE t2 SET b=29256 WHERE a=22426;\nUPDATE t2 SET b=64014 WHERE a=22427;\nUPDATE t2 SET b=13554 WHERE a=22428;\nUPDATE t2 SET b=44625 WHERE a=22429;\nUPDATE t2 SET b=46998 WHERE a=22430;\nUPDATE t2 SET b=55124 WHERE a=22431;\nUPDATE t2 SET b=20003 WHERE a=22432;\nUPDATE t2 SET b=68585 WHERE a=22433;\nUPDATE t2 SET b=32535 WHERE a=22434;\nUPDATE t2 SET b=48639 WHERE a=22435;\nUPDATE t2 SET b=37954 WHERE a=22436;\nUPDATE t2 SET b=58377 WHERE a=22437;\nUPDATE t2 SET b=26762 WHERE a=22438;\nUPDATE t2 SET b=80075 WHERE a=22439;\nUPDATE t2 SET b=30986 WHERE a=22440;\nUPDATE t2 SET b=43646 WHERE a=22441;\nUPDATE t2 SET b=51362 WHERE a=22442;\nUPDATE t2 SET b=71348 WHERE a=22443;\nUPDATE t2 SET b=59967 WHERE a=22444;\nUPDATE t2 SET b=56715 WHERE a=22445;\nUPDATE t2 SET b=70006 WHERE a=22446;\nUPDATE t2 SET b=6483 WHERE a=22447;\nUPDATE t2 SET b=61233 WHERE a=22448;\nUPDATE t2 SET b=69956 WHERE a=22449;\nUPDATE t2 SET b=21607 WHERE a=22450;\nUPDATE t2 SET b=49714 WHERE a=22451;\nUPDATE t2 SET b=53859 WHERE a=22452;\nUPDATE t2 SET b=59640 WHERE a=22453;\nUPDATE t2 SET b=38985 WHERE a=22454;\nUPDATE t2 SET b=32520 WHERE a=22455;\nUPDATE t2 SET b=65680 WHERE a=22456;\nUPDATE t2 SET b=82882 WHERE a=22457;\nUPDATE t2 SET b=93812 WHERE a=22458;\nUPDATE t2 SET b=7116 WHERE a=22459;\nUPDATE t2 SET b=4278 WHERE a=22460;\nUPDATE t2 SET b=71041 WHERE a=22461;\nUPDATE t2 SET b=70080 WHERE a=22462;\nUPDATE t2 SET b=49998 WHERE a=22463;\nUPDATE t2 SET b=75376 WHERE a=22464;\nUPDATE t2 SET b=6854 WHERE a=22465;\nUPDATE t2 SET b=32021 WHERE a=22466;\nUPDATE t2 SET b=5710 WHERE a=22467;\nUPDATE t2 SET b=35291 WHERE a=22468;\nUPDATE t2 SET b=37955 WHERE a=22469;\nUPDATE t2 SET b=86094 WHERE a=22470;\nUPDATE t2 SET b=67031 WHERE a=22471;\nUPDATE t2 SET b=23034 WHERE a=22472;\nUPDATE t2 SET b=27387 WHERE a=22473;\nUPDATE t2 SET b=70185 WHERE a=22474;\nUPDATE t2 SET b=45392 WHERE a=22475;\nUPDATE t2 SET b=60363 WHERE a=22476;\nUPDATE t2 SET b=50548 WHERE a=22477;\nUPDATE t2 SET b=80366 WHERE a=22478;\nUPDATE t2 SET b=28358 WHERE a=22479;\nUPDATE t2 SET b=69535 WHERE a=22480;\nUPDATE t2 SET b=77374 WHERE a=22481;\nUPDATE t2 SET b=55179 WHERE a=22482;\nUPDATE t2 SET b=44734 WHERE a=22483;\nUPDATE t2 SET b=60215 WHERE a=22484;\nUPDATE t2 SET b=330 WHERE a=22485;\nUPDATE t2 SET b=80658 WHERE a=22486;\nUPDATE t2 SET b=42952 WHERE a=22487;\nUPDATE t2 SET b=79183 WHERE a=22488;\nUPDATE t2 SET b=57987 WHERE a=22489;\nUPDATE t2 SET b=46478 WHERE a=22490;\nUPDATE t2 SET b=68798 WHERE a=22491;\nUPDATE t2 SET b=51994 WHERE a=22492;\nUPDATE t2 SET b=82795 WHERE a=22493;\nUPDATE t2 SET b=35451 WHERE a=22494;\nUPDATE t2 SET b=45261 WHERE a=22495;\nUPDATE t2 SET b=63685 WHERE a=22496;\nUPDATE t2 SET b=84319 WHERE a=22497;\nUPDATE t2 SET b=47237 WHERE a=22498;\nUPDATE t2 SET b=49740 WHERE a=22499;\nUPDATE t2 SET b=79889 WHERE a=22500;\nUPDATE t2 SET b=50275 WHERE a=22501;\nUPDATE t2 SET b=4992 WHERE a=22502;\nUPDATE t2 SET b=8042 WHERE a=22503;\nUPDATE t2 SET b=56031 WHERE a=22504;\nUPDATE t2 SET b=76728 WHERE a=22505;\nUPDATE t2 SET b=71780 WHERE a=22506;\nUPDATE t2 SET b=16928 WHERE a=22507;\nUPDATE t2 SET b=79241 WHERE a=22508;\nUPDATE t2 SET b=55058 WHERE a=22509;\nUPDATE t2 SET b=50585 WHERE a=22510;\nUPDATE t2 SET b=71997 WHERE a=22511;\nUPDATE t2 SET b=53987 WHERE a=22512;\nUPDATE t2 SET b=59217 WHERE a=22513;\nUPDATE t2 SET b=34021 WHERE a=22514;\nUPDATE t2 SET b=49661 WHERE a=22515;\nUPDATE t2 SET b=46136 WHERE a=22516;\nUPDATE t2 SET b=23943 WHERE a=22517;\nUPDATE t2 SET b=30865 WHERE a=22518;\nUPDATE t2 SET b=74365 WHERE a=22519;\nUPDATE t2 SET b=11474 WHERE a=22520;\nUPDATE t2 SET b=40897 WHERE a=22521;\nUPDATE t2 SET b=66485 WHERE a=22522;\nUPDATE t2 SET b=86343 WHERE a=22523;\nUPDATE t2 SET b=81058 WHERE a=22524;\nUPDATE t2 SET b=8882 WHERE a=22525;\nUPDATE t2 SET b=4188 WHERE a=22526;\nUPDATE t2 SET b=55831 WHERE a=22527;\nUPDATE t2 SET b=83880 WHERE a=22528;\nUPDATE t2 SET b=73496 WHERE a=22529;\nUPDATE t2 SET b=86005 WHERE a=22530;\nUPDATE t2 SET b=85334 WHERE a=22531;\nUPDATE t2 SET b=60230 WHERE a=22532;\nUPDATE t2 SET b=27791 WHERE a=22533;\nUPDATE t2 SET b=46535 WHERE a=22534;\nUPDATE t2 SET b=43907 WHERE a=22535;\nUPDATE t2 SET b=98494 WHERE a=22536;\nUPDATE t2 SET b=14638 WHERE a=22537;\nUPDATE t2 SET b=931 WHERE a=22538;\nUPDATE t2 SET b=429 WHERE a=22539;\nUPDATE t2 SET b=53663 WHERE a=22540;\nUPDATE t2 SET b=18770 WHERE a=22541;\nUPDATE t2 SET b=98981 WHERE a=22542;\nUPDATE t2 SET b=67904 WHERE a=22543;\nUPDATE t2 SET b=27205 WHERE a=22544;\nUPDATE t2 SET b=70998 WHERE a=22545;\nUPDATE t2 SET b=38822 WHERE a=22546;\nUPDATE t2 SET b=76242 WHERE a=22547;\nUPDATE t2 SET b=73999 WHERE a=22548;\nUPDATE t2 SET b=16156 WHERE a=22549;\nUPDATE t2 SET b=78924 WHERE a=22550;\nUPDATE t2 SET b=45127 WHERE a=22551;\nUPDATE t2 SET b=75351 WHERE a=22552;\nUPDATE t2 SET b=60126 WHERE a=22553;\nUPDATE t2 SET b=69810 WHERE a=22554;\nUPDATE t2 SET b=40455 WHERE a=22555;\nUPDATE t2 SET b=85873 WHERE a=22556;\nUPDATE t2 SET b=78193 WHERE a=22557;\nUPDATE t2 SET b=74709 WHERE a=22558;\nUPDATE t2 SET b=65257 WHERE a=22559;\nUPDATE t2 SET b=79619 WHERE a=22560;\nUPDATE t2 SET b=60256 WHERE a=22561;\nUPDATE t2 SET b=82812 WHERE a=22562;\nUPDATE t2 SET b=48278 WHERE a=22563;\nUPDATE t2 SET b=25742 WHERE a=22564;\nUPDATE t2 SET b=14500 WHERE a=22565;\nUPDATE t2 SET b=50866 WHERE a=22566;\nUPDATE t2 SET b=20094 WHERE a=22567;\nUPDATE t2 SET b=67898 WHERE a=22568;\nUPDATE t2 SET b=33978 WHERE a=22569;\nUPDATE t2 SET b=6267 WHERE a=22570;\nUPDATE t2 SET b=53017 WHERE a=22571;\nUPDATE t2 SET b=58567 WHERE a=22572;\nUPDATE t2 SET b=55119 WHERE a=22573;\nUPDATE t2 SET b=72142 WHERE a=22574;\nUPDATE t2 SET b=47076 WHERE a=22575;\nUPDATE t2 SET b=49187 WHERE a=22576;\nUPDATE t2 SET b=66596 WHERE a=22577;\nUPDATE t2 SET b=55971 WHERE a=22578;\nUPDATE t2 SET b=26041 WHERE a=22579;\nUPDATE t2 SET b=87738 WHERE a=22580;\nUPDATE t2 SET b=17808 WHERE a=22581;\nUPDATE t2 SET b=77721 WHERE a=22582;\nUPDATE t2 SET b=73277 WHERE a=22583;\nUPDATE t2 SET b=93101 WHERE a=22584;\nUPDATE t2 SET b=34890 WHERE a=22585;\nUPDATE t2 SET b=18747 WHERE a=22586;\nUPDATE t2 SET b=16284 WHERE a=22587;\nUPDATE t2 SET b=407 WHERE a=22588;\nUPDATE t2 SET b=38730 WHERE a=22589;\nUPDATE t2 SET b=36892 WHERE a=22590;\nUPDATE t2 SET b=54680 WHERE a=22591;\nUPDATE t2 SET b=10858 WHERE a=22592;\nUPDATE t2 SET b=41550 WHERE a=22593;\nUPDATE t2 SET b=96623 WHERE a=22594;\nUPDATE t2 SET b=33417 WHERE a=22595;\nUPDATE t2 SET b=23570 WHERE a=22596;\nUPDATE t2 SET b=24176 WHERE a=22597;\nUPDATE t2 SET b=72874 WHERE a=22598;\nUPDATE t2 SET b=10768 WHERE a=22599;\nUPDATE t2 SET b=84840 WHERE a=22600;\nUPDATE t2 SET b=49563 WHERE a=22601;\nUPDATE t2 SET b=83889 WHERE a=22602;\nUPDATE t2 SET b=7651 WHERE a=22603;\nUPDATE t2 SET b=58590 WHERE a=22604;\nUPDATE t2 SET b=58690 WHERE a=22605;\nUPDATE t2 SET b=98250 WHERE a=22606;\nUPDATE t2 SET b=69945 WHERE a=22607;\nUPDATE t2 SET b=22935 WHERE a=22608;\nUPDATE t2 SET b=81066 WHERE a=22609;\nUPDATE t2 SET b=84288 WHERE a=22610;\nUPDATE t2 SET b=36952 WHERE a=22611;\nUPDATE t2 SET b=62515 WHERE a=22612;\nUPDATE t2 SET b=67092 WHERE a=22613;\nUPDATE t2 SET b=64489 WHERE a=22614;\nUPDATE t2 SET b=46452 WHERE a=22615;\nUPDATE t2 SET b=44477 WHERE a=22616;\nUPDATE t2 SET b=89838 WHERE a=22617;\nUPDATE t2 SET b=44292 WHERE a=22618;\nUPDATE t2 SET b=31689 WHERE a=22619;\nUPDATE t2 SET b=57132 WHERE a=22620;\nUPDATE t2 SET b=71745 WHERE a=22621;\nUPDATE t2 SET b=35600 WHERE a=22622;\nUPDATE t2 SET b=76315 WHERE a=22623;\nUPDATE t2 SET b=96972 WHERE a=22624;\nUPDATE t2 SET b=60971 WHERE a=22625;\nUPDATE t2 SET b=89022 WHERE a=22626;\nUPDATE t2 SET b=7292 WHERE a=22627;\nUPDATE t2 SET b=20556 WHERE a=22628;\nUPDATE t2 SET b=73103 WHERE a=22629;\nUPDATE t2 SET b=86783 WHERE a=22630;\nUPDATE t2 SET b=49483 WHERE a=22631;\nUPDATE t2 SET b=23764 WHERE a=22632;\nUPDATE t2 SET b=82693 WHERE a=22633;\nUPDATE t2 SET b=84840 WHERE a=22634;\nUPDATE t2 SET b=97464 WHERE a=22635;\nUPDATE t2 SET b=24794 WHERE a=22636;\nUPDATE t2 SET b=52313 WHERE a=22637;\nUPDATE t2 SET b=57801 WHERE a=22638;\nUPDATE t2 SET b=67521 WHERE a=22639;\nUPDATE t2 SET b=93642 WHERE a=22640;\nUPDATE t2 SET b=72872 WHERE a=22641;\nUPDATE t2 SET b=19652 WHERE a=22642;\nUPDATE t2 SET b=83781 WHERE a=22643;\nUPDATE t2 SET b=36124 WHERE a=22644;\nUPDATE t2 SET b=380 WHERE a=22645;\nUPDATE t2 SET b=82892 WHERE a=22646;\nUPDATE t2 SET b=59800 WHERE a=22647;\nUPDATE t2 SET b=8380 WHERE a=22648;\nUPDATE t2 SET b=18728 WHERE a=22649;\nUPDATE t2 SET b=54502 WHERE a=22650;\nUPDATE t2 SET b=75341 WHERE a=22651;\nUPDATE t2 SET b=45447 WHERE a=22652;\nUPDATE t2 SET b=12500 WHERE a=22653;\nUPDATE t2 SET b=7869 WHERE a=22654;\nUPDATE t2 SET b=21821 WHERE a=22655;\nUPDATE t2 SET b=99981 WHERE a=22656;\nUPDATE t2 SET b=33223 WHERE a=22657;\nUPDATE t2 SET b=21448 WHERE a=22658;\nUPDATE t2 SET b=20718 WHERE a=22659;\nUPDATE t2 SET b=87386 WHERE a=22660;\nUPDATE t2 SET b=35507 WHERE a=22661;\nUPDATE t2 SET b=30158 WHERE a=22662;\nUPDATE t2 SET b=95829 WHERE a=22663;\nUPDATE t2 SET b=72117 WHERE a=22664;\nUPDATE t2 SET b=19625 WHERE a=22665;\nUPDATE t2 SET b=80243 WHERE a=22666;\nUPDATE t2 SET b=81650 WHERE a=22667;\nUPDATE t2 SET b=2911 WHERE a=22668;\nUPDATE t2 SET b=38251 WHERE a=22669;\nUPDATE t2 SET b=63238 WHERE a=22670;\nUPDATE t2 SET b=2703 WHERE a=22671;\nUPDATE t2 SET b=78416 WHERE a=22672;\nUPDATE t2 SET b=57246 WHERE a=22673;\nUPDATE t2 SET b=77709 WHERE a=22674;\nUPDATE t2 SET b=59112 WHERE a=22675;\nUPDATE t2 SET b=98689 WHERE a=22676;\nUPDATE t2 SET b=60809 WHERE a=22677;\nUPDATE t2 SET b=52210 WHERE a=22678;\nUPDATE t2 SET b=94524 WHERE a=22679;\nUPDATE t2 SET b=1899 WHERE a=22680;\nUPDATE t2 SET b=47463 WHERE a=22681;\nUPDATE t2 SET b=22860 WHERE a=22682;\nUPDATE t2 SET b=85497 WHERE a=22683;\nUPDATE t2 SET b=91725 WHERE a=22684;\nUPDATE t2 SET b=99720 WHERE a=22685;\nUPDATE t2 SET b=33290 WHERE a=22686;\nUPDATE t2 SET b=43841 WHERE a=22687;\nUPDATE t2 SET b=76443 WHERE a=22688;\nUPDATE t2 SET b=12756 WHERE a=22689;\nUPDATE t2 SET b=27377 WHERE a=22690;\nUPDATE t2 SET b=89002 WHERE a=22691;\nUPDATE t2 SET b=32867 WHERE a=22692;\nUPDATE t2 SET b=20215 WHERE a=22693;\nUPDATE t2 SET b=59653 WHERE a=22694;\nUPDATE t2 SET b=78545 WHERE a=22695;\nUPDATE t2 SET b=28063 WHERE a=22696;\nUPDATE t2 SET b=70674 WHERE a=22697;\nUPDATE t2 SET b=40715 WHERE a=22698;\nUPDATE t2 SET b=99822 WHERE a=22699;\nUPDATE t2 SET b=16656 WHERE a=22700;\nUPDATE t2 SET b=39884 WHERE a=22701;\nUPDATE t2 SET b=18974 WHERE a=22702;\nUPDATE t2 SET b=87252 WHERE a=22703;\nUPDATE t2 SET b=98688 WHERE a=22704;\nUPDATE t2 SET b=42563 WHERE a=22705;\nUPDATE t2 SET b=61368 WHERE a=22706;\nUPDATE t2 SET b=56978 WHERE a=22707;\nUPDATE t2 SET b=14111 WHERE a=22708;\nUPDATE t2 SET b=51295 WHERE a=22709;\nUPDATE t2 SET b=45884 WHERE a=22710;\nUPDATE t2 SET b=65865 WHERE a=22711;\nUPDATE t2 SET b=57622 WHERE a=22712;\nUPDATE t2 SET b=89962 WHERE a=22713;\nUPDATE t2 SET b=71186 WHERE a=22714;\nUPDATE t2 SET b=31378 WHERE a=22715;\nUPDATE t2 SET b=63879 WHERE a=22716;\nUPDATE t2 SET b=54809 WHERE a=22717;\nUPDATE t2 SET b=20782 WHERE a=22718;\nUPDATE t2 SET b=53349 WHERE a=22719;\nUPDATE t2 SET b=8074 WHERE a=22720;\nUPDATE t2 SET b=90397 WHERE a=22721;\nUPDATE t2 SET b=19386 WHERE a=22722;\nUPDATE t2 SET b=68739 WHERE a=22723;\nUPDATE t2 SET b=96054 WHERE a=22724;\nUPDATE t2 SET b=70249 WHERE a=22725;\nUPDATE t2 SET b=46026 WHERE a=22726;\nUPDATE t2 SET b=44059 WHERE a=22727;\nUPDATE t2 SET b=66804 WHERE a=22728;\nUPDATE t2 SET b=74527 WHERE a=22729;\nUPDATE t2 SET b=87066 WHERE a=22730;\nUPDATE t2 SET b=33932 WHERE a=22731;\nUPDATE t2 SET b=19931 WHERE a=22732;\nUPDATE t2 SET b=17334 WHERE a=22733;\nUPDATE t2 SET b=16499 WHERE a=22734;\nUPDATE t2 SET b=75991 WHERE a=22735;\nUPDATE t2 SET b=88766 WHERE a=22736;\nUPDATE t2 SET b=66248 WHERE a=22737;\nUPDATE t2 SET b=82856 WHERE a=22738;\nUPDATE t2 SET b=8685 WHERE a=22739;\nUPDATE t2 SET b=94725 WHERE a=22740;\nUPDATE t2 SET b=62199 WHERE a=22741;\nUPDATE t2 SET b=76949 WHERE a=22742;\nUPDATE t2 SET b=9180 WHERE a=22743;\nUPDATE t2 SET b=3574 WHERE a=22744;\nUPDATE t2 SET b=16906 WHERE a=22745;\nUPDATE t2 SET b=79992 WHERE a=22746;\nUPDATE t2 SET b=89409 WHERE a=22747;\nUPDATE t2 SET b=97632 WHERE a=22748;\nUPDATE t2 SET b=59043 WHERE a=22749;\nUPDATE t2 SET b=65054 WHERE a=22750;\nUPDATE t2 SET b=18515 WHERE a=22751;\nUPDATE t2 SET b=79517 WHERE a=22752;\nUPDATE t2 SET b=65130 WHERE a=22753;\nUPDATE t2 SET b=49627 WHERE a=22754;\nUPDATE t2 SET b=15219 WHERE a=22755;\nUPDATE t2 SET b=73662 WHERE a=22756;\nUPDATE t2 SET b=26444 WHERE a=22757;\nUPDATE t2 SET b=3120 WHERE a=22758;\nUPDATE t2 SET b=74245 WHERE a=22759;\nUPDATE t2 SET b=50796 WHERE a=22760;\nUPDATE t2 SET b=55518 WHERE a=22761;\nUPDATE t2 SET b=2834 WHERE a=22762;\nUPDATE t2 SET b=50400 WHERE a=22763;\nUPDATE t2 SET b=28611 WHERE a=22764;\nUPDATE t2 SET b=77830 WHERE a=22765;\nUPDATE t2 SET b=68064 WHERE a=22766;\nUPDATE t2 SET b=74887 WHERE a=22767;\nUPDATE t2 SET b=43627 WHERE a=22768;\nUPDATE t2 SET b=4431 WHERE a=22769;\nUPDATE t2 SET b=85232 WHERE a=22770;\nUPDATE t2 SET b=56035 WHERE a=22771;\nUPDATE t2 SET b=85361 WHERE a=22772;\nUPDATE t2 SET b=33207 WHERE a=22773;\nUPDATE t2 SET b=15042 WHERE a=22774;\nUPDATE t2 SET b=31194 WHERE a=22775;\nUPDATE t2 SET b=29180 WHERE a=22776;\nUPDATE t2 SET b=79961 WHERE a=22777;\nUPDATE t2 SET b=91381 WHERE a=22778;\nUPDATE t2 SET b=97551 WHERE a=22779;\nUPDATE t2 SET b=9167 WHERE a=22780;\nUPDATE t2 SET b=61888 WHERE a=22781;\nUPDATE t2 SET b=65176 WHERE a=22782;\nUPDATE t2 SET b=15960 WHERE a=22783;\nUPDATE t2 SET b=39104 WHERE a=22784;\nUPDATE t2 SET b=30194 WHERE a=22785;\nUPDATE t2 SET b=46275 WHERE a=22786;\nUPDATE t2 SET b=25522 WHERE a=22787;\nUPDATE t2 SET b=70054 WHERE a=22788;\nUPDATE t2 SET b=42789 WHERE a=22789;\nUPDATE t2 SET b=83276 WHERE a=22790;\nUPDATE t2 SET b=73288 WHERE a=22791;\nUPDATE t2 SET b=35884 WHERE a=22792;\nUPDATE t2 SET b=45455 WHERE a=22793;\nUPDATE t2 SET b=74221 WHERE a=22794;\nUPDATE t2 SET b=66102 WHERE a=22795;\nUPDATE t2 SET b=38540 WHERE a=22796;\nUPDATE t2 SET b=93778 WHERE a=22797;\nUPDATE t2 SET b=56149 WHERE a=22798;\nUPDATE t2 SET b=7885 WHERE a=22799;\nUPDATE t2 SET b=41447 WHERE a=22800;\nUPDATE t2 SET b=29024 WHERE a=22801;\nUPDATE t2 SET b=25165 WHERE a=22802;\nUPDATE t2 SET b=79598 WHERE a=22803;\nUPDATE t2 SET b=45429 WHERE a=22804;\nUPDATE t2 SET b=73043 WHERE a=22805;\nUPDATE t2 SET b=70729 WHERE a=22806;\nUPDATE t2 SET b=77251 WHERE a=22807;\nUPDATE t2 SET b=22936 WHERE a=22808;\nUPDATE t2 SET b=14510 WHERE a=22809;\nUPDATE t2 SET b=68188 WHERE a=22810;\nUPDATE t2 SET b=85513 WHERE a=22811;\nUPDATE t2 SET b=85836 WHERE a=22812;\nUPDATE t2 SET b=29253 WHERE a=22813;\nUPDATE t2 SET b=98684 WHERE a=22814;\nUPDATE t2 SET b=70399 WHERE a=22815;\nUPDATE t2 SET b=9489 WHERE a=22816;\nUPDATE t2 SET b=23517 WHERE a=22817;\nUPDATE t2 SET b=36975 WHERE a=22818;\nUPDATE t2 SET b=78376 WHERE a=22819;\nUPDATE t2 SET b=32795 WHERE a=22820;\nUPDATE t2 SET b=87030 WHERE a=22821;\nUPDATE t2 SET b=4586 WHERE a=22822;\nUPDATE t2 SET b=90013 WHERE a=22823;\nUPDATE t2 SET b=29615 WHERE a=22824;\nUPDATE t2 SET b=25092 WHERE a=22825;\nUPDATE t2 SET b=48630 WHERE a=22826;\nUPDATE t2 SET b=75673 WHERE a=22827;\nUPDATE t2 SET b=45686 WHERE a=22828;\nUPDATE t2 SET b=62121 WHERE a=22829;\nUPDATE t2 SET b=65139 WHERE a=22830;\nUPDATE t2 SET b=76952 WHERE a=22831;\nUPDATE t2 SET b=27008 WHERE a=22832;\nUPDATE t2 SET b=63107 WHERE a=22833;\nUPDATE t2 SET b=10442 WHERE a=22834;\nUPDATE t2 SET b=44138 WHERE a=22835;\nUPDATE t2 SET b=53 WHERE a=22836;\nUPDATE t2 SET b=89464 WHERE a=22837;\nUPDATE t2 SET b=82867 WHERE a=22838;\nUPDATE t2 SET b=9241 WHERE a=22839;\nUPDATE t2 SET b=53577 WHERE a=22840;\nUPDATE t2 SET b=14207 WHERE a=22841;\nUPDATE t2 SET b=18619 WHERE a=22842;\nUPDATE t2 SET b=57101 WHERE a=22843;\nUPDATE t2 SET b=84000 WHERE a=22844;\nUPDATE t2 SET b=79067 WHERE a=22845;\nUPDATE t2 SET b=71008 WHERE a=22846;\nUPDATE t2 SET b=73735 WHERE a=22847;\nUPDATE t2 SET b=22925 WHERE a=22848;\nUPDATE t2 SET b=28957 WHERE a=22849;\nUPDATE t2 SET b=3855 WHERE a=22850;\nUPDATE t2 SET b=49259 WHERE a=22851;\nUPDATE t2 SET b=28171 WHERE a=22852;\nUPDATE t2 SET b=13208 WHERE a=22853;\nUPDATE t2 SET b=88808 WHERE a=22854;\nUPDATE t2 SET b=55734 WHERE a=22855;\nUPDATE t2 SET b=50072 WHERE a=22856;\nUPDATE t2 SET b=79330 WHERE a=22857;\nUPDATE t2 SET b=26425 WHERE a=22858;\nUPDATE t2 SET b=34988 WHERE a=22859;\nUPDATE t2 SET b=38018 WHERE a=22860;\nUPDATE t2 SET b=19489 WHERE a=22861;\nUPDATE t2 SET b=47952 WHERE a=22862;\nUPDATE t2 SET b=4846 WHERE a=22863;\nUPDATE t2 SET b=49800 WHERE a=22864;\nUPDATE t2 SET b=3924 WHERE a=22865;\nUPDATE t2 SET b=43087 WHERE a=22866;\nUPDATE t2 SET b=54138 WHERE a=22867;\nUPDATE t2 SET b=23756 WHERE a=22868;\nUPDATE t2 SET b=69746 WHERE a=22869;\nUPDATE t2 SET b=9598 WHERE a=22870;\nUPDATE t2 SET b=60998 WHERE a=22871;\nUPDATE t2 SET b=96878 WHERE a=22872;\nUPDATE t2 SET b=68380 WHERE a=22873;\nUPDATE t2 SET b=87206 WHERE a=22874;\nUPDATE t2 SET b=70838 WHERE a=22875;\nUPDATE t2 SET b=2666 WHERE a=22876;\nUPDATE t2 SET b=47185 WHERE a=22877;\nUPDATE t2 SET b=9252 WHERE a=22878;\nUPDATE t2 SET b=8228 WHERE a=22879;\nUPDATE t2 SET b=19446 WHERE a=22880;\nUPDATE t2 SET b=85407 WHERE a=22881;\nUPDATE t2 SET b=41147 WHERE a=22882;\nUPDATE t2 SET b=18920 WHERE a=22883;\nUPDATE t2 SET b=45767 WHERE a=22884;\nUPDATE t2 SET b=53520 WHERE a=22885;\nUPDATE t2 SET b=29872 WHERE a=22886;\nUPDATE t2 SET b=89527 WHERE a=22887;\nUPDATE t2 SET b=41994 WHERE a=22888;\nUPDATE t2 SET b=92544 WHERE a=22889;\nUPDATE t2 SET b=53513 WHERE a=22890;\nUPDATE t2 SET b=16582 WHERE a=22891;\nUPDATE t2 SET b=27689 WHERE a=22892;\nUPDATE t2 SET b=14114 WHERE a=22893;\nUPDATE t2 SET b=42438 WHERE a=22894;\nUPDATE t2 SET b=88017 WHERE a=22895;\nUPDATE t2 SET b=33176 WHERE a=22896;\nUPDATE t2 SET b=15375 WHERE a=22897;\nUPDATE t2 SET b=81959 WHERE a=22898;\nUPDATE t2 SET b=12622 WHERE a=22899;\nUPDATE t2 SET b=65776 WHERE a=22900;\nUPDATE t2 SET b=8139 WHERE a=22901;\nUPDATE t2 SET b=96698 WHERE a=22902;\nUPDATE t2 SET b=44772 WHERE a=22903;\nUPDATE t2 SET b=64199 WHERE a=22904;\nUPDATE t2 SET b=39429 WHERE a=22905;\nUPDATE t2 SET b=37477 WHERE a=22906;\nUPDATE t2 SET b=84286 WHERE a=22907;\nUPDATE t2 SET b=29281 WHERE a=22908;\nUPDATE t2 SET b=19022 WHERE a=22909;\nUPDATE t2 SET b=97310 WHERE a=22910;\nUPDATE t2 SET b=35385 WHERE a=22911;\nUPDATE t2 SET b=80092 WHERE a=22912;\nUPDATE t2 SET b=69579 WHERE a=22913;\nUPDATE t2 SET b=53782 WHERE a=22914;\nUPDATE t2 SET b=29228 WHERE a=22915;\nUPDATE t2 SET b=53534 WHERE a=22916;\nUPDATE t2 SET b=78513 WHERE a=22917;\nUPDATE t2 SET b=49127 WHERE a=22918;\nUPDATE t2 SET b=2543 WHERE a=22919;\nUPDATE t2 SET b=43925 WHERE a=22920;\nUPDATE t2 SET b=5767 WHERE a=22921;\nUPDATE t2 SET b=61618 WHERE a=22922;\nUPDATE t2 SET b=58451 WHERE a=22923;\nUPDATE t2 SET b=74633 WHERE a=22924;\nUPDATE t2 SET b=86786 WHERE a=22925;\nUPDATE t2 SET b=31812 WHERE a=22926;\nUPDATE t2 SET b=86347 WHERE a=22927;\nUPDATE t2 SET b=55625 WHERE a=22928;\nUPDATE t2 SET b=62952 WHERE a=22929;\nUPDATE t2 SET b=45015 WHERE a=22930;\nUPDATE t2 SET b=32446 WHERE a=22931;\nUPDATE t2 SET b=19228 WHERE a=22932;\nUPDATE t2 SET b=79070 WHERE a=22933;\nUPDATE t2 SET b=65666 WHERE a=22934;\nUPDATE t2 SET b=50022 WHERE a=22935;\nUPDATE t2 SET b=81273 WHERE a=22936;\nUPDATE t2 SET b=75946 WHERE a=22937;\nUPDATE t2 SET b=20378 WHERE a=22938;\nUPDATE t2 SET b=74200 WHERE a=22939;\nUPDATE t2 SET b=16792 WHERE a=22940;\nUPDATE t2 SET b=44932 WHERE a=22941;\nUPDATE t2 SET b=62071 WHERE a=22942;\nUPDATE t2 SET b=71655 WHERE a=22943;\nUPDATE t2 SET b=87920 WHERE a=22944;\nUPDATE t2 SET b=32494 WHERE a=22945;\nUPDATE t2 SET b=3963 WHERE a=22946;\nUPDATE t2 SET b=95624 WHERE a=22947;\nUPDATE t2 SET b=70701 WHERE a=22948;\nUPDATE t2 SET b=12930 WHERE a=22949;\nUPDATE t2 SET b=40431 WHERE a=22950;\nUPDATE t2 SET b=26297 WHERE a=22951;\nUPDATE t2 SET b=68871 WHERE a=22952;\nUPDATE t2 SET b=79329 WHERE a=22953;\nUPDATE t2 SET b=91321 WHERE a=22954;\nUPDATE t2 SET b=52874 WHERE a=22955;\nUPDATE t2 SET b=90917 WHERE a=22956;\nUPDATE t2 SET b=70752 WHERE a=22957;\nUPDATE t2 SET b=48017 WHERE a=22958;\nUPDATE t2 SET b=62873 WHERE a=22959;\nUPDATE t2 SET b=7714 WHERE a=22960;\nUPDATE t2 SET b=82695 WHERE a=22961;\nUPDATE t2 SET b=40498 WHERE a=22962;\nUPDATE t2 SET b=11293 WHERE a=22963;\nUPDATE t2 SET b=30222 WHERE a=22964;\nUPDATE t2 SET b=28721 WHERE a=22965;\nUPDATE t2 SET b=25694 WHERE a=22966;\nUPDATE t2 SET b=81476 WHERE a=22967;\nUPDATE t2 SET b=57760 WHERE a=22968;\nUPDATE t2 SET b=52160 WHERE a=22969;\nUPDATE t2 SET b=38840 WHERE a=22970;\nUPDATE t2 SET b=50775 WHERE a=22971;\nUPDATE t2 SET b=48070 WHERE a=22972;\nUPDATE t2 SET b=20222 WHERE a=22973;\nUPDATE t2 SET b=36818 WHERE a=22974;\nUPDATE t2 SET b=32898 WHERE a=22975;\nUPDATE t2 SET b=21232 WHERE a=22976;\nUPDATE t2 SET b=59054 WHERE a=22977;\nUPDATE t2 SET b=77163 WHERE a=22978;\nUPDATE t2 SET b=30747 WHERE a=22979;\nUPDATE t2 SET b=46367 WHERE a=22980;\nUPDATE t2 SET b=11759 WHERE a=22981;\nUPDATE t2 SET b=11713 WHERE a=22982;\nUPDATE t2 SET b=86716 WHERE a=22983;\nUPDATE t2 SET b=692 WHERE a=22984;\nUPDATE t2 SET b=18554 WHERE a=22985;\nUPDATE t2 SET b=74477 WHERE a=22986;\nUPDATE t2 SET b=85513 WHERE a=22987;\nUPDATE t2 SET b=71010 WHERE a=22988;\nUPDATE t2 SET b=53157 WHERE a=22989;\nUPDATE t2 SET b=34101 WHERE a=22990;\nUPDATE t2 SET b=6356 WHERE a=22991;\nUPDATE t2 SET b=91546 WHERE a=22992;\nUPDATE t2 SET b=64808 WHERE a=22993;\nUPDATE t2 SET b=80397 WHERE a=22994;\nUPDATE t2 SET b=7149 WHERE a=22995;\nUPDATE t2 SET b=92766 WHERE a=22996;\nUPDATE t2 SET b=69393 WHERE a=22997;\nUPDATE t2 SET b=38707 WHERE a=22998;\nUPDATE t2 SET b=84202 WHERE a=22999;\nUPDATE t2 SET b=72008 WHERE a=23000;\nUPDATE t2 SET b=44769 WHERE a=23001;\nUPDATE t2 SET b=6237 WHERE a=23002;\nUPDATE t2 SET b=15432 WHERE a=23003;\nUPDATE t2 SET b=11189 WHERE a=23004;\nUPDATE t2 SET b=6244 WHERE a=23005;\nUPDATE t2 SET b=25560 WHERE a=23006;\nUPDATE t2 SET b=7765 WHERE a=23007;\nUPDATE t2 SET b=3784 WHERE a=23008;\nUPDATE t2 SET b=80874 WHERE a=23009;\nUPDATE t2 SET b=66656 WHERE a=23010;\nUPDATE t2 SET b=10220 WHERE a=23011;\nUPDATE t2 SET b=71168 WHERE a=23012;\nUPDATE t2 SET b=11064 WHERE a=23013;\nUPDATE t2 SET b=25550 WHERE a=23014;\nUPDATE t2 SET b=1659 WHERE a=23015;\nUPDATE t2 SET b=95717 WHERE a=23016;\nUPDATE t2 SET b=60150 WHERE a=23017;\nUPDATE t2 SET b=26004 WHERE a=23018;\nUPDATE t2 SET b=11369 WHERE a=23019;\nUPDATE t2 SET b=48145 WHERE a=23020;\nUPDATE t2 SET b=30424 WHERE a=23021;\nUPDATE t2 SET b=68562 WHERE a=23022;\nUPDATE t2 SET b=43441 WHERE a=23023;\nUPDATE t2 SET b=67607 WHERE a=23024;\nUPDATE t2 SET b=77071 WHERE a=23025;\nUPDATE t2 SET b=2818 WHERE a=23026;\nUPDATE t2 SET b=99071 WHERE a=23027;\nUPDATE t2 SET b=32703 WHERE a=23028;\nUPDATE t2 SET b=61815 WHERE a=23029;\nUPDATE t2 SET b=91361 WHERE a=23030;\nUPDATE t2 SET b=93710 WHERE a=23031;\nUPDATE t2 SET b=26064 WHERE a=23032;\nUPDATE t2 SET b=21861 WHERE a=23033;\nUPDATE t2 SET b=62719 WHERE a=23034;\nUPDATE t2 SET b=13266 WHERE a=23035;\nUPDATE t2 SET b=19588 WHERE a=23036;\nUPDATE t2 SET b=49207 WHERE a=23037;\nUPDATE t2 SET b=48217 WHERE a=23038;\nUPDATE t2 SET b=23945 WHERE a=23039;\nUPDATE t2 SET b=77346 WHERE a=23040;\nUPDATE t2 SET b=91502 WHERE a=23041;\nUPDATE t2 SET b=84525 WHERE a=23042;\nUPDATE t2 SET b=39763 WHERE a=23043;\nUPDATE t2 SET b=85404 WHERE a=23044;\nUPDATE t2 SET b=71025 WHERE a=23045;\nUPDATE t2 SET b=39014 WHERE a=23046;\nUPDATE t2 SET b=51442 WHERE a=23047;\nUPDATE t2 SET b=18687 WHERE a=23048;\nUPDATE t2 SET b=9073 WHERE a=23049;\nUPDATE t2 SET b=74499 WHERE a=23050;\nUPDATE t2 SET b=39486 WHERE a=23051;\nUPDATE t2 SET b=49618 WHERE a=23052;\nUPDATE t2 SET b=397 WHERE a=23053;\nUPDATE t2 SET b=15288 WHERE a=23054;\nUPDATE t2 SET b=85262 WHERE a=23055;\nUPDATE t2 SET b=20610 WHERE a=23056;\nUPDATE t2 SET b=38925 WHERE a=23057;\nUPDATE t2 SET b=81067 WHERE a=23058;\nUPDATE t2 SET b=53853 WHERE a=23059;\nUPDATE t2 SET b=29050 WHERE a=23060;\nUPDATE t2 SET b=42002 WHERE a=23061;\nUPDATE t2 SET b=51394 WHERE a=23062;\nUPDATE t2 SET b=60324 WHERE a=23063;\nUPDATE t2 SET b=85116 WHERE a=23064;\nUPDATE t2 SET b=56580 WHERE a=23065;\nUPDATE t2 SET b=44408 WHERE a=23066;\nUPDATE t2 SET b=9592 WHERE a=23067;\nUPDATE t2 SET b=40244 WHERE a=23068;\nUPDATE t2 SET b=51062 WHERE a=23069;\nUPDATE t2 SET b=16611 WHERE a=23070;\nUPDATE t2 SET b=10386 WHERE a=23071;\nUPDATE t2 SET b=55299 WHERE a=23072;\nUPDATE t2 SET b=43259 WHERE a=23073;\nUPDATE t2 SET b=8119 WHERE a=23074;\nUPDATE t2 SET b=63946 WHERE a=23075;\nUPDATE t2 SET b=18375 WHERE a=23076;\nUPDATE t2 SET b=50897 WHERE a=23077;\nUPDATE t2 SET b=72310 WHERE a=23078;\nUPDATE t2 SET b=7211 WHERE a=23079;\nUPDATE t2 SET b=11580 WHERE a=23080;\nUPDATE t2 SET b=13086 WHERE a=23081;\nUPDATE t2 SET b=5623 WHERE a=23082;\nUPDATE t2 SET b=27056 WHERE a=23083;\nUPDATE t2 SET b=86996 WHERE a=23084;\nUPDATE t2 SET b=56157 WHERE a=23085;\nUPDATE t2 SET b=7588 WHERE a=23086;\nUPDATE t2 SET b=8560 WHERE a=23087;\nUPDATE t2 SET b=53305 WHERE a=23088;\nUPDATE t2 SET b=39365 WHERE a=23089;\nUPDATE t2 SET b=40857 WHERE a=23090;\nUPDATE t2 SET b=11050 WHERE a=23091;\nUPDATE t2 SET b=53609 WHERE a=23092;\nUPDATE t2 SET b=9797 WHERE a=23093;\nUPDATE t2 SET b=36071 WHERE a=23094;\nUPDATE t2 SET b=15772 WHERE a=23095;\nUPDATE t2 SET b=71473 WHERE a=23096;\nUPDATE t2 SET b=80342 WHERE a=23097;\nUPDATE t2 SET b=25310 WHERE a=23098;\nUPDATE t2 SET b=86468 WHERE a=23099;\nUPDATE t2 SET b=56224 WHERE a=23100;\nUPDATE t2 SET b=89383 WHERE a=23101;\nUPDATE t2 SET b=72867 WHERE a=23102;\nUPDATE t2 SET b=65194 WHERE a=23103;\nUPDATE t2 SET b=34153 WHERE a=23104;\nUPDATE t2 SET b=70654 WHERE a=23105;\nUPDATE t2 SET b=44720 WHERE a=23106;\nUPDATE t2 SET b=56307 WHERE a=23107;\nUPDATE t2 SET b=96859 WHERE a=23108;\nUPDATE t2 SET b=87919 WHERE a=23109;\nUPDATE t2 SET b=71443 WHERE a=23110;\nUPDATE t2 SET b=96465 WHERE a=23111;\nUPDATE t2 SET b=43666 WHERE a=23112;\nUPDATE t2 SET b=91276 WHERE a=23113;\nUPDATE t2 SET b=33001 WHERE a=23114;\nUPDATE t2 SET b=59339 WHERE a=23115;\nUPDATE t2 SET b=4811 WHERE a=23116;\nUPDATE t2 SET b=24227 WHERE a=23117;\nUPDATE t2 SET b=2034 WHERE a=23118;\nUPDATE t2 SET b=79327 WHERE a=23119;\nUPDATE t2 SET b=62433 WHERE a=23120;\nUPDATE t2 SET b=34768 WHERE a=23121;\nUPDATE t2 SET b=94937 WHERE a=23122;\nUPDATE t2 SET b=47742 WHERE a=23123;\nUPDATE t2 SET b=97451 WHERE a=23124;\nUPDATE t2 SET b=13726 WHERE a=23125;\nUPDATE t2 SET b=13527 WHERE a=23126;\nUPDATE t2 SET b=39441 WHERE a=23127;\nUPDATE t2 SET b=73397 WHERE a=23128;\nUPDATE t2 SET b=36078 WHERE a=23129;\nUPDATE t2 SET b=22201 WHERE a=23130;\nUPDATE t2 SET b=57372 WHERE a=23131;\nUPDATE t2 SET b=34679 WHERE a=23132;\nUPDATE t2 SET b=70650 WHERE a=23133;\nUPDATE t2 SET b=30459 WHERE a=23134;\nUPDATE t2 SET b=85435 WHERE a=23135;\nUPDATE t2 SET b=89818 WHERE a=23136;\nUPDATE t2 SET b=19678 WHERE a=23137;\nUPDATE t2 SET b=3082 WHERE a=23138;\nUPDATE t2 SET b=28123 WHERE a=23139;\nUPDATE t2 SET b=20839 WHERE a=23140;\nUPDATE t2 SET b=8672 WHERE a=23141;\nUPDATE t2 SET b=94287 WHERE a=23142;\nUPDATE t2 SET b=63303 WHERE a=23143;\nUPDATE t2 SET b=25179 WHERE a=23144;\nUPDATE t2 SET b=87100 WHERE a=23145;\nUPDATE t2 SET b=17315 WHERE a=23146;\nUPDATE t2 SET b=3691 WHERE a=23147;\nUPDATE t2 SET b=51699 WHERE a=23148;\nUPDATE t2 SET b=121 WHERE a=23149;\nUPDATE t2 SET b=82072 WHERE a=23150;\nUPDATE t2 SET b=35795 WHERE a=23151;\nUPDATE t2 SET b=62153 WHERE a=23152;\nUPDATE t2 SET b=63733 WHERE a=23153;\nUPDATE t2 SET b=33678 WHERE a=23154;\nUPDATE t2 SET b=60478 WHERE a=23155;\nUPDATE t2 SET b=22815 WHERE a=23156;\nUPDATE t2 SET b=84629 WHERE a=23157;\nUPDATE t2 SET b=34544 WHERE a=23158;\nUPDATE t2 SET b=92699 WHERE a=23159;\nUPDATE t2 SET b=35627 WHERE a=23160;\nUPDATE t2 SET b=92999 WHERE a=23161;\nUPDATE t2 SET b=2108 WHERE a=23162;\nUPDATE t2 SET b=67993 WHERE a=23163;\nUPDATE t2 SET b=1197 WHERE a=23164;\nUPDATE t2 SET b=50064 WHERE a=23165;\nUPDATE t2 SET b=81869 WHERE a=23166;\nUPDATE t2 SET b=71838 WHERE a=23167;\nUPDATE t2 SET b=38183 WHERE a=23168;\nUPDATE t2 SET b=92287 WHERE a=23169;\nUPDATE t2 SET b=70121 WHERE a=23170;\nUPDATE t2 SET b=62896 WHERE a=23171;\nUPDATE t2 SET b=6269 WHERE a=23172;\nUPDATE t2 SET b=52587 WHERE a=23173;\nUPDATE t2 SET b=55316 WHERE a=23174;\nUPDATE t2 SET b=20868 WHERE a=23175;\nUPDATE t2 SET b=92001 WHERE a=23176;\nUPDATE t2 SET b=75514 WHERE a=23177;\nUPDATE t2 SET b=57416 WHERE a=23178;\nUPDATE t2 SET b=64388 WHERE a=23179;\nUPDATE t2 SET b=61611 WHERE a=23180;\nUPDATE t2 SET b=77871 WHERE a=23181;\nUPDATE t2 SET b=77185 WHERE a=23182;\nUPDATE t2 SET b=59456 WHERE a=23183;\nUPDATE t2 SET b=10463 WHERE a=23184;\nUPDATE t2 SET b=74726 WHERE a=23185;\nUPDATE t2 SET b=81848 WHERE a=23186;\nUPDATE t2 SET b=43287 WHERE a=23187;\nUPDATE t2 SET b=43448 WHERE a=23188;\nUPDATE t2 SET b=21600 WHERE a=23189;\nUPDATE t2 SET b=59601 WHERE a=23190;\nUPDATE t2 SET b=18348 WHERE a=23191;\nUPDATE t2 SET b=80393 WHERE a=23192;\nUPDATE t2 SET b=89741 WHERE a=23193;\nUPDATE t2 SET b=23279 WHERE a=23194;\nUPDATE t2 SET b=40487 WHERE a=23195;\nUPDATE t2 SET b=86726 WHERE a=23196;\nUPDATE t2 SET b=25760 WHERE a=23197;\nUPDATE t2 SET b=67657 WHERE a=23198;\nUPDATE t2 SET b=87632 WHERE a=23199;\nUPDATE t2 SET b=71253 WHERE a=23200;\nUPDATE t2 SET b=81391 WHERE a=23201;\nUPDATE t2 SET b=54653 WHERE a=23202;\nUPDATE t2 SET b=22192 WHERE a=23203;\nUPDATE t2 SET b=22585 WHERE a=23204;\nUPDATE t2 SET b=95163 WHERE a=23205;\nUPDATE t2 SET b=66575 WHERE a=23206;\nUPDATE t2 SET b=6752 WHERE a=23207;\nUPDATE t2 SET b=51093 WHERE a=23208;\nUPDATE t2 SET b=14122 WHERE a=23209;\nUPDATE t2 SET b=1578 WHERE a=23210;\nUPDATE t2 SET b=28276 WHERE a=23211;\nUPDATE t2 SET b=54268 WHERE a=23212;\nUPDATE t2 SET b=5548 WHERE a=23213;\nUPDATE t2 SET b=15502 WHERE a=23214;\nUPDATE t2 SET b=40266 WHERE a=23215;\nUPDATE t2 SET b=80465 WHERE a=23216;\nUPDATE t2 SET b=68100 WHERE a=23217;\nUPDATE t2 SET b=95771 WHERE a=23218;\nUPDATE t2 SET b=88771 WHERE a=23219;\nUPDATE t2 SET b=94851 WHERE a=23220;\nUPDATE t2 SET b=7857 WHERE a=23221;\nUPDATE t2 SET b=8564 WHERE a=23222;\nUPDATE t2 SET b=76198 WHERE a=23223;\nUPDATE t2 SET b=65682 WHERE a=23224;\nUPDATE t2 SET b=3598 WHERE a=23225;\nUPDATE t2 SET b=35510 WHERE a=23226;\nUPDATE t2 SET b=74235 WHERE a=23227;\nUPDATE t2 SET b=77216 WHERE a=23228;\nUPDATE t2 SET b=36600 WHERE a=23229;\nUPDATE t2 SET b=3242 WHERE a=23230;\nUPDATE t2 SET b=990 WHERE a=23231;\nUPDATE t2 SET b=43535 WHERE a=23232;\nUPDATE t2 SET b=16017 WHERE a=23233;\nUPDATE t2 SET b=58208 WHERE a=23234;\nUPDATE t2 SET b=67854 WHERE a=23235;\nUPDATE t2 SET b=68608 WHERE a=23236;\nUPDATE t2 SET b=15629 WHERE a=23237;\nUPDATE t2 SET b=99966 WHERE a=23238;\nUPDATE t2 SET b=64372 WHERE a=23239;\nUPDATE t2 SET b=38757 WHERE a=23240;\nUPDATE t2 SET b=97088 WHERE a=23241;\nUPDATE t2 SET b=19851 WHERE a=23242;\nUPDATE t2 SET b=62091 WHERE a=23243;\nUPDATE t2 SET b=94744 WHERE a=23244;\nUPDATE t2 SET b=67586 WHERE a=23245;\nUPDATE t2 SET b=30431 WHERE a=23246;\nUPDATE t2 SET b=74090 WHERE a=23247;\nUPDATE t2 SET b=99856 WHERE a=23248;\nUPDATE t2 SET b=22596 WHERE a=23249;\nUPDATE t2 SET b=52614 WHERE a=23250;\nUPDATE t2 SET b=76302 WHERE a=23251;\nUPDATE t2 SET b=21016 WHERE a=23252;\nUPDATE t2 SET b=20004 WHERE a=23253;\nUPDATE t2 SET b=52668 WHERE a=23254;\nUPDATE t2 SET b=20231 WHERE a=23255;\nUPDATE t2 SET b=90309 WHERE a=23256;\nUPDATE t2 SET b=55124 WHERE a=23257;\nUPDATE t2 SET b=61187 WHERE a=23258;\nUPDATE t2 SET b=58675 WHERE a=23259;\nUPDATE t2 SET b=47510 WHERE a=23260;\nUPDATE t2 SET b=67775 WHERE a=23261;\nUPDATE t2 SET b=25903 WHERE a=23262;\nUPDATE t2 SET b=95346 WHERE a=23263;\nUPDATE t2 SET b=21623 WHERE a=23264;\nUPDATE t2 SET b=28382 WHERE a=23265;\nUPDATE t2 SET b=58266 WHERE a=23266;\nUPDATE t2 SET b=69447 WHERE a=23267;\nUPDATE t2 SET b=53227 WHERE a=23268;\nUPDATE t2 SET b=63725 WHERE a=23269;\nUPDATE t2 SET b=79485 WHERE a=23270;\nUPDATE t2 SET b=75390 WHERE a=23271;\nUPDATE t2 SET b=72793 WHERE a=23272;\nUPDATE t2 SET b=35373 WHERE a=23273;\nUPDATE t2 SET b=90315 WHERE a=23274;\nUPDATE t2 SET b=800 WHERE a=23275;\nUPDATE t2 SET b=1121 WHERE a=23276;\nUPDATE t2 SET b=19147 WHERE a=23277;\nUPDATE t2 SET b=30221 WHERE a=23278;\nUPDATE t2 SET b=25712 WHERE a=23279;\nUPDATE t2 SET b=34172 WHERE a=23280;\nUPDATE t2 SET b=52374 WHERE a=23281;\nUPDATE t2 SET b=44465 WHERE a=23282;\nUPDATE t2 SET b=85827 WHERE a=23283;\nUPDATE t2 SET b=60508 WHERE a=23284;\nUPDATE t2 SET b=35521 WHERE a=23285;\nUPDATE t2 SET b=85134 WHERE a=23286;\nUPDATE t2 SET b=20391 WHERE a=23287;\nUPDATE t2 SET b=63291 WHERE a=23288;\nUPDATE t2 SET b=97774 WHERE a=23289;\nUPDATE t2 SET b=88993 WHERE a=23290;\nUPDATE t2 SET b=62709 WHERE a=23291;\nUPDATE t2 SET b=92281 WHERE a=23292;\nUPDATE t2 SET b=31387 WHERE a=23293;\nUPDATE t2 SET b=17613 WHERE a=23294;\nUPDATE t2 SET b=36220 WHERE a=23295;\nUPDATE t2 SET b=27297 WHERE a=23296;\nUPDATE t2 SET b=93318 WHERE a=23297;\nUPDATE t2 SET b=67054 WHERE a=23298;\nUPDATE t2 SET b=29977 WHERE a=23299;\nUPDATE t2 SET b=74220 WHERE a=23300;\nUPDATE t2 SET b=46664 WHERE a=23301;\nUPDATE t2 SET b=99917 WHERE a=23302;\nUPDATE t2 SET b=49724 WHERE a=23303;\nUPDATE t2 SET b=60790 WHERE a=23304;\nUPDATE t2 SET b=69212 WHERE a=23305;\nUPDATE t2 SET b=11030 WHERE a=23306;\nUPDATE t2 SET b=86962 WHERE a=23307;\nUPDATE t2 SET b=74367 WHERE a=23308;\nUPDATE t2 SET b=55246 WHERE a=23309;\nUPDATE t2 SET b=73934 WHERE a=23310;\nUPDATE t2 SET b=47487 WHERE a=23311;\nUPDATE t2 SET b=31472 WHERE a=23312;\nUPDATE t2 SET b=10619 WHERE a=23313;\nUPDATE t2 SET b=24527 WHERE a=23314;\nUPDATE t2 SET b=95858 WHERE a=23315;\nUPDATE t2 SET b=31548 WHERE a=23316;\nUPDATE t2 SET b=50451 WHERE a=23317;\nUPDATE t2 SET b=21533 WHERE a=23318;\nUPDATE t2 SET b=1357 WHERE a=23319;\nUPDATE t2 SET b=77766 WHERE a=23320;\nUPDATE t2 SET b=44440 WHERE a=23321;\nUPDATE t2 SET b=92511 WHERE a=23322;\nUPDATE t2 SET b=49133 WHERE a=23323;\nUPDATE t2 SET b=64515 WHERE a=23324;\nUPDATE t2 SET b=95679 WHERE a=23325;\nUPDATE t2 SET b=58107 WHERE a=23326;\nUPDATE t2 SET b=86966 WHERE a=23327;\nUPDATE t2 SET b=11190 WHERE a=23328;\nUPDATE t2 SET b=81613 WHERE a=23329;\nUPDATE t2 SET b=62659 WHERE a=23330;\nUPDATE t2 SET b=79584 WHERE a=23331;\nUPDATE t2 SET b=29246 WHERE a=23332;\nUPDATE t2 SET b=97236 WHERE a=23333;\nUPDATE t2 SET b=74978 WHERE a=23334;\nUPDATE t2 SET b=34138 WHERE a=23335;\nUPDATE t2 SET b=45507 WHERE a=23336;\nUPDATE t2 SET b=37786 WHERE a=23337;\nUPDATE t2 SET b=47278 WHERE a=23338;\nUPDATE t2 SET b=74362 WHERE a=23339;\nUPDATE t2 SET b=2774 WHERE a=23340;\nUPDATE t2 SET b=77619 WHERE a=23341;\nUPDATE t2 SET b=19954 WHERE a=23342;\nUPDATE t2 SET b=67267 WHERE a=23343;\nUPDATE t2 SET b=21262 WHERE a=23344;\nUPDATE t2 SET b=80112 WHERE a=23345;\nUPDATE t2 SET b=3037 WHERE a=23346;\nUPDATE t2 SET b=7724 WHERE a=23347;\nUPDATE t2 SET b=59288 WHERE a=23348;\nUPDATE t2 SET b=49151 WHERE a=23349;\nUPDATE t2 SET b=19202 WHERE a=23350;\nUPDATE t2 SET b=3250 WHERE a=23351;\nUPDATE t2 SET b=77998 WHERE a=23352;\nUPDATE t2 SET b=70650 WHERE a=23353;\nUPDATE t2 SET b=36462 WHERE a=23354;\nUPDATE t2 SET b=61429 WHERE a=23355;\nUPDATE t2 SET b=65197 WHERE a=23356;\nUPDATE t2 SET b=10124 WHERE a=23357;\nUPDATE t2 SET b=21052 WHERE a=23358;\nUPDATE t2 SET b=92919 WHERE a=23359;\nUPDATE t2 SET b=68576 WHERE a=23360;\nUPDATE t2 SET b=2812 WHERE a=23361;\nUPDATE t2 SET b=88135 WHERE a=23362;\nUPDATE t2 SET b=88245 WHERE a=23363;\nUPDATE t2 SET b=57487 WHERE a=23364;\nUPDATE t2 SET b=24430 WHERE a=23365;\nUPDATE t2 SET b=85564 WHERE a=23366;\nUPDATE t2 SET b=52140 WHERE a=23367;\nUPDATE t2 SET b=15560 WHERE a=23368;\nUPDATE t2 SET b=90236 WHERE a=23369;\nUPDATE t2 SET b=89442 WHERE a=23370;\nUPDATE t2 SET b=54287 WHERE a=23371;\nUPDATE t2 SET b=29482 WHERE a=23372;\nUPDATE t2 SET b=28271 WHERE a=23373;\nUPDATE t2 SET b=34122 WHERE a=23374;\nUPDATE t2 SET b=58955 WHERE a=23375;\nUPDATE t2 SET b=34603 WHERE a=23376;\nUPDATE t2 SET b=52993 WHERE a=23377;\nUPDATE t2 SET b=93683 WHERE a=23378;\nUPDATE t2 SET b=68370 WHERE a=23379;\nUPDATE t2 SET b=88213 WHERE a=23380;\nUPDATE t2 SET b=4035 WHERE a=23381;\nUPDATE t2 SET b=74977 WHERE a=23382;\nUPDATE t2 SET b=34492 WHERE a=23383;\nUPDATE t2 SET b=21662 WHERE a=23384;\nUPDATE t2 SET b=89316 WHERE a=23385;\nUPDATE t2 SET b=97833 WHERE a=23386;\nUPDATE t2 SET b=56686 WHERE a=23387;\nUPDATE t2 SET b=65121 WHERE a=23388;\nUPDATE t2 SET b=85891 WHERE a=23389;\nUPDATE t2 SET b=89944 WHERE a=23390;\nUPDATE t2 SET b=68324 WHERE a=23391;\nUPDATE t2 SET b=2446 WHERE a=23392;\nUPDATE t2 SET b=37590 WHERE a=23393;\nUPDATE t2 SET b=7594 WHERE a=23394;\nUPDATE t2 SET b=30846 WHERE a=23395;\nUPDATE t2 SET b=75716 WHERE a=23396;\nUPDATE t2 SET b=85147 WHERE a=23397;\nUPDATE t2 SET b=29098 WHERE a=23398;\nUPDATE t2 SET b=56352 WHERE a=23399;\nUPDATE t2 SET b=99274 WHERE a=23400;\nUPDATE t2 SET b=74072 WHERE a=23401;\nUPDATE t2 SET b=10264 WHERE a=23402;\nUPDATE t2 SET b=53187 WHERE a=23403;\nUPDATE t2 SET b=20830 WHERE a=23404;\nUPDATE t2 SET b=3961 WHERE a=23405;\nUPDATE t2 SET b=373 WHERE a=23406;\nUPDATE t2 SET b=60649 WHERE a=23407;\nUPDATE t2 SET b=64760 WHERE a=23408;\nUPDATE t2 SET b=6409 WHERE a=23409;\nUPDATE t2 SET b=63145 WHERE a=23410;\nUPDATE t2 SET b=59364 WHERE a=23411;\nUPDATE t2 SET b=40280 WHERE a=23412;\nUPDATE t2 SET b=32262 WHERE a=23413;\nUPDATE t2 SET b=95556 WHERE a=23414;\nUPDATE t2 SET b=58879 WHERE a=23415;\nUPDATE t2 SET b=94446 WHERE a=23416;\nUPDATE t2 SET b=90348 WHERE a=23417;\nUPDATE t2 SET b=73377 WHERE a=23418;\nUPDATE t2 SET b=93762 WHERE a=23419;\nUPDATE t2 SET b=37131 WHERE a=23420;\nUPDATE t2 SET b=82341 WHERE a=23421;\nUPDATE t2 SET b=74965 WHERE a=23422;\nUPDATE t2 SET b=38309 WHERE a=23423;\nUPDATE t2 SET b=44259 WHERE a=23424;\nUPDATE t2 SET b=99810 WHERE a=23425;\nUPDATE t2 SET b=55577 WHERE a=23426;\nUPDATE t2 SET b=79071 WHERE a=23427;\nUPDATE t2 SET b=40738 WHERE a=23428;\nUPDATE t2 SET b=19762 WHERE a=23429;\nUPDATE t2 SET b=10744 WHERE a=23430;\nUPDATE t2 SET b=20684 WHERE a=23431;\nUPDATE t2 SET b=29940 WHERE a=23432;\nUPDATE t2 SET b=77426 WHERE a=23433;\nUPDATE t2 SET b=70862 WHERE a=23434;\nUPDATE t2 SET b=13793 WHERE a=23435;\nUPDATE t2 SET b=51919 WHERE a=23436;\nUPDATE t2 SET b=48580 WHERE a=23437;\nUPDATE t2 SET b=55971 WHERE a=23438;\nUPDATE t2 SET b=13823 WHERE a=23439;\nUPDATE t2 SET b=21199 WHERE a=23440;\nUPDATE t2 SET b=52006 WHERE a=23441;\nUPDATE t2 SET b=6690 WHERE a=23442;\nUPDATE t2 SET b=38576 WHERE a=23443;\nUPDATE t2 SET b=429 WHERE a=23444;\nUPDATE t2 SET b=50221 WHERE a=23445;\nUPDATE t2 SET b=11108 WHERE a=23446;\nUPDATE t2 SET b=47975 WHERE a=23447;\nUPDATE t2 SET b=5614 WHERE a=23448;\nUPDATE t2 SET b=53346 WHERE a=23449;\nUPDATE t2 SET b=10093 WHERE a=23450;\nUPDATE t2 SET b=34730 WHERE a=23451;\nUPDATE t2 SET b=71808 WHERE a=23452;\nUPDATE t2 SET b=16771 WHERE a=23453;\nUPDATE t2 SET b=68914 WHERE a=23454;\nUPDATE t2 SET b=88732 WHERE a=23455;\nUPDATE t2 SET b=17798 WHERE a=23456;\nUPDATE t2 SET b=64036 WHERE a=23457;\nUPDATE t2 SET b=30966 WHERE a=23458;\nUPDATE t2 SET b=90834 WHERE a=23459;\nUPDATE t2 SET b=79229 WHERE a=23460;\nUPDATE t2 SET b=93306 WHERE a=23461;\nUPDATE t2 SET b=14288 WHERE a=23462;\nUPDATE t2 SET b=86025 WHERE a=23463;\nUPDATE t2 SET b=92230 WHERE a=23464;\nUPDATE t2 SET b=21514 WHERE a=23465;\nUPDATE t2 SET b=51406 WHERE a=23466;\nUPDATE t2 SET b=36322 WHERE a=23467;\nUPDATE t2 SET b=84 WHERE a=23468;\nUPDATE t2 SET b=55267 WHERE a=23469;\nUPDATE t2 SET b=48912 WHERE a=23470;\nUPDATE t2 SET b=32339 WHERE a=23471;\nUPDATE t2 SET b=72626 WHERE a=23472;\nUPDATE t2 SET b=55642 WHERE a=23473;\nUPDATE t2 SET b=90391 WHERE a=23474;\nUPDATE t2 SET b=11042 WHERE a=23475;\nUPDATE t2 SET b=24506 WHERE a=23476;\nUPDATE t2 SET b=93348 WHERE a=23477;\nUPDATE t2 SET b=98776 WHERE a=23478;\nUPDATE t2 SET b=52993 WHERE a=23479;\nUPDATE t2 SET b=84125 WHERE a=23480;\nUPDATE t2 SET b=2719 WHERE a=23481;\nUPDATE t2 SET b=55666 WHERE a=23482;\nUPDATE t2 SET b=89562 WHERE a=23483;\nUPDATE t2 SET b=56368 WHERE a=23484;\nUPDATE t2 SET b=5376 WHERE a=23485;\nUPDATE t2 SET b=23917 WHERE a=23486;\nUPDATE t2 SET b=33517 WHERE a=23487;\nUPDATE t2 SET b=17269 WHERE a=23488;\nUPDATE t2 SET b=77709 WHERE a=23489;\nUPDATE t2 SET b=58106 WHERE a=23490;\nUPDATE t2 SET b=20082 WHERE a=23491;\nUPDATE t2 SET b=74145 WHERE a=23492;\nUPDATE t2 SET b=5080 WHERE a=23493;\nUPDATE t2 SET b=30461 WHERE a=23494;\nUPDATE t2 SET b=53852 WHERE a=23495;\nUPDATE t2 SET b=20872 WHERE a=23496;\nUPDATE t2 SET b=189 WHERE a=23497;\nUPDATE t2 SET b=78123 WHERE a=23498;\nUPDATE t2 SET b=563 WHERE a=23499;\nUPDATE t2 SET b=42744 WHERE a=23500;\nUPDATE t2 SET b=42069 WHERE a=23501;\nUPDATE t2 SET b=78711 WHERE a=23502;\nUPDATE t2 SET b=77178 WHERE a=23503;\nUPDATE t2 SET b=47078 WHERE a=23504;\nUPDATE t2 SET b=86489 WHERE a=23505;\nUPDATE t2 SET b=6572 WHERE a=23506;\nUPDATE t2 SET b=75613 WHERE a=23507;\nUPDATE t2 SET b=42084 WHERE a=23508;\nUPDATE t2 SET b=73206 WHERE a=23509;\nUPDATE t2 SET b=55408 WHERE a=23510;\nUPDATE t2 SET b=90141 WHERE a=23511;\nUPDATE t2 SET b=37249 WHERE a=23512;\nUPDATE t2 SET b=46710 WHERE a=23513;\nUPDATE t2 SET b=13378 WHERE a=23514;\nUPDATE t2 SET b=76401 WHERE a=23515;\nUPDATE t2 SET b=22623 WHERE a=23516;\nUPDATE t2 SET b=65131 WHERE a=23517;\nUPDATE t2 SET b=86419 WHERE a=23518;\nUPDATE t2 SET b=41778 WHERE a=23519;\nUPDATE t2 SET b=64262 WHERE a=23520;\nUPDATE t2 SET b=30900 WHERE a=23521;\nUPDATE t2 SET b=2340 WHERE a=23522;\nUPDATE t2 SET b=77838 WHERE a=23523;\nUPDATE t2 SET b=84646 WHERE a=23524;\nUPDATE t2 SET b=42181 WHERE a=23525;\nUPDATE t2 SET b=73279 WHERE a=23526;\nUPDATE t2 SET b=43450 WHERE a=23527;\nUPDATE t2 SET b=80435 WHERE a=23528;\nUPDATE t2 SET b=58206 WHERE a=23529;\nUPDATE t2 SET b=38733 WHERE a=23530;\nUPDATE t2 SET b=52364 WHERE a=23531;\nUPDATE t2 SET b=16109 WHERE a=23532;\nUPDATE t2 SET b=41050 WHERE a=23533;\nUPDATE t2 SET b=87959 WHERE a=23534;\nUPDATE t2 SET b=80440 WHERE a=23535;\nUPDATE t2 SET b=67596 WHERE a=23536;\nUPDATE t2 SET b=27529 WHERE a=23537;\nUPDATE t2 SET b=23588 WHERE a=23538;\nUPDATE t2 SET b=83952 WHERE a=23539;\nUPDATE t2 SET b=82228 WHERE a=23540;\nUPDATE t2 SET b=67764 WHERE a=23541;\nUPDATE t2 SET b=90016 WHERE a=23542;\nUPDATE t2 SET b=81087 WHERE a=23543;\nUPDATE t2 SET b=47754 WHERE a=23544;\nUPDATE t2 SET b=20349 WHERE a=23545;\nUPDATE t2 SET b=25033 WHERE a=23546;\nUPDATE t2 SET b=54123 WHERE a=23547;\nUPDATE t2 SET b=57651 WHERE a=23548;\nUPDATE t2 SET b=60251 WHERE a=23549;\nUPDATE t2 SET b=92299 WHERE a=23550;\nUPDATE t2 SET b=23407 WHERE a=23551;\nUPDATE t2 SET b=88573 WHERE a=23552;\nUPDATE t2 SET b=59536 WHERE a=23553;\nUPDATE t2 SET b=13755 WHERE a=23554;\nUPDATE t2 SET b=36190 WHERE a=23555;\nUPDATE t2 SET b=12994 WHERE a=23556;\nUPDATE t2 SET b=69602 WHERE a=23557;\nUPDATE t2 SET b=20437 WHERE a=23558;\nUPDATE t2 SET b=96897 WHERE a=23559;\nUPDATE t2 SET b=67973 WHERE a=23560;\nUPDATE t2 SET b=17367 WHERE a=23561;\nUPDATE t2 SET b=49586 WHERE a=23562;\nUPDATE t2 SET b=35595 WHERE a=23563;\nUPDATE t2 SET b=18053 WHERE a=23564;\nUPDATE t2 SET b=42293 WHERE a=23565;\nUPDATE t2 SET b=78662 WHERE a=23566;\nUPDATE t2 SET b=14060 WHERE a=23567;\nUPDATE t2 SET b=10124 WHERE a=23568;\nUPDATE t2 SET b=54316 WHERE a=23569;\nUPDATE t2 SET b=7438 WHERE a=23570;\nUPDATE t2 SET b=44783 WHERE a=23571;\nUPDATE t2 SET b=36747 WHERE a=23572;\nUPDATE t2 SET b=35695 WHERE a=23573;\nUPDATE t2 SET b=24915 WHERE a=23574;\nUPDATE t2 SET b=94042 WHERE a=23575;\nUPDATE t2 SET b=84567 WHERE a=23576;\nUPDATE t2 SET b=23974 WHERE a=23577;\nUPDATE t2 SET b=40271 WHERE a=23578;\nUPDATE t2 SET b=13338 WHERE a=23579;\nUPDATE t2 SET b=70222 WHERE a=23580;\nUPDATE t2 SET b=13025 WHERE a=23581;\nUPDATE t2 SET b=85374 WHERE a=23582;\nUPDATE t2 SET b=28408 WHERE a=23583;\nUPDATE t2 SET b=95572 WHERE a=23584;\nUPDATE t2 SET b=42518 WHERE a=23585;\nUPDATE t2 SET b=74215 WHERE a=23586;\nUPDATE t2 SET b=67583 WHERE a=23587;\nUPDATE t2 SET b=98433 WHERE a=23588;\nUPDATE t2 SET b=5357 WHERE a=23589;\nUPDATE t2 SET b=71200 WHERE a=23590;\nUPDATE t2 SET b=47810 WHERE a=23591;\nUPDATE t2 SET b=13891 WHERE a=23592;\nUPDATE t2 SET b=44988 WHERE a=23593;\nUPDATE t2 SET b=28001 WHERE a=23594;\nUPDATE t2 SET b=83597 WHERE a=23595;\nUPDATE t2 SET b=22601 WHERE a=23596;\nUPDATE t2 SET b=78104 WHERE a=23597;\nUPDATE t2 SET b=32514 WHERE a=23598;\nUPDATE t2 SET b=27158 WHERE a=23599;\nUPDATE t2 SET b=22100 WHERE a=23600;\nUPDATE t2 SET b=53293 WHERE a=23601;\nUPDATE t2 SET b=71385 WHERE a=23602;\nUPDATE t2 SET b=23462 WHERE a=23603;\nUPDATE t2 SET b=32961 WHERE a=23604;\nUPDATE t2 SET b=25033 WHERE a=23605;\nUPDATE t2 SET b=7499 WHERE a=23606;\nUPDATE t2 SET b=56270 WHERE a=23607;\nUPDATE t2 SET b=9295 WHERE a=23608;\nUPDATE t2 SET b=7207 WHERE a=23609;\nUPDATE t2 SET b=5712 WHERE a=23610;\nUPDATE t2 SET b=94522 WHERE a=23611;\nUPDATE t2 SET b=82026 WHERE a=23612;\nUPDATE t2 SET b=11571 WHERE a=23613;\nUPDATE t2 SET b=36961 WHERE a=23614;\nUPDATE t2 SET b=99456 WHERE a=23615;\nUPDATE t2 SET b=324 WHERE a=23616;\nUPDATE t2 SET b=9425 WHERE a=23617;\nUPDATE t2 SET b=37151 WHERE a=23618;\nUPDATE t2 SET b=55112 WHERE a=23619;\nUPDATE t2 SET b=66006 WHERE a=23620;\nUPDATE t2 SET b=35782 WHERE a=23621;\nUPDATE t2 SET b=31126 WHERE a=23622;\nUPDATE t2 SET b=65988 WHERE a=23623;\nUPDATE t2 SET b=21987 WHERE a=23624;\nUPDATE t2 SET b=22399 WHERE a=23625;\nUPDATE t2 SET b=46228 WHERE a=23626;\nUPDATE t2 SET b=785 WHERE a=23627;\nUPDATE t2 SET b=16784 WHERE a=23628;\nUPDATE t2 SET b=73596 WHERE a=23629;\nUPDATE t2 SET b=11884 WHERE a=23630;\nUPDATE t2 SET b=41480 WHERE a=23631;\nUPDATE t2 SET b=31988 WHERE a=23632;\nUPDATE t2 SET b=42275 WHERE a=23633;\nUPDATE t2 SET b=66790 WHERE a=23634;\nUPDATE t2 SET b=81946 WHERE a=23635;\nUPDATE t2 SET b=75944 WHERE a=23636;\nUPDATE t2 SET b=34158 WHERE a=23637;\nUPDATE t2 SET b=46707 WHERE a=23638;\nUPDATE t2 SET b=29628 WHERE a=23639;\nUPDATE t2 SET b=91503 WHERE a=23640;\nUPDATE t2 SET b=55025 WHERE a=23641;\nUPDATE t2 SET b=66929 WHERE a=23642;\nUPDATE t2 SET b=93463 WHERE a=23643;\nUPDATE t2 SET b=67614 WHERE a=23644;\nUPDATE t2 SET b=6120 WHERE a=23645;\nUPDATE t2 SET b=5075 WHERE a=23646;\nUPDATE t2 SET b=81729 WHERE a=23647;\nUPDATE t2 SET b=93911 WHERE a=23648;\nUPDATE t2 SET b=90563 WHERE a=23649;\nUPDATE t2 SET b=80913 WHERE a=23650;\nUPDATE t2 SET b=4209 WHERE a=23651;\nUPDATE t2 SET b=98063 WHERE a=23652;\nUPDATE t2 SET b=58964 WHERE a=23653;\nUPDATE t2 SET b=73038 WHERE a=23654;\nUPDATE t2 SET b=25685 WHERE a=23655;\nUPDATE t2 SET b=50511 WHERE a=23656;\nUPDATE t2 SET b=89839 WHERE a=23657;\nUPDATE t2 SET b=1972 WHERE a=23658;\nUPDATE t2 SET b=87006 WHERE a=23659;\nUPDATE t2 SET b=49351 WHERE a=23660;\nUPDATE t2 SET b=22627 WHERE a=23661;\nUPDATE t2 SET b=54337 WHERE a=23662;\nUPDATE t2 SET b=8840 WHERE a=23663;\nUPDATE t2 SET b=57915 WHERE a=23664;\nUPDATE t2 SET b=69671 WHERE a=23665;\nUPDATE t2 SET b=87133 WHERE a=23666;\nUPDATE t2 SET b=90324 WHERE a=23667;\nUPDATE t2 SET b=64220 WHERE a=23668;\nUPDATE t2 SET b=5721 WHERE a=23669;\nUPDATE t2 SET b=86209 WHERE a=23670;\nUPDATE t2 SET b=65227 WHERE a=23671;\nUPDATE t2 SET b=56608 WHERE a=23672;\nUPDATE t2 SET b=10090 WHERE a=23673;\nUPDATE t2 SET b=99334 WHERE a=23674;\nUPDATE t2 SET b=85695 WHERE a=23675;\nUPDATE t2 SET b=53494 WHERE a=23676;\nUPDATE t2 SET b=80911 WHERE a=23677;\nUPDATE t2 SET b=11469 WHERE a=23678;\nUPDATE t2 SET b=24121 WHERE a=23679;\nUPDATE t2 SET b=49265 WHERE a=23680;\nUPDATE t2 SET b=53918 WHERE a=23681;\nUPDATE t2 SET b=58409 WHERE a=23682;\nUPDATE t2 SET b=74890 WHERE a=23683;\nUPDATE t2 SET b=40426 WHERE a=23684;\nUPDATE t2 SET b=53187 WHERE a=23685;\nUPDATE t2 SET b=44005 WHERE a=23686;\nUPDATE t2 SET b=11482 WHERE a=23687;\nUPDATE t2 SET b=9854 WHERE a=23688;\nUPDATE t2 SET b=56099 WHERE a=23689;\nUPDATE t2 SET b=39466 WHERE a=23690;\nUPDATE t2 SET b=12953 WHERE a=23691;\nUPDATE t2 SET b=30263 WHERE a=23692;\nUPDATE t2 SET b=93837 WHERE a=23693;\nUPDATE t2 SET b=16097 WHERE a=23694;\nUPDATE t2 SET b=42872 WHERE a=23695;\nUPDATE t2 SET b=93196 WHERE a=23696;\nUPDATE t2 SET b=14433 WHERE a=23697;\nUPDATE t2 SET b=65647 WHERE a=23698;\nUPDATE t2 SET b=84884 WHERE a=23699;\nUPDATE t2 SET b=63873 WHERE a=23700;\nUPDATE t2 SET b=91877 WHERE a=23701;\nUPDATE t2 SET b=19360 WHERE a=23702;\nUPDATE t2 SET b=37734 WHERE a=23703;\nUPDATE t2 SET b=88906 WHERE a=23704;\nUPDATE t2 SET b=95613 WHERE a=23705;\nUPDATE t2 SET b=71545 WHERE a=23706;\nUPDATE t2 SET b=97186 WHERE a=23707;\nUPDATE t2 SET b=35863 WHERE a=23708;\nUPDATE t2 SET b=81904 WHERE a=23709;\nUPDATE t2 SET b=75563 WHERE a=23710;\nUPDATE t2 SET b=3942 WHERE a=23711;\nUPDATE t2 SET b=29790 WHERE a=23712;\nUPDATE t2 SET b=87898 WHERE a=23713;\nUPDATE t2 SET b=66946 WHERE a=23714;\nUPDATE t2 SET b=38911 WHERE a=23715;\nUPDATE t2 SET b=11446 WHERE a=23716;\nUPDATE t2 SET b=59351 WHERE a=23717;\nUPDATE t2 SET b=8713 WHERE a=23718;\nUPDATE t2 SET b=85507 WHERE a=23719;\nUPDATE t2 SET b=58300 WHERE a=23720;\nUPDATE t2 SET b=66809 WHERE a=23721;\nUPDATE t2 SET b=62039 WHERE a=23722;\nUPDATE t2 SET b=22561 WHERE a=23723;\nUPDATE t2 SET b=54528 WHERE a=23724;\nUPDATE t2 SET b=14359 WHERE a=23725;\nUPDATE t2 SET b=23630 WHERE a=23726;\nUPDATE t2 SET b=14023 WHERE a=23727;\nUPDATE t2 SET b=82239 WHERE a=23728;\nUPDATE t2 SET b=66037 WHERE a=23729;\nUPDATE t2 SET b=2557 WHERE a=23730;\nUPDATE t2 SET b=97493 WHERE a=23731;\nUPDATE t2 SET b=99044 WHERE a=23732;\nUPDATE t2 SET b=11947 WHERE a=23733;\nUPDATE t2 SET b=82592 WHERE a=23734;\nUPDATE t2 SET b=34985 WHERE a=23735;\nUPDATE t2 SET b=70334 WHERE a=23736;\nUPDATE t2 SET b=48068 WHERE a=23737;\nUPDATE t2 SET b=13335 WHERE a=23738;\nUPDATE t2 SET b=30040 WHERE a=23739;\nUPDATE t2 SET b=43882 WHERE a=23740;\nUPDATE t2 SET b=77202 WHERE a=23741;\nUPDATE t2 SET b=56926 WHERE a=23742;\nUPDATE t2 SET b=23260 WHERE a=23743;\nUPDATE t2 SET b=94345 WHERE a=23744;\nUPDATE t2 SET b=43829 WHERE a=23745;\nUPDATE t2 SET b=25274 WHERE a=23746;\nUPDATE t2 SET b=62267 WHERE a=23747;\nUPDATE t2 SET b=13313 WHERE a=23748;\nUPDATE t2 SET b=70491 WHERE a=23749;\nUPDATE t2 SET b=17460 WHERE a=23750;\nUPDATE t2 SET b=38313 WHERE a=23751;\nUPDATE t2 SET b=88545 WHERE a=23752;\nUPDATE t2 SET b=35491 WHERE a=23753;\nUPDATE t2 SET b=57498 WHERE a=23754;\nUPDATE t2 SET b=1810 WHERE a=23755;\nUPDATE t2 SET b=44455 WHERE a=23756;\nUPDATE t2 SET b=81985 WHERE a=23757;\nUPDATE t2 SET b=37912 WHERE a=23758;\nUPDATE t2 SET b=3770 WHERE a=23759;\nUPDATE t2 SET b=5086 WHERE a=23760;\nUPDATE t2 SET b=25768 WHERE a=23761;\nUPDATE t2 SET b=88880 WHERE a=23762;\nUPDATE t2 SET b=35535 WHERE a=23763;\nUPDATE t2 SET b=75468 WHERE a=23764;\nUPDATE t2 SET b=9663 WHERE a=23765;\nUPDATE t2 SET b=58094 WHERE a=23766;\nUPDATE t2 SET b=96522 WHERE a=23767;\nUPDATE t2 SET b=5871 WHERE a=23768;\nUPDATE t2 SET b=66534 WHERE a=23769;\nUPDATE t2 SET b=78650 WHERE a=23770;\nUPDATE t2 SET b=945 WHERE a=23771;\nUPDATE t2 SET b=77493 WHERE a=23772;\nUPDATE t2 SET b=99023 WHERE a=23773;\nUPDATE t2 SET b=56551 WHERE a=23774;\nUPDATE t2 SET b=53735 WHERE a=23775;\nUPDATE t2 SET b=53956 WHERE a=23776;\nUPDATE t2 SET b=36749 WHERE a=23777;\nUPDATE t2 SET b=56016 WHERE a=23778;\nUPDATE t2 SET b=110 WHERE a=23779;\nUPDATE t2 SET b=22492 WHERE a=23780;\nUPDATE t2 SET b=12110 WHERE a=23781;\nUPDATE t2 SET b=33927 WHERE a=23782;\nUPDATE t2 SET b=43076 WHERE a=23783;\nUPDATE t2 SET b=92171 WHERE a=23784;\nUPDATE t2 SET b=93309 WHERE a=23785;\nUPDATE t2 SET b=49529 WHERE a=23786;\nUPDATE t2 SET b=77945 WHERE a=23787;\nUPDATE t2 SET b=24960 WHERE a=23788;\nUPDATE t2 SET b=6460 WHERE a=23789;\nUPDATE t2 SET b=94348 WHERE a=23790;\nUPDATE t2 SET b=21306 WHERE a=23791;\nUPDATE t2 SET b=72014 WHERE a=23792;\nUPDATE t2 SET b=96175 WHERE a=23793;\nUPDATE t2 SET b=81603 WHERE a=23794;\nUPDATE t2 SET b=41230 WHERE a=23795;\nUPDATE t2 SET b=87930 WHERE a=23796;\nUPDATE t2 SET b=34929 WHERE a=23797;\nUPDATE t2 SET b=93287 WHERE a=23798;\nUPDATE t2 SET b=92343 WHERE a=23799;\nUPDATE t2 SET b=12646 WHERE a=23800;\nUPDATE t2 SET b=39140 WHERE a=23801;\nUPDATE t2 SET b=85609 WHERE a=23802;\nUPDATE t2 SET b=3348 WHERE a=23803;\nUPDATE t2 SET b=10408 WHERE a=23804;\nUPDATE t2 SET b=78466 WHERE a=23805;\nUPDATE t2 SET b=4458 WHERE a=23806;\nUPDATE t2 SET b=46140 WHERE a=23807;\nUPDATE t2 SET b=50 WHERE a=23808;\nUPDATE t2 SET b=3350 WHERE a=23809;\nUPDATE t2 SET b=88253 WHERE a=23810;\nUPDATE t2 SET b=277 WHERE a=23811;\nUPDATE t2 SET b=63411 WHERE a=23812;\nUPDATE t2 SET b=85009 WHERE a=23813;\nUPDATE t2 SET b=74393 WHERE a=23814;\nUPDATE t2 SET b=71304 WHERE a=23815;\nUPDATE t2 SET b=94324 WHERE a=23816;\nUPDATE t2 SET b=89110 WHERE a=23817;\nUPDATE t2 SET b=42247 WHERE a=23818;\nUPDATE t2 SET b=80560 WHERE a=23819;\nUPDATE t2 SET b=40480 WHERE a=23820;\nUPDATE t2 SET b=76827 WHERE a=23821;\nUPDATE t2 SET b=79156 WHERE a=23822;\nUPDATE t2 SET b=15698 WHERE a=23823;\nUPDATE t2 SET b=96241 WHERE a=23824;\nUPDATE t2 SET b=31430 WHERE a=23825;\nUPDATE t2 SET b=42260 WHERE a=23826;\nUPDATE t2 SET b=57211 WHERE a=23827;\nUPDATE t2 SET b=93693 WHERE a=23828;\nUPDATE t2 SET b=80266 WHERE a=23829;\nUPDATE t2 SET b=43370 WHERE a=23830;\nUPDATE t2 SET b=4398 WHERE a=23831;\nUPDATE t2 SET b=74514 WHERE a=23832;\nUPDATE t2 SET b=2813 WHERE a=23833;\nUPDATE t2 SET b=21083 WHERE a=23834;\nUPDATE t2 SET b=53797 WHERE a=23835;\nUPDATE t2 SET b=47499 WHERE a=23836;\nUPDATE t2 SET b=39939 WHERE a=23837;\nUPDATE t2 SET b=97586 WHERE a=23838;\nUPDATE t2 SET b=71125 WHERE a=23839;\nUPDATE t2 SET b=74468 WHERE a=23840;\nUPDATE t2 SET b=32986 WHERE a=23841;\nUPDATE t2 SET b=63885 WHERE a=23842;\nUPDATE t2 SET b=49566 WHERE a=23843;\nUPDATE t2 SET b=67338 WHERE a=23844;\nUPDATE t2 SET b=78789 WHERE a=23845;\nUPDATE t2 SET b=62139 WHERE a=23846;\nUPDATE t2 SET b=48999 WHERE a=23847;\nUPDATE t2 SET b=82465 WHERE a=23848;\nUPDATE t2 SET b=64083 WHERE a=23849;\nUPDATE t2 SET b=56710 WHERE a=23850;\nUPDATE t2 SET b=3046 WHERE a=23851;\nUPDATE t2 SET b=53214 WHERE a=23852;\nUPDATE t2 SET b=59039 WHERE a=23853;\nUPDATE t2 SET b=70753 WHERE a=23854;\nUPDATE t2 SET b=16796 WHERE a=23855;\nUPDATE t2 SET b=26257 WHERE a=23856;\nUPDATE t2 SET b=70346 WHERE a=23857;\nUPDATE t2 SET b=76665 WHERE a=23858;\nUPDATE t2 SET b=11011 WHERE a=23859;\nUPDATE t2 SET b=3338 WHERE a=23860;\nUPDATE t2 SET b=60063 WHERE a=23861;\nUPDATE t2 SET b=92325 WHERE a=23862;\nUPDATE t2 SET b=73792 WHERE a=23863;\nUPDATE t2 SET b=21974 WHERE a=23864;\nUPDATE t2 SET b=70965 WHERE a=23865;\nUPDATE t2 SET b=73100 WHERE a=23866;\nUPDATE t2 SET b=99602 WHERE a=23867;\nUPDATE t2 SET b=7869 WHERE a=23868;\nUPDATE t2 SET b=91492 WHERE a=23869;\nUPDATE t2 SET b=72334 WHERE a=23870;\nUPDATE t2 SET b=72392 WHERE a=23871;\nUPDATE t2 SET b=84519 WHERE a=23872;\nUPDATE t2 SET b=96426 WHERE a=23873;\nUPDATE t2 SET b=42768 WHERE a=23874;\nUPDATE t2 SET b=15195 WHERE a=23875;\nUPDATE t2 SET b=52045 WHERE a=23876;\nUPDATE t2 SET b=52707 WHERE a=23877;\nUPDATE t2 SET b=8982 WHERE a=23878;\nUPDATE t2 SET b=43081 WHERE a=23879;\nUPDATE t2 SET b=84384 WHERE a=23880;\nUPDATE t2 SET b=29915 WHERE a=23881;\nUPDATE t2 SET b=26478 WHERE a=23882;\nUPDATE t2 SET b=20296 WHERE a=23883;\nUPDATE t2 SET b=9825 WHERE a=23884;\nUPDATE t2 SET b=81132 WHERE a=23885;\nUPDATE t2 SET b=56197 WHERE a=23886;\nUPDATE t2 SET b=61163 WHERE a=23887;\nUPDATE t2 SET b=92297 WHERE a=23888;\nUPDATE t2 SET b=95765 WHERE a=23889;\nUPDATE t2 SET b=72821 WHERE a=23890;\nUPDATE t2 SET b=66355 WHERE a=23891;\nUPDATE t2 SET b=31095 WHERE a=23892;\nUPDATE t2 SET b=86626 WHERE a=23893;\nUPDATE t2 SET b=58612 WHERE a=23894;\nUPDATE t2 SET b=37457 WHERE a=23895;\nUPDATE t2 SET b=70107 WHERE a=23896;\nUPDATE t2 SET b=20477 WHERE a=23897;\nUPDATE t2 SET b=92058 WHERE a=23898;\nUPDATE t2 SET b=6812 WHERE a=23899;\nUPDATE t2 SET b=18914 WHERE a=23900;\nUPDATE t2 SET b=3091 WHERE a=23901;\nUPDATE t2 SET b=71668 WHERE a=23902;\nUPDATE t2 SET b=93635 WHERE a=23903;\nUPDATE t2 SET b=93197 WHERE a=23904;\nUPDATE t2 SET b=10570 WHERE a=23905;\nUPDATE t2 SET b=94782 WHERE a=23906;\nUPDATE t2 SET b=90993 WHERE a=23907;\nUPDATE t2 SET b=69942 WHERE a=23908;\nUPDATE t2 SET b=46583 WHERE a=23909;\nUPDATE t2 SET b=92783 WHERE a=23910;\nUPDATE t2 SET b=82943 WHERE a=23911;\nUPDATE t2 SET b=27409 WHERE a=23912;\nUPDATE t2 SET b=16768 WHERE a=23913;\nUPDATE t2 SET b=68475 WHERE a=23914;\nUPDATE t2 SET b=46951 WHERE a=23915;\nUPDATE t2 SET b=31797 WHERE a=23916;\nUPDATE t2 SET b=82131 WHERE a=23917;\nUPDATE t2 SET b=43250 WHERE a=23918;\nUPDATE t2 SET b=7923 WHERE a=23919;\nUPDATE t2 SET b=46635 WHERE a=23920;\nUPDATE t2 SET b=8772 WHERE a=23921;\nUPDATE t2 SET b=92270 WHERE a=23922;\nUPDATE t2 SET b=52552 WHERE a=23923;\nUPDATE t2 SET b=47534 WHERE a=23924;\nUPDATE t2 SET b=67393 WHERE a=23925;\nUPDATE t2 SET b=64636 WHERE a=23926;\nUPDATE t2 SET b=37399 WHERE a=23927;\nUPDATE t2 SET b=23449 WHERE a=23928;\nUPDATE t2 SET b=27352 WHERE a=23929;\nUPDATE t2 SET b=12054 WHERE a=23930;\nUPDATE t2 SET b=38233 WHERE a=23931;\nUPDATE t2 SET b=11711 WHERE a=23932;\nUPDATE t2 SET b=57423 WHERE a=23933;\nUPDATE t2 SET b=33151 WHERE a=23934;\nUPDATE t2 SET b=62959 WHERE a=23935;\nUPDATE t2 SET b=45014 WHERE a=23936;\nUPDATE t2 SET b=84974 WHERE a=23937;\nUPDATE t2 SET b=48158 WHERE a=23938;\nUPDATE t2 SET b=42420 WHERE a=23939;\nUPDATE t2 SET b=48327 WHERE a=23940;\nUPDATE t2 SET b=90306 WHERE a=23941;\nUPDATE t2 SET b=27869 WHERE a=23942;\nUPDATE t2 SET b=70978 WHERE a=23943;\nUPDATE t2 SET b=26750 WHERE a=23944;\nUPDATE t2 SET b=73571 WHERE a=23945;\nUPDATE t2 SET b=71599 WHERE a=23946;\nUPDATE t2 SET b=92789 WHERE a=23947;\nUPDATE t2 SET b=80413 WHERE a=23948;\nUPDATE t2 SET b=90201 WHERE a=23949;\nUPDATE t2 SET b=18520 WHERE a=23950;\nUPDATE t2 SET b=91958 WHERE a=23951;\nUPDATE t2 SET b=33227 WHERE a=23952;\nUPDATE t2 SET b=65963 WHERE a=23953;\nUPDATE t2 SET b=93138 WHERE a=23954;\nUPDATE t2 SET b=3279 WHERE a=23955;\nUPDATE t2 SET b=52966 WHERE a=23956;\nUPDATE t2 SET b=2557 WHERE a=23957;\nUPDATE t2 SET b=25743 WHERE a=23958;\nUPDATE t2 SET b=2640 WHERE a=23959;\nUPDATE t2 SET b=63308 WHERE a=23960;\nUPDATE t2 SET b=39718 WHERE a=23961;\nUPDATE t2 SET b=5903 WHERE a=23962;\nUPDATE t2 SET b=35964 WHERE a=23963;\nUPDATE t2 SET b=6682 WHERE a=23964;\nUPDATE t2 SET b=60598 WHERE a=23965;\nUPDATE t2 SET b=96610 WHERE a=23966;\nUPDATE t2 SET b=67266 WHERE a=23967;\nUPDATE t2 SET b=48253 WHERE a=23968;\nUPDATE t2 SET b=69086 WHERE a=23969;\nUPDATE t2 SET b=95 WHERE a=23970;\nUPDATE t2 SET b=99551 WHERE a=23971;\nUPDATE t2 SET b=53391 WHERE a=23972;\nUPDATE t2 SET b=94695 WHERE a=23973;\nUPDATE t2 SET b=14819 WHERE a=23974;\nUPDATE t2 SET b=3566 WHERE a=23975;\nUPDATE t2 SET b=49396 WHERE a=23976;\nUPDATE t2 SET b=29331 WHERE a=23977;\nUPDATE t2 SET b=3670 WHERE a=23978;\nUPDATE t2 SET b=62397 WHERE a=23979;\nUPDATE t2 SET b=32284 WHERE a=23980;\nUPDATE t2 SET b=67400 WHERE a=23981;\nUPDATE t2 SET b=17125 WHERE a=23982;\nUPDATE t2 SET b=6054 WHERE a=23983;\nUPDATE t2 SET b=57421 WHERE a=23984;\nUPDATE t2 SET b=62135 WHERE a=23985;\nUPDATE t2 SET b=1420 WHERE a=23986;\nUPDATE t2 SET b=93066 WHERE a=23987;\nUPDATE t2 SET b=17811 WHERE a=23988;\nUPDATE t2 SET b=4684 WHERE a=23989;\nUPDATE t2 SET b=34537 WHERE a=23990;\nUPDATE t2 SET b=72593 WHERE a=23991;\nUPDATE t2 SET b=20702 WHERE a=23992;\nUPDATE t2 SET b=21499 WHERE a=23993;\nUPDATE t2 SET b=49323 WHERE a=23994;\nUPDATE t2 SET b=85818 WHERE a=23995;\nUPDATE t2 SET b=12090 WHERE a=23996;\nUPDATE t2 SET b=16287 WHERE a=23997;\nUPDATE t2 SET b=41871 WHERE a=23998;\nUPDATE t2 SET b=4106 WHERE a=23999;\nUPDATE t2 SET b=43013 WHERE a=24000;\nUPDATE t2 SET b=19636 WHERE a=24001;\nUPDATE t2 SET b=25150 WHERE a=24002;\nUPDATE t2 SET b=4003 WHERE a=24003;\nUPDATE t2 SET b=49511 WHERE a=24004;\nUPDATE t2 SET b=44575 WHERE a=24005;\nUPDATE t2 SET b=36718 WHERE a=24006;\nUPDATE t2 SET b=3598 WHERE a=24007;\nUPDATE t2 SET b=27840 WHERE a=24008;\nUPDATE t2 SET b=62719 WHERE a=24009;\nUPDATE t2 SET b=57307 WHERE a=24010;\nUPDATE t2 SET b=16066 WHERE a=24011;\nUPDATE t2 SET b=41375 WHERE a=24012;\nUPDATE t2 SET b=70842 WHERE a=24013;\nUPDATE t2 SET b=29032 WHERE a=24014;\nUPDATE t2 SET b=59464 WHERE a=24015;\nUPDATE t2 SET b=70149 WHERE a=24016;\nUPDATE t2 SET b=86560 WHERE a=24017;\nUPDATE t2 SET b=63174 WHERE a=24018;\nUPDATE t2 SET b=65423 WHERE a=24019;\nUPDATE t2 SET b=7366 WHERE a=24020;\nUPDATE t2 SET b=45046 WHERE a=24021;\nUPDATE t2 SET b=42311 WHERE a=24022;\nUPDATE t2 SET b=77154 WHERE a=24023;\nUPDATE t2 SET b=83803 WHERE a=24024;\nUPDATE t2 SET b=21476 WHERE a=24025;\nUPDATE t2 SET b=828 WHERE a=24026;\nUPDATE t2 SET b=59703 WHERE a=24027;\nUPDATE t2 SET b=90297 WHERE a=24028;\nUPDATE t2 SET b=29442 WHERE a=24029;\nUPDATE t2 SET b=37 WHERE a=24030;\nUPDATE t2 SET b=30746 WHERE a=24031;\nUPDATE t2 SET b=93740 WHERE a=24032;\nUPDATE t2 SET b=70937 WHERE a=24033;\nUPDATE t2 SET b=74502 WHERE a=24034;\nUPDATE t2 SET b=92893 WHERE a=24035;\nUPDATE t2 SET b=17281 WHERE a=24036;\nUPDATE t2 SET b=38676 WHERE a=24037;\nUPDATE t2 SET b=84448 WHERE a=24038;\nUPDATE t2 SET b=58215 WHERE a=24039;\nUPDATE t2 SET b=32264 WHERE a=24040;\nUPDATE t2 SET b=68402 WHERE a=24041;\nUPDATE t2 SET b=75872 WHERE a=24042;\nUPDATE t2 SET b=76615 WHERE a=24043;\nUPDATE t2 SET b=18794 WHERE a=24044;\nUPDATE t2 SET b=78853 WHERE a=24045;\nUPDATE t2 SET b=81892 WHERE a=24046;\nUPDATE t2 SET b=83339 WHERE a=24047;\nUPDATE t2 SET b=4025 WHERE a=24048;\nUPDATE t2 SET b=16451 WHERE a=24049;\nUPDATE t2 SET b=65846 WHERE a=24050;\nUPDATE t2 SET b=82042 WHERE a=24051;\nUPDATE t2 SET b=4294 WHERE a=24052;\nUPDATE t2 SET b=24149 WHERE a=24053;\nUPDATE t2 SET b=29931 WHERE a=24054;\nUPDATE t2 SET b=43808 WHERE a=24055;\nUPDATE t2 SET b=15912 WHERE a=24056;\nUPDATE t2 SET b=35138 WHERE a=24057;\nUPDATE t2 SET b=19427 WHERE a=24058;\nUPDATE t2 SET b=48758 WHERE a=24059;\nUPDATE t2 SET b=28179 WHERE a=24060;\nUPDATE t2 SET b=94185 WHERE a=24061;\nUPDATE t2 SET b=22866 WHERE a=24062;\nUPDATE t2 SET b=96916 WHERE a=24063;\nUPDATE t2 SET b=20040 WHERE a=24064;\nUPDATE t2 SET b=94431 WHERE a=24065;\nUPDATE t2 SET b=73823 WHERE a=24066;\nUPDATE t2 SET b=21297 WHERE a=24067;\nUPDATE t2 SET b=24374 WHERE a=24068;\nUPDATE t2 SET b=74507 WHERE a=24069;\nUPDATE t2 SET b=71370 WHERE a=24070;\nUPDATE t2 SET b=10175 WHERE a=24071;\nUPDATE t2 SET b=30118 WHERE a=24072;\nUPDATE t2 SET b=83836 WHERE a=24073;\nUPDATE t2 SET b=45092 WHERE a=24074;\nUPDATE t2 SET b=54701 WHERE a=24075;\nUPDATE t2 SET b=34645 WHERE a=24076;\nUPDATE t2 SET b=42355 WHERE a=24077;\nUPDATE t2 SET b=62683 WHERE a=24078;\nUPDATE t2 SET b=7769 WHERE a=24079;\nUPDATE t2 SET b=17907 WHERE a=24080;\nUPDATE t2 SET b=96226 WHERE a=24081;\nUPDATE t2 SET b=20635 WHERE a=24082;\nUPDATE t2 SET b=52887 WHERE a=24083;\nUPDATE t2 SET b=76154 WHERE a=24084;\nUPDATE t2 SET b=44709 WHERE a=24085;\nUPDATE t2 SET b=86889 WHERE a=24086;\nUPDATE t2 SET b=74752 WHERE a=24087;\nUPDATE t2 SET b=75090 WHERE a=24088;\nUPDATE t2 SET b=20162 WHERE a=24089;\nUPDATE t2 SET b=79370 WHERE a=24090;\nUPDATE t2 SET b=89269 WHERE a=24091;\nUPDATE t2 SET b=14617 WHERE a=24092;\nUPDATE t2 SET b=66869 WHERE a=24093;\nUPDATE t2 SET b=99067 WHERE a=24094;\nUPDATE t2 SET b=12857 WHERE a=24095;\nUPDATE t2 SET b=96561 WHERE a=24096;\nUPDATE t2 SET b=36323 WHERE a=24097;\nUPDATE t2 SET b=71112 WHERE a=24098;\nUPDATE t2 SET b=80698 WHERE a=24099;\nUPDATE t2 SET b=69981 WHERE a=24100;\nUPDATE t2 SET b=7553 WHERE a=24101;\nUPDATE t2 SET b=31776 WHERE a=24102;\nUPDATE t2 SET b=73899 WHERE a=24103;\nUPDATE t2 SET b=14177 WHERE a=24104;\nUPDATE t2 SET b=59237 WHERE a=24105;\nUPDATE t2 SET b=98251 WHERE a=24106;\nUPDATE t2 SET b=2698 WHERE a=24107;\nUPDATE t2 SET b=84194 WHERE a=24108;\nUPDATE t2 SET b=62293 WHERE a=24109;\nUPDATE t2 SET b=30852 WHERE a=24110;\nUPDATE t2 SET b=34556 WHERE a=24111;\nUPDATE t2 SET b=49945 WHERE a=24112;\nUPDATE t2 SET b=53859 WHERE a=24113;\nUPDATE t2 SET b=13611 WHERE a=24114;\nUPDATE t2 SET b=50245 WHERE a=24115;\nUPDATE t2 SET b=90331 WHERE a=24116;\nUPDATE t2 SET b=73599 WHERE a=24117;\nUPDATE t2 SET b=1455 WHERE a=24118;\nUPDATE t2 SET b=65657 WHERE a=24119;\nUPDATE t2 SET b=64669 WHERE a=24120;\nUPDATE t2 SET b=12610 WHERE a=24121;\nUPDATE t2 SET b=66435 WHERE a=24122;\nUPDATE t2 SET b=83285 WHERE a=24123;\nUPDATE t2 SET b=62540 WHERE a=24124;\nUPDATE t2 SET b=54956 WHERE a=24125;\nUPDATE t2 SET b=82087 WHERE a=24126;\nUPDATE t2 SET b=39159 WHERE a=24127;\nUPDATE t2 SET b=53195 WHERE a=24128;\nUPDATE t2 SET b=98498 WHERE a=24129;\nUPDATE t2 SET b=69273 WHERE a=24130;\nUPDATE t2 SET b=72288 WHERE a=24131;\nUPDATE t2 SET b=65498 WHERE a=24132;\nUPDATE t2 SET b=11569 WHERE a=24133;\nUPDATE t2 SET b=92463 WHERE a=24134;\nUPDATE t2 SET b=84253 WHERE a=24135;\nUPDATE t2 SET b=18414 WHERE a=24136;\nUPDATE t2 SET b=21419 WHERE a=24137;\nUPDATE t2 SET b=16838 WHERE a=24138;\nUPDATE t2 SET b=66665 WHERE a=24139;\nUPDATE t2 SET b=4735 WHERE a=24140;\nUPDATE t2 SET b=50438 WHERE a=24141;\nUPDATE t2 SET b=21904 WHERE a=24142;\nUPDATE t2 SET b=18388 WHERE a=24143;\nUPDATE t2 SET b=75426 WHERE a=24144;\nUPDATE t2 SET b=3090 WHERE a=24145;\nUPDATE t2 SET b=86423 WHERE a=24146;\nUPDATE t2 SET b=57429 WHERE a=24147;\nUPDATE t2 SET b=58294 WHERE a=24148;\nUPDATE t2 SET b=36522 WHERE a=24149;\nUPDATE t2 SET b=43097 WHERE a=24150;\nUPDATE t2 SET b=92330 WHERE a=24151;\nUPDATE t2 SET b=79385 WHERE a=24152;\nUPDATE t2 SET b=74785 WHERE a=24153;\nUPDATE t2 SET b=3327 WHERE a=24154;\nUPDATE t2 SET b=29796 WHERE a=24155;\nUPDATE t2 SET b=79823 WHERE a=24156;\nUPDATE t2 SET b=61479 WHERE a=24157;\nUPDATE t2 SET b=57969 WHERE a=24158;\nUPDATE t2 SET b=15967 WHERE a=24159;\nUPDATE t2 SET b=93227 WHERE a=24160;\nUPDATE t2 SET b=49210 WHERE a=24161;\nUPDATE t2 SET b=94198 WHERE a=24162;\nUPDATE t2 SET b=11996 WHERE a=24163;\nUPDATE t2 SET b=19324 WHERE a=24164;\nUPDATE t2 SET b=72022 WHERE a=24165;\nUPDATE t2 SET b=71465 WHERE a=24166;\nUPDATE t2 SET b=26829 WHERE a=24167;\nUPDATE t2 SET b=42936 WHERE a=24168;\nUPDATE t2 SET b=37881 WHERE a=24169;\nUPDATE t2 SET b=3056 WHERE a=24170;\nUPDATE t2 SET b=33666 WHERE a=24171;\nUPDATE t2 SET b=62484 WHERE a=24172;\nUPDATE t2 SET b=16168 WHERE a=24173;\nUPDATE t2 SET b=88228 WHERE a=24174;\nUPDATE t2 SET b=5821 WHERE a=24175;\nUPDATE t2 SET b=80006 WHERE a=24176;\nUPDATE t2 SET b=59482 WHERE a=24177;\nUPDATE t2 SET b=28908 WHERE a=24178;\nUPDATE t2 SET b=65583 WHERE a=24179;\nUPDATE t2 SET b=74224 WHERE a=24180;\nUPDATE t2 SET b=83007 WHERE a=24181;\nUPDATE t2 SET b=99455 WHERE a=24182;\nUPDATE t2 SET b=57557 WHERE a=24183;\nUPDATE t2 SET b=16013 WHERE a=24184;\nUPDATE t2 SET b=4448 WHERE a=24185;\nUPDATE t2 SET b=47366 WHERE a=24186;\nUPDATE t2 SET b=4133 WHERE a=24187;\nUPDATE t2 SET b=44344 WHERE a=24188;\nUPDATE t2 SET b=67268 WHERE a=24189;\nUPDATE t2 SET b=91789 WHERE a=24190;\nUPDATE t2 SET b=84432 WHERE a=24191;\nUPDATE t2 SET b=54414 WHERE a=24192;\nUPDATE t2 SET b=81243 WHERE a=24193;\nUPDATE t2 SET b=99112 WHERE a=24194;\nUPDATE t2 SET b=39056 WHERE a=24195;\nUPDATE t2 SET b=10101 WHERE a=24196;\nUPDATE t2 SET b=65251 WHERE a=24197;\nUPDATE t2 SET b=40999 WHERE a=24198;\nUPDATE t2 SET b=1521 WHERE a=24199;\nUPDATE t2 SET b=27080 WHERE a=24200;\nUPDATE t2 SET b=1764 WHERE a=24201;\nUPDATE t2 SET b=10171 WHERE a=24202;\nUPDATE t2 SET b=92850 WHERE a=24203;\nUPDATE t2 SET b=60956 WHERE a=24204;\nUPDATE t2 SET b=40071 WHERE a=24205;\nUPDATE t2 SET b=11718 WHERE a=24206;\nUPDATE t2 SET b=36149 WHERE a=24207;\nUPDATE t2 SET b=99187 WHERE a=24208;\nUPDATE t2 SET b=3554 WHERE a=24209;\nUPDATE t2 SET b=2294 WHERE a=24210;\nUPDATE t2 SET b=29515 WHERE a=24211;\nUPDATE t2 SET b=82406 WHERE a=24212;\nUPDATE t2 SET b=92586 WHERE a=24213;\nUPDATE t2 SET b=94855 WHERE a=24214;\nUPDATE t2 SET b=1873 WHERE a=24215;\nUPDATE t2 SET b=21714 WHERE a=24216;\nUPDATE t2 SET b=41416 WHERE a=24217;\nUPDATE t2 SET b=8097 WHERE a=24218;\nUPDATE t2 SET b=4927 WHERE a=24219;\nUPDATE t2 SET b=58949 WHERE a=24220;\nUPDATE t2 SET b=49495 WHERE a=24221;\nUPDATE t2 SET b=54647 WHERE a=24222;\nUPDATE t2 SET b=51229 WHERE a=24223;\nUPDATE t2 SET b=27291 WHERE a=24224;\nUPDATE t2 SET b=36198 WHERE a=24225;\nUPDATE t2 SET b=9901 WHERE a=24226;\nUPDATE t2 SET b=65395 WHERE a=24227;\nUPDATE t2 SET b=63362 WHERE a=24228;\nUPDATE t2 SET b=47127 WHERE a=24229;\nUPDATE t2 SET b=6868 WHERE a=24230;\nUPDATE t2 SET b=35372 WHERE a=24231;\nUPDATE t2 SET b=91497 WHERE a=24232;\nUPDATE t2 SET b=41082 WHERE a=24233;\nUPDATE t2 SET b=24643 WHERE a=24234;\nUPDATE t2 SET b=817 WHERE a=24235;\nUPDATE t2 SET b=95652 WHERE a=24236;\nUPDATE t2 SET b=95048 WHERE a=24237;\nUPDATE t2 SET b=67256 WHERE a=24238;\nUPDATE t2 SET b=44591 WHERE a=24239;\nUPDATE t2 SET b=12886 WHERE a=24240;\nUPDATE t2 SET b=21180 WHERE a=24241;\nUPDATE t2 SET b=5352 WHERE a=24242;\nUPDATE t2 SET b=93595 WHERE a=24243;\nUPDATE t2 SET b=17542 WHERE a=24244;\nUPDATE t2 SET b=96784 WHERE a=24245;\nUPDATE t2 SET b=73203 WHERE a=24246;\nUPDATE t2 SET b=72052 WHERE a=24247;\nUPDATE t2 SET b=75518 WHERE a=24248;\nUPDATE t2 SET b=91692 WHERE a=24249;\nUPDATE t2 SET b=34493 WHERE a=24250;\nUPDATE t2 SET b=98746 WHERE a=24251;\nUPDATE t2 SET b=2743 WHERE a=24252;\nUPDATE t2 SET b=14009 WHERE a=24253;\nUPDATE t2 SET b=72737 WHERE a=24254;\nUPDATE t2 SET b=47788 WHERE a=24255;\nUPDATE t2 SET b=76284 WHERE a=24256;\nUPDATE t2 SET b=72267 WHERE a=24257;\nUPDATE t2 SET b=36513 WHERE a=24258;\nUPDATE t2 SET b=52757 WHERE a=24259;\nUPDATE t2 SET b=55505 WHERE a=24260;\nUPDATE t2 SET b=71681 WHERE a=24261;\nUPDATE t2 SET b=15465 WHERE a=24262;\nUPDATE t2 SET b=68659 WHERE a=24263;\nUPDATE t2 SET b=65140 WHERE a=24264;\nUPDATE t2 SET b=13754 WHERE a=24265;\nUPDATE t2 SET b=34094 WHERE a=24266;\nUPDATE t2 SET b=94542 WHERE a=24267;\nUPDATE t2 SET b=46369 WHERE a=24268;\nUPDATE t2 SET b=63075 WHERE a=24269;\nUPDATE t2 SET b=28909 WHERE a=24270;\nUPDATE t2 SET b=82356 WHERE a=24271;\nUPDATE t2 SET b=65786 WHERE a=24272;\nUPDATE t2 SET b=4316 WHERE a=24273;\nUPDATE t2 SET b=89243 WHERE a=24274;\nUPDATE t2 SET b=14971 WHERE a=24275;\nUPDATE t2 SET b=33812 WHERE a=24276;\nUPDATE t2 SET b=7662 WHERE a=24277;\nUPDATE t2 SET b=383 WHERE a=24278;\nUPDATE t2 SET b=94254 WHERE a=24279;\nUPDATE t2 SET b=57471 WHERE a=24280;\nUPDATE t2 SET b=34638 WHERE a=24281;\nUPDATE t2 SET b=4199 WHERE a=24282;\nUPDATE t2 SET b=3324 WHERE a=24283;\nUPDATE t2 SET b=44983 WHERE a=24284;\nUPDATE t2 SET b=26292 WHERE a=24285;\nUPDATE t2 SET b=27914 WHERE a=24286;\nUPDATE t2 SET b=41731 WHERE a=24287;\nUPDATE t2 SET b=79791 WHERE a=24288;\nUPDATE t2 SET b=13931 WHERE a=24289;\nUPDATE t2 SET b=73283 WHERE a=24290;\nUPDATE t2 SET b=72600 WHERE a=24291;\nUPDATE t2 SET b=67559 WHERE a=24292;\nUPDATE t2 SET b=82272 WHERE a=24293;\nUPDATE t2 SET b=29949 WHERE a=24294;\nUPDATE t2 SET b=65100 WHERE a=24295;\nUPDATE t2 SET b=72402 WHERE a=24296;\nUPDATE t2 SET b=96447 WHERE a=24297;\nUPDATE t2 SET b=98925 WHERE a=24298;\nUPDATE t2 SET b=33048 WHERE a=24299;\nUPDATE t2 SET b=7290 WHERE a=24300;\nUPDATE t2 SET b=73168 WHERE a=24301;\nUPDATE t2 SET b=7276 WHERE a=24302;\nUPDATE t2 SET b=88288 WHERE a=24303;\nUPDATE t2 SET b=2513 WHERE a=24304;\nUPDATE t2 SET b=97333 WHERE a=24305;\nUPDATE t2 SET b=16440 WHERE a=24306;\nUPDATE t2 SET b=44480 WHERE a=24307;\nUPDATE t2 SET b=48232 WHERE a=24308;\nUPDATE t2 SET b=69986 WHERE a=24309;\nUPDATE t2 SET b=7248 WHERE a=24310;\nUPDATE t2 SET b=2853 WHERE a=24311;\nUPDATE t2 SET b=37701 WHERE a=24312;\nUPDATE t2 SET b=23727 WHERE a=24313;\nUPDATE t2 SET b=58353 WHERE a=24314;\nUPDATE t2 SET b=18107 WHERE a=24315;\nUPDATE t2 SET b=8577 WHERE a=24316;\nUPDATE t2 SET b=99821 WHERE a=24317;\nUPDATE t2 SET b=11412 WHERE a=24318;\nUPDATE t2 SET b=81022 WHERE a=24319;\nUPDATE t2 SET b=3708 WHERE a=24320;\nUPDATE t2 SET b=55715 WHERE a=24321;\nUPDATE t2 SET b=89023 WHERE a=24322;\nUPDATE t2 SET b=79718 WHERE a=24323;\nUPDATE t2 SET b=20865 WHERE a=24324;\nUPDATE t2 SET b=59831 WHERE a=24325;\nUPDATE t2 SET b=69794 WHERE a=24326;\nUPDATE t2 SET b=73710 WHERE a=24327;\nUPDATE t2 SET b=43872 WHERE a=24328;\nUPDATE t2 SET b=16479 WHERE a=24329;\nUPDATE t2 SET b=33366 WHERE a=24330;\nUPDATE t2 SET b=8787 WHERE a=24331;\nUPDATE t2 SET b=88238 WHERE a=24332;\nUPDATE t2 SET b=95676 WHERE a=24333;\nUPDATE t2 SET b=84321 WHERE a=24334;\nUPDATE t2 SET b=5880 WHERE a=24335;\nUPDATE t2 SET b=91687 WHERE a=24336;\nUPDATE t2 SET b=1928 WHERE a=24337;\nUPDATE t2 SET b=52296 WHERE a=24338;\nUPDATE t2 SET b=46200 WHERE a=24339;\nUPDATE t2 SET b=28182 WHERE a=24340;\nUPDATE t2 SET b=91460 WHERE a=24341;\nUPDATE t2 SET b=75450 WHERE a=24342;\nUPDATE t2 SET b=93502 WHERE a=24343;\nUPDATE t2 SET b=60316 WHERE a=24344;\nUPDATE t2 SET b=75120 WHERE a=24345;\nUPDATE t2 SET b=55401 WHERE a=24346;\nUPDATE t2 SET b=26835 WHERE a=24347;\nUPDATE t2 SET b=65520 WHERE a=24348;\nUPDATE t2 SET b=11001 WHERE a=24349;\nUPDATE t2 SET b=68621 WHERE a=24350;\nUPDATE t2 SET b=72076 WHERE a=24351;\nUPDATE t2 SET b=80529 WHERE a=24352;\nUPDATE t2 SET b=42835 WHERE a=24353;\nUPDATE t2 SET b=12858 WHERE a=24354;\nUPDATE t2 SET b=43081 WHERE a=24355;\nUPDATE t2 SET b=5732 WHERE a=24356;\nUPDATE t2 SET b=2984 WHERE a=24357;\nUPDATE t2 SET b=99503 WHERE a=24358;\nUPDATE t2 SET b=82277 WHERE a=24359;\nUPDATE t2 SET b=12290 WHERE a=24360;\nUPDATE t2 SET b=25014 WHERE a=24361;\nUPDATE t2 SET b=75356 WHERE a=24362;\nUPDATE t2 SET b=66795 WHERE a=24363;\nUPDATE t2 SET b=38017 WHERE a=24364;\nUPDATE t2 SET b=236 WHERE a=24365;\nUPDATE t2 SET b=57651 WHERE a=24366;\nUPDATE t2 SET b=30321 WHERE a=24367;\nUPDATE t2 SET b=8845 WHERE a=24368;\nUPDATE t2 SET b=52893 WHERE a=24369;\nUPDATE t2 SET b=60891 WHERE a=24370;\nUPDATE t2 SET b=62751 WHERE a=24371;\nUPDATE t2 SET b=32486 WHERE a=24372;\nUPDATE t2 SET b=25138 WHERE a=24373;\nUPDATE t2 SET b=10408 WHERE a=24374;\nUPDATE t2 SET b=74324 WHERE a=24375;\nUPDATE t2 SET b=91143 WHERE a=24376;\nUPDATE t2 SET b=85306 WHERE a=24377;\nUPDATE t2 SET b=48004 WHERE a=24378;\nUPDATE t2 SET b=77479 WHERE a=24379;\nUPDATE t2 SET b=63928 WHERE a=24380;\nUPDATE t2 SET b=61772 WHERE a=24381;\nUPDATE t2 SET b=45270 WHERE a=24382;\nUPDATE t2 SET b=60212 WHERE a=24383;\nUPDATE t2 SET b=34720 WHERE a=24384;\nUPDATE t2 SET b=22309 WHERE a=24385;\nUPDATE t2 SET b=12185 WHERE a=24386;\nUPDATE t2 SET b=14741 WHERE a=24387;\nUPDATE t2 SET b=54874 WHERE a=24388;\nUPDATE t2 SET b=95784 WHERE a=24389;\nUPDATE t2 SET b=38340 WHERE a=24390;\nUPDATE t2 SET b=988 WHERE a=24391;\nUPDATE t2 SET b=92909 WHERE a=24392;\nUPDATE t2 SET b=1648 WHERE a=24393;\nUPDATE t2 SET b=96539 WHERE a=24394;\nUPDATE t2 SET b=74785 WHERE a=24395;\nUPDATE t2 SET b=4299 WHERE a=24396;\nUPDATE t2 SET b=12483 WHERE a=24397;\nUPDATE t2 SET b=72889 WHERE a=24398;\nUPDATE t2 SET b=78607 WHERE a=24399;\nUPDATE t2 SET b=47100 WHERE a=24400;\nUPDATE t2 SET b=69593 WHERE a=24401;\nUPDATE t2 SET b=6365 WHERE a=24402;\nUPDATE t2 SET b=61793 WHERE a=24403;\nUPDATE t2 SET b=72276 WHERE a=24404;\nUPDATE t2 SET b=41603 WHERE a=24405;\nUPDATE t2 SET b=96343 WHERE a=24406;\nUPDATE t2 SET b=78672 WHERE a=24407;\nUPDATE t2 SET b=59126 WHERE a=24408;\nUPDATE t2 SET b=22280 WHERE a=24409;\nUPDATE t2 SET b=74890 WHERE a=24410;\nUPDATE t2 SET b=60122 WHERE a=24411;\nUPDATE t2 SET b=10892 WHERE a=24412;\nUPDATE t2 SET b=40170 WHERE a=24413;\nUPDATE t2 SET b=90293 WHERE a=24414;\nUPDATE t2 SET b=55593 WHERE a=24415;\nUPDATE t2 SET b=54123 WHERE a=24416;\nUPDATE t2 SET b=40055 WHERE a=24417;\nUPDATE t2 SET b=65905 WHERE a=24418;\nUPDATE t2 SET b=58193 WHERE a=24419;\nUPDATE t2 SET b=72235 WHERE a=24420;\nUPDATE t2 SET b=6046 WHERE a=24421;\nUPDATE t2 SET b=38061 WHERE a=24422;\nUPDATE t2 SET b=90627 WHERE a=24423;\nUPDATE t2 SET b=10805 WHERE a=24424;\nUPDATE t2 SET b=78416 WHERE a=24425;\nUPDATE t2 SET b=86678 WHERE a=24426;\nUPDATE t2 SET b=143 WHERE a=24427;\nUPDATE t2 SET b=6461 WHERE a=24428;\nUPDATE t2 SET b=58811 WHERE a=24429;\nUPDATE t2 SET b=21280 WHERE a=24430;\nUPDATE t2 SET b=1238 WHERE a=24431;\nUPDATE t2 SET b=88887 WHERE a=24432;\nUPDATE t2 SET b=86566 WHERE a=24433;\nUPDATE t2 SET b=32181 WHERE a=24434;\nUPDATE t2 SET b=69646 WHERE a=24435;\nUPDATE t2 SET b=74428 WHERE a=24436;\nUPDATE t2 SET b=74576 WHERE a=24437;\nUPDATE t2 SET b=24353 WHERE a=24438;\nUPDATE t2 SET b=59935 WHERE a=24439;\nUPDATE t2 SET b=96184 WHERE a=24440;\nUPDATE t2 SET b=96984 WHERE a=24441;\nUPDATE t2 SET b=66451 WHERE a=24442;\nUPDATE t2 SET b=27836 WHERE a=24443;\nUPDATE t2 SET b=26042 WHERE a=24444;\nUPDATE t2 SET b=48205 WHERE a=24445;\nUPDATE t2 SET b=91442 WHERE a=24446;\nUPDATE t2 SET b=5743 WHERE a=24447;\nUPDATE t2 SET b=82319 WHERE a=24448;\nUPDATE t2 SET b=88881 WHERE a=24449;\nUPDATE t2 SET b=49633 WHERE a=24450;\nUPDATE t2 SET b=59967 WHERE a=24451;\nUPDATE t2 SET b=70236 WHERE a=24452;\nUPDATE t2 SET b=30948 WHERE a=24453;\nUPDATE t2 SET b=47033 WHERE a=24454;\nUPDATE t2 SET b=66375 WHERE a=24455;\nUPDATE t2 SET b=32406 WHERE a=24456;\nUPDATE t2 SET b=28493 WHERE a=24457;\nUPDATE t2 SET b=4843 WHERE a=24458;\nUPDATE t2 SET b=93391 WHERE a=24459;\nUPDATE t2 SET b=95795 WHERE a=24460;\nUPDATE t2 SET b=77945 WHERE a=24461;\nUPDATE t2 SET b=83304 WHERE a=24462;\nUPDATE t2 SET b=90599 WHERE a=24463;\nUPDATE t2 SET b=6048 WHERE a=24464;\nUPDATE t2 SET b=9494 WHERE a=24465;\nUPDATE t2 SET b=97853 WHERE a=24466;\nUPDATE t2 SET b=79908 WHERE a=24467;\nUPDATE t2 SET b=34611 WHERE a=24468;\nUPDATE t2 SET b=45483 WHERE a=24469;\nUPDATE t2 SET b=89121 WHERE a=24470;\nUPDATE t2 SET b=53544 WHERE a=24471;\nUPDATE t2 SET b=23840 WHERE a=24472;\nUPDATE t2 SET b=56926 WHERE a=24473;\nUPDATE t2 SET b=67324 WHERE a=24474;\nUPDATE t2 SET b=16594 WHERE a=24475;\nUPDATE t2 SET b=38931 WHERE a=24476;\nUPDATE t2 SET b=86916 WHERE a=24477;\nUPDATE t2 SET b=37232 WHERE a=24478;\nUPDATE t2 SET b=2415 WHERE a=24479;\nUPDATE t2 SET b=45009 WHERE a=24480;\nUPDATE t2 SET b=47952 WHERE a=24481;\nUPDATE t2 SET b=62258 WHERE a=24482;\nUPDATE t2 SET b=94443 WHERE a=24483;\nUPDATE t2 SET b=89651 WHERE a=24484;\nUPDATE t2 SET b=85559 WHERE a=24485;\nUPDATE t2 SET b=39865 WHERE a=24486;\nUPDATE t2 SET b=19413 WHERE a=24487;\nUPDATE t2 SET b=1130 WHERE a=24488;\nUPDATE t2 SET b=61040 WHERE a=24489;\nUPDATE t2 SET b=44714 WHERE a=24490;\nUPDATE t2 SET b=30857 WHERE a=24491;\nUPDATE t2 SET b=24262 WHERE a=24492;\nUPDATE t2 SET b=41080 WHERE a=24493;\nUPDATE t2 SET b=68931 WHERE a=24494;\nUPDATE t2 SET b=64 WHERE a=24495;\nUPDATE t2 SET b=97667 WHERE a=24496;\nUPDATE t2 SET b=99547 WHERE a=24497;\nUPDATE t2 SET b=31487 WHERE a=24498;\nUPDATE t2 SET b=56569 WHERE a=24499;\nUPDATE t2 SET b=7624 WHERE a=24500;\nUPDATE t2 SET b=97416 WHERE a=24501;\nUPDATE t2 SET b=38295 WHERE a=24502;\nUPDATE t2 SET b=99405 WHERE a=24503;\nUPDATE t2 SET b=79366 WHERE a=24504;\nUPDATE t2 SET b=27421 WHERE a=24505;\nUPDATE t2 SET b=26481 WHERE a=24506;\nUPDATE t2 SET b=44047 WHERE a=24507;\nUPDATE t2 SET b=90917 WHERE a=24508;\nUPDATE t2 SET b=56191 WHERE a=24509;\nUPDATE t2 SET b=68219 WHERE a=24510;\nUPDATE t2 SET b=64184 WHERE a=24511;\nUPDATE t2 SET b=69087 WHERE a=24512;\nUPDATE t2 SET b=8320 WHERE a=24513;\nUPDATE t2 SET b=14332 WHERE a=24514;\nUPDATE t2 SET b=71361 WHERE a=24515;\nUPDATE t2 SET b=3098 WHERE a=24516;\nUPDATE t2 SET b=95012 WHERE a=24517;\nUPDATE t2 SET b=50484 WHERE a=24518;\nUPDATE t2 SET b=97214 WHERE a=24519;\nUPDATE t2 SET b=41393 WHERE a=24520;\nUPDATE t2 SET b=71994 WHERE a=24521;\nUPDATE t2 SET b=33574 WHERE a=24522;\nUPDATE t2 SET b=1633 WHERE a=24523;\nUPDATE t2 SET b=44757 WHERE a=24524;\nUPDATE t2 SET b=69873 WHERE a=24525;\nUPDATE t2 SET b=92193 WHERE a=24526;\nUPDATE t2 SET b=32834 WHERE a=24527;\nUPDATE t2 SET b=70537 WHERE a=24528;\nUPDATE t2 SET b=20230 WHERE a=24529;\nUPDATE t2 SET b=68637 WHERE a=24530;\nUPDATE t2 SET b=4004 WHERE a=24531;\nUPDATE t2 SET b=18286 WHERE a=24532;\nUPDATE t2 SET b=30755 WHERE a=24533;\nUPDATE t2 SET b=58859 WHERE a=24534;\nUPDATE t2 SET b=53328 WHERE a=24535;\nUPDATE t2 SET b=57526 WHERE a=24536;\nUPDATE t2 SET b=39948 WHERE a=24537;\nUPDATE t2 SET b=59704 WHERE a=24538;\nUPDATE t2 SET b=9868 WHERE a=24539;\nUPDATE t2 SET b=85245 WHERE a=24540;\nUPDATE t2 SET b=81593 WHERE a=24541;\nUPDATE t2 SET b=99940 WHERE a=24542;\nUPDATE t2 SET b=38660 WHERE a=24543;\nUPDATE t2 SET b=93232 WHERE a=24544;\nUPDATE t2 SET b=46221 WHERE a=24545;\nUPDATE t2 SET b=18283 WHERE a=24546;\nUPDATE t2 SET b=28734 WHERE a=24547;\nUPDATE t2 SET b=82620 WHERE a=24548;\nUPDATE t2 SET b=19917 WHERE a=24549;\nUPDATE t2 SET b=15164 WHERE a=24550;\nUPDATE t2 SET b=16432 WHERE a=24551;\nUPDATE t2 SET b=34516 WHERE a=24552;\nUPDATE t2 SET b=34406 WHERE a=24553;\nUPDATE t2 SET b=9258 WHERE a=24554;\nUPDATE t2 SET b=83079 WHERE a=24555;\nUPDATE t2 SET b=33590 WHERE a=24556;\nUPDATE t2 SET b=3891 WHERE a=24557;\nUPDATE t2 SET b=28337 WHERE a=24558;\nUPDATE t2 SET b=76551 WHERE a=24559;\nUPDATE t2 SET b=30053 WHERE a=24560;\nUPDATE t2 SET b=82826 WHERE a=24561;\nUPDATE t2 SET b=38999 WHERE a=24562;\nUPDATE t2 SET b=79269 WHERE a=24563;\nUPDATE t2 SET b=92299 WHERE a=24564;\nUPDATE t2 SET b=24392 WHERE a=24565;\nUPDATE t2 SET b=85383 WHERE a=24566;\nUPDATE t2 SET b=39549 WHERE a=24567;\nUPDATE t2 SET b=74162 WHERE a=24568;\nUPDATE t2 SET b=28735 WHERE a=24569;\nUPDATE t2 SET b=73329 WHERE a=24570;\nUPDATE t2 SET b=68547 WHERE a=24571;\nUPDATE t2 SET b=39595 WHERE a=24572;\nUPDATE t2 SET b=79796 WHERE a=24573;\nUPDATE t2 SET b=44039 WHERE a=24574;\nUPDATE t2 SET b=40746 WHERE a=24575;\nUPDATE t2 SET b=24689 WHERE a=24576;\nUPDATE t2 SET b=90000 WHERE a=24577;\nUPDATE t2 SET b=71642 WHERE a=24578;\nUPDATE t2 SET b=47823 WHERE a=24579;\nUPDATE t2 SET b=94945 WHERE a=24580;\nUPDATE t2 SET b=50027 WHERE a=24581;\nUPDATE t2 SET b=5790 WHERE a=24582;\nUPDATE t2 SET b=18413 WHERE a=24583;\nUPDATE t2 SET b=80939 WHERE a=24584;\nUPDATE t2 SET b=56374 WHERE a=24585;\nUPDATE t2 SET b=36383 WHERE a=24586;\nUPDATE t2 SET b=44267 WHERE a=24587;\nUPDATE t2 SET b=55390 WHERE a=24588;\nUPDATE t2 SET b=97258 WHERE a=24589;\nUPDATE t2 SET b=46120 WHERE a=24590;\nUPDATE t2 SET b=65385 WHERE a=24591;\nUPDATE t2 SET b=5282 WHERE a=24592;\nUPDATE t2 SET b=89247 WHERE a=24593;\nUPDATE t2 SET b=20755 WHERE a=24594;\nUPDATE t2 SET b=26900 WHERE a=24595;\nUPDATE t2 SET b=1157 WHERE a=24596;\nUPDATE t2 SET b=43851 WHERE a=24597;\nUPDATE t2 SET b=49127 WHERE a=24598;\nUPDATE t2 SET b=78374 WHERE a=24599;\nUPDATE t2 SET b=10009 WHERE a=24600;\nUPDATE t2 SET b=22974 WHERE a=24601;\nUPDATE t2 SET b=93779 WHERE a=24602;\nUPDATE t2 SET b=36429 WHERE a=24603;\nUPDATE t2 SET b=15067 WHERE a=24604;\nUPDATE t2 SET b=47079 WHERE a=24605;\nUPDATE t2 SET b=82939 WHERE a=24606;\nUPDATE t2 SET b=20839 WHERE a=24607;\nUPDATE t2 SET b=41434 WHERE a=24608;\nUPDATE t2 SET b=88551 WHERE a=24609;\nUPDATE t2 SET b=44201 WHERE a=24610;\nUPDATE t2 SET b=96744 WHERE a=24611;\nUPDATE t2 SET b=17367 WHERE a=24612;\nUPDATE t2 SET b=59821 WHERE a=24613;\nUPDATE t2 SET b=60560 WHERE a=24614;\nUPDATE t2 SET b=75370 WHERE a=24615;\nUPDATE t2 SET b=26481 WHERE a=24616;\nUPDATE t2 SET b=49841 WHERE a=24617;\nUPDATE t2 SET b=60404 WHERE a=24618;\nUPDATE t2 SET b=12762 WHERE a=24619;\nUPDATE t2 SET b=5865 WHERE a=24620;\nUPDATE t2 SET b=66958 WHERE a=24621;\nUPDATE t2 SET b=42515 WHERE a=24622;\nUPDATE t2 SET b=70552 WHERE a=24623;\nUPDATE t2 SET b=26851 WHERE a=24624;\nUPDATE t2 SET b=75261 WHERE a=24625;\nUPDATE t2 SET b=59336 WHERE a=24626;\nUPDATE t2 SET b=54165 WHERE a=24627;\nUPDATE t2 SET b=92515 WHERE a=24628;\nUPDATE t2 SET b=37969 WHERE a=24629;\nUPDATE t2 SET b=25180 WHERE a=24630;\nUPDATE t2 SET b=29214 WHERE a=24631;\nUPDATE t2 SET b=36951 WHERE a=24632;\nUPDATE t2 SET b=36308 WHERE a=24633;\nUPDATE t2 SET b=88948 WHERE a=24634;\nUPDATE t2 SET b=76650 WHERE a=24635;\nUPDATE t2 SET b=47537 WHERE a=24636;\nUPDATE t2 SET b=23036 WHERE a=24637;\nUPDATE t2 SET b=72868 WHERE a=24638;\nUPDATE t2 SET b=82555 WHERE a=24639;\nUPDATE t2 SET b=797 WHERE a=24640;\nUPDATE t2 SET b=38245 WHERE a=24641;\nUPDATE t2 SET b=81298 WHERE a=24642;\nUPDATE t2 SET b=30813 WHERE a=24643;\nUPDATE t2 SET b=79263 WHERE a=24644;\nUPDATE t2 SET b=61908 WHERE a=24645;\nUPDATE t2 SET b=42963 WHERE a=24646;\nUPDATE t2 SET b=98929 WHERE a=24647;\nUPDATE t2 SET b=86673 WHERE a=24648;\nUPDATE t2 SET b=17472 WHERE a=24649;\nUPDATE t2 SET b=50482 WHERE a=24650;\nUPDATE t2 SET b=26112 WHERE a=24651;\nUPDATE t2 SET b=82712 WHERE a=24652;\nUPDATE t2 SET b=39091 WHERE a=24653;\nUPDATE t2 SET b=50518 WHERE a=24654;\nUPDATE t2 SET b=62098 WHERE a=24655;\nUPDATE t2 SET b=61225 WHERE a=24656;\nUPDATE t2 SET b=15820 WHERE a=24657;\nUPDATE t2 SET b=79770 WHERE a=24658;\nUPDATE t2 SET b=95037 WHERE a=24659;\nUPDATE t2 SET b=87861 WHERE a=24660;\nUPDATE t2 SET b=61279 WHERE a=24661;\nUPDATE t2 SET b=66723 WHERE a=24662;\nUPDATE t2 SET b=77278 WHERE a=24663;\nUPDATE t2 SET b=35616 WHERE a=24664;\nUPDATE t2 SET b=32191 WHERE a=24665;\nUPDATE t2 SET b=96367 WHERE a=24666;\nUPDATE t2 SET b=17328 WHERE a=24667;\nUPDATE t2 SET b=89380 WHERE a=24668;\nUPDATE t2 SET b=29714 WHERE a=24669;\nUPDATE t2 SET b=82473 WHERE a=24670;\nUPDATE t2 SET b=18042 WHERE a=24671;\nUPDATE t2 SET b=74959 WHERE a=24672;\nUPDATE t2 SET b=30377 WHERE a=24673;\nUPDATE t2 SET b=12271 WHERE a=24674;\nUPDATE t2 SET b=87535 WHERE a=24675;\nUPDATE t2 SET b=40123 WHERE a=24676;\nUPDATE t2 SET b=9644 WHERE a=24677;\nUPDATE t2 SET b=70018 WHERE a=24678;\nUPDATE t2 SET b=38326 WHERE a=24679;\nUPDATE t2 SET b=31947 WHERE a=24680;\nUPDATE t2 SET b=16769 WHERE a=24681;\nUPDATE t2 SET b=91451 WHERE a=24682;\nUPDATE t2 SET b=88615 WHERE a=24683;\nUPDATE t2 SET b=2490 WHERE a=24684;\nUPDATE t2 SET b=52375 WHERE a=24685;\nUPDATE t2 SET b=85622 WHERE a=24686;\nUPDATE t2 SET b=99148 WHERE a=24687;\nUPDATE t2 SET b=53514 WHERE a=24688;\nUPDATE t2 SET b=27083 WHERE a=24689;\nUPDATE t2 SET b=84776 WHERE a=24690;\nUPDATE t2 SET b=53543 WHERE a=24691;\nUPDATE t2 SET b=59275 WHERE a=24692;\nUPDATE t2 SET b=31220 WHERE a=24693;\nUPDATE t2 SET b=9664 WHERE a=24694;\nUPDATE t2 SET b=53171 WHERE a=24695;\nUPDATE t2 SET b=13678 WHERE a=24696;\nUPDATE t2 SET b=31428 WHERE a=24697;\nUPDATE t2 SET b=28125 WHERE a=24698;\nUPDATE t2 SET b=31713 WHERE a=24699;\nUPDATE t2 SET b=63823 WHERE a=24700;\nUPDATE t2 SET b=70537 WHERE a=24701;\nUPDATE t2 SET b=7406 WHERE a=24702;\nUPDATE t2 SET b=92918 WHERE a=24703;\nUPDATE t2 SET b=35582 WHERE a=24704;\nUPDATE t2 SET b=89173 WHERE a=24705;\nUPDATE t2 SET b=51782 WHERE a=24706;\nUPDATE t2 SET b=94540 WHERE a=24707;\nUPDATE t2 SET b=98135 WHERE a=24708;\nUPDATE t2 SET b=44816 WHERE a=24709;\nUPDATE t2 SET b=50766 WHERE a=24710;\nUPDATE t2 SET b=82826 WHERE a=24711;\nUPDATE t2 SET b=45753 WHERE a=24712;\nUPDATE t2 SET b=92348 WHERE a=24713;\nUPDATE t2 SET b=17176 WHERE a=24714;\nUPDATE t2 SET b=46787 WHERE a=24715;\nUPDATE t2 SET b=21244 WHERE a=24716;\nUPDATE t2 SET b=59399 WHERE a=24717;\nUPDATE t2 SET b=55888 WHERE a=24718;\nUPDATE t2 SET b=8639 WHERE a=24719;\nUPDATE t2 SET b=18558 WHERE a=24720;\nUPDATE t2 SET b=4391 WHERE a=24721;\nUPDATE t2 SET b=23362 WHERE a=24722;\nUPDATE t2 SET b=67135 WHERE a=24723;\nUPDATE t2 SET b=57818 WHERE a=24724;\nUPDATE t2 SET b=6501 WHERE a=24725;\nUPDATE t2 SET b=16532 WHERE a=24726;\nUPDATE t2 SET b=49008 WHERE a=24727;\nUPDATE t2 SET b=12254 WHERE a=24728;\nUPDATE t2 SET b=14923 WHERE a=24729;\nUPDATE t2 SET b=84485 WHERE a=24730;\nUPDATE t2 SET b=69382 WHERE a=24731;\nUPDATE t2 SET b=75209 WHERE a=24732;\nUPDATE t2 SET b=88766 WHERE a=24733;\nUPDATE t2 SET b=56824 WHERE a=24734;\nUPDATE t2 SET b=22347 WHERE a=24735;\nUPDATE t2 SET b=26016 WHERE a=24736;\nUPDATE t2 SET b=28908 WHERE a=24737;\nUPDATE t2 SET b=7600 WHERE a=24738;\nUPDATE t2 SET b=35848 WHERE a=24739;\nUPDATE t2 SET b=40740 WHERE a=24740;\nUPDATE t2 SET b=13993 WHERE a=24741;\nUPDATE t2 SET b=23454 WHERE a=24742;\nUPDATE t2 SET b=32224 WHERE a=24743;\nUPDATE t2 SET b=35581 WHERE a=24744;\nUPDATE t2 SET b=63431 WHERE a=24745;\nUPDATE t2 SET b=40017 WHERE a=24746;\nUPDATE t2 SET b=68378 WHERE a=24747;\nUPDATE t2 SET b=92021 WHERE a=24748;\nUPDATE t2 SET b=76937 WHERE a=24749;\nUPDATE t2 SET b=99818 WHERE a=24750;\nUPDATE t2 SET b=72650 WHERE a=24751;\nUPDATE t2 SET b=91601 WHERE a=24752;\nUPDATE t2 SET b=38487 WHERE a=24753;\nUPDATE t2 SET b=59241 WHERE a=24754;\nUPDATE t2 SET b=12006 WHERE a=24755;\nUPDATE t2 SET b=65932 WHERE a=24756;\nUPDATE t2 SET b=71851 WHERE a=24757;\nUPDATE t2 SET b=30973 WHERE a=24758;\nUPDATE t2 SET b=14665 WHERE a=24759;\nUPDATE t2 SET b=82987 WHERE a=24760;\nUPDATE t2 SET b=13867 WHERE a=24761;\nUPDATE t2 SET b=26903 WHERE a=24762;\nUPDATE t2 SET b=59994 WHERE a=24763;\nUPDATE t2 SET b=31048 WHERE a=24764;\nUPDATE t2 SET b=14002 WHERE a=24765;\nUPDATE t2 SET b=73724 WHERE a=24766;\nUPDATE t2 SET b=47051 WHERE a=24767;\nUPDATE t2 SET b=6494 WHERE a=24768;\nUPDATE t2 SET b=65812 WHERE a=24769;\nUPDATE t2 SET b=69984 WHERE a=24770;\nUPDATE t2 SET b=86630 WHERE a=24771;\nUPDATE t2 SET b=54005 WHERE a=24772;\nUPDATE t2 SET b=95562 WHERE a=24773;\nUPDATE t2 SET b=36159 WHERE a=24774;\nUPDATE t2 SET b=50995 WHERE a=24775;\nUPDATE t2 SET b=21551 WHERE a=24776;\nUPDATE t2 SET b=10619 WHERE a=24777;\nUPDATE t2 SET b=57949 WHERE a=24778;\nUPDATE t2 SET b=8898 WHERE a=24779;\nUPDATE t2 SET b=30425 WHERE a=24780;\nUPDATE t2 SET b=25473 WHERE a=24781;\nUPDATE t2 SET b=12437 WHERE a=24782;\nUPDATE t2 SET b=69736 WHERE a=24783;\nUPDATE t2 SET b=7861 WHERE a=24784;\nUPDATE t2 SET b=18592 WHERE a=24785;\nUPDATE t2 SET b=97244 WHERE a=24786;\nUPDATE t2 SET b=10387 WHERE a=24787;\nUPDATE t2 SET b=70136 WHERE a=24788;\nUPDATE t2 SET b=50849 WHERE a=24789;\nUPDATE t2 SET b=21531 WHERE a=24790;\nUPDATE t2 SET b=82903 WHERE a=24791;\nUPDATE t2 SET b=20611 WHERE a=24792;\nUPDATE t2 SET b=53014 WHERE a=24793;\nUPDATE t2 SET b=46262 WHERE a=24794;\nUPDATE t2 SET b=49876 WHERE a=24795;\nUPDATE t2 SET b=38350 WHERE a=24796;\nUPDATE t2 SET b=34815 WHERE a=24797;\nUPDATE t2 SET b=27498 WHERE a=24798;\nUPDATE t2 SET b=95610 WHERE a=24799;\nUPDATE t2 SET b=53922 WHERE a=24800;\nUPDATE t2 SET b=72696 WHERE a=24801;\nUPDATE t2 SET b=28855 WHERE a=24802;\nUPDATE t2 SET b=87139 WHERE a=24803;\nUPDATE t2 SET b=8387 WHERE a=24804;\nUPDATE t2 SET b=15664 WHERE a=24805;\nUPDATE t2 SET b=30064 WHERE a=24806;\nUPDATE t2 SET b=51822 WHERE a=24807;\nUPDATE t2 SET b=43515 WHERE a=24808;\nUPDATE t2 SET b=10702 WHERE a=24809;\nUPDATE t2 SET b=78476 WHERE a=24810;\nUPDATE t2 SET b=12477 WHERE a=24811;\nUPDATE t2 SET b=27072 WHERE a=24812;\nUPDATE t2 SET b=60500 WHERE a=24813;\nUPDATE t2 SET b=9020 WHERE a=24814;\nUPDATE t2 SET b=57854 WHERE a=24815;\nUPDATE t2 SET b=23193 WHERE a=24816;\nUPDATE t2 SET b=6329 WHERE a=24817;\nUPDATE t2 SET b=2207 WHERE a=24818;\nUPDATE t2 SET b=3359 WHERE a=24819;\nUPDATE t2 SET b=3476 WHERE a=24820;\nUPDATE t2 SET b=21891 WHERE a=24821;\nUPDATE t2 SET b=4003 WHERE a=24822;\nUPDATE t2 SET b=18371 WHERE a=24823;\nUPDATE t2 SET b=51717 WHERE a=24824;\nUPDATE t2 SET b=6131 WHERE a=24825;\nUPDATE t2 SET b=10159 WHERE a=24826;\nUPDATE t2 SET b=19009 WHERE a=24827;\nUPDATE t2 SET b=90495 WHERE a=24828;\nUPDATE t2 SET b=12353 WHERE a=24829;\nUPDATE t2 SET b=44433 WHERE a=24830;\nUPDATE t2 SET b=31025 WHERE a=24831;\nUPDATE t2 SET b=30528 WHERE a=24832;\nUPDATE t2 SET b=51169 WHERE a=24833;\nUPDATE t2 SET b=69400 WHERE a=24834;\nUPDATE t2 SET b=96326 WHERE a=24835;\nUPDATE t2 SET b=31661 WHERE a=24836;\nUPDATE t2 SET b=6670 WHERE a=24837;\nUPDATE t2 SET b=63701 WHERE a=24838;\nUPDATE t2 SET b=20845 WHERE a=24839;\nUPDATE t2 SET b=52924 WHERE a=24840;\nUPDATE t2 SET b=64448 WHERE a=24841;\nUPDATE t2 SET b=6494 WHERE a=24842;\nUPDATE t2 SET b=20802 WHERE a=24843;\nUPDATE t2 SET b=6521 WHERE a=24844;\nUPDATE t2 SET b=70554 WHERE a=24845;\nUPDATE t2 SET b=41091 WHERE a=24846;\nUPDATE t2 SET b=83276 WHERE a=24847;\nUPDATE t2 SET b=16119 WHERE a=24848;\nUPDATE t2 SET b=91533 WHERE a=24849;\nUPDATE t2 SET b=63562 WHERE a=24850;\nUPDATE t2 SET b=71858 WHERE a=24851;\nUPDATE t2 SET b=30924 WHERE a=24852;\nUPDATE t2 SET b=21101 WHERE a=24853;\nUPDATE t2 SET b=67622 WHERE a=24854;\nUPDATE t2 SET b=64743 WHERE a=24855;\nUPDATE t2 SET b=44668 WHERE a=24856;\nUPDATE t2 SET b=25625 WHERE a=24857;\nUPDATE t2 SET b=16160 WHERE a=24858;\nUPDATE t2 SET b=15556 WHERE a=24859;\nUPDATE t2 SET b=81122 WHERE a=24860;\nUPDATE t2 SET b=56392 WHERE a=24861;\nUPDATE t2 SET b=97080 WHERE a=24862;\nUPDATE t2 SET b=2066 WHERE a=24863;\nUPDATE t2 SET b=50339 WHERE a=24864;\nUPDATE t2 SET b=53237 WHERE a=24865;\nUPDATE t2 SET b=78793 WHERE a=24866;\nUPDATE t2 SET b=93895 WHERE a=24867;\nUPDATE t2 SET b=10938 WHERE a=24868;\nUPDATE t2 SET b=39418 WHERE a=24869;\nUPDATE t2 SET b=26156 WHERE a=24870;\nUPDATE t2 SET b=2403 WHERE a=24871;\nUPDATE t2 SET b=9662 WHERE a=24872;\nUPDATE t2 SET b=36252 WHERE a=24873;\nUPDATE t2 SET b=80464 WHERE a=24874;\nUPDATE t2 SET b=1842 WHERE a=24875;\nUPDATE t2 SET b=61670 WHERE a=24876;\nUPDATE t2 SET b=96251 WHERE a=24877;\nUPDATE t2 SET b=59783 WHERE a=24878;\nUPDATE t2 SET b=99761 WHERE a=24879;\nUPDATE t2 SET b=23634 WHERE a=24880;\nUPDATE t2 SET b=18170 WHERE a=24881;\nUPDATE t2 SET b=64123 WHERE a=24882;\nUPDATE t2 SET b=53894 WHERE a=24883;\nUPDATE t2 SET b=73070 WHERE a=24884;\nUPDATE t2 SET b=99395 WHERE a=24885;\nUPDATE t2 SET b=62292 WHERE a=24886;\nUPDATE t2 SET b=4762 WHERE a=24887;\nUPDATE t2 SET b=93225 WHERE a=24888;\nUPDATE t2 SET b=50995 WHERE a=24889;\nUPDATE t2 SET b=97871 WHERE a=24890;\nUPDATE t2 SET b=82258 WHERE a=24891;\nUPDATE t2 SET b=96473 WHERE a=24892;\nUPDATE t2 SET b=26516 WHERE a=24893;\nUPDATE t2 SET b=18084 WHERE a=24894;\nUPDATE t2 SET b=67607 WHERE a=24895;\nUPDATE t2 SET b=62917 WHERE a=24896;\nUPDATE t2 SET b=37748 WHERE a=24897;\nUPDATE t2 SET b=65481 WHERE a=24898;\nUPDATE t2 SET b=48402 WHERE a=24899;\nUPDATE t2 SET b=43004 WHERE a=24900;\nUPDATE t2 SET b=79155 WHERE a=24901;\nUPDATE t2 SET b=76561 WHERE a=24902;\nUPDATE t2 SET b=59299 WHERE a=24903;\nUPDATE t2 SET b=2693 WHERE a=24904;\nUPDATE t2 SET b=73875 WHERE a=24905;\nUPDATE t2 SET b=22280 WHERE a=24906;\nUPDATE t2 SET b=30150 WHERE a=24907;\nUPDATE t2 SET b=58647 WHERE a=24908;\nUPDATE t2 SET b=41818 WHERE a=24909;\nUPDATE t2 SET b=66919 WHERE a=24910;\nUPDATE t2 SET b=40731 WHERE a=24911;\nUPDATE t2 SET b=2094 WHERE a=24912;\nUPDATE t2 SET b=2408 WHERE a=24913;\nUPDATE t2 SET b=88669 WHERE a=24914;\nUPDATE t2 SET b=58165 WHERE a=24915;\nUPDATE t2 SET b=64229 WHERE a=24916;\nUPDATE t2 SET b=78054 WHERE a=24917;\nUPDATE t2 SET b=95613 WHERE a=24918;\nUPDATE t2 SET b=27941 WHERE a=24919;\nUPDATE t2 SET b=48 WHERE a=24920;\nUPDATE t2 SET b=36039 WHERE a=24921;\nUPDATE t2 SET b=45581 WHERE a=24922;\nUPDATE t2 SET b=5570 WHERE a=24923;\nUPDATE t2 SET b=23362 WHERE a=24924;\nUPDATE t2 SET b=57829 WHERE a=24925;\nUPDATE t2 SET b=47959 WHERE a=24926;\nUPDATE t2 SET b=13151 WHERE a=24927;\nUPDATE t2 SET b=2966 WHERE a=24928;\nUPDATE t2 SET b=26815 WHERE a=24929;\nUPDATE t2 SET b=4616 WHERE a=24930;\nUPDATE t2 SET b=31286 WHERE a=24931;\nUPDATE t2 SET b=38228 WHERE a=24932;\nUPDATE t2 SET b=4867 WHERE a=24933;\nUPDATE t2 SET b=65628 WHERE a=24934;\nUPDATE t2 SET b=89286 WHERE a=24935;\nUPDATE t2 SET b=88192 WHERE a=24936;\nUPDATE t2 SET b=34849 WHERE a=24937;\nUPDATE t2 SET b=53741 WHERE a=24938;\nUPDATE t2 SET b=43537 WHERE a=24939;\nUPDATE t2 SET b=41771 WHERE a=24940;\nUPDATE t2 SET b=80807 WHERE a=24941;\nUPDATE t2 SET b=99544 WHERE a=24942;\nUPDATE t2 SET b=14072 WHERE a=24943;\nUPDATE t2 SET b=45523 WHERE a=24944;\nUPDATE t2 SET b=15499 WHERE a=24945;\nUPDATE t2 SET b=2875 WHERE a=24946;\nUPDATE t2 SET b=41352 WHERE a=24947;\nUPDATE t2 SET b=10155 WHERE a=24948;\nUPDATE t2 SET b=70938 WHERE a=24949;\nUPDATE t2 SET b=37088 WHERE a=24950;\nUPDATE t2 SET b=19602 WHERE a=24951;\nUPDATE t2 SET b=20921 WHERE a=24952;\nUPDATE t2 SET b=19928 WHERE a=24953;\nUPDATE t2 SET b=99103 WHERE a=24954;\nUPDATE t2 SET b=91710 WHERE a=24955;\nUPDATE t2 SET b=33261 WHERE a=24956;\nUPDATE t2 SET b=58161 WHERE a=24957;\nUPDATE t2 SET b=34648 WHERE a=24958;\nUPDATE t2 SET b=20776 WHERE a=24959;\nUPDATE t2 SET b=68180 WHERE a=24960;\nUPDATE t2 SET b=49268 WHERE a=24961;\nUPDATE t2 SET b=83860 WHERE a=24962;\nUPDATE t2 SET b=88002 WHERE a=24963;\nUPDATE t2 SET b=87672 WHERE a=24964;\nUPDATE t2 SET b=92708 WHERE a=24965;\nUPDATE t2 SET b=48911 WHERE a=24966;\nUPDATE t2 SET b=52773 WHERE a=24967;\nUPDATE t2 SET b=22420 WHERE a=24968;\nUPDATE t2 SET b=56443 WHERE a=24969;\nUPDATE t2 SET b=24421 WHERE a=24970;\nUPDATE t2 SET b=9045 WHERE a=24971;\nUPDATE t2 SET b=81558 WHERE a=24972;\nUPDATE t2 SET b=47647 WHERE a=24973;\nUPDATE t2 SET b=20467 WHERE a=24974;\nUPDATE t2 SET b=8929 WHERE a=24975;\nUPDATE t2 SET b=2349 WHERE a=24976;\nUPDATE t2 SET b=9892 WHERE a=24977;\nUPDATE t2 SET b=63368 WHERE a=24978;\nUPDATE t2 SET b=76164 WHERE a=24979;\nUPDATE t2 SET b=96670 WHERE a=24980;\nUPDATE t2 SET b=65858 WHERE a=24981;\nUPDATE t2 SET b=37114 WHERE a=24982;\nUPDATE t2 SET b=20938 WHERE a=24983;\nUPDATE t2 SET b=10859 WHERE a=24984;\nUPDATE t2 SET b=12219 WHERE a=24985;\nUPDATE t2 SET b=13035 WHERE a=24986;\nUPDATE t2 SET b=8699 WHERE a=24987;\nUPDATE t2 SET b=34577 WHERE a=24988;\nUPDATE t2 SET b=81145 WHERE a=24989;\nUPDATE t2 SET b=72930 WHERE a=24990;\nUPDATE t2 SET b=90839 WHERE a=24991;\nUPDATE t2 SET b=62751 WHERE a=24992;\nUPDATE t2 SET b=81141 WHERE a=24993;\nUPDATE t2 SET b=19366 WHERE a=24994;\nUPDATE t2 SET b=87519 WHERE a=24995;\nUPDATE t2 SET b=56768 WHERE a=24996;\nUPDATE t2 SET b=43942 WHERE a=24997;\nUPDATE t2 SET b=50494 WHERE a=24998;\nUPDATE t2 SET b=74260 WHERE a=24999;\nUPDATE t2 SET b=41153 WHERE a=25000;\nCOMMIT;\n"
  },
  {
    "path": "packages/benchmark/src/benchmarks-worker.js",
    "content": "// Based on wa-sqlite's benchmarks\n// Copyright 2021 Roy T. Hashimoto. All Rights Reserved.\n// Modified by the PGLite authors.\n\nimport { PGlite } from './pglite/index.js'\n;(async function () {\n  const Comlink = await import('https://unpkg.com/comlink/dist/esm/comlink.mjs')\n\n  /**\n   * @param {Config} config\n   * @returns {Promise<Function>}\n   */\n  async function open(config) {\n    if (config.dataDir.startsWith('opfs-')) {\n      // delete the existing database\n      const root = await navigator.storage.getDirectory()\n      const dirName = config.dataDir.slice(config.dataDir.indexOf('://') + 3)\n      try {\n        const dir = await root.getDirectoryHandle(dirName, { create: false })\n        await dir.remove()\n      } catch (e) {\n        // ignore\n      }\n    }\n\n    console.log('Opening PGLite database:', JSON.stringify(config, null, 2))\n    const pg = new PGlite(config.dataDir, config.options)\n    await pg.waitReady\n\n    // Create the query interface.\n    async function query(sql) {\n      // console.log('Query:', sql);\n      const startTime = performance.now()\n      await pg.exec(sql)\n      const elapsed = performance.now() - startTime\n      return { elapsed }\n    }\n    return Comlink.proxy(query)\n  }\n\n  postMessage(null)\n  Comlink.expose(open)\n})()\n"
  },
  {
    "path": "packages/benchmark/src/benchmarks.js",
    "content": "// Based on wa-sqlite's benchmarks\n// Copyright 2021 Roy T. Hashimoto. All Rights Reserved.\n// Modified by the PGLite authors.\n\n// Define the selectable configurations.\nconst CONFIGURATIONS = new Map(\n  [\n    {\n      label: 'Memory',\n      dataDir: '',\n    },\n    {\n      label: 'Memory (Unlogged Tables)',\n      dataDir: '',\n      modSql: (sql) => sql.replace(/CREATE TABLE/g, 'CREATE UNLOGGED TABLE'),\n    },\n    {\n      label: 'Emscripten IndexedDB FS',\n      dataDir: 'idb://benchmark',\n    },\n    {\n      label: 'Emscripten IndexedDB FS<br> <i>relaxed durability</i>',\n      dataDir: 'idb://benchmark-rd',\n      options: { relaxedDurability: true },\n    },\n    {\n      label: 'OPFS Access Handle Pool',\n      dataDir: 'opfs-ahp://benchmark-ahp',\n    },\n    {\n      label: 'OPFS Access Handle Pool<br> <i>relaxed durability</i>',\n      dataDir: 'opfs-ahp://benchmark-ahp-rd',\n      options: { relaxedDurability: true },\n    },\n    // {\n    //   label: \"OPFS Worker\",\n    //   dataDir: \"opfs-worker://benchmark-worker\",\n    // },\n  ].map((obj) => [obj.label, obj]),\n)\n\nconst benchmarkIds = [\n  '1',\n  '2',\n  '2.1',\n  '3',\n  '3.1',\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]\n\nconst benchmarksReady = Promise.all(\n  benchmarkIds.map((id) => {\n    const filename = `./benchmark${id}.sql`\n    return fetch(filename).then((response) => response.text())\n  }),\n)\n\nconst ComlinkReady = import('https://unpkg.com/comlink/dist/esm/comlink.mjs')\n\nconst headers = document.querySelector('thead').firstElementChild\nfor (const config of CONFIGURATIONS.values()) {\n  addEntry(headers, config.label)\n}\n\ndocument.getElementById('start').addEventListener('click', async (event) => {\n  event.target.disabled = true\n\n  // Clear any existing storage state.\n  await new Promise((resolve, reject) => {\n    const req = indexedDB.deleteDatabase('/pglite/benchmark')\n    req.onsuccess = resolve\n    req.onerror = reject\n  })\n  await new Promise((resolve, reject) => {\n    const req = indexedDB.deleteDatabase('/pglite/benchmark-rd')\n    req.onsuccess = resolve\n    req.onerror = reject\n  })\n  // OPFS\n  const root = await navigator.storage.getDirectory()\n  for await (const handle of root.values()) {\n    if (handle.name.startsWith('benchmark')) {\n      try {\n        await root.removeEntry(handle.name, { recursive: true })\n      } catch (e) {\n        // ignore\n      }\n    }\n  }\n\n  // Clear timings from the table.\n  Array.from(document.getElementsByTagName('tr'), (element) => {\n    if (element.parentElement.tagName === 'TBODY') {\n      // Keep only the first child.\n      while (element.firstElementChild.nextElementSibling) {\n        element.firstElementChild.nextElementSibling.remove()\n      }\n    }\n  })\n\n  const benchmarks = await benchmarksReady\n  const Comlink = await ComlinkReady\n  try {\n    const preamble = document.getElementById('preamble').value\n    document.getElementById('error').textContent = ''\n    for (const config of CONFIGURATIONS.values()) {\n      const worker = new Worker('./benchmarks-worker.js', { type: 'module' })\n      try {\n        await Promise.race([\n          new Promise((resolve) => {\n            worker.addEventListener('message', resolve, { once: true })\n          }),\n          new Promise((_, reject) =>\n            setTimeout(() => {\n              reject(new Error(`${config.label} initialization timeout`))\n            }, 5000),\n          ),\n        ])\n\n        const workerProxy = Comlink.wrap(worker)\n        const query = await workerProxy({\n          dataDir: config.dataDir,\n          label: config.label,\n          options: config.options,\n        })\n\n        await query(preamble)\n\n        let tr = document.querySelector('tbody').firstElementChild\n\n        for (let b = 0; b < benchmarks.length; b++) {\n          const benchmark = benchmarks[b]\n          const sql = config.modSql ? config.modSql(benchmark) : benchmark\n          const { elapsed } = await query(sql)\n\n          addEntry(tr, (elapsed / 1000).toFixed(3))\n          tr = tr.nextElementSibling\n        }\n      } finally {\n        worker.terminate()\n      }\n    }\n  } catch (e) {\n    document.getElementById('error').textContent = e.stack.includes(e.message)\n      ? e.stack\n      : `${e.stack}\\n${e.message}`\n    throw e\n  } finally {\n    event.target.disabled = false\n  }\n})\n\nfunction addEntry(parent, text) {\n  const tag = parent.parentElement.tagName === 'TBODY' ? 'td' : 'th'\n  const child = document.createElement(tag)\n  child.innerHTML = text\n  parent.appendChild(child)\n}\n"
  },
  {
    "path": "packages/benchmark/src/index.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <meta charset=\"UTF-8\" />\n    <title>PGlite benchmarks</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n  </head>\n  <body>\n    <h1>PGlite benchmarks</h1>\n    <p>\n      Based on the\n      <a href=\"https://rhashimoto.github.io/wa-sqlite/demo/benchmarks.html\"\n        >wa-sqlite benchmarks</a\n      >\n    </p>\n\n    <div id=\"controls\">\n      <textarea id=\"preamble\" rows=\"2\" cols=\"48\">\n-- Pre-run setup\n      </textarea>\n      <button id=\"start\">Start</button>\n    </div>\n    <div><pre id=\"error\" style=\"color: red\"></pre></div>\n    <div>\n      <table>\n        <thead>\n          <tr id=\"vfs\">\n            <th>Test</th>\n          </tr>\n        </thead>\n        <tbody>\n          <tr id=\"test1\">\n            <td>Test 1: 1000 INSERTs</td>\n          </tr>\n          <tr id=\"test2\">\n            <td>Test 2: 25000 INSERTs in a transaction</td>\n          </tr>\n          <tr id=\"test2.1\">\n            <td>Test 2.1: 25000 INSERTs in single statement</td>\n          </tr>\n          <tr id=\"test3\">\n            <td>Test 3: 25000 INSERTs into an indexed table</td>\n          </tr>\n          <tr id=\"test3\">\n            <td>\n              Test 3.1: 25000 INSERTs into an indexed table in single statement\n            </td>\n          </tr>\n          <tr id=\"test4\">\n            <td>Test 4: 100 SELECTs without an index</td>\n          </tr>\n          <tr id=\"test5\">\n            <td>Test 5: 100 SELECTs on a string comparison</td>\n          </tr>\n          <tr id=\"test6\">\n            <td>Test 6: Creating an index</td>\n          </tr>\n          <tr id=\"test7\">\n            <td>Test 7: 5000 SELECTs with an index</td>\n          </tr>\n          <tr id=\"test8\">\n            <td>Test 8: 1000 UPDATEs without an index</td>\n          </tr>\n          <tr id=\"test9\">\n            <td>Test 9: 25000 UPDATEs with an index</td>\n          </tr>\n          <tr id=\"test10\">\n            <td>Test 10: 25000 text UPDATEs with an index</td>\n          </tr>\n          <tr id=\"test11\">\n            <td>Test 11: INSERTs from a SELECT</td>\n          </tr>\n          <tr id=\"test12\">\n            <td>Test 12: DELETE without an index</td>\n          </tr>\n          <tr id=\"test13\">\n            <td>Test 13: DELETE with an index</td>\n          </tr>\n          <tr id=\"test14\">\n            <td>Test 14: A big INSERT after a big DELETE</td>\n          </tr>\n          <tr id=\"test15\">\n            <td>Test 15: A big DELETE followed by many small INSERTs</td>\n          </tr>\n          <tr id=\"test16\">\n            <td>Test 16: DROP TABLE</td>\n          </tr>\n        </tbody>\n      </table>\n    </div>\n    <script type=\"module\" src=\"benchmarks.js\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/benchmark/src/rtt-worker.js",
    "content": "// Based on wa-sqlite's benchmarks\n// Copyright 2021 Roy T. Hashimoto. All Rights Reserved.\n// Modified by the PGLite authors.\n\nimport * as SQLite from './wa-sqlite/src/sqlite-api.js'\nimport { createTag } from './wa-sqlite/src/examples/tag.js'\nimport { PGlite } from './pglite/index.js'\n\nconst WA_SQLITE = './wa-sqlite/dist/wa-sqlite.mjs'\nconst WA_SQLITE_ASYNC = './wa-sqlite/dist/wa-sqlite-async.mjs'\n\n;(async function () {\n  const Comlink = await import('https://unpkg.com/comlink/dist/esm/comlink.mjs')\n\n  async function open(config) {\n    if (config.db === 'wa-sqlite') {\n      console.log('Opening SQLite database:', JSON.stringify(config, null, 2))\n      return openSQLite(config)\n    } else if (config.db === 'pglite') {\n      console.log('Opening PGLite database:', JSON.stringify(config, null, 2))\n      return openPGlite(config)\n    }\n  }\n\n  async function openPGlite(config) {\n    const pg = new PGlite(config.dataDir, config.options)\n    await pg.waitReady\n\n    // Create the query interface.\n    async function query(sql) {\n      // console.log('Query:', sql);\n      const startTime = performance.now()\n      await pg.exec(sql)\n      const elapsed = performance.now() - startTime\n      return { elapsed }\n    }\n    return Comlink.proxy(query)\n  }\n\n  async function openSQLite(config) {\n    const { default: moduleFactory } = await import(\n      config.isAsync ? WA_SQLITE_ASYNC : WA_SQLITE\n    )\n    const module = await moduleFactory()\n    const sqlite3 = SQLite.Factory(module)\n\n    if (config.vfsModule) {\n      // Create the VFS and register it as the default file system.\n      const namespace = await import(config.vfsModule)\n      const vfs = new namespace[config.vfsClass](...(config.vfsArgs ?? []))\n      await vfs.isReady\n      sqlite3.vfs_register(vfs, true)\n    }\n\n    // Open the database;\n    const db = await sqlite3.open_v2(config.dbName ?? 'rtt-demo')\n\n    const tag = createTag(sqlite3, db)\n    const query = async (sql) => {\n      const startTime = performance.now()\n      await tag(sql)\n      const elapsed = performance.now() - startTime\n      return { elapsed }\n    }\n    return Comlink.proxy(query)\n  }\n\n  postMessage(null)\n  Comlink.expose(open)\n})()\n"
  },
  {
    "path": "packages/benchmark/src/rtt.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <meta charset=\"UTF-8\" />\n    <title>PGlite RTT benchmarks</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n  </head>\n  <body>\n    <h1>PGlite RTT benchmarks</h1>\n    <p>\n      100 interactions per test, top/bottom 10% removed, average of the rest.\n      Times in ms.\n    </p>\n    <p>\n      SQLite tests using\n      <a href=\"https://github.com/rhashimoto/wa-sqlite\"> wa-sqlite </a>\n    </p>\n    <button id=\"start\">Start</button>\n\n    <div><pre id=\"error\" style=\"color: red\"></pre></div>\n    <div>\n      <table>\n        <thead>\n          <tr id=\"vfs\">\n            <th>Test</th>\n          </tr>\n        </thead>\n        <tbody>\n          <tr id=\"test1\">\n            <td>Test 1: insert small row</td>\n          </tr>\n          <tr id=\"test2\">\n            <td>Test 2: select small row</td>\n          </tr>\n          <tr id=\"test3\">\n            <td>Test 3: update small row</td>\n          </tr>\n          <tr id=\"test4\">\n            <td>Test 4: delete small row</td>\n          </tr>\n          <tr id=\"test5\">\n            <td>Test 5: insert 1kb row</td>\n          </tr>\n          <tr id=\"test6\">\n            <td>Test 6: select 1kb row</td>\n          </tr>\n          <tr id=\"test7\">\n            <td>Test 7: update 1kb row</td>\n          </tr>\n          <tr id=\"test8\">\n            <td>Test 8: delete 1kb row</td>\n          </tr>\n          <tr id=\"test9\">\n            <td>Test 9: insert 10kb row</td>\n          </tr>\n          <tr id=\"test10\">\n            <td>Test 10: select 10kb row</td>\n          </tr>\n          <tr id=\"test11\">\n            <td>Test 11: update 10kb row</td>\n          </tr>\n          <tr id=\"test12\">\n            <td>Test 12: delete 10kb row</td>\n          </tr>\n        </tbody>\n      </table>\n    </div>\n    <script type=\"module\" src=\"rtt.js\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/benchmark/src/rtt.js",
    "content": "// Based on wa-sqlite's benchmarks\n// Copyright 2021 Roy T. Hashimoto. All Rights Reserved.\n// Modified by the PGLite authors.\n\n// Define the selectable configurations.\nconst CONFIGURATIONS = new Map(\n  [\n    {\n      label: 'PGlite Memory<br> (CMA Transport <em>default</em>)',\n      db: 'pglite',\n      dataDir: '',\n    },\n    {\n      label: 'PGlite Memory<br> (File Transport)',\n      db: 'pglite',\n      dataDir: '',\n    },\n    {\n      label: 'PGlite IDB',\n      db: 'pglite',\n      dataDir: 'idb://benchmark-rtt',\n    },\n    {\n      label: 'PGlite IDB (CMA) <br> <i>relaxed durability</i>',\n      db: 'pglite',\n      dataDir: 'idb://benchmark-rtt-rd',\n      options: { relaxedDurability: true },\n    },\n    {\n      label: 'PGlite OPFS AHP',\n      db: 'pglite',\n      dataDir: 'opfs-ahp://benchmark-rtt',\n    },\n    {\n      label: 'PGlite OPFS AHP<br> <i>relaxed durability</i>',\n      db: 'pglite',\n      dataDir: 'opfs-ahp://benchmark-rtt-rd',\n      options: { relaxedDurability: true },\n    },\n    {\n      label: 'SQLite Memory',\n      db: 'wa-sqlite',\n      isAsync: false,\n      vfsModule: './wa-sqlite/src/examples/MemoryVFS.js',\n      vfsClass: 'MemoryVFS',\n      vfsArgs: [],\n    },\n    {\n      label: 'SQLite IDB',\n      db: 'wa-sqlite',\n      isAsync: true,\n      vfsModule: './wa-sqlite/src/examples/IDBMinimalVFS.js',\n      vfsClass: 'IDBMinimalVFS',\n      vfsArgs: ['demo-IDBMinimalVFS'],\n    },\n    {\n      label: 'SQLite IDB<br> <i>relaxed durability</i>',\n      db: 'wa-sqlite',\n      isAsync: true,\n      vfsModule: './wa-sqlite/src/examples/IDBMinimalVFS.js',\n      vfsClass: 'IDBMinimalVFS',\n      vfsArgs: ['demo-IDBMinimalVFS-relaxed', { durability: 'relaxed' }],\n    },\n    {\n      label: ' SQLite IDB BatchAtomic',\n      db: 'wa-sqlite',\n      isAsync: true,\n      vfsModule: './wa-sqlite/src/examples/IDBBatchAtomicVFS.js',\n      vfsClass: 'IDBBatchAtomicVFS',\n      vfsArgs: ['demo-IDBBatchAtomicVFS'],\n    },\n    {\n      label: 'SQLite IDB BatchAtomic<br> <i>relaxed durability</i>',\n      db: 'wa-sqlite',\n      isAsync: true,\n      vfsModule: './wa-sqlite/src/examples/IDBBatchAtomicVFS.js',\n      vfsClass: 'IDBBatchAtomicVFS',\n      vfsArgs: ['demo-IDBBatchAtomicVFS-relaxed', { durability: 'relaxed' }],\n    },\n    {\n      label: 'SQLite OPFS',\n      db: 'wa-sqlite',\n      isAsync: true,\n      vfsModule: './wa-sqlite/src/examples/OriginPrivateFileSystemVFS.js',\n      vfsClass: 'OriginPrivateFileSystemVFS',\n      vfsArgs: [],\n      dbName: 'benchmark-rtt-sqlite',\n    },\n    {\n      label: 'SQLite OPFS AHP',\n      db: 'wa-sqlite',\n      isAsync: false,\n      vfsModule: './wa-sqlite/src/examples/AccessHandlePoolVFS.js',\n      vfsClass: 'AccessHandlePoolVFS',\n      vfsArgs: ['/benchmark-rtt-sqlite-ahp'],\n    },\n  ].map((obj) => [obj.label, obj]),\n)\n\nconst initalSetup = `\n  CREATE TABLE t1 (id SERIAL PRIMARY KEY NOT NULL, a INTEGER);\n  CREATE TABLE t2 (id SERIAL PRIMARY KEY NOT NULL, a TEXT);\n`\n\nconst initalSetupSQLite = `\n  CREATE TABLE t1 (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, a INTEGER);\n  CREATE TABLE t2 (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, a TEXT);\n`\n\nconst benchmarks = [\n  `INSERT INTO t1 (a) VALUES (1);`,\n  `SELECT * FROM t1 WHERE id = 333;`,\n  `UPDATE t1 SET a = 2 WHERE id = 666;`,\n  `DELETE FROM t1 WHERE id IN (SELECT id FROM t1 LIMIT 1);`,\n  `INSERT INTO t2 (a) VALUES ('${'a'.repeat(1000)}');`,\n  `SELECT * FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`,\n  `UPDATE t2 SET a = '${'a'.repeat(1000)}' WHERE id = 1;`,\n  `DELETE FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`,\n  `INSERT INTO t2 (a) VALUES ('${'a'.repeat(10000)}');`,\n  `SELECT * FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`,\n  `UPDATE t2 SET a = '${'a'.repeat(10000)}' WHERE id = 1;`,\n  `DELETE FROM t2 WHERE id IN (SELECT id FROM t2 LIMIT 1);`,\n]\n\nconst ITERATIONS = 100\n\nconst ComlinkReady = import('https://unpkg.com/comlink/dist/esm/comlink.mjs')\n\nconst headers = document.querySelector('thead').firstElementChild\nfor (const config of CONFIGURATIONS.values()) {\n  addEntry(headers, config.label)\n}\n\ndocument.getElementById('start').addEventListener('click', async (event) => {\n  event.target.disabled = true\n\n  // Clear any existing storage state.\n  for (const name of [\n    '/pglite/benchmark-rtt',\n    '/pglite/benchmark-rtt-rd',\n    'demo-IDBMinimalVFS',\n    'demo-IDBMinimalVFS-relaxed',\n    'demo-IDBBatchAtomicVFS',\n    'demo-IDBBatchAtomicVFS-relaxed',\n  ]) {\n    await new Promise((resolve, reject) => {\n      const req = indexedDB.deleteDatabase(name)\n      req.onsuccess = resolve\n      req.onerror = reject\n    })\n  }\n  // OPFS\n  const root = await navigator.storage.getDirectory()\n  for await (const handle of root.values()) {\n    if (handle.name.startsWith('benchmark')) {\n      try {\n        await root.removeEntry(handle.name, { recursive: true })\n      } catch (e) {\n        // ignore\n      }\n    }\n  }\n\n  // Clear timings from the table.\n  Array.from(document.getElementsByTagName('tr'), (element) => {\n    if (element.parentElement.tagName === 'TBODY') {\n      // Keep only the first child.\n      while (element.firstElementChild.nextElementSibling) {\n        element.firstElementChild.nextElementSibling.remove()\n      }\n    }\n  })\n\n  const Comlink = await ComlinkReady\n  try {\n    document.getElementById('error').textContent = ''\n    for (const config of CONFIGURATIONS.values()) {\n      const worker = new Worker('./rtt-worker.js', { type: 'module' })\n      try {\n        await Promise.race([\n          new Promise((resolve) => {\n            worker.addEventListener('message', resolve, { once: true })\n          }),\n          new Promise((_, reject) =>\n            setTimeout(() => {\n              reject(new Error(`${config.label} initialization timeout`))\n            }, 5000),\n          ),\n        ])\n\n        const workerProxy = Comlink.wrap(worker)\n        const query = await workerProxy(config)\n\n        if (config.db === 'wa-sqlite') {\n          await query(initalSetupSQLite)\n        } else {\n          await query(initalSetup)\n        }\n\n        let tr = document.querySelector('tbody').firstElementChild\n\n        for (let b = 0; b < benchmarks.length; b++) {\n          const sql = benchmarks[b]\n          let times = []\n          for (let i = 0; i < ITERATIONS; i++) {\n            const { elapsed } = await query(sql)\n            times.push(elapsed)\n          }\n          // sort the times array and remove the first and last 10% of the values\n          times.sort((a, b) => a - b)\n          times = times.slice(\n            Math.floor(times.length * 0.1),\n            Math.floor(times.length * 0.9),\n          )\n          const avg = times.reduce((a, b) => a + b, 0) / times.length\n          addEntry(tr, avg.toFixed(3))\n          tr = tr.nextElementSibling\n        }\n      } finally {\n        worker.terminate()\n      }\n    }\n  } catch (e) {\n    document.getElementById('error').textContent = e.stack.includes(e.message)\n      ? e.stack\n      : `${e.stack}\\n${e.message}`\n  } finally {\n    event.target.disabled = false\n  }\n})\n\nfunction addEntry(parent, text) {\n  const tag = parent.parentElement.tagName === 'TBODY' ? 'td' : 'th'\n  const child = document.createElement(tag)\n  child.innerHTML = text\n  parent.appendChild(child)\n}\n"
  },
  {
    "path": "packages/benchmark/src/styles.css",
    "content": "@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap');\n\nbody,\nhtml {\n  font-family: 'Inter', sans-serif;\n  font-size: 14px;\n  line-height: 1.5;\n  color: #333;\n  background-color: #fff;\n  margin: 1rem 2rem;\n  padding: 0;\n}\n\nh1 {\n  font-size: 1.5rem;\n  margin: 0 0 1rem;\n}\n\n#log {\n  display: block;\n  padding: 1rem;\n  white-space: pre-wrap;\n  width: 50%;\n  font-family: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono',\n    'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro',\n    'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace;\n}\n\n#controls {\n  margin-top: 1em;\n  display: flex;\n  align-items: center;\n}\n\n#controls * {\n  margin-right: 0.5em;\n}\n\ntable {\n  border-collapse: collapse;\n}\n\ntd:first-child {\n  min-width: 15em;\n}\n\ntd,\nth {\n  border: 1px solid #999;\n  padding: 0.5rem;\n  text-align: left;\n  max-width: 3in;\n}\n"
  },
  {
    "path": "packages/benchmark/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\"\n}\n"
  },
  {
    "path": "packages/pg-protocol/CHANGELOG.md",
    "content": "# @electric-sql/pg-protocol\n\n## 0.0.4\n\n### Patch Changes\n\n- e40ccad: Upgrade emsdk\n\n## 0.0.3\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n\n## 0.0.2\n\n### Patch Changes\n\n- 3d8efbb: Bump dependencies to address Dependabot alerts\n"
  },
  {
    "path": "packages/pg-protocol/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2010 - 2021 Brian Carlson\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 all\ncopies 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 THE\nSOFTWARE."
  },
  {
    "path": "packages/pg-protocol/README.md",
    "content": "# pg-protocol\n\nAdapted from [Brian C](https://github.com/brianc)'s [pg-protocol](https://github.com/brianc/node-postgres/tree/master/packages/pg-protocol).\n"
  },
  {
    "path": "packages/pg-protocol/eslint.config.js",
    "content": "import rootConfig from '../../eslint.config.js'\n\nexport default [...rootConfig]\n"
  },
  {
    "path": "packages/pg-protocol/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pg-protocol\",\n  \"version\": \"0.0.4\",\n  \"description\": \"The postgres client/server binary protocol, implemented in TypeScript\",\n  \"type\": \"module\",\n  \"private\": true,\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"pg-protocol\"\n  ],\n  \"author\": \"Electric DB Limited\",\n  \"license\": \"Apache-2.0\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite.git\",\n    \"directory\": \"packages/pg-protocol\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"test\": \"vitest\",\n    \"lint\": \"eslint ./src ./test\",\n    \"format\": \"prettier --write ./src ./test\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"eslint ./src ./test && prettier --check ./src ./test\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"types\": \"dist/index.d.ts\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.js\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    },\n    \"./messages\": {\n      \"import\": {\n        \"types\": \"./dist/messages.d.ts\",\n        \"default\": \"./dist/messages.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/messages.d.cts\",\n        \"default\": \"./dist/messages.cjs\"\n      }\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"vitest\": \"^2.1.2\"\n  }\n}\n"
  },
  {
    "path": "packages/pg-protocol/src/buffer-reader.ts",
    "content": "const emptyBuffer = new ArrayBuffer(0)\n\nexport class BufferReader {\n  #bufferView: DataView = new DataView(emptyBuffer)\n  #offset: number\n\n  // TODO(bmc): support non-utf8 encoding?\n  readonly #encoding: string = 'utf-8' as const\n  readonly #decoder = new TextDecoder(this.#encoding)\n  readonly #littleEndian: boolean = false as const\n\n  constructor(offset: number = 0) {\n    this.#offset = offset\n  }\n\n  public setBuffer(offset: number, buffer: ArrayBuffer): void {\n    this.#offset = offset\n    this.#bufferView = new DataView(buffer)\n  }\n\n  public int16(): number {\n    // const result = this.buffer.readInt16BE(this.#offset)\n    const result = this.#bufferView.getInt16(this.#offset, this.#littleEndian)\n    this.#offset += 2\n    return result\n  }\n\n  public byte(): number {\n    // const result = this.bufferView[this.#offset]\n    const result = this.#bufferView.getUint8(this.#offset)\n    this.#offset++\n    return result\n  }\n\n  public int32(): number {\n    // const result = this.buffer.readInt32BE(this.#offset)\n    const result = this.#bufferView.getInt32(this.#offset, this.#littleEndian)\n    this.#offset += 4\n    return result\n  }\n\n  public string(length: number): string {\n    // const result = this.#bufferView.toString(\n    //   this.#encoding,\n    //   this.#offset,\n    //   this.#offset + length,\n    // )\n    // this.#offset += length\n\n    const result = this.#decoder.decode(this.bytes(length))\n    return result\n  }\n\n  public cstring(): string {\n    // const start = this.#offset\n    // let end = start\n    // while (this.#bufferView[end++] !== 0) {}\n\n    const start = this.#offset\n    let end = start\n    while (this.#bufferView.getUint8(end++) !== 0) {\n      // no-op - increment until terminator reached\n    }\n    const result = this.string(end - start - 1)\n    this.#offset = end\n    return result\n  }\n\n  public bytes(length: number): Uint8Array {\n    // const result = this.buffer.slice(this.#offset, this.#offset + length)\n    const result = this.#bufferView.buffer.slice(\n      this.#offset,\n      this.#offset + length,\n    )\n    this.#offset += length\n    return new Uint8Array(result)\n  }\n}\n"
  },
  {
    "path": "packages/pg-protocol/src/buffer-writer.ts",
    "content": "import { byteLengthUtf8 } from './string-utils'\n\nexport class Writer {\n  #bufferView: DataView\n  #offset: number = 5\n\n  readonly #littleEndian = false as const\n  readonly #encoder = new TextEncoder()\n  readonly #headerPosition: number = 0\n  constructor(private size = 256) {\n    this.#bufferView = this.#allocateBuffer(size)\n  }\n\n  #allocateBuffer(size: number): DataView {\n    return new DataView(new ArrayBuffer(size))\n  }\n\n  #ensure(size: number): void {\n    const remaining = this.#bufferView.byteLength - this.#offset\n    if (remaining < size) {\n      const oldBuffer = this.#bufferView.buffer\n      // exponential growth factor of around ~ 1.5\n      // https://stackoverflow.com/questions/2269063/buffer-growth-strategy\n      const newSize = oldBuffer.byteLength + (oldBuffer.byteLength >> 1) + size\n      this.#bufferView = this.#allocateBuffer(newSize)\n      new Uint8Array(this.#bufferView.buffer).set(new Uint8Array(oldBuffer))\n    }\n  }\n\n  public addInt32(num: number): Writer {\n    this.#ensure(4)\n    this.#bufferView.setInt32(this.#offset, num, this.#littleEndian)\n    this.#offset += 4\n    return this\n  }\n\n  public addInt16(num: number): Writer {\n    this.#ensure(2)\n    this.#bufferView.setInt16(this.#offset, num, this.#littleEndian)\n    this.#offset += 2\n    return this\n  }\n\n  public addCString(string: string): Writer {\n    if (string) {\n      // TODO(msfstef): might be faster to extract `addString` code and\n      // ensure length + 1 once rather than length and then +1?\n      this.addString(string)\n    }\n\n    // set null terminator\n    this.#ensure(1)\n    this.#bufferView.setUint8(this.#offset, 0)\n    this.#offset++\n    return this\n  }\n\n  public addString(string: string = ''): Writer {\n    const length = byteLengthUtf8(string)\n    this.#ensure(length)\n    this.#encoder.encodeInto(\n      string,\n      new Uint8Array(this.#bufferView.buffer, this.#offset),\n    )\n    this.#offset += length\n    return this\n  }\n\n  public add(otherBuffer: ArrayBuffer): Writer {\n    this.#ensure(otherBuffer.byteLength)\n    new Uint8Array(this.#bufferView.buffer).set(\n      new Uint8Array(otherBuffer),\n      this.#offset,\n    )\n\n    this.#offset += otherBuffer.byteLength\n    return this\n  }\n\n  #join(code?: number): ArrayBuffer {\n    if (code) {\n      this.#bufferView.setUint8(this.#headerPosition, code)\n      // length is everything in this packet minus the code\n      const length = this.#offset - (this.#headerPosition + 1)\n      this.#bufferView.setInt32(\n        this.#headerPosition + 1,\n        length,\n        this.#littleEndian,\n      )\n    }\n    return this.#bufferView.buffer.slice(code ? 0 : 5, this.#offset)\n  }\n\n  public flush(code?: number): Uint8Array {\n    const result = this.#join(code)\n    this.#offset = 5\n    this.#bufferView = this.#allocateBuffer(this.size)\n    return new Uint8Array(result)\n  }\n}\n"
  },
  {
    "path": "packages/pg-protocol/src/index.ts",
    "content": "export { serialize } from './serializer'\nexport { Parser } from './parser'\nexport * as messages from './messages'\n"
  },
  {
    "path": "packages/pg-protocol/src/messages.ts",
    "content": "import { Mode } from './types'\n\nexport type MessageName =\n  | 'parseComplete'\n  | 'bindComplete'\n  | 'closeComplete'\n  | 'noData'\n  | 'portalSuspended'\n  | 'replicationStart'\n  | 'emptyQuery'\n  | 'copyDone'\n  | 'copyData'\n  | 'rowDescription'\n  | 'parameterDescription'\n  | 'parameterStatus'\n  | 'backendKeyData'\n  | 'notification'\n  | 'readyForQuery'\n  | 'commandComplete'\n  | 'dataRow'\n  | 'copyInResponse'\n  | 'copyOutResponse'\n  | 'authenticationOk'\n  | 'authenticationMD5Password'\n  | 'authenticationCleartextPassword'\n  | 'authenticationSASL'\n  | 'authenticationSASLContinue'\n  | 'authenticationSASLFinal'\n  | 'error'\n  | 'notice'\n\nexport type BackendMessage = {\n  name: MessageName\n  length: number\n}\n\nexport const parseComplete: BackendMessage = {\n  name: 'parseComplete',\n  length: 5,\n}\n\nexport const bindComplete: BackendMessage = {\n  name: 'bindComplete',\n  length: 5,\n}\n\nexport const closeComplete: BackendMessage = {\n  name: 'closeComplete',\n  length: 5,\n}\n\nexport const noData: BackendMessage = {\n  name: 'noData',\n  length: 5,\n}\n\nexport const portalSuspended: BackendMessage = {\n  name: 'portalSuspended',\n  length: 5,\n}\n\nexport const replicationStart: BackendMessage = {\n  name: 'replicationStart',\n  length: 4,\n}\n\nexport const emptyQuery: BackendMessage = {\n  name: 'emptyQuery',\n  length: 4,\n}\n\nexport const copyDone: BackendMessage = {\n  name: 'copyDone',\n  length: 4,\n}\n\nexport class AuthenticationOk implements BackendMessage {\n  public readonly name = 'authenticationOk'\n  constructor(public readonly length: number) {}\n}\n\nexport class AuthenticationCleartextPassword implements BackendMessage {\n  public readonly name = 'authenticationCleartextPassword'\n  constructor(public readonly length: number) {}\n}\n\nexport class AuthenticationMD5Password implements BackendMessage {\n  public readonly name = 'authenticationMD5Password'\n  constructor(\n    public readonly length: number,\n    public readonly salt: Uint8Array,\n  ) {}\n}\n\nexport class AuthenticationSASL implements BackendMessage {\n  public readonly name = 'authenticationSASL'\n  constructor(\n    public readonly length: number,\n    public readonly mechanisms: string[],\n  ) {}\n}\n\nexport class AuthenticationSASLContinue implements BackendMessage {\n  public readonly name = 'authenticationSASLContinue'\n  constructor(\n    public readonly length: number,\n    public readonly data: string,\n  ) {}\n}\n\nexport class AuthenticationSASLFinal implements BackendMessage {\n  public readonly name = 'authenticationSASLFinal'\n  constructor(\n    public readonly length: number,\n    public readonly data: string,\n  ) {}\n}\n\nexport type AuthenticationMessage =\n  | AuthenticationOk\n  | AuthenticationCleartextPassword\n  | AuthenticationMD5Password\n  | AuthenticationSASL\n  | AuthenticationSASLContinue\n  | AuthenticationSASLFinal\n\ninterface NoticeOrError {\n  message: string | undefined\n  severity: string | undefined\n  code: string | undefined\n  detail: string | undefined\n  hint: string | undefined\n  position: string | undefined\n  internalPosition: string | undefined\n  internalQuery: string | undefined\n  where: string | undefined\n  schema: string | undefined\n  table: string | undefined\n  column: string | undefined\n  dataType: string | undefined\n  constraint: string | undefined\n  file: string | undefined\n  line: string | undefined\n  routine: string | undefined\n}\n\nexport class DatabaseError extends Error implements NoticeOrError {\n  public severity: string | undefined\n  public code: string | undefined\n  public detail: string | undefined\n  public hint: string | undefined\n  public position: string | undefined\n  public internalPosition: string | undefined\n  public internalQuery: string | undefined\n  public where: string | undefined\n  public schema: string | undefined\n  public table: string | undefined\n  public column: string | undefined\n  public dataType: string | undefined\n  public constraint: string | undefined\n  public file: string | undefined\n  public line: string | undefined\n  public routine: string | undefined\n  constructor(\n    message: string,\n    public readonly length: number,\n    public readonly name: MessageName,\n  ) {\n    super(message)\n  }\n}\n\nexport class CopyDataMessage implements BackendMessage {\n  public readonly name = 'copyData'\n  constructor(\n    public readonly length: number,\n    public readonly chunk: Uint8Array,\n  ) {}\n}\n\nexport class CopyResponse implements BackendMessage {\n  public readonly columnTypes: number[]\n  constructor(\n    public readonly length: number,\n    public readonly name: MessageName,\n    public readonly binary: boolean,\n    columnCount: number,\n  ) {\n    this.columnTypes = new Array(columnCount)\n  }\n}\n\nexport class Field {\n  constructor(\n    public readonly name: string,\n    public readonly tableID: number,\n    public readonly columnID: number,\n    public readonly dataTypeID: number,\n    public readonly dataTypeSize: number,\n    public readonly dataTypeModifier: number,\n    public readonly format: Mode,\n  ) {}\n}\n\nexport class RowDescriptionMessage implements BackendMessage {\n  public readonly name: MessageName = 'rowDescription'\n  public readonly fields: Field[]\n  constructor(\n    public readonly length: number,\n    public readonly fieldCount: number,\n  ) {\n    this.fields = new Array(this.fieldCount)\n  }\n}\n\nexport class ParameterDescriptionMessage implements BackendMessage {\n  public readonly name: MessageName = 'parameterDescription'\n  public readonly dataTypeIDs: number[]\n  constructor(\n    public readonly length: number,\n    public readonly parameterCount: number,\n  ) {\n    this.dataTypeIDs = new Array(this.parameterCount)\n  }\n}\n\nexport class ParameterStatusMessage implements BackendMessage {\n  public readonly name: MessageName = 'parameterStatus'\n  constructor(\n    public readonly length: number,\n    public readonly parameterName: string,\n    public readonly parameterValue: string,\n  ) {}\n}\n\nexport class BackendKeyDataMessage implements BackendMessage {\n  public readonly name: MessageName = 'backendKeyData'\n  constructor(\n    public readonly length: number,\n    public readonly processID: number,\n    public readonly secretKey: number,\n  ) {}\n}\n\nexport class NotificationResponseMessage implements BackendMessage {\n  public readonly name: MessageName = 'notification'\n  constructor(\n    public readonly length: number,\n    public readonly processId: number,\n    public readonly channel: string,\n    public readonly payload: string,\n  ) {}\n}\n\nexport class ReadyForQueryMessage implements BackendMessage {\n  public readonly name: MessageName = 'readyForQuery'\n  constructor(\n    public readonly length: number,\n    public readonly status: string,\n  ) {}\n}\n\nexport class CommandCompleteMessage implements BackendMessage {\n  public readonly name: MessageName = 'commandComplete'\n  constructor(\n    public readonly length: number,\n    public readonly text: string,\n  ) {}\n}\n\nexport class DataRowMessage implements BackendMessage {\n  public readonly fieldCount: number\n  public readonly name: MessageName = 'dataRow'\n  constructor(\n    public length: number,\n    public fields: (string | null)[],\n  ) {\n    this.fieldCount = fields.length\n  }\n}\n\nexport class NoticeMessage implements BackendMessage, NoticeOrError {\n  constructor(\n    public readonly length: number,\n    public readonly message: string | undefined,\n  ) {}\n  public readonly name = 'notice'\n  public severity: string | undefined\n  public code: string | undefined\n  public detail: string | undefined\n  public hint: string | undefined\n  public position: string | undefined\n  public internalPosition: string | undefined\n  public internalQuery: string | undefined\n  public where: string | undefined\n  public schema: string | undefined\n  public table: string | undefined\n  public column: string | undefined\n  public dataType: string | undefined\n  public constraint: string | undefined\n  public file: string | undefined\n  public line: string | undefined\n  public routine: string | undefined\n}\n"
  },
  {
    "path": "packages/pg-protocol/src/parser.ts",
    "content": "import {\n  bindComplete,\n  parseComplete,\n  closeComplete,\n  noData,\n  portalSuspended,\n  copyDone,\n  replicationStart,\n  emptyQuery,\n  ReadyForQueryMessage,\n  CommandCompleteMessage,\n  CopyDataMessage,\n  CopyResponse,\n  NotificationResponseMessage,\n  RowDescriptionMessage,\n  ParameterDescriptionMessage,\n  Field,\n  DataRowMessage,\n  ParameterStatusMessage,\n  BackendKeyDataMessage,\n  DatabaseError,\n  BackendMessage,\n  MessageName,\n  NoticeMessage,\n  AuthenticationMessage,\n  AuthenticationOk,\n  AuthenticationCleartextPassword,\n  AuthenticationMD5Password,\n  AuthenticationSASL,\n  AuthenticationSASLContinue,\n  AuthenticationSASLFinal,\n} from './messages'\nimport { BufferParameter, Modes } from './types'\nimport { BufferReader } from './buffer-reader'\n\n// every message is prefixed with a single bye\nconst CODE_LENGTH = 1 as const\n// every message has an int32 length which includes itself but does\n// NOT include the code in the length\nconst LEN_LENGTH = 4 as const\n\nconst HEADER_LENGTH = CODE_LENGTH + LEN_LENGTH\n\nexport type Packet = {\n  code: number\n  packet: ArrayBuffer\n}\n\nconst emptyBuffer = new ArrayBuffer(0)\n\nconst enum MessageCodes {\n  DataRow = 0x44, // D\n  ParseComplete = 0x31, // 1\n  BindComplete = 0x32, // 2\n  CloseComplete = 0x33, // 3\n  CommandComplete = 0x43, // C\n  ReadyForQuery = 0x5a, // Z\n  NoData = 0x6e, // n\n  NotificationResponse = 0x41, // A\n  AuthenticationResponse = 0x52, // R\n  ParameterStatus = 0x53, // S\n  BackendKeyData = 0x4b, // K\n  ErrorMessage = 0x45, // E\n  NoticeMessage = 0x4e, // N\n  RowDescriptionMessage = 0x54, // T\n  ParameterDescriptionMessage = 0x74, // t\n  PortalSuspended = 0x73, // s\n  ReplicationStart = 0x57, // W\n  EmptyQuery = 0x49, // I\n  CopyIn = 0x47, // G\n  CopyOut = 0x48, // H\n  CopyDone = 0x63, // c\n  CopyData = 0x64, // d\n}\n\nexport type MessageCallback = (msg: BackendMessage) => void\n\nexport class Parser {\n  #bufferView: DataView = new DataView(emptyBuffer)\n  #bufferRemainingLength: number = 0\n  #bufferOffset: number = 0\n  #reader = new BufferReader()\n\n  public parse(buffer: BufferParameter, callback: MessageCallback) {\n    this.#mergeBuffer(\n      ArrayBuffer.isView(buffer)\n        ? buffer.buffer.slice(\n            buffer.byteOffset,\n            buffer.byteOffset + buffer.byteLength,\n          )\n        : buffer,\n    )\n    const bufferFullLength = this.#bufferOffset + this.#bufferRemainingLength\n    let offset = this.#bufferOffset\n    while (offset + HEADER_LENGTH <= bufferFullLength) {\n      // code is 1 byte long - it identifies the message type\n      const code = this.#bufferView.getUint8(offset)\n      // length is 1 Uint32BE - it is the length of the message EXCLUDING the code\n      const length = this.#bufferView.getUint32(offset + CODE_LENGTH, false)\n      const fullMessageLength = CODE_LENGTH + length\n      if (fullMessageLength + offset <= bufferFullLength && length > 0) {\n        const message = this.#handlePacket(\n          offset + HEADER_LENGTH,\n          code,\n          length,\n          this.#bufferView.buffer,\n        )\n        callback(message)\n        offset += fullMessageLength\n      } else {\n        break\n      }\n    }\n    if (offset === bufferFullLength) {\n      // No more use for the buffer\n      this.#bufferView = new DataView(emptyBuffer)\n      this.#bufferRemainingLength = 0\n      this.#bufferOffset = 0\n    } else {\n      // Adjust the cursors of remainingBuffer\n      this.#bufferRemainingLength = bufferFullLength - offset\n      this.#bufferOffset = offset\n    }\n  }\n\n  #mergeBuffer(buffer: ArrayBuffer): void {\n    if (this.#bufferRemainingLength > 0) {\n      const newLength = this.#bufferRemainingLength + buffer.byteLength\n      const newFullLength = newLength + this.#bufferOffset\n      if (newFullLength > this.#bufferView.byteLength) {\n        // We can't concat the new buffer with the remaining one\n        let newBuffer: ArrayBuffer\n        if (\n          newLength <= this.#bufferView.byteLength &&\n          this.#bufferOffset >= this.#bufferRemainingLength\n        ) {\n          // We can move the relevant part to the beginning of the buffer instead of allocating a new buffer\n          newBuffer = this.#bufferView.buffer\n        } else {\n          // Allocate a new larger buffer\n          let newBufferLength = this.#bufferView.byteLength * 2\n          while (newLength >= newBufferLength) {\n            newBufferLength *= 2\n          }\n          newBuffer = new ArrayBuffer(newBufferLength)\n        }\n        // Move the remaining buffer to the new one\n        new Uint8Array(newBuffer).set(\n          new Uint8Array(\n            this.#bufferView.buffer,\n            this.#bufferOffset,\n            this.#bufferRemainingLength,\n          ),\n        )\n        this.#bufferView = new DataView(newBuffer)\n        this.#bufferOffset = 0\n      }\n\n      // Concat the new buffer with the remaining one\n      new Uint8Array(this.#bufferView.buffer).set(\n        new Uint8Array(buffer),\n        this.#bufferOffset + this.#bufferRemainingLength,\n      )\n      this.#bufferRemainingLength = newLength\n    } else {\n      this.#bufferView = new DataView(buffer)\n      this.#bufferOffset = 0\n      this.#bufferRemainingLength = buffer.byteLength\n    }\n  }\n\n  #handlePacket(\n    offset: number,\n    code: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ): BackendMessage {\n    switch (code) {\n      case MessageCodes.BindComplete:\n        return bindComplete\n      case MessageCodes.ParseComplete:\n        return parseComplete\n      case MessageCodes.CloseComplete:\n        return closeComplete\n      case MessageCodes.NoData:\n        return noData\n      case MessageCodes.PortalSuspended:\n        return portalSuspended\n      case MessageCodes.CopyDone:\n        return copyDone\n      case MessageCodes.ReplicationStart:\n        return replicationStart\n      case MessageCodes.EmptyQuery:\n        return emptyQuery\n      case MessageCodes.DataRow:\n        return this.#parseDataRowMessage(offset, length, bytes)\n      case MessageCodes.CommandComplete:\n        return this.#parseCommandCompleteMessage(offset, length, bytes)\n      case MessageCodes.ReadyForQuery:\n        return this.#parseReadyForQueryMessage(offset, length, bytes)\n      case MessageCodes.NotificationResponse:\n        return this.#parseNotificationMessage(offset, length, bytes)\n      case MessageCodes.AuthenticationResponse:\n        return this.#parseAuthenticationResponse(offset, length, bytes)\n      case MessageCodes.ParameterStatus:\n        return this.#parseParameterStatusMessage(offset, length, bytes)\n      case MessageCodes.BackendKeyData:\n        return this.#parseBackendKeyData(offset, length, bytes)\n      case MessageCodes.ErrorMessage:\n        return this.#parseErrorMessage(offset, length, bytes, 'error')\n      case MessageCodes.NoticeMessage:\n        return this.#parseErrorMessage(offset, length, bytes, 'notice')\n      case MessageCodes.RowDescriptionMessage:\n        return this.#parseRowDescriptionMessage(offset, length, bytes)\n      case MessageCodes.ParameterDescriptionMessage:\n        return this.#parseParameterDescriptionMessage(offset, length, bytes)\n      case MessageCodes.CopyIn:\n        return this.#parseCopyInMessage(offset, length, bytes)\n      case MessageCodes.CopyOut:\n        return this.#parseCopyOutMessage(offset, length, bytes)\n      case MessageCodes.CopyData:\n        return this.#parseCopyData(offset, length, bytes)\n      default:\n        return new DatabaseError(\n          'received invalid response: ' + code.toString(16),\n          length,\n          'error',\n        )\n    }\n  }\n\n  #parseReadyForQueryMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const status = this.#reader.string(1)\n    return new ReadyForQueryMessage(length, status)\n  }\n\n  #parseCommandCompleteMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const text = this.#reader.cstring()\n    return new CommandCompleteMessage(length, text)\n  }\n\n  #parseCopyData(offset: number, length: number, bytes: ArrayBuffer) {\n    const chunk = bytes.slice(offset, offset + (length - 4))\n    return new CopyDataMessage(length, new Uint8Array(chunk))\n  }\n\n  #parseCopyInMessage(offset: number, length: number, bytes: ArrayBuffer) {\n    return this.#parseCopyMessage(offset, length, bytes, 'copyInResponse')\n  }\n\n  #parseCopyOutMessage(offset: number, length: number, bytes: ArrayBuffer) {\n    return this.#parseCopyMessage(offset, length, bytes, 'copyOutResponse')\n  }\n\n  #parseCopyMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n    messageName: MessageName,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const isBinary = this.#reader.byte() !== 0\n    const columnCount = this.#reader.int16()\n    const message = new CopyResponse(length, messageName, isBinary, columnCount)\n    for (let i = 0; i < columnCount; i++) {\n      message.columnTypes[i] = this.#reader.int16()\n    }\n    return message\n  }\n\n  #parseNotificationMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const processId = this.#reader.int32()\n    const channel = this.#reader.cstring()\n    const payload = this.#reader.cstring()\n    return new NotificationResponseMessage(length, processId, channel, payload)\n  }\n\n  #parseRowDescriptionMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const fieldCount = this.#reader.int16()\n    const message = new RowDescriptionMessage(length, fieldCount)\n    for (let i = 0; i < fieldCount; i++) {\n      message.fields[i] = this.#parseField()\n    }\n    return message\n  }\n\n  #parseField(): Field {\n    const name = this.#reader.cstring()\n    const tableID = this.#reader.int32()\n    const columnID = this.#reader.int16()\n    const dataTypeID = this.#reader.int32()\n    const dataTypeSize = this.#reader.int16()\n    const dataTypeModifier = this.#reader.int32()\n    const mode = this.#reader.int16() === 0 ? Modes.text : Modes.binary\n    return new Field(\n      name,\n      tableID,\n      columnID,\n      dataTypeID,\n      dataTypeSize,\n      dataTypeModifier,\n      mode,\n    )\n  }\n\n  #parseParameterDescriptionMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const parameterCount = this.#reader.int16()\n    const message = new ParameterDescriptionMessage(length, parameterCount)\n    for (let i = 0; i < parameterCount; i++) {\n      message.dataTypeIDs[i] = this.#reader.int32()\n    }\n    return message\n  }\n\n  #parseDataRowMessage(offset: number, length: number, bytes: ArrayBuffer) {\n    this.#reader.setBuffer(offset, bytes)\n    const fieldCount = this.#reader.int16()\n    const fields: (string | null)[] = new Array(fieldCount)\n    for (let i = 0; i < fieldCount; i++) {\n      const len = this.#reader.int32()\n      // a -1 for length means the value of the field is null\n      fields[i] = len === -1 ? null : this.#reader.string(len)\n    }\n    return new DataRowMessage(length, fields)\n  }\n\n  #parseParameterStatusMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const name = this.#reader.cstring()\n    const value = this.#reader.cstring()\n    return new ParameterStatusMessage(length, name, value)\n  }\n\n  #parseBackendKeyData(offset: number, length: number, bytes: ArrayBuffer) {\n    this.#reader.setBuffer(offset, bytes)\n    const processID = this.#reader.int32()\n    const secretKey = this.#reader.int32()\n    return new BackendKeyDataMessage(length, processID, secretKey)\n  }\n\n  #parseAuthenticationResponse(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n  ): AuthenticationMessage {\n    this.#reader.setBuffer(offset, bytes)\n    const code = this.#reader.int32()\n    switch (code) {\n      case 0:\n        return new AuthenticationOk(length)\n      case 3:\n        return new AuthenticationCleartextPassword(length)\n\n      case 5:\n        return new AuthenticationMD5Password(length, this.#reader.bytes(4))\n\n      case 10: {\n        const mechanisms: string[] = []\n        while (true) {\n          const mechanism = this.#reader.cstring()\n          if (mechanism.length === 0) {\n            return new AuthenticationSASL(length, mechanisms)\n          }\n          mechanisms.push(mechanism)\n        }\n      }\n      case 11:\n        return new AuthenticationSASLContinue(\n          length,\n          this.#reader.string(length - 8),\n        )\n\n      case 12:\n        return new AuthenticationSASLFinal(\n          length,\n          this.#reader.string(length - 8),\n        )\n\n      default:\n        throw new Error('Unknown authenticationOk message type ' + code)\n    }\n  }\n\n  #parseErrorMessage(\n    offset: number,\n    length: number,\n    bytes: ArrayBuffer,\n    name: MessageName,\n  ) {\n    this.#reader.setBuffer(offset, bytes)\n    const fields: Record<string, string> = {}\n    let fieldType = this.#reader.string(1)\n    while (fieldType !== '\\0') {\n      fields[fieldType] = this.#reader.cstring()\n      fieldType = this.#reader.string(1)\n    }\n\n    const messageValue = fields.M\n\n    const message =\n      name === 'notice'\n        ? new NoticeMessage(length, messageValue)\n        : new DatabaseError(messageValue, length, name)\n\n    message.severity = fields.S\n    message.code = fields.C\n    message.detail = fields.D\n    message.hint = fields.H\n    message.position = fields.P\n    message.internalPosition = fields.p\n    message.internalQuery = fields.q\n    message.where = fields.W\n    message.schema = fields.s\n    message.table = fields.t\n    message.column = fields.c\n    message.dataType = fields.d\n    message.constraint = fields.n\n    message.file = fields.F\n    message.line = fields.L\n    message.routine = fields.R\n    return message\n  }\n}\n"
  },
  {
    "path": "packages/pg-protocol/src/serializer.ts",
    "content": "import { Writer } from './buffer-writer'\nimport { byteLengthUtf8 } from './string-utils'\n\nconst enum code {\n  startup = 0x70,\n  query = 0x51,\n  parse = 0x50,\n  bind = 0x42,\n  execute = 0x45,\n  flush = 0x48,\n  sync = 0x53,\n  end = 0x58,\n  close = 0x43,\n  describe = 0x44,\n  copyFromChunk = 0x64,\n  copyDone = 0x63,\n  copyFail = 0x66,\n}\n\ntype LegalValue = string | ArrayBuffer | ArrayBufferView | null\n\nconst writer = new Writer()\n\nconst startup = (opts: Record<string, string>): Uint8Array => {\n  // protocol version\n  writer.addInt16(3).addInt16(0)\n  for (const key of Object.keys(opts)) {\n    writer.addCString(key).addCString(opts[key])\n  }\n\n  writer.addCString('client_encoding').addCString('UTF8')\n\n  const bodyBuffer = writer.addCString('').flush()\n  // this message is sent without a code\n\n  const length = bodyBuffer.byteLength + 4\n\n  return new Writer().addInt32(length).add(bodyBuffer).flush()\n}\n\nconst requestSsl = (): Uint8Array => {\n  const bufferView = new DataView(new ArrayBuffer(8))\n  bufferView.setInt32(0, 8, false)\n  bufferView.setInt32(4, 80877103, false)\n  return new Uint8Array(bufferView.buffer)\n}\n\nconst password = (password: string): Uint8Array => {\n  return writer.addCString(password).flush(code.startup)\n}\n\nconst sendSASLInitialResponseMessage = (\n  mechanism: string,\n  initialResponse: string,\n): Uint8Array => {\n  // 0x70 = 'p'\n  writer\n    .addCString(mechanism)\n    .addInt32(byteLengthUtf8(initialResponse))\n    .addString(initialResponse)\n\n  return writer.flush(code.startup)\n}\n\nconst sendSCRAMClientFinalMessage = (additionalData: string): Uint8Array => {\n  return writer.addString(additionalData).flush(code.startup)\n}\n\nconst query = (text: string): Uint8Array => {\n  return writer.addCString(text).flush(code.query)\n}\n\ntype ParseOpts = {\n  name?: string\n  types?: number[]\n  text: string\n}\n\nconst emptyValueArray: LegalValue[] = []\n\nconst parse = (query: ParseOpts): Uint8Array => {\n  // expect something like this:\n  // { name: 'queryName',\n  //   text: 'select * from blah',\n  //   types: ['int8', 'bool'] }\n\n  // normalize missing query names to allow for null\n  const name = query.name ?? ''\n  if (name.length > 63) {\n    /* eslint-disable no-console */\n    console.error(\n      'Warning! Postgres only supports 63 characters for query names.',\n    )\n    console.error('You supplied %s (%s)', name, name.length)\n    console.error(\n      'This can cause conflicts and silent errors executing queries',\n    )\n    /* eslint-enable no-console */\n  }\n\n  const buffer = writer\n    .addCString(name) // name of query\n    .addCString(query.text) // actual query text\n    .addInt16(query.types?.length ?? 0)\n\n  query.types?.forEach((type) => buffer.addInt32(type))\n\n  return writer.flush(code.parse)\n}\n\ntype ValueMapper = (param: unknown, index: number) => LegalValue\n\ntype BindOpts = {\n  portal?: string\n  binary?: boolean\n  statement?: string\n  values?: LegalValue[]\n  // optional map from JS value to postgres value per parameter\n  valueMapper?: ValueMapper\n}\n\nconst paramWriter = new Writer()\n\n// make this a const enum so typescript will inline the value\nconst enum ParamType {\n  STRING = 0,\n  BINARY = 1,\n}\n\nconst writeValues = (values: LegalValue[], valueMapper?: ValueMapper): void => {\n  for (let i = 0; i < values.length; i++) {\n    const mappedVal = valueMapper ? valueMapper(values[i], i) : values[i]\n    if (mappedVal === null) {\n      // add the param type (string) to the writer\n      writer.addInt16(ParamType.STRING)\n      // write -1 to the param writer to indicate null\n      paramWriter.addInt32(-1)\n    } else if (\n      mappedVal instanceof ArrayBuffer ||\n      ArrayBuffer.isView(mappedVal)\n    ) {\n      const buffer = ArrayBuffer.isView(mappedVal)\n        ? mappedVal.buffer.slice(\n            mappedVal.byteOffset,\n            mappedVal.byteOffset + mappedVal.byteLength,\n          )\n        : mappedVal\n      // add the param type (binary) to the writer\n      writer.addInt16(ParamType.BINARY)\n      // add the buffer to the param writer\n      paramWriter.addInt32(buffer.byteLength)\n      paramWriter.add(buffer)\n    } else {\n      // add the param type (string) to the writer\n      writer.addInt16(ParamType.STRING)\n      paramWriter.addInt32(byteLengthUtf8(mappedVal))\n      paramWriter.addString(mappedVal)\n    }\n  }\n}\n\nconst bind = (config: BindOpts = {}): Uint8Array => {\n  // normalize config\n  const portal = config.portal ?? ''\n  const statement = config.statement ?? ''\n  const binary = config.binary ?? false\n  const values = config.values ?? emptyValueArray\n  const len = values.length\n\n  writer.addCString(portal).addCString(statement)\n  writer.addInt16(len)\n\n  writeValues(values, config.valueMapper)\n\n  writer.addInt16(len)\n  writer.add(paramWriter.flush())\n\n  // format code\n  writer.addInt16(binary ? ParamType.BINARY : ParamType.STRING)\n  return writer.flush(code.bind)\n}\n\ntype ExecOpts = {\n  portal?: string\n  rows?: number\n}\n\nconst emptyExecute = new Uint8Array([\n  code.execute,\n  0x00,\n  0x00,\n  0x00,\n  0x09,\n  0x00,\n  0x00,\n  0x00,\n  0x00,\n  0x00,\n])\n\nconst execute = (config?: ExecOpts): Uint8Array => {\n  // this is the happy path for most queries\n  if (!config || (!config.portal && !config.rows)) {\n    return emptyExecute\n  }\n\n  const portal = config.portal ?? ''\n  const rows = config.rows ?? 0\n\n  const portalLength = byteLengthUtf8(portal)\n  const len = 4 + portalLength + 1 + 4\n  // one extra bit for code\n  const bufferView = new DataView(new ArrayBuffer(1 + len))\n  bufferView.setUint8(0, code.execute)\n  bufferView.setInt32(1, len, false)\n  new TextEncoder().encodeInto(portal, new Uint8Array(bufferView.buffer, 5))\n  bufferView.setUint8(portalLength + 5, 0) // null terminate portal cString\n  bufferView.setUint32(bufferView.byteLength - 4, rows, false)\n  return new Uint8Array(bufferView.buffer)\n}\n\nconst cancel = (processID: number, secretKey: number): Uint8Array => {\n  const bufferView = new DataView(new ArrayBuffer(16))\n  bufferView.setInt32(0, 16, false)\n  bufferView.setInt16(4, 1234, false)\n  bufferView.setInt16(6, 5678, false)\n  bufferView.setInt32(8, processID, false)\n  bufferView.setInt32(12, secretKey, false)\n  return new Uint8Array(bufferView.buffer)\n}\n\ntype PortalOpts = {\n  type: 'S' | 'P'\n  name?: string\n}\n\nconst cstringMessage = (code: code, string: string): Uint8Array => {\n  const writer = new Writer()\n  writer.addCString(string)\n  return writer.flush(code)\n}\n\nconst emptyDescribePortal = writer.addCString('P').flush(code.describe)\nconst emptyDescribeStatement = writer.addCString('S').flush(code.describe)\n\nconst describe = (msg: PortalOpts): Uint8Array => {\n  return msg.name\n    ? cstringMessage(code.describe, `${msg.type}${msg.name ?? ''}`)\n    : msg.type === 'P'\n      ? emptyDescribePortal\n      : emptyDescribeStatement\n}\n\nconst close = (msg: PortalOpts): Uint8Array => {\n  const text = `${msg.type}${msg.name ?? ''}`\n  return cstringMessage(code.close, text)\n}\n\nconst copyData = (chunk: ArrayBuffer): Uint8Array => {\n  return writer.add(chunk).flush(code.copyFromChunk)\n}\n\nconst copyFail = (message: string): Uint8Array => {\n  return cstringMessage(code.copyFail, message)\n}\n\nconst codeOnlyBuffer = (code: code): Uint8Array =>\n  new Uint8Array([code, 0x00, 0x00, 0x00, 0x04])\n\nconst flushBuffer = codeOnlyBuffer(code.flush)\nconst syncBuffer = codeOnlyBuffer(code.sync)\nconst endBuffer = codeOnlyBuffer(code.end)\nconst copyDoneBuffer = codeOnlyBuffer(code.copyDone)\n\nconst serialize = {\n  startup,\n  password,\n  requestSsl,\n  sendSASLInitialResponseMessage,\n  sendSCRAMClientFinalMessage,\n  query,\n  parse,\n  bind,\n  execute,\n  describe,\n  close,\n  flush: () => flushBuffer,\n  sync: () => syncBuffer,\n  end: () => endBuffer,\n  copyData,\n  copyDone: () => copyDoneBuffer,\n  copyFail,\n  cancel,\n}\n\nexport { serialize }\n"
  },
  {
    "path": "packages/pg-protocol/src/string-utils.ts",
    "content": "/**\n * Calculates the byte length of a UTF-8 encoded string\n * Adapted from https://stackoverflow.com/a/23329386\n * @param str - UTF-8 encoded string\n * @returns byte length of string\n */\nfunction byteLengthUtf8(str: string): number {\n  let byteLength = str.length\n  for (let i = str.length - 1; i >= 0; i--) {\n    const code = str.charCodeAt(i)\n    if (code > 0x7f && code <= 0x7ff) byteLength++\n    else if (code > 0x7ff && code <= 0xffff) byteLength += 2\n    if (code >= 0xdc00 && code <= 0xdfff) i-- // trail surrogate\n  }\n  return byteLength\n}\n\nexport { byteLengthUtf8 }\n"
  },
  {
    "path": "packages/pg-protocol/src/types.ts",
    "content": "export const Modes = {\n  text: 0,\n  binary: 1,\n} as const\n\nexport type Mode = (typeof Modes)[keyof typeof Modes]\n\nexport type BufferParameter = ArrayBuffer | ArrayBufferView\n"
  },
  {
    "path": "packages/pg-protocol/test/inbound-parser.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport buffers from './testing/test-buffers'\nimport BufferList from './testing/buffer-list'\nimport { Parser } from '../src'\nimport { Modes } from '../src/types'\nimport {\n  AuthenticationMessage,\n  BackendKeyDataMessage,\n  BackendMessage,\n  CommandCompleteMessage,\n  DataRowMessage,\n  NotificationResponseMessage,\n  ParameterDescriptionMessage,\n  ParameterStatusMessage,\n  ReadyForQueryMessage,\n  RowDescriptionMessage,\n} from '../src/messages'\n\nconst authOkBuffer = buffers.authenticationOk()\nconst paramStatusBuffer = buffers.parameterStatus('client_encoding', 'UTF8')\nconst readyForQueryBuffer = buffers.readyForQuery()\nconst backendKeyDataBuffer = buffers.backendKeyData(1, 2)\nconst commandCompleteBuffer = buffers.commandComplete('SELECT 3')\nconst parseCompleteBuffer = buffers.parseComplete()\nconst bindCompleteBuffer = buffers.bindComplete()\nconst portalSuspendedBuffer = buffers.portalSuspended()\n\nconst row1 = {\n  name: 'id',\n  tableID: 1,\n  columnID: 2,\n  dataTypeID: 3,\n  dataTypeSize: 4,\n  dataTypeModifier: 5,\n  format: Modes.text,\n}\nconst oneRowDescBuff = buffers.rowDescription([row1])\nrow1.name = 'bang'\n\nconst twoRowBuf = buffers.rowDescription([\n  row1,\n  {\n    name: 'whoah',\n    tableID: 10,\n    columnID: 11,\n    dataTypeID: 12,\n    dataTypeSize: 13,\n    dataTypeModifier: 14,\n    format: Modes.text,\n  },\n])\n\nconst emptyRowFieldBuf = buffers.dataRow([])\n\nconst oneFieldBuf = buffers.dataRow(['test'])\n\nconst expectedAuthenticationOkayMessage: BackendMessage = {\n  name: 'authenticationOk',\n  length: 8,\n}\n\nconst expectedParameterStatusMessage: ParameterStatusMessage = {\n  name: 'parameterStatus',\n  parameterName: 'client_encoding',\n  parameterValue: 'UTF8',\n  length: 25,\n}\n\nconst expectedBackendKeyDataMessage: BackendKeyDataMessage = {\n  name: 'backendKeyData',\n  processID: 1,\n  secretKey: 2,\n  length: 12,\n}\n\nconst expectedReadyForQueryMessage: ReadyForQueryMessage = {\n  name: 'readyForQuery',\n  length: 5,\n  status: 'I',\n}\n\nconst expectedCommandCompleteMessage: CommandCompleteMessage = {\n  name: 'commandComplete',\n  length: 13,\n  text: 'SELECT 3',\n}\nconst emptyRowDescriptionBuffer = new BufferList()\n  .addInt16(0) // number of fields\n  .join(true, 'T')\n\nconst expectedEmptyRowDescriptionMessage: RowDescriptionMessage = {\n  name: 'rowDescription',\n  length: 6,\n  fieldCount: 0,\n  fields: [],\n}\nconst expectedOneRowMessage: RowDescriptionMessage = {\n  name: 'rowDescription',\n  length: 27,\n  fieldCount: 1,\n  fields: [\n    {\n      name: 'id',\n      tableID: 1,\n      columnID: 2,\n      dataTypeID: 3,\n      dataTypeSize: 4,\n      dataTypeModifier: 5,\n      format: Modes.text,\n    },\n  ],\n}\n\nconst expectedTwoRowMessage: RowDescriptionMessage = {\n  name: 'rowDescription',\n  length: 53,\n  fieldCount: 2,\n  fields: [\n    {\n      name: 'bang',\n      tableID: 1,\n      columnID: 2,\n      dataTypeID: 3,\n      dataTypeSize: 4,\n      dataTypeModifier: 5,\n      format: Modes.text,\n    },\n    {\n      name: 'whoah',\n      tableID: 10,\n      columnID: 11,\n      dataTypeID: 12,\n      dataTypeSize: 13,\n      dataTypeModifier: 14,\n      format: Modes.text,\n    },\n  ],\n}\n\nconst emptyParameterDescriptionBuffer = new BufferList()\n  .addInt16(0) // number of parameters\n  .join(true, 't')\n\nconst oneParameterDescBuf = buffers.parameterDescription([1111])\n\nconst twoParameterDescBuf = buffers.parameterDescription([2222, 3333])\n\nconst expectedEmptyParameterDescriptionMessage: ParameterDescriptionMessage = {\n  name: 'parameterDescription',\n  length: 6,\n  parameterCount: 0,\n  dataTypeIDs: [],\n}\n\nconst expectedOneParameterMessage: ParameterDescriptionMessage = {\n  name: 'parameterDescription',\n  length: 10,\n  parameterCount: 1,\n  dataTypeIDs: [1111],\n}\n\nconst expectedTwoParameterMessage: ParameterDescriptionMessage = {\n  name: 'parameterDescription',\n  length: 14,\n  parameterCount: 2,\n  dataTypeIDs: [2222, 3333],\n}\n\nfunction testForMessage<T extends BackendMessage>(\n  buffer: ArrayBuffer,\n  expectedMessage: T,\n) {\n  it('recieves and parses ' + expectedMessage.name, async () => {\n    const messages = await parseBuffers([buffer])\n    const [lastMessage] = messages\n\n    for (const key in expectedMessage) {\n      expect((lastMessage as Record<string, unknown>)[key]).toEqual(\n        expectedMessage[key],\n      )\n    }\n  })\n}\n\nconst plainPasswordBuffer = buffers.authenticationCleartextPassword()\nconst md5PasswordBuffer = buffers.authenticationMD5Password()\nconst SASLBuffer = buffers.authenticationSASL()\nconst SASLContinueBuffer = buffers.authenticationSASLContinue()\nconst SASLFinalBuffer = buffers.authenticationSASLFinal()\n\nconst expectedPlainPasswordMessage: AuthenticationMessage = {\n  name: 'authenticationCleartextPassword',\n  length: 8,\n}\n\nconst expectedMD5PasswordMessage: AuthenticationMessage = {\n  name: 'authenticationMD5Password',\n  length: 12,\n  salt: new Uint8Array([1, 2, 3, 4]),\n}\n\nconst expectedSASLMessage: AuthenticationMessage = {\n  name: 'authenticationSASL',\n  length: SASLBuffer.byteLength - 1,\n  mechanisms: ['SCRAM-SHA-256'],\n}\n\nconst expectedSASLContinueMessage: AuthenticationMessage = {\n  name: 'authenticationSASLContinue',\n  length: SASLContinueBuffer.byteLength - 1,\n  data: 'data',\n}\n\nconst expectedSASLFinalMessage: AuthenticationMessage = {\n  name: 'authenticationSASLFinal',\n  length: SASLFinalBuffer.byteLength - 1,\n  data: 'data',\n}\n\nconst notificationResponseBuffer = buffers.notification(4, 'hi', 'boom')\nconst expectedNotificationResponseMessage: NotificationResponseMessage = {\n  name: 'notification',\n  processId: 4,\n  channel: 'hi',\n  payload: 'boom',\n  length: notificationResponseBuffer.byteLength - 1,\n}\n\nconst parseBuffers = async (\n  buffers: ArrayBuffer[],\n): Promise<BackendMessage[]> => {\n  const parser = new Parser()\n  const msgs: BackendMessage[] = []\n  const numBuffers = buffers.length\n\n  await new Promise<void>((res) => {\n    for (let i = 0; i < numBuffers; i++) {\n      const buffer = buffers[i]\n      parser.parse(buffer, (msg) => {\n        msgs.push(msg)\n        if (i === numBuffers - 1) res()\n      })\n    }\n  })\n\n  return msgs\n}\n\nfunction concatBuffers(views: ArrayBufferView[]): Uint8Array {\n  let length = 0\n  for (const v of views) length += v.byteLength\n\n  const buf = new Uint8Array(length)\n  let offset = 0\n  for (const v of views) {\n    const uint8view = new Uint8Array(v.buffer)\n    buf.set(uint8view, offset)\n    offset += uint8view.byteLength\n  }\n\n  return buf\n}\n\ndescribe('PgPacketStream', () => {\n  testForMessage(authOkBuffer, expectedAuthenticationOkayMessage)\n  testForMessage(plainPasswordBuffer, expectedPlainPasswordMessage)\n  testForMessage(md5PasswordBuffer, expectedMD5PasswordMessage)\n  testForMessage(SASLBuffer, expectedSASLMessage)\n  testForMessage(SASLContinueBuffer, expectedSASLContinueMessage)\n\n  // this exercises a found bug in the parser:\n  // https://github.com/brianc/node-postgres/pull/2210#issuecomment-627626084\n  // and adds a test which is deterministic, rather than relying on network packet chunking\n  const extendedSASLContinueBuffer = concatBuffers([\n    SASLContinueBuffer,\n    new Uint8Array([1, 2, 3, 4]),\n  ])\n  testForMessage(extendedSASLContinueBuffer, expectedSASLContinueMessage)\n\n  testForMessage(SASLFinalBuffer, expectedSASLFinalMessage)\n\n  // this exercises a found bug in the parser:\n  // https://github.com/brianc/node-postgres/pull/2210#issuecomment-627626084\n  // and adds a test which is deterministic, rather than relying on network packet chunking\n  const extendedSASLFinalBuffer = concatBuffers([\n    SASLFinalBuffer,\n    new Uint8Array([1, 2, 4, 5]),\n  ])\n  testForMessage(extendedSASLFinalBuffer, expectedSASLFinalMessage)\n\n  testForMessage(paramStatusBuffer, expectedParameterStatusMessage)\n  testForMessage(backendKeyDataBuffer, expectedBackendKeyDataMessage)\n  testForMessage(readyForQueryBuffer, expectedReadyForQueryMessage)\n  testForMessage(commandCompleteBuffer, expectedCommandCompleteMessage)\n  testForMessage(\n    notificationResponseBuffer,\n    expectedNotificationResponseMessage,\n  )\n  testForMessage(buffers.emptyQuery(), {\n    name: 'emptyQuery',\n    length: 4,\n  })\n\n  testForMessage(new Uint8Array([0x6e, 0, 0, 0, 4]).buffer, {\n    name: 'noData',\n    length: 5,\n  })\n\n  describe('rowDescription messages', () => {\n    testForMessage(\n      emptyRowDescriptionBuffer,\n      expectedEmptyRowDescriptionMessage,\n    )\n    testForMessage(oneRowDescBuff, expectedOneRowMessage)\n    testForMessage(twoRowBuf, expectedTwoRowMessage)\n  })\n\n  describe('parameterDescription messages', () => {\n    testForMessage(\n      emptyParameterDescriptionBuffer,\n      expectedEmptyParameterDescriptionMessage,\n    )\n    testForMessage(oneParameterDescBuf, expectedOneParameterMessage)\n    testForMessage(twoParameterDescBuf, expectedTwoParameterMessage)\n  })\n\n  describe('parsing rows', () => {\n    describe('parsing empty row', () => {\n      testForMessage(emptyRowFieldBuf, {\n        name: 'dataRow',\n        fieldCount: 0,\n        length: emptyRowFieldBuf.byteLength - 1,\n      })\n    })\n\n    describe('parsing data row with fields', () => {\n      testForMessage(oneFieldBuf, {\n        name: 'dataRow',\n        fieldCount: 1,\n        fields: ['test'],\n        length: oneFieldBuf.byteLength - 1,\n      })\n    })\n  })\n\n  describe('notice message', () => {\n    // this uses the same logic as error message\n    const buff = buffers.notice([{ type: 'C', value: 'code' }])\n    testForMessage(buff, {\n      name: 'notice',\n      code: 'code',\n      length: buff.byteLength - 1,\n    })\n  })\n\n  testForMessage(buffers.error([]), {\n    name: 'error',\n    length: buffers.error([]).byteLength - 1,\n  })\n\n  describe('with all the fields', () => {\n    const buffer = buffers.error([\n      {\n        type: 'S',\n        value: 'ERROR',\n      },\n      {\n        type: 'C',\n        value: 'code',\n      },\n      {\n        type: 'M',\n        value: 'message',\n      },\n      {\n        type: 'D',\n        value: 'details',\n      },\n      {\n        type: 'H',\n        value: 'hint',\n      },\n      {\n        type: 'P',\n        value: '100',\n      },\n      {\n        type: 'p',\n        value: '101',\n      },\n      {\n        type: 'q',\n        value: 'query',\n      },\n      {\n        type: 'W',\n        value: 'where',\n      },\n      {\n        type: 'F',\n        value: 'file',\n      },\n      {\n        type: 'L',\n        value: 'line',\n      },\n      {\n        type: 'R',\n        value: 'routine',\n      },\n      {\n        type: 'Z', // ignored\n        value: 'alsdkf',\n      },\n    ])\n\n    testForMessage(buffer, {\n      name: 'error',\n      severity: 'ERROR',\n      code: 'code',\n      message: 'message',\n      detail: 'details',\n      hint: 'hint',\n      position: '100',\n      internalPosition: '101',\n      internalQuery: 'query',\n      where: 'where',\n      file: 'file',\n      line: 'line',\n      routine: 'routine',\n      length: buffer.byteLength - 1,\n    })\n  })\n\n  testForMessage(parseCompleteBuffer, {\n    name: 'parseComplete',\n    length: 5,\n  })\n\n  testForMessage(bindCompleteBuffer, {\n    name: 'bindComplete',\n    length: 5,\n  })\n\n  testForMessage(buffers.closeComplete(), {\n    name: 'closeComplete',\n    length: 5,\n  })\n\n  describe('parses portal suspended message', () => {\n    testForMessage(portalSuspendedBuffer, {\n      name: 'portalSuspended',\n      length: 5,\n    })\n  })\n\n  describe('parses replication start message', () => {\n    testForMessage(new Uint8Array([0x57, 0x00, 0x00, 0x00, 0x04]), {\n      name: 'replicationStart',\n      length: 4,\n    })\n  })\n\n  describe('copy', () => {\n    testForMessage(buffers.copyIn(0), {\n      name: 'copyInResponse',\n      length: 7,\n      binary: false,\n      columnTypes: [],\n    })\n\n    testForMessage(buffers.copyIn(2), {\n      name: 'copyInResponse',\n      length: 11,\n      binary: false,\n      columnTypes: [0, 1],\n    })\n\n    testForMessage(buffers.copyOut(0), {\n      name: 'copyOutResponse',\n      length: 7,\n      binary: false,\n      columnTypes: [],\n    })\n\n    testForMessage(buffers.copyOut(3), {\n      name: 'copyOutResponse',\n      length: 13,\n      binary: false,\n      columnTypes: [0, 1, 2],\n    })\n\n    testForMessage(buffers.copyDone(), {\n      name: 'copyDone',\n      length: 4,\n    })\n\n    testForMessage(buffers.copyData(new Uint8Array([5, 6, 7])), {\n      name: 'copyData',\n      length: 7,\n      chunk: new Uint8Array([5, 6, 7]),\n    })\n  })\n\n  // since the data message on a stream can randomly divide the incoming\n  // tcp packets anywhere, we need to make sure we can parse every single\n  // split on a tcp message\n  describe('split buffer, single message parsing', () => {\n    const fullBufferView = buffers.dataRow([null, 'bang', 'zug zug', null, '!'])\n    const fullBuffer = fullBufferView.buffer\n\n    it('parses when full buffer comes in', async () => {\n      const messages = await parseBuffers([fullBuffer])\n      const message = messages[0] as DataRowMessage\n      expect(message.fields.length).toBe(5)\n      expect(message.fields[0]).toBe(null)\n      expect(message.fields[1]).toBe('bang')\n      expect(message.fields[2]).toBe('zug zug')\n      expect(message.fields[3]).toBe(null)\n      expect(message.fields[4]).toBe('!')\n    })\n\n    const testMessageRecievedAfterSpiltAt = async (split: number) => {\n      const firstBufferView = new Uint8Array(fullBuffer.byteLength - split)\n      const secondBufferView = new Uint8Array(\n        fullBuffer.byteLength - firstBufferView.byteLength,\n      )\n\n      firstBufferView.set(\n        new Uint8Array(fullBuffer, 0, firstBufferView.byteLength),\n      )\n      secondBufferView.set(\n        new Uint8Array(fullBuffer, firstBufferView.byteLength),\n      )\n\n      const messages = await parseBuffers([fullBuffer])\n      const message = messages[0] as DataRowMessage\n      expect(message.fields.length).toBe(5)\n      expect(message.fields[0]).toBe(null)\n      expect(message.fields[1]).toBe('bang')\n      expect(message.fields[2]).toBe('zug zug')\n      expect(message.fields[3]).toBe(null)\n      expect(message.fields[4]).toBe('!')\n    }\n\n    it('parses when split in the middle', () => {\n      testMessageRecievedAfterSpiltAt(6)\n    })\n\n    it('parses when split at end', () => {\n      testMessageRecievedAfterSpiltAt(2)\n    })\n\n    it('parses when split at beginning', () => {\n      testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 2)\n      testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 1)\n      testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 5)\n    })\n  })\n\n  describe('split buffer, multiple message parsing', () => {\n    const dataRowBuffer = buffers.dataRow(['!'])\n    const readyForQueryBuffer = buffers.readyForQuery()\n    const fullBuffer = new ArrayBuffer(\n      dataRowBuffer.byteLength + readyForQueryBuffer.byteLength,\n    )\n    const fullBufferView = new Uint8Array(fullBuffer)\n    fullBufferView.set(new Uint8Array(dataRowBuffer))\n    fullBufferView.set(\n      new Uint8Array(readyForQueryBuffer),\n      dataRowBuffer.byteLength,\n    )\n\n    function verifyMessages(messages: BackendMessage[]) {\n      expect(messages.length).toBe(2)\n      expect(messages[0]).toEqual({\n        name: 'dataRow',\n        fieldCount: 1,\n        length: 11,\n        fields: ['!'],\n      })\n      expect((messages[0] as DataRowMessage).fields[0]).toBe('!')\n      expect(messages[1]).toEqual({\n        name: 'readyForQuery',\n        length: 5,\n        status: 'I',\n      })\n    }\n    // sanity check\n    it('recieves both messages when packet is not split', async () => {\n      const messages = await parseBuffers([fullBuffer])\n      verifyMessages(messages)\n    })\n\n    const splitAndVerifyTwoMessages = async (split: number) => {\n      const firstBufferView = new Uint8Array(fullBuffer.byteLength - split)\n      const secondBufferView = new Uint8Array(\n        fullBuffer.byteLength - firstBufferView.byteLength,\n      )\n      firstBufferView.set(\n        new Uint8Array(fullBuffer, 0, firstBufferView.byteLength),\n      )\n      secondBufferView.set(\n        new Uint8Array(fullBuffer, firstBufferView.byteLength),\n      )\n\n      const messages = await parseBuffers([\n        firstBufferView.buffer,\n        secondBufferView.buffer,\n      ])\n      verifyMessages(messages)\n    }\n\n    describe('recieves both messages when packet is split', () => {\n      it('in the middle', () => {\n        return splitAndVerifyTwoMessages(11)\n      })\n      it('at the front', () => {\n        return Promise.all([\n          splitAndVerifyTwoMessages(fullBuffer.byteLength - 1),\n          splitAndVerifyTwoMessages(fullBuffer.byteLength - 4),\n          splitAndVerifyTwoMessages(fullBuffer.byteLength - 6),\n        ])\n      })\n\n      it('at the end', () => {\n        return Promise.all([\n          splitAndVerifyTwoMessages(8),\n          splitAndVerifyTwoMessages(1),\n        ])\n      })\n    })\n  })\n\n  describe('buffer view handling', () => {\n    it('should only read buffer section specified by view', async () => {\n      const originalMessageBufferView = buffers.dataRow(['bang'])\n      const largerView = concatBuffers([\n        new Uint8Array([1, 2, 3, 4]),\n        originalMessageBufferView,\n        new Uint8Array([5, 6, 7, 8]),\n      ])\n\n      const fullBufferView = new Uint8Array(\n        largerView.buffer,\n        4,\n        originalMessageBufferView.byteLength,\n      )\n      const messages = await parseBuffers([fullBufferView])\n      expect(messages.length).toBe(1)\n      expect(messages[0]).toEqual({\n        name: 'dataRow',\n        fieldCount: 1,\n        length: originalMessageBufferView.byteLength - 1,\n        fields: ['bang'],\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pg-protocol/test/outbound-serializer.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { serialize } from '../src/serializer'\nimport BufferList from './testing/buffer-list'\n\ndescribe('serializer', () => {\n  it('builds startup message', () => {\n    const actual = serialize.startup({\n      user: 'brian',\n      database: 'bang',\n    })\n    expect(actual).toEqual(\n      new BufferList()\n        .addInt16(3)\n        .addInt16(0)\n        .addCString('user')\n        .addCString('brian')\n        .addCString('database')\n        .addCString('bang')\n        .addCString('client_encoding')\n        .addCString('UTF8')\n        .addCString('')\n        .join(true),\n    )\n  })\n\n  it('builds password message', () => {\n    const actual = serialize.password('!')\n    expect(actual).toEqual(new BufferList().addCString('!').join(true, 'p'))\n  })\n\n  it('builds request ssl message', () => {\n    const actual = serialize.requestSsl()\n    const expected = new BufferList().addInt32(80877103).join(true)\n    expect(actual).toEqual(expected)\n  })\n\n  it('builds SASLInitialResponseMessage message', () => {\n    const actual = serialize.sendSASLInitialResponseMessage('mech', 'data')\n    expect(actual).toEqual(\n      new BufferList()\n        .addCString('mech')\n        .addInt32(4)\n        .addString('data')\n        .join(true, 'p'),\n    )\n  })\n\n  it('builds SCRAMClientFinalMessage message', () => {\n    const actual = serialize.sendSCRAMClientFinalMessage('data')\n    expect(actual).toEqual(new BufferList().addString('data').join(true, 'p'))\n  })\n\n  it('builds query message', () => {\n    const txt = 'select * from boom'\n    const actual = serialize.query(txt)\n    expect(actual).toEqual(new BufferList().addCString(txt).join(true, 'Q'))\n  })\n\n  describe('parse message', () => {\n    it('builds parse message', () => {\n      const actual = serialize.parse({ text: '!' })\n      const expected = new BufferList()\n        .addCString('')\n        .addCString('!')\n        .addInt16(0)\n        .join(true, 'P')\n      expect(actual).toEqual(expected)\n    })\n\n    it('builds parse message with named query', () => {\n      const actual = serialize.parse({\n        name: 'boom',\n        text: 'select * from boom',\n        types: [],\n      })\n      const expected = new BufferList()\n        .addCString('boom')\n        .addCString('select * from boom')\n        .addInt16(0)\n        .join(true, 'P')\n      expect(actual).toEqual(expected)\n    })\n\n    it('with multiple parameters', () => {\n      const actual = serialize.parse({\n        name: 'force',\n        text: 'select * from bang where name = $1',\n        types: [1, 2, 3, 4],\n      })\n      const expected = new BufferList()\n        .addCString('force')\n        .addCString('select * from bang where name = $1')\n        .addInt16(4)\n        .addInt32(1)\n        .addInt32(2)\n        .addInt32(3)\n        .addInt32(4)\n        .join(true, 'P')\n      expect(actual).toEqual(expected)\n    })\n  })\n\n  describe('bind messages', () => {\n    it('with no values', () => {\n      const actual = serialize.bind()\n\n      const expectedBuffer = new BufferList()\n        .addCString('')\n        .addCString('')\n        .addInt16(0)\n        .addInt16(0)\n        .addInt16(0)\n        .join(true, 'B')\n      expect(actual).toEqual(expectedBuffer)\n    })\n\n    it('with named statement, portal, and values', () => {\n      const actual = serialize.bind({\n        portal: 'bang',\n        statement: 'woo',\n        values: ['1', 'hi', null, 'zing'],\n      })\n      const expectedBuffer = new BufferList()\n        .addCString('bang') // portal name\n        .addCString('woo') // statement name\n        .addInt16(4)\n        .addInt16(0)\n        .addInt16(0)\n        .addInt16(0)\n        .addInt16(0)\n        .addInt16(4)\n        .addInt32(1)\n        .add(new TextEncoder().encode('1'))\n        .addInt32(2)\n        .add(new TextEncoder().encode('hi'))\n        .addInt32(-1)\n        .addInt32(4)\n        .add(new TextEncoder().encode('zing'))\n        .addInt16(0)\n        .join(true, 'B')\n      expect(actual).toEqual(expectedBuffer)\n    })\n  })\n\n  it('with custom valueMapper', () => {\n    const actual = serialize.bind({\n      portal: 'bang',\n      statement: 'woo',\n      values: ['1', 'hi', null, 'zing'],\n      valueMapper: () => null,\n    })\n    const expectedBuffer = new BufferList()\n      .addCString('bang') // portal name\n      .addCString('woo') // statement name\n      .addInt16(4)\n      .addInt16(0)\n      .addInt16(0)\n      .addInt16(0)\n      .addInt16(0)\n      .addInt16(4)\n      .addInt32(-1)\n      .addInt32(-1)\n      .addInt32(-1)\n      .addInt32(-1)\n      .addInt16(0)\n      .join(true, 'B')\n    expect(actual).toEqual(expectedBuffer)\n  })\n\n  it('with named statement, portal, and buffer value', () => {\n    const actual = serialize.bind({\n      portal: 'bang',\n      statement: 'woo',\n      values: ['1', 'hi', null, new TextEncoder().encode('zing')],\n    })\n    const expectedBuffer = new BufferList()\n      .addCString('bang') // portal name\n      .addCString('woo') // statement name\n      .addInt16(4) // value count\n      .addInt16(0) // string\n      .addInt16(0) // string\n      .addInt16(0) // string\n      .addInt16(1) // binary\n      .addInt16(4)\n      .addInt32(1)\n      .add(new TextEncoder().encode('1'))\n      .addInt32(2)\n      .add(new TextEncoder().encode('hi'))\n      .addInt32(-1)\n      .addInt32(4)\n      .add(new TextEncoder().encode('zing'))\n      .addInt16(0)\n      .join(true, 'B')\n    expect(actual).toEqual(expectedBuffer)\n  })\n\n  describe('builds execute message', () => {\n    it('for unamed portal with no row limit', () => {\n      const actual = serialize.execute()\n      const expectedBuffer = new BufferList()\n        .addCString('')\n        .addInt32(0)\n        .join(true, 'E')\n      expect(actual).toEqual(expectedBuffer)\n    })\n\n    it('for named portal with row limit', () => {\n      const actual = serialize.execute({\n        portal: 'my favorite portal',\n        rows: 100,\n      })\n      const expectedBuffer = new BufferList()\n        .addCString('my favorite portal')\n        .addInt32(100)\n        .join(true, 'E')\n      expect(actual).toEqual(expectedBuffer)\n    })\n  })\n\n  it('builds flush command', () => {\n    const actual = serialize.flush()\n    const expected = new BufferList().join(true, 'H')\n    expect(actual).toEqual(expected)\n  })\n\n  it('builds sync command', () => {\n    const actual = serialize.sync()\n    const expected = new BufferList().join(true, 'S')\n    expect(actual).toEqual(expected)\n  })\n\n  it('builds end command', () => {\n    const actual = serialize.end()\n    const expected = new Uint8Array([0x58, 0, 0, 0, 4])\n    expect(actual).toEqual(expected)\n  })\n\n  describe('builds describe command', () => {\n    it('describe statement', () => {\n      const actual = serialize.describe({ type: 'S', name: 'bang' })\n      const expected = new BufferList()\n        .addChar('S')\n        .addCString('bang')\n        .join(true, 'D')\n      expect(actual).toEqual(expected)\n    })\n\n    it('describe unnamed portal', () => {\n      const actual = serialize.describe({ type: 'P' })\n      const expected = new BufferList()\n        .addChar('P')\n        .addCString('')\n        .join(true, 'D')\n      expect(actual).toEqual(expected)\n    })\n  })\n\n  describe('builds close command', () => {\n    it('describe statement', () => {\n      const actual = serialize.close({ type: 'S', name: 'bang' })\n      const expected = new BufferList()\n        .addChar('S')\n        .addCString('bang')\n        .join(true, 'C')\n      expect(actual).toEqual(expected)\n    })\n\n    it('describe unnamed portal', () => {\n      const actual = serialize.close({ type: 'P' })\n      const expected = new BufferList()\n        .addChar('P')\n        .addCString('')\n        .join(true, 'C')\n      expect(actual).toEqual(expected)\n    })\n  })\n\n  describe('copy messages', () => {\n    it('builds copyFromChunk', () => {\n      const actual = serialize.copyData(new Uint8Array([1, 2, 3]))\n      const expected = new BufferList()\n        .add(new Uint8Array([1, 2, 3]))\n        .join(true, 'd')\n      expect(actual).toEqual(expected)\n    })\n\n    it('builds copy fail', () => {\n      const actual = serialize.copyFail('err!')\n      const expected = new BufferList().addCString('err!').join(true, 'f')\n      expect(actual).toEqual(expected)\n    })\n\n    it('builds copy done', () => {\n      const actual = serialize.copyDone()\n      const expected = new BufferList().join(true, 'c')\n      expect(actual).toEqual(expected)\n    })\n  })\n\n  it('builds cancel message', () => {\n    const actual = serialize.cancel(3, 4)\n    const expected = new BufferList()\n      .addInt16(1234)\n      .addInt16(5678)\n      .addInt32(3)\n      .addInt32(4)\n      .join(true)\n    expect(actual).toEqual(expected)\n  })\n})\n"
  },
  {
    "path": "packages/pg-protocol/test/string-utils.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { byteLengthUtf8 } from '../src/string-utils' // Adjust the import based on your file structure\n\ndescribe('byteLengthUtf8', () => {\n  it('should return 0 for an empty string', () => {\n    expect(byteLengthUtf8('')).toBe(0)\n  })\n\n  it('should return the correct byte length for ASCII characters', () => {\n    expect(byteLengthUtf8('hello')).toBe(5) // Each character is 1 byte\n  })\n\n  it('should return the correct byte length for extended ASCII characters', () => {\n    expect(byteLengthUtf8('©')).toBe(2) // © is U+00A9, which is 2 bytes in UTF-8\n  })\n\n  it('should return the correct byte length for characters from the BMP', () => {\n    expect(byteLengthUtf8('你好')).toBe(6) // Each character is 3 bytes in UTF-8\n  })\n\n  it('should return the correct byte length for surrogate pairs', () => {\n    expect(byteLengthUtf8('𝄞')).toBe(4) // 𝄞 is U+1D11E, which is 4 bytes in UTF-8\n  })\n\n  it('should handle mixed content correctly', () => {\n    expect(byteLengthUtf8('hello 你好 𝄞')).toBe(17) // 5 + 1 + 6 + 1 + 4 bytes\n  })\n\n  it('should correctly handle emoji characters', () => {\n    expect(byteLengthUtf8('😀')).toBe(4) // 😀 is U+1F600, which is 4 bytes in UTF-8\n  })\n\n  it('should handle complex strings with different languages and symbols', () => {\n    const complexStr = 'The quick brown 🦊 jumps over 13 lazy 🐶! 你好世界'\n    expect(byteLengthUtf8(complexStr)).toBe(58) // Mix of ASCII, emoji, and Chinese characters\n  })\n})\n"
  },
  {
    "path": "packages/pg-protocol/test/testing/buffer-list.ts",
    "content": "import { byteLengthUtf8 } from '../../src/string-utils'\n\nexport default class BufferList {\n  constructor(public buffers: ArrayBuffer[] = []) {}\n\n  public add(buffer: ArrayBuffer, front?: boolean) {\n    this.buffers[front ? 'unshift' : 'push'](buffer)\n    return this\n  }\n\n  public addInt16(val: number, front?: boolean) {\n    return this.add(new Uint8Array([val >>> 8, val >>> 0]).buffer, front)\n  }\n\n  public getByteLength(initial?: number) {\n    return this.buffers.reduce((previous, current) => {\n      return previous + current.byteLength\n    }, initial ?? 0)\n  }\n\n  public addInt32(val: number, first?: boolean) {\n    return this.add(\n      new Uint8Array([\n        (val >>> 24) & 0xff,\n        (val >>> 16) & 0xff,\n        (val >>> 8) & 0xff,\n        (val >>> 0) & 0xff,\n      ]).buffer,\n      first,\n    )\n  }\n\n  public addCString(val: string, front?: boolean) {\n    const len = byteLengthUtf8(val)\n    const bufferView = new Uint8Array(len + 1)\n    new TextEncoder().encodeInto(val, bufferView)\n    bufferView[len] = 0\n    return this.add(bufferView.buffer, front)\n  }\n\n  public addString(val: string, front?: boolean) {\n    const len = byteLengthUtf8(val)\n    const bufferView = new Uint8Array(len)\n    new TextEncoder().encodeInto(val, bufferView)\n    return this.add(bufferView.buffer, front)\n  }\n\n  public addChar(char: string, first?: boolean) {\n    const bufferView = new TextEncoder().encode(char)\n    return this.add(bufferView.buffer, first)\n  }\n\n  public addByte(byte: number) {\n    return this.add(new Uint8Array([byte]).buffer)\n  }\n\n  public join(appendLength?: boolean, char?: string): Uint8Array {\n    let length = this.getByteLength()\n    if (appendLength) {\n      this.addInt32(length + 4, true)\n      return this.join(false, char)\n    }\n    if (char) {\n      this.addChar(char, true)\n      length++\n    }\n    const result = new ArrayBuffer(length)\n    let index = 0\n    this.buffers.forEach((buffer) => {\n      new Uint8Array(result).set(new Uint8Array(buffer), index)\n      index += buffer.byteLength\n    })\n    return new Uint8Array(result)\n  }\n\n  public static concat(...args: ArrayBuffer[]): Uint8Array {\n    const total = new BufferList()\n    for (let i = 0; i < args.length; i++) {\n      total.add(args[i])\n    }\n    return new Uint8Array(total.join())\n  }\n}\n"
  },
  {
    "path": "packages/pg-protocol/test/testing/test-buffers.ts",
    "content": "// https://www.postgresql.org/docs/current/protocol-message-formats.html\nimport { Field } from '../../src/messages'\nimport BufferList from './buffer-list'\n\nconst buffers = {\n  readyForQuery: () => {\n    return new BufferList().add(new TextEncoder().encode('I')).join(true, 'Z')\n  },\n\n  authenticationOk: () => {\n    return new BufferList().addInt32(0).join(true, 'R')\n  },\n\n  authenticationCleartextPassword: () => {\n    return new BufferList().addInt32(3).join(true, 'R')\n  },\n\n  authenticationMD5Password: () => {\n    return new BufferList()\n      .addInt32(5)\n      .add(new Uint8Array([1, 2, 3, 4]).buffer)\n      .join(true, 'R')\n  },\n\n  authenticationSASL: () => {\n    return new BufferList()\n      .addInt32(10)\n      .addCString('SCRAM-SHA-256')\n      .addCString('')\n      .join(true, 'R')\n  },\n\n  authenticationSASLContinue: () => {\n    return new BufferList().addInt32(11).addString('data').join(true, 'R')\n  },\n\n  authenticationSASLFinal: () => {\n    return new BufferList().addInt32(12).addString('data').join(true, 'R')\n  },\n\n  parameterStatus: (name: string, value: string) => {\n    return new BufferList().addCString(name).addCString(value).join(true, 'S')\n  },\n\n  backendKeyData: (processID: number, secretKey: number) => {\n    return new BufferList()\n      .addInt32(processID)\n      .addInt32(secretKey)\n      .join(true, 'K')\n  },\n\n  commandComplete: (string: string) => {\n    return new BufferList().addCString(string).join(true, 'C')\n  },\n\n  rowDescription: (fields: Field[]) => {\n    fields = fields ?? []\n    const buf = new BufferList()\n    buf.addInt16(fields.length)\n    fields.forEach((field) => {\n      buf\n        .addCString(field.name)\n        .addInt32(field.tableID)\n        .addInt16(field.columnID)\n        .addInt32(field.dataTypeID)\n        .addInt16(field.dataTypeSize)\n        .addInt32(field.dataTypeModifier)\n        .addInt16(field.format)\n    })\n    return buf.join(true, 'T')\n  },\n\n  parameterDescription: (dataTypeIDs: number[]) => {\n    dataTypeIDs = dataTypeIDs ?? []\n    const buf = new BufferList()\n    buf.addInt16(dataTypeIDs.length)\n    dataTypeIDs.forEach((dataTypeID) => {\n      buf.addInt32(dataTypeID)\n    })\n    return buf.join(true, 't')\n  },\n\n  dataRow: (columns: (string | null)[]) => {\n    columns = columns ?? []\n    const buf = new BufferList()\n    buf.addInt16(columns.length)\n    columns.forEach((col) => {\n      if (col === null) {\n        buf.addInt32(-1)\n      } else {\n        const strBuf = new TextEncoder().encode(col).buffer\n        buf.addInt32(strBuf.byteLength)\n        buf.add(strBuf)\n      }\n    })\n    return buf.join(true, 'D')\n  },\n\n  error: (fields: { type: string; value: string }[]) => {\n    return buffers.errorOrNotice(fields).join(true, 'E')\n  },\n\n  notice: (fields: { type: string; value: string }[]) => {\n    return buffers.errorOrNotice(fields).join(true, 'N')\n  },\n\n  errorOrNotice: (fields: { type: string; value: string }[]) => {\n    fields = fields ?? []\n    const buf = new BufferList()\n    fields.forEach((field) => {\n      buf.addChar(field.type)\n      buf.addCString(field.value)\n    })\n    return buf.add(new Uint8Array([0]).buffer) // terminator\n  },\n\n  parseComplete: () => {\n    return new BufferList().join(true, '1')\n  },\n\n  bindComplete: () => {\n    return new BufferList().join(true, '2')\n  },\n\n  notification: (id: number, channel: string, payload: string) => {\n    return new BufferList()\n      .addInt32(id)\n      .addCString(channel)\n      .addCString(payload)\n      .join(true, 'A')\n  },\n\n  emptyQuery: () => {\n    return new BufferList().join(true, 'I')\n  },\n\n  portalSuspended: () => {\n    return new BufferList().join(true, 's')\n  },\n\n  closeComplete: () => {\n    return new BufferList().join(true, '3')\n  },\n\n  copyIn: (cols: number) => {\n    const list = new BufferList()\n      // text mode\n      .addByte(0)\n      // column count\n      .addInt16(cols)\n    for (let i = 0; i < cols; i++) {\n      list.addInt16(i)\n    }\n    return list.join(true, 'G')\n  },\n\n  copyOut: (cols: number) => {\n    const list = new BufferList()\n      // text mode\n      .addByte(0)\n      // column count\n      .addInt16(cols)\n    for (let i = 0; i < cols; i++) {\n      list.addInt16(i)\n    }\n    return list.join(true, 'H')\n  },\n\n  copyData: (bytes: ArrayBuffer) => {\n    return new BufferList().add(bytes).join(true, 'd')\n  },\n\n  copyDone: () => {\n    return new BufferList().join(true, 'c')\n  },\n}\n\nexport default buffers\n"
  },
  {
    "path": "packages/pg-protocol/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"include\": [\n    \"src\",\n    \"test\",\n    \"eslint.config.js\",\n    \"tsup.config.js\",\n    \"vitest.config.ts\"\n  ]\n}\n"
  },
  {
    "path": "packages/pg-protocol/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: ['src/index.ts', 'src/messages.ts'],\n    format: ['cjs', 'esm'],\n    outDir: 'dist',\n    dts: true,\n    minify: minify,\n    sourcemap: true,\n    clean: true,\n  },\n])\n"
  },
  {
    "path": "packages/pg-protocol/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    name: 'pg-protocol',\n    dir: './test',\n    watch: false,\n    typecheck: { enabled: true },\n    restoreMocks: true,\n  },\n})\n"
  },
  {
    "path": "packages/pglite/.gitignore",
    "content": "node_modules\nrelease/*\n!release/*.d.ts\ndist\npgdata*"
  },
  {
    "path": "packages/pglite/CHANGELOG.md",
    "content": "# @electric-sql/pglite\n\n## 0.4.1\n\n### Patch Changes\n\n- 37fb39e: clear timers on exit; remove pglite-socket dependency on pglite-postgis\n\n## 0.4.0\n\n### Minor Changes\n\n- d848955: New simplified PGlite with separate initdb.\n  New included extension: pg_textsearch (experimental).\n  New package for postgis (experimental) as extension.\n  Breaking changes: 'postgres' is the default database instead of 'template1'.\n\n## 0.3.16\n\n### Patch Changes\n\n- 3dfa40f: Add Apache AGE graph database extension support\n\n## 0.3.15\n\n### Patch Changes\n\n- 45bff97: added pgcrypto extension\n- 5ec474f: Added pg_hashids extension.\n\n## 0.3.14\n\n### Patch Changes\n\n- 8785034: Added pg_uuidv7 extension.\n- 90cfee8: live extension: use schema.oid + table.oid in trigger identifiers\n\n## 0.3.13\n\n### Patch Changes\n\n- ad3d0d8: Updated pg_dump to use callback data exchange; built pg_dump with emscripten\n\n## 0.3.12\n\n### Patch Changes\n\n- ce0e74e: Added pgTAP extension.\n\n## 0.3.11\n\n### Patch Changes\n\n- 9a104b9: Added dict_int, dict_xsyn, file_fdw, intarray, pageinspect, pg_buffercache, pg_freespacemap, pg_surgery, pg_visibility, pg_walinspect, unaccent contrib extensions\n\n## 0.3.10\n\n### Patch Changes\n\n- ad765ed: initdb calls system to query the server configs. avoid that by hardcoding a return value of 123\n\n## 0.3.9\n\n### Patch Changes\n\n- e40ccad: Upgrade emsdk\n\n## 0.3.8\n\n### Patch Changes\n\n- f12a582: Ensure MessageContext and its children are actually cleared between queries\n\n## 0.3.7\n\n### Patch Changes\n\n- 0936962: nested exception bugfix; wasm runtime exception fix\n\n## 0.3.6\n\n### Patch Changes\n\n- 6898469: PostgreSQL 17.5\n- 469be18: bug fix in packaging the distribution\n- 64e33c7: bug fixes\n\n## 0.3.5\n\n### Patch Changes\n\n- 6653899: fix: pglite worker dumpDataDir not using compression parameter\n- 5f007fc: fix MERGE affected rows return count\n\n## 0.3.4\n\n### Patch Changes\n\n- 1fcaa3e: fix race condition in live query unsubscribe\n- 38a55d0: fix cjs/esm misconfigurations\n- aac7003: remove double wasm instantiation when providing a wasm module'\n- 8ca254d: expose listen function in transaction object\n\n## 0.3.3\n\n### Patch Changes\n\n- ea2c7c7: pg_ivm extension\n\n## 0.3.2\n\n### Patch Changes\n\n- e2c654b: automatic fallback from `cma` data transfer container to `file` for large queries, and fix errors that could result in a \"memory access out of bounds\" error.\n\n## 0.3.1\n\n### Patch Changes\n\n- 713364e: Fix a bug in the live plugin that could result in an error when unsubscribing from a live query\n\n## 0.3.0\n\n### Minor Changes\n\n- 97e52f7: upgrade to postgresql 17.4\n\n### Patch Changes\n\n- 4356024: bug fix live plugin when dealing with case sensitive table names\n- 0033bc7: Fix a race condition in live query unsubscription that could result in live queries failing to update.\n\n## 0.2.17\n\n### Patch Changes\n\n- 6bdd74e: listen and unlisten case sensitivity behaviour aligned to default PostgreSQL behaviour'\n- f94d591: added clone() method to pglite API. clones an instance such that it can be reused (for example running tests on existing data without readding all data)\n\n## 0.2.16\n\n### Patch Changes\n\n- c36fd09: Improvements to parsing results received from pg\n- e037883: Fixed PGliteWorkerOptions type\n- d6b981b: Fix the return type of the `.transaction` method\n- 17e7664: Export the base filesystem to enable creating custom file systems. NOTE: This is a work-in-progress API, it is not stable, and may change significantly in future!\n- 118ba3e: Add affectedRows for COPY command\n- d93c1bb: Add `refreshArrayTypes()` call to re-sync newly created complex array columns, like enums\n- ddd4a68: Removes postgis extension which leads to a smaller build of the package\n- f3f1103: Refactor the protocol message parse code to be simpler and easer to follow\n- 67fb2aa: feat: add support for loading compressed dumps via loadDataDir that are not labeled with mimetype\n\n## 0.2.15\n\n### Patch Changes\n\n- fa13714: Remove a debug console.log from the live query plugin\n\n## 0.2.14\n\n### Patch Changes\n\n- 6547374: New `runExclusive` method on PGlite that allows you to hold an exclusive lock on the database, for use with `execProtocol*` methods\n- 6547374: A new `execProtocolRawSync` method that can execute a postgres wire protocol synchronously\n- df5c290: Make pglite compatible with @jest-environment: node\n- 1784d04: Bump Emscripten to 3.1.72\n- ae36974: Fix a bug with pipelining prepared statements.\n- 75f9f6d: Add a `offset` and `limit` option to live queries, when used it will return the total count for the query along with efficient updating of the offset. This works well with windowed or virtualised scrolling components.\n- ce212cf: Use PG \"WITH RECURSIVE\" to traverse the live query dependencies\n\n## 0.2.13\n\n### Patch Changes\n\n- 5e39036: Fix live queries can query a view by recursively finding all tables they depend on.\n- 3d8efbb: Bump dependencies to address Dependabot alerts\n- 1844b10: Add a new `describeQuery` method to get type information about a query's parameters and result fields without executing it.\n- 79e6082: Changed PGlite interface to automatically add typing for extensions.\n- 16d2296: Fix bug where Firefox was unable to remove OPFS files\n- cf50f47: Change interface of execProtocol return value to remove duplication of data buffer\n- bd1b3b9: Fix a bug in live.incrementalQuery where if it was set to `limit 1` it would return no rows\n- 5e39036: Extend the return value of live queries to be subscribed to multiple times, and make the callback optional on initiation.\n- 16d2296: Fix an issue with live.incrementalQuery where the order would be incorrect with rapid consecutive queries\n- e9bd9a7: Fix the types exports spesified in package.json\n- c442c88: Added custom parser and serializer options to `PGliteOptions`. Added custom serializer option to `QueryOptions`.\n\n## 0.2.12\n\n### Patch Changes\n\n- 1495625: add `util` to package.json browser config to exclude it in browser builds\n- d3905cf: Export LiveNamespace type from the live extension\n- 1f036dc: The VFS API has been refactored, along with the OPFS implementation, in order to prepare it for becoming a public API.\n- 52ddcb0: Fix issue where a string passed as a parameter expecting JSON would not treat the string as a json encoded string\n\n## 0.2.11\n\n### Patch Changes\n\n- 2aed553: Bump Emscripten to 3.1.68. Fixes issue #328 where some bundlers would fail to build with a \"Failed to resolve './' from './node_modules/@electric-sql/pglite/dist/postgres.js'\" error.\n\n## 0.2.10\n\n### Patch Changes\n\n- 3113d56: Add `fs/promises: false` to the browser config in package.json to exclude it from browser builds.\n- 23cd31a: Improve type serialization so it matches exceptions from other libraries\n\n## 0.2.9\n\n### Patch Changes\n\n- 20008c2: Fix an issue where extensions where given an oid in the builtin range and so skipped by pg_dump when run via pg_gateway #352\n- a5712a8: Fix a bug where Postgres would hang after a \"DROP DATABASE\" followed by an unclean shutdown and restart\n\n## 0.2.8\n\n### Patch Changes\n\n- 53ec60e: Fix the sql tagged template method to correctly handle null values\n- 880b60d: Fix close() as it was not correctly shutting down Postgres\n- 058ed7c: Fix quoting of table and channel names with the live plugin and listen method. Fixes issue where the live plugin would not work when the table names were camel case.\n- 2831c34: Add wasmModule and fsBundle options to manually load the WASM module and FS bundle. Additionally cache the WASM module and FS bundle after the first download for a speedup on subsequent calls.\n- 880b60d: Fix DROP DATABASE so that it doesn't hang in a busy loop\n- 880b60d: Initial work towards a WASI build of PGlite\n- 4aeb677: Change parameter serialization to be driven by expected types from Postgres, rather than inferring from the JS type\n- 19b3529: Fix path alias for `@electric-sql/pg-protocol` to bundle types correctly\n\n## 0.2.7\n\n### Patch Changes\n\n- 5e65236: Fix an issue where the protocol ready-for-query message was not returned after an error when using execProtocol.\n- 5e65236: Remove a double forward slash in bundled extension paths.\n\n## 0.2.6\n\n### Patch Changes\n\n- 09b356c: Fixed extended query wire protocol\n- 4238595: Fix `incrementalQuery` and `changes` APIs not working when keyed on non-integer primary keys like `TEXT` and `UUID`.\n- ef57e10: Refactor PGliteWorker so parsing happens on the main thread, fixes query options with custom parser\n\n## 0.2.5\n\n### Patch Changes\n\n- fcb101c: Add `    tx.sql`` ` API to PGliteWorker transactions.\n- 3ee5e60: Implement `.create(dataDir: string, options: PGliteOptions)` signature for factory method to match constructor.\n- 0dc34af: Enable event triggers like `ddl_command_end`.\n\n## 0.2.4\n\n### Patch Changes\n\n- 113aa56: Replace `pg-protocol` with vendored version and remove `Buffer` polyfill.\n\n## 0.2.3\n\n### Patch Changes\n\n- d8ef285: Implement `sql` tagged template literal method for querying, along with helpers.\n\n## 0.2.2\n\n### Patch Changes\n\n- be41880: Fix linking bug that prevented full text search working correctly\n\n## 0.2.1\n\n### Patch Changes\n\n- 2cc39ff: New compression options for the `dumpDataDir` method and fix a bug that prevented compression when used in a worker.\n"
  },
  {
    "path": "packages/pglite/README.md",
    "content": "<p align=\"center\">\n  <a href=\"https://pglite.dev\" target=\"_blank\">\n    <picture>\n      <source media=\"(prefers-color-scheme: dark)\"\n          srcset=\"https://raw.githubusercontent.com/electric-sql/pglite/main/docs/public/img/brand/logo.svg\"\n      />\n      <source media=\"(prefers-color-scheme: light)\"\n          srcset=\"https://raw.githubusercontent.com/electric-sql/pglite/main/docs/public/img/brand/logo-light.svg\"\n      />\n      <img alt=\"ElectricSQL logo\"\n          src=\"https://raw.githubusercontent.com/electric-sql/pglite/main/docs/public/img/brand/logo-light.svg\"\n      />\n    </picture>\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://pglite.dev\">PGlite</a> - the WASM build of Postgres from <a href=\"https://electric-sql.com\" target=\"_blank\">ElectricSQL</a>.<br>\n  Build reactive, realtime, local-first apps directly on Postgres.\n<p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/electric-sql/pglite/stargazers/\"><img src=\"https://img.shields.io/github/stars/electric-sql/pglite?style=social&label=Star\" /></a>\n  <!-- <a href=\"https://github.com/electric-sql/pglite/actions\"><img src=\"https://github.com/electric-sql/pglite/workflows/CI/badge.svg\" alt=\"CI\"></a> -->\n  <a href=\"https://github.com/electric-sql/pglite/blob/main/LICENSE\"><img src=\"https://img.shields.io/badge/license-Apache_2.0-green\" alt=\"License - Apache 2.0\"></a>\n  <a href=\"#roadmap\"><img src=\"https://img.shields.io/badge/status-alpha-orange\" alt=\"Status - Alpha\"></a>\n  <a href=\"https://discord.electric-sql.com\"><img src=\"https://img.shields.io/discord/933657521581858818?color=5969EA&label=discord\" alt=\"Chat - Discord\"></a>\n  <a href=\"https://twitter.com/ElectricSQL\" target=\"_blank\"><img src=\"https://img.shields.io/twitter/follow/nestframework.svg?style=social&label=Follow @ElectricSQL\"></a>\n  <a href=\"https://fosstodon.org/@electric\" target=\"_blank\"><img src=\"https://img.shields.io/mastodon/follow/109599644322136925.svg?domain=https%3A%2F%2Ffosstodon.org\"></a>\n</p>\n\n# PGlite - Postgres in WASM\n\n![PGlite](https://raw.githubusercontent.com/electric-sql/pglite/main/screenshot.png)\n\nPGlite is a WASM Postgres build packaged into a TypeScript client library that enables you to run Postgres in the browser, Node.js, Bun and Deno, with no need to install any other dependencies. It is only 3mb gzipped and has support for many Postgres extensions, including [pgvector](https://github.com/pgvector/pgvector).\n\n```javascript\nimport { PGlite } from '@electric-sql/pglite'\n\nconst db = new PGlite()\nawait db.query(\"select 'Hello world' as message;\")\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nIt can be used as an ephemeral in-memory database, or with persistence either to the file system (Node/Bun/Deno) or indexedDB (Browser).\n\nUnlike previous \"Postgres in the browser\" projects, PGlite does not use a Linux virtual machine - it is simply Postgres in WASM.\n\nFor full documentation and user guides see [pglite.dev](https://pglite.dev).\n\n## Browser\n\nIt can be installed and imported using your usual package manager:\n\n```js\nimport { PGlite } from '@electric-sql/pglite'\n```\n\nor using a CDN such as JSDeliver:\n\n```js\nimport { PGlite } from 'https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js'\n```\n\nThen for an in-memory Postgres:\n\n```js\nconst db = new PGlite()\nawait db.query(\"select 'Hello world' as message;\")\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nor to persist the database to indexedDB:\n\n```js\nconst db = new PGlite('idb://my-pgdata')\n```\n\n## Node/Bun/Deno\n\nInstall into your project:\n\n**NodeJS**\n\n```bash\nnpm install @electric-sql/pglite\n```\n\n**Bun**\n\n```bash\nbun install @electric-sql/pglite\n```\n\n**Deno**\n\n```bash\ndeno add npm:@electric-sql/pglite\n```\n\nTo use the in-memory Postgres:\n\n```javascript\nimport { PGlite } from '@electric-sql/pglite'\n\nconst db = new PGlite()\nawait db.query(\"select 'Hello world' as message;\")\n// -> { rows: [ { message: \"Hello world\" } ] }\n```\n\nor to persist to the filesystem:\n\n```javascript\nconst db = new PGlite('./path/to/pgdata')\n```\n\n## How it works\n\nPostgreSQL typically operates using a process forking model; whenever a client initiates a connection, a new process is forked to manage that connection. However, programs compiled with Emscripten - a C to WebAssembly (WASM) compiler - cannot fork new processes, and operates strictly in a single-process mode. As a result, PostgreSQL cannot be directly compiled to WASM for conventional operation.\n\nFortunately, PostgreSQL includes a \"single user mode\" primarily intended for command-line usage during bootstrapping and recovery procedures. Building upon this capability, PGlite introduces a input/output pathway that facilitates interaction with PostgreSQL when it is compiled to WASM within a JavaScript environment.\n\n## Limitations\n\n- PGlite is single user/connection.\n\n## How to build PGlite and contribute\n\nThe build process of PGlite is split into two parts:\n\n1. Building the Postgres WASM module.\n2. Building the PGlite client library and other TypeScript packages.\n\nDocker is required to build the WASM module, along with Node (v20 or above) and [pnpm](https://pnpm.io/) for package management and building the TypeScript packages.\n\nTo start checkout the repository and install dependencies:\n\n```bash\ngit clone https://github.com/electric-sql/pglite\ncd pglite\npnpm install\n```\n\nTo build everything, we have the convenient `pnpm build:all` command in the root of the repository. This command will:\n\n1. Use Docker to build the Postgres WASM module. The artifacts from this are then copied to `/packages/pglite/release`.\n2. Build the PGlite client library and other TypeScript packages.\n\nTo _only_ build the Postgres WASM module (i.e. point 1 above), run\n\n```bash\npnpm wasm:build\n```\n\nIf you don't want to build the WASM module and assorted WASM binaries from scratch, you can download them from a comment under the most recently merged PR, labeled as _interim build files_, and place them under `packages/pglite/release`.\n\nTo build all TypeScript packages (i.e. point 2 of the above), run:\n\n```bash\npnpm ts:build\n```\n\nThis will build all packages in the correct order based on their dependency relationships. You can now develop any individual package using the `build` and `test` scripts, as well as the `stylecheck` and `typecheck` scripts to ensure style and type validity.\n\nOr alternatively to build a single package, move into the package directory and run:\n\n```bash\ncd packages/pglite\npnpm build\n```\n\nWhen ready to open a PR, run the following command at the root of the repository:\n\n```bash\npnpm changeset\n```\n\nAnd follow the instructions to create an appropriate changeset. Please ensure any contributions that touch code are accompanied by a changeset.\n\n## Acknowledgments\n\nPGlite builds on the work of [Stas Kelvich](https://github.com/kelvich) of [Neon](https://neon.tech) in this [Postgres fork](https://github.com/electric-sql/postgres-wasm).\n\n## License\n\nPGlite is dual-licensed under the terms of the [Apache License 2.0](https://github.com/electric-sql/pglite/blob/main/LICENSE) and the [PostgreSQL License](https://github.com/electric-sql/pglite/blob/main/POSTGRES-LICENSE), you can choose which you prefer.\n\nChanges to the [Postgres source](https://github.com/electric-sql/postgres-wasm) are licensed under the PostgreSQL License.\n"
  },
  {
    "path": "packages/pglite/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  {\n    ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'],\n  },\n  {\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n        ...globals.node,\n      },\n    },\n    rules: {\n      ...rootConfig.rules,\n      '@typescript-eslint/no-explicit-any': 'off',\n    },\n  },\n  {\n    files: ['tests/targets/deno/**/*.js'],\n    languageOptions: {\n      globals: {\n        Deno: false,\n      },\n    },\n  },\n]\n"
  },
  {
    "path": "packages/pglite/examples/basic.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Basic Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite Basic Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n\n        console.log('Starting...')\n\n        // In-memory database:\n        const pg = await PGlite.create()\n        // Or, stored in indexedDB:\n        // const pg = new PGlite('pgdata');\n\n        console.log('Ready!')\n\n        console.log('Creating table...')\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\n        console.log('Inserting data...')\n\n        await pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n        console.log('Selecting data...')\n\n        const res = await pg.exec(`\n  SELECT * FROM test;\n`)\n\n        console.log(res)\n\n        console.log(await pg.exec('SELECT * FROM test;'))\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/basic.js",
    "content": "import { PGlite } from '../dist/index.js'\n\nconsole.log('Starting...')\n// In-memory database:\nconst pg = new PGlite()\n// Or, on-disk database:\n// const pg = new PGlite('pgdata');\n\nconsole.log('Waiting for ready...')\nawait pg.waitReady\n\nconsole.log('Ready!')\n\nconsole.log('Creating table...')\nawait pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\nconsole.log('Inserting data...')\nawait pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\nconsole.log('Selecting data...')\nconst res = await pg.exec(`\n  SELECT * FROM test;\n`)\n\nconsole.log(res)\n\nconsole.log(await pg.exec('SELECT * FROM test;'))\n"
  },
  {
    "path": "packages/pglite/examples/copy.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite COPY Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite <code>COPY</code> Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n\n        const pg = new PGlite()\n\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\n        // add 1000 rows:\n        await pg.exec(\n          \"INSERT INTO test (name) SELECT 'name' || i FROM generate_series(1, 1000) i;\",\n        )\n\n        // Copy the date to a file:\n        console.log('Copying data to file...') // 'test.csv\n        const ret = await pg.query(\n          \"COPY test TO '/dev/blob' WITH (FORMAT binary);\",\n        )\n\n        console.log('Data copied to blob:')\n        const blob = ret.blob\n        console.log(blob)\n\n        // Download the file:\n        const a = document.createElement('a')\n        a.href = URL.createObjectURL(\n          new File([blob], 'test.csv', { type: 'text/csv' }),\n        )\n        a.download = 'test.csv'\n        a.click()\n\n        // Other table\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test2 (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\n        // import the data from the file:\n        console.log('Importing data from file...')\n        const ret2 = await pg.query(\n          \"COPY test2 FROM '/dev/blob' WITH (FORMAT binary);\",\n          [],\n          {\n            blob: blob,\n          },\n        )\n\n        console.log('Data imported from file:')\n        const ret3 = await pg.query('SELECT * FROM test2;', [])\n        console.log(ret3.rows)\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/dump-data-dir.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Dump Datadir Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite Dump Datadir Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\" src=\"./dump-data-dir.js\"></script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/dump-data-dir.js",
    "content": "import { PGlite } from '../dist/index.js'\n\nconst pg = new PGlite()\nawait pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\nawait pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\nconst file = await pg.dumpDataDir()\n\nif (typeof window !== 'undefined') {\n  // Download the dump\n  const url = URL.createObjectURL(file)\n  const a = document.createElement('a')\n  a.href = url\n  a.download = file.name\n  a.click()\n} else {\n  // Save the dump to a file using node fs\n  const fs = await import('fs')\n  fs.writeFileSync(file.name, await file.arrayBuffer())\n}\n\nconst pg2 = new PGlite({\n  loadDataDir: file,\n})\n\nconst rows = await pg2.query('SELECT * FROM test;')\nconsole.log(rows)\n"
  },
  {
    "path": "packages/pglite/examples/fts.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite FTS Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite FTS Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n\n        console.log('Starting...')\n\n        // In-memory database:\n        const pg = await PGlite.create()\n\n        const ret1 = await pg.query(`\n  SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery AS match;\n`)\n        console.log(ret1.rows[0].match)\n\n        const ret2 = await pg.query(`\n  SELECT to_tsvector('fat cats ate fat rats') @@ to_tsquery('fat & rat') AS match;\n`)\n        console.log(ret2.rows[0].match)\n\n        await pg.query(`\n  CREATE TABLE fts_ranking (\n    id serial PRIMARY KEY,\n    title text,\n    body text\n  );\n`)\n\n        await pg.query(`\n  INSERT INTO fts_ranking (title, body)\n  VALUES\n    ('The Fat Rats', 'The fat rats ate the fat cats.'),\n    ('The Fat Cats', 'The fat cats ate the fat rats.'),\n    ('The Fat Cats and Rats', 'The fat cats and rats ate the fat rats and cats.');\n`)\n\n        const ret3 = await pg.query(`\n  SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat')) as rank\n  FROM fts_ranking\n  ORDER BY rank DESC;\n`)\n\n        console.log(ret3.rows)\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/live-changes.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Live Changes Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\",\n          \"@electric-sql/pglite/live\": \"../dist/live/index.js\"\n        }\n      }\n    </script>\n    <style>\n      #output {\n        font-family: monospace;\n        overflow: auto;\n        max-height: 250px;\n        border: 1px solid #eee;\n        border-radius: 0.5rem;\n        padding: 10px;\n        margin: 1rem 0;\n        font-size: 9px;\n        line-height: 11px;\n      }\n      button {\n        margin: 0 0.5rem 0 0;\n      }\n    </style>\n  </head>\n  <body>\n    <h1>PGlite Live Changes Example</h1>\n    <button id=\"start\">start</button><button id=\"add\" disabled>Add</button>\n    <pre id=\"output\"></pre>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '../dist/index.js'\n        import { live } from '../dist/live/index.js'\n\n        const output = document.getElementById('output')\n        const startBtn = document.getElementById('start')\n        const addBtn = document.getElementById('add')\n        let counter = 1000\n        let lastClicked = 0\n        const nameLength = 10000\n        const nameSuffix = '-'.repeat(nameLength)\n\n        const pg = new PGlite({\n          extensions: {\n            live,\n          },\n        })\n        window.pg = pg\n\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    rand float,\n    name TEXT\n  );\n  INSERT INTO test (name, rand)\n  SELECT 'test' || i || '${nameSuffix}', random()\n  FROM generate_series(1, ${counter}) AS i;\n`)\n\n        startBtn.addEventListener('click', async () => {\n          lastClicked = performance.now()\n          startBtn.disabled = true\n          addBtn.disabled = false\n          pg.live.changes(\n            'SELECT * FROM test ORDER BY rand;',\n            null,\n            'id',\n            (changes) => {\n              const time = performance.now() - lastClicked\n              console.log(`Update took ${time}ms`)\n              output.textContent = JSON.stringify(changes, null, 2)\n            },\n          )\n        })\n\n        addBtn.addEventListener('click', async () => {\n          lastClicked = performance.now()\n          await pg.query(\n            'INSERT INTO test (name, rand) VALUES ($1, random());',\n            [`test${++counter}${nameSuffix}`],\n          )\n        })\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/live-incremental.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Live Incremental Query Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\",\n          \"@electric-sql/pglite/live\": \"../dist/live/index.js\"\n        }\n      }\n    </script>\n    <style>\n      #output {\n        font-family: monospace;\n        overflow: auto;\n        max-height: 250px;\n        border: 1px solid #eee;\n        border-radius: 0.5rem;\n        padding: 10px;\n        margin: 1rem 0;\n        font-size: 9px;\n        line-height: 11px;\n      }\n      button {\n        margin: 0 0.5rem 0 0;\n      }\n    </style>\n  </head>\n  <body>\n    <h1>PGlite Live Incremental Query Example</h1>\n    <button id=\"start\">start</button><button id=\"add\" disabled>Add</button>\n    <div id=\"output\"></div>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n        import { live } from '@electric-sql/pglite/live'\n\n        const output = document.getElementById('output')\n        const startBtn = document.getElementById('start')\n        const addBtn = document.getElementById('add')\n        let counter = 1000\n        let lastClicked = 0\n        const nameLength = 10000\n        const nameSuffix = '-'.repeat(nameLength)\n\n        const pg = new PGlite({\n          extensions: {\n            live,\n          },\n        })\n        window.pg = pg\n\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    rand FLOAT,\n    name TEXT\n  );\n  INSERT INTO test (name, rand)\n  SELECT 'test' || i || '${nameSuffix}', random()\n  FROM generate_series(1, ${counter}) AS i;\n`)\n\n        startBtn.addEventListener('click', async () => {\n          lastClicked = performance.now()\n          startBtn.disabled = true\n          addBtn.disabled = false\n          pg.live.incrementalQuery(\n            'SELECT * FROM test ORDER BY rand;',\n            null,\n            'id',\n            (res) => {\n              const time = performance.now() - lastClicked\n              console.log(`Update took ${time}ms`)\n              output.textContent = res.rows.map((row) => row.id).join(', ')\n            },\n          )\n        })\n\n        addBtn.addEventListener('click', async () => {\n          lastClicked = performance.now()\n          await pg.query(\n            'INSERT INTO test (name, rand) VALUES ($1, random());',\n            [`test${++counter}${nameSuffix}`],\n          )\n        })\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/live.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Live Query Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\",\n          \"@electric-sql/pglite/live\": \"../dist/live/index.js\"\n        }\n      }\n    </script>\n    <style>\n      #output {\n        font-family: monospace;\n        overflow: auto;\n        max-height: 250px;\n        border: 1px solid #eee;\n        border-radius: 0.5rem;\n        padding: 10px;\n        margin: 1rem 0;\n        font-size: 9px;\n        line-height: 11px;\n      }\n      button {\n        margin: 0 0.5rem 0 0;\n      }\n    </style>\n  </head>\n  <body>\n    <h1>PGlite Live Query Example</h1>\n    <button id=\"start\">start</button><button id=\"add\" disabled>Add</button>\n    <div id=\"output\"></div>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n        import { live } from '@electric-sql/pglite/live'\n\n        const output = document.getElementById('output')\n        const startBtn = document.getElementById('start')\n        const addBtn = document.getElementById('add')\n        let counter = 1000\n        let lastClicked = 0\n        const nameLength = 10000\n        const nameSuffix = '-'.repeat(nameLength)\n\n        const pg = new PGlite({\n          extensions: {\n            live,\n          },\n        })\n        window.pg = pg\n\n        console.log('Creating table...')\n\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    rand FLOAT,\n    name TEXT\n  );\n  INSERT INTO test (name, rand)\n  SELECT 'test' || i || '${nameSuffix}', random()\n  FROM generate_series(1, ${counter}) AS i;\n`)\n\n        console.log('Ready!')\n\n        startBtn.addEventListener('click', async () => {\n          lastClicked = performance.now()\n          startBtn.disabled = true\n          addBtn.disabled = false\n          pg.live.query('SELECT * FROM test ORDER BY rand;', null, (res) => {\n            const time = performance.now() - lastClicked\n            console.log(`Update took ${time}ms`)\n            output.textContent = res.rows.map((row) => row.id).join(', ')\n          })\n        })\n\n        addBtn.addEventListener('click', async () => {\n          lastClicked = performance.now()\n          await pg.query(\n            'INSERT INTO test (name, rand) VALUES ($1, random());',\n            [`test${++counter}${nameSuffix}`],\n          )\n        })\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/notify.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite NOTIFY Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite <code>NOTIFY</code> Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n\n        const pg = new PGlite()\n\n        const unsub = await pg.listen('test', (payload) => {\n          console.log('Received:', payload)\n        })\n\n        await new Promise((resolve) => setTimeout(resolve, 500))\n\n        await pg.query(\"NOTIFY test, 'Hello, world!'\")\n\n        await new Promise((resolve) => setTimeout(resolve, 500))\n\n        await pg.query(\"NOTIFY test, 'Hello, world again!'\")\n\n        await unsub()\n\n        await pg.query(\"NOTIFY test, 'Will not be received!'\")\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/opfs-worker.js",
    "content": "import { PGlite } from '../dist/index.js'\nimport { worker } from '../dist/worker/index.js'\n\nworker({\n  async init() {\n    const pg = new PGlite('opfs-ahp://my-test-db2')\n    // If you want run any specific setup code for the worker process, you can do it here.\n    return pg\n  },\n})\n\nconsole.log('Worker process started')\n"
  },
  {
    "path": "packages/pglite/examples/opfs.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Worker Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite/worker\": \"../dist/worker/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite OPFS Example</h1>\n    <div class=\"script-plus-log\">\n      <div class=\"scripts\">\n        <h2>Worker Thread - <code>opfs-worker.js</code></h2>\n        <div class=\"script\" rel=\"./opfs-worker.js\"></div>\n        <h2>Main Thread</h2>\n        <script type=\"module\">\n          import { PGliteWorker } from '@electric-sql/pglite/worker'\n\n          console.log('Starting...')\n          const start = performance.now()\n          const pg = new PGliteWorker(\n            new Worker(new URL('./opfs-worker.js', import.meta.url), {\n              type: 'module',\n            }),\n          )\n\n          console.log('Waiting for ready...')\n          await pg.waitReady\n\n          console.log('Ready! Took', performance.now() - start, 'ms')\n\n          console.log('Creating table...')\n          await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\n          console.log('Inserting data...')\n          await pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n          console.log('Selecting data...')\n          const res = await pg.exec(`\n  SELECT * FROM test;\n`)\n\n          console.log(res)\n\n          // Transaction example:\n          console.log('Transaction example...')\n          await pg.transaction(async (tx) => {\n            await tx.exec(\"INSERT INTO test (name) VALUES ('test2');\")\n            await tx.exec(\"INSERT INTO test (name) VALUES ('test3');\")\n          })\n\n          console.log('Selecting data...')\n          const res2 = await pg.exec(`\n  SELECT * FROM test;\n`)\n\n          console.log(res2)\n        </script>\n      </div>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/pg_dump.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Basic Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <!-- <script src=\"./utils.js\"></script> -->\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite Basic Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n        import { pgDump } from './pglite-tools/pg_dump.js'\n\n        console.log('Starting...')\n\n        const pg = await PGlite.create()\n\n        console.log('Creating table...')\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\n        await pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test2 (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\n        await pg.exec(\"INSERT INTO test2 (name) VALUES ('test2');\")\n\n        for (let i = 0; i < 50; i++) {\n          await pg.exec(`INSERT INTO test2 (name) VALUES ('test2-${i}');`)\n        }\n\n        const initialSearchPath = (await pg.query('SHOW SEARCH_PATH;')).rows[0].search_path\n\n        console.log('Dumping database...')\n        const dump = await pgDump({ pg })\n        console.log(dump)\n\n        // Create a download link for the dump file\n        const downloadLink = document.createElement('a')\n        downloadLink.href = URL.createObjectURL(dump)\n        downloadLink.download = dump.name\n        downloadLink.textContent = 'Download SQL Dump'\n        downloadLink.style.display = 'block'\n        downloadLink.style.marginTop = '20px'\n        document.body.appendChild(downloadLink)\n\n        console.log('Restoring database...')\n        const pg2 = await PGlite.create()\n        const sql = await dump.text()\n        await pg2.exec(sql)\n\n        console.log('Restoring the initial search path to', initialSearchPath)\n        await pg2.exec(`SET search_path TO ${initialSearchPath};`)\n\n        console.log('Querying restored database...')\n        const rows = await pg2.query('SELECT * FROM test2')\n        console.log(rows)\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/pg_dump.js",
    "content": "import { PGlite } from '../dist/index.js'\nimport { pgDump } from '../../pglite-tools/dist/pg_dump.js'\n\nconsole.log('Starting...')\n\nconst pg = await PGlite.create({ debug: 1 })\n\nconsole.log('Creating table...')\nawait pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\nawait pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\nconsole.log('Dumping database...')\nconst dump = await pgDump({ pg })\nconsole.log(await dump.text())\n"
  },
  {
    "path": "packages/pglite/examples/plpgsql.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite PL/PGSQL Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite <code>PL/PGSQL</code> Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n\n        console.log('Starting...')\n        const pg = new PGlite()\n\n        let ret = await pg.exec(`\n  CREATE EXTENSION IF NOT EXISTS plpgsql;\n`)\n        console.log(ret)\n\n        await pg.exec(`\n  CREATE OR REPLACE FUNCTION calculate_factorial(n INT) RETURNS INT AS $$\n  DECLARE\n      result INT := 1;\n  BEGIN\n      IF n < 0 THEN\n          RAISE EXCEPTION 'The input cannot be negative.';\n      ELSIF n = 0 OR n = 1 THEN\n          RETURN result;\n      ELSE\n          FOR i IN 2..n LOOP\n              result := result * i;\n          END LOOP;\n          RETURN result;\n      END IF;\n  END;\n  $$ LANGUAGE plpgsql;\n`)\n\n        ret = await pg.exec(`\n  SELECT calculate_factorial(5) AS result;\n`)\n        console.log(ret)\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/query-params.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Query Params Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite Query Params Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\" src=\"./query-params.js\"></script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/query-params.js",
    "content": "import { PGlite, types } from '../dist/index.js'\n\nconsole.log('Starting...')\nconst pg = new PGlite()\n\nconsole.log('Creating table...')\nawait pg.query(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\n\nconsole.log('Inserting data...')\nawait pg.query('INSERT INTO test (name) VALUES ($1);', ['test'])\nawait pg.query('INSERT INTO test (name) VALUES ($1);', ['other'])\n\nconsole.log('Selecting data...')\nconst res = await pg.query(\n  `\n  SELECT * FROM test WHERE name = $1;\n`,\n  ['test'],\n)\n\nconsole.log(res)\n\nconsole.log('Selecting data with options...')\nconst res2 = await pg.query(\n  `\n  SELECT * FROM test WHERE name = $1;\n`,\n  ['test'],\n  {\n    rowMode: 'array',\n    parsers: {\n      [types.TEXT]: (value) => value.toUpperCase(),\n    },\n  },\n)\n\nconsole.log(res2)\n"
  },
  {
    "path": "packages/pglite/examples/repl-idb.html",
    "content": "<style>\n  body {\n    font-family: sans-serif;\n    margin: 0;\n    padding: 0;\n  }\n</style>\n<script\n  src=\"../../pglite-repl/dist-webcomponent/Repl.js\"\n  type=\"module\"\n></script>\n<pglite-repl id=\"repl\" show-time></pglite-repl>\n<script type=\"module\">\n  import { PGlite } from '../dist/index.js'\n  import { vector } from '../dist/vector/index.js'\n\n  const pg = new PGlite('idb://base', {\n    relaxedDurability: true,\n    extensions: {\n      vector,\n    },\n  })\n\n  const repl = document.getElementById('repl')\n  repl.pg = pg\n</script>\n"
  },
  {
    "path": "packages/pglite/examples/repl.html",
    "content": "<style>\n  body {\n    font-family: sans-serif;\n    margin: 0;\n    padding: 0;\n  }\n</style>\n<script\n  src=\"../../pglite-repl/dist-webcomponent/Repl.js\"\n  type=\"module\"\n></script>\n<pglite-repl id=\"repl\" show-time></pglite-repl>\n<script type=\"module\">\n  import { PGlite } from '../dist/index.js'\n  import { vector } from '../dist/vector/index.js'\n\n  const pg = new PGlite({\n    extensions: {\n      vector,\n    },\n  })\n\n  const repl = document.getElementById('repl')\n  repl.pg = pg\n</script>\n"
  },
  {
    "path": "packages/pglite/examples/styles.css",
    "content": "@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap');\n\nbody,\nhtml {\n  font-family: 'Inter', sans-serif;\n  font-size: 14px;\n  line-height: 1.5;\n  color: #333;\n  background-color: #fff;\n  margin: 1rem 2rem;\n  padding: 0;\n}\n\nh1 {\n  font-size: 1.5rem;\n  margin: 0 0 1rem;\n}\n\nh2 {\n  font-size: 1.1rem;\n  margin: 0 0 1rem;\n}\n\n.script-plus-log :is(script, .script),\n#log {\n  /* Show the content of the script tag */\n  display: block;\n  white-space: pre-wrap;\n  width: 50%;\n  font-family: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono',\n    'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro',\n    'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace;\n}\n\n.script-plus-log > :is(script, .script) {\n  padding: 1rem;\n}\n\n.script-plus-log > .scripts,\n#log {\n  width: 50%;\n  padding: 1rem;\n}\n\n.script-plus-log > .scripts > :is(script, .script) {\n  width: 100%;\n}\n\n.script-plus-log > .scripts,\n.script-plus-log > :is(script, .script) {\n  background-color: #eee;\n}\n\nscript:not([src]):first-line {\n  line-height: 0px;\n}\n\n.log-entry {\n  border-bottom: 1px solid #eee;\n}\n\n.script-plus-log {\n  display: flex;\n  flex-direction: row;\n  background-color: #f9f9f9;\n  border: 1px solid #eee;\n  border-radius: 0.5rem;\n  overflow: hidden;\n}\n\n.scripts h2 {\n  margin-top: 2rem;\n  padding-top: 2rem;\n  border-top: 1px solid #ddd;\n}\n\n.scripts h2:first-child {\n  margin-top: 0;\n  padding-top: 0;\n  border-top: 0;\n}\n"
  },
  {
    "path": "packages/pglite/examples/utils.js",
    "content": "{\n  const originalConsoleLog = window.console.log\n  window.console.log = function (...args) {\n    originalConsoleLog(...args)\n    const log = document.getElementById('log')\n    const el = document.createElement('div')\n    el.classList.add('log-entry')\n    if (args.length !== 1) {\n      el.innerText = JSON.stringify(args, null, 2)\n    } else {\n      try {\n        el.innerText +=\n          typeof args[0] === 'string'\n            ? args.join(' ')\n            : JSON.stringify(args[0], null, 2)\n      } catch (e) {\n        el.innerText = args[0].toString()\n      }\n    }\n    log.appendChild(el)\n  }\n\n  document.addEventListener('DOMContentLoaded', async () => {\n    document.body.querySelectorAll('script[src]').forEach(async (script) => {\n      const source = fetch(script.src).then((res) => res.text())\n      const code = await source\n      script.textContent = code\n    })\n    document.body.querySelectorAll('div.script[rel]').forEach(async (el) => {\n      const source = fetch(el.getAttribute('rel')).then((res) => res.text())\n      const code = await source\n      el.textContent = code\n    })\n  })\n}\n"
  },
  {
    "path": "packages/pglite/examples/vector.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Vector Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../dist/index.js\",\n          \"@electric-sql/pglite/vector\": \"../dist/vector/index.js\"\n        }\n      }\n    </script>\n  </head>\n  <body>\n    <h1>PGlite Vector Example</h1>\n    <div class=\"script-plus-log\">\n      <script type=\"module\">\n        import { PGlite } from '@electric-sql/pglite'\n        import { vector } from '@electric-sql/pglite/vector'\n\n        const pg = new PGlite({\n          extensions: {\n            vector,\n            // Alternatively, you can specify the path to the extension tarball\n            // vector: new URL(\"../dist/vector.tar.gz\", import.meta.url),\n          },\n        })\n\n        await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;')\n        await pg.exec(`\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    name TEXT,\n    vec vector(3)\n  );\n`)\n        await pg.exec(\n          \"INSERT INTO test (name, vec) VALUES ('test1', '[1,2,3]');\",\n        )\n        await pg.exec(\n          \"INSERT INTO test (name, vec) VALUES ('test2', '[4,5,6]');\",\n        )\n        await pg.exec(\n          \"INSERT INTO test (name, vec) VALUES ('test3', '[7,8,9]');\",\n        )\n\n        const res = await pg.exec(`\n  SELECT * FROM test;\n`)\n        console.log(res)\n\n        const res2 = await pg.exec(`\n  SELECT\n    name,\n    vec,\n    vec <-> '[3,1,2]' AS distance\n  FROM test;\n`)\n        console.log(res2)\n      </script>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/examples/worker-process.js",
    "content": "import { PGlite } from '../dist/index.js'\nimport { worker } from '../dist/worker/index.js'\nimport { vector } from '../dist/vector/index.js'\n\nworker({\n  async init() {\n    const pg = new PGlite({\n      extensions: {\n        vector,\n      },\n    })\n    // If you want run any specific setup code for the worker process, you can do it here.\n    return pg\n  },\n})\n\nconsole.log('Worker process started')\n"
  },
  {
    "path": "packages/pglite/examples/worker.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Worker Example</title>\n    <link rel=\"stylesheet\" href=\"./styles.css\" />\n    <script src=\"./utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite/worker\": \"../dist/worker/index.js\",\n          \"@electric-sql/pglite/live\": \"../dist/live/index.js\"\n        }\n      }\n    </script>\n    <style>\n      #output {\n        font-family: monospace;\n        overflow: auto;\n        max-height: 250px;\n        border: 1px solid #eee;\n        border-radius: 0.5rem;\n        padding: 10px;\n        margin: 1rem 0;\n        font-size: 9px;\n        line-height: 11px;\n      }\n      button {\n        margin: 0 0.5rem 0 0;\n      }\n    </style>\n  </head>\n  <body>\n    <h1>PGlite Worker Example</h1>\n    <p>Leader: <span id=\"leader\" style=\"color: red\">false</span></p>\n    <p>\n      <button id=\"insert\">Insert Data</button>\n      <button id=\"clear\">Clear Data</button>\n    </p>\n    <pre id=\"output\"></pre>\n    <div class=\"script-plus-log\">\n      <div class=\"scripts\">\n        <h2>Worker Thread - <code>worker-process.js</code></h2>\n        <div class=\"script\" rel=\"./worker-process.js\"></div>\n        <h2>Main Thread</h2>\n        <script type=\"module\">\n          import { PGliteWorker } from '@electric-sql/pglite/worker'\n          import { live } from '@electric-sql/pglite/live'\n\n          console.log('Creating worker...')\n          const pg = new PGliteWorker(\n            new Worker(new URL('./worker-process.js', import.meta.url), {\n              type: 'module',\n            }),\n            {\n              extensions: {\n                live,\n              },\n            },\n          )\n\n          pg.onLeaderChange(() => {\n            if (pg.isLeader) {\n              document.title = '[leader] PGlite Worker Example'\n              const leader = document.getElementById('leader')\n              leader.textContent = 'true'\n              leader.style.color = 'green'\n            }\n          })\n\n          console.log('Creating table...')\n\n          await pg.exec(`\n  CREATE EXTENSION IF NOT EXISTS vector;\n  CREATE TABLE IF NOT EXISTS test (\n    id SERIAL PRIMARY KEY,\n    data vector(3)\n  );\n`)\n\n          console.log('Ready!')\n\n          async function insertData() {\n            const data = [Math.random(), Math.random(), Math.random()]\n            await pg.query(`INSERT INTO test (data) VALUES ($1)`, [\n              JSON.stringify(data),\n            ])\n          }\n\n          async function clearData() {\n            await pg.query(`DELETE FROM test`)\n          }\n\n          const btnInsert = document.querySelector('#insert')\n          btnInsert.addEventListener('click', insertData)\n\n          const btnClear = document.querySelector('#clear')\n          btnClear.addEventListener('click', clearData)\n\n          // pg.live.query(\n          pg.live.incrementalQuery(`SELECT * FROM test`, [], 'id', (data) => {\n            const output = document.getElementById('output')\n            output.textContent = JSON.stringify(data.rows, null, 2)\n          })\n        </script>\n      </div>\n      <div id=\"log\"></div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite\",\n  \"version\": \"0.4.1\",\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"description\": \"PGlite is a WASM Postgres build packaged into a TypeScript client library that enables you to run Postgres in the browser, Node.js and Bun, with no need to install any other dependencies. It is only 3.7mb gzipped.\",\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"client\",\n    \"pglite\"\n  ],\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.js\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    },\n    \"./template\": {\n      \"import\": {\n        \"types\": \"./dist/templating.d.ts\",\n        \"default\": \"./dist/templating.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/templating.d.cts\",\n        \"default\": \"./dist/templating.cjs\"\n      }\n    },\n    \"./live\": {\n      \"import\": {\n        \"types\": \"./dist/live/index.d.ts\",\n        \"default\": \"./dist/live/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/live/index.d.cts\",\n        \"default\": \"./dist/live/index.cjs\"\n      }\n    },\n    \"./worker\": {\n      \"import\": {\n        \"types\": \"./dist/worker/index.d.ts\",\n        \"default\": \"./dist/worker/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/worker/index.d.cts\",\n        \"default\": \"./dist/worker/index.cjs\"\n      }\n    },\n    \"./vector\": {\n      \"import\": {\n        \"types\": \"./dist/vector/index.d.ts\",\n        \"default\": \"./dist/vector/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/vector/index.d.cts\",\n        \"default\": \"./dist/vector/index.cjs\"\n      }\n    },\n    \"./pg_ivm\": {\n      \"import\": {\n        \"types\": \"./dist/pg_ivm/index.d.ts\",\n        \"default\": \"./dist/pg_ivm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/pg_ivm/index.d.cts\",\n        \"default\": \"./dist/pg_ivm/index.cjs\"\n      }\n    },\n    \"./pgtap\": {\n      \"import\": {\n        \"types\": \"./dist/pgtap/index.d.ts\",\n        \"default\": \"./dist/pgtap/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/pgtap/index.d.cts\",\n        \"default\": \"./dist/pgtap/index.cjs\"\n      }\n    },\n    \"./pg_uuidv7\": {\n      \"import\": {\n        \"types\": \"./dist/pg_uuidv7/index.d.ts\",\n        \"default\": \"./dist/pg_uuidv7/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/pg_uuidv7/index.d.cts\",\n        \"default\": \"./dist/pg_uuidv7/index.cjs\"\n      }\n    },\n    \"./age\": {\n      \"import\": {\n        \"types\": \"./dist/age/index.d.ts\",\n        \"default\": \"./dist/age/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/age/index.d.cts\",\n        \"default\": \"./dist/age/index.cjs\"\n      }\n    },\n    \"./nodefs\": {\n      \"import\": {\n        \"types\": \"./dist/fs/nodefs.d.ts\",\n        \"default\": \"./dist/fs/nodefs.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/fs/nodefs.d.cts\",\n        \"default\": \"./dist/fs/nodefs.cjs\"\n      }\n    },\n    \"./opfs-ahp\": {\n      \"import\": {\n        \"types\": \"./dist/fs/opfs-ahp.d.ts\",\n        \"default\": \"./dist/fs/opfs-ahp.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/fs/opfs-ahp.d.cts\",\n        \"default\": \"./dist/fs/opfs-ahp.cjs\"\n      }\n    },\n    \"./basefs\": {\n      \"import\": {\n        \"types\": \"./dist/fs/base.d.ts\",\n        \"default\": \"./dist/fs/base.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/fs/base.d.cts\",\n        \"default\": \"./dist/fs/base.cjs\"\n      }\n    },\n    \"./contrib/*\": {\n      \"types\": \"./dist/contrib/*.d.ts\",\n      \"import\": \"./dist/contrib/*.js\",\n      \"require\": \"./dist/contrib/*.cjs\"\n    },\n    \"./pg_hashids\": {\n      \"import\": {\n        \"types\": \"./dist/pg_hashids/index.d.ts\",\n        \"default\": \"./dist/pg_hashids/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/pg_hashids/index.d.cts\",\n        \"default\": \"./dist/pg_hashids/index.cjs\"\n      }\n    },\n    \"./pg_textsearch\": {\n      \"import\": {\n        \"types\": \"./dist/pg_textsearch/index.d.ts\",\n        \"default\": \"./dist/pg_textsearch/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/pg_textsearch/index.d.cts\",\n        \"default\": \"./dist/pg_textsearch/index.cjs\"\n      }\n    }\n  },\n  \"type\": \"module\",\n  \"types\": \"dist/index.d.ts\",\n  \"files\": [\n    \"dist\",\n    \"!dist/auth_delay.tar.gz\",\n    \"!dist/basebackup_to_shell.tar.gz\",\n    \"!dist/basic_archive.tar.gz\",\n    \"!dist/dblink.tar.gz\",\n    \"!dist/intagg.tar.gz\",\n    \"!dist/oid2name.tar.gz\",\n    \"!dist/pg_prewarm.tar.gz\",\n    \"!dist/pg_stat_statements.tar.gz\",\n    \"!dist/pglite.html\",\n    \"!dist/pgrowlocks.tar.gz\",\n    \"!dist/pgstattuple.tar.gz\",\n    \"!dist/spi.tar.gz\",\n    \"!dist/test_decoding.tar.gz\",\n    \"!dist/vacuumlo.tar.gz\",\n    \"!dist/xml2.tar.gz\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/electric-sql/pglite\",\n    \"directory\": \"packages/pglite\"\n  },\n  \"scripts\": {\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"test\": \"pnpm test:basic && pnpm test:node\",\n    \"test:basic\": \"pnpm test:clean && vitest tests/*.test.js tests/*.test.ts tests/**/*.test.js tests/**/*.test.ts\",\n    \"test:web\": \"pnpm test:clean && concurrently -s first --hide 1 --prefix none -k \\\"sleep 2 && vitest --fileParallelism false tests/targets/web/*.test.web.*\\\" \\\"npx http-server --port 3334 ./\\\"\",\n    \"test:bun\": \"pnpm test:clean && pnpm bun test --timeout 15000 tests/basic.test.js tests/pgvector.test.js tests/live.test.js tests/targets/runtimes/node-fs.test.js\",\n    \"test:deno\": \"cd tests/targets/deno && deno task test\",\n    \"test:node\": \"pnpm test:clean && pnpm vitest tests/targets/runtimes/node-*.test.js\",\n    \"test:runtimes\": \"pnpm test:bun && pnpm test:node\",\n    \"test:integration\": \"pnpm test:runtimes && pnpm test:web\",\n    \"test:clean\": \"rm -rf ./pgdata-test\",\n    \"build:js\": \"tsup && tsx scripts/bundle-wasm.ts\",\n    \"build\": \"pnpm build:js\",\n    \"dev\": \"concurrently \\\"tsup --watch\\\" \\\"sleep 1 && tsx scripts/bundle-wasm.ts\\\" \\\"pnpm dev-server\\\"\",\n    \"dev-server\": \"pnpm http-server ../\",\n    \"lint\": \"eslint ./src ./tests --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write ./src ./tests\",\n    \"typecheck\": \"tsc --noEmit\",\n    \"stylecheck\": \"pnpm lint && prettier --check ./src ./tests\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pg-protocol\": \"workspace:*\",\n    \"@types/emscripten\": \"^1.41.1\",\n    \"@types/node\": \"^20.16.11\",\n    \"@types/node-fetch\": \"^2.6.11\",\n    \"async-mutex\": \"^0.4.1\",\n    \"buffer\": \"^6.0.3\",\n    \"bun\": \"^1.1.30\",\n    \"concurrently\": \"^8.2.2\",\n    \"http-server\": \"^14.1.1\",\n    \"openpgp\": \"^6.3.0\",\n    \"playwright\": \"^1.48.0\",\n    \"tinytar\": \"^0.1.0\",\n    \"vitest\": \"^2.1.2\"\n  },\n  \"browser\": {\n    \"fs\": false,\n    \"fs/promises\": false,\n    \"path\": false,\n    \"url\": false,\n    \"zlib\": false,\n    \"stream\": false,\n    \"stream/promises\": false,\n    \"crypto\": false,\n    \"ws\": false,\n    \"child_process\": false,\n    \"module\": false,\n    \"util\": false\n  }\n}\n"
  },
  {
    "path": "packages/pglite/scripts/bundle-wasm.ts",
    "content": "import * as fs from 'fs/promises'\nimport * as path from 'path'\n\nasync function findAndReplaceInFile(\n  find: string | RegExp,\n  replace: string,\n  file: string,\n): Promise<void> {\n  const content = await fs.readFile(file, 'utf8')\n  const replacedContent = content.replace(find, replace)\n  await fs.writeFile(file, replacedContent)\n}\n\nasync function findAndReplaceInDir(\n  dir: string,\n  find: string | RegExp,\n  replace: string,\n  extensions: string[],\n  recursive = false,\n): Promise<void> {\n  const files = await fs.readdir(dir, { withFileTypes: true })\n\n  for (const file of files) {\n    const filePath = path.join(dir, file.name)\n    if (file.isDirectory() && recursive) {\n      await findAndReplaceInDir(filePath, find, replace, extensions)\n    } else {\n      const fileExt = path.extname(file.name)\n      if (extensions.includes(fileExt)) {\n        await findAndReplaceInFile(find, replace, filePath)\n      }\n    }\n  }\n}\n\nconst copyFiles = async (srcDir: string, destDir: string) => {\n  await fs.mkdir(destDir, { recursive: true })\n  const files = await fs.readdir(srcDir)\n  for (const file of files) {\n    if (file.startsWith('.')) {\n      continue\n    }\n    const srcFile = path.join(srcDir, file)\n    const destFile = path.join(destDir, file)\n    const stat = await fs.stat(srcFile)\n    if (stat.isFile()) {\n      await fs.copyFile(srcFile, destFile)\n      console.log(`Copied ${srcFile} to ${destFile}`)\n    }\n  }\n}\n\nasync function main() {\n  await copyFiles('./release', './dist')\n  await findAndReplaceInDir('./dist', /\\.\\.\\/release\\//g, './', ['.js', '.cjs'])\n  await findAndReplaceInDir('./dist/contrib', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n  await findAndReplaceInDir('./dist/vector', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n  await findAndReplaceInDir('./dist/pg_ivm', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n  await findAndReplaceInDir('./dist/pgtap', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n  await findAndReplaceInDir('./dist/pg_uuidv7', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n  await findAndReplaceInDir('./dist/age', /\\.\\.\\/release\\//g, '', [\n    '.js',\n    '.cjs',\n  ])\n  await findAndReplaceInDir('./dist/pg_textsearch', /\\.\\.\\/release\\//g, \n    '', ['.js', '.cjs'])  \n  await findAndReplaceInDir(\n    './dist',\n    `require(\"./postgres.js\")`,\n    `require(\"./postgres.cjs\").default`,\n    ['.cjs'],\n  )\n  await findAndReplaceInDir('./dist/pg_hashids', /\\.\\.\\/release\\//g, '', ['.js', '.cjs'])\n}\n\nawait main()\n"
  },
  {
    "path": "packages/pglite/src/age/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/age.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const age = {\n  name: 'age',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/argsParser.ts",
    "content": "// '<(' is process substitution operator and\n// can be parsed the same as control operator\nconst CONTROL =\n  '(?:' +\n  [\n    '\\\\|\\\\|',\n    '\\\\&\\\\&',\n    ';;',\n    '\\\\|\\\\&',\n    '\\\\<\\\\(',\n    '\\\\<\\\\<\\\\<',\n    '>>',\n    '>\\\\&',\n    '<\\\\&',\n    '[&;()|<>]',\n  ].join('|') +\n  ')'\nconst controlRE = new RegExp('^' + CONTROL + '$')\nconst META = '|&;()<> \\\\t'\nconst SINGLE_QUOTE = '\"((\\\\\\\\\"|[^\"])*?)\"'\nconst DOUBLE_QUOTE = \"'((\\\\\\\\'|[^'])*?)'\"\nconst hash = /^#$/\n\nconst SQ = \"'\"\nconst DQ = '\"'\nconst DS = '$'\n\nlet TOKEN = ''\nconst mult = 0x100000000\nfor (let i = 0; i < 4; i++) {\n  TOKEN += (mult * Math.random()).toString(16)\n}\nconst startsWithToken = new RegExp('^' + TOKEN)\n\ntype Env = Record<string, string | undefined> | ((key: string) => unknown)\n\ninterface OpToken {\n  op: string\n  pattern?: string\n}\n\ninterface CommentToken {\n  comment: string\n}\n\ntype ParsedToken = string | OpToken | CommentToken\n\ninterface ParseOpts {\n  escape?: string\n}\n\nfunction matchAll(s: string, r: RegExp): RegExpExecArray[] {\n  const origIndex = r.lastIndex\n\n  const matches: RegExpExecArray[] = []\n  let matchObj: RegExpExecArray | null\n\n  while ((matchObj = r.exec(s))) {\n    matches.push(matchObj)\n    if (r.lastIndex === matchObj.index) {\n      r.lastIndex += 1\n    }\n  }\n\n  r.lastIndex = origIndex\n\n  return matches\n}\n\nfunction getVar(env: Env, pre: string, key: string): string {\n  let r: unknown = typeof env === 'function' ? env(key) : env[key]\n  if (typeof r === 'undefined' && key !== '') {\n    r = ''\n  } else if (typeof r === 'undefined') {\n    r = '$'\n  }\n\n  if (typeof r === 'object') {\n    return pre + TOKEN + JSON.stringify(r) + TOKEN\n  }\n  return pre + (r as string)\n}\n\nfunction parseInternal(\n  string: string,\n  env?: Env,\n  opts?: ParseOpts,\n): ParsedToken[] {\n  if (!opts) {\n    opts = {}\n  }\n  const BS = opts.escape || '\\\\'\n  const BAREWORD = '(\\\\' + BS + '[\\'\"' + META + ']|[^\\\\s\\'\"' + META + '])+'\n\n  const chunker = new RegExp(\n    [\n      '(' + CONTROL + ')',\n      '(' + BAREWORD + '|' + SINGLE_QUOTE + '|' + DOUBLE_QUOTE + ')+',\n    ].join('|'),\n    'g',\n  )\n\n  const matches = matchAll(string, chunker)\n\n  if (matches.length === 0) {\n    return []\n  }\n  if (!env) {\n    env = {}\n  }\n\n  let commented = false\n\n  return matches\n    .map(function (match): ParsedToken | ParsedToken[] | undefined {\n      const s = match[0]\n      if (!s || commented) {\n        return void undefined\n      }\n      if (controlRE.test(s)) {\n        return { op: s }\n      }\n\n      // Hand-written scanner/parser for Bash quoting rules:\n      //\n      // 1. inside single quotes, all characters are printed literally.\n      // 2. inside double quotes, all characters are printed literally\n      //    except variables prefixed by '$' and backslashes followed by\n      //    either a double quote or another backslash.\n      // 3. outside of any quotes, backslashes are treated as escape\n      //    characters and not printed (unless they are themselves escaped)\n      // 4. quote context can switch mid-token if there is no whitespace\n      //     between the two quote contexts (e.g. all'one'\"token\" parses as\n      //     \"allonetoken\")\n      let quote: string | false = false\n      let esc = false\n      let out = ''\n      let isGlob = false\n      let i: number\n\n      function parseEnvVar(): string {\n        i += 1\n        let varend: number\n        let varname: string\n        const char = s.charAt(i)\n\n        if (char === '{') {\n          i += 1\n          if (s.charAt(i) === '}') {\n            throw new Error('Bad substitution: ' + s.slice(i - 2, i + 1))\n          }\n          varend = s.indexOf('}', i)\n          if (varend < 0) {\n            throw new Error('Bad substitution: ' + s.slice(i))\n          }\n          varname = s.slice(i, varend)\n          i = varend\n        } else if (/[*@#?$!_-]/.test(char)) {\n          varname = char\n          i += 1\n        } else {\n          const slicedFromI = s.slice(i)\n          const varendMatch = slicedFromI.match(/[^\\w\\d_]/)\n          if (!varendMatch) {\n            varname = slicedFromI\n            i = s.length\n          } else {\n            varname = slicedFromI.slice(0, varendMatch.index)\n            i += varendMatch.index! - 1\n          }\n        }\n        return getVar(env!, '', varname)\n      }\n\n      for (i = 0; i < s.length; i++) {\n        let c = s.charAt(i)\n        isGlob = isGlob || (!quote && (c === '*' || c === '?'))\n        if (esc) {\n          out += c\n          esc = false\n        } else if (quote) {\n          if (c === quote) {\n            quote = false\n          } else if (quote === SQ) {\n            out += c\n          } else {\n            if (c === BS) {\n              i += 1\n              c = s.charAt(i)\n              if (c === DQ || c === BS || c === DS) {\n                out += c\n              } else {\n                out += BS + c\n              }\n            } else if (c === DS) {\n              out += parseEnvVar()\n            } else {\n              out += c\n            }\n          }\n        } else if (c === DQ || c === SQ) {\n          quote = c\n        } else if (controlRE.test(c)) {\n          return { op: s }\n        } else if (hash.test(c)) {\n          commented = true\n          const commentObj: CommentToken = {\n            comment: string.slice(match.index + i + 1),\n          }\n          if (out.length) {\n            return [out, commentObj]\n          }\n          return [commentObj]\n        } else if (c === BS) {\n          esc = true\n        } else if (c === DS) {\n          out += parseEnvVar()\n        } else {\n          out += c\n        }\n      }\n\n      if (isGlob) {\n        return { op: 'glob', pattern: out }\n      }\n\n      return out\n    })\n    .reduce(function (prev: ParsedToken[], arg) {\n      return typeof arg === 'undefined' ? prev : prev.concat(arg)\n    }, [])\n}\n\nexport default function parse(\n  s: string,\n  env?: Env,\n  opts?: ParseOpts,\n): ParsedToken[] {\n  const mapped = parseInternal(s, env, opts)\n  if (typeof env !== 'function') {\n    return mapped\n  }\n  return mapped.reduce(function (acc: ParsedToken[], s) {\n    if (typeof s === 'object') {\n      return acc.concat(s)\n    }\n    const xs = s.split(RegExp('(' + TOKEN + '.*?' + TOKEN + ')', 'g'))\n    if (xs.length === 1) {\n      return acc.concat(xs[0])\n    }\n    return acc.concat(\n      xs.filter(Boolean).map(function (x): ParsedToken {\n        if (startsWithToken.test(x)) {\n          return JSON.parse(x.split(TOKEN)[1]) as ParsedToken\n        }\n        return x\n      }),\n    )\n  }, [])\n}\n"
  },
  {
    "path": "packages/pglite/src/base.ts",
    "content": "import { query as queryTemplate } from './templating.js'\nimport { parseDescribeStatementResults, parseResults } from './parse.js'\nimport {\n  type Serializer,\n  type Parser,\n  serializers,\n  parsers,\n  arraySerializer,\n  arrayParser,\n} from './types.js'\nimport type {\n  DebugLevel,\n  PGliteInterface,\n  Results,\n  Transaction,\n  QueryOptions,\n  ExecProtocolOptions,\n  ExecProtocolResult,\n  DescribeQueryResult,\n  ExecProtocolOptionsStream,\n} from './interface.js'\n\nimport { serialize as serializeProtocol } from '@electric-sql/pg-protocol'\nimport {\n  RowDescriptionMessage,\n  ParameterDescriptionMessage,\n  DatabaseError,\n  BackendMessage,\n} from '@electric-sql/pg-protocol/messages'\nimport { makePGliteError } from './errors.js'\n\nexport abstract class BasePGlite\n  implements Pick<PGliteInterface, 'query' | 'sql' | 'exec' | 'transaction'>\n{\n  serializers: Record<number | string, Serializer> = { ...serializers }\n  parsers: Record<number | string, Parser> = { ...parsers }\n  #arrayTypesInitialized = false\n\n  // # Abstract properties:\n  abstract debug: DebugLevel\n\n  // # Private properties:\n  #inTransaction = false\n\n  // # Abstract methods:\n\n  /**\n   * Execute a postgres wire protocol message\n   * @param message The postgres wire protocol message to execute\n   * @returns The result of the query\n   */\n  abstract execProtocol(\n    message: Uint8Array,\n    { syncToFs, onNotice }: ExecProtocolOptions,\n  ): Promise<ExecProtocolResult>\n\n  /**\n   * Execute a postgres wire protocol message\n   * @param message The postgres wire protocol message to execute\n   * @returns The parsed results of the query\n   */\n  abstract execProtocolStream(\n    message: Uint8Array,\n    { syncToFs, onNotice }: ExecProtocolOptions,\n  ): Promise<BackendMessage[]>\n\n  /**\n   * Execute a postgres wire protocol message directly without wrapping the response.\n   * Only use if `execProtocol()` doesn't suite your needs.\n   *\n   * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages,\n   * transactions, and notification listeners. Only use if you need to bypass these wrappers and\n   * don't intend to use the above features.\n   *\n   * @param message The postgres wire protocol message to execute\n   * @returns The direct message data response produced by Postgres\n   */\n  abstract execProtocolRaw(\n    message: Uint8Array,\n    { syncToFs }: ExecProtocolOptions,\n  ): Promise<Uint8Array>\n\n  /**\n   * Execute a postgres wire protocol message directly without wrapping the response.\n   * Only use if `execProtocol()` doesn't suite your needs.\n   *\n   * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages,\n   * transactions, and notification listeners. Only use if you need to bypass these wrappers and\n   * don't intend to use the above features.\n   *\n   * @param message The postgres wire protocol message to execute\n   * @param options.onRawData Callback to receive streaming data\n   */\n  abstract execProtocolRawStream(\n    message: Uint8Array,\n    { syncToFs, onRawData }: ExecProtocolOptionsStream,\n  ): Promise<void>\n\n  /**\n   * Sync the database to the filesystem\n   * @returns Promise that resolves when the database is synced to the filesystem\n   */\n  abstract syncToFs(): Promise<void>\n\n  /**\n   * Handle a file attached to the current query\n   * @param file The file to handle\n   */\n  abstract _handleBlob(blob?: File | Blob): Promise<void>\n\n  /**\n   * Get the written file\n   */\n  abstract _getWrittenBlob(): Promise<File | Blob | undefined>\n\n  /**\n   * Cleanup the current file\n   */\n  abstract _cleanupBlob(): Promise<void>\n\n  abstract _checkReady(): Promise<void>\n  abstract _runExclusiveQuery<T>(fn: () => Promise<T>): Promise<T>\n  abstract _runExclusiveTransaction<T>(fn: () => Promise<T>): Promise<T>\n\n  /**\n   * Listen for notifications on a channel\n   */\n  abstract listen(\n    channel: string,\n    callback: (payload: string) => void,\n    tx?: Transaction,\n  ): Promise<(tx?: Transaction) => Promise<void>>\n\n  // # Concrete implementations:\n\n  /**\n   * Initialize the array types\n   * The oid if the type of an element and the typarray is the oid of the type of the\n   * array.\n   * We extract these from the database then create the serializers/parsers for\n   * each type.\n   * This should be called at the end of #init() in the implementing class.\n   */\n  async _initArrayTypes({ force = false } = {}) {\n    if (this.#arrayTypesInitialized && !force) return\n    this.#arrayTypesInitialized = true\n\n    const types = await this.query<{ oid: number; typarray: number }>(`\n      SELECT b.oid, b.typarray\n      FROM pg_catalog.pg_type a\n      LEFT JOIN pg_catalog.pg_type b ON b.oid = a.typelem\n      WHERE a.typcategory = 'A'\n      GROUP BY b.oid, b.typarray\n      ORDER BY b.oid\n    `)\n\n    for (const type of types.rows) {\n      this.serializers[type.typarray] = (x) =>\n        arraySerializer(x, this.serializers[type.oid], type.typarray)\n      this.parsers[type.typarray] = (x) =>\n        arrayParser(x, this.parsers[type.oid], type.typarray)\n    }\n  }\n\n  async #execProtocolNoSync(\n    message: Uint8Array,\n    options: ExecProtocolOptions = {},\n  ): Promise<BackendMessage[]> {\n    const results = await this.execProtocolStream(message, {\n      ...options,\n      syncToFs: false,\n    })\n\n    return results\n  }\n\n  /**\n   * Re-syncs the array types from the database\n   * This is useful if you add a new type to the database and want to use it, otherwise pglite won't recognize it.\n   */\n  async refreshArrayTypes() {\n    await this._initArrayTypes({ force: true })\n  }\n\n  /**\n   * Execute a single SQL statement\n   * This uses the \"Extended Query\" postgres wire protocol message.\n   * @param query The query to execute\n   * @param params Optional parameters for the query\n   * @returns The result of the query\n   */\n  async query<T>(\n    query: string,\n    params?: any[],\n    options?: QueryOptions,\n  ): Promise<Results<T>> {\n    await this._checkReady()\n    // We wrap the public query method in the transaction mutex to ensure that\n    // only one query can be executed at a time and not concurrently with a\n    // transaction.\n    return await this._runExclusiveTransaction(async () => {\n      return await this.#runQuery<T>(query, params, options)\n    })\n  }\n\n  /**\n   * Execute a single SQL statement like with {@link PGlite.query}, but with a\n   * templated statement where template values will be treated as parameters.\n   *\n   * You can use helpers from `/template` to further format the query with\n   * identifiers, raw SQL, and nested statements.\n   *\n   * This uses the \"Extended Query\" postgres wire protocol message.\n   *\n   * @param query The query to execute with parameters as template values\n   * @returns The result of the query\n   *\n   * @example\n   * ```ts\n   * const results = await db.sql`SELECT * FROM ${identifier`foo`} WHERE id = ${id}`\n   * ```\n   */\n  async sql<T>(\n    sqlStrings: TemplateStringsArray,\n    ...params: any[]\n  ): Promise<Results<T>> {\n    const { query, params: actualParams } = queryTemplate(sqlStrings, ...params)\n    return await this.query(query, actualParams)\n  }\n\n  /**\n   * Execute a SQL query, this can have multiple statements.\n   * This uses the \"Simple Query\" postgres wire protocol message.\n   * @param query The query to execute\n   * @returns The result of the query\n   */\n  async exec(query: string, options?: QueryOptions): Promise<Array<Results>> {\n    await this._checkReady()\n    // We wrap the public exec method in the transaction mutex to ensure that\n    // only one query can be executed at a time and not concurrently with a\n    // transaction.\n    return await this._runExclusiveTransaction(async () => {\n      return await this.#runExec(query, options)\n    })\n  }\n\n  /**\n   * Internal method to execute a query\n   * Not protected by the transaction mutex, so it can be used inside a transaction\n   * @param query The query to execute\n   * @param params Optional parameters for the query\n   * @returns The result of the query\n   */\n  async #runQuery<T>(\n    query: string,\n    params: any[] = [],\n    options?: QueryOptions,\n  ): Promise<Results<T>> {\n    return await this._runExclusiveQuery(async () => {\n      // We need to parse, bind and execute a query with parameters\n      this.#log('runQuery', query, params, options)\n      await this._handleBlob(options?.blob)\n\n      let results = []\n\n      try {\n        const parseResults = await this.#execProtocolNoSync(\n          serializeProtocol.parse({ text: query, types: options?.paramTypes }),\n          options,\n        )\n\n        const dataTypeIDs = parseDescribeStatementResults(\n          await this.#execProtocolNoSync(\n            serializeProtocol.describe({ type: 'S' }),\n            options,\n          ),\n        )\n\n        const values = params.map((param, i) => {\n          const oid = dataTypeIDs[i]\n          if (param === null || param === undefined) {\n            return null\n          }\n          const serialize = options?.serializers?.[oid] ?? this.serializers[oid]\n          if (serialize) {\n            return serialize(param)\n          } else {\n            return param.toString()\n          }\n        })\n\n        results = [\n          ...parseResults,\n          ...(await this.#execProtocolNoSync(\n            serializeProtocol.bind({\n              values,\n            }),\n            options,\n          )),\n          ...(await this.#execProtocolNoSync(\n            serializeProtocol.describe({ type: 'P' }),\n            options,\n          )),\n          ...(await this.#execProtocolNoSync(\n            serializeProtocol.execute({}),\n            options,\n          )),\n        ]\n      } catch (e) {\n        if (e instanceof DatabaseError) {\n          const pgError = makePGliteError({ e, options, params, query })\n          throw pgError\n        }\n        throw e\n      } finally {\n        results.push(\n          ...(await this.#execProtocolNoSync(\n            serializeProtocol.sync(),\n            options,\n          )),\n        )\n      }\n\n      await this._cleanupBlob()\n      if (!this.#inTransaction) {\n        await this.syncToFs()\n      }\n      const blob = await this._getWrittenBlob()\n      return parseResults(results, this.parsers, options, blob)[0] as Results<T>\n    })\n  }\n\n  /**\n   * Internal method to execute a query\n   * Not protected by the transaction mutex, so it can be used inside a transaction\n   * @param query The query to execute\n   * @param params Optional parameters for the query\n   * @returns The result of the query\n   */\n  async #runExec(\n    query: string,\n    options?: QueryOptions,\n  ): Promise<Array<Results>> {\n    return await this._runExclusiveQuery(async () => {\n      // No params so we can just send the query\n      this.#log('runExec', query, options)\n      await this._handleBlob(options?.blob)\n      let results = []\n      try {\n        results = await this.#execProtocolNoSync(\n          serializeProtocol.query(query),\n          options,\n        )\n      } catch (e) {\n        if (e instanceof DatabaseError) {\n          const pgError = makePGliteError({\n            e,\n            options,\n            params: undefined,\n            query,\n          })\n          throw pgError\n        }\n        throw e\n      } finally {\n        results.push(\n          ...(await this.#execProtocolNoSync(\n            serializeProtocol.sync(),\n            options,\n          )),\n        )\n      }\n      this._cleanupBlob()\n      if (!this.#inTransaction) {\n        await this.syncToFs()\n      }\n      const blob = await this._getWrittenBlob()\n      return parseResults(\n        results,\n        this.parsers,\n        options,\n        blob,\n      ) as Array<Results>\n    })\n  }\n\n  /**\n   * Describe a query\n   * @param query The query to describe\n   * @returns A description of the result types for the query\n   */\n  async describeQuery(\n    query: string,\n    options?: QueryOptions,\n  ): Promise<DescribeQueryResult> {\n    let messages = []\n    try {\n      await this.#execProtocolNoSync(\n        serializeProtocol.parse({ text: query, types: options?.paramTypes }),\n        options,\n      )\n\n      messages = await this.#execProtocolNoSync(\n        serializeProtocol.describe({ type: 'S' }),\n        options,\n      )\n    } catch (e) {\n      if (e instanceof DatabaseError) {\n        const pgError = makePGliteError({\n          e,\n          options,\n          params: undefined,\n          query,\n        })\n        throw pgError\n      }\n      throw e\n    } finally {\n      messages.push(\n        ...(await this.#execProtocolNoSync(serializeProtocol.sync(), options)),\n      )\n    }\n\n    const paramDescription = messages.find(\n      (msg): msg is ParameterDescriptionMessage =>\n        msg.name === 'parameterDescription',\n    )\n    const resultDescription = messages.find(\n      (msg): msg is RowDescriptionMessage => msg.name === 'rowDescription',\n    )\n\n    const queryParams =\n      paramDescription?.dataTypeIDs.map((dataTypeID) => ({\n        dataTypeID,\n        serializer: this.serializers[dataTypeID],\n      })) ?? []\n\n    const resultFields =\n      resultDescription?.fields.map((field) => ({\n        name: field.name,\n        dataTypeID: field.dataTypeID,\n        parser: this.parsers[field.dataTypeID],\n      })) ?? []\n\n    return { queryParams, resultFields }\n  }\n\n  /**\n   * Execute a transaction\n   * @param callback A callback function that takes a transaction object\n   * @returns The result of the transaction\n   */\n  async transaction<T>(callback: (tx: Transaction) => Promise<T>): Promise<T> {\n    await this._checkReady()\n    return await this._runExclusiveTransaction(async () => {\n      await this.#runExec('BEGIN')\n      this.#inTransaction = true\n\n      // Once a transaction is closed, we throw an error if it's used again\n      let closed = false\n      const checkClosed = () => {\n        if (closed) {\n          throw new Error('Transaction is closed')\n        }\n      }\n\n      const tx: Transaction = {\n        query: async <T>(\n          query: string,\n          params?: any[],\n          options?: QueryOptions,\n        ): Promise<Results<T>> => {\n          checkClosed()\n          return await this.#runQuery(query, params, options)\n        },\n        sql: async <T>(\n          sqlStrings: TemplateStringsArray,\n          ...params: any[]\n        ): Promise<Results<T>> => {\n          const { query, params: actualParams } = queryTemplate(\n            sqlStrings,\n            ...params,\n          )\n          return await this.#runQuery(query, actualParams)\n        },\n        exec: async (\n          query: string,\n          options?: QueryOptions,\n        ): Promise<Array<Results>> => {\n          checkClosed()\n          return await this.#runExec(query, options)\n        },\n        rollback: async () => {\n          checkClosed()\n          // Rollback and set the closed flag to prevent further use of this\n          // transaction\n          await this.#runExec('ROLLBACK')\n          closed = true\n        },\n        listen: async (\n          channel: string,\n          callback: (payload: string) => void,\n        ) => {\n          checkClosed()\n          return await this.listen(channel, callback, tx)\n        },\n        get closed() {\n          return closed\n        },\n      }\n\n      try {\n        const result = await callback(tx)\n        if (!closed) {\n          closed = true\n          await this.#runExec('COMMIT')\n        }\n        this.#inTransaction = false\n        return result\n      } catch (e) {\n        if (!closed) {\n          await this.#runExec('ROLLBACK')\n        }\n        this.#inTransaction = false\n        throw e\n      }\n    })\n  }\n\n  /**\n   * Run a function exclusively, no other transactions or queries will be allowed\n   * while the function is running.\n   * This is useful when working with the execProtocol methods as they are not blocked,\n   * and do not block the locks used by transactions and queries.\n   * @param fn The function to run\n   * @returns The result of the function\n   */\n  async runExclusive<T>(fn: () => Promise<T>): Promise<T> {\n    return await this._runExclusiveQuery(fn)\n  }\n\n  /**\n   * Internal log function\n   */\n  #log(...args: any[]) {\n    if (this.debug > 0) {\n      console.log(...args)\n    }\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/contrib/amcheck.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/amcheck.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const amcheck = {\n  name: 'amcheck',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/auto_explain.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/auto_explain.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const auto_explain = {\n  name: 'auto_explain',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/bloom.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/bloom.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const bloom = {\n  name: 'bloom',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/btree_gin.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/btree_gin.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const btree_gin = {\n  name: 'btree_gin',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/btree_gist.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/btree_gist.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const btree_gist = {\n  name: 'btree_gist',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/citext.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/citext.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const citext = {\n  name: 'citext',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/cube.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/cube.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const cube = {\n  name: 'cube',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/dict_int.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/dict_int.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const dict_int = {\n  name: 'dict_int',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/dict_xsyn.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/dict_xsyn.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const dict_xsyn = {\n  name: 'dict_xsyn',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/earthdistance.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/earthdistance.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const earthdistance = {\n  name: 'earthdistance',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/file_fdw.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/file_fdw.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const file_fdw = {\n  name: 'file_fdw',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/fuzzystrmatch.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/fuzzystrmatch.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const fuzzystrmatch = {\n  name: 'fuzzystrmatch',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/hstore.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/hstore.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const hstore = {\n  name: 'hstore',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/intarray.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/intarray.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const intarray = {\n  name: 'intarray',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/isn.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/isn.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const isn = {\n  name: 'isn',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/lo.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/lo.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const lo = {\n  name: 'lo',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/ltree.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/ltree.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const ltree = {\n  name: 'ltree',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pageinspect.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pageinspect.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pageinspect = {\n  name: 'pageinspect',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pg_buffercache.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pg_buffercache.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_buffercache = {\n  name: 'pg_buffercache',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pg_freespacemap.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL(\n      '../../release/pg_freespacemap.tar.gz',\n      import.meta.url,\n    ),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_freespacemap = {\n  name: 'pg_freespacemap',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pg_surgery.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pg_surgery.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_surgery = {\n  name: 'pg_surgery',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pg_trgm.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pg_trgm.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_trgm = {\n  name: 'pg_trgm',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pg_visibility.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pg_visibility.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_visibility = {\n  name: 'pg_visibility',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pg_walinspect.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pg_walinspect.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_walinspect = {\n  name: 'pg_walinspect',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/pgcrypto.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/pgcrypto.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pgcrypto = {\n  name: 'pgcrypto',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/seg.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/seg.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const seg = {\n  name: 'seg',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/tablefunc.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/tablefunc.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const tablefunc = {\n  name: 'tablefunc',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/tcn.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/tcn.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const tcn = {\n  name: 'tcn',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/tsm_system_rows.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL(\n      '../../release/tsm_system_rows.tar.gz',\n      import.meta.url,\n    ),\n  } satisfies ExtensionSetupResult\n}\n\nexport const tsm_system_rows = {\n  name: 'tsm_system_rows',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/tsm_system_time.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL(\n      '../../release/tsm_system_time.tar.gz',\n      import.meta.url,\n    ),\n  } satisfies ExtensionSetupResult\n}\n\nexport const tsm_system_time = {\n  name: 'tsm_system_time',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/unaccent.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/unaccent.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const unaccent = {\n  name: 'unaccent',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/contrib/uuid_ossp.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, _emscriptenOpts: any) => {\n  return {\n    bundlePath: new URL('../../release/uuid-ossp.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const uuid_ossp = {\n  name: 'uuid-ossp',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/definitions/tinytar.d.ts",
    "content": "declare module 'tinytar' {\n  interface TarFile {\n    name: string\n    mode?: number\n    uid?: number\n    gid?: number\n    size?: number\n    modifyTime?: number | Date\n    checksum?: number\n    type?: number\n    linkName?: string\n    ustar?: string\n    owner?: string\n    group?: string\n    majorNumber?: number\n    minorNumber?: number\n    prefix?: string\n    accessTime?: number | Date\n    createTime?: number | Date\n    data: Uint8Array\n    isOldGNUFormat?: boolean\n  }\n\n  interface UntarOptions {\n    extractData?: boolean\n    checkHeader?: boolean\n    checkChecksum?: boolean\n    checkFileSize?: boolean\n  }\n\n  function tar(files: TarFile[]): Uint8Array\n  function untar(buffer: Uint8Array, options?: UntarOptions): TarFile[]\n\n  const NULL_CHAR: string\n  const TMAGIC: string\n  const OLDGNU_MAGIC: string\n\n  // Values used in typeflag field\n  const REGTYPE: number\n  const LNKTYPE: number\n  const SYMTYPE: number\n  const CHRTYPE: number\n  const BLKTYPE: number\n  const DIRTYPE: number\n  const FIFOTYPE: number\n  const CONTTYPE: number\n\n  // Bits used in the mode field, values in octal\n  const TSUID: number\n  const TSGID: number\n  const TSVTX: number\n  const TUREAD: number\n  const TUWRITE: number\n  const TUEXEC: number\n  const TGREAD: number\n  const TGWRITE: number\n  const TGEXEC: number\n  const TOREAD: number\n  const TOWRITE: number\n  const TOEXEC: number\n\n  const TPERMALL: number\n  const TPERMMASK: number\n}\n"
  },
  {
    "path": "packages/pglite/src/errors.ts",
    "content": "import { DatabaseError } from '@electric-sql/pg-protocol/messages'\nimport { QueryOptions } from './interface'\n\nexport interface PGliteError extends DatabaseError {\n  query: string | undefined\n  params: any[] | undefined\n  queryOptions: QueryOptions | undefined\n}\n\nexport function makePGliteError(data: {\n  e: DatabaseError\n  query: string\n  params: any[] | undefined\n  options: QueryOptions | undefined\n}) {\n  const pgError = data.e as PGliteError\n  pgError.query = data.query\n  pgError.params = data.params\n  pgError.queryOptions = data.options\n  return pgError\n}\n"
  },
  {
    "path": "packages/pglite/src/extensionUtils.ts",
    "content": "import tinyTar from 'tinytar'\nimport { IN_NODE } from './utils.js'\nimport type { PostgresMod } from './postgresMod.js'\n\nexport async function loadExtensionBundle(\n  bundlePath: URL,\n): Promise<Blob | null> {\n  // Async load the extension bundle tar file\n  // could be from a URL or a file\n  if (IN_NODE) {\n    const fs = await import('fs')\n    const zlib = await import('zlib')\n    const { Writable } = await import('stream')\n    const { pipeline } = await import('stream/promises')\n\n    if (!fs.existsSync(bundlePath)) {\n      throw new Error(`Extension bundle not found: ${bundlePath}`)\n    }\n\n    const gunzip = zlib.createGunzip()\n    const chunks: Uint8Array[] = []\n\n    await pipeline(\n      fs.createReadStream(bundlePath),\n      gunzip,\n      new Writable({\n        write(chunk, _encoding, callback) {\n          chunks.push(chunk)\n          callback()\n        },\n      }),\n    )\n    return new Blob(chunks)\n  } else {\n    const response = await fetch(bundlePath.toString())\n    if (!response.ok || !response.body) {\n      return null\n    } else if (response.headers.get('Content-Encoding') === 'gzip') {\n      // Although the bundle is manually compressed, some servers will recognize\n      // that and add a content-encoding header. Fetch will then automatically\n      // decompress the response.\n      return response.blob()\n    } else {\n      const decompressionStream = new DecompressionStream('gzip')\n      const decompressedStream = new Response(\n        response.body.pipeThrough(decompressionStream),\n      )\n      return decompressedStream.blob()\n    }\n  }\n}\n\nexport async function loadExtensions(\n  mod: PostgresMod,\n  log: (...args: any[]) => void,\n): Promise<void[]> {\n  const promises = new Array<Promise<void>>()\n  for (const ext in mod.pg_extensions) {\n    let blob\n    try {\n      blob = await mod.pg_extensions[ext]\n    } catch (err) {\n      console.error('Failed to fetch extension:', ext, err)\n      continue\n    }\n    if (blob) {\n      const bytes = new Uint8Array(await blob.arrayBuffer())\n      promises.push(...loadExtension(mod, ext, bytes, log))\n    } else {\n      console.error('Could not get binary data for extension:', ext)\n    }\n  }\n  return Promise.all(promises)\n}\n\nfunction loadExtension(\n  mod: PostgresMod,\n  _ext: string,\n  bytes: Uint8Array,\n  log: (...args: any[]) => void,\n): Promise<void>[] {\n  const soPreloadPromises: Promise<void>[] = []\n  // sort is a hack to make PostGIS work. we need to preload postgis-3.so BEFORE postgis_topology-3.so\n  const data = tinyTar\n    .untar(bytes)\n    .sort((a, b) => (a.name > b.name ? 1 : a.name < b.name ? -1 : 0))\n  data.forEach((entry: any) => {\n    if (entry.name.endsWith('/')) {\n      const dirPath = `${mod.WASM_PREFIX}/${entry.name}`\n      if (mod.FS.analyzePath(dirPath).exists === false) {\n        mod.FS.mkdirTree(dirPath)\n      }\n    } else if (!entry.name.startsWith('.')) {\n      const filePath = mod.WASM_PREFIX + '/' + entry.name\n      if (entry.name.endsWith('.so')) {\n        log(`pgfs:ext preloading ${filePath}`)\n        const soName = entry.name.split('/').pop()! // e.g. 'postgis-3.so'\n        const dirPath = dirname(filePath)\n        // Wrap createPreloadedFile in a Promise so loadExtensions can await the\n        // async WASM compilation done by Emscripten's wasm preload plugin.\n        // The plugin calls extOk only after preloadedWasm[path] is set, so\n        // awaiting this ensures dlopen finds the pre-compiled module.\n        const soPreload = new Promise<void>((resolve, _reject) => {\n          const extOk = (...args: any[]) => {\n            log('pgfs:ext OK', filePath, args)\n            resolve()\n          }\n          const extFail = (...args: any[]) => {\n            log('pgfs:ext FAIL', filePath, args)\n            // hope for the best: it's not the end even if we were unable to preload a file\n            // emscripten will try again if/when needed and do a wasm.compile on the main thread\n            // but we still need to copy it to our filesystem\n            copyToFS(filePath, mod, entry)\n            resolve()\n            // _reject(new Error(`Failed to preload ${filePath}`))\n          }\n          // Keep the .so suffix so Emscripten's wasm preload plugin canHandle() matches,\n          // triggering async WebAssembly.instantiate. The compiled module is stored in\n          // preloadedWasm under the path with .so.\n          mod.FS.createPreloadedFile(\n            dirPath,\n            soName,\n            entry.data as any, // There is a type error in Emscripten's FS.createPreloadedFile, this excepts a Uint8Array, but the type is defined as any\n            true,\n            true,\n            extOk,\n            extFail,\n            false,\n          )\n        })\n        soPreloadPromises.push(soPreload)\n      } else {\n        copyToFS(filePath, mod, entry)\n      }\n    }\n  })\n  return soPreloadPromises\n}\n\nfunction copyToFS(filePath: string, mod: PostgresMod, entry: any) {\n  try {\n    const dirPath = filePath.substring(0, filePath.lastIndexOf('/'))\n    if (mod.FS.analyzePath(dirPath).exists === false) {\n      mod.FS.mkdirTree(dirPath)\n    }\n    mod.FS.writeFile(filePath, entry.data)\n  } catch (e) {\n    console.error(`Error writing file ${filePath}`, e)\n  }\n}\n\nfunction dirname(path: string) {\n  const last = path.lastIndexOf('/')\n  if (last > 0) {\n    return path.slice(0, last)\n  } else {\n    return path\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/base.ts",
    "content": "import type { PostgresMod } from '../postgresMod.js'\nimport type { PGlite } from '../pglite.js'\nimport { dumpTar, type DumpTarCompressionOptions } from './tarUtils.js'\nimport { PGDATA } from '../initdb.js'\n\nexport const WASM_PREFIX = '/pglite'\n\nexport type FsType = 'nodefs' | 'idbfs' | 'memoryfs' | 'opfs-ahp'\n\n/**\n * Filesystem interface.\n * All virtual filesystems that are compatible with PGlite must implement\n * this interface.\n */\nexport interface Filesystem {\n  /**\n   * Initiate the filesystem and return the options to pass to the emscripten module.\n   */\n  init(\n    pg: PGlite,\n    emscriptenOptions: Partial<PostgresMod>,\n  ): Promise<{ emscriptenOpts: Partial<PostgresMod> }>\n\n  /**\n   * Sync the filesystem to any underlying storage.\n   */\n  syncToFs(relaxedDurability?: boolean): Promise<void>\n\n  /**\n   * Sync the filesystem from any underlying storage.\n   */\n  initialSyncFs(): Promise<void>\n\n  /**\n   * Dump the PGDATA dir from the filesystem to a gzipped tarball.\n   */\n  dumpTar(\n    dbname: string,\n    compression?: DumpTarCompressionOptions,\n  ): Promise<File | Blob>\n\n  /**\n   * Close the filesystem.\n   */\n  closeFs(): Promise<void>\n}\n\n/**\n * Base class for all emscripten built-in filesystems.\n */\nexport class EmscriptenBuiltinFilesystem implements Filesystem {\n  protected dataDir?: string\n  protected pg?: PGlite\n\n  constructor(dataDir?: string) {\n    this.dataDir = dataDir\n  }\n\n  async init(pg: PGlite, emscriptenOptions: Partial<PostgresMod>) {\n    this.pg = pg\n    return { emscriptenOpts: emscriptenOptions }\n  }\n\n  async syncToFs(_relaxedDurability?: boolean) {}\n\n  async initialSyncFs() {}\n\n  async closeFs() {}\n\n  async dumpTar(dbname: string, compression?: DumpTarCompressionOptions) {\n    return dumpTar(this.pg!.Module.FS, PGDATA, dbname, compression)\n  }\n}\n\n/**\n * Abstract base class for all custom virtual filesystems.\n * Each custom filesystem needs to implement an interface similar to the NodeJS FS API.\n */\nexport abstract class BaseFilesystem implements Filesystem {\n  protected dataDir?: string\n  protected pg?: PGlite\n  readonly debug: boolean\n\n  constructor(dataDir?: string, { debug = false }: { debug?: boolean } = {}) {\n    this.dataDir = dataDir\n    this.debug = debug\n  }\n\n  async syncToFs(_relaxedDurability?: boolean) {}\n\n  async initialSyncFs() {}\n\n  async closeFs() {}\n\n  async dumpTar(dbname: string, compression?: DumpTarCompressionOptions) {\n    return dumpTar(this.pg!.Module.FS, PGDATA, dbname, compression)\n  }\n\n  async init(pg: PGlite, emscriptenOptions: Partial<PostgresMod>) {\n    this.pg = pg\n    const options: Partial<PostgresMod> = {\n      ...emscriptenOptions,\n      preRun: [\n        ...(emscriptenOptions.preRun || []),\n        (mod: PostgresMod) => {\n          const EMFS = createEmscriptenFS(mod, this)\n          mod.FS.mkdir(PGDATA)\n          mod.FS.mount(EMFS, {}, PGDATA)\n        },\n      ],\n    }\n    return { emscriptenOpts: options }\n  }\n\n  // Filesystem API\n\n  abstract chmod(path: string, mode: number): void\n  abstract close(fd: number): void\n  abstract fstat(fd: number): FsStats\n  abstract lstat(path: string): FsStats\n  abstract mkdir(\n    path: string,\n    options?: { recursive?: boolean; mode?: number },\n  ): void\n  abstract open(path: string, flags?: string, mode?: number): number\n  abstract readdir(path: string): string[]\n  abstract read(\n    fd: number,\n    buffer: Uint8Array, // Buffer to read into\n    offset: number, // Offset in buffer to start writing to\n    length: number, // Number of bytes to read\n    position: number, // Position in file to read from\n  ): number\n  abstract rename(oldPath: string, newPath: string): void\n  abstract rmdir(path: string): void\n  abstract truncate(\n    path: string,\n    len: number, // Length to truncate to - defaults to 0\n  ): void\n  abstract unlink(path: string): void\n  abstract utimes(path: string, atime: number, mtime: number): void\n  abstract writeFile(\n    path: string,\n    data: string | Uint8Array,\n    options?: { encoding?: string; mode?: number; flag?: string },\n  ): void\n  abstract write(\n    fd: number,\n    buffer: Uint8Array, // Buffer to read from\n    offset: number, // Offset in buffer to start reading from\n    length: number, // Number of bytes to write\n    position: number, // Position in file to write to\n  ): number\n}\n\nexport type FsStats = {\n  dev: number\n  ino: number\n  mode: number\n  nlink: number\n  uid: number\n  gid: number\n  rdev: number\n  size: number\n  blksize: number\n  blocks: number\n  atime: number\n  mtime: number\n  ctime: number\n}\n\ntype EmscriptenFileSystem = Emscripten.FileSystemType & {\n  createNode: (\n    parent: FSNode | null,\n    name: string,\n    mode: number,\n    dev?: any,\n  ) => FSNode\n  node_ops: FS.NodeOps\n  stream_ops: FS.StreamOps & {\n    dup: (stream: FSStream) => void\n    mmap: (\n      stream: FSStream,\n      length: number,\n      position: number,\n      prot: any,\n      flags: any,\n    ) => { ptr: number; allocated: boolean }\n    msync: (\n      stream: FSStream,\n      buffer: Uint8Array,\n      offset: number,\n      length: number,\n      mmapFlags: any,\n    ) => number\n  }\n} & { [key: string]: any }\n\ntype FSNode = FS.FSNode & {\n  node_ops: FS.NodeOps\n  stream_ops: FS.StreamOps\n}\n\ntype FSStream = FS.FSStream & {\n  node: FSNode\n  shared: {\n    refcount: number\n  }\n}\n\ntype FSMount = FS.Mount & {\n  opts: {\n    root: string\n  }\n}\n\ntype EmscriptenFS = PostgresMod['FS'] & {\n  createNode: (\n    parent: FSNode | null,\n    name: string,\n    mode: number,\n    dev?: any,\n  ) => FSNode\n}\n\nexport const ERRNO_CODES = {\n  EBADF: 8,\n  EBADFD: 127,\n  EEXIST: 20,\n  EINVAL: 28,\n  EISDIR: 31,\n  ENODEV: 43,\n  ENOENT: 44,\n  ENOTDIR: 54,\n  ENOTEMPTY: 55,\n} as const\n\n/**\n * Create an emscripten filesystem that uses the BaseFilesystem.\n * @param Module The emscripten module\n * @param baseFS The BaseFilesystem implementation\n * @returns The emscripten filesystem\n */\nconst createEmscriptenFS = (Module: PostgresMod, baseFS: BaseFilesystem) => {\n  const FS = Module.FS as EmscriptenFS\n  const log = baseFS.debug ? console.log : null\n  const EMFS = {\n    tryFSOperation<T>(f: () => T): T {\n      try {\n        return f()\n      } catch (e: any) {\n        if (!e.code) throw e\n        if (e.code === 'UNKNOWN') throw new FS.ErrnoError(ERRNO_CODES.EINVAL)\n        throw new FS.ErrnoError(e.code)\n      }\n    },\n    mount(_mount: FSMount): FSNode {\n      return EMFS.createNode(null, '/', 16384 | 511, 0)\n    },\n    syncfs(\n      _mount: FS.Mount,\n      _populate: any, // This has the wrong type in @types/emscripten\n      _done: (err?: number | null) => unknown,\n    ): void {\n      // noop\n    },\n    createNode(\n      parent: FSNode | null,\n      name: string,\n      mode: number,\n      _dev?: any,\n    ): FSNode {\n      if (!FS.isDir(mode) && !FS.isFile(mode)) {\n        throw new FS.ErrnoError(28)\n      }\n      const node = FS.createNode(parent, name, mode)\n      node.node_ops = EMFS.node_ops\n      node.stream_ops = EMFS.stream_ops\n      return node\n    },\n    getMode: function (path: string): number {\n      log?.('getMode', path)\n      return EMFS.tryFSOperation(() => {\n        const stats = baseFS.lstat(path)\n        return stats.mode\n      })\n    },\n    realPath: function (node: FSNode): string {\n      const parts: string[] = []\n      while (node.parent !== node) {\n        parts.push(node.name)\n        node = node.parent as FSNode\n      }\n      parts.push((node.mount as FSMount).opts.root)\n      parts.reverse()\n      return parts.join('/')\n    },\n    node_ops: {\n      getattr(node: FSNode): FS.Stats {\n        log?.('getattr', EMFS.realPath(node))\n        const path = EMFS.realPath(node)\n        return EMFS.tryFSOperation(() => {\n          const stats = baseFS.lstat(path)\n          return {\n            ...stats,\n            dev: 0,\n            ino: node.id,\n            nlink: 1,\n            rdev: node.rdev,\n            atime: new Date(stats.atime),\n            mtime: new Date(stats.mtime),\n            ctime: new Date(stats.ctime),\n          }\n        })\n      },\n      setattr(node: FSNode, attr: FS.Stats): void {\n        log?.('setattr', EMFS.realPath(node), attr)\n        const path = EMFS.realPath(node)\n        EMFS.tryFSOperation(() => {\n          if (attr.mode !== undefined) {\n            baseFS.chmod(path, attr.mode)\n          }\n          if (attr.size !== undefined) {\n            baseFS.truncate(path, attr.size)\n          }\n          if (attr.timestamp !== undefined) {\n            baseFS.utimes(path, attr.timestamp, attr.timestamp)\n          }\n          if (attr.size !== undefined) {\n            baseFS.truncate(path, attr.size)\n          }\n        })\n      },\n      lookup(parent: FSNode, name: string): FSNode {\n        log?.('lookup', EMFS.realPath(parent), name)\n        const path = [EMFS.realPath(parent), name].join('/')\n        const mode = EMFS.getMode(path)\n        return EMFS.createNode(parent, name, mode)\n      },\n      mknod(parent: FSNode, name: string, mode: number, dev: unknown): FSNode {\n        log?.('mknod', EMFS.realPath(parent), name, mode, dev)\n        const node = EMFS.createNode(parent, name, mode, dev)\n        // create the backing node for this in the fs root as well\n        const path = EMFS.realPath(node)\n        return EMFS.tryFSOperation(() => {\n          if (FS.isDir(node.mode)) {\n            baseFS.mkdir(path, { mode })\n          } else {\n            baseFS.writeFile(path, '', { mode })\n          }\n          return node\n        })\n      },\n      rename(oldNode: FSNode, newDir: FSNode, newName: string): void {\n        log?.('rename', EMFS.realPath(oldNode), EMFS.realPath(newDir), newName)\n        const oldPath = EMFS.realPath(oldNode)\n        const newPath = [EMFS.realPath(newDir), newName].join('/')\n        EMFS.tryFSOperation(() => {\n          baseFS.rename(oldPath, newPath)\n        })\n        oldNode.name = newName\n      },\n      unlink(parent: FSNode, name: string): void {\n        log?.('unlink', EMFS.realPath(parent), name)\n        const path = [EMFS.realPath(parent), name].join('/')\n        try {\n          baseFS.unlink(path)\n        } catch (e: any) {\n          // no-op\n        }\n      },\n      rmdir(parent: FSNode, name: string): void {\n        log?.('rmdir', EMFS.realPath(parent), name)\n        const path = [EMFS.realPath(parent), name].join('/')\n        return EMFS.tryFSOperation(() => {\n          baseFS.rmdir(path)\n        })\n      },\n      readdir(node: FSNode): string[] {\n        log?.('readdir', EMFS.realPath(node))\n        const path = EMFS.realPath(node)\n        return EMFS.tryFSOperation(() => {\n          return baseFS.readdir(path)\n        })\n      },\n      symlink(parent: FSNode, newName: string, oldPath: string): void {\n        log?.('symlink', EMFS.realPath(parent), newName, oldPath)\n        // This is not supported by EMFS\n        throw new FS.ErrnoError(63)\n      },\n      readlink(node: FSNode): string {\n        log?.('readlink', EMFS.realPath(node))\n        // This is not supported by EMFS\n        throw new FS.ErrnoError(63)\n      },\n    },\n    stream_ops: {\n      open(stream: FSStream): void {\n        log?.('open stream', EMFS.realPath(stream.node))\n        const path = EMFS.realPath(stream.node)\n        return EMFS.tryFSOperation(() => {\n          if (FS.isFile(stream.node.mode)) {\n            stream.shared.refcount = 1\n            stream.nfd = baseFS.open(path)\n          }\n        })\n      },\n      close(stream: FSStream): void {\n        log?.('close stream', EMFS.realPath(stream.node))\n        return EMFS.tryFSOperation(() => {\n          if (\n            FS.isFile(stream.node.mode) &&\n            stream.nfd &&\n            --stream.shared.refcount === 0\n          ) {\n            baseFS.close(stream.nfd)\n          }\n        })\n      },\n      dup(stream: FSStream) {\n        log?.('dup stream', EMFS.realPath(stream.node))\n        stream.shared.refcount++\n      },\n      read(\n        stream: FSStream, // Stream to read from\n        buffer: Uint8Array, // Buffer to read into - Wrong type in @types/emscripten\n        offset: number, // Offset in buffer to start writing to\n        length: number, // Number of bytes to read\n        position: number, // Position in file to read from\n      ): number {\n        log?.(\n          'read stream',\n          EMFS.realPath(stream.node),\n          offset,\n          length,\n          position,\n        )\n        if (length === 0) return 0\n        const ret = EMFS.tryFSOperation(() =>\n          baseFS.read(\n            stream.nfd!,\n            buffer as unknown as Uint8Array,\n            offset,\n            length,\n            position,\n          ),\n        )\n        return ret\n      },\n      write(\n        stream: FSStream, // Stream to write to\n        buffer: Uint8Array, // Buffer to read from - Wrong type in @types/emscripten\n        offset: number, // Offset in buffer to start writing from\n        length: number, // Number of bytes to write\n        position: number, // Position in file to write to\n      ): number {\n        log?.(\n          'write stream',\n          EMFS.realPath(stream.node),\n          offset,\n          length,\n          position,\n        )\n        return EMFS.tryFSOperation(() =>\n          baseFS.write(\n            stream.nfd!,\n            buffer.buffer as unknown as Uint8Array,\n            offset,\n            length,\n            position,\n          ),\n        )\n      },\n      llseek(stream: FSStream, offset: number, whence: number): number {\n        log?.('llseek stream', EMFS.realPath(stream.node), offset, whence)\n        let position = offset\n        if (whence === 1) {\n          position += stream.position\n        } else if (whence === 2) {\n          if (FS.isFile(stream.node.mode)) {\n            EMFS.tryFSOperation(() => {\n              const stat = baseFS.fstat(stream.nfd!)\n              position += stat.size\n            })\n          }\n        }\n        if (position < 0) {\n          throw new FS.ErrnoError(28)\n        }\n        return position\n      },\n      mmap(\n        stream: FSStream,\n        length: number,\n        position: number,\n        prot: any,\n        flags: any,\n      ) {\n        log?.(\n          'mmap stream',\n          EMFS.realPath(stream.node),\n          length,\n          position,\n          prot,\n          flags,\n        )\n        if (!FS.isFile(stream.node.mode)) {\n          throw new FS.ErrnoError(ERRNO_CODES.ENODEV)\n        }\n\n        const ptr = (Module as any).mmapAlloc(length) // TODO: Fix type and check this is exported\n\n        EMFS.stream_ops.read(\n          stream,\n          Module.HEAP8 as unknown as Uint8Array,\n          ptr,\n          length,\n          position,\n        )\n        return { ptr, allocated: true }\n      },\n      msync(\n        stream: FSStream,\n        buffer: Uint8Array,\n        offset: number,\n        length: number,\n        mmapFlags: any,\n      ) {\n        log?.(\n          'msync stream',\n          EMFS.realPath(stream.node),\n          offset,\n          length,\n          mmapFlags,\n        )\n        EMFS.stream_ops.write(stream, buffer, 0, length, offset)\n        return 0\n      },\n    },\n  } satisfies EmscriptenFileSystem\n  return EMFS\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/idbfs.ts",
    "content": "import { EmscriptenBuiltinFilesystem } from './base.js'\nimport type { PostgresMod } from '../postgresMod.js'\nimport { PGlite } from '../pglite.js'\nimport { PGDATA, PG_ROOT } from '../initdb.js'\n\nexport class IdbFs extends EmscriptenBuiltinFilesystem {\n  async init(pg: PGlite, opts: Partial<PostgresMod>) {\n    this.pg = pg\n    const options: Partial<PostgresMod> = {\n      ...opts,\n      preRun: [\n        ...(opts.preRun || []),\n        (mod: any) => {\n          const idbfs = mod.FS.filesystems.IDBFS\n          // Mount the idbfs to the users dataDir then symlink the PGDATA to the\n          // idbfs mount point.\n          // We specifically use /pglite as the root directory for the idbfs\n          // as the fs will ber persisted in the indexeddb as a database with\n          // the path as the name.\n          if (!mod.FS.analyzePath(PG_ROOT).exists) {\n            mod.FS.mkdir(PG_ROOT)\n          }\n          if (!mod.FS.analyzePath(`${PG_ROOT}/${this.dataDir}`).exists) {\n            mod.FS.mkdir(`${PG_ROOT}/${this.dataDir}`)\n          }\n          mod.FS.mount(idbfs, {}, `${PG_ROOT}/${this.dataDir}`)\n          mod.FS.symlink(`${PG_ROOT}/${this.dataDir}`, PGDATA)\n        },\n      ],\n    }\n    return { emscriptenOpts: options }\n  }\n\n  initialSyncFs() {\n    return new Promise<void>((resolve, reject) => {\n      this.pg!.Module.FS.syncfs(true, (err: any) => {\n        if (err) {\n          reject(err)\n        } else {\n          resolve()\n        }\n      })\n    })\n  }\n\n  syncToFs(_relaxedDurability?: boolean) {\n    return new Promise<void>((resolve, reject) => {\n      this.pg!.Module.FS.syncfs(false, (err: any) => {\n        if (err) {\n          reject(err)\n        } else {\n          resolve()\n        }\n      })\n    })\n  }\n\n  async closeFs(): Promise<void> {\n    // IDBDatabase.close() method is essentially async, but returns immediately,\n    // the database will be closed when all transactions are complete.\n    // This needs to be handled in application code if you want to delete the\n    // database after it has been closed. If you try to delete the database\n    // before it has fully closed it will throw a blocking error.\n    const indexedDb = this.pg!.Module.FS.filesystems.IDBFS.dbs[this.dataDir!]\n    if (indexedDb) {\n      indexedDb.close()\n    }\n    this.pg!.Module.FS.quit()\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/index.ts",
    "content": "import type { FsType, Filesystem } from './base.js'\nimport { IdbFs } from './idbfs.js'\nimport { MemoryFS } from './memoryfs.js'\n\nexport {\n  BaseFilesystem,\n  ERRNO_CODES,\n  WASM_PREFIX,\n  type Filesystem,\n  type FsType,\n  type FsStats,\n} from './base.js'\n\nexport function parseDataDir(dataDir?: string) {\n  let fsType: FsType\n  if (dataDir?.startsWith('file://')) {\n    // Remove the file:// prefix, and use node filesystem\n    dataDir = dataDir.slice(7)\n    if (!dataDir) {\n      throw new Error('Invalid dataDir, must be a valid path')\n    }\n    fsType = 'nodefs'\n  } else if (dataDir?.startsWith('idb://')) {\n    // Remove the idb:// prefix, and use indexeddb filesystem\n    dataDir = dataDir.slice(6)\n    fsType = 'idbfs'\n  } else if (dataDir?.startsWith('opfs-ahp://')) {\n    // Remove the opfsahp:// prefix, and use opfs access handle pool filesystem\n    dataDir = dataDir.slice(11)\n    fsType = 'opfs-ahp'\n  } else if (!dataDir || dataDir?.startsWith('memory://')) {\n    // Use in-memory filesystem\n    fsType = 'memoryfs'\n  } else {\n    // No prefix, use node filesystem\n    fsType = 'nodefs'\n  }\n  return { dataDir, fsType }\n}\n\nexport async function loadFs(dataDir?: string, fsType?: FsType) {\n  let fs: Filesystem\n  if (dataDir && fsType === 'nodefs') {\n    // Lazy load the nodefs to avoid bundling it in the browser\n    const { NodeFS } = await import('./nodefs.js')\n    fs = new NodeFS(dataDir)\n  } else if (dataDir && fsType === 'idbfs') {\n    fs = new IdbFs(dataDir)\n  } else if (dataDir && fsType === 'opfs-ahp') {\n    // Lazy load the opfs-ahp to so that it's optional in the bundle\n    const { OpfsAhpFS } = await import('./opfs-ahp.js')\n    fs = new OpfsAhpFS(dataDir)\n  } else {\n    fs = new MemoryFS()\n  }\n  return fs\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/memoryfs.ts",
    "content": "import { EmscriptenBuiltinFilesystem } from './base.js'\n\nexport class MemoryFS extends EmscriptenBuiltinFilesystem {\n  async closeFs(): Promise<void> {\n    this.pg!.Module.FS.quit()\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/nodefs.ts",
    "content": "import * as fs from 'fs'\nimport * as path from 'path'\nimport { EmscriptenBuiltinFilesystem } from './base.js'\nimport type { PostgresMod } from '../postgresMod.js'\nimport { PGlite } from '../pglite.js'\nimport { PGDATA } from '../initdb.js'\n\nexport class NodeFS extends EmscriptenBuiltinFilesystem {\n  protected rootDir: string\n\n  constructor(dataDir: string) {\n    super(dataDir)\n    this.rootDir = path.resolve(dataDir)\n    if (!fs.existsSync(path.join(this.rootDir))) {\n      fs.mkdirSync(this.rootDir)\n    }\n  }\n\n  async init(pg: PGlite, opts: Partial<PostgresMod>) {\n    this.pg = pg\n    const options: Partial<PostgresMod> = {\n      ...opts,\n      preRun: [\n        ...(opts.preRun || []),\n        (mod: any) => {\n          const nodefs = mod.FS.filesystems.NODEFS\n          mod.FS.mkdir(PGDATA)\n          mod.FS.mount(nodefs, { root: this.rootDir }, PGDATA)\n        },\n      ],\n    }\n    return { emscriptenOpts: options }\n  }\n\n  async closeFs(): Promise<void> {\n    this.pg!.Module.FS.quit()\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/opfs-ahp.ts",
    "content": "import { BaseFilesystem, ERRNO_CODES, type FsStats } from './base.js'\nimport type { PostgresMod } from '../postgresMod.js'\nimport { PGlite } from '../pglite.js'\n\nexport interface OpfsAhpOptions {\n  initialPoolSize?: number\n  maintainedPoolSize?: number\n  debug?: boolean\n}\n\n// TypeScript doesn't have a built-in type for FileSystemSyncAccessHandle\nexport interface FileSystemSyncAccessHandle {\n  close(): void\n  flush(): void\n  getSize(): number\n  read(buffer: ArrayBuffer, options: { at: number }): number\n  truncate(newSize: number): void\n  write(buffer: ArrayBuffer, options: { at: number }): number\n}\n\n// State\n\nconst STATE_FILE = 'state.txt'\nconst DATA_DIR = 'data'\nconst INITIAL_MODE = {\n  DIR: 16384,\n  FILE: 32768,\n}\n\nexport interface State {\n  root: DirectoryNode\n  pool: PoolFilenames\n}\n\nexport type PoolFilenames = Array<string>\n\n// WAL\n\nexport interface WALEntry {\n  opp: string\n  args: any[]\n}\n\n// Node tree\n\nexport type NodeType = 'file' | 'directory'\n\ninterface BaseNode {\n  type: NodeType\n  lastModified: number\n  mode: number\n}\n\nexport interface FileNode extends BaseNode {\n  type: 'file'\n  backingFilename: string\n}\n\nexport interface DirectoryNode extends BaseNode {\n  type: 'directory'\n  children: { [filename: string]: Node }\n}\n\nexport type Node = FileNode | DirectoryNode\n\n/**\n * PGlite OPFS access handle pool filesystem.\n * Opens a pool of sync access handles and then allocates them as needed.\n */\nexport class OpfsAhpFS extends BaseFilesystem {\n  declare readonly dataDir: string\n  readonly initialPoolSize: number\n  readonly maintainedPoolSize: number\n\n  #opfsRootAh!: FileSystemDirectoryHandle\n  #rootAh!: FileSystemDirectoryHandle\n  #dataDirAh!: FileSystemDirectoryHandle\n\n  #stateFH!: FileSystemFileHandle\n  #stateSH!: FileSystemSyncAccessHandle\n\n  #fh: Map<string, FileSystemFileHandle> = new Map()\n  #sh: Map<string, FileSystemSyncAccessHandle> = new Map()\n\n  #handleIdCounter = 0\n  #openHandlePaths: Map<number, string> = new Map()\n  #openHandleIds: Map<string, number> = new Map()\n\n  state!: State\n  lastCheckpoint = 0\n  checkpointInterval = 1000 * 60 // 1 minute\n  poolCounter = 0\n\n  #unsyncedSH = new Set<FileSystemSyncAccessHandle>()\n\n  constructor(\n    dataDir: string,\n    {\n      initialPoolSize = 1000,\n      maintainedPoolSize = 100,\n      debug = false,\n    }: OpfsAhpOptions = {},\n  ) {\n    super(dataDir, { debug })\n    this.initialPoolSize = initialPoolSize\n    this.maintainedPoolSize = maintainedPoolSize\n  }\n\n  async init(pg: PGlite, opts: Partial<PostgresMod>) {\n    await this.#init()\n    return super.init(pg, opts)\n  }\n\n  async syncToFs(relaxedDurability = false) {\n    await this.maybeCheckpointState()\n    await this.maintainPool()\n    if (!relaxedDurability) {\n      this.flush()\n    }\n  }\n\n  async closeFs(): Promise<void> {\n    for (const sh of this.#sh.values()) {\n      sh.close()\n    }\n    this.#stateSH.flush()\n    this.#stateSH.close()\n    this.pg!.Module.FS.quit()\n  }\n\n  async #init() {\n    this.#opfsRootAh = await navigator.storage.getDirectory()\n    this.#rootAh = await this.#resolveOpfsDirectory(this.dataDir!, {\n      create: true,\n    })\n    this.#dataDirAh = await this.#resolveOpfsDirectory(DATA_DIR, {\n      from: this.#rootAh,\n      create: true,\n    })\n\n    this.#stateFH = await this.#rootAh.getFileHandle(STATE_FILE, {\n      create: true,\n    })\n    this.#stateSH = await (this.#stateFH as any).createSyncAccessHandle()\n\n    const stateAB = new ArrayBuffer(this.#stateSH.getSize())\n    this.#stateSH.read(stateAB, { at: 0 })\n    let state: State\n    const stateLines = new TextDecoder().decode(stateAB).split('\\n')\n    // Line 1 is a base state object.\n    // Lines 1+n are WAL entries.\n\n    let isNewState = false\n    try {\n      state = JSON.parse(stateLines[0])\n    } catch (e) {\n      state = {\n        root: {\n          type: 'directory',\n          lastModified: Date.now(),\n          mode: INITIAL_MODE.DIR,\n          children: {},\n        },\n        pool: [],\n      }\n      // write new state to file\n      this.#stateSH.truncate(0)\n      this.#stateSH.write(new TextEncoder().encode(JSON.stringify(state)), {\n        at: 0,\n      })\n      isNewState = true\n    }\n    this.state = state\n\n    // Apply WAL entries\n    const wal = stateLines\n      .slice(1)\n      .filter(Boolean)\n      .map((line) => JSON.parse(line))\n    for (const entry of wal) {\n      const methodName = `_${entry.opp}State`\n      if (typeof this[methodName as keyof this] === 'function') {\n        try {\n          const method = this[methodName as keyof this] as any\n          method.bind(this)(...entry.args)\n        } catch (e) {\n          console.warn('Error applying OPFS AHP WAL entry', entry, e)\n        }\n      }\n    }\n\n    // Open all file handles for dir tree\n    const walkPromises: Promise<void>[] = []\n    const walk = async (node: Node) => {\n      if (node.type === 'file') {\n        try {\n          const fh = await this.#dataDirAh.getFileHandle(node.backingFilename)\n          const sh: FileSystemSyncAccessHandle = await (\n            fh as any\n          ).createSyncAccessHandle()\n          this.#fh.set(node.backingFilename, fh)\n\n          this.#sh.set(node.backingFilename, sh)\n        } catch (e) {\n          console.error('Error opening file handle for node', node, e)\n        }\n      } else {\n        for (const child of Object.values(node.children)) {\n          walkPromises.push(walk(child))\n        }\n      }\n    }\n    await walk(this.state.root)\n\n    // Open all pool file handles\n    const poolPromises: Promise<void>[] = []\n    for (const filename of this.state.pool) {\n      poolPromises.push(\n        // eslint-disable-next-line no-async-promise-executor\n        new Promise<void>(async (resolve) => {\n          if (this.#fh.has(filename)) {\n            console.warn('File handle already exists for pool file', filename)\n          }\n          const fh = await this.#dataDirAh.getFileHandle(filename)\n          const sh: FileSystemSyncAccessHandle = await (\n            fh as any\n          ).createSyncAccessHandle()\n          this.#fh.set(filename, fh)\n          this.#sh.set(filename, sh)\n          resolve()\n        }),\n      )\n    }\n\n    await Promise.all([...walkPromises, ...poolPromises])\n\n    await this.maintainPool(\n      isNewState ? this.initialPoolSize : this.maintainedPoolSize,\n    )\n  }\n\n  async maintainPool(size?: number) {\n    size = size || this.maintainedPoolSize\n    const change = size - this.state.pool.length\n    const promises: Promise<void>[] = []\n    for (let i = 0; i < change; i++) {\n      promises.push(\n        // eslint-disable-next-line no-async-promise-executor\n        new Promise<void>(async (resolve) => {\n          ++this.poolCounter\n          const filename = `${(Date.now() - 1704063600).toString(16).padStart(8, '0')}-${this.poolCounter.toString(16).padStart(8, '0')}`\n          const fh = await this.#dataDirAh.getFileHandle(filename, {\n            create: true,\n          })\n          const sh: FileSystemSyncAccessHandle = await (\n            fh as any\n          ).createSyncAccessHandle()\n          this.#fh.set(filename, fh)\n          this.#sh.set(filename, sh)\n          this.#logWAL({\n            opp: 'createPoolFile',\n            args: [filename],\n          })\n          this.state.pool.push(filename)\n          resolve()\n        }),\n      )\n    }\n    for (let i = 0; i > change; i--) {\n      promises.push(\n        // eslint-disable-next-line no-async-promise-executor\n        new Promise<void>(async (resolve) => {\n          const filename = this.state.pool.pop()!\n          this.#logWAL({\n            opp: 'deletePoolFile',\n            args: [filename],\n          })\n          const fh = this.#fh.get(filename)!\n          const sh = this.#sh.get(filename)\n          sh?.close()\n          await this.#dataDirAh.removeEntry(fh.name)\n          this.#fh.delete(filename)\n          this.#sh.delete(filename)\n          resolve()\n        }),\n      )\n    }\n    await Promise.all(promises)\n  }\n\n  _createPoolFileState(filename: string) {\n    this.state.pool.push(filename)\n  }\n\n  _deletePoolFileState(filename: string) {\n    const index = this.state.pool.indexOf(filename)\n    if (index > -1) {\n      this.state.pool.splice(index, 1)\n    }\n  }\n\n  async maybeCheckpointState() {\n    if (Date.now() - this.lastCheckpoint > this.checkpointInterval) {\n      await this.checkpointState()\n    }\n  }\n\n  async checkpointState() {\n    const stateAB = new TextEncoder().encode(JSON.stringify(this.state))\n    this.#stateSH.truncate(0)\n    this.#stateSH.write(stateAB, { at: 0 })\n    this.#stateSH.flush()\n    this.lastCheckpoint = Date.now()\n  }\n\n  flush() {\n    for (const sh of this.#unsyncedSH) {\n      try {\n        sh.flush()\n      } catch (e) {\n        // The file may have been closed if it was deleted\n      }\n    }\n    this.#unsyncedSH.clear()\n  }\n\n  // Filesystem API:\n\n  chmod(path: string, mode: number): void {\n    this.#tryWithWAL({ opp: 'chmod', args: [path, mode] }, () => {\n      this._chmodState(path, mode)\n    })\n  }\n\n  _chmodState(path: string, mode: number): void {\n    const node = this.#resolvePath(path)\n    node.mode = mode\n  }\n\n  close(fd: number): void {\n    const path = this.#getPathFromFd(fd)\n    this.#openHandlePaths.delete(fd)\n    this.#openHandleIds.delete(path)\n  }\n\n  fstat(fd: number): FsStats {\n    const path = this.#getPathFromFd(fd)\n    return this.lstat(path)\n  }\n\n  lstat(path: string): FsStats {\n    const node = this.#resolvePath(path)\n    const size =\n      node.type === 'file' ? this.#sh.get(node.backingFilename)!.getSize() : 0\n    const blksize = 4096\n    return {\n      dev: 0,\n      ino: 0,\n      mode: node.mode,\n      nlink: 1,\n      uid: 0,\n      gid: 0,\n      rdev: 0,\n      size,\n      blksize,\n      blocks: Math.ceil(size / blksize),\n      atime: node.lastModified,\n      mtime: node.lastModified,\n      ctime: node.lastModified,\n    }\n  }\n\n  mkdir(path: string, options?: { recursive?: boolean; mode?: number }): void {\n    this.#tryWithWAL({ opp: 'mkdir', args: [path, options] }, () => {\n      this._mkdirState(path, options)\n    })\n  }\n\n  _mkdirState(\n    path: string,\n    options?: { recursive?: boolean; mode?: number },\n  ): void {\n    const parts = this.#pathParts(path)\n    const newDirName = parts.pop()!\n    const currentPath: string[] = []\n    let node = this.state.root\n    for (const part of parts) {\n      currentPath.push(path)\n      if (!Object.prototype.hasOwnProperty.call(node.children, part)) {\n        if (options?.recursive) {\n          this.mkdir(currentPath.join('/'))\n        } else {\n          throw new FsError('ENOENT', 'No such file or directory')\n        }\n      }\n      if (node.children[part].type !== 'directory') {\n        throw new FsError('ENOTDIR', 'Not a directory')\n      }\n      node = node.children[part] as DirectoryNode\n    }\n    if (Object.prototype.hasOwnProperty.call(node.children, newDirName)) {\n      throw new FsError('EEXIST', 'File exists')\n    }\n    const newDir: DirectoryNode = {\n      type: 'directory',\n      lastModified: Date.now(),\n      mode: options?.mode || INITIAL_MODE.DIR,\n      children: {},\n    }\n    node.children[newDirName] = newDir\n  }\n\n  open(path: string, _flags?: string, _mode?: number): number {\n    const node = this.#resolvePath(path)\n    if (node.type !== 'file') {\n      throw new FsError('EISDIR', 'Is a directory')\n    }\n    const handleId = this.#nextHandleId()\n    this.#openHandlePaths.set(handleId, path)\n    this.#openHandleIds.set(path, handleId)\n    return handleId\n  }\n\n  readdir(path: string): string[] {\n    const node = this.#resolvePath(path)\n    if (node.type !== 'directory') {\n      throw new FsError('ENOTDIR', 'Not a directory')\n    }\n    return Object.keys(node.children)\n  }\n\n  read(\n    fd: number,\n    buffer: Uint8Array, // Buffer to read into\n    offset: number, // Offset in buffer to start writing to\n    length: number, // Number of bytes to read\n    position: number, // Position in file to read from\n  ): number {\n    const path = this.#getPathFromFd(fd)\n    const node = this.#resolvePath(path)\n    if (node.type !== 'file') {\n      throw new FsError('EISDIR', 'Is a directory')\n    }\n    const sh = this.#sh.get(node.backingFilename)!\n    return sh.read(new Uint8Array(buffer.buffer, offset, length), {\n      at: position,\n    })\n  }\n\n  rename(oldPath: string, newPath: string): void {\n    this.#tryWithWAL({ opp: 'rename', args: [oldPath, newPath] }, () => {\n      this._renameState(oldPath, newPath, true)\n    })\n  }\n\n  _renameState(oldPath: string, newPath: string, doFileOps = false): void {\n    const oldPathParts = this.#pathParts(oldPath)\n    const oldFilename = oldPathParts.pop()!\n    const oldParent = this.#resolvePath(oldPathParts.join('/')) as DirectoryNode\n    if (\n      !Object.prototype.hasOwnProperty.call(oldParent.children, oldFilename)\n    ) {\n      throw new FsError('ENOENT', 'No such file or directory')\n    }\n    const newPathParts = this.#pathParts(newPath)\n    const newFilename = newPathParts.pop()!\n    const newParent = this.#resolvePath(newPathParts.join('/')) as DirectoryNode\n    if (\n      doFileOps &&\n      Object.prototype.hasOwnProperty.call(newParent.children, newFilename)\n    ) {\n      // Overwrite, so return the underlying file to the pool\n      const node = newParent.children[newFilename]! as FileNode\n      const sh = this.#sh.get(node.backingFilename)!\n      sh.truncate(0)\n      this.state.pool.push(node.backingFilename)\n    }\n    newParent.children[newFilename] = oldParent.children[oldFilename]!\n    delete oldParent.children[oldFilename]\n  }\n\n  rmdir(path: string): void {\n    this.#tryWithWAL({ opp: 'rmdir', args: [path] }, () => {\n      this._rmdirState(path)\n    })\n  }\n\n  _rmdirState(path: string): void {\n    const pathParts = this.#pathParts(path)\n    const dirName = pathParts.pop()!\n    const parent = this.#resolvePath(pathParts.join('/')) as DirectoryNode\n    if (!Object.prototype.hasOwnProperty.call(parent.children, dirName)) {\n      throw new FsError('ENOENT', 'No such file or directory')\n    }\n    const node = parent.children[dirName]!\n    if (node.type !== 'directory') {\n      throw new FsError('ENOTDIR', 'Not a directory')\n    }\n    if (Object.keys(node.children).length > 0) {\n      throw new FsError('ENOTEMPTY', 'Directory not empty')\n    }\n    delete parent.children[dirName]\n  }\n\n  truncate(path: string, len = 0): void {\n    const node = this.#resolvePath(path)\n    if (node.type !== 'file') {\n      throw new FsError('EISDIR', 'Is a directory')\n    }\n    const sh = this.#sh.get(node.backingFilename)\n    if (!sh) {\n      throw new FsError('ENOENT', 'No such file or directory')\n    }\n    sh.truncate(len)\n    this.#unsyncedSH.add(sh)\n  }\n\n  unlink(path: string): void {\n    this.#tryWithWAL({ opp: 'unlink', args: [path] }, () => {\n      this._unlinkState(path, true)\n    })\n  }\n\n  _unlinkState(path: string, doFileOps = false): void {\n    const pathParts = this.#pathParts(path)\n    const filename = pathParts.pop()!\n    const dir = this.#resolvePath(pathParts.join('/')) as DirectoryNode\n    if (!Object.prototype.hasOwnProperty.call(dir.children, filename)) {\n      throw new FsError('ENOENT', 'No such file or directory')\n    }\n    const node = dir.children[filename]!\n    if (node.type !== 'file') {\n      throw new FsError('EISDIR', 'Is a directory')\n    }\n    delete dir.children[filename]\n    if (doFileOps) {\n      const sh = this.#sh.get(node.backingFilename)!\n      // We don't delete the file, it's truncated and returned to the pool\n      sh?.truncate(0)\n      this.#unsyncedSH.add(sh)\n      if (this.#openHandleIds.has(path)) {\n        this.#openHandlePaths.delete(this.#openHandleIds.get(path)!)\n        this.#openHandleIds.delete(path)\n      }\n    }\n    this.state.pool.push(node.backingFilename)\n  }\n\n  utimes(path: string, atime: number, mtime: number): void {\n    this.#tryWithWAL({ opp: 'utimes', args: [path, atime, mtime] }, () => {\n      this._utimesState(path, atime, mtime)\n    })\n  }\n\n  _utimesState(path: string, _atime: number, mtime: number): void {\n    const node = this.#resolvePath(path)\n    node.lastModified = mtime\n  }\n\n  writeFile(\n    path: string,\n    data: string | Uint8Array,\n    options?: { encoding?: string; mode?: number; flag?: string },\n  ): void {\n    const pathParts = this.#pathParts(path)\n    const filename = pathParts.pop()!\n    const parent = this.#resolvePath(pathParts.join('/')) as DirectoryNode\n\n    if (!Object.prototype.hasOwnProperty.call(parent.children, filename)) {\n      if (this.state.pool.length === 0) {\n        throw new Error('No more file handles available in the pool')\n      }\n      const node: Node = {\n        type: 'file',\n        lastModified: Date.now(),\n        mode: options?.mode || INITIAL_MODE.FILE,\n        backingFilename: this.state.pool.pop()!,\n      }\n      parent.children[filename] = node\n      this.#logWAL({\n        opp: 'createFileNode',\n        args: [path, node],\n      })\n    } else {\n      const node = parent.children[filename] as FileNode\n      node.lastModified = Date.now()\n      this.#logWAL({\n        opp: 'setLastModified',\n        args: [path, node.lastModified],\n      })\n    }\n    const node = parent.children[filename] as FileNode\n    const sh = this.#sh.get(node.backingFilename)!\n    // Files in pool are empty, only write if data is provided\n    if (data.length > 0) {\n      sh.write(\n        typeof data === 'string'\n          ? new TextEncoder().encode(data)\n          : new Uint8Array(data),\n        { at: 0 },\n      )\n      if (path.startsWith('/pg_wal')) {\n        this.#unsyncedSH.add(sh)\n      }\n    }\n  }\n\n  _createFileNodeState(path: string, node: FileNode): FileNode {\n    const pathParts = this.#pathParts(path)\n    const filename = pathParts.pop()!\n    const parent = this.#resolvePath(pathParts.join('/')) as DirectoryNode\n    parent.children[filename] = node\n    // remove backingFilename from pool\n    const index = this.state.pool.indexOf(node.backingFilename)\n    if (index > -1) {\n      this.state.pool.splice(index, 1)\n    }\n    return node\n  }\n\n  _setLastModifiedState(path: string, lastModified: number): void {\n    const node = this.#resolvePath(path)\n    node.lastModified = lastModified\n  }\n\n  write(\n    fd: number,\n    buffer: Uint8Array, // Buffer to read from\n    offset: number, // Offset in buffer to start reading from\n    length: number, // Number of bytes to write\n    position: number, // Position in file to write to\n  ): number {\n    const path = this.#getPathFromFd(fd)\n    const node = this.#resolvePath(path)\n    if (node.type !== 'file') {\n      throw new FsError('EISDIR', 'Is a directory')\n    }\n    const sh = this.#sh.get(node.backingFilename)\n    if (!sh) {\n      throw new FsError('EBADF', 'Bad file descriptor')\n    }\n    const ret = sh.write(new Uint8Array(buffer, offset, length), {\n      at: position,\n    })\n    if (path.startsWith('/pg_wal')) {\n      this.#unsyncedSH.add(sh)\n    }\n    return ret\n  }\n\n  // Internal methods:\n\n  #tryWithWAL(entry: WALEntry, fn: () => void) {\n    const offset = this.#logWAL(entry)\n    try {\n      fn()\n    } catch (e) {\n      // Rollback WAL entry\n      this.#stateSH.truncate(offset)\n      throw e\n    }\n  }\n\n  #logWAL(entry: WALEntry) {\n    const entryJSON = JSON.stringify(entry)\n    const stateAB = new TextEncoder().encode(`\\n${entryJSON}`)\n    const offset = this.#stateSH.getSize()\n    this.#stateSH.write(stateAB, { at: offset })\n    this.#unsyncedSH.add(this.#stateSH)\n    return offset\n  }\n\n  #pathParts(path: string): string[] {\n    return path.split('/').filter(Boolean)\n  }\n\n  #resolvePath(path: string, from?: DirectoryNode): Node {\n    const parts = this.#pathParts(path)\n    let node: Node = from || this.state.root\n    for (const part of parts) {\n      if (node.type !== 'directory') {\n        throw new FsError('ENOTDIR', 'Not a directory')\n      }\n      if (!Object.prototype.hasOwnProperty.call(node.children, part)) {\n        throw new FsError('ENOENT', 'No such file or directory')\n      }\n      node = node.children[part]!\n    }\n    return node\n  }\n\n  #getPathFromFd(fd: number): string {\n    const path = this.#openHandlePaths.get(fd)\n    if (!path) {\n      throw new FsError('EBADF', 'Bad file descriptor')\n    }\n    return path\n  }\n\n  #nextHandleId(): number {\n    const id = ++this.#handleIdCounter\n    while (this.#openHandlePaths.has(id)) {\n      this.#handleIdCounter++\n    }\n    return id\n  }\n\n  async #resolveOpfsDirectory(\n    path: string,\n    options?: {\n      from?: FileSystemDirectoryHandle\n      create?: boolean\n    },\n  ): Promise<FileSystemDirectoryHandle> {\n    const parts = this.#pathParts(path)\n    let ah = options?.from || this.#opfsRootAh\n    for (const part of parts) {\n      ah = await ah.getDirectoryHandle(part, { create: options?.create })\n    }\n    return ah\n  }\n}\n\nclass FsError extends Error {\n  code?: number\n  constructor(code: number | keyof typeof ERRNO_CODES | null, message: string) {\n    super(message)\n    if (typeof code === 'number') {\n      this.code = code\n    } else if (typeof code === 'string') {\n      this.code = ERRNO_CODES[code]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/fs/tarUtils.ts",
    "content": "import { tar, untar, type TarFile, REGTYPE, DIRTYPE } from 'tinytar'\nimport type { FS } from '../postgresMod.js'\n\nexport type DumpTarCompressionOptions = 'none' | 'gzip' | 'auto'\n\nexport async function dumpTar(\n  FS: FS,\n  pgDataDir: string,\n  dbname: string = 'pgdata',\n  compression: DumpTarCompressionOptions = 'auto',\n): Promise<File | Blob> {\n  const tarball = createTarball(FS, pgDataDir)\n  const [compressed, zipped] = await maybeZip(tarball, compression)\n  const filename = dbname + (zipped ? '.tar.gz' : '.tar')\n  const type = zipped ? 'application/x-gzip' : 'application/x-tar'\n  if (typeof File !== 'undefined') {\n    return new File([compressed], filename, {\n      type,\n    })\n  } else {\n    return new Blob([compressed], {\n      type,\n    })\n  }\n}\n\nconst compressedMimeTypes = [\n  'application/x-gtar',\n  'application/x-tar+gzip',\n  'application/x-gzip',\n  'application/gzip',\n]\n\nexport async function loadTar(\n  FS: FS,\n  file: File | Blob,\n  pgDataDir: string,\n): Promise<void> {\n  let tarball = new Uint8Array(await file.arrayBuffer())\n  const filename =\n    typeof File !== 'undefined' && file instanceof File ? file.name : undefined\n  const compressed =\n    compressedMimeTypes.includes(file.type) ||\n    filename?.endsWith('.tgz') ||\n    filename?.endsWith('.tar.gz')\n  if (compressed) {\n    tarball = await unzip(tarball)\n  }\n\n  let files\n  try {\n    files = untar(tarball)\n  } catch (e) {\n    if (e instanceof Error && e.message.includes('File is corrupted')) {\n      // The file may be compressed, but had the wrong mime type, try unzipping it\n      tarball = await unzip(tarball)\n      files = untar(tarball)\n    } else {\n      throw e\n    }\n  }\n\n  for (const file of files) {\n    const filePath = pgDataDir + file.name\n\n    // Ensure the directory structure exists\n    const dirPath = filePath.split('/').slice(0, -1)\n    for (let i = 1; i <= dirPath.length; i++) {\n      const dir = dirPath.slice(0, i).join('/')\n      if (!FS.analyzePath(dir).exists) {\n        FS.mkdir(dir)\n      }\n    }\n\n    // Write the file or directory\n    if (file.type === REGTYPE) {\n      FS.writeFile(filePath, file.data)\n      FS.utime(\n        filePath,\n        dateToUnixTimestamp(file.modifyTime),\n        dateToUnixTimestamp(file.modifyTime),\n      )\n    } else if (file.type === DIRTYPE) {\n      FS.mkdir(filePath)\n    }\n  }\n}\n\nfunction readDirectory(FS: FS, path: string) {\n  const files: TarFile[] = []\n\n  const traverseDirectory = (currentPath: string) => {\n    const entries = FS.readdir(currentPath)\n    entries.forEach((entry) => {\n      if (entry === '.' || entry === '..') {\n        return\n      }\n      const fullPath = currentPath + '/' + entry\n      const stats = FS.stat(fullPath)\n      const data = FS.isFile(stats.mode)\n        ? FS.readFile(fullPath, { encoding: 'binary' })\n        : new Uint8Array(0)\n      files.push({\n        name: fullPath.substring(path.length), // remove the root path\n        mode: stats.mode,\n        size: stats.size,\n        type: FS.isFile(stats.mode) ? REGTYPE : DIRTYPE,\n        modifyTime: stats.mtime,\n        data,\n      })\n      if (FS.isDir(stats.mode)) {\n        traverseDirectory(fullPath)\n      }\n    })\n  }\n\n  traverseDirectory(path)\n  return files\n}\n\nexport function createTarball(FS: FS, directoryPath: string) {\n  const files = readDirectory(FS, directoryPath)\n  const tarball = tar(files)\n  return tarball\n}\n\nexport async function maybeZip(\n  file: Uint8Array,\n  compression: DumpTarCompressionOptions = 'auto',\n): Promise<[Uint8Array, boolean]> {\n  if (compression === 'none') {\n    return [file, false]\n  } else if (typeof CompressionStream !== 'undefined') {\n    return [await zipBrowser(file), true]\n  } else if (\n    typeof process !== 'undefined' &&\n    process.versions &&\n    process.versions.node\n  ) {\n    return [await zipNode(file), true]\n  } else if (compression === 'auto') {\n    return [file, false]\n  } else {\n    throw new Error('Compression not supported in this environment')\n  }\n}\n\nexport async function zipBrowser(file: Uint8Array): Promise<Uint8Array> {\n  const cs = new CompressionStream('gzip')\n  const writer = cs.writable.getWriter()\n  const reader = cs.readable.getReader()\n\n  writer.write(file)\n  writer.close()\n\n  const chunks: Uint8Array[] = []\n\n  while (true) {\n    const { value, done } = await reader.read()\n    if (done) break\n    if (value) chunks.push(value)\n  }\n\n  const compressed = new Uint8Array(\n    chunks.reduce((acc, chunk) => acc + chunk.length, 0),\n  )\n  let offset = 0\n  chunks.forEach((chunk) => {\n    compressed.set(chunk, offset)\n    offset += chunk.length\n  })\n\n  return compressed\n}\n\nexport async function zipNode(file: Uint8Array): Promise<Uint8Array> {\n  const { promisify } = await import('util')\n  const { gzip } = await import('zlib')\n  const gzipPromise = promisify(gzip)\n  return await gzipPromise(file)\n}\n\nexport async function unzip(file: Uint8Array): Promise<Uint8Array> {\n  if (typeof CompressionStream !== 'undefined') {\n    return await unzipBrowser(file)\n  } else if (\n    typeof process !== 'undefined' &&\n    process.versions &&\n    process.versions.node\n  ) {\n    return await unzipNode(file)\n  } else {\n    throw new Error('Unsupported environment for decompression')\n  }\n}\n\nexport async function unzipBrowser(file: Uint8Array): Promise<Uint8Array> {\n  const ds = new DecompressionStream('gzip')\n  const writer = ds.writable.getWriter()\n  const reader = ds.readable.getReader()\n\n  writer.write(file)\n  writer.close()\n\n  const chunks: Uint8Array[] = []\n\n  while (true) {\n    const { value, done } = await reader.read()\n    if (done) break\n    if (value) chunks.push(value)\n  }\n\n  const decompressed = new Uint8Array(\n    chunks.reduce((acc, chunk) => acc + chunk.length, 0),\n  )\n  let offset = 0\n  chunks.forEach((chunk) => {\n    decompressed.set(chunk, offset)\n    offset += chunk.length\n  })\n\n  return decompressed\n}\n\nexport async function unzipNode(file: Uint8Array): Promise<Uint8Array> {\n  const { promisify } = await import('util')\n  const { gunzip } = await import('zlib')\n  const gunzipPromise = promisify(gunzip)\n  return await gunzipPromise(file)\n}\n\nfunction dateToUnixTimestamp(date: Date | number | undefined): number {\n  if (!date) {\n    return Math.floor(Date.now() / 1000)\n  } else {\n    return typeof date === 'number' ? date : Math.floor(date.getTime() / 1000)\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/index.ts",
    "content": "export * from './pglite.js'\nexport * from './interface.js'\nexport * as types from './types.js'\nexport * as parse from './parse.js'\nexport * as messages from '@electric-sql/pg-protocol/messages'\nexport * as protocol from '@electric-sql/pg-protocol'\nexport { MemoryFS } from './fs/memoryfs.js'\nexport { IdbFs } from './fs/idbfs.js'\nexport { Mutex } from 'async-mutex'\nexport { uuid, formatQuery } from './utils.js'\nexport type * as postgresMod from './postgresMod.js'\n"
  },
  {
    "path": "packages/pglite/src/initdb.ts",
    "content": "import InitdbModFactory, { InitdbMod } from './initdbModFactory'\nimport parse from './argsParser'\n\nfunction assert(condition: unknown, message?: string): asserts condition {\n  if (!condition) {\n    throw new Error(message ?? 'Assertion failed')\n  }\n}\n\nexport const PG_ROOT = '/pglite'\nexport const PGDATA = PG_ROOT + '/data'\n\nconst initdbExePath = PG_ROOT + '/bin/initdb'\nconst pgstdoutPath = PG_ROOT + '/pgstdout'\nconst pgstdinPath = PG_ROOT + '/pgstdin'\n\n/**\n * Interface defining what initdb needs from a PGlite instance.\n * This avoids a circular dependency between pglite and pglite-initdb.\n */\nexport interface PGliteForInitdb {\n  Module: {\n    HEAPU8: Uint8Array\n    stringToUTF8OnStack(str: string): number\n    _pgl_freopen(path: number, mode: number, fd: number): void\n    FS: any\n  }\n  callMain(args: string[]): number\n}\n\ninterface ExecResult {\n  exitCode: number\n  stderr: string\n  stdout: string\n  dataFolder: string\n}\n\nfunction log(debug?: number, ...args: any[]) {\n  if (debug && debug > 0) {\n    console.log('initdb: ', ...args)\n  }\n}\n\nasync function execInitdb({\n  pg,\n  debug,\n  args,\n}: {\n  pg: PGliteForInitdb\n  debug?: number\n  args: string[]\n}): Promise<ExecResult> {\n  let system_fn, popen_fn, pclose_fn\n\n  let needToCallPGmain = false\n  let postgresArgs: string[] = []\n\n  let pgMainResult = 0\n\n  let initdb_stdin_fd = -1\n  let initdb_stdout_fd = -1\n  let stderrOutput: string = ''\n  let stdoutOutput: string = ''\n\n  const callPgMain = (args: string[]) => {\n    const firstArg = args.shift()\n    log(debug, 'initdb: firstArg', firstArg)\n    assert(firstArg === '/pglite/bin/postgres', `trying to execute ${firstArg}`)\n\n    pg.Module.HEAPU8.set(origHEAPU8)\n\n    log(debug, 'executing pg main with', args)\n    const result = pg.callMain(args)\n\n    log(debug, result)\n\n    postgresArgs = []\n\n    return result\n  }\n\n  const origHEAPU8 = pg.Module.HEAPU8.slice()\n\n  const emscriptenOpts: Partial<InitdbMod> = {\n    arguments: args,\n    noExitRuntime: false,\n    thisProgram: initdbExePath,\n    // Provide a stdin that returns EOF to avoid browser prompt\n    stdin: () => null,\n    print: (text) => {\n      stdoutOutput += text\n      log(debug, 'initdbout', text)\n    },\n    printErr: (text) => {\n      stderrOutput += text\n      log(debug, 'initdberr', text)\n    },\n    preRun: [\n      (mod: InitdbMod) => {\n        mod.onRuntimeInitialized = () => {\n          // default $HOME in emscripten is /home/web_user\n          system_fn = mod.addFunction((cmd_ptr: number) => {\n            postgresArgs = getArgs(mod.UTF8ToString(cmd_ptr))\n            return callPgMain(postgresArgs)\n          }, 'pi')\n\n          mod._pgl_set_system_fn(system_fn)\n\n          popen_fn = mod.addFunction((cmd_ptr: number, mode: number) => {\n            const smode = mod.UTF8ToString(mode)\n            postgresArgs = getArgs(mod.UTF8ToString(cmd_ptr))\n\n            if (smode === 'r') {\n              pgMainResult = callPgMain(postgresArgs)\n              return initdb_stdin_fd\n            } else {\n              if (smode === 'w') {\n                needToCallPGmain = true\n                return initdb_stdout_fd\n              } else {\n                throw `Unexpected popen mode value ${smode}`\n              }\n            }\n          }, 'ppi')\n\n          mod._pgl_set_popen_fn(popen_fn)\n\n          pclose_fn = mod.addFunction((stream: number) => {\n            if (stream === initdb_stdin_fd || stream === initdb_stdout_fd) {\n              // if the last popen had mode w, execute now postgres' main()\n              if (needToCallPGmain) {\n                needToCallPGmain = false\n                pgMainResult = callPgMain(postgresArgs)\n              }\n              return pgMainResult\n            } else {\n              return mod._pclose(stream)\n            }\n          }, 'pi')\n\n          mod._pgl_set_pclose_fn(pclose_fn)\n\n          {\n            const pglite_stdin_path = pg.Module.stringToUTF8OnStack(pgstdinPath)\n            const rmode = pg.Module.stringToUTF8OnStack('r')\n            pg.Module._pgl_freopen(pglite_stdin_path, rmode, 0)\n            const pglite_stdout_path =\n              pg.Module.stringToUTF8OnStack(pgstdoutPath)\n            const wmode = pg.Module.stringToUTF8OnStack('w')\n            pg.Module._pgl_freopen(pglite_stdout_path, wmode, 1)\n          }\n\n          {\n            const initdb_path = mod.stringToUTF8OnStack(pgstdoutPath)\n            const rmode = mod.stringToUTF8OnStack('r')\n            initdb_stdin_fd = mod._fopen(initdb_path, rmode)\n\n            const path = mod.stringToUTF8OnStack(pgstdinPath)\n            const wmode = mod.stringToUTF8OnStack('w')\n            initdb_stdout_fd = mod._fopen(path, wmode)\n          }\n        }\n      },\n      (mod: InitdbMod) => {\n        mod.ENV.PGDATA = PGDATA\n      },\n      (mod: InitdbMod) => {\n        mod.FS.mkdir(PG_ROOT)\n        mod.FS.mount(\n          mod.PROXYFS,\n          {\n            root: PG_ROOT,\n            fs: pg.Module.FS,\n          },\n          PG_ROOT,\n        )\n      },\n    ],\n  }\n\n  const initDbMod = await InitdbModFactory(emscriptenOpts)\n\n  log(debug, 'calling initdb.main with', args)\n  const result = initDbMod.callMain(args)\n\n  return {\n    exitCode: result,\n    stderr: stderrOutput,\n    stdout: stdoutOutput,\n    dataFolder: PGDATA,\n  }\n}\n\ninterface InitdbOptions {\n  pg: PGliteForInitdb\n  debug?: number\n  args?: string[]\n}\n\nfunction getArgs(cmd: string) {\n  const a: string[] = []\n  const parsed = parse(cmd)\n  for (let i = 0; i < parsed.length; i++) {\n    const token = parsed[i]\n    if (typeof token === 'object' && 'op' in token) break\n    if (typeof token === 'string') a.push(token)\n  }\n  return a\n}\n\n/**\n * Execute initdb\n */\nexport async function initdb({\n  pg,\n  debug,\n  args,\n}: InitdbOptions): Promise<ExecResult> {\n  const execResult = await execInitdb({\n    pg,\n    debug,\n    args: [\n      '--allow-group-access',\n      '--encoding',\n      'UTF8',\n      '--locale=C.UTF-8',\n      '--locale-provider=libc',\n      '--auth=trust',\n      ...(args ?? []),\n    ],\n  })\n\n  return execResult\n}\n"
  },
  {
    "path": "packages/pglite/src/initdbModFactory.ts",
    "content": "import InitdbModFactory from '../release/initdb'\n\ntype IDBFS = Emscripten.FileSystemType & {\n  quit: () => void\n  dbs: Record<string, IDBDatabase>\n}\n\nexport type FS = typeof FS & {\n  filesystems: {\n    MEMFS: Emscripten.FileSystemType\n    NODEFS: Emscripten.FileSystemType\n    IDBFS: IDBFS\n  }\n  quit: () => void\n}\n\nexport interface InitdbMod\n  extends Omit<EmscriptenModule, 'preInit' | 'preRun' | 'postRun'> {\n  preInit: Array<{ (mod: InitdbMod): void }>\n  preRun: Array<{ (mod: InitdbMod): void }>\n  postRun: Array<{ (mod: InitdbMod): void }>\n  thisProgram: string\n  stdin: (() => number | null) | null\n  ENV: Record<string, string>\n  FS: FS\n  PROXYFS: Emscripten.FileSystemType\n  WASM_PREFIX: string\n  INITIAL_MEMORY: number\n  UTF8ToString: (ptr: number, maxBytesToRead?: number) => string\n  stringToUTF8OnStack: (s: string) => number\n  ___errno_location: () => number\n  _strerror: (errno: number) => number\n  _pgl_set_rw_cbs: (read_cb: number, write_cb: number) => void\n  _pgl_set_system_fn: (system_fn: number) => void\n  _pgl_set_popen_fn: (popen_fn: number) => void\n  _pgl_set_pclose_fn: (pclose_fn: number) => void\n  _pgl_set_pipe_fn: (pipe_fn: number) => void\n  _pclose: (stream: number) => number\n  _pipe: (fd: number) => number\n  _pgl_freopen: (filepath: number, mode: number, stream: number) => number\n  // _pgl_set_fgets_fn: (fgets_fn: number) => void\n  // _pgl_set_fputs_fn: (fputs_fn: number) => void\n  // _pgl_set_errno: (errno: number) => number\n  // _fgets: (str: number, size: number, stream: number) => number\n  // _fputs: (s: number, stream: number) => number\n  _fopen: (path: number, mode: number) => number\n  _fclose: (stream: number) => number\n  _fflush: (stream: number) => number\n  addFunction: (fn: CallableFunction, signature: string) => number\n  removeFunction: (f: number) => void\n  callMain: (args: string[]) => number\n  onExit: (status: number) => void\n  print: (test: string) => void\n  printErr: (text: string) => void\n}\n\ntype PgDumpFactory<T extends InitdbMod = InitdbMod> = (\n  moduleOverrides?: Partial<T>,\n) => Promise<T>\n\nexport default InitdbModFactory as PgDumpFactory<InitdbMod>\n"
  },
  {
    "path": "packages/pglite/src/interface.ts",
    "content": "import type {\n  BackendMessage,\n  NoticeMessage,\n} from '@electric-sql/pg-protocol/messages'\nimport type { Filesystem } from './fs/base.js'\nimport type { DumpTarCompressionOptions } from './fs/tarUtils.js'\nimport type { Parser, Serializer } from './types.js'\n\nexport type FilesystemType = 'nodefs' | 'idbfs' | 'memoryfs'\n\nexport type DebugLevel = 0 | 1 | 2 | 3 | 4 | 5\n\nexport type RowMode = 'array' | 'object'\n\nexport interface ParserOptions {\n  [pgType: number]: (value: string) => any\n}\n\nexport interface SerializerOptions {\n  [pgType: number]: (value: any) => string\n}\n\nexport interface QueryOptions {\n  rowMode?: RowMode\n  parsers?: ParserOptions\n  serializers?: SerializerOptions\n  blob?: Blob | File\n  onNotice?: (notice: NoticeMessage) => void\n  paramTypes?: number[]\n}\n\nexport interface ExecProtocolOptions {\n  syncToFs?: boolean\n  throwOnError?: boolean\n  onNotice?: (notice: NoticeMessage) => void\n}\n\nexport interface ExecProtocolOptionsStream {\n  syncToFs?: boolean\n  onRawData: (data: Uint8Array) => void\n}\n\nexport interface ExtensionSetupResult<TNamespace = any> {\n  emscriptenOpts?: any\n  namespaceObj?: TNamespace\n  bundlePath?: URL\n  init?: () => Promise<void>\n  close?: () => Promise<void>\n}\n\nexport type ExtensionSetup<TNamespace = any> = (\n  pg: PGliteInterface,\n  emscriptenOpts: any,\n  clientOnly?: boolean,\n) => Promise<ExtensionSetupResult<TNamespace>>\n\nexport interface Extension<TNamespace = any> {\n  name: string\n  setup: ExtensionSetup<TNamespace>\n}\n\nexport type ExtensionNamespace<T> =\n  T extends Extension<infer TNamespace> ? TNamespace : any\n\nexport type Extensions = {\n  [namespace: string]: Extension | URL\n}\n\nexport type InitializedExtensions<TExtensions extends Extensions = Extensions> =\n  {\n    [K in keyof TExtensions]: ExtensionNamespace<TExtensions[K]>\n  }\n\nexport interface ExecProtocolResult {\n  messages: BackendMessage[]\n  data: Uint8Array\n}\n\nexport interface DumpDataDirResult {\n  tarball: Uint8Array\n  extension: '.tar' | '.tgz'\n  filename: string\n}\n\nexport interface PGliteOptions<TExtensions extends Extensions = Extensions> {\n  noInitDb?: boolean\n  dataDir?: string\n  username?: string\n  database?: string\n  fs?: Filesystem\n  debug?: DebugLevel\n  relaxedDurability?: boolean\n  extensions?: TExtensions\n  loadDataDir?: Blob | File\n  initialMemory?: number\n  wasmModule?: WebAssembly.Module\n  fsBundle?: Blob | File\n  parsers?: ParserOptions\n  serializers?: SerializerOptions\n  startParams?: string[]\n}\n\nexport type PGliteInterface<T extends Extensions = Extensions> =\n  InitializedExtensions<T> & {\n    readonly waitReady: Promise<void>\n    readonly debug: DebugLevel\n    readonly ready: boolean\n    readonly closed: boolean\n\n    close(): Promise<void>\n    query<T>(\n      query: string,\n      params?: any[],\n      options?: QueryOptions,\n    ): Promise<Results<T>>\n    sql<T>(\n      sqlStrings: TemplateStringsArray,\n      ...params: any[]\n    ): Promise<Results<T>>\n    exec(query: string, options?: QueryOptions): Promise<Array<Results>>\n    describeQuery(query: string): Promise<DescribeQueryResult>\n    transaction<T>(callback: (tx: Transaction) => Promise<T>): Promise<T>\n    execProtocolRaw(\n      message: Uint8Array,\n      options?: ExecProtocolOptions,\n    ): Promise<Uint8Array>\n    execProtocolRawStream(\n      message: Uint8Array,\n      options?: ExecProtocolOptionsStream,\n    ): Promise<void>\n    execProtocol(\n      message: Uint8Array,\n      options?: ExecProtocolOptions,\n    ): Promise<ExecProtocolResult>\n    runExclusive<T>(fn: () => Promise<T>): Promise<T>\n    listen(\n      channel: string,\n      callback: (payload: string) => void,\n      tx?: Transaction,\n    ): Promise<(tx?: Transaction) => Promise<void>>\n    unlisten(\n      channel: string,\n      callback?: (payload: string) => void,\n      tx?: Transaction,\n    ): Promise<void>\n    onNotification(\n      callback: (channel: string, payload: string) => void,\n    ): () => void\n    offNotification(callback: (channel: string, payload: string) => void): void\n    dumpDataDir(compression?: DumpTarCompressionOptions): Promise<File | Blob>\n    refreshArrayTypes(): Promise<void>\n  }\n\nexport type PGliteInterfaceExtensions<E> = E extends Extensions\n  ? {\n      [K in keyof E]: E[K] extends Extension\n        ? Awaited<ReturnType<E[K]['setup']>>['namespaceObj'] extends infer N\n          ? N extends undefined | null | void\n            ? never\n            : N\n          : never\n        : never\n    }\n  : Record<string, never>\n\nexport type Row<T = { [key: string]: any }> = T\n\nexport type Results<T = { [key: string]: any }> = {\n  rows: Row<T>[]\n  affectedRows?: number\n  fields: { name: string; dataTypeID: number }[]\n  blob?: Blob // Only set when a file is returned, such as from a COPY command\n}\n\nexport interface Transaction {\n  query<T>(\n    query: string,\n    params?: any[],\n    options?: QueryOptions,\n  ): Promise<Results<T>>\n  sql<T>(\n    sqlStrings: TemplateStringsArray,\n    ...params: any[]\n  ): Promise<Results<T>>\n  exec(query: string, options?: QueryOptions): Promise<Array<Results>>\n  rollback(): Promise<void>\n  listen(\n    channel: string,\n    callback: (payload: string) => void,\n  ): Promise<(tx?: Transaction) => Promise<void>>\n  get closed(): boolean\n}\n\nexport type DescribeQueryResult = {\n  queryParams: { dataTypeID: number; serializer: Serializer }[]\n  resultFields: { name: string; dataTypeID: number; parser: Parser }[]\n}\n"
  },
  {
    "path": "packages/pglite/src/live/index.ts",
    "content": "import type {\n  Extension,\n  PGliteInterface,\n  Results,\n  Transaction,\n} from '../interface'\nimport type {\n  LiveQueryOptions,\n  LiveIncrementalQueryOptions,\n  LiveChangesOptions,\n  LiveNamespace,\n  LiveQuery,\n  LiveChanges,\n  Change,\n  LiveQueryResults,\n} from './interface'\nimport { uuid, formatQuery, debounceMutex } from '../utils.js'\n\nexport type {\n  LiveNamespace,\n  LiveQuery,\n  LiveChanges,\n  Change,\n  LiveQueryResults,\n} from './interface.js'\n\nconst MAX_RETRIES = 5\n\nconst setup = async (pg: PGliteInterface, _emscriptenOpts: any) => {\n  // The notify triggers are only ever added and never removed\n  // Keep track of which triggers have been added to avoid adding them multiple times\n  const tableNotifyTriggersAdded = new Set<string>()\n\n  const namespaceObj: LiveNamespace = {\n    async query<T>(\n      query: string | LiveQueryOptions<T>,\n      params?: any[] | null,\n      callback?: (results: Results<T>) => void,\n    ) {\n      let signal: AbortSignal | undefined\n      let offset: number | undefined\n      let limit: number | undefined\n      if (typeof query !== 'string') {\n        signal = query.signal\n        params = query.params\n        callback = query.callback\n        offset = query.offset\n        limit = query.limit\n        query = query.query\n      }\n\n      // Offset and limit must be provided together\n      if ((offset === undefined) !== (limit === undefined)) {\n        throw new Error('offset and limit must be provided together')\n      }\n\n      const isWindowed = offset !== undefined && limit !== undefined\n      let totalCount: number | undefined = undefined\n\n      if (\n        isWindowed &&\n        (typeof offset !== 'number' ||\n          isNaN(offset) ||\n          typeof limit !== 'number' ||\n          isNaN(limit))\n      ) {\n        throw new Error('offset and limit must be numbers')\n      }\n\n      let callbacks: Array<(results: Results<T>) => void> = callback\n        ? [callback]\n        : []\n      const id = uuid().replace(/-/g, '')\n      let dead = false\n\n      let results: LiveQueryResults<T>\n\n      let unsubList: Array<(tx?: Transaction) => Promise<void>>\n      const init = async () => {\n        await pg.transaction(async (tx) => {\n          // Create a temporary view with the query\n          const formattedQuery =\n            params && params.length > 0\n              ? await formatQuery(pg, query, params, tx)\n              : query\n          await tx.exec(\n            `CREATE OR REPLACE TEMP VIEW live_query_${id}_view AS ${formattedQuery}`,\n          )\n\n          // Get the tables used in the view and add triggers to notify when they change\n          const tables = await getTablesForView(tx, `live_query_${id}_view`)\n          await addNotifyTriggersToTables(tx, tables, tableNotifyTriggersAdded)\n\n          if (isWindowed) {\n            await tx.exec(`\n              PREPARE live_query_${id}_get(int, int) AS\n              SELECT * FROM live_query_${id}_view\n              LIMIT $1 OFFSET $2;\n            `)\n            await tx.exec(`\n              PREPARE live_query_${id}_get_total_count AS\n              SELECT COUNT(*) FROM live_query_${id}_view;\n            `)\n            totalCount = (\n              await tx.query<{ count: number }>(\n                `EXECUTE live_query_${id}_get_total_count;`,\n              )\n            ).rows[0].count\n            results = {\n              ...(await tx.query<T>(\n                `EXECUTE live_query_${id}_get(${limit}, ${offset});`,\n              )),\n              offset,\n              limit,\n              totalCount,\n            }\n          } else {\n            await tx.exec(`\n              PREPARE live_query_${id}_get AS\n              SELECT * FROM live_query_${id}_view;\n            `)\n            results = await tx.query<T>(`EXECUTE live_query_${id}_get;`)\n          }\n          // Setup the listeners\n          unsubList = await Promise.all(\n            tables!.map((table) =>\n              tx.listen(\n                `\"table_change__${table.schema_oid}__${table.table_oid}\"`,\n                async () => {\n                  refresh()\n                },\n              ),\n            ),\n          )\n        })\n      }\n      await init()\n\n      // Function to refresh the query\n      const refresh = debounceMutex(\n        async ({\n          offset: newOffset,\n          limit: newLimit,\n        }: {\n          offset?: number\n          limit?: number\n        } = {}) => {\n          // We can optionally provide new offset and limit values to refresh with\n          if (\n            !isWindowed &&\n            (newOffset !== undefined || newLimit !== undefined)\n          ) {\n            throw new Error(\n              'offset and limit cannot be provided for non-windowed queries',\n            )\n          }\n          if (\n            (newOffset &&\n              (typeof newOffset !== 'number' || isNaN(newOffset))) ||\n            (newLimit && (typeof newLimit !== 'number' || isNaN(newLimit)))\n          ) {\n            throw new Error('offset and limit must be numbers')\n          }\n          offset = newOffset ?? offset\n          limit = newLimit ?? limit\n\n          const run = async (count = 0) => {\n            if (callbacks.length === 0) {\n              return\n            }\n            try {\n              if (isWindowed) {\n                // For a windowed query we defer the refresh of the total count until\n                // after we have returned the results with the old total count. This\n                // is due to a count(*) being a fairly slow query and we want to update\n                // the rows on screen as quickly as possible.\n                results = {\n                  ...(await pg.query<T>(\n                    `EXECUTE live_query_${id}_get(${limit}, ${offset});`,\n                  )),\n                  offset,\n                  limit,\n                  totalCount, // This is the old total count\n                }\n              } else {\n                results = await pg.query<T>(`EXECUTE live_query_${id}_get;`)\n              }\n            } catch (e) {\n              const msg = (e as Error).message\n              if (\n                msg.startsWith(`prepared statement \"live_query_${id}`) &&\n                msg.endsWith('does not exist')\n              ) {\n                // If the prepared statement does not exist, reset and try again\n                // This can happen if using the multi-tab worker\n                if (count > MAX_RETRIES) {\n                  throw e\n                }\n                await init()\n                run(count + 1)\n              } else {\n                throw e\n              }\n            }\n\n            runResultCallbacks(callbacks, results)\n\n            // Update the total count\n            // If the total count has changed, refresh the query\n            if (isWindowed) {\n              const newTotalCount = (\n                await pg.query<{ count: number }>(\n                  `EXECUTE live_query_${id}_get_total_count;`,\n                )\n              ).rows[0].count\n              if (newTotalCount !== totalCount) {\n                // The total count has changed, refresh the query\n                totalCount = newTotalCount\n                refresh()\n              }\n            }\n          }\n          await run()\n        },\n      )\n\n      // Function to subscribe to the query\n      const subscribe = (callback: (results: Results<T>) => void) => {\n        if (dead) {\n          throw new Error(\n            'Live query is no longer active and cannot be subscribed to',\n          )\n        }\n        callbacks.push(callback)\n      }\n\n      // Function to unsubscribe from the query\n      // If no function is provided, unsubscribe all callbacks\n      // If there are no callbacks, unsubscribe from the notify triggers\n      const unsubscribe = async (callback?: (results: Results<T>) => void) => {\n        if (callback) {\n          callbacks = callbacks.filter((callback) => callback !== callback)\n        } else {\n          callbacks = []\n        }\n        if (callbacks.length === 0 && !dead) {\n          dead = true\n          await pg.transaction(async (tx) => {\n            await Promise.all(unsubList.map((unsub) => unsub(tx)))\n            await tx.exec(`\n              DROP VIEW IF EXISTS live_query_${id}_view;\n              DEALLOCATE live_query_${id}_get;\n            `)\n          })\n        }\n      }\n\n      // If the signal has already been aborted, unsubscribe\n      if (signal?.aborted) {\n        await unsubscribe()\n      } else {\n        // Add an event listener to unsubscribe if the signal is aborted\n        signal?.addEventListener(\n          'abort',\n          () => {\n            unsubscribe()\n          },\n          { once: true },\n        )\n      }\n\n      // Run the callback with the initial results\n      runResultCallbacks(callbacks, results!)\n\n      // Return the initial results\n      return {\n        initialResults: results!,\n        subscribe,\n        unsubscribe,\n        refresh,\n      } satisfies LiveQuery<T>\n    },\n\n    async changes<T>(\n      query: string | LiveChangesOptions<T>,\n      params?: any[] | null,\n      key?: string,\n      callback?: (changes: Array<Change<T>>) => void,\n    ) {\n      let signal: AbortSignal | undefined\n      if (typeof query !== 'string') {\n        signal = query.signal\n        params = query.params\n        key = query.key\n        callback = query.callback\n        query = query.query\n      }\n      if (!key) {\n        throw new Error('key is required for changes queries')\n      }\n      let callbacks: Array<(changes: Array<Change<T>>) => void> = callback\n        ? [callback]\n        : []\n      const id = uuid().replace(/-/g, '')\n      let dead = false\n\n      let stateSwitch: 1 | 2 = 1\n      let changes: Results<Change<T>>\n\n      let unsubList: Array<(tx?: Transaction) => Promise<void>>\n\n      const init = async () => {\n        await pg.transaction(async (tx) => {\n          // Create a temporary view with the query\n          const formattedQuery = await formatQuery(pg, query, params, tx)\n          await tx.query(\n            `CREATE OR REPLACE TEMP VIEW live_query_${id}_view AS ${formattedQuery}`,\n          )\n\n          // Get the tables used in the view and add triggers to notify when they change\n          const tables = await getTablesForView(tx, `live_query_${id}_view`)\n          await addNotifyTriggersToTables(tx, tables, tableNotifyTriggersAdded)\n\n          // Get the columns of the view\n          const columns = [\n            ...(\n              await tx.query<any>(`\n                SELECT column_name, data_type, udt_name\n                FROM information_schema.columns \n                WHERE table_name = 'live_query_${id}_view'\n              `)\n            ).rows,\n            { column_name: '__after__', data_type: 'integer' },\n          ]\n\n          // Init state tables as empty temp table\n          await tx.exec(`\n            CREATE TEMP TABLE live_query_${id}_state1 (LIKE live_query_${id}_view INCLUDING ALL);\n            CREATE TEMP TABLE live_query_${id}_state2 (LIKE live_query_${id}_view INCLUDING ALL);\n          `)\n\n          // Create Diff views and prepared statements\n          for (const curr of [1, 2]) {\n            const prev = curr === 1 ? 2 : 1\n            await tx.exec(`\n              PREPARE live_query_${id}_diff${curr} AS\n              WITH\n                prev AS (SELECT LAG(\"${key}\") OVER () as __after__, * FROM live_query_${id}_state${prev}),\n                curr AS (SELECT LAG(\"${key}\") OVER () as __after__, * FROM live_query_${id}_state${curr}),\n                data_diff AS (\n                  -- INSERT operations: Include all columns\n                  SELECT \n                    'INSERT' AS __op__,\n                    ${columns\n                      .map(\n                        ({ column_name }) =>\n                          `curr.\"${column_name}\" AS \"${column_name}\"`,\n                      )\n                      .join(',\\n')},\n                    ARRAY[]::text[] AS __changed_columns__\n                  FROM curr\n                  LEFT JOIN prev ON curr.${key} = prev.${key}\n                  WHERE prev.${key} IS NULL\n                UNION ALL\n                  -- DELETE operations: Include only the primary key\n                  SELECT \n                    'DELETE' AS __op__,\n                    ${columns\n                      .map(({ column_name, data_type, udt_name }) => {\n                        if (column_name === key) {\n                          return `prev.\"${column_name}\" AS \"${column_name}\"`\n                        } else {\n                          return `NULL${data_type === 'USER-DEFINED' ? `::${udt_name}` : ``} AS \"${column_name}\"`\n                        }\n                      })\n                      .join(',\\n')},\n                      ARRAY[]::text[] AS __changed_columns__\n                  FROM prev\n                  LEFT JOIN curr ON prev.${key} = curr.${key}\n                  WHERE curr.${key} IS NULL\n                UNION ALL\n                  -- UPDATE operations: Include only changed columns\n                  SELECT \n                    'UPDATE' AS __op__,\n                    ${columns\n                      .map(({ column_name, data_type, udt_name }) =>\n                        column_name === key\n                          ? `curr.\"${column_name}\" AS \"${column_name}\"`\n                          : `CASE \n                              WHEN curr.\"${column_name}\" IS DISTINCT FROM prev.\"${column_name}\" \n                              THEN curr.\"${column_name}\"\n                              ELSE NULL${data_type === 'USER-DEFINED' ? `::${udt_name}` : ``}\n                              END AS \"${column_name}\"`,\n                      )\n                      .join(',\\n')},\n                      ARRAY(SELECT unnest FROM unnest(ARRAY[${columns\n                        .filter(({ column_name }) => column_name !== key)\n                        .map(\n                          ({ column_name }) =>\n                            `CASE\n                              WHEN curr.\"${column_name}\" IS DISTINCT FROM prev.\"${column_name}\" \n                              THEN '${column_name}' \n                              ELSE NULL \n                              END`,\n                        )\n                        .join(\n                          ', ',\n                        )}]) WHERE unnest IS NOT NULL) AS __changed_columns__\n                  FROM curr\n                  INNER JOIN prev ON curr.${key} = prev.${key}\n                  WHERE NOT (curr IS NOT DISTINCT FROM prev)\n                )\n              SELECT * FROM data_diff;\n            `)\n          }\n\n          // Setup the listeners\n          unsubList = await Promise.all(\n            tables!.map((table) =>\n              tx.listen(\n                `\"table_change__${table.schema_oid}__${table.table_oid}\"`,\n                async () => {\n                  refresh()\n                },\n              ),\n            ),\n          )\n        })\n      }\n\n      await init()\n\n      const refresh = debounceMutex(async () => {\n        if (callbacks.length === 0 && changes) {\n          return\n        }\n        let reset = false\n        for (let i = 0; i < 5; i++) {\n          try {\n            await pg.transaction(async (tx) => {\n              // Populate the state table\n              await tx.exec(`\n                INSERT INTO live_query_${id}_state${stateSwitch} \n                  SELECT * FROM live_query_${id}_view;\n              `)\n\n              // Get the changes\n              changes = await tx.query<any>(\n                `EXECUTE live_query_${id}_diff${stateSwitch};`,\n              )\n\n              // Switch state\n              stateSwitch = stateSwitch === 1 ? 2 : 1\n\n              // Truncate the old state table\n              await tx.exec(`\n                TRUNCATE live_query_${id}_state${stateSwitch};\n              `)\n            })\n            break\n          } catch (e) {\n            const msg = (e as Error).message\n            if (\n              msg ===\n              `relation \"live_query_${id}_state${stateSwitch}\" does not exist`\n            ) {\n              // If the state table does not exist, reset and try again\n              // This can happen if using the multi-tab worker\n              reset = true\n              await init()\n              continue\n            } else {\n              throw e\n            }\n          }\n        }\n\n        runChangeCallbacks(callbacks, [\n          ...(reset\n            ? [\n                {\n                  __op__: 'RESET' as const,\n                },\n              ]\n            : []),\n          ...changes!.rows,\n        ])\n      })\n\n      // Function to subscribe to the query\n      const subscribe = (callback: (changes: Array<Change<T>>) => void) => {\n        if (dead) {\n          throw new Error(\n            'Live query is no longer active and cannot be subscribed to',\n          )\n        }\n        callbacks.push(callback)\n      }\n\n      // Function to unsubscribe from the query\n      const unsubscribe = async (\n        callback?: (changes: Array<Change<T>>) => void,\n      ) => {\n        if (callback) {\n          callbacks = callbacks.filter((callback) => callback !== callback)\n        } else {\n          callbacks = []\n        }\n        if (callbacks.length === 0 && !dead) {\n          dead = true\n          await pg.transaction(async (tx) => {\n            await Promise.all(unsubList.map((unsub) => unsub(tx)))\n            await tx.exec(`\n              DROP VIEW IF EXISTS live_query_${id}_view;\n              DROP TABLE IF EXISTS live_query_${id}_state1;\n              DROP TABLE IF EXISTS live_query_${id}_state2;\n              DEALLOCATE live_query_${id}_diff1;\n              DEALLOCATE live_query_${id}_diff2;\n            `)\n          })\n        }\n      }\n\n      // If the signal has already been aborted, unsubscribe\n      if (signal?.aborted) {\n        await unsubscribe()\n      } else {\n        // Add an event listener to unsubscribe if the signal is aborted\n        signal?.addEventListener(\n          'abort',\n          () => {\n            unsubscribe()\n          },\n          { once: true },\n        )\n      }\n\n      // Run the callback with the initial changes\n      await refresh()\n\n      // Fields\n      const fields = changes!.fields.filter(\n        (field) =>\n          !['__after__', '__op__', '__changed_columns__'].includes(field.name),\n      )\n\n      // Return the initial results\n      return {\n        fields,\n        initialChanges: changes!.rows,\n        subscribe,\n        unsubscribe,\n        refresh,\n      } satisfies LiveChanges<T>\n    },\n\n    async incrementalQuery<T>(\n      query: string | LiveIncrementalQueryOptions<T>,\n      params?: any[] | null,\n      key?: string,\n      callback?: (results: Results<T>) => void,\n    ) {\n      let signal: AbortSignal | undefined\n      if (typeof query !== 'string') {\n        signal = query.signal\n        params = query.params\n        key = query.key\n        callback = query.callback\n        query = query.query\n      }\n      if (!key) {\n        throw new Error('key is required for incremental queries')\n      }\n      let callbacks: Array<(results: Results<T>) => void> = callback\n        ? [callback]\n        : []\n      const rowsMap: Map<any, any> = new Map()\n      const afterMap: Map<any, any> = new Map()\n      let lastRows: T[] = []\n      let firstRun = true\n\n      const {\n        fields,\n        unsubscribe: unsubscribeChanges,\n        refresh,\n      } = await namespaceObj.changes<T>(query, params, key, (changes) => {\n        // Process the changes\n        for (const change of changes) {\n          const {\n            __op__: op,\n            __changed_columns__: changedColumns,\n            ...obj\n          } = change as typeof change & { [key: string]: any }\n          switch (op) {\n            case 'RESET':\n              rowsMap.clear()\n              afterMap.clear()\n              break\n            case 'INSERT':\n              rowsMap.set(obj[key], obj)\n              afterMap.set(obj.__after__, obj[key])\n              break\n            case 'DELETE': {\n              const oldObj = rowsMap.get(obj[key])\n              rowsMap.delete(obj[key])\n              // null is the starting point, we don't delete it as another insert\n              // may have happened thats replacing it\n              if (oldObj.__after__ !== null) {\n                afterMap.delete(oldObj.__after__)\n              }\n              break\n            }\n            case 'UPDATE': {\n              const newObj = { ...(rowsMap.get(obj[key]) ?? {}) }\n              for (const columnName of changedColumns) {\n                newObj[columnName] = obj[columnName]\n                if (columnName === '__after__') {\n                  afterMap.set(obj.__after__, obj[key])\n                }\n              }\n              rowsMap.set(obj[key], newObj)\n              break\n            }\n          }\n        }\n\n        // Get the rows in order\n        const rows: T[] = []\n        let lastKey: any = null\n        for (let i = 0; i < rowsMap.size; i++) {\n          const nextKey = afterMap.get(lastKey)\n          const obj = rowsMap.get(nextKey)\n          if (!obj) {\n            break\n          }\n          // Remove the __after__ key from the exposed row\n          const cleanObj = { ...obj }\n          delete cleanObj.__after__\n          rows.push(cleanObj)\n          lastKey = nextKey\n        }\n        lastRows = rows\n\n        // Run the callbacks\n        if (!firstRun) {\n          runResultCallbacks(callbacks, {\n            rows,\n            fields,\n          })\n        }\n      })\n\n      firstRun = false\n      runResultCallbacks(callbacks, {\n        rows: lastRows,\n        fields,\n      })\n\n      const subscribe = (callback: (results: Results<T>) => void) => {\n        callbacks.push(callback)\n      }\n\n      const unsubscribe = async (callback?: (results: Results<T>) => void) => {\n        if (callback) {\n          callbacks = callbacks.filter((callback) => callback !== callback)\n        } else {\n          callbacks = []\n        }\n        if (callbacks.length === 0) {\n          await unsubscribeChanges()\n        }\n      }\n\n      if (signal?.aborted) {\n        await unsubscribe()\n      } else {\n        signal?.addEventListener(\n          'abort',\n          () => {\n            unsubscribe()\n          },\n          { once: true },\n        )\n      }\n\n      return {\n        initialResults: {\n          rows: lastRows,\n          fields,\n        },\n        subscribe,\n        unsubscribe,\n        refresh,\n      } satisfies LiveQuery<T>\n    },\n  }\n\n  return {\n    namespaceObj,\n  }\n}\n\nexport const live = {\n  name: 'Live Queries',\n  setup,\n} satisfies Extension\n\nexport type PGliteWithLive = PGliteInterface & {\n  live: LiveNamespace\n}\n\n/**\n * Get a list of all the tables used in a view, recursively\n * @param tx a transaction or PGlite instance\n * @param viewName the name of the view\n * @returns list of tables used in the view\n */\nasync function getTablesForView(\n  tx: Transaction | PGliteInterface,\n  viewName: string,\n): Promise<\n  {\n    table_name: string\n    schema_name: string\n    table_oid: number\n    schema_oid: number\n  }[]\n> {\n  const result = await tx.query<{\n    table_name: string\n    schema_name: string\n    table_oid: number\n    schema_oid: number\n  }>(\n    `\n      WITH RECURSIVE view_dependencies AS (\n        -- Base case: Get the initial view's dependencies\n        SELECT DISTINCT\n          cl.relname AS dependent_name,\n          n.nspname AS schema_name,\n          cl.oid AS dependent_oid,\n          n.oid AS schema_oid,\n          cl.relkind = 'v' AS is_view\n        FROM pg_rewrite r\n        JOIN pg_depend d ON r.oid = d.objid\n        JOIN pg_class cl ON d.refobjid = cl.oid\n        JOIN pg_namespace n ON cl.relnamespace = n.oid\n        WHERE\n          r.ev_class = (\n              SELECT oid FROM pg_class WHERE relname = $1 AND relkind = 'v'\n          )\n          AND d.deptype = 'n'\n\n        UNION ALL\n\n        -- Recursive case: Traverse dependencies for views\n        SELECT DISTINCT\n          cl.relname AS dependent_name,\n          n.nspname AS schema_name,\n          cl.oid AS dependent_oid,\n          n.oid AS schema_oid,\n          cl.relkind = 'v' AS is_view\n        FROM view_dependencies vd\n        JOIN pg_rewrite r ON vd.dependent_name = (\n          SELECT relname FROM pg_class WHERE oid = r.ev_class AND relkind = 'v'\n        )\n        JOIN pg_depend d ON r.oid = d.objid\n        JOIN pg_class cl ON d.refobjid = cl.oid\n        JOIN pg_namespace n ON cl.relnamespace = n.oid\n        WHERE d.deptype = 'n'\n      )\n      SELECT DISTINCT\n        dependent_name AS table_name,\n        schema_name,\n        dependent_oid AS table_oid,\n        schema_oid\n      FROM view_dependencies\n      WHERE NOT is_view; -- Exclude intermediate views\n    `,\n    [viewName],\n  )\n\n  return result.rows.map((row) => ({\n    table_name: row.table_name,\n    schema_name: row.schema_name,\n    table_oid: row.table_oid,\n    schema_oid: row.schema_oid,\n  }))\n}\n\n/**\n * Add triggers to tables to notify when they change\n * @param tx a transaction or PGlite instance\n * @param tables list of tables to add triggers to\n */\nasync function addNotifyTriggersToTables(\n  tx: Transaction | PGliteInterface,\n  tables: {\n    table_name: string\n    table_oid: number\n    schema_name: string\n    schema_oid: number\n  }[],\n  tableNotifyTriggersAdded: Set<string>,\n) {\n  const triggers = tables\n    .filter(\n      (table) =>\n        !tableNotifyTriggersAdded.has(`${table.schema_oid}_${table.table_oid}`),\n    )\n    .map((table) => {\n      return `\n      CREATE OR REPLACE FUNCTION \"_notify_${table.schema_oid}_${table.table_oid}\"() RETURNS TRIGGER AS $$\n      BEGIN\n        PERFORM pg_notify('table_change__${table.schema_oid}__${table.table_oid}', '');\n        RETURN NULL;\n      END;\n      $$ LANGUAGE plpgsql;\n      CREATE OR REPLACE TRIGGER \"_notify_trigger_${table.schema_oid}_${table.table_oid}\"\n      AFTER INSERT OR UPDATE OR DELETE ON \"${table.schema_name}\".\"${table.table_name}\"\n      FOR EACH STATEMENT EXECUTE FUNCTION \"_notify_${table.schema_oid}_${table.table_oid}\"();\n      `\n    })\n    .join('\\n')\n  if (triggers.trim() !== '') {\n    await tx.exec(triggers)\n  }\n  tables.map((table) =>\n    tableNotifyTriggersAdded.add(`${table.schema_oid}_${table.table_oid}`),\n  )\n}\n\nconst runResultCallbacks = <T>(\n  callbacks: Array<(results: Results<T>) => void>,\n  results: Results<T>,\n) => {\n  for (const callback of callbacks) {\n    callback(results)\n  }\n}\n\nconst runChangeCallbacks = <T>(\n  callbacks: Array<(changes: Array<Change<T>>) => void>,\n  changes: Array<Change<T>>,\n) => {\n  for (const callback of callbacks) {\n    callback(changes)\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/live/interface.ts",
    "content": "import type { Results } from '../interface'\n\nexport interface LiveQueryOptions<T = { [key: string]: any }> {\n  query: string\n  params?: any[] | null\n  offset?: number\n  limit?: number\n  callback?: (results: Results<T>) => void\n  signal?: AbortSignal\n}\n\nexport interface LiveChangesOptions<T = { [key: string]: any }> {\n  query: string\n  params?: any[] | null\n  key: string\n  callback?: (changes: Array<Change<T>>) => void\n  signal?: AbortSignal\n}\n\nexport interface LiveIncrementalQueryOptions<T = { [key: string]: any }> {\n  query: string\n  params?: any[] | null\n  key: string\n  callback?: (results: Results<T>) => void\n  signal?: AbortSignal\n}\n\nexport interface LiveNamespace {\n  /**\n   * Create a live query\n   * @param query - The query to run\n   * @param params - The parameters to pass to the query\n   * @param callback - A callback to run when the query is updated\n   * @returns A promise that resolves to an object with the initial results,\n   * an unsubscribe function, and a refresh function\n   */\n  query<T = { [key: string]: any }>(\n    query: string,\n    params?: any[] | null,\n    callback?: (results: Results<T>) => void,\n  ): Promise<LiveQuery<T>>\n\n  /**\n   * Create a live query\n   * @param options - The options to pass to the query\n   * @returns A promise that resolves to an object with the initial results,\n   * an unsubscribe function, and a refresh function\n   */\n  query<T = { [key: string]: any }>(\n    options: LiveQueryOptions<T>,\n  ): Promise<LiveQuery<T>>\n\n  /**\n   * Create a live query that returns the changes to the query results\n   * @param query - The query to run\n   * @param params - The parameters to pass to the query\n   * @param callback - A callback to run when the query is updated\n   * @returns A promise that resolves to an object with the initial changes,\n   * an unsubscribe function, and a refresh function\n   */\n  changes<T = { [key: string]: any }>(\n    query: string,\n    params: any[] | undefined | null,\n    key: string,\n    callback?: (changes: Array<Change<T>>) => void,\n  ): Promise<LiveChanges<T>>\n\n  /**\n   * Create a live query that returns the changes to the query results\n   * @param options - The options to pass to the query\n   * @returns A promise that resolves to an object with the initial changes,\n   * an unsubscribe function, and a refresh function\n   */\n  changes<T = { [key: string]: any }>(\n    options: LiveChangesOptions<T>,\n  ): Promise<LiveChanges<T>>\n\n  /**\n   * Create a live query with incremental updates\n   * @param query - The query to run\n   * @param params - The parameters to pass to the query\n   * @param callback - A callback to run when the query is updated\n   * @returns A promise that resolves to an object with the initial results,\n   * an unsubscribe function, and a refresh function\n   */\n  incrementalQuery<T = { [key: string]: any }>(\n    query: string,\n    params: any[] | undefined | null,\n    key: string,\n    callback?: (results: Results<T>) => void,\n  ): Promise<LiveQuery<T>>\n\n  /**\n   * Create a live query with incremental updates\n   * @param options - The options to pass to the query\n   * @returns A promise that resolves to an object with the initial results,\n   * an unsubscribe function, and a refresh function\n   */\n  incrementalQuery<T = { [key: string]: any }>(\n    options: LiveIncrementalQueryOptions<T>,\n  ): Promise<LiveQuery<T>>\n}\n\nexport interface LiveQueryResults<T> extends Results<T> {\n  totalCount?: number\n  offset?: number\n  limit?: number\n}\n\nexport interface LiveQuery<T> {\n  initialResults: LiveQueryResults<T>\n  subscribe: (callback: (results: LiveQueryResults<T>) => void) => void\n  unsubscribe: (\n    callback?: (results: LiveQueryResults<T>) => void,\n  ) => Promise<void>\n  refresh: (options?: { offset?: number; limit?: number }) => Promise<void>\n}\n\nexport interface LiveChanges<T = { [key: string]: any }> {\n  fields: { name: string; dataTypeID: number }[]\n  initialChanges: Array<Change<T>>\n  subscribe: (callback: (changes: Array<Change<T>>) => void) => void\n  unsubscribe: (callback?: (changes: Array<Change<T>>) => void) => Promise<void>\n  refresh: () => Promise<void>\n}\n\nexport type ChangeInsert<T> = {\n  __changed_columns__: string[]\n  __op__: 'INSERT'\n  __after__: number\n} & T\n\nexport type ChangeDelete<T> = {\n  __changed_columns__: string[]\n  __op__: 'DELETE'\n  __after__: undefined\n} & T\n\nexport type ChangeUpdate<T> = {\n  __changed_columns__: string[]\n  __op__: 'UPDATE'\n  __after__: number\n} & T\n\nexport type ChangeReset<T> = {\n  __op__: 'RESET'\n} & T\n\nexport type Change<T> =\n  | ChangeInsert<T>\n  | ChangeDelete<T>\n  | ChangeUpdate<T>\n  | ChangeReset<T>\n"
  },
  {
    "path": "packages/pglite/src/parse.ts",
    "content": "import {\n  BackendMessage,\n  RowDescriptionMessage,\n  DataRowMessage,\n  CommandCompleteMessage,\n  ParameterDescriptionMessage,\n} from '@electric-sql/pg-protocol/messages'\nimport type { Results, QueryOptions } from './interface.js'\nimport { parseType, type Parser } from './types.js'\n\n/**\n * This function is used to parse the results of either a simple or extended query.\n * https://www.postgresql.org/docs/current/protocol-flow.html#PROTOCOL-FLOW-SIMPLE-QUERY\n */\nexport function parseResults(\n  messages: Array<BackendMessage>,\n  defaultParsers: Record<number | string, Parser>,\n  options?: QueryOptions,\n  blob?: Blob,\n): Array<Results> {\n  const resultSets: Results[] = []\n  let currentResultSet: Results = { rows: [], fields: [] }\n  let affectedRows = 0\n  const parsers = { ...defaultParsers, ...options?.parsers }\n\n  messages.forEach((message) => {\n    switch (message.name) {\n      case 'rowDescription': {\n        const msg = message as RowDescriptionMessage\n        currentResultSet.fields = msg.fields.map((field) => ({\n          name: field.name,\n          dataTypeID: field.dataTypeID,\n        }))\n        break\n      }\n      case 'dataRow': {\n        if (!currentResultSet) break\n        const msg = message as DataRowMessage\n        if (options?.rowMode === 'array') {\n          currentResultSet.rows.push(\n            msg.fields.map((field, i) =>\n              parseType(field, currentResultSet!.fields[i].dataTypeID, parsers),\n            ),\n          )\n        } else {\n          // rowMode === \"object\"\n          currentResultSet.rows.push(\n            Object.fromEntries(\n              msg.fields.map((field, i) => [\n                currentResultSet!.fields[i].name,\n                parseType(\n                  field,\n                  currentResultSet!.fields[i].dataTypeID,\n                  parsers,\n                ),\n              ]),\n            ),\n          )\n        }\n        break\n      }\n      case 'commandComplete': {\n        const msg = message as CommandCompleteMessage\n        affectedRows += retrieveRowCount(msg)\n\n        resultSets.push({\n          ...currentResultSet,\n          affectedRows,\n          ...(blob ? { blob } : {}),\n        })\n\n        currentResultSet = { rows: [], fields: [] }\n        break\n      }\n    }\n  })\n\n  if (resultSets.length === 0) {\n    resultSets.push({\n      affectedRows: 0,\n      rows: [],\n      fields: [],\n    })\n  }\n\n  return resultSets\n}\n\nfunction retrieveRowCount(msg: CommandCompleteMessage): number {\n  const parts = msg.text.split(' ')\n  switch (parts[0]) {\n    case 'INSERT':\n      return parseInt(parts[2], 10)\n    case 'UPDATE':\n    case 'DELETE':\n    case 'COPY':\n    case 'MERGE':\n      return parseInt(parts[1], 10)\n    default:\n      return 0\n  }\n}\n\n/** Get the dataTypeIDs from a list of messages, if it's available. */\nexport function parseDescribeStatementResults(\n  messages: Array<BackendMessage>,\n): number[] {\n  const message = messages.find(\n    (msg): msg is ParameterDescriptionMessage =>\n      msg.name === 'parameterDescription',\n  )\n\n  if (message) {\n    return message.dataTypeIDs\n  }\n\n  return []\n}\n"
  },
  {
    "path": "packages/pglite/src/pg_hashids/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/pg_hashids.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_hashids = {\n  name: 'pg_hashids',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/pg_ivm/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/pg_ivm.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_ivm = {\n  name: 'pg_ivm',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/pg_textsearch/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/pg_textsearch.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_textsearch = {\n  name: 'pg_textsearch',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/pg_uuidv7/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/pg_uuidv7.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pg_uuidv7 = {\n  name: 'pg_uuidv7',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/pglite.ts",
    "content": "import { Mutex } from 'async-mutex'\nimport { BasePGlite } from './base.js'\nimport { loadExtensionBundle, loadExtensions } from './extensionUtils.js'\nimport {\n  type Filesystem,\n  loadFs,\n  parseDataDir,\n  WASM_PREFIX,\n} from './fs/index.js'\nimport { DumpTarCompressionOptions, loadTar } from './fs/tarUtils.js'\nimport type {\n  DebugLevel,\n  ExecProtocolOptions,\n  ExecProtocolOptionsStream,\n  ExecProtocolResult,\n  Extensions,\n  PGliteInterface,\n  PGliteInterfaceExtensions,\n  PGliteOptions,\n  Transaction,\n} from './interface.js'\nimport PostgresModFactory, { type PostgresMod } from './postgresMod.js'\nimport {\n  getFsBundle,\n  instantiateWasm,\n  startWasmDownload,\n  toPostgresName,\n} from './utils.js'\n\n// Importing the source as the built version is not ESM compatible\nimport { Parser as ProtocolParser, serialize } from '@electric-sql/pg-protocol'\nimport {\n  BackendMessage,\n  DatabaseError,\n  NoticeMessage,\n  NotificationResponseMessage,\n} from '@electric-sql/pg-protocol/messages'\n\nimport { initdb, PGDATA } from './initdb'\n\nconst postgresExePath = '/pglite/bin/postgres'\nconst initdbExePath = '/pglite/bin/initdb'\n\nexport class PGlite\n  extends BasePGlite\n  implements PGliteInterface, AsyncDisposable\n{\n  fs?: Filesystem\n  protected mod?: PostgresMod\n\n  // we handle Postgres' main longjmp manually, by intercepting it and exiting with this error code\n  // keep in sync with pglitec.c->POSTGRES_MAIN_LONGJMP\n  private readonly POSTGRES_MAIN_LONGJMP = 100\n\n  get ENV(): any {\n    return this.mod?.ENV\n  }\n\n  readonly dataDir?: string\n\n  #ready = false\n  #closing = false\n  #closed = false\n  #relaxedDurability = false\n\n  readonly waitReady: Promise<void>\n\n  #queryMutex = new Mutex()\n  #transactionMutex = new Mutex()\n  #listenMutex = new Mutex()\n  #fsSyncMutex = new Mutex()\n  #fsSyncScheduled = false\n\n  readonly debug: DebugLevel = 0\n\n  #extensions: Extensions\n  #extensionsClose: Array<() => Promise<void>> = []\n\n  #protocolParser = new ProtocolParser()\n\n  // These are the current ArrayBuffer that is being read or written to\n  // during a query, such as COPY FROM or COPY TO.\n  #queryReadBuffer?: ArrayBuffer\n  #queryWriteChunks?: Uint8Array[]\n\n  #notifyListeners = new Map<string, Set<(payload: string) => void>>()\n  #globalNotifyListeners = new Set<(channel: string, payload: string) => void>()\n\n  // receive data from wasm\n  #pglite_socket_write: number = -1\n\n  #currentResults: BackendMessage[] = []\n  #currentThrowOnError: boolean = false\n  #currentOnNotice: ((notice: NoticeMessage) => void) | undefined\n  #currentOnRawData: ((data: Uint8Array) => void) | undefined\n\n  // send data to wasm\n  #pglite_socket_read: number = -1\n  // buffer that holds the data to be sent to wasm\n  #outputData: any = []\n  // read index in the buffer\n  #readOffset: number = 0\n  #currentDatabaseError: DatabaseError | null = null\n\n  #keepRawResponse: boolean = true\n  // these are needed for point 2 above\n  static readonly DEFAULT_RECV_BUF_SIZE: number = 1 * 1024 * 1024 // 1MB default\n  static readonly MAX_BUFFER_SIZE: number = Math.pow(2, 30)\n  // buffer that holds data received from wasm\n  #inputData = new Uint8Array(0)\n  // write index in the buffer\n  #writeOffset: number = 0\n  #system_fn: number = -1\n  #popen_fn: number = -1\n  #pclose_fn: number = -1\n  externalCommandStreamFd: number | null = null\n  #running: boolean = false\n\n  static readonly defaultStartParams = [\n    '--single', // selects single-user mode (must be first argument)\n    '-F', // turn fsync off\n    '-O', // allow system table structure changes\n    '-j', // do not use newline as interactive query delimiter\n    '-c',\n    'search_path=public',\n    '-c',\n    'exit_on_error=false',\n    '-c',\n    'log_checkpoints=false',\n  ]\n\n  /**\n   * Create a new PGlite instance\n   * @param dataDir The directory to store the database files\n   *                Prefix with idb:// to use indexeddb filesystem in the browser\n   *                Use memory:// to use in-memory filesystem\n   * @param options PGlite options\n   */\n  constructor(dataDir?: string, options?: PGliteOptions)\n\n  /**\n   * Create a new PGlite instance\n   * @param options PGlite options including the data directory\n   */\n  constructor(options?: PGliteOptions)\n\n  constructor(\n    dataDirOrPGliteOptions: string | PGliteOptions = {},\n    options: PGliteOptions = {},\n  ) {\n    super()\n    if (typeof dataDirOrPGliteOptions === 'string') {\n      options = {\n        dataDir: dataDirOrPGliteOptions,\n        ...options,\n      }\n    } else {\n      options = dataDirOrPGliteOptions\n    }\n    this.dataDir = options.dataDir\n\n    // Override default parsers and serializers if requested\n    if (options.parsers !== undefined) {\n      this.parsers = { ...this.parsers, ...options.parsers }\n    }\n    if (options.serializers !== undefined) {\n      this.serializers = { ...this.serializers, ...options.serializers }\n    }\n\n    // Enable debug logging if requested\n    if (options?.debug !== undefined) {\n      this.debug = options.debug\n    }\n\n    // Enable relaxed durability if requested\n    if (options?.relaxedDurability !== undefined) {\n      this.#relaxedDurability = options.relaxedDurability\n    }\n\n    // Save the extensions for later use\n    this.#extensions = options.extensions ?? {}\n\n    // Initialize the database, and store the promise so we can wait for it to be ready\n    this.waitReady = this.#init(options ?? {})\n  }\n\n  /**\n   * Create a new PGlite instance with extensions on the Typescript interface\n   * (The main constructor does enable extensions, however due to the limitations\n   * of Typescript, the extensions are not available on the instance interface)\n   * @param options PGlite options including the data directory\n   * @returns A promise that resolves to the PGlite instance when it's ready.\n   */\n\n  static async create<O extends PGliteOptions>(\n    options?: O,\n  ): Promise<PGlite & PGliteInterfaceExtensions<O['extensions']>>\n\n  /**\n   * Create a new PGlite instance with extensions on the Typescript interface\n   * (The main constructor does enable extensions, however due to the limitations\n   * of Typescript, the extensions are not available on the instance interface)\n   * @param dataDir The directory to store the database files\n   *                Prefix with idb:// to use indexeddb filesystem in the browser\n   *                Use memory:// to use in-memory filesystem\n   * @param options PGlite options\n   * @returns A promise that resolves to the PGlite instance when it's ready.\n   */\n  static async create<O extends PGliteOptions>(\n    dataDir?: string,\n    options?: O,\n  ): Promise<PGlite & PGliteInterfaceExtensions<O['extensions']>>\n\n  static async create<TExtensions extends Extensions = Extensions>(\n    dataDirOrPGliteOptions?: string | PGliteOptions<TExtensions>,\n    options?: PGliteOptions<TExtensions>,\n  ): Promise<PGlite & PGliteInterface<TExtensions>> {\n    const resolvedOpts: PGliteOptions =\n      typeof dataDirOrPGliteOptions === 'string'\n        ? {\n            dataDir: dataDirOrPGliteOptions,\n            ...(options ?? {}),\n          }\n        : (dataDirOrPGliteOptions ?? {})\n\n    const pg = new PGlite(resolvedOpts)\n    await pg.waitReady\n    return pg as any\n  }\n\n  #print(text: string): void {\n    if (this.debug) {\n      console.debug(text)\n    }\n  }\n\n  #printErr(text: string): void {\n    if (this.debug) {\n      console.error(text)\n    }\n  }\n\n  handleExternalCmd(cmd: string, mode: string) {\n    if (cmd.startsWith('locale -a') && mode === 'r') {\n      const filePath = this.mod!.stringToUTF8OnStack('/pglite/locale-a')\n      const smode = this.mod!.stringToUTF8OnStack(mode)\n      return this.mod!._fopen(filePath, smode)\n    }\n    throw new Error('Unhandled cmd')\n  }\n\n  /**\n   * Initialize the database\n   * @returns A promise that resolves when the database is ready\n   */\n  async #init(options: PGliteOptions) {\n    if (options.fs) {\n      this.fs = options.fs\n    } else {\n      const { dataDir, fsType } = parseDataDir(options.dataDir)\n      this.fs = await loadFs(dataDir, fsType)\n    }\n\n    const extensionBundlePromises: Record<string, Promise<Blob | null>> = {}\n    const extensionInitFns: Array<() => Promise<void>> = []\n\n    const args = [\n      // \"-F\", // Disable fsync (TODO: Only for in-memory mode?)\n      ...(this.debug ? ['-d', this.debug.toString()] : []),\n    ]\n\n    if (!options.wasmModule) {\n      // Start the wasm download in the background so it's ready when we need it\n      startWasmDownload()\n    }\n\n    // Get the fs bundle\n    // We don't await the loading of the fs bundle at this point as we can continue\n    // with other work.\n    // It's resolved value `fsBundleBuffer` is set and used in `getPreloadedPackage`\n    // which is called via `PostgresModFactory` after we have awaited\n    // `fsBundleBufferPromise` below.\n    const fsBundleBufferPromise = options.fsBundle\n      ? options.fsBundle.arrayBuffer()\n      : getFsBundle()\n    let fsBundleBuffer: ArrayBuffer\n    fsBundleBufferPromise.then((buffer) => {\n      fsBundleBuffer = buffer\n    })\n\n    let emscriptenOpts: Partial<PostgresMod> = {\n      thisProgram: postgresExePath,\n      WASM_PREFIX,\n      arguments: args,\n      noExitRuntime: true,\n      // Provide a stdin that returns EOF to avoid browser prompt\n      stdin: () => null,\n      print: (text: string) => {\n        this.#print(text)\n      },\n      printErr: (text: string) => {\n        this.#printErr(text)\n      },\n      instantiateWasm: (imports, successCallback) => {\n        instantiateWasm(imports, options.wasmModule).then(\n          ({ instance, module }) => {\n            // @ts-ignore wrong type in Emscripten typings\n            successCallback(instance, module)\n          },\n        )\n        return {}\n      },\n      getPreloadedPackage: (remotePackageName, remotePackageSize) => {\n        if (remotePackageName === 'pglite.data') {\n          if (fsBundleBuffer.byteLength !== remotePackageSize) {\n            throw new Error(\n              `Invalid FS bundle size: ${fsBundleBuffer.byteLength} !== ${remotePackageSize}`,\n            )\n          }\n          return fsBundleBuffer\n        }\n        throw new Error(`Unknown package: ${remotePackageName}`)\n      },\n      preRun: [\n        (mod: PostgresMod) => {\n          mod.onRuntimeInitialized = () => {\n            this.#onRuntimeInitialized(mod)\n          }\n        },\n        (mod: PostgresMod) => {\n          // Register /dev/blob device\n          // This is used to read and write blobs when used in COPY TO/FROM\n          // e.g. COPY mytable TO '/dev/blob' WITH (FORMAT binary)\n          // The data is returned by the query as a `blob` property in the results\n          const devId = mod.FS.makedev(64, 0)\n          const devOpt = {\n            open: (_stream: any) => {},\n            close: (_stream: any) => {},\n            read: (\n              _stream: any,\n              buffer: Uint8Array,\n              offset: number,\n              length: number,\n              position: number,\n            ) => {\n              const buf = this.#queryReadBuffer\n              if (!buf) {\n                throw new Error(\n                  'No /dev/blob File or Blob provided to read from',\n                )\n              }\n              const contents = new Uint8Array(buf)\n              if (position >= contents.length) return 0\n              const size = Math.min(contents.length - position, length)\n              for (let i = 0; i < size; i++) {\n                buffer[offset + i] = contents[position + i]\n              }\n              return size\n            },\n            write: (\n              _stream: any,\n              buffer: Uint8Array,\n              offset: number,\n              length: number,\n              _position: number,\n            ) => {\n              this.#queryWriteChunks ??= []\n              this.#queryWriteChunks.push(buffer.slice(offset, offset + length))\n              return length\n            },\n            llseek: (stream: any, offset: number, whence: number) => {\n              const buf = this.#queryReadBuffer\n              if (!buf) {\n                throw new Error('No /dev/blob File or Blob provided to llseek')\n              }\n              let position = offset\n              if (whence === 1) {\n                position += stream.position\n              } else if (whence === 2) {\n                position = new Uint8Array(buf).length\n              }\n              if (position < 0) {\n                throw new mod.FS.ErrnoError(28)\n              }\n              return position\n            },\n          }\n          mod.FS.registerDevice(devId, devOpt)\n          mod.FS.mkdev('/dev/blob', devId)\n        },\n        (mod: PostgresMod) => {\n          mod.FS.chmod('/home/web_user/.pgpass', 0o0600) // https://www.postgresql.org/docs/current/libpq-pgpass.html\n          mod.FS.chmod(initdbExePath, 0o0555)\n          mod.FS.chmod(postgresExePath, 0o0555)\n        },\n        (mod: PostgresMod) => {\n          mod.ENV.PGDATA = PGDATA\n          mod.ENV.PGUSER = options.username ?? 'postgres'\n          mod.ENV.PGDATABASE = options.database ?? 'postgres'\n          mod.ENV.LC_CTYPE = 'en_US.UTF-8'\n          mod.ENV.TZ = 'UTC'\n          mod.ENV.PGTZ = 'UTC'\n          mod.ENV.PGCLIENTENCODING = 'UTF8'\n\n          // some extensions might need their own ENV variables\n          for (const [extName] of Object.entries(this.#extensions)) {\n            if (extName === 'postgis') {\n              mod.ENV.PROJ_DATA = `${WASM_PREFIX}/share/proj`\n            }\n          }\n        },\n      ],\n    }\n\n    const { emscriptenOpts: amendedEmscriptenOpts } = await this.fs!.init(\n      this,\n      emscriptenOpts,\n    )\n    emscriptenOpts = amendedEmscriptenOpts\n\n    // # Setup extensions\n    // This is the first step of loading PGlite extensions\n    // We loop through each extension and call the setup function\n    // This amends the emscriptenOpts and can return:\n    // - emscriptenOpts: The updated emscripten options\n    // - namespaceObj: The namespace object to attach to the PGlite instance\n    // - init: A function to initialize the extension/plugin after the database is ready\n    // - close: A function to close/tidy-up the extension/plugin when the database is closed\n    for (const [extName, ext] of Object.entries(this.#extensions)) {\n      if (ext instanceof URL) {\n        // Extension with only a URL to a bundle\n        extensionBundlePromises[extName] = loadExtensionBundle(ext)\n      } else {\n        // Extension with JS setup function\n        const extRet = await ext.setup(this, emscriptenOpts)\n        if (extRet.emscriptenOpts) {\n          emscriptenOpts = extRet.emscriptenOpts\n        }\n        if (extRet.namespaceObj) {\n          const instance = this as any\n          instance[extName] = extRet.namespaceObj\n        }\n        if (extRet.bundlePath) {\n          extensionBundlePromises[extName] = loadExtensionBundle(\n            extRet.bundlePath,\n          ) // Don't await here, this is parallel\n        }\n        if (extRet.init) {\n          extensionInitFns.push(extRet.init)\n        }\n        if (extRet.close) {\n          this.#extensionsClose.push(extRet.close)\n        }\n      }\n    }\n    emscriptenOpts['pg_extensions'] = extensionBundlePromises\n\n    // Await the fs bundle - we do this just before calling PostgresModFactory\n    // as it needs the fs bundle to be ready.\n    await fsBundleBufferPromise\n\n    // Load the database engine\n    this.mod = await PostgresModFactory(emscriptenOpts)\n\n    // Sync the filesystem from any previous store\n    await this.fs!.initialSyncFs()\n\n    if (!options.noInitDb) {\n      // If the user has provided a tarball to load the database from, do that now.\n      // We do this after the initial sync so that we can throw if the database\n      // already exists.\n      if (options.loadDataDir) {\n        if (this.mod.FS.analyzePath(PGDATA + '/PG_VERSION').exists) {\n          throw new Error('Database already exists, cannot load from tarball')\n        }\n        this.#log('pglite: loading data from tarball')\n        await loadTar(this.mod.FS, options.loadDataDir, PGDATA)\n      } else {\n        // Check if the database exists in the file system, if not we run initdb\n        if (this.mod.FS.analyzePath(PGDATA + '/PG_VERSION').exists) {\n          this.#log('pglite: found DB, resuming')\n        } else {\n          this.#log('pglite: no db in filesystem, running initdb')\n\n          const pgInitDbOpts = { ...options }\n          pgInitDbOpts.noInitDb = true\n          pgInitDbOpts.dataDir = undefined\n          pgInitDbOpts.extensions = undefined\n          pgInitDbOpts.loadDataDir = undefined\n          const pg_initDb = await PGlite.create(pgInitDbOpts)\n\n          // Initialize the database\n          const initdbResult = await initdb({\n            pg: pg_initDb,\n            debug: options.debug,\n          })\n\n          if (initdbResult.exitCode !== 0) {\n            if (!initdbResult.stderr.includes('exists but is not empty')) {\n              throw new Error(\n                'INITDB failed to initialize: ' + initdbResult.stderr,\n              )\n            }\n          }\n\n          const pgdatatar = await pg_initDb.dumpDataDir('none')\n          pg_initDb.close()\n          await loadTar(this.mod.FS, pgdatatar, PGDATA)\n\n          // Sync any changes back to the persisted store (if there is one)\n          // TODO: only sync here if initdb did init db.\n          await this.syncToFs()\n        }\n      }\n\n      // Start compiling dynamic extensions present in FS.\n      await loadExtensions(this.mod, (...args) => this.#log(...args))\n\n      this.mod!._pgl_setPGliteActive(1)\n      this.#startInSingleMode({\n        pgDataFolder: PGDATA,\n        startParams: [\n          ...(options.startParams || PGlite.defaultStartParams),\n          ...(this.debug ? ['-d', this.debug.toString()] : []),\n        ],\n      })\n      this.#setPGliteActive()\n\n      this.#ready = true\n\n      if (options.username) {\n        await this.exec(`SET ROLE ${options.username};`)\n      }\n\n      // Init array types\n      await this._initArrayTypes()\n\n      // Init extensions\n      for (const initFn of extensionInitFns) {\n        await initFn()\n      }\n    }\n  }\n\n  #onRuntimeInitialized(mod: PostgresMod) {\n    // default $HOME in emscripten is /home/web_user\n    // we override system() to intercept any calls that might generate unexpected output\n    this.#system_fn = mod.addFunction((cmd_ptr: number) => {\n      this.#log(\n        `Postgres tried to execute ${mod.UTF8ToString(cmd_ptr)}, returning 1.`,\n      )\n      return 1\n    }, 'pi')\n\n    mod._pgl_set_system_fn(this.#system_fn)\n\n    this.#popen_fn = mod.addFunction((cmd_ptr: number, mode: number) => {\n      const smode = mod.UTF8ToString(mode)\n      const args = mod.UTF8ToString(cmd_ptr)\n      this.externalCommandStreamFd = this.handleExternalCmd(args, smode)\n      return this.externalCommandStreamFd!\n    }, 'ppp')\n\n    mod._pgl_set_popen_fn(this.#popen_fn)\n\n    this.#pclose_fn = mod.addFunction((stream: number) => {\n      if (stream === this.externalCommandStreamFd) {\n        this.mod!._fclose(this.externalCommandStreamFd!)\n        this.externalCommandStreamFd = null\n      } else {\n        throw `Unhandled pclose ${stream}`\n      }\n      this.#log('pclose_fn', stream)\n    }, 'pi')\n\n    mod._pgl_set_pclose_fn(this.#pclose_fn)\n\n    // set the write callback\n    this.#pglite_socket_write = mod.addFunction((ptr: any, length: number) => {\n      let bytes\n      try {\n        bytes = this.mod!.HEAPU8.subarray(ptr, ptr + length)\n      } catch (e: any) {\n        console.error('error', e)\n        throw e\n      }\n      this.#protocolParser.parse(bytes, (msg) => {\n        const parsedMsg = this.#parse(msg)\n        if (parsedMsg) {\n          this.#currentResults.push(parsedMsg)\n        }\n      })\n      if (this.#keepRawResponse) {\n        const copied = bytes.slice()\n        if (this.#currentOnRawData) {\n          try {\n            this.#currentOnRawData(copied)\n          } catch (e) {\n            // swallow\n            this.#log('Error in onRawData() callback', e)\n          }\n        } else {\n          let requiredSize = this.#writeOffset + copied.length\n          if (requiredSize > this.#inputData.length) {\n            const newSize =\n              this.#inputData.length +\n              (this.#inputData.length >> 1) +\n              requiredSize\n            if (requiredSize > PGlite.MAX_BUFFER_SIZE) {\n              requiredSize = PGlite.MAX_BUFFER_SIZE\n            }\n            const newBuffer = new Uint8Array(newSize)\n            newBuffer.set(this.#inputData.subarray(0, this.#writeOffset))\n            this.#inputData = newBuffer\n          }\n          this.#inputData.set(copied, this.#writeOffset)\n          this.#writeOffset += copied.length\n        }\n      }\n      return length\n    }, 'iii')\n\n    // set the read callback\n    this.#pglite_socket_read = mod.addFunction(\n      (ptr: any, max_length: number) => {\n        // copy current data to wasm buffer\n        let length = this.#outputData.length - this.#readOffset\n        if (length > max_length) {\n          length = max_length\n        }\n        this.mod!.HEAP8.set(\n          (this.#outputData as Uint8Array).subarray(\n            this.#readOffset,\n            this.#readOffset + length,\n          ),\n          ptr,\n        )\n        this.#readOffset += length\n\n        return length\n      },\n      'iii',\n    )\n\n    mod._pgl_set_rw_cbs(this.#pglite_socket_read, this.#pglite_socket_write)\n  }\n  /**\n   * The Postgres Emscripten Module\n   */\n  get Module() {\n    return this.mod!\n  }\n\n  /**\n   * The ready state of the database\n   */\n  get ready() {\n    return this.#ready && !this.#closing && !this.#closed\n  }\n\n  /**\n   * The closed state of the database\n   */\n  get closed() {\n    return this.#closed\n  }\n\n  /**\n   * Close the database\n   * @returns A promise that resolves when the database is closed\n   */\n  async close() {\n    await this._checkReady()\n    this.#closing = true\n\n    // Close all extensions\n    for (const closeFn of this.#extensionsClose) {\n      await closeFn()\n    }\n\n    // Close the database\n    try {\n      this.mod!._pgl_setPGliteActive(0)\n      await this.execProtocol(serialize.end())\n      this.mod!._pgl_run_atexit_funcs()\n    } catch (e: any) {\n      const err = e as { name: string; status: number }\n      if (err.name === 'ExitStatus' && err.status === 0) {\n        // Database closed successfully\n        // An earlier build of PGlite would throw an error here when closing\n        // leaving this here for now. I believe it was a bug in Emscripten.\n      } else {\n        this.#log(`An error occured while closing the db`, e.toString())\n      }\n    } finally {\n      this.mod!.removeFunction(this.#pglite_socket_read)\n      this.mod!.removeFunction(this.#pglite_socket_write)\n    }\n\n    // Close the filesystem\n    await this.fs!.closeFs()\n\n    this.#closed = true\n    this.#closing = false\n    this.#ready = false\n    this.#running = false\n\n    try {\n      // exit the runtime. since we're using `noExitRuntime: true` on our module,\n      // we need to do this explicitly\n      this.mod!._emscripten_force_exit(/* exit code */ 0)\n    } catch (e: any) {\n      this.#log(e)\n      if (e.status !== 0) {\n        this.#log('Error when exiting', e.toString())\n      }\n    }\n  }\n\n  /**\n   * Close the database when the object exits scope\n   * Stage 3 ECMAScript Explicit Resource Management\n   * https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management\n   */\n  async [Symbol.asyncDispose]() {\n    await this.close()\n  }\n\n  /**\n   * Handle a file attached to the current query\n   * @param file The file to handle\n   */\n  async _handleBlob(blob?: File | Blob) {\n    this.#queryReadBuffer = blob ? await blob.arrayBuffer() : undefined\n  }\n\n  /**\n   * Cleanup the current file\n   */\n  async _cleanupBlob() {\n    this.#queryReadBuffer = undefined\n  }\n\n  /**\n   * Get the written blob from the current query\n   * @returns The written blob\n   */\n  async _getWrittenBlob(): Promise<Blob | undefined> {\n    if (!this.#queryWriteChunks) {\n      return undefined\n    }\n    const blob = new Blob(this.#queryWriteChunks)\n    this.#queryWriteChunks = undefined\n    return blob\n  }\n\n  /**\n   * Wait for the database to be ready\n   */\n  async _checkReady() {\n    if (this.#closing) {\n      throw new Error('PGlite is closing')\n    }\n    if (this.#closed) {\n      throw new Error('PGlite is closed')\n    }\n    if (!this.#ready) {\n      // Starting the database can take a while and it might not be ready yet\n      // We'll wait for it to be ready before continuing\n      await this.waitReady\n    }\n  }\n\n  /**\n   * Execute a postgres wire protocol synchronously\n   * @param message The postgres wire protocol message to execute\n   * @returns The direct message data response produced by Postgres\n   */\n  execProtocolRawSync(message: Uint8Array) {\n    const mod = this.mod!\n\n    this.#readOffset = 0\n    this.#writeOffset = 0\n    this.#outputData = message\n\n    if (\n      this.#keepRawResponse &&\n      this.#inputData.length !== PGlite.DEFAULT_RECV_BUF_SIZE\n    ) {\n      // the previous call might have increased the size of the buffer so reset it to its default\n      this.#inputData = new Uint8Array(PGlite.DEFAULT_RECV_BUF_SIZE)\n    }\n\n    if (message[0] === 'X'.charCodeAt(0)) {\n      // ignore exit\n      return new Uint8Array(0)\n    }\n\n    if (message[0] === 0) {\n      // startup pass\n      const result = this.#processStartupPacket(message)\n      return result\n    }\n\n    // execute the message\n    try {\n      // a single message might contain multiple batched queries\n      // postgresMainLoopOnce returns after each one\n      while (\n        this.#readOffset < message.length ||\n        mod._pq_buffer_remaining_data() > 0\n      ) {\n        try {\n          mod._PostgresMainLoopOnce()\n        } catch (e: any) {\n          // we catch here only the \"known\" exceptions\n          if (e.status === this.POSTGRES_MAIN_LONGJMP) {\n            // this is the siglongjmp call that a Database exception has occured\n            // the original Postgres code makes a longjmp into main, handles the exception,\n            // then re-enters the processing loop\n            // to keep original code changes to a minimum, we extract the exception handling to a separate function\n            // that we call whenever the exception longjmp is executed\n            // like this we also just need to setjmp only once, in a similar fashion to the original code.\n            mod._PostgresMainLongJmp()\n          }\n          // even if there is an exception caused by one of the batched queries,\n          // we need to continue processing the rest without throwing.\n          // the first error will be saved in this.#currentDatabaseError\n          // and returned to the caller for handling\n        }\n      }\n    } finally {\n      mod._PostgresSendReadyForQueryIfNecessary()\n      mod._pgl_pq_flush()\n    }\n\n    this.#outputData = []\n\n    if (this.#keepRawResponse && this.#writeOffset) {\n      // reusing the buffer might lead to unexpected behavior if a previous query has a view into the buffer\n      // therefore, better return a copy of the response\n      return new Uint8Array(this.#inputData.subarray(0, this.#writeOffset))\n    }\n    return new Uint8Array(0)\n  }\n\n  /**\n   * Execute a postgres wire protocol message directly without wrapping the response.\n   * Only use if `execProtocol()` doesn't suite your needs.\n   *\n   * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages,\n   * transactions, and notification listeners. Only use if you need to bypass these wrappers and\n   * don't intend to use the above features.\n   *\n   * @param message The postgres wire protocol message to execute\n   * @returns The direct message data response produced by Postgres\n   */\n  async execProtocolRaw(\n    message: Uint8Array,\n    { syncToFs = true }: ExecProtocolOptions = {},\n  ) {\n    const data = this.execProtocolRawSync(message)\n    if (syncToFs) {\n      await this.syncToFs()\n    }\n    return data\n  }\n\n  /**\n   * Execute a postgres wire protocol message directly without wrapping the response.\n   * Only use if `execProtocol()` doesn't suite your needs.\n   *\n   * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages,\n   * transactions, and notification listeners. Only use if you need to bypass these wrappers and\n   * don't intend to use the above features.\n   *\n   * @param message The postgres wire protocol message to execute\n   * @param options.onRawData Callback to receive results as streaming data\n   */\n  async execProtocolRawStream(\n    message: Uint8Array,\n    { syncToFs = true, onRawData }: ExecProtocolOptionsStream,\n  ) {\n    this.#currentOnRawData = onRawData\n    this.execProtocolRawSync(message)\n    if (syncToFs) {\n      await this.syncToFs()\n    }\n  }\n\n  /**\n   * Execute a postgres wire protocol message\n   * @param message The postgres wire protocol message to execute\n   * @returns The result of the query\n   */\n  async execProtocol(\n    message: Uint8Array,\n    {\n      syncToFs = true,\n      throwOnError = true,\n      onNotice,\n    }: ExecProtocolOptions = {},\n  ): Promise<ExecProtocolResult> {\n    this.#currentThrowOnError = throwOnError\n    this.#currentOnNotice = onNotice\n    this.#currentResults = []\n    this.#currentDatabaseError = null\n\n    const data = await this.execProtocolRaw(message, { syncToFs })\n\n    const databaseError = this.#currentDatabaseError\n    this.#currentThrowOnError = false\n    this.#currentOnNotice = undefined\n    this.#currentDatabaseError = null\n    const result = { messages: this.#currentResults, data }\n    this.#currentResults = []\n\n    if (throwOnError && databaseError) {\n      this.#protocolParser = new ProtocolParser() // Reset the parser\n      throw databaseError\n    }\n\n    return result\n  }\n\n  /**\n   * Execute a postgres wire protocol message\n   * @param message The postgres wire protocol message to execute\n   * @returns The parsed results of the query\n   */\n  async execProtocolStream(\n    message: Uint8Array,\n    { syncToFs, throwOnError = true, onNotice }: ExecProtocolOptions = {},\n  ): Promise<BackendMessage[]> {\n    this.#currentThrowOnError = throwOnError\n    this.#currentOnNotice = onNotice\n    this.#currentResults = []\n    this.#currentDatabaseError = null\n\n    this.#keepRawResponse = false\n\n    await this.execProtocolRaw(message, { syncToFs })\n\n    this.#keepRawResponse = true\n\n    const databaseError = this.#currentDatabaseError\n    this.#currentThrowOnError = false\n    this.#currentOnNotice = undefined\n    this.#currentDatabaseError = null\n    const result = this.#currentResults\n    this.#currentResults = []\n\n    if (throwOnError && databaseError) {\n      this.#protocolParser = new ProtocolParser() // Reset the parser\n      throw databaseError\n    }\n\n    return result\n  }\n\n  #parse(msg: BackendMessage) {\n    // keep the existing logic of throwing the first db exception\n    // as soon as there is a db error, we're not interested in the remaining data\n    // but since the parser is plugged into the pglite_socket_write callback, we can't just throw\n    // and need to ack the messages received from the db\n    if (!this.#currentDatabaseError) {\n      if (msg instanceof DatabaseError) {\n        if (this.#currentThrowOnError) {\n          this.#currentDatabaseError = msg\n        }\n        // TODO: Do we want to wrap the error in a custom error?\n      } else if (msg instanceof NoticeMessage) {\n        if (this.debug > 0) {\n          // Notice messages are warnings, we should log them\n          console.warn(msg)\n        }\n        if (this.#currentOnNotice) {\n          this.#currentOnNotice(msg)\n        }\n      } else if (msg instanceof NotificationResponseMessage) {\n        // We've received a notification, call the listeners\n        const listeners = this.#notifyListeners.get(msg.channel)\n        if (listeners) {\n          listeners.forEach((cb) => {\n            // We use queueMicrotask so that the callback is called after any\n            // synchronous code has finished running.\n            queueMicrotask(() => cb(msg.payload))\n          })\n        }\n        this.#globalNotifyListeners.forEach((cb) => {\n          queueMicrotask(() => cb(msg.channel, msg.payload))\n        })\n      }\n      return msg\n    }\n    return null\n  }\n\n  /**\n   * Check if the database is in a transaction\n   * @returns True if the database is in a transaction, false otherwise\n   */\n  isInTransaction() {\n    const result = this.mod!._IsTransactionBlock()\n    return result !== 0\n  }\n\n  /**\n   * Perform any sync operations implemented by the filesystem, this is\n   * run after every query to ensure that the filesystem is synced.\n   */\n  async syncToFs() {\n    if (this.#fsSyncScheduled) {\n      return\n    }\n    this.#fsSyncScheduled = true\n\n    const doSync = async () => {\n      await this.#fsSyncMutex.runExclusive(async () => {\n        this.#fsSyncScheduled = false\n        await this.fs!.syncToFs(this.#relaxedDurability)\n      })\n    }\n\n    if (this.#relaxedDurability) {\n      doSync()\n    } else {\n      await doSync()\n    }\n  }\n\n  /**\n   * Internal log function\n   */\n  #log(...args: any[]) {\n    if (this.debug > 0) {\n      console.log(...args)\n    }\n  }\n\n  /**\n   * Listen for a notification\n   * @param channel The channel to listen on\n   * @param callback The callback to call when a notification is received\n   */\n  async listen(\n    channel: string,\n    callback: (payload: string) => void,\n    tx?: Transaction,\n  ) {\n    return this._runExclusiveListen(() => this.#listen(channel, callback, tx))\n  }\n\n  async #listen(\n    channel: string,\n    callback: (payload: string) => void,\n    tx?: Transaction,\n  ) {\n    const pgChannel = toPostgresName(channel)\n    const pg = tx ?? this\n    if (!this.#notifyListeners.has(pgChannel)) {\n      this.#notifyListeners.set(pgChannel, new Set())\n    }\n    this.#notifyListeners.get(pgChannel)!.add(callback)\n    try {\n      await pg.exec(`LISTEN ${channel}`)\n    } catch (e) {\n      this.#notifyListeners.get(pgChannel)!.delete(callback)\n      if (this.#notifyListeners.get(pgChannel)?.size === 0) {\n        this.#notifyListeners.delete(pgChannel)\n      }\n      throw e\n    }\n    return async (tx?: Transaction) => {\n      await this.unlisten(pgChannel, callback, tx)\n    }\n  }\n\n  /**\n   * Stop listening for a notification\n   * @param channel The channel to stop listening on\n   * @param callback The callback to remove\n   */\n  async unlisten(\n    channel: string,\n    callback?: (payload: string) => void,\n    tx?: Transaction,\n  ) {\n    return this._runExclusiveListen(() => this.#unlisten(channel, callback, tx))\n  }\n\n  async #unlisten(\n    channel: string,\n    callback?: (payload: string) => void,\n    tx?: Transaction,\n  ) {\n    const pgChannel = toPostgresName(channel)\n    const pg = tx ?? this\n    const cleanUp = async () => {\n      await pg.exec(`UNLISTEN ${channel}`)\n      // While that query was running, another query might have subscribed\n      // so we need to check again\n      if (this.#notifyListeners.get(pgChannel)?.size === 0) {\n        this.#notifyListeners.delete(pgChannel)\n      }\n    }\n    if (callback) {\n      this.#notifyListeners.get(pgChannel)?.delete(callback)\n      if (this.#notifyListeners.get(pgChannel)?.size === 0) {\n        await cleanUp()\n      }\n    } else {\n      await cleanUp()\n    }\n  }\n\n  /**\n   * Listen to notifications\n   * @param callback The callback to call when a notification is received\n   */\n  onNotification(\n    callback: (channel: string, payload: string) => void,\n  ): () => void {\n    this.#globalNotifyListeners.add(callback)\n    return () => {\n      this.#globalNotifyListeners.delete(callback)\n    }\n  }\n\n  /**\n   * Stop listening to notifications\n   * @param callback The callback to remove\n   */\n  offNotification(callback: (channel: string, payload: string) => void) {\n    this.#globalNotifyListeners.delete(callback)\n  }\n\n  /**\n   * Dump the PGDATA dir from the filesystem to a gzipped tarball.\n   * @param compression The compression options to use - 'gzip', 'auto', 'none'\n   * @returns The tarball as a File object where available, and fallback to a Blob\n   */\n  async dumpDataDir(\n    compression?: DumpTarCompressionOptions,\n  ): Promise<File | Blob> {\n    await this._checkReady()\n    const dbname = this.dataDir?.split('/').pop() ?? 'pgdata'\n    return this.fs!.dumpTar(dbname, compression)\n  }\n\n  /**\n   * Run a function in a mutex that's exclusive to queries\n   * @param fn The query to run\n   * @returns The result of the query\n   */\n  _runExclusiveQuery<T>(fn: () => Promise<T>): Promise<T> {\n    return this.#queryMutex.runExclusive(fn)\n  }\n\n  /**\n   * Run a function in a mutex that's exclusive to transactions\n   * @param fn The function to run\n   * @returns The result of the function\n   */\n  _runExclusiveTransaction<T>(fn: () => Promise<T>): Promise<T> {\n    const x = this.#transactionMutex.runExclusive(fn)\n    return x\n  }\n\n  async clone(): Promise<PGliteInterface> {\n    const dump = await this.dumpDataDir('none')\n    return PGlite.create({ loadDataDir: dump, extensions: this.#extensions })\n  }\n\n  _runExclusiveListen<T>(fn: () => Promise<T>): Promise<T> {\n    return this.#listenMutex.runExclusive(fn)\n  }\n\n  callMain(args: string[]): number {\n    return this.mod!.callMain(args)\n  }\n\n  #setPGliteActive(): void {\n    if (this.#running) {\n      throw new Error('PGlite single mode already running')\n    }\n\n    this.mod!._pgl_startPGlite()\n    this.#running = true\n  }\n\n  #startInSingleMode(opts: {\n    pgDataFolder: string\n    startParams: string[]\n  }): void {\n    const singleModeArgs = [\n      ...opts.startParams,\n      '-D',\n      opts.pgDataFolder,\n      this.mod!.ENV.PGDATABASE,\n    ]\n    const result = this.mod!.callMain(singleModeArgs)\n    if (result !== 99) {\n      throw new Error('PGlite failed to initialize properly')\n    }\n  }\n\n  #processStartupPacket(message: Uint8Array): Uint8Array {\n    this.#readOffset = 0\n    this.#writeOffset = 0\n    this.#outputData = message\n    const myProcPort = this.mod!._pgl_getMyProcPort()\n    const result = this.mod!._ProcessStartupPacket(myProcPort, true, true)\n    if (result !== 0) {\n      throw new Error(`Cannot process startup packet + ${message.toString()}`)\n    }\n\n    this.mod!._pgl_sendConnData()\n\n    this.mod!._pgl_pq_flush()\n    this.#outputData = []\n\n    if (this.#writeOffset) return this.#inputData.subarray(0, this.#writeOffset)\n    return new Uint8Array(0)\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/pgtap/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/pgtap.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const pgtap = {\n  name: 'pgtap',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/polyfills/blank.ts",
    "content": "// Used in tsup.config.ts to replace the `assert` module with a blank file.\n"
  },
  {
    "path": "packages/pglite/src/polyfills/indirectEval.ts",
    "content": "const indirectEval = (globalThis || window).eval\nexport { indirectEval as eval }\n"
  },
  {
    "path": "packages/pglite/src/postgresMod.ts",
    "content": "import PostgresModFactory from '../release/pglite'\n\ntype IDBFS = Emscripten.FileSystemType & {\n  quit: () => void\n  dbs: Record<string, IDBDatabase>\n}\n\nexport type FS = typeof FS & {\n  filesystems: {\n    MEMFS: Emscripten.FileSystemType\n    NODEFS: Emscripten.FileSystemType\n    IDBFS: IDBFS\n  }\n  quit: () => void\n}\n\nexport interface PostgresMod\n  extends Omit<EmscriptenModule, 'preInit' | 'preRun' | 'postRun'> {\n  preInit: Array<{ (mod: PostgresMod): void }>\n  preRun: Array<{ (mod: PostgresMod): void }>\n  postRun: Array<{ (mod: PostgresMod): void }>\n  thisProgram: string\n  stdin: (() => number | null) | null\n  FS: FS\n  PROXYFS: Emscripten.FileSystemType\n  WASM_PREFIX: string\n  pg_extensions: Record<string, Promise<Blob | null>>\n  UTF8ToString: (ptr: number, maxBytesToRead?: number) => string\n  stringToUTF8OnStack: (s: string) => number\n  _pgl_set_system_fn: (system_fn: number) => void\n  _pgl_set_popen_fn: (popen_fn: number) => void\n  _pgl_set_pclose_fn: (pclose_fn: number) => void\n  _pgl_set_rw_cbs: (read_cb: number, write_cb: number) => void\n  _pgl_set_pipe_fn: (pipe_fn: number) => number\n  _pgl_freopen: (filepath: number, mode: number, stream: number) => number\n  _pgl_pq_flush: () => void\n  _fopen: (path: number, mode: number) => number\n  _fclose: (stream: number) => number\n  _fflush: (stream: number) => void\n  _pgl_proc_exit: (code: number) => number\n  addFunction: (\n    cb: (ptr: any, length: number) => void,\n    signature: string,\n  ) => number\n  removeFunction: (f: number) => void\n  callMain: (args?: string[]) => number\n  _PostgresMainLoopOnce: () => void\n  _PostgresMainLongJmp: () => void\n  _PostgresSendReadyForQueryIfNecessary: () => void\n  _ProcessStartupPacket: (\n    Port: number,\n    ssl_done: boolean,\n    gss_done: boolean,\n  ) => number\n  // althought the C function returns bool, we receive in JS a number\n  _IsTransactionBlock: () => number\n  _pgl_setPGliteActive: (newValue: number) => number\n  _pgl_startPGlite: () => void\n  _pgl_getMyProcPort: () => number\n  _pgl_sendConnData: () => void\n  ENV: any\n  _emscripten_force_exit: (status: number) => void\n  _pgl_run_atexit_funcs: () => void\n  _pq_buffer_remaining_data: () => number\n}\n\ntype PostgresFactory<T extends PostgresMod = PostgresMod> = (\n  moduleOverrides?: Partial<T>,\n) => Promise<T>\n\nexport default PostgresModFactory as PostgresFactory<PostgresMod>\n"
  },
  {
    "path": "packages/pglite/src/templating.ts",
    "content": "const TemplateType = {\n  part: 'part',\n  container: 'container',\n} as const\n\ninterface TemplatePart {\n  _templateType: typeof TemplateType.part\n  str: string\n}\n\ninterface TemplateContainer {\n  _templateType: typeof TemplateType.container\n  strings: TemplateStringsArray\n  values: any[]\n}\n\ninterface TemplatedQuery {\n  query: string\n  params: any[]\n}\n\nfunction addToLastAndPushWithSuffix(\n  arr: string[],\n  suffix: string,\n  ...values: string[]\n) {\n  const lastArrIdx = arr.length - 1\n  const lastValIdx = values.length - 1\n\n  // no-op\n  if (lastValIdx === -1) return\n\n  // overwrite last element\n  if (lastValIdx === 0) {\n    arr[lastArrIdx] = arr[lastArrIdx] + values[0] + suffix\n    return\n  }\n\n  // sandwich values between array and suffix\n  arr[lastArrIdx] = arr[lastArrIdx] + values[0]\n  arr.push(...values.slice(1, lastValIdx))\n  arr.push(values[lastValIdx] + suffix)\n}\n\n/**\n * Templating utility that allows nesting multiple SQL strings without\n * losing the automatic parametrization capabilities of {@link query}.\n *\n * @example\n * ```ts\n * query`SELECT * FROM tale ${withFilter ? sql`WHERE foo = ${fooVar}` : sql``}`\n * // > { query: 'SELECT * FROM tale WHERE foo = $1', params: [fooVar] }\n * // or\n * // > { query: 'SELECT * FROM tale', params: [] }\n * ```\n */\nexport function sql(\n  strings: TemplateStringsArray,\n  ...values: any[]\n): TemplateContainer {\n  const parsedStrings = [strings[0]] as string[] & {\n    raw: string[]\n  }\n  parsedStrings.raw = [strings.raw[0]]\n\n  const parsedValues: any[] = []\n  for (let i = 0; i < values.length; i++) {\n    const value = values[i]\n    const nextStringIdx = i + 1\n\n    // if value is a template tag, collapse into last string\n    if (value?._templateType === TemplateType.part) {\n      addToLastAndPushWithSuffix(\n        parsedStrings,\n        strings[nextStringIdx],\n        value.str,\n      )\n      addToLastAndPushWithSuffix(\n        parsedStrings.raw,\n        strings.raw[nextStringIdx],\n        value.str,\n      )\n      continue\n    }\n\n    // if value is an output of this method, append in place\n    if (value?._templateType === TemplateType.container) {\n      addToLastAndPushWithSuffix(\n        parsedStrings,\n        strings[nextStringIdx],\n        ...value.strings,\n      )\n      addToLastAndPushWithSuffix(\n        parsedStrings.raw,\n        strings.raw[nextStringIdx],\n        ...value.strings.raw,\n      )\n      parsedValues.push(...value.values)\n      continue\n    }\n\n    // otherwise keep reconstructing\n    parsedStrings.push(strings[nextStringIdx])\n    parsedStrings.raw.push(strings.raw[nextStringIdx])\n    parsedValues.push(value)\n  }\n\n  return {\n    _templateType: 'container',\n    strings: parsedStrings,\n    values: parsedValues,\n  }\n}\n\n/**\n * Allows adding identifiers into a query template string without\n * parametrizing them. This method will automatically escape identifiers.\n *\n * @example\n * ```ts\n * query`SELECT * FROM ${identifier`foo`} WHERE ${identifier`id`} = ${id}`\n * // > { query: 'SELECT * FROM \"foo\" WHERE \"id\" = $1', params: [id] }\n * ```\n */\nexport function identifier(\n  strings: TemplateStringsArray,\n  ...values: any[]\n): TemplatePart {\n  return {\n    _templateType: 'part',\n    str: `\"${String.raw(strings, ...values)}\"`,\n  }\n}\n\n/**\n * Allows adding raw strings into a query template string without\n * parametrizing or modifying them in any way.\n *\n * @example\n * ```ts\n * query`SELECT * FROM foo ${raw`WHERE id = ${2+3}`}`\n * // > { query: 'SELECT * FROM foo WHERE id = 5', params: [] }\n * ```\n */\n\nexport function raw(\n  strings: TemplateStringsArray,\n  ...values: any[]\n): TemplatePart {\n  return {\n    _templateType: 'part',\n    str: String.raw(strings, ...values),\n  }\n}\n\n/**\n * Generates a parametrized query from a templated query string, assigning\n * the provided values to the appropriate named parameters.\n *\n * You can use templating helpers like {@link identifier} and {@link raw} to\n * add identifiers and raw strings to the query without making them parameters,\n * and you can use {@link sql} to nest multiple queries and create utilities.\n *\n * @example\n * ```ts\n * query`SELECT * FROM ${identifier`foo`} WHERE id = ${id} and name = ${name}`\n * // > { query: 'SELECT * FROM \"foo\" WHERE id = $1 and name = $2', params: [id, name] }\n * ```\n */\nexport function query(\n  strings: TemplateStringsArray,\n  ...values: any[]\n): TemplatedQuery {\n  const { strings: queryStringParts, values: params } = sql(strings, ...values)\n  return {\n    query: [\n      queryStringParts[0],\n      ...params.flatMap((_, idx) => [`$${idx + 1}`, queryStringParts[idx + 1]]),\n    ].join(''),\n    params: params,\n  }\n}\n"
  },
  {
    "path": "packages/pglite/src/types.ts",
    "content": "/*\nBased on postgres.js types.js\nhttps://github.com/porsager/postgres/blob/master/src/types.js\nPublished under the Unlicense:\nhttps://github.com/porsager/postgres/blob/master/UNLICENSE \n*/\n\nimport type { ParserOptions } from './interface.js'\n\nconst JSON_parse = globalThis.JSON.parse\nconst JSON_stringify = globalThis.JSON.stringify\n\nexport const BOOL = 16,\n  BYTEA = 17,\n  CHAR = 18,\n  INT8 = 20,\n  INT2 = 21,\n  INT4 = 23,\n  REGPROC = 24,\n  TEXT = 25,\n  OID = 26,\n  TID = 27,\n  XID = 28,\n  CID = 29,\n  JSON = 114,\n  XML = 142,\n  PG_NODE_TREE = 194,\n  SMGR = 210,\n  PATH = 602,\n  POLYGON = 604,\n  CIDR = 650,\n  FLOAT4 = 700,\n  FLOAT8 = 701,\n  ABSTIME = 702,\n  RELTIME = 703,\n  TINTERVAL = 704,\n  CIRCLE = 718,\n  MACADDR8 = 774,\n  MONEY = 790,\n  MACADDR = 829,\n  INET = 869,\n  ACLITEM = 1033,\n  BPCHAR = 1042,\n  VARCHAR = 1043,\n  DATE = 1082,\n  TIME = 1083,\n  TIMESTAMP = 1114,\n  TIMESTAMPTZ = 1184,\n  INTERVAL = 1186,\n  TIMETZ = 1266,\n  BIT = 1560,\n  VARBIT = 1562,\n  NUMERIC = 1700,\n  REFCURSOR = 1790,\n  REGPROCEDURE = 2202,\n  REGOPER = 2203,\n  REGOPERATOR = 2204,\n  REGCLASS = 2205,\n  REGTYPE = 2206,\n  UUID = 2950,\n  TXID_SNAPSHOT = 2970,\n  PG_LSN = 3220,\n  PG_NDISTINCT = 3361,\n  PG_DEPENDENCIES = 3402,\n  TSVECTOR = 3614,\n  TSQUERY = 3615,\n  GTSVECTOR = 3642,\n  REGCONFIG = 3734,\n  REGDICTIONARY = 3769,\n  JSONB = 3802,\n  REGNAMESPACE = 4089,\n  REGROLE = 4096\n\nexport const types = {\n  string: {\n    to: TEXT,\n    from: [TEXT, VARCHAR, BPCHAR],\n    serialize: (x: string | number) => {\n      if (typeof x === 'string') {\n        return x\n      } else if (typeof x === 'number') {\n        return x.toString()\n      } else {\n        throw new Error('Invalid input for string type')\n      }\n    },\n    parse: (x: string) => x,\n  },\n  number: {\n    to: 0,\n    from: [INT2, INT4, OID, FLOAT4, FLOAT8],\n    serialize: (x: number) => x.toString(),\n    parse: (x: string) => +x,\n  },\n  bigint: {\n    to: INT8,\n    from: [INT8],\n    serialize: (x: bigint) => x.toString(),\n    parse: (x: string) => {\n      const n = BigInt(x)\n      if (n < Number.MIN_SAFE_INTEGER || n > Number.MAX_SAFE_INTEGER) {\n        return n // return BigInt\n      } else {\n        return Number(n) // in range of standard JS numbers so return number\n      }\n    },\n  },\n  json: {\n    to: JSON,\n    from: [JSON, JSONB],\n    serialize: (x: any) => {\n      if (typeof x === 'string') {\n        return x\n      } else {\n        return JSON_stringify(x)\n      }\n    },\n    parse: (x: string) => JSON_parse(x),\n  },\n  boolean: {\n    to: BOOL,\n    from: [BOOL],\n    serialize: (x: boolean) => {\n      if (typeof x !== 'boolean') {\n        throw new Error('Invalid input for boolean type')\n      }\n      return x ? 't' : 'f'\n    },\n    parse: (x: string) => x === 't',\n  },\n  date: {\n    to: TIMESTAMPTZ,\n    from: [DATE, TIMESTAMP, TIMESTAMPTZ],\n    serialize: (x: Date | string | number) => {\n      if (typeof x === 'string') {\n        return x\n      } else if (typeof x === 'number') {\n        return new Date(x).toISOString()\n      } else if (x instanceof Date) {\n        return x.toISOString()\n      } else {\n        throw new Error('Invalid input for date type')\n      }\n    },\n    parse: (x: string | number) => new Date(x),\n  },\n  bytea: {\n    to: BYTEA,\n    from: [BYTEA],\n    serialize: (x: Uint8Array) => {\n      if (!(x instanceof Uint8Array)) {\n        throw new Error('Invalid input for bytea type')\n      }\n      return (\n        '\\\\x' +\n        Array.from(x)\n          .map((byte) => byte.toString(16).padStart(2, '0'))\n          .join('')\n      )\n    },\n    parse: (x: string): Uint8Array => {\n      const hexString = x.slice(2)\n      return Uint8Array.from({ length: hexString.length / 2 }, (_, idx) =>\n        parseInt(hexString.substring(idx * 2, (idx + 1) * 2), 16),\n      )\n    },\n  },\n} satisfies TypeHandlers\n\nexport type Parser = (x: string, typeId?: number) => any\nexport type Serializer = (x: any) => string\n\nexport type TypeHandler = {\n  to: number\n  from: number | number[]\n  serialize: Serializer\n  parse: Parser\n}\n\nexport type TypeHandlers = {\n  [key: string]: TypeHandler\n}\n\nconst defaultHandlers = typeHandlers(types)\n\nexport const parsers = defaultHandlers.parsers\nexport const serializers = defaultHandlers.serializers\n\nexport function parseType(\n  x: string | null,\n  type: number,\n  parsers?: ParserOptions,\n): any {\n  if (x === null) {\n    return null\n  }\n  const handler = parsers?.[type] ?? defaultHandlers.parsers[type]\n  if (handler) {\n    return handler(x, type)\n  } else {\n    return x\n  }\n}\n\nfunction typeHandlers(types: TypeHandlers) {\n  return Object.keys(types).reduce(\n    ({ parsers, serializers }, k) => {\n      const { to, from, serialize, parse } = types[k]\n      serializers[to] = serialize\n      serializers[k] = serialize\n      parsers[k] = parse\n      if (Array.isArray(from)) {\n        from.forEach((f) => {\n          parsers[f] = parse\n          serializers[f] = serialize\n        })\n      } else {\n        parsers[from] = parse\n        serializers[from] = serialize\n      }\n      return { parsers, serializers }\n    },\n    {\n      parsers: {} as {\n        [key: number | string]: (x: string, typeId?: number) => any\n      },\n      serializers: {} as {\n        [key: number | string]: Serializer\n      },\n    },\n  )\n}\n\nconst escapeBackslash = /\\\\/g\nconst escapeQuote = /\"/g\n\nfunction arrayEscape(x: string) {\n  return x.replace(escapeBackslash, '\\\\\\\\').replace(escapeQuote, '\\\\\"')\n}\n\nexport function arraySerializer(\n  xs: any,\n  serializer: Serializer | undefined,\n  typarray: number,\n): string {\n  if (Array.isArray(xs) === false) return xs\n\n  if (!xs.length) return '{}'\n\n  const first = xs[0]\n  // Only _box (1020) has the ';' delimiter for arrays, all other types use the ',' delimiter\n  const delimiter = typarray === 1020 ? ';' : ','\n\n  if (Array.isArray(first)) {\n    return `{${xs.map((x) => arraySerializer(x, serializer, typarray)).join(delimiter)}}`\n  } else {\n    return `{${xs\n      .map((x) => {\n        if (x === undefined) {\n          x = null\n          // TODO: Add an option to specify how to handle undefined values\n        }\n        return x === null\n          ? 'null'\n          : '\"' + arrayEscape(serializer ? serializer(x) : x.toString()) + '\"'\n      })\n      .join(delimiter)}}`\n  }\n}\n\nconst arrayParserState = {\n  i: 0,\n  char: null as string | null,\n  str: '',\n  quoted: false,\n  last: 0,\n  p: null as string | null,\n}\n\nexport function arrayParser(x: string, parser: Parser, typarray: number) {\n  arrayParserState.i = arrayParserState.last = 0\n  return arrayParserLoop(arrayParserState, x, parser, typarray)[0]\n}\n\nfunction arrayParserLoop(\n  s: typeof arrayParserState,\n  x: string,\n  parser: Parser | undefined,\n  typarray: number,\n): any[] {\n  const xs = []\n  // Only _box (1020) has the ';' delimiter for arrays, all other types use the ',' delimiter\n  const delimiter = typarray === 1020 ? ';' : ','\n  for (; s.i < x.length; s.i++) {\n    s.char = x[s.i]\n    if (s.quoted) {\n      if (s.char === '\\\\') {\n        s.str += x[++s.i]\n      } else if (s.char === '\"') {\n        xs.push(parser ? parser(s.str) : s.str)\n        s.str = ''\n        s.quoted = x[s.i + 1] === '\"'\n        s.last = s.i + 2\n      } else {\n        s.str += s.char\n      }\n    } else if (s.char === '\"') {\n      s.quoted = true\n    } else if (s.char === '{') {\n      s.last = ++s.i\n      xs.push(arrayParserLoop(s, x, parser, typarray))\n    } else if (s.char === '}') {\n      s.quoted = false\n      s.last < s.i &&\n        xs.push(parser ? parser(x.slice(s.last, s.i)) : x.slice(s.last, s.i))\n      s.last = s.i + 1\n      break\n    } else if (s.char === delimiter && s.p !== '}' && s.p !== '\"') {\n      xs.push(parser ? parser(x.slice(s.last, s.i)) : x.slice(s.last, s.i))\n      s.last = s.i + 1\n    }\n    s.p = s.char\n  }\n  s.last < s.i &&\n    xs.push(\n      parser ? parser(x.slice(s.last, s.i + 1)) : x.slice(s.last, s.i + 1),\n    )\n  return xs\n}\n"
  },
  {
    "path": "packages/pglite/src/utils.ts",
    "content": "import type { PGliteInterface, Transaction } from './interface.js'\nimport { serialize as serializeProtocol } from '@electric-sql/pg-protocol'\nimport { parseDescribeStatementResults } from './parse.js'\nimport { TEXT } from './types.js'\n\nexport const IN_NODE =\n  typeof process === 'object' &&\n  typeof process.versions === 'object' &&\n  typeof process.versions.node === 'string'\n\nlet wasmDownloadPromise: Promise<Response> | undefined\n\nexport async function startWasmDownload() {\n  if (IN_NODE || wasmDownloadPromise) {\n    return\n  }\n  const moduleUrl = new URL('../release/pglite.wasm', import.meta.url)\n  wasmDownloadPromise = fetch(moduleUrl)\n}\n\n// This is a global cache of the PGlite Wasm module to avoid having to re-download or\n// compile it on subsequent calls.\nlet cachedWasmModule: WebAssembly.Module | undefined\n\nexport async function instantiateWasm(\n  imports: WebAssembly.Imports,\n  module?: WebAssembly.Module,\n): Promise<{\n  instance: WebAssembly.Instance\n  module: WebAssembly.Module\n}> {\n  if (module || cachedWasmModule) {\n    return {\n      instance: await WebAssembly.instantiate(\n        module || cachedWasmModule!,\n        imports,\n      ),\n      module: module || cachedWasmModule!,\n    }\n  }\n  const moduleUrl = new URL('../release/pglite.wasm', import.meta.url)\n  if (IN_NODE) {\n    const fs = await import('fs/promises')\n    const buffer = await fs.readFile(moduleUrl)\n    const { module: newModule, instance } = await WebAssembly.instantiate(\n      buffer,\n      imports,\n    )\n    cachedWasmModule = newModule\n    return {\n      instance,\n      module: newModule,\n    }\n  } else {\n    if (!wasmDownloadPromise) {\n      wasmDownloadPromise = fetch(moduleUrl)\n    }\n    const response = await wasmDownloadPromise\n    const { module: newModule, instance } =\n      await WebAssembly.instantiateStreaming(response, imports)\n    cachedWasmModule = newModule\n    return {\n      instance,\n      module: newModule,\n    }\n  }\n}\n\nexport async function getFsBundle(): Promise<ArrayBuffer> {\n  const fsBundleUrl = new URL('../release/pglite.data', import.meta.url)\n  if (IN_NODE) {\n    const fs = await import('fs/promises')\n    const fileData = await fs.readFile(fsBundleUrl)\n    return fileData.buffer\n  } else {\n    const response = await fetch(fsBundleUrl)\n    return response.arrayBuffer()\n  }\n}\n\nexport const uuid = (): string => {\n  // best case, `crypto.randomUUID` is available\n  if (globalThis.crypto?.randomUUID) {\n    return globalThis.crypto.randomUUID()\n  }\n\n  const bytes = new Uint8Array(16)\n\n  if (globalThis.crypto?.getRandomValues) {\n    // `crypto.getRandomValues` is available even in non-secure contexts\n    globalThis.crypto.getRandomValues(bytes)\n  } else {\n    // fallback to Math.random, if the Crypto API is completely missing\n    for (let i = 0; i < bytes.length; i++) {\n      bytes[i] = Math.floor(Math.random() * 256)\n    }\n  }\n\n  bytes[6] = (bytes[6] & 0x0f) | 0x40 // Set the 4 most significant bits to 0100\n  bytes[8] = (bytes[8] & 0x3f) | 0x80 // Set the 2 most significant bits to 10\n\n  const hexValues: string[] = []\n  bytes.forEach((byte) => {\n    hexValues.push(byte.toString(16).padStart(2, '0'))\n  })\n\n  return (\n    hexValues.slice(0, 4).join('') +\n    '-' +\n    hexValues.slice(4, 6).join('') +\n    '-' +\n    hexValues.slice(6, 8).join('') +\n    '-' +\n    hexValues.slice(8, 10).join('') +\n    '-' +\n    hexValues.slice(10).join('')\n  )\n}\n\n/**\n * Formats a query with parameters\n * Expects that any tables/relations referenced in the query exist in the database\n * due to requiring them to be present to describe the parameters types.\n * `tx` is optional, and to be used when formatQuery is called during a transaction.\n * @param pg - The PGlite instance\n * @param query - The query to format\n * @param params - The parameters to format the query with\n * @param tx - The transaction to use, defaults to the PGlite instance\n * @returns The formatted query\n */\nexport async function formatQuery(\n  pg: PGliteInterface,\n  query: string,\n  params?: any[] | null,\n  tx?: Transaction | PGliteInterface,\n) {\n  if (!params || params.length === 0) {\n    // no params so no formatting needed\n    return query\n  }\n\n  tx = tx ?? pg\n\n  // Get the types of the parameters\n  const messages = []\n  try {\n    await pg.execProtocol(serializeProtocol.parse({ text: query }), {\n      syncToFs: false,\n    })\n\n    messages.push(\n      ...(\n        await pg.execProtocol(serializeProtocol.describe({ type: 'S' }), {\n          syncToFs: false,\n        })\n      ).messages,\n    )\n  } finally {\n    messages.push(\n      ...(await pg.execProtocol(serializeProtocol.sync(), { syncToFs: false }))\n        .messages,\n    )\n  }\n\n  const dataTypeIDs = parseDescribeStatementResults(messages)\n\n  // replace $1, $2, etc with  %1L, %2L, etc\n  const subbedQuery = query.replace(/\\$([0-9]+)/g, (_, num) => {\n    return '%' + num + 'L'\n  })\n\n  const ret = await tx.query<{\n    query: string\n  }>(\n    `SELECT format($1, ${params.map((_, i) => `$${i + 2}`).join(', ')}) as query`,\n    [subbedQuery, ...params],\n    { paramTypes: [TEXT, ...dataTypeIDs] },\n  )\n  return ret.rows[0].query\n}\n\n/**\n * Debounce a function to ensure that only one instance of the function is running at\n * a time.\n * - If the function is called while an instance is already running, the new\n * call is scheduled to run after the current instance completes.\n * - If there is already a scheduled call, it is replaced with the new call.\n * @param fn - The function to debounce\n * @returns A debounced version of the function\n */\nexport function debounceMutex<A extends any[], R>(\n  fn: (...args: A) => Promise<R>,\n): (...args: A) => Promise<R | void> {\n  let next:\n    | {\n        args: A\n        resolve: (value: R | void) => void\n        reject: (reason?: any) => void\n      }\n    | undefined = undefined\n\n  let isRunning = false\n  const processNext = async () => {\n    if (!next) {\n      isRunning = false\n      return\n    }\n    isRunning = true\n    const { args, resolve, reject } = next\n    next = undefined\n    try {\n      const ret = await fn(...args)\n      resolve(ret)\n    } catch (e) {\n      reject(e)\n    } finally {\n      processNext()\n    }\n  }\n  return async (...args: A) => {\n    if (next) {\n      next.resolve(undefined)\n    }\n    const promise = new Promise<R | void>((resolve, reject) => {\n      next = { args, resolve, reject }\n    })\n    if (!isRunning) {\n      processNext()\n    }\n    return promise\n  }\n}\n\n/**\n * Postgresql handles quoted names as CaseSensitive and unquoted as lower case.\n * If input is quoted, returns an unquoted string (same casing)\n * If input is unquoted, returns a lower-case string\n */\nexport function toPostgresName(input: string): string {\n  let output\n  if (input.startsWith('\"') && input.endsWith('\"')) {\n    // Postgres sensitive case\n    output = input.substring(1, input.length - 1)\n  } else {\n    // Postgres case insensitive - all to lower\n    output = input.toLowerCase()\n  }\n  return output\n}\n"
  },
  {
    "path": "packages/pglite/src/vector/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '../interface'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../../release/vector.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const vector = {\n  name: 'pgvector',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite/src/worker/index.ts",
    "content": "import type {\n  DebugLevel,\n  ExecProtocolResult,\n  Extensions,\n  PGliteInterface,\n  PGliteInterfaceExtensions,\n  PGliteOptions,\n  Transaction,\n} from '../interface.js'\nimport type { PGlite } from '../pglite.js'\nimport { BasePGlite } from '../base.js'\nimport { toPostgresName, uuid } from '../utils.js'\nimport { DumpTarCompressionOptions } from '../fs/tarUtils.js'\nimport { BackendMessage } from '@electric-sql/pg-protocol/messages'\n\nexport type PGliteWorkerOptions<E extends Extensions = Extensions> =\n  PGliteOptions<E> & {\n    meta?: any\n    id?: string\n  }\n\nexport class PGliteWorker\n  extends BasePGlite\n  implements PGliteInterface, AsyncDisposable\n{\n  #initPromise: Promise<void>\n  #debug: DebugLevel = 0\n\n  #ready = false\n  #closed = false\n  #isLeader = false\n\n  #eventTarget = new EventTarget()\n\n  #tabId: string\n\n  #connected = false\n\n  #workerProcess: Worker\n  #workerID?: string\n  #workerHerePromise?: Promise<void>\n  #workerReadyPromise?: Promise<void>\n\n  #broadcastChannel?: BroadcastChannel\n  #tabChannel?: BroadcastChannel\n  #releaseTabCloseLock?: () => void\n\n  #notifyListeners = new Map<string, Set<(payload: string) => void>>()\n  #globalNotifyListeners = new Set<(channel: string, payload: string) => void>()\n\n  #extensions: Extensions\n  #extensionsClose: Array<() => Promise<void>> = []\n\n  constructor(worker: Worker, options?: PGliteWorkerOptions) {\n    super()\n    this.#workerProcess = worker\n    this.#tabId = uuid()\n    this.#extensions = options?.extensions ?? {}\n\n    this.#workerHerePromise = new Promise<void>((resolve) => {\n      this.#workerProcess.addEventListener(\n        'message',\n        (event) => {\n          if (event.data.type === 'here') {\n            resolve()\n          } else {\n            throw new Error('Invalid message')\n          }\n        },\n        { once: true },\n      )\n    })\n\n    this.#workerReadyPromise = new Promise<void>((resolve) => {\n      const callback = (event: MessageEvent<any>) => {\n        if (event.data.type === 'ready') {\n          this.#workerID = event.data.id\n          this.#workerProcess.removeEventListener('message', callback)\n          resolve()\n        }\n      }\n      this.#workerProcess.addEventListener('message', callback)\n    })\n\n    this.#initPromise = this.#init(options)\n  }\n\n  /**\n   * Create a new PGlite instance with extensions on the Typescript interface\n   * This also awaits the instance to be ready before resolving\n   * (The main constructor does enable extensions, however due to the limitations\n   * of Typescript, the extensions are not available on the instance interface)\n   * @param worker The worker to use\n   * @param options Optional options\n   * @returns A promise that resolves to the PGlite instance when it's ready.\n   */\n  static async create<O extends PGliteWorkerOptions>(\n    worker: Worker,\n    options?: O,\n  ): Promise<PGliteWorker & PGliteInterfaceExtensions<O['extensions']>> {\n    const pg = new PGliteWorker(worker, options)\n    await pg.#initPromise\n    return pg as PGliteWorker & PGliteInterfaceExtensions<O['extensions']>\n  }\n\n  async #init(options: PGliteWorkerOptions = {}) {\n    // Setup the extensions\n    for (const [extName, ext] of Object.entries(this.#extensions)) {\n      if (ext instanceof URL) {\n        throw new Error(\n          'URL extensions are not supported on the client side of a worker',\n        )\n      } else {\n        const extRet = await ext.setup(this, {}, true)\n        if (extRet.emscriptenOpts) {\n          console.warn(\n            `PGlite extension ${extName} returned emscriptenOpts, these are not supported on the client side of a worker`,\n          )\n        }\n        if (extRet.namespaceObj) {\n          const instance = this as any\n          instance[extName] = extRet.namespaceObj\n        }\n        if (extRet.bundlePath) {\n          console.warn(\n            `PGlite extension ${extName} returned bundlePath, this is not supported on the client side of a worker`,\n          )\n        }\n        if (extRet.init) {\n          await extRet.init()\n        }\n        if (extRet.close) {\n          this.#extensionsClose.push(extRet.close)\n        }\n      }\n    }\n\n    // Wait for the worker let us know it's here\n    await this.#workerHerePromise\n\n    // Send the worker the options\n    const { extensions: _, ...workerOptions } = options\n    this.#workerProcess.postMessage({\n      type: 'init',\n      options: workerOptions,\n    })\n\n    // Wait for the worker let us know it's ready\n    await this.#workerReadyPromise\n\n    // Acquire the tab close lock, this is released then the tab, or this\n    // PGliteWorker instance, is closed\n    const tabCloseLockId = `pglite-tab-close:${this.#tabId}`\n    this.#releaseTabCloseLock = await acquireLock(tabCloseLockId)\n\n    // Start the broadcast channel used to communicate with tabs and leader election\n    const broadcastChannelId = `pglite-broadcast:${this.#workerID}`\n    this.#broadcastChannel = new BroadcastChannel(broadcastChannelId)\n\n    // Start the tab channel used to communicate with the leader directly\n    const tabChannelId = `pglite-tab:${this.#tabId}`\n    this.#tabChannel = new BroadcastChannel(tabChannelId)\n\n    this.#broadcastChannel.addEventListener('message', async (event) => {\n      if (event.data.type === 'leader-here') {\n        this.#connected = false\n        this.#eventTarget.dispatchEvent(new Event('leader-change'))\n        this.#leaderNotifyLoop()\n      } else if (event.data.type === 'notify') {\n        this.#receiveNotification(event.data.channel, event.data.payload)\n      }\n    })\n\n    this.#tabChannel.addEventListener('message', async (event) => {\n      if (event.data.type === 'connected') {\n        this.#connected = true\n        this.#eventTarget.dispatchEvent(new Event('connected'))\n        this.#debug = await this.#rpc('getDebugLevel')\n        this.#ready = true\n      }\n    })\n\n    this.#workerProcess.addEventListener('message', async (event) => {\n      if (event.data.type === 'leader-now') {\n        this.#isLeader = true\n        this.#eventTarget.dispatchEvent(new Event('leader-change'))\n      }\n    })\n\n    this.#leaderNotifyLoop()\n\n    // Init array types\n    // We don't await this as it will result in a deadlock\n    // It immediately takes out the transaction lock as so another query\n    this._initArrayTypes()\n  }\n\n  async #leaderNotifyLoop() {\n    if (!this.#connected) {\n      this.#broadcastChannel!.postMessage({\n        type: 'tab-here',\n        id: this.#tabId,\n      })\n      setTimeout(() => this.#leaderNotifyLoop(), 16)\n    }\n  }\n\n  async #rpc<Method extends WorkerRpcMethod>(\n    method: Method,\n    ...args: Parameters<WorkerApi[Method]>\n  ): Promise<ReturnType<WorkerApi[Method]>> {\n    const callId = uuid()\n    const message: WorkerRpcCall<Method> = {\n      type: 'rpc-call',\n      callId,\n      method,\n      args,\n    }\n    this.#tabChannel!.postMessage(message)\n    return await new Promise<ReturnType<WorkerApi[Method]>>(\n      (resolve, reject) => {\n        const listener = (event: MessageEvent) => {\n          if (event.data.callId !== callId) return\n          cleanup()\n          const message: WorkerRpcResponse<Method> = event.data\n          if (message.type === 'rpc-return') {\n            resolve(message.result)\n          } else if (message.type === 'rpc-error') {\n            const error = new Error(message.error.message)\n            Object.assign(error, message.error)\n            reject(error)\n          } else {\n            reject(new Error('Invalid message'))\n          }\n        }\n        const leaderChangeListener = () => {\n          // If the leader changes, throw an error to reject the promise\n          cleanup()\n          reject(new LeaderChangedError())\n        }\n        const cleanup = () => {\n          this.#tabChannel!.removeEventListener('message', listener)\n          this.#eventTarget.removeEventListener(\n            'leader-change',\n            leaderChangeListener,\n          )\n        }\n        this.#eventTarget.addEventListener(\n          'leader-change',\n          leaderChangeListener,\n        )\n        this.#tabChannel!.addEventListener('message', listener)\n      },\n    )\n  }\n\n  get waitReady() {\n    return new Promise<void>((resolve) => {\n      this.#initPromise.then(() => {\n        if (!this.#connected) {\n          resolve(\n            new Promise<void>((resolve) => {\n              this.#eventTarget.addEventListener('connected', () => {\n                resolve()\n              })\n            }),\n          )\n        } else {\n          resolve()\n        }\n      })\n    })\n  }\n\n  get debug() {\n    return this.#debug\n  }\n\n  /**\n   * The ready state of the database\n   */\n  get ready() {\n    return this.#ready\n  }\n\n  /**\n   * The closed state of the database\n   */\n  get closed() {\n    return this.#closed\n  }\n\n  /**\n   * The leader state of this tab\n   */\n  get isLeader() {\n    return this.#isLeader\n  }\n\n  /**\n   * Close the database\n   * @returns Promise that resolves when the connection to shared PGlite is closed\n   */\n  async close() {\n    if (this.#closed) {\n      return\n    }\n    this.#closed = true\n    this.#broadcastChannel?.close()\n    this.#tabChannel?.close()\n    this.#releaseTabCloseLock?.()\n    this.#workerProcess.terminate()\n  }\n\n  /**\n   * Close the database when the object exits scope\n   * Stage 3 ECMAScript Explicit Resource Management\n   * https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management\n   */\n  async [Symbol.asyncDispose]() {\n    await this.close()\n  }\n\n  /**\n   * Execute a postgres wire protocol message directly without wrapping the response.\n   * Only use if `execProtocol()` doesn't suite your needs.\n   *\n   * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages,\n   * transactions, and notification listeners. Only use if you need to bypass these wrappers and\n   * don't intend to use the above features.\n   *\n   * @param message The postgres wire protocol message to execute\n   * @returns The direct message data response produced by Postgres\n   */\n  async execProtocolRaw(message: Uint8Array): Promise<Uint8Array> {\n    return (await this.#rpc('execProtocolRaw', message)) as Uint8Array\n  }\n\n  /**\n   * Execute a postgres wire protocol message\n   * @param message The postgres wire protocol message to execute\n   * @returns The result of the query\n   */\n  async execProtocol(message: Uint8Array): Promise<ExecProtocolResult> {\n    return await this.#rpc('execProtocol', message)\n  }\n\n  /**\n   * Execute a postgres wire protocol message\n   * @param message The postgres wire protocol message to execute\n   * @returns The result of the query\n   */\n  async execProtocolStream(message: Uint8Array): Promise<BackendMessage[]> {\n    return await this.#rpc('execProtocolStream', message)\n  }\n\n  /**\n   * Execute a postgres wire protocol message directly without wrapping the response.\n   * Only use if `execProtocol()` doesn't suite your needs.\n   *\n   * **Warning:** This bypasses PGlite's protocol wrappers that manage error/notice messages,\n   * transactions, and notification listeners. Only use if you need to bypass these wrappers and\n   * don't intend to use the above features.\n   *\n   * @param message The postgres wire protocol message to execute\n   * @returns The direct message data response produced by Postgres\n   */\n  async execProtocolRawStream(\n    message: Uint8Array,\n    options: { onRawData: (data: Uint8Array) => void },\n  ): Promise<void> {\n    await this.#rpc('execProtocolRawStream', message, options)\n  }\n\n  /**\n   * Sync the database to the filesystem\n   * @returns Promise that resolves when the database is synced to the filesystem\n   */\n  async syncToFs() {\n    await this.#rpc('syncToFs')\n  }\n\n  /**\n   * Listen for a notification\n   * @param channel The channel to listen on\n   * @param callback The callback to call when a notification is received\n   */\n  async listen(\n    channel: string,\n    callback: (payload: string) => void,\n    tx?: Transaction,\n  ): Promise<() => Promise<void>> {\n    const pgChannel = toPostgresName(channel)\n    const pg = tx ?? this\n    if (!this.#notifyListeners.has(pgChannel)) {\n      this.#notifyListeners.set(pgChannel, new Set())\n    }\n    this.#notifyListeners.get(pgChannel)!.add(callback)\n    await pg.exec(`LISTEN ${channel}`)\n    return async (tx?: Transaction) => {\n      await this.unlisten(pgChannel, callback, tx)\n    }\n  }\n\n  /**\n   * Stop listening for a notification\n   * @param channel The channel to stop listening on\n   * @param callback The callback to remove\n   */\n  async unlisten(\n    channel: string,\n    callback?: (payload: string) => void,\n    tx?: Transaction,\n  ): Promise<void> {\n    await this.waitReady\n    const pg = tx ?? this\n    if (callback) {\n      this.#notifyListeners.get(channel)?.delete(callback)\n    } else {\n      this.#notifyListeners.delete(channel)\n    }\n    if (this.#notifyListeners.get(channel)?.size === 0) {\n      // As we currently have a dedicated worker we can just unlisten\n      await pg.exec(`UNLISTEN ${channel}`)\n    }\n  }\n\n  /**\n   * Listen to notifications\n   * @param callback The callback to call when a notification is received\n   */\n  onNotification(callback: (channel: string, payload: string) => void) {\n    this.#globalNotifyListeners.add(callback)\n    return () => {\n      this.#globalNotifyListeners.delete(callback)\n    }\n  }\n\n  /**\n   * Stop listening to notifications\n   * @param callback The callback to remove\n   */\n  offNotification(callback: (channel: string, payload: string) => void) {\n    this.#globalNotifyListeners.delete(callback)\n  }\n\n  #receiveNotification(channel: string, payload: string) {\n    const listeners = this.#notifyListeners.get(channel)\n    if (listeners) {\n      for (const listener of listeners) {\n        queueMicrotask(() => listener(payload))\n      }\n    }\n    for (const listener of this.#globalNotifyListeners) {\n      queueMicrotask(() => listener(channel, payload))\n    }\n  }\n\n  async dumpDataDir(\n    compression?: DumpTarCompressionOptions,\n  ): Promise<File | Blob> {\n    return (await this.#rpc('dumpDataDir', compression)) as File | Blob\n  }\n\n  onLeaderChange(callback: () => void) {\n    this.#eventTarget.addEventListener('leader-change', callback)\n    return () => {\n      this.#eventTarget.removeEventListener('leader-change', callback)\n    }\n  }\n\n  offLeaderChange(callback: () => void) {\n    this.#eventTarget.removeEventListener('leader-change', callback)\n  }\n\n  async _handleBlob(blob?: File | Blob): Promise<void> {\n    await this.#rpc('_handleBlob', blob)\n  }\n\n  async _getWrittenBlob(): Promise<File | Blob | undefined> {\n    return await this.#rpc('_getWrittenBlob')\n  }\n\n  async _cleanupBlob(): Promise<void> {\n    await this.#rpc('_cleanupBlob')\n  }\n\n  async _checkReady() {\n    await this.waitReady\n  }\n\n  async _runExclusiveQuery<T>(fn: () => Promise<T>): Promise<T> {\n    await this.#rpc('_acquireQueryLock')\n    try {\n      return await fn()\n    } finally {\n      await this.#rpc('_releaseQueryLock')\n    }\n  }\n\n  async _runExclusiveTransaction<T>(fn: () => Promise<T>): Promise<T> {\n    await this.#rpc('_acquireTransactionLock')\n    try {\n      return await fn()\n    } finally {\n      await this.#rpc('_releaseTransactionLock')\n    }\n  }\n}\n\nexport interface WorkerOptions {\n  init: (options: Exclude<PGliteWorkerOptions, 'extensions'>) => Promise<PGlite>\n}\n\nexport async function worker({ init }: WorkerOptions) {\n  // Send a message to the main thread to let it know we are here\n  postMessage({ type: 'here' })\n\n  // Await the main thread to send us the options\n  const options = await new Promise<Exclude<PGliteWorkerOptions, 'extensions'>>(\n    (resolve) => {\n      addEventListener(\n        'message',\n        (event) => {\n          if (event.data.type === 'init') {\n            resolve(event.data.options)\n          }\n        },\n        { once: true },\n      )\n    },\n  )\n\n  // ID for this multi-tab worker - this is used to identify the group of workers\n  // that are trying to elect a leader for a shared PGlite instance.\n  // It defaults to the URL of the worker, and the dataDir if provided\n  // but can be overridden by the options.\n  const id = options.id ?? `${import.meta.url}:${options.dataDir ?? ''}`\n\n  // Let the main thread know we are ready\n  postMessage({ type: 'ready', id })\n\n  const electionLockId = `pglite-election-lock:${id}`\n  const broadcastChannelId = `pglite-broadcast:${id}`\n  const broadcastChannel = new BroadcastChannel(broadcastChannelId)\n  const connectedTabs = new Set<string>()\n\n  // Await the main lock which is used to elect the leader\n  // We don't release this lock, its automatically released when the worker or\n  // tab is closed\n  await acquireLock(electionLockId)\n\n  // Now we are the leader, start the worker\n  const dbPromise = init(options)\n\n  // Start listening for messages from tabs\n  broadcastChannel.onmessage = async (event) => {\n    const msg = event.data\n    switch (msg.type) {\n      case 'tab-here':\n        // A new tab has joined,\n        connectTab(msg.id, await dbPromise, connectedTabs)\n        break\n    }\n  }\n\n  // Notify the other tabs that we are the leader\n  broadcastChannel.postMessage({ type: 'leader-here', id })\n\n  // Let the main thread know we are the leader\n  postMessage({ type: 'leader-now' })\n\n  const db = await dbPromise\n\n  // Listen for notifications and broadcast them to all tabs\n  db.onNotification((channel, payload) => {\n    broadcastChannel.postMessage({ type: 'notify', channel, payload })\n  })\n}\n\nfunction connectTab(tabId: string, pg: PGlite, connectedTabs: Set<string>) {\n  if (connectedTabs.has(tabId)) {\n    return\n  }\n  connectedTabs.add(tabId)\n  const tabChannelId = `pglite-tab:${tabId}`\n  const tabCloseLockId = `pglite-tab-close:${tabId}`\n  const tabChannel = new BroadcastChannel(tabChannelId)\n\n  // Use a tab close lock to unsubscribe the tab\n  navigator.locks.request(tabCloseLockId, () => {\n    return new Promise<void>((resolve) => {\n      // The tab has been closed, unsubscribe the tab broadcast channel\n      tabChannel.close()\n      connectedTabs.delete(tabId)\n      resolve()\n    })\n  })\n\n  const api = makeWorkerApi(tabId, pg)\n\n  tabChannel.addEventListener('message', async (event) => {\n    const msg = event.data\n    switch (msg.type) {\n      case 'rpc-call': {\n        await pg.waitReady\n        const { callId, method, args } = msg as WorkerRpcCall<WorkerRpcMethod>\n        try {\n          // @ts-ignore no apparent reason why it fails\n          const result = (await api[method](...args)) as WorkerRpcResult<\n            typeof method\n          >['result']\n          tabChannel.postMessage({\n            type: 'rpc-return',\n            callId,\n            result,\n          } satisfies WorkerRpcResult<typeof method>)\n        } catch (error) {\n          console.error(error)\n          tabChannel.postMessage({\n            type: 'rpc-error',\n            callId,\n            error: { message: (error as Error).message },\n          } satisfies WorkerRpcError)\n        }\n        break\n      }\n    }\n  })\n\n  // Send a message to the tab to let it know it's connected\n  tabChannel.postMessage({ type: 'connected' })\n}\n\nfunction makeWorkerApi(tabId: string, db: PGlite) {\n  let queryLockRelease: (() => void) | null = null\n  let transactionLockRelease: (() => void) | null = null\n\n  // If the tab is closed and it is holding a lock, release the the locks\n  // and rollback any pending transactions\n  const tabCloseLockId = `pglite-tab-close:${tabId}`\n  acquireLock(tabCloseLockId).then(() => {\n    if (transactionLockRelease) {\n      // rollback any pending transactions\n      db.exec('ROLLBACK')\n    }\n    queryLockRelease?.()\n    transactionLockRelease?.()\n  })\n\n  return {\n    async getDebugLevel() {\n      return db.debug\n    },\n    async close() {\n      await db.close()\n    },\n    async execProtocol(message: Uint8Array) {\n      const { messages, data } = await db.execProtocol(message)\n      if (data.byteLength !== data.buffer.byteLength) {\n        const buffer = new ArrayBuffer(data.byteLength)\n        const dataCopy = new Uint8Array(buffer)\n        dataCopy.set(data)\n        return { messages, data: dataCopy }\n      } else {\n        return { messages, data }\n      }\n    },\n    async execProtocolStream(message: Uint8Array) {\n      const messages = await db.execProtocolStream(message)\n      return messages\n    },\n    async execProtocolRawStream(message: Uint8Array, options: any) {\n      const messages = await db.execProtocolRawStream(message, options)\n      return messages\n    },\n    async execProtocolRaw(message: Uint8Array) {\n      const result = await db.execProtocolRaw(message)\n      if (result.byteLength !== result.buffer.byteLength) {\n        // The data is a slice of a larger buffer, this is potentially the whole\n        // memory of the WASM module. We copy it to a new Uint8Array and return that.\n        const buffer = new ArrayBuffer(result.byteLength)\n        const resultCopy = new Uint8Array(buffer)\n        resultCopy.set(result)\n        return resultCopy\n      } else {\n        return result\n      }\n    },\n    async dumpDataDir(compression?: DumpTarCompressionOptions) {\n      return await db.dumpDataDir(compression)\n    },\n    async syncToFs() {\n      return await db.syncToFs()\n    },\n    async _handleBlob(blob?: File | Blob) {\n      return await db._handleBlob(blob)\n    },\n    async _getWrittenBlob() {\n      return await db._getWrittenBlob()\n    },\n    async _cleanupBlob() {\n      return await db._cleanupBlob()\n    },\n    async _checkReady() {\n      return await db._checkReady()\n    },\n    async _acquireQueryLock() {\n      return new Promise<void>((resolve) => {\n        db._runExclusiveQuery(() => {\n          return new Promise<void>((release) => {\n            queryLockRelease = release\n            resolve()\n          })\n        })\n      })\n    },\n    async _releaseQueryLock() {\n      queryLockRelease?.()\n      queryLockRelease = null\n    },\n    async _acquireTransactionLock() {\n      return new Promise<void>((resolve) => {\n        db._runExclusiveTransaction(() => {\n          return new Promise<void>((release) => {\n            transactionLockRelease = release\n            resolve()\n          })\n        })\n      })\n    },\n    async _releaseTransactionLock() {\n      transactionLockRelease?.()\n      transactionLockRelease = null\n    },\n  }\n}\n\nexport class LeaderChangedError extends Error {\n  constructor() {\n    super('Leader changed, pending operation in indeterminate state')\n  }\n}\n\nasync function acquireLock(lockId: string) {\n  let release\n  await new Promise<void>((resolve) => {\n    navigator.locks.request(lockId, () => {\n      return new Promise<void>((releaseCallback) => {\n        release = releaseCallback\n        resolve()\n      })\n    })\n  })\n  return release\n}\n\ntype WorkerApi = ReturnType<typeof makeWorkerApi>\n\ntype WorkerRpcMethod = keyof WorkerApi\n\ntype WorkerRpcCall<Method extends WorkerRpcMethod> = {\n  type: 'rpc-call'\n  callId: string\n  method: Method\n  args: Parameters<WorkerApi[Method]>\n}\n\ntype WorkerRpcResult<Method extends WorkerRpcMethod> = {\n  type: 'rpc-return'\n  callId: string\n  result: ReturnType<WorkerApi[Method]>\n}\n\ntype WorkerRpcError = {\n  type: 'rpc-error'\n  callId: string\n  error: any\n}\n\ntype WorkerRpcResponse<Method extends WorkerRpcMethod> =\n  | WorkerRpcResult<Method>\n  | WorkerRpcError\n"
  },
  {
    "path": "packages/pglite/tests/age.test.ts",
    "content": "/**\n * AGE Extension Tests for PGlite\n *\n * Apache AGE (A Graph Extension) brings graph database functionality to PostgreSQL.\n * This test suite demonstrates common graph operations using Cypher query language.\n *\n * @see https://age.apache.org/ - Apache AGE documentation\n * @see https://pglite.dev/ - PGlite documentation\n *\n * Usage:\n * ```typescript\n * import { PGlite } from '@electric-sql/pglite'\n * import { age } from '@electric-sql/pglite/age'\n *\n * const pg = new PGlite({ extensions: { age } })\n * ```\n */\n\nimport { describe, it, expect, beforeAll, afterAll } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { age } =\n    importType === 'esm'\n      ? await import('../dist/age/index.js')\n      : ((await import(\n          '../dist/age/index.cjs'\n        )) as unknown as typeof import('../dist/age/index.js'))\n\n  describe(`age (${importType})`, () => {\n    // =========================================================================\n    // BASIC EXTENSION LOADING\n    // =========================================================================\n\n    it('can load extension', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      const res = await pg.query<{ extname: string }>(`\n        SELECT extname FROM pg_extension WHERE extname = 'age'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].extname).toBe('age')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // GRAPH LIFECYCLE - CREATE AND DROP GRAPHS\n    // =========================================================================\n\n    it('can create a graph', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      // Create a new graph using ag_catalog.create_graph()\n      // This creates the graph metadata and necessary internal tables\n      await pg.exec(\"SELECT ag_catalog.create_graph('test_graph');\")\n\n      // Verify graph exists in ag_catalog.ag_graph system table\n      const res = await pg.query<{ name: string }>(`\n        SELECT name FROM ag_catalog.ag_graph WHERE name = 'test_graph'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].name).toBe('test_graph')\n      await pg.close()\n    })\n\n    it('can drop graph', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      // Create and then drop a graph\n      await pg.exec(\"SELECT ag_catalog.create_graph('temp_graph');\")\n      await pg.exec(\"SELECT ag_catalog.drop_graph('temp_graph', true);\")\n\n      // Verify graph no longer exists\n      const res = await pg.query<{ name: string }>(`\n        SELECT name FROM ag_catalog.ag_graph WHERE name = 'temp_graph'\n      `)\n\n      expect(res.rows).toHaveLength(0)\n      await pg.close()\n    })\n\n    // =========================================================================\n    // CREATING NODES (VERTICES)\n    // =========================================================================\n\n    it('can execute cypher CREATE and MATCH', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('cypher_test');\")\n\n      // CREATE a node with a label and properties\n      // Labels are like types/categories for nodes (e.g., Person, Movie)\n      // Properties are key-value pairs stored on the node\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('cypher_test', $$\n          CREATE (n:Person {name: 'Alice', age: 30})\n          RETURN n\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // MATCH finds nodes that match the pattern\n      // Properties in the pattern act as filters\n      const res = await pg.query<{ v: string }>(`\n        SELECT * FROM ag_catalog.cypher('cypher_test', $$\n          MATCH (n:Person {name: 'Alice'})\n          RETURN n\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      // AGE returns data as agtype (JSON-like format)\n      expect(res.rows[0].v).toContain('Alice')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // CREATING RELATIONSHIPS (EDGES)\n    // =========================================================================\n\n    it('can create edges between nodes', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('edge_test');\")\n\n      // Create a full path: two nodes connected by an edge\n      // Pattern: (node1)-[:EDGE_TYPE]->(node2)\n      // Edges are directed (arrow shows direction)\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('edge_test', $$\n          CREATE (a:Person {name: 'Alice'})-[:KNOWS {since: 2020}]->(b:Person {name: 'Bob'})\n          RETURN a, b\n        $$) as (a ag_catalog.agtype, b ag_catalog.agtype);\n      `)\n\n      // Query the relationship\n      // MATCH pattern includes the edge with its type\n      const res = await pg.query<{ name: string; friend: string }>(`\n        SELECT * FROM ag_catalog.cypher('edge_test', $$\n          MATCH (a:Person)-[:KNOWS]->(b:Person)\n          RETURN a.name, b.name\n        $$) as (name ag_catalog.agtype, friend ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].name).toBe('\"Alice\"')\n      expect(res.rows[0].friend).toBe('\"Bob\"')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // CYPHER PARSER HOOKS - VERIFYING AGE INTEGRATION\n    // =========================================================================\n\n    it('hooks are active - cypher syntax parses correctly', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('hook_test');\")\n\n      // This query uses Cypher-specific syntax that PostgreSQL\n      // doesn't understand natively. It only works because AGE's\n      // post_parse_analyze_hook intercepts and transforms the query.\n      const res = await pg.query<{ result: string }>(`\n        SELECT * FROM ag_catalog.cypher('hook_test', $$\n          RETURN 1 + 2\n        $$) as (result ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].result).toBe('3')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // FILTERING WITH WHERE CLAUSE\n    // =========================================================================\n\n    it('can use WHERE clause in MATCH', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('where_test');\")\n\n      // Create multiple nodes\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('where_test', $$\n          CREATE (:Person {name: 'Alice', age: 30}),\n                 (:Person {name: 'Bob', age: 25}),\n                 (:Person {name: 'Charlie', age: 35})\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // Use WHERE to filter results\n      // WHERE clause supports comparison operators and boolean logic\n      const res = await pg.query<{ name: string }>(`\n        SELECT * FROM ag_catalog.cypher('where_test', $$\n          MATCH (p:Person)\n          WHERE p.age > 28\n          RETURN p.name\n        $$) as (name ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(2)\n      const names = res.rows.map((r) => r.name)\n      expect(names).toContain('\"Alice\"')\n      expect(names).toContain('\"Charlie\"')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // QUERY ANALYSIS WITH EXPLAIN\n    // =========================================================================\n\n    it('EXPLAIN works on cypher queries', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('explain_test');\")\n\n      // EXPLAIN shows the query execution plan\n      // Useful for performance tuning\n      const res = await pg.query<{ 'QUERY PLAN': string }>(`\n        EXPLAIN SELECT * FROM ag_catalog.cypher('explain_test', $$\n          MATCH (n)\n          RETURN n\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      expect(res.rows.length).toBeGreaterThan(0)\n      await pg.close()\n    })\n\n    // =========================================================================\n    // UNICODE AND INTERNATIONAL TEXT SUPPORT\n    // =========================================================================\n\n    it('handles unicode in properties', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('unicode_test');\")\n\n      // Create node with unicode properties\n      // AGE supports full UTF-8 text in property values\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('unicode_test', $$\n          CREATE (n:Message {\n            text: '你好世界',\n            emoji: '🎉',\n            mixed: 'Hello 世界! 🌍'\n          })\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      const res = await pg.query<{ text: string }>(`\n        SELECT * FROM ag_catalog.cypher('unicode_test', $$\n          MATCH (n:Message)\n          RETURN n.text\n        $$) as (text ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].text).toContain('你好世界')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // ERROR HANDLING\n    // =========================================================================\n\n    it('handles invalid cypher syntax gracefully', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('error_test');\")\n\n      // Invalid Cypher syntax should throw an error\n      await expect(\n        pg.exec(`\n          SELECT * FROM ag_catalog.cypher('error_test', $$\n            MATCH (n INVALID SYNTAX\n          $$) as (v ag_catalog.agtype);\n        `),\n      ).rejects.toThrow()\n\n      await pg.close()\n    })\n\n    // =========================================================================\n    // UPDATING NODE PROPERTIES\n    // =========================================================================\n\n    it('can update node properties', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('update_test');\")\n\n      // Create a node\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('update_test', $$\n          CREATE (n:Person {name: 'Alice', age: 30})\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // Update the node using SET clause\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('update_test', $$\n          MATCH (n:Person {name: 'Alice'})\n          SET n.age = 31, n.city = 'New York'\n          RETURN n\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // Verify the update\n      const res = await pg.query<{ age: string; city: string }>(`\n        SELECT * FROM ag_catalog.cypher('update_test', $$\n          MATCH (n:Person {name: 'Alice'})\n          RETURN n.age, n.city\n        $$) as (age ag_catalog.agtype, city ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].age).toBe('31')\n      expect(res.rows[0].city).toBe('\"New York\"')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // DELETING NODES\n    // =========================================================================\n\n    it('can delete nodes', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('delete_test');\")\n\n      // Create nodes\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('delete_test', $$\n          CREATE (:Person {name: 'ToDelete'}),\n                 (:Person {name: 'ToKeep'})\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // Delete specific node using DELETE clause\n      // DETACH DELETE removes the node and all its relationships\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('delete_test', $$\n          MATCH (n:Person {name: 'ToDelete'})\n          DELETE n\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // Verify only one node remains\n      const res = await pg.query<{ count: string }>(`\n        SELECT * FROM ag_catalog.cypher('delete_test', $$\n          MATCH (n:Person)\n          RETURN count(n)\n        $$) as (count ag_catalog.agtype);\n      `)\n\n      expect(res.rows[0].count).toBe('1')\n      await pg.close()\n    })\n\n    // =========================================================================\n    // ORDERING AND LIMITING RESULTS\n    // =========================================================================\n\n    it('can use ORDER BY and LIMIT', async () => {\n      const pg = new PGlite({\n        extensions: {\n          age,\n        },\n      })\n      await pg.exec(`\n        CREATE EXTENSION IF NOT EXISTS age;\n        LOAD 'age';\n        SET search_path = ag_catalog, \"$user\", public;\n      `)\n\n      await pg.exec(\"SELECT ag_catalog.create_graph('order_test');\")\n\n      // Create multiple nodes with different ages\n      await pg.exec(`\n        SELECT * FROM ag_catalog.cypher('order_test', $$\n          CREATE (:Person {name: 'Alice', age: 30}),\n                 (:Person {name: 'Bob', age: 25}),\n                 (:Person {name: 'Charlie', age: 35}),\n                 (:Person {name: 'Diana', age: 28})\n        $$) as (v ag_catalog.agtype);\n      `)\n\n      // Query with ORDER BY and LIMIT\n      // ORDER BY sorts results, LIMIT restricts count\n      const res = await pg.query<{ name: string }>(`\n        SELECT * FROM ag_catalog.cypher('order_test', $$\n          MATCH (p:Person)\n          RETURN p.name\n          ORDER BY p.age DESC\n          LIMIT 2\n        $$) as (name ag_catalog.agtype);\n      `)\n\n      expect(res.rows).toHaveLength(2)\n      expect(res.rows[0].name).toBe('\"Charlie\"') // age 35\n      expect(res.rows[1].name).toBe('\"Alice\"') // age 30\n      await pg.close()\n    })\n\n    // =========================================================================\n    // REAL-WORLD EXAMPLE: SOCIAL NETWORK\n    // =========================================================================\n\n    describe('real-world example: social network', () => {\n      let pg: InstanceType<typeof PGlite>\n\n      beforeAll(async () => {\n        pg = new PGlite({\n          extensions: { age },\n        })\n        await pg.exec(`\n          CREATE EXTENSION IF NOT EXISTS age;\n          LOAD 'age';\n          SET search_path = ag_catalog, \"$user\", public;\n        `)\n\n        // Create a social network graph\n        await pg.exec(\"SELECT ag_catalog.create_graph('social');\")\n\n        // Create users\n        await pg.exec(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            CREATE \n              (alice:User {name: 'Alice', email: 'alice@example.com', joined: '2023-01-15'}),\n              (bob:User {name: 'Bob', email: 'bob@example.com', joined: '2023-02-20'}),\n              (charlie:User {name: 'Charlie', email: 'charlie@example.com', joined: '2023-03-10'}),\n              (diana:User {name: 'Diana', email: 'diana@example.com', joined: '2023-04-05'})\n          $$) as (v ag_catalog.agtype);\n        `)\n\n        // Create friendship relationships\n        await pg.exec(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (alice:User {name: 'Alice'}), (bob:User {name: 'Bob'})\n            CREATE (alice)-[:FRIENDS_WITH {since: '2023-03-01'}]->(bob)\n          $$) as (v ag_catalog.agtype);\n        `)\n\n        await pg.exec(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (alice:User {name: 'Alice'}), (charlie:User {name: 'Charlie'})\n            CREATE (alice)-[:FRIENDS_WITH {since: '2023-04-15'}]->(charlie)\n          $$) as (v ag_catalog.agtype);\n        `)\n\n        await pg.exec(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (bob:User {name: 'Bob'}), (diana:User {name: 'Diana'})\n            CREATE (bob)-[:FRIENDS_WITH {since: '2023-05-01'}]->(diana)\n          $$) as (v ag_catalog.agtype);\n        `)\n\n        // Create posts\n        await pg.exec(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (alice:User {name: 'Alice'})\n            CREATE (alice)-[:POSTED]->(p:Post {\n              content: 'Hello from PGlite with AGE!',\n              timestamp: '2023-06-01T10:00:00Z',\n              likes: 42\n            })\n          $$) as (v ag_catalog.agtype);\n        `)\n      })\n\n      afterAll(async () => {\n        await pg.close()\n      })\n\n      it('can find direct friends', async () => {\n        const res = await pg.query<{ friend: string }>(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (alice:User {name: 'Alice'})-[:FRIENDS_WITH]->(friend:User)\n            RETURN friend.name\n          $$) as (friend ag_catalog.agtype);\n        `)\n\n        expect(res.rows).toHaveLength(2)\n        const friends = res.rows.map((r) => r.friend)\n        expect(friends).toContain('\"Bob\"')\n        expect(friends).toContain('\"Charlie\"')\n      })\n\n      it('can find friends of friends', async () => {\n        // Variable length path: find friends up to 2 hops away\n        const res = await pg.query<{ person: string }>(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (alice:User {name: 'Alice'})-[:FRIENDS_WITH*1..2]->(person:User)\n            WHERE person.name <> 'Alice'\n            RETURN DISTINCT person.name\n          $$) as (person ag_catalog.agtype);\n        `)\n\n        // Should find Bob, Charlie (direct) and Diana (through Bob)\n        expect(res.rows.length).toBeGreaterThanOrEqual(2)\n        const people = res.rows.map((r) => r.person)\n        expect(people).toContain('\"Diana\"') // friend of friend\n      })\n\n      it('can find posts by user', async () => {\n        const res = await pg.query<{ content: string; likes: string }>(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (u:User {name: 'Alice'})-[:POSTED]->(post:Post)\n            RETURN post.content, post.likes\n          $$) as (content ag_catalog.agtype, likes ag_catalog.agtype);\n        `)\n\n        expect(res.rows).toHaveLength(1)\n        expect(res.rows[0].content).toContain('PGlite with AGE')\n        expect(res.rows[0].likes).toBe('42')\n      })\n\n      it('can count relationships', async () => {\n        const res = await pg.query<{ name: string; friend_count: string }>(`\n          SELECT * FROM ag_catalog.cypher('social', $$\n            MATCH (u:User)-[:FRIENDS_WITH]->(friend:User)\n            RETURN u.name, count(friend) as friend_count\n            ORDER BY friend_count DESC\n          $$) as (name ag_catalog.agtype, friend_count ag_catalog.agtype);\n        `)\n\n        // Alice has 2 friends (most)\n        expect(res.rows[0].name).toBe('\"Alice\"')\n        expect(res.rows[0].friend_count).toBe('2')\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/array-types.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\nimport { expectToThrowAsync } from './test-utils.js'\n\ndescribe('array types', () => {\n  it('throws for array params enum when not calling refreshArrayTypes', async () => {\n    const db = new PGlite()\n    await db.query(`\n          CREATE TYPE mood AS ENUM ('sad', 'happy');\n        `)\n\n    await db.query(`\n          CREATE TABLE IF NOT EXISTS test (\n            id SERIAL PRIMARY KEY,\n            name TEXT,\n            moods mood[]\n          );\n        `)\n\n    await expectToThrowAsync(async () => {\n      await db.query(\n        `\n          INSERT INTO test (name, moods) VALUES ($1, $2);\n        `,\n        ['test2', ['sad', 'happy']],\n      )\n    }, 'malformed array literal: \"sad,happy\"')\n  })\n\n  it('works with new array types after calling refreshArrayTypes', async () => {\n    const db = new PGlite()\n    await db.query(`\n          CREATE TYPE mood AS ENUM ('sad', 'happy');\n        `)\n\n    await db.query(`\n          CREATE TABLE IF NOT EXISTS test (\n            id SERIAL PRIMARY KEY,\n            name TEXT,\n            moods mood[]\n          );\n        `)\n\n    await db.refreshArrayTypes()\n\n    await db.query(\n      `\n          INSERT INTO test (name, moods) VALUES ($1, $2);\n        `,\n      ['test2', ['sad', 'happy']],\n    )\n\n    const res = await db.query(`\n          SELECT * FROM test;\n        `)\n\n    expect(res).toEqual({\n      rows: [\n        {\n          id: 1,\n          name: 'test2',\n          moods: ['sad', 'happy'],\n        },\n      ],\n      fields: [\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'name',\n          dataTypeID: 25,\n        },\n        {\n          name: 'moods',\n          dataTypeID: 16384,\n        },\n      ],\n      affectedRows: 0,\n    })\n  })\n\n  it('refreshArrayTypes is indempotent', async () => {\n    function getSize(obj) {\n      return Object.keys(obj).length\n    }\n\n    const db = new PGlite()\n    await db.waitReady\n\n    const initialSerializersSize = getSize(db.serializers)\n    const initialParsersSize = getSize(db.parsers)\n\n    expect(initialSerializersSize).toBeGreaterThan(0)\n    expect(initialParsersSize).toBeGreaterThan(0)\n\n    await db.refreshArrayTypes()\n\n    expect(getSize(db.serializers)).toBe(initialSerializersSize)\n    expect(getSize(db.parsers)).toBe(initialParsersSize)\n\n    await db.refreshArrayTypes()\n\n    expect(getSize(db.serializers)).toBe(initialSerializersSize)\n    expect(getSize(db.parsers)).toBe(initialParsersSize)\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/basic.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { expectToThrowAsync, testEsmCjsAndDTC } from './test-utils.ts'\nimport { identifier } from '../dist/templating.js'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  describe(`basic`, () => {\n    it('exec', async () => {\n      const db = await PGlite.create()\n      await db.exec(`\n      CREATE TABLE IF NOT EXISTS test (\n        id SERIAL PRIMARY KEY,\n        name TEXT\n      );\n    `)\n\n      const multiStatementResult = await db.exec(`\n      INSERT INTO test (name) VALUES ('test');\n      UPDATE test SET name = 'test2';\n      SELECT * FROM test;\n    `)\n\n      expect(multiStatementResult).toEqual([\n        {\n          affectedRows: 1,\n          rows: [],\n          fields: [],\n        },\n        {\n          affectedRows: 2,\n          rows: [],\n          fields: [],\n        },\n        {\n          rows: [{ id: 1, name: 'test2' }],\n          fields: [\n            { name: 'id', dataTypeID: 23 },\n            { name: 'name', dataTypeID: 25 },\n          ],\n          affectedRows: 2,\n        },\n      ])\n\n      await db.close()\n    })\n\n    it('query', async () => {\n      const db = new PGlite()\n      await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n      await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n      const selectResult = await db.query(`\n    SELECT * FROM test;\n  `)\n\n      expect(selectResult).toEqual({\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n        ],\n        affectedRows: 0,\n      })\n\n      const updateResult = await db.query(\"UPDATE test SET name = 'test2';\")\n      expect(updateResult).toEqual({\n        rows: [],\n        fields: [],\n        affectedRows: 1,\n      })\n    })\n\n    it('query templated', async () => {\n      const db = new PGlite()\n      const tableName = identifier`test`\n      await db.sql`\n    CREATE TABLE IF NOT EXISTS ${tableName} (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `\n      await db.sql`INSERT INTO ${tableName} (name) VALUES (${'test'});`\n      const selectResult = await db.sql`SELECT * FROM ${tableName};`\n\n      expect(selectResult).toEqual({\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n        ],\n        affectedRows: 0,\n      })\n\n      const updateResult =\n        await db.sql`UPDATE ${tableName} SET name = ${'test2'};`\n      expect(updateResult).toEqual({\n        rows: [],\n        fields: [],\n        affectedRows: 1,\n      })\n    })\n\n    it('types', async () => {\n      const db = await PGlite.create()\n      await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      text TEXT,\n      number INT,\n      float FLOAT,\n      bigint BIGINT,\n      bool BOOLEAN,\n      date DATE,\n      timestamp TIMESTAMP,\n      json JSONB,\n      blob BYTEA,\n      array_text TEXT[],\n      array_number INT[],\n      nested_array_float FLOAT[][],\n      test_null INT,\n      test_undefined INT\n    );\n  `)\n\n      await db.query(\n        `\n    INSERT INTO test (text, number, float, bigint, bool, date, timestamp, json, blob, array_text, array_number, nested_array_float, test_null, test_undefined)\n    VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14);\n  `,\n        [\n          'test',\n          1,\n          1.5,\n          9223372036854775807n,\n          true,\n          new Date('2021-01-01'),\n          new Date('2021-01-01T12:00:00'),\n          { test: 'test' },\n          Uint8Array.from([1, 2, 3]),\n          ['test1', 'test2', 'test,3'],\n          [1, 2, 3],\n          [\n            [1.1, 2.2],\n            [3.3, 4.4],\n          ],\n          null,\n          undefined,\n        ],\n      )\n\n      const res = await db.query<{\n        id: number\n        text: string\n        number: number\n        float: number\n        bigint: bigint\n        bool: boolean\n        date: Date\n        timestamp: Date\n        json: Record<string, unknown>\n        blob: Uint8Array\n        array_text: string[]\n        array_number: number[]\n        nested_array_float: number[][]\n        test_null: null\n        test_undefined: null\n      }>(`\n    SELECT * FROM test;\n  `)\n\n      expect(res).toMatchObject({\n        rows: [\n          {\n            id: 1,\n            text: 'test',\n            number: 1,\n            float: 1.5,\n            bigint: 9223372036854775807n,\n            bool: true,\n            date: new Date('2021-01-01T00:00:00.000Z'),\n            json: { test: 'test' },\n            blob: Uint8Array.from([1, 2, 3]),\n            array_text: ['test1', 'test2', 'test,3'],\n            array_number: [1, 2, 3],\n            nested_array_float: [\n              [1.1, 2.2],\n              [3.3, 4.4],\n            ],\n            test_null: null,\n            test_undefined: null,\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'text',\n            dataTypeID: 25,\n          },\n          {\n            name: 'number',\n            dataTypeID: 23,\n          },\n          {\n            name: 'float',\n            dataTypeID: 701,\n          },\n          {\n            name: 'bigint',\n            dataTypeID: 20,\n          },\n          {\n            name: 'bool',\n            dataTypeID: 16,\n          },\n          {\n            name: 'date',\n            dataTypeID: 1082,\n          },\n          {\n            name: 'timestamp',\n            dataTypeID: 1114,\n          },\n          {\n            name: 'json',\n            dataTypeID: 3802,\n          },\n          {\n            name: 'blob',\n            dataTypeID: 17,\n          },\n          {\n            name: 'array_text',\n            dataTypeID: 1009,\n          },\n          {\n            name: 'array_number',\n            dataTypeID: 1007,\n          },\n          {\n            name: 'nested_array_float',\n            dataTypeID: 1022,\n          },\n          {\n            name: 'test_null',\n            dataTypeID: 23,\n          },\n          {\n            name: 'test_undefined',\n            dataTypeID: 23,\n          },\n        ],\n        affectedRows: 0,\n      })\n\n      // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones.\n      expect(res.rows[0].timestamp.getUTCMilliseconds()).toBe(\n        new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds(),\n      )\n    })\n\n    it('custom parser and serializer', async () => {\n      const db = new PGlite({\n        serializers: { 1700: (x) => x.toString() },\n        parsers: { 1700: (x) => BigInt(x) },\n      })\n      await db.query(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          numeric NUMERIC\n        );\n      `)\n      await db.query('INSERT INTO test (numeric) VALUES ($1);', [100n])\n      const res = await db.query(`\n        SELECT * FROM test;\n      `)\n\n      expect(res).toEqual({\n        rows: [\n          {\n            id: 1,\n            numeric: 100n,\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'numeric',\n            dataTypeID: 1700,\n          },\n        ],\n        affectedRows: 0,\n      })\n    })\n\n    it('params', async () => {\n      const db = new PGlite()\n      await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n      await db.query('INSERT INTO test (name) VALUES ($1);', ['test2'])\n      const res = await db.query(`\n    SELECT * FROM test;\n  `)\n\n      expect(res).toEqual({\n        rows: [\n          {\n            id: 1,\n            name: 'test2',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n        ],\n        affectedRows: 0,\n      })\n    })\n\n    it('array params', async () => {\n      const db = new PGlite()\n      await db.query(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          json JSONB,\n          array_text TEXT[]\n        );\n      `)\n\n      await db.query(\n        `\n        INSERT INTO test (json, array_text) VALUES ($1, $2);\n      `,\n        [\n          ['hello', 'world'],\n          ['yolo', 'fam'],\n        ],\n      )\n\n      const res = await db.query(\n        `\n        SELECT * FROM test WHERE id = ANY($1);\n      `,\n        [[0, 1, 2, 3]],\n      )\n\n      expect(res).toEqual({\n        rows: [\n          {\n            id: 1,\n            json: ['hello', 'world'],\n            array_text: ['yolo', 'fam'],\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'json',\n            dataTypeID: 3802,\n          },\n          {\n            name: 'array_text',\n            dataTypeID: 1009,\n          },\n        ],\n        affectedRows: 0,\n      })\n    })\n\n    it('error', async () => {\n      const db = await PGlite.create()\n      await expectToThrowAsync(async () => {\n        await db.query('SELECT * FROM test;')\n      }, 'relation \"test\" does not exist')\n    })\n\n    it('transaction', async () => {\n      const db = new PGlite()\n      await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n      await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n      await db.transaction(async (tx) => {\n        await tx.query(\"INSERT INTO test (name) VALUES ('test2');\")\n        const res = await tx.query(`\n      SELECT * FROM test;\n    `)\n        expect(res).toEqual({\n          rows: [\n            {\n              id: 1,\n              name: 'test',\n            },\n            {\n              id: 2,\n              name: 'test2',\n            },\n          ],\n          fields: [\n            {\n              name: 'id',\n              dataTypeID: 23,\n            },\n            {\n              name: 'name',\n              dataTypeID: 25,\n            },\n          ],\n          affectedRows: 0,\n        })\n        await tx.rollback()\n      })\n      const res = await db.query(`\n    SELECT * FROM test;\n  `)\n      expect(res).toEqual({\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n        ],\n        affectedRows: 0,\n      })\n    })\n    it('merge delete', async () => {\n      const db = new PGlite()\n      await db.exec(`\n      CREATE TABLE employees (\n      id SERIAL PRIMARY KEY,\n      name TEXT,\n      department TEXT,\n      salary NUMERIC);`)\n\n      await db.exec(`INSERT INTO employees (id, name, department, salary) VALUES\n        (1, 'Alice', 'Engineering', 75000),\n        (2, 'Bob', 'Sales', 50000),\n        (3, 'Charlie', 'Engineering', 80000);`)\n\n      await db.exec(`CREATE TEMP TABLE employees_updates (\n        id INT,\n        name TEXT,\n        department TEXT,\n        salary NUMERIC);`)\n\n      await db.exec(`INSERT INTO employees_updates VALUES\n        (2, 'Bob', 'Sales', 55000),       -- Update salary\n        (3, 'Charlie', 'Product', 80000), -- Update department\n        (4, 'Diana', 'Engineering', 70000); -- New employee`)\n\n      const res = await db.exec(`MERGE INTO employees AS target\n      USING employees_updates AS source\n      ON target.id = source.id\n      WHEN MATCHED THEN DELETE`)\n\n      expect(res[0].affectedRows).toEqual(2)\n    })\n\n    it('copy to/from blob', async () => {\n      const db = new PGlite()\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          test TEXT\n        );\n        INSERT INTO test (test) VALUES ('test'), ('test2');\n      `)\n\n      // copy to\n      const copyToRet = await db.query(\n        \"COPY test TO '/dev/blob' WITH (FORMAT csv);\",\n      )\n\n      // Check that the copy command returns the number of rows affected\n      expect(copyToRet.affectedRows).toBe(2)\n\n      const csv = await copyToRet.blob?.text()\n      expect(csv).toBe('1,test\\n2,test2\\n')\n\n      // copy from\n      const blob2 = new Blob([csv!])\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS test2 (\n          id SERIAL PRIMARY KEY,\n          test TEXT\n        );\n      `)\n      const copyFromRet = await db.query(\n        \"COPY test2 FROM '/dev/blob' WITH (FORMAT csv);\",\n        [],\n        {\n          blob: blob2,\n        },\n      )\n\n      // Check that the copy command returns the number of rows affected\n      expect(copyFromRet.affectedRows).toBe(2)\n\n      const res = await db.query(`\n        SELECT * FROM test2;\n      `)\n      expect(res).toEqual({\n        rows: [\n          {\n            id: 1,\n            test: 'test',\n          },\n          {\n            id: 2,\n            test: 'test2',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'test',\n            dataTypeID: 25,\n          },\n        ],\n        affectedRows: 0,\n      })\n    })\n\n    it('close', async () => {\n      const db = new PGlite()\n      await db.query(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n      await db.close()\n      await expectToThrowAsync(async () => {\n        await db.query('SELECT * FROM test;')\n      }, 'PGlite is closed')\n    })\n\n    it('use same param multiple times', async () => {\n      const db = new PGlite()\n\n      await db.exec(`\n      CREATE TABLE IF NOT EXISTS test (\n        id SERIAL PRIMARY KEY,\n        first_name TEXT,\n        last_name TEXT\n      );\n      `)\n      await db.query(\n        'INSERT INTO test (first_name, last_name) VALUES ($1, $1);',\n        ['Duck'],\n      )\n      const result = await db.query(\n        'SELECT first_name, last_name FROM test WHERE first_name = $1 AND last_name = $1',\n        ['Duck'],\n      )\n      expect(result).toEqual({\n        rows: [{ first_name: 'Duck', last_name: 'Duck' }],\n        fields: [\n          { name: 'first_name', dataTypeID: 25 },\n          { name: 'last_name', dataTypeID: 25 },\n        ],\n        affectedRows: 0,\n      })\n    })\n    it('timezone', async () => {\n      const db = new PGlite()\n\n      const res = await db.query(\n        `SELECT now(),* FROM pg_timezone_names WHERE name = current_setting('TIMEZONE')`,\n      )\n      expect(res.rows.length).toEqual(1)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/clone.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('clone', () => {\n  it('clone pglite instance', async () => {\n    const pg1 = await PGlite.create()\n    await pg1.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    await pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const pg2 = await pg1.clone()\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n    const ret2 = await pg2.query('SELECT * FROM test;')\n\n    expect(ret1).toEqual(ret2)\n  })\n\n  it('clone pglite instance - insert into pg2', async () => {\n    const pg1 = await PGlite.create()\n    await pg1.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    await pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const pg2 = await pg1.clone()\n    await pg2.exec(\"INSERT INTO test (name) VALUES ('2-test');\")\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n    const ret2 = await pg2.query('SELECT * FROM test;')\n\n    expect(ret1.rows.length).toBe(1)\n    expect(ret2.rows.length).toBe(2)\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/amcheck.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { amcheck } from '../../dist/contrib/amcheck.js'\n\nit('amcheck', async () => {\n  const pg = new PGlite({\n    extensions: {\n      amcheck,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS amcheck;')\n\n  // Example query from https://www.postgresql.org/docs/current/amcheck.html\n  const res = await pg.query(`\n    SELECT bt_index_check(index => c.oid, heapallindexed => i.indisunique),\n               c.relname,\n               c.relpages\n    FROM pg_index i\n    JOIN pg_opclass op ON i.indclass[0] = op.oid\n    JOIN pg_am am ON op.opcmethod = am.oid\n    JOIN pg_class c ON i.indexrelid = c.oid\n    JOIN pg_namespace n ON c.relnamespace = n.oid\n    WHERE am.amname = 'btree' AND n.nspname = 'pg_catalog'\n    -- Don't check temp tables, which may be from another session:\n    AND c.relpersistence != 't'\n    -- Function may throw an error when this is omitted:\n    AND c.relkind = 'i' AND i.indisready AND i.indisvalid\n    ORDER BY c.relpages DESC LIMIT 10;\n  `)\n\n  expect(res.rows).toEqual([\n    {\n      bt_index_check: '',\n      relname: 'pg_proc_proname_args_nsp_index',\n      relpages: 32,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_description_o_c_o_index',\n      relpages: 23,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_attribute_relid_attnam_index',\n      relpages: 15,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_proc_oid_index',\n      relpages: 12,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_attribute_relid_attnum_index',\n      relpages: 11,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_depend_depender_index',\n      relpages: 10,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_depend_reference_index',\n      relpages: 8,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_amop_fam_strat_index',\n      relpages: 6,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_operator_oprname_l_r_n_index',\n      relpages: 6,\n    },\n    {\n      bt_index_check: '',\n      relname: 'pg_amop_opr_fam_index',\n      relpages: 6,\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/auto_explain.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { auto_explain } from '../../dist/contrib/auto_explain.js'\n\nit('auto_explain', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      auto_explain,\n    },\n  })\n\n  await pg.exec(`\n    LOAD 'auto_explain';\n    SET auto_explain.log_min_duration = '0';\n    SET auto_explain.log_analyze = 'true';\n    SET auto_explain.log_level = 'NOTICE';\n  `)\n\n  const notices = []\n\n  await pg.query(\n    `\n    SELECT count(*)\n    FROM pg_class, pg_index\n    WHERE oid = indrelid AND indisunique;\n  `,\n    [],\n    {\n      onNotice: (msg) => {\n        notices.push(msg)\n      },\n    },\n  )\n\n  const explainNotice = notices.find(\n    (msg) => msg.routine === 'explain_ExecutorEnd',\n  )\n\n  expect(!!explainNotice).toBe(true)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/bloom.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { bloom } from '../../dist/contrib/bloom.js'\n\nit('bloom', async () => {\n  const pg = new PGlite({\n    extensions: {\n      bloom,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS bloom;')\n\n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n    CREATE INDEX IF NOT EXISTS test_name_bloom_idx ON test USING bloom (name);\n  `)\n\n  await pg.exec(\"INSERT INTO test (name) VALUES ('test1');\")\n  await pg.exec(\"INSERT INTO test (name) VALUES ('test2');\")\n  await pg.exec(\"INSERT INTO test (name) VALUES ('test3');\")\n  // in previous versions, we were running PGlite with '\"-f\", \"siobtnmh\",' which disabled some query plans.\n  // now, to force Postgres to use the bloom filter, we disable sequential scans for this test\n  await pg.exec(`SET enable_seqscan = off;`)\n\n  const res = await pg.query(`\n    SELECT\n      name\n    FROM test\n    WHERE name = 'test1';\n  `)\n\n  expect(res.rows).toEqual([\n    {\n      name: 'test1',\n    },\n  ])\n\n  const res2 = await pg.query(`\n    EXPLAIN ANALYZE\n    SELECT\n      name\n    FROM test\n    WHERE name = 'test1';\n  `)\n\n  // check that `test_name_bloom_idx` is in the plan\n  const match = res2.rows.filter((row) =>\n    row['QUERY PLAN'].includes('test_name_bloom_idx'),\n  )\n  expect(match.length > 0).toBe(true)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/btree_gin.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { btree_gin } from '../../dist/contrib/btree_gin.js'\n\nit('btree_gin', async () => {\n  const pg = new PGlite({\n    extensions: {\n      btree_gin,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS btree_gin;')\n\n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      number int4\n    );\n    CREATE INDEX IF NOT EXISTS test_number_btree_gin_idx ON test USING GIN (number);\n  `)\n\n  await pg.exec('INSERT INTO test (number) VALUES (1);')\n  await pg.exec('INSERT INTO test (number) VALUES (2);')\n  await pg.exec('INSERT INTO test (number) VALUES (3);')\n\n  const res = await pg.query(`\n    SELECT\n      number\n    FROM test\n    WHERE number = 1;\n  `)\n\n  expect(res.rows).toEqual([\n    {\n      number: 1,\n    },\n  ])\n\n  const res2 = await pg.query(`\n    EXPLAIN ANALYZE\n    SELECT\n      number\n    FROM test\n    WHERE number = 1;\n  `)\n\n  // check that `test_number_btree_gin_idx` is in the plan\n  const match = res2.rows.filter((row) =>\n    row['QUERY PLAN'].includes('test_number_btree_gin_idx'),\n  )\n  expect(match.length > 0).toBe(true)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/btree_gist.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { btree_gist } from '../../dist/contrib/btree_gist.js'\n\nit('btree_gist', async () => {\n  const pg = new PGlite({\n    extensions: {\n      btree_gist,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS btree_gist;')\n\n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      number int4\n    );\n    CREATE INDEX IF NOT EXISTS test_number_btree_gist_idx ON test USING GIST (number);\n  `)\n\n  await pg.exec('INSERT INTO test (number) VALUES (1);')\n  await pg.exec('INSERT INTO test (number) VALUES (2);')\n  await pg.exec('INSERT INTO test (number) VALUES (3);')\n\n  const res = await pg.query(`\n    SELECT\n      number\n    FROM test\n    WHERE number = 1;\n  `)\n\n  expect(res.rows).toEqual([\n    {\n      number: 1,\n    },\n  ])\n\n  const res2 = await pg.query(`\n    EXPLAIN ANALYZE\n    SELECT\n      number\n    FROM test\n    WHERE number = 1;\n  `)\n\n  // check that `test_number_btree_gist_idx` is in the plan\n  const match = res2.rows.filter((row) =>\n    row['QUERY PLAN'].includes('test_number_btree_gist_idx'),\n  )\n  expect(match.length > 0).toBe(true)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/citext.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { citext } from '../../dist/contrib/citext.js'\n\nit('citext', async () => {\n  const pg = new PGlite({\n    extensions: {\n      citext,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS citext;')\n\n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name CITEXT\n    );\n  `)\n\n  await pg.exec(\"INSERT INTO test (name) VALUES ('tEsT1');\")\n  await pg.exec(\"INSERT INTO test (name) VALUES ('TeSt2');\")\n  await pg.exec(\"INSERT INTO test (name) VALUES ('TEST3');\")\n\n  const res = await pg.query(`\n    SELECT\n      name\n    FROM test\n    WHERE name = 'test1';\n  `)\n\n  expect(res.rows).toEqual([\n    {\n      name: 'tEsT1',\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/cube.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { cube } from '../../dist/contrib/cube.js'\n\nit('cube', async () => {\n  const pg = new PGlite({\n    extensions: {\n      cube,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS cube;')\n\n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      point CUBE\n    );\n  `)\n\n  await pg.exec(\"INSERT INTO test (point) VALUES ('(1, 2, 3)');\")\n  await pg.exec(\"INSERT INTO test (point) VALUES ('(4, 5, 6)');\")\n  await pg.exec(\"INSERT INTO test (point) VALUES ('(7, 8, 9)');\")\n\n  const res = await pg.query(`\n    SELECT\n      point,\n      point <-> cube(array[1, 2, 3]) AS distance\n    FROM test;\n  `)\n\n  expect(res.rows).toEqual([\n    { point: '(1, 2, 3)', distance: 0 },\n    { point: '(4, 5, 6)', distance: 5.196152422706632 },\n    { point: '(7, 8, 9)', distance: 10.392304845413264 },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/dict_int.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { dict_int } from '../../dist/contrib/dict_int.js'\n\nit('dict_int', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      dict_int,\n    },\n  })\n\n  // from dict_int.sql\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS dict_int;')\n\n  const lexizeResult1 = await pg.query(`\nselect ts_lexize('intdict', '511673');\n`)\n\n  expect(lexizeResult1.rows[0]).toEqual({\n    ts_lexize: ['511673'],\n  })\n\n  const lexizeResult2 = await pg.query(`\nselect ts_lexize('intdict', '129');\n`)\n\n  expect(lexizeResult2.rows[0]).toEqual({\n    ts_lexize: ['129'],\n  })\n\n  const lexizeResult3 = await pg.query(`\nselect ts_lexize('intdict', '40865854');\n`)\n\n  expect(lexizeResult3.rows[0]).toEqual({\n    ts_lexize: ['408658'],\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/dict_xsyn.test.ts",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { dict_xsyn } from '../../dist/contrib/dict_xsyn.js'\n\nit('dict_xsyn', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      dict_xsyn,\n    },\n  })\n\n  // from dict_xsyn.sql\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS dict_xsyn;')\n  await pg.exec(`\n-- default configuration - match first word and return it among with all synonyms\nALTER TEXT SEARCH DICTIONARY xsyn (RULES='xsyn_sample', KEEPORIG=true, MATCHORIG=true, KEEPSYNONYMS=true, MATCHSYNONYMS=false);\n`)\n\n  const lexizeResult1 = await pg.query(`\nSELECT ts_lexize('xsyn', 'supernova');\n`)\n\n  expect(lexizeResult1.rows[0]).toEqual({\n    ts_lexize: ['supernova', 'sn', 'sne', '1987a'],\n  })\n\n  const lexizeResult2 = await pg.query(`\nSELECT ts_lexize('xsyn', 'sn');\n`)\n\n  expect(lexizeResult2.rows[0]).toEqual({\n    ts_lexize: null,\n  })\n\n  const lexizeResult3 = await pg.query(`\nSELECT ts_lexize('xsyn', 'grb');\n`)\n\n  expect(lexizeResult3.rows[0]).toEqual({\n    ts_lexize: null,\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/earthdistance.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { cube } from '../../dist/contrib/cube.js'\nimport { earthdistance } from '../../dist/contrib/earthdistance.js'\n\nit('earthdistance', async () => {\n  const pg = new PGlite({\n    extensions: {\n      cube,\n      earthdistance,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS cube;')\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS earthdistance;')\n\n  await pg.exec(`\n    CREATE TABLE locations (\n      id SERIAL PRIMARY KEY,\n      name VARCHAR(100),\n      latitude DOUBLE PRECISION,\n      longitude DOUBLE PRECISION\n    );\n  `)\n\n  await pg.exec(`\n    INSERT INTO locations (name, latitude, longitude)\n    VALUES\n      ('Location A', 40.7128, -74.0060),  -- New York City (nearby point)\n      ('Location B', 40.730610, -73.935242),  -- Another point in NYC\n      ('Location C', 34.052235, -118.243683),  -- Los Angeles (far away)\n      ('Location D', 40.758896, -73.985130),  -- Times Square, NYC\n      ('Location E', 51.507351, -0.127758);  -- London (far away)\n  `)\n\n  const res = await pg.query(`\n    SELECT\n      name,\n      earth_distance(\n        ll_to_earth(40.7128, -74.0060),\n        ll_to_earth(latitude, longitude)\n      ) AS distance\n    FROM locations\n    ORDER BY distance;\n  `)\n\n  expect(res.rows).toEqual([\n    { name: 'Location A', distance: 0 },\n    { name: 'Location D', distance: 5424.971028170555 },\n    { name: 'Location B', distance: 6290.327117342975 },\n    { name: 'Location C', distance: 3940171.3340000752 },\n    { name: 'Location E', distance: 5576493.70395964 },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/file_fdw.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { file_fdw } from '../../dist/contrib/file_fdw.js'\n\nit('file_fdw', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      file_fdw,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS file_fdw;')\n  await pg.exec('CREATE SERVER file_server FOREIGN DATA WRAPPER file_fdw;')\n  await pg.exec(`CREATE FOREIGN TABLE file_contents (line text)\n    SERVER file_server\n    OPTIONS (\n        filename '/pglite/bin/postgres',\n        format 'text'\n    );`)\n\n  const contents = await pg.query(`SELECT * FROM file_contents;`)\n  expect(contents.rows).toEqual([\n    {\n      line: 'PGlite is the best!',\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/fuzzystrmatch.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { fuzzystrmatch } from '../../dist/contrib/fuzzystrmatch.js'\n\nit('fuzzystrmatch', async () => {\n  const pg = new PGlite({\n    extensions: {\n      fuzzystrmatch,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;')\n\n  const res = await pg.query(`\n    SELECT\n      levenshtein('kitten', 'sitting') AS distance;\n  `)\n\n  expect(res.rows).toEqual([{ distance: 3 }])\n\n  const res2 = await pg.query(`\n    SELECT\n      soundex('kitten') AS soundex;\n  `)\n\n  expect(res2.rows).toEqual([{ soundex: 'K350' }])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/hstore.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { hstore } from '../../dist/contrib/hstore.js'\n\nit('hstore', async () => {\n  const pg = new PGlite({\n    extensions: {\n      hstore,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS hstore;')\n\n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      data HSTORE\n    );\n  `)\n\n  await pg.exec('INSERT INTO test (data) VALUES (\\'\"name\" => \"test1\"\\');')\n  await pg.exec('INSERT INTO test (data) VALUES (\\'\"name\" => \"test2\"\\');')\n  await pg.exec('INSERT INTO test (data) VALUES (\\'\"name\" => \"test3\"\\');')\n\n  const res = await pg.query(`\n    SELECT\n      data::JSONB\n    FROM test\n    WHERE data->'name' = 'test1';\n  `)\n\n  expect(res.rows).toEqual([\n    {\n      data: {\n        name: 'test1',\n      },\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/intarray.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { intarray } from '../../dist/contrib/intarray.js'\n\nit('intarray', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      intarray,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS intarray;')\n\n  await pg.exec(`\n    CREATE TABLE articles (\n      id SERIAL PRIMARY KEY,\n      title TEXT NOT NULL,\n      tag_ids INTEGER[]);`)\n\n  await pg.exec(`\n    INSERT INTO articles (title, tag_ids) VALUES\n    ('Postgres Performance Tips', '{1,2,3}'),\n    ('Introduction to SQL', '{2,4}'),\n    ('Advanced intarray Usage', '{1,3,5}'),\n    ('Database Normalization', '{4,6}');`)\n\n  const titleTags25 = await pg.query(`\n    SELECT title, tag_ids\n    FROM articles\n    WHERE tag_ids && '{2,5}'::integer[];`)\n\n  expect(titleTags25.rows).toEqual([\n    {\n      title: 'Postgres Performance Tips',\n      tag_ids: [1, 2, 3],\n    },\n    {\n      title: 'Introduction to SQL',\n      tag_ids: [2, 4],\n    },\n    {\n      title: 'Advanced intarray Usage',\n      tag_ids: [1, 3, 5],\n    },\n  ])\n\n  const titleTags12 = await pg.query(`\n    SELECT title, tag_ids\n    FROM articles\n    WHERE tag_ids @> '{1,2}'::integer[];`)\n\n  expect(titleTags12.rows).toEqual([\n    {\n      title: 'Postgres Performance Tips',\n      tag_ids: [1, 2, 3],\n    },\n  ])\n\n  const titleTags1235 = await pg.query(`\n    SELECT title, tag_ids\n    FROM articles\n    WHERE tag_ids <@ '{1,2,3,5}'::integer[];`)\n\n  expect(titleTags1235.rows).toEqual([\n    {\n      title: 'Postgres Performance Tips',\n      tag_ids: [1, 2, 3],\n    },\n    {\n      title: 'Advanced intarray Usage',\n      tag_ids: [1, 3, 5],\n    },\n  ])\n\n  const queryInt = await pg.query(`\n    SELECT title, tag_ids\n    FROM articles\n    WHERE tag_ids @@ '1 & (3|4)'::query_int;`)\n\n  expect(queryInt.rows).toEqual([\n    {\n      title: 'Postgres Performance Tips',\n      tag_ids: [1, 2, 3],\n    },\n    {\n      title: 'Advanced intarray Usage',\n      tag_ids: [1, 3, 5],\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/isn.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { isn } from '../../dist/contrib/isn.js'\n\nit('bloom', async () => {\n  const pg = new PGlite({\n    extensions: {\n      isn,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS isn;')\n\n  const ret1 = await pg.query(\"SELECT isbn('978-0-393-04002-9');\")\n  expect(ret1.rows).toEqual([\n    {\n      isbn: '0-393-04002-X',\n    },\n  ])\n\n  const ret2 = await pg.query(\"SELECT isbn13('0901690546');\")\n  expect(ret2.rows).toEqual([\n    {\n      isbn13: '978-0-901690-54-8',\n    },\n  ])\n\n  const ret3 = await pg.query(\"SELECT issn('1436-4522');\")\n  expect(ret3.rows).toEqual([\n    {\n      issn: '1436-4522',\n    },\n  ])\n\n  await pg.exec(`\n    CREATE TABLE test (id isbn);\n    INSERT INTO test VALUES('9780393040029');\n  `)\n\n  const ret4 = await pg.query('SELECT * FROM test;')\n  expect(ret4.rows).toEqual([\n    {\n      id: '0-393-04002-X',\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/lo.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { lo } from '../../dist/contrib/lo.js'\n\nit('lo', async () => {\n  const pg = new PGlite({\n    extensions: {\n      lo,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS lo;')\n\n  await pg.exec(`\n    CREATE TABLE test (id SERIAL PRIMARY KEY, data OID);\n  `)\n\n  await pg.exec(`\n    CREATE TRIGGER test_data_lo BEFORE UPDATE OR DELETE ON test\n    FOR EACH ROW EXECUTE FUNCTION lo_manage(data);\n  `)\n\n  const text = 'hello world'\n  const blob = new Blob([text], { type: 'text/plain' })\n\n  await pg.query(\n    `\n    INSERT INTO test (data) VALUES (lo_import('/dev/blob'));\n  `,\n    [],\n    {\n      blob,\n    },\n  )\n\n  const res = await pg.query(`\n    SELECT lo_export(data, '/dev/blob') AS data FROM test;\n  `)\n\n  const data = res.blob\n  const asText = await data.text()\n  expect(asText).toBe(text)\n\n  await pg.query(`\n    DELETE FROM test;\n  `)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/ltree.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { ltree } from '../../dist/contrib/ltree.js'\n\nit('ltree', async () => {\n  const pg = new PGlite({\n    extensions: {\n      ltree,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS ltree;')\n\n  await pg.exec(`\n    CREATE TABLE test (path ltree);\n    INSERT INTO test VALUES ('Top');\n    INSERT INTO test VALUES ('Top.Science');\n    INSERT INTO test VALUES ('Top.Science.Astronomy');\n    INSERT INTO test VALUES ('Top.Science.Astronomy.Astrophysics');\n    INSERT INTO test VALUES ('Top.Science.Astronomy.Cosmology');\n    INSERT INTO test VALUES ('Top.Hobbies');\n    INSERT INTO test VALUES ('Top.Hobbies.Amateurs_Astronomy');\n    INSERT INTO test VALUES ('Top.Collections');\n    INSERT INTO test VALUES ('Top.Collections.Pictures');\n    INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy');\n    INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy.Stars');\n    INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy.Galaxies');\n    INSERT INTO test VALUES ('Top.Collections.Pictures.Astronomy.Astronauts');\n    CREATE INDEX path_gist_idx ON test USING GIST (path);\n    CREATE INDEX path_idx ON test USING BTREE (path);\n  `)\n\n  const ret = await pg.query(`\n    SELECT path FROM test WHERE path <@ 'Top.Science';\n  `)\n\n  expect(ret.rows).toEqual([\n    { path: 'Top.Science' },\n    { path: 'Top.Science.Astronomy' },\n    { path: 'Top.Science.Astronomy.Astrophysics' },\n    { path: 'Top.Science.Astronomy.Cosmology' },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pageinspect.test.js",
    "content": "import { it } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pageinspect } from '../../dist/contrib/pageinspect.js'\n\nit('pageinspect', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      pageinspect,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS pageinspect;')\n\n  await pg.exec(`\nCREATE TABLE pageinspect_test (\nid serial PRIMARY KEY,\nname text,\nvalue integer);\n`)\n\n  await pg.exec(`INSERT INTO pageinspect_test (name, value)\nSELECT\n'row_' || g,\n(random() * 100)::int\nFROM generate_series(1, 5) AS g;`)\n\n  await pg.exec('CHECKPOINT;')\n\n  await pg.query(`\nSELECT relfilenode, relname\nFROM pg_class\nWHERE relname = 'pageinspect_test';\n`)\n\n  await pg.query(`\nSELECT *\nFROM heap_page_items(get_raw_page('pageinspect_test', 0));\n`)\n\n  await pg.query(`\nSELECT * FROM page_header(get_raw_page('pageinspect_test', 0));\n`)\n\n  await pg.query(`\nSELECT * FROM pageinspect_test ORDER BY id;\n`)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pg_buffercache.test.js",
    "content": "import { expect, it } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pg_buffercache } from '../../dist/contrib/pg_buffercache.js'\n\nit('pg_buffercache', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      pg_buffercache,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_buffercache;')\n\n  const buffers = await pg.query(`\nSELECT n.nspname, c.relname, count(*) AS buffers\nFROM pg_buffercache b JOIN pg_class c\nON b.relfilenode = pg_relation_filenode(c.oid) AND\n   b.reldatabase IN (0, (SELECT oid FROM pg_database\n                         WHERE datname = current_database()))\nJOIN pg_namespace n ON n.oid = c.relnamespace\nGROUP BY n.nspname, c.relname\nORDER BY 3 DESC\nLIMIT 10;    \n`)\n\n  expect(buffers.rows.length).toEqual(10)\n\n  const bufferCacheSummary = await pg.query(\n    `SELECT * FROM pg_buffercache_summary();`,\n  )\n\n  expect(bufferCacheSummary.rows.length).toEqual(1)\n\n  await pg.query(`SELECT * FROM pg_buffercache_usage_counts();`)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pg_freespacemap.test.ts",
    "content": "import { expect, it } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pg_freespacemap } from '../../dist/contrib/pg_freespacemap.js'\n\nit('pg_freespacemap', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      pg_freespacemap,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_freespacemap;')\n\n  await pg.exec(`\nCREATE TABLE test_fsm(id serial PRIMARY KEY, data text);\nINSERT INTO test_fsm (data) SELECT repeat('x', 100) FROM generate_series(1, 1000);\nDELETE FROM test_fsm WHERE id <= 500;\n`)\n\n  const freeSpace = await pg.query(`\nSELECT * FROM pg_freespace('test_fsm');\n`)\n\n  expect(freeSpace.rows.length).toBeGreaterThan(0)\n\n  const freeSpace0 = await pg.query(`\nSELECT pg_freespace('test_fsm', 0);\n    `)\n\n  expect(freeSpace0.rows.length).toBeGreaterThan(0)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pg_surgery.test.js",
    "content": "import { it } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pg_surgery } from '../../dist/contrib/pg_surgery.js'\n\nit('pg_surgery', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      pg_surgery,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_surgery;')\n\n  // unsure how to test this extension\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pg_trgm.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pg_trgm } from '../../dist/contrib/pg_trgm.js'\n\ndescribe('pg_trgm', () => {\n  it('gin', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pg_trgm,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_trgm;')\n    await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n    CREATE INDEX IF NOT EXISTS test_name_trgm_idx ON test USING gin (name gin_trgm_ops);\n  `)\n    await pg.exec(\"INSERT INTO test (name) VALUES ('test1');\")\n    await pg.exec(\"INSERT INTO test (name) VALUES ('test2');\")\n    await pg.exec(\"INSERT INTO test (name) VALUES ('text3');\")\n\n    const res = await pg.query(`\n    SELECT\n      name,\n      name % 'test' AS similarity,\n      name <-> 'test' AS distance\n    FROM test;\n  `)\n\n    expect(res.rows).toEqual([\n      {\n        name: 'test1',\n        similarity: true,\n        distance: 0.4285714,\n      },\n      {\n        name: 'test2',\n        similarity: true,\n        distance: 0.4285714,\n      },\n      {\n        name: 'text3',\n        similarity: false,\n        distance: 0.7777778,\n      },\n    ])\n\n    const res2 = await pg.query(`\n    SELECT\n      name\n    FROM test\n    WHERE name % 'test';\n  `)\n\n    expect(res2.rows).toEqual([\n      {\n        name: 'test1',\n      },\n      {\n        name: 'test2',\n      },\n    ])\n  })\n\n  it('gist', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pg_trgm,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_trgm;')\n    await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n    CREATE INDEX IF NOT EXISTS test_name_trgm_idx ON test USING gist (name gist_trgm_ops);\n  `)\n    await pg.exec(\"INSERT INTO test (name) VALUES ('test1');\")\n    await pg.exec(\"INSERT INTO test (name) VALUES ('test2');\")\n    await pg.exec(\"INSERT INTO test (name) VALUES ('text3');\")\n\n    const res = await pg.query(`\n    SELECT\n      name,\n      name % 'test' AS similarity,\n      name <-> 'test' AS distance\n    FROM test;\n  `)\n\n    expect(res.rows).toEqual([\n      {\n        name: 'test1',\n        similarity: true,\n        distance: 0.4285714,\n      },\n      {\n        name: 'test2',\n        similarity: true,\n        distance: 0.4285714,\n      },\n      {\n        name: 'text3',\n        similarity: false,\n        distance: 0.7777778,\n      },\n    ])\n\n    const res2 = await pg.query(`\n    SELECT\n      name\n    FROM test\n    WHERE name % 'test';\n  `)\n\n    expect(res2.rows).toEqual([\n      {\n        name: 'test1',\n      },\n      {\n        name: 'test2',\n      },\n    ])\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pg_visibility.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pg_visibility } from '../../dist/contrib/pg_visibility.js'\n\nit('pg_visibility', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      pg_visibility,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_visibility;')\n\n  await pg.exec(`\nCREATE TABLE IF NOT EXISTS test (\nid SERIAL PRIMARY KEY,\nname TEXT\n);\n`)\n\n  await pg.exec(`\nINSERT INTO test (name) VALUES ('test');\nUPDATE test SET name = 'test2';\nSELECT * FROM test;\n`)\n\n  const visible = await pg.query(`\n-- Show all invisible tuples in a specific table using pg_visibility\nSELECT * \nFROM pg_visibility('test') \nWHERE all_visible = false;\n`)\n\n  expect(visible.rows).toEqual([\n    {\n      blkno: 0,\n      all_visible: false,\n      all_frozen: false,\n      pd_all_visible: false,\n    },\n  ])\n\n  const visibilityMap = await pg.query(`\n-- Check visibility map status for a table\nSELECT * \nFROM pg_visibility_map('test');\n`)\n\n  expect(visibilityMap.rows).toEqual([\n    {\n      blkno: 0,\n      all_visible: false,\n      all_frozen: false,\n    },\n  ])\n\n  const frozen = await pg.query(`\n-- Find pages with all-frozen tuples\nSELECT * \nFROM pg_visibility('test')\nWHERE all_frozen = true;\n`)\n\n  expect(frozen.rows).toEqual([])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pg_walinspect.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pg_walinspect } from '../../dist/contrib/pg_walinspect.js'\n\nit('pg_walinspect', async () => {\n  const pg = await PGlite.create({\n    extensions: {\n      pg_walinspect,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_walinspect;')\n\n  await pg.exec(`\nCREATE TABLE test_wal (\nid SERIAL PRIMARY KEY,\ndata TEXT\n);\n`)\n\n  const blsn = await pg.query(`\nSELECT pg_current_wal_lsn() AS before_lsn;\n`)\n\n  await pg.exec(`\nINSERT INTO test_wal(data)\nSELECT 'row ' || generate_series::text\nFROM generate_series(1,5);\n`)\n\n  const alsn = await pg.query(`\nSELECT pg_current_wal_lsn() AS after_lsn;\n`)\n\n  const _blsn = blsn.rows[0].before_lsn\n  const _alsn = alsn.rows[0].after_lsn\n  const infos = await pg.query(\n    `\nSELECT * FROM pg_get_wal_block_info($1, $2)\nORDER BY start_lsn, block_id\nLIMIT 200;`,\n    [_blsn, _alsn],\n  )\n\n  expect(infos.rows.length).toBeGreaterThan(0)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/pgcrypto.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { pgcrypto } from '../../dist/contrib/pgcrypto.js'\nimport * as openpgp from 'openpgp'\n\ndescribe('pg_pgcryptotrgm', () => {\n  it('digest', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\n      \"SELECT encode(digest(convert_to('test', 'UTF8'), 'sha1'), 'hex') as value;\",\n    )\n    expect(res.rows[0].value, 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3')\n  })\n\n  it('hmac', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\n      \"SELECT encode(hmac(convert_to('test', 'UTF8'), convert_to('key', 'UTF8'), 'sha1'), 'hex') as value;\",\n    )\n    expect(res.rows[0].value).toEqual(\n      '671f54ce0c540f78ffe1e26dcf9c2a047aea4fda',\n    )\n  })\n\n  it('crypt', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\"SELECT crypt('test', gen_salt('bf')) as value;\")\n    expect(res.rows[0].value.length).toEqual(60)\n  })\n\n  it('gen_salt', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\"SELECT gen_salt('bf') as value;\")\n    expect(res.rows[0].value.length).toEqual(29)\n  })\n\n  it('armor', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\"SELECT armor(digest('test', 'sha1')) as value;\")\n    expect(res.rows[0].value).toContain('-----BEGIN PGP MESSAGE-----')\n    expect(res.rows[0].value).toContain('-----END PGP MESSAGE-----')\n  })\n\n  it('pgp_sym_encrypt and pgp_sym_decrypt', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\n      \"SELECT pgp_sym_encrypt('test', 'key') as value;\",\n    )\n    const encrypted = res.rows[0].value\n\n    const res2 = await pg.query(\"SELECT pgp_sym_decrypt($1, 'key') as value;\", [\n      encrypted,\n    ])\n    expect(res2.rows[0].value).toEqual('test')\n  })\n\n  it('pgp_pub_encrypt and pgp_pub_decrypt', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const { privateKey, publicKey } = await openpgp.generateKey({\n      type: 'rsa',\n      rsaBits: 2048,\n      userIDs: [{ name: 'PGlite', email: 'hello@pglite.dev' }],\n      passphrase: '',\n    })\n\n    const toEncrypt = 'PGlite@$#%!^$&*WQFgjqPkVERewfreg094340f1012-='\n\n    const e2 = await pg.exec(\n      `\nWITH encrypted AS (\n    SELECT pgp_pub_encrypt('${toEncrypt}', dearmor('${publicKey}')) AS encrypted\n)\nSELECT\n    pgp_pub_decrypt(encrypted, dearmor('${privateKey}')) as decrypted_output\nFROM encrypted;\n`,\n    )\n    expect(e2[0].rows[0].decrypted_output, toEncrypt)\n  })\n\n  it('pgp_key_id', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const { publicKey } = await openpgp.generateKey({\n      type: 'rsa',\n      rsaBits: 2048,\n      userIDs: [{ name: 'PGlite', email: 'hello@pglite.dev' }],\n      passphrase: '',\n    })\n\n    const res = await pg.query(\n      `SELECT pgp_key_id(dearmor('${publicKey}')) as value;`,\n    )\n    // pgp_key_id returns a 16-character hex string\n    expect(res.rows[0].value).toHaveLength(16)\n    expect(res.rows[0].value).toMatch(/^[0-9A-F]+$/)\n  })\n\n  it('pgp_armor_headers', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    // Create armored data with headers\n    const res = await pg.query(\n      `SELECT armor(digest('test', 'sha1'), ARRAY['key1'], ARRAY['value1']) as armored;`,\n    )\n    const armored = res.rows[0].armored\n\n    const res2 = await pg.query(`SELECT * FROM pgp_armor_headers($1);`, [\n      armored,\n    ])\n    expect(res2.rows).toContainEqual({ key: 'key1', value: 'value1' })\n  })\n\n  it('encrypt and decrypt', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\n      `SELECT encrypt('test data'::bytea, 'secret key'::bytea, 'aes') as encrypted;`,\n    )\n    const encrypted = res.rows[0].encrypted\n\n    const res2 = await pg.query(\n      `SELECT convert_from(decrypt($1, 'secret key'::bytea, 'aes'), 'UTF8') as decrypted;`,\n      [encrypted],\n    )\n    expect(res2.rows[0].decrypted).toEqual('test data')\n  })\n\n  it('encrypt_iv and decrypt_iv', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    // AES block size is 16 bytes, so IV must be 16 bytes\n    const iv = '1234567890123456'\n\n    const res = await pg.query(\n      `SELECT encrypt_iv('test data'::bytea, 'secret key'::bytea, '${iv}'::bytea, 'aes') as encrypted;`,\n    )\n    const encrypted = res.rows[0].encrypted\n\n    const res2 = await pg.query(\n      `SELECT convert_from(decrypt_iv($1, 'secret key'::bytea, '${iv}'::bytea, 'aes'), 'UTF8') as decrypted;`,\n      [encrypted],\n    )\n    expect(res2.rows[0].decrypted).toEqual('test data')\n  })\n\n  it('gen_random_bytes', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(\n      `SELECT length(gen_random_bytes(32)) as len, encode(gen_random_bytes(16), 'hex') as bytes;`,\n    )\n    expect(res.rows[0].len).toEqual(32)\n    // 16 bytes = 32 hex characters\n    expect(res.rows[0].bytes).toHaveLength(32)\n  })\n\n  it('gen_random_uuid', async () => {\n    const pg = new PGlite({\n      extensions: {\n        pgcrypto,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS pgcrypto;')\n\n    const res = await pg.query(`SELECT gen_random_uuid() as uuid;`)\n    // UUID format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n    expect(res.rows[0].uuid).toMatch(\n      /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/,\n    )\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/seg.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { seg } from '../../dist/contrib/seg.js'\n\nit('seg', async () => {\n  const pg = new PGlite({\n    extensions: {\n      seg,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS seg;')\n\n  const ret = await pg.query(`SELECT '6.25 .. 6.50'::seg AS \"pH\"`)\n  expect(ret.rows).toEqual([{ pH: '6.25 .. 6.50' }])\n\n  const ret2 = await pg.query(`SELECT '7(+-)1'::seg AS \"set\"`)\n  expect(ret2.rows).toEqual([{ set: '6 .. 8' }])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/tablefunc.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { tablefunc } from '../../dist/contrib/tablefunc.js'\n\nit('tablefunc', async () => {\n  const pg = new PGlite({\n    extensions: {\n      tablefunc,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS tablefunc;')\n\n  const ret = await pg.query(`SELECT * FROM normal_rand(10, 5, 3)`)\n  expect(ret.rows.length).toEqual(10)\n\n  await pg.exec(`\n    CREATE TABLE ct(id SERIAL, rowid TEXT, attribute TEXT, value TEXT);\n    INSERT INTO ct(rowid, attribute, value) VALUES('test1','att1','val1');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test1','att2','val2');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test1','att3','val3');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test1','att4','val4');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test2','att1','val5');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test2','att2','val6');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test2','att3','val7');\n    INSERT INTO ct(rowid, attribute, value) VALUES('test2','att4','val8');\n  `)\n\n  const ret2 = await pg.query(`\n    SELECT *\n    FROM crosstab(\n      'select rowid, attribute, value\n      from ct\n      where attribute = ''att2'' or attribute = ''att3''\n      order by 1,2')\n    AS ct(row_name text, category_1 text, category_2 text, category_3 text);\n  `)\n\n  expect(ret2.rows).toEqual([\n    {\n      row_name: 'test1',\n      category_1: 'val2',\n      category_2: 'val3',\n      category_3: null,\n    },\n    {\n      row_name: 'test2',\n      category_1: 'val6',\n      category_2: 'val7',\n      category_3: null,\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/tcn.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { tcn } from '../../dist/contrib/tcn.js'\n\nit('tcn', async () => {\n  const pg = new PGlite({\n    extensions: {\n      tcn,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS tcn;')\n\n  await pg.exec(`\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n    CREATE TRIGGER test_tcn\n    AFTER INSERT OR UPDATE OR DELETE ON test\n    FOR EACH ROW\n    EXECUTE FUNCTION triggered_change_notification();\n  `)\n\n  pg.listen('tcn', (payload) => {\n    expect(payload).toBe(`\"test\",I,\"id\"='1'`)\n  })\n\n  await pg.exec(\"INSERT INTO test (name) VALUES ('test1');\")\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/tsm_system_rows.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { tsm_system_rows } from '../../dist/contrib/tsm_system_rows.js'\n\nit('tsm_system_rows', async () => {\n  const pg = new PGlite({\n    extensions: {\n      tsm_system_rows,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS tsm_system_rows;')\n\n  // crate test table with 10 rows\n  await pg.exec(`\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n\n  await pg.exec(`\n    INSERT INTO test (name)\n    SELECT 'test' || i\n    FROM generate_series(1, 10) AS i;\n  `)\n\n  // sample 5 rows\n  const res = await pg.query(`\n    SELECT *\n    FROM test\n    TABLESAMPLE SYSTEM_ROWS(5);\n  `)\n\n  expect(res.rows.length).toBe(5)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/tsm_system_time.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { tsm_system_time } from '../../dist/contrib/tsm_system_time.js'\n\nit('tsm_system_time', async () => {\n  const pg = new PGlite({\n    extensions: {\n      tsm_system_time,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS tsm_system_time;')\n\n  // crate test table with 10 rows\n  await pg.exec(`\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n\n  await pg.exec(`\n    INSERT INTO test (name)\n    SELECT 'test' || i\n    FROM generate_series(1, 10) AS i;\n  `)\n\n  // sample 5 rows\n  const res = await pg.query(`\n    SELECT *\n    FROM test\n    TABLESAMPLE SYSTEM_TIME(50);\n  `)\n\n  expect(res.rows.length).toBe(10)\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/unaccent.test.js",
    "content": "import { it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { unaccent } from '../../dist/contrib/unaccent.js'\n\nit('unaccent', async () => {\n  const pg = new PGlite({\n    extensions: {\n      unaccent,\n    },\n  })\n\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS unaccent;')\n\n  const result = await pg.query(`select ts_lexize('unaccent','Hôtel');`)\n\n  expect(result.rows).toEqual([\n    {\n      ts_lexize: ['Hotel'],\n    },\n  ])\n})\n"
  },
  {
    "path": "packages/pglite/tests/contrib/uuid_ossp.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../../dist/index.js'\nimport { uuid_ossp } from '../../dist/contrib/uuid_ossp.js'\n\ndescribe('uuid_ossp', () => {\n  it('uuid_generate_v1', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query('SELECT uuid_generate_v1() as value;')\n\n    expect(res.rows[0].value.length).toBe(36)\n  })\n\n  it('uuid_generate_v3', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query(\n      \"SELECT uuid_generate_v3(uuid_ns_dns(), 'www.example.com') as value;\",\n    )\n\n    expect(res.rows[0].value.length).toBe(36)\n  })\n\n  it('uuid_generate_v4', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query('SELECT uuid_generate_v4() as value;')\n\n    expect(res.rows[0].value.length).toBe(36)\n  })\n\n  it('uuid_generate_v5', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query(\n      \"SELECT uuid_generate_v5(uuid_ns_dns(), 'www.example.com') as value;\",\n    )\n\n    expect(res.rows[0].value.length).toBe(36)\n  })\n\n  it('uuid_nil', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query('SELECT uuid_nil() as value;')\n\n    expect(res.rows[0].value).toBe('00000000-0000-0000-0000-000000000000')\n  })\n\n  it('uuid_ns_dns', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query('SELECT uuid_ns_dns() as value;')\n\n    expect(res.rows[0].value).toBe('6ba7b810-9dad-11d1-80b4-00c04fd430c8')\n  })\n\n  it('uuid_ns_oid', async () => {\n    const pg = new PGlite({\n      extensions: {\n        uuid_ossp,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";')\n\n    const res = await pg.query('SELECT uuid_ns_oid() as value;')\n\n    expect(res.rows[0].value).toBe('6ba7b812-9dad-11d1-80b4-00c04fd430c8')\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/describe-query.test.ts",
    "content": "import { test, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ntest('describeQuery returns parameter and result types', async () => {\n  const db = await PGlite.create()\n  await db.query(`\n    CREATE TABLE users (\n      id INTEGER PRIMARY KEY,\n      name TEXT,\n      age INTEGER,\n      active BOOLEAN\n    )\n  `)\n\n  const description = await db.describeQuery(\n    'SELECT name, age FROM users WHERE id = $1 AND active = $2',\n  )\n\n  // Check parameter types\n  expect(description.queryParams).toHaveLength(2)\n  expect(description.queryParams[0].dataTypeID).toBe(23) // INTEGER\n  expect(description.queryParams[1].dataTypeID).toBe(16) // BOOLEAN\n  expect(description.queryParams[0].serializer).toBeDefined()\n  expect(description.queryParams[1].serializer).toBeDefined()\n\n  // Check result field types\n  expect(description.resultFields).toHaveLength(2)\n  expect(description.resultFields[0].name).toBe('name')\n  expect(description.resultFields[0].dataTypeID).toBe(25) // TEXT\n  expect(description.resultFields[1].name).toBe('age')\n  expect(description.resultFields[1].dataTypeID).toBe(23) // INTEGER\n  expect(description.resultFields[0].parser).toBeDefined()\n  expect(description.resultFields[1].parser).toBeDefined()\n})\n\ntest('describeQuery handles queries with no parameters or results', async () => {\n  const db = await PGlite.create()\n\n  const description = await db.describeQuery('SELECT 1')\n\n  expect(description.queryParams).toHaveLength(0)\n  expect(description.resultFields).toHaveLength(1)\n  expect(description.resultFields[0].dataTypeID).toBe(23) // INTEGER\n})\n\ntest('describeQuery handles INSERT queries', async () => {\n  const db = await PGlite.create()\n  await db.query(`\n    CREATE TABLE test (\n      id INTEGER PRIMARY KEY,\n      value TEXT\n    )\n  `)\n\n  const description = await db.describeQuery(\n    'INSERT INTO test (id, value) VALUES ($1, $2)',\n  )\n\n  expect(description.queryParams).toHaveLength(2)\n  expect(description.queryParams[0].dataTypeID).toBe(23) // INTEGER\n  expect(description.queryParams[1].dataTypeID).toBe(25) // TEXT\n  expect(description.resultFields).toHaveLength(0) // INSERT typically returns no fields\n})\n\ntest('describeQuery handles invalid queries', async () => {\n  const db = await PGlite.create()\n\n  await expect(\n    db.describeQuery('SELECT * FROM nonexistent_table'),\n  ).rejects.toThrow(/relation \"nonexistent_table\" does not exist/)\n})\n"
  },
  {
    "path": "packages/pglite/tests/drop-database.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\nimport * as fs from 'fs/promises'\n\ndescribe('drop database', () => {\n  it('should create and drop database', async () => {\n    const pg = await PGlite.create()\n\n    await pg.exec(`\n      CREATE DATABASE mypostgres TEMPLATE template1;\n    `)\n\n    await pg.exec(`\n      DROP DATABASE mypostgres;\n    `)\n  })\n\n  it('should drop postgres db and create from postgres', async () => {\n    await fs.rm('./pgdata-test-drop-db', { force: true, recursive: true })\n    const pg = await PGlite.create('./pgdata-test-drop-db')\n    await pg.exec(`\n      CREATE TABLE IF NOT EXISTS test (\n        id SERIAL PRIMARY KEY,\n        name TEXT\n      );\n    `)\n    await pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    await pg.exec(`\n      DROP DATABASE IF EXISTS mypostgres;\n    `)\n\n    await pg.exec(`\n      CREATE DATABASE mypostgres TEMPLATE postgres;\n    `)\n\n    await pg.close()\n\n    const pg2 = await PGlite.create('./pgdata-test-drop-db', {\n      database: 'mypostgres',\n    })\n\n    const ret = await pg2.query(`\n      SELECT * FROM test;\n    `)\n\n    expect(ret.rows).toEqual([{ id: 1, name: 'test' }])\n  })\n\n  it('should drop postgres db and restart after unclean shutdown', async () => {\n    await fs.rm('./pgdata-test-drop-db2', { force: true, recursive: true })\n    {\n      let pg: PGlite | null = await PGlite.create('./pgdata-test-drop-db2')\n      await pg.exec(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await pg.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n      await pg.exec(`\n        DROP DATABASE IF EXISTS mypostgres;\n      `)\n\n      await pg.exec(`\n        CREATE DATABASE mypostgres TEMPLATE template1;\n      `)\n\n      // we don't close pg here on purpose\n      pg = null\n    }\n\n    // pause for a bit for GC...\n    await new Promise((resolve) => setTimeout(resolve, 10))\n\n    const pg2 = await PGlite.create('./pgdata-test-drop-db2', {\n      database: 'postgres',\n    })\n\n    const ret = await pg2.query(`\n      SELECT * FROM test;\n    `)\n\n    expect(ret.rows).toEqual([{ id: 1, name: 'test' }])\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/dump.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\nimport * as fs from 'fs/promises'\n\ndescribe('dump', () => {\n  it('dump data dir and load it', async () => {\n    const pg1 = new PGlite()\n    await pg1.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n\n    const file = await pg1.dumpDataDir()\n\n    expect(typeof file).toBe('object')\n\n    const pg2 = new PGlite({\n      loadDataDir: file,\n    })\n\n    const ret2 = await pg2.query('SELECT * FROM test;')\n\n    expect(ret1).toEqual(ret2)\n  })\n\n  it('dump persisted data dir and load it', async () => {\n    const folderPath = './pgdata-test-dump'\n    await fs.rm(folderPath, { force: true, recursive: true })\n    const pg1 = new PGlite(folderPath)\n    await pg1.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n\n    const file = await pg1.dumpDataDir()\n\n    expect(typeof file).toBe('object')\n\n    const pg2 = new PGlite({\n      loadDataDir: file,\n    })\n\n    const ret2 = await pg2.query('SELECT * FROM test;')\n\n    expect(ret1).toEqual(ret2)\n\n    await pg1.close()\n    await pg2.close()\n  })\n\n  it('dump data dir and load it no compression', async () => {\n    const pg1 = new PGlite()\n    await pg1.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n\n    const file = await pg1.dumpDataDir('none')\n\n    expect(typeof file).toBe('object')\n\n    expect(file.type).toBe('application/x-tar')\n\n    const pg2 = new PGlite({\n      loadDataDir: file,\n    })\n\n    const ret2 = await pg2.query('SELECT * FROM test;')\n\n    expect(ret1).toEqual(ret2)\n  })\n\n  it('dump data dir and load it - compressed but not specified', async () => {\n    const pg1 = new PGlite()\n    await pg1.exec(`\n      CREATE TABLE IF NOT EXISTS test (\n        id SERIAL PRIMARY KEY,\n        name TEXT\n      );\n    `)\n    pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n\n    const file = await pg1.dumpDataDir()\n\n    // remove the mime type from the file\n    const file2 = new Blob([file])\n\n    expect(typeof file2).toBe('object')\n\n    const pg2 = new PGlite({\n      loadDataDir: file2,\n    })\n\n    const ret2 = await pg2.query('SELECT * FROM test;')\n\n    expect(ret1).toEqual(ret2)\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/exec-protocol.test.ts",
    "content": "import { describe, it, expect, beforeAll, afterAll } from 'vitest'\nimport { PGlite } from '../dist/index.js'\nimport { serialize } from '@electric-sql/pg-protocol'\n\ndescribe('exec protocol', () => {\n  let db: PGlite\n\n  beforeAll(async () => {\n    db = await PGlite.create()\n  })\n\n  afterAll(async () => {\n    await db.close()\n  })\n\n  it('should perform a simple query', async () => {\n    const result = await db.execProtocol(serialize.query('SELECT 1'))\n    const messageNames = result.messages.map((msg) => msg.name)\n    expect(messageNames).toEqual([\n      'rowDescription',\n      'dataRow',\n      'commandComplete',\n      'readyForQuery',\n    ])\n    expect(result.data.length).toEqual(66)\n  })\n\n  it('should perform an extended query', async () => {\n    const r1 = await db.execProtocol(serialize.parse({ text: 'SELECT $1' }))\n    const messageNames1 = r1.messages.map((msg) => msg.name)\n    expect(messageNames1).toEqual([\n      // 'notice',\n      'parseComplete',\n      // 'readyForQuery'\n    ])\n\n    const r2 = await db.execProtocol(serialize.bind({ values: ['1'] }))\n    const messageNames2 = r2.messages.map((msg) => msg.name)\n    expect(messageNames2).toEqual([\n      // 'notice',\n      'bindComplete',\n    ])\n\n    const r3 = await db.execProtocol(serialize.describe({ type: 'P' }))\n    const messageNames3 = r3.messages.map((msg) => msg.name)\n    expect(messageNames3).toEqual(['rowDescription'])\n\n    const r4 = await db.execProtocol(serialize.execute({}))\n    const messageNames4 = r4.messages.map((msg) => msg.name)\n    expect(messageNames4).toEqual(['dataRow', 'commandComplete'])\n\n    const r5 = await db.execProtocol(serialize.sync())\n    const messageNames5 = r5.messages.map((msg) => msg.name)\n    expect(messageNames5).toEqual(['readyForQuery'])\n  })\n\n  it('should handle error', async () => {\n    const result = await db.execProtocol(serialize.query('invalid sql'), {\n      throwOnError: false,\n    })\n    const messageNames = result.messages.map((msg) => msg.name)\n    expect(messageNames).toEqual(['error', 'readyForQuery'])\n  })\n\n  it('should throw error', async () => {\n    await expect(\n      db.execProtocol(serialize.query('invalid sql')),\n    ).rejects.toThrow()\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/format.test.js",
    "content": "import { describe, beforeAll, it, expect } from 'vitest'\nimport { PGlite, formatQuery } from '../dist/index.js'\n\ndescribe('format', () => {\n  let pg\n  beforeAll(async () => {\n    pg = await PGlite.create()\n  })\n\n  it('boolean', async () => {\n    await pg.exec(`\n      CREATE TABLE test1 (\n        id SERIAL PRIMARY KEY,\n        value BOOLEAN\n      );\n    `)\n    const ret1 = await formatQuery(\n      pg,\n      'SELECT * FROM test1 WHERE value = $1;',\n      [true],\n    )\n    expect(ret1).toBe(\"SELECT * FROM test1 WHERE value = 't';\")\n  })\n\n  it('number', async () => {\n    await pg.exec(`\n      CREATE TABLE test2 (\n        id SERIAL PRIMARY KEY,\n        value INTEGER\n      );\n    `)\n    const ret2 = await formatQuery(\n      pg,\n      'SELECT * FROM test2 WHERE value = $1;',\n      [1],\n    )\n    expect(ret2).toBe(\"SELECT * FROM test2 WHERE value = '1';\")\n  })\n\n  it('string', async () => {\n    await pg.exec(`\n      CREATE TABLE test3 (\n        id SERIAL PRIMARY KEY,\n        value VARCHAR\n      );\n    `)\n    const ret3 = await formatQuery(\n      pg,\n      'SELECT * FROM test3 WHERE value = $1;',\n      ['test'],\n    )\n    expect(ret3).toBe(\"SELECT * FROM test3 WHERE value = 'test';\")\n  })\n\n  it('json', async () => {\n    await pg.exec(`\n      CREATE TABLE test4 (\n        id SERIAL PRIMARY KEY,\n        value JSONB\n      );\n    `)\n    const ret4 = await formatQuery(\n      pg,\n      'SELECT * FROM test4 WHERE value = $1;',\n      [{ test: 'test' }],\n    )\n    expect(ret4).toBe('SELECT * FROM test4 WHERE value = \\'{\"test\": \"test\"}\\';')\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/fts.english.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\n/*\nfunction lc_init(db, lang) {\n// TODO: check if 'SELECT dictname FROM pg_catalog.pg_ts_dict;' has the lang \n\n    db.exec(`\nSET search_path = pg_catalog;\n\nCREATE FUNCTION dsnowball_init(INTERNAL)\n    RETURNS INTERNAL AS '$libdir/dict_snowball', 'dsnowball_init'\nLANGUAGE C STRICT;\n\nCREATE FUNCTION dsnowball_lexize(INTERNAL, INTERNAL, INTERNAL, INTERNAL)\n    RETURNS INTERNAL AS '$libdir/dict_snowball', 'dsnowball_lexize'\nLANGUAGE C STRICT;\n\nCREATE TEXT SEARCH TEMPLATE snowball\n\t(INIT = dsnowball_init,\n\tLEXIZE = dsnowball_lexize);\n\nCOMMENT ON TEXT SEARCH TEMPLATE snowball IS 'snowball stemmer';\n`)\n\n    db.exec(`\nCREATE TEXT SEARCH DICTIONARY ${lang}_stem\n\t(TEMPLATE = snowball, Language = ${lang} , StopWords=${lang});\n\nCOMMENT ON TEXT SEARCH DICTIONARY ${lang}_stem IS 'snowball stemmer for ${lang} language';\n\nCREATE TEXT SEARCH CONFIGURATION ${lang}\n\t(PARSER = default);\n\nCOMMENT ON TEXT SEARCH CONFIGURATION ${lang} IS 'configuration for ${lang} language';\n\nALTER TEXT SEARCH CONFIGURATION ${lang} ADD MAPPING\n\tFOR email, url, url_path, host, file, version,\n\t    sfloat, float, int, uint,\n\t    numword, hword_numpart, numhword\n\tWITH simple;\n\nALTER TEXT SEARCH CONFIGURATION ${lang} ADD MAPPING\n    FOR asciiword, hword_asciipart, asciihword\n\tWITH ${lang}_stem;\n\nALTER TEXT SEARCH CONFIGURATION ${lang} ADD MAPPING\n    FOR word, hword_part, hword\n\tWITH ${lang}_stem;\n`)\n}\n*/\n\ndescribe('fts', () => {\n  it('basic', async () => {\n    const db = await PGlite.create()\n\n    // lc_init(db, \"english\")\n\n    let ret = await db.query(`\n    SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery AS match;\n  `)\n    expect(ret.rows).toEqual([{ match: true }])\n\n    ret = await db.query(`\n    SELECT to_tsvector('english', 'fat cats ate fat rats') @@ to_tsquery('english', 'fat & rat') AS match;\n  `)\n    expect(ret.rows).toEqual([{ match: true }])\n\n    ret = await db.query(`\n    SELECT to_tsquery('english', 'The & Fat & Rats') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'fat' & 'rat'\" }])\n\n    ret = await db.query(`\n    SELECT to_tsquery('english', 'Fat | Rats:AB') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'fat' | 'rat':AB\" }])\n\n    ret = await db.query(`\n    SELECT to_tsquery('english', 'supern:*A & star:A*B') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'supern':*A & 'star':*AB\" }])\n\n    ret = await db.query(`\n    SELECT plainto_tsquery('english', 'The Fat Rats') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'fat' & 'rat'\" }])\n\n    ret = await db.query(`\n    SELECT plainto_tsquery('english', 'The Fat & Rats:C') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'fat' & 'rat' & 'c'\" }])\n\n    ret = await db.query(`\n    SELECT phraseto_tsquery('english', 'The Fat Rats') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'fat' <-> 'rat'\" }])\n\n    ret = await db.query(`\n    SELECT websearch_to_tsquery('english', '\"supernovae stars\" -crab') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'supernova' <-> 'star' & !'crab'\" }])\n\n    ret = await db.query(`\n    SELECT websearch_to_tsquery('english', '\"sad cat\" or \"fat rat\"') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'sad' <-> 'cat' | 'fat' <-> 'rat'\" }])\n\n    ret = await db.query(`\n    SELECT websearch_to_tsquery('english', 'signal -\"segmentation fault\"') as value;\n  `)\n    expect(ret.rows).toEqual([\n      { value: \"'signal' & !( 'segment' <-> 'fault' )\" },\n    ])\n  })\n\n  it('ranking', async () => {\n    const db = await PGlite.create()\n\n    // lc_init(db, \"english\")\n\n    await db.query(`\n    CREATE TABLE fts_ranking (\n      id serial PRIMARY KEY,\n      title text,\n      body text\n    );\n  `)\n\n    await db.query(`\n    INSERT INTO fts_ranking (title, body)\n    VALUES\n      ('The Fat Rats', 'The fat rats ate the fat cats.'),\n      ('The Fat Cats', 'The fat cats ate the fat rats.'),\n      ('The Fat Cats and Rats', 'The fat cats and rats ate the fat rats and cats.');\n  `)\n\n    let ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0.16666667,\n        title: 'The Fat Cats and Rats',\n      },\n      {\n        rank: 0.13333334,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0.1,\n        title: 'The Fat Cats',\n      },\n    ])\n\n    ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat | rat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0.4,\n        title: 'The Fat Cats and Rats',\n      },\n      {\n        rank: 0.3,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0.3,\n        title: 'The Fat Cats',\n      },\n    ])\n\n    ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat | cat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0.33333334,\n        title: 'The Fat Cats and Rats',\n      },\n      {\n        rank: 0.23333333,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0.2,\n        title: 'The Fat Cats',\n      },\n    ])\n\n    ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('english', body), to_tsquery('english', 'fat & rat | cat & rat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0.23333333,\n        title: 'The Fat Cats and Rats',\n      },\n      {\n        rank: 0.13333334,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0.1,\n        title: 'The Fat Cats',\n      },\n    ])\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/fts.simple.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('fts', () => {\n  it('basic', async () => {\n    const db = await PGlite.create({ debug: false })\n\n    let ret = await db.query(\n      `SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'cat & rat'::tsquery AS match;`,\n    )\n    expect(ret.rows).toEqual([{ match: true }])\n\n    ret = await db.query(`\n    SELECT to_tsvector('simple', 'fat cats ate fat rats') @@ to_tsquery('simple', 'fat & rat') AS match;\n  `)\n    expect(ret.rows).toEqual([{ match: false }])\n\n    ret = await db.query(`\n    SELECT to_tsquery('simple', 'The & Fat & Rats') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'the' & 'fat' & 'rats'\" }])\n\n    ret = await db.query(`\n    SELECT to_tsquery('simple', 'Fat | Rats:AB') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'fat' | 'rats':AB\" }])\n\n    ret = await db.query(`\n    SELECT to_tsquery('simple', 'supern:*A & star:A*B') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'supern':*A & 'star':*AB\" }])\n\n    ret = await db.query(`\n    SELECT plainto_tsquery('simple', 'The Fat Rats') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'the' & 'fat' & 'rats'\" }])\n\n    ret = await db.query(`\n    SELECT plainto_tsquery('simple', 'The Fat & Rats:C') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'the' & 'fat' & 'rats' & 'c'\" }])\n\n    ret = await db.query(`\n    SELECT phraseto_tsquery('simple', 'The Fat Rats') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'the' <-> 'fat' <-> 'rats'\" }])\n\n    ret = await db.query(`\n    SELECT websearch_to_tsquery('simple', '\"supernovae stars\" -crab') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'supernovae' <-> 'stars' & !'crab'\" }])\n\n    ret = await db.query(`\n    SELECT websearch_to_tsquery('simple', '\"sad cat\" or \"fat rat\"') as value;\n  `)\n    expect(ret.rows).toEqual([{ value: \"'sad' <-> 'cat' | 'fat' <-> 'rat'\" }])\n\n    ret = await db.query(`\n    SELECT websearch_to_tsquery('simple', 'signal -\"segmentation fault\"') as value;\n  `)\n    expect(ret.rows).toEqual([\n      { value: \"'signal' & !( 'segmentation' <-> 'fault' )\" },\n    ])\n  })\n\n  it('ranking', async () => {\n    const db = await PGlite.create()\n\n    await db.query(`\n    CREATE TABLE fts_ranking (\n      id serial PRIMARY KEY,\n      title text,\n      body text\n    );\n  `)\n\n    await db.query(`\n    INSERT INTO fts_ranking (title, body)\n    VALUES\n      ('The Fat Rats', 'The fat rats ate the fat cats.'),\n      ('The Fat Cats', 'The fat cats ate the fat rats.'),\n      ('The Fat Cats and Rats', 'The fat cats and rats ate the fat rats and cats.');\n  `)\n\n    let ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat & rat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0,\n        title: 'The Fat Cats',\n      },\n      {\n        rank: 0,\n        title: 'The Fat Cats and Rats',\n      },\n    ])\n\n    ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat | rat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0.2,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0.2,\n        title: 'The Fat Cats',\n      },\n      {\n        rank: 0.2,\n        title: 'The Fat Cats and Rats',\n      },\n    ])\n\n    ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat & rat | cat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0,\n        title: 'The Fat Cats',\n      },\n      {\n        rank: 0,\n        title: 'The Fat Cats and Rats',\n      },\n    ])\n\n    ret = await db.query(`\n    SELECT title, ts_rank_cd(to_tsvector('simple', body), to_tsquery('simple', 'fat & rat | cat & rat')) as rank\n    FROM fts_ranking\n    ORDER BY rank DESC;\n  `)\n    expect(ret.rows).toEqual([\n      {\n        rank: 0,\n        title: 'The Fat Rats',\n      },\n      {\n        rank: 0,\n        title: 'The Fat Cats',\n      },\n      {\n        rank: 0,\n        title: 'The Fat Cats and Rats',\n      },\n    ])\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/instantiation.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('instantiation', () => {\n  testInstatiationMethod('constructor')\n  testInstatiationMethod('static `create` factory')\n})\n\nfunction testInstatiationMethod(\n  method: 'constructor' | 'static `create` factory',\n) {\n  const instantiateDb = async (...args) => {\n    switch (method) {\n      case 'constructor':\n        return new PGlite(...args)\n      case 'static `create` factory':\n        return await PGlite.create(...args)\n      default:\n        throw new Error(`Invalid instantiation method ${method}`)\n    }\n  }\n\n  describe(`${method}`, () => {\n    it('should instantiate with defaults', async () => {\n      const pg = await instantiateDb()\n      const res = await pg.query(`SELECT 1 as one;`)\n      expect(res.rows[0]?.['one']).toBe(1)\n    })\n\n    it('should instantiate with data dir argument', async () => {\n      const pg = await instantiateDb('./pgdata-test')\n      const res = await pg.query(`SELECT 1 as one;`)\n      expect(res.rows[0]?.['one']).toBe(1)\n    })\n\n    it('should instantiate with options', async () => {\n      const pg = await instantiateDb({\n        dataDir: './pgdata-test',\n      })\n      const res = await pg.query(`SELECT 1 as one;`)\n      expect(res.rows[0]?.['one']).toBe(1)\n    })\n  })\n}\n"
  },
  {
    "path": "packages/pglite/tests/largeobjects.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('large objects', () => {\n  it('blob', async () => {\n    const pg = new PGlite()\n\n    const text = 'hello world'\n    const blob = new Blob([text], { type: 'text/plain' })\n\n    await pg.exec(`\n      CREATE TABLE test (id SERIAL PRIMARY KEY, data OID);\n    `)\n\n    await pg.query(\n      `\n      INSERT INTO test (data) VALUES (lo_import('/dev/blob'));\n    `,\n      [],\n      {\n        blob,\n      },\n    )\n\n    const res = await pg.query(`\n      SELECT lo_export(data, '/dev/blob') AS data FROM test;\n    `)\n\n    const data = res.blob\n    const asText = await data.text()\n    expect(asText).toBe(text)\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/live.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } = (\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : await import('../dist/index.cjs')\n  ) as typeof import('../dist/index.js')\n\n  const { live } =\n    importType === 'esm'\n      ? await import('../dist/live/index.js')\n      : await import('../dist/live/index.cjs')\n\n  describe(`live`, () => {\n    it('basic live query', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.query(\n        'SELECT * FROM testTable ORDER BY number;',\n        [],\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n    })\n\n    it('live query on view', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        CREATE OR REPLACE VIEW testView2 AS\n        SELECT * FROM testTable;\n      `)\n\n      await db.exec(`\n        CREATE OR REPLACE VIEW testView1 AS\n        SELECT * FROM testView2;\n      `)\n\n      await db.exec(`\n        CREATE OR REPLACE VIEW testView AS\n        SELECT * FROM testView1;\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.query(\n        'SELECT * FROM testView ORDER BY number;',\n        [],\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n    })\n\n    it('live query with params', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.query(\n        'SELECT * FROM testTable WHERE number < $1 ORDER BY number;',\n        [40],\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n      ])\n    })\n\n    it('incremental query unordered', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        VALUES (1), (2);\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.incrementalQuery(\n        'SELECT * FROM testTable;',\n        [],\n        'id',\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 1 },\n        { id: 2, number: 2 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 10 WHERE id = 1;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 2, number: 2 },\n        { id: 1, number: 10 },\n      ])\n\n      await unsubscribe()\n    })\n\n    it('incremental query with non-integer key', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id TEXT PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (id, number)\n        VALUES ('potato', 1), ('banana', 2);\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.incrementalQuery(\n        'SELECT * FROM testTable;',\n        [],\n        'id',\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 'potato', number: 1 },\n        { id: 'banana', number: 2 },\n      ])\n\n      await db.exec(`UPDATE testTable SET number = 10 WHERE id = 'potato';`)\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 'banana', number: 2 },\n        { id: 'potato', number: 10 },\n      ])\n\n      await unsubscribe()\n    })\n\n    it('basic live incremental query', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.incrementalQuery(\n        'SELECT * FROM testTable ORDER BY number;',\n        [],\n        'id',\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n    })\n\n    it('basic live incremental query with limit 1', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number) VALUES (10);\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.incrementalQuery(\n        'SELECT * FROM testTable ORDER BY number ASC LIMIT 1;',\n        [],\n        'id',\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([{ id: 1, number: 10 }])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (5);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([{ id: 2, number: 5 }])\n\n      await unsubscribe()\n    })\n\n    it('live incremental query on view', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        CREATE OR REPLACE VIEW testView2 AS\n        SELECT * FROM testTable;\n      `)\n\n      await db.exec(`\n        CREATE OR REPLACE VIEW testView1 AS\n        SELECT * FROM testView2;\n      `)\n\n      await db.exec(`\n        CREATE OR REPLACE VIEW testView AS\n        SELECT * FROM testView1;\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.incrementalQuery(\n        'SELECT * FROM testTable ORDER BY number;',\n        [],\n        'id',\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n    })\n\n    it('live incremental query with params', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe } = await db.live.incrementalQuery(\n        'SELECT * FROM testTable WHERE number < $1 ORDER BY number;',\n        [40],\n        'id',\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 3, number: 15 },\n        { id: 2, number: 20 },\n      ])\n    })\n\n    it('basic live changes', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedChanges\n      const eventTarget = new EventTarget()\n\n      const { initialChanges, unsubscribe } = await db.live.changes(\n        'SELECT * FROM testTable ORDER BY number;',\n        [],\n        'id',\n        (changes) => {\n          updatedChanges = changes\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialChanges).toEqual([\n        {\n          __op__: 'INSERT',\n          id: 1,\n          number: 10,\n          __after__: null,\n          __changed_columns__: [],\n        },\n        {\n          __op__: 'INSERT',\n          id: 2,\n          number: 20,\n          __after__: 1,\n          __changed_columns__: [],\n        },\n        {\n          __op__: 'INSERT',\n          id: 3,\n          number: 30,\n          __after__: 2,\n          __changed_columns__: [],\n        },\n        {\n          __op__: 'INSERT',\n          id: 4,\n          number: 40,\n          __after__: 3,\n          __changed_columns__: [],\n        },\n        {\n          __op__: 'INSERT',\n          id: 5,\n          number: 50,\n          __after__: 4,\n          __changed_columns__: [],\n        },\n      ])\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedChanges).toEqual([\n        {\n          __op__: 'INSERT',\n          id: 6,\n          number: 25,\n          __after__: 2,\n          __changed_columns__: [],\n        },\n        {\n          __after__: 6,\n          __changed_columns__: ['__after__'],\n          __op__: 'UPDATE',\n          id: 3,\n          number: null,\n        },\n      ])\n\n      await db.exec('DELETE FROM testTable WHERE id = 6;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedChanges).toEqual([\n        {\n          __op__: 'DELETE',\n          id: 6,\n          number: null,\n          __after__: null,\n          __changed_columns__: [],\n        },\n        {\n          __after__: 2,\n          __changed_columns__: ['__after__'],\n          __op__: 'UPDATE',\n          id: 3,\n          number: null,\n        },\n      ])\n\n      await db.exec('UPDATE testTable SET number = 15 WHERE id = 3;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedChanges).toEqual([\n        {\n          id: 2,\n          __after__: 3,\n          __changed_columns__: ['__after__'],\n          __op__: 'UPDATE',\n          number: null,\n        },\n        {\n          id: 3,\n          __after__: 1,\n          __changed_columns__: ['number', '__after__'],\n          __op__: 'UPDATE',\n          number: 15,\n        },\n        {\n          id: 4,\n          __after__: 2,\n          __changed_columns__: ['__after__'],\n          __op__: 'UPDATE',\n          number: null,\n        },\n      ])\n\n      await unsubscribe()\n\n      await db.exec('INSERT INTO testTable (number) VALUES (35);')\n\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      expect(updatedChanges).toEqual([\n        {\n          id: 2,\n          __after__: 3,\n          __changed_columns__: ['__after__'],\n          __op__: 'UPDATE',\n          number: null,\n        },\n        {\n          id: 3,\n          __after__: 1,\n          __changed_columns__: ['number', '__after__'],\n          __op__: 'UPDATE',\n          number: 15,\n        },\n        {\n          id: 4,\n          __after__: 2,\n          __changed_columns__: ['__after__'],\n          __op__: 'UPDATE',\n          number: null,\n        },\n      ])\n    })\n\n    it('subscribe to live query after creation', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      const eventTarget = new EventTarget()\n      let updatedResults\n\n      const { initialResults, subscribe, unsubscribe } = await db.live.query(\n        'SELECT * FROM testTable ORDER BY number;',\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      // Subscribe after creation\n      subscribe((result) => {\n        updatedResults = result\n        eventTarget.dispatchEvent(new Event('change'))\n      })\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await unsubscribe()\n    })\n\n    it('live changes limit 1', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number) VALUES (10);\n      `)\n\n      let updatedChanges\n      const eventTarget = new EventTarget()\n\n      const { initialChanges, subscribe, unsubscribe } = await db.live.changes({\n        query: 'SELECT * FROM testTable ORDER BY number ASC LIMIT 1;',\n        params: [],\n        key: 'id',\n      })\n\n      expect(initialChanges).toEqual([\n        {\n          __op__: 'INSERT',\n          id: 1,\n          number: 10,\n          __after__: null,\n          __changed_columns__: [],\n        },\n      ])\n\n      subscribe((changes) => {\n        updatedChanges = changes\n        eventTarget.dispatchEvent(new Event('change'))\n      })\n\n      await db.exec('INSERT INTO testTable (number) VALUES (5);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedChanges).toEqual([\n        {\n          __op__: 'INSERT',\n          id: 2,\n          number: 5,\n          __after__: null,\n          __changed_columns__: [],\n        },\n        {\n          __op__: 'DELETE',\n          id: 1,\n          number: null,\n          __after__: null,\n          __changed_columns__: [],\n        },\n      ])\n\n      await unsubscribe()\n    })\n\n    it('subscribe to live changes after creation', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      const eventTarget = new EventTarget()\n      let updatedResults\n\n      const { initialResults, subscribe, unsubscribe } =\n        await db.live.incrementalQuery(\n          'SELECT * FROM testTable ORDER BY number;',\n          [],\n          'id',\n        )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      // Subscribe after creation\n      subscribe((result) => {\n        updatedResults = result\n        eventTarget.dispatchEvent(new Event('change'))\n      })\n\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, number: 10 },\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n        { id: 5, number: 50 },\n      ])\n\n      await unsubscribe()\n    })\n\n    it('live query with windowing', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      await db.exec(`\n        INSERT INTO testTable (number)\n        SELECT i*10 FROM generate_series(1, 5) i;\n      `)\n\n      let updatedResults\n      const eventTarget = new EventTarget()\n\n      const { initialResults, unsubscribe, refresh } = await db.live.query({\n        query: 'SELECT * FROM testTable ORDER BY number',\n        offset: 1,\n        limit: 2,\n        callback: (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      })\n\n      // Check initial results include windowing metadata\n      expect(initialResults.rows).toEqual([\n        { id: 2, number: 20 },\n        { id: 3, number: 30 },\n      ])\n      expect(initialResults.offset).toBe(1)\n      expect(initialResults.limit).toBe(2)\n      expect(initialResults.totalCount).toBe(5)\n\n      // Insert a row that affects the window\n      await db.exec('INSERT INTO testTable (number) VALUES (25);')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([\n        { id: 2, number: 20 },\n        { id: 6, number: 25 },\n      ])\n      expect(updatedResults.totalCount).toBe(5) // initially its still 5\n\n      // We wait again for the total count to update, this is done lazily\n      // as it can be slower to calculate, we want the UI to update fast.\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.totalCount).toBe(6) // now its 6\n\n      // Test changing window position\n      await refresh({ offset: 3, limit: 2 })\n\n      expect(updatedResults.rows).toEqual([\n        { id: 3, number: 30 },\n        { id: 4, number: 40 },\n      ])\n      expect(updatedResults.offset).toBe(3)\n      expect(updatedResults.limit).toBe(2)\n      expect(updatedResults.totalCount).toBe(6)\n\n      // Delete rows to affect totalCount\n      await db.exec('DELETE FROM testTable WHERE number > 30;')\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.rows).toEqual([{ id: 3, number: 30 }])\n      expect(updatedResults.totalCount).toBe(6) // initially its still 6\n\n      // We wait again for the total count to update\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      expect(updatedResults.totalCount).toBe(4) // now its 4\n\n      await unsubscribe()\n    })\n\n    it('throws error when only one of offset/limit is provided', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await expect(\n        db.live.query({\n          query: 'SELECT * FROM (VALUES (1)) t',\n          offset: 0,\n        }),\n      ).rejects.toThrow('offset and limit must be provided together')\n\n      await expect(\n        db.live.query({\n          query: 'SELECT * FROM (VALUES (1)) t',\n          limit: 10,\n        }),\n      ).rejects.toThrow('offset and limit must be provided together')\n    })\n\n    it('throws error when offset/limit are not numbers', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await expect(\n        db.live.query({\n          query: 'SELECT * FROM (VALUES (1)) t',\n          offset: '0' as any,\n          limit: 10,\n        }),\n      ).rejects.toThrow('offset and limit must be numbers')\n\n      await expect(\n        db.live.query({\n          query: 'SELECT * FROM (VALUES (1)) t',\n          offset: 0,\n          limit: '10' as any,\n        }),\n      ).rejects.toThrow('offset and limit must be numbers')\n    })\n\n    it(\"doesn't have a race condition when unsubscribing from a live query\", async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          number INT\n        );\n      `)\n\n      let results\n      const eventTarget = new EventTarget()\n\n      // Create a first live query\n      const { unsubscribe } = await db.live.query({\n        query: 'SELECT * FROM testTable WHERE number > 1',\n      })\n\n      // Create a second live query that listens to the same channel, but don't\n      // await it's subscription to complete.\n      // This creates a race condition with the following unsubscribe, both are\n      // potentially interlaced with each other.\n      await db.live.query({\n        query: 'SELECT * FROM testTable WHERE number > 2',\n        callback: (result) => {\n          results = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      })\n\n      // Unsubscribe from the first live query\n      await unsubscribe()\n\n      const promise = new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      await db.exec('INSERT INTO testTable (number) VALUES (3);')\n\n      // In a failed test, this will never resolve.\n      await promise\n\n      expect(results.rows).toEqual([{ id: 1, number: 3 }])\n    }, 3000)\n\n    it('works with pattern matching', async () => {\n      const db = await PGlite.create({\n        extensions: { live },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS testTable (\n          id SERIAL PRIMARY KEY,\n          statement VARCHAR(100)\n        );\n        INSERT INTO testTable (statement) VALUES ('i love pglite!');\n      `)\n\n      const eventTarget = new EventTarget()\n      let updatedResults\n\n      const { initialResults, unsubscribe } = await db.live.query(\n        `SELECT\n          id,\n          statement \n        FROM testTable\n        WHERE \n          statement ILIKE '%pglite%'\n        ORDER BY id;`,\n        [],\n        (result) => {\n          updatedResults = result\n          eventTarget.dispatchEvent(new Event('change'))\n        },\n      )\n\n      expect(initialResults.rows).toEqual([\n        { id: 1, statement: 'i love pglite!' },\n      ])\n\n      await db.exec(\n        `INSERT INTO testTable (statement) VALUES ('This should not be in the results!');`,\n      )\n      await db.exec(\n        `INSERT INTO testTable (statement) VALUES ('PGlite is da best!');`,\n      )\n\n      await new Promise((resolve) =>\n        eventTarget.addEventListener('change', resolve, { once: true }),\n      )\n\n      await unsubscribe()\n\n      expect(updatedResults.rows).toEqual([\n        { id: 1, statement: 'i love pglite!' },\n        { id: 3, statement: 'PGlite is da best!' },\n      ])\n    })\n  })\n\n  it('basic live query - case sensitive table name', async () => {\n    const db = await PGlite.create({\n      extensions: { live },\n    })\n\n    await db.exec(`\n      CREATE TABLE IF NOT EXISTS \"cAseSENSiTYVE\" (\n        id SERIAL PRIMARY KEY,\n        number INT\n      );\n    `)\n\n    await db.exec(`\n      INSERT INTO \"cAseSENSiTYVE\" (number)\n      SELECT i*10 FROM generate_series(1, 5) i;\n    `)\n\n    let updatedResults\n    const eventTarget = new EventTarget()\n\n    const { initialResults, unsubscribe } = await db.live.query(\n      'SELECT * FROM \"cAseSENSiTYVE\" ORDER BY number;',\n      [],\n      (result) => {\n        updatedResults = result\n        eventTarget.dispatchEvent(new Event('change'))\n      },\n    )\n\n    expect(initialResults.rows).toEqual([\n      { id: 1, number: 10 },\n      { id: 2, number: 20 },\n      { id: 3, number: 30 },\n      { id: 4, number: 40 },\n      { id: 5, number: 50 },\n    ])\n\n    db.exec('INSERT INTO \"cAseSENSiTYVE\" (number) VALUES (25);')\n\n    await new Promise((resolve) =>\n      eventTarget.addEventListener('change', resolve, { once: true }),\n    )\n\n    expect(updatedResults.rows).toEqual([\n      { id: 1, number: 10 },\n      { id: 2, number: 20 },\n      { id: 6, number: 25 },\n      { id: 3, number: 30 },\n      { id: 4, number: 40 },\n      { id: 5, number: 50 },\n    ])\n\n    db.exec('DELETE FROM \"cAseSENSiTYVE\" WHERE id = 6;')\n\n    await new Promise((resolve) =>\n      eventTarget.addEventListener('change', resolve, { once: true }),\n    )\n\n    expect(updatedResults.rows).toEqual([\n      { id: 1, number: 10 },\n      { id: 2, number: 20 },\n      { id: 3, number: 30 },\n      { id: 4, number: 40 },\n      { id: 5, number: 50 },\n    ])\n\n    db.exec('UPDATE \"cAseSENSiTYVE\" SET number = 15 WHERE id = 3;')\n\n    await new Promise((resolve) =>\n      eventTarget.addEventListener('change', resolve, { once: true }),\n    )\n\n    expect(updatedResults.rows).toEqual([\n      { id: 1, number: 10 },\n      { id: 3, number: 15 },\n      { id: 2, number: 20 },\n      { id: 4, number: 40 },\n      { id: 5, number: 50 },\n    ])\n\n    unsubscribe()\n\n    db.exec('INSERT INTO \"cAseSENSiTYVE\" (number) VALUES (35);')\n\n    await new Promise((resolve) => setTimeout(resolve, 100))\n\n    expect(updatedResults.rows).toEqual([\n      { id: 1, number: 10 },\n      { id: 3, number: 15 },\n      { id: 2, number: 20 },\n      { id: 4, number: 40 },\n      { id: 5, number: 50 },\n    ])\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/message-context-leak.test.ts",
    "content": "import { describe, it, expect, beforeEach } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.js'\nimport { PGlite } from '../dist/index.js'\n\n// This test isolates the MessageContext leak reported in\n// https://github.com/electric-sql/pglite/issues/779\n// It inserts many rows with large JSON literals and then inspects\n// pg_backend_memory_contexts to ensure MessageContext has been reset\n// between queries and does not accumulate unbounded allocations.\n\nconst KB = 1024\n\nfunction makeJsonBlob(size: number): string {\n  // Keep the SQL literal simple (mostly \"x\" payload) to simulate\n  // large messages while avoiding excessive parsing overhead.\n  return JSON.stringify({ padding: 'x'.repeat(size) })\n}\n\ntestEsmCjsAndDTC(async () => {\n  describe('MessageContext reset between queries', () => {\n    let db: PGlite\n\n    beforeEach(async () => {\n      db = new PGlite()\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS leak_test (\n          id SERIAL PRIMARY KEY,\n          blob jsonb NOT NULL\n        );\n      `)\n    })\n\n    it('does not accumulate allocations in MessageContext', async () => {\n      // Choose sizes to expose the leak without taking too long.\n      const blobSize = 100 * KB // ~100KB per row\n      const rows = 300 // ~30MB of total SQL literal payload\n\n      const blob = makeJsonBlob(blobSize)\n\n      for (let i = 0; i < rows; i++) {\n        await db.exec(`INSERT INTO leak_test (blob) VALUES ('${blob}')`)\n      }\n\n      // After the loop, the next query should see a freshly reset\n      // MessageContext (reset happens at the start of command read),\n      // so used_bytes should remain small (well below the total data inserted).\n      const mem = await db.query<{ used_bytes: number }>(`\n        SELECT used_bytes\n        FROM pg_backend_memory_contexts\n        WHERE name = 'MessageContext'\n        ORDER BY level\n        LIMIT 1\n      `)\n\n      expect(mem.rows).toHaveLength(1)\n      const used = Number(mem.rows[0].used_bytes)\n\n      // On a correctly resetting build, MessageContext should typically be in the\n      // low kilobytes to a few megabytes range. Set an upper bound that will fail\n      // if allocations accumulated across the INSERTs (~30MB of literal payload).\n      // Using 5MB as a generous ceiling for transient allocations of this SELECT.\n      expect(used).toBeLessThan(5 * 1024 * 1024)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/notify.test.ts",
    "content": "import { describe, it, expect, vi } from 'vitest'\nimport { PGlite } from '../dist/index.js'\nimport { expectToThrowAsync } from './test-utils.js'\n\ndescribe('notify API', () => {\n  it('notify', async () => {\n    const db = new PGlite()\n\n    await db.listen('test', (payload) => {\n      expect(payload).toBe('321')\n    })\n\n    await db.exec(\"NOTIFY test, '321'\")\n\n    await new Promise((resolve) => setTimeout(resolve, 1000))\n  })\n\n  it('unlisten', async () => {\n    const db = new PGlite()\n\n    const unsub = await db.listen('test', () => {\n      throw new Error('Notification received after unsubscribed')\n    })\n\n    await unsub()\n\n    await db.exec('NOTIFY test')\n\n    await new Promise((resolve) => setTimeout(resolve, 1000))\n  })\n\n  it('onNotification', async () => {\n    const db = new PGlite()\n\n    db.onNotification((chan, payload) => {\n      expect(chan).toBe('test')\n      expect(payload).toBe('123')\n    })\n\n    await db.exec('LISTEN test')\n    await db.exec(\"NOTIFY test, '123'\")\n\n    await new Promise((resolve) => setTimeout(resolve, 1000))\n  })\n\n  it('check notify case sensitivity + special chars as Postgresql', async () => {\n    const pg = new PGlite()\n\n    const allLower1 = vi.fn()\n    await pg.listen('postgresdefaultlower', allLower1)\n    await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`)\n\n    const autoLowerTest1 = vi.fn()\n    await pg.listen('PostgresDefaultLower', autoLowerTest1)\n    await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`)\n\n    const autoLowerTest2 = vi.fn()\n    await pg.listen('PostgresDefaultLower', autoLowerTest2)\n    await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`)\n\n    const autoLowerTest3 = vi.fn()\n    await pg.listen('postgresdefaultlower', autoLowerTest3)\n    await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`)\n\n    const caseSensitive1 = vi.fn()\n    await pg.listen('\"tesT2\"', caseSensitive1)\n    await pg.exec(`NOTIFY \"tesT2\", 'paYloAd2'`)\n\n    const caseSensitive2 = vi.fn()\n    await pg.listen('\"tesT3\"', caseSensitive2)\n    await pg.exec(`NOTIFY tesT3, 'paYloAd2'`)\n\n    const caseSensitive3 = vi.fn()\n    await pg.listen('testNotCalled2', caseSensitive3)\n    await pg.exec(`NOTIFY \"testNotCalled2\", 'paYloAd2'`)\n\n    const quotedWithSpaces = vi.fn()\n    await pg.listen('\"Quoted Channel With Spaces\"', quotedWithSpaces)\n    await pg.exec(`NOTIFY \"Quoted Channel With Spaces\", 'payload1'`)\n\n    const unquotedWithSpaces = vi.fn()\n    await expectToThrowAsync(async () => {\n      await pg.listen('Unquoted Channel With Spaces', unquotedWithSpaces)\n    })\n    await expectToThrowAsync(async () => {\n      await pg.exec(`NOTIFY Unquoted Channel With Spaces, 'payload1'`)\n    })\n\n    const otherCharsWithQuotes = vi.fn()\n    await pg.listen('\"test&me\"', otherCharsWithQuotes)\n    await pg.exec(`NOTIFY \"test&me\", 'paYloAd2'`)\n\n    const otherChars = vi.fn()\n    await expectToThrowAsync(async () => {\n      await pg.listen('test&me', otherChars)\n    })\n    await expectToThrowAsync(async () => {\n      await pg.exec(`NOTIFY test&me, 'payload1'`)\n    })\n\n    expect(allLower1).toHaveBeenCalledTimes(4)\n    expect(autoLowerTest1).toHaveBeenCalledTimes(3)\n    expect(autoLowerTest2).toHaveBeenCalledTimes(2)\n    expect(autoLowerTest3).toHaveBeenCalledTimes(1)\n    expect(caseSensitive1).toHaveBeenCalledOnce()\n    expect(caseSensitive2).not.toHaveBeenCalled()\n    expect(caseSensitive3).not.toHaveBeenCalled()\n    expect(otherCharsWithQuotes).toHaveBeenCalledOnce()\n    expect(quotedWithSpaces).toHaveBeenCalledOnce()\n    expect(unquotedWithSpaces).not.toHaveBeenCalled()\n  })\n\n  it('check unlisten case sensitivity + special chars as Postgresql', async () => {\n    const pg = new PGlite()\n\n    const allLower1 = vi.fn()\n    {\n      const unsub1 = await pg.listen('postgresdefaultlower', allLower1)\n      await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`)\n      await unsub1()\n    }\n\n    const autoLowerTest1 = vi.fn()\n    {\n      const unsub2 = await pg.listen('PostgresDefaultLower', autoLowerTest1)\n      await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`)\n      await unsub2()\n    }\n\n    const autoLowerTest2 = vi.fn()\n    {\n      const unsub3 = await pg.listen('PostgresDefaultLower', autoLowerTest2)\n      await pg.exec(`NOTIFY postgresdefaultlower, 'payload1'`)\n      await unsub3()\n    }\n\n    const autoLowerTest3 = vi.fn()\n    {\n      const unsub4 = await pg.listen('postgresdefaultlower', autoLowerTest3)\n      await pg.exec(`NOTIFY PostgresDefaultLower, 'payload1'`)\n      await unsub4()\n    }\n\n    const caseSensitive1 = vi.fn()\n    {\n      await pg.listen('\"CaSESEnsiTIvE\"', caseSensitive1)\n      await pg.exec(`NOTIFY \"CaSESEnsiTIvE\", 'payload1'`)\n      await pg.unlisten('\"CaSESEnsiTIvE\"')\n      await pg.exec(`NOTIFY \"CaSESEnsiTIvE\", 'payload1'`)\n    }\n\n    const quotedWithSpaces = vi.fn()\n    {\n      await pg.listen('\"Quoted Channel With Spaces\"', quotedWithSpaces)\n      await pg.exec(`NOTIFY \"Quoted Channel With Spaces\", 'payload1'`)\n      await pg.unlisten('\"Quoted Channel With Spaces\"')\n    }\n\n    const otherCharsWithQuotes = vi.fn()\n    {\n      await pg.listen('\"test&me\"', otherCharsWithQuotes)\n      await pg.exec(`NOTIFY \"test&me\", 'payload'`)\n      await pg.unlisten('\"test&me\"')\n    }\n\n    expect(allLower1).toHaveBeenCalledOnce()\n    expect(autoLowerTest1).toHaveBeenCalledOnce()\n    expect(autoLowerTest2).toHaveBeenCalledOnce()\n    expect(autoLowerTest3).toHaveBeenCalledOnce()\n    expect(caseSensitive1).toHaveBeenCalledOnce()\n    expect(otherCharsWithQuotes).toHaveBeenCalledOnce()\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/pg_hashids.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { pg_hashids } =\n    importType === 'esm'\n      ? await import('../dist/pg_hashids/index.js')\n      : ((await import(\n          '../dist/pg_hashids/index.cjs'\n        )) as unknown as typeof import('../dist/pg_hashids/index.js'))\n\n  describe(`pg_hashids`, () => {\n    it('can load extension', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.query<{ extname: string }>(`\n        SELECT extname\n        FROM pg_extension\n        WHERE extname = 'pg_hashids'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].extname).toBe('pg_hashids')\n    })\n\n    it('should return a hash using the default alphabet and empty salt', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(`SELECT id_encode(1001);`)\n\n      expect(res[0].rows[0].id_encode).toEqual('jNl')\n    })\n\n    it('should return a hash using the default alphabet and supplied salt', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(`SELECT id_encode(1234567, 'This is my salt');`)\n\n      expect(res[0].rows[0].id_encode).toEqual('Pdzxp')\n    })\n\n    it('should return a hash using the default alphabet, salt and minimum hash length', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_encode(1234567, 'This is my salt', 10);`,\n      )\n\n      expect(res[0].rows[0].id_encode).toEqual('PlRPdzxpR7')\n    })\n\n    it('should return a hash using the supplied alphabet, salt and minimum hash length', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_encode(1234567, 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890');`,\n      )\n\n      expect(res[0].rows[0].id_encode).toEqual('3GJ956J9B9')\n    })\n\n    it('should decode previously generated hash', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_decode('PlRPdzxpR7', 'This is my salt', 10);`,\n      )\n\n      expect(res[0].rows[0].id_decode).toEqual([1234567])\n    })\n\n    it('should decode previously generated hash using the supplied alphabet', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_decode('3GJ956J9B9', 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890');`,\n      )\n\n      expect(res[0].rows[0].id_decode).toEqual([1234567])\n    })\n\n    it('should decode previously generated hash into a single integer', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(`SELECT id_decode_once('jNl');`)\n\n      expect(res[0].rows[0].id_decode_once).toEqual(1001)\n    })\n\n    it('should decode previously generated hash into a single integer using the supplied salt', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_decode_once('Pdzxp', 'This is my salt');`,\n      )\n\n      expect(res[0].rows[0].id_decode_once).toEqual(1234567)\n    })\n\n    it('should decode previously generated hash into a single integer using the supplied salt and minimum hash length', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_decode_once('PlRPdzxpR7', 'This is my salt', 10);`,\n      )\n\n      expect(res[0].rows[0].id_decode_once).toEqual(1234567)\n    })\n\n    it('should decode previously generated hash into a single integer using the supplied alphabet', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_hashids,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_hashids;')\n\n      const res = await pg.exec(\n        `SELECT id_decode_once('3GJ956J9B9', 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890');`,\n      )\n\n      expect(res[0].rows[0].id_decode_once).toEqual(1234567)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/pg_ivm.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { pg_ivm } =\n    importType === 'esm'\n      ? await import('../dist/pg_ivm/index.js')\n      : ((await import(\n          '../dist/pg_ivm/index.cjs'\n        )) as unknown as typeof import('../dist/pg_ivm/index.js'))\n\n  describe(`pg_ivm`, () => {\n    it('can load extension', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_ivm,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;')\n\n      // Verify the extension is loaded\n      const res = await pg.query<{ extname: string }>(`\n        SELECT extname \n        FROM pg_extension \n        WHERE extname = 'pg_ivm'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].extname).toBe('pg_ivm')\n    })\n\n    it('can create incremental materialized view', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_ivm,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;')\n\n      // Create base table\n      await pg.exec(`\n        CREATE TABLE orders (\n          id SERIAL PRIMARY KEY,\n          customer_id INTEGER,\n          amount DECIMAL(10,2),\n          created_at TIMESTAMP DEFAULT NOW()\n        );\n      `)\n\n      // Create incremental materialized view using correct syntax with dollar quoting\n      await pg.exec(`\n        SELECT pgivm.create_immv('order_summary', $$\n          SELECT \n            customer_id,\n            COUNT(*) as order_count,\n            SUM(amount) as total_amount\n          FROM orders \n          GROUP BY customer_id\n        $$);\n      `)\n\n      // Commit to ensure view is created\n      await pg.exec('COMMIT;')\n\n      // Verify the view was created - check both pg_matviews and information_schema\n      const res = await pg.query<{ table_name: string }>(`\n        SELECT table_name \n        FROM information_schema.tables \n        WHERE table_name = 'order_summary' AND table_type = 'BASE TABLE'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].table_name).toBe('order_summary')\n    })\n\n    it('automatically updates view when base table changes', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_ivm,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;')\n\n      // Create base table\n      await pg.exec(`\n        CREATE TABLE products (\n          id SERIAL PRIMARY KEY,\n          category VARCHAR(50),\n          price DECIMAL(10,2),\n          quantity INTEGER\n        );\n      `)\n\n      // Create incremental materialized view using dollar quoting\n      await pg.exec(`\n        SELECT pgivm.create_immv('category_stats', $$\n          SELECT \n            category,\n            COUNT(*) as product_count,\n            SUM(price * quantity) as total_value,\n            AVG(price) as avg_price\n          FROM products \n          GROUP BY category\n        $$);\n      `)\n\n      // Initially, view should be empty\n      let viewData = await pg.query(\n        `SELECT * FROM category_stats ORDER BY category;`,\n      )\n      expect(viewData.rows).toHaveLength(0)\n\n      // Insert some data\n      await pg.exec(`\n        INSERT INTO products (category, price, quantity) VALUES \n        ('electronics', 100.00, 10),\n        ('electronics', 200.00, 5),\n        ('books', 15.00, 20),\n        ('books', 25.00, 8);\n      `)\n\n      // Commit after inserts\n      await pg.exec('COMMIT;')\n\n      // View should be automatically updated\n      viewData = await pg.query<{\n        category: string\n        product_count: number\n        total_value: string\n        avg_price: string\n      }>(`SELECT * FROM category_stats ORDER BY category;`)\n      expect(viewData.rows).toHaveLength(2)\n\n      const electronicsRow = viewData.rows.find(\n        (row: any) => row.category === 'electronics',\n      ) as any\n      const booksRow = viewData.rows.find(\n        (row: any) => row.category === 'books',\n      ) as any\n\n      expect(electronicsRow).toBeDefined()\n      expect(electronicsRow.product_count).toBe(2)\n      expect(Number(electronicsRow.total_value)).toBe(2000.0) // 100*10 + 200*5\n      expect(Number(electronicsRow.avg_price)).toBe(150.0) // (100+200)/2\n\n      expect(booksRow).toBeDefined()\n      expect(booksRow.product_count).toBe(2)\n      expect(Number(booksRow.total_value)).toBe(500.0) // 15*20 + 25*8\n      expect(Number(booksRow.avg_price)).toBe(20.0) // (15+25)/2\n\n      // Update existing data\n      await pg.exec(\n        `UPDATE products SET quantity = 15 WHERE category = 'electronics' AND price = 100.00;`,\n      )\n\n      // View should reflect the update\n      viewData = await pg.query<{\n        category: string\n        product_count: number\n        total_value: string\n        avg_price: string\n      }>(`SELECT * FROM category_stats WHERE category = 'electronics';`)\n      expect(viewData.rows).toHaveLength(1)\n      expect(Number((viewData.rows[0] as any).total_value)).toBe(2500.0) // 100*15 + 200*5\n\n      // Insert more data\n      await pg.exec(\n        `INSERT INTO products (category, price, quantity) VALUES ('electronics', 300.00, 3);`,\n      )\n\n      // View should include new data\n      viewData = await pg.query<{\n        category: string\n        product_count: number\n        total_value: string\n        avg_price: string\n      }>(`SELECT * FROM category_stats WHERE category = 'electronics';`)\n      expect(viewData.rows).toHaveLength(1)\n      expect((viewData.rows[0] as any).product_count).toBe(3)\n      expect(Number((viewData.rows[0] as any).total_value)).toBe(3400.0) // 100*15 + 200*5 + 300*3\n      expect(Number((viewData.rows[0] as any).avg_price)).toBe(200.0) // (100+200+300)/3\n\n      // Delete data\n      await pg.exec(\n        `DELETE FROM products WHERE category = 'electronics' AND price = 300.00;`,\n      )\n\n      // View should reflect the deletion\n      viewData = await pg.query<{\n        category: string\n        product_count: number\n        total_value: string\n        avg_price: string\n      }>(`SELECT * FROM category_stats WHERE category = 'electronics';`)\n      expect(viewData.rows).toHaveLength(1)\n      expect((viewData.rows[0] as any).product_count).toBe(2)\n      expect(Number((viewData.rows[0] as any).total_value)).toBe(2500.0) // 100*15 + 200*5\n    })\n\n    it('supports simple views without aggregates', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_ivm,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;')\n\n      // Create base tables\n      await pg.exec(`\n        CREATE TABLE users (\n          id SERIAL PRIMARY KEY,\n          name VARCHAR(100),\n          status VARCHAR(20)\n        );\n      `)\n\n      await pg.exec(`\n        CREATE TABLE user_profiles (\n          user_id INTEGER,\n          email VARCHAR(100),\n          age INTEGER\n        );\n      `)\n\n      // Create incremental materialized view with join using dollar quoting\n      await pg.exec(`\n        SELECT pgivm.create_immv('active_users', $$\n          SELECT \n            u.id,\n            u.name,\n            p.email,\n            p.age\n          FROM users u\n          JOIN user_profiles p ON u.id = p.user_id\n          WHERE u.status = 'active'\n        $$);\n      `)\n\n      // Insert test data\n      await pg.exec(`\n        INSERT INTO users (name, status) VALUES \n        ('Alice', 'active'),\n        ('Bob', 'inactive'),\n        ('Charlie', 'active');\n      `)\n\n      await pg.exec(`\n        INSERT INTO user_profiles (user_id, email, age) VALUES \n        (1, 'alice@example.com', 25),\n        (2, 'bob@example.com', 30),\n        (3, 'charlie@example.com', 35);\n      `)\n\n      // Check the view content\n      let viewData = await pg.query<{\n        id: number\n        name: string\n        email: string\n        age: number\n      }>(`SELECT * FROM active_users ORDER BY id;`)\n      expect(viewData.rows).toHaveLength(2)\n      expect(viewData.rows[0].name).toBe('Alice')\n      expect(viewData.rows[1].name).toBe('Charlie')\n\n      // Update user status\n      await pg.exec(`UPDATE users SET status = 'active' WHERE name = 'Bob';`)\n\n      // View should now include Bob\n      viewData = await pg.query<{\n        id: number\n        name: string\n        email: string\n        age: number\n      }>(`SELECT * FROM active_users ORDER BY id;`)\n      expect(viewData.rows).toHaveLength(3)\n      expect(viewData.rows[1].name).toBe('Bob')\n\n      // Delete a user profile\n      await pg.exec(`DELETE FROM user_profiles WHERE user_id = 1;`)\n\n      // Alice should no longer appear in the view\n      viewData = await pg.query<{\n        id: number\n        name: string\n        email: string\n        age: number\n      }>(`SELECT * FROM active_users ORDER BY id;`)\n      expect(viewData.rows).toHaveLength(2)\n      expect(viewData.rows.every((row) => row.name !== 'Alice')).toBe(true)\n    })\n\n    it('supports DISTINCT in views', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_ivm,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;')\n\n      // Create base table with potential duplicates\n      await pg.exec(`\n        CREATE TABLE events (\n          id SERIAL PRIMARY KEY,\n          event_type VARCHAR(50),\n          user_id INTEGER,\n          timestamp TIMESTAMP DEFAULT NOW()\n        );\n      `)\n\n      // Create incremental materialized view with DISTINCT using dollar quoting\n      await pg.exec(`\n        SELECT pgivm.create_immv('unique_event_types', $$\n          SELECT DISTINCT event_type FROM events\n        $$);\n      `)\n\n      // Insert some events with duplicates\n      await pg.exec(`\n        INSERT INTO events (event_type, user_id) VALUES \n        ('login', 1),\n        ('login', 2),\n        ('logout', 1),\n        ('purchase', 3),\n        ('login', 3),\n        ('logout', 2);\n      `)\n\n      // View should only contain unique event types\n      let viewData = await pg.query<{ event_type: string }>(\n        `SELECT * FROM unique_event_types ORDER BY event_type;`,\n      )\n      expect(viewData.rows).toHaveLength(3)\n      expect(viewData.rows.map((row) => row.event_type)).toEqual([\n        'login',\n        'logout',\n        'purchase',\n      ])\n\n      // Add a new unique event type\n      await pg.exec(\n        `INSERT INTO events (event_type, user_id) VALUES ('signup', 4);`,\n      )\n\n      // View should include the new event type\n      viewData = await pg.query<{ event_type: string }>(\n        `SELECT * FROM unique_event_types ORDER BY event_type;`,\n      )\n      expect(viewData.rows).toHaveLength(4)\n      expect(viewData.rows.map((row) => row.event_type)).toEqual([\n        'login',\n        'logout',\n        'purchase',\n        'signup',\n      ])\n\n      // Add more of existing event type (should not change view)\n      await pg.exec(\n        `INSERT INTO events (event_type, user_id) VALUES ('login', 5);`,\n      )\n\n      viewData = await pg.query<{ event_type: string }>(\n        `SELECT * FROM unique_event_types ORDER BY event_type;`,\n      )\n      expect(viewData.rows).toHaveLength(4)\n    })\n\n    it('can use refresh_immv function', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_ivm,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_ivm;')\n\n      // Create base table\n      await pg.exec(`\n        CREATE TABLE items (\n          id SERIAL PRIMARY KEY,\n          name VARCHAR(100),\n          price DECIMAL(10,2)\n        );\n      `)\n\n      // Create IMMV using dollar quoting\n      await pg.exec(`\n        SELECT pgivm.create_immv('item_summary', $$\n          SELECT COUNT(*) as total_items, AVG(price) as avg_price FROM items\n        $$);\n      `)\n\n      // Insert initial data\n      await pg.exec(\n        `INSERT INTO items (name, price) VALUES ('item1', 10.00), ('item2', 20.00);`,\n      )\n\n      // Check initial view state\n      let viewData = await pg.query<{ total_items: number; avg_price: string }>(\n        `SELECT * FROM item_summary;`,\n      )\n      expect(viewData.rows).toHaveLength(1)\n      expect(viewData.rows[0].total_items).toBe(2)\n      expect(Number(viewData.rows[0].avg_price)).toBe(15.0)\n\n      // Test refresh_immv function\n      await pg.exec(`SELECT pgivm.refresh_immv('item_summary', true);`)\n\n      // View should still have the same data after refresh\n      viewData = await pg.query<{ total_items: number; avg_price: string }>(\n        `SELECT * FROM item_summary;`,\n      )\n      expect(viewData.rows).toHaveLength(1)\n      expect(viewData.rows[0].total_items).toBe(2)\n      expect(Number(viewData.rows[0].avg_price)).toBe(15.0)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/pg_textsearch.test.ts",
    "content": "/**\n * Tests for pg_textsearch extension.\n * Based on tests from https://github.com/timescale/pg_textsearch/tree/main/test/sql\n */\nimport { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { pg_textsearch } =\n    importType === 'esm'\n      ? await import('../dist/pg_textsearch/index.js')\n      : ((await import(\n          '../dist/pg_textsearch/index.cjs'\n        )) as unknown as typeof import('../dist/pg_textsearch/index.js'))\n\n  describe(`pg_textsearch`, () => {\n    // From test/sql/basic.sql\n    it('extension creation and bm25 access method', async () => {\n      const pg = await PGlite.create({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n\n      // Test bm25 access method exists\n      const res = await pg.query<{ amname: string }>(\n        \"SELECT amname FROM pg_am WHERE amname = 'bm25';\",\n      )\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].amname).toBe('bm25')\n    })\n\n    // From test/sql/basic.sql - bm25vector type\n    it('bm25vector type exists and works', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n\n      // Test bm25vector type exists\n      const res = await pg.query<{ pg_typeof: string }>(\n        \"SELECT pg_typeof('my_index:{database:2,system:1}'::bm25vector);\",\n      )\n      expect(res.rows[0].pg_typeof).toBe('bm25vector')\n\n      // Test bm25vector input/output\n      const res2 = await pg.query<{ bm25vector: string }>(\n        \"SELECT 'my_index:{database:2,system:1}'::bm25vector;\",\n      )\n      expect(res2.rows[0].bm25vector).toBe('my_index:{database:2,system:1}')\n    })\n\n    // From test/sql/basic.sql - bm25query type\n    it('bm25query type exists and works', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n\n      // Test bm25query type exists\n      const res = await pg.query<{ pg_typeof: string }>(\n        \"SELECT pg_typeof('search terms'::bm25query);\",\n      )\n      expect(res.rows[0].pg_typeof).toBe('bm25query')\n\n      // Test to_bm25query function\n      const res2 = await pg.query<{ to_bm25query: string }>(\n        \"SELECT to_bm25query('hello world');\",\n      )\n      expect(res2.rows[0].to_bm25query).toBe('hello world')\n    })\n\n    // From test/sql/basic.sql - index creation and basic search\n    it('bm25 index creation and basic search', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n      await pg.exec(`\n        CREATE TABLE test_docs (id SERIAL PRIMARY KEY, content TEXT);\n      `)\n      await pg.exec(`\n        CREATE INDEX test_tapir_idx ON test_docs USING bm25(content) WITH (text_config='english');\n      `)\n\n      // Verify index was created\n      const indexRes = await pg.query<{ indexrelid: string }>(`\n        SELECT indexrelid::regclass::text as indexrelid FROM pg_index\n        WHERE indrelid = 'test_docs'::regclass\n        AND indexrelid::regclass::text LIKE '%tapir%';\n      `)\n      expect(indexRes.rows).toHaveLength(1)\n      expect(indexRes.rows[0].indexrelid).toBe('test_tapir_idx')\n\n      // Insert test documents\n      await pg.exec(`\n        INSERT INTO test_docs (content) VALUES\n          ('hello world example'),\n          ('database system design'),\n          ('the quick brown fox'),\n          ('jumped over lazy dog'),\n          ('sphinx of black quartz');\n      `)\n\n      // Test search with explicit index\n      const searchRes = await pg.query<{ content: string; score: number }>(`\n        SELECT content, content <@> to_bm25query('hello', 'test_tapir_idx') as score\n        FROM test_docs\n        ORDER BY score\n        LIMIT 1;\n      `)\n      expect(searchRes.rows).toHaveLength(1)\n      expect(searchRes.rows[0].content).toBe('hello world example')\n      // BM25 returns negative scores\n      expect(searchRes.rows[0].score).toBeLessThan(0)\n    })\n\n    // From test/sql/queries.sql - realistic search queries\n    it('top-k query patterns', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n      await pg.exec(`\n        CREATE TABLE articles (\n          id SERIAL PRIMARY KEY,\n          title TEXT,\n          content TEXT,\n          category TEXT\n        );\n      `)\n\n      await pg.exec(`\n        INSERT INTO articles (title, content, category) VALUES\n          ('Introduction to Databases', 'postgresql database management system with advanced indexing capabilities for fast query processing', 'technology'),\n          ('Machine Learning Fundamentals', 'machine learning algorithms and artificial intelligence techniques for data analysis and prediction', 'technology'),\n          ('Text Search Algorithms', 'full text search with bm25 ranking and relevance scoring for information retrieval systems', 'technology'),\n          ('Information Retrieval', 'information retrieval and search engines using vector space models and term frequency analysis', 'technology'),\n          ('Natural Language Processing', 'natural language processing techniques including parsing stemming and semantic analysis', 'technology'),\n          ('Database Optimization', 'database indexing and query optimization strategies for improving performance in large datasets', 'technology');\n      `)\n\n      await pg.exec(`\n        CREATE INDEX articles_idx ON articles USING bm25(content) WITH (text_config='english');\n      `)\n\n      // Basic text search with LIMIT\n      const res1 = await pg.query<{ title: string; score: number }>(`\n        SELECT title, ROUND((content <@> to_bm25query('database', 'articles_idx'))::numeric, 4) as score\n        FROM articles\n        ORDER BY content <@> to_bm25query('database', 'articles_idx')\n        LIMIT 3;\n      `)\n      expect(res1.rows.length).toBeLessThanOrEqual(3)\n      // Database-related articles should rank first\n      expect(res1.rows[0].title).toMatch(/database/i)\n\n      // Multi-term search\n      const res2 = await pg.query<{ title: string; score: number }>(`\n        SELECT title, ROUND((content <@> to_bm25query('machine learning', 'articles_idx'))::numeric, 4) as score\n        FROM articles\n        ORDER BY content <@> to_bm25query('machine learning', 'articles_idx')\n        LIMIT 3;\n      `)\n      expect(res2.rows.length).toBeLessThanOrEqual(3)\n      expect(res2.rows[0].title).toBe('Machine Learning Fundamentals')\n\n      // Category-filtered search\n      const res3 = await pg.query<{ title: string; score: number }>(`\n        SELECT title, ROUND((content <@> to_bm25query('search algorithms', 'articles_idx'))::numeric, 4) as score\n        FROM articles\n        WHERE category = 'technology'\n        ORDER BY content <@> to_bm25query('search algorithms', 'articles_idx')\n        LIMIT 5;\n      `)\n      expect(res3.rows.length).toBeGreaterThan(0)\n    })\n\n    // From test/sql/scoring1.sql - bulk vs incremental index build\n    it('bulk build mode (insert then create index)', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n      await pg.exec(`\n        CREATE TABLE scoring_bulk (\n          id SERIAL PRIMARY KEY,\n          content TEXT\n        );\n      `)\n\n      // Insert test documents first\n      await pg.exec(\n        \"INSERT INTO scoring_bulk (content) VALUES ('hello world');\",\n      )\n      await pg.exec(\n        \"INSERT INTO scoring_bulk (content) VALUES ('goodbye cruel world');\",\n      )\n\n      // Create index after data insertion (bulk build)\n      await pg.exec(`\n        CREATE INDEX scoring_bulk_idx ON scoring_bulk USING bm25(content)\n          WITH (text_config='english', k1=1.2, b=0.75);\n      `)\n\n      // Query with 'world'\n      const res = await pg.query<{\n        id: number\n        content: string\n        score: number\n      }>(`\n        SELECT id, content, ROUND((content <@> to_bm25query('world', 'scoring_bulk_idx'))::numeric, 4) as score\n        FROM scoring_bulk\n        ORDER BY content <@> to_bm25query('world', 'scoring_bulk_idx'), id;\n      `)\n\n      expect(res.rows).toHaveLength(2)\n      // 'hello world' should rank higher (more negative score)\n      expect(res.rows[0].content).toBe('hello world')\n      expect(Number(res.rows[0].score)).toBeLessThan(Number(res.rows[1].score))\n    })\n\n    // From test/sql/strings.sql - various text patterns\n    it('handles various text patterns', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n      await pg.exec(`\n        CREATE TABLE text_patterns (\n          id SERIAL PRIMARY KEY,\n          content TEXT\n        );\n      `)\n      await pg.exec(`\n        CREATE INDEX text_patterns_idx ON text_patterns USING bm25(content) WITH (text_config='english');\n      `)\n\n      // Insert various text patterns\n      await pg.exec(`\n        INSERT INTO text_patterns (content) VALUES\n          ('simple text'),\n          ('UPPERCASE TEXT'),\n          ('MiXeD CaSe TeXt'),\n          ('text with numbers 123 456'),\n          ('special-characters_and.punctuation!'),\n          ('repeated word word word word'),\n          ('');\n      `)\n\n      // Search should be case-insensitive\n      const res = await pg.query<{ content: string }>(`\n        SELECT content\n        FROM text_patterns\n        WHERE content <@> to_bm25query('text', 'text_patterns_idx') < 0\n        ORDER BY content <@> to_bm25query('text', 'text_patterns_idx');\n      `)\n\n      // Should find multiple matches regardless of case\n      expect(res.rows.length).toBeGreaterThan(1)\n    })\n\n    // From test/sql/updates.sql - update and delete operations\n    it('handles updates and deletes', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_textsearch,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_textsearch;')\n      await pg.exec(`\n        CREATE TABLE update_test (\n          id SERIAL PRIMARY KEY,\n          content TEXT\n        );\n      `)\n      await pg.exec(`\n        CREATE INDEX update_test_idx ON update_test USING bm25(content) WITH (text_config='english');\n      `)\n\n      // Insert initial data\n      await pg.exec(\n        \"INSERT INTO update_test (content) VALUES ('original content here');\",\n      )\n\n      // Verify initial search works\n      const res1 = await pg.query<{ id: number }>(`\n        SELECT id FROM update_test\n        WHERE content <@> to_bm25query('original', 'update_test_idx') < 0;\n      `)\n      expect(res1.rows).toHaveLength(1)\n\n      // Update content\n      await pg.exec(\n        \"UPDATE update_test SET content = 'modified content now' WHERE id = 1;\",\n      )\n\n      // 'original' should no longer match\n      const res2 = await pg.query<{ id: number }>(`\n        SELECT id FROM update_test\n        WHERE content <@> to_bm25query('original', 'update_test_idx') < 0;\n      `)\n      expect(res2.rows).toHaveLength(0)\n\n      // 'modified' should match\n      const res3 = await pg.query<{ id: number }>(`\n        SELECT id FROM update_test\n        WHERE content <@> to_bm25query('modified', 'update_test_idx') < 0;\n      `)\n      expect(res3.rows).toHaveLength(1)\n\n      // Delete\n      await pg.exec('DELETE FROM update_test WHERE id = 1;')\n\n      const res4 = await pg.query<{ id: number }>(`\n        SELECT id FROM update_test\n        WHERE content <@> to_bm25query('modified', 'update_test_idx') < 0;\n      `)\n      expect(res4.rows).toHaveLength(0)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/pg_uuidv7.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { pg_uuidv7 } =\n    importType === 'esm'\n      ? await import('../dist/pg_uuidv7/index.js')\n      : ((await import(\n          '../dist/pg_uuidv7/index.cjs'\n        )) as unknown as typeof import('../dist/pg_uuidv7/index.js'))\n\n  describe(`pg_uuidv7`, () => {\n    it('can load extension', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_uuidv7,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_uuidv7;')\n\n      // Verify the extension is loaded\n      const res = await pg.query<{ extname: string }>(`\n        SELECT extname \n        FROM pg_extension \n        WHERE extname = 'pg_uuidv7'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].extname).toBe('pg_uuidv7')\n    })\n\n    it('should generate uuiv7', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_uuidv7,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_uuidv7;')\n\n      const res = await pg.exec(`SELECT uuid_generate_v7();`)\n\n      expect(res[0].rows[0].uuid_generate_v7.length).toEqual(36)\n    })\n\n    it('should generate uuiv7', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pg_uuidv7,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pg_uuidv7;')\n\n      const res = await pg.exec(\n        `SELECT uuid_v7_to_timestamptz('018570bb-4a7d-7c7e-8df4-6d47afd8c8fc');`,\n      )\n\n      expect(res[0].rows[0].uuid_v7_to_timestamptz.toISOString()).toEqual(\n        '2023-01-02T04:26:40.637Z',\n      )\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/pgtap.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { pgtap } =\n    importType === 'esm'\n      ? await import('../dist/pgtap/index.js')\n      : ((await import(\n          '../dist/pgtap/index.cjs'\n        )) as unknown as typeof import('../dist/pgtap/index.js'))\n\n  describe(`pgtap`, () => {\n    it('can load extension', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pgtap,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;')\n\n      // Verify the extension is loaded\n      const res = await pg.query<{ extname: string }>(`\n        SELECT extname \n        FROM pg_extension \n        WHERE extname = 'pgtap'\n      `)\n\n      expect(res.rows).toHaveLength(1)\n      expect(res.rows[0].extname).toBe('pgtap')\n    })\n\n    it('should run individual pgTAP assertions', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pgtap,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;')\n\n      const res = await pg.exec(`\n        -- Start transaction and plan the tests.\n        BEGIN;\n        SELECT plan(1);\n\n        -- Run the tests.\n        SELECT pass('This test passes');\n\n        -- Finish the tests and clean up.\n        SELECT * FROM finish();\n        ROLLBACK;\n      `)\n\n      // we get 5 outputs, one for each SQL statement\n      expect(res.length).toBe(5)\n      expect(res[1].rows).toEqual([{ plan: '1..1' }])\n      expect(res[2].rows).toEqual([{ pass: 'ok 1 - This test passes' }])\n\n      // no issues reported in finish step\n      expect(res[3].rows.length).toBe(0)\n    })\n\n    it('should check for correct amounts of tests', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pgtap,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;')\n\n      const res = await pg.exec(`\n        BEGIN;\n        SELECT plan(1); -- wrong amount of tests\n        SELECT pass('This test passes');\n        SELECT pass('This test passes too');\n        SELECT * FROM finish();\n        ROLLBACK;\n      `)\n\n      expect(res.length).toBe(6)\n      expect(res[1].rows).toEqual([{ plan: '1..1' }])\n      expect(res[2].rows).toEqual([{ pass: 'ok 1 - This test passes' }])\n      expect(res[3].rows).toEqual([{ pass: 'ok 2 - This test passes too' }])\n      expect(res[4].rows).toEqual([\n        {\n          finish: '# Looks like you planned 1 test but ran 2',\n        },\n      ])\n    })\n\n    it('should run multiple tests', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pgtap,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;')\n\n      const res = await pg.exec(`\n          -- Start transaction and plan the tests.\n          BEGIN;\n          CREATE TABLE test_table (\n            id    SERIAL NOT NULL PRIMARY KEY,\n            name  TEXT DEFAULT ''\n          );\n          SELECT plan(4); -- set the wrong number of tests on purpose\n\n          -- Test that public schema exists\n          SELECT has_schema('public', 'public schema should exist');\n\n          SELECT has_table('public', 'test_table', 'test_table should exist in public');\n\n          -- Cause an error\n          SELECT has_table('table_that_does_not_exist', 'this table should exist');\n\n          -- Finish the tests and clean up.\n          SELECT * FROM finish();\n          ROLLBACK;\n        `)\n\n      expect(res.length).toBe(8)\n      expect(res[2].rows).toEqual([{ plan: '1..4' }])\n      expect(res[3].rows).toEqual([\n        { has_schema: 'ok 1 - public schema should exist' },\n      ])\n      expect(res[4].rows).toEqual([\n        { has_table: 'ok 2 - test_table should exist in public' },\n      ])\n      expect(res[5].rows).toEqual([\n        {\n          has_table:\n            'not ok 3 - this table should exist\\n# Failed test 3: \"this table should exist\"',\n        },\n      ])\n      expect(res[6].rows).toEqual([\n        { finish: '# Looks like you planned 4 tests but ran 3' },\n      ])\n    })\n\n    it('should run pgTAP test suite', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pgtap,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;')\n\n      const res = await pg.exec(`\n          BEGIN;\n          CREATE TABLE users (\n            id    SERIAL NOT NULL PRIMARY KEY,\n            name  TEXT DEFAULT ''\n          );\n          CREATE OR REPLACE FUNCTION setup_insert(\n          ) RETURNS SETOF TEXT AS $$\n          BEGIN\n            RETURN NEXT is( MAX(name), NULL, 'Should have no users') FROM users;\n            INSERT INTO users (name) VALUES ('tester');\n            RETURN;\n          END\n          $$ LANGUAGE plpgsql;\n\n          Create OR REPLACE FUNCTION test_user(\n          ) RETURNS SETOF TEXT AS $$\n            SELECT is( name, 'tester', 'Should have name') FROM users;\n          $$ LANGUAGE sql;\n\n          SELECT * FROM runtests();\n          ROLLBACK;\n        `)\n\n      expect(res.length).toBe(6)\n      // we don't care about the outputs of the other SQL statements before\n      expect(res[4].rows).toEqual([\n        { runtests: '# Subtest: public.test_user()' },\n        { runtests: '    ok 1 - Should have no users' },\n        { runtests: '    ok 2 - Should have name' },\n        { runtests: '    1..2' },\n        { runtests: 'ok 1 - public.test_user' },\n        { runtests: '1..1' },\n      ])\n    })\n\n    it('should run in-depth assertion tests', async () => {\n      const pg = new PGlite({\n        extensions: {\n          pgtap,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS pgtap;')\n\n      const res = await pg.exec(`\n          BEGIN;\n\n          -- Create test user and grant privileges\n          CREATE USER testuser WITH PASSWORD 'testpass';\n          GRANT CONNECT ON DATABASE postgres TO testuser;\n          GRANT TEMPORARY ON DATABASE postgres TO testuser;\n          GRANT CREATE ON DATABASE postgres TO testuser;\n          \n\n          -- Create tables and sample data\n          CREATE TABLE users (\n              id SERIAL PRIMARY KEY,\n              name TEXT NOT NULL,\n              email TEXT UNIQUE,\n              age INTEGER CHECK (age >= 0),\n              created_at TIMESTAMP DEFAULT NOW()\n          );\n\n          CREATE TABLE expected_users (\n              id SERIAL PRIMARY KEY,\n              name TEXT NOT NULL,\n              email TEXT UNIQUE,\n              age INTEGER CHECK (age >= 0),\n              created_at TIMESTAMP DEFAULT NOW()\n          );\n\n          CREATE TABLE large_table (\n              id SERIAL PRIMARY KEY,\n              indexed_col INTEGER,\n              data TEXT\n          );\n\n          CREATE INDEX idx_large_table ON large_table(indexed_col);\n\n          -- Insert sample data\n          INSERT INTO users (name, email, age) VALUES \n              ('alice', 'alice@example.com', 30),\n              ('bob', 'bob@example.com', 25),\n              ('charlie', 'charlie@example.com', 35);\n          \n          INSERT INTO expected_users (name, email, age) VALUES \n              ('alice', 'alice@example.com', 30),\n              ('bob', 'bob@example.com', 25),\n              ('charlie', 'charlie@example.com', 35);\n          \n          INSERT INTO large_table (indexed_col, data)\n          SELECT i, 'data_' || i FROM generate_series(1, 1000) i;\n          \n          -- Plan the number of tests\n          SELECT plan(9);\n          \n          -- 1. results_eq() - Query result comparison\n          SELECT results_eq(\n              'SELECT name, email, age FROM users ORDER BY id',\n              'SELECT name, email, age FROM expected_users ORDER BY id',\n              'Users table should match expected results'\n          );\n          \n          -- 2. set_eq() - Set comparison (order doesn't matter)\n          SELECT set_eq(\n              'SELECT name FROM users',\n              ARRAY['alice', 'bob', 'charlie'],\n              'Should have exactly these users (any order)'\n          );\n          \n          -- 3. bag_eq() - Bag comparison (allows duplicates)\n          SELECT bag_eq(\n              'SELECT name FROM users WHERE age > 20',\n              ARRAY['alice', 'bob', 'charlie'],\n              'Should have these users with age > 20'\n          );\n          \n          -- 4. throws_ok() - Exception testing\n          SELECT throws_ok(\n              'INSERT INTO users (id, name) VALUES (NULL, ''test'')',\n              '23502',\n              'null value in column \"id\" of relation \"users\" violates not-null constraint',\n              'Should enforce NOT NULL constraint on id'\n          );\n          \n          -- 5. Another throws_ok() - Check constraint violation\n          SELECT throws_ok(\n              'INSERT INTO users (name, age) VALUES (''invalid'', -5)',\n              '23514',\n              'new row for relation \"users\" violates check constraint \"users_age_check\"',\n              'Should enforce CHECK constraint on age'\n          );\n          \n          -- 6. performs_ok() - Performance testing\n          SELECT performs_ok(\n              'SELECT * FROM large_table WHERE indexed_col = 123',\n              1000,\n              'Indexed query should complete within 1 second'\n          );\n          \n          -- 7. has_table() - Schema verification\n          SELECT has_table('users', 'Should have users table');\n          \n          -- 8. col_type_is() - Column type verification\n          SELECT col_type_is(\n              'users',\n              'email',\n              'text',\n              'email column should be TEXT type'\n          );\n          \n          -- 9. database_privs_are() - Privilege verification\n          SELECT database_privs_are(\n              'postgres',\n              'testuser',\n              ARRAY['CONNECT', 'TEMPORARY', 'CREATE'],\n              'testuser should have specific database privileges'\n          );\n         \n          SELECT * FROM finish();\n          ROLLBACK;\n        `)\n\n      expect(res.length).toBe(24)\n      // we don't care about the outputs of the other SQL statements before\n      expect(res[12].rows).toEqual([{ plan: '1..9' }])\n      expect(res[13].rows).toEqual([\n        { results_eq: 'ok 1 - Users table should match expected results' },\n      ])\n      expect(res[14].rows).toEqual([\n        { set_eq: 'ok 2 - Should have exactly these users (any order)' },\n      ])\n      expect(res[15].rows).toEqual([\n        { bag_eq: 'ok 3 - Should have these users with age > 20' },\n      ])\n      expect(res[16].rows).toEqual([\n        { throws_ok: 'ok 4 - Should enforce NOT NULL constraint on id' },\n      ])\n      expect(res[17].rows).toEqual([\n        { throws_ok: 'ok 5 - Should enforce CHECK constraint on age' },\n      ])\n      expect(res[18].rows).toEqual([\n        {\n          performs_ok: 'ok 6 - Indexed query should complete within 1 second',\n        },\n      ])\n      expect(res[19].rows).toEqual([\n        { has_table: 'ok 7 - Should have users table' },\n      ])\n      expect(res[20].rows).toEqual([\n        { col_type_is: 'ok 8 - email column should be TEXT type' },\n      ])\n      expect(res[21].rows).toEqual([\n        {\n          database_privs_are:\n            'ok 9 - testuser should have specific database privileges',\n        },\n      ])\n      // no issues reported in finish step\n      expect(res[22].rows.length).toBe(0)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/pgvector.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { testEsmCjsAndDTC } from './test-utils.ts'\n\nawait testEsmCjsAndDTC(async (importType) => {\n  const { PGlite } =\n    importType === 'esm'\n      ? await import('../dist/index.js')\n      : ((await import(\n          '../dist/index.cjs'\n        )) as unknown as typeof import('../dist/index.js'))\n\n  const { vector } =\n    importType === 'esm'\n      ? await import('../dist/vector/index.js')\n      : ((await import(\n          '../dist/vector/index.cjs'\n        )) as unknown as typeof import('../dist/vector/index.js'))\n\n  describe(`pgvector`, () => {\n    it('basic', async () => {\n      const pg = new PGlite({\n        extensions: {\n          vector,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;')\n      await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT,\n      vec vector(3)\n    );\n  `)\n      await pg.exec(\"INSERT INTO test (name, vec) VALUES ('test1', '[1,2,3]');\")\n      await pg.exec(\"INSERT INTO test (name, vec) VALUES ('test2', '[4,5,6]');\")\n      await pg.exec(\"INSERT INTO test (name, vec) VALUES ('test3', '[7,8,9]');\")\n\n      const res = await pg.exec(`\n    SELECT\n      name,\n      vec,\n      vec <-> '[3,1,2]' AS distance\n    FROM test;\n  `)\n\n      expect(res).toMatchObject([\n        {\n          rows: [\n            {\n              name: 'test1',\n              vec: '[1,2,3]',\n              distance: 2.449489742783178,\n            },\n            {\n              name: 'test2',\n              vec: '[4,5,6]',\n              distance: 5.744562646538029,\n            },\n            {\n              name: 'test3',\n              vec: '[7,8,9]',\n              distance: 10.677078252031311,\n            },\n          ],\n          fields: [\n            {\n              name: 'name',\n              dataTypeID: 25,\n            },\n            {\n              name: 'vec',\n              dataTypeID: 16385,\n            },\n            {\n              name: 'distance',\n              dataTypeID: 701,\n            },\n          ],\n          affectedRows: 0,\n        },\n      ])\n    })\n\n    it('has correct oid', async () => {\n      const pg = new PGlite({\n        extensions: {\n          vector,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;')\n\n      const res = await pg.query<{ oid: number }>(`\n        select oid\n        from pg_extension\n        where extname = 'vector'\n      `)\n\n      // 16384 is the first none builtin object id\n      // as the vector extension is the first thing we create it should be this\n      // it certainly wont be lower.\n      // if it happens to be higher it may be that we have changed PGlite to create\n      // something with that oid before handing back to the user, if thats the case we\n      // should check what we are doing, and then update this test.\n      expect(res.rows[0].oid).toBe(16384)\n    })\n\n    it('has correct oid after restart', async () => {\n      let pg = await PGlite.create({\n        dataDir: './pgdata-test-vector-oid',\n        extensions: {\n          vector,\n        },\n      })\n\n      await pg.close()\n\n      pg = await PGlite.create({\n        dataDir: './pgdata-test-vector-oid',\n        extensions: {\n          vector,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;')\n\n      const res = await pg.query<{ oid: number }>(`\n        select oid\n        from pg_extension\n        where extname = 'vector'\n      `)\n\n      expect(res.rows[0].oid).toBeGreaterThan(16383)\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/plpgsql.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('plpgsql', () => {\n  it('can create and call function', async () => {\n    const db = new PGlite()\n    await db.exec(`\n    CREATE EXTENSION IF NOT EXISTS plpgsql;\n    CREATE OR REPLACE FUNCTION test_func()\n    RETURNS TEXT AS $$\n    BEGIN\n      RETURN 'test';\n    END;\n    $$ LANGUAGE plpgsql;\n  `)\n\n    const res = await db.query('SELECT test_func();')\n    expect(res.rows[0].test_func).toBe('test')\n  })\n\n  it('can create and call complex function', async () => {\n    const db = new PGlite()\n    await db.exec(`\n    CREATE EXTENSION IF NOT EXISTS plpgsql;\n    CREATE OR REPLACE FUNCTION calculate_factorial(n INT) RETURNS INT AS $$\n    DECLARE\n        result INT := 1;\n    BEGIN\n        IF n < 0 THEN\n            RAISE EXCEPTION 'The input cannot be negative.';\n        ELSIF n = 0 OR n = 1 THEN\n            RETURN result;\n        ELSE\n            FOR i IN 2..n LOOP\n                result := result * i;\n            END LOOP;\n            RETURN result;\n        END IF;\n    END;\n    $$ LANGUAGE plpgsql;\n  `)\n\n    const res = await db.query('SELECT calculate_factorial(5) AS result;')\n    expect(res.rows[0].result).toBe(120)\n  })\n\n  it('plpgsql usable after exception', async () => {\n    const db = await PGlite.create()\n\n    await db.exec(`\n      CREATE EXTENSION IF NOT EXISTS plpgsql;\n      CREATE OR REPLACE PROCEDURE raise_exception() LANGUAGE plpgsql AS $$\n      BEGIN\n      RAISE 'exception';\n      END;\n      $$;\n      `)\n\n    try {\n      await db.exec('CALL raise_exception();')\n    } catch (e) {\n      // expected\n      expect(e.message).toBe('exception')\n    }\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/query-sizes.test.ts",
    "content": "import { describe, it, expect, beforeEach } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\nfunction createStringOfSize(sizeInBytes: number): string {\n  return 'a'.repeat(sizeInBytes)\n}\n\nconst sizes = {\n  '8kb': 8 * 1024,\n  '5mb': 5 * 1024 * 1024,\n  '12mb': 12 * 1024 * 1024,\n  '128mb': 128 * 1024 * 1024,\n}\n\nconst rowDataSizes = {\n  '100b': 100,\n  '1kb': 1024,\n  '10kb': 10 * 1024,\n  '100kb': 100 * 1024,\n}\n\nconst rowCounts = {\n  '1k rows': 1000,\n  '10k rows': 10000,\n  '100k rows': 100000,\n}\n\nfunction testEachSize(\n  testFn: (sizeLabel: string, sizeInBytes: number) => Promise<void> | void,\n) {\n  Object.entries(sizes).forEach(([sizeLabel, sizeInBytes]) => {\n    it(`handles ${sizeLabel} data size`, async () => {\n      await new Promise((resolve) =>\n        setTimeout(async () => {\n          resolve(testFn(sizeLabel, sizeInBytes))\n        }, 10),\n      )\n    })\n  })\n}\n\nfunction testRowCountAndSize(\n  testFn: (\n    countLabel: string,\n    rowCount: number,\n    sizeLabel: string,\n    sizeInBytes: number,\n  ) => Promise<void> | void,\n) {\n  const countEntries = Object.entries(rowCounts)\n  const sizeEntries = Object.entries(rowDataSizes)\n\n  for (const [countLabel, rowCount] of countEntries) {\n    for (const [sizeLabel, sizeInBytes] of sizeEntries) {\n      if (sizeInBytes * rowCount > 1024 * 1024 * 1024) {\n        // limit the size of the test to 1gb\n        continue\n      }\n      it(`handles ${countLabel} with ${sizeLabel} per row`, async () => {\n        await new Promise((resolve) =>\n          setTimeout(async () => {\n            // We use a timeout to ensure the console.log is flushed\n            // Some of these can take a while to run\n            resolve(testFn(countLabel, rowCount, sizeLabel, sizeInBytes))\n          }, 10),\n        )\n      })\n    }\n  }\n}\n\ndescribe('query and exec with different data sizes', () => {\n  let db: PGlite\n\n  beforeEach(async () => {\n    db = new PGlite({ debug: 0 })\n\n    await db.exec(`\n        CREATE TABLE IF NOT EXISTS size_test (\n          id SERIAL PRIMARY KEY,\n          data TEXT\n        );\n      `)\n  })\n\n  describe('exec method', () => {\n    testEachSize(async (_, sizeInBytes) => {\n      const testData = createStringOfSize(sizeInBytes)\n\n      const results = await db.exec(`\n          INSERT INTO size_test (data) VALUES ('${testData}');\n          SELECT * FROM size_test;\n        `)\n\n      expect(results).toHaveLength(2)\n      expect(results[1].rows).toHaveLength(1)\n      expect(results[1].rows[0].data).toBe(testData)\n      expect(results[1].rows[0].data.length).toBe(sizeInBytes)\n    })\n  })\n\n  describe('query method without params', () => {\n    testEachSize(async (_, sizeInBytes) => {\n      const testData = createStringOfSize(sizeInBytes)\n\n      await db.query(`INSERT INTO size_test (data) VALUES ('${testData}');`)\n\n      const result = await db.query<{ id: number; data: string }>(\n        'SELECT * FROM size_test;',\n      )\n\n      expect(result.rows).toHaveLength(1)\n      expect(result.rows[0].data).toBe(testData)\n      expect(result.rows[0].data.length).toBe(sizeInBytes)\n    })\n  })\n\n  describe('query method with params', () => {\n    testEachSize(async (_, sizeInBytes) => {\n      const testData = createStringOfSize(sizeInBytes)\n\n      await db.query('INSERT INTO size_test (data) VALUES ($1);', [testData])\n\n      const result = await db.query<{ id: number; data: string }>(\n        'SELECT * FROM size_test WHERE data = $1;',\n        [testData],\n      )\n\n      expect(result.rows).toHaveLength(1)\n      expect(result.rows[0].data).toBe(testData)\n      expect(result.rows[0].data.length).toBe(sizeInBytes)\n    })\n  })\n})\n\ndescribe('query with combinations of row counts and data sizes', () => {\n  let db: PGlite\n\n  beforeEach(async () => {\n    db = new PGlite()\n  })\n\n  testRowCountAndSize(async (_, rowCount, __, dataSize) => {\n    const testData = createStringOfSize(dataSize)\n\n    const result = await db.query<{ id: number; data: string }>(`\n        SELECT generate_series(1, ${rowCount}) as id, '${testData}' as data;\n      `)\n\n    expect(result.rows).toHaveLength(rowCount)\n\n    expect(result.rows[0].data).toBe(testData)\n    expect(result.rows[0].data.length).toBe(dataSize)\n    expect(result.rows[rowCount - 1].data).toBe(testData)\n    expect(result.rows[rowCount - 1].data.length).toBe(dataSize)\n\n    if (rowCount > 5) {\n      const middleIndex = Math.floor(rowCount / 2)\n      expect(result.rows[middleIndex].data).toBe(testData)\n      expect(result.rows[middleIndex].data.length).toBe(dataSize)\n    }\n  })\n})\n\ndescribe('query with postgres-generated data of different sizes', () => {\n  let db: PGlite\n\n  beforeEach(async () => {\n    db = new PGlite()\n  })\n\n  testEachSize(async (_, sizeInBytes) => {\n    const result = await db.query<{ id: number; data: string }>(`\n        SELECT 1 as id, repeat('a', ${sizeInBytes}) as data;\n      `)\n\n    expect(result.rows).toHaveLength(1)\n    expect(result.rows[0].data.length).toBe(sizeInBytes)\n    expect(result.rows[0].data).toBe('a'.repeat(sizeInBytes))\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/targets/deno/.gitignore",
    "content": "deno.lock"
  },
  {
    "path": "packages/pglite/tests/targets/deno/basic.test.deno.js",
    "content": "import {\n  assertEquals,\n  assertRejects,\n} from 'https://deno.land/std@0.202.0/testing/asserts.ts'\nimport { PGlite } from '@electric-sql/pglite'\nimport denoTestBaseConfig from './denoUtils.js'\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic exec',\n  fn: async () => {\n    const db = new PGlite()\n    await db.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n\n    const multiStatementResult = await db.exec(`\n    INSERT INTO test (name) VALUES ('test');\n    UPDATE test SET name = 'test2';\n    SELECT * FROM test;\n  `)\n\n    assertEquals(multiStatementResult, [\n      {\n        affectedRows: 1,\n        rows: [],\n        fields: [],\n      },\n      {\n        affectedRows: 2,\n        rows: [],\n        fields: [],\n      },\n      {\n        rows: [{ id: 1, name: 'test2' }],\n        fields: [\n          { name: 'id', dataTypeID: 23 },\n          { name: 'name', dataTypeID: 25 },\n        ],\n        affectedRows: 2,\n      },\n    ])\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic query',\n  fn: async () => {\n    const db = new PGlite()\n    await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n    const selectResult = await db.query(`\n    SELECT * FROM test;\n  `)\n\n    assertEquals(selectResult, {\n      rows: [\n        {\n          id: 1,\n          name: 'test',\n        },\n      ],\n      fields: [\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'name',\n          dataTypeID: 25,\n        },\n      ],\n      affectedRows: 0,\n    })\n\n    const updateResult = await db.query(\"UPDATE test SET name = 'test2';\")\n    assertEquals(updateResult, {\n      rows: [],\n      fields: [],\n      affectedRows: 1,\n    })\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic types',\n  fn: async () => {\n    const db = new PGlite()\n    await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      text TEXT,\n      number INT,\n      float FLOAT,\n      bigint BIGINT,\n      bool BOOLEAN,\n      date DATE,\n      timestamp TIMESTAMP,\n      json JSONB,\n      blob BYTEA,\n      array_text TEXT[],\n      array_number INT[],\n      nested_array_float FLOAT[][],\n      test_null INT,\n      test_undefined INT\n    );\n  `)\n\n    await db.query(\n      `\n    INSERT INTO test (text, number, float, bigint, bool, date, timestamp, json, blob, array_text, array_number, nested_array_float, test_null, test_undefined)\n    VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14);\n  `,\n      [\n        'test',\n        1,\n        1.5,\n        9223372036854775807n,\n        true,\n        new Date('2021-01-01'),\n        new Date('2021-01-01T12:00:00'),\n        { test: 'test' },\n        Uint8Array.from([1, 2, 3]),\n        ['test1', 'test2', 'test,3'],\n        [1, 2, 3],\n        [\n          [1.1, 2.2],\n          [3.3, 4.4],\n        ],\n        null,\n        undefined,\n      ],\n    )\n\n    const res = await db.query(`\n    SELECT * FROM test;\n  `)\n\n    assertEquals(res, {\n      rows: [\n        {\n          id: 1,\n          text: 'test',\n          number: 1,\n          float: 1.5,\n          bigint: 9223372036854775807n,\n          bool: true,\n          date: new Date('2021-01-01T00:00:00.000Z'),\n          timestamp: new Date('2021-01-01T12:00:00.000Z'),\n          json: { test: 'test' },\n          blob: Uint8Array.from([1, 2, 3]),\n          array_text: ['test1', 'test2', 'test,3'],\n          array_number: [1, 2, 3],\n          nested_array_float: [\n            [1.1, 2.2],\n            [3.3, 4.4],\n          ],\n          test_null: null,\n          test_undefined: null,\n        },\n      ],\n      fields: [\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'text',\n          dataTypeID: 25,\n        },\n        {\n          name: 'number',\n          dataTypeID: 23,\n        },\n        {\n          name: 'float',\n          dataTypeID: 701,\n        },\n        {\n          name: 'bigint',\n          dataTypeID: 20,\n        },\n        {\n          name: 'bool',\n          dataTypeID: 16,\n        },\n        {\n          name: 'date',\n          dataTypeID: 1082,\n        },\n        {\n          name: 'timestamp',\n          dataTypeID: 1114,\n        },\n        {\n          name: 'json',\n          dataTypeID: 3802,\n        },\n        {\n          name: 'blob',\n          dataTypeID: 17,\n        },\n        {\n          name: 'array_text',\n          dataTypeID: 1009,\n        },\n        {\n          name: 'array_number',\n          dataTypeID: 1007,\n        },\n        {\n          name: 'nested_array_float',\n          dataTypeID: 1022,\n        },\n        {\n          name: 'test_null',\n          dataTypeID: 23,\n        },\n        {\n          name: 'test_undefined',\n          dataTypeID: 23,\n        },\n      ],\n      affectedRows: 0,\n    })\n\n    // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones.\n    assertEquals(\n      res.rows[0].timestamp.getUTCMilliseconds(),\n      new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds(),\n    )\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic params',\n  fn: async () => {\n    const db = new PGlite()\n    await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    await db.query('INSERT INTO test (name) VALUES ($1);', ['test2'])\n    const res = await db.query(`\n    SELECT * FROM test;\n  `)\n\n    assertEquals(res, {\n      rows: [\n        {\n          id: 1,\n          name: 'test2',\n        },\n      ],\n      fields: [\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'name',\n          dataTypeID: 25,\n        },\n      ],\n      affectedRows: 0,\n    })\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic error',\n  fn: async () => {\n    const db = new PGlite()\n    await assertRejects(\n      async () => {\n        await db.query('SELECT * FROM test;')\n      },\n      Error,\n      'relation \"test\" does not exist',\n    )\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic transaction',\n  fn: async () => {\n    const db = new PGlite()\n    await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n    await db.transaction(async (tx) => {\n      await tx.query(\"INSERT INTO test (name) VALUES ('test2');\")\n      const res = await tx.query(`\n      SELECT * FROM test;\n    `)\n      assertEquals(res, {\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n        ],\n        affectedRows: 0,\n      })\n      await tx.rollback()\n    })\n    const res = await db.query(`\n    SELECT * FROM test;\n  `)\n    assertEquals(res, {\n      rows: [\n        {\n          id: 1,\n          name: 'test',\n        },\n      ],\n      fields: [\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'name',\n          dataTypeID: 25,\n        },\n      ],\n      affectedRows: 0,\n    })\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic copy to/from blob',\n  fn: async () => {\n    const db = new PGlite()\n    await db.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      test TEXT\n    );\n    INSERT INTO test (test) VALUES ('test'), ('test2');\n  `)\n\n    // copy to\n    const ret = await db.query(\"COPY test TO '/dev/blob' WITH (FORMAT csv);\")\n    const csv = await ret.blob.text()\n    assertEquals(csv, '1,test\\n2,test2\\n')\n\n    // copy from\n    const blob2 = new Blob([csv])\n    await db.exec(`\n    CREATE TABLE IF NOT EXISTS test2 (\n      id SERIAL PRIMARY KEY,\n      test TEXT\n    );\n  `)\n    await db.query(\"COPY test2 FROM '/dev/blob' WITH (FORMAT csv);\", [], {\n      blob: blob2,\n    })\n    const res = await db.query(`\n    SELECT * FROM test2;\n  `)\n    assertEquals(res, {\n      rows: [\n        {\n          id: 1,\n          test: 'test',\n        },\n        {\n          id: 2,\n          test: 'test2',\n        },\n      ],\n      fields: [\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'test',\n          dataTypeID: 25,\n        },\n      ],\n      affectedRows: 0,\n    })\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'basic close',\n  fn: async () => {\n    const db = new PGlite()\n    await db.query(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n    await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n    await db.close()\n    await assertRejects(\n      async () => {\n        await db.query('SELECT * FROM test;')\n      },\n      Error,\n      'PGlite is closed',\n    )\n  },\n})\n"
  },
  {
    "path": "packages/pglite/tests/targets/deno/denoUtils.js",
    "content": "const denoTestBaseConfig = {\n  sanitizeExit: false,\n  sanitizeOps: false,\n  sanitizeResources: false,\n}\nexport default denoTestBaseConfig\n"
  },
  {
    "path": "packages/pglite/tests/targets/deno/fs.test.deno.js",
    "content": "import { assertEquals } from 'https://deno.land/std@0.202.0/testing/asserts.ts'\nimport { PGlite } from '@electric-sql/pglite'\nimport denoTestBaseConfig from './denoUtils.js'\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'filesystem new',\n  fn: async () => {\n    const db = new PGlite('./pgdata-test')\n    await db.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `)\n\n    const multiStatementResult = await db.exec(`\n    INSERT INTO test (name) VALUES ('test');\n    UPDATE test SET name = 'test2';\n    SELECT * FROM test;\n  `)\n\n    assertEquals(multiStatementResult, [\n      {\n        affectedRows: 1,\n        rows: [],\n        fields: [],\n      },\n      {\n        affectedRows: 2,\n        rows: [],\n        fields: [],\n      },\n      {\n        rows: [{ id: 1, name: 'test2' }],\n        fields: [\n          { name: 'id', dataTypeID: 23 },\n          { name: 'name', dataTypeID: 25 },\n        ],\n        affectedRows: 2,\n      },\n    ])\n\n    await db.close()\n  },\n})\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'filesystem existing',\n  fn: async () => {\n    const db = new PGlite('./pgdata-test')\n\n    const res = await db.exec('SELECT * FROM test;')\n\n    assertEquals(res, [\n      {\n        rows: [{ id: 1, name: 'test2' }],\n        fields: [\n          { name: 'id', dataTypeID: 23 },\n          { name: 'name', dataTypeID: 25 },\n        ],\n        affectedRows: 0,\n      },\n    ])\n\n    await db.close()\n  },\n})\n"
  },
  {
    "path": "packages/pglite/tests/targets/deno/package.json",
    "content": "{\n  \"name\": \"pglite-deno-tests\",\n  \"type\": \"module\",\n  \"private\": true,\n  \"description\": \"Tests for pglite running in Deno. The `test` script below is designed to trick Deno into 'Node Compatibility' mode for the tests.\",\n  \"scripts\": {\n    \"test\": \"./runtest.sh\"\n  },\n  \"dependencies\": {\n    \"@electric-sql/pglite\": \"0.3.5\"\n  }\n}\n"
  },
  {
    "path": "packages/pglite/tests/targets/deno/pgvector.test.deno.js",
    "content": "import { assertEquals } from 'https://deno.land/std@0.202.0/testing/asserts.ts'\nimport { PGlite } from '@electric-sql/pglite'\nimport { vector } from '@electric-sql/pglite/vector'\nimport denoTestBaseConfig from './denoUtils.js'\n\nDeno.test({\n  ...denoTestBaseConfig,\n  name: 'pgvector',\n  fn: async () => {\n    const pg = new PGlite({\n      extensions: {\n        vector,\n      },\n    })\n    await pg.waitReady\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS vector;')\n    await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT,\n      vec vector(3)\n    );\n  `)\n    await pg.exec(\"INSERT INTO test (name, vec) VALUES ('test1', '[1,2,3]');\")\n    await pg.exec(\"INSERT INTO test (name, vec) VALUES ('test2', '[4,5,6]');\")\n    await pg.exec(\"INSERT INTO test (name, vec) VALUES ('test3', '[7,8,9]');\")\n\n    const res = await pg.exec(`\n    SELECT\n      name,\n      vec,\n      vec <-> '[3,1,2]' AS distance\n    FROM test;\n  `)\n\n    assertEquals(res, [\n      {\n        rows: [\n          {\n            name: 'test1',\n            vec: '[1,2,3]',\n            distance: 2.449489742783178,\n          },\n          {\n            name: 'test2',\n            vec: '[4,5,6]',\n            distance: 5.744562646538029,\n          },\n          {\n            name: 'test3',\n            vec: '[7,8,9]',\n            distance: 10.677078252031311,\n          },\n        ],\n        fields: [\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n          {\n            name: 'vec',\n            dataTypeID: 16385,\n          },\n          {\n            name: 'distance',\n            dataTypeID: 701,\n          },\n        ],\n        affectedRows: 0,\n      },\n    ])\n  },\n})\n"
  },
  {
    "path": "packages/pglite/tests/targets/deno/runtest.sh",
    "content": "#!/bin/bash\nrm -rf ./pgdata-test ./node_modules\ndeno install\nmkdir -p ./node_modules/@electric-sql/pglite/dist\ncp -Rf ../../../dist/* node_modules/@electric-sql/pglite/dist/\nTZ=UTC deno test --allow-read --allow-write --allow-env --allow-sys --node-modules-dir ./*.test.deno.js\n\n"
  },
  {
    "path": "packages/pglite/tests/targets/runtimes/base.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '../../../dist/index.js'\n\nexport function tests(env, dbFilename, target) {\n  describe(`targets ${target}`, () => {\n    let db\n    it(`basic`, async () => {\n      db = new PGlite(dbFilename)\n\n      await db.waitReady\n      await db.query(`\n          CREATE TABLE IF NOT EXISTS test (\n            id SERIAL PRIMARY KEY,\n            name TEXT\n          );\n        `)\n      await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n      const res = await db.query(`\n          SELECT * FROM test;\n        `)\n\n      expect(res).toMatchObject({\n        affectedRows: 0,\n        fields: [\n          {\n            dataTypeID: 23,\n            name: 'id',\n          },\n          {\n            dataTypeID: 25,\n            name: 'name',\n          },\n        ],\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n        ],\n      })\n    })\n\n    it(`params`, async () => {\n      await db.query('INSERT INTO test (name) VALUES ($1);', ['test2'])\n      const res = await db.query(`\n          SELECT * FROM test;\n        `)\n\n      expect(res).toMatchObject({\n        affectedRows: 0,\n        fields: [\n          {\n            dataTypeID: 23,\n            name: 'id',\n          },\n          {\n            dataTypeID: 25,\n            name: 'name',\n          },\n        ],\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ],\n      })\n    })\n\n    it(`dump data dir and load it`, async () => {\n      // Force compression to test that it's working in all environments\n      const file = await db.dumpDataDir('gzip')\n      const db2 = await PGlite.create({\n        loadDataDir: file,\n      })\n      const res = await db2.query('SELECT * FROM test;')\n\n      expect(res.rows).toEqual([\n        {\n          id: 1,\n          name: 'test',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n    })\n\n    it(`close`, async () => {\n      // should not throw\n      await db.close()\n    })\n\n    if (dbFilename === 'memory://') {\n      // Skip the rest of the tests for memory:// as it's not persisted\n      return\n    }\n\n    it(`persisted`, async () => {\n      db = new PGlite(dbFilename)\n\n      await db.waitReady\n      const res = await db.query(`\n          SELECT * FROM test;\n        `)\n\n      expect(res).toMatchObject({\n        affectedRows: 0,\n        fields: [\n          {\n            dataTypeID: 23,\n            name: 'id',\n          },\n          {\n            dataTypeID: 25,\n            name: 'name',\n          },\n        ],\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ],\n      })\n    })\n  })\n}\n"
  },
  {
    "path": "packages/pglite/tests/targets/runtimes/node-fs.test.js",
    "content": "import { tests } from './base.js'\nimport { describe, it, expect, beforeEach, afterAll } from 'vitest'\nimport * as fs from 'fs/promises'\nimport { PGlite } from '../../../dist/index.js'\n\ntests('node', './pgdata-test', 'node.fs')\n\ndescribe('NODEFS', () => {\n  const folderPath = './pgdata-persisted'\n  beforeEach(async () => {\n    await fs.rm(folderPath, { force: true, recursive: true })\n  })\n  afterAll(async () => {\n    await fs.rm(folderPath, { force: true, recursive: true })\n  })\n  it('reuse persisted folder', async () => {\n    await fs.rm(folderPath, { force: true, recursive: true })\n    const pg1 = new PGlite(folderPath)\n    await pg1.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );`)\n    pg1.exec(\"INSERT INTO test (name) VALUES ('test');\")\n\n    const ret1 = await pg1.query('SELECT * FROM test;')\n\n    // emscripten NODEFS peculiarities: need to close everything to flush to disk\n    await pg1.close()\n\n    // now reusing the same folder should work!\n    const pg2 = new PGlite(folderPath)\n    const ret2 = await pg2.query('SELECT * FROM test;')\n    expect(ret1).toEqual(ret2)\n    await pg2.close()\n    await fs.rm(folderPath, { force: true, recursive: true })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/targets/runtimes/node-memory.test.js",
    "content": "import { tests } from './base.js'\n\ntests('node', 'memory://', 'node.memory')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/base.js",
    "content": "import { describe, it, expect, beforeAll, afterAll } from 'vitest'\nimport playwright from 'playwright'\n\nconst wsPort = process.env.WS_PORT || 3334\n\nconst BASE_URL = `http://localhost:${wsPort}/tests/targets/web/blank.html`\n\nconst PGLITE_PATH = '../../../dist/index.js'\nconst PGLITE_WORKER_PATH = '../../../dist/worker/index.js'\nconst PGLITE_LIVE_PATH = '../../../dist/live/index.js'\nconst WORKER_PATH = '/tests/targets/web/worker.js'\n\nconst useWorkerForBbFilename = ['opfs-ahp://base']\n\nexport function tests(env, dbFilename, target) {\n  describe(`targets ${target}`, () => {\n    let browser\n    let evaluate\n    let context\n    let page\n    let db\n    let evaluationQueue = Promise.resolve()\n\n    async function populateGlobals(page) {\n      await page?.evaluate(`\n        window.dbFilename = \"${dbFilename}\";\n        window.useWorkerForBbFilename = ${JSON.stringify(useWorkerForBbFilename)};\n        window.PGLITE_PATH = \"${PGLITE_PATH}\";\n        window.PGLITE_WORKER_PATH = \"${PGLITE_WORKER_PATH}\";\n        window.PGLITE_LIVE_PATH = \"${PGLITE_LIVE_PATH}\";\n        window.WORKER_PATH = \"${WORKER_PATH}\";\n      `)\n    }\n\n    afterAll(async () => {\n      if (browser) {\n        await browser.close()\n      }\n    })\n\n    beforeAll(async () => {\n      browser = await playwright[env].launch()\n      context = await browser.newContext()\n      page = await context.newPage()\n      await page.goto(BASE_URL)\n      await populateGlobals(page)\n\n      page.on('console', (msg) => {\n        console.log(msg)\n      })\n\n      evaluate = async (fn) => {\n        try {\n          const resultPromise = evaluationQueue.then(() => page.evaluate(fn))\n          evaluationQueue = resultPromise\n          return await resultPromise\n        } catch (e) {\n          console.error(e)\n          throw e\n        }\n      }\n    })\n\n    it(`basic`, async () => {\n      const res = await evaluate(async () => {\n        if (useWorkerForBbFilename.includes(dbFilename)) {\n          const { PGliteWorker } = await import(PGLITE_WORKER_PATH)\n          db = new PGliteWorker(\n            new Worker(WORKER_PATH, {\n              type: 'module',\n            }),\n            {\n              dataDir: dbFilename,\n            },\n          )\n        } else {\n          const { PGlite } = await import(PGLITE_PATH)\n          db = new PGlite(dbFilename)\n        }\n\n        await db.waitReady\n        await db.query(`\n          CREATE TABLE IF NOT EXISTS test (\n            id SERIAL PRIMARY KEY,\n            name TEXT\n          );\n        `)\n        await db.query(\"INSERT INTO test (name) VALUES ('test');\")\n        const res = await db.query(`\n          SELECT * FROM test;\n        `)\n        return res\n      })\n\n      expect(res).toMatchObject({\n        affectedRows: 0,\n        fields: [\n          {\n            dataTypeID: 23,\n            name: 'id',\n          },\n          {\n            dataTypeID: 25,\n            name: 'name',\n          },\n        ],\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n        ],\n      })\n    })\n\n    it(`params`, async () => {\n      const res = await evaluate(async () => {\n        await db.query('INSERT INTO test (name) VALUES ($1);', ['test2'])\n        const res = await db.query(`\n          SELECT * FROM test;\n        `)\n        return res\n      })\n\n      expect(res).toMatchObject({\n        affectedRows: 0,\n        fields: [\n          {\n            dataTypeID: 23,\n            name: 'id',\n          },\n          {\n            dataTypeID: 25,\n            name: 'name',\n          },\n        ],\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ],\n      })\n    })\n\n    it(`dump data dir and load it`, async () => {\n      const res = await evaluate(async () => {\n        // Force compression to test that it's working in all environments\n        const file = await db.dumpDataDir('gzip')\n        const { PGlite } = await import(PGLITE_PATH)\n        const db2 = await PGlite.create({\n          loadDataDir: file,\n        })\n        return await db2.query('SELECT * FROM test;')\n      })\n      expect(res.rows).toEqual([\n        {\n          id: 1,\n          name: 'test',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n    })\n\n    it(`close`, async () => {\n      const err = await evaluate(async () => {\n        try {\n          await db.close()\n        } catch (e) {\n          console.error(e)\n          return e.message\n        }\n        return null\n      })\n      expect(err).toBe(null)\n    })\n\n    if (dbFilename === 'memory://') {\n      // Skip the rest of the tests for memory:// as it's not persisted\n      return\n    }\n\n    it(`persisted`, async () => {\n      await page?.reload() // Refresh the page\n      await populateGlobals(page)\n\n      const res = await evaluate(async () => {\n        if (useWorkerForBbFilename.includes(dbFilename)) {\n          const { PGliteWorker } = await import(PGLITE_WORKER_PATH)\n          db = new PGliteWorker(\n            new Worker(WORKER_PATH, {\n              type: 'module',\n            }),\n            {\n              dataDir: dbFilename,\n            },\n          )\n        } else {\n          const { PGlite } = await import(PGLITE_PATH)\n          db = new PGlite(dbFilename)\n        }\n        await db.waitReady\n        const res = await db.query(`\n          SELECT * FROM test;\n        `)\n        return res\n      })\n\n      expect(res).toMatchObject({\n        affectedRows: 0,\n        fields: [\n          {\n            dataTypeID: 23,\n            name: 'id',\n          },\n          {\n            dataTypeID: 25,\n            name: 'name',\n          },\n        ],\n        rows: [\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ],\n      })\n    })\n\n    it(`worker live query`, async () => {\n      const page2 = await context.newPage()\n      await page2.goto(BASE_URL)\n      await populateGlobals(page2)\n      page.on('console', (msg) => {\n        console.log(msg)\n      })\n\n      const res2Prom = page2.evaluate(async () => {\n        const { live } = await import(PGLITE_LIVE_PATH)\n        const { PGliteWorker } = await import(PGLITE_WORKER_PATH)\n\n        let db\n        db = new PGliteWorker(\n          new Worker(WORKER_PATH, {\n            type: 'module',\n          }),\n          {\n            dataDir: window.dbFilename,\n            extensions: { live },\n          },\n        )\n\n        await db.waitReady\n\n        let updatedResults\n        const eventTarget = new EventTarget()\n        const { initialResults } = await db.live.query(\n          'SELECT * FROM test ORDER BY name;',\n          [],\n          (result) => {\n            updatedResults = result\n            eventTarget.dispatchEvent(new Event('updated'))\n          },\n        )\n        await new Promise((resolve) => {\n          eventTarget.addEventListener('updated', resolve)\n        })\n        return { initialResults, updatedResults }\n      })\n\n      const res1 = await evaluate(async () => {\n        const { live } = await import(PGLITE_LIVE_PATH)\n        const { PGliteWorker } = await import(PGLITE_WORKER_PATH)\n\n        let db\n        db = new PGliteWorker(\n          new Worker(WORKER_PATH, {\n            type: 'module',\n          }),\n          {\n            dataDir: window.dbFilename,\n            extensions: { live },\n          },\n        )\n\n        await db.waitReady\n\n        let updatedResults\n        const eventTarget = new EventTarget()\n        const { initialResults } = await db.live.query(\n          'SELECT * FROM test ORDER BY name;',\n          [],\n          (result) => {\n            updatedResults = result\n            eventTarget.dispatchEvent(new Event('updated'))\n          },\n        )\n        await new Promise((resolve) => setTimeout(resolve, 500))\n        await db.sql`INSERT INTO test (id, name) VALUES (${3}, ${'test3'});`\n        await new Promise((resolve) => {\n          eventTarget.addEventListener('updated', resolve)\n        })\n        return { initialResults, updatedResults }\n      })\n\n      const res2 = await res2Prom\n\n      expect(res1.initialResults.rows).toEqual([\n        {\n          id: 1,\n          name: 'test',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n\n      for (const res of [res1, res2]) {\n        expect(res.updatedResults.rows).toEqual([\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n          {\n            id: 3,\n            name: 'test3',\n          },\n        ])\n      }\n    })\n\n    it(`worker live incremental query`, async () => {\n      const page2 = await context.newPage()\n      await page2.goto(BASE_URL)\n      await populateGlobals(page2)\n      page.on('console', (msg) => {\n        console.log(msg)\n      })\n\n      const res2Prom = page2.evaluate(async () => {\n        const { live } = await import(PGLITE_LIVE_PATH)\n        const { PGliteWorker } = await import(PGLITE_WORKER_PATH)\n\n        let db\n        db = new PGliteWorker(\n          new Worker(WORKER_PATH, {\n            type: 'module',\n          }),\n          {\n            dataDir: window.dbFilename,\n            extensions: { live },\n          },\n        )\n\n        await db.waitReady\n\n        let updatedResults\n        const eventTarget = new EventTarget()\n        const { initialResults } = await db.live.incrementalQuery(\n          'SELECT * FROM test ORDER BY name;',\n          [],\n          'id',\n          (result) => {\n            updatedResults = result\n            eventTarget.dispatchEvent(new Event('updated'))\n          },\n        )\n        await new Promise((resolve) => {\n          eventTarget.addEventListener('updated', resolve)\n        })\n        return { initialResults, updatedResults }\n      })\n\n      const res1 = await evaluate(async () => {\n        const { live } = await import(PGLITE_LIVE_PATH)\n        const { PGliteWorker } = await import(PGLITE_WORKER_PATH)\n\n        let db\n        db = new PGliteWorker(\n          new Worker(WORKER_PATH, {\n            type: 'module',\n          }),\n          {\n            dataDir: window.dbFilename,\n            extensions: { live },\n          },\n        )\n\n        await db.waitReady\n\n        let updatedResults\n        const eventTarget = new EventTarget()\n        const { initialResults } = await db.live.incrementalQuery(\n          'SELECT * FROM test ORDER BY name;',\n          [],\n          'id',\n          (result) => {\n            updatedResults = result\n            eventTarget.dispatchEvent(new Event('updated'))\n          },\n        )\n        await new Promise((resolve) => setTimeout(resolve, 500))\n        await db.query(\"INSERT INTO test (id, name) VALUES (4, 'test4');\")\n        await new Promise((resolve) => {\n          eventTarget.addEventListener('updated', resolve)\n        })\n        return { initialResults, updatedResults }\n      })\n\n      const res2 = await res2Prom\n\n      expect(res1.initialResults.rows).toEqual([\n        {\n          id: 1,\n          name: 'test',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n        {\n          id: 3,\n          name: 'test3',\n        },\n      ])\n\n      for (const res of [res1, res2]) {\n        expect(res.updatedResults.rows).toEqual([\n          {\n            id: 1,\n            name: 'test',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n          {\n            id: 3,\n            name: 'test3',\n          },\n          {\n            id: 4,\n            name: 'test4',\n          },\n        ])\n      }\n    })\n\n    if (dbFilename.startsWith('idb://')) {\n      it(`idb close and delete`, async () => {\n        const res = await evaluate(async () => {\n          await db.query('select 1;')\n          await db.close()\n\n          const waitForDelete = () =>\n            new Promise((resolve, reject) => {\n              const req = indexedDB.deleteDatabase(dbFilename)\n\n              req.onsuccess = () => {\n                resolve()\n              }\n              req.onerror = () => {\n                reject(\n                  req.error\n                    ? req.error\n                    : 'An unknown error occurred when deleting IndexedDB database',\n                )\n              }\n              req.onblocked = async () => {\n                await new Promise((resolve) => setTimeout(resolve, 10))\n                resolve(waitForDelete())\n              }\n            })\n\n          await waitForDelete()\n\n          return true\n        })\n\n        expect(res).toBe(true)\n      })\n    }\n  })\n}\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/blank.html",
    "content": "<!doctype html>\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/chromium-idb.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('chromium', 'idb://base', 'chromium.idb')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/chromium-memory.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('chromium', 'memory://', 'chromium.memory')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/chromium-opfs-ahp.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('chromium', 'opfs-ahp://base', 'chromium.opfs-ahp')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/firefox-idb.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('firefox', 'idb://base', 'firefox.idb')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/firefox-memory.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('firefox', 'memory://', 'firefox.memory')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/firefox-opfs-ahp.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('firefox', 'opfs-ahp://base', 'firefox.opfs-ahp')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/webkit-idb.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('webkit', 'idb://base', 'webkit.idb')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/webkit-memory.test.web.js",
    "content": "import { tests } from './base.js'\n\ntests('webkit', 'memory://', 'webkit.memory')\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/webkit-opfs-ahp.test.web.js",
    "content": "// import { tests } from './base-web.js'\nimport { it } from 'vitest'\n\n// There is an issue with webkit opening more than 252 access handles, this\n// prevents the opfs-ahp VFS working on webkit. :-(\n// tests(\"webkit\", \"opfs-ahp://base\", \"webkit.opfs-ahp\");\n\nit('dummy', () => {})\n"
  },
  {
    "path": "packages/pglite/tests/targets/web/worker.js",
    "content": "import { PGlite } from '../../../dist/index.js'\nimport { worker } from '../../../dist/worker/index.js'\n\nworker({\n  async init(options) {\n    return new PGlite({\n      dataDir: options.dataDir,\n    })\n  },\n})\n"
  },
  {
    "path": "packages/pglite/tests/templating.test.js",
    "content": "import { describe, it, expect } from 'vitest'\nimport { query, sql, raw, identifier } from '../dist/templating.js'\n\ndescribe('templating', () => {\n  it('should leave plain query untouched', () => {\n    expect(query`SELECT * FROM test WHERE value = $1;`).toEqual({\n      query: 'SELECT * FROM test WHERE value = $1;',\n      params: [],\n    })\n\n    expect(\n      query`\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      value TEXT\n    );`,\n    ).toEqual({\n      query: `\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      value TEXT\n    );`,\n      params: [],\n    })\n  })\n\n  it('should parametrize templated values', () => {\n    expect(query`SELECT * FROM test WHERE value = ${'foo'};`).toEqual({\n      query: 'SELECT * FROM test WHERE value = $1;',\n      params: ['foo'],\n    })\n\n    expect(\n      query`SELECT * FROM test WHERE value = ${'foo'} AND num = ${3};`,\n    ).toEqual({\n      query: 'SELECT * FROM test WHERE value = $1 AND num = $2;',\n      params: ['foo', 3],\n    })\n  })\n\n  it('should parametrize templated values of null', () => {\n    expect(query`SELECT * FROM test WHERE value = ${null};`).toEqual({\n      query: 'SELECT * FROM test WHERE value = $1;',\n      params: [null],\n    })\n\n    expect(\n      query`SELECT * FROM test WHERE value = ${null} AND num = ${3};`,\n    ).toEqual({\n      query: 'SELECT * FROM test WHERE value = $1 AND num = $2;',\n      params: [null, 3],\n    })\n  })\n\n  it('should correctly escape identifiers', () => {\n    expect(\n      query`\n    CREATE TABLE ${identifier`test`} (\n      id SERIAL PRIMARY KEY,\n      value TEXT\n    );`,\n    ).toEqual({\n      query: `\n    CREATE TABLE \"test\" (\n      id SERIAL PRIMARY KEY,\n      value TEXT\n    );`,\n      params: [],\n    })\n\n    expect(\n      query`SELECT * FROM ${identifier`test_${2 + 3}_${'dance'}`};`,\n    ).toEqual({\n      query: 'SELECT * FROM \"test_5_dance\";',\n      params: [],\n    })\n  })\n\n  it('should correctly escape raw sql', () => {\n    expect(\n      query`SELECT * FROM test ${raw`WHERE value = ${\"'foo'\"} AND num = ${3}`};`,\n    ).toEqual({\n      query: \"SELECT * FROM test WHERE value = 'foo' AND num = 3;\",\n      params: [],\n    })\n\n    expect(\n      query`SELECT * FROM test ${raw`WHERE value = ${\"'foo'\"} AND num = ${3}`};`,\n    ).toEqual({\n      query: \"SELECT * FROM test WHERE value = 'foo' AND num = 3;\",\n      params: [],\n    })\n  })\n\n  it('should be able to nest templated statements', () => {\n    const getStmt = (filterVar) =>\n      query`SELECT * FROM ${identifier`test`}${filterVar !== undefined ? sql` WHERE ${identifier`foo`} = ${filterVar}` : sql``};`\n\n    expect(getStmt('foo')).toEqual({\n      query: 'SELECT * FROM \"test\" WHERE \"foo\" = $1;',\n      params: ['foo'],\n    })\n\n    expect(getStmt()).toEqual({\n      query: 'SELECT * FROM \"test\";',\n      params: [],\n    })\n  })\n\n  it('should parametrize without accounting for non-parameter values', () => {\n    expect(\n      query`SELECT * FROM ${identifier`test`} ${raw`WHERE value = ${\"'foo'\"}`} AND num = ${3};`,\n    ).toEqual({\n      query: 'SELECT * FROM \"test\" WHERE value = \\'foo\\' AND num = $1;',\n      params: [3],\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/test-utils.ts",
    "content": "import { describe, expect } from 'vitest'\n\ndeclare global {\n  let Bun: any\n}\n\nexport async function expectToThrowAsync(\n  fn: () => Promise<void>,\n  expected?: string,\n) {\n  if (typeof Bun !== 'undefined') {\n    // @ts-ignore because\n    const bunTest = await import('bun:test')\n    try {\n      await fn()\n      throw new Error('function did not throw')\n    } catch (err) {\n      if (expected) {\n        return bunTest.expect(err.message).toBe(expected)\n      } else {\n        return bunTest.expect(err).toBeDefined()\n      }\n    }\n  }\n\n  return expect(fn).rejects.toThrow(expected)\n}\n\nexport async function testEsmCjsAndDTC(\n  fn: (importType: 'esm' | 'cjs') => Promise<void>,\n) {\n  describe('esm import', async () => {\n    await fn('esm')\n  })\n\n  // don't run cjs tests for Bun\n  if (typeof Bun !== 'undefined') return\n\n  describe('cjs import', async () => {\n    await fn('cjs')\n  })\n}\n"
  },
  {
    "path": "packages/pglite/tests/triggers.test.js",
    "content": "import { describe, it, beforeEach, afterEach } from 'vitest'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('db triggers', () => {\n  let db\n  let eventTarget\n\n  beforeEach(async () => {\n    db = await PGlite.create()\n    eventTarget = new EventTarget()\n    await db.listen('messages', (event) =>\n      eventTarget.dispatchEvent(new Event(event)),\n    )\n  })\n\n  afterEach(() => {\n    db.unlisten('messages')\n  })\n\n  describe('regular triggers', () => {\n    it('should detect insert on table', async () => {\n      const eventType = `table changed`\n      await db.exec(`\nCREATE EXTENSION IF NOT EXISTS plpgsql;\n      CREATE TABLE foo_table (id TEXT, value TEXT);\n\n      CREATE OR REPLACE FUNCTION foo() RETURNS trigger AS $$\n      BEGIN\n        PERFORM pg_notify('messages', '${eventType}');\n        RETURN NULL;\n      END;\n      $$ LANGUAGE plpgsql;\n\n      CREATE OR REPLACE TRIGGER table_trigger\n      AFTER INSERT OR UPDATE OR DELETE ON foo_table\n      EXECUTE FUNCTION foo();\n    `)\n\n      db.query(`INSERT INTO foo_table (id, value) VALUES ('foo', 'bar');`)\n      await new Promise((resolve) =>\n        eventTarget.addEventListener(eventType, resolve, { once: true }),\n      )\n    })\n  })\n\n  describe('event triggers', () => {\n    it('should detect ddl_command_end', async () => {\n      const eventType = `table created or dropped`\n      await db.exec(`\nCREATE EXTENSION IF NOT EXISTS plpgsql;\n      CREATE OR REPLACE FUNCTION foo() RETURNS event_trigger AS $$\n      BEGIN\n        PERFORM pg_notify('messages','${eventType}');\n\n      END;\n      $$ LANGUAGE plpgsql;\n\n      CREATE EVENT TRIGGER ddl_trigger\n      ON ddl_command_end\n      EXECUTE FUNCTION foo();\n    `)\n\n      db.exec(`CREATE TABLE foo_table (id TEXT, value TEXT);`)\n      await new Promise((resolve) =>\n        eventTarget.addEventListener(eventType, resolve, { once: true }),\n      )\n\n      db.exec(`DROP TABLE foo_table;`)\n      await new Promise((resolve) =>\n        eventTarget.addEventListener(eventType, resolve, { once: true }),\n      )\n    })\n\n    it('should detect ddl_command_start', async () => {\n      const eventType = `table created or dropped`\n      await db.exec(`\nCREATE EXTENSION IF NOT EXISTS plpgsql;\n      CREATE OR REPLACE FUNCTION foo() RETURNS event_trigger AS $$\n      BEGIN\n        PERFORM pg_notify('messages','${eventType}');\n\n      END;\n      $$ LANGUAGE plpgsql;\n\n      CREATE EVENT TRIGGER ddl_trigger\n      ON ddl_command_start\n      EXECUTE FUNCTION foo();\n    `)\n\n      db.exec(`CREATE TABLE foo_table (id TEXT, value TEXT);`)\n      await new Promise((resolve) =>\n        eventTarget.addEventListener(eventType, resolve, { once: true }),\n      )\n\n      db.exec(`DROP TABLE foo_table;`)\n      await new Promise((resolve) =>\n        eventTarget.addEventListener(eventType, resolve, { once: true }),\n      )\n    })\n\n    it('should detect sql_drop', async () => {\n      const eventType = `table  dropped`\n      await db.exec(`\nCREATE EXTENSION IF NOT EXISTS plpgsql;\n      CREATE OR REPLACE FUNCTION foo() RETURNS event_trigger AS $$\n      BEGIN\n        PERFORM pg_notify('messages','${eventType}');\n\n      END;\n      $$ LANGUAGE plpgsql;\n\n      CREATE EVENT TRIGGER ddl_trigger\n      ON sql_drop\n      EXECUTE FUNCTION foo();\n    `)\n\n      db.exec(`CREATE TABLE foo_table (id TEXT, value TEXT);`)\n      // -> Should NOT fire the event trigger\n      await new Promise((resolve, reject) => {\n        eventTarget.addEventListener(eventType, reject, { once: true })\n        setTimeout(resolve, 500)\n      })\n\n      db.exec(`DROP TABLE foo_table;`)\n      await new Promise((resolve) =>\n        eventTarget.addEventListener(eventType, resolve, { once: true }),\n      )\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/types.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { types } from '../dist/index.js'\n\ndescribe('parse', () => {\n  it('text', () => {\n    expect(types.parseType('test', 0)).toEqual('test')\n  })\n\n  it('varchar 1043', () => {\n    expect(types.parseType('test', 1043)).toEqual('test')\n  })\n\n  it('int2 21', () => {\n    expect(types.parseType('1', 21)).toEqual(1)\n  })\n\n  it('int4 23', () => {\n    expect(types.parseType('1', 23)).toEqual(1)\n  })\n\n  it('oid 26', () => {\n    expect(types.parseType('1', 26)).toEqual(1)\n  })\n\n  it('float4 700', () => {\n    expect(types.parseType('1.1', 700)).toEqual(1.1)\n  })\n\n  it('float8 701', () => {\n    expect(types.parseType('1.1', 701)).toEqual(1.1)\n  })\n\n  it('int8 20', () => {\n    expect(types.parseType('1', 20)).toEqual(1)\n  })\n\n  it('json 114', () => {\n    expect(types.parseType('{\"test\":1}', 114)).toEqual({ test: 1 })\n  })\n\n  it('jsonb 3802', () => {\n    expect(types.parseType('{\"test\":1}', 3802)).toEqual({ test: 1 })\n  })\n\n  it('bool 16', () => {\n    expect(types.parseType('t', 16)).toEqual(true)\n  })\n\n  it('date 1082', () => {\n    expect(types.parseType('2021-01-01', 1082)).toEqual(\n      new Date('2021-01-01T00:00:00.000Z'),\n    )\n  })\n\n  it('timestamp 1114', () => {\n    // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones.\n    expect(\n      types.parseType('2021-01-01T12:00:00', 1114).getUTCMilliseconds(),\n    ).toEqual(new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds())\n  })\n\n  it('timestamptz 1184', () => {\n    // standardize timestamp comparison to UTC milliseconds to ensure predictable test runs on machines in different timezones.\n    expect(\n      types.parseType('2021-01-01T12:00:00', 1184).getUTCMilliseconds(),\n    ).toEqual(new Date('2021-01-01T12:00:00.000Z').getUTCMilliseconds())\n  })\n\n  it('bytea 17', () => {\n    expect(types.parseType('\\\\x010203', 17)).toEqual(Uint8Array.from([1, 2, 3]))\n  })\n\n  it('unknown', () => {\n    expect(types.parseType('test', 0)).toEqual('test')\n  })\n})\n\n// Serialize type tests\ndescribe('serialize', () => {\n  it('string', () => {\n    expect(types.serializers[25]('test')).toEqual('test')\n  })\n\n  it('string from number', () => {\n    expect(types.serializers[25](1)).toEqual('1')\n  })\n\n  it('not string', () => {\n    expect(() => types.serializers[25](true)).toThrow()\n  })\n\n  it('number', () => {\n    expect(types.serializers[0](1)).toEqual('1')\n    expect(types.serializers[0](1.1)).toEqual('1.1')\n  })\n\n  it('bigint', () => {\n    expect(types.serializers[20](1n)).toEqual('1')\n  })\n\n  it('bool', () => {\n    expect(types.serializers[16](true)).toEqual('t')\n  })\n\n  it('not bool', () => {\n    expect(() => types.serializers[16]('test')).toThrow()\n  })\n\n  it('date', () => {\n    expect(\n      types.serializers[1184](new Date('2021-01-01T00:00:00.000Z')),\n    ).toEqual('2021-01-01T00:00:00.000Z')\n  })\n\n  it('date from number', () => {\n    expect(types.serializers[1184](1672531200000)).toEqual(\n      '2023-01-01T00:00:00.000Z',\n    )\n  })\n\n  it('date from string', () => {\n    expect(types.serializers[1184]('2021-01-01T00:00:00.000Z')).toEqual(\n      '2021-01-01T00:00:00.000Z',\n    )\n  })\n\n  it('not date', () => {\n    expect(() => types.serializers[1184](true)).toThrow()\n  })\n\n  it('json', () => {\n    expect(types.serializers[114]({ test: 1 })).toEqual('{\"test\":1}')\n  })\n\n  it('json from string', () => {\n    expect(types.serializers[114](JSON.stringify({ test: 1 }))).toEqual(\n      '{\"test\":1}',\n    )\n  })\n\n  it('blob', () => {\n    expect(types.serializers[17](Uint8Array.from([1, 2, 3]))).toEqual(\n      '\\\\x010203',\n    )\n  })\n\n  it('not blob', () => {\n    expect(() => types.serializers[17](1)).toThrow()\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/user.test.ts",
    "content": "import { describe, it, expect, afterAll } from 'vitest'\nimport { expectToThrowAsync } from './test-utils.js'\nimport * as fs from 'fs/promises'\nimport { PGlite } from '../dist/index.js'\n\ndescribe('user', () => {\n  afterAll(async () => {\n    await fs.rm('./pgdata-test-user', { force: true, recursive: true })\n  })\n  it('user switching', async () => {\n    await fs.rm('./pgdata-test-user', { force: true, recursive: true })\n\n    const db = new PGlite('./pgdata-test-user')\n    await db.exec(\n      \"CREATE USER test_user WITH PASSWORD 'md5abdbecd56d5fbd2cdaee3d0fa9e4f434';\",\n    )\n\n    await db.exec(`\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      number INT\n    );\n    INSERT INTO test (number) VALUES (42);\n  `)\n\n    await db.exec(`\n    CREATE TABLE test2 (\n      id SERIAL PRIMARY KEY,\n      number INT\n    );\n    INSERT INTO test2 (number) VALUES (42);\n  `)\n\n    const test = await db.query('SELECT * FROM test2;')\n    expect(test.rows).toEqual([{ id: 1, number: 42 }])\n\n    await db.exec('ALTER TABLE test2 OWNER TO test_user;')\n\n    await db.close()\n\n    const db2 = new PGlite({\n      dataDir: './pgdata-test-user',\n      username: 'test_user',\n    })\n\n    const currentUsername = await db2.query('SELECT current_user;')\n    expect(currentUsername.rows).toEqual([{ current_user: 'test_user' }])\n\n    await expectToThrowAsync(async () => {\n      await db2.query('SELECT * FROM test;')\n    }, 'permission denied for table test')\n\n    const test2 = await db2.query('SELECT * FROM test2;')\n    expect(test2.rows).toEqual([{ id: 1, number: 42 }])\n\n    // tdrz: TODO!\n    // await expectToThrowAsync(async () => {\n    //   await db2.query('SET ROLE postgres;')\n    // }, 'permission denied to set role \"postgres\"')\n\n    await expectToThrowAsync(async () => {\n      await db2.query('SET ROLE postgres;')\n    })\n  })\n\n  it('switch to user created after initial run', async () => {\n    await fs.rm('./pgdata-test-user', { force: true, recursive: true })\n\n    const db0 = new PGlite('./pgdata-test-user')\n    await db0.waitReady\n    await db0.close()\n\n    const db = new PGlite('./pgdata-test-user')\n    await db.exec(\n      \"CREATE USER test_user WITH PASSWORD 'md5abdbecd56d5fbd2cdaee3d0fa9e4f434';\",\n    )\n\n    await db.exec(`\n    CREATE TABLE test (\n      id SERIAL PRIMARY KEY,\n      number INT\n    );\n    INSERT INTO test (number) VALUES (42);\n  `)\n\n    await db.exec(`\n    CREATE TABLE test2 (\n      id SERIAL PRIMARY KEY,\n      number INT\n    );\n    INSERT INTO test2 (number) VALUES (42);\n  `)\n\n    await db.exec('ALTER TABLE test2 OWNER TO test_user;')\n\n    await db.close()\n\n    const db2 = new PGlite({\n      dataDir: './pgdata-test-user',\n      username: 'test_user',\n    })\n\n    const currentUsername = await db2.query('SELECT current_user;')\n    expect(currentUsername.rows).toEqual([{ current_user: 'test_user' }])\n\n    await expectToThrowAsync(async () => {\n      await db2.query('SELECT * FROM test;')\n    }, 'permission denied for table test')\n\n    const test2 = await db2.query('SELECT * FROM test2;')\n    expect(test2.rows).toEqual([{ id: 1, number: 42 }])\n\n    // tdrz: TODO!\n    // await expectToThrowAsync(async () => {\n    //   await db2.query('SET ROLE postgres;')\n    // }, 'permission denied to set role \"postgres\"')\n\n    await expectToThrowAsync(async () => {\n      await db2.query('SET ROLE postgres;')\n    })\n  })\n\n  it('create database and switch to it', async () => {\n    await fs.rm('./pgdata-test-user', { force: true, recursive: true })\n\n    const db = new PGlite('./pgdata-test-user')\n    await db.exec(\n      \"CREATE USER test_user WITH PASSWORD 'md5abdbecd56d5fbd2cdaee3d0fa9e4f434';\",\n    )\n\n    await db.exec('CREATE DATABASE test_db OWNER test_user;')\n    await db.close()\n\n    const db2 = new PGlite({\n      dataDir: './pgdata-test-user',\n      username: 'test_user',\n      database: 'test_db',\n    })\n\n    const currentUsername = await db2.query('SELECT current_user;')\n    expect(currentUsername.rows).toEqual([{ current_user: 'test_user' }])\n    const currentDatabase = await db2.query('SELECT current_database();')\n    expect(currentDatabase.rows).toEqual([{ current_database: 'test_db' }])\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/utils.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { debounceMutex } from '../src/utils'\n\ndescribe('debounceMutex', () => {\n  const delay = (ms: number) =>\n    new Promise((resolve) => setTimeout(resolve, ms))\n\n  it('should execute first and last calls, cancelling intermediate ones', async () => {\n    const results: number[] = []\n    const fn = async (n: number) => {\n      await delay(10)\n      results.push(n)\n      return n\n    }\n\n    const debouncedFn = debounceMutex(fn)\n\n    // Start multiple calls in quick succession\n    const calls = [debouncedFn(1), debouncedFn(2), debouncedFn(3)]\n\n    const returnValues = await Promise.all(calls)\n\n    // Check execution order and return values\n    expect(results).toEqual([1, 3])\n    expect(returnValues).toEqual([1, undefined, 3])\n  })\n\n  it('should respect execution order regardless of delays', async () => {\n    const results: number[] = []\n    const fn = async (n: number, delayMs: number) => {\n      await delay(delayMs)\n      results.push(n)\n      return n\n    }\n\n    const debouncedFn = debounceMutex(fn)\n\n    const call1 = debouncedFn(1, 50) // Longer delay, but should complete first\n    const call2 = debouncedFn(2, 10) // Should be replaced and return undefined\n    const call3 = debouncedFn(3, 10) // Should complete second despite shorter delay\n\n    const returnValues = await Promise.all([call1, call2, call3])\n\n    expect(results).toEqual([1, 3])\n    expect(returnValues).toEqual([1, undefined, 3])\n  })\n\n  it('should handle errors properly', async () => {\n    const fn = async () => {\n      throw new Error('Test error')\n    }\n\n    const debouncedFn = debounceMutex(fn)\n    await expect(debouncedFn()).rejects.toThrow('Test error')\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tests/xml.test.ts",
    "content": "import { describe, it, expect, beforeAll, afterAll } from 'vitest'\nimport { PGlite } from '../dist/index.js'\nimport * as fs from 'fs/promises'\n\ndescribe('XML functionality', () => {\n  let db\n\n  beforeAll(async () => {\n    await fs.rm('./pgdata-test-xml', { force: true, recursive: true })\n    db = new PGlite('./pgdata-test-xml')\n    await db.exec(`\n      CREATE TABLE xml_test (\n        id SERIAL PRIMARY KEY,\n        data XML\n      );\n    `)\n  })\n\n  afterAll(async () => {\n    await db.close()\n  })\n\n  it('should create XML documents', async () => {\n    await db.exec(`\n      INSERT INTO xml_test (data) VALUES\n      ('<root><element>value1</element></root>'),\n      ('<root><element>value2</element></root>');\n    `)\n\n    const result = await db.query('SELECT * FROM xml_test;')\n    expect(result.rows).toEqual([\n      { id: 1, data: '<root><element>value1</element></root>' },\n      { id: 2, data: '<root><element>value2</element></root>' },\n    ])\n  })\n\n  it('should use xpath to query XML documents', async () => {\n    const result = await db.query(`\n      SELECT xpath('/root/element/text()', data) AS elements\n      FROM xml_test;\n    `)\n\n    expect(result.rows).toEqual([\n      { elements: ['value1'] },\n      { elements: ['value2'] },\n    ])\n  })\n\n  it('should use XML aggregation', async () => {\n    const result = await db.query(`\n      SELECT xmlelement(name \"aggregated\", xmlagg(data)) AS aggregated_data\n      FROM xml_test;\n    `)\n\n    expect(result.rows[0].aggregated_data).toEqual(\n      '<aggregated><root><element>value1</element></root><root><element>value2</element></root></aggregated>',\n    )\n  })\n})\n"
  },
  {
    "path": "packages/pglite/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"types\": [\"@types/emscripten\", \"node\"],\n    \"paths\": {\n      \"@electric-sql/pg-protocol\": [\n        \"./node_modules/@electric-sql/pg-protocol/src/index\"\n      ],\n      \"@electric-sql/pg-protocol/messages\": [\n        \"./node_modules/@electric-sql/pg-protocol/src/messages\"\n      ]\n    }\n  },\n  \"include\": [\"src\", \"tsup.config.ts\", \"vitest.config.ts\"]\n}\n"
  },
  {
    "path": "packages/pglite/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\nimport path from 'path'\nimport { fileURLToPath } from 'url'\nimport fs from 'fs'\n\nconst thisFile = fileURLToPath(new URL(import.meta.url))\nconst root = path.dirname(thisFile)\n\nconst replaceAssertPlugin = {\n  name: 'replace-assert',\n  setup(build: any) {\n    // Resolve `assert` to a blank file\n    build.onResolve({ filter: /^assert$/ }, (_args: any) => {\n      return { path: path.join(root, 'src', 'polyfills', 'blank.ts') }\n    })\n  },\n}\n\nconst entryPoints = [\n  'src/index.ts',\n  'src/fs/nodefs.ts',\n  'src/fs/opfs-ahp.ts',\n  'src/fs/base.ts',\n  'src/templating.ts',\n  'src/live/index.ts',\n  'src/vector/index.ts',\n  'src/pg_ivm/index.ts',\n  'src/pgtap/index.ts',\n  'src/pg_uuidv7/index.ts',\n  'src/age/index.ts',\n  'src/worker/index.ts',\n  'src/pg_hashids/index.ts',\n  'src/pg_textsearch/index.ts',\n]\n\nconst contribDir = path.join(root, 'src', 'contrib')\nconst contribFiles = await fs.promises.readdir(contribDir)\nfor (const file of contribFiles) {\n  if (file.endsWith('.ts')) {\n    entryPoints.push(`src/contrib/${file}`)\n  }\n}\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: entryPoints,\n    sourcemap: true,\n    dts: {\n      entry: entryPoints,\n      resolve: true,\n    },\n    clean: true,\n    external: ['../release/pglite.js', '../release/pglite.cjs'],\n    esbuildPlugins: [replaceAssertPlugin],\n    minify: minify,\n    shims: true, // Convert import.meta.url to a shim for CJS\n    format: ['esm', 'cjs'],\n  },\n  {\n    // Convert the Emscripten ESM bundle to a CJS bundle\n    entry: ['release/pglite.js'],\n    format: ['cjs'],\n    minify: minify,\n    shims: true, // Convert import.meta.url to a shim for CJS\n    keepNames: true,\n  },\n])\n"
  },
  {
    "path": "packages/pglite/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    name: 'pglite',\n    dir: './tests',\n    watch: false,\n    typecheck: { enabled: true },\n    testTimeout: 30000,\n    hookTimeout: 30000,\n    include: ['**/*.{test,test.web}.{js,ts}'],\n    server: {\n      deps: {\n        external: [/\\/tests\\/targets\\/web\\//],\n      },\n    },\n  },\n})\n"
  },
  {
    "path": "packages/pglite-postgis/.gitignore",
    "content": "release/*\ndist"
  },
  {
    "path": "packages/pglite-postgis/CHANGELOG.md",
    "content": "# @electric-sql/pglite-postgis\n\n## 0.0.3\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n\n## 0.0.2\n\n### Patch Changes\n\n- d6f9910: Fix deployed package on npmjs\n\n## 0.0.1\n\n### Patch Changes\n\n- New package for postgis (experimental) as extension.\n- Updated dependencies [d848955]\n  - @electric-sql/pglite@0.4.0\n"
  },
  {
    "path": "packages/pglite-postgis/README.md",
    "content": "# @electric-sql/pglite-postgis\n\n*** EXPERIMENTAL ***\n\nPostGIS extension for [PGlite](https://pglite.dev). This is an experimental release, use at your own risk.\n\n## Installation\n\n```bash\nnpm install @electric-sql/pglite-postgis\n```\n\n## Usage\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { postgis } from '@electric-sql/pglite-postgis'\n\nconst pg = new PGlite({\n  extensions: {\n    postgis,\n  },\n})\n\nawait pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n\n// Create a table with geometry columns\nawait pg.exec(`\n  CREATE TABLE cities (\n    id SERIAL PRIMARY KEY,\n    name TEXT NOT NULL,\n    location GEOMETRY(Point, 4326)\n  );\n`)\n\n// Insert data\nawait pg.query(`\n  INSERT INTO cities (name, location)\n  VALUES ('New York', ST_GeomFromText('POINT(-74.0060 40.7128)', 4326))\n`)\n\n// Query with spatial functions\nconst result = await pg.query(`\n  SELECT name, ST_AsText(location) as location\n  FROM cities\n`)\n```\n\n## License\n\nApache-2.0"
  },
  {
    "path": "packages/pglite-postgis/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  {\n    ignores: ['release/**/*', 'dist/**/*'],\n  },\n  {\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n        ...globals.node,\n      },\n    },\n    rules: {\n      ...rootConfig.rules,\n      '@typescript-eslint/no-explicit-any': 'off',\n    },\n  },\n]"
  },
  {
    "path": "packages/pglite-postgis/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-postgis\",\n  \"version\": \"0.0.3\",\n  \"description\": \"PostGIS extension for PGlite\",\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"pglite\",\n    \"postgis\",\n    \"gis\",\n    \"geospatial\"\n  ],\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"type\": \"module\",\n  \"main\": \"./dist/index.cjs\",\n  \"module\": \"./dist/index.js\",\n  \"types\": \"./dist/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite.git\",\n    \"directory\": \"packages/pglite-postgis\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup && tsx scripts/bundle-wasm.ts\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"lint\": \"eslint ./src ./tests --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write ./src ./tests\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"pnpm lint && prettier --check ./src ./tests\",\n    \"test\": \"vitest\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@types/node\": \"^20.16.11\",\n    \"vitest\": \"^2.1.2\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:*\"\n  }\n}"
  },
  {
    "path": "packages/pglite-postgis/scripts/bundle-wasm.ts",
    "content": "import * as fs from 'fs/promises'\nimport * as path from 'path'\n\nasync function findAndReplaceInFile(\n  find: string | RegExp,\n  replace: string,\n  file: string,\n): Promise<void> {\n  const content = await fs.readFile(file, 'utf8')\n  const replacedContent = content.replace(find, replace)\n  await fs.writeFile(file, replacedContent)\n}\n\nasync function findAndReplaceInDir(\n  dir: string,\n  find: string | RegExp,\n  replace: string,\n  extensions: string[],\n  recursive = false,\n): Promise<void> {\n  const files = await fs.readdir(dir, { withFileTypes: true })\n\n  for (const file of files) {\n    const filePath = path.join(dir, file.name)\n    if (file.isDirectory() && recursive) {\n      await findAndReplaceInDir(filePath, find, replace, extensions)\n    } else {\n      const fileExt = path.extname(file.name)\n      if (extensions.includes(fileExt)) {\n        await findAndReplaceInFile(find, replace, filePath)\n      }\n    }\n  }\n}\n\nconst copyFiles = async (srcDir: string, destDir: string) => {\n  await fs.mkdir(destDir, { recursive: true })\n  const files = await fs.readdir(srcDir)\n  for (const file of files) {\n    if (file.startsWith('.')) {\n      continue\n    }\n    const srcFile = path.join(srcDir, file)\n    const destFile = path.join(destDir, file)\n    const stat = await fs.stat(srcFile)\n    if (stat.isFile()) {\n      await fs.copyFile(srcFile, destFile)\n      console.log(`Copied ${srcFile} to ${destFile}`)\n    }\n  }\n}\n\nasync function main() {\n  await copyFiles('./release', './dist')\n  await findAndReplaceInDir('./dist', /\\.\\.\\/release\\//g, './', ['.js', '.cjs'])\n}\n\nawait main()\n"
  },
  {
    "path": "packages/pglite-postgis/src/index.ts",
    "content": "import type {\n  Extension,\n  ExtensionSetupResult,\n  PGliteInterface,\n} from '@electric-sql/pglite'\n\nconst setup = async (_pg: PGliteInterface, emscriptenOpts: any) => {\n  return {\n    emscriptenOpts,\n    bundlePath: new URL('../release/postgis.tar.gz', import.meta.url),\n  } satisfies ExtensionSetupResult\n}\n\nexport const postgis = {\n  name: 'postgis',\n  setup,\n} satisfies Extension\n"
  },
  {
    "path": "packages/pglite-postgis/tests/postgis.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '@electric-sql/pglite'\nimport { postgis } from '../src/index.js'\n\ndescribe(`postgis`, () => {\n  it('basic', async () => {\n    const pg = new PGlite({\n      extensions: {\n        postgis,\n      },\n    })\n\n    await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n    await pg.exec(`\n    CREATE TABLE vehicle_location (\n    time TIMESTAMPTZ NOT NULL,\n    vehicle_id INT NOT NULL,\n    location GEOGRAPHY(POINT, 4326)\n);\n  `)\n    const inserted = await pg.query(`INSERT INTO vehicle_location VALUES \n  ('2023-05-29 20:00:00', 1, 'POINT(15.3672 -87.7231)'),\n  ('2023-05-30 20:00:00', 1, 'POINT(15.3652 -80.7331)'),\n  ('2023-05-31 20:00:00', 1, 'POINT(15.2672 -85.7431)');`)\n\n    expect(inserted.affectedRows).toEqual(3)\n  }),\n    it('cities', async () => {\n      const pg = new PGlite({\n        extensions: {\n          postgis,\n        },\n      })\n\n      await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n      await pg.exec(`\n    CREATE TABLE cities (\n    id SERIAL PRIMARY KEY,\n    name VARCHAR(100),\n    location GEOMETRY(Point, 4326)\n);\n  `)\n      const inserted = await pg.query(`INSERT INTO cities (name, location)\nVALUES\n    ('New York', ST_GeomFromText('POINT(-74.0060 40.7128)', 4326)),\n    ('Los Angeles', ST_GeomFromText('POINT(-118.2437 34.0522)', 4326)),\n    ('Chicago', ST_GeomFromText('POINT(-87.6298 41.8781)', 4326));`)\n\n      expect(inserted.affectedRows).toEqual(3)\n\n      const cities = await pg.query(`WITH state_boundary AS (\n    SELECT ST_GeomFromText(\n        'POLYGON((-91 36, -91 43, -87 43, -87 36, -91 36))', 4326\n    ) AS geom\n)\nSELECT c.name\nFROM cities c, state_boundary s\nWHERE ST_Within(c.location, s.geom);`)\n\n      expect(cities.affectedRows).toBe(0)\n      expect(cities.rows[0]).toEqual({\n        name: 'Chicago',\n      })\n    })\n})\n\nit('areas', async () => {\n  const pg = new PGlite({\n    extensions: {\n      postgis,\n    },\n  })\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n\n  const area1 = await pg.exec(`\n      select ST_Area(geom) sqft,\n        ST_Area(geom) * 0.3048 ^ 2 sqm\n      from (\n            select 'SRID=2249;POLYGON((743238 2967416,743238 2967450,\n            743265 2967450,743265.625 2967416,743238 2967416))' :: geometry geom\n      ) subquery;`)\n\n  expect(area1).toEqual([\n    {\n      rows: [\n        {\n          sqft: 928.625,\n          sqm: 86.27208552,\n        },\n      ],\n      fields: [\n        {\n          name: 'sqft',\n          dataTypeID: 701,\n        },\n        {\n          name: 'sqm',\n          dataTypeID: 701,\n        },\n      ],\n      affectedRows: 0,\n    },\n  ])\n\n  const area2 = await pg.exec(`\n        select ST_Area(geom) sqft,\n        ST_Area(ST_Transform(geom, 26986)) As sqm\n    from (\n            select\n                'SRID=2249;POLYGON((743238 2967416,743238 2967450,\n                743265 2967450,743265.625 2967416,743238 2967416))' :: geometry geom\n        ) subquery;\n  \n    -- Cleanup test schema\n    -- DROP SCHEMA postgis_test CASCADE;\n    `)\n\n  expect(area2).toEqual([\n    {\n      rows: [\n        {\n          sqft: 928.625,\n          sqm: 86.27243061926092,\n        },\n      ],\n      fields: [\n        {\n          name: 'sqft',\n          dataTypeID: 701,\n        },\n        {\n          name: 'sqm',\n          dataTypeID: 701,\n        },\n      ],\n      affectedRows: 0,\n    },\n  ])\n\n  const area3 = await pg.exec(`\n      select ST_Area(geog) / 0.3048 ^ 2 sqft_spheroid,\n      ST_Area(geog, false) / 0.3048 ^ 2 sqft_sphere,\n      ST_Area(geog) sqm_spheroid\n    from (\n           select ST_Transform(\n                      'SRID=2249;POLYGON((743238 2967416,743238 2967450,743265 2967450,743265.625 2967416,743238 2967416))'::geometry,\n                      4326\n               ) :: geography geog\n       ) as subquery;\n      `)\n\n  expect(area3).toEqual([\n    {\n      rows: [\n        {\n          sqft_spheroid: 928.6844047556697,\n          sqft_sphere: 926.609762750544,\n          sqm_spheroid: 86.27760440239217,\n        },\n      ],\n      fields: [\n        {\n          name: 'sqft_spheroid',\n          dataTypeID: 701,\n        },\n        {\n          name: 'sqft_sphere',\n          dataTypeID: 701,\n        },\n        {\n          name: 'sqm_spheroid',\n          dataTypeID: 701,\n        },\n      ],\n      affectedRows: 0,\n    },\n  ])\n})\n\nit('ST_Polygonize', async () => {\n  const pg = new PGlite({\n    extensions: {\n      postgis,\n    },\n  })\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n  const res = await pg.exec(`\n      WITH data(geom) AS (VALUES\n    ('LINESTRING (180 40, 30 20, 20 90)'::geometry)\n    ,('LINESTRING (180 40, 160 160)'::geometry)\n    ,('LINESTRING (80 60, 120 130, 150 80)'::geometry)\n    ,('LINESTRING (80 60, 150 80)'::geometry)\n    ,('LINESTRING (20 90, 70 70, 80 130)'::geometry)\n    ,('LINESTRING (80 130, 160 160)'::geometry)\n    ,('LINESTRING (20 90, 20 160, 70 190)'::geometry)\n    ,('LINESTRING (70 190, 80 130)'::geometry)\n    ,('LINESTRING (70 190, 160 160)'::geometry)\n    )\n    SELECT ST_AsText( ST_Polygonize( geom ))\n        FROM data;\n    `)\n\n  expect(res).toEqual([\n    {\n      rows: [\n        {\n          st_astext:\n            'GEOMETRYCOLLECTION(POLYGON((180 40,30 20,20 90,70 70,80 130,160 160,180 40),(150 80,120 130,80 60,150 80)),POLYGON((80 60,120 130,150 80,80 60)),POLYGON((80 130,70 70,20 90,20 160,70 190,80 130)),POLYGON((160 160,80 130,70 190,160 160)))',\n        },\n      ],\n      fields: [\n        {\n          name: 'st_astext',\n          dataTypeID: 25,\n        },\n      ],\n      affectedRows: 0,\n    },\n  ])\n})\n\nit('complex1', async () => {\n  const pg = new PGlite({\n    extensions: {\n      postgis,\n    },\n  })\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n\n  await pg.exec(`\n    -- Create test schema\n  -- CREATE SCHEMA IF NOT EXISTS postgis_test;\n  -- SET search_path TO postgis_test;\n\n  -- Create a table with geometry columns\n  CREATE TABLE cities (\n      id SERIAL PRIMARY KEY,\n      name TEXT NOT NULL,\n      population INTEGER,\n      geom GEOMETRY(Point, 4326)\n  );`)\n\n  await pg.exec(`\n  CREATE TABLE rivers (\n      id SERIAL PRIMARY KEY,\n      name TEXT NOT NULL,\n      geom GEOMETRY(LineString, 4326)\n  );\n\n  -- Insert sample data\n  INSERT INTO cities (name, population, geom) VALUES\n  ('Paris', 2148000, ST_SetSRID(ST_MakePoint(2.3522, 48.8566), 4326)),\n  ('Berlin', 3769000, ST_SetSRID(ST_MakePoint(13.4050, 52.5200), 4326)),\n  ('London', 8982000, ST_SetSRID(ST_MakePoint(-0.1276, 51.5072), 4326)),\n  ('Amsterdam', 872757, ST_SetSRID(ST_MakePoint(4.9041, 52.3676), 4326));\n\n  INSERT INTO rivers (name, geom) VALUES\n  ('Seine', ST_SetSRID(ST_MakeLine(ARRAY[\n      ST_MakePoint(2.1, 48.8),\n      ST_MakePoint(2.35, 48.85),\n      ST_MakePoint(2.45, 48.9)\n  ]), 4326)),\n  ('Spree', ST_SetSRID(ST_MakeLine(ARRAY[\n      ST_MakePoint(13.1, 52.4),\n      ST_MakePoint(13.35, 52.5),\n      ST_MakePoint(13.45, 52.52)\n  ]), 4326));\n\n  -- Create spatial index\n  CREATE INDEX idx_cities_geom ON cities USING GIST (geom);\n  CREATE INDEX idx_rivers_geom ON rivers USING GIST (geom);\n\n  -- Query: Find cities within 10 km of any river\n  SELECT\n      c.name AS city,\n      r.name AS river,\n      ST_Distance(c.geom::geography, r.geom::geography) AS distance_km\n  FROM cities c\n  JOIN rivers r\n  ON ST_DWithin(c.geom::geography, r.geom::geography, 10000)\n  ORDER BY distance_km;\n\n  `)\n})\n\nit('The coordinates in GeoJSON are not sufficiently nested', async () => {\n  const pg = new PGlite({\n    extensions: {\n      postgis,\n    },\n    debug: 1,\n  })\n  await pg.exec('CREATE EXTENSION IF NOT EXISTS postgis;')\n\n  await expect(\n    pg.exec(\n      `SELECT '#3583', ST_AsText(ST_GeomFromGeoJSON('{\"type\":\"MultiPolygon\", \"coordinates\":[[[139.10030364990232,35.16777444430609],5842.4224490305424]]}'));`,\n    ),\n  ).rejects.toThrow(`The 'coordinates' in GeoJSON are not sufficiently nested`)\n})\n"
  },
  {
    "path": "packages/pglite-postgis/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"types\": [\"node\"]\n  },\n  \"include\": [\"src\", \"tsup.config.ts\", \"vitest.config.ts\"]\n}"
  },
  {
    "path": "packages/pglite-postgis/tsup.config.ts",
    "content": "import { cpSync } from 'fs'\nimport { resolve } from 'path'\nimport { defineConfig } from 'tsup'\n\nconst entryPoints = ['src/index.ts']\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: entryPoints,\n    sourcemap: true,\n    dts: {\n      entry: entryPoints,\n      resolve: true,\n    },\n    clean: true,\n    minify: minify,\n    shims: true,\n    format: ['esm', 'cjs'],\n    onSuccess: async () => {\n      cpSync(resolve('release/postgis.tar.gz'), resolve('dist/postgis.tar.gz'))\n    },\n  },\n])"
  },
  {
    "path": "packages/pglite-postgis/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    globals: true,\n    environment: 'node',\n    testTimeout: 30000,\n  },\n})"
  },
  {
    "path": "packages/pglite-react/.gitignore",
    "content": "dist\nnode_modules"
  },
  {
    "path": "packages/pglite-react/CHANGELOG.md",
    "content": "# @electric-sql/pglite-react\n\n## 0.3.1\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n\n## 0.3.0\n\n### Minor Changes\n\n- Updated dependencies [d848955]\n  - @electric-sql/pglite@0.4.0\n\n## 0.2.34\n\n### Patch Changes\n\n- Updated dependencies [3dfa40f]\n  - @electric-sql/pglite@0.3.16\n\n## 0.2.33\n\n### Patch Changes\n\n- Updated dependencies [45bff97]\n- Updated dependencies [5ec474f]\n  - @electric-sql/pglite@0.3.15\n\n## 0.2.32\n\n### Patch Changes\n\n- Updated dependencies [8785034]\n- Updated dependencies [90cfee8]\n  - @electric-sql/pglite@0.3.14\n\n## 0.2.31\n\n### Patch Changes\n\n- Updated dependencies [ad3d0d8]\n  - @electric-sql/pglite@0.3.13\n\n## 0.2.30\n\n### Patch Changes\n\n- Updated dependencies [ce0e74e]\n  - @electric-sql/pglite@0.3.12\n\n## 0.2.29\n\n### Patch Changes\n\n- Updated dependencies [9a104b9]\n  - @electric-sql/pglite@0.3.11\n\n## 0.2.28\n\n### Patch Changes\n\n- Updated dependencies [ad765ed]\n  - @electric-sql/pglite@0.3.10\n\n## 0.2.27\n\n### Patch Changes\n\n- Updated dependencies [e40ccad]\n  - @electric-sql/pglite@0.3.9\n\n## 0.2.26\n\n### Patch Changes\n\n- Updated dependencies [f12a582]\n- Updated dependencies [bd263aa]\n  - @electric-sql/pglite@0.3.8\n\n## 0.2.25\n\n### Patch Changes\n\n- Updated dependencies [0936962]\n  - @electric-sql/pglite@0.3.7\n\n## 0.2.24\n\n### Patch Changes\n\n- Updated dependencies [6898469]\n- Updated dependencies [469be18]\n- Updated dependencies [64e33c7]\n  - @electric-sql/pglite@0.3.6\n\n## 0.2.23\n\n### Patch Changes\n\n- Updated dependencies [6653899]\n- Updated dependencies [5f007fc]\n  - @electric-sql/pglite@0.3.5\n\n## 0.2.22\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n- Updated dependencies [1fcaa3e]\n- Updated dependencies [38a55d0]\n- Updated dependencies [aac7003]\n- Updated dependencies [8ca254d]\n  - @electric-sql/pglite@0.3.4\n\n## 0.2.21\n\n### Patch Changes\n\n- Updated dependencies [ea2c7c7]\n  - @electric-sql/pglite@0.3.3\n\n## 0.2.20\n\n### Patch Changes\n\n- Updated dependencies [e2c654b]\n  - @electric-sql/pglite@0.3.2\n\n## 0.2.19\n\n### Patch Changes\n\n- Updated dependencies [713364e]\n  - @electric-sql/pglite@0.3.1\n\n## 0.2.18\n\n### Patch Changes\n\n- 317fd36: Specify a peer dependency range on @electric-sql/pglite\n- Updated dependencies [97e52f7]\n- Updated dependencies [4356024]\n- Updated dependencies [0033bc7]\n  - @electric-sql/pglite@0.3.0\n\n## 0.2.17\n\n### Patch Changes\n\n- Updated dependencies [6bdd74e]\n- Updated dependencies [f94d591]\n  - @electric-sql/pglite@0.2.17\n\n## 0.2.16\n\n### Patch Changes\n\n- 514943b: Bump versions of React, React DOM, and related testing libraries to v19 on pglite-react. pglite-react now supports React v18 and v19 projects.\n- Updated dependencies [c36fd09]\n- Updated dependencies [e037883]\n- Updated dependencies [d6b981b]\n- Updated dependencies [17e7664]\n- Updated dependencies [118ba3e]\n- Updated dependencies [d93c1bb]\n- Updated dependencies [ddd4a68]\n- Updated dependencies [f3f1103]\n- Updated dependencies [67fb2aa]\n  - @electric-sql/pglite@0.2.16\n\n## 0.2.15\n\n### Patch Changes\n\n- Updated dependencies [fa13714]\n  - @electric-sql/pglite@0.2.15\n\n## 0.2.14\n\n### Patch Changes\n\n- 75f9f6d: Add a `offset` and `limit` option to live queries, when used it will return the total count for the query along with efficient updating of the offset. This works well with windowed or virtualised scrolling components.\n- Updated dependencies [6547374]\n- Updated dependencies [6547374]\n- Updated dependencies [df5c290]\n- Updated dependencies [1784d04]\n- Updated dependencies [ae36974]\n- Updated dependencies [75f9f6d]\n- Updated dependencies [ce212cf]\n  - @electric-sql/pglite@0.2.14\n\n## 0.2.13\n\n### Patch Changes\n\n- 3d8efbb: Bump dependencies to address Dependabot alerts\n- bd1b3b9: Enable passing the return value of a live query directly to `useLiveQuery`. This allows you to create a live query in a react-router loader, then pass it to the route component where it is then attached with `useLiveQuery`.\n- Updated dependencies [5e39036]\n- Updated dependencies [3d8efbb]\n- Updated dependencies [1844b10]\n- Updated dependencies [79e6082]\n- Updated dependencies [16d2296]\n- Updated dependencies [cf50f47]\n- Updated dependencies [bd1b3b9]\n- Updated dependencies [5e39036]\n- Updated dependencies [16d2296]\n- Updated dependencies [e9bd9a7]\n- Updated dependencies [c442c88]\n  - @electric-sql/pglite@0.2.13\n\n## 0.2.12\n\n### Patch Changes\n\n- d3905cf: Enable the number of useLiveQuery params to change between renders, and for there to be none.\n- Updated dependencies [1495625]\n- Updated dependencies [d3905cf]\n- Updated dependencies [1f036dc]\n- Updated dependencies [52ddcb0]\n  - @electric-sql/pglite@0.2.12\n\n## 0.2.11\n\n### Patch Changes\n\n- Updated dependencies [2aed553]\n  - @electric-sql/pglite@0.2.11\n\n## 0.2.10\n\n### Patch Changes\n\n- Updated dependencies [3113d56]\n- Updated dependencies [23cd31a]\n  - @electric-sql/pglite@0.2.10\n\n## 0.2.9\n\n### Patch Changes\n\n- Updated dependencies [20008c2]\n- Updated dependencies [a5712a8]\n  - @electric-sql/pglite@0.2.9\n\n## 0.2.8\n\n### Patch Changes\n\n- Updated dependencies [53ec60e]\n- Updated dependencies [880b60d]\n- Updated dependencies [058ed7c]\n- Updated dependencies [2831c34]\n- Updated dependencies [880b60d]\n- Updated dependencies [880b60d]\n- Updated dependencies [4aeb677]\n- Updated dependencies [19b3529]\n  - @electric-sql/pglite@0.2.8\n\n## 0.2.7\n\n### Patch Changes\n\n- Updated dependencies [5e65236]\n- Updated dependencies [5e65236]\n  - @electric-sql/pglite@0.2.7\n\n## 0.2.6\n\n### Patch Changes\n\n- Updated dependencies [09b356c]\n- Updated dependencies [4238595]\n- Updated dependencies [ef57e10]\n  - @electric-sql/pglite@0.2.6\n\n## 0.2.5\n\n### Patch Changes\n\n- fcb101c: Add `useLiveQuery.sql` hook for SQL string templating.\n- Updated dependencies [fcb101c]\n- Updated dependencies [3ee5e60]\n- Updated dependencies [0dc34af]\n  - @electric-sql/pglite@0.2.5\n\n## 0.2.4\n\n### Patch Changes\n\n- Updated dependencies [113aa56]\n  - @electric-sql/pglite@0.2.4\n\n## 0.2.3\n\n### Patch Changes\n\n- Updated dependencies [d8ef285]\n  - @electric-sql/pglite@0.2.3\n\n## 0.2.2\n\n### Patch Changes\n\n- Updated dependencies [be41880]\n  - @electric-sql/pglite@0.2.2\n\n## 0.2.1\n\n### Patch Changes\n\n- e0d205c: Add utility for generating typed provider and hook.\n- af9e064: Fix exports in package.json\n- Updated dependencies [2cc39ff]\n  - @electric-sql/pglite@0.2.1\n"
  },
  {
    "path": "packages/pglite-react/README.md",
    "content": "# PGlite React.js Hooks\n\nThis package implements React hooks for [PGLite](https://pglite.dev/) on top of the [live query plugin](https://pglite.dev/docs/live-queries). Full documentation is available at [pglite.dev/docs/framework-hooks](https://pglite.dev/docs/framework-hooks#react).\n\nTo install:\n\n```sh\nnpm install @electric-sql/pglite-react\n```\n\nThe hooks this package provides are:\n\n- [PGliteProvider](https://pglite.dev/docs/framework-hooks/react#pgliteprovider): A Provider component to pass a PGlite instance to all child components for use with the other hooks.\n- [usePGlite](https://pglite.dev/docs/framework-hooks/react#usepglite): Retrieve the provided PGlite instance.\n- [makePGliteProvider](https://pglite.dev/docs/framework-hooks/react#makepgliteprovider): Create typed instances of `PGliteProvider` and `usePGlite`.\n- [useLiveQuery](https://pglite.dev/docs/framework-hooks/react#uselivequery): Reactively re-render your component whenever the results of a live query change\n- [useLiveIncrementalQuery](https://pglite.dev/docs/framework-hooks/react#useliveincrementalquery): Reactively re-render your component whenever the results of a live query change by offloading the diff to PGlite\n"
  },
  {
    "path": "packages/pglite-react/eslint.config.js",
    "content": "import rootConfig from \"../../eslint.config.js\";\nimport pluginReact from \"@eslint-react/eslint-plugin\";\n// @ts-expect-error no types\nimport pluginReactCompiler from \"eslint-plugin-react-compiler\";\n// @ts-expect-error no types\nimport pluginReactHooks from \"eslint-plugin-react-hooks\";\n\nexport default [\n  ...rootConfig,\n  {\n    files: [\"**/*.{ts,tsx}\"],\n    ...pluginReact.configs.recommended,\n  },\n  {\n    plugins: {\n      \"react-hooks\": pluginReactHooks,\n      \"react-compiler\": pluginReactCompiler,\n    },\n    rules: {\n      \"react-compiler/react-compiler\": \"error\",\n      \"react-hooks/exhaustive-deps\": \"error\",\n      \"react-hooks/rules-of-hooks\": \"error\",\n    },\n  },\n  {\n    files: [\"**/test/**\"],\n    rules: {\n      \"@typescript-eslint/no-unnecessary-condition\": \"off\",\n      \"react-compiler/react-compiler\": \"off\",\n    },\n  },\n];\n"
  },
  {
    "path": "packages/pglite-react/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-react\",\n  \"version\": \"0.3.1\",\n  \"description\": \"Hooks for using PGlite\",\n  \"type\": \"module\",\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"client\",\n    \"pglite\",\n    \"react\"\n  ],\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite.git\",\n    \"directory\": \"packages/pglite-react\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"test\": \"vitest\",\n    \"lint\": \"eslint ./src ./test\",\n    \"format\": \"prettier --write ./src ./test\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"eslint ./src ./test && prettier --check ./src ./test\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"types\": \"dist/index.d.ts\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.js\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@eslint-react/eslint-plugin\": \"^1.14.3\",\n    \"@testing-library/dom\": \"^10.4.0\",\n    \"@testing-library/react\": \"^16.1.0\",\n    \"@types/react\": \"^19.0.2\",\n    \"@types/react-dom\": \"^19.0.2\",\n    \"@vitejs/plugin-react\": \"^4.3.2\",\n    \"eslint-plugin-react-compiler\": \"0.0.0-experimental-9ed098e-20240725\",\n    \"globals\": \"^15.11.0\",\n    \"jsdom\": \"^24.1.3\",\n    \"react\": \"^19.0.0\",\n    \"react-dom\": \"^19.0.0\",\n    \"vitest\": \"^2.1.2\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:0.4.1\",\n    \"react\": \"^18.0.0 || ^19.0.0 || ^19.0.0-rc\"\n  }\n}\n"
  },
  {
    "path": "packages/pglite-react/src/hooks.ts",
    "content": "import type { LiveQuery, LiveQueryResults } from '@electric-sql/pglite/live'\nimport { query as buildQuery } from '@electric-sql/pglite/template'\nimport { useEffect, useRef, useState } from 'react'\nimport { usePGlite } from './provider'\n\nfunction paramsEqual(\n  a1: unknown[] | undefined | null,\n  a2: unknown[] | undefined | null,\n) {\n  if (!a1 && !a2) return true\n  if (a1?.length !== a2?.length) return false\n  for (let i = 0; i < a1!.length; i++) {\n    if (!Object.is(a1![i], a2![i])) {\n      return false\n    }\n  }\n  return true\n}\n\nfunction useLiveQueryImpl<T = { [key: string]: unknown }>(\n  query: string | LiveQuery<T> | Promise<LiveQuery<T>>,\n  params: unknown[] | undefined | null,\n  key?: string,\n): Omit<LiveQueryResults<T>, 'affectedRows'> | undefined {\n  const db = usePGlite()\n  const paramsRef = useRef(params)\n  const liveQueryRef = useRef<LiveQuery<T> | undefined>(undefined)\n  let liveQuery: LiveQuery<T> | undefined\n  let liveQueryChanged = false\n  if (!(typeof query === 'string') && !(query instanceof Promise)) {\n    liveQuery = query\n    liveQueryChanged = liveQueryRef.current !== liveQuery\n    liveQueryRef.current = liveQuery\n  }\n  const [results, setResults] = useState<LiveQueryResults<T> | undefined>(\n    liveQuery?.initialResults,\n  )\n\n  let currentParams = paramsRef.current\n  if (!paramsEqual(paramsRef.current, params)) {\n    paramsRef.current = params\n    currentParams = params\n  }\n\n  /* eslint-disable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */\n  useEffect(() => {\n    let cancelled = false\n    const cb = (results: LiveQueryResults<T>) => {\n      if (cancelled) return\n      setResults(results)\n    }\n    if (typeof query === 'string') {\n      const ret =\n        key !== undefined\n          ? db.live.incrementalQuery<T>(query, currentParams, key, cb)\n          : db.live.query<T>(query, currentParams, cb)\n\n      return () => {\n        cancelled = true\n        ret.then(({ unsubscribe }) => unsubscribe())\n      }\n    } else if (query instanceof Promise) {\n      query.then((liveQuery) => {\n        if (cancelled) return\n        liveQueryRef.current = liveQuery\n        setResults(liveQuery.initialResults)\n        liveQuery.subscribe(cb)\n      })\n      return () => {\n        cancelled = true\n        liveQueryRef.current?.unsubscribe(cb)\n      }\n    } else if (liveQuery) {\n      setResults(liveQuery.initialResults)\n      liveQuery.subscribe(cb)\n      return () => {\n        cancelled = true\n        liveQuery.unsubscribe(cb)\n      }\n    } else {\n      throw new Error('Should never happen')\n    }\n  }, [db, key, query, currentParams, liveQuery])\n  /* eslint-enable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */\n\n  if (liveQueryChanged && liveQuery) {\n    return liveQuery.initialResults\n  }\n\n  return (\n    results && {\n      rows: results.rows,\n      fields: results.fields,\n      totalCount: results.totalCount,\n      offset: results.offset,\n      limit: results.limit,\n    }\n  )\n}\n\nexport function useLiveQuery<T = { [key: string]: unknown }>(\n  query: string,\n  params?: unknown[] | null,\n): LiveQueryResults<T> | undefined\n\nexport function useLiveQuery<T = { [key: string]: unknown }>(\n  liveQuery: LiveQuery<T>,\n): LiveQueryResults<T>\n\nexport function useLiveQuery<T = { [key: string]: unknown }>(\n  liveQueryPromise: Promise<LiveQuery<T>>,\n): LiveQueryResults<T> | undefined\n\nexport function useLiveQuery<T = { [key: string]: unknown }>(\n  query: string | LiveQuery<T> | Promise<LiveQuery<T>>,\n  params?: unknown[] | null,\n): LiveQueryResults<T> | undefined {\n  return useLiveQueryImpl<T>(query, params)\n}\n\nuseLiveQuery.sql = function <T = { [key: string]: unknown }>(\n  strings: TemplateStringsArray,\n  ...values: any[]\n): LiveQueryResults<T> | undefined {\n  const { query, params } = buildQuery(strings, ...values)\n  // eslint-disable-next-line react-compiler/react-compiler\n  // eslint-disable-next-line react-hooks/rules-of-hooks\n  return useLiveQueryImpl<T>(query, params)\n}\n\nexport function useLiveIncrementalQuery<T = { [key: string]: unknown }>(\n  query: string,\n  params: unknown[] | undefined | null,\n  key: string,\n): LiveQueryResults<T> | undefined {\n  return useLiveQueryImpl<T>(query, params, key)\n}\n"
  },
  {
    "path": "packages/pglite-react/src/index.ts",
    "content": "export * from './provider'\nexport * from './hooks'\n"
  },
  {
    "path": "packages/pglite-react/src/provider.tsx",
    "content": "import React, { createContext, useContext } from 'react'\nimport { PGliteWithLive } from '@electric-sql/pglite/live'\n\ninterface Props<T extends PGliteWithLive> {\n  children?: React.ReactNode\n  db?: T\n}\n\ntype PGliteProvider<T extends PGliteWithLive> = (\n  props: Props<T>,\n) => React.JSX.Element\ntype UsePGlite<T extends PGliteWithLive> = (db?: T) => T\n\ninterface PGliteProviderSet<T extends PGliteWithLive> {\n  PGliteProvider: PGliteProvider<T>\n  usePGlite: UsePGlite<T>\n}\n\n/**\n * Create a typed set of {@link PGliteProvider} and {@link usePGlite}.\n */\nfunction makePGliteProvider<T extends PGliteWithLive>(): PGliteProviderSet<T> {\n  const ctx = createContext<T | undefined>(undefined)\n  return {\n    usePGlite: ((db?: T) => {\n      const dbProvided = useContext(ctx)\n\n      // allow providing a db explicitly\n      if (db !== undefined) return db\n\n      if (!dbProvided)\n        throw new Error(\n          'No PGlite instance found, use PGliteProvider to provide one',\n        )\n\n      return dbProvided\n    }) as UsePGlite<T>,\n    PGliteProvider: ({ children, db }: Props<T>) => {\n      return <ctx.Provider value={db}>{children}</ctx.Provider>\n    },\n  }\n}\n\nconst { PGliteProvider, usePGlite } = makePGliteProvider<PGliteWithLive>()\n\nexport { makePGliteProvider, PGliteProvider, usePGlite }\n"
  },
  {
    "path": "packages/pglite-react/test/hooks.test.tsx",
    "content": "import { describe, it, expect, beforeEach } from 'vitest'\nimport { renderHook } from '@testing-library/react'\nimport { waitFor } from '@testing-library/dom'\nimport React from 'react'\nimport { PGlite } from '@electric-sql/pglite'\nimport { live, PGliteWithLive } from '@electric-sql/pglite/live'\nimport { PGliteProvider, useLiveQuery, useLiveIncrementalQuery } from '../src'\n\ndescribe('hooks', () => {\n  testLiveQuery('useLiveQuery')\n\n  testLiveQuery('useLiveIncrementalQuery')\n\n  describe('useLiveQuery.sql', () => {\n    let db: PGliteWithLive\n    let wrapper: ({\n      children,\n    }: {\n      children: React.ReactNode\n    }) => React.ReactElement\n\n    beforeEach(async () => {\n      db = await PGlite.create({\n        extensions: {\n          live,\n        },\n      })\n      wrapper = ({ children }) => {\n        return <PGliteProvider db={db}>{children}</PGliteProvider>\n      }\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.exec(`TRUNCATE test;`)\n    })\n\n    it('updates when query parameter changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const { result, rerender } = renderHook(\n        (props) =>\n          useLiveQuery.sql`SELECT * FROM test WHERE name = ${props.params[0]};`,\n        { wrapper, initialProps: { params: ['test1'] } },\n      )\n\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 1,\n            name: 'test1',\n          },\n        ]),\n      )\n\n      rerender({ params: ['test2'] })\n\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ]),\n      )\n    })\n  })\n})\n\nfunction testLiveQuery(queryHook: 'useLiveQuery' | 'useLiveIncrementalQuery') {\n  describe(queryHook, () => {\n    let db: PGliteWithLive\n    let wrapper: ({\n      children,\n    }: {\n      children: React.ReactNode\n    }) => React.ReactElement\n    const hookFn =\n      queryHook === 'useLiveQuery' ? useLiveQuery : useLiveIncrementalQuery\n    const incKey = 'id'\n    beforeEach(async () => {\n      db = await PGlite.create({\n        extensions: {\n          live,\n        },\n      })\n      wrapper = ({ children }) => {\n        return <PGliteProvider db={db}>{children}</PGliteProvider>\n      }\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.exec(`TRUNCATE test;`)\n    })\n\n    it('can receive initial results', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const { result } = renderHook(\n        () => hookFn(`SELECT * FROM test`, [], incKey),\n        { wrapper },\n      )\n\n      await waitFor(() => expect(result.current).not.toBe(undefined))\n      expect(result.current).toEqual({\n        rows: [\n          {\n            id: 1,\n            name: 'test1',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ],\n        fields: [\n          {\n            name: 'id',\n            dataTypeID: 23,\n          },\n          {\n            name: 'name',\n            dataTypeID: 25,\n          },\n        ],\n      })\n    })\n\n    it('can receive changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const { result } = renderHook(\n        () => hookFn(`SELECT * FROM test`, [], incKey),\n        { wrapper },\n      )\n\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 1,\n            name: 'test1',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ]),\n      )\n\n      // detect new inserts\n      db.exec(`INSERT INTO test (name) VALUES ('test3');`)\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 1,\n            name: 'test1',\n          },\n          {\n            id: 2,\n            name: 'test2',\n          },\n          {\n            id: 3,\n            name: 'test3',\n          },\n        ]),\n      )\n\n      // detect deletes\n      db.exec(`DELETE FROM test WHERE name = 'test1';`)\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 2,\n            name: 'test2',\n          },\n          {\n            id: 3,\n            name: 'test3',\n          },\n        ]),\n      )\n\n      // detect updates\n      db.exec(`UPDATE test SET name = 'foobar' WHERE name = 'test2';`)\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 3,\n            name: 'test3',\n          },\n          {\n            id: 2,\n            name: 'foobar',\n          },\n        ]),\n      )\n\n      // // detect truncates\n      // db.exec(`TRUNCATE test;`)\n      // await waitFor(() => expect(result.current?.rows).toHaveLength(0))\n    })\n\n    it('updates when query changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const { result, rerender } = renderHook(\n        (props) => hookFn(props.query, [], incKey),\n        { wrapper, initialProps: { query: `SELECT * FROM test` } },\n      )\n\n      await waitFor(() => expect(result.current?.rows).toHaveLength(2))\n\n      rerender({ query: `SELECT * FROM test WHERE name = 'test1'` })\n\n      await waitFor(() => expect(result.current?.rows).toHaveLength(1))\n    })\n\n    it('updates when query parameters change', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const paramsArr = ['foo']\n\n      const { result, rerender } = renderHook(\n        ({ params }) =>\n          hookFn(\n            `SELECT * FROM test WHERE name = $1;`,\n            [params[params.length - 1]],\n            incKey,\n          ),\n        { wrapper, initialProps: { params: paramsArr } },\n      )\n\n      await waitFor(() => expect(result.current?.rows).toEqual([]))\n\n      // update when query parameter changes\n      rerender({ params: ['test1'] })\n\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 1,\n            name: 'test1',\n          },\n        ]),\n      )\n\n      // update when number of query parameters changes\n      rerender({ params: ['test1', 'test2'] })\n\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 2,\n            name: 'test2',\n          },\n        ]),\n      )\n    })\n\n    if (queryHook !== 'useLiveQuery') {\n      return\n    }\n\n    it('can take a live query return value directly', async () => {\n      await db.exec(`\n        CREATE TABLE live_test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`)\n\n      const liveQuery = await db.live.query(\n        `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`,\n      )\n      const { result } = renderHook(() => useLiveQuery(liveQuery), { wrapper })\n\n      await waitFor(() => expect(result.current?.rows).toHaveLength(1))\n      expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' })\n\n      // Trigger an update\n      await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`)\n      await waitFor(() => expect(result.current?.rows[0].name).toBe('updated'))\n      expect(result.current?.rows[0]).toEqual({ id: 2, name: 'updated' })\n    })\n\n    it('can take a live query returned promise directly', async () => {\n      await db.exec(`\n        CREATE TABLE live_test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`)\n\n      const liveQueryPromise = db.live.query(\n        `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`,\n      )\n      const { result } = renderHook(() => useLiveQuery(liveQueryPromise), {\n        wrapper,\n      })\n\n      expect(result.current).toBe(undefined)\n\n      await waitFor(() => expect(result.current).not.toBe(undefined))\n\n      await waitFor(() => expect(result.current?.rows).toHaveLength(1))\n      expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' })\n\n      // Trigger an update\n      await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`)\n      await waitFor(() => expect(result.current?.rows[0].name).toBe('updated'))\n      expect(result.current?.rows[0]).toEqual({ id: 2, name: 'updated' })\n    })\n\n    it('can take a live incremental query return value directly', async () => {\n      await db.exec(`\n        CREATE TABLE live_test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`)\n\n      const liveQuery = await db.live.incrementalQuery(\n        `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`,\n        [],\n        incKey,\n      )\n      const { result } = renderHook(() => useLiveQuery(liveQuery), { wrapper })\n\n      await waitFor(() => expect(result.current?.rows).toHaveLength(1))\n      expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' })\n\n      // Trigger an update\n      await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`)\n      await waitFor(() => expect(result.current?.rows[0].name).toBe('updated'))\n      expect(result.current?.rows[0]).toEqual({ id: 2, name: 'updated' })\n    })\n\n    it('can take a live incremental query returned promise directly', async () => {\n      await db.exec(`\n        CREATE TABLE live_test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n      await db.exec(`INSERT INTO live_test (name) VALUES ('initial');`)\n\n      const liveQueryPromise = db.live.incrementalQuery(\n        `SELECT * FROM live_test ORDER BY id DESC LIMIT 1;`,\n        [],\n        incKey,\n      )\n      const { result } = renderHook(() => useLiveQuery(liveQueryPromise), {\n        wrapper,\n      })\n\n      expect(result.current).toBe(undefined)\n\n      await waitFor(() => expect(result.current).not.toBe(undefined))\n\n      await waitFor(() => expect(result.current?.rows).toHaveLength(1))\n      expect(result.current?.rows[0]).toEqual({ id: 1, name: 'initial' })\n\n      // Trigger an update\n      await db.exec(`INSERT INTO live_test (name) VALUES ('updated');`)\n      await waitFor(() => expect(result.current?.rows[0].name).toBe('updated'))\n    })\n\n    it('works with pattern matching', async () => {\n      await db.exec(`\n        CREATE TABLE pattern_matching (\n          id SERIAL PRIMARY KEY,\n          statement VARCHAR(100)\n        );\n      `)\n\n      await db.exec(\n        `INSERT INTO pattern_matching (statement) VALUES ('PGlite 4 ever.'),('To not be or not to be.');`,\n      )\n\n      const liveQueryPromise = db.live.incrementalQuery(\n        `SELECT * FROM pattern_matching WHERE statement ILIKE '%pglite%' ORDER BY id DESC LIMIT 1;`,\n        [],\n        incKey,\n      )\n\n      const { result } = renderHook(() => useLiveQuery(liveQueryPromise), {\n        wrapper,\n      })\n\n      await waitFor(() =>\n        expect(result.current?.rows).toEqual([\n          {\n            id: 1,\n            statement: 'PGlite 4 ever.',\n          },\n        ]),\n      )\n\n      await db.exec(\n        `INSERT INTO pattern_matching (statement) VALUES ('should not trigger!');`,\n      )\n      // Trigger an update\n      await db.exec(\n        `INSERT INTO pattern_matching (statement) VALUES ('ElectricSQL + pglite = <3');`,\n      )\n      await waitFor(() =>\n        expect(result.current?.rows[0].statement).toBe(\n          'ElectricSQL + pglite = <3',\n        ),\n      )\n    })\n  })\n}\n"
  },
  {
    "path": "packages/pglite-react/test/provider.test-d.tsx",
    "content": "import { describe, it, expectTypeOf } from 'vitest'\nimport { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite'\nimport { live } from '@electric-sql/pglite/live'\nimport { vector } from '@electric-sql/pglite/vector'\nimport { makePGliteProvider } from '../src/provider.js'\n\ndescribe('provider', () => {\n  it('provider type respected ', async () => {\n    const dbLiveVector = await PGlite.create({\n      extensions: {\n        live,\n        vector,\n      },\n    })\n    const dbLive = await PGlite.create({\n      extensions: {\n        live,\n      },\n    })\n\n    const { PGliteProvider, usePGlite } = makePGliteProvider<\n      PGlite &\n        PGliteInterfaceExtensions<{\n          live: typeof live\n          vector: typeof vector\n        }>\n    >()\n\n    // @ts-expect-error cannot pass db with just live extension\n    ;() => <PGliteProvider db={dbLive}></PGliteProvider>\n    ;() => <PGliteProvider db={dbLiveVector}></PGliteProvider>\n\n    // @ts-expect-error cannot pass wrong type db to typed hook\n    usePGlite(dbLive)\n\n    expectTypeOf(usePGlite()).toEqualTypeOf<typeof dbLiveVector>()\n  })\n})\n"
  },
  {
    "path": "packages/pglite-react/test/provider.test.tsx",
    "content": "import { describe, it, expect } from 'vitest'\nimport { renderHook } from '@testing-library/react'\nimport { waitFor } from '@testing-library/dom'\nimport React from 'react'\nimport { PGlite } from '@electric-sql/pglite'\nimport { live, PGliteWithLive } from '@electric-sql/pglite/live'\nimport { makePGliteProvider, PGliteProvider, usePGlite } from '../src'\n\ndescribe('provider', () => {\n  it('can receive PGlite', async () => {\n    const db = await PGlite.create({\n      extensions: {\n        live,\n      },\n    })\n    const wrapper = ({ children }: { children: React.ReactNode }) => {\n      return <PGliteProvider db={db}>{children}</PGliteProvider>\n    }\n\n    const { result } = renderHook(() => usePGlite(), { wrapper })\n\n    await waitFor(() => expect(result.current).toBe(db))\n  })\n\n  it('can receive PGlite with typed provider', async () => {\n    const db = await PGlite.create({\n      extensions: {\n        live,\n      },\n    })\n\n    const { PGliteProvider: PGliteProviderTyped, usePGlite: usePGliteTyped } =\n      makePGliteProvider<PGliteWithLive>()\n\n    const wrapper = ({ children }: { children: React.ReactNode }) => {\n      return <PGliteProviderTyped db={db}>{children}</PGliteProviderTyped>\n    }\n\n    const { result } = renderHook(() => usePGliteTyped(), { wrapper })\n\n    await waitFor(() => expect(result.current).toBe(db))\n  })\n})\n"
  },
  {
    "path": "packages/pglite-react/test-setup.ts",
    "content": "import { afterEach } from 'vitest'\nimport { cleanup } from '@testing-library/react'\n\n// Polyfill File.prototype.arrayBuffer for jsdom\n// jsdom's File implementation doesn't properly support arrayBuffer()\nif (typeof File !== 'undefined' && !File.prototype.arrayBuffer) {\n  File.prototype.arrayBuffer = function () {\n    return new Promise((resolve, reject) => {\n      const reader = new FileReader()\n      reader.onload = () => resolve(reader.result as ArrayBuffer)\n      reader.onerror = () => reject(reader.error)\n      reader.readAsArrayBuffer(this)\n    })\n  }\n}\n\n// https://testing-library.com/docs/react-testing-library/api#cleanup\nafterEach(() => cleanup())"
  },
  {
    "path": "packages/pglite-react/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"jsx\": \"react-jsx\",\n  },\n  \"include\": [\n    \"src\",\n    \"test\",\n    \"eslint.config.js\",\n    \"test-setup.ts\",\n    \"tsup.config.js\",\n    \"vitest.config.ts\"\n  ]\n}"
  },
  {
    "path": "packages/pglite-react/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: ['src/index.ts'],\n    format: ['cjs', 'esm'],\n    outDir: 'dist',\n    dts: true,\n    minify: minify,\n    sourcemap: true,\n    clean: true,\n  },\n])\n"
  },
  {
    "path": "packages/pglite-react/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\nimport react from '@vitejs/plugin-react'\n\nexport default defineConfig({\n  plugins: [react()],\n  test: {\n    name: 'pglite-react',\n    dir: './test',\n    watch: false,\n    environment: 'jsdom',\n    setupFiles: ['test-setup.ts'],\n    typecheck: { enabled: true },\n    restoreMocks: true,\n    testTimeout: 15000,\n    testTransformMode: {\n      ssr: ['**/*'],\n    },\n  },\n})\n"
  },
  {
    "path": "packages/pglite-repl/.gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\nnode_modules\ndist\ndist-ssr\ndist-webcomponent\n*.local\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n"
  },
  {
    "path": "packages/pglite-repl/CHANGELOG.md",
    "content": "# @electric-sql/pglite-repl\n\n## 0.3.1\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n  - @electric-sql/pglite-react@0.3.1\n\n## 0.3.0\n\n### Minor Changes\n\n- Updated dependencies [d848955]\n  - @electric-sql/pglite-react@0.3.0\n  - @electric-sql/pglite@0.4.0\n\n## 0.2.34\n\n### Patch Changes\n\n- Updated dependencies [3dfa40f]\n  - @electric-sql/pglite@0.3.16\n  - @electric-sql/pglite-react@0.2.34\n\n## 0.2.33\n\n### Patch Changes\n\n- Updated dependencies [45bff97]\n- Updated dependencies [5ec474f]\n  - @electric-sql/pglite@0.3.15\n  - @electric-sql/pglite-react@0.2.33\n\n## 0.2.32\n\n### Patch Changes\n\n- Updated dependencies [8785034]\n- Updated dependencies [90cfee8]\n  - @electric-sql/pglite@0.3.14\n  - @electric-sql/pglite-react@0.2.32\n\n## 0.2.31\n\n### Patch Changes\n\n- Updated dependencies [ad3d0d8]\n  - @electric-sql/pglite@0.3.13\n  - @electric-sql/pglite-react@0.2.31\n\n## 0.2.30\n\n### Patch Changes\n\n- Updated dependencies [ce0e74e]\n  - @electric-sql/pglite@0.3.12\n  - @electric-sql/pglite-react@0.2.30\n\n## 0.2.29\n\n### Patch Changes\n\n- Updated dependencies [9a104b9]\n  - @electric-sql/pglite@0.3.11\n  - @electric-sql/pglite-react@0.2.29\n\n## 0.2.28\n\n### Patch Changes\n\n- Updated dependencies [ad765ed]\n  - @electric-sql/pglite@0.3.10\n  - @electric-sql/pglite-react@0.2.28\n\n## 0.2.27\n\n### Patch Changes\n\n- Updated dependencies [e40ccad]\n  - @electric-sql/pglite@0.3.9\n  - @electric-sql/pglite-react@0.2.27\n\n## 0.2.26\n\n### Patch Changes\n\n- Updated dependencies [f12a582]\n- Updated dependencies [bd263aa]\n  - @electric-sql/pglite@0.3.8\n  - @electric-sql/pglite-react@0.2.26\n\n## 0.2.25\n\n### Patch Changes\n\n- Updated dependencies [0936962]\n  - @electric-sql/pglite@0.3.7\n  - @electric-sql/pglite-react@0.2.25\n\n## 0.2.24\n\n### Patch Changes\n\n- Updated dependencies [6898469]\n- Updated dependencies [469be18]\n- Updated dependencies [64e33c7]\n  - @electric-sql/pglite@0.3.6\n  - @electric-sql/pglite-react@0.2.24\n\n## 0.2.23\n\n### Patch Changes\n\n- Updated dependencies [6653899]\n- Updated dependencies [5f007fc]\n  - @electric-sql/pglite@0.3.5\n  - @electric-sql/pglite-react@0.2.23\n\n## 0.2.22\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n- Updated dependencies [1fcaa3e]\n- Updated dependencies [38a55d0]\n- Updated dependencies [aac7003]\n- Updated dependencies [8ca254d]\n  - @electric-sql/pglite@0.3.4\n  - @electric-sql/pglite-react@0.2.22\n\n## 0.2.21\n\n### Patch Changes\n\n- Updated dependencies [ea2c7c7]\n  - @electric-sql/pglite@0.3.3\n  - @electric-sql/pglite-react@0.2.21\n\n## 0.2.20\n\n### Patch Changes\n\n- Updated dependencies [e2c654b]\n  - @electric-sql/pglite@0.3.2\n  - @electric-sql/pglite-react@0.2.20\n\n## 0.2.19\n\n### Patch Changes\n\n- Updated dependencies [713364e]\n  - @electric-sql/pglite@0.3.1\n  - @electric-sql/pglite-react@0.2.19\n\n## 0.2.18\n\n### Patch Changes\n\n- 317fd36: Specify a peer dependency range on @electric-sql/pglite\n- Updated dependencies [97e52f7]\n- Updated dependencies [4356024]\n- Updated dependencies [0033bc7]\n- Updated dependencies [317fd36]\n  - @electric-sql/pglite@0.3.0\n  - @electric-sql/pglite-react@0.2.18\n\n## 0.2.17\n\n### Patch Changes\n\n- Updated dependencies [6bdd74e]\n- Updated dependencies [f94d591]\n  - @electric-sql/pglite@0.2.17\n  - @electric-sql/pglite-react@0.2.17\n\n## 0.2.16\n\n### Patch Changes\n\n- 514943b: Bump versions of React, React DOM, and related testing libraries to v19 on pglite-repl. The PGlite REPL now supports React v18 and v19 projects.\n- Updated dependencies [c36fd09]\n- Updated dependencies [e037883]\n- Updated dependencies [d6b981b]\n- Updated dependencies [17e7664]\n- Updated dependencies [118ba3e]\n- Updated dependencies [d93c1bb]\n- Updated dependencies [ddd4a68]\n- Updated dependencies [514943b]\n- Updated dependencies [f3f1103]\n- Updated dependencies [67fb2aa]\n  - @electric-sql/pglite@0.2.16\n  - @electric-sql/pglite-react@0.2.16\n\n## 0.2.15\n\n### Patch Changes\n\n- Updated dependencies [fa13714]\n  - @electric-sql/pglite@0.2.15\n  - @electric-sql/pglite-react@0.2.15\n\n## 0.2.14\n\n### Patch Changes\n\n- Updated dependencies [6547374]\n- Updated dependencies [6547374]\n- Updated dependencies [df5c290]\n- Updated dependencies [1784d04]\n- Updated dependencies [ae36974]\n- Updated dependencies [75f9f6d]\n- Updated dependencies [ce212cf]\n  - @electric-sql/pglite@0.2.14\n  - @electric-sql/pglite-react@0.2.14\n\n## 0.2.13\n\n### Patch Changes\n\n- 3d8efbb: Bump dependencies to address Dependabot alerts\n- Updated dependencies [5e39036]\n- Updated dependencies [3d8efbb]\n- Updated dependencies [1844b10]\n- Updated dependencies [bd1b3b9]\n- Updated dependencies [79e6082]\n- Updated dependencies [16d2296]\n- Updated dependencies [cf50f47]\n- Updated dependencies [bd1b3b9]\n- Updated dependencies [5e39036]\n- Updated dependencies [16d2296]\n- Updated dependencies [e9bd9a7]\n- Updated dependencies [c442c88]\n  - @electric-sql/pglite@0.2.13\n  - @electric-sql/pglite-react@0.2.13\n\n## 0.2.12\n\n### Patch Changes\n\n- Updated dependencies [1495625]\n- Updated dependencies [d3905cf]\n- Updated dependencies [d3905cf]\n- Updated dependencies [1f036dc]\n- Updated dependencies [52ddcb0]\n  - @electric-sql/pglite@0.2.12\n  - @electric-sql/pglite-react@0.2.12\n\n## 0.2.11\n\n### Patch Changes\n\n- Updated dependencies [2aed553]\n  - @electric-sql/pglite@0.2.11\n  - @electric-sql/pglite-react@0.2.11\n\n## 0.2.10\n\n### Patch Changes\n\n- Updated dependencies [3113d56]\n- Updated dependencies [23cd31a]\n  - @electric-sql/pglite@0.2.10\n  - @electric-sql/pglite-react@0.2.10\n\n## 0.2.9\n\n### Patch Changes\n\n- Updated dependencies [20008c2]\n- Updated dependencies [a5712a8]\n  - @electric-sql/pglite@0.2.9\n  - @electric-sql/pglite-react@0.2.9\n\n## 0.2.8\n\n### Patch Changes\n\n- Updated dependencies [53ec60e]\n- Updated dependencies [880b60d]\n- Updated dependencies [058ed7c]\n- Updated dependencies [2831c34]\n- Updated dependencies [880b60d]\n- Updated dependencies [880b60d]\n- Updated dependencies [4aeb677]\n- Updated dependencies [19b3529]\n  - @electric-sql/pglite@0.2.8\n  - @electric-sql/pglite-react@0.2.8\n\n## 0.2.7\n\n### Patch Changes\n\n- Updated dependencies [5e65236]\n- Updated dependencies [5e65236]\n  - @electric-sql/pglite@0.2.7\n  - @electric-sql/pglite-react@0.2.7\n\n## 0.2.6\n\n### Patch Changes\n\n- Updated dependencies [09b356c]\n- Updated dependencies [4238595]\n- Updated dependencies [ef57e10]\n  - @electric-sql/pglite@0.2.6\n  - @electric-sql/pglite-react@0.2.6\n\n## 0.2.5\n\n### Patch Changes\n\n- Updated dependencies [fcb101c]\n- Updated dependencies [3ee5e60]\n- Updated dependencies [0dc34af]\n- Updated dependencies [fcb101c]\n  - @electric-sql/pglite@0.2.5\n  - @electric-sql/pglite-react@0.2.5\n\n## 0.2.4\n\n### Patch Changes\n\n- Updated dependencies [113aa56]\n  - @electric-sql/pglite@0.2.4\n  - @electric-sql/pglite-react@0.2.4\n\n## 0.2.3\n\n### Patch Changes\n\n- Updated dependencies [d8ef285]\n  - @electric-sql/pglite@0.2.3\n  - @electric-sql/pglite-react@0.2.3\n\n## 0.2.2\n\n### Patch Changes\n\n- Updated dependencies [be41880]\n  - @electric-sql/pglite@0.2.2\n  - @electric-sql/pglite-react@0.2.2\n\n## 0.2.1\n\n### Patch Changes\n\n- b0d7119: Make this pglite-repl Repl component compatible with the react hooks\n- Updated dependencies [e0d205c]\n- Updated dependencies [2cc39ff]\n- Updated dependencies [af9e064]\n  - @electric-sql/pglite-react@0.2.1\n  - @electric-sql/pglite@0.2.1\n"
  },
  {
    "path": "packages/pglite-repl/README.md",
    "content": "# PGlite REPL React Component\n\nA REPL, or terminal, for use in the browser with PGlite, allowing you to have an interactive session with your WASM Postgres in the page.\n\n<img width=\"918\" src=\"https://github.com/electric-sql/pglite/assets/31130/f7c9c2dd-4de8-4033-9905-9637ae998034\">\n\n## Features:\n\n- Available as both a React.js component and a Web Components\n- [CodeMirror](https://codemirror.net) for input editing\n- Auto complete, including table and column names from the database\n- Input history (up and down keys)\n- `\\d` PSQL commands (via [psql-describe](https://www.npmjs.com/package/psql-describe))\n\n## How to use with React\n\n```\nnpm install @electric-sql/pglite-repl\n```\n\nthen to include in a page:\n\n```tsx\nimport { PGlite } from \"@electric-sql/pglite\";\nimport { Repl } from \"@electric-sql/pglite-repl\";\n\nfunction MyComponent() {\n  const pg = new PGlite();\n\n  return <>\n    <Repl pg={pg} />\n  </>\n}\n```\n\nThe props for the `<Repl>` component are described by this interface:\n\n```ts\n// The theme to use, auto is auto switching based on the system\ntype ReplTheme = \"light\" | \"dark\" | \"auto\";\n\ninterface ReplProps {\n  pg: PGlite;  // PGlite db instance\n  border?: boolean;  // Outer border on the component, defaults to false\n  lightTheme?: Extension;\n  darkTheme?: Extension;\n  theme?: ReplTheme;  // Defaults to \"auto\"\n}\n```\n\nThe `lightTheme` and `darkTheme` should be instances of a [React CodeMirror](https://uiwjs.github.io/react-codemirror/) theme.\n\n## How to use as a Web Component\n\nAlthough the PGlite REPL is built with React, its also available as a web component for easy inclusion in any page or other framework.\n\n```html\n<script src=\"https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist-webcomponent/Repl.js\" type=\"module\"></script>\n\n<!-- Include the Repl web component in your page -->\n<pglite-repl id=\"repl\"></pglite-repl>\n\n<script type=\"module\">\n  import { PGlite } from \"https://cdn.jsdelivr.net/npm/@electric-sql/pglite/dist/index.js\";\n\n  // Create a PGlite instance\n  const pg = new PGlite();\n\n  // Retrieve the Repl element\n  const repl = document.getElementById('repl');\n\n  // REPL to your PGlite instance\n  repl.pg = pg;\n</script>\n```\n\n## Development\n\nCheckout this repo and from package dir:\n\n```sh\n# Install deps\npnpm install\n\n# Run dev server\npnpm dev\n# then open a browser to the url shown\n\n# Build the lib\npnpm build\n```\n"
  },
  {
    "path": "packages/pglite-repl/eslint.config.js",
    "content": "import rootConfig from '../../eslint.config.js'\nimport pluginReact from '@eslint-react/eslint-plugin'\nimport pluginReactCompiler from 'eslint-plugin-react-compiler'\nimport pluginReactHooks from 'eslint-plugin-react-hooks'\nimport pluginReactRefresh from 'eslint-plugin-react-refresh'\n\nexport default [\n  {\n    ignores: ['dist-webcomponent/**'],\n  },\n  ...rootConfig,\n  {\n    files: ['**/*.{ts,tsx}'],\n    ...pluginReact.configs.recommended,\n  },\n  {\n    plugins: {\n      'react-hooks': pluginReactHooks,\n      'react-compiler': pluginReactCompiler,\n      'react-refresh': pluginReactRefresh,\n    },\n    rules: {\n      'react-compiler/react-compiler': 'error',\n      'react-hooks/exhaustive-deps': 'error',\n      'react-hooks/rules-of-hooks': 'error',\n      'react-refresh/only-export-components': 'off',\n      '@eslint-react/hooks-extra/no-direct-set-state-in-use-effect': 'off',\n      '@eslint-react/web-api/no-leaked-timeout': 'off',\n    },\n  },\n  {\n    files: ['**/test/**'],\n    rules: {\n      '@typescript-eslint/no-unnecessary-condition': 'off',\n      'react-compiler/react-compiler': 'off',\n    },\n  },\n]\n"
  },
  {
    "path": "packages/pglite-repl/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <link rel=\"icon\" type=\"image/svg+xml\" href=\"/vite.svg\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <title>PGlite REPL</title>\n  </head>\n  <body>\n    <div id=\"root\"></div>\n    <script type=\"module\" src=\"/src/main.tsx\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "packages/pglite-repl/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-repl\",\n  \"version\": \"0.3.1\",\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"private\": false,\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite.git\",\n    \"directory\": \"packages/pglite-repl\"\n  },\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"type\": \"module\",\n  \"files\": [\n    \"dist\",\n    \"dist-webcomponent\"\n  ],\n  \"module\": \"dist/Repl.js\",\n  \"types\": \"dist/Repl.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/Repl.d.ts\",\n        \"default\": \"./dist/Repl.js\"\n      }\n    },\n    \"./webcomponent\": {\n      \"import\": {\n        \"default\": \"./dist-webcomponent/Repl.js\"\n      }\n    }\n  },\n  \"scripts\": {\n    \"check:exports\": \"attw . --pack --profile esm-only\",\n    \"dev\": \"vite\",\n    \"build:react\": \"tsc && vite build\",\n    \"build:webcomp\": \"vite build --config vite.webcomp.config.ts\",\n    \"build\": \"pnpm run build:react && pnpm run build:webcomp\",\n    \"lint\": \"eslint ./**/*.{ts,tsx} --report-unused-disable-directives --max-warnings 0\",\n    \"preview\": \"vite preview\",\n    \"format\": \"prettier --write ./src && prettier --write ./src-webcomponent\",\n    \"typecheck\": \"tsc --noEmit\",\n    \"stylecheck\": \"pnpm lint && prettier -c ./src\"\n  },\n  \"dependencies\": {\n    \"@codemirror/autocomplete\": \"^6.18.1\",\n    \"@codemirror/commands\": \"^6.7.0\",\n    \"@codemirror/lang-sql\": \"^6.8.0\",\n    \"@codemirror/language\": \"^6.10.3\",\n    \"@codemirror/view\": \"^6.34.1\",\n    \"@electric-sql/pglite-react\": \"workspace:*\",\n    \"@uiw/codemirror-theme-github\": \"4.23.5\",\n    \"@uiw/codemirror-theme-xcode\": \"4.23.5\",\n    \"@uiw/codemirror-themes\": \"4.23.5\",\n    \"@uiw/react-codemirror\": \"4.23.5\",\n    \"psql-describe\": \"^0.1.5\",\n    \"react\": \"^19.0.0\",\n    \"react-dom\": \"^19.0.0\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:0.4.1\"\n  },\n  \"peerDependenciesMeta\": {\n    \"@electric-sql/pglite\": {\n      \"optional\": true\n    }\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@types/node\": \"^20.16.11\",\n    \"@types/react\": \"^19.0.2\",\n    \"@types/react-dom\": \"^19.0.2\",\n    \"@vitejs/plugin-react\": \"^4.3.2\",\n    \"eslint-plugin-react-compiler\": \"0.0.0-experimental-9ed098e-20240725\",\n    \"eslint-plugin-react-hooks\": \"^4.6.2\",\n    \"eslint-plugin-react-refresh\": \"^0.4.12\",\n    \"terser\": \"^5.34.1\",\n    \"vite\": \"^5.4.8\",\n    \"vite-plugin-dts\": \"^4.2.3\",\n    \"vite-plugin-libcss\": \"^1.1.1\"\n  }\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/App.css",
    "content": "#root {\n  padding: 1rem;\n  height: calc(100vh - 2rem);\n  display: flex;\n  flex-direction: column;\n}\n\n.App {\n  display: flex;\n  flex-direction: column;\n  height: 100%;\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/App.tsx",
    "content": "import { PGlite } from '@electric-sql/pglite'\nimport './App.css'\nimport { Repl } from './Repl'\n\nconst pg = new PGlite()\n\nfunction App() {\n  return (\n    <div className=\"App\">\n      <Repl pg={pg} border />\n    </div>\n  )\n}\n\nexport default App\n"
  },
  {
    "path": "packages/pglite-repl/src/Repl.css",
    "content": ".PGliteRepl-root {\n  --fg: var(--PGliteRepl-foreground-color);\n  --bg: var(--PGliteRepl-background-color);\n  --border: var(--PGliteRepl-border);\n  --border-color: var(--PGliteRepl-border-color);\n  --font-size: var(--PGliteRepl-font-size, 12px);\n\n  display: flex;\n  flex-direction: column;\n  height: 100%;\n  width: 100%;\n  font-size: var(--font-size);\n  color: var(--fg);\n  background-color: var(--bg);\n}\n\n.PGliteRepl-loading-msg {\n  opacity: 0.5;\n}\n\n.PGliteRepl-root table {\n  font-size: var(--font-size);\n}\n\n.PGliteRepl-root-border {\n  border: var(--border);\n}\n\n.PGliteRepl-output {\n  flex: 1;\n  overflow-y: auto;\n  padding: 0.5em 0 0.5em 0.5em;\n  border-bottom: var(--border);\n}\n\n.PGliteRepl-root hr {\n  margin: 0.5em 0;\n  border: none;\n  border-top: var(--border);\n}\n\n.PGliteRepl-input {\n  display: flex;\n  min-height: 60px;\n  max-height: 50%;\n  width: 100%;\n}\n\n.PGliteRepl-input .cm-editor.cm-focused {\n  outline: none;\n}\n\n.PGliteRepl-input-loading {\n  pointer-events: none;\n}\n\n.PGliteRepl-table-scroll {\n  overflow-x: auto;\n}\n\n.PGliteRepl-table {\n  border-collapse: collapse;\n}\n\n.PGliteRepl-line {\n  margin: 0 0 0 1em;\n  position: relative;\n}\n\n.PGliteRepl-line::before {\n  display: block;\n  width: 0.7em;\n  text-align: center;\n  content: '❮';\n  margin-right: 0.5em;\n  color: var(--border-color);\n  position: absolute;\n  left: -1em;\n}\n\n.PGliteRepl-line + .PGliteRepl-line {\n  margin-top: 0.25em;\n}\n\n.PGliteRepl-query {\n  margin: 0 0 0.25em 1em;\n}\n\n.PGliteRepl-query::before {\n  content: '❯';\n}\n\n.PGliteRepl-table th {\n  text-align: center;\n  font-weight: 600;\n}\n\n.PGliteRepl-table td {\n  text-align: left;\n  max-width: 400px;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n\n.PGliteRepl-table .PGliteRepl-number {\n  text-align: right;\n  font-variant-numeric: tabular-nums;\n}\n\n.PGliteRepl-table .PGliteRepl-boolean {\n  text-align: center;\n}\n\n.PGliteRepl-table .PGliteRepl-json {\n  font-family: monospace;\n}\n\n.PGliteRepl-table th,\n.PGliteRepl-table td {\n  padding: 0 0.2em;\n  border: var(--border);\n}\n\n.PGliteRepl-divider {\n  font-size: 9px;\n  display: flex;\n  align-items: center;\n  color: var(--border-color);\n  padding-right: 0.5em;\n}\n\n.PGliteRepl-divider hr {\n  margin: 0;\n  flex-grow: 1;\n}\n\n.PGliteRepl-time {\n  margin: 0 0.5em;\n}\n\n.PGliteRepl-null {\n  color: var(--border-color);\n}\n\n.PGliteRepl-error {\n  color: #c33;\n}\n\n.PGliteRepl-error::before {\n  content: '!';\n  color: #c33;\n  font-weight: bold;\n}\n\n.PGliteRepl-table-row-count a {\n  text-decoration: none;\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/Repl.tsx",
    "content": "import { useState, useCallback, useMemo, useRef, useEffect } from 'react'\nimport CodeMirror, {\n  type ViewUpdate,\n  type ReactCodeMirrorRef,\n  type Extension,\n} from '@uiw/react-codemirror'\nimport type { CreateThemeOptions } from '@uiw/codemirror-themes'\nimport { defaultKeymap } from '@codemirror/commands'\nimport { keymap } from '@codemirror/view'\nimport { PostgreSQL } from '@codemirror/lang-sql'\nimport type { PGliteInterface } from '@electric-sql/pglite'\nimport type { PGliteWithLive } from '@electric-sql/pglite/live'\nimport { usePGlite } from '@electric-sql/pglite-react'\nimport { makeSqlExt } from './sqlSupport'\nimport type { Response } from './types'\nimport { runQuery, getSchema } from './utils'\nimport { ReplResponse } from './ReplResponse'\nimport {\n  githubDark,\n  githubDarkInit,\n  githubLight,\n  githubLightInit,\n} from '@uiw/codemirror-theme-github'\n\nimport './Repl.css'\n\n// Filter out the Enter key from the default keymap, we entirely override its behavior\n// to run the query when the user presses Enter.\n// We keep the up and down arrow keys as we only override their behavior\n// when the cursor is on the first or last line.\nconst baseKeymap = defaultKeymap.filter((key) => key.key !== 'Enter')\n\nexport type ReplTheme = 'light' | 'dark' | 'auto'\n\ntype ThemeInit = (options?: Partial<CreateThemeOptions>) => Extension\n\nexport const defaultLightThemeInit: ThemeInit = githubLightInit\nexport const defaultLightTheme = githubLight\nexport const defaultDarkThemeInit: ThemeInit = githubDarkInit\nexport const defaultDarkTheme = githubDark\n\nexport interface ReplProps {\n  pg?: PGliteInterface\n  border?: boolean\n  lightTheme?: Extension\n  darkTheme?: Extension\n  theme?: ReplTheme\n  showTime?: boolean\n  disableUpdateSchema?: boolean\n}\n\nexport function Repl({\n  pg: pgProp,\n  border = false,\n  lightTheme = defaultLightTheme,\n  darkTheme = defaultDarkTheme,\n  theme = 'auto',\n  showTime = false,\n  disableUpdateSchema = false,\n}: ReplProps) {\n  const [value, setValue] = useState('')\n  const valueNoHistory = useRef('')\n  const [loading, setLoading] = useState(true)\n  const [output, setOutput] = useState<Response[]>([])\n  const outputRef = useRef<HTMLDivElement | null>(null)\n  const [schema, setSchema] = useState<Record<string, string[]>>({})\n  const historyPos = useRef(-1)\n  const rcm = useRef<ReactCodeMirrorRef | null>(null)\n  const [themeToUse, setThemeToUse] = useState<Extension>(\n    theme === 'dark' ? darkTheme : lightTheme,\n  )\n  const [styles, setStyles] = useState<{ [key: string]: string | number }>({})\n\n  const pg: PGliteInterface = usePGlite(pgProp as PGliteWithLive)\n\n  useEffect(() => {\n    let ignore = false\n    const init = async () => {\n      await pg.waitReady\n      if (ignore) return\n      setLoading(false)\n    }\n    setLoading(true)\n    init()\n    return () => {\n      ignore = true\n    }\n  }, [pg])\n\n  useEffect(() => {\n    if (theme === 'auto') {\n      const systemTheme = window.matchMedia('(prefers-color-scheme: dark)')\n        .matches\n        ? 'dark'\n        : 'light'\n      setThemeToUse(systemTheme === 'dark' ? darkTheme : lightTheme)\n      const listener = (e: MediaQueryListEvent) => {\n        setThemeToUse(e.matches ? darkTheme : lightTheme)\n        setTimeout(() => {\n          extractStyles()\n        }, 0)\n      }\n      // eslint-disable-next-line @eslint-react/web-api/no-leaked-event-listener\n      window\n        .matchMedia('(prefers-color-scheme: dark)')\n        .addEventListener('change', listener)\n      return () => {\n        window\n          .matchMedia('(prefers-color-scheme: dark)')\n          .removeEventListener('change', listener)\n      }\n    } else {\n      setThemeToUse(theme === 'dark' ? darkTheme : lightTheme)\n      setTimeout(() => {\n        extractStyles()\n      }, 0)\n      return\n    }\n  }, [theme, lightTheme, darkTheme])\n\n  const onChange = useCallback((val: string, _viewUpdate: ViewUpdate) => {\n    extractStyles()\n    setValue(val)\n    if (historyPos.current === -1) {\n      valueNoHistory.current = val\n    }\n  }, [])\n\n  const extensions = useMemo(\n    () => [\n      keymap.of([\n        {\n          key: 'Enter',\n          preventDefault: true,\n          run: () => {\n            if (value.trim() === '') return false // Do nothing if the input is empty\n            runQuery(value, pg).then((response) => {\n              setOutput((prev) => [...prev, response])\n              if (outputRef.current) {\n                setTimeout(() => {\n                  outputRef.current!.scrollTop = outputRef.current!.scrollHeight\n                }, 0)\n              }\n              // Update the schema for any new tables to be used in autocompletion\n              if (!disableUpdateSchema) {\n                getSchema(pg).then(setSchema)\n              }\n            })\n            historyPos.current = -1\n            valueNoHistory.current = ''\n            setValue('')\n            return true\n          },\n        },\n        {\n          key: 'ArrowUp',\n          run: (view) => {\n            const state = view.state\n            const cursorLine = state.doc.lineAt(\n              state.selection.main.head,\n            ).number\n            if (cursorLine === 1) {\n              // If the cursor is on the first line, go back in history\n              const currentPos = historyPos.current\n              historyPos.current++\n              if (historyPos.current >= output.length) {\n                historyPos.current = output.length - 1\n              }\n              if (historyPos.current < -1) {\n                historyPos.current = -1\n              }\n              if (historyPos.current === currentPos) return true\n              if (historyPos.current === -1) {\n                setValue(valueNoHistory.current)\n              } else {\n                setValue(output[output.length - historyPos.current - 1].query)\n              }\n              return true // Prevent the default behavior\n            }\n            return false // Allow the default behavior\n          },\n        },\n        {\n          key: 'ArrowDown',\n          run: (view) => {\n            const state = view.state\n            const cursorLine = state.doc.lineAt(\n              state.selection.main.head,\n            ).number\n            const lastLine = state.doc.lines\n            if (cursorLine === lastLine) {\n              // If the cursor is on the last line, go forward in history\n              const currentPos = historyPos.current\n              historyPos.current--\n              if (historyPos.current >= output.length) {\n                historyPos.current = output.length - 1\n              }\n              if (historyPos.current < -1) {\n                historyPos.current = -1\n              }\n              if (historyPos.current === currentPos) return true\n              if (historyPos.current === -1) {\n                setValue(valueNoHistory.current)\n              } else {\n                setValue(output[output.length - historyPos.current - 1].query)\n              }\n              return true // Prevent the default behavior\n            }\n            return false // Allow the default behavior\n          },\n        },\n        ...baseKeymap,\n      ]),\n      makeSqlExt({\n        dialect: PostgreSQL,\n        schema: schema,\n        tables: [\n          {\n            label: 'd',\n            displayLabel: '\\\\d',\n          },\n        ],\n        defaultSchema: 'public',\n      }),\n    ],\n    [pg, schema, value, output, disableUpdateSchema],\n  )\n\n  const extractStyles = () => {\n    // Get the styles from the CodeMirror editor to use in the REPL\n    const cmEditorEl = rcm.current?.editor?.querySelector('.cm-editor')\n    if (!cmEditorEl) {\n      throw new Error('No CodeMirror editor found')\n    }\n    const gutterEl = cmEditorEl.querySelector('.cm-gutters')\n    const cmEditorElComputedStyles = window.getComputedStyle(cmEditorEl)\n    const foregroundColor = cmEditorElComputedStyles.color\n    const backgroundColor = cmEditorElComputedStyles.backgroundColor\n\n    const gutterElComputedStyles = window.getComputedStyle(gutterEl!)\n    const gutterBorder = gutterElComputedStyles.borderRight\n    const borderWidth = parseInt(gutterElComputedStyles.borderRightWidth) || 0\n    const borderColor = borderWidth\n      ? gutterElComputedStyles.borderRightColor\n      : foregroundColor.replace('rgb', 'rgba').replace(')', ', 0.15)')\n    const border = borderWidth\n      ? gutterElComputedStyles.borderRight\n      : `1px solid ${borderColor}`\n\n    setStyles({\n      '--PGliteRepl-foreground-color': foregroundColor,\n      '--PGliteRepl-background-color': backgroundColor,\n      '--PGliteRepl-border': border,\n      '--PGliteRepl-gutter-border': gutterBorder,\n      '--PGliteRepl-border-color': borderColor,\n    })\n  }\n\n  return (\n    <div\n      className={`\n      PGliteRepl-root\n      ${border ? 'PGliteRepl-root-border' : ''}\n    `}\n      style={styles}\n    >\n      <div className=\"PGliteRepl-output\" ref={outputRef}>\n        {loading && <div className=\"PGliteRepl-loading-msg\">Loading...</div>}\n        {output.map((response) => (\n          <div key={`${response.query}-${response.time}`}>\n            <ReplResponse response={response || []} showTime={showTime} />\n          </div>\n        ))}\n      </div>\n      <CodeMirror\n        ref={rcm}\n        className={`PGliteRepl-input ${loading ? 'PGliteRepl-input-loading' : ''}`}\n        width=\"100%\"\n        value={value}\n        basicSetup={{\n          defaultKeymap: false,\n        }}\n        extensions={extensions}\n        theme={themeToUse}\n        onChange={onChange}\n        editable={!loading}\n        onCreateEditor={() => {\n          extractStyles()\n          setTimeout(extractStyles, 0)\n          getSchema(pg).then(setSchema)\n        }}\n      />\n    </div>\n  )\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/ReplResponse.tsx",
    "content": "import type { Results, Response } from './types'\nimport { ReplTable } from './ReplTable'\n\nfunction OutLine({ result }: { result: Results }) {\n  return (\n    <div className=\"PGliteRepl-line\">\n      {result.fields.length > 0 ? (\n        <ReplTable result={result} />\n      ) : (\n        <div className=\"PGliteRepl-null\">null</div>\n      )}\n    </div>\n  )\n}\n\nexport function ReplResponse({\n  response,\n  showTime,\n}: {\n  response: Response\n  showTime: boolean\n}) {\n  let out\n  if (response.error) {\n    out = (\n      <div className=\"PGliteRepl-line PGliteRepl-error\">{response.error}</div>\n    )\n  } else {\n    out = (\n      <>\n        {response.results?.map((result, i) => (\n          // eslint-disable-next-line @eslint-react/no-array-index-key\n          <OutLine key={i} result={result} />\n        ))}\n      </>\n    )\n  }\n  return (\n    <>\n      <pre className=\"PGliteRepl-line PGliteRepl-query\">{response.query}</pre>\n      {response.text && (\n        <div className=\"PGliteRepl-line PGliteRepl-text\">{response.text}</div>\n      )}\n      {out}\n      <div className=\"PGliteRepl-divider\">\n        <hr />\n        {showTime && (\n          <div className=\"PGliteRepl-time\">{response.time.toFixed(1)}ms</div>\n        )}\n      </div>\n    </>\n  )\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/ReplTable.tsx",
    "content": "import { useState, useEffect } from 'react'\nimport type { Results } from './types'\n\nconst tableRowIncrement = 100\nconst maxCellLength = 200\n\nfunction cellClass(value: unknown) {\n  if (value === null) {\n    return 'PGliteRepl-null'\n  } else if (typeof value === 'number') {\n    return 'PGliteRepl-number'\n  } else if (typeof value === 'boolean') {\n    return 'PGliteRepl-boolean'\n  } else {\n    return ''\n  }\n}\n\nfunction cellValue(value: unknown) {\n  let str: string\n  if (value === null) {\n    str = 'null'\n  } else if (typeof value === 'number') {\n    str = value.toString()\n  } else if (typeof value === 'boolean') {\n    str = value ? 'true' : 'false'\n  } else if (value instanceof Date) {\n    str = value.toISOString()\n  } else if (Array.isArray(value)) {\n    str = `[${value.map(cellValue).join(', ')}]`\n  } else if (typeof value === 'object') {\n    str = JSON.stringify(value)\n  } else if (ArrayBuffer.isView(value)) {\n    str = `${value.byteLength} bytes`\n  } else if (value === undefined) {\n    str = 'undefined'\n  } else {\n    str = value.toString()\n  }\n  return str.length > maxCellLength ? str.slice(0, maxCellLength) + '…' : str\n}\n\nexport function ReplTable({ result }: { result: Results }) {\n  const [maxRows, setMaxRows] = useState(tableRowIncrement)\n  const rows = result.rows.slice(0, maxRows)\n\n  useEffect(() => {\n    // Reset maxRows when the result changes\n    setMaxRows(tableRowIncrement)\n  }, [result])\n\n  const showMore = () => {\n    setMaxRows((prev) => prev + tableRowIncrement)\n  }\n\n  return (\n    <>\n      <div className=\"PGliteRepl-table-scroll\">\n        <table className=\"PGliteRepl-table\">\n          <thead>\n            <tr>\n              {result.fields.map((col) => (\n                <th key={col.name}>{col.name}</th>\n              ))}\n            </tr>\n            {/* <tr>\n              {result.fields.map((col, i) => (\n                <th key={i}>{col.dataTypeID}</th>\n              ))}\n            </tr> */}\n          </thead>\n          <tbody>\n            {rows.map((row, i) => (\n              // eslint-disable-next-line @eslint-react/no-array-index-key\n              <tr key={i}>\n                {row.map((col, j) => (\n                  // eslint-disable-next-line @eslint-react/no-array-index-key\n                  <td key={j} className={cellClass(col)}>\n                    {cellValue(col)}\n                  </td>\n                ))}\n              </tr>\n            ))}\n          </tbody>\n        </table>\n      </div>\n      <div className=\"PGliteRepl-table-row-count\">\n        {result.rows.length > maxRows ? `${maxRows} of ` : ''}\n        {result.rows.length} rows{' '}\n        {result.rows.length > maxRows && (\n          <a\n            href=\"\"\n            onClick={(e) => {\n              e.preventDefault()\n              showMore()\n            }}\n          >\n            Show more\n          </a>\n        )}\n      </div>\n    </>\n  )\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/index.css",
    "content": ":root {\n  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;\n  line-height: 1.5;\n  font-weight: 400;\n\n  color-scheme: light dark;\n  color: rgba(255, 255, 255, 0.87);\n  background-color: #242424;\n\n  box-sizing: border-box;\n}\n\n@media (prefers-color-scheme: light) {\n  :root {\n    color: #213547;\n    background-color: #ffffff;\n  }\n}\n\nhtml,\nbody {\n  margin: 0;\n  padding: 0;\n  height: 100%;\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/main.tsx",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom/client'\nimport App from './App.tsx'\nimport './index.css'\n\nReactDOM.createRoot(document.getElementById('root')!).render(\n  <React.StrictMode>\n    <App />\n  </React.StrictMode>,\n)\n"
  },
  {
    "path": "packages/pglite-repl/src/sqlSupport.ts",
    "content": "import {\n  PostgreSQL,\n  SQLConfig,\n  keywordCompletionSource,\n  schemaCompletionSource,\n} from '@codemirror/lang-sql'\nimport { CompletionContext, CompletionResult } from '@codemirror/autocomplete'\nimport { LanguageSupport } from '@codemirror/language'\n\nconst describeCompletions = [\n  {\n    label: '\\\\d',\n    type: 'function',\n    displayLabel: '\\\\d[S+] [ pattern ]',\n    detail: 'PSQL Describe',\n  },\n  {\n    label: '\\\\da',\n    type: 'function',\n    displayLabel: '\\\\da[S] [ pattern ]',\n    detail: 'Lists aggregate functions',\n  },\n  {\n    label: '\\\\dA',\n    type: 'function',\n    displayLabel: '\\\\dA[+] [ pattern ]',\n    detail: 'Lists access methods',\n  },\n  {\n    label: '\\\\dAc',\n    type: 'function',\n    displayLabel: '\\\\dAc[+] [access-method-pattern [input-type-pattern]]',\n    detail: 'Lists operator classes',\n  },\n  {\n    label: '\\\\dAf',\n    type: 'function',\n    displayLabel: '\\\\dAf[+] [access-method-pattern [input-type-pattern]]',\n    detail: 'Lists operator families',\n  },\n  {\n    label: '\\\\dAo',\n    type: 'function',\n    displayLabel: '\\\\dAo[+] [access-method-pattern [operator-family-pattern]]',\n    detail: 'Lists operators associated with operator families',\n  },\n  {\n    label: '\\\\dAp',\n    type: 'function',\n    displayLabel: '\\\\dAp[+] [access-method-pattern [operator-family-pattern]]',\n    detail: 'Lists support functions associated with operator families',\n  },\n  {\n    label: '\\\\db',\n    type: 'function',\n    displayLabel: '\\\\db[+] [ pattern ]',\n    detail: 'Lists tablespaces',\n  },\n  {\n    label: '\\\\dc',\n    type: 'function',\n    displayLabel: '\\\\dc[S+] [ pattern ]',\n    detail: 'Lists conversions between character-set encodings',\n  },\n  {\n    label: '\\\\dconfig',\n    type: 'function',\n    displayLabel: '\\\\dconfig[+] [ pattern ]',\n    detail: 'Lists server configuration parameters and their values',\n  },\n  {\n    label: '\\\\dC',\n    type: 'function',\n    displayLabel: '\\\\dC[+] [ pattern ]',\n    detail: 'Lists type casts',\n  },\n  {\n    label: '\\\\dd',\n    type: 'function',\n    displayLabel: '\\\\dd[S] [ pattern ]',\n    detail:\n      'Shows the descriptions of objects of type constraint, operator class, operator family, rule, and trigger',\n  },\n  {\n    label: '\\\\dD',\n    type: 'function',\n    displayLabel: '\\\\dD[S+] [ pattern ]',\n    detail: 'Lists domains',\n  },\n  {\n    label: '\\\\ddp',\n    type: 'function',\n    displayLabel: '\\\\ddp [ pattern ]',\n    detail: 'Lists default access privilege settings',\n  },\n  {\n    label: '\\\\dE',\n    type: 'function',\n    displayLabel: '\\\\dE[S+] [ pattern ]',\n    detail: 'Lists foreign tables',\n  },\n  {\n    label: '\\\\di',\n    type: 'function',\n    displayLabel: '\\\\di[S+] [ pattern ]',\n    detail: 'Lists indexes',\n  },\n  {\n    label: '\\\\dm',\n    type: 'function',\n    displayLabel: '\\\\dm[S+] [ pattern ]',\n    detail: 'Lists materialized views',\n  },\n  {\n    label: '\\\\ds',\n    type: 'function',\n    displayLabel: '\\\\ds[S+] [ pattern ]',\n    detail: 'Lists sequences',\n  },\n  {\n    label: '\\\\dt',\n    type: 'function',\n    displayLabel: '\\\\dt[S+] [ pattern ]',\n    detail: 'Lists tables',\n  },\n  {\n    label: '\\\\dv',\n    type: 'function',\n    displayLabel: '\\\\dv[S+] [ pattern ]',\n    detail: 'Lists views',\n  },\n  {\n    label: '\\\\des',\n    type: 'function',\n    displayLabel: '\\\\des[+] [ pattern ]',\n    detail: 'Lists foreign servers',\n  },\n  {\n    label: '\\\\det',\n    type: 'function',\n    displayLabel: '\\\\det[+] [ pattern ]',\n    detail: 'Lists foreign tables',\n  },\n  {\n    label: '\\\\deu',\n    type: 'function',\n    displayLabel: '\\\\deu[+] [ pattern ]',\n    detail: 'Lists user mappings',\n  },\n  {\n    label: '\\\\dew',\n    type: 'function',\n    displayLabel: '\\\\dew[+] [ pattern ]',\n    detail: 'Lists foreign-data wrappers',\n  },\n  {\n    label: '\\\\df',\n    type: 'function',\n    displayLabel: '\\\\df[anptwS+] [ pattern [ arg_pattern ... ] ]',\n    detail: 'Lists functions',\n  },\n  {\n    label: '\\\\dF',\n    type: 'function',\n    displayLabel: '\\\\dF[+] [ pattern ]',\n    detail: 'Lists text search configurations',\n  },\n  {\n    label: '\\\\dFd',\n    type: 'function',\n    displayLabel: '\\\\dFd[+] [ pattern ]',\n    detail: 'Lists text search dictionaries',\n  },\n  {\n    label: '\\\\dFp',\n    type: 'function',\n    displayLabel: '\\\\dFp[+] [ pattern ]',\n    detail: 'Lists text search parsers',\n  },\n  {\n    label: '\\\\dFt',\n    type: 'function',\n    displayLabel: '\\\\dFt[+] [ pattern ]',\n    detail: 'Lists text search templates',\n  },\n  {\n    label: '\\\\dg',\n    type: 'function',\n    displayLabel: '\\\\dg[S+] [ pattern ]',\n    detail: 'Lists database roles',\n  },\n  {\n    label: '\\\\dl',\n    type: 'function',\n    displayLabel: '\\\\dl[+] ',\n    detail: 'List large objects',\n  },\n  {\n    label: '\\\\dL',\n    type: 'function',\n    displayLabel: '\\\\dL[S+] [ pattern ]',\n    detail: 'Lists procedural languages',\n  },\n  {\n    label: '\\\\dn',\n    type: 'function',\n    displayLabel: '\\\\dn[S+] [ pattern ]',\n    detail: 'Lists schemas',\n  },\n  {\n    label: '\\\\do',\n    type: 'function',\n    displayLabel: '\\\\do[S+] [ pattern [ arg_pattern [ arg_pattern ] ] ]',\n    detail: 'Lists operators with their operand and result types',\n  },\n  {\n    label: '\\\\dO',\n    type: 'function',\n    displayLabel: '\\\\dO[S+] [ pattern ]',\n    detail: 'Lists collations',\n  },\n  {\n    label: '\\\\dp',\n    type: 'function',\n    displayLabel: '\\\\dp[S] [ pattern ]',\n    detail:\n      'Lists tables, views and sequences with their associated access privileges',\n  },\n  {\n    label: '\\\\dP',\n    type: 'function',\n    displayLabel: '\\\\dP[itn+] [ pattern ]',\n    detail: 'Lists partitioned relations',\n  },\n  {\n    label: '\\\\drds',\n    type: 'function',\n    displayLabel: '\\\\drds [ role-pattern [ database-pattern ] ]',\n    detail: 'Lists defined configuration settings',\n  },\n  {\n    label: '\\\\drg',\n    type: 'function',\n    displayLabel: '\\\\drg[S] [ pattern ]',\n    detail: 'Lists information about each granted role membership',\n  },\n  {\n    label: '\\\\dRp',\n    type: 'function',\n    displayLabel: '\\\\dRp[+] [ pattern ]',\n    detail: 'Lists replication publications',\n  },\n  {\n    label: '\\\\dRs',\n    type: 'function',\n    displayLabel: '\\\\dRs[+] [ pattern ]',\n    detail: 'Lists replication subscriptions',\n  },\n  {\n    label: '\\\\dT',\n    type: 'function',\n    displayLabel: '\\\\dT[S+] [ pattern ]',\n    detail: 'Lists data types',\n  },\n  {\n    label: '\\\\du',\n    type: 'function',\n    displayLabel: '\\\\du[S+] [ pattern ]',\n    detail: 'Lists database roles',\n  },\n  {\n    label: '\\\\dx',\n    type: 'function',\n    displayLabel: '\\\\dx[+] [ pattern ]',\n    detail: 'Lists installed extensions',\n  },\n  {\n    label: '\\\\dX',\n    type: 'function',\n    displayLabel: '\\\\dX [ pattern ]',\n    detail: 'Lists extended statistics',\n  },\n  {\n    label: '\\\\dy',\n    type: 'function',\n    displayLabel: '\\\\dy[+] [ pattern ]',\n    detail: 'Lists event triggers',\n  },\n]\n\nfunction describeCompletionsAutoComplete(\n  context: CompletionContext,\n): CompletionResult | null {\n  const word = context.matchBefore(/\\\\\\w*/)\n  if (!word || word.from === word.to) return null\n  return {\n    from: word.from,\n    options: describeCompletions,\n  }\n}\n\n// This is a reimplemented version of `sql()` from `@codemirror/lang-sql` that\n// includes a custom autocompletion function for postgresql's `\\d` command.\nexport function makeSqlExt(config: SQLConfig = {}) {\n  const lang = config.dialect || PostgreSQL\n  return new LanguageSupport(lang.language, [\n    // schemaCompletion(config),\n    config.schema\n      ? lang.language.data.of({\n          autocomplete: schemaCompletionSource(config),\n        })\n      : [],\n    // keywordCompletion(lang, !!config.upperCaseKeywords)\n    lang.language.data.of({\n      autocomplete: keywordCompletionSource(lang, !!config.upperCaseKeywords),\n    }),\n    lang.language.data.of({\n      autocomplete: describeCompletionsAutoComplete,\n    }),\n  ])\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/types.ts",
    "content": "import { type Results as BaseResults } from '@electric-sql/pglite'\n\nexport type Results = BaseResults<{ [key: string]: unknown }[]>\n\nexport interface Response {\n  query: string\n  text?: string\n  error?: string\n  results?: Results[]\n  time: number\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/utils.ts",
    "content": "import { type PGliteInterface } from '@electric-sql/pglite'\nimport { describe } from 'psql-describe'\nimport type { Results, Response } from './types'\n\nexport async function runQuery(\n  query: string,\n  pg: PGliteInterface,\n): Promise<Response> {\n  if (query.trim().toLowerCase().startsWith('\\\\')) {\n    return runDescribe(query, pg)\n  }\n  const start = performance.now()\n  try {\n    const result = await pg.exec(query, {\n      rowMode: 'array',\n    })\n    const elapsed = performance.now() - start\n    return {\n      query,\n      results: result as Results[],\n      time: elapsed,\n    }\n  } catch (err) {\n    return {\n      query,\n      error: (err as Error).message,\n      time: performance.now() - start,\n    }\n  }\n}\n\nexport async function runDescribe(\n  query: string,\n  pg: PGliteInterface,\n): Promise<Response> {\n  const start = performance.now()\n  let out: string | Record<string, unknown> | undefined\n  let ret: Results\n  const { promise, cancel: _cancel } = describe(\n    query,\n    'postgres',\n    async (sql) => {\n      ret = (await pg.exec(sql, { rowMode: 'array' }))[0] as Results\n      return {\n        rows: ret.rows,\n        fields: ret.fields,\n        rowCount: ret.rows.length,\n      }\n    },\n    (output) => {\n      out = output\n    },\n  )\n  await promise\n  const elapsed = performance.now() - start\n\n  if (!out) {\n    return {\n      query,\n      error: 'No output',\n      time: elapsed,\n    }\n  } else if (typeof out === 'string') {\n    if (out.startsWith('ERROR:')) {\n      return {\n        query,\n        error: out,\n        time: elapsed,\n      }\n    } else {\n      return {\n        query,\n        text: out,\n        time: elapsed,\n      }\n    }\n  } else {\n    return {\n      query,\n      text: out.title as string,\n      results: [ret!],\n      time: elapsed,\n    }\n  }\n}\n\nexport async function getSchema(\n  pg: PGliteInterface,\n): Promise<Record<string, string[]>> {\n  const ret = await pg.query<{\n    schema: string\n    table: string\n    columns: string\n  }>(`\n    SELECT \n      table_schema AS schema,\n      table_name AS table,\n      array_agg(column_name) AS columns\n    FROM \n      information_schema.columns\n    GROUP BY \n      table_schema, table_name\n    ORDER BY \n      table_schema, table_name;\n  `)\n  const schema: Record<string, string[]> = {}\n  for (const row of ret.rows) {\n    schema[`${row.schema}.${row.table}`] = Array.isArray(row.columns)\n      ? row.columns\n      : row.columns.slice(1, -1).split(',')\n  }\n  return schema\n}\n"
  },
  {
    "path": "packages/pglite-repl/src/vite-env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n"
  },
  {
    "path": "packages/pglite-repl/src-webcomponent/main.tsx",
    "content": "import { createRoot } from 'react-dom/client'\nimport {\n  Repl,\n  defaultLightThemeInit,\n  defaultLightTheme,\n  defaultDarkThemeInit,\n  defaultDarkTheme,\n} from '../src/Repl'\nimport type { ReplProps, ReplTheme } from '../src/Repl'\nimport type { PGlite } from '@electric-sql/pglite'\nimport type { Extension } from '@uiw/react-codemirror'\n\n// @ts-ignore uses CSS loader\nimport css from '../src/Repl.css?raw'\n\nexport type { ReplProps, ReplTheme }\n\nexport {\n  defaultLightThemeInit,\n  defaultLightTheme,\n  defaultDarkThemeInit,\n  defaultDarkTheme,\n}\n\nexport class PGliteREPL extends HTMLElement {\n  #mountPoint: HTMLDivElement\n  #root: ReturnType<typeof createRoot>\n  #pg?: PGlite\n  #lightTheme?: Extension\n  #darkTheme?: Extension\n\n  constructor() {\n    super()\n    this.#mountPoint = document.createElement('div')\n    this.#mountPoint.classList.add('PGliteRepl-root')\n    const shadowRoot = this.attachShadow({ mode: 'open' })\n    const style = document.createElement('style')\n    style.textContent = css\n    shadowRoot.appendChild(style)\n    shadowRoot.appendChild(this.#mountPoint)\n    this.#root = createRoot(this.#mountPoint)\n  }\n\n  static get observedAttributes() {\n    return ['border', 'theme', 'show-time', 'disable-update-schema']\n  }\n\n  connectedCallback() {\n    this.render()\n  }\n\n  attributeChangedCallback(\n    _name: string,\n    oldValue: unknown,\n    newValue: unknown,\n  ) {\n    if (oldValue !== newValue) {\n      this.render()\n    }\n  }\n\n  disconnectedCallback() {\n    this.#root?.unmount()\n  }\n\n  get pg() {\n    return this.#pg\n  }\n\n  set pg(pg: PGlite | undefined) {\n    this.#pg = pg\n    this.render()\n  }\n\n  get lightTheme() {\n    return this.#lightTheme\n  }\n\n  set lightTheme(lightTheme: Extension | undefined) {\n    this.#lightTheme = lightTheme\n    this.render()\n  }\n\n  get darkTheme() {\n    return this.#darkTheme\n  }\n\n  set darkTheme(darkTheme: Extension | undefined) {\n    this.#darkTheme = darkTheme\n    this.render()\n  }\n\n  render() {\n    const border = this.hasAttribute('border')\n      ? this.getAttribute('border') !== 'false'\n      : undefined\n    const theme = this.getAttribute('theme')\n    const showTime = this.hasAttribute('show-time')\n      ? this.getAttribute('show-time') !== 'false'\n      : undefined\n    const disableUpdateSchema = this.hasAttribute('disable-update-schema')\n      ? this.getAttribute('disable-update-schema') !== 'false'\n      : undefined\n\n    const props: ReplProps = {\n      pg: this.#pg!,\n      border,\n      lightTheme: this.#lightTheme,\n      darkTheme: this.#darkTheme,\n      theme: (theme as ReplTheme | null) || 'auto',\n      showTime,\n      disableUpdateSchema,\n    }\n\n    this.#root.render(\n      <>\n        {this.#pg ? (\n          <Repl {...props} />\n        ) : (\n          <div>PGlite instance not provided</div>\n        )}\n      </>,\n    )\n  }\n}\n\ncustomElements.define('pglite-repl', PGliteREPL)\n"
  },
  {
    "path": "packages/pglite-repl/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"useDefineForClassFields\": true,\n    \"allowImportingTsExtensions\": true,\n    \"jsx\": \"react-jsx\",\n  },\n  \"include\": [\"src\", \"src-webcomponent\"],\n  \"references\": [{ \"path\": \"./tsconfig.node.json\" }]\n}\n"
  },
  {
    "path": "packages/pglite-repl/tsconfig.node.json",
    "content": "{\n  \"compilerOptions\": {\n    \"composite\": true,\n    \"skipLibCheck\": true,\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"bundler\",\n    \"allowSyntheticDefaultImports\": true,\n    \"strict\": true,\n    \"noEmit\": false\n  },\n  \"include\": [\"vite.config.ts\"]\n}\n"
  },
  {
    "path": "packages/pglite-repl/vite.config.ts",
    "content": "import { resolve } from 'path'\nimport { defineConfig } from 'vite'\nimport react from '@vitejs/plugin-react'\nimport dts from 'vite-plugin-dts'\nimport libCss from 'vite-plugin-libcss'\nimport packageJson from './package.json'\n\nexport default defineConfig({\n  plugins: [\n    // @ts-ignore type mismsatch but works?\n    react(),\n    libCss(),\n    dts({\n      include: ['./src/Repl.tsx'],\n    }),\n  ],\n  optimizeDeps: {\n    exclude: ['@electric-sql/pglite'],\n  },\n  build: {\n    lib: {\n      entry: resolve(import.meta.dirname, 'src/Repl.tsx'),\n      name: 'PGliteREPL',\n      fileName: 'Repl',\n      // formats: [\"es\"],\n    },\n    sourcemap: true,\n    minify: false,\n    rollupOptions: {\n      external: [\n        'react/jsx-runtime',\n        ...Object.keys(packageJson.dependencies),\n        ...Object.keys(packageJson.peerDependencies),\n        ...Object.keys(packageJson.devDependencies),\n      ],\n    },\n  },\n})\n"
  },
  {
    "path": "packages/pglite-repl/vite.webcomp.config.ts",
    "content": "/// <reference types=\"vite/client\" />\n\nimport { resolve } from 'path'\nimport { defineConfig } from 'vite'\nimport react from '@vitejs/plugin-react'\nimport dts from 'vite-plugin-dts'\nimport packageJson from './package.json'\n\nexport default defineConfig({\n  plugins: [\n    // @ts-ignore type mismsatch but works?\n    react(),\n    dts({\n      include: ['./src-webcomponent/main.tsx', './src/Repl.tsx'],\n    }),\n  ],\n  optimizeDeps: {\n    exclude: ['@electric-sql/pglite'],\n  },\n  define: { 'process.env': {} },\n  build: {\n    lib: {\n      entry: resolve(import.meta.dirname, './src-webcomponent/main.tsx'),\n      name: 'PGliteREPL',\n      fileName: 'Repl',\n      // formats: [\"iife\", \"es\"],\n      formats: ['es'],\n    },\n    sourcemap: true,\n    minify: 'terser',\n    outDir: 'dist-webcomponent',\n    rollupOptions: {\n      external: [\n        ...Object.keys(packageJson.peerDependencies),\n        ...Object.keys(packageJson.devDependencies),\n      ],\n    },\n  },\n})\n"
  },
  {
    "path": "packages/pglite-socket/CHANGELOG.md",
    "content": "# @electric-sql/pglite-socket\n\n## 0.1.1\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n\n## 0.1.0\n\n### Minor Changes\n\n- Updated dependencies [d848955]\n  - @electric-sql/pglite-postgis@0.0.1\n  - @electric-sql/pglite@0.4.0\n\n## 0.0.22\n\n### Patch Changes\n\n- Updated dependencies [3dfa40f]\n  - @electric-sql/pglite@0.3.16\n\n## 0.0.21\n\n### Patch Changes\n\n- 8a03647: Fix: Message buffering, connection handling, and concurrent connection support;\n\n## 0.0.20\n\n### Patch Changes\n\n- 54a4873: allow extensions to be loaded via '-e/--extensions <list>' cmd line parameter'\n- 45bff97: added pgcrypto extension\n- Updated dependencies [45bff97]\n- Updated dependencies [5ec474f]\n  - @electric-sql/pglite@0.3.15\n\n## 0.0.19\n\n### Patch Changes\n\n- Updated dependencies [8785034]\n- Updated dependencies [90cfee8]\n  - @electric-sql/pglite@0.3.14\n\n## 0.0.18\n\n### Patch Changes\n\n- Updated dependencies [ad3d0d8]\n  - @electric-sql/pglite@0.3.13\n\n## 0.0.17\n\n### Patch Changes\n\n- Updated dependencies [ce0e74e]\n  - @electric-sql/pglite@0.3.12\n\n## 0.0.16\n\n### Patch Changes\n\n- Updated dependencies [9a104b9]\n  - @electric-sql/pglite@0.3.11\n\n## 0.0.15\n\n### Patch Changes\n\n- Updated dependencies [ad765ed]\n  - @electric-sql/pglite@0.3.10\n\n## 0.0.14\n\n### Patch Changes\n\n- e40ccad: Upgrade emsdk\n- Updated dependencies [e40ccad]\n  - @electric-sql/pglite@0.3.9\n\n## 0.0.13\n\n### Patch Changes\n\n- bd263aa: fix oom; other fixes\n- Updated dependencies [f12a582]\n- Updated dependencies [bd263aa]\n  - @electric-sql/pglite@0.3.8\n\n## 0.0.12\n\n### Patch Changes\n\n- Updated dependencies [0936962]\n  - @electric-sql/pglite@0.3.7\n\n## 0.0.11\n\n### Patch Changes\n\n- Updated dependencies [6898469]\n- Updated dependencies [469be18]\n- Updated dependencies [64e33c7]\n  - @electric-sql/pglite@0.3.6\n\n## 0.0.10\n\n### Patch Changes\n\n- Updated dependencies [6653899]\n- Updated dependencies [5f007fc]\n  - @electric-sql/pglite@0.3.5\n\n## 0.0.9\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n- Updated dependencies [1fcaa3e]\n- Updated dependencies [38a55d0]\n- Updated dependencies [aac7003]\n- Updated dependencies [8ca254d]\n  - @electric-sql/pglite@0.3.4\n\n## 0.0.8\n\n### Patch Changes\n\n- Updated dependencies [ea2c7c7]\n  - @electric-sql/pglite@0.3.3\n\n## 0.0.7\n\n### Patch Changes\n\n- 5a47f4d: better handling of closing the socket\n- 6f8dd08: with the `npx pglite-server` command, add the ability to pass a command to run after the server is ready, along with passing a new DATABASE_URL environment variable to the command. This allows for a command like `npx pglite-server -r \"npm run dev:inner\" --include-database-url` to run a dev server that uses the pglite server as the database.\n\n## 0.0.6\n\n### Patch Changes\n\n- Updated dependencies [e2c654b]\n  - @electric-sql/pglite@0.3.2\n\n## 0.0.5\n\n### Patch Changes\n\n- f975f77: Updated README\n- d9b52d5: allows unix socket connections\n\n## 0.0.4\n\n### Patch Changes\n\n- 027baed: missing shebang\n\n## 0.0.3\n\n### Patch Changes\n\n- 1c2dc84: fix pglite-socket exports\n\n## 0.0.2\n\n### Patch Changes\n\n- Updated dependencies [713364e]\n  - @electric-sql/pglite@0.3.1\n"
  },
  {
    "path": "packages/pglite-socket/README.md",
    "content": "# pglite-socket\n\nA socket implementation for PGlite enabling remote connections. This package is a simple wrapper around the `net` module to allow PGlite to be used as a PostgreSQL server.\n\nThere are two main components to this package:\n\n- [`PGLiteSocketServer`](#pglitesocketserver) - A TCP server that allows PostgreSQL clients to connect to a PGlite database instance.\n- [`PGLiteSocketHandler`](#pglitesockethandler) - A low-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite, and can be used to create a custom server.\n\nThe package also includes a [CLI](#cli-usage) for quickly starting a PGlite socket server.\n\nNote: Although PGlite is a single-connection database, it is possible to open and use multiple simultaneous connections with pglite-server. This is achieved through a multiplexer implemented in the server (see the parameter `-m, --max-connections`). This is different from a normal Postgres installation, so not all use cases are guaranteed to work.\n\n## Installation\n\n```bash\nnpm install @electric-sql/pglite-socket\n# or\nyarn add @electric-sql/pglite-socket\n# or\npnpm add @electric-sql/pglite-socket\n```\n\n## Usage\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketServer } from '@electric-sql/pglite-socket'\n\n// Create a PGlite instance\nconst db = await PGlite.create()\n\n// Create and start a socket server\nconst server = new PGLiteSocketServer({\n  db,\n  port: 5432,\n  host: '127.0.0.1',\n})\n\nawait server.start()\nconsole.log('Server started on 127.0.0.1:5432')\n\n// Handle graceful shutdown\nprocess.on('SIGINT', async () => {\n  await server.stop()\n  await db.close()\n  console.log('Server stopped and database closed')\n  process.exit(0)\n})\n```\n\n## API\n\n### PGLiteSocketServer\n\nCreates a TCP server that allows PostgreSQL clients to connect to a PGlite database instance.\n\n#### Options\n\n- `db: PGlite` - The PGlite database instance\n- `port?: number` - The port to listen on (default: 5432). Use port 0 to let the OS assign an available port\n- `host?: string` - The host to bind to (default: 127.0.0.1)\n- `path?: string` - Unix socket path to bind to (takes precedence over host:port)\n- `inspect?: boolean` - Print the incoming and outgoing data to the console (default: false)\n\n#### Methods\n\n- `start(): Promise<void>` - Start the socket server\n- `stop(): Promise<void>` - Stop the socket server\n\n#### Events\n\n- `listening` - Emitted when the server starts listening\n- `connection` - Emitted when a client connects\n- `error` - Emitted when an error occurs\n- `close` - Emitted when the server is closed\n\n### PGLiteSocketHandler\n\nLow-level handler for a single socket connection to PGlite. This class handles the raw protocol communication between a socket and PGlite.\n\n#### Options\n\n- `db: PGlite` - The PGlite database instance\n- `closeOnDetach?: boolean` - Whether to close the socket when detached (default: false)\n- `inspect?: boolean` - Print the incoming and outgoing data to the console in hex and ascii (default: false)\n\n#### Methods\n\n- `attach(socket: Socket): Promise<PGLiteSocketHandler>` - Attach a socket to this handler\n- `detach(close?: boolean): PGLiteSocketHandler` - Detach the current socket from this handler\n- `isAttached: boolean` - Check if a socket is currently attached\n\n#### Events\n\n- `data` - Emitted when data is processed through the handler\n- `error` - Emitted when an error occurs\n- `close` - Emitted when the socket is closed\n\n#### Example\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketHandler } from '@electric-sql/pglite-socket'\nimport { createServer, Socket } from 'net'\n\n// Create a PGlite instance\nconst db = await PGlite.create()\n\n// Create a handler\nconst handler = new PGLiteSocketHandler({\n  db,\n  closeOnDetach: true,\n  inspect: false,\n})\n\n// Create a server that uses the handler\nconst server = createServer(async (socket: Socket) => {\n  try {\n    await handler.attach(socket)\n    console.log('Client connected')\n  } catch (err) {\n    console.error('Error attaching socket', err)\n    socket.end()\n  }\n})\n\nserver.listen(5432, '127.0.0.1')\n```\n\n## Examples\n\nSee the [examples directory](./examples) for more usage examples.\n\n## CLI Usage\n\nThis package provides a command-line interface for quickly starting a PGlite socket server.\n\n```bash\n# Install globally\nnpm install -g @electric-sql/pglite-socket\n\n# Start a server with default settings (in-memory database, port 5432)\npglite-server\n\n# Start a server with custom options\npglite-server --db=/path/to/database --port=5433 --host=0.0.0.0 --debug=1\n\n# Using short options\npglite-server -d /path/to/database -p 5433 -h 0.0.0.0 -v 1\n\n# Show help\npglite-server --help\n```\n\n### CLI Options\n\n- `-d, --db=PATH` - Database path (default: memory://)\n- `-p, --port=PORT` - Port to listen on (default: 5432). Use 0 to let the OS assign an available port\n- `-h, --host=HOST` - Host to bind to (default: 127.0.0.1)\n- `-u, --path=UNIX` - Unix socket to bind to (takes precedence over host:port)\n- `-v, --debug=LEVEL` - Debug level 0-5 (default: 0)\n- `-e, --extensions=LIST` - Comma-separated list of extensions to load (e.g., vector,pgcrypto)\n- `-r, --run=COMMAND` - Command to run after server starts\n- `--include-database-url` - Include DATABASE_URL in subprocess environment\n- `--shutdown-timeout=MS` - Timeout for graceful subprocess shutdown in ms (default: 5000)\n- `-m, --max-connections=N` - Maximum concurrent connections (default is no concurrency: 1)\n\n### Development Server Integration\n\nThe `--run` option is particularly useful for development workflows where you want to use PGlite as a drop-in replacement for PostgreSQL. This allows you to wrap your development server and automatically provide it with a DATABASE_URL pointing to your PGlite instance.\n\n```bash\n# Start your Next.js dev server with PGlite\npglite-server --run \"npm run dev\" --include-database-url\n\n# Start a Node.js app with PGlite\npglite-server --db=./dev-db --run \"node server.js\" --include-database-url\n\n# Start multiple services (using a process manager like concurrently)\npglite-server --run \"npx concurrently 'npm run dev' 'npm run worker'\" --include-database-url\n```\n\nWhen using `--run` with `--include-database-url`, the subprocess will receive a `DATABASE_URL` environment variable with the correct connection string for your PGlite server. This enables seamless integration with applications that expect a PostgreSQL connection string.\n\n### Using in npm scripts\n\nYou can add the CLI to your package.json scripts for convenient execution:\n\n```json\n{\n  \"scripts\": {\n    \"db:start\": \"pglite-server --db=./data/mydb --port=5433\",\n    \"db:dev\": \"pglite-server --db=memory:// --debug=1\",\n    \"dev\": \"pglite-server --db=./dev-db --run 'npm run start:dev' --include-database-url\",\n    \"dev:clean\": \"pglite-server --run 'npm run start:dev' --include-database-url\"\n  }\n}\n```\n\nThen run with:\n\n```bash\nnpm run dev          # Start with persistent database\nnpm run dev:clean    # Start with in-memory database\n```\n\n### Unix Socket Support\n\nFor better performance in local development, you can use Unix sockets instead of TCP:\n\n```bash\n# Start server on a Unix socket\npglite-server --path=/tmp/pglite.sock --run \"npm run dev\" --include-database-url\n\n# The DATABASE_URL will be: postgresql://postgres:postgres@/postgres?host=/tmp\n```\n\n### Connecting to the server\n\nOnce the server is running, you can connect to it using any PostgreSQL client:\n\n#### Using psql\n\n```bash\nPGSSLMODE=disable psql -h localhost -p 5432 -d template1\n```\n\n#### Using Node.js clients\n\n```javascript\n// Using node-postgres\nimport pg from 'pg'\nconst client = new pg.Client({\n  host: 'localhost',\n  port: 5432,\n  database: 'template1'\n})\nawait client.connect()\n\n// Using postgres.js\nimport postgres from 'postgres'\nconst sql = postgres({\n  host: 'localhost',\n  port: 5432,\n  database: 'template1'\n})\n\n// Using environment variable (when using --include-database-url)\nconst sql = postgres(process.env.DATABASE_URL)\n```\n\n### Limitations and Tips\n\n- Multiple concurrent connections are supported through a **multiplexer** over the single conn, therefore not all cases might be covered.\n- For development purposes, using an in-memory database (`--db=memory://`) is fastest but data won't persist after the server is stopped.\n- For persistent storage, specify a file path for the database (e.g., `--db=./data/mydb`).\n- When using debug mode (`--debug=1` or higher), additional protocol information will be displayed in the console.\n- To allow connections from other machines, set the host to `0.0.0.0` with `--host=0.0.0.0`.\n- SSL connections are **NOT** supported. For `psql`, set env var `PGSSLMODE=disable`.\n- When using `--run`, the server will automatically shut down if the subprocess exits with a non-zero code.\n- Use `--shutdown-timeout` to adjust how long to wait for graceful subprocess termination (default: 5 seconds).\n- Use `--max-connections=10` to allow up to 10 concurrent connections (default: 1, no concurrent connections).\n\n## License\n\nApache 2.0\n"
  },
  {
    "path": "packages/pglite-socket/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  {\n    ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'],\n  },\n  {\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n        ...globals.node,\n      },\n    },\n    rules: {\n      ...rootConfig.rules,\n      '@typescript-eslint/no-explicit-any': 'off',\n    },\n  },\n  {\n    files: ['tests/targets/deno/**/*.js'],\n    languageOptions: {\n      globals: {\n        Deno: false,\n      },\n    },\n  },\n]\n"
  },
  {
    "path": "packages/pglite-socket/examples/basic-server.ts",
    "content": "import { PGLiteSocketServer } from '../src'\nimport { PGlite, DebugLevel } from '@electric-sql/pglite'\n\n/*\n * This is a basic example of how to use the PGLiteSocketServer class.\n * It creates a PGlite instance and a PGLiteSocketServer instance and starts the server.\n * It also handles SIGINT to stop the server and close the database.\n * You can run this example with the following command:\n *\n * ```bash\n * pnpm tsx examples/basic-server.ts\n * ```\n * or with the handy script:\n * ```bash\n * pnpm example:basic-server\n * ```\n *\n * You can set the host and port with the following environment variables:\n *\n * ```bash\n * HOST=127.0.0.1 PORT=5432 DEBUG=1 pnpm tsx examples/basic-server.ts\n * ```\n *\n * Debug level can be set to 0, 1, 2, 3, or 4.\n *\n * ```bash\n * DEBUG=1 pnpm tsx examples/basic-server.ts\n * ```\n * You can also use a UNIX socket instead of the host:port\n * \n * ```bash\n * UNIX=/tmp/.s.PGSQL.5432 DEBUG=1 pnpm tsx examples/basic-server.ts\n * ```\n */\n\nconst UNIX = process.env.UNIX\nconst PORT = process.env.PORT ? parseInt(process.env.PORT) : 5432\nconst HOST = process.env.HOST ?? '127.0.0.1'\nconst DEBUG = process.env.DEBUG\n  ? (parseInt(process.env.DEBUG) as DebugLevel)\n  : 0\n\n// Create a PGlite instance\nconst db = await PGlite.create({\n  debug: DEBUG,\n})\n\n// Check if the database is working\nconsole.log(await db.query('SELECT version()'))\n\n// Create a PGLiteSocketServer instance\nconst server = new PGLiteSocketServer({\n  db,\n  port: PORT,\n  host: HOST,\n  path: UNIX,\n  inspect: !!DEBUG, // Print the incoming and outgoing data to the console\n})\n\nserver.addEventListener('listening', (event) => {\n  const detail = (\n    event as CustomEvent<{ port: number; host: string } | { host: string }>\n  ).detail\n  console.log(`Server listening on ${JSON.stringify(detail)}`)\n})\n\n// Start the server\nawait server.start()\n\n// Handle SIGINT to stop the server and close the database\nprocess.on('SIGINT', async () => {\n  await server.stop()\n  await db.close()\n  console.log('Server stopped and database closed')\n  process.exit(0)\n})\n"
  },
  {
    "path": "packages/pglite-socket/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-socket\",\n  \"version\": \"0.1.1\",\n  \"description\": \"A socket implementation for PGlite enabling remote connections\",\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite\",\n    \"directory\": \"packages/pglite-socket\"\n  },\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"pglite\",\n    \"socket\"\n  ],\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"type\": \"module\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.js\",\n  \"types\": \"dist/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    }\n  },\n  \"bin\": {\n    \"pglite-server\": \"./dist/scripts/server.js\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"lint\": \"eslint ./src ./tests --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write ./src ./tests\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"pnpm lint && prettier --check ./src ./tests\",\n    \"test\": \"vitest\",\n    \"example:basic-server\": \"tsx examples/basic-server.ts\",\n    \"pglite-server:dev\": \"tsx --watch src/scripts/server.ts\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pg-protocol\": \"workspace:*\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@types/emscripten\": \"^1.41.1\",\n    \"@types/node\": \"^20.16.11\",\n    \"pg\": \"^8.14.0\",\n    \"postgres\": \"^3.4.5\",\n    \"tsx\": \"^4.19.2\",\n    \"vitest\": \"^1.3.1\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:*\"\n  }\n}\n"
  },
  {
    "path": "packages/pglite-socket/src/index.ts",
    "content": "import type { PGlite } from '@electric-sql/pglite'\nimport { type Server, type Socket, createServer } from 'net'\n\n// Connection queue timeout in milliseconds\nexport const CONNECTION_QUEUE_TIMEOUT = 60000 // 60 seconds\n\n/**\n * Represents a queued query waiting for PGlite access\n */\ninterface QueuedQuery {\n  handlerId: number\n  message: Uint8Array\n  resolve: (resultSize: number) => void\n  reject: (error: Error) => void\n  timestamp: number\n  onData: (data: Uint8Array) => void\n}\n\n/**\n * Global query queue manager\n * Ensures only one query executes at a time in PGlite\n */\nclass QueryQueueManager {\n  private queue: QueuedQuery[] = []\n  private processing = false\n  private db: PGlite\n  private debug: boolean\n  private lastHandlerId: null | number = null\n\n  constructor(db: PGlite, debug = false) {\n    this.db = db\n    this.debug = debug\n  }\n\n  private log(message: string, ...args: any[]): void {\n    if (this.debug) {\n      console.log(`[QueryQueueManager] ${message}`, ...args)\n    }\n  }\n\n  async enqueue(\n    handlerId: number,\n    message: Uint8Array,\n    onData: (data: Uint8Array) => void,\n  ): Promise<number> {\n    return new Promise((resolve, reject) => {\n      const query: QueuedQuery = {\n        handlerId,\n        message,\n        resolve,\n        reject,\n        timestamp: Date.now(),\n        onData,\n      }\n\n      this.queue.push(query)\n      this.log(\n        `enqueued query from handler #${handlerId}, queue size: ${this.queue.length}`,\n      )\n\n      // Process queue if not already processing\n      if (!this.processing) {\n        this.processQueue()\n      }\n    })\n  }\n\n  private async processQueue(): Promise<void> {\n    if (this.processing || this.queue.length === 0) {\n      return\n    }\n\n    this.processing = true\n\n    while (this.queue.length > 0) {\n      let query\n\n      if (this.db.isInTransaction() && this.lastHandlerId) {\n        const i = this.queue.findIndex(\n          (q) => q.handlerId === this.lastHandlerId,\n        )\n        if (i === -1) {\n          // we didn't find any other query from the same client!\n          this.log(\n            `transaction started, but no query from the same handler id found in queue`,\n            this.lastHandlerId,\n          )\n          query = null\n        } else {\n          query = this.queue.splice(i, 1)[0]\n        }\n      } else {\n        query = this.queue.shift()\n      }\n      if (!query) break\n\n      const waitTime = Date.now() - query.timestamp\n      this.log(\n        `processing query from handler #${query.handlerId} (waited ${waitTime}ms)`,\n      )\n\n      let result = 0\n      try {\n        // Execute the query with exclusive access to PGlite\n        await this.db.runExclusive(async () => {\n          return await this.db.execProtocolRawStream(query.message, {\n            onRawData: (data) => {\n              result += data.length\n              query.onData(data)\n            },\n          })\n        })\n      } catch (error) {\n        this.log(`query from handler #${query.handlerId} failed:`, error)\n        query.reject(error as Error)\n        return\n      }\n\n      this.log(\n        `query from handler #${query.handlerId} completed, ${result} bytes`,\n      )\n      this.lastHandlerId = query.handlerId\n      query.resolve(result)\n    }\n\n    this.processing = false\n    this.log(`queue processing complete, queue length is`, this.queue.length)\n  }\n\n  getQueueLength(): number {\n    return this.queue.length\n  }\n\n  clearQueueForHandler(handlerId: number): void {\n    const before = this.queue.length\n    this.queue = this.queue.filter((q) => {\n      if (q.handlerId === handlerId) {\n        q.reject(new Error('Handler disconnected'))\n        return false\n      }\n      return true\n    })\n    const removed = before - this.queue.length\n    if (removed > 0) {\n      this.log(`cleared ${removed} queries for handler #${handlerId}`)\n    }\n  }\n\n  async clearTransactionIfNeeded(handlerId: number): Promise<void> {\n    if (this.db.isInTransaction() && this.lastHandlerId === handlerId) {\n      await this.db.exec('ROLLBACK')\n      this.lastHandlerId = null\n      await this.processQueue()\n    }\n  }\n}\n\n/**\n * Options for creating a PGLiteSocketHandler\n */\nexport interface PGLiteSocketHandlerOptions {\n  /** The query queue manager */\n  queryQueue: QueryQueueManager\n  /** Whether to close the socket when detached (default: false) */\n  closeOnDetach?: boolean\n  /** Print the incoming and outgoing data to the console in hex and ascii */\n  inspect?: boolean\n  /** Enable debug logging of method calls */\n  debug?: boolean\n  /** Idle timeout in ms (0 to disable, default: 0) */\n  idleTimeout?: number\n}\n\n/**\n * Handler for a single socket connection to PGlite\n * Each connection can remain open and send multiple queries\n */\nexport class PGLiteSocketHandler extends EventTarget {\n  private queryQueue: QueryQueueManager\n  private socket: Socket | null = null\n  private active = false\n  private closeOnDetach: boolean\n  private inspect: boolean\n  private debug: boolean\n  private readonly id: number\n  private messageBuffer: Buffer = Buffer.alloc(0)\n  private idleTimer?: NodeJS.Timeout\n  private idleTimeout: number\n  private lastActivityTime: number = Date.now()\n\n  // Static counter for generating unique handler IDs\n  private static nextHandlerId = 1\n\n  constructor(options: PGLiteSocketHandlerOptions) {\n    super()\n    this.queryQueue = options.queryQueue\n    this.closeOnDetach = options.closeOnDetach ?? false\n    this.inspect = options.inspect ?? false\n    this.debug = options.debug ?? false\n    this.idleTimeout = options.idleTimeout ?? 0\n    this.id = PGLiteSocketHandler.nextHandlerId++\n\n    this.log('constructor: created new handler')\n  }\n\n  public get handlerId(): number {\n    return this.id\n  }\n\n  private log(message: string, ...args: any[]): void {\n    if (this.debug) {\n      console.log(`[PGLiteSocketHandler#${this.id}] ${message}`, ...args)\n    }\n  }\n\n  public async attach(socket: Socket): Promise<PGLiteSocketHandler> {\n    this.log(\n      `attach: attaching socket from ${socket.remoteAddress}:${socket.remotePort}`,\n    )\n\n    if (this.socket) {\n      throw new Error('Socket already attached')\n    }\n\n    this.socket = socket\n    this.active = true\n    this.lastActivityTime = Date.now()\n\n    // Set up socket options\n    socket.setNoDelay(true)\n\n    // Set up idle timeout if configured\n    if (this.idleTimeout > 0) {\n      this.resetIdleTimer()\n    }\n\n    // Setup event handlers\n    this.log(`attach: setting up socket event handlers`)\n\n    socket.on('data', (data) => {\n      this.lastActivityTime = Date.now()\n      this.resetIdleTimer()\n\n      setImmediate(async () => {\n        try {\n          await this.handleData(data)\n        } catch (err) {\n          this.log('socket on data error: ', err)\n          this.handleError(err as Error)\n        }\n      })\n    })\n\n    socket.on('error', (err) => {\n      setImmediate(() => this.handleError(err))\n    })\n\n    socket.on('close', () => {\n      setImmediate(() => this.handleClose())\n    })\n\n    this.log(`attach: socket handler ready`)\n    return this\n  }\n\n  private resetIdleTimer(): void {\n    if (this.idleTimeout <= 0) return\n\n    if (this.idleTimer) {\n      clearTimeout(this.idleTimer)\n    }\n\n    this.idleTimer = setTimeout(() => {\n      const idleTime = Date.now() - this.lastActivityTime\n      this.log(`idle timeout after ${idleTime}ms`)\n      this.handleError(new Error('Idle timeout'))\n    }, this.idleTimeout)\n  }\n\n  public async detach(close?: boolean): Promise<PGLiteSocketHandler> {\n    this.log(`detach: detaching socket, close=${close ?? this.closeOnDetach}`)\n\n    if (this.idleTimer) {\n      clearTimeout(this.idleTimer)\n      this.idleTimer = undefined\n    }\n\n    // Clear any pending queries for this handler\n    this.queryQueue.clearQueueForHandler(this.id)\n\n    await this.queryQueue.clearTransactionIfNeeded(this.id)\n\n    if (!this.socket) {\n      this.log(`detach: no socket attached, nothing to do`)\n      return this\n    }\n\n    // Remove all listeners\n    this.socket.removeAllListeners('data')\n    this.socket.removeAllListeners('error')\n    this.socket.removeAllListeners('close')\n\n    // Close the socket if requested\n    if (close ?? this.closeOnDetach) {\n      if (this.socket.writable) {\n        this.log(`detach: closing socket`)\n        try {\n          this.socket.end()\n          this.socket.destroy()\n        } catch (err) {\n          this.log(`detach: error closing socket:`, err)\n        }\n      }\n    }\n\n    this.socket = null\n    this.active = false\n    this.messageBuffer = Buffer.alloc(0)\n\n    this.log(`detach: handler cleaned up`)\n    return this\n  }\n\n  public get isAttached(): boolean {\n    return this.socket !== null\n  }\n\n  private async handleData(data: Buffer): Promise<number> {\n    if (!this.socket || !this.active) {\n      this.log(`handleData: no active socket, ignoring data`)\n      return 0\n    }\n\n    this.log(`handleData: received ${data.length} bytes`)\n\n    // Append to buffer for message reassembly\n    this.messageBuffer = Buffer.concat([this.messageBuffer, data])\n\n    // Print the incoming data to the console\n    this.inspectData('incoming', data)\n\n    try {\n      let totalProcessed = 0\n\n      while (this.messageBuffer.length > 0) {\n        // Determine message length\n        let messageLength = 0\n        let isComplete = false\n\n        // Handle startup message (no type byte, just length)\n        if (this.messageBuffer.length >= 4) {\n          const firstInt = this.messageBuffer.readInt32BE(0)\n\n          if (this.messageBuffer.length >= 8) {\n            const secondInt = this.messageBuffer.readInt32BE(4)\n            // PostgreSQL 3.0 protocol version\n            if (secondInt === 196608 || secondInt === 0x00030000) {\n              messageLength = firstInt\n              isComplete = this.messageBuffer.length >= messageLength\n            }\n          }\n\n          // Regular message (type byte + length)\n          if (!isComplete && this.messageBuffer.length >= 5) {\n            const msgLength = this.messageBuffer.readInt32BE(1)\n            messageLength = 1 + msgLength\n            isComplete = this.messageBuffer.length >= messageLength\n          }\n        }\n\n        if (!isComplete || messageLength === 0) {\n          this.log(\n            `handleData: incomplete message, buffering ${this.messageBuffer.length} bytes`,\n          )\n          break\n        }\n\n        // Extract and process complete message\n        const message = this.messageBuffer.slice(0, messageLength)\n        this.messageBuffer = this.messageBuffer.slice(messageLength)\n\n        this.log(`handleData: processing message of ${message.length} bytes`)\n\n        // Check if socket is still active before processing\n        if (!this.active || !this.socket) {\n          this.log(`handleData: socket no longer active, stopping processing`)\n          break\n        }\n\n        let socketWriteError: any = undefined\n        // Queue the query for execution\n        // This allows multiple connections to queue queries simultaneously\n        await this.queryQueue.enqueue(\n          this.id,\n          new Uint8Array(message),\n          (data) => {\n            this.log(`handleData: received ${data.length} bytes from PGlite`)\n\n            // Print the outgoing data to the console\n            this.inspectData('outgoing', data)\n\n            // Send response if available\n            if (\n              data.length > 0 &&\n              this.socket &&\n              this.socket.writable &&\n              this.active\n            ) {\n              // await new Promise<number>((resolve, reject) => {\n              this.log(`handleData: writing response to socket`)\n              if (this.socket?.writable) {\n                this.socket.write(Buffer.from(data), (err?: any) => {\n                  if (err) {\n                    this.log(`handleData: error writing to socket:`, err)\n                    socketWriteError = err\n                  } else {\n                    this.log(`handleData: socket sent: ${data.length} bytes`)\n                  }\n                })\n              } else {\n                this.log(`handleData: socket no longer writable`)\n              }\n            }\n            totalProcessed += data.length\n          },\n        )\n        if (socketWriteError) throw socketWriteError\n      }\n\n      // Emit data event with byte sizes\n      this.dispatchEvent(\n        new CustomEvent('data', {\n          detail: { incoming: data.length, outgoing: totalProcessed },\n        }),\n      )\n\n      return totalProcessed\n    } catch (err) {\n      this.log(`handleData: error processing data:`, err)\n      throw err\n    }\n  }\n\n  private handleError(err: Error): void {\n    if (!this.active) {\n      this.log(`handleError: handler not active, ignoring error`)\n      return\n    }\n\n    // ECONNRESET is expected behavior when clients disconnect\n    if (err.message?.includes('ECONNRESET')) {\n      this.log(\n        `handleError: client disconnected (ECONNRESET) - normal behavior`,\n      )\n    } else if (err.message?.includes('Idle timeout')) {\n      this.log(`handleError: connection idle timeout`)\n    } else {\n      this.log(`handleError:`, err)\n    }\n\n    this.active = false\n\n    // Emit error event\n    this.dispatchEvent(new CustomEvent('error', { detail: err }))\n\n    // Clean up\n    this.detach(true)\n  }\n\n  private handleClose(): void {\n    this.log(`handleClose: socket closed`)\n    this.active = false\n    this.dispatchEvent(new CustomEvent('close'))\n    this.detach(false)\n  }\n\n  private inspectData(\n    direction: 'incoming' | 'outgoing',\n    data: Buffer | Uint8Array,\n  ): void {\n    if (!this.inspect) return\n    console.log('-'.repeat(75))\n    if (direction === 'incoming') {\n      console.log('-> incoming', data.length, 'bytes')\n    } else {\n      console.log('<- outgoing', data.length, 'bytes')\n    }\n\n    for (let offset = 0; offset < data.length; offset += 16) {\n      const chunkSize = Math.min(16, data.length - offset)\n\n      let hexPart = ''\n      for (let i = 0; i < 16; i++) {\n        if (i < chunkSize) {\n          const byte = data[offset + i]\n          hexPart += byte.toString(16).padStart(2, '0') + ' '\n        } else {\n          hexPart += '   '\n        }\n      }\n\n      let asciiPart = ''\n      for (let i = 0; i < chunkSize; i++) {\n        const byte = data[offset + i]\n        asciiPart += byte >= 32 && byte <= 126 ? String.fromCharCode(byte) : '.'\n      }\n\n      console.log(\n        `${offset.toString(16).padStart(8, '0')}  ${hexPart} ${asciiPart}`,\n      )\n    }\n  }\n}\n\n/**\n * Options for creating a PGLiteSocketServer\n */\nexport interface PGLiteSocketServerOptions {\n  /** The PGlite database instance */\n  db: PGlite\n  /** The port to listen on (default: 5432) */\n  port?: number\n  /** The host to bind to (default: 127.0.0.1) */\n  host?: string\n  /** Unix socket path to bind to (default: undefined) */\n  path?: string\n  /** Print the incoming and outgoing data to the console in hex and ascii */\n  inspect?: boolean\n  /** Enable debug logging of method calls */\n  debug?: boolean\n  /** Idle timeout in ms (0 to disable, default: 0) */\n  idleTimeout?: number\n  /** Maximum concurrent connections (default: 100) */\n  maxConnections?: number\n}\n\n/**\n * PGLite Socket Server with support for multiple concurrent connections\n * Connections remain open and queries are queued at the query level\n */\nexport class PGLiteSocketServer extends EventTarget {\n  readonly db: PGlite\n  private server: Server | null = null\n  private port?: number\n  private host?: string\n  private path?: string\n  private active = false\n  private inspect: boolean\n  private debug: boolean\n  private idleTimeout: number\n  private maxConnections: number\n  private handlers: Set<PGLiteSocketHandler> = new Set()\n  private queryQueue: QueryQueueManager\n\n  constructor(options: PGLiteSocketServerOptions) {\n    super()\n    this.db = options.db\n    if (options.path) {\n      this.path = options.path\n    } else {\n      if (typeof options.port === 'number') {\n        // Keep port undefined on port 0, will be set by the OS when we start the server.\n        this.port = options.port ?? options.port\n      } else {\n        this.port = 5432\n      }\n      this.host = options.host || '127.0.0.1'\n    }\n    this.inspect = options.inspect ?? false\n    this.debug = options.debug ?? false\n    this.idleTimeout = options.idleTimeout ?? 0\n    this.maxConnections = options.maxConnections ?? 1\n\n    // Create the shared query queue\n    this.queryQueue = new QueryQueueManager(this.db, this.debug)\n\n    this.log(`constructor: created server on ${this.getServerConn()}`)\n    this.log(`constructor: max connections: ${this.maxConnections}`)\n    if (this.idleTimeout > 0) {\n      this.log(`constructor: idle timeout: ${this.idleTimeout}ms`)\n    }\n  }\n\n  private log(message: string, ...args: any[]): void {\n    if (this.debug) {\n      console.log(`[PGLiteSocketServer] ${message}`, ...args)\n    }\n  }\n\n  public async start(): Promise<void> {\n    this.log(`start: starting server on ${this.getServerConn()}`)\n\n    if (this.server) {\n      throw new Error('Socket server already started')\n    }\n\n    // Ensure PGlite is ready before accepting connections\n    await this.db.waitReady\n\n    this.active = true\n    this.server = createServer((socket) => {\n      setImmediate(() => this.handleConnection(socket))\n    })\n\n    this.server.maxConnections = this.maxConnections\n\n    return new Promise<void>((resolve, reject) => {\n      if (!this.server) return reject(new Error('Server not initialized'))\n\n      this.server.on('error', (err) => {\n        this.log(`start: server error:`, err)\n        this.dispatchEvent(new CustomEvent('error', { detail: err }))\n        if (!this.active) {\n          reject(err)\n        }\n      })\n\n      if (this.path) {\n        this.server.listen(this.path, () => {\n          this.log(`start: server listening on ${this.getServerConn()}`)\n          this.dispatchEvent(\n            new CustomEvent('listening', {\n              detail: { path: this.path },\n            }),\n          )\n          resolve()\n        })\n      } else {\n        const server = this.server\n        server.listen(this.port, this.host, () => {\n          const address = server.address()\n          // We are not using pipes, so return type should be AddressInfo\n          if (address === null || typeof address !== 'object') {\n            throw Error('Expected address info')\n          }\n          // Assign the new port number\n          this.port = address.port\n          this.log(`start: server listening on ${this.getServerConn()}`)\n          this.dispatchEvent(\n            new CustomEvent('listening', {\n              detail: { port: this.port, host: this.host },\n            }),\n          )\n          resolve()\n        })\n      }\n    })\n  }\n\n  public getServerConn(): string {\n    if (this.path) return this.path\n    return `${this.host}:${this.port}`\n  }\n\n  public async stop(): Promise<void> {\n    this.log(`stop: stopping server`)\n\n    this.active = false\n\n    // Detach all handlers\n    this.log(`stop: detaching ${this.handlers.size} handlers`)\n    for (const handler of this.handlers) {\n      handler.detach(true)\n    }\n    this.handlers.clear()\n\n    if (!this.server) {\n      this.log(`stop: server not running, nothing to do`)\n      return Promise.resolve()\n    }\n\n    return new Promise<void>((resolve) => {\n      if (!this.server) return resolve()\n\n      this.server.close(() => {\n        this.log(`stop: server closed`)\n        this.server = null\n        this.dispatchEvent(new CustomEvent('close'))\n        resolve()\n      })\n    })\n  }\n\n  private async handleConnection(socket: Socket): Promise<void> {\n    const clientInfo = {\n      clientAddress: socket.remoteAddress || 'unknown',\n      clientPort: socket.remotePort || 0,\n    }\n\n    this.log(\n      `handleConnection: new connection from ${clientInfo.clientAddress}:${clientInfo.clientPort}`,\n    )\n    this.log(\n      `handleConnection: active connections: ${this.handlers.size}, queued queries: ${this.queryQueue.getQueueLength()}`,\n    )\n\n    if (!this.active) {\n      this.log(`handleConnection: server not active, closing connection`)\n      try {\n        socket.end()\n      } catch (err) {\n        this.log(`handleConnection: error closing socket:`, err)\n      }\n      return\n    }\n\n    // Check connection limit\n    if (this.handlers.size >= this.maxConnections) {\n      this.log(`handleConnection: max connections reached, rejecting`)\n      socket.write(Buffer.from('Too many connections\\n'))\n      socket.end()\n      return\n    }\n\n    // Create a new handler for this connection\n    const handler = new PGLiteSocketHandler({\n      queryQueue: this.queryQueue,\n      closeOnDetach: true,\n      inspect: this.inspect,\n      debug: this.debug,\n      idleTimeout: this.idleTimeout,\n    })\n\n    // Track this handler\n    this.handlers.add(handler)\n\n    // Handle errors\n    handler.addEventListener('error', (event) => {\n      const error = (event as CustomEvent<Error>).detail\n\n      if (error?.message?.includes('ECONNRESET')) {\n        this.log(\n          `handler #${handler.handlerId}: client disconnected (ECONNRESET)`,\n        )\n      } else if (error?.message?.includes('Idle timeout')) {\n        this.log(`handler #${handler.handlerId}: idle timeout`)\n      } else {\n        this.log(`handler #${handler.handlerId}: error:`, error)\n      }\n    })\n\n    // Handle close event\n    handler.addEventListener('close', () => {\n      this.log(`handler #${handler.handlerId}: closed`)\n      this.handlers.delete(handler)\n      this.log(`handleConnection: active connections: ${this.handlers.size}`)\n    })\n\n    try {\n      await handler.attach(socket)\n      this.dispatchEvent(new CustomEvent('connection', { detail: clientInfo }))\n    } catch (err) {\n      this.log(`handleConnection: error attaching socket:`, err)\n      this.handlers.delete(handler)\n      this.dispatchEvent(new CustomEvent('error', { detail: err }))\n      try {\n        socket.end()\n      } catch (closeErr) {\n        this.log(`handleConnection: error closing socket:`, closeErr)\n      }\n    }\n  }\n\n  public getStats() {\n    return {\n      activeConnections: this.handlers.size,\n      queuedQueries: this.queryQueue.getQueueLength(),\n      maxConnections: this.maxConnections,\n    }\n  }\n}\n"
  },
  {
    "path": "packages/pglite-socket/src/scripts/server.ts",
    "content": "#!/usr/bin/env node\n\nimport { PGlite, DebugLevel } from '@electric-sql/pglite'\nimport type { Extension, Extensions } from '@electric-sql/pglite'\nimport { PGLiteSocketServer } from '../index'\nimport { parseArgs } from 'node:util'\nimport { spawn, ChildProcess } from 'node:child_process'\n\n// Define command line argument options\nconst args = parseArgs({\n  options: {\n    db: {\n      type: 'string',\n      short: 'd',\n      default: 'memory://',\n      help: 'Database path (relative or absolute). Use memory:// for in-memory database.',\n    },\n    port: {\n      type: 'string',\n      short: 'p',\n      default: '5432',\n      help: 'Port to listen on',\n    },\n    host: {\n      type: 'string',\n      short: 'h',\n      default: '127.0.0.1',\n      help: 'Host to bind to',\n    },\n    path: {\n      type: 'string',\n      short: 'u',\n      default: undefined,\n      help: 'unix socket to bind to. Takes precedence over host:port',\n    },\n    debug: {\n      type: 'string',\n      short: 'v',\n      default: '0',\n      help: 'Debug level (0-5)',\n    },\n    extensions: {\n      type: 'string',\n      short: 'e',\n      default: undefined,\n      help: 'Comma-separated list of extensions to load (e.g., vector,pgcrypto,postgis etc.)',\n    },\n    run: {\n      type: 'string',\n      short: 'r',\n      default: undefined,\n      help: 'Command to run after server starts',\n    },\n    'include-database-url': {\n      type: 'boolean',\n      default: false,\n      help: 'Include DATABASE_URL in the environment of the subprocess',\n    },\n    'shutdown-timeout': {\n      type: 'string',\n      default: '5000',\n      help: 'Timeout in milliseconds for graceful subprocess shutdown (default: 5000)',\n    },\n    'max-connections': {\n      type: 'string',\n      short: 'm',\n      default: '1',\n      help: 'Maximum concurrent connections (default: 1)',\n    },\n    help: {\n      type: 'boolean',\n      short: '?',\n      default: false,\n      help: 'Show help',\n    },\n  },\n})\n\nconst help = `PGlite Socket Server\nUsage: pglite-server [options]\n\nOptions:\n  -d, --db=PATH       Database path (default: memory://)\n  -p, --port=PORT     Port to listen on (default: 5432)\n  -h, --host=HOST     Host to bind to (default: 127.0.0.1)\n  -u, --path=UNIX     Unix socket to bind to (default: undefined). Takes precedence over host:port\n  -v, --debug=LEVEL   Debug level 0-5 (default: 0)\n  -e, --extensions=LIST  Comma-separated list of extensions to load\n                         Formats: vector, pgcrypto (built-in/contrib)\n                                  @org/package/path:exportedName (npm package)\n  -r, --run=COMMAND   Command to run after server starts\n  --include-database-url  Include DATABASE_URL in subprocess environment\n  --shutdown-timeout=MS   Timeout for graceful subprocess shutdown in ms (default: 5000)\n  -m, --max-connections=N Maximum concurrent connections (default is no concurrency: 1)\n`\n\ninterface ServerConfig {\n  dbPath: string\n  port: number\n  host: string\n  path?: string\n  debugLevel: DebugLevel\n  extensionNames?: string[]\n  runCommand?: string\n  includeDatabaseUrl: boolean\n  shutdownTimeout: number\n  maxConnections: number\n}\n\nclass PGLiteServerRunner {\n  private config: ServerConfig\n  private db: PGlite | null = null\n  private server: PGLiteSocketServer | null = null\n  private subprocessManager: SubprocessManager | null = null\n\n  constructor(config: ServerConfig) {\n    this.config = config\n  }\n\n  static parseConfig(): ServerConfig {\n    const extensionsArg = args.values.extensions as string | undefined\n    return {\n      dbPath: args.values.db as string,\n      port: parseInt(args.values.port as string, 10),\n      host: args.values.host as string,\n      path: args.values.path as string,\n      debugLevel: parseInt(args.values.debug as string, 10) as DebugLevel,\n      extensionNames: extensionsArg\n        ? extensionsArg.split(',').map((e) => e.trim())\n        : undefined,\n      runCommand: args.values.run as string,\n      includeDatabaseUrl: args.values['include-database-url'] as boolean,\n      shutdownTimeout: parseInt(args.values['shutdown-timeout'] as string, 10),\n      maxConnections: parseInt(args.values['max-connections'] as string, 10),\n    }\n  }\n\n  private createDatabaseUrl(): string {\n    const { host, port, path } = this.config\n\n    if (path) {\n      // Unix socket connection\n      const socketDir = path.endsWith('/.s.PGSQL.5432')\n        ? path.slice(0, -13)\n        : path\n      return `postgresql://postgres:postgres@/postgres?host=${encodeURIComponent(socketDir)}`\n    } else {\n      // TCP connection\n      return `postgresql://postgres:postgres@${host}:${port}/postgres`\n    }\n  }\n\n  private async importExtensions(): Promise<Extensions | undefined> {\n    if (!this.config.extensionNames?.length) {\n      return undefined\n    }\n\n    const extensions: Extensions = {}\n\n    // Built-in extensions that are not in contrib\n    const builtInExtensions = [\n      'vector',\n      'live',\n      'pg_hashids',\n      'pg_ivm',\n      'pg_uuidv7',\n      'pgtap',\n      'age',\n      'pg_textsearch',\n    ]\n\n    for (const name of this.config.extensionNames) {\n      let ext: Extension | null = null\n\n      try {\n        // Check if this is a custom package path (contains ':')\n        // Format: @org/package/path:exportedName or package/path:exportedName\n        if (name.includes(':')) {\n          const [packagePath, exportName] = name.split(':')\n          if (!packagePath || !exportName) {\n            throw new Error(\n              `Invalid extension format '${name}'. Expected: package/path:exportedName`,\n            )\n          }\n          const mod = await import(packagePath)\n          ext = mod[exportName] as Extension\n          if (ext) {\n            extensions[exportName] = ext\n            console.log(\n              `Imported extension '${exportName}' from '${packagePath}'`,\n            )\n          }\n        } else if (builtInExtensions.includes(name)) {\n          // Built-in extension (e.g., @electric-sql/pglite/vector)\n          const mod = await import(`@electric-sql/pglite/${name}`)\n          ext = mod[name] as Extension\n          if (ext) {\n            extensions[name] = ext\n            console.log(`Imported extension: ${name}`)\n          }\n        } else {\n          // Try contrib first (e.g., @electric-sql/pglite/contrib/pgcrypto)\n          try {\n            const mod = await import(`@electric-sql/pglite/contrib/${name}`)\n            ext = mod[name] as Extension\n          } catch {\n            // Fall back to external package (e.g., @electric-sql/pglite-<extension>)\n            const mod = await import(`@electric-sql/pglite-${name}`)\n            ext = mod[name] as Extension\n          }\n          if (ext) {\n            extensions[name] = ext\n            console.log(`Imported extension: ${name}`)\n          }\n        }\n      } catch (error) {\n        console.error(`Failed to import extension '${name}':`, error)\n        throw new Error(`Failed to import extension '${name}'`)\n      }\n    }\n\n    return Object.keys(extensions).length > 0 ? extensions : undefined\n  }\n\n  private async initializeDatabase(): Promise<void> {\n    console.log(`Initializing PGLite with database: ${this.config.dbPath}`)\n    console.log(`Debug level: ${this.config.debugLevel}`)\n\n    const extensions = await this.importExtensions()\n\n    this.db = new PGlite(this.config.dbPath, {\n      debug: this.config.debugLevel,\n      extensions,\n    })\n    await this.db.waitReady\n    console.log('PGlite database initialized')\n  }\n\n  private setupServerEventHandlers(): void {\n    if (!this.server || !this.subprocessManager) {\n      throw new Error('Server or subprocess manager not initialized')\n    }\n\n    this.server.addEventListener('listening', (event) => {\n      const detail = (\n        event as CustomEvent<{ port: number; host: string } | { host: string }>\n      ).detail\n      console.log(`PGLiteSocketServer listening on ${JSON.stringify(detail)}`)\n\n      // Run the command after server starts listening\n      if (this.config.runCommand && this.subprocessManager) {\n        const databaseUrl = this.createDatabaseUrl()\n        this.subprocessManager.spawn(\n          this.config.runCommand,\n          databaseUrl,\n          this.config.includeDatabaseUrl,\n        )\n      }\n    })\n\n    this.server.addEventListener('connection', (event) => {\n      const { clientAddress, clientPort } = (\n        event as CustomEvent<{ clientAddress: string; clientPort: number }>\n      ).detail\n      console.log(`Client connected from ${clientAddress}:${clientPort}`)\n    })\n\n    this.server.addEventListener('error', (event) => {\n      const error = (event as CustomEvent<Error>).detail\n      console.error('Socket server error:', error)\n    })\n  }\n\n  private setupSignalHandlers(): void {\n    process.on('SIGINT', () => this.shutdown())\n    process.on('SIGTERM', () => this.shutdown())\n  }\n\n  async start(): Promise<void> {\n    try {\n      // Initialize database\n      await this.initializeDatabase()\n\n      if (!this.db) {\n        throw new Error('Database initialization failed')\n      }\n\n      // Create and setup the socket server\n      this.server = new PGLiteSocketServer({\n        db: this.db,\n        port: this.config.port,\n        host: this.config.host,\n        path: this.config.path,\n        inspect: this.config.debugLevel > 0,\n        maxConnections: this.config.maxConnections,\n      })\n\n      // Create subprocess manager\n      this.subprocessManager = new SubprocessManager((exitCode) => {\n        this.shutdown(exitCode)\n      })\n\n      // Setup event handlers\n      this.setupServerEventHandlers()\n      this.setupSignalHandlers()\n\n      // Start the server\n      await this.server.start()\n    } catch (error) {\n      console.error('Failed to start PGLiteSocketServer:', error)\n      throw error\n    }\n  }\n\n  async shutdown(exitCode: number = 0): Promise<void> {\n    console.log('\\nShutting down PGLiteSocketServer...')\n\n    // Terminate subprocess if running\n    if (this.subprocessManager) {\n      this.subprocessManager.terminate(this.config.shutdownTimeout)\n    }\n\n    // Stop server\n    if (this.server) {\n      await this.server.stop()\n    }\n\n    // Close database\n    if (this.db) {\n      await this.db.close()\n    }\n\n    console.log('Server stopped')\n    process.exit(exitCode)\n  }\n}\n\nclass SubprocessManager {\n  private childProcess: ChildProcess | null = null\n  private onExit: (code: number) => void\n\n  constructor(onExit: (code: number) => void) {\n    this.onExit = onExit\n  }\n\n  get process(): ChildProcess | null {\n    return this.childProcess\n  }\n\n  spawn(\n    command: string,\n    databaseUrl: string,\n    includeDatabaseUrl: boolean,\n  ): void {\n    console.log(`Running command: ${command}`)\n\n    // Prepare environment variables\n    const env = { ...process.env }\n    if (includeDatabaseUrl) {\n      env.DATABASE_URL = databaseUrl\n      console.log(`Setting DATABASE_URL=${databaseUrl}`)\n    }\n\n    // Parse and spawn the command\n    const commandParts = command.trim().split(/\\s+/)\n    this.childProcess = spawn(commandParts[0], commandParts.slice(1), {\n      env,\n      stdio: 'inherit',\n    })\n\n    this.childProcess.on('error', (error) => {\n      console.error('Error running command:', error)\n      // If subprocess fails to start, shutdown the server\n      console.log('Subprocess failed to start, shutting down...')\n      this.onExit(1)\n    })\n\n    this.childProcess.on('close', (code) => {\n      console.log(`Command exited with code ${code}`)\n      this.childProcess = null\n\n      // If child process exits with non-zero code, notify parent\n      if (code !== null && code !== 0) {\n        console.log(\n          `Child process failed with exit code ${code}, shutting down...`,\n        )\n        this.onExit(code)\n      }\n    })\n  }\n\n  terminate(timeout: number): void {\n    if (this.childProcess) {\n      console.log('Terminating child process...')\n      this.childProcess.kill('SIGTERM')\n\n      // Give it a moment to exit gracefully, then force kill if needed\n      setTimeout(() => {\n        if (this.childProcess && !this.childProcess.killed) {\n          console.log('Force killing child process...')\n          this.childProcess.kill('SIGKILL')\n        }\n      }, timeout)\n    }\n  }\n}\n\n// Main execution\nasync function main() {\n  // Show help and exit if requested\n  if (args.values.help) {\n    console.log(help)\n    process.exit(0)\n  }\n\n  try {\n    const config = PGLiteServerRunner.parseConfig()\n    const serverRunner = new PGLiteServerRunner(config)\n    await serverRunner.start()\n  } catch (error) {\n    console.error('Unhandled error:', error)\n    process.exit(1)\n  }\n}\n\n// Run the main function\nmain()\n"
  },
  {
    "path": "packages/pglite-socket/tests/index.test.ts",
    "content": "import {\n  describe,\n  it,\n  expect,\n  beforeEach,\n  afterEach,\n  vi,\n  beforeAll,\n  afterAll,\n} from 'vitest'\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketHandler, PGLiteSocketServer } from '../src'\nimport { Socket, createConnection } from 'net'\nimport { existsSync } from 'fs'\nimport { unlink } from 'fs/promises'\n\n// Mock timers for testing timeouts\nbeforeAll(() => {\n  vi.useFakeTimers()\n})\n\nafterAll(() => {\n  vi.useRealTimers()\n})\n\nasync function testSocket(\n  fn: (socketOptions: {\n    host?: string\n    port?: number\n    path?: string\n  }) => Promise<void>,\n) {\n  describe('TCP socket server', async () => {\n    await fn({ host: '127.0.0.1', port: 5433 })\n  })\n  describe('unix socket server', async () => {\n    await fn({ path: '/tmp/.s.PGSQL.5432' })\n  })\n}\n\n// Create a mock Socket for testing\nconst createMockSocket = () => {\n  const eventHandlers: Record<string, Array<(data: any) => void>> = {}\n\n  const mockSocket = {\n    // Socket methods we need for testing\n    removeAllListeners: vi.fn(),\n    end: vi.fn(),\n    destroy: vi.fn(),\n    write: vi.fn(),\n    writable: true,\n    remoteAddress: '127.0.0.1',\n    remotePort: 12345,\n    setNoDelay: vi.fn(),\n\n    // Mock on method with tracking of handlers\n    on: vi\n      .fn()\n      .mockImplementation((event: string, callback: (data: any) => void) => {\n        if (!eventHandlers[event]) {\n          eventHandlers[event] = []\n        }\n        eventHandlers[event].push(callback)\n        return mockSocket\n      }),\n\n    // Store event handlers for testing\n    eventHandlers,\n\n    // Helper to emit events\n    emit(event: string, data: any) {\n      if (eventHandlers[event]) {\n        eventHandlers[event].forEach((handler) => handler(data))\n      }\n    },\n  }\n\n  return mockSocket as unknown as Socket\n}\n\n// Create a mock QueryQueueManager for testing\nconst createMockQueryQueue = () => {\n  return {\n    enqueue: vi.fn().mockResolvedValue(new Uint8Array(0)),\n    clearQueueForHandler: vi.fn(),\n    clearTransactionIfNeeded: vi.fn(),\n    getQueueLength: vi.fn().mockReturnValue(0),\n  }\n}\n\ndescribe('PGLiteSocketHandler', () => {\n  let handler: PGLiteSocketHandler\n  let mockSocket: ReturnType<typeof createMockSocket> & {\n    eventHandlers: Record<string, Array<(data: any) => void>>\n  }\n  let mockQueryQueue: ReturnType<typeof createMockQueryQueue>\n\n  beforeEach(async () => {\n    // Create a mock query queue for testing\n    mockQueryQueue = createMockQueryQueue()\n    handler = new PGLiteSocketHandler({ queryQueue: mockQueryQueue as any })\n    mockSocket = createMockSocket() as any\n  })\n\n  afterEach(async () => {\n    // Ensure handler is detached\n    if (handler?.isAttached) {\n      await handler.detach(true)\n    }\n  })\n\n  it('should attach to a socket', async () => {\n    // Attach mock socket to handler\n    await handler.attach(mockSocket)\n\n    // Check that the socket is attached\n    expect(handler.isAttached).toBe(true)\n    expect(mockSocket.on).toHaveBeenCalledWith('data', expect.any(Function))\n    expect(mockSocket.on).toHaveBeenCalledWith('error', expect.any(Function))\n    expect(mockSocket.on).toHaveBeenCalledWith('close', expect.any(Function))\n  })\n\n  it('should detach from a socket', async () => {\n    // First attach\n    await handler.attach(mockSocket)\n    expect(handler.isAttached).toBe(true)\n\n    // Then detach\n    await handler.detach(false)\n    expect(handler.isAttached).toBe(false)\n    expect(mockSocket.removeAllListeners).toHaveBeenCalled()\n  })\n\n  it('should close socket when detaching with close option', async () => {\n    // Attach mock socket to handler\n    await handler.attach(mockSocket)\n\n    // Detach with close option\n    await handler.detach(true)\n    expect(handler.isAttached).toBe(false)\n    expect(mockSocket.end).toHaveBeenCalled()\n  })\n\n  it('should reject attaching multiple sockets', async () => {\n    // Attach first socket\n    await handler.attach(mockSocket)\n\n    // Trying to attach another socket should throw an error\n    const anotherMockSocket = createMockSocket()\n    await expect(handler.attach(anotherMockSocket)).rejects.toThrow(\n      'Socket already attached',\n    )\n  })\n\n  it('should emit error event when socket has error', async () => {\n    // Set up error listener\n    const errorHandler = vi.fn()\n    handler.addEventListener('error', errorHandler)\n\n    // Attach socket\n    await handler.attach(mockSocket)\n\n    // Mock the event handler logic directly instead of triggering actual error handlers\n    const customEvent = new CustomEvent('error', {\n      detail: { code: 'MOCK_ERROR', message: 'Test socket error' },\n    })\n    handler.dispatchEvent(customEvent)\n\n    // Verify error handler was called\n    expect(errorHandler).toHaveBeenCalled()\n  })\n\n  it('should emit close event when socket closes', async () => {\n    // Set up close listener\n    const closeHandler = vi.fn()\n    handler.addEventListener('close', closeHandler)\n\n    // Attach socket\n    await handler.attach(mockSocket)\n\n    // Mock the event handler logic directly instead of triggering actual socket handlers\n    const customEvent = new CustomEvent('close')\n    handler.dispatchEvent(customEvent)\n\n    // Verify close handler was called\n    expect(closeHandler).toHaveBeenCalled()\n  })\n})\n\ntestSocket(async (connOptions) => {\n  describe('PGLiteSocketServer', () => {\n    let db: PGlite\n    let server: PGLiteSocketServer\n\n    beforeEach(async () => {\n      // Create a PGlite instance for testing\n      db = await PGlite.create()\n      if (connOptions.path) {\n        if (existsSync(connOptions.path)) {\n          try {\n            await unlink(connOptions.path)\n            console.log(`Removed old socket at ${connOptions.path}`)\n          } catch (err) {\n            console.log('')\n          }\n        }\n      }\n    })\n\n    afterEach(async () => {\n      // Stop server if running\n      try {\n        await server?.stop()\n      } catch (e) {\n        // Ignore errors during cleanup\n      }\n\n      // Close database\n      await db.close()\n    })\n\n    it('should start and stop server', async () => {\n      // Create server\n      server = new PGLiteSocketServer({\n        db,\n        host: connOptions.host,\n        port: connOptions.port,\n        path: connOptions.path,\n      })\n\n      // Start server\n      await server.start()\n\n      // Try to connect to confirm server is running\n      let client\n      if (connOptions.path) {\n        // unix socket\n        client = createConnection({ path: connOptions.path })\n      } else {\n        if (connOptions.port) {\n          // TCP socket\n          client = createConnection({\n            port: connOptions.port,\n            host: connOptions.host,\n          })\n        } else {\n          throw new Error(\n            'need to specify connOptions.path or connOptions.port',\n          )\n        }\n      }\n      client.on('error', () => {\n        // Ignore connection errors during test\n      })\n\n      await new Promise<void>((resolve) => {\n        client.on('connect', () => {\n          client.end()\n          resolve()\n        })\n\n        // Set timeout to resolve in case connection fails\n        setTimeout(resolve, 100)\n      })\n\n      // Stop server\n      await server.stop()\n\n      // Try to connect again - should fail\n      await expect(\n        new Promise<void>((resolve, reject) => {\n          let failClient\n          if (connOptions.path) {\n            // unix socket\n            failClient = createConnection({ path: connOptions.path })\n          } else {\n            if (connOptions.port) {\n              // TCP socket\n              failClient = createConnection({\n                port: connOptions.port,\n                host: connOptions.host,\n              })\n            } else {\n              throw new Error(\n                'need to specify connOptions.path or connOptions.port',\n              )\n            }\n          }\n\n          failClient.on('error', () => {\n            // Expected error - connection should fail\n            resolve()\n          })\n\n          failClient.on('connect', () => {\n            failClient.end()\n            reject(new Error('Connection should have failed'))\n          })\n\n          // Set timeout to resolve in case no events fire\n          setTimeout(resolve, 100)\n        }),\n      ).resolves.not.toThrow()\n    })\n\n    describe('Connection multiplexing', () => {\n      beforeEach(() => {\n        // Create a server for testing\n        server = new PGLiteSocketServer({\n          db,\n          host: connOptions.host,\n          port: connOptions.port,\n          path: connOptions.path,\n          maxConnections: 100,\n        })\n      })\n\n      it('should create a handler for a new connection', async () => {\n        await server.start()\n\n        // Create mock socket\n        const socket1 = createMockSocket()\n\n        // Setup event listener\n        const connectionHandler = vi.fn()\n        server.addEventListener('connection', connectionHandler)\n\n        // Handle connection\n        await (server as any).handleConnection(socket1)\n\n        // Verify handler was created and tracked\n        expect((server as any).handlers.size).toBe(1)\n        expect(connectionHandler).toHaveBeenCalled()\n      })\n\n      it('should handle multiple simultaneous connections', async () => {\n        await server.start()\n\n        // Setup event listeners\n        const connectionHandler = vi.fn()\n        server.addEventListener('connection', connectionHandler)\n\n        // Create mock sockets\n        const socket1 = createMockSocket()\n        const socket2 = createMockSocket()\n        const socket3 = createMockSocket()\n\n        // Handle connections - all should be accepted simultaneously\n        await (server as any).handleConnection(socket1)\n        await (server as any).handleConnection(socket2)\n        await (server as any).handleConnection(socket3)\n\n        // All three sockets should have handlers (multiplexed)\n        expect((server as any).handlers.size).toBe(3)\n        expect(connectionHandler).toHaveBeenCalledTimes(3)\n\n        // None should be closed - they're all active\n        expect(socket1.end).not.toHaveBeenCalled()\n        expect(socket2.end).not.toHaveBeenCalled()\n        expect(socket3.end).not.toHaveBeenCalled()\n      })\n\n      it('should remove handler when connection closes', async () => {\n        await server.start()\n\n        // Create mock sockets\n        const socket1 = createMockSocket()\n        const socket2 = createMockSocket()\n\n        // Handle connections\n        await (server as any).handleConnection(socket1)\n        await (server as any).handleConnection(socket2)\n\n        // Both should be tracked\n        expect((server as any).handlers.size).toBe(2)\n\n        // Get the first handler and simulate close\n        const handlers = Array.from((server as any).handlers)\n        const handler1 = handlers[0] as PGLiteSocketHandler\n        handler1.dispatchEvent(new CustomEvent('close'))\n\n        // First handler should be removed, second still active\n        expect((server as any).handlers.size).toBe(1)\n      })\n\n      it('should reject connections when max connections reached', async () => {\n        // Create server with low max connections\n        server = new PGLiteSocketServer({\n          db,\n          host: connOptions.host,\n          port: connOptions.port,\n          path: connOptions.path,\n          maxConnections: 2,\n        })\n\n        await server.start()\n\n        // Create mock sockets\n        const socket1 = createMockSocket()\n        const socket2 = createMockSocket()\n        const socket3 = createMockSocket()\n\n        // Handle first two connections - should succeed\n        await (server as any).handleConnection(socket1)\n        await (server as any).handleConnection(socket2)\n\n        expect((server as any).handlers.size).toBe(2)\n\n        // Third connection should be rejected\n        await (server as any).handleConnection(socket3)\n\n        // Third socket should be closed\n        expect(socket3.end).toHaveBeenCalled()\n        expect((server as any).handlers.size).toBe(2)\n      })\n\n      it('should provide stats about active connections', async () => {\n        await server.start()\n\n        // Create mock sockets\n        const socket1 = createMockSocket()\n        const socket2 = createMockSocket()\n\n        // Check initial stats (maxConnections is set to 100 in beforeEach)\n        let stats = server.getStats()\n        expect(stats.activeConnections).toBe(0)\n        expect(stats.maxConnections).toBe(100)\n\n        // Handle connections\n        await (server as any).handleConnection(socket1)\n        await (server as any).handleConnection(socket2)\n\n        // Check updated stats\n        stats = server.getStats()\n        expect(stats.activeConnections).toBe(2)\n      })\n\n      it('should clean up all handlers when stopping the server', async () => {\n        await server.start()\n\n        // Create mock sockets\n        const socket1 = createMockSocket()\n        const socket2 = createMockSocket()\n        const socket3 = createMockSocket()\n\n        // Handle connections\n        await (server as any).handleConnection(socket1)\n        await (server as any).handleConnection(socket2)\n        await (server as any).handleConnection(socket3)\n\n        expect((server as any).handlers.size).toBe(3)\n\n        // Stop the server\n        await server.stop()\n\n        // All connections should be closed\n        expect(socket1.end).toHaveBeenCalled()\n        expect(socket2.end).toHaveBeenCalled()\n        expect(socket3.end).toHaveBeenCalled()\n\n        // Handlers should be cleared\n        expect((server as any).handlers.size).toBe(0)\n      })\n\n      it('should start server with OS-assigned port when port is 0', async () => {\n        server = new PGLiteSocketServer({\n          db,\n          host: connOptions.host,\n          port: 0, // Let OS assign port\n        })\n\n        await server.start()\n        const assignedPort = (server as any).port\n        expect(assignedPort).toBeGreaterThan(1024)\n\n        // Try to connect to confirm server is running\n        const client = createConnection({\n          port: assignedPort,\n          host: connOptions.host,\n        })\n\n        await new Promise<void>((resolve, reject) => {\n          client.on('error', () => {\n            reject(new Error('Connection should have failed'))\n          })\n          client.on('connect', () => {\n            client.end()\n            resolve()\n          })\n          setTimeout(resolve, 100)\n        })\n\n        await server.stop()\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite-socket/tests/query-with-node-pg.test.ts",
    "content": "import {\n  describe,\n  it,\n  expect,\n  beforeAll,\n  afterAll,\n  beforeEach,\n  afterEach,\n} from 'vitest'\nimport { Client } from 'pg'\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketServer } from '../src'\nimport { spawn, ChildProcess } from 'node:child_process'\nimport { fileURLToPath } from 'node:url'\nimport { dirname, join } from 'node:path'\nimport fs from 'fs'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = dirname(__filename)\n\n/**\n * Debug configuration for testing\n *\n * To test against a real PostgreSQL server:\n * - Set DEBUG_TESTS=true as an environment variable\n * - Optionally set DEBUG_TESTS_REAL_SERVER with a connection URL (defaults to localhost)\n *\n * Example:\n * DEBUG_TESTS=true DEBUG_TESTS_REAL_SERVER=postgres://user:pass@host:port/db npm vitest ./tests/query-with-node-pg.test.ts\n */\nconst DEBUG_TESTS = process.env.DEBUG_TESTS === 'true'\nconst DEBUG_TESTS_REAL_SERVER =\n  process.env.DEBUG_TESTS_REAL_SERVER ||\n  'postgres://postgres:postgres@localhost:5432/postgres'\nconst TEST_PORT = 5434\n\ndescribe(`PGLite Socket Server`, () => {\n  describe('with node-pg client', () => {\n    let db: PGlite\n    let server: PGLiteSocketServer\n    let client: typeof Client.prototype\n    let connectionConfig: any\n\n    beforeAll(async () => {\n      if (DEBUG_TESTS) {\n        console.log('TESTING WITH REAL POSTGRESQL SERVER')\n        console.log(`Connection URL: ${DEBUG_TESTS_REAL_SERVER}`)\n      } else {\n        console.log('TESTING WITH PGLITE SERVER')\n\n        // Create a PGlite instance\n        db = await PGlite.create()\n\n        // Wait for database to be ready\n        await db.waitReady\n\n        console.log('PGLite database ready')\n\n        // Create and start the server with explicit host\n        server = new PGLiteSocketServer({\n          db,\n          port: TEST_PORT,\n          host: '127.0.0.1',\n          maxConnections: 100,\n        })\n\n        // Add event listeners for debugging\n        server.addEventListener('error', (event) => {\n          console.error('Socket server error:', (event as CustomEvent).detail)\n        })\n\n        server.addEventListener('connection', (event) => {\n          console.log(\n            'Socket connection received:',\n            (event as CustomEvent).detail,\n          )\n        })\n\n        await server.start()\n        console.log(`PGLite Socket Server started on port ${TEST_PORT}`)\n\n        connectionConfig = {\n          host: '127.0.0.1',\n          port: TEST_PORT,\n          database: 'postgres',\n          user: 'postgres',\n          password: 'postgres',\n          // Connection timeout in milliseconds\n          connectionTimeoutMillis: 10000,\n          // Query timeout in milliseconds\n          statement_timeout: 5000,\n        }\n      }\n    })\n\n    afterAll(async () => {\n      if (!DEBUG_TESTS) {\n        // Stop server if running\n        if (server) {\n          await server.stop()\n          console.log('PGLite Socket Server stopped')\n        }\n\n        // Close database\n        if (db) {\n          await db.close()\n          console.log('PGLite database closed')\n        }\n      }\n    })\n\n    beforeEach(async () => {\n      // Create pg client instance before each test\n      if (DEBUG_TESTS) {\n        // Direct connection to real PostgreSQL server using URL\n        client = new Client({\n          connectionString: DEBUG_TESTS_REAL_SERVER,\n          connectionTimeoutMillis: 10000,\n          statement_timeout: 5000,\n        })\n      } else {\n        // Connection to PGLite Socket Server\n        client = new Client(connectionConfig)\n      }\n\n      // Connect the client\n      await client.connect()\n    })\n\n    afterEach(async () => {\n      // Clean up any tables created in tests\n      try {\n        await client.query('DROP TABLE IF EXISTS test_users')\n      } catch (e) {\n        console.error('Error cleaning up tables:', e)\n      }\n\n      // Disconnect the client after each test\n      if (client) {\n        await client.end()\n      }\n    })\n\n    it('should execute a basic SELECT query', async () => {\n      const result = await client.query('SELECT 1 as one')\n      expect(result.rows[0].one).toBe(1)\n    })\n\n    it('should create a table', async () => {\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT,\n          created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP\n        )\n      `)\n\n      // Verify table exists by querying the schema\n      const tableCheck = await client.query(`\n        SELECT table_name \n        FROM information_schema.tables \n        WHERE table_schema = 'public' AND table_name = 'test_users'\n      `)\n\n      expect(tableCheck.rows.length).toBe(1)\n      expect(tableCheck.rows[0].table_name).toBe('test_users')\n    })\n\n    it('should insert rows into a table', async () => {\n      // Create table\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT\n        )\n      `)\n\n      // Insert data\n      const insertResult = await client.query(`\n        INSERT INTO test_users (name, email)\n        VALUES \n          ('Alice', 'alice@example.com'),\n          ('Bob', 'bob@example.com')\n        RETURNING *\n      `)\n\n      expect(insertResult.rows.length).toBe(2)\n      expect(insertResult.rows[0].name).toBe('Alice')\n      expect(insertResult.rows[1].name).toBe('Bob')\n\n      // Verify data is there\n      const count = await client.query(\n        'SELECT COUNT(*)::int as count FROM test_users',\n      )\n      expect(count.rows[0].count).toBe(2)\n    })\n\n    it('should update rows in a table', async () => {\n      // Create and populate table\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT\n        )\n      `)\n\n      await client.query(`\n        INSERT INTO test_users (name, email)\n        VALUES ('Alice', 'alice@example.com')\n      `)\n\n      // Update\n      const updateResult = await client.query(`\n        UPDATE test_users\n        SET email = 'alice.new@example.com'\n        WHERE name = 'Alice'\n        RETURNING *\n      `)\n\n      expect(updateResult.rows.length).toBe(1)\n      expect(updateResult.rows[0].email).toBe('alice.new@example.com')\n    })\n\n    it('should delete rows from a table', async () => {\n      // Create and populate table\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT\n        )\n      `)\n\n      await client.query(`\n        INSERT INTO test_users (name, email)\n        VALUES \n          ('Alice', 'alice@example.com'),\n          ('Bob', 'bob@example.com')\n      `)\n\n      // Delete\n      const deleteResult = await client.query(`\n        DELETE FROM test_users\n        WHERE name = 'Alice'\n        RETURNING *\n      `)\n\n      expect(deleteResult.rows.length).toBe(1)\n      expect(deleteResult.rows[0].name).toBe('Alice')\n\n      // Verify only Bob remains\n      const remaining = await client.query('SELECT * FROM test_users')\n      expect(remaining.rows.length).toBe(1)\n      expect(remaining.rows[0].name).toBe('Bob')\n    })\n\n    it('should execute operations in a transaction', async () => {\n      // Create table\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          balance INTEGER DEFAULT 0\n        )\n      `)\n\n      // Insert initial data\n      await client.query(`\n        INSERT INTO test_users (name, balance)\n        VALUES ('Alice', 100), ('Bob', 50)\n      `)\n\n      // Start a transaction and perform operations\n      await client.query('BEGIN')\n\n      try {\n        // Deduct from Alice\n        await client.query(`\n          UPDATE test_users\n          SET balance = balance - 30\n          WHERE name = 'Alice'\n        `)\n\n        // Add to Bob\n        await client.query(`\n          UPDATE test_users\n          SET balance = balance + 30\n          WHERE name = 'Bob'\n        `)\n\n        // Commit the transaction\n        await client.query('COMMIT')\n      } catch (error) {\n        // Rollback on error\n        await client.query('ROLLBACK')\n        throw error\n      }\n\n      // Verify both operations succeeded\n      const users = await client.query(\n        'SELECT name, balance FROM test_users ORDER BY name',\n      )\n\n      expect(users.rows.length).toBe(2)\n      expect(users.rows[0].name).toBe('Alice')\n      expect(users.rows[0].balance).toBe(70)\n      expect(users.rows[1].name).toBe('Bob')\n      expect(users.rows[1].balance).toBe(80)\n    })\n\n    it('should rollback a transaction on ROLLBACK', async () => {\n      // Create table\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          balance INTEGER DEFAULT 0\n        )\n      `)\n\n      // Insert initial data\n      await client.query(`\n        INSERT INTO test_users (name, balance)\n        VALUES ('Alice', 100), ('Bob', 50)\n      `)\n\n      // Get initial balance\n      const initialResult = await client.query(`\n        SELECT balance FROM test_users WHERE name = 'Alice'\n      `)\n      const initialBalance = initialResult.rows[0].balance\n\n      // Start a transaction\n      await client.query('BEGIN')\n\n      try {\n        // Deduct from Alice\n        await client.query(`\n          UPDATE test_users\n          SET balance = balance - 30\n          WHERE name = 'Alice'\n        `)\n\n        // Verify balance is changed within transaction\n        const midResult = await client.query(`\n          SELECT balance FROM test_users WHERE name = 'Alice'\n        `)\n        expect(midResult.rows[0].balance).toBe(70)\n\n        // Explicitly roll back (cancel) the transaction\n        await client.query('ROLLBACK')\n      } catch (error) {\n        await client.query('ROLLBACK')\n        throw error\n      }\n\n      // Verify balance wasn't changed after rollback\n      const finalResult = await client.query(`\n        SELECT balance FROM test_users WHERE name = 'Alice'\n      `)\n      expect(finalResult.rows[0].balance).toBe(initialBalance)\n    })\n\n    it('should rollback a transaction on error', async () => {\n      // Create table\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          balance INTEGER DEFAULT 0\n        )\n      `)\n\n      // Insert initial data\n      await client.query(`\n        INSERT INTO test_users (name, balance)\n        VALUES ('Alice', 100), ('Bob', 50)\n      `)\n\n      try {\n        // Start a transaction\n        await client.query('BEGIN')\n\n        // Deduct from Alice\n        await client.query(`\n          UPDATE test_users\n          SET balance = balance - 30\n          WHERE name = 'Alice'\n        `)\n\n        // This will trigger an error\n        await client.query(`\n          UPDATE test_users_nonexistent\n          SET balance = balance + 30\n          WHERE name = 'Bob'\n        `)\n\n        // Should never get here\n        await client.query('COMMIT')\n      } catch (error) {\n        // Expected to fail - rollback transaction\n        await client.query('ROLLBACK').catch(() => {\n          // If the client connection is in a bad state, we just ignore\n          // the rollback error\n        })\n      }\n\n      // Verify Alice's balance was not changed due to rollback\n      const users = await client.query(\n        'SELECT name, balance FROM test_users ORDER BY name',\n      )\n\n      expect(users.rows.length).toBe(2)\n      expect(users.rows[0].name).toBe('Alice')\n      expect(users.rows[0].balance).toBe(100) // Should remain 100 after rollback\n    })\n\n    it('should handle a syntax error', async () => {\n      // Expect syntax error\n      let errorMessage = ''\n      try {\n        await client.query('THIS IS NOT VALID SQL;')\n      } catch (error) {\n        errorMessage = (error as Error).message\n      }\n\n      expect(errorMessage).not.toBe('')\n      expect(errorMessage.toLowerCase()).toContain('syntax error')\n    })\n\n    it('should support cursor-based pagination', async () => {\n      // Create a test table with many rows\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          value INTEGER\n        )\n      `)\n\n      // Insert 100 rows using generate_series (server-side generation)\n      await client.query(`\n        INSERT INTO test_users (name, value)\n        SELECT \n          'User ' || i as name,\n          i as value\n        FROM generate_series(1, 100) as i\n      `)\n\n      // Use a cursor to read data in smaller chunks\n      const chunkSize = 10\n      let results: any[] = []\n      let page = 0\n\n      try {\n        // Begin transaction\n        await client.query('BEGIN')\n\n        // Declare a cursor\n        await client.query(\n          'DECLARE user_cursor CURSOR FOR SELECT * FROM test_users ORDER BY id',\n        )\n\n        let hasMoreData = true\n        while (hasMoreData) {\n          // Fetch a batch of results\n          const chunk = await client.query('FETCH 10 FROM user_cursor')\n\n          // If no rows returned, we're done\n          if (chunk.rows.length === 0) {\n            hasMoreData = false\n            continue\n          }\n\n          // Process this chunk\n          page++\n\n          // Add to our results array\n          results = [...results, ...chunk.rows]\n\n          // Verify each chunk has correct data (except possibly the last one)\n          if (chunk.rows.length === chunkSize) {\n            expect(chunk.rows.length).toBe(chunkSize)\n            expect(chunk.rows[0].id).toBe((page - 1) * chunkSize + 1)\n          }\n        }\n\n        // Close the cursor\n        await client.query('CLOSE user_cursor')\n\n        // Commit transaction\n        await client.query('COMMIT')\n      } catch (error) {\n        await client.query('ROLLBACK')\n        throw error\n      }\n\n      // Verify we got all 100 records\n      expect(results.length).toBe(100)\n      expect(results[0].name).toBe('User 1')\n      expect(results[99].name).toBe('User 100')\n\n      // Verify we received the expected number of pages\n      expect(page).toBe(Math.ceil(100 / chunkSize))\n    })\n\n    it('should support LISTEN/NOTIFY for pub/sub messaging', async () => {\n      // Set up listener for notifications\n      let receivedPayload = ''\n      const notificationReceived = new Promise<void>((resolve) => {\n        client.on('notification', (msg) => {\n          receivedPayload = msg.payload || ''\n          resolve()\n        })\n      })\n\n      // Start listening\n      await client.query('LISTEN test_channel')\n\n      // Small delay to ensure listener is set up\n      await new Promise((resolve) => setTimeout(resolve, 100))\n\n      // Send a notification\n      await client.query(\"NOTIFY test_channel, 'Hello from PGlite!'\")\n\n      // Wait for the notification to be received with an appropriate timeout\n      const timeoutPromise = new Promise<void>((_, reject) => {\n        setTimeout(() => reject(new Error('Notification timeout')), 2000)\n      })\n\n      await Promise.race([notificationReceived, timeoutPromise]).catch(\n        (error) => {\n          console.error('Notification error:', error)\n        },\n      )\n\n      // Verify the notification was received with the correct payload\n      expect(receivedPayload).toBe('Hello from PGlite!')\n    })\n\n    it('should handle large queries that split across TCP packets', async () => {\n      // Create a table\n      await client.query(`CREATE TABLE test_users (id SERIAL, data TEXT)`)\n\n      // Generate >64KB payload to force TCP fragmentation\n      const largeData = 'x'.repeat(100_000) // 100KB string\n\n      // Insert large data\n      const result = await client.query(`\n        INSERT INTO test_users (data) VALUES ('${largeData}') RETURNING *\n      `)\n\n      expect(result.rows[0].data).toBe(largeData)\n    })\n\n    it('should handle concurrent clients with interleaved transaction and query', async () => {\n      // Create a second client connecting to the same server\n      let client2: typeof Client.prototype\n      if (DEBUG_TESTS) {\n        client2 = new Client({\n          connectionString: DEBUG_TESTS_REAL_SERVER,\n          connectionTimeoutMillis: 10000,\n          statement_timeout: 5000,\n        })\n      } else {\n        client2 = new Client(connectionConfig)\n      }\n      await client2.connect()\n\n      try {\n        // Client 1 starts a transaction (don't await yet)\n        const beginResult = await client.query('BEGIN')\n\n        // Client 2 makes a simple SELECT 1 query (don't await yet)\n        const selectPromise = client2.query('SELECT 999999 as one')\n\n        // Small delay to ensure SELECT is sent before ROLLBACK\n        await new Promise((r) => setTimeout(r, 10))\n\n        // Client 1 rolls back the transaction (don't await yet)\n        const rollbackResult = await client.query('ROLLBACK')\n\n        const selectResult = await selectPromise\n\n        // Verify results\n        expect(beginResult.command).toBe('BEGIN')\n        expect(selectResult.rows[0].one).toBe(999999)\n        expect(rollbackResult.command).toBe('ROLLBACK')\n      } finally {\n        await client2.end()\n      }\n    }, 30000)\n\n    it('should process pending queries when transaction owner disconnects', async () => {\n      // Create a second client connecting to the same server\n      let client2: typeof Client.prototype\n      if (DEBUG_TESTS) {\n        client2 = new Client({\n          connectionString: DEBUG_TESTS_REAL_SERVER,\n          connectionTimeoutMillis: 10000,\n          statement_timeout: 5000,\n        })\n      } else {\n        client2 = new Client(connectionConfig)\n      }\n      await client2.connect()\n\n      // Suppress the expected \"Connection terminated unexpectedly\" error\n      client2.on('error', () => {\n        // Expected when we destroy the connection\n      })\n\n      try {\n        // Client starts a transaction\n        const beginResult = await client2.query('BEGIN')\n        expect(beginResult.command).toBe('BEGIN')\n\n        // Client 2 sends a query (will be blocked because client is in transaction)\n        const selectPromise = client.query('SELECT 123456 as val')\n\n        // Small delay to ensure SELECT is enqueued\n        await new Promise((r) => setTimeout(r, 10))\n\n        // Client abruptly disconnects (simulating connection abort)\n        // This should trigger clearTransactionIfNeeded which rolls back\n        // the transaction and processes pending queries\n        ;(client2 as any).connection.stream.destroy()\n\n        // Client 2's query should complete successfully after transaction is cleared\n        const selectResult = await selectPromise\n\n        expect(selectResult.rows[0].val).toBe(123456)\n      } catch {\n        expect(false, 'Should not happen')\n      }\n    }, 30000)\n\n    it('interleaved transactions should work', async () => {\n      const bob = client\n      // table that will be accessed by both clients\n      await client.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT,\n          created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP\n        )\n      `)\n\n      // Create a second bob connecting to the same server\n      let alice: typeof Client.prototype\n      if (DEBUG_TESTS) {\n        alice = new Client({\n          connectionString: DEBUG_TESTS_REAL_SERVER,\n          connectionTimeoutMillis: 10000,\n          statement_timeout: 5000,\n        })\n      } else {\n        alice = new Client(connectionConfig)\n      }\n      await alice.connect()\n\n      alice.on('error', () => {\n        // Suppress the expected \"Connection terminated unexpectedly\" error\n      })\n\n      // Client starts a transaction\n      const aliceBegin = await alice.query('BEGIN')\n      expect(aliceBegin.command).toBe('BEGIN')\n\n      // Client 2 begins its own transaction\n      const bobBegin = bob.query('BEGIN')\n\n      // Small delay to ensure client2.BEGIN is enqueued\n      await new Promise((r) => setTimeout(r, 10))\n\n      const aliceInsertPromise = alice.query(`\n        INSERT INTO test_users (name, email)\n        VALUES \n          ('Alice', 'alice@example.com')\n        RETURNING *\n      `)\n\n      const bobInsertPromise = bob.query(`\n        INSERT INTO test_users (name, email)\n        VALUES \n          ('Bob', 'bob@example.com')\n        RETURNING *\n      `)\n\n      // Small delay to ensure both inserts are enqueued\n      await new Promise((r) => setTimeout(r, 10))\n\n      // bob commits\n      const bobCommit = bob.query('COMMIT')\n\n      // alice rolls back\n      const aliceRollback = alice.query('ROLLBACK')\n\n      await Promise.all([\n        bobBegin,\n        aliceInsertPromise,\n        bobInsertPromise,\n        aliceRollback,\n        bobCommit,\n      ])\n\n      // Verify only Bob was commited\n      const testUsers = await bob.query('SELECT * FROM test_users')\n      expect(testUsers.rows.length).toBe(1)\n      expect(testUsers.rows[0].name).toBe('Bob')\n    }, 30000)\n\n    it('interleaved transactions should work when one client crashes', async () => {\n      const bob = client\n      // table that will be accessed by both clients\n      await bob.query(`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT,\n          created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP\n        )\n      `)\n\n      // Create a second client connecting to the same server\n      let alice: typeof Client.prototype\n      if (DEBUG_TESTS) {\n        alice = new Client({\n          connectionString: DEBUG_TESTS_REAL_SERVER,\n          connectionTimeoutMillis: 10000,\n          statement_timeout: 5000,\n        })\n      } else {\n        alice = new Client(connectionConfig)\n      }\n      await alice.connect()\n\n      // Suppress the expected \"Connection terminated unexpectedly\" error\n      alice.on('error', () => {\n        // Expected when we destroy the connection\n      })\n\n      try {\n        // alice starts a transaction\n        const aliceBegin = await alice.query('BEGIN')\n        expect(aliceBegin.command).toBe('BEGIN')\n\n        // bob begins its own transaction\n        const bobBegin = bob.query('BEGIN')\n\n        // Small delay to ensure client2.BEGIN is enqueued\n        await new Promise((r) => setTimeout(r, 10))\n\n        // alice inserts data\n        alice.query(`\n          INSERT INTO test_users (name, email)\n          VALUES \n            ('Alice', 'alice@example.com')\n          RETURNING *\n        `)\n\n        // client inserts data\n        const bobInsert = bob.query(`\n          INSERT INTO test_users (name, email)\n          VALUES \n            ('Bob', 'bob@example.com')\n          RETURNING *\n        `)\n\n        // Small delay to ensure both inserts are enqueued\n        await new Promise((r) => setTimeout(r, 10))\n\n        // Client2 abruptly disconnects (simulating connection abort)\n        // This should trigger clearTransactionIfNeeded which rolls back\n        // the transaction and processes pending queries\n        ;(alice as any).connection.stream.destroy()\n\n        // bob commits\n        const bobCommit = bob.query('COMMIT')\n\n        await Promise.all([bobBegin, bobInsert, bobCommit])\n\n        // Verify only Bob was commited\n        const selectResult = await bob.query('SELECT * FROM test_users')\n        expect(selectResult.rows.length).toBe(1)\n        expect(selectResult.rows[0].name).toBe('Bob')\n      } catch {\n        // swallow\n      }\n    }, 30000)\n  })\n\n  describe('with extensions via CLI', () => {\n    const UNIX_SOCKET_DIR_PATH = `/tmp/${Date.now()}-${Math.random().toString(36).slice(2, 8)}`\n    fs.mkdirSync(UNIX_SOCKET_DIR_PATH)\n    const UNIX_SOCKET_PATH = `${UNIX_SOCKET_DIR_PATH}/.s.PGSQL.5432`\n    let serverProcess: ChildProcess | null = null\n    let client: typeof Client.prototype\n\n    beforeAll(async () => {\n      // Start the server with extensions via CLI using tsx for dev or node for dist\n      const serverScript = join(__dirname, '../src/scripts/server.ts')\n      serverProcess = spawn(\n        'npx',\n        [\n          'tsx',\n          serverScript,\n          '--path',\n          UNIX_SOCKET_PATH,\n          '--extensions',\n          'vector,pg_uuidv7,@electric-sql/pglite/pg_hashids:pg_hashids',\n        ],\n        {\n          stdio: ['ignore', 'pipe', 'pipe'],\n        },\n      )\n\n      // Wait for server to be ready by checking for \"listening\" message\n      await new Promise<void>((resolve, reject) => {\n        const timeout = setTimeout(() => {\n          reject(new Error('Server startup timeout'))\n        }, 30000)\n\n        const onData = (data: Buffer) => {\n          const output = data.toString()\n          if (output.includes('listening')) {\n            clearTimeout(timeout)\n            resolve()\n          }\n        }\n\n        serverProcess!.stdout?.on('data', onData)\n        serverProcess!.stderr?.on('data', (data) => {\n          console.error('Server stderr:', data.toString())\n        })\n\n        serverProcess!.on('error', (err) => {\n          clearTimeout(timeout)\n          reject(err)\n        })\n\n        serverProcess!.on('exit', (code) => {\n          if (code !== 0 && code !== null) {\n            clearTimeout(timeout)\n            reject(new Error(`Server exited with code ${code}`))\n          }\n        })\n      })\n\n      console.log('Server with extensions started')\n\n      client = new Client({\n        host: UNIX_SOCKET_DIR_PATH,\n        database: 'postgres',\n        user: 'postgres',\n        password: 'postgres',\n        connectionTimeoutMillis: 10000,\n      })\n      await client.connect()\n    })\n\n    afterAll(async () => {\n      if (client) {\n        await client.end().catch(() => {})\n      }\n\n      if (serverProcess) {\n        serverProcess.kill('SIGTERM')\n        await new Promise<void>((resolve) => {\n          serverProcess!.on('exit', () => resolve())\n          setTimeout(resolve, 2000) // Force resolve after 2s\n        })\n      }\n    })\n\n    it('should load and use vector extension', async () => {\n      // Create the extension\n      await client.query('CREATE EXTENSION IF NOT EXISTS vector')\n\n      // Verify extension is loaded\n      const extCheck = await client.query(`\n        SELECT extname FROM pg_extension WHERE extname = 'vector'\n      `)\n      expect(extCheck.rows).toHaveLength(1)\n      expect(extCheck.rows[0].extname).toBe('vector')\n\n      // Create a table with vector column\n      await client.query(`\n        CREATE TABLE test_vectors (\n          id SERIAL PRIMARY KEY,\n          name TEXT,\n          vec vector(3)\n        )\n      `)\n\n      // Insert test data\n      await client.query(`\n        INSERT INTO test_vectors (name, vec) VALUES\n          ('test1', '[1,2,3]'),\n          ('test2', '[4,5,6]'),\n          ('test3', '[7,8,9]')\n      `)\n\n      // Query with vector distance\n      const result = await client.query(`\n        SELECT name, vec, vec <-> '[3,1,2]' AS distance\n        FROM test_vectors\n        ORDER BY distance\n      `)\n\n      expect(result.rows).toHaveLength(3)\n      expect(result.rows[0].name).toBe('test1')\n      expect(result.rows[0].vec).toBe('[1,2,3]')\n      expect(parseFloat(result.rows[0].distance)).toBeCloseTo(2.449, 2)\n    })\n\n    it('should load and use pg_uuidv7 extension', async () => {\n      // Create the extension\n      await client.query('CREATE EXTENSION IF NOT EXISTS pg_uuidv7')\n\n      // Verify extension is loaded\n      const extCheck = await client.query(`\n        SELECT extname FROM pg_extension WHERE extname = 'pg_uuidv7'\n      `)\n      expect(extCheck.rows).toHaveLength(1)\n      expect(extCheck.rows[0].extname).toBe('pg_uuidv7')\n\n      // Generate a UUIDv7\n      const result = await client.query('SELECT uuid_generate_v7() as uuid')\n      expect(result.rows[0].uuid).toHaveLength(36)\n\n      // Test uuid_v7_to_timestamptz function\n      const tsResult = await client.query(`\n        SELECT uuid_v7_to_timestamptz('018570bb-4a7d-7c7e-8df4-6d47afd8c8fc') as ts\n      `)\n      const timestamp = new Date(tsResult.rows[0].ts)\n      expect(timestamp.toISOString()).toBe('2023-01-02T04:26:40.637Z')\n    })\n\n    it('should load and use pg_hashids extension from npm package path', async () => {\n      // Create the extension\n      await client.query('CREATE EXTENSION IF NOT EXISTS pg_hashids')\n\n      // Verify extension is loaded\n      const extCheck = await client.query(`\n        SELECT extname FROM pg_extension WHERE extname = 'pg_hashids'\n      `)\n      expect(extCheck.rows).toHaveLength(1)\n      expect(extCheck.rows[0].extname).toBe('pg_hashids')\n\n      // Test id_encode function\n      const result = await client.query(`\n        SELECT id_encode(1234567, 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as hash\n      `)\n      expect(result.rows[0].hash).toBeTruthy()\n      expect(typeof result.rows[0].hash).toBe('string')\n\n      // Test id_decode function (round-trip)\n      const hash = result.rows[0].hash\n      const decodeResult = await client.query(`\n        SELECT id_decode('${hash}', 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as id\n      `)\n      expect(decodeResult.rows[0].id[0]).toBe('1234567')\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite-socket/tests/query-with-postgres-js.test.ts",
    "content": "import {\n  describe,\n  it,\n  expect,\n  beforeAll,\n  afterAll,\n  beforeEach,\n  afterEach,\n} from 'vitest'\nimport postgres from 'postgres'\nimport { PGlite } from '@electric-sql/pglite'\nimport { PGLiteSocketServer } from '../src'\nimport { spawn, ChildProcess } from 'node:child_process'\nimport { fileURLToPath } from 'node:url'\nimport { dirname, join } from 'node:path'\nimport fs from 'fs'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = dirname(__filename)\n\n/**\n * Debug configuration for testing\n *\n * To test against a real PostgreSQL server:\n * - Set DEBUG_TESTS=true as an environment variable\n * - Optionally set DEBUG_TESTS_REAL_SERVER with a connection URL (defaults to localhost)\n *\n * Example:\n * DEBUG_TESTS=true DEBUG_TESTS_REAL_SERVER=postgres://user:pass@host:port/db npm vitest ./tests/query-with-postgres-js.test.ts\n */\nconst DEBUG_LOCAL = process.env.DEBUG_LOCAL === 'true'\nconst DEBUG_TESTS = process.env.DEBUG_TESTS === 'true'\nconst DEBUG_TESTS_REAL_SERVER =\n  process.env.DEBUG_TESTS_REAL_SERVER ||\n  'postgres://postgres:postgres@localhost:5432/postgres'\nconst TEST_PORT = 5434\n\ndescribe(`PGLite Socket Server`, () => {\n  describe('with postgres.js client', () => {\n    let db: PGlite\n    let server: PGLiteSocketServer\n    let sql: ReturnType<typeof postgres>\n    let connectionConfig: any\n\n    beforeAll(async () => {\n      if (DEBUG_TESTS) {\n        console.log('TESTING WITH REAL POSTGRESQL SERVER')\n        console.log(`Connection URL: ${DEBUG_TESTS_REAL_SERVER}`)\n      } else {\n        console.log('TESTING WITH PGLITE SERVER')\n\n        // Create a PGlite instance\n        if (DEBUG_LOCAL) db = await PGlite.create({ debug: '1' })\n        else db = await PGlite.create()\n\n        // Wait for database to be ready\n        await db.waitReady\n\n        console.log('PGLite database ready')\n\n        // Create and start the server with explicit host\n        server = new PGLiteSocketServer({\n          db,\n          port: TEST_PORT,\n          host: '127.0.0.1',\n          inspect: DEBUG_TESTS || DEBUG_LOCAL,\n        })\n\n        // Add event listeners for debugging\n        server.addEventListener('error', (event) => {\n          console.error('Socket server error:', (event as CustomEvent).detail)\n        })\n\n        server.addEventListener('connection', (event) => {\n          console.log(\n            'Socket connection received:',\n            (event as CustomEvent).detail,\n          )\n        })\n\n        await server.start()\n        console.log(`PGLite Socket Server started on port ${TEST_PORT}`)\n\n        connectionConfig = {\n          host: '127.0.0.1',\n          port: TEST_PORT,\n          database: 'postgres',\n          username: 'postgres',\n          password: 'postgres',\n          idle_timeout: 5,\n          connect_timeout: 10,\n          max: 1,\n        }\n      }\n    })\n\n    afterAll(async () => {\n      if (!DEBUG_TESTS) {\n        // Stop server if running\n        if (server) {\n          await server.stop()\n          console.log('PGLite Socket Server stopped')\n        }\n\n        // Close database\n        if (db) {\n          await db.close()\n          console.log('PGLite database closed')\n        }\n      }\n    })\n\n    beforeEach(() => {\n      // Create a postgres client instance before each test\n      if (DEBUG_TESTS) {\n        // Direct connection to real PostgreSQL server using URL\n        sql = postgres(DEBUG_TESTS_REAL_SERVER, {\n          idle_timeout: 5,\n          connect_timeout: 10,\n          max: 1,\n        })\n      } else {\n        // Connection to PGLite Socket Server\n        sql = postgres(connectionConfig)\n      }\n    })\n\n    afterEach(async () => {\n      // Clean up any tables created in tests\n      try {\n        await sql`DROP TABLE IF EXISTS test_users`\n      } catch (e) {\n        console.error('Error cleaning up tables:', e)\n      }\n\n      // Disconnect the client after each test\n      if (sql) {\n        await sql.end()\n      }\n    })\n    if (!DEBUG_LOCAL) {\n      it('should execute a basic SELECT query', async () => {\n        const result = await sql`SELECT 1 as one`\n        expect(result[0].one).toBe(1)\n      })\n\n      it('should create a table', async () => {\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT,\n          created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP\n        )\n      `\n\n        // Verify table exists by querying the schema\n        const tableCheck = await sql`\n        SELECT table_name\n        FROM information_schema.tables\n        WHERE table_schema = 'public' AND table_name = 'test_users'\n      `\n\n        expect(tableCheck.length).toBe(1)\n        expect(tableCheck[0].table_name).toBe('test_users')\n      })\n\n      it('should insert rows into a table', async () => {\n        // Create table\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT\n        )\n      `\n\n        // Insert data\n        const insertResult = await sql`\n        INSERT INTO test_users (name, email)\n        VALUES\n          ('Alice', 'alice@example.com'),\n          ('Bob', 'bob@example.com')\n        RETURNING *\n      `\n\n        expect(insertResult.length).toBe(2)\n        expect(insertResult[0].name).toBe('Alice')\n        expect(insertResult[1].name).toBe('Bob')\n\n        // Verify data is there\n        const count = await sql`SELECT COUNT(*)::int as count FROM test_users`\n        expect(count[0].count).toBe(2)\n      })\n\n      it('should update rows in a table', async () => {\n        // Create and populate table\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT\n        )\n      `\n\n        await sql`\n        INSERT INTO test_users (name, email)\n        VALUES ('Alice', 'alice@example.com')\n      `\n\n        // Update\n        const updateResult = await sql`\n        UPDATE test_users\n        SET email = 'alice.new@example.com'\n        WHERE name = 'Alice'\n        RETURNING *\n      `\n\n        expect(updateResult.length).toBe(1)\n        expect(updateResult[0].email).toBe('alice.new@example.com')\n      })\n\n      it('should delete rows from a table', async () => {\n        // Create and populate table\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          email TEXT\n        )\n      `\n\n        await sql`\n        INSERT INTO test_users (name, email)\n        VALUES\n          ('Alice', 'alice@example.com'),\n          ('Bob', 'bob@example.com')\n      `\n\n        // Delete\n        const deleteResult = await sql`\n        DELETE FROM test_users\n        WHERE name = 'Alice'\n        RETURNING *\n      `\n\n        expect(deleteResult.length).toBe(1)\n        expect(deleteResult[0].name).toBe('Alice')\n\n        // Verify only Bob remains\n        const remaining = await sql`SELECT * FROM test_users`\n        expect(remaining.length).toBe(1)\n        expect(remaining[0].name).toBe('Bob')\n      })\n\n      it('should execute operations in a transaction', async () => {\n        // Create table\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          balance INTEGER DEFAULT 0\n        )\n      `\n\n        // Insert initial data\n        await sql`\n        INSERT INTO test_users (name, balance)\n        VALUES ('Alice', 100), ('Bob', 50)\n      `\n\n        // Start a transaction and perform operations\n        await sql.begin(async (tx) => {\n          // Deduct from Alice\n          await tx`\n          UPDATE test_users\n          SET balance = balance - 30\n          WHERE name = 'Alice'\n        `\n\n          // Add to Bob\n          await tx`\n          UPDATE test_users\n          SET balance = balance + 30\n          WHERE name = 'Bob'\n        `\n        })\n\n        // Verify both operations succeeded\n        const users =\n          await sql`SELECT name, balance FROM test_users ORDER BY name`\n\n        expect(users.length).toBe(2)\n        expect(users[0].name).toBe('Alice')\n        expect(users[0].balance).toBe(70)\n        expect(users[1].name).toBe('Bob')\n        expect(users[1].balance).toBe(80)\n      })\n\n      it('should rollback a transaction on ROLLBACK', async () => {\n        // Create table\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          balance INTEGER DEFAULT 0\n        )\n      `\n\n        // Insert initial data\n        await sql`\n        INSERT INTO test_users (name, balance)\n        VALUES ('Alice', 100), ('Bob', 50)\n      `\n\n        // Get initial balance\n        const initialResult = await sql`\n        SELECT balance FROM test_users WHERE name = 'Alice'\n      `\n        const initialBalance = initialResult[0].balance\n\n        // Start a transaction\n        await sql\n          .begin(async (tx) => {\n            // Deduct from Alice\n            await tx`\n          UPDATE test_users\n          SET balance = balance - 30\n          WHERE name = 'Alice'\n        `\n\n            // Verify balance is changed within transaction\n            const midResult = await tx`\n          SELECT balance FROM test_users WHERE name = 'Alice'\n        `\n            expect(midResult[0].balance).toBe(70)\n\n            // Explicitly roll back (cancel) the transaction\n            throw new Error('Triggering rollback')\n          })\n          .catch(() => {\n            // Expected error to trigger rollback\n            console.log('Transaction was rolled back as expected')\n          })\n\n        // Verify balance wasn't changed after rollback\n        const finalResult = await sql`\n        SELECT balance FROM test_users WHERE name = 'Alice'\n      `\n        expect(finalResult[0].balance).toBe(initialBalance)\n      })\n\n      it('should rollback a transaction on error', async () => {\n        // Create table\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          balance INTEGER DEFAULT 0\n        )\n      `\n\n        // Insert initial data\n        await sql`\n        INSERT INTO test_users (name, balance)\n        VALUES ('Alice', 100), ('Bob', 50)\n      `\n\n        // Start a transaction that will fail\n        try {\n          await sql.begin(async (tx) => {\n            // Deduct from Alice\n            await tx`\n            UPDATE test_users\n            SET balance = balance - 30\n            WHERE name = 'Alice'\n          `\n\n            // This will trigger an error\n            await tx`\n            UPDATE test_users_nonexistent\n            SET balance = balance + 30\n            WHERE name = 'Bob'\n          `\n          })\n        } catch (error) {\n          // Expected to fail\n        }\n\n        // Verify Alice's balance was not changed due to rollback\n        const users =\n          await sql`SELECT name, balance FROM test_users ORDER BY name`\n\n        expect(users.length).toBe(2)\n        expect(users[0].name).toBe('Alice')\n        expect(users[0].balance).toBe(100) // Should remain 100 after rollback\n      })\n\n      it('should handle a syntax error', async () => {\n        // Expect syntax error\n        let errorMessage = ''\n        try {\n          await sql`THIS IS NOT VALID SQL;`\n        } catch (error) {\n          errorMessage = (error as Error).message\n        }\n\n        expect(errorMessage).not.toBe('')\n        expect(errorMessage.toLowerCase()).toContain('syntax error')\n      })\n\n      it('should support cursor-based pagination', async () => {\n        // Create a test table with many rows\n        await sql`\n        CREATE TABLE test_users (\n          id SERIAL PRIMARY KEY,\n          name TEXT NOT NULL,\n          value INTEGER\n        )\n      `\n\n        // Insert 100 rows using generate_series (server-side generation)\n        await sql`\n        INSERT INTO test_users (name, value)\n        SELECT\n          'User ' || i as name,\n          i as value\n        FROM generate_series(1, 100) as i\n      `\n\n        // Use a cursor to read data in smaller chunks\n        const chunkSize = 10\n        let results: any[] = []\n        let page = 0\n\n        // Use a transaction for cursor operations (cursors must be in transactions)\n        await sql.begin(async (tx) => {\n          // Declare a cursor\n          await tx`DECLARE user_cursor CURSOR FOR SELECT * FROM test_users ORDER BY id`\n\n          let hasMoreData = true\n          while (hasMoreData) {\n            // Fetch a batch of results\n            const chunk = await tx`FETCH 10 FROM user_cursor`\n\n            // If no rows returned, we're done\n            if (chunk.length === 0) {\n              hasMoreData = false\n              continue\n            }\n\n            // Process this chunk\n            page++\n\n            // Add to our results array\n            results = [...results, ...chunk]\n\n            // Verify each chunk has correct data (except possibly the last one)\n            if (chunk.length === chunkSize) {\n              expect(chunk.length).toBe(chunkSize)\n              expect(chunk[0].id).toBe((page - 1) * chunkSize + 1)\n            }\n          }\n\n          // Close the cursor\n          await tx`CLOSE user_cursor`\n        })\n\n        // Verify we got all 100 records\n        expect(results.length).toBe(100)\n        expect(results[0].name).toBe('User 1')\n        expect(results[99].name).toBe('User 100')\n\n        // Verify we received the expected number of pages\n        expect(page).toBe(Math.ceil(100 / chunkSize))\n      })\n    } else {\n      it('should support LISTEN/NOTIFY for pub/sub messaging', async () => {\n        // Create a promise that will resolve when the notification is received\n        let receivedPayload = ''\n        const notificationPromise = new Promise<void>((resolve) => {\n          // Set up listener for the 'test_channel' notification\n          sql.listen('test_channel', (data) => {\n            receivedPayload = data\n            resolve()\n          })\n        })\n\n        // Small delay to ensure listener is set up\n        // await new Promise((resolve) => setTimeout(resolve, 100))\n\n        // Send a notification on the same connection\n        await sql`NOTIFY test_channel, 'Hello from PGlite!'`\n\n        // Wait for the notification to be received\n        await notificationPromise\n\n        // Verify the notification was received with the correct payload\n        expect(receivedPayload).toBe('Hello from PGlite!')\n      })\n    }\n  })\n\n  describe('with extensions via CLI', () => {\n    const UNIX_SOCKET_DIR_PATH = `/tmp/${Date.now().toString()}`\n    fs.mkdirSync(UNIX_SOCKET_DIR_PATH)\n    const UNIX_SOCKET_PATH = `${UNIX_SOCKET_DIR_PATH}/.s.PGSQL.5432`\n    let serverProcess: ChildProcess | null = null\n    let sql: ReturnType<typeof postgres>\n\n    beforeAll(async () => {\n      // Start the server with extensions via CLI using tsx for dev or node for dist\n      const serverScript = join(__dirname, '../src/scripts/server.ts')\n      serverProcess = spawn(\n        'npx',\n        [\n          'tsx',\n          serverScript,\n          '--path',\n          UNIX_SOCKET_PATH,\n          '--extensions',\n          'vector,pg_uuidv7,@electric-sql/pglite/pg_hashids:pg_hashids',\n        ],\n        {\n          stdio: ['ignore', 'pipe', 'pipe'],\n        },\n      )\n\n      // Wait for server to be ready by checking for \"listening\" message\n      await new Promise<void>((resolve, reject) => {\n        const timeout = setTimeout(() => {\n          reject(new Error('Server startup timeout'))\n        }, 30000)\n\n        const onData = (data: Buffer) => {\n          const output = data.toString()\n          if (output.includes('listening')) {\n            clearTimeout(timeout)\n            resolve()\n          }\n        }\n\n        serverProcess!.stdout?.on('data', onData)\n        serverProcess!.stderr?.on('data', (data) => {\n          console.error('Server stderr:', data.toString())\n        })\n\n        serverProcess!.on('error', (err) => {\n          clearTimeout(timeout)\n          reject(err)\n        })\n\n        serverProcess!.on('exit', (code) => {\n          if (code !== 0 && code !== null) {\n            clearTimeout(timeout)\n            reject(new Error(`Server exited with code ${code}`))\n          }\n        })\n      })\n\n      console.log('Server with extensions started')\n\n      sql = postgres({\n        path: UNIX_SOCKET_PATH,\n        database: 'postgres',\n        username: 'postgres',\n        password: 'postgres',\n        idle_timeout: 5,\n        connect_timeout: 10,\n        max: 1,\n      })\n    })\n\n    afterAll(async () => {\n      if (sql) {\n        await sql.end().catch(() => {})\n      }\n\n      if (serverProcess) {\n        serverProcess.kill('SIGTERM')\n        await new Promise<void>((resolve) => {\n          serverProcess!.on('exit', () => resolve())\n          setTimeout(resolve, 2000) // Force resolve after 2s\n        })\n      }\n    })\n\n    it('should load and use vector extension', async () => {\n      // Create the extension\n      await sql`CREATE EXTENSION IF NOT EXISTS vector`\n\n      // Verify extension is loaded\n      const extCheck = await sql`\n        SELECT extname FROM pg_extension WHERE extname = 'vector'\n      `\n      expect(extCheck).toHaveLength(1)\n      expect(extCheck[0].extname).toBe('vector')\n\n      // Create a table with vector column\n      await sql`\n        CREATE TABLE test_vectors (\n          id SERIAL PRIMARY KEY,\n          name TEXT,\n          vec vector(3)\n        )\n      `\n\n      // Insert test data\n      await sql`\n        INSERT INTO test_vectors (name, vec) VALUES\n          ('test1', '[1,2,3]'),\n          ('test2', '[4,5,6]'),\n          ('test3', '[7,8,9]')\n      `\n\n      // Query with vector distance\n      const result = await sql`\n        SELECT name, vec, vec <-> '[3,1,2]' AS distance\n        FROM test_vectors\n        ORDER BY distance\n      `\n\n      expect(result).toHaveLength(3)\n      expect(result[0].name).toBe('test1')\n      expect(result[0].vec).toBe('[1,2,3]')\n      expect(parseFloat(result[0].distance)).toBeCloseTo(2.449, 2)\n    })\n\n    it('should load and use pg_uuidv7 extension', async () => {\n      // Create the extension\n      await sql`CREATE EXTENSION IF NOT EXISTS pg_uuidv7`\n\n      // Verify extension is loaded\n      const extCheck = await sql`\n        SELECT extname FROM pg_extension WHERE extname = 'pg_uuidv7'\n      `\n      expect(extCheck).toHaveLength(1)\n      expect(extCheck[0].extname).toBe('pg_uuidv7')\n\n      // Generate a UUIDv7\n      const result = await sql`SELECT uuid_generate_v7() as uuid`\n      expect(result[0].uuid).toHaveLength(36)\n\n      // Test uuid_v7_to_timestamptz function\n      const tsResult = await sql`\n        SELECT uuid_v7_to_timestamptz('018570bb-4a7d-7c7e-8df4-6d47afd8c8fc') as ts\n      `\n      const timestamp = new Date(tsResult[0].ts)\n      expect(timestamp.toISOString()).toBe('2023-01-02T04:26:40.637Z')\n    })\n\n    it('should load and use pg_hashids extension from npm package path', async () => {\n      // Create the extension\n      await sql`CREATE EXTENSION IF NOT EXISTS pg_hashids`\n\n      // Verify extension is loaded\n      const extCheck = await sql`\n        SELECT extname FROM pg_extension WHERE extname = 'pg_hashids'\n      `\n      expect(extCheck).toHaveLength(1)\n      expect(extCheck[0].extname).toBe('pg_hashids')\n\n      // Test id_encode function\n      const result = await sql`\n        SELECT id_encode(1234567, 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as hash\n      `\n      expect(result[0].hash).toBeTruthy()\n      expect(typeof result[0].hash).toBe('string')\n\n      // Test id_decode function (round-trip)\n      const hash = result[0].hash\n      const decodeResult = await sql`\n        SELECT id_decode(${hash}, 'salt', 10, 'abcdefghijABCDEFGHIJ1234567890') as id\n      `\n      expect(decodeResult[0].id[0]).toBe('1234567')\n    })\n  })\n})\n"
  },
  {
    "path": "packages/pglite-socket/tests/server.test.ts",
    "content": "import { describe, it, expect, afterEach } from 'vitest'\nimport { spawn, ChildProcess } from 'node:child_process'\nimport { createConnection } from 'net'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url))\nconst serverScript = path.resolve(__dirname, '../src/scripts/server.ts')\n\n// Helper to wait for a port to be available\nasync function waitForPort(port: number, timeout = 15000): Promise<boolean> {\n  const start = Date.now()\n\n  while (Date.now() - start < timeout) {\n    try {\n      const socket = createConnection({ port, host: '127.0.0.1' })\n      await new Promise<void>((resolve, reject) => {\n        socket.on('connect', () => {\n          socket.end()\n          resolve()\n        })\n        socket.on('error', reject)\n      })\n      return true\n    } catch {\n      await new Promise((resolve) => setTimeout(resolve, 100))\n    }\n  }\n  return false\n}\n\ndescribe('Server Script Tests', () => {\n  const TEST_PORT_BASE = 15500\n  let currentTestPort = TEST_PORT_BASE\n\n  // Get a unique port for each test\n  function getTestPort(): number {\n    return ++currentTestPort\n  }\n\n  describe('Help and Basic Functionality', () => {\n    it('should show help when --help flag is used', async () => {\n      const serverProcess = spawn('tsx', [serverScript, '--help'], {\n        stdio: ['pipe', 'pipe', 'pipe'],\n      })\n\n      let output = ''\n      serverProcess.stdout?.on('data', (data) => {\n        output += data.toString()\n      })\n\n      serverProcess.stderr?.on('data', (data) => {\n        console.error(data.toString())\n      })\n\n      await new Promise<void>((resolve) => {\n        serverProcess.on('exit', (code) => {\n          expect(code).toBe(0)\n          expect(output).toContain('PGlite Socket Server')\n          expect(output).toContain('Usage:')\n          expect(output).toContain('Options:')\n          expect(output).toContain('--db')\n          expect(output).toContain('--port')\n          expect(output).toContain('--host')\n          resolve()\n        })\n      })\n    }, 10000)\n\n    it('should accept and use debug level parameter', async () => {\n      const testPort = getTestPort()\n      const serverProcess = spawn(\n        'tsx',\n        [serverScript, '--port', testPort.toString(), '--debug', '2'],\n        {\n          stdio: ['pipe', 'pipe', 'pipe'],\n        },\n      )\n\n      let output = ''\n      serverProcess.stdout?.on('data', (data) => {\n        output += data.toString()\n      })\n\n      serverProcess.stderr?.on('data', (data) => {\n        console.error(data.toString())\n      })\n\n      // Wait for server to start\n      await waitForPort(testPort)\n\n      // Kill the server\n      serverProcess.kill('SIGTERM')\n\n      await new Promise<void>((resolve) => {\n        serverProcess.on('exit', () => {\n          expect(output).toContain('Debug level: 2')\n          resolve()\n        })\n      })\n    }, 10000)\n  })\n\n  describe('Server Startup and Connectivity', () => {\n    let serverProcess: ChildProcess | null = null\n\n    afterEach(async () => {\n      if (serverProcess) {\n        serverProcess.kill('SIGTERM')\n        await new Promise<void>((resolve) => {\n          if (serverProcess) {\n            serverProcess.on('exit', () => resolve())\n          } else {\n            resolve()\n          }\n        })\n        serverProcess = null\n      }\n    })\n\n    it('should start server on TCP port and accept connections', async () => {\n      const testPort = getTestPort()\n\n      serverProcess = spawn(\n        'tsx',\n        [serverScript, '--port', testPort.toString()],\n        {\n          stdio: ['pipe', 'pipe', 'pipe'],\n        },\n      )\n\n      let output = ''\n      serverProcess.stdout?.on('data', (data) => {\n        output += data.toString()\n      })\n\n      serverProcess.stderr?.on('data', (data) => {\n        console.error(data.toString())\n      })\n\n      // Wait for server to be ready\n      const isReady = await waitForPort(testPort)\n      expect(isReady).toBe(true)\n\n      // Check that we can connect\n      const socket = createConnection({ port: testPort, host: '127.0.0.1' })\n      await new Promise<void>((resolve, reject) => {\n        socket.on('connect', resolve)\n        socket.on('error', reject)\n        setTimeout(() => reject(new Error('Connection timeout')), 3000)\n      })\n      socket.end()\n\n      expect(output).toContain('PGlite database initialized')\n      expect(output).toContain(`\"port\":${testPort}`)\n    }, 10000)\n\n    it('should work with memory database', async () => {\n      const testPort = getTestPort()\n\n      serverProcess = spawn(\n        'tsx',\n        [serverScript, '--port', testPort.toString(), '--db', 'memory://'],\n        {\n          stdio: ['pipe', 'pipe', 'pipe'],\n        },\n      )\n\n      let output = ''\n      serverProcess.stdout?.on('data', (data) => {\n        output += data.toString()\n      })\n\n      serverProcess.stderr?.on('data', (data) => {\n        console.error(data.toString())\n      })\n\n      const isReady = await waitForPort(testPort)\n      expect(isReady).toBe(true)\n      expect(output).toContain('Initializing PGLite with database: memory://')\n    }, 10000)\n  })\n\n  describe('Configuration Options', () => {\n    let serverProcess: ChildProcess | null = null\n\n    afterEach(async () => {\n      if (serverProcess) {\n        serverProcess.kill('SIGTERM')\n        await new Promise<void>((resolve) => {\n          if (serverProcess) {\n            serverProcess.on('exit', () => resolve())\n          } else {\n            resolve()\n          }\n        })\n        serverProcess = null\n      }\n    })\n\n    it('should handle different hosts', async () => {\n      const testPort = getTestPort()\n\n      serverProcess = spawn(\n        'tsx',\n        [serverScript, '--port', testPort.toString(), '--host', '0.0.0.0'],\n        {\n          stdio: ['pipe', 'pipe', 'pipe'],\n        },\n      )\n\n      let output = ''\n      serverProcess.stdout?.on('data', (data) => {\n        output += data.toString()\n      })\n\n      serverProcess.stderr?.on('data', (data) => {\n        console.error(data.toString())\n      })\n\n      const isReady = await waitForPort(testPort)\n      expect(isReady).toBe(true)\n      serverProcess.kill()\n      await new Promise<void>((resolve) => {\n        serverProcess.on('exit', () => {\n          expect(output).toContain(`\"host\":\"0.0.0.0\"`)\n          serverProcess = null\n          resolve()\n        })\n      })\n    }, 10000)\n  })\n})\n"
  },
  {
    "path": "packages/pglite-socket/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"types\": [\n      \"@types/emscripten\",\n      \"node\"\n    ]\n  },\n  \"include\": [\"src\", \"examples\", \"tsup.config.ts\", \"vitest.config.ts\"]\n}\n"
  },
  {
    "path": "packages/pglite-socket/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\n\nconst entryPoints = ['src/index.ts', 'src/scripts/server.ts']\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: entryPoints,\n    sourcemap: true,\n    dts: {\n      entry: entryPoints,\n      resolve: true,\n    },\n    clean: true,\n    minify: minify,\n    shims: true,\n    format: ['esm', 'cjs'],\n  },\n])\n"
  },
  {
    "path": "packages/pglite-socket/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    name: 'integration tests',\n    globals: true,\n    typecheck: { enabled: true },\n    environment: 'node',\n    testTimeout: 30000,\n    watch: false,\n    dir: './tests',\n    maxWorkers: 1,\n    fileParallelism: false,\n    maxConcurrency: 1 // because we are running a TCP server on a port \n  },\n})\n"
  },
  {
    "path": "packages/pglite-sync/.gitignore",
    "content": "dist\nnode_modules"
  },
  {
    "path": "packages/pglite-sync/CHANGELOG.md",
    "content": "# @electric-sql/pglite-sync\n\n## 0.5.1\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n\n## 0.5.0\n\n### Minor Changes\n\n- Updated dependencies [d848955]\n  - @electric-sql/pglite@0.4.0\n\n## 0.4.2\n\n### Patch Changes\n\n- Updated dependencies [3dfa40f]\n  - @electric-sql/pglite@0.3.16\n\n## 0.4.1\n\n### Patch Changes\n\n- Updated dependencies [45bff97]\n- Updated dependencies [5ec474f]\n  - @electric-sql/pglite@0.3.15\n\n## 0.4.0\n\n### Minor Changes\n\n- 408500c: Allow passing in onError to 'syncShapesToTables'\n\n### Patch Changes\n\n- Updated dependencies [8785034]\n- Updated dependencies [90cfee8]\n  - @electric-sql/pglite@0.3.14\n\n## 0.3.17\n\n### Patch Changes\n\n- Updated dependencies [ad3d0d8]\n  - @electric-sql/pglite@0.3.13\n\n## 0.3.16\n\n### Patch Changes\n\n- Updated dependencies [ce0e74e]\n  - @electric-sql/pglite@0.3.12\n\n## 0.3.15\n\n### Patch Changes\n\n- Updated dependencies [9a104b9]\n  - @electric-sql/pglite@0.3.11\n\n## 0.3.14\n\n### Patch Changes\n\n- Updated dependencies [ad765ed]\n  - @electric-sql/pglite@0.3.10\n\n## 0.3.13\n\n### Patch Changes\n\n- Updated dependencies [e40ccad]\n  - @electric-sql/pglite@0.3.9\n\n## 0.3.12\n\n### Patch Changes\n\n- da3cdf3: bump the version of the electric client used by the sync plugin\n\n## 0.3.11\n\n### Patch Changes\n\n- Updated dependencies [f12a582]\n- Updated dependencies [bd263aa]\n  - @electric-sql/pglite@0.3.8\n\n## 0.3.10\n\n### Patch Changes\n\n- Updated dependencies [0936962]\n  - @electric-sql/pglite@0.3.7\n\n## 0.3.9\n\n### Patch Changes\n\n- Updated dependencies [6898469]\n- Updated dependencies [469be18]\n- Updated dependencies [64e33c7]\n  - @electric-sql/pglite@0.3.6\n\n## 0.3.8\n\n### Patch Changes\n\n- Updated dependencies [6653899]\n- Updated dependencies [5f007fc]\n  - @electric-sql/pglite@0.3.5\n\n## 0.3.7\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n- Updated dependencies [1fcaa3e]\n- Updated dependencies [38a55d0]\n- Updated dependencies [aac7003]\n- Updated dependencies [8ca254d]\n  - @electric-sql/pglite@0.3.4\n\n## 0.3.6\n\n### Patch Changes\n\n- Updated dependencies [ea2c7c7]\n  - @electric-sql/pglite@0.3.3\n\n## 0.3.5\n\n### Patch Changes\n\n- 0655bff: batch inserts by by a max query size of 50mb\n\n## 0.3.4\n\n### Patch Changes\n\n- Updated dependencies [e2c654b]\n  - @electric-sql/pglite@0.3.2\n\n## 0.3.3\n\n### Patch Changes\n\n- ad27e7c: Improve insert management for pglite-sync\n- Updated dependencies [713364e]\n  - @electric-sql/pglite@0.3.1\n\n## 0.3.2\n\n### Patch Changes\n\n- 317fd36: Specify a peer dependency range on @electric-sql/pglite\n- Updated dependencies [97e52f7]\n- Updated dependencies [4356024]\n- Updated dependencies [0033bc7]\n  - @electric-sql/pglite@0.3.0\n\n## 0.3.1\n\n### Patch Changes\n\n- 3ee6846: New `initialInsertMethod` option that can specify `insert`, `csv` or `json` as the method used to handle the initial sync. The supersedes the `useCopy` option which is now deprecated and will be removed in a future version.\n\n## 0.3.0\n\n### Minor Changes\n\n- f50b5f8: Support for multi shape transactional sync via a new `syncShapesToTables` api. This ensures that all changes from Postgres that were part of the same transaction are applied together as a single transaction to the local PGlite database.\n\n  Note: The `commitGranularity` and `commitThrottle` options have been removed due to incompatibility with the new transactional sync mechanism.\n\n## 0.2.20\n\n### Patch Changes\n\n- c489ec0: Correctly persist the offset during initial sync\n\n## 0.2.19\n\n### Patch Changes\n\n- 67bf759: shapeKey in syncShapeToTable is now mandatory but nullable; passing null will not persist the shape\n- b3640ee: Update the sync plugin to work with the latest Electric sync server\n- Updated dependencies [6bdd74e]\n- Updated dependencies [f94d591]\n  - @electric-sql/pglite@0.2.17\n\n## 0.2.18\n\n### Patch Changes\n\n- Updated dependencies [c36fd09]\n- Updated dependencies [e037883]\n- Updated dependencies [d6b981b]\n- Updated dependencies [17e7664]\n- Updated dependencies [118ba3e]\n- Updated dependencies [d93c1bb]\n- Updated dependencies [ddd4a68]\n- Updated dependencies [f3f1103]\n- Updated dependencies [67fb2aa]\n  - @electric-sql/pglite@0.2.16\n\n## 0.2.17\n\n### Patch Changes\n\n- 46c102c: Add options for the `commitGranularity` parameter in the `syncShapeToTable` function, enabling the user to choose how often the sync should commit.\n- c3d98d5: Export return type of `syncShapeToTable`\n- 515a155: Bump the version of the Electric sync client\n- Updated dependencies [fa13714]\n  - @electric-sql/pglite@0.2.15\n\n## 0.2.16\n\n### Patch Changes\n\n- d1dd12b: Bump the supported version of the ElectricSQL sync server to the latest version\n- Updated dependencies [6547374]\n- Updated dependencies [6547374]\n- Updated dependencies [df5c290]\n- Updated dependencies [1784d04]\n- Updated dependencies [ae36974]\n- Updated dependencies [75f9f6d]\n- Updated dependencies [ce212cf]\n  - @electric-sql/pglite@0.2.14\n\n## 0.2.14\n\n### Patch Changes\n\n- f4f8a42: Filter out update messages that don't modify any columns\n- 3d8efbb: Bump dependencies to address Dependabot alerts\n- 1685b91: Set an `electric.syncing` config flag in Postgres during a sync transaction to enable user defined triggers to chose how to run during a sync.\n- 61f638e: Change to do a `DELETE FROM` rather than a `TRUNCATE` on `must-refetch` so that custom merge logic can be applied with triggers.\n- 61f638e: Add a `useCopy` option to `syncShapeToTable`, when `true` performs a `COPY TO` for the initial sync.\n- Updated dependencies [5e39036]\n- Updated dependencies [3d8efbb]\n- Updated dependencies [1844b10]\n- Updated dependencies [79e6082]\n- Updated dependencies [16d2296]\n- Updated dependencies [cf50f47]\n- Updated dependencies [bd1b3b9]\n- Updated dependencies [5e39036]\n- Updated dependencies [16d2296]\n- Updated dependencies [e9bd9a7]\n- Updated dependencies [c442c88]\n  - @electric-sql/pglite@0.2.13\n\n## 0.2.13\n\n### Patch Changes\n\n- Updated dependencies [1495625]\n- Updated dependencies [d3905cf]\n- Updated dependencies [1f036dc]\n- Updated dependencies [52ddcb0]\n  - @electric-sql/pglite@0.2.12\n\n## 0.2.12\n\n### Patch Changes\n\n- Updated dependencies [2aed553]\n  - @electric-sql/pglite@0.2.11\n\n## 0.2.11\n\n### Patch Changes\n\n- Updated dependencies [3113d56]\n- Updated dependencies [23cd31a]\n  - @electric-sql/pglite@0.2.10\n\n## 0.2.10\n\n### Patch Changes\n\n- Updated dependencies [20008c2]\n- Updated dependencies [a5712a8]\n  - @electric-sql/pglite@0.2.9\n\n## 0.2.9\n\n### Patch Changes\n\n- 95b41a1: Clear uncommitted aggregated messages upon receiving `must-refetch` message\n\n## 0.2.8\n\n### Patch Changes\n\n- 821a7c5: Commit `ShapeStream` message batches transactionally.\n  Implement `shapeKey` option to `syncShapeToTable` to persist stream.\n  Implement `metadataSchema` option to `electricSync` configuration to specify where stream metadata is peristed.\n  Implement in-memory lock to disallow multiple shapes on single table.\n  Fix `must-refetch` handling by truncating underlying table on refetch.\n  [BREAKING] Move `ShapeStreamOptions` as separate property of `SyncShapeToTableOptions` rather than extension\n- 6e116c6: Implement naive resumability which truncates the synced table on restart.\n- Updated dependencies [53ec60e]\n- Updated dependencies [880b60d]\n- Updated dependencies [058ed7c]\n- Updated dependencies [2831c34]\n- Updated dependencies [880b60d]\n- Updated dependencies [880b60d]\n- Updated dependencies [4aeb677]\n- Updated dependencies [19b3529]\n  - @electric-sql/pglite@0.2.8\n\n## 0.2.7\n\n### Patch Changes\n\n- Updated dependencies [5e65236]\n- Updated dependencies [5e65236]\n  - @electric-sql/pglite@0.2.7\n\n## 0.2.6\n\n### Patch Changes\n\n- Updated dependencies [09b356c]\n- Updated dependencies [4238595]\n- Updated dependencies [ef57e10]\n  - @electric-sql/pglite@0.2.6\n\n## 0.2.5\n\n### Patch Changes\n\n- dd271b3: Fix #232 by making the options passed to the sync plugin optional\n- 79b5a7b: Fix the pglite-sync package dependencies\n- Updated dependencies [fcb101c]\n- Updated dependencies [3ee5e60]\n- Updated dependencies [0dc34af]\n  - @electric-sql/pglite@0.2.5\n\n## 0.2.4\n\n### Patch Changes\n\n- 76d1908: Fix typo in `unsubscribe` API (was previously `unsuscribe`).\n- e9a2677: Change `action` header to `operation` to match the Electric API.\n- Updated dependencies [113aa56]\n  - @electric-sql/pglite@0.2.4\n\n## 0.2.3\n\n### Patch Changes\n\n- Updated dependencies [d8ef285]\n  - @electric-sql/pglite@0.2.3\n\n## 0.2.2\n\n### Patch Changes\n\n- b7917db: Fix pglite-sync package which incorrectly pointed to ./build not ./dist\n- Updated dependencies [be41880]\n  - @electric-sql/pglite@0.2.2\n\n## 0.2.1\n\n### Patch Changes\n\n- Updated dependencies [2cc39ff]\n  - @electric-sql/pglite@0.2.1\n"
  },
  {
    "path": "packages/pglite-sync/README.md",
    "content": "# PGlite ElectricSQL Sync Plugin\n\nA [sync plugin](https://pglite.dev/docs/sync) for [PGlite](https://pglite.dev/) using [ElectricSQL](https://electric-sql.com/). Full documentation is available at [pglite.dev/docs/sync](https://pglite.dev/docs/sync).\n\nTo install:\n\n```sh\nnpm install @electric-sql/pglite-sync\n```\n\nThen add it to you PGlite instance and create any local tables needed:\n\n```ts\nimport { electricSync } from '@electric-sql/pglite-sync'\n\nconst pg = await PGlite.create({\n  extensions: {\n    electric: electricSync(),\n  },\n})\n\nawait pg.exec(`\n  CREATE TABLE IF NOT EXISTS todo (\n    id SERIAL PRIMARY KEY,\n    task TEXT,\n    done BOOLEAN\n  );\n`)\n```\n\nYou can sync data from Electric using either the single table or multi-table API:\n\n### Single Table Sync\n\nUse `syncShapeToTable` to sync a single table:\n\n```ts\nconst shape = await pg.electric.syncShapeToTable({\n  shape: { url: 'http://localhost:3000/v1/shape', table: 'todo' },\n  shapeKey: 'todo', // or null if the shape state does not need to be persisted\n  table: 'todo',\n  primaryKey: ['id'],\n  onError: (error) => {\n    console.error('Shape sync error', error)\n  }\n})\n```\n\n### Multi-Table Sync\n\nThe multi-table API is useful when you need to sync related tables together, ensuring consistency across multiple tables by syncing updates that happened in as single transaction in Postgres within a single transaction in PGLite.\n\nUse `syncShapesToTables` to sync multiple tables simultaneously:\n\n```ts\nconst sync = await pg.electric.syncShapesToTables({\n  shapes: {\n    todos: {\n      shape: { url: 'http://localhost:3000/v1/shape', table: 'todo' },\n      table: 'todo',\n      primaryKey: ['id'],\n    },\n    users: {\n      shape: { url: 'http://localhost:3000/v1/shape', table: 'users' },\n      table: 'users',\n      primaryKey: ['id'],\n    }\n  },\n  key: 'my-sync', // or null if the sync state does not need to be persisted\n  onInitialSync: () => {\n    console.log('Initial sync complete')\n  },\n  onError: (error) => {\n    console.error('Sync error', error)\n  }\n})\n\n// Unsubscribe when done\nsync.unsubscribe()\n```\n"
  },
  {
    "path": "packages/pglite-sync/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  {\n    ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'],\n  },\n  {\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n        ...globals.node,\n      },\n    },\n    rules: {\n      ...rootConfig.rules,\n      '@typescript-eslint/no-explicit-any': 'off',\n    },\n  },\n]\n"
  },
  {
    "path": "packages/pglite-sync/example/README.md",
    "content": "# PGlite Electric Sync Example\n\nTo run the electric server:\n\n```\ndocker compose up\n```\n\nAnd start a http server in the `./packages` dir:\n\n```sh\npython3 -m http.server\n```\n\nOpen `http://localhost:8000/pglite-sync/example/index.html`.\n\nThen connect with `psql` and insert, update, or delete rows in \nthe `test` table.\n\n```sh\npsql postgresql://postgres:password@localhost:54321/electric\n```\n\n```sql\nINSERT INTO test (name) VALUES ('Hello, World!');\nUPDATE test SET name = 'Hello, Electric!' WHERE id = 1;\nDELETE FROM test WHERE id = 1;\n```\n"
  },
  {
    "path": "packages/pglite-sync/example/docker-compose.yaml",
    "content": "version: \"3.3\"\nname: \"electric_quickstart\"\n\nservices:\n  postgres:\n    image: postgres:16\n    environment:\n      POSTGRES_DB: electric\n      POSTGRES_USER: postgres\n      POSTGRES_PASSWORD: password\n    ports:\n      - 54321:5432\n    tmpfs:\n      - /var/lib/postgresql/data\n      - /tmp\n    volumes:\n      - ./init.sql:/docker-entrypoint-initdb.d/init.sql\n    command:\n      - -c\n      - listen_addresses=*\n      - -c\n      - wal_level=logical\n\n  electric:\n    image: electricsql/electric\n    environment:\n      DATABASE_URL: postgresql://postgres:password@postgres:5432/electric?sslmode=disable\n      # Not suitable for production. Only use insecure mode in development or if you've otherwise secured the Electric API.\n      # See https://electric-sql.com/docs/guides/security\n      ELECTRIC_INSECURE: true\n    ports:\n      - \"3000:3000\"\n    depends_on:\n      - postgres"
  },
  {
    "path": "packages/pglite-sync/example/index.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>PGlite Electric Sync Example</title>\n    <link rel=\"stylesheet\" href=\"../../pglite/examples/styles.css\" />\n    <script src=\"../../pglite/examples/utils.js\"></script>\n    <script type=\"importmap\">\n      {\n        \"imports\": {\n          \"@electric-sql/pglite\": \"../../pglite/dist/index.js\",\n          \"@electric-sql/pglite/live\": \"../../pglite/dist/live/index.js\",\n          \"@electric-sql/pglite/sync\": \"../dist/index.js\",\n          \"@electric-sql/client\": \"../node_modules/@electric-sql/client/dist/index.browser.mjs\",\n          \"@electric-sql/experimental\": \"../node_modules/@electric-sql/experimental/dist/index.browser.mjs\"\n        }\n      }\n    </script>\n    <style>\n      #output {\n        font-family: monospace;\n        overflow: auto;\n        max-height: 250px;\n        border: 1px solid #eee;\n        border-radius: 0.5rem;\n        padding: 10px;\n        margin: 1rem 0;\n        font-size: 9px;\n        line-height: 11px;\n      }\n    </style>\n  </head>\n<body>\n<h1>PGlite Electric Sync Example</h1>\n<div id=\"output\"></div>\n<div class=\"script-plus-log\">\n<script type=\"module\">\n  import { PGlite } from \"@electric-sql/pglite\";\n  import { electricSync } from \"@electric-sql/pglite/sync\";\n  import { live } from \"@electric-sql/pglite/live\";\n\n  const pg = await PGlite.create({\n    extensions: {\n      live,\n      electric: electricSync({ debug: true }),\n    }\n  });\n  \n  await pg.exec(`\n    CREATE TABLE IF NOT EXISTS test (\n      id SERIAL PRIMARY KEY,\n      name TEXT\n    );\n  `);\n\n  console.log('Table created, starting sync...');\n\n  window.pg = pg;\n  \n  await pg.electric.syncShapeToTable({\n    shape: { url: \"http://localhost:3000/v1/shape\", params: { table: \"test\" } },\n    table: \"test\",\n    primaryKey: [\"id\"],\n  });\n\n  const output = document.getElementById(\"output\");\n\n  pg.live.query(\"SELECT * FROM test ORDER BY id;\", null, (res) => {\n    console.log(`Rendering update`);\n    output.textContent = JSON.stringify(res.rows, null, 2);\n  });\n</script>\n<div id=\"log\"></div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "packages/pglite-sync/example/init.sql",
    "content": "CREATE TABLE IF NOT EXISTS test (\n  id SERIAL PRIMARY KEY,\n  name TEXT\n);\n"
  },
  {
    "path": "packages/pglite-sync/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-sync\",\n  \"version\": \"0.5.1\",\n  \"description\": \"ElectricSQL Sync for PGlite\",\n  \"type\": \"module\",\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"client\",\n    \"pglite\",\n    \"sync\",\n    \"partial-replication\"\n  ],\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite.git\",\n    \"directory\": \"packages/pglite-sync\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"test\": \"vitest\",\n    \"test:e2e:up\": \"docker compose -f test-e2e/docker_compose.yaml up -d\",\n    \"test:e2e:down\": \"docker compose -f test-e2e/docker_compose.yaml down --volumes\",\n    \"test:e2e:reset\": \"pnpm test:e2e:down && pnpm test:e2e:up\",\n    \"test:e2e:run\": \"pnpm vitest --config vitest-e2e.config.ts\",\n    \"test:e2e\": \"pnpm test:e2e:reset && pnpm test:e2e:run && pnpm test:e2e:down\",\n    \"lint\": \"eslint ./src ./test --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write ./src ./test\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"pnpm lint && prettier --check ./src ./test\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"types\": \"dist/index.d.ts\",\n  \"main\": \"dist/index.cjs\",\n  \"module\": \"dist/index.js\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"dependencies\": {\n    \"@electric-sql/client\": \"^1.0.9\",\n    \"@electric-sql/experimental\": \"^1.0.9\"\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@eslint-react/eslint-plugin\": \"^1.14.3\",\n    \"@types/node\": \"^20.16.11\",\n    \"@vitejs/plugin-react\": \"^4.3.2\",\n    \"globals\": \"^15.11.0\",\n    \"pg\": \"^8.14.0\",\n    \"vitest\": \"^2.1.2\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:0.4.1\"\n  }\n}\n"
  },
  {
    "path": "packages/pglite-sync/src/apply.ts",
    "content": "import { ChangeMessage } from '@electric-sql/client'\nimport type { PGliteInterface, Transaction } from '@electric-sql/pglite'\nimport type { MapColumns, InsertChangeMessage } from './types'\n\nexport interface ApplyMessageToTableOptions {\n  pg: PGliteInterface | Transaction\n  table: string\n  schema?: string\n  message: ChangeMessage<any>\n  mapColumns?: MapColumns\n  primaryKey: string[]\n  debug: boolean\n}\n\nexport async function applyMessageToTable({\n  pg,\n  table,\n  schema = 'public',\n  message,\n  mapColumns,\n  primaryKey,\n  debug,\n}: ApplyMessageToTableOptions) {\n  const data = mapColumns ? doMapColumns(mapColumns, message) : message.value\n\n  switch (message.headers.operation) {\n    case 'insert': {\n      if (debug) console.log('inserting', data)\n      const columns = Object.keys(data)\n      return await pg.query(\n        `\n            INSERT INTO \"${schema}\".\"${table}\"\n            (${columns.map((s) => '\"' + s + '\"').join(', ')})\n            VALUES\n            (${columns.map((_v, i) => '$' + (i + 1)).join(', ')})\n          `,\n        columns.map((column) => data[column]),\n      )\n    }\n\n    case 'update': {\n      if (debug) console.log('updating', data)\n      const columns = Object.keys(data).filter(\n        // we don't update the primary key, they are used to identify the row\n        (column) => !primaryKey.includes(column),\n      )\n      if (columns.length === 0) return // nothing to update\n      return await pg.query(\n        `\n            UPDATE \"${schema}\".\"${table}\"\n            SET ${columns\n              .map((column, i) => '\"' + column + '\" = $' + (i + 1))\n              .join(', ')}\n            WHERE ${primaryKey\n              .map(\n                (column, i) =>\n                  '\"' + column + '\" = $' + (columns.length + i + 1),\n              )\n              .join(' AND ')}\n          `,\n        [\n          ...columns.map((column) => data[column]),\n          ...primaryKey.map((column) => data[column]),\n        ],\n      )\n    }\n\n    case 'delete': {\n      if (debug) console.log('deleting', data)\n      return await pg.query(\n        `\n            DELETE FROM \"${schema}\".\"${table}\"\n            WHERE ${primaryKey\n              .map((column, i) => '\"' + column + '\" = $' + (i + 1))\n              .join(' AND ')}\n          `,\n        [...primaryKey.map((column) => data[column])],\n      )\n    }\n  }\n}\n\nexport interface BulkApplyMessagesToTableOptions {\n  pg: PGliteInterface | Transaction\n  table: string\n  schema?: string\n  messages: InsertChangeMessage[]\n  mapColumns?: MapColumns\n  debug: boolean\n}\n\nexport async function applyInsertsToTable({\n  pg,\n  table,\n  schema = 'public',\n  messages,\n  mapColumns,\n  debug,\n}: BulkApplyMessagesToTableOptions) {\n  // Map the messages to the data to be inserted\n  const data: Record<string, object>[] = messages.map((message) =>\n    mapColumns ? doMapColumns(mapColumns, message) : message.value,\n  )\n\n  if (debug) console.log('inserting', data)\n\n  // Get column names from the first message\n  const columns = Object.keys(data[0])\n\n  // Calculate size of a single value\n  const getValueSize = (value: any): number => {\n    if (value === null) return 0\n\n    // Handle binary data types\n    if (value instanceof ArrayBuffer) return value.byteLength\n    if (value instanceof Blob) return value.size\n    if (value instanceof Uint8Array) return value.byteLength\n    if (value instanceof DataView) return value.byteLength\n    if (ArrayBuffer.isView(value)) return value.byteLength\n\n    // Handle regular types\n    switch (typeof value) {\n      case 'string':\n        return value.length\n      case 'number':\n        return 8 // assuming 8 bytes for numbers\n      case 'boolean':\n        return 1\n      default:\n        if (value instanceof Date) return 8\n        return value?.toString()?.length || 0\n    }\n  }\n\n  // Calculate size of a single row's values in bytes\n  const getRowSize = (row: Record<string, any>): number => {\n    return columns.reduce((size, column) => {\n      const value = row[column]\n      if (value === null) return size\n\n      // Handle arrays\n      if (Array.isArray(value)) {\n        if (value.length === 0) return size\n\n        // Check first element to determine array type\n        const firstElement = value[0]\n\n        // Handle homogeneous arrays\n        switch (typeof firstElement) {\n          case 'number':\n            return size + value.length * 8 // 8 bytes per number\n          case 'string':\n            return (\n              size + value.reduce((arrSize, str) => arrSize + str.length, 0)\n            )\n          case 'boolean':\n            return size + value.length // 1 byte per boolean\n          default:\n            if (firstElement instanceof Date) {\n              return size + value.length * 8 // 8 bytes per date\n            }\n            // Handle mixed or other types of arrays (including binary data)\n            return (\n              size +\n              value.reduce((arrSize, item) => arrSize + getValueSize(item), 0)\n            )\n        }\n      }\n\n      return size + getValueSize(value)\n    }, 0)\n  }\n\n  const MAX_PARAMS = 32_000\n  const MAX_BYTES = 50 * 1024 * 1024 // 50MB\n\n  // Helper function to execute a batch insert\n  const executeBatch = async (batch: Record<string, any>[]) => {\n    const sql = `\n      INSERT INTO \"${schema}\".\"${table}\"\n      (${columns.map((s) => `\"${s}\"`).join(', ')})\n      VALUES\n      ${batch.map((_, j) => `(${columns.map((_v, k) => '$' + (j * columns.length + k + 1)).join(', ')})`).join(', ')}\n    `\n    const values = batch.flatMap((message) =>\n      columns.map((column) => message[column]),\n    )\n    await pg.query(sql, values)\n  }\n\n  let currentBatch: Record<string, any>[] = []\n  let currentBatchSize = 0\n  let currentBatchParams = 0\n\n  for (let i = 0; i < data.length; i++) {\n    const row = data[i]\n    const rowSize = getRowSize(row)\n    const rowParams = columns.length\n\n    // Check if adding this row would exceed either limit\n    if (\n      currentBatch.length > 0 &&\n      (currentBatchSize + rowSize > MAX_BYTES ||\n        currentBatchParams + rowParams > MAX_PARAMS)\n    ) {\n      if (debug && currentBatchSize + rowSize > MAX_BYTES) {\n        console.log('batch size limit exceeded, executing batch')\n      }\n      if (debug && currentBatchParams + rowParams > MAX_PARAMS) {\n        console.log('batch params limit exceeded, executing batch')\n      }\n      await executeBatch(currentBatch)\n\n      // Reset batch\n      currentBatch = []\n      currentBatchSize = 0\n      currentBatchParams = 0\n    }\n\n    // Add row to current batch\n    currentBatch.push(row)\n    currentBatchSize += rowSize\n    currentBatchParams += rowParams\n  }\n\n  // Execute final batch if there are any remaining rows\n  if (currentBatch.length > 0) {\n    await executeBatch(currentBatch)\n  }\n\n  if (debug) console.log(`Inserted ${messages.length} rows using INSERT`)\n}\n\nexport async function applyMessagesToTableWithJson({\n  pg,\n  table,\n  schema = 'public',\n  messages,\n  mapColumns,\n  debug,\n}: BulkApplyMessagesToTableOptions) {\n  if (debug) console.log('applying messages with json_to_recordset')\n\n  // Map the messages to the data to be inserted\n  const data: Record<string, object>[] = messages.map((message) =>\n    mapColumns ? doMapColumns(mapColumns, message) : message.value,\n  )\n  const columns = (\n    await pg.query<{\n      column_name: string\n      udt_name: string\n      data_type: string\n    }>(\n      `\n        SELECT column_name, udt_name, data_type\n        FROM information_schema.columns\n        WHERE table_name = $1 AND table_schema = $2\n      `,\n      [table, schema],\n    )\n  ).rows.filter((x) =>\n    Object.prototype.hasOwnProperty.call(data[0], x.column_name),\n  )\n\n  const MAX = 10_000\n  for (let i = 0; i < data.length; i += MAX) {\n    const maxdata = data.slice(i, i + MAX)\n    await pg.query(\n      `\n        INSERT INTO \"${schema}\".\"${table}\"\n        SELECT x.* from json_to_recordset($1) as x(${columns\n          .map(\n            (x) =>\n              `${x.column_name} ${x.udt_name.replace(/^_/, '')}` +\n              (x.data_type === 'ARRAY' ? `[]` : ''),\n          )\n          .join(', ')})\n      `,\n      [maxdata],\n    )\n  }\n\n  if (debug)\n    console.log(`Inserted ${messages.length} rows using json_to_recordset`)\n}\n\nexport async function applyMessagesToTableWithCopy({\n  pg,\n  table,\n  schema = 'public',\n  messages,\n  mapColumns,\n  debug,\n}: BulkApplyMessagesToTableOptions) {\n  if (debug) console.log('applying messages with COPY')\n\n  // Map the messages to the data to be inserted\n  const data: Record<string, any>[] = messages.map((message) =>\n    mapColumns ? doMapColumns(mapColumns, message) : message.value,\n  )\n\n  // Get column names from the first message\n  const columns = Object.keys(data[0])\n\n  // Create CSV data\n  const csvData = data\n    .map((message) => {\n      return columns\n        .map((column) => {\n          const value = message[column]\n          // Escape double quotes and wrap in quotes if necessary\n          if (\n            typeof value === 'string' &&\n            (value.includes(',') || value.includes('\"') || value.includes('\\n'))\n          ) {\n            return `\"${value.replace(/\"/g, '\"\"')}\"`\n          }\n          return value === null ? '\\\\N' : value\n        })\n        .join(',')\n    })\n    .join('\\n')\n  const csvBlob = new Blob([csvData], { type: 'text/csv' })\n\n  // Perform COPY FROM\n  await pg.query(\n    `\n      COPY \"${schema}\".\"${table}\" (${columns.map((c) => `\"${c}\"`).join(', ')})\n      FROM '/dev/blob'\n      WITH (FORMAT csv, NULL '\\\\N')\n    `,\n    [],\n    {\n      blob: csvBlob,\n    },\n  )\n\n  if (debug) console.log(`Inserted ${messages.length} rows using COPY`)\n}\n\nfunction doMapColumns(\n  mapColumns: MapColumns,\n  message: ChangeMessage<any>,\n): Record<string, any> {\n  if (typeof mapColumns === 'function') {\n    return mapColumns(message)\n  }\n  const mappedColumns: Record<string, any> = {}\n  for (const [key, value] of Object.entries(mapColumns)) {\n    mappedColumns[key] = message.value[value]\n  }\n  return mappedColumns\n}\n"
  },
  {
    "path": "packages/pglite-sync/src/index.ts",
    "content": "import type { Row } from '@electric-sql/client'\nimport {\n  ChangeMessage,\n  isChangeMessage,\n  isControlMessage,\n  ShapeStreamOptions,\n} from '@electric-sql/client'\nimport { MultiShapeStream } from '@electric-sql/experimental'\nimport type { Extension, PGliteInterface } from '@electric-sql/pglite'\nimport {\n  migrateSubscriptionMetadataTables,\n  getSubscriptionState,\n  updateSubscriptionState,\n  deleteSubscriptionState,\n  SubscriptionState,\n} from './subscriptionState'\nimport type {\n  ElectricSyncOptions,\n  SyncShapesToTablesOptions,\n  SyncShapesToTablesResult,\n  SyncShapeToTableOptions,\n  SyncShapeToTableResult,\n  InsertChangeMessage,\n  Lsn,\n} from './types'\nimport {\n  applyInsertsToTable,\n  applyMessageToTable,\n  applyMessagesToTableWithCopy,\n  applyMessagesToTableWithJson,\n} from './apply'\n\nexport * from './types'\n\nasync function createPlugin(\n  pg: PGliteInterface,\n  options?: ElectricSyncOptions,\n) {\n  const debug = options?.debug ?? false\n  const metadataSchema = options?.metadataSchema ?? 'electric'\n  const streams: Array<{\n    stream: MultiShapeStream<Record<string, Row<unknown>>>\n    aborter: AbortController\n  }> = []\n\n  // We keep an in-memory lock per table such that two\n  // shapes are not synced into one table - this will be\n  // resolved by using reference counting in shadow tables\n  const shapePerTableLock = new Map<string, void>()\n\n  let initMetadataTablesDone = false\n  const initMetadataTables = async () => {\n    if (initMetadataTablesDone) return\n    initMetadataTablesDone = true\n    await migrateSubscriptionMetadataTables({\n      pg,\n      metadataSchema,\n    })\n  }\n\n  const syncShapesToTables = async ({\n    key,\n    shapes,\n    useCopy = false, // DEPRECATED: use initialInsertMethod instead\n    initialInsertMethod = 'insert',\n    onInitialSync,\n    onError,\n  }: SyncShapesToTablesOptions): Promise<SyncShapesToTablesResult> => {\n    let unsubscribed = false\n    await initMetadataTables()\n\n    Object.values(shapes)\n      .filter((shape) => !shape.onMustRefetch) // Shapes with onMustRefetch bypass the lock\n      .forEach((shape) => {\n        if (shapePerTableLock.has(shape.table)) {\n          throw new Error('Already syncing shape for table ' + shape.table)\n        }\n        shapePerTableLock.set(shape.table)\n      })\n\n    let subState: SubscriptionState | null = null\n\n    // if key is not null, ensure persistence of subscription state\n    // is possible and check if it is already persisted\n    if (key !== null) {\n      subState = await getSubscriptionState({\n        pg,\n        metadataSchema,\n        subscriptionKey: key,\n      })\n      if (debug && subState) {\n        console.log('resuming from subscription state', subState)\n      }\n    }\n\n    // If it's a new subscription there is no state to resume from\n    const isNewSubscription = subState === null\n\n    // We need to handle the old useCopy option\n    // We check if it's set to true and initialInsertMethod is it's default value\n    if (useCopy && initialInsertMethod === 'insert') {\n      initialInsertMethod = 'csv'\n      console.warn(\n        'The useCopy option is deprecated and will be removed in a future version. Use initialInsertMethod instead.',\n      )\n    }\n\n    // If it's a new subscription we can do a `COPY FROM` to insert the initial data\n    // TODO: in future when we can have multiple shapes on the same table we will need\n    // to make sure we only do a `COPY FROM` on the first shape on the table as they\n    // may overlap and so the insert logic will be wrong.\n    let useInsert = !isNewSubscription || initialInsertMethod === 'insert'\n\n    // Track if onInitialSync has been called\n    let onInitialSyncCalled = false\n\n    // Map of shape name to lsn to changes\n    // We accumulate changes for each lsn and then apply them all at once\n    const changes = new Map<string, Map<Lsn, ChangeMessage<Row<unknown>>[]>>(\n      Object.keys(shapes).map((key) => [key, new Map()]),\n    )\n\n    // We track the highest completely buffered lsn for each shape\n    const completeLsns = new Map<string, Lsn>(\n      Object.keys(shapes).map((key) => [key, BigInt(-1)]),\n    )\n\n    // We track which shapes need a truncate\n    // These are truncated at the start of the next commit\n    const truncateNeeded = new Set<string>()\n\n    // We also have to track the last lsn that we have committed\n    // This is across all shapes\n    const lastCommittedLsn: Lsn = subState?.last_lsn ?? BigInt(-1)\n\n    // We need our own aborter to be able to abort the streams but still accept the\n    // signals from the user for each shape, and so we monitor the user provided signal\n    // for each shape and abort our own aborter when the user signal is aborted.\n    const aborter = new AbortController()\n    Object.values(shapes)\n      .filter((shapeOptions) => !!shapeOptions.shape.signal)\n      .forEach((shapeOptions) => {\n        shapeOptions.shape.signal!.addEventListener(\n          'abort',\n          () => aborter.abort(),\n          {\n            once: true,\n          },\n        )\n      })\n\n    const multiShapeStream = new MultiShapeStream<Record<string, Row<unknown>>>(\n      {\n        shapes: Object.fromEntries(\n          Object.entries(shapes).map(([key, shapeOptions]) => {\n            const shapeMetadata = subState?.shape_metadata[key]\n            return [\n              key,\n              {\n                ...shapeOptions.shape,\n                ...(shapeMetadata\n                  ? {\n                      offset: shapeMetadata.offset,\n                      handle: shapeMetadata.handle,\n                    }\n                  : {}),\n                signal: aborter.signal,\n              } satisfies ShapeStreamOptions,\n            ]\n          }),\n        ),\n      },\n    )\n\n    const insertMethods = {\n      json: applyMessagesToTableWithJson,\n      csv: applyMessagesToTableWithCopy,\n      useCopy: applyMessagesToTableWithCopy,\n      insert: applyInsertsToTable,\n    } as const\n\n    const commitUpToLsn = async (targetLsn: Lsn) => {\n      // We need to collect all the messages for each shape that we need to commit\n      const messagesToCommit = new Map<string, ChangeMessage<Row<unknown>>[]>(\n        Object.keys(shapes).map((shapeName) => [shapeName, []]),\n      )\n      for (const [shapeName, shapeChanges] of changes.entries()) {\n        const messagesForShape = messagesToCommit.get(shapeName)!\n        for (const lsn of shapeChanges.keys()) {\n          if (lsn <= targetLsn) {\n            for (const message of shapeChanges.get(lsn)!) {\n              messagesForShape.push(message)\n            }\n            shapeChanges.delete(lsn)\n          }\n        }\n      }\n\n      await pg.transaction(async (tx) => {\n        if (debug) {\n          console.time('commit')\n        }\n\n        // Set the syncing flag to true during this transaction so that\n        // user defined triggers on the table are able to chose how to run\n        // during a sync\n        await tx.exec(`SET LOCAL ${metadataSchema}.syncing = true;`)\n\n        for (const [shapeName, initialMessages] of messagesToCommit.entries()) {\n          const shape = shapes[shapeName]\n          let messages = initialMessages\n\n          // If we need to truncate the table, do so\n          if (truncateNeeded.has(shapeName)) {\n            if (debug) {\n              console.log('truncating table', shape.table)\n            }\n            if (shape.onMustRefetch) {\n              await shape.onMustRefetch(tx)\n            } else {\n              const schema = shape.schema || 'public'\n              await tx.exec(`DELETE FROM \"${schema}\".\"${shape.table}\";`)\n            }\n            truncateNeeded.delete(shapeName)\n          }\n\n          // Apply the changes to the table\n          if (!useInsert) {\n            // We can do a `COPY FROM`/json_to_recordset to insert the initial data\n            // Split messageAggregator into initial inserts and remaining messages\n            const initialInserts: InsertChangeMessage[] = []\n            const remainingMessages: ChangeMessage<any>[] = []\n            let foundNonInsert = false\n            for (const message of messages) {\n              if (!foundNonInsert && message.headers.operation === 'insert') {\n                initialInserts.push(message as InsertChangeMessage)\n              } else {\n                foundNonInsert = true\n                remainingMessages.push(message)\n              }\n            }\n            if (initialInserts.length > 0 && initialInsertMethod === 'csv') {\n              // As `COPY FROM` doesn't trigger a NOTIFY, we pop\n              // the last insert message and and add it to the be beginning\n              // of the remaining messages to be applied after the `COPY FROM`\n              remainingMessages.unshift(initialInserts.pop()!)\n            }\n            messages = remainingMessages\n\n            // Do the `COPY FROM`/json_to_recordset with initial inserts\n            if (initialInserts.length > 0) {\n              await insertMethods[initialInsertMethod]({\n                pg: tx,\n                table: shape.table,\n                schema: shape.schema,\n                messages: initialInserts as InsertChangeMessage[],\n                mapColumns: shape.mapColumns,\n                debug,\n              })\n\n              // We don't want to do a `COPY FROM`/json_to_recordset again after that\n              useInsert = true\n            }\n          }\n\n          const bulkInserts: InsertChangeMessage[] = []\n          let change: ChangeMessage<any> | null = null\n          const messagesLength = messages.length\n          for (let i = 0; i < messagesLength; i++) {\n            const changeMessage = messages[i]\n            if (changeMessage.headers.operation === 'insert') {\n              bulkInserts.push(changeMessage as InsertChangeMessage)\n            } else {\n              change = changeMessage\n            }\n\n            if (change || i === messagesLength - 1) {\n              if (bulkInserts.length > 0) {\n                await applyInsertsToTable({\n                  pg: tx,\n                  table: shape.table,\n                  schema: shape.schema,\n                  messages: bulkInserts as InsertChangeMessage[],\n                  mapColumns: shape.mapColumns,\n                  debug,\n                })\n                bulkInserts.length = 0\n              }\n              if (change) {\n                await applyMessageToTable({\n                  pg: tx,\n                  table: shape.table,\n                  schema: shape.schema,\n                  message: change,\n                  mapColumns: shape.mapColumns,\n                  primaryKey: shape.primaryKey,\n                  debug,\n                })\n                change = null\n              }\n            }\n          }\n        }\n\n        if (key) {\n          await updateSubscriptionState({\n            pg: tx,\n            metadataSchema,\n            subscriptionKey: key,\n            shapeMetadata: Object.fromEntries(\n              Object.keys(shapes).map((shapeName) => [\n                shapeName,\n                {\n                  handle: multiShapeStream.shapes[shapeName].shapeHandle!,\n                  offset: multiShapeStream.shapes[shapeName].lastOffset,\n                },\n              ]),\n            ),\n            lastLsn: targetLsn,\n            debug,\n          })\n        }\n        if (unsubscribed) {\n          await tx.rollback()\n        }\n      })\n      if (debug) console.timeEnd('commit')\n      if (\n        onInitialSync &&\n        !onInitialSyncCalled &&\n        multiShapeStream.isUpToDate\n      ) {\n        onInitialSync()\n        onInitialSyncCalled = true\n      }\n    }\n\n    multiShapeStream.subscribe(async (messages) => {\n      if (unsubscribed) {\n        return\n      }\n      if (debug) {\n        console.log('received messages', messages.length)\n      }\n      messages.forEach((message) => {\n        const lastCommittedLsnForShape =\n          completeLsns.get(message.shape) ?? BigInt(-1) // we default to -1 if there are no previous changes\n        if (isChangeMessage(message)) {\n          const shapeChanges = changes.get(message.shape)!\n          const lsn =\n            typeof message.headers.lsn === 'string'\n              ? BigInt(message.headers.lsn)\n              : BigInt(0) // we default to 0 if there no lsn on the message\n          if (lsn <= lastCommittedLsnForShape) {\n            // We are replaying changes / have already seen this lsn\n            // skip and move on to the next message\n            return\n          }\n          const isLastOfLsn =\n            (message.headers.last as boolean | undefined) ?? false\n          if (!shapeChanges.has(lsn)) {\n            shapeChanges.set(lsn, [])\n          }\n          shapeChanges.get(lsn)!.push(message)\n          if (isLastOfLsn) {\n            completeLsns.set(message.shape, lsn)\n          }\n        } else if (isControlMessage(message)) {\n          switch (message.headers.control) {\n            case 'up-to-date': {\n              // Update the complete lsn for this shape\n              if (debug) {\n                console.log('received up-to-date', message)\n              }\n              if (typeof message.headers.global_last_seen_lsn !== `string`) {\n                throw new Error(`global_last_seen_lsn is not a string`)\n              }\n              const globalLastSeenLsn = BigInt(\n                message.headers.global_last_seen_lsn,\n              )\n              if (globalLastSeenLsn <= lastCommittedLsnForShape) {\n                // We are replaying changes / have already seen this lsn\n                // skip and move on to the next message\n                return\n              }\n              completeLsns.set(message.shape, globalLastSeenLsn)\n              break\n            }\n            case 'must-refetch': {\n              // Reset the changes for this shape\n              if (debug) {\n                console.log('received must-refetch', message)\n              }\n              const shapeChanges = changes.get(message.shape)!\n              shapeChanges.clear()\n              completeLsns.set(message.shape, BigInt(-1))\n              // Track that we need to truncate the table for this shape\n              truncateNeeded.add(message.shape)\n              break\n            }\n          }\n        }\n      })\n      const lowestCommittedLsn = Array.from(completeLsns.values()).reduce(\n        (m, e) => (e < m ? e : m), // Min of all complete lsn\n      )\n\n      // Normal commit needed\n      const isCommitNeeded = lowestCommittedLsn > lastCommittedLsn\n      // We've had a must-refetch and are catching up on one of the shape\n      const isMustRefetchAndCatchingUp =\n        lowestCommittedLsn >= lastCommittedLsn && truncateNeeded.size > 0\n\n      if (isCommitNeeded || isMustRefetchAndCatchingUp) {\n        // We have new changes to commit\n        commitUpToLsn(lowestCommittedLsn)\n        // Await a timeout to start a new task and allow other connections to do work\n        await new Promise((resolve) => setTimeout(resolve))\n      }\n    }, onError)\n\n    streams.push({\n      stream: multiShapeStream,\n      aborter,\n    })\n    const unsubscribe = () => {\n      if (debug) {\n        console.log('unsubscribing')\n      }\n      unsubscribed = true\n      multiShapeStream.unsubscribeAll()\n      aborter.abort()\n      for (const shape of Object.values(shapes)) {\n        shapePerTableLock.delete(shape.table)\n      }\n    }\n    return {\n      unsubscribe,\n      get isUpToDate() {\n        return multiShapeStream.isUpToDate\n      },\n      streams: Object.fromEntries(\n        Object.keys(shapes).map((shapeName) => [\n          shapeName,\n          multiShapeStream.shapes[shapeName],\n        ]),\n      ),\n    }\n  }\n\n  const syncShapeToTable = async (\n    options: SyncShapeToTableOptions,\n  ): Promise<SyncShapeToTableResult> => {\n    const multiShapeSub = await syncShapesToTables({\n      shapes: {\n        shape: {\n          shape: options.shape,\n          table: options.table,\n          schema: options.schema,\n          mapColumns: options.mapColumns,\n          primaryKey: options.primaryKey,\n          onMustRefetch: options.onMustRefetch,\n        },\n      },\n      key: options.shapeKey,\n      useCopy: options.useCopy, // DEPRECATED: use initialInsertMethod instead\n      initialInsertMethod: options.initialInsertMethod,\n      onInitialSync: options.onInitialSync,\n      onError: options.onError,\n    })\n    return {\n      unsubscribe: multiShapeSub.unsubscribe,\n      get isUpToDate() {\n        return multiShapeSub.isUpToDate\n      },\n      stream: multiShapeSub.streams.shape,\n    }\n  }\n  const deleteSubscription = async (key: string) => {\n    await deleteSubscriptionState({\n      pg,\n      metadataSchema,\n      subscriptionKey: key,\n    })\n  }\n\n  const namespaceObj = {\n    initMetadataTables,\n    syncShapesToTables,\n    syncShapeToTable,\n    deleteSubscription,\n  }\n\n  const close = async () => {\n    for (const { stream, aborter } of streams) {\n      stream.unsubscribeAll()\n      aborter.abort()\n    }\n  }\n\n  return {\n    namespaceObj,\n    close,\n  }\n}\n\nexport type SyncNamespaceObj = Awaited<\n  ReturnType<typeof createPlugin>\n>['namespaceObj']\n\nexport type PGliteWithSync = PGliteInterface & {\n  sync: SyncNamespaceObj\n}\n\nexport function electricSync(options?: ElectricSyncOptions) {\n  return {\n    name: 'ElectricSQL Sync',\n    setup: async (pg: PGliteInterface) => {\n      const { namespaceObj, close } = await createPlugin(pg, options)\n      return {\n        namespaceObj,\n        close,\n      }\n    },\n  } satisfies Extension\n}\n"
  },
  {
    "path": "packages/pglite-sync/src/subscriptionState.ts",
    "content": "import type { PGliteInterface, Transaction } from '@electric-sql/pglite'\nimport type { Offset } from '@electric-sql/client'\nimport { SubscriptionKey, Lsn } from './types'\n\nconst subscriptionTableName = `subscriptions_metadata`\n\nexport interface SubscriptionState {\n  key: SubscriptionKey\n  shape_metadata: Record<string, ShapeSubscriptionState>\n  last_lsn: Lsn\n}\n\nexport interface ShapeSubscriptionState {\n  handle: string\n  offset: Offset\n}\n\nexport interface GetSubscriptionStateOptions {\n  readonly pg: PGliteInterface | Transaction\n  readonly metadataSchema: string\n  readonly subscriptionKey: SubscriptionKey\n}\n\n/**\n * Get the subscription state for a given key.\n * @param options - The options for the subscription state.\n * @returns The subscription state or null if it does not exist.\n */\nexport async function getSubscriptionState({\n  pg,\n  metadataSchema,\n  subscriptionKey,\n}: GetSubscriptionStateOptions): Promise<SubscriptionState | null> {\n  const result = await pg.query<SubscriptionState>(\n    `\n      SELECT key, shape_metadata, last_lsn\n      FROM ${subscriptionMetadataTableName(metadataSchema)}\n      WHERE key = $1\n    `,\n    [subscriptionKey],\n  )\n\n  if (result.rows.length === 0) {\n    return null\n  } else if (result.rows.length > 1) {\n    throw new Error(`Multiple subscriptions found for key: ${subscriptionKey}`)\n  }\n\n  const res = result.rows[0]\n\n  if (typeof res.last_lsn === 'string') {\n    return {\n      ...res,\n      last_lsn: BigInt(res.last_lsn),\n    }\n  } else {\n    throw new Error(`Invalid last_lsn type: ${typeof res.last_lsn}`)\n  }\n}\n\nexport interface UpdateSubscriptionStateOptions {\n  pg: PGliteInterface | Transaction\n  metadataSchema: string\n  subscriptionKey: SubscriptionKey\n  shapeMetadata: Record<string, ShapeSubscriptionState>\n  lastLsn: Lsn\n  debug?: boolean\n}\n\n/**\n * Update the subscription state for a given key.\n * @param options - The options for the subscription state.\n */\nexport async function updateSubscriptionState({\n  pg,\n  metadataSchema,\n  subscriptionKey,\n  shapeMetadata,\n  lastLsn,\n  debug,\n}: UpdateSubscriptionStateOptions) {\n  if (debug) {\n    console.log(\n      'updating subscription state',\n      subscriptionKey,\n      shapeMetadata,\n      lastLsn,\n    )\n  }\n  await pg.query(\n    `\n      INSERT INTO ${subscriptionMetadataTableName(metadataSchema)}\n        (key, shape_metadata, last_lsn)\n      VALUES\n        ($1, $2, $3)\n      ON CONFLICT(key)\n      DO UPDATE SET\n        shape_metadata = EXCLUDED.shape_metadata,\n        last_lsn = EXCLUDED.last_lsn;\n    `,\n    [subscriptionKey, shapeMetadata, lastLsn.toString()],\n  )\n}\n\nexport interface DeleteSubscriptionStateOptions {\n  pg: PGliteInterface | Transaction\n  metadataSchema: string\n  subscriptionKey: SubscriptionKey\n}\n\n/**\n * Delete the subscription state for a given key.\n * @param options - The options for the subscription state.\n */\nexport async function deleteSubscriptionState({\n  pg,\n  metadataSchema,\n  subscriptionKey,\n}: DeleteSubscriptionStateOptions) {\n  await pg.query(\n    `DELETE FROM ${subscriptionMetadataTableName(metadataSchema)} WHERE key = $1`,\n    [subscriptionKey],\n  )\n}\n\nexport interface MigrateSubscriptionMetadataTablesOptions {\n  pg: PGliteInterface | Transaction\n  metadataSchema: string\n}\n\n/**\n * Migrate the subscription metadata tables.\n * @param options - The options for the subscription metadata tables.\n */\nexport async function migrateSubscriptionMetadataTables({\n  pg,\n  metadataSchema,\n}: MigrateSubscriptionMetadataTablesOptions) {\n  await pg.exec(\n    `\n      SET ${metadataSchema}.syncing = false;\n      CREATE SCHEMA IF NOT EXISTS \"${metadataSchema}\";\n      CREATE TABLE IF NOT EXISTS ${subscriptionMetadataTableName(metadataSchema)} (\n        key TEXT PRIMARY KEY,\n        shape_metadata JSONB NOT NULL,\n        last_lsn TEXT NOT NULL\n      );\n    `,\n  )\n}\n\nfunction subscriptionMetadataTableName(metadataSchema: string) {\n  return `\"${metadataSchema}\".\"${subscriptionTableName}\"`\n}\n"
  },
  {
    "path": "packages/pglite-sync/src/types.ts",
    "content": "import type {\n  ShapeStreamOptions,\n  ShapeStreamInterface,\n  Row,\n  ChangeMessage,\n  FetchError,\n} from '@electric-sql/client'\nimport { Transaction } from '@electric-sql/pglite'\n\nexport type Lsn = bigint\n\nexport type MapColumnsMap = Record<string, string>\nexport type MapColumnsFn = (message: ChangeMessage<any>) => Record<string, any>\nexport type MapColumns = MapColumnsMap | MapColumnsFn\nexport type SubscriptionKey = string\nexport type InitialInsertMethod = 'insert' | 'csv' | 'json' | 'useCopy'\n\nexport interface ShapeToTableOptions {\n  shape: ShapeStreamOptions\n  table: string\n  schema?: string\n  mapColumns?: MapColumns\n  primaryKey: string[]\n  onMustRefetch?: (tx: Transaction) => Promise<void>\n}\n\nexport interface SyncShapesToTablesOptions {\n  key: string | null\n  shapes: Record<string, ShapeToTableOptions>\n  useCopy?: boolean // DEPRECATED: use initialInsertMethod instead\n  initialInsertMethod?: InitialInsertMethod\n  onInitialSync?: () => void\n  onError?: (error: FetchError | Error) => void\n}\n\nexport interface SyncShapesToTablesResult {\n  unsubscribe: () => void\n  readonly isUpToDate: boolean\n  streams: Record<string, ShapeStreamInterface<Row<unknown>>>\n}\n\nexport interface SyncShapeToTableOptions {\n  shape: ShapeStreamOptions\n  table: string\n  schema?: string\n  mapColumns?: MapColumns\n  primaryKey: string[]\n  shapeKey: string | null\n  useCopy?: boolean // DEPRECATED: use initialInsertMethod instead\n  initialInsertMethod?: InitialInsertMethod\n  onInitialSync?: () => void\n  onError?: (error: FetchError | Error) => void\n  onMustRefetch?: (tx: Transaction) => Promise<void>\n}\n\nexport interface SyncShapeToTableResult {\n  unsubscribe: () => void\n  readonly isUpToDate: boolean\n  stream: ShapeStreamInterface<Row<unknown>>\n}\n\nexport interface ElectricSyncOptions {\n  debug?: boolean\n  metadataSchema?: string\n}\n\nexport type InsertChangeMessage = ChangeMessage<any> & {\n  headers: { operation: 'insert' }\n}\n"
  },
  {
    "path": "packages/pglite-sync/test/sync.test.ts",
    "content": "import { ShapeStreamOptions } from '@electric-sql/client'\nimport { MultiShapeMessages } from '@electric-sql/experimental'\nimport { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite'\nimport { Mock, beforeEach, describe, expect, it, vi } from 'vitest'\nimport { electricSync } from '../src/index.js'\nimport { MultiShapeStream } from '@electric-sql/experimental'\n\ntype MultiShapeMessage = MultiShapeMessages<any>\n\nvi.mock('@electric-sql/experimental', async (importOriginal) => {\n  const mod =\n    await importOriginal<typeof import('@electric-sql/experimental')>()\n  const MultiShapeStream = vi.fn(() => ({\n    subscribe: vi.fn(),\n    unsubscribeAll: vi.fn(),\n    isUpToDate: true,\n    shapes: {},\n  }))\n  return { ...mod, MultiShapeStream }\n})\n\ndescribe('pglite-sync', () => {\n  let pg: PGlite &\n    PGliteInterfaceExtensions<{ electric: ReturnType<typeof electricSync> }>\n\n  const MockMultiShapeStream = MultiShapeStream as unknown as Mock\n\n  beforeEach(async () => {\n    pg = await PGlite.create({\n      extensions: {\n        electric: electricSync({ debug: false }),\n      },\n    })\n    await pg.exec(`\n      CREATE TABLE IF NOT EXISTS todo (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n    await pg.exec(`TRUNCATE todo;`)\n  })\n\n  it('passes onError through to MultiShapeStream.subscribe', async () => {\n    const subscribe = vi.fn().mockReturnValue(() => {})\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe,\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        todos: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const onError = vi.fn()\n\n    await pg.electric.syncShapesToTables({\n      shapes: {\n        todos: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'todo' },\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n      },\n      key: null,\n      onError,\n    })\n\n    expect(subscribe).toHaveBeenCalled()\n    const [, passedOnError] = subscribe.mock.calls[0]\n    expect(passedOnError).toBe(onError)\n  })\n\n  it('handles inserts/updates/deletes', async () => {\n    let feedMessage: (\n      lsn: number,\n      message: MultiShapeMessage,\n    ) => Promise<void> = async (_) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessage = (lsn, message) =>\n            cb([\n              message,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // insert\n    await feedMessage(0, {\n      headers: { operation: 'insert', lsn: '0' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([\n      {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n    ])\n\n    // update\n    await feedMessage(1, {\n      headers: { operation: 'update', lsn: '1' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task2',\n        done: true,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([\n      {\n        id: 1,\n        task: 'task2',\n        done: true,\n      },\n    ])\n\n    // delete\n    await feedMessage(2, {\n      headers: { operation: 'delete', lsn: '2' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task2',\n        done: true,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([])\n\n    shape.unsubscribe()\n  })\n\n  it('performs operations within a transaction', async () => {\n    let feedMessages: (\n      lsn: number,\n      messages: MultiShapeMessage[],\n    ) => Promise<void> = async (_) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (lsn, messages) =>\n            cb([\n              ...messages,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    const numInserts = 10000\n    const numBatches = 5\n    for (let i = 0; i < numBatches; i++) {\n      const numBatchInserts = numInserts / numBatches\n      feedMessages(\n        i,\n        Array.from({ length: numBatchInserts }, (_, idx) => {\n          const itemIdx = i * numBatchInserts + idx\n          return {\n            headers: { operation: 'insert', lsn: i.toString() },\n            key: `id${itemIdx}`,\n            value: {\n              id: itemIdx,\n              task: `task${itemIdx}`,\n              done: false,\n            },\n            shape: 'shape',\n          }\n        }),\n      )\n    }\n\n    // let timeToProcessMicrotask = Infinity\n    // const startTime = performance.now()\n    // Promise.resolve().then(() => {\n    //   timeToProcessMicrotask = performance.now() - startTime\n    // })\n\n    let numItemsInserted = 0\n    await vi.waitUntil(async () => {\n      numItemsInserted =\n        (\n          await pg.sql<{\n            count: number\n          }>`SELECT COUNT(*) as count FROM todo;`\n        ).rows[0]?.['count'] ?? 0\n\n      return numItemsInserted > 0\n    })\n\n    // should have exact number of inserts added transactionally\n    expect(numItemsInserted).toBe(numInserts)\n\n    // should have processed microtask within few ms, not blocking main loop\n    // expect(timeToProcessMicrotask).toBeLessThan(15) // TODO: flaky on CI\n\n    await shape.unsubscribe()\n  })\n\n  it('persists shape stream state and automatically resumes', async () => {\n    let feedMessages: (\n      lsn: number,\n      messages: MultiShapeMessage[],\n    ) => Promise<void> = async (_) => {}\n    const shapeStreamInits = vi.fn()\n    let mockShapeId: string | void = undefined\n    MockMultiShapeStream.mockImplementation((initOpts: ShapeStreamOptions) => {\n      shapeStreamInits(initOpts)\n      return {\n        subscribe: vi.fn(\n          (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n            feedMessages = (lsn, messages) => {\n              mockShapeId ??= Math.random() + ''\n              return cb([\n                ...messages,\n                {\n                  shape: 'shape',\n                  headers: {\n                    control: 'up-to-date',\n                    global_last_seen_lsn: lsn.toString(),\n                  },\n                },\n              ])\n            }\n          },\n        ),\n        unsubscribeAll: vi.fn(),\n        isUpToDate: true,\n        shapes: {\n          shape: {\n            subscribe: vi.fn(),\n            unsubscribeAll: vi.fn(),\n          },\n        },\n      }\n    })\n\n    let totalRowCount = 0\n    const numInserts = 3 //100\n    const shapeIds: string[] = []\n\n    const numResumes = 3\n    for (let i = 0; i < numResumes; i++) {\n      const shape = await pg.electric.syncShapeToTable({\n        shape: {\n          url: 'http://localhost:3000/v1/shape',\n          params: { table: 'todo' },\n        },\n        table: 'todo',\n        primaryKey: ['id'],\n        shapeKey: 'foo',\n      })\n\n      await feedMessages(\n        i,\n        Array.from({ length: numInserts }, (_, idx) => ({\n          headers: {\n            operation: 'insert',\n            lsn: i.toString(),\n          },\n          key: `id${i * numInserts + idx}`,\n          value: {\n            id: i * numInserts + idx,\n            task: `task${idx}`,\n            done: false,\n          },\n          shape: 'shape',\n        })),\n      )\n\n      await vi.waitUntil(async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n\n        if (result.rows[0]?.count > totalRowCount) {\n          totalRowCount = result.rows[0].count\n          return true\n        }\n        return false\n      })\n      shapeIds.push(mockShapeId!)\n\n      expect(shapeStreamInits).toHaveBeenCalledTimes(i + 1)\n      if (i === 0) {\n        expect(shapeStreamInits.mock.calls[i][0]).not.toHaveProperty('shapeId')\n        expect(shapeStreamInits.mock.calls[i][0]).not.toHaveProperty('offset')\n      }\n\n      shape.unsubscribe()\n    }\n  })\n\n  it('clears and restarts persisted shape stream state on refetch', async () => {\n    let feedMessages: (messages: MultiShapeMessage[]) => Promise<void> = async (\n      _,\n    ) => {}\n    const shapeStreamInits = vi.fn()\n    let mockShapeId: string | void = undefined\n    MockMultiShapeStream.mockImplementation((initOpts: ShapeStreamOptions) => {\n      shapeStreamInits(initOpts)\n      return {\n        subscribe: vi.fn(\n          (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n            feedMessages = (messages) => {\n              mockShapeId ??= Math.random() + ''\n              if (messages.find((m) => m.headers.control === 'must-refetch')) {\n                mockShapeId = undefined\n              }\n\n              return cb([\n                ...messages,\n                {\n                  shape: 'shape',\n                  headers: {\n                    control: 'up-to-date',\n                    global_last_seen_lsn: '0',\n                  },\n                },\n              ])\n            }\n          },\n        ),\n        unsubscribeAll: vi.fn(),\n        isUpToDate: true,\n        shapes: {\n          shape: {\n            subscribe: vi.fn(),\n            unsubscribeAll: vi.fn(),\n          },\n        },\n      }\n    })\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'foo',\n    })\n\n    const numInserts = 100\n    await feedMessages([\n      {\n        headers: { operation: 'insert' },\n        key: `id${numInserts}`,\n        value: {\n          id: numInserts,\n          task: `task`,\n          done: false,\n        },\n        shape: 'shape',\n      },\n      { headers: { control: 'must-refetch' }, shape: 'shape' },\n      {\n        headers: { operation: 'insert' },\n        key: `id21`,\n        value: {\n          id: 21,\n          task: `task`,\n          done: false,\n        },\n        shape: 'shape',\n      },\n    ])\n\n    const result = await pg.query(`SELECT * FROM todo;`)\n    expect(result.rows).toHaveLength(1)\n    expect(result.rows[0]).toEqual({\n      id: 21,\n      done: false,\n      task: 'task',\n    })\n\n    shape.unsubscribe()\n\n    // resuming should\n    const resumedShape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'foo',\n    })\n    resumedShape.unsubscribe()\n\n    expect(shapeStreamInits).toHaveBeenCalledTimes(2)\n\n    expect(shapeStreamInits.mock.calls[1][0]).not.toHaveProperty('shapeId')\n    expect(shapeStreamInits.mock.calls[1][0]).not.toHaveProperty('offset')\n  })\n\n  it('uses the specified metadata schema for subscription metadata', async () => {\n    const metadataSchema = 'foobar'\n    const db = await PGlite.create({\n      extensions: {\n        electric: electricSync({\n          metadataSchema,\n        }),\n      },\n    })\n    await db.electric.initMetadataTables()\n\n    const result = await db.query(\n      `SELECT schema_name FROM information_schema.schemata WHERE schema_name = $1`,\n      [metadataSchema],\n    )\n    expect(result.rows).toHaveLength(1)\n    expect(result.rows[0]).toEqual({ schema_name: metadataSchema })\n  })\n\n  it('forbids multiple subscriptions to the same table', async () => {\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const table = 'foo'\n    const altTable = 'bar'\n\n    const shape1 = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: table,\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // should throw if syncing more shapes into same table\n    await expect(\n      async () =>\n        await pg.electric.syncShapeToTable({\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'todo_alt' },\n          },\n          table: table,\n          primaryKey: ['id'],\n          shapeKey: null,\n        }),\n    ).rejects.toThrowError(`Already syncing shape for table ${table}`)\n\n    // should be able to sync shape into other table\n    const altShape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'bar' },\n      },\n      table: altTable,\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n    altShape.unsubscribe()\n\n    // should be able to sync different shape if previous is unsubscribed\n    // (and we assume data has been cleaned up?)\n    shape1.unsubscribe()\n\n    const shape2 = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo_alt' },\n      },\n      table: table,\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n    shape2.unsubscribe()\n  })\n\n  it('handles an update message with no columns to update', async () => {\n    let feedMessage: (message: MultiShapeMessage) => Promise<void> = async (\n      _,\n    ) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessage = (message) =>\n            cb([\n              message,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: '0',\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // insert\n    await feedMessage({\n      headers: { operation: 'insert' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([\n      {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n    ])\n\n    // update with no columns to update\n    await feedMessage({\n      headers: { operation: 'update' },\n      key: 'id1',\n      value: {\n        id: 1,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM todo;`).rows).toEqual([\n      {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n    ])\n\n    shape.unsubscribe()\n  })\n\n  it('sets the syncing flag to true when syncing begins', async () => {\n    let feedMessage: (message: MultiShapeMessage) => Promise<void> = async (\n      _,\n    ) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessage = (message) =>\n            cb([\n              message,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: '0',\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    await pg.exec(`\n      CREATE TABLE test_syncing (\n        id TEXT PRIMARY KEY,\n        value TEXT,\n        is_syncing BOOLEAN\n      );\n\n      CREATE OR REPLACE FUNCTION check_syncing()\n      RETURNS TRIGGER AS $$\n      DECLARE\n        is_syncing BOOLEAN;\n      BEGIN\n        is_syncing := COALESCE(current_setting('electric.syncing', true)::boolean, false);\n        IF is_syncing THEN\n          NEW.is_syncing := TRUE;\n        ELSE\n          NEW.is_syncing := FALSE;\n        END IF;\n        RETURN NEW;\n      END;\n      $$ LANGUAGE plpgsql;\n\n      CREATE TRIGGER test_syncing_trigger\n      BEFORE INSERT ON test_syncing\n      FOR EACH ROW EXECUTE FUNCTION check_syncing();\n    `)\n\n    // Check the flag is not set outside of a sync\n    const result0 =\n      await pg.sql`SELECT current_setting('electric.syncing', true)`\n    expect(result0.rows[0]).toEqual({ current_setting: null }) // not set yet as syncShapeToTable hasn't been called\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'test_syncing' },\n      },\n      table: 'test_syncing',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    await feedMessage({\n      headers: { operation: 'insert' },\n      key: 'id1',\n      value: {\n        id: 'id1',\n        value: 'test value',\n      },\n      shape: 'shape',\n    })\n\n    // Check the flag is set during a sync\n    const result = await pg.sql`SELECT * FROM test_syncing WHERE id = 'id1'`\n    expect(result.rows).toHaveLength(1)\n    expect(result.rows[0]).toEqual({\n      id: 'id1',\n      value: 'test value',\n      is_syncing: true,\n    })\n\n    // Check the flag is not set outside of a sync\n    const result2 =\n      await pg.sql`SELECT current_setting('electric.syncing', true)`\n    expect(result2.rows[0]).toEqual({ current_setting: 'false' })\n\n    shape.unsubscribe()\n  })\n\n  it('uses COPY FROM for initial batch of inserts', async () => {\n    let feedMessages: (messages: MultiShapeMessage[]) => Promise<void> = async (\n      _,\n    ) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (messages) =>\n            cb([\n              ...messages,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: '0',\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      initialInsertMethod: 'csv',\n      shapeKey: null,\n    })\n\n    // Create a batch of insert messages followed by an update\n    const numInserts = 1000\n    const messages: MultiShapeMessage[] = [\n      ...Array.from(\n        { length: numInserts },\n        (_, idx) =>\n          ({\n            headers: { operation: 'insert' as const },\n            key: `id${idx}`,\n            value: {\n              id: idx,\n              task: `task${idx}`,\n              done: idx % 2 === 0,\n            },\n            shape: 'shape',\n          }) as MultiShapeMessage,\n      ),\n      {\n        headers: { operation: 'update' as const },\n        key: `id0`,\n        value: {\n          id: 0,\n          task: 'updated task',\n          done: true,\n        },\n        shape: 'shape',\n      },\n    ]\n\n    await feedMessages(messages)\n\n    // Wait for all inserts to complete\n    await vi.waitUntil(async () => {\n      const result = await pg.sql<{ count: number }>`\n        SELECT COUNT(*) as count FROM todo;\n      `\n      return result.rows[0].count === numInserts\n    })\n\n    // Verify the data was inserted correctly\n    const result = await pg.sql`\n      SELECT * FROM todo ORDER BY id LIMIT 5;\n    `\n    expect(result.rows).toEqual([\n      { id: 0, task: 'updated task', done: true },\n      { id: 1, task: 'task1', done: false },\n      { id: 2, task: 'task2', done: true },\n      { id: 3, task: 'task3', done: false },\n      { id: 4, task: 'task4', done: true },\n    ])\n\n    // Verify total count\n    const countResult = await pg.sql<{ count: number }>`\n      SELECT COUNT(*) as count FROM todo;\n    `\n    expect(countResult.rows[0].count).toBe(numInserts)\n\n    shape.unsubscribe()\n  })\n\n  it('handles special characters in COPY FROM data', async () => {\n    let feedMessages: (messages: MultiShapeMessage[]) => Promise<void> = async (\n      _,\n    ) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (messages) =>\n            cb([\n              ...messages,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: '0',\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      initialInsertMethod: 'csv',\n      shapeKey: null,\n    })\n\n    const specialCharMessages: MultiShapeMessage[] = [\n      {\n        headers: { operation: 'insert' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'task with, comma',\n          done: false,\n        },\n        shape: 'shape',\n      },\n      {\n        headers: { operation: 'insert' },\n        key: 'id2',\n        value: {\n          id: 2,\n          task: 'task with \"quotes\"',\n          done: true,\n        },\n        shape: 'shape',\n      },\n      {\n        headers: { operation: 'insert' },\n        key: 'id3',\n        value: {\n          id: 3,\n          task: 'task with\\nnewline',\n          done: false,\n        },\n        shape: 'shape',\n      },\n    ]\n\n    await feedMessages(specialCharMessages)\n\n    // Wait for inserts to complete\n    await vi.waitUntil(async () => {\n      const result = await pg.sql<{ count: number }>`\n        SELECT COUNT(*) as count FROM todo;\n      `\n      return result.rows[0].count === specialCharMessages.length\n    })\n\n    // Verify the data was inserted correctly with special characters preserved\n    const result = await pg.sql`\n      SELECT * FROM todo ORDER BY id;\n    `\n    expect(result.rows).toEqual([\n      { id: 1, task: 'task with, comma', done: false },\n      { id: 2, task: 'task with \"quotes\"', done: true },\n      { id: 3, task: 'task with\\nnewline', done: false },\n    ])\n\n    shape.unsubscribe()\n  })\n\n  it('calls onInitialSync callback after initial sync', async () => {\n    let feedMessages: (\n      lsn: number,\n      messages: MultiShapeMessage[],\n    ) => Promise<void> = async (_) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (lsn, messages) =>\n            cb([\n              ...messages,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    const onInitialSync = vi.fn(() => {\n      console.log('onInitialSync')\n    })\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      onInitialSync,\n      shapeKey: null,\n    })\n\n    // Send some initial data\n    await feedMessages(0, [\n      {\n        headers: { operation: 'insert', lsn: '0' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'task1',\n          done: false,\n        },\n        shape: 'shape',\n      },\n      {\n        headers: { operation: 'insert', lsn: '0' },\n        key: 'id2',\n        value: {\n          id: 2,\n          task: 'task2',\n          done: true,\n        },\n        shape: 'shape',\n      },\n    ])\n\n    // Verify callback was called once\n    expect(onInitialSync).toHaveBeenCalledTimes(1)\n\n    // Send more data - callback should not be called again\n    await feedMessages(1, [\n      {\n        headers: { operation: 'insert', lsn: '1' },\n        key: 'id3',\n        value: {\n          id: 3,\n          task: 'task3',\n          done: false,\n        },\n        shape: 'shape',\n      },\n    ])\n\n    // Verify callback was still only called once\n    expect(onInitialSync).toHaveBeenCalledTimes(1)\n\n    // Verify all data was inserted\n    expect(\n      (await pg.sql<{ count: number }>`SELECT COUNT(*) as count FROM todo;`)\n        .rows[0].count,\n    ).toBe(3)\n\n    shape.unsubscribe()\n  })\n\n  it('syncs multiple shapes to multiple tables simultaneously', async () => {\n    // Create a second table for testing multi-shape sync\n    await pg.exec(`\n      CREATE TABLE IF NOT EXISTS project (\n        id SERIAL PRIMARY KEY,\n        name TEXT,\n        active BOOLEAN\n      );\n    `)\n    await pg.exec(`TRUNCATE project;`)\n\n    // Setup mock for MultiShapeStream with two shapes\n    let feedMessages: (\n      lsn: number,\n      messages: MultiShapeMessage[],\n    ) => Promise<void> = async (_) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (lsn, messages) =>\n            cb([\n              ...messages,\n              {\n                shape: 'todo_shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              },\n              {\n                shape: 'project_shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        todo_shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n        project_shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    // Set up sync for both tables\n    const onInitialSync = vi.fn()\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'multi_sync_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'todo' },\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'project' },\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n      onInitialSync,\n    })\n\n    // Send data for both shapes in a single batch\n    await feedMessages(0, [\n      // Todo table inserts\n      {\n        headers: { operation: 'insert', lsn: '0' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'task1',\n          done: false,\n        },\n        shape: 'todo_shape',\n      },\n      {\n        headers: { operation: 'insert', lsn: '0' },\n        key: 'id2',\n        value: {\n          id: 2,\n          task: 'task2',\n          done: true,\n        },\n        shape: 'todo_shape',\n      },\n      // Project table inserts\n      {\n        headers: { operation: 'insert', lsn: '0' },\n        key: 'id1',\n        value: {\n          id: 1,\n          name: 'Project 1',\n          active: true,\n        },\n        shape: 'project_shape',\n      },\n      {\n        headers: { operation: 'insert', lsn: '0' },\n        key: 'id2',\n        value: {\n          id: 2,\n          name: 'Project 2',\n          active: false,\n        },\n        shape: 'project_shape',\n      },\n    ])\n\n    // Verify data was inserted into both tables\n    const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(todoResult.rows).toEqual([\n      { id: 1, task: 'task1', done: false },\n      { id: 2, task: 'task2', done: true },\n    ])\n\n    const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;`\n    expect(projectResult.rows).toEqual([\n      { id: 1, name: 'Project 1', active: true },\n      { id: 2, name: 'Project 2', active: false },\n    ])\n\n    // Verify onInitialSync was called\n    expect(onInitialSync).toHaveBeenCalledTimes(1)\n\n    // Test updates across both tables\n    await feedMessages(1, [\n      // Update todo\n      {\n        headers: { operation: 'update', lsn: '1' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'Updated task 1',\n          done: true,\n        },\n        shape: 'todo_shape',\n      },\n      // Update project\n      {\n        headers: { operation: 'update', lsn: '1' },\n        key: 'id2',\n        value: {\n          id: 2,\n          name: 'Updated Project 2',\n          active: true,\n        },\n        shape: 'project_shape',\n      },\n    ])\n\n    // Verify updates were applied to both tables\n    const updatedTodoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(updatedTodoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Updated task 1',\n      done: true,\n    })\n\n    const updatedProjectResult =\n      await pg.sql`SELECT * FROM project WHERE id = 2;`\n    expect(updatedProjectResult.rows[0]).toEqual({\n      id: 2,\n      name: 'Updated Project 2',\n      active: true,\n    })\n\n    // Test deletes across both tables\n    await feedMessages(2, [\n      {\n        headers: { operation: 'delete', lsn: '2' },\n        key: 'id2',\n        shape: 'todo_shape',\n        value: { id: 2 },\n      },\n      {\n        headers: { operation: 'delete', lsn: '2' },\n        key: 'id1',\n        shape: 'project_shape',\n        value: { id: 1 },\n      },\n    ])\n\n    // Verify deletes were applied to both tables\n    const todoCountAfterDelete = await pg.sql<{ count: number }>`\n      SELECT COUNT(*) as count FROM todo;\n    `\n    expect(todoCountAfterDelete.rows[0].count).toBe(1)\n\n    const projectCountAfterDelete = await pg.sql<{ count: number }>`\n      SELECT COUNT(*) as count FROM project;\n    `\n    expect(projectCountAfterDelete.rows[0].count).toBe(1)\n\n    // Cleanup\n    syncResult.unsubscribe()\n  })\n\n  it('handles transactions across multiple tables with syncShapesToTables', async () => {\n    // Create a second table for testing multi-shape sync\n    await pg.exec(`\n      CREATE TABLE IF NOT EXISTS project (\n        id SERIAL PRIMARY KEY,\n        name TEXT,\n        active BOOLEAN\n      );\n    `)\n    await pg.exec(`TRUNCATE project;`)\n\n    // Setup mock for MultiShapeStream with two shapes and LSN tracking\n    let feedMessages: (\n      lsn: number,\n      messages: MultiShapeMessage[],\n    ) => Promise<void> = async (_lsn, _messages) => {}\n\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (lsn, messages) =>\n            cb([\n              ...messages.map((msg) => {\n                if ('headers' in msg && 'operation' in msg.headers) {\n                  return {\n                    ...msg,\n                    headers: {\n                      ...msg.headers,\n                      lsn: lsn.toString(),\n                    },\n                  } as MultiShapeMessage\n                }\n                return msg\n              }),\n              {\n                shape: 'todo_shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              } as MultiShapeMessage,\n              {\n                shape: 'project_shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              } as MultiShapeMessage,\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        todo_shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n        project_shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    // Set up sync for both tables\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'transaction_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'todo' },\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'project' },\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    // Send initial data with LSN 1\n    await feedMessages(1, [\n      {\n        headers: { operation: 'insert' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'Initial task',\n          done: false,\n        },\n        shape: 'todo_shape',\n      },\n      {\n        headers: { operation: 'insert' },\n        key: 'id1',\n        value: {\n          id: 1,\n          name: 'Initial project',\n          active: true,\n        },\n        shape: 'project_shape',\n      },\n    ])\n\n    // Verify initial data was inserted\n    const initialTodoCount = await pg.sql<{\n      count: number\n    }>`SELECT COUNT(*) as count FROM todo;`\n    expect(initialTodoCount.rows[0].count).toBe(1)\n\n    const initialProjectCount = await pg.sql<{\n      count: number\n    }>`SELECT COUNT(*) as count FROM project;`\n    expect(initialProjectCount.rows[0].count).toBe(1)\n\n    // Simulate a transaction with LSN 2 that updates both tables\n    await feedMessages(2, [\n      {\n        headers: { operation: 'update' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'Updated in transaction',\n          done: true,\n        },\n        shape: 'todo_shape',\n      },\n      {\n        headers: { operation: 'update' },\n        key: 'id1',\n        value: {\n          id: 1,\n          name: 'Updated in transaction',\n          active: false,\n        },\n        shape: 'project_shape',\n      },\n    ])\n\n    // Verify both updates were applied\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Updated in transaction',\n      done: true,\n    })\n\n    const projectResult = await pg.sql`SELECT * FROM project WHERE id = 1;`\n    expect(projectResult.rows[0]).toEqual({\n      id: 1,\n      name: 'Updated in transaction',\n      active: false,\n    })\n\n    // Cleanup\n    syncResult.unsubscribe()\n  })\n\n  it('handles must-refetch control message across multiple tables', async () => {\n    // Create a second table for testing multi-shape sync\n    await pg.exec(`\n      CREATE TABLE IF NOT EXISTS project (\n        id SERIAL PRIMARY KEY,\n        name TEXT,\n        active BOOLEAN\n      );\n    `)\n    await pg.exec(`TRUNCATE project;`)\n\n    // Setup mock for MultiShapeStream with refetch handling\n    let feedMessages: (messages: MultiShapeMessage[]) => Promise<void> = async (\n      _,\n    ) => {}\n    let mockShapeId: string | void = undefined\n\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessages = (messages) => {\n            mockShapeId ??= Math.random() + ''\n            if (messages.find((m) => m.headers.control === 'must-refetch')) {\n              mockShapeId = undefined\n            }\n\n            return cb([\n              ...messages,\n              {\n                shape: 'todo_shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: '0',\n                },\n              } as MultiShapeMessage,\n              {\n                shape: 'project_shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: '0',\n                },\n              } as MultiShapeMessage,\n            ])\n          }\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        todo_shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n        project_shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    // Set up sync for both tables\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'refetch_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'todo' },\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: 'http://localhost:3000/v1/shape',\n            params: { table: 'project' },\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    // Insert initial data\n    await feedMessages([\n      {\n        headers: { operation: 'insert' },\n        key: 'id1',\n        value: {\n          id: 1,\n          task: 'Initial task',\n          done: false,\n        },\n        shape: 'todo_shape',\n      },\n      {\n        headers: { operation: 'insert' },\n        key: 'id1',\n        value: {\n          id: 1,\n          name: 'Initial project',\n          active: true,\n        },\n        shape: 'project_shape',\n      },\n    ])\n\n    // Verify initial data was inserted\n    const refetchTodoCount = await pg.sql<{\n      count: number\n    }>`SELECT COUNT(*) as count FROM todo;`\n    expect(refetchTodoCount.rows[0].count).toBe(1)\n\n    const refetchProjectCount = await pg.sql<{\n      count: number\n    }>`SELECT COUNT(*) as count FROM project;`\n    expect(refetchProjectCount.rows[0].count).toBe(1)\n\n    // Send must-refetch control message and new data\n    await feedMessages([\n      { headers: { control: 'must-refetch' }, shape: 'todo_shape' },\n      { headers: { control: 'must-refetch' }, shape: 'project_shape' },\n      {\n        headers: { operation: 'insert' },\n        key: 'id2',\n        value: {\n          id: 2,\n          task: 'New task after refetch',\n          done: true,\n        },\n        shape: 'todo_shape',\n      },\n      {\n        headers: { operation: 'insert' },\n        key: 'id2',\n        value: {\n          id: 2,\n          name: 'New project after refetch',\n          active: false,\n        },\n        shape: 'project_shape',\n      },\n    ])\n\n    // Verify tables were cleared and new data was inserted\n    const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(todoResult.rows).toEqual([\n      {\n        id: 2,\n        task: 'New task after refetch',\n        done: true,\n      },\n    ])\n\n    const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;`\n    expect(projectResult.rows).toEqual([\n      {\n        id: 2,\n        name: 'New project after refetch',\n        active: false,\n      },\n    ])\n\n    // Cleanup\n    syncResult.unsubscribe()\n  })\n\n  it('case sensitivity: handles inserts/updates/deletes on case sensitive table names', async () => {\n    let feedMessage: (\n      lsn: number,\n      message: MultiShapeMessage,\n    ) => Promise<void> = async (_) => {}\n    MockMultiShapeStream.mockImplementation(() => ({\n      subscribe: vi.fn(\n        (cb: (messages: MultiShapeMessage[]) => Promise<void>) => {\n          feedMessage = (lsn, message) =>\n            cb([\n              message,\n              {\n                shape: 'shape',\n                headers: {\n                  control: 'up-to-date',\n                  global_last_seen_lsn: lsn.toString(),\n                },\n              },\n            ])\n        },\n      ),\n      unsubscribeAll: vi.fn(),\n      isUpToDate: true,\n      shapes: {\n        shape: {\n          subscribe: vi.fn(),\n          unsubscribeAll: vi.fn(),\n        },\n      },\n    }))\n\n    await pg.exec(`\n      CREATE TABLE IF NOT EXISTS \"cAseSENSiTiVe\" (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n    await pg.exec(`TRUNCATE \"cAseSENSiTiVe\";`)\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: 'http://localhost:3000/v1/shape',\n        params: { table: 'cAseSENSiTiVe' },\n      },\n      table: 'cAseSENSiTiVe',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // insert\n    await feedMessage(0, {\n      headers: { operation: 'insert', lsn: '0' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM \"cAseSENSiTiVe\";`).rows).toEqual([\n      {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n    ])\n\n    // update\n    await feedMessage(1, {\n      headers: { operation: 'update', lsn: '1' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task2',\n        done: true,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM \"cAseSENSiTiVe\";`).rows).toEqual([\n      {\n        id: 1,\n        task: 'task2',\n        done: true,\n      },\n    ])\n\n    // delete\n    await feedMessage(2, {\n      headers: { operation: 'delete', lsn: '2' },\n      key: 'id1',\n      value: {\n        id: 1,\n        task: 'task2',\n        done: true,\n      },\n      shape: 'shape',\n    })\n    expect((await pg.sql`SELECT* FROM \"cAseSENSiTiVe\";`).rows).toEqual([])\n\n    shape.unsubscribe()\n  })\n})\n"
  },
  {
    "path": "packages/pglite-sync/test-e2e/docker_compose.yaml",
    "content": "version: \"3.3\"\nname: \"electric_quickstart\"\n\nservices:\n  postgres:\n    image: postgres:16-alpine\n    environment:\n      POSTGRES_DB: electric\n      POSTGRES_USER: postgres\n      POSTGRES_PASSWORD: password\n    ports:\n      - 54321:5432\n    tmpfs:\n      - /var/lib/postgresql/data\n      - /tmp\n    command:\n      - -c\n      - listen_addresses=*\n      - -c\n      - wal_level=logical\n\n  electric:\n    image: electricsql/electric:latest\n    environment:\n      DATABASE_URL: postgresql://postgres:password@postgres:5432/electric?sslmode=disable\n      # Not suitable for production. Only use insecure mode in development or if you've otherwise secured the Electric API.\n      # See https://electric-sql.com/docs/guides/security\n      ELECTRIC_INSECURE: true\n      ELECTRIC_ENABLE_INTEGRATION_TESTING: true\n    ports:\n      - \"3000:3000\"\n    depends_on:\n      - postgres"
  },
  {
    "path": "packages/pglite-sync/test-e2e/sync-e2e.test.ts",
    "content": "/// <reference types=\"node\" />\nimport {\n  describe,\n  it,\n  expect,\n  beforeAll,\n  afterAll,\n  beforeEach,\n  afterEach,\n  vi,\n} from 'vitest'\nimport { Client } from 'pg'\nimport { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite'\nimport { electricSync, InitialInsertMethod } from '../src/index.js'\n\nconst DATABASE_URL =\n  process.env.DATABASE_URL ||\n  'postgresql://postgres:password@localhost:54321/electric?sslmode=disable'\nconst ELECTRIC_URL =\n  process.env.ELECTRIC_URL || 'http://localhost:3000/v1/shape'\n\nconst shapeHandles: Map<string, string> = new Map()\n\nconst DEBUG = false\nconst LOG_FETCH = DEBUG\n\nlet fetchCount = 0\n\nconst fetchClient: typeof fetch = async (\n  url: string | Request | URL,\n  options: RequestInit = {},\n) => {\n  const thisFetchCount = fetchCount++\n  if (LOG_FETCH) {\n    console.log('>> fetch', thisFetchCount, url, options)\n  }\n  let table: string | null = null\n  if (typeof url === 'string') {\n    table = new URL(url).searchParams.get('table')\n  } else if (url instanceof Request) {\n    table = new URL(url.url).searchParams.get('table')\n  } else if (url instanceof URL) {\n    table = url.searchParams.get('table')\n  }\n  let res: Response\n  try {\n    res = await fetch(url, options)\n  } catch (e) {\n    if (LOG_FETCH) {\n      console.log('>> fetch error', thisFetchCount, e)\n    }\n    throw e\n  }\n  if (table) {\n    shapeHandles.set(res.headers.get('electric-handle')!, table)\n  }\n  if (LOG_FETCH) {\n    console.log(\n      '>> fetch res',\n      thisFetchCount,\n      res.status,\n      res.statusText,\n      res.headers,\n    )\n  }\n  return res\n}\n\nconst deleteShape = async (table: string, handle: string) => {\n  const deleteUrl = new URL(ELECTRIC_URL)\n  deleteUrl.searchParams.set('table', table)\n  deleteUrl.searchParams.set('handle', handle)\n  const res = await fetch(deleteUrl, {\n    method: 'DELETE',\n  })\n  if (res.status === 404) {\n    // Nothing to delete\n    return\n  }\n  if (!res.ok) {\n    throw new Error(`Error deleting shape: ${res.statusText}`)\n  }\n}\n\nconst deleteAllShapes = async () => {\n  for (const [handle, table] of shapeHandles.entries()) {\n    await deleteShape(table, handle)\n  }\n  shapeHandles.clear()\n}\n\nconst deleteAllShapesForTable = async (targetTable: string) => {\n  for (const [handle, table] of shapeHandles.entries()) {\n    if (table === targetTable) {\n      await deleteShape(table, handle)\n    }\n  }\n}\n\ndescribe('sync-e2e', () => {\n  let pgClient: typeof Client.prototype\n  let pg: PGlite &\n    PGliteInterfaceExtensions<{ electric: ReturnType<typeof electricSync> }>\n\n  // Setup PostgreSQL client and tables\n  beforeAll(async () => {\n    // Connect to PostgreSQL\n    pgClient = new Client({\n      connectionString: DATABASE_URL,\n    })\n    await pgClient.connect()\n\n    // Create test tables in PostgreSQL if they don't exist\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS todo (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    // Create additional tables needed for tests\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS project (\n        id SERIAL PRIMARY KEY,\n        name TEXT,\n        active BOOLEAN\n      );\n    `)\n\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS alt_todo (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS test_syncing (\n        id TEXT PRIMARY KEY,\n        value TEXT,\n        is_syncing BOOLEAN\n      );\n    `)\n\n    // Create or replace the trigger function\n    await pgClient.query(`\n      CREATE OR REPLACE FUNCTION check_syncing()\n      RETURNS TRIGGER AS $$\n      DECLARE\n        is_syncing BOOLEAN;\n      BEGIN\n        is_syncing := COALESCE(current_setting('electric.syncing', true)::boolean, false);\n        IF is_syncing THEN\n          NEW.is_syncing := TRUE;\n        ELSE\n          NEW.is_syncing := FALSE;\n        END IF;\n        RETURN NEW;\n      END;\n      $$ LANGUAGE plpgsql;\n    `)\n\n    // Drop and recreate the trigger\n    await pgClient.query(\n      `DROP TRIGGER IF EXISTS test_syncing_trigger ON test_syncing;`,\n    )\n    await pgClient.query(`\n      CREATE TRIGGER test_syncing_trigger\n      BEFORE INSERT ON test_syncing\n      FOR EACH ROW EXECUTE FUNCTION check_syncing();\n    `)\n\n    // Create a todo_alt table for the multiple subscriptions test\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS todo_alt (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    // Create a large table with 10 columns in PostgreSQL\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS large_table (\n        id SERIAL PRIMARY KEY,\n        col1 TEXT,\n        col2 INTEGER,\n        col3 BOOLEAN,\n        col4 TIMESTAMP,\n        col5 NUMERIC(10,2),\n        col6 TEXT,\n        col7 INTEGER,\n        col8 BOOLEAN,\n        col9 TEXT\n      );\n    `)\n\n    // Create a table for large operations\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS large_ops_table (\n        id SERIAL PRIMARY KEY,\n        value TEXT,\n        number INTEGER,\n        flag BOOLEAN\n      );\n    `)\n\n    // Create a user-defined enum for data type testing\n    await pgClient.query(`\n      CREATE TYPE data_types_enum AS ENUM ('one', 'two', 'three');\n    `)\n\n    // Create a table for data type testing\n    await pgClient.query(`\n      CREATE TABLE IF NOT EXISTS data_types_table (\n        id SERIAL PRIMARY KEY,\n        int_col INTEGER,\n        float_col FLOAT,\n        boolean_col BOOLEAN,\n        string_col TEXT,\n        json_col JSONB,\n        json_plain_col JSON,\n        int_array_col INTEGER[],\n        enum_col data_types_enum\n      );\n    `)\n\n    // Clean up any existing data\n    await pgClient.query(\n      'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;',\n    )\n  })\n\n  afterAll(async () => {\n    // Truncate all tables\n    await pgClient.query(\n      'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;',\n    )\n\n    await pgClient.end()\n    await deleteAllShapes()\n  })\n\n  beforeEach(async () => {\n    await pgClient.query(\n      'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;',\n    )\n\n    // Create PGlite instance with electric sync extension\n    pg = await PGlite.create({\n      extensions: {\n        electric: electricSync({ debug: DEBUG }),\n      },\n    })\n\n    // Create the same tables in PGlite\n    await pg.exec(`\n      CREATE TABLE todo (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    // Create additional tables needed for tests\n    await pg.exec(`\n      CREATE TABLE project (\n        id SERIAL PRIMARY KEY,\n        name TEXT,\n        active BOOLEAN\n      );\n    `)\n\n    await pg.exec(`\n      CREATE TABLE alt_todo (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    await pg.exec(`\n      CREATE TABLE test_syncing (\n        id TEXT PRIMARY KEY,\n        value TEXT,\n        is_syncing BOOLEAN\n      );\n\n      CREATE OR REPLACE FUNCTION check_syncing()\n      RETURNS TRIGGER AS $$\n      DECLARE\n        is_syncing BOOLEAN;\n      BEGIN\n        is_syncing := COALESCE(current_setting('electric.syncing', true)::boolean, false);\n        IF is_syncing THEN\n          NEW.is_syncing := TRUE;\n        ELSE\n          NEW.is_syncing := FALSE;\n        END IF;\n        RETURN NEW;\n      END;\n      $$ LANGUAGE plpgsql;\n\n      CREATE TRIGGER test_syncing_trigger\n      BEFORE INSERT ON test_syncing\n      FOR EACH ROW EXECUTE FUNCTION check_syncing();\n    `)\n\n    // Create a todo_alt table for the multiple subscriptions test\n    await pg.exec(`\n      CREATE TABLE todo_alt (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    // Create the same table in PGlite\n    await pg.exec(`\n      CREATE TABLE large_table (\n        id SERIAL PRIMARY KEY,\n        col1 TEXT,\n        col2 INTEGER,\n        col3 BOOLEAN,\n        col4 TIMESTAMP,\n        col5 NUMERIC(10,2),\n        col6 TEXT,\n        col7 INTEGER,\n        col8 BOOLEAN,\n        col9 TEXT\n      );\n    `)\n\n    await pg.exec(`\n      CREATE TABLE large_ops_table (\n        id SERIAL PRIMARY KEY,\n        value TEXT,\n        number INTEGER,\n        flag BOOLEAN\n      );\n    `)\n\n    // Create a user-defined enum for data type testing\n    await pg.query(`\n      CREATE TYPE data_types_enum AS ENUM ('one', 'two', 'three');\n    `)\n\n    // Create data types testing table\n    await pg.exec(`\n      CREATE TABLE data_types_table (\n        id SERIAL PRIMARY KEY,\n        int_col INTEGER,\n        float_col FLOAT,\n        boolean_col BOOLEAN,\n        string_col TEXT,\n        json_col JSONB,\n        json_plain_col JSON,\n        int_array_col INTEGER[],\n        enum_col data_types_enum\n      );\n    `)\n  })\n\n  afterEach(async () => {\n    try {\n      await pg.close()\n    } catch (e) {\n      // ignore as we may have already closed it in the test\n    }\n    await deleteAllShapes()\n\n    // Truncate all tables\n    await pgClient.query(\n      'TRUNCATE todo, project, alt_todo, test_syncing, todo_alt, large_table, large_ops_table, data_types_table;',\n    )\n  })\n\n  it('handles inserts/updates/deletes', async () => {\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Insert data into PostgreSQL\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'task1', false);\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql`SELECT * FROM todo;`\n        expect(result.rows).toEqual([\n          {\n            id: 1,\n            task: 'task1',\n            done: false,\n          },\n        ])\n      },\n      { timeout: 10000 },\n    )\n\n    // Update data in PostgreSQL\n    await pgClient.query(`\n      UPDATE todo SET task = 'task2', done = true WHERE id = 1;\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql`SELECT * FROM todo;`\n        expect(result.rows).toEqual([\n          {\n            id: 1,\n            task: 'task2',\n            done: true,\n          },\n        ])\n      },\n      { timeout: 5000 },\n    )\n\n    // Delete data in PostgreSQL\n    await pgClient.query(`\n      DELETE FROM todo WHERE id = 1;\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql`SELECT * FROM todo;`\n        expect(result.rows).toEqual([])\n      },\n      { timeout: 5000 },\n    )\n\n    shape.unsubscribe()\n  })\n\n  it('performs operations within a transaction', async () => {\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Insert a large batch of records to test transaction behavior\n    const numInserts = 1000 // Reduced from 10000 in the mock test for practical e2e testing\n    const numBatches = 5\n    const batchSize = Math.floor(numInserts / numBatches)\n\n    for (let i = 0; i < numBatches; i++) {\n      const values = Array.from({ length: batchSize }, (_, idx) => {\n        const itemIdx = i * batchSize + idx\n        return `(${itemIdx}, 'task${itemIdx}', false)`\n      }).join(', ')\n\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES ${values};\n      `)\n    }\n\n    // Wait for all inserts to be synced\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).toBe(numInserts)\n      },\n      { timeout: 10000 }, // Increase timeout for larger batch\n    )\n\n    // Verify some sample data\n    const firstItem = await pg.sql`SELECT * FROM todo WHERE id = 0;`\n    expect(firstItem.rows[0]).toEqual({\n      id: 0,\n      task: 'task0',\n      done: false,\n    })\n\n    const lastItem =\n      await pg.sql`SELECT * FROM todo WHERE id = ${numInserts - 1};`\n    expect(lastItem.rows[0]).toEqual({\n      id: numInserts - 1,\n      task: `task${numInserts - 1}`,\n      done: false,\n    })\n\n    shape.unsubscribe()\n  })\n\n  it('syncs multiple shapes to multiple tables simultaneously', async () => {\n    // Clean up any existing data in the project table\n    await pgClient.query('TRUNCATE project;')\n    await pg.exec('TRUNCATE project;')\n\n    // Set up sync for both tables\n    const todoShape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    const projectShape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'project' },\n      },\n      table: 'project',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Insert data into both tables in PostgreSQL\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'task1', false), (2, 'task2', true);\n    `)\n\n    await pgClient.query(`\n      INSERT INTO project (id, name, active)\n      VALUES (1, 'Project 1', true), (2, 'Project 2', false);\n    `)\n\n    // Wait for todo table sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM todo;`\n      expect(result.rows[0].count).toBe(2)\n    })\n\n    // Wait for project table sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM project;`\n      expect(result.rows[0].count).toBe(2)\n    })\n\n    // Verify data was inserted into both tables\n    const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(todoResult.rows).toEqual([\n      { id: 1, task: 'task1', done: false },\n      { id: 2, task: 'task2', done: true },\n    ])\n\n    const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;`\n    expect(projectResult.rows).toEqual([\n      { id: 1, name: 'Project 1', active: true },\n      { id: 2, name: 'Project 2', active: false },\n    ])\n\n    // Clean up\n    todoShape.unsubscribe()\n    projectShape.unsubscribe()\n  })\n\n  it('handles an update message with no columns to update', async () => {\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Insert data into PostgreSQL\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'task1', false);\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql`SELECT * FROM todo;`\n      expect(result.rows).toEqual([\n        {\n          id: 1,\n          task: 'task1',\n          done: false,\n        },\n      ])\n    })\n\n    // Update data in PostgreSQL with only the primary key (no other columns)\n    await pgClient.query(`\n      UPDATE todo SET id = 1 WHERE id = 1;\n    `)\n\n    // Wait a moment to ensure sync has time to process\n    await new Promise((resolve) => setTimeout(resolve, 1000))\n\n    // Verify data remains unchanged\n    const result = await pg.sql`SELECT * FROM todo;`\n    expect(result.rows).toEqual([\n      {\n        id: 1,\n        task: 'task1',\n        done: false,\n      },\n    ])\n\n    shape.unsubscribe()\n  })\n\n  it('sets the syncing flag to true when syncing begins', async () => {\n    // Check the flag is not set outside of a sync\n    const result0 =\n      await pg.sql`SELECT current_setting('electric.syncing', true)`\n    expect(result0.rows[0]).toEqual({ current_setting: null }) // not set yet as syncShapeToTable hasn't been called\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'test_syncing' },\n        fetchClient,\n      },\n      table: 'test_syncing',\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Insert data into PostgreSQL\n    await pgClient.query(`\n      INSERT INTO test_syncing (id, value)\n      VALUES ('id1', 'test value');\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql`SELECT * FROM test_syncing WHERE id = 'id1'`\n      expect(result.rows).toHaveLength(1)\n    })\n\n    // Check the syncing flag was set during sync\n    const result = await pg.sql`SELECT * FROM test_syncing WHERE id = 'id1'`\n    expect(result.rows[0]).toEqual({\n      id: 'id1',\n      value: 'test value',\n      is_syncing: true,\n    })\n\n    // Check the flag is not set outside of a sync\n    const result2 =\n      await pg.sql`SELECT current_setting('electric.syncing', true)`\n    expect(result2.rows[0]).toEqual({ current_setting: 'false' })\n\n    // Clean up\n    shape.unsubscribe()\n  })\n\n  it('forbids multiple subscriptions to the same table', async () => {\n    const table = 'todo'\n    const altTable = 'alt_todo'\n\n    // First subscription\n    const shape1 = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table },\n        fetchClient,\n      },\n      table,\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Should throw if syncing more shapes into same table\n    await expect(\n      async () =>\n        await pg.electric.syncShapeToTable({\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'todo_alt' },\n            fetchClient,\n          },\n          table,\n          primaryKey: ['id'],\n          shapeKey: null,\n        }),\n    ).rejects.toThrowError(`Already syncing shape for table ${table}`)\n\n    // Should be able to sync shape into other table\n    const altShape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: altTable },\n        fetchClient,\n      },\n      table: altTable,\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Clean up first subscription\n    shape1.unsubscribe()\n\n    // Should be able to sync different shape if previous is unsubscribed\n    const shape2 = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo_alt' },\n        fetchClient,\n      },\n      table,\n      primaryKey: ['id'],\n      shapeKey: null,\n    })\n\n    // Clean up\n    altShape.unsubscribe()\n    shape2.unsubscribe()\n  })\n\n  it('uses COPY FROM for initial batch of inserts', async () => {\n    // Insert a large batch of records to test COPY FROM behavior\n    const numInserts = 1000\n    const values = Array.from(\n      { length: numInserts },\n      (_, idx) => `(${idx}, 'task${idx}', ${idx % 2 === 0})`,\n    ).join(', ')\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES ${values};\n    `)\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      initialInsertMethod: 'csv',\n      shapeKey: null,\n    })\n\n    // Wait for all inserts to be synced\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).toBe(numInserts)\n      },\n      { timeout: 20000 }, // Increase timeout for larger batch\n    )\n\n    // Verify some sample data\n    const sampleResult = await pg.sql`\n      SELECT * FROM todo ORDER BY id LIMIT 5;\n    `\n    expect(sampleResult.rows).toEqual([\n      { id: 0, task: 'task0', done: true },\n      { id: 1, task: 'task1', done: false },\n      { id: 2, task: 'task2', done: true },\n      { id: 3, task: 'task3', done: false },\n      { id: 4, task: 'task4', done: true },\n    ])\n\n    // Update one record to verify updates still work after COPY\n    await pgClient.query(`\n      UPDATE todo SET task = 'updated task' WHERE id = 0;\n    `)\n\n    // Wait for update to sync\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql`SELECT * FROM todo WHERE id = 0;`\n        expect(result.rows[0]).toEqual({\n          id: 0,\n          task: 'updated task',\n          done: true,\n        })\n      },\n      { timeout: 5000 },\n    )\n\n    shape.unsubscribe()\n  })\n\n  it('handles special characters in COPY FROM data', async () => {\n    // Insert records with special characters\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done) VALUES\n      (1, 'task with, comma', false),\n      (2, 'task with \"quotes\"', true),\n      (3, 'task with\nnewline', false);\n    `)\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      initialInsertMethod: 'csv',\n      shapeKey: null,\n    })\n\n    // Wait for inserts to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{ count: number }>`\n        SELECT COUNT(*) as count FROM todo;\n      `\n        expect(result.rows[0].count).toBe(3)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify the data was inserted correctly with special characters preserved\n    const result = await pg.sql`\n      SELECT * FROM todo ORDER BY id;\n    `\n    expect(result.rows).toEqual([\n      { id: 1, task: 'task with, comma', done: false },\n      { id: 2, task: 'task with \"quotes\"', done: true },\n      { id: 3, task: 'task with\\nnewline', done: false },\n    ])\n\n    shape.unsubscribe()\n  })\n\n  it('calls onInitialSync callback after initial sync', async () => {\n    let callbackCalled = false\n    const onInitialSync = () => {\n      callbackCalled = true\n    }\n\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      onInitialSync,\n      shapeKey: null,\n    })\n\n    // Insert some initial data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done) VALUES\n      (1, 'task1', false),\n      (2, 'task2', true);\n    `)\n\n    // Wait for initial sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{ count: number }>`\n        SELECT COUNT(*) as count FROM todo;\n      `\n        return result.rows[0].count === 2\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify callback was called\n    await vi.waitFor(\n      () => {\n        expect(callbackCalled).toBe(true)\n        return callbackCalled === true\n      },\n      { timeout: 5000 },\n    )\n\n    // Insert more data - callback should not be called again\n    callbackCalled = false\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done) VALUES\n      (3, 'task3', false);\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{ count: number }>`\n        SELECT COUNT(*) as count FROM todo;\n      `\n        return result.rows[0].count === 3\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify callback was not called again\n    expect(callbackCalled).toBe(false)\n\n    shape.unsubscribe()\n  })\n\n  it('uses the specified metadata schema for subscription metadata', async () => {\n    // Close the default PGlite instance\n    await pg.close()\n\n    // Create a new PGlite instance with a custom metadata schema\n    const metadataSchema = 'custom_metadata'\n    pg = await PGlite.create({\n      extensions: {\n        electric: electricSync({\n          metadataSchema,\n        }),\n      },\n    })\n\n    // Initialize metadata tables\n    await pg.electric.initMetadataTables()\n\n    // Create the todo table\n    await pg.exec(`\n      CREATE TABLE todo (\n        id SERIAL PRIMARY KEY,\n        task TEXT,\n        done BOOLEAN\n      );\n    `)\n\n    // Verify the custom schema was created\n    const schemaResult = await pg.query(\n      `SELECT schema_name FROM information_schema.schemata WHERE schema_name = $1`,\n      [metadataSchema],\n    )\n    expect(schemaResult.rows).toHaveLength(1)\n    expect(schemaResult.rows[0]).toEqual({ schema_name: metadataSchema })\n\n    // Verify the subscription table exists in the custom schema\n    const tableResult = await pg.query(\n      `SELECT table_name FROM information_schema.tables\n       WHERE table_schema = $1 AND table_name = 'subscriptions_metadata'`,\n      [metadataSchema],\n    )\n    expect(tableResult.rows).toHaveLength(1)\n    expect(tableResult.rows[0]).toEqual({\n      table_name: 'subscriptions_metadata',\n    })\n\n    // Test that we can create a subscription with the custom schema\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'custom_schema_test',\n    })\n\n    // We don't persist any metadata until some data has been synced\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done) VALUES\n      (1, 'task1', false);\n    `)\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{ count: number }>`\n        SELECT COUNT(*) as count FROM todo;\n      `\n        expect(result.rows[0].count).toBe(1)\n      },\n      { timeout: 5000 },\n    )\n\n    // Check the data was inserted into the todo table\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'task1',\n      done: false,\n    })\n\n    // Verify the subscription was stored in the custom schema\n    const subscriptionResult = await pg.query(\n      `SELECT * FROM ${metadataSchema}.subscriptions_metadata WHERE key = $1`,\n      ['custom_schema_test'],\n    )\n    expect(subscriptionResult.rows).toHaveLength(1)\n\n    // Clean up\n    shape.unsubscribe()\n    await pg.electric.deleteSubscription('custom_schema_test')\n  })\n\n  it('handles transactions across multiple tables with syncShapesToTables', async () => {\n    // Clean up any existing data in the project table\n    await pgClient.query('TRUNCATE project;')\n    await pg.exec('TRUNCATE project;')\n\n    // Set up sync for both tables using syncShapesToTables\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'transaction_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'todo' },\n            fetchClient,\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'project' },\n            fetchClient,\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    // Insert initial data in a transaction\n    await pgClient.query('BEGIN;')\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Initial task', false);\n    `)\n    await pgClient.query(`\n      INSERT INTO project (id, name, active)\n      VALUES (1, 'Initial project', true);\n    `)\n    await pgClient.query('COMMIT;')\n\n    // Wait for both inserts to be synced\n    await vi.waitFor(\n      async () => {\n        const todoCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        const projectCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM project;`\n        expect(todoCount.rows[0].count).toBe(1)\n        expect(projectCount.rows[0].count).toBe(1)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify initial data was inserted\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Initial task',\n      done: false,\n    })\n\n    const projectResult = await pg.sql`SELECT * FROM project WHERE id = 1;`\n    expect(projectResult.rows[0]).toEqual({\n      id: 1,\n      name: 'Initial project',\n      active: true,\n    })\n\n    // Update both tables in a transaction\n    await pgClient.query('BEGIN;')\n    await pgClient.query(`\n      UPDATE todo SET task = 'Updated in transaction', done = true WHERE id = 1;\n    `)\n    await pgClient.query(`\n      UPDATE project SET name = 'Updated in transaction', active = false WHERE id = 1;\n    `)\n    await pgClient.query('COMMIT;')\n\n    // Wait for both updates to be synced\n    await vi.waitFor(\n      async () => {\n        const todoResult = await pg.sql<{\n          id: number\n          task: string\n          done: boolean\n        }>`SELECT * FROM todo WHERE id = 1;`\n        const projectResult = await pg.sql<{\n          id: number\n          name: string\n          active: boolean\n        }>`SELECT * FROM project WHERE id = 1;`\n        expect(todoResult.rows[0].task).toBe('Updated in transaction')\n        expect(projectResult.rows[0].name).toBe('Updated in transaction')\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify both updates were applied\n    const updatedTodoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(updatedTodoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Updated in transaction',\n      done: true,\n    })\n\n    const updatedProjectResult =\n      await pg.sql`SELECT * FROM project WHERE id = 1;`\n    expect(updatedProjectResult.rows[0]).toEqual({\n      id: 1,\n      name: 'Updated in transaction',\n      active: false,\n    })\n\n    // Clean up\n    syncResult.unsubscribe()\n  })\n\n  it('stops sync after unsubscribe', async () => {\n    // First sync session with a persistent key\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Insert initial batch of data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Initial task', false);\n    `)\n\n    // Wait 3 seconds to make sure the data is synced\n    await new Promise((resolve) => setTimeout(resolve, 3000))\n\n    // Wait for initial sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM todo;`\n      expect(result.rows[0].count).toBe(1)\n    })\n\n    // Check the data was inserted into the todo table\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Initial task',\n      done: false,\n    })\n\n    // Unsubscribe from first sync session\n    shape.unsubscribe()\n\n    // Insert new data before we resume the sync\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (2, 'New task after refetch', true);\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).not.toBe(2)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify only the new data is present (old data was cleared)\n    const result = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(result.rows).toEqual([\n      {\n        id: 1,\n        task: 'Initial task',\n        done: false,\n      },\n    ])\n\n    // Clean up\n    shape.unsubscribe()\n    await pg.electric.deleteSubscription('refetch_test')\n  })\n\n  it('resumes sync after unsubscribe', async () => {\n    // First sync session with a persistent key\n    let shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Insert initial batch of data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Initial task', false);\n    `)\n\n    // Wait for initial sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM todo;`\n      expect(result.rows[0].count).toBe(1)\n    })\n\n    // Check the data was inserted into the todo table\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Initial task',\n      done: false,\n    })\n\n    // Unsubscribe from first sync session\n    shape.unsubscribe()\n\n    // Insert new data before we resume the sync\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (2, 'New task after refetch', true);\n    `)\n\n    // Start a new sync session with the same key\n    shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).toBe(2)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify only the new data is present (old data was cleared)\n    const result = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(result.rows).toEqual([\n      {\n        id: 1,\n        task: 'Initial task',\n        done: false,\n      },\n      {\n        id: 2,\n        task: 'New task after refetch',\n        done: true,\n      },\n    ])\n\n    // Clean up\n    shape.unsubscribe()\n    await pg.electric.deleteSubscription('refetch_test')\n  })\n\n  it('resumes sync after pglite restart', async () => {\n    // First sync session with a persistent key\n    let shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Insert initial batch of data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Initial task', false);\n    `)\n\n    // Wait for initial sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM todo;`\n      expect(result.rows[0].count).toBe(1)\n    })\n\n    // Check the data was inserted into the todo table\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Initial task',\n      done: false,\n    })\n\n    // Unsubscribe from first sync session\n    shape.unsubscribe()\n\n    // Dump datadir and restart pglite\n    const datadir = await pg.dumpDataDir()\n    await pg.close()\n    const pg2 = await PGlite.create({\n      loadDataDir: datadir,\n      extensions: {\n        electric: electricSync(),\n      },\n    })\n\n    // Insert new data before we resume the sync\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (2, 'New task after refetch', true);\n    `)\n\n    // Start a new sync session with the same key\n    shape = await pg2.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg2.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).toBe(2)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify only the new data is present (old data was cleared)\n    const result = await pg2.sql`SELECT * FROM todo ORDER BY id;`\n    expect(result.rows).toEqual([\n      {\n        id: 1,\n        task: 'Initial task',\n        done: false,\n      },\n      {\n        id: 2,\n        task: 'New task after refetch',\n        done: true,\n      },\n    ])\n\n    // Clean up\n    shape.unsubscribe()\n  })\n\n  it('clears and restarts persisted shape stream state on refetch', async () => {\n    // First sync session with a persistent key\n    let shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Insert initial batch of data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Initial task', false);\n    `)\n\n    // Wait for initial sync to complete\n    await vi.waitFor(async () => {\n      const result = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM todo;`\n      expect(result.rows[0].count).toBe(1)\n    })\n\n    // Check the data was inserted into the todo table\n    const todoResult = await pg.sql`SELECT * FROM todo WHERE id = 1;`\n    expect(todoResult.rows[0]).toEqual({\n      id: 1,\n      task: 'Initial task',\n      done: false,\n    })\n\n    // Unsubscribe from first sync session\n    shape.unsubscribe()\n\n    // Delete the shape on the server to force a refetch\n    await deleteAllShapes()\n\n    // Insert new data before we resume the sync\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (2, 'New task after refetch', true);\n    `)\n\n    // Start a new sync session with the same key\n    shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'refetch_test',\n    })\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).toBe(2)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify only the new data is present (old data was cleared)\n    const result = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(result.rows).toEqual([\n      {\n        id: 1,\n        task: 'Initial task',\n        done: false,\n      },\n      {\n        id: 2,\n        task: 'New task after refetch',\n        done: true,\n      },\n    ])\n\n    // Clean up\n    shape.unsubscribe()\n    await pg.electric.deleteSubscription('refetch_test')\n  })\n\n  it('handles must-refetch control message across multiple tables', async () => {\n    // Set up sync for both tables using syncShapesToTables\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'refetch_multi_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'todo' },\n            fetchClient,\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'project' },\n            fetchClient,\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    // Insert initial data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Initial todo', false);\n    `)\n    await pgClient.query(`\n      INSERT INTO project (id, name, active)\n      VALUES (1, 'Initial project', true);\n    `)\n\n    // Wait for initial sync to complete\n    await vi.waitFor(\n      async () => {\n        const todoCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        const projectCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM project;`\n        return todoCount.rows[0].count === 1 && projectCount.rows[0].count === 1\n      },\n      { timeout: 5000 },\n    )\n\n    // Unsubscribe from sync\n    syncResult.unsubscribe()\n\n    // Delete the shapes on the server to force a refetch\n    await deleteAllShapesForTable('todo')\n    // we don't need to delete the project shape so we can test a must-refetch on\n    // just one of the tables\n\n    // Insert new data after refetch\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (2, 'New todo after refetch', true);\n    `)\n    await pgClient.query(`\n      INSERT INTO project (id, name, active)\n      VALUES (2, 'New project after refetch', false);\n    `)\n\n    // Start a new sync session with the same key\n    const newSyncResult = await pg.electric.syncShapesToTables({\n      key: 'refetch_multi_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'todo' },\n            fetchClient,\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'project' },\n            fetchClient,\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const todoCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        const projectCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM project;`\n        expect(todoCount.rows[0].count).toBe(2)\n        expect(projectCount.rows[0].count).toBe(2)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify only the new data is present (old data was cleared)\n    const todoResult = await pg.sql`SELECT * FROM todo ORDER BY id;`\n    expect(todoResult.rows).toEqual([\n      {\n        id: 1,\n        task: 'Initial todo',\n        done: false,\n      },\n      {\n        id: 2,\n        task: 'New todo after refetch',\n        done: true,\n      },\n    ])\n\n    const projectResult = await pg.sql`SELECT * FROM project ORDER BY id;`\n    expect(projectResult.rows).toEqual([\n      {\n        id: 1,\n        name: 'Initial project',\n        active: true,\n      },\n      {\n        id: 2,\n        name: 'New project after refetch',\n        active: false,\n      },\n    ])\n\n    // Clean up\n    newSyncResult.unsubscribe()\n    await pg.electric.deleteSubscription('refetch_multi_test')\n  })\n\n  it('handles onMustRefetch with local data', async () => {\n    // Insert initial data\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES\n        (1, 'Todo 1', false),\n        (2, 'Todo 2', false),\n        (3, 'Todo 3', false),\n        (4, 'Todo 4', false),\n        (5, 'Todo 5', false),\n        (6, 'Todo 6', false),\n        (7, 'Todo 7', false),\n        (8, 'Todo 8', false),\n        (9, 'Todo 9', false),\n        (10, 'Todo 10', false);\n    `)\n\n    // Set up sync for both tables using syncShapesToTables\n    const shape1 = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo', where: 'id > 5' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'todo_shape1',\n      onMustRefetch: async (tx) => {\n        await tx.exec(`DELETE FROM todo WHERE id > 5;`)\n      },\n    })\n\n    const shape2 = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo', where: 'id <= 5' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      shapeKey: 'todo_shape2',\n      onMustRefetch: async (tx) => {\n        await tx.exec(`DELETE FROM todo WHERE id <= 5;`)\n      },\n    })\n\n    // Wait for initial sync to complete\n    await vi.waitFor(\n      async () => {\n        const todoCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(todoCount.rows[0].count).toBe(10)\n      },\n      { timeout: 5000 },\n    )\n\n    // Insert some local data\n    await pg.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES\n        (11, 'Todo 11', false),\n        (12, 'Todo 12', false),\n        (13, 'Todo 13', false);\n    `)\n\n    // Delete the shapes on the server to force a must-refetch on it\n    await deleteShape('todo', shape1.stream.shapeHandle!)\n\n    // Update all to done\n    await pgClient.query(`\n      UPDATE todo SET done = true;\n    `)\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const todoCount = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo WHERE done = true;`\n        expect(todoCount.rows[0].count).toBe(10)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify that the local data is still present\n    const localTodoCount = await pg.sql<{\n      count: number\n    }>`SELECT COUNT(*) as count FROM todo WHERE id > 10 AND done = false;`\n    expect(localTodoCount.rows[0].count).toBe(3)\n\n    // Clean up\n    shape1.unsubscribe()\n    shape2.unsubscribe()\n    await pg.electric.deleteSubscription('todo_shape1')\n    await pg.electric.deleteSubscription('todo_shape2')\n  })\n\n  it('handles large initial load with multiple columns', async () => {\n    // Generate data in batches\n    const numRows = 5000 // Reduced from 10k to 5k for faster test execution\n    const batchSize = 500\n    const batches = Math.ceil(numRows / batchSize)\n\n    for (let batch = 0; batch < batches; batch++) {\n      const start = batch * batchSize\n      const end = Math.min(start + batchSize, numRows)\n\n      // Build a batch of INSERT statements\n      for (let i = start; i < end; i++) {\n        await pgClient.query(\n          `\n          INSERT INTO large_table (\n            id, col1, col2, col3, col4, col5, col6, col7, col8, col9\n          ) VALUES (\n            $1, $2, $3, $4, $5, $6, $7, $8, $9, $10\n          );\n        `,\n          [\n            i,\n            `text-${i}`,\n            i * 10,\n            i % 2 === 0,\n            new Date(2023, 0, 1, 12 + i), // 2023-01-01 12:00:00 + i hours\n            i * 1.5,\n            `long-text-value-${i}-with-some-additional-content`,\n            i * 5,\n            i % 3 === 0,\n            `another-text-value-${i}`,\n          ],\n        )\n      }\n    }\n\n    // Set up sync with COPY enabled for efficiency\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'large_table' },\n        fetchClient,\n      },\n      table: 'large_table',\n      primaryKey: ['id'],\n      initialInsertMethod: 'csv',\n      shapeKey: null,\n    })\n\n    // Wait for all data to be synced - increase timeout for large dataset\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM large_table;`\n        expect(result.rows[0].count).toBe(numRows)\n      },\n      { timeout: 60000 }, // 60 second timeout for large dataset\n    )\n\n    // Verify some sample data points\n    const firstRow = await pg.sql`SELECT * FROM large_table WHERE id = 0;`\n    expect(firstRow.rows[0]).toMatchObject({\n      id: 0,\n      col1: 'text-0',\n      col2: 0,\n      col3: true,\n      // Skip timestamp comparison as it might have timezone differences\n      col5: '0.00',\n      col6: 'long-text-value-0-with-some-additional-content',\n      col7: 0,\n      col8: true,\n      col9: 'another-text-value-0',\n    })\n\n    const middleRow = await pg.sql`SELECT * FROM large_table WHERE id = 2500;`\n    expect(middleRow.rows[0]).toMatchObject({\n      id: 2500,\n      col1: 'text-2500',\n      col2: 25000,\n      col3: true,\n      // Skip timestamp comparison\n      col5: '3750.00',\n      col6: 'long-text-value-2500-with-some-additional-content',\n      col7: 12500,\n      col8: false,\n      col9: 'another-text-value-2500',\n    })\n\n    const lastRow =\n      await pg.sql`SELECT * FROM large_table WHERE id = ${numRows - 1};`\n    expect(lastRow.rows[0]).toMatchObject({\n      id: numRows - 1,\n      col1: `text-${numRows - 1}`,\n      col2: (numRows - 1) * 10,\n      col3: (numRows - 1) % 2 === 0,\n      // Skip timestamp comparison\n      col5: ((numRows - 1) * 1.5).toFixed(2),\n      col6: `long-text-value-${numRows - 1}-with-some-additional-content`,\n      col7: (numRows - 1) * 5,\n      col8: (numRows - 1) % 3 === 0,\n      col9: `another-text-value-${numRows - 1}`,\n    })\n\n    // Clean up\n    shape.unsubscribe()\n  }, 60000)\n\n  it('handles large update with inserts, deletes, and updates', async () => {\n    // Insert initial rows (some will be updated, some deleted, some unchanged)\n    const totalRows = 3000\n    const batchSize = 500\n    const batches = Math.ceil(totalRows / batchSize)\n\n    for (let batch = 0; batch < batches; batch++) {\n      const start = batch * batchSize\n      const end = Math.min(start + batchSize, totalRows)\n\n      for (let i = start; i < end; i++) {\n        await pgClient.query(\n          `\n          INSERT INTO large_ops_table (id, value, number, flag)\n          VALUES ($1, $2, $3, $4);\n        `,\n          [i, `initial-value-${i}`, i, i % 2 === 0],\n        )\n      }\n    }\n\n    // Set up sync\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'large_ops_table' },\n        fetchClient,\n      },\n      table: 'large_ops_table',\n      primaryKey: ['id'],\n      initialInsertMethod: 'csv',\n      shapeKey: null,\n    })\n\n    // Wait for initial sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM large_ops_table;`\n        expect(result.rows[0].count).toBe(totalRows)\n      },\n      { timeout: 30000 },\n    )\n\n    // Begin transaction for large update\n    await pgClient.query('BEGIN;')\n\n    // 1. Delete rows (ids 1-999) - leave id=1 in the table\n    await pgClient.query(`\n      DELETE FROM large_ops_table WHERE id BETWEEN 1 AND 999;\n    `)\n\n    // 2. Update rows (ids 1000-1999)\n    await pgClient.query(`\n      UPDATE large_ops_table\n      SET value = 'updated-value', number = number * 10, flag = NOT flag\n      WHERE id BETWEEN 1000 AND 1999;\n    `)\n\n    // 3. Insert new rows\n    for (let i = totalRows; i < totalRows + 1000; i++) {\n      await pgClient.query(\n        `\n        INSERT INTO large_ops_table (id, value, number, flag)\n        VALUES ($1, $2, $3, $4);\n      `,\n        [i, `new-value-${i}`, i * 2, i % 3 === 0],\n      )\n    }\n\n    // Commit the transaction\n    await pgClient.query('COMMIT;')\n\n    // Wait for all changes to sync\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM large_ops_table;`\n        expect(result.rows[0].count).toBe(3001) // 3000 original - 999 deleted + 1000 new = 3001\n      },\n      { timeout: 30000 },\n    )\n\n    // Verify deleted rows are gone\n    const deletedCount = await pg.sql<{\n      count: number\n    }>`SELECT COUNT(*) as count FROM large_ops_table WHERE id BETWEEN 1 AND 999;`\n    expect(deletedCount.rows[0].count).toBe(0)\n\n    // Verify updated rows have new values\n    const updatedRow =\n      await pg.sql`SELECT * FROM large_ops_table WHERE id = 1500;`\n    expect(updatedRow.rows[0]).toEqual({\n      id: 1500,\n      value: 'updated-value',\n      number: 15000, // 1500 * 10\n      flag: 1500 % 2 !== 0, // NOT the original flag\n    })\n\n    // Verify new rows were inserted\n    const newRow = await pg.sql`SELECT * FROM large_ops_table WHERE id = 3500;`\n    expect(newRow.rows[0]).toEqual({\n      id: 3500,\n      value: 'new-value-3500',\n      number: 7000, // 3500 * 2\n      flag: 3500 % 3 === 0,\n    })\n\n    // Verify unchanged rows remain the same\n    const unchangedRow =\n      await pg.sql`SELECT * FROM large_ops_table WHERE id = 2500;`\n    expect(unchangedRow.rows[0]).toEqual({\n      id: 2500,\n      value: 'initial-value-2500',\n      number: 2500,\n      flag: 2500 % 2 === 0,\n    })\n\n    // Clean up\n    shape.unsubscribe()\n  })\n\n  it('will perform initial sync for multi-shape subscriptions when only one table has data', async () => {\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'cycle_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'todo' },\n            fetchClient,\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'project' },\n            fetchClient,\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    await pgClient.query(`\n      INSERT INTO todo (id, task, done)\n      VALUES (1, 'Todo 1', false);\n    `)\n\n    // Wait for todo insert to sync\n    await vi.waitFor(\n      async () => {\n        const todoResult = await pg.sql<{\n          id: number\n          task: string\n          done: boolean\n        }>`SELECT * FROM todo WHERE id = 1;`\n        expect(todoResult.rows.length).toBe(1)\n        expect(todoResult.rows[0]).toEqual({\n          id: 1,\n          task: `Todo 1`,\n          done: false,\n        })\n      },\n      { timeout: 5000 },\n    )\n\n    syncResult.unsubscribe()\n  })\n\n  it('cycles through operations with todo and project tables', async () => {\n    // Set up sync for both tables using syncShapesToTables\n    const syncResult = await pg.electric.syncShapesToTables({\n      key: 'cycle_test',\n      shapes: {\n        todo_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'todo' },\n            fetchClient,\n          },\n          table: 'todo',\n          primaryKey: ['id'],\n        },\n        project_shape: {\n          shape: {\n            url: ELECTRIC_URL,\n            params: { table: 'project' },\n            fetchClient,\n          },\n          table: 'project',\n          primaryKey: ['id'],\n        },\n      },\n    })\n\n    // Run multiple iterations of the cycle\n    const iterations = 20\n    for (let i = 1; i <= iterations; i++) {\n      // 1. Insert into todo, check\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES (${i * 6 - 5}, 'Todo ${i}.1', false);\n      `)\n\n      // Wait for todo insert to sync\n      await vi.waitFor(\n        async () => {\n          const todoResult = await pg.sql<{\n            id: number\n            task: string\n            done: boolean\n          }>`SELECT * FROM todo WHERE id = ${i * 6 - 5};`\n          expect(todoResult.rows.length).toBe(1)\n          expect(todoResult.rows[0]).toEqual({\n            id: i * 6 - 5,\n            task: `Todo ${i}.1`,\n            done: false,\n          })\n        },\n        { timeout: 5000 },\n      )\n\n      // 2. Insert into todo and project in transaction, check\n      await pgClient.query('BEGIN;')\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES (${i * 6 - 4}, 'Todo ${i}.2', true);\n      `)\n      await pgClient.query(`\n        INSERT INTO project (id, name, active)\n        VALUES (${i}, 'Project ${i}', true);\n      `)\n      await pgClient.query('COMMIT;')\n\n      // Wait for transaction to sync\n      await vi.waitFor(\n        async () => {\n          const todoResult = await pg.sql<{\n            id: number\n            task: string\n            done: boolean\n          }>`SELECT * FROM todo WHERE id = ${i * 6 - 4};`\n          const projectResult = await pg.sql<{\n            id: number\n            name: string\n            active: boolean\n          }>`SELECT * FROM project WHERE id = ${i};`\n          expect(todoResult.rows).toHaveLength(1)\n          expect(projectResult.rows).toHaveLength(1)\n        },\n        { timeout: 5000 },\n      )\n\n      // 3. Update todo, check\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES (${i * 6 - 3}, 'Todo ${i}.3', false);\n      `)\n      await pgClient.query(`\n        UPDATE todo SET task = 'Updated Todo ${i}.1', done = true WHERE id = ${i * 6 - 5};\n      `)\n\n      // Wait for update to sync\n      await vi.waitFor(\n        async () => {\n          const todoResult = await pg.sql<{\n            id: number\n            task: string\n            done: boolean\n          }>`SELECT * FROM todo WHERE id = ${i * 6 - 5};`\n          expect(todoResult.rows[0]).toEqual({\n            id: i * 6 - 5,\n            task: `Updated Todo ${i}.1`,\n            done: true,\n          })\n        },\n        { timeout: 5000 },\n      )\n\n      // 4. Update project and todo, check\n      await pgClient.query('BEGIN;')\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES (${i * 6 - 2}, 'Todo ${i}.4', true);\n      `)\n      await pgClient.query(`\n        UPDATE todo SET task = 'Updated Todo ${i}.2', done = false WHERE id = ${i * 6 - 4};\n      `)\n      await pgClient.query(`\n        UPDATE project SET name = 'Updated Project ${i}', active = false WHERE id = ${i};\n      `)\n      await pgClient.query('COMMIT;')\n\n      // Wait for updates to sync\n      await vi.waitFor(\n        async () => {\n          const todoResult = await pg.sql<{\n            id: number\n            task: string\n            done: boolean\n          }>`SELECT * FROM todo WHERE id = ${i * 6 - 4};`\n          const projectResult = await pg.sql<{\n            id: number\n            name: string\n            active: boolean\n          }>`SELECT * FROM project WHERE id = ${i};`\n          expect(todoResult.rows[0].task).toBe(`Updated Todo ${i}.2`)\n          expect(projectResult.rows[0].name).toBe(`Updated Project ${i}`)\n        },\n        { timeout: 5000 },\n      )\n\n      // 5. Delete a todo, check\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES (${i * 6 - 1}, 'Todo ${i}.5', false);\n      `)\n      await pgClient.query(`\n        DELETE FROM todo WHERE id = ${i * 6 - 3};\n      `)\n\n      // Wait for delete to sync\n      await vi.waitFor(\n        async () => {\n          const todoResult = await pg.sql<{\n            id: number\n            task: string\n            done: boolean\n          }>`SELECT * FROM todo WHERE id = ${i * 6 - 3};`\n          expect(todoResult.rows).toHaveLength(0)\n        },\n        { timeout: 5000 },\n      )\n\n      // 6. Delete the project, check\n      await pgClient.query(`\n        INSERT INTO todo (id, task, done)\n        VALUES (${i * 6}, 'Todo ${i}.6', true);\n      `)\n      await pgClient.query(`\n        DELETE FROM project WHERE id = ${i};\n      `)\n\n      // Wait for delete to sync\n      await vi.waitFor(\n        async () => {\n          const projectResult = await pg.sql<{\n            id: number\n            name: string\n            active: boolean\n          }>`SELECT * FROM project WHERE id = ${i};`\n          expect(projectResult.rows).toHaveLength(0)\n        },\n        { timeout: 5000 },\n      )\n\n      // Verify that after each iteration:\n      // - project count is 0\n      // - todo count increases by 1 (we add 6 todos and delete 1 per iteration)\n      const projectCount = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM project;`\n      const todoCount = await pg.sql<{\n        count: number\n      }>`SELECT COUNT(*) as count FROM todo;`\n\n      expect(projectCount.rows[0].count).toBe(0)\n      expect(todoCount.rows[0].count).toBe(i * 5) // 6 inserts - 1 delete per iteration\n    }\n\n    // Clean up\n    syncResult.unsubscribe()\n    await pg.electric.deleteSubscription('cycle_test')\n  }, 30000) // allow 30 seconds to run this test as it is long\n\n  const types_syncer = async (initialInsertMethod: InitialInsertMethod) => {\n    // Test data for different data types\n    const testData = [\n      {\n        id: 1,\n        int_col: 42,\n        float_col: 3.14159,\n        boolean_col: true,\n        string_col: 'Hello, world!',\n        json_col: { name: 'Test', nested: { value: 123 }, array: [1, 2, 3] },\n        json_plain_col: {\n          type: 'JSON',\n          different: 'from JSONB',\n          nums: [42, 43],\n        },\n        int_array_col: [1, 2, 3],\n        enum_col: 'one',\n      },\n      {\n        id: 2,\n        int_col: -100,\n        float_col: -0.5,\n        boolean_col: false,\n        string_col: 'Special chars: \\n\\t\"\\'\\\\',\n        json_col: { empty: {}, list: [] },\n        json_plain_col: { empty_arr: [], value: null },\n        int_array_col: [4, 5, 6],\n        enum_col: 'two',\n      },\n      {\n        id: 3,\n        int_col: 0,\n        float_col: 0.0,\n        boolean_col: true,\n        string_col: '',\n        json_col: null,\n        json_plain_col: null,\n        int_array_col: [7, 8, 9],\n        enum_col: 'three',\n      },\n    ]\n\n    // Insert data into PostgreSQL\n    for (const row of testData) {\n      await pgClient.query(\n        `INSERT INTO data_types_table\n         (id, int_col, float_col, boolean_col, string_col, json_col, json_plain_col, int_array_col, enum_col)\n         VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)`,\n        [\n          row.id,\n          row.int_col,\n          row.float_col,\n          row.boolean_col,\n          row.string_col,\n          row.json_col,\n          row.json_plain_col,\n          row.int_array_col,\n          row.enum_col,\n        ],\n      )\n    }\n\n    // Set up sync\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'data_types_table' },\n        fetchClient,\n      },\n      table: 'data_types_table',\n      initialInsertMethod,\n      primaryKey: ['id'],\n      shapeKey: 'data_types_test',\n    })\n\n    // Wait for sync to complete\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{ count: number }>`\n          SELECT COUNT(*) as count FROM data_types_table;\n        `\n        expect(result.rows[0].count).toBe(testData.length)\n      },\n      { timeout: 5000 },\n    )\n\n    // Define the row type for type safety\n    type DataTypeRow = {\n      id: number\n      int_col: number\n      float_col: string\n      boolean_col: boolean\n      string_col: string\n      json_col: any\n      json_plain_col: any\n      int_array_col: number[]\n      enum_col: 'one' | 'two' | 'three'\n    }\n\n    // Verify data was synced correctly\n    for (const expected of testData) {\n      const result = await pg.sql<DataTypeRow>`\n        SELECT * FROM data_types_table WHERE id = ${expected.id};\n      `\n\n      const row = result.rows[0]\n      expect(row.id).toBe(expected.id)\n      expect(row.int_col).toBe(expected.int_col)\n\n      // Float comparison needs to account for potential precision differences\n      expect(\n        Math.abs(parseFloat(row.float_col) - expected.float_col),\n      ).toBeLessThan(0.00001)\n\n      expect(row.boolean_col).toBe(expected.boolean_col)\n      expect(row.string_col).toBe(expected.string_col)\n\n      // JSON data might be serialized differently but should be equivalent\n      if (expected.json_col === null) {\n        expect(row.json_col).toBeNull()\n      } else {\n        expect(row.json_col).toStrictEqual(expected.json_col)\n      }\n\n      // Plain JSON data should also be properly synced\n      if (expected.json_plain_col === null) {\n        expect(row.json_plain_col).toBeNull()\n      } else {\n        expect(row.json_plain_col).toStrictEqual(expected.json_plain_col)\n      }\n\n      expect(row.int_array_col).toStrictEqual(expected.int_array_col)\n      expect(row.enum_col).toBe(expected.enum_col)\n    }\n\n    // Update a row with new values for all columns\n    await pgClient.query(\n      `UPDATE data_types_table SET\n       int_col = $1, float_col = $2, boolean_col = $3,\n       string_col = $4, json_col = $5, json_plain_col = $6,\n       int_array_col = $7, enum_col = $8\n       WHERE id = 1`,\n      [\n        99999,\n        1234.5678,\n        false,\n        'Updated text value',\n        { updated: true, values: [4, 5, 6] },\n        { updated: 'plainJSON', order: { might: 'matter' } },\n        [3, 4, 5],\n        'two',\n      ],\n    )\n\n    // Wait for update to sync\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{ int_col: number }>`\n          SELECT int_col FROM data_types_table WHERE id = 1;\n        `\n        expect(result.rows[0].int_col).toBe(99999)\n      },\n      { timeout: 5000 },\n    )\n\n    // Verify updated data\n    const updatedResult = await pg.sql<DataTypeRow>`\n      SELECT * FROM data_types_table WHERE id = 1;\n    `\n    const updated = updatedResult.rows[0]\n    expect(updated.int_col).toBe(99999)\n    expect(Math.abs(parseFloat(updated.float_col) - 1234.5678)).toBeLessThan(\n      0.00001,\n    )\n    expect(updated.boolean_col).toBe(false)\n    expect(updated.string_col).toBe('Updated text value')\n    expect(updated.json_col).toStrictEqual({ updated: true, values: [4, 5, 6] })\n    expect(updated.json_plain_col).toStrictEqual({\n      updated: 'plainJSON',\n      order: { might: 'matter' },\n    })\n    expect(updated.int_array_col).toStrictEqual([3, 4, 5])\n    expect(updated.enum_col).toBe('two')\n\n    // Clean up\n    shape.unsubscribe()\n    await pg.electric.deleteSubscription('data_types_test')\n  }\n\n  // FIXME: fails...\n  // it('syncs data with various column types initial COPY', async () => {\n  //   await types_syncer('csv')\n  // }, 60000)\n\n  it('syncs data with various column types initial json_to_recordset', async () => {\n    await types_syncer('json')\n  }, 60000)\n\n  it('syncs data with various column types', async () => {\n    await types_syncer('insert')\n  }, 60000)\n\n  const many_syncer = async (\n    method: InitialInsertMethod | 'useCopy',\n    numTodos: number = 150000,\n    rowSize: number = 100,\n  ) => {\n    // Batch the inserts to Postgres\n    const batchSize = 1000\n    const batches = Math.ceil(numTodos / batchSize)\n    const rowBytesValue = 'a'.repeat(rowSize)\n    for (let batch = 0; batch < batches; batch++) {\n      const start = batch * batchSize\n      const end = Math.min(start + batchSize, numTodos)\n\n      // Build a batch of INSERT statements using a VALUES list for better performance\n      const values: string[] = []\n      const params: (number | string | boolean)[] = []\n      let paramIndex = 1\n\n      for (let i = start; i < end; i++) {\n        values.push(`($${paramIndex}, $${paramIndex + 1}, $${paramIndex + 2})`)\n        params.push(i, `Todo ${i} ${rowBytesValue}`, i % 3 === 0) // id, task, done\n        paramIndex += 3\n      }\n\n      const query = `\n        INSERT INTO todo (id, task, done)\n        VALUES ${values.join(', ')};\n      `\n\n      await pgClient.query(query, params)\n    }\n\n    // We want to test the deprecated useCopy option, but also the new initialInsertMethod option\n    let useCopy: boolean | undefined = undefined\n    let initialInsertMethod: InitialInsertMethod | undefined = undefined\n    if (method === 'useCopy') {\n      useCopy = true\n      initialInsertMethod = undefined\n    } else {\n      initialInsertMethod = method\n    }\n\n    // Set up sync with COPY enabled for efficiency\n    const shape = await pg.electric.syncShapeToTable({\n      shape: {\n        url: ELECTRIC_URL,\n        params: { table: 'todo' },\n        fetchClient,\n      },\n      table: 'todo',\n      primaryKey: ['id'],\n      useCopy,\n      initialInsertMethod,\n      shapeKey: 'large_todo_sync_test',\n    })\n\n    // Wait for all data to be synced - increase timeout for large dataset\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          count: number\n        }>`SELECT COUNT(*) as count FROM todo;`\n        expect(result.rows[0].count).toBe(numTodos)\n      },\n      { timeout: 30000 },\n    )\n\n    // Verify some sample data points\n    const firstRow = await pg.sql`SELECT * FROM todo WHERE id = 0;`\n    expect(firstRow.rows[0]).toEqual({\n      id: 0,\n      task: `Todo 0 ${rowBytesValue}`,\n      done: true, // 0 % 3 === 0\n    })\n\n    const middleRowId = Math.floor(numTodos / 2)\n    const middleRow =\n      await pg.sql`SELECT * FROM todo WHERE id = ${middleRowId};`\n    expect(middleRow.rows[0]).toEqual({\n      id: middleRowId,\n      task: `Todo ${middleRowId} ${rowBytesValue}`,\n      done: middleRowId % 3 === 0,\n    })\n\n    const lastRow = await pg.sql`SELECT * FROM todo WHERE id = ${numTodos - 1};`\n    expect(lastRow.rows[0]).toEqual({\n      id: numTodos - 1,\n      task: `Todo ${numTodos - 1} ${rowBytesValue}`,\n      done: (numTodos - 1) % 3 === 0,\n    })\n\n    // Test that we can still perform operations after the large sync\n    await pgClient.query(`\n      UPDATE todo SET task = 'Updated after sync' WHERE id = 0;\n    `)\n\n    // Wait for update to sync\n    await vi.waitFor(\n      async () => {\n        const result = await pg.sql<{\n          task: string\n        }>`SELECT task FROM todo WHERE id = 0;`\n        expect(result.rows[0].task).toBe('Updated after sync')\n      },\n      { timeout: 5000 },\n    )\n\n    // Clean up\n    shape.unsubscribe()\n    await pg.electric.deleteSubscription('large_todo_sync_test')\n  }\n\n  for (const numTodos of [20_000, 150_000, 300_000]) {\n    const rowSizeOptions = numTodos <= 20_000 ? [100, 10000] : [100]\n    // 20_000 row of 100000 bytes triggers the batching by size for inserts\n    for (const rowSize of rowSizeOptions) {\n      describe(`handles initial sync of ${numTodos} rows`, () => {\n        describe(`with row size ${rowSize} bytes`, () => {\n          it(`with insert`, async () => {\n            await many_syncer('insert', numTodos, rowSize)\n          }, 360000)\n\n          if (numTodos <= 150_000) {\n            it(`with COPY`, async () => {\n              await many_syncer('csv', numTodos, rowSize)\n            }, 60000)\n\n            it(`with json_to_recordset`, async () => {\n              await many_syncer('json', numTodos, rowSize)\n            }, 60000)\n          }\n\n          if (numTodos <= 20_000) {\n            it(`with the deprecated useCopy option`, async () => {\n              await many_syncer('useCopy', numTodos)\n            }, 60000)\n          }\n        })\n      })\n    }\n  }\n})\n"
  },
  {
    "path": "packages/pglite-sync/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"include\": [\n    \"src\",\n    \"test\",\n    \"eslint.config.js\",\n    \"test-setup.ts\",\n    \"tsup.config.js\",\n    \"vitest.config.ts\"\n  ]\n}"
  },
  {
    "path": "packages/pglite-sync/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: ['src/index.ts'],\n    format: ['cjs', 'esm'],\n    outDir: 'dist',\n    dts: true,\n    minify: minify,\n    sourcemap: true,\n    clean: true,\n  },\n])\n"
  },
  {
    "path": "packages/pglite-sync/vitest-e2e.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    name: 'pglite-sync-e2e',\n    dir: './test-e2e',\n    watch: false,\n    typecheck: { enabled: true },\n    testTimeout: 30000,\n    hookTimeout: 30000,\n    restoreMocks: true,\n    testTransformMode: {\n      ssr: ['**/*'],\n    },\n  },\n})\n"
  },
  {
    "path": "packages/pglite-sync/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    name: 'pglite-sync',\n    dir: './test',\n    watch: false,\n    typecheck: { enabled: true },\n    testTimeout: 30000,\n    hookTimeout: 30000,\n    restoreMocks: true,\n    testTransformMode: {\n      ssr: ['**/*'],\n    },\n  },\n})\n"
  },
  {
    "path": "packages/pglite-tools/.gitignore",
    "content": "release/"
  },
  {
    "path": "packages/pglite-tools/CHANGELOG.md",
    "content": "# @electric-sql/pglite-tools\n\n## 0.3.1\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n\n## 0.3.0\n\n### Minor Changes\n\n- Updated dependencies [d848955]\n  - @electric-sql/pglite@0.4.0\n\n## 0.2.21\n\n### Patch Changes\n\n- Updated dependencies [3dfa40f]\n  - @electric-sql/pglite@0.3.16\n\n## 0.2.20\n\n### Patch Changes\n\n- Updated dependencies [45bff97]\n- Updated dependencies [5ec474f]\n  - @electric-sql/pglite@0.3.15\n\n## 0.2.19\n\n### Patch Changes\n\n- Updated dependencies [8785034]\n- Updated dependencies [90cfee8]\n  - @electric-sql/pglite@0.3.14\n\n## 0.2.18\n\n### Patch Changes\n\n- ad3d0d8: Updated pg_dump to use callback data exchange; built pg_dump with emscripten\n- Updated dependencies [ad3d0d8]\n  - @electric-sql/pglite@0.3.13\n\n## 0.2.17\n\n### Patch Changes\n\n- Updated dependencies [ce0e74e]\n  - @electric-sql/pglite@0.3.12\n\n## 0.2.16\n\n### Patch Changes\n\n- Updated dependencies [9a104b9]\n  - @electric-sql/pglite@0.3.11\n\n## 0.2.15\n\n### Patch Changes\n\n- Updated dependencies [ad765ed]\n  - @electric-sql/pglite@0.3.10\n\n## 0.2.14\n\n### Patch Changes\n\n- e40ccad: Upgrade emsdk\n- Updated dependencies [e40ccad]\n  - @electric-sql/pglite@0.3.9\n\n## 0.2.13\n\n### Patch Changes\n\n- be677b4: fix pg_dump on Windows systems\n\n  When calling **pg_dump** on Windows system the function fails with an error as the one bellow.\n  ❗ Notice the double drive letter\n  `Error: ENOENT: no such file or directory, open 'E:\\C:\\Users\\<USERNAME>\\AppData\\Local\\npm-cache\\_npx\\ba4f1959e38407b5\\node_modules\\@electric-sql\\pglite-tools\\dist\\pg_dump.wasm'`\n\n  The problem is in execPgDump function at line\n  `const blob = await fs.readFile(bin.toString().slice(7))`\n  I think the intention here was to remove `file://` from the begging of the path. However this is not necesarry readFile can handle URL objects.\n  Moreover this will fail on Windows becase the slice creates a path like '/C:/<USERNAME>...' and the readFile function will add the extra drive letter\n\n- Updated dependencies [f12a582]\n- Updated dependencies [bd263aa]\n  - @electric-sql/pglite@0.3.8\n\n## 0.2.12\n\n### Patch Changes\n\n- Updated dependencies [0936962]\n  - @electric-sql/pglite@0.3.7\n\n## 0.2.11\n\n### Patch Changes\n\n- Updated dependencies [6898469]\n- Updated dependencies [469be18]\n- Updated dependencies [64e33c7]\n  - @electric-sql/pglite@0.3.6\n\n## 0.2.10\n\n### Patch Changes\n\n- 8172b72: new pg_dump wasm blob\n- Updated dependencies [6653899]\n- Updated dependencies [5f007fc]\n  - @electric-sql/pglite@0.3.5\n\n## 0.2.9\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n- Updated dependencies [1fcaa3e]\n- Updated dependencies [38a55d0]\n- Updated dependencies [aac7003]\n- Updated dependencies [8ca254d]\n  - @electric-sql/pglite@0.3.4\n\n## 0.2.8\n\n### Patch Changes\n\n- Updated dependencies [ea2c7c7]\n  - @electric-sql/pglite@0.3.3\n\n## 0.2.7\n\n### Patch Changes\n\n- Updated dependencies [e2c654b]\n  - @electric-sql/pglite@0.3.2\n\n## 0.2.6\n\n### Patch Changes\n\n- Updated dependencies [713364e]\n  - @electric-sql/pglite@0.3.1\n\n## 0.2.5\n\n### Patch Changes\n\n- 317fd36: Specify a peer dependency range on @electric-sql/pglite\n- Updated dependencies [97e52f7]\n- Updated dependencies [4356024]\n- Updated dependencies [0033bc7]\n  - @electric-sql/pglite@0.3.0\n\n## 0.2.4\n\n### Patch Changes\n\n- bbfa9f1: Restore SEARCH_PATH after pg_dump\n\n## 0.2.3\n\n### Patch Changes\n\n- 8545760: pg_dump error messages set on the thrown Error\n- d26e658: Run a DEALLOCATE ALL after each pg_dump to cleanup the prepared statements.\n\n## 0.2.2\n\n### Patch Changes\n\n- 17c9875: add node imports to the package.json browser excludes\n\n## 0.2.1\n\n### Patch Changes\n\n- 6547374: Alpha version of pg_dump support in the browser and Node using a WASM build of pg_dump\n"
  },
  {
    "path": "packages/pglite-tools/README.md",
    "content": "# pglite-tools\n\nA selection of tools for working with [PGlite](https://github.com/electric-sql/pglite) databases, including pg_dump.\n\nInstall with:\n\n```bash\nnpm install @electric-sql/pglite-tools\n```\n\n## `pgDump`\n\npg_dump is a tool for dumping a PGlite database to a SQL file, this is a WASM build of pg_dump that can be used in a browser or other JavaScript environments. You can read more about pg_dump [in the Postgres docs](https://www.postgresql.org/docs/current/app-pgdump.html).\n\nNote: pg_dump will execute `DEALLOCATE ALL;` after each dump. Since this is running on the same (single) connection, any prepared statements that you have made before running pg_dump will be affected.\n\n### Options\n\n- `pg`: A PGlite instance.\n- `args`: An array of arguments to pass to pg_dump - see [pg_dump docs](https://www.postgresql.org/docs/current/app-pgdump.html) for more details.\n- `fileName`: The name of the file to write the dump to, defaults to `dump.sql`.\n\nThere are a number of arguments that are automatically added to the end of the command, these are:\n\n- `--inserts` - use inserts format for the output, this ensures that the dump can be restored by simply passing the output to `pg.exec()`.\n- `-j 1` - concurrency level, set to 1 as multithreading isn't supported.\n- `-f /tmp/out.sql` - the output file is always written to `/tmp/out.sql` in the virtual file system.\n- `-U postgres` - use the postgres user is hard coded.\n\n### Returns\n\n- A `File` object containing the dump.\n\n### Caveats\n\n- After restoring a dump, you might want to set the same search path as the initial db.\n\n### Example\n\n```typescript\nimport { PGlite } from '@electric-sql/pglite'\nimport { pgDump } from '@electric-sql/pglite-tools/pg_dump'\n\nconst pg = await PGlite.create()\n\n// Create a table and insert some data\nawait pg.exec(`\n  CREATE TABLE test (\n    id SERIAL PRIMARY KEY,\n    name TEXT\n  );\n`)\nawait pg.exec(`\n  INSERT INTO test (name) VALUES ('test');\n`)\n\n// store the current search path so it can be used in the restored db\nconst initialSearchPath = (await pg1.query<{ search_path: string }>('SHOW SEARCH_PATH;')).rows[0].search_path\n\n// Dump the database to a file\nconst dump = await pgDump({ pg })\n// Get the dump text - used for restore\nconst dumpContent = await dump.text()\n\n// Create a new database \nconst restoredPG = await PGlite.create()\n// ... and restore it using the dump\nawait restoredPG.exec(dumpContent)\n\n// optional - after importing, set search path back to the initial one\nawait restoredPG.exec(`SET search_path TO ${initialSearchPath};`);\n```\n"
  },
  {
    "path": "packages/pglite-tools/eslint.config.js",
    "content": "import globals from 'globals'\nimport rootConfig from '../../eslint.config.js'\n\nexport default [\n  ...rootConfig,\n  {\n    ignores: ['release/**/*', 'examples/**/*', 'dist/**/*'],\n  },\n  {\n    languageOptions: {\n      globals: {\n        ...globals.browser,\n        ...globals.node,\n      },\n    },\n    rules: {\n      ...rootConfig.rules,\n      '@typescript-eslint/no-explicit-any': 'off',\n    },\n  },\n  {\n    files: ['tests/targets/deno/**/*.js'],\n    languageOptions: {\n      globals: {\n        Deno: false,\n      },\n    },\n  },\n]\n"
  },
  {
    "path": "packages/pglite-tools/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-tools\",\n  \"version\": \"0.3.1\",\n  \"description\": \"Tools for working with PGlite databases\",\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite\",\n    \"directory\": \"packages/pglite-tools\"\n  },\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"pglite\",\n    \"pg_dump\",\n    \"pg_restore\"\n  ],\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"type\": \"module\",\n  \"main\": \"./dist/index.cjs\",\n  \"module\": \"./dist/index.js\",\n  \"types\": \"./dist/index.d.ts\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    },\n    \"./pg_dump\": {\n      \"import\": {\n        \"types\": \"./dist/pg_dump.d.ts\",\n        \"default\": \"./dist/pg_dump.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/pg_dump.d.cts\",\n        \"default\": \"./dist/pg_dump.cjs\"\n      }\n    }\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"lint\": \"eslint ./src ./tests --report-unused-disable-directives --max-warnings 0\",\n    \"format\": \"prettier --write ./src ./tests\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"pnpm lint && prettier --check ./src ./tests\",\n    \"test\": \"vitest\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"browser\": {\n    \"fs\": false,\n    \"fs/promises\": false\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@types/emscripten\": \"^1.41.1\",\n    \"@types/node\": \"^20.16.11\",\n    \"tsx\": \"^4.19.2\",\n    \"vitest\": \"^1.3.1\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:0.4.1\"\n  }\n}\n"
  },
  {
    "path": "packages/pglite-tools/src/index.ts",
    "content": "export * from './pg_dump'\n"
  },
  {
    "path": "packages/pglite-tools/src/pgDumpModFactory.ts",
    "content": "import PgDumpModFactory from '../release/pg_dump'\n\ntype IDBFS = Emscripten.FileSystemType & {\n  quit: () => void\n  dbs: Record<string, IDBDatabase>\n}\n\nexport type FS = typeof FS & {\n  filesystems: {\n    MEMFS: Emscripten.FileSystemType\n    NODEFS: Emscripten.FileSystemType\n    IDBFS: IDBFS\n  }\n  quit: () => void\n}\n\nexport interface PgDumpMod\n  extends Omit<EmscriptenModule, 'preInit' | 'preRun' | 'postRun'> {\n  preInit: Array<{ (mod: PgDumpMod): void }>\n  preRun: Array<{ (mod: PgDumpMod): void }>\n  postRun: Array<{ (mod: PgDumpMod): void }>\n  FS: FS\n  WASM_PREFIX: string\n  INITIAL_MEMORY: number\n  _pgl_set_rw_cbs: (read_cb: number, write_cb: number) => void\n  addFunction: (\n    cb: (ptr: any, length: number) => void,\n    signature: string,\n  ) => number\n  removeFunction: (f: number) => void\n  onExit: (status: number) => void\n  print: (test: string) => void\n  printErr: (text: string) => void\n  callMain: (args?: string[]) => number\n}\n\ntype PgDumpFactory<T extends PgDumpMod = PgDumpMod> = (\n  moduleOverrides?: Partial<T>,\n) => Promise<T>\n\nexport default PgDumpModFactory as PgDumpFactory<PgDumpMod>\n"
  },
  {
    "path": "packages/pglite-tools/src/pg_dump.ts",
    "content": "import { PGlite } from '@electric-sql/pglite'\nimport PgDumpModFactory, { PgDumpMod } from './pgDumpModFactory'\n\nconst dumpFilePath = '/tmp/out.sql'\n\n/**\n * Creates a new Uint8Array based on two different ArrayBuffers\n *\n * @private\n * @param {ArrayBuffers} buffer1 The first buffer.\n * @param {ArrayBuffers} buffer2 The second buffer.\n * @return {ArrayBuffers} The new ArrayBuffer created out of the two.\n */\nfunction concat(buffer1: ArrayBuffer, buffer2: ArrayBuffer) {\n  const tmp = new Uint8Array(buffer1.byteLength + buffer2.byteLength)\n  tmp.set(new Uint8Array(buffer1), 0)\n  tmp.set(new Uint8Array(buffer2), buffer1.byteLength)\n  return tmp\n}\n\ninterface ExecResult {\n  exitCode: number\n  fileContents: string\n  stderr: string\n  stdout: string\n}\n\n/**\n * Inner function to execute pg_dump\n */\nasync function execPgDump({\n  pg,\n  args,\n}: {\n  pg: PGlite\n  args: string[]\n}): Promise<ExecResult> {\n  let pgdump_write, pgdump_read\n  let exitCode = 0\n  let stderrOutput: string = ''\n  let stdoutOutput: string = ''\n  const emscriptenOpts: Partial<PgDumpMod> = {\n    noExitRuntime: false,\n    print: (text) => {\n      stdoutOutput += text\n    },\n    printErr: (text) => {\n      stderrOutput += text\n    },\n    onExit: (status: number) => {\n      exitCode = status\n    },\n    preRun: [\n      (mod: PgDumpMod) => {\n        mod.onRuntimeInitialized = () => {\n          let bufferedBytes: Uint8Array = new Uint8Array()\n\n          pgdump_write = mod.addFunction((ptr: any, length: number) => {\n            let bytes\n            try {\n              bytes = mod.HEAPU8.subarray(ptr, ptr + length)\n            } catch (e: any) {\n              console.error('error', e)\n              throw e\n            }\n            const currentResponse = pg.execProtocolRawSync(bytes)\n            bufferedBytes = concat(bufferedBytes, currentResponse)\n            return length\n          }, 'iii')\n\n          pgdump_read = mod.addFunction((ptr: any, max_length: number) => {\n            let length = bufferedBytes.length\n            if (length > max_length) {\n              length = max_length\n            }\n            try {\n              mod.HEAP8.set(bufferedBytes.subarray(0, length), ptr)\n            } catch (e) {\n              console.error(e)\n            }\n            bufferedBytes = bufferedBytes.subarray(length, bufferedBytes.length)\n            return length\n          }, 'iii')\n\n          mod._pgl_set_rw_cbs(pgdump_read, pgdump_write)\n\n          // default $HOME in emscripten is /home/web_user\n          mod.FS.chmod('/home/web_user/.pgpass', 0o0600) // https://www.postgresql.org/docs/current/libpq-pgpass.html\n        }\n      },\n    ],\n  }\n\n  const mod = await PgDumpModFactory(emscriptenOpts)\n  mod.callMain(args)\n  let fileContents = ''\n  if (!exitCode) {\n    fileContents = mod.FS.readFile(dumpFilePath, { encoding: 'utf8' })\n  }\n\n  return {\n    exitCode,\n    fileContents,\n    stderr: stderrOutput,\n    stdout: stdoutOutput,\n  }\n}\n\ninterface PgDumpOptions {\n  pg: PGlite\n  args?: string[]\n  database?: string\n  fileName?: string\n  verbose?: boolean\n}\n\n/**\n * Execute pg_dump\n * @param pg - The PGlite instance\n * @param args - The arguments to pass to pg_dump\n * @param fileName - The name of the file to write the dump to (dump.sql by default)\n * @returns The file containing the dump\n */\nexport async function pgDump({\n  pg,\n  args,\n  fileName = 'dump.sql',\n}: PgDumpOptions) {\n  const getSearchPath = await pg.query<{ search_path: string }>(\n    'SHOW SEARCH_PATH;',\n  )\n  const searchPath = getSearchPath.rows[0].search_path\n\n  const baseArgs = [\n    '-U',\n    'web_user',\n    '--inserts',\n    '-j',\n    '1',\n    '-f',\n    dumpFilePath,\n  ]\n\n  const execResult = await execPgDump({\n    pg,\n    args: [...(args ?? []), ...baseArgs],\n  })\n\n  await pg.exec(`DEALLOCATE ALL`)\n  await pg.exec(`SET SEARCH_PATH = ${searchPath}`)\n  const newSearchPath = await pg.query<{ search_path: string }>(\n    'SHOW SEARCH_PATH;',\n  )\n  if (newSearchPath.rows[0].search_path !== searchPath) {\n    console.warn(\n      `Warning: search_path has been changed from ${searchPath} to ${newSearchPath}`,\n      searchPath,\n      newSearchPath,\n    )\n  }\n\n  if (execResult.exitCode !== 0) {\n    throw new Error(\n      `pg_dump failed with exit code ${execResult.exitCode}. \\nError message: ${execResult.stderr}`,\n    )\n  }\n\n  const file = new File([execResult.fileContents], fileName, {\n    type: 'text/plain',\n  })\n\n  return file\n}\n"
  },
  {
    "path": "packages/pglite-tools/tests/pg_dump.test.ts",
    "content": "import { describe, it, expect } from 'vitest'\nimport { PGlite } from '@electric-sql/pglite'\nimport { pgDump } from '../dist/pg_dump.js'\nimport * as fs from 'fs/promises'\n\ndescribe('pgDump', () => {\n  it('should dump an empty database', async () => {\n    const pg = await PGlite.create()\n    const dump = await pgDump({ pg })\n\n    expect(dump).toBeInstanceOf(File)\n    expect(dump.name).toBe('dump.sql')\n\n    const content = await dump.text()\n    expect(content).toContain('PostgreSQL database dump')\n  })\n\n  it('should dump an empty database multiple times', async () => {\n    const pg = await PGlite.create()\n\n    for (let i = 0; i < 5; i++) {\n      const fileName = `dump_${i}.sql`\n      const dump = await pgDump({ pg, fileName })\n\n      expect(dump).toBeInstanceOf(File)\n      expect(dump.name).toBe(fileName)\n\n      const content = await dump.text()\n      expect(content).toContain('PostgreSQL database dump')\n    }\n  })\n\n  it('should dump a database with tables and data', async () => {\n    const pg = await PGlite.create()\n\n    // Create test tables and insert data\n    await pg.exec(`\n      CREATE TABLE test1 (\n        id SERIAL PRIMARY KEY,\n        name TEXT\n      );\n      INSERT INTO test1 (name) VALUES ('test1-row1');\n      \n      CREATE TABLE test2 (\n        id SERIAL PRIMARY KEY,\n        value INTEGER\n      );\n      INSERT INTO test2 (value) VALUES (42);\n    `)\n\n    const dump = await pgDump({ pg })\n    const content = await dump.text()\n\n    // Check for table creation\n    expect(content).toContain('CREATE TABLE public.test1')\n    expect(content).toContain('CREATE TABLE public.test2')\n\n    // Check for data inserts\n    expect(content).toContain('INSERT INTO public.test1')\n    expect(content).toContain(\"'test1-row1'\")\n    expect(content).toContain('INSERT INTO public.test2')\n    expect(content).toContain('42')\n  })\n\n  it('should respect custom filename', async () => {\n    const pg = await PGlite.create()\n    const dump = await pgDump({ pg, fileName: 'custom.sql' })\n\n    expect(dump.name).toBe('custom.sql')\n  })\n\n  it('should handle custom pg_dump arguments', async () => {\n    const pg = await PGlite.create()\n    await pg.exec(`\n      CREATE TABLE test (id SERIAL PRIMARY KEY, name TEXT);\n      INSERT INTO test (name) VALUES ('row1');\n    `)\n\n    // Use --schema-only to exclude data\n    const dump = await pgDump({ pg, args: ['--schema-only'] })\n    const content = await dump.text()\n\n    expect(content).toContain('CREATE TABLE public.test')\n    expect(content).not.toContain('INSERT INTO public.test')\n  })\n\n  it('should be able to restore dumped database', async () => {\n    const pg1 = await PGlite.create()\n\n    // Create original database\n    await pg1.exec(`\n      CREATE TABLE test (id SERIAL PRIMARY KEY, name TEXT);\n      INSERT INTO test (name) VALUES ('row1'), ('row2');\n    `)\n\n    const initialSearchPath = (\n      await pg1.query<{ search_path: string }>('SHOW SEARCH_PATH;')\n    ).rows[0].search_path\n\n    // Dump database\n    const dump = await pgDump({ pg: pg1 })\n    const dumpContent = await dump.text()\n\n    // Create new database and restore\n    const pg2 = await PGlite.create()\n    await pg2.exec(dumpContent)\n\n    // after importing, set search path back to the initial one\n    await pg2.exec(`SET search_path TO ${initialSearchPath};`)\n\n    // Verify data\n    const result = await pg2.query<{ name: string }>(\n      'SELECT * FROM test ORDER BY id',\n    )\n    expect(result.rows).toHaveLength(2)\n    expect(result.rows[0].name).toBe('row1')\n    expect(result.rows[1].name).toBe('row2')\n  })\n\n  it('pg_dump should not change SEARCH_PATH', async () => {\n    const pg = await PGlite.create()\n\n    await pg.exec(`SET SEARCH_PATH = amigo;`)\n    const initialSearchPath = await pg.query('SHOW SEARCH_PATH;')\n\n    const dump = await pgDump({ pg })\n    await dump.text()\n\n    const finalSearchPath = await pg.query('SHOW SEARCH_PATH;')\n\n    expect(initialSearchPath).toEqual(finalSearchPath)\n  })\n\n  it('specify datadir: should dump a database with tables and data', async () => {\n    const dataDir = '/tmp/pg_dump_pglite_data_dir'\n    await fs.rm(dataDir, { force: true, recursive: true })\n    const pg = await PGlite.create({\n      dataDir: dataDir,\n    })\n\n    // Create test tables and insert data\n    await pg.exec(`\n      CREATE TABLE test1 (\n        id SERIAL PRIMARY KEY,\n        name TEXT\n      );\n      INSERT INTO test1 (name) VALUES ('test1-row1');\n      \n      CREATE TABLE test2 (\n        id SERIAL PRIMARY KEY,\n        value INTEGER\n      );\n      INSERT INTO test2 (value) VALUES (42);\n    `)\n\n    const dump = await pgDump({ pg })\n    const content = await dump.text()\n\n    // Check for table creation\n    expect(content).toContain('CREATE TABLE public.test1')\n    expect(content).toContain('CREATE TABLE public.test2')\n\n    // Check for data inserts\n    expect(content).toContain('INSERT INTO public.test1')\n    expect(content).toContain(\"'test1-row1'\")\n    expect(content).toContain('INSERT INTO public.test2')\n    expect(content).toContain('42')\n  })\n\n  it('param --quote-all-identifiers should work', async () => {\n    const pg = await PGlite.create()\n\n    // Create test tables and insert data\n    await pg.exec(`\n      CREATE TABLE test1 (\n        id SERIAL PRIMARY KEY,\n        name TEXT\n      );\n      INSERT INTO test1 (name) VALUES ('test1-row1');\n      \n      CREATE TABLE test2 (\n        id SERIAL PRIMARY KEY,\n        value INTEGER\n      );\n      INSERT INTO test2 (value) VALUES (42);\n    `)\n\n    const dump = await pgDump({ pg, args: ['--quote-all-identifiers'] })\n    const content = await dump.text()\n\n    // Check for table creation\n    expect(content).toContain('CREATE TABLE \"public\".\"test1\"')\n    expect(content).toContain('CREATE TABLE \"public\".\"test2\"')\n\n    // Check for data inserts\n    expect(content).toContain('INSERT INTO \"public\".\"test1\"')\n    expect(content).toContain(\"'test1-row1'\")\n    expect(content).toContain('INSERT INTO \"public\".\"test2\"')\n    expect(content).toContain('42')\n  })\n})\n"
  },
  {
    "path": "packages/pglite-tools/tests/setup.ts",
    "content": "import { beforeAll } from 'vitest'\nimport { execSync } from 'child_process'\nimport { existsSync } from 'fs'\nimport { join } from 'path'\n\nbeforeAll(() => {\n  // Check if we need to build\n  const distPath = join(__dirname, '../dist')\n  const wasmPath = join(distPath, 'pg_dump.wasm')\n\n  if (!existsSync(wasmPath)) {\n    console.log('Building project before running tests...')\n    execSync('pnpm build', { stdio: 'inherit' })\n  }\n})\n"
  },
  {
    "path": "packages/pglite-tools/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"types\": [\n      \"@types/emscripten\",\n      \"node\"\n    ]\n  },\n  \"include\": [\"src\", \"tsup.config.ts\", \"vitest.config.ts\"]\n}\n"
  },
  {
    "path": "packages/pglite-tools/tsup.config.ts",
    "content": "import { cpSync } from 'fs'\nimport { resolve } from 'path'\nimport { defineConfig } from 'tsup'\n\nconst entryPoints = [\n  'src/index.ts',\n  'src/pg_dump.ts',\n]\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: entryPoints,\n    sourcemap: true,\n    dts: {\n      entry: entryPoints,\n      resolve: true,\n    },\n    clean: true,\n    minify: minify,\n    shims: true,\n    format: ['esm', 'cjs'],\n    onSuccess: async () => {\n      cpSync(resolve('release/pg_dump.wasm'), resolve('dist/pg_dump.wasm'))\n    }\n  },\n])\n"
  },
  {
    "path": "packages/pglite-tools/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\n\nexport default defineConfig({\n  test: {\n    globals: true,\n    environment: 'node',\n    testTimeout: 30000,\n    setupFiles: ['./tests/setup.ts'],\n  },\n})\n"
  },
  {
    "path": "packages/pglite-vue/.gitignore",
    "content": "dist\nnode_modules"
  },
  {
    "path": "packages/pglite-vue/CHANGELOG.md",
    "content": "# @electric-sql/pglite-vue\n\n## 0.3.1\n\n### Patch Changes\n\n- Updated dependencies [37fb39e]\n  - @electric-sql/pglite@0.4.1\n\n## 0.3.0\n\n### Minor Changes\n\n- Updated dependencies [d848955]\n  - @electric-sql/pglite@0.4.0\n\n## 0.2.34\n\n### Patch Changes\n\n- Updated dependencies [3dfa40f]\n  - @electric-sql/pglite@0.3.16\n\n## 0.2.33\n\n### Patch Changes\n\n- Updated dependencies [45bff97]\n- Updated dependencies [5ec474f]\n  - @electric-sql/pglite@0.3.15\n\n## 0.2.32\n\n### Patch Changes\n\n- Updated dependencies [8785034]\n- Updated dependencies [90cfee8]\n  - @electric-sql/pglite@0.3.14\n\n## 0.2.31\n\n### Patch Changes\n\n- Updated dependencies [ad3d0d8]\n  - @electric-sql/pglite@0.3.13\n\n## 0.2.30\n\n### Patch Changes\n\n- Updated dependencies [ce0e74e]\n  - @electric-sql/pglite@0.3.12\n\n## 0.2.29\n\n### Patch Changes\n\n- Updated dependencies [9a104b9]\n  - @electric-sql/pglite@0.3.11\n\n## 0.2.28\n\n### Patch Changes\n\n- Updated dependencies [ad765ed]\n  - @electric-sql/pglite@0.3.10\n\n## 0.2.27\n\n### Patch Changes\n\n- Updated dependencies [e40ccad]\n  - @electric-sql/pglite@0.3.9\n\n## 0.2.26\n\n### Patch Changes\n\n- Updated dependencies [f12a582]\n- Updated dependencies [bd263aa]\n  - @electric-sql/pglite@0.3.8\n\n## 0.2.25\n\n### Patch Changes\n\n- Updated dependencies [0936962]\n  - @electric-sql/pglite@0.3.7\n\n## 0.2.24\n\n### Patch Changes\n\n- Updated dependencies [6898469]\n- Updated dependencies [469be18]\n- Updated dependencies [64e33c7]\n  - @electric-sql/pglite@0.3.6\n\n## 0.2.23\n\n### Patch Changes\n\n- Updated dependencies [6653899]\n- Updated dependencies [5f007fc]\n  - @electric-sql/pglite@0.3.5\n\n## 0.2.22\n\n### Patch Changes\n\n- 38a55d0: fix cjs/esm misconfigurations\n- Updated dependencies [1fcaa3e]\n- Updated dependencies [38a55d0]\n- Updated dependencies [aac7003]\n- Updated dependencies [8ca254d]\n  - @electric-sql/pglite@0.3.4\n\n## 0.2.21\n\n### Patch Changes\n\n- Updated dependencies [ea2c7c7]\n  - @electric-sql/pglite@0.3.3\n\n## 0.2.20\n\n### Patch Changes\n\n- Updated dependencies [e2c654b]\n  - @electric-sql/pglite@0.3.2\n\n## 0.2.19\n\n### Patch Changes\n\n- Updated dependencies [713364e]\n  - @electric-sql/pglite@0.3.1\n\n## 0.2.18\n\n### Patch Changes\n\n- 317fd36: Specify a peer dependency range on @electric-sql/pglite\n- Updated dependencies [97e52f7]\n- Updated dependencies [4356024]\n- Updated dependencies [0033bc7]\n  - @electric-sql/pglite@0.3.0\n\n## 0.2.17\n\n### Patch Changes\n\n- Updated dependencies [6bdd74e]\n- Updated dependencies [f94d591]\n  - @electric-sql/pglite@0.2.17\n\n## 0.2.16\n\n### Patch Changes\n\n- 7ce9f04: Fix Vue useLiveQuery to allow no parameters to be provided\n- Updated dependencies [c36fd09]\n- Updated dependencies [e037883]\n- Updated dependencies [d6b981b]\n- Updated dependencies [17e7664]\n- Updated dependencies [118ba3e]\n- Updated dependencies [d93c1bb]\n- Updated dependencies [ddd4a68]\n- Updated dependencies [f3f1103]\n- Updated dependencies [67fb2aa]\n  - @electric-sql/pglite@0.2.16\n\n## 0.2.15\n\n### Patch Changes\n\n- Updated dependencies [fa13714]\n  - @electric-sql/pglite@0.2.15\n\n## 0.2.14\n\n### Patch Changes\n\n- Updated dependencies [6547374]\n- Updated dependencies [6547374]\n- Updated dependencies [df5c290]\n- Updated dependencies [1784d04]\n- Updated dependencies [ae36974]\n- Updated dependencies [75f9f6d]\n- Updated dependencies [ce212cf]\n  - @electric-sql/pglite@0.2.14\n\n## 0.2.13\n\n### Patch Changes\n\n- 3d8efbb: Bump dependencies to address Dependabot alerts\n- Updated dependencies [5e39036]\n- Updated dependencies [3d8efbb]\n- Updated dependencies [1844b10]\n- Updated dependencies [79e6082]\n- Updated dependencies [16d2296]\n- Updated dependencies [cf50f47]\n- Updated dependencies [bd1b3b9]\n- Updated dependencies [5e39036]\n- Updated dependencies [16d2296]\n- Updated dependencies [e9bd9a7]\n- Updated dependencies [c442c88]\n  - @electric-sql/pglite@0.2.13\n\n## 0.2.12\n\n### Patch Changes\n\n- Updated dependencies [1495625]\n- Updated dependencies [d3905cf]\n- Updated dependencies [1f036dc]\n- Updated dependencies [52ddcb0]\n  - @electric-sql/pglite@0.2.12\n\n## 0.2.11\n\n### Patch Changes\n\n- Updated dependencies [2aed553]\n  - @electric-sql/pglite@0.2.11\n\n## 0.2.10\n\n### Patch Changes\n\n- Updated dependencies [3113d56]\n- Updated dependencies [23cd31a]\n  - @electric-sql/pglite@0.2.10\n\n## 0.2.9\n\n### Patch Changes\n\n- Updated dependencies [20008c2]\n- Updated dependencies [a5712a8]\n  - @electric-sql/pglite@0.2.9\n\n## 0.2.8\n\n### Patch Changes\n\n- b6e963c: fix: add export providePGlite and injectPGlite\n- Updated dependencies [53ec60e]\n- Updated dependencies [880b60d]\n- Updated dependencies [058ed7c]\n- Updated dependencies [2831c34]\n- Updated dependencies [880b60d]\n- Updated dependencies [880b60d]\n- Updated dependencies [4aeb677]\n- Updated dependencies [19b3529]\n  - @electric-sql/pglite@0.2.8\n\n## 0.2.7\n\n### Patch Changes\n\n- Updated dependencies [5e65236]\n- Updated dependencies [5e65236]\n  - @electric-sql/pglite@0.2.7\n\n## 0.2.6\n\n### Patch Changes\n\n- Updated dependencies [09b356c]\n- Updated dependencies [4238595]\n- Updated dependencies [ef57e10]\n  - @electric-sql/pglite@0.2.6\n\n## 0.2.5\n\n### Patch Changes\n\n- fcb101c: Add `useLiveQuery.sql` hook for SQL string templating.\n- Updated dependencies [fcb101c]\n- Updated dependencies [3ee5e60]\n- Updated dependencies [0dc34af]\n  - @electric-sql/pglite@0.2.5\n\n## 0.2.4\n\n### Patch Changes\n\n- Updated dependencies [113aa56]\n  - @electric-sql/pglite@0.2.4\n\n## 0.2.3\n\n### Patch Changes\n\n- Updated dependencies [d8ef285]\n  - @electric-sql/pglite@0.2.3\n\n## 0.2.2\n\n### Patch Changes\n\n- Updated dependencies [be41880]\n  - @electric-sql/pglite@0.2.2\n\n## 0.2.1\n\n### Patch Changes\n\n- 446c2df: Include both utility for typed injection and static injectors.\n- Updated dependencies [2cc39ff]\n  - @electric-sql/pglite@0.2.1\n"
  },
  {
    "path": "packages/pglite-vue/README.md",
    "content": "# PGlite Vue Bindings\n\nThis package implements Vue hooks for [PGLite](https://pglite.dev/) on top of the [live query plugin](https://pglite.dev/docs/live-queries). Full documentation is available at [pglite.dev/docs/framework-hooks/vue](https://pglite.dev/docs/framework-hooks/vue).\n\nTo install:\n\n```sh\nnpm install @electric-sql/pglite-vue\n```\n\nThe hooks this package provides are:\n\n- [providePGlite](https://pglite.dev/docs/framework-hooks/vue#providepglite): Provide a PGlite instance to all child components.\n- [injectPGlite](https://pglite.dev/docs/framework-hooks/vue#injectpglite): Retrieve the provided PGlite instance.\n- [makePGliteDependencyInjector](https://pglite.dev/docs/framework-hooks/vue#makepglitedependencyinjector): Utility to create a typed version of `providePGlite` and `injectPGlite`.\n- [useLiveQuery](https://pglite.dev/docs/framework-hooks/vue#uselivequery): Reactively receive results of a live query change\n- [useLiveIncrementalQuery](https://pglite.dev/docs/framework-hooks/vue#useliveincrementalquery): Reactively receive results of a live query change by offloading the diff to PGlite\n"
  },
  {
    "path": "packages/pglite-vue/eslint.config.js",
    "content": "import rootConfig from '../../eslint.config.js'\nimport pluginVue from 'eslint-plugin-vue'\n\nexport default [...rootConfig, ...pluginVue.configs['flat/base']]\n"
  },
  {
    "path": "packages/pglite-vue/package.json",
    "content": "{\n  \"name\": \"@electric-sql/pglite-vue\",\n  \"version\": \"0.3.1\",\n  \"description\": \"Vue hooks for using PGlite\",\n  \"type\": \"module\",\n  \"private\": false,\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"postgres\",\n    \"sql\",\n    \"database\",\n    \"wasm\",\n    \"client\",\n    \"pglite\",\n    \"vue\"\n  ],\n  \"author\": \"Electric DB Limited\",\n  \"homepage\": \"https://pglite.dev\",\n  \"license\": \"Apache-2.0\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/electric-sql/pglite.git\",\n    \"directory\": \"packages/pglite-vue\"\n  },\n  \"scripts\": {\n    \"build\": \"tsup\",\n    \"check:exports\": \"attw . --pack --profile node16\",\n    \"test-v2\": \"vue-demi-switch 2 vue2 && vitest\",\n    \"test-v2.7\": \"vue-demi-switch 2.7 vue2.7 && vitest\",\n    \"test-v3\": \"vue-demi-switch 3 && vitest\",\n    \"test\": \"pnpm test-v2 && pnpm test-v2.7 && pnpm test-v3\",\n    \"lint\": \"eslint ./src ./test\",\n    \"format\": \"prettier --write ./src ./test\",\n    \"typecheck\": \"tsc\",\n    \"stylecheck\": \"eslint ./src ./test && prettier --check ./src ./test\",\n    \"prepublishOnly\": \"pnpm check:exports\"\n  },\n  \"types\": \"dist/index.d.ts\",\n  \"module\": \"dist/index.js\",\n  \"main\": \"dist/index.cjs\",\n  \"exports\": {\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/index.d.ts\",\n        \"default\": \"./dist/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/index.d.cts\",\n        \"default\": \"./dist/index.cjs\"\n      }\n    }\n  },\n  \"files\": [\n    \"dist\"\n  ],\n  \"dependencies\": {\n    \"vue-demi\": \"^0.14.10\"\n  },\n  \"devDependencies\": {\n    \"@arethetypeswrong/cli\": \"^0.18.1\",\n    \"@electric-sql/pglite\": \"workspace:*\",\n    \"@eslint-react/eslint-plugin\": \"^1.14.3\",\n    \"@testing-library/dom\": \"^10.4.0\",\n    \"@testing-library/vue\": \"^8.1.0\",\n    \"@vitejs/plugin-vue\": \"^5.1.4\",\n    \"@vue/composition-api\": \"1.7.2\",\n    \"eslint-plugin-vue\": \"^9.29.0\",\n    \"jsdom\": \"^24.1.3\",\n    \"vitest\": \"^2.1.2\",\n    \"vue\": \"^3.5.11\",\n    \"vue2\": \"npm:vue@~2.6.14\",\n    \"vue2.7\": \"npm:vue@~2.7.16\"\n  },\n  \"peerDependencies\": {\n    \"@electric-sql/pglite\": \"workspace:0.4.1\",\n    \"@vue/composition-api\": \"^1.1.2\",\n    \"vue\": \"^2.6.0 || ^3.3.0\"\n  },\n  \"peerDependenciesMeta\": {\n    \"@vue/composition-api\": {\n      \"optional\": true\n    }\n  }\n}\n"
  },
  {
    "path": "packages/pglite-vue/src/dependency-injection.ts",
    "content": "import { provide, inject, unref, Ref } from 'vue-demi'\nimport { PGliteWithLive } from '@electric-sql/pglite/live'\n\ninterface PGliteDependencyInjection<T extends PGliteWithLive> {\n  providePGlite: (db: Ref<T | undefined> | (T | undefined)) => void\n  injectPGlite: () => T | undefined\n}\n\nconst PGliteKey = Symbol('PGliteProvider')\n\n/**\n * Call this function to get a PGlite provider and injector for your Vue application.\n * We can't provide a predefined provider and injector because that would lose type information\n * as the PGlite interface depends on the extensions provided to PGlite.\n *\n * @example\n * This example loses type information about the PGlite extensions:\n * ```\n * provide<typeof db>(PGliteKey, db)\n *\n * // generic PGlite instance type, no extension types\n * const { db } = inject(PGliteKey)\n * ```\n *\n * @returns An object with two functions: `providePGlite` and `injectPGlite`.\n *\n */\nfunction makePGliteDependencyInjector<\n  T extends PGliteWithLive,\n>(): PGliteDependencyInjection<T> {\n  const providePGlite = (db: Ref<T | undefined> | (T | undefined)): void =>\n    provide(PGliteKey, db)\n\n  const injectPGlite = (): T | undefined => {\n    const db = inject<Ref<T> | T>(PGliteKey)\n    return unref(db)\n  }\n\n  return {\n    providePGlite,\n    injectPGlite,\n  }\n}\n\nconst { injectPGlite, providePGlite } =\n  makePGliteDependencyInjector<PGliteWithLive>()\n\nexport { makePGliteDependencyInjector, injectPGlite, providePGlite }\n"
  },
  {
    "path": "packages/pglite-vue/src/hooks.ts",
    "content": "import {\n  watch,\n  WatchSource,\n  readonly,\n  DeepReadonly,\n  shallowReactive,\n  toRefs,\n  ToRefs,\n  shallowRef,\n  onScopeDispose,\n  ref,\n  isRef,\n  unref,\n} from 'vue-demi'\nimport { Results } from '@electric-sql/pglite'\nimport { query as buildQuery } from '@electric-sql/pglite/template'\nimport { injectPGlite } from './dependency-injection'\n\ntype UnsubscribeFn = () => Promise<void>\ntype QueryParams = unknown[] | undefined | null\ntype QueryResult<T> =\n  | Omit<Results<T>, 'affectedRows'>\n  | { rows: undefined; fields: undefined; blob: undefined }\ntype LiveQueryResults<T> = ToRefs<DeepReadonly<QueryResult<T>>>\n\nfunction useLiveQueryImpl<T = { [key: string]: unknown }>(\n  query: string | WatchSource<string>,\n  params?: QueryParams | WatchSource<QueryParams> | WatchSource<unknown>[],\n  key?: string | WatchSource<string>,\n): LiveQueryResults<T> {\n  const db = injectPGlite()!\n\n  const liveUpdate = shallowReactive<\n    | Omit<Results<T>, 'affectedRows'>\n    | { rows: undefined; fields: undefined; blob: undefined }\n  >({\n    rows: undefined,\n    fields: undefined,\n    blob: undefined,\n  })\n\n  // keep track of live query subscriptions to unsubscribe when scope is disposed\n  const unsubscribeRef = shallowRef<UnsubscribeFn>()\n\n  const querySource = typeof query === 'string' ? ref(query) : query\n  const paramsSources = !params\n    ? []\n    : Array.isArray(params)\n      ? params.map(ref)\n      : [ref(params)]\n\n  const keySource = typeof key === 'string' ? ref(key) : key\n\n  watch(\n    key !== undefined\n      ? [querySource, keySource, ...paramsSources]\n      : [querySource, ...paramsSources],\n    () => {\n      let cancelled = false\n      const cb = (results: Results<T>) => {\n        if (cancelled) return\n        liveUpdate.rows = results.rows\n        liveUpdate.fields = results.fields\n        if (results.blob !== undefined) {\n          liveUpdate.blob = results.blob\n        }\n      }\n\n      const query = isRef(querySource) ? unref(querySource) : querySource()\n\n      const paramVals = Array.isArray(params)\n        ? params.map((p) => (typeof p === 'function' ? p() : unref(p)))\n        : typeof params === 'function'\n          ? params()\n          : unref(params)\n\n      const key = isRef(keySource) ? keySource.value : keySource?.()\n\n      const ret =\n        key !== undefined\n          ? db.live.incrementalQuery<T>(query, paramVals, key, cb)\n          : db.live.query<T>(query, paramVals, cb)\n\n      unsubscribeRef.value = () => {\n        cancelled = true\n        return ret.then(({ unsubscribe }) => unsubscribe())\n      }\n    },\n    { immediate: true },\n  )\n\n  onScopeDispose(() => unsubscribeRef.value?.())\n\n  // @ts-ignore vue v2 has issues with DeepReadonly mapping\n  return toRefs(readonly(liveUpdate))\n}\n\nexport function useLiveQuery<T = { [key: string]: unknown }>(\n  query: string | WatchSource<string>,\n  params?: QueryParams | WatchSource<QueryParams> | WatchSource<unknown>[],\n): LiveQueryResults<T> {\n  return useLiveQueryImpl<T>(query, params)\n}\n\nuseLiveQuery.sql = function <T = { [key: string]: unknown }>(\n  strings: TemplateStringsArray,\n  ...values: any[]\n): LiveQueryResults<T> {\n  const { query, params } = buildQuery(strings, ...values)\n  return useLiveQueryImpl<T>(query, params)\n}\n\nexport function useLiveIncrementalQuery<T = { [key: string]: unknown }>(\n  query: string | WatchSource<string>,\n  params: QueryParams | WatchSource<QueryParams> | WatchSource<unknown>[],\n  key: string | WatchSource<string>,\n): LiveQueryResults<T> {\n  return useLiveQueryImpl<T>(query, params, key)\n}\n"
  },
  {
    "path": "packages/pglite-vue/src/index.ts",
    "content": "export * from './dependency-injection'\nexport * from './hooks'\n"
  },
  {
    "path": "packages/pglite-vue/test/hooks.test.ts",
    "content": "import { vi, describe, it, expect, beforeEach, beforeAll } from 'vitest'\nimport { ref } from 'vue-demi'\nimport { PGlite } from '@electric-sql/pglite'\nimport { live, PGliteWithLive } from '@electric-sql/pglite/live'\nimport { type useLiveIncrementalQuery, type useLiveQuery } from '../src'\n\nfunction flushPromises(timeoutMs = 0): Promise<void> {\n  return new Promise((resolve) => setTimeout(resolve, timeoutMs))\n}\n\nlet db: PGliteWithLive\n\ndescribe('hooks', () => {\n  beforeAll(async () => {\n    // mock db injection\n    vi.doMock('vue-demi', async () => {\n      const vue = await vi.importActual('vue-demi')\n      return {\n        ...vue,\n        inject: vi.fn((_) => db),\n      }\n    })\n  })\n\n  testLiveQuery('useLiveQuery')\n\n  testLiveQuery('useLiveIncrementalQuery')\n\n  describe('useLiveQuery.sql', () => {\n    beforeEach(async () => {\n      // prepare db for test\n      db = await PGlite.create({\n        extensions: {\n          live,\n        },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n    })\n\n    it('updates when query without parameters is provided', async () => {\n      const { useLiveQuery } = await import('../src')\n      await db.exec(`INSERT INTO test (name) VALUES ('test1');`)\n\n      const result = useLiveQuery('SELECT * FROM test;')\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n      ])\n\n      await db.exec(`INSERT INTO test (name) VALUES ('test2');`)\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n    })\n\n    it('updates when query parameter ref changes', async () => {\n      const { useLiveQuery } = await import('../src')\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const param = ref('test1')\n\n      const result = useLiveQuery.sql`SELECT * FROM test WHERE name = ${param};`\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n      ])\n\n      param.value = 'test2'\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n    })\n\n    it('updates when query contains WHERE ANY', async () => {\n      const { useLiveQuery } = await import('../src')\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const ids = await db.query(`SELECT id FROM test`)\n      expect(ids.rows.length).toBe(2)\n\n      const result = useLiveQuery(`SELECT * FROM test WHERE id = ANY($1)`, [\n        [1, 2],\n      ])\n      await flushPromises()\n\n      await db.exec(`UPDATE test SET name = 'foobar' WHERE name = 'test2';`)\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n        {\n          id: 2,\n          name: 'foobar',\n        },\n      ])\n    })\n  })\n})\nfunction testLiveQuery(queryHook: 'useLiveQuery' | 'useLiveIncrementalQuery') {\n  describe(queryHook, () => {\n    let hookFn: typeof useLiveQuery | typeof useLiveIncrementalQuery\n    const incKey = 'id'\n\n    beforeAll(async () => {\n      const { useLiveQuery, useLiveIncrementalQuery } = await import('../src')\n      hookFn =\n        queryHook === 'useLiveQuery' ? useLiveQuery : useLiveIncrementalQuery\n    })\n\n    beforeEach(async () => {\n      // prepare db for test\n      db = await PGlite.create({\n        extensions: {\n          live,\n        },\n      })\n\n      await db.exec(`\n        CREATE TABLE IF NOT EXISTS test (\n          id SERIAL PRIMARY KEY,\n          name TEXT\n        );\n      `)\n    })\n\n    it('can receive initial results', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const result = hookFn(`SELECT * FROM test`, [], incKey)\n\n      expect(result?.rows?.value).toEqual(undefined)\n\n      await flushPromises()\n\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n      expect(result?.fields?.value).toEqual([\n        {\n          name: 'id',\n          dataTypeID: 23,\n        },\n        {\n          name: 'name',\n          dataTypeID: 25,\n        },\n      ])\n    })\n\n    it('can receive changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const result = hookFn(`SELECT * FROM test`, [], incKey)\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n\n      // detect new inserts\n      await db.exec(`INSERT INTO test (name) VALUES ('test3');`)\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n        {\n          id: 2,\n          name: 'test2',\n        },\n        {\n          id: 3,\n          name: 'test3',\n        },\n      ])\n\n      // detect deletes\n      await db.exec(`DELETE FROM test WHERE name = 'test1';`)\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 2,\n          name: 'test2',\n        },\n        {\n          id: 3,\n          name: 'test3',\n        },\n      ])\n\n      // detect updates\n      await db.exec(`UPDATE test SET name = 'foobar' WHERE name = 'test2';`)\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 3,\n          name: 'test3',\n        },\n        {\n          id: 2,\n          name: 'foobar',\n        },\n      ])\n\n      // // detect truncates\n      // db.exec(`TRUNCATE test;`)\n      // await flushPromises()\n      // expect(result?.rows?.value).toHaveLength(0)\n    })\n\n    it('updates when query ref changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const query = ref('SELECT * FROM test')\n\n      const result = hookFn(query, [], incKey)\n\n      await flushPromises()\n      expect(result?.rows?.value).toHaveLength(2)\n\n      query.value = `SELECT * FROM test WHERE name = 'test1'`\n\n      await flushPromises()\n      expect(result?.rows?.value).toHaveLength(1)\n    })\n\n    it('updates when query getter changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const query = ref('SELECT * FROM test')\n\n      const result = hookFn(() => query.value, [], incKey)\n\n      await flushPromises()\n      expect(result?.rows?.value).toHaveLength(2)\n\n      query.value = `SELECT * FROM test WHERE name = 'test1'`\n\n      await flushPromises()\n      expect(result?.rows?.value).toHaveLength(1)\n    })\n\n    it('updates when query parameter ref changes', async () => {\n      await db.exec(`INSERT INTO test (name) VALUES ('test1'),('test2');`)\n\n      const params = ref(['test1'])\n\n      const result = hookFn(\n        `SELECT * FROM test WHERE name = $1;`,\n        params,\n        incKey,\n      )\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 1,\n          name: 'test1',\n        },\n      ])\n\n      params.value = ['test2']\n\n      await flushPromises()\n      expect(result?.rows?.value).toEqual([\n        {\n          id: 2,\n          name: 'test2',\n        },\n      ])\n    })\n  })\n}\n"
  },
  {
    "path": "packages/pglite-vue/test/injection.test-d.ts",
    "content": "/**\n * @vitest-environment node\n */\nimport { describe, it, expectTypeOf } from 'vitest'\nimport { PGlite, PGliteInterfaceExtensions } from '@electric-sql/pglite'\nimport { live } from '@electric-sql/pglite/live'\nimport { makePGliteDependencyInjector } from '../src'\nimport { vector } from '@electric-sql/pglite/vector'\n\ndescribe('dependency injection', () => {\n  it('typechecks instance being provided and injected', async () => {\n    const dbLive = await PGlite.create({\n      extensions: {\n        live,\n      },\n    })\n\n    const dbLiveVector = await PGlite.create({\n      extensions: {\n        live,\n        vector,\n      },\n    })\n    const { providePGlite, injectPGlite } = makePGliteDependencyInjector<\n      PGlite &\n        PGliteInterfaceExtensions<{\n          live: typeof live\n          vector: typeof vector\n        }>\n    >()\n\n    // @ts-expect-error name is a string\n    providePGlite(dbLive)\n\n    providePGlite(dbLiveVector)\n\n    expectTypeOf(injectPGlite()!).toEqualTypeOf<typeof dbLiveVector>()\n  })\n})\n"
  },
  {
    "path": "packages/pglite-vue/test/injection.test.ts",
    "content": "import { describe, it, expect, afterEach } from 'vitest'\nimport { cleanup, render, waitFor } from '@testing-library/vue'\nimport { computed, defineComponent, isVue3, ref, shallowRef } from 'vue-demi'\nimport { isProxy } from 'vue'\nimport { PGlite } from '@electric-sql/pglite'\nimport { live } from '@electric-sql/pglite/live'\nimport { makePGliteDependencyInjector } from '../src'\n\nif (isVue3) {\n  describe('dependency injection', () => {\n    afterEach(() => {\n      cleanup()\n    })\n\n    it('works without reference to client', async () => {\n      const db = await PGlite.create({\n        extensions: {\n          live,\n        },\n      })\n      const { providePGlite, injectPGlite } =\n        makePGliteDependencyInjector<typeof db>()\n\n      const ProviderComponent = defineComponent({\n        template: '<div v-if={show}><slot/></div>',\n        setup() {\n          providePGlite(db)\n          return { show: true }\n        },\n      })\n\n      const ConsumerComponent = defineComponent({\n        template: '<div>count: {{ count }}</div>',\n        setup() {\n          const db = injectPGlite()\n          const count = ref(0)\n          db?.exec(`SELECT 1 as count;`).then((res) => {\n            count.value = res[0].rows[0]['count']\n          })\n          return { count }\n        },\n      })\n\n      const wrapper = render({\n        template: '<ProviderComponent><ConsumerComponent/></ProviderComponent>',\n        components: { ProviderComponent, ConsumerComponent },\n      })\n\n      await waitFor(() => expect(wrapper.getByText('count: 1')).toBeTruthy())\n    })\n\n    it('works with shallow reference to client', async () => {\n      const db = await PGlite.create({\n        extensions: {\n          live,\n        },\n      })\n\n      const { providePGlite, injectPGlite } =\n        makePGliteDependencyInjector<typeof db>()\n\n      const ProviderComponent = defineComponent({\n        template: '<div v-if=show><slot/></div>',\n        setup() {\n          const dbRef = shallowRef()\n          const show = computed(() => dbRef.value !== undefined)\n          setTimeout(() => (dbRef.value = db), 200)\n          providePGlite(dbRef)\n          return { show }\n        },\n      })\n\n      let dbInstance: typeof db | undefined\n\n      const ConsumerComponent = defineComponent({\n        template: '<div>count: {{ count }}</div>',\n        setup() {\n          const db = injectPGlite()\n          dbInstance = db\n          const count = ref(0)\n          db?.exec(`SELECT 1 as count;`).then((res) => {\n            count.value = res[0].rows[0]['count']\n          })\n\n          return { count }\n        },\n      })\n\n      const wrapper = render({\n        template: '<ProviderComponent><ConsumerComponent/></ProviderComponent>',\n        components: { ProviderComponent, ConsumerComponent },\n      })\n\n      await waitFor(() => expect(wrapper.getByText('count: 1')).toBeTruthy())\n\n      // consumer's instance should not be a proxy\n      expect(!isProxy(dbInstance)).true\n    })\n  })\n} else {\n  it('dummy', () => {})\n}\n"
  },
  {
    "path": "packages/pglite-vue/test-setup.ts",
    "content": "import { install } from 'vue-demi'\n\n// Polyfill File.prototype.arrayBuffer for jsdom\n// jsdom's File implementation doesn't properly support arrayBuffer()\nif (typeof File !== 'undefined' && !File.prototype.arrayBuffer) {\n  File.prototype.arrayBuffer = function () {\n    return new Promise((resolve, reject) => {\n      const reader = new FileReader()\n      reader.onload = () => resolve(reader.result as ArrayBuffer)\n      reader.onerror = () => reject(reader.error)\n      reader.readAsArrayBuffer(this)\n    })\n  }\n}\n\ninstall()\n"
  },
  {
    "path": "packages/pglite-vue/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.json\",\n  \"compilerOptions\": {\n    \"jsx\": \"react-jsx\",\n  },\n  \"include\": [\n    \"src\",\n    \"test\",\n    \"eslint.config.js\",\n    \"test-setup.ts\",\n    \"tsup.config.js\",\n    \"vitest.config.ts\"\n  ]\n}"
  },
  {
    "path": "packages/pglite-vue/tsup.config.ts",
    "content": "import { defineConfig } from 'tsup'\n\nconst minify = process.env.DEBUG === 'true' ? false : true\n\nexport default defineConfig([\n  {\n    entry: ['src/index.ts'],\n    format: ['cjs', 'esm'],\n    outDir: 'dist',\n    dts: true,\n    minify: minify,\n    sourcemap: true,\n    clean: true,\n  },\n])\n"
  },
  {
    "path": "packages/pglite-vue/vitest.config.ts",
    "content": "import { defineConfig } from 'vitest/config'\nimport vue from '@vitejs/plugin-vue'\n\nexport default defineConfig({\n  // @ts-ignore type mismsatch but works?\n  plugins: [vue()],\n  test: {\n    name: 'pglite-vue',\n    dir: './test',\n    watch: false,\n    environment: 'jsdom',\n    setupFiles: ['test-setup.ts'],\n    typecheck: { enabled: true },\n    restoreMocks: true,\n    testTimeout: 15000,\n    testTransformMode: {\n      ssr: ['**/*'],\n    },\n  },\n})\n"
  },
  {
    "path": "pnpm-workspace.yaml",
    "content": "packages:\n  - 'packages/*'\n  - './docs/**'\n  - 'examples/*'\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"allowJs\": true,\n    \"allowSyntheticDefaultImports\": true,\n    \"alwaysStrict\": true,\n    \"allowUnreachableCode\": false,\n    \"allowUnusedLabels\": false,\n    \"checkJs\": false,\n    \"declaration\": true,\n    \"noEmit\": true,\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"isolatedModules\": true,\n    \"lib\": [\"ES2020\", \"DOM\", \"DOM.Iterable\"],\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"noFallthroughCasesInSwitch\": true,\n    \"noImplicitAny\": true,\n    \"noImplicitReturns\": true,\n    \"noImplicitThis\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"resolveJsonModule\": true,\n    \"skipLibCheck\": true,\n    \"strict\": true,\n    \"strictBindCallApply\": true,\n    \"strictFunctionTypes\": true,\n    \"strictNullChecks\": true,\n    \"target\": \"ES2020\"\n  },\n  \"include\": [\"eslint.config.js\"]\n}"
  }
]